/*
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/
*/




/* BODY */

body.custom{background:#545454}
.custom #header { background: #545454 url(images/header.jpg) no-repeat center top;border: 0; height: 240px; width: 957px; overflow: hidden; margin: 0; padding: 0; }
.custom p#logo a {
	background: url(images/logo.png) no-repeat;
	display: block;
	float: left;
	height: 92px;
	margin: 120px 0 0 93px;
	text-indent: -9999px;
	width: 400px;
}
.custom #tagline { display: none; }
.custom .menu {height: 30px; background:#000; padding: 10px 5px 5px 10px; text-transform: lowercase; }
.custom #content{background:#FFF url(images/blackGrad.gif) repeat-x}
.custom .teaser .post_image_link img.frame{padding:.3em .2em}
.custom .post_box{position:relative;margin:1.5em;padding:0}
.custom .teasers_box{background:#FFF url(images/blackGrad.gif) repeat-x;border-top:1px solid #BBB;width:100%;margin:0;padding:0}.custom .teasers_box .post{padding:11px}
.custom .teasers_box h2 a{font-size:1.2em;letter-spacing:-.5px!important;line-height:1em}


/* NAV MENU */


ul#topnav {
	margin: 0; padding: 0;
	float:left;
	width: 100%;
	list-style: none;
	font-size: 1.1em;
	background: url(images/topnav2_bg.png) repeat-x;
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	position: relative; /*--Important--*/
}
ul#topnav li a {
	float: left;
	text-indent: -9999px; /*--Push text off of page--*/
	height: 44px;
}
ul#topnav li:hover a, ul#topnav2 li a:hover { background-position: left bottom; } /*--Hover State--*/
ul#topnav a.home {
	background: url(images/nav/nav_home.png) no-repeat;
	width: 78px;
}
ul#topnav a.webdesign {
	background: url(images/nav/nav_webdesign.png) no-repeat;
	width: 141px;
}
ul#topnav a.graphicdesign {
	background: url(images/nav/nav_graphicdesign.png) no-repeat;
	width: 160px;
}
ul#topnav a.portfolio {
	background: url(images/nav/nav_portfolio.png) no-repeat;
	width: 102px;
}
ul#topnav a.cms {
	background: url(images/nav/nav_cms.png) no-repeat;
	width: 69px;
}





/*---:[ SIDEBAR ELEMENTS ]:---*/
.custom #content_box {background-color:#e8e8e8;}
.custom #content {background-color:#fff;}

.custom #sidebars .sidebar_list { border-left: 1px solid #C9C9C9; color: #545454; padding: 0; }
.custom #sidebars ul, #sidebars li div, #sidebars p { padding: 0 1em; }

	/* headlines */
	#sidebars h2, .custom #sidebars h3, #sidebars h4 { padding: 1em 1em 0.2em 0.7em; }
	.custom #sidebars h3 { font-family: "Myriad Pro", Helvetica, Arial, sans-serif; font-variant: normal; letter-spacing: normal; text-transform: uppercase; }
	
	/* widgets */
	.custom #sidebars .widget { background: #E7E7E7 url(images/dkGrayGrad.gif) repeat-x; border-top: 1px solid #C9C9C9; }
	.custom #sidebars .widget:first-child { border: 0; }


/* FOOTER */
.custom #footer { background: #312F2F url(images/footer.gif) repeat-x bottom; border-top: 1px solid #000; color: #EEE; }

.custom #footer a:hover { border: 0; color: #ffffff}

.custom #footer h2 a {
	background: url(images/footer_logo.png) no-repeat;
	border: 0;
	display: block;
	float: left;
	height: 53px;
	padding-top: 0;
	text-indent: -999px;
	width: 325px;
}

.custom #footer span { display: none; }




/* COMMNETS */
.custom dl#comment_list dd p.reply a{background:#444343;color:#FFF;margin-bottom:10px;padding:5px}
.custom dl#comment_list dd p.reply a:hover{background:#B82626;text-decoration:none}
.custom #respond_intro{margin:0}
#respond_intro p{font-size:2em;line-height:2.9em}
.custom #respond{background:#FFF url(images/blackGrad.gif) repeat-x;border-top:1px solid #999;padding:0 1.5em 1.5em}
