/*
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!
*/

.custom #container {
	background:#fff none repeat scroll 0 0;
	border:0.4em solid #fff;
	margin-bottom:2em;
	margin-top:2em;
	padding:0.3em;
}

.custom #page {
	background: #fff;
}



.custom #header {
	border-bottom: 3px solid #ddd; clear: both; 
	background:#fff none repeat scroll 0 0;
	clear: both;
}

.custom #header { padding: 8px; }

.custom #header #logo a { 
	display: block; 
	height: 40px; 
	width: 216px; 
	background: url('images/header.png') no-repeat; 
	outline: none;
	margin: 15px 0 15px 0;
}

.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

#header #logo a, #header #logo a:visited {
color:#111111;
text-decoration:none;
}

#footer { color: #888; border-top: 3px solid #ddd; text-align: right; clear: both; }


/*---:[ headlines and bylines ]:---*/

.custom	h2 a, h2 a:visited { 
	color: #333;
	text-decoration: none; 
	font-family:helvetica,arial,sans-serif;
	font-size:28px;
	letter-spacing:-1px;
	line-height:30px;
	margin:0;
	padding:0;
	font-weight:bold;
}

.custom h2 a:hover { text-decoration: underline; }

/*---:[ h3 and h4 sizes are calculated relative to the base font size of the content or sidebar ]:---*/
	
.custom	.sidebar h3 { color: #333; font-weight:bold; }

h4 { font-size: 1em; font-weight: bold; }

.custom h5 {font-size: 18px; font-weight: normal; }

/*---:[ bylines ]:---*/

.custom .author_and_date { 
	font-style: normal; 
	color: #6C7A8A; }

.custom	.author_and_date span, .author_and_date abbr { 
	font-style: normal; 
	letter-spacing: 1px; }

.custom .author_and_date a, .author_and_date a:visited { 
	color: #888; 
	text-decoration: none; 
	border-bottom: 1px solid #eee; }
	
.custom .author_and_date a:hover { text-decoration:underline; }


/*---:[ content styles ]:---*/
	
.custom	.format_text ul { list-style: disc; }

/*---:[ sidebar styles ]:---*/

.custom .sidebar a, .sidebar a:visited { color:#1152ed; text-decoration: none; }

.custom .sidebar a:hover { color:#1152ed; text-decoration: underline; }

.custom ul.sidebar_list { color:#333; list-style: none; padding: 0 40px; }

li.widget { color:#333; width: 100%; }

li.centered { text-align: center; }

li.widget ul { color:#333; list-style: none; }
.custom li.widget ul { list-style:disc; }