/*
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-color: #EBEAE6;	
}
h1, h2, h3
{
	color: #045879;
	font-weight: bold;
}

#content a:link, #content a:visited, #content a:active {
	color: #FF6600;
}
div#headline_area h2
{
	font-size: 35px;
	font-weight: bold;	
}
.custom .comments_closed p {
  display: none;
}
#content_box
{
	background: none;
}
#page
{
	background: #fff;
	padding: 0px;
}

#header
{
	background-color: #EBEAE6;
	height: 110px;
	padding: 0px;
	border: 0px;	
}

#headline_area
{
	height: 10px;
}

#header-text-img
{
	position: relative;
	left: 0px;
	top: 30px;
	width: 383px;
	height: 43px;
	background: url('/wp-content/themes/thesis_151/images/header-logo.gif') no-repeat;
}

#headnav
{
	list-style: none; 
	border: 0px; 
	border-width: 0px;
	position: relative;
	left: 455px;
	top: 19px;
	width: 560px;
	height: 48px;
}

#headnav li { 
	margin-bottom: 0em; 
	background: none; 
	border: 0px; 
	border-left: 0; 
	float: left; 
}

#headnav a { 
	display: block; 
	padding-right: 3px;
}

#content_box {
	background: url('/wp-content/themes/thesis_151/images/sidebar-left-bg.png') repeat-y;	
}

#sidebars {
	width: 251px;
	background: url('/wp-content/themes/thesis_151/images/sidebar-left-bg.png') repeat-y;
	height: 100%;
}

#content {
	width: 750px;	
}
.sidebar ul.sidebar_list 
{
	padding: 0px; 
}

#footer
{
	height: 250px;
	padding: 0px;
	border: 0px;
	background: url('/wp-content/themes/thesis_151/images/footer-bg.gif') top center no-repeat;
	background-color: #FF6D00;
	text-align: left;
}

#footer-content
{
	position: relative;	
}

#footer-logo
{
	position: absolute;
	left: 550px;
	top: 80px;
	width: 365px;
	height: 55px;
	background: url('/wp-content/themes/thesis_151/images/footer-logo.gif') no-repeat;
}

#footernav {
	position: absolute;
	left: 270px;
	top: 80px;
}

#footernav li { 
	list-style-type: none;
}

#footernav a { 
	color: #BB3000;
	font-size: 12px;
	font-weight: bold;
	text-decoration: underline;
	border-bottom: none;
	line-height: 25px;
}

h1.homepagetitle {
	text-indent: -9999px;
	background: url('/wp-content/themes/thesis_151/images/home-page-title.gif') no-repeat;
	height: 50px;
  margin-bottom: 0px;
}

.post_box {
	margin-left: 0px;
}

td.lpad
{
	padding-left:15px;	
}
td.lrpad
{
	padding:0 15px 0 15px;
}
td.rpad
{
	padding-right:15px;
}

td.homeparag p
{
	margin-bottom: 10px;
}

td.homeparag ul
{
	margin-bottom: 10px;
}

.amount-requested-home {
	background: url('/wp-content/themes/thesis_151/images/apply-bubble.gif') top left no-repeat;
	width: 220px;
	height: 190px;
	position: relative;
}

input.home-input {
	width: 138px;
	padding: 3px 5px 3px 25px;
	background: #fff url('/wp-content/themes/thesis_151/images/dollar-sign.gif') 3px 3px no-repeat;
	position: absolute;
	top: 80px;
	left: 25px;
	border: 1px solid #23c3ff;
	font-size: 18px;
}
input:focus .home-input{
	width: 150px;
	padding: 7px 5px 7px 25px;
	background: #fff url('/wp-content/themes/thesis_151/images/dollar-sign.gif') 3px 3px no-repeat;
	border: 1px solid #23c3ff;
}

.home-apply-button{
	position: absolute;
	top: 120px;
	left: 25px;
}


/* ====== Nav menu styles ====== */
/*
#tabs { list-style: none; border: 0px; border-width: 0px; background: #EBEAE6; height: 42px; padding-top:30px; padding-left:480px;}
	#tabs li { margin-bottom: 0em; background: none; border: 0px; border-left: 0; float: left; font-size: 1.1em; }
	#tabs .current_page_item, #tabs .current-cat { padding-bottom: 0em; background: none; border-bottom: 0; }
		#tabs a { display: block; line-height: 2.5em; color: #fff; text-transform: uppercase; text-align: center; letter-spacing: 2px; font-weight:bold; width:148px; height:35px; background: url('/wp-content/themes/thesis_151/images/yellow-tab.png') no-repeat;}
		#tabs a:hover { color: #fff; text-decoration: underline; }
		#tabs .current_page_item a, #tabs .current-cat a { cursor: text; color: #fff; }
		#tabs .current_page_item a:hover, #tabs .current-cat a:hover { text-decoration: none; }*/
