/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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 overwrite *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!
*/

/* Body */

.custom #container {
	width: 1004px;
}

.custom a:hover {
	color: #c03030;
}

.custom abbr, acronym {
	cursor: auto;
}

/* Header */

.custom #header { 
	border-bottom: 0px; 
	clear: both; 
}

.custom #header #logo a { 
	display: block; 
	height: 100px; 
	width: 725px; 
	background: url('images/header.gif') no-repeat; 
	outline: none;
	margin-top: 5px;
	margin-bottom: 10px;
	float: none;
	margin-left: 115px;
}
	
/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */
/* This is a bit of a kludge, but it seems to work. */

.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }

.custom #image_box {
	background-color: white;
	border-right: 0.1em solid #ddd;
}

.custom #image_box img {
	display: block;
}

/* Navigation */
.custom ul#tabs {
	width: 42em;
	font-size: 1.2em;
	padding-top: 4px;
	padding-bottom: 4px;
	border-style: double;
	border-width: 4px;
	background-color: #fff;
	margin-right: 19em;
	margin-left: 19em;
	z-index: -1;
}

.custom ul#tabs li {
	margin-bottom: -4px;
	margin-top: -4px;
	background-color: #fff;
	padding-bottom: 0px;
	border-style: none;
}

.custom ul#tabs li a, .custom ul#tabs li a:visited {
	background-color: #fff;
	margin: 2px 10px;
	padding-right: 2em;
	padding-left: 2em;
}

.custom ul#tabs li.current_page_item {
	margin-top: 5px;
	z-index: -1;
}

.custom ul#tabs li.current_page_item a { 
	background: #000;
	color: #fff;
	z-index: 1;
	border-style: double;
	border-width: 4px;
	display: inline;
	margin-left: 22px;
	padding: 9px 15px 9px;
}

.custom .sidebar h3 {
	font-weight: bold;
	text-transform: uppercase;
	border-top: 1px solid #bfbfbf;
	padding-top: 5px;
	border-bottom: 4px double #d8d8d8;
	padding-bottom: 5px;
}

.custom .sidebar a {
	color: #000;
}

.custom .sidebar a:hover {
	color: #c03030;
	text-decoration: underline;
}

.custom li.widget.widget_pages ul {
	list-style: upper-roman;
	margin: 1.8em;
	padding-left: 10px;
}

.custom li.widget .alert {
	padding: 0.846em;
	line-height: 1.385em;
	background: #e3f0f2;
	border: 1px;
	border-style: solid;
	border-color: #addde6;
}

.custom li.widget .alert h4 { 
	font-size: 1.077em; 
	font-weight: bold; 
	line-height: 1.286em; 
	margin-bottom: 0.429em; 
}

.custom li.widget .alert ul {
	list-style: circle;
	padding-left: 1.0em;
}

.custom li.widget .alert a {
	text-decoration: underline;
}

.custom li.widget .rss a { 
	padding-left: 20px; 
	background: url('/wp-content/themes/thesis/images/icon-rss.gif') 0 50% no-repeat; 
}

.custom li.widget .email a { 
	padding-left: 20px; 
	background: url('/wp-content/themes/thesis/images/icon-email.gif') 0 50% no-repeat; 
}

.custom li.widget .twitter a { 
	padding-left: 20px; 
	background: url('/wp-content/themes/thesis/images/icon-twitter.gif') 0 50% no-repeat; 
}

.custom li.widget .author a {
	text-decoration: underline;
}

.custom li.widget img {
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Content */

.custom #content_box {
	border-top: 1px solid #ddd;
	z-index: -1;
	margin-top: 2px;
}

.custom #content_box a {
	color: #000;
}

.custom #content_box a:hover {
	color: #c03030;
	text-decoration: underline;
}

.custom .category {
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.custom .category a {
	color: #000;
	text-decoration: none;
}
	
.custom .category a:hover {
	color: #000;
	text-decoration: underline;
}

.custom	#archive_info {
	font-size: 1.2em;
}

.custom	#archive_info p { 
	margin-bottom: 0.5em;
	letter-spacing: 0px;
	text-transform: none;
	line-height: 1.5em;
	padding-left: 2px;
}

.custom .catdescript {
	text-transform: none !important;
	font-style: italic;
	font-size: 1.2em;
}

.excerpt {
	font-weight: bold;
	color: #444;
	font-size: .85em;
	line-height: 1.65em;
}

.custom hr {
	border-top: 1px dotted #333; 
	margin-top: 30px; 
	margin-bottom: 30px; 
	margin-left: 10%; 
	margin-right: 10%; 
}

.custom hr.invisible {
	border-top: 0px; 
	margin-top: 30px; 
	margin-bottom: 30px; 
	margin-left: 10%; 
	margin-right: 10%; 
	visibility: hidden;
}

.custom .format_text ol.footnotes { 
	font-size: 0.8em; 
	color: #666;
}

/* Bureaucracy */

.custom .bureaucracy { 
	line-height: 1.385em;
	font-size: 13px;
}

.custom .bureaucracy p {
	padding-bottom: 10px;
}

.custom .bureaucracy a {
	color: #000;
	text-decoration: underline;
}

.custom .bureaucracy a:hover {
	color: #c03030;
}

.custom .bureaucracy h3 {
	background: url('images/bureaucracy.gif') no-repeat;
	display: block; 
	height: 40px; 
	width: 200px;
	border: none;
}

.custom .bureaucracy_single {
	line-height: 1.5em;
	font-size: 1.8em;
}

.custom .bureaucracy_single p {
	padding-bottom: 1em;
}

.custom li.widget .links h2 {
	font-weight: bold;
	padding-top: 1.0em;
}

.custom .rss a:hover {
	text-decoration: underline;
}

.custom .permalink {
	text-transform: uppercase;
}

.custom .permalink a {
	color: #000;
	text-decoration: none;
}

.custom .permalink a:hover {
	color: #000;
	text-decoration: underline;
}

/* */

.custom .large {
	font-size: 1.2em;
	line-height: 1.6em;
}

/* Depricated classes (Making sure we play nice with the old folks)*/

.custom p.caption { 
	width: 500px; 
	padding: 1px 0 6px 0; 
	font-size: 0.8em; 
	line-height: 1em; 
	font-style: italic; 
	float: right; 
	}

.custom p.footnote { 
	width: 480px; 
	padding: 1px 0 6px 20px; 
	font-size: 0.9em; 
	line-height: 1.2em; 
	float: right; 
	text-align: justify; 
	}
