/*=== ROBERT STOVER CUSTOM.CSS ===*/
/*
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/
*/

/*====================================*/
/* COLORS */
/*====================================*/
/*
#0c2257	- deep blue
		- menu background
#505050	- med gray
		- menu selected item
		- divider line menu/header
#fa8525	- orange
		- front page headline
#feecde	- tangerine/pink
		- front page highlight box
#cadffd	- light blue
		- optin box background
#2143a0	- dark blue
		- optin box border
#1b3b8c	- blue
		- optin box text
*/
/*====================================*/
/* GENERAL UI MODS */
/*====================================*/
/* change cursor over dates, etc to default from a question mark */
.custom abbr, .custom acronym { cursor:default; }

/* no titles on selected pages (see also function no_headline_start */
.custom #no_headline .headline_area { display: none; }

/*====================================*/
/* FONT COLOR CHANGES */
/*====================================*/

/*====================================*/
/* BORDERS AND BACKGROUND */
/*====================================*/
.custom #container { 
	padding: 0 0 0 0;
	margin-top: 0em;
	margin-bottom: 0em;
}

/*====================================*/
/* HEADER */
/*====================================*/

.custom #header_area {
	background: url('images/header-slice2-188.png') repeat-x;
}

.custom #header #logo a { 
	display: block; 
	height: 154px;
	width: 950px;
	background: url('images/header-950x154.png') left no-repeat;
	outline: none; 
}

/* push title and tagline to far left and make tagline tiny */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }

/* align header image */
.custom #header #logo { 
	margin: 0px 0px 0px 0px; 
	position: relative;
	top: -22px;
	left: -50px;
}

/* header padding */
.custom	#header { padding: 0em 0em 0em 0em; }

/* remove line at bottom of header */
.custom	#header { border-bottom: none; }

/*====================================*/
/* THESIS NAVIGATION BAR */
/*====================================*/
/* move the menu down */
.custom .menu {
	width: 1132px;
	background: #0c2257;
	position: relative;
	top: -44px;
	left: -185px;
}

.custom .menu a {
	font-weight: bold;
	text-transform: none;
}

.custom .menu .tab-home a {
	border-left: 125px solid #0c2257;
}

/*====================================*/
/* FRONT PAGE AND ABOUT PAGE */
/*====================================*/
#title_txt {
	color: #fa8525;
	text-align: center;
	font-family: Georgia, serif;
	font-weight: bold;
	font-size: 1.7em;
}

.orange_txt {
	color: #fa8525;
	font-weight: bold;
	font-size: 1em;
}

.body_txt {
	font-size: 1em;
}

.highlight_box {
	background: #feecde;
	font-family: Georgia, serif;
	margin-left: 30px;
	margin-right: 60px;
	padding-left: 10px;
}

.highlight_box_title {
	font-weight: bold;
	text-align: center;
}

#orange_txt_center {
	color: #fa8525;
	font-weight: bold;
	text-align: center;
}

#orange_bullets {
	list-style-image: url('images/arrow-bullet.png');
}

/*====================================*/
/* CONTENT BOX */
/*====================================*/
/* remove right divider between content and sidebar */
.custom #content_box { background: none; }

/*====================================*/
/* POSTS AND COMMENTS */
/*====================================*/
/* do not display "comments closed" if they are closed on posts and pages */
.custom .comments_closed p { display: none; }

.custom .teaser h2 {
	font-size: 1.8em;
	line-height: 1.2em;
}

.custom .teaser .teaser_author,
.custom .teaser .teaser_date,
.custom .teaser .teaser_category,
.custom .teaser .teaser_comments {
	text-transform: none;
}

/*====================================*/
/* MULTIMEDIA BOX AND IMAGES */
/*====================================*/
/*====================================*/
/* WIDGETS AND SIDEBARS */
/*====================================*/
/* Format widget headings - sidebar */
.custom .sidebar h3 {
	font-size: 1.2em;
	font-weight: bold; 
	line-height: 1.455em; 
	text-align: left;
	color: #575757;
	margin-bottom: 1em; 
	padding: 0.636em 0.455em 0.545em 0em; 
	text-transform: none; 
	font-variant: normal;
}

/*------------------------------------*/
/* OPT-IN BOX */
/*------------------------------------*/
#optin_box {
	background: #cadffd;
	border: 2px solid #2143a0;
	padding: 10px;
}

#optin_title,
#optin_privacy_txt {
	color: #000000;
	font-family: Georgia, serif;
	text-align: center;
}

#optin_title { font-size: 1.2em; }
#optin_privacy_txt { font-size: .7em; }

#optin_blue_txt,
#optin_orange_txt {
	font-family: Arial, Verdana, sans-serif;
}

#optin_blue_txt {
	color: #1b3b8c;
	text-align: center;
	font-weight: bold;
	font-size: 1.1em;
}

#optin_orange_txt { color: #fa8525; }

/*====================================*/
/* FOOTER */
/*====================================*/

/* change footer border, add footer background */
.custom #footer { 	
	border-top: none;
	height: 28px;
	width: 105%;
	background: #0c2257;
	margin: 0px 0px 0px 0px;
	position: relative;
	left: -25px;
}
.custom #footer_area { 	
	border-top: none;
	display: block; 
	height: 50px;
	background: url('images/footer-slice-3x50.png') repeat-x;
	outline: none; 
	margin: 0px 0px 0px 0px;
}

/* footer copyright & attribution */
#footer_info_right, #footer_info_left { 
	font-size: 1.25em; 
	color: #FFFFFF; 
	position: relative;
	top: 5px;
}
#footer_info_right { float: right; }
#footer_info_left { float: left; }
