/*
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/
*/
.custom a {color:#5c9141;}
.custom #logo a:hover {color:#000 !important;}
.custom #header {padding:15px 15px 15px 95px;background: url(images/logo_afci.jpg) top left no-repeat;background-position:20px 15px;}
.custom #tabs li a:hover {background:#93A599;color:#FFF;}
.custom #homepage_summary img {float:left;margin:5px;border-right:1px solid #f1f1f1;width:100px;}
.custom #homepage_summary {list-style:none;}
.custom #homepage_summary li {margin:5px;border:1px solid #f1f1f1;}
.custom #homepage_summary li h2 a {color:#000;}
.custom #homepage_summary li h2 a:hover {color:#333;}
.custom #homepage_summary li p a {color:#5c9141;}
.custom #homepage_summary li p a:hover {text-decoration:underline;}
.custom #homepage_summary #thumb_copy_holder {float:left;width:385px;}
.custom #homepage_summary #thumb_copy_holder h2 {font-size:200%;margin:5px;padding:0;}
.custom #homepage_summary #thumb_copy_holder p {margin:5px;font-size:130%;line-height:180%;}

.custom #homepage_summary_text {padding:0 10px 0 10px;font-size:150%;line-height:160%;}
.custom #homepage_summary_text p {padding:0 0 10px 0;}

.custom  ul#tabs li ul {display:none; position:absolute; list-style:none;}
	.custom ul#tabs li ul li {float:none;}
.custom ul#tabs li:hover ul {display:block;}

.custom #sidebar_1 {display:none;}
.custom #sidebar_2 {display:none;}
.custom #unique_sidebar {width:21.0em;float:left;margin-bottom:10px;}
.custom #unique_sidebar li {list-style:none;font-size:130%;padding:2px 0 2px 0;line-height:140%;}
.custom #unique_sidebar li a {color:#5c9141;}
.custom #unique_sidebar h3 {border-bottom:1px solid #dedede;}
.custom #unique_sidebar p {font-size:110%;}
.custom #unique_sidebar #sliding_cart p {line-height:120%;font-size:130%;line-height:140%;}
.custom #unique_sidebar #sliding_cart p.empty {margin:5px 0 5px 0;}

.cart_title {font-variant: small-caps; letter-spacing: 2px; color: #555;font-weight:normal; border-bottom:1px solid #dedede;}

.custom .clear {clear:both;}