/*
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 {font-family:Optima, Georgia, serif; background:#666 url(images/bg.jpg) center top repeat-y;}
.custom .page {background:#fff;}

a {color:#666;}
a:hover {color:black;}

/* === HEADER === */
.custom #header_area .page {border-bottom:1px solid black;}

.custom #header {border-bottom:0;}
	.custom #header #logo {font-size:6em; font-weight:normal;}
		.custom #header #logo a {padding:0.6em 1.5em 0.6em 0; background:url(images/logo.png) right center no-repeat;}


/* === NAV === */
.custom #nav_area .page {border-bottom:1px solid black; padding:0.5em 1.1em; position:relative;}

.custom #nav_area .search_form {position:absolute; right:1.1em; top:0.5em;}
	.custom #nav_area #s {font-size:1.2em; padding:5px; width:160px;}

.custom .menu li a:hover {text-decoration:underline;}


/* Providers Directory in Navigation */
.custom #providers_area .page {border-bottom:3px double black; padding:0.5em 1.1em;}

ul#providers {list-style:none;}
ul#providers:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
	ul#providers li {float:left; font-size:1.1em; line-height:1em; text-transform:uppercase; letter-spacing:2px; padding:0.538em 0.769em; color:#111; display:block;}
		ul#providers li a {font-size:1.1em; line-height:1em; text-transform:uppercase; letter-spacing:2px; color:#111; display:block;}
		.custom ul#providers li a:hover {color:#333; text-decoration:underline;}
		
	/*	ul#social li.subscribe a {background:url(images/subscribe.jpg) 2em center no-repeat;}
		ul#social li.facebook a {background:url(images/facebook.gif) 2em center no-repeat;}
		ul#social li.linkedin a {background:url(images/linkedin.gif) 2em center no-repeat;}
		ul#social li.twitter a {background:url(images/twitter.gif) 2em center no-repeat;} */
		
		
		

/* === CONTENT === */
.custom #content_box {background-image:url(images/dot-000.gif);}

.custom .post_box, .custom .teasers_box {border-top:1px solid black;}
.custom .top {border-top:0;}

.custom .prev_next {border-top:1px solid black;}

.eldercare-resources .linkcat {list-style:none;}
	.eldercare-resources .linkcat ul {list-style:square;}

.subscribe .format_text input {width:auto;}


/* === SIDEBARS === */
.custom #custom_box {background:none; border-bottom:0;}
.custom #custom_box:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
	.custom #custom_box img {margin:0.75em;}

.custom .sidebar h3 {color:black; border-bottom:3px double black; padding:0.4em 0; margin-bottom:0.75em; text-align:center; font-variant:normal; font-size:2em; letter-spacing:1px;}

.custom li.widget ul {margin-left:3em; list-style-image:url(images/bullet.png);}
		.custom li.widget ul ul {margin-left:1.5em;}
		.custom li.widget ul li a {color:black;}
		.custom li.widget ul li a:hover {color:#666;}

		.custom li.widget_categories ul li a {text-transform:uppercase;}
		
ul#social {list-style:none; margin-left: 0em;}
ul#social li a {padding-left: 35px; margin-left:2em;}
ul#social li.rss a {background:url(images/rss.gif) left center no-repeat;}
ul#social li.facebook a {background:url(images/facebook.gif) left center no-repeat;}
ul#social li.linkedin a {background:url(images/linkedin.gif) left center no-repeat;}
ul#social li.twitter a {background:url(images/twitter.gif) left center no-repeat;}


/* === FOOTER === */
.custom #footer_area .page {border-top:3px double black;}

.custom #footer {border-top:0;}
.custom #footer:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
	.custom #footer p {}

#branding {width:600px; float:left;}
#branding:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
	#branding img {margin-right:1em;}
	#branding p {text-align:left; width:475px; color:black; font-size:1.4em;}
	
	
/* === DIRECTORIES === */
.custom div#states1 { float:left; width:32%;}
.custom div#states2 { float:left; width:32%;}
.custom div#states3 { float:left; width:32%}
