/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <;body&gt; 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/
*/

/******************************
 * Custom Content Alterations *
 ******************************/
.home .headline_area h2 {
	display: none;
}
/*****************************
 * Custom Header Alterations *
 *****************************/
.custom #header #logo { 
  display: none; 
}
.custom #header #tagline {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}
.custom .asq_search {
	float: right;
	padding-right: 1.1em;
	font-size: 1.4em;
}
.custom .asq_search input.text_input {
	width: 15em;
}
.custom #asq-login a:link, .custom #asq-login a:visited {
	font-size: 1.2em;
	color: #00458D;
	text-decoration: none;
	float: right;
	position: relative;
	top: -190px;
}
.custom #asq-login a:hover {
	border-bottom: 1px solid #00458D;
}
/***************************
 * Custom Menu Alterations *
 ***************************/
.custom .menu {
	width: 100%;
	background: #00458D;
	padding-top: 0 !important;
	margin-top: 0 !important;
}
.custom .menu li {
	margin-top: 0 !important;
}
.custom .menu li.current a {
	text-decoration: underline;
}
.custom .menu li.current li a {
	text-decoration: none;
}
.custom .menu li.search {
	display: block;
	float: right;
	padding-right: 1em;
}
.custom .menu li.search input {
	width: 195px; /* Same as the sidebar width in Design Options > Site Layout > Columns */
	margin-top: 0.4em;
	font-size: 1.4em;
}
/******************************
 * Custom Sidebar Alterations *
 ******************************/
.custom #content_box {
	background-color: #fff;
}
.custom #content {
	background-color: #fff !important;
	min-height: 625px;
	height: auto !important;
	height: 625px;
}
.custom .sidebar li, .custom .sidebar p {
	color: #00458D;
}
.custom .sidebar p {
	padding: 1em 0 0.7em;
	margin: 0;
}
.custom .sidebar h3 {
	color: #00458D;
	font-weight: bold;
	font-size: 1.1em;
	border-bottom: 2px solid #00458D;
}
.custom .sidebar a:link, .custom .sidebar a:visited {
	color: #00458D;
	border-bottom: none;
	text-decoration: none;
}
.custom .sidebar a:hover {
	border-bottom: 1px solid #00458D;
	color: #00458D;
}
.custom .sidebar a:active {
	position: relative;
	top: 1px;
}
/************************
 * Custom Footer Styles *
 ************************/
.custom #footer {
	background: #00458D;
}
.custom #footer p {
	display: block;
	margin: 0 auto;
	color: #fff;
}
.custom #footer p a:link, .custom #footer p a:visited {
	color: #fff;
	border-bottom: 1px solid #fff;
}
.custom #footer p a:hover {
	color: #D4C688;
}
/*********************************
 * Custom Page Styles            *
 * Including hiding the sidebars *
 * on certain pages              *
 *********************************/
#custom-page-wrapper-contact, #custom-page-wrapper-jobs {
	padding-left: 2em;
}

.custom .job-contact {
	margin:2em 0 0 0;border-top:1px solid #666;}

.custom #job-wrapper {
	font-size: 1.2em;
}

.custom .job-contact-description {
	float:left; width:40%;
}

.custom .job-contact-reqs {
	 padding: 0 2em;
}
/* MADE THESE ADDITIONS TO STYLE THE LISTINGS CC-APR.23.2010 */
.customer #jobs {
	font-size: larger;
}

.custom .fname {
	padding: 2em 0 0 0;
}
.custom .position {
	font-size: larger; font-weight: bold; padding: 0.3em 0;
}
.custom #container { background: none; border: none;}
.custom #officers-contact-list img{
	float:left; padding: 1em 1em 1em 0;
}
.custom #container #custom-page-wrapper-jobs {
	font-size:larger;
}
