/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/

/* Remove duplicate image from article */
.post_image { display:none !important; }
/* style the tree-pages current page link to not look like a link */
ul.tree-pages li.current_page_item a, ul.tree-pages li.current_page_item a:hover {
  text-decoration: none; color: #2029BF; font-weight: bolder; }
/* and undo the above styling for children of the current page */
ul.tree-pages li.current_page_item ul.children a {
  color: #2361A1; font-weight: lighter; text-decoration: underline; }
ul.tree-pages li.current_page_item ul.children a:hover {
  color: #2361A1; font-weight: lighter; text-decoration: none; }

/* styling for the 'show_tree' shortcode */
div.menu-main-nav-menu-container { font-weight: bolder; }
/* styling for the 'page_breadcrumbs' shortcode */
div#crumbs { margin-bottom: 1em; }
#crumbs .current { color: #2029BF; font-weight: bolder; }
/* status (Sold, Reserverd) for fleece listings */
span.hilite { color: #2029BF; font-weight: bolder; }
.center { text-align: center; }
hr { color: #ddd; background-color: #ddd; }

/* postviews styling */
p.postviews { margin-top: 1em; }

/* custom  sitemap */
.custom .sitemap h3 { margin-top: 0; }
.custom .sitemap ul { font-size: .85em; }
.custom .sitemapl { float: left; width: 45%; }
.custom .sitemapr { float: right; width: 55%; }

.custom #custom_box p.caption-text { 
  font-size: 1em; 
  line-height: 1.5em; 
  margin-bottom: 0;
  text-align: center;
  font-style: italic;
  color: black;
}

/* custom rotator img -- display: inline (instead of block) to center images that are less than 409px wide */
.custom #custom_box img {
  border-width: 1px;
  display: inline;
  padding: 1px;
  background: none repeat scroll 0 0 #FFFFFF;
  border-color: #BBBBBB;
  border-style: solid;
}

/* custom pagination styling */
.pagination {
  clear:both;
  padding:20px 0;
  position:relative;
  font-size:12px;
  line-height:14px;
  text-transform: none;
}
.pagination span, .pagination a {
  display:block;
  float:left;
  margin: 2px 2px 2px 0;
  padding:6px 9px 5px 9px;
  border-radius: 2px;
  text-decoration:none;
  width:auto;
  color:#fff;
  background: #2361A1;
}
.pagination a:hover {
  color:#fff;
  background: #8D0039;
}
.pagination .current {
  padding:6px 9px 5px 9px;
  background: #8D0039;
  color:#fff;
}
.pagination a.arrow {
  font-family: Verdana,sans-serif;
}

/* section divider for custom home page (use instead of the <hr> tag*/
div.section-div {
  clear: both;
  border-width: 2px 0 0 0;
  border-color: #ddd;
  border-style: solid;
  margin-bottom: 1em;
}
div.section-div-1 {
  clear: both;
  border-width: 1px 0 0 0;
  border-color: #ddd;
  border-style: solid;
  margin-bottom: 1em;
}

/* footer */
#footer { text-align: center; }

/* Contact Form 7 styling */
#contact-form input { width: 88%; }
input.wpcf7-submit[type="submit"]:hover { background-color: #D1E6FD; }
