/*
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 {
	background: #EAEAE1;
	font-family: "Trebuchet MS";
}

/* header */

.custom #header {
	background: #EAEAE1 url(images/background.png) no-repeat top left;
	border: 0px none;
	padding: 1.1em 1.1em 0em 3.5em;
}

.custom .rotatingpics {
	float:left;
	height:150px;
	margin:0px 0px 0px 10px;
	width:103px;
}

.custom .logo {
	border:0px none;
	float:left;
	margin:3px 0px 10px 15px;
}

/* Navigation */
.custom ul#tabs {
	background-color: #ffffff;
	border: 0px none;
	clear:both;
	position: relative;
	left: 2em;
	width: 83.5em;
}
.custom ul#tabs li {
	background: transparent none no-repeat top left;
	display:block;
	border: 0px none;
	float:left;
	margin-bottom:0px;
	margin-top:0px;
}

.custom ul#tabs li.current_page_item, ul#tabs li.current-cat {
	background: transparent none no-repeat top left;
	border-bottom:0pt none;
	padding-bottom:0em;
}

.custom ul#tabs li a {
	color:#8D8D8D;
	display:block;
	float:left;
	font-size:13px;
	margin-bottom:0px;
	padding-left:20px;
	padding-right:20px;
	padding-top:5px;
	text-transform:uppercase;
	text-decoration: none;
}

.custom ul#tabs li a:hover {
	color:#FF8400;
	font-size:13px;
	margin-bottom:0px;
	text-decoration: none;
}

/* Page */

.custom .full_width .page {
	width: 95em;
}

/* Content */

.custom #content_box {
/*	background: url(images/content-bg-top.gif) no-repeat .1em 0em; */
	background: url(images/content-bg.gif) repeat-y top left;
	border-top: 10px solid #FFFFFF;
}

.custom #content {
	width: 63.4em;
}

.custom div#content div.post_box {
	margin: 0em 1em 0em 1.1em;
	border: 1px solid #EBEBEB;
	padding: 1em .5em 0em .5em;
}

/* Pages */
.headline_area h1, .headline_area h2 {
	color:#5F666F;
	font-size: 3em;
}

.headline_area h2 {
	color:#FF8400;
	font-size: 3em;
}
.format_text h6 {
	color:#5F666F;
	font-size: 1.4em;
}

.format_text ul {
	list-style-image:url(images/bullet.gif);
}
/* Sidebars */

.custom #sidebars {
	width: 30em;
}

.custom li.widget ul {
	margin: 1em 0em 0em 0em;
	list-style-image: url(images/bullet.gif);
}

.custom li.widget ul li {
	margin:0em 0em 0.692em 2em;
}

.custom li.widget ul li a, .custom li.widget ul li a:hover {
	color:#373434;
	font-size: 1.2em;
	text-decoration: none;
}

.custom .client {
	background: url(images/tracysmiling.jpg) no-repeat .1em 0em;
}

.custom div.widget_box {
	padding:0.692em;
}

.client_image {
	left: 4.5em;
	position: relative;
}

.custom .sidebar h3 {
	color:#FF8400;
	font-size:1.6em;
}

/* Footer */

.custom #footer {
	border: 0px none;
	text-align: center;
}

.custom #footer p {
	color: #FF8400;
	font-size: .95em;
}

#footer_area .page {
	background: #ffffff none no-repeat top left;
	padding: 1em 0em 1em 0em;
}

#home_left_sidebar {
	padding: 0em .25em 0em .25em;
	margin: 0em 0em 0em 1.3em;
	width: 17em;
	float: left;
	border: 1px solid #EBEBEB;
	word-wrap: break-word;
}

#home_left_sidebar p {
	font-size: 1.2em;
}

#home_left_sidebar h3 {
	margin-top: 1.1em;
}

#home_left_sidebar div.headline_area {
	margin-top: 1em;
}

.main_content {
	width: 40em;
	float:right;
	clear: right;
	border: 1px solid #EBEBEB;
}

.main_border {
	border: 1px solid #EBEBEB;
}

#home_left_sidebar h3 a.latest_title, #home_left_sidebar h3 a.latest_title:hover {
	font-size: 1.9em;
	color: #5F666F;
	text-decoration: none;
}

.hidden {
	display: none;
}

.rss_headline a, .rss_headline a:hover {
	color:#FF8400;
	font-size:1.6em;
	margin-left: .5em;
}

.custom .entry-content {
	clear: both;
}