/*
File:			custom.css
Description:	Custom styles for Thesis for RyanShell.com
Author:			kristarella
Author URL:		www.kristarella.com

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 {background:#373737;}

.custom .full_width .page {background:#fff;}

a {color:#373737;}
a:hover {color:#B22010;}


/* === HEADER === */
.custom #header_area .page {background:#373737; position:relative;}
	.custom #header {border-bottom:0;}
		.custom #header #logo a {color:#d9d9d9;}
		.custom #tagline {color:#d9d9d9; padding-left:4em;}
			.custom #tagline:before {content:".: ";}
			.custom #tagline:after {content:" :.";}

#header_rss {position:absolute; right:1.1em; bottom:2.2em; width:32px; height:32px;}

/* === NAV === */
.custom #nav_area .page {background:url(images/navbar.gif) left center repeat-x; height:42px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
-khtml-border-top-left-radius: 5px;
-khtml-border-top-right-radius: 5px;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topright: 5px;
-moz-border-radius-topleft: 5px;
}
.ie #nav_area .page {background:url(images/nav-page-bg.jpg) left top no-repeat;}

.custom .menu {border-bottom:none; border-left:none; background: none; border-top: none;}
	.custom .menu a {margin-bottom:0; border:none; background:none;}
	.custom .menu .current_page_item, .custom .menu .current-cat {padding-bottom:0; background:none;}
	.custom .menu .rss {}
		.custom .menu a {line-height:42px; padding:0 0.818em; color:#fff;}
		.custom .menu a:hover {background:#B22010 url(images/navhov.gif) left center repeat-x; text-decoration:none; color:#fff;}
		.custom .menu .rss a {padding-right:20px;}
		.custom .menu .rss a:hover {background:url(../../images/icon-rss.gif) right center no-repeat; text-decoration:underline;}
		.custom .menu .current_page_item a, .custom .menu .current-cat a {}
		.custom .menu .current_page_item a:hover, .custom .menu .current-cat a:hover {background:none;}


/* === HOME PAGE === */
.custom #content_area .page {padding-bottom:2.2em;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	-khtml-border-bottom-left-radius: 5px;
	-khtml-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
}
.ie #content_area .page {background:#fff url(images/page-bg.jpg) center bottom no-repeat;}

.home #content {width:100%;}
.home .post_box {position:relative; margin:0 0.6em;}

/* left home widgets */
.custom #home_features {width:262px;}

.custom #home_features div.widget a {display:block; height:65px; padding:10px 15px 10px 40px; background:#5a5a5a url(images/hp-black.png) center top no-repeat; font-size:1.2em; color:#fff; overflow:hidden;}
.custom #home_features div.widget a:hover {background:#B22010 url(images/hp-orange.png) center top no-repeat;}
	.custom #home_features div.widget a span {display:block; font-size:1.4em; color:#d9d9d9; padding-bottom:4px;}

/* rotating image */
.custom #img_feature {width:585px; height:254px; position:absolute; left:262px; overflow:hidden;}
	.custom #img_feature img {position:absolute;}

/* home footer widgets */
.custom #footer_widgets {margin-top:2.2em;}
	.custom #footer_widgets .sidebar_list {padding:0.5em;}
	.custom #footer_widgets .sidebar_list:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
		.custom #footer_widgets .sidebar_list li.widget {width:19em; margin:0 0.4em 0 0.5em; padding:0.8em; float:left; border:0.1em solid #ddd; background:url(images/widget-bg.jpg) left 1px repeat-x; height:200px;
			border-radius:5px;
			-khtml-border-radius:5px;
			-webkit-border-radius:5px;
			-moz-border-radius:5px;
		}
		.ie #footer_widgets .sidebar_list li.widget {width:19.2em; border:0; background:url(images/home-widget-bg.png) center top no-repeat;}

/* === BLOG CONTENT === */
.custom #content_box {background:#fff;}

/* === SIDEBAR === */
.custom #sidebars {border:0.1em solid #ddd; background:#fff url(images/widget-bg.jpg) left 1px repeat-x; width:27em; margin-top:2.2em;
	border-radius:5px;
	-khtml-border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
}
.custom #multimedia_box {border-bottom:0; padding-bottom:1.1em;}
.custom #image_box {background:transparent; border-bottom:0;}
	
/* === FOOTER === */
.custom #footer_area .page {background:transparent;}
	.custom #footer {border-top:0; text-align:center;}