/*
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 {
    background: #3c4851;
}

.custom #container { margin-top: 2em; margin-bottom: 2em; }.custom #page { background: #fff; }.custom #header #logo a { display: block; height: 128px; width: 960px; background: url('images/SolutionsFinancialHeader2-final.png') no-repeat; outline: none; }.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }.custom #header #tagline { height: 0; } .custom #header { padding: 0; border: medium none; }
.custom ul#tabs {
	background:#fff url(images/navbg25.png) repeat-x scroll left top;
	font-family:'Trebuchet MS',helvetica,arial;
	font-size:12px;
	min-height:25px;
	padding-left:10px;
	border: 0 none;
}
ul#tabs li {
	background: none;
	border:0 none;
	padding-left:5px;
	padding-right:5px;
}
ul#tabs li.current_page_item, ul#tabs li.current-cat {
	background: none;
	border: 0 none;
	color: white;
}
ul#tabs li.current_page_item a {
	color: #F0D69D;
}
ul#tabs li.page_item {
	background: none;
	border:0 none;
}
ul#tabs li a {
	padding:0.35em 0.833em;
	color:#FFFFFF;
	letter-spacing:0;
}
ul#tabs li a:hover {
	text-decoration: none;
	color: #F0D69D;
}

ul#tabs li.rss {
	padding-right:10px;
}
ul#tabs li.rss a {
	background:transparent url(images/rss-icon.png) no-repeat scroll 100% 50%;
	padding-right:25px;
}
.custom #footer .footer-text {
	text-align:center;
}

#wpcf label {
	clear: both;
	display: block;
	float: left;
	width: 200px;
}
#wpcf input {
	float: left;
	width: 200px;
	padding: 1px;
	margin: 2px 5px 2px 0;
}
#wpcf textarea {
	width: 400px;
	height: 100px;
	padding: 1px;
	margin: 0 5px 10px 0;
}
#wpcf #contactsubmit {
	margin-left: 100px;
	width: 100px;
}

/* SDH: Adding below to enable drop-down menus per DIYTHEMES answers post...   I think it can be deleted now that the new version of Thesis was installed??? */

.custom ul#tabs li ul {display:none; position:absolute; list-style:none;}
.custom ul#tabs li ul li {float:none;}
.custom ul#tabs li:hover ul {display:block;}
.custom ul#tabs { margin-bottom:-1px;} /* Fix for IE6 */

/*CSS for customizing table*/
table {
	width:60%;
	border-collapse:collapse;
        border: 1px solid #EFEFEF;
	line-height:1.6em;
	color:#3B485F;
	text-align:left;
}
table tr.odd {
	background:#FFEFEF;
}
table tr {
	background: #fafafa;
	border-bottom:1px solid #EFEFEF;
}
table td {
	padding:0.1em 0.2em;
}
table th {
	padding:0.2em 1em;
	background: #AFCCFF;
	border-bottom: 1px solid #9F9F9F;
	color:#fff;
}

.custom .menu a, .custom .menu a:visited {
	
	font-weight: bold;
	
}

