/*
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.custom 
{ 
	width: 100%;
	text-align: center;
	background: #518ebd; 
}

.floatl
{
	float: left;	
}
.custom a:link
{ 
	color: #0c750e; 
}
.custom a:visited
{ 
	color: #0c750e; 
}
.custom a:hover 
{ 
	color: #111; 
	background: #f2e127; 
	text-decoration: none;
	border: none;
}

.custom h1
{
	font-size: 28px;	
}
.custom #header
{
	display: none;	
}
.custom #headerImage
{
	clear: both;
	width: 930px;
	margin: auto;
	margin-bottom: -1px;
	border: none;
}

.custom img#headerImageLink
{
	position: absolute;
	top: 0px;
	margin-left: -900px;
	z-index: 10;
	width: 930px;
	height: 193px;
}

/* Remove Home Title */
.custom #post-14 .headline_area
{
	display: none;	
}


.custom #container 
{ 
	width: 862px;
	text-align: left;
	margin-bottom: 2.2em; 
}

.custom #page 
{ 
	width: 861px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px -1px;
	background: url('images/page-bg.gif') repeat-y #ffffff; 
	border: solid 1px #000000;
}

.custom #header 
{ 
	width: 950px;
	padding: 0px;
	margin: 0px;
	border: none;
}


.custom .search_form 
{ 
	float: right; 
}
.custom ul#tabs 
{ 
	padding: 0 0em; 
	margin: 10px 0px 0px 1.2em;
	border: 0; 
}
.custom ul#tabs li 
{ 
	display: block;
	clear: left;
	margin-bottom: 0; 
	background: none; 
	border: 0; 
}
.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat 
{ 
	padding-bottom: 0; 
}
.custom ul#tabs li a 
{ 
	width: 180px;
	padding-top: 0.8em; 
	padding-bottom: 0.8em; 
	padding-left: 2.2em;
	color: #ffffff; 
	font-weight: bold; 
	letter-spacing: 1px; 
}
.custom ul#tabs li a:hover 
{ 
	color: #111; 
	background: #f0e9cc; 
	text-decoration: none; 
}
.custom ul#tabs li.current_page_item a 
{ 
	color: #54d030;
}
.custom ul#tabs li.rss a 
{ 
	padding-right: 0.818em; 
	background-image: none; 
}



.custom .search_form input { font-size: 1.3em; line-height: 1em; width: 15.385em; padding: 0.308em; }
.custom .search_form input:focus { background: #f2e127; }

.custom #content_box 
{ 
	float: left;
	width: 861px;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	background: url('images/content-box-bg.jpg') no-repeat top left;
}

.custom #content
{
	width: 575px;
	padding: 38px 20px 0px 20px;	
}
	.custom .prev_next, .custom #archive_info { border: none; }
		.custom input.form_submit:hover { color: #111; background: #f2e127; }
.custom #multimedia_box, .custom #image_box, .custom #video_box, .custom #custom_box { background: none; border: 0; }
.custom #sidebars 
{ 
	padding: 1.0em 0px 3.0em 0px;
	/* padding-left: 2.2em;*/
	border: none; 
}
.custom .sidebar_list ul  
{ 
	
	margin-left: 20px;
}
.custom .sidebar_list ul  li
{ 
	list-style-type: square;
	margin-bottom: 2px;
}
.custom .sidebar_list a:link  
{ 
	font-size: 10px;
	color: #ffffff;
	text-decoration: underline;
}
.custom .sidebar_list a:visited  
{ 
	font-size: 10px;
	color: #ffffff;
	text-decoration: underline;
}
.custom .sidebar_list a:hover
{ 
	font-size: 10px;
	color: #000000;
	background: none;
	text-decoration: underline;
}
.custom #sidebars h3
{
	font-size: 14px;
	font-weight: bold;
	color: #f0e9cc;
	border-bottom: solid 1px #f0e9cc;
}
.custom #sidebar_1 
{ 
	color: #f0e9cc;
	/*padding-left: 2.2em;*/
	padding-left: 2.2em;
	border-right: none;
}
.custom #text-430633382
{
	font-weight: bold;
	font-size: 14px;
}	
.custom #footer 
{ 
	text-align: center;
	color: #ffffff;
	clear: both;
	height: 30px;
	padding: 15px 0px 0px 0px; 
	background: #282e0a;
	border: none;
}
.custom #footer a:link
{ 
	color: #cccccc;
	text-decoration: underline;
	border: none;
}
.custom #footer a:hover
{ 
	color: #54d030;
	text-decoration: underline;
	background: none;
	border: none;
}