/*
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/
*/
.custom #header {
	background:url(images/header.png) no-repeat;
}
body.custom {
    background: url(images/bg.gif) repeat-x top left;
    background-color: #000000;
}

.custom #container {
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
}

div.author_bio {
	border: 2px solid #2583AD;
	width: 90%;
	margin: 0 auto;
	padding: 5px;
}

div.author_bio div {
	border: 1px solid #2583AD;
	padding:10px;
}
div.author_bio div div {
	background: url(images/wordpress-author.png) no-repeat;
	height:58px;
	width:58px;
	float:left;
	padding:0;
	border:0;
}
.custom #s { 
	font-size:10pt; 
	position:relative; 
	float:right; 
	margin:2.0em; 
	width:200px;
	padding:2px; 
} 
.custom widget thesis_widget_search { 
	background:#fff; 
}
#feature_box {
	height:189px;
	background: url(images/board.png) no-repeat;
	border:0;
	color: #FFF;
	font-size:1.3em;
	padding-top:10px;
	padding-left:20px;
	font-weight: normal;
}
#feature_box h3 {
	font-size:1.7em;
	padding-bottom:10px;
}
#feature_box ul li {
	margin-left:15px;
	padding-bottom:10px;
	line-height:1.3em;
}
#feature_box ul li a {
	text-decoration: underline;
	color: white;
}
#multimedia_box {
	height:189px;
	padding:0;
	background: url(images/board.png) no-repeat -675px 0px;
	border:0;
	color:white;
	padding: 5px;
}
#multimedia_box h3 {
	padding:10px 0 5px 0;
}
div.headline_area div.confirm_email h1 {
	float:left;
	color:green;
	font-family: Verdana;
	font-size: 28px;
	font-weight: bold;
	width:473px;
	border-right: 4px solid #BDBDBD;
}
div.headline_area div.registration h1 {
	width:630px;
}
div.headline_area div.confirm_email {
	width:100%;
	color: #808080;
	height: 30px;
	font-size: 18px;
}
div.headline_area div.confirm_email p {
	float:right;
	width:433px;
}
div.headline_area div.registration p {
	width:250px;
	padding:10px 0;
}
.confirmBox {
	width:470px;
	height:60px;
	padding: 15px 30px 0 30px;
	text-align:center;
	margin: 0 auto;
	background-color:#FFFACB;
	border: 1px solid #E8DA52;
}
.confirmInstruct {
	padding-top:10px;
	width: 530px;
	margin:0 auto;
}
.confirmReg {
	width:570px;
	padding: 15px 15px 0 15px;
	margin: 0 auto;
	background-color:#E4E4E4;
	border: 1px solid #BDBDBD;
}
.confirmReg h2 {
	color:green;
	padding-top:0;
	margin-top:0;
}

ol.errorPage > li {
padding-bottom:10px;
}