/*
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:#163e62 url(images/leaders-bg.jpg) center top repeat-y;}
.custom .page {background:#fff;}

a {color:#163e62;}
a:hover {color:black;}

/* === HEADER === */
.custom #header_area .page {border-bottom:1px solid black; background:url(images/leaders-header.jpg) center top no-repeat; height:189px;}

.custom #header {border-bottom:0;}
	.custom #header #logo {text-indent:-9999px;}
		.custom #header #logo a {display:block; width:auto; height:150px;}


/* === 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 ul#tabs {border-bottom:none; border-left:none; width:790px;}
	.custom ul#tabs li {margin-bottom:0; border:none; background:none;}
	.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {padding-bottom:0; background:none;}
	.custom ul#tabs li.rss {}
		.custom ul#tabs li a {}
		.custom ul#tabs li a:hover {}
		.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {color:#666;}

/* social */
.custom #social_area .page {border-bottom:3px double black; padding:0.5em 1.1em;}

ul#social {list-style:none;}
ul#social:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
	ul#social li {float:right;}
		ul#social li a {font-size:1.3em; line-height:1em; text-transform:uppercase; letter-spacing:2px; padding:0.538em 0 0.538em 4em; color:#111; display:block;}
		.custom ul#social 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 .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;}

.custom .comments_closed p {display: none;}


/* === SIDEBARS === */
.custom #custom_box {background:none; border-bottom:0; padding:2em 2em 0 2em;}
.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;}


/* === 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;}