/*
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/
*/
/* FIXES */
.custom ul#tabs, .custom  #feature_box, .custom #sidebars {
	border: none;
}
.custom #footer { border-top: 1px solid #AAA; }

/* CUSTOMIZATIONS */
.custom.home .headline_area { 
	position: absolute;
	top: -2999px;
}
.custom #content h1, 
.custom #content h2, 
.custom #content h3, 
.custom #content h4 {
	color: #4C7675;
	margin-top: 0;
	font-weight: bold;
}
.custom #content h1 {
	margin-top: 6px;
}
.custom a:link { color: #2B4C4A; } 
.custom a:visited { color: #447874; } 
.custom a:active { color: #990000; } 
.custom a:hover { color: #990000; } 

.custom #content img { border: 1px solid #999;}

.custom {
	background: #FFF url(images/bg2.gif) 50% top repeat-y;
}

/* HEADER */ 
.custom #header {
	border: none;
	border-top: 1px solid #000;
	padding: 0;
	margin: 0;
}
.custom #header p#logo,
.custom #header p#tagline,
.custom #header h1#tagline {
	position: absolute;
	top: -2999px;
}
.custom #header_area .page {
	background: url(images/banner_inside.jpg) left top no-repeat;
	width: 770px;
	height: 79px;
	margin-top: 14px;
}
.custom.home #header_area .page {
	background: url(images/banner2.jpg) left top no-repeat;
	height: 205px;
}
.custom #footer_area.full_width .page,
.custom #content_area.full_width .page {
	width: 625px;
}

/* NAV TABS */ 
.custom ul#tabs {
	position: absolute;
	top: 74px;
	width: 100%;
	background: transparent url(images/bg_nav.jpg) left top no-repeat;
	border: none;
	padding: 0;
	border-top:1px solid #000;
	border-bottom:1px solid #000;
}
.custom.home ul#tabs {
	top: 197px;
	background: transparent url(images/bg_homenav.jpg) left top no-repeat;
}
.custom #tabs li {
	background: none;
	border: none;
}
.custom #tabs li a, .custom #tabs li a.visited {
	color: #000;
	letter-spacing: 0px;
	text-decoration: none;
	text-transform: uppercase;
	padding: 3px 10px 3px 10px;
	border-right: 1px solid #333;
	display: block;
}
.custom #tabs li a:hover {
	color: #FFF;
	background-color: #000;
	border: none;
}
.custom #tabs .current_page_item {
	background-color: #000;
	border: none;
}
.custom #tabs .current_page_item a {
	color: #FFF;
}

/* FOOTER */
.custom #footer p.blurb {
	text-align: left;
}

/* PAGE-SPECIFIC */
.custom.schedule .format_text img.alignleft {
	margin-right: 0;
}
.custom.schedule .format_text img.alignright {
	margin-left: 0;
}

table.tracks td { font-family: verdana; font-size: 80%; margin: 0 ; padding: 0 10px 0 0;  border-bottom: 1px solid #DEDEDE; }

input#signup-submit { width: 40px; }