/*
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/
*/
body, html {
	background-color: #08242E;
}
#container {
	margin-top:20px;
}
#page {
	width:950px;
	background: #FFFFFF url(images/page-background.jpg) no-repeat top left;
}
#header {
	padding:0 25px;
	border:0;
}
#footer {
	background: #FFFFFF url(images/footer-background.jpg) no-repeat bottom left;
}
.search_form p {
	height: 32px;
	width: 223px;
	float:right;
	background: white url(images/search-background.png) no-repeat top left;
	margin-top:41px;
}
.custom #s { 
	color: #a3a192;
	background-color: #f8f8f4;
	font-size:10pt; 
	width:180px;
	border: 0;
	margin: 9px 0 0 7px;
}
.feed-icons {
	clear:both;
	float:right;
	margin-top:34px;
}
.menu {
	margin: 0 0 20px 25px;
	width:775px;
}
.menu, .menu a, .menu li ul {
	border-width: 0;
	border-style: none;
}
.menu a {
	font-size:12px;
	line-height: 13px;
	padding: 9px 10px;
}
.menu .current a, .menu .current-cat a, .menu .current a:hover, .menu .current-cat a:hover {
	color: #ff7800;
	background: transparent url(images/li-background.png) no-repeat top right;
}
.menu a, .menu a:hover {
	background: transparent url(images/li-background.png) no-repeat top right;
}
.menu a:hover {
	color: #ff7800;
}
.submenu a {
	background: transparent url(images/drop-background.png) repeat-x top right;
	border-left: #d3d3d3 1px solid;
	border-right: #d3d3d3 1px solid;
	border-bottom: #d3d3d3 1px solid;
	line-height:12px;
}
.submenu a:hover {
	background: transparent url(images/drop-background.png) repeat-x top right;
}
.post_box, .teasers_box {
	margin:0;
}
#content .top {
	padding-top:0;
}
#sidebars {
	width:290px;
	padding-right:25px;
}
.sidebar ul.sidebar_list {
	padding:0;
}
#content_box {
	background: none;
}
#content {
	width:590px;
	padding-left:25px;
}
#footer {
	border-style:none;
}
#feature_box {
	font-size:14px;
	padding:0 10px;
	margin: 0 25px 20px 25px;
	border-style:none;
	background: transparent url(images/featured-background.png) no-repeat top left;
}
img.fl {
	float:left;
}
img.fr {
	float:right;
}
.featuredpost {
	display:block;
	height:262px;
	width:850px;
	margin-left:15px;
}
.featureditem {
	width:850px;
}
.featureditem .leftcol {
	float:left;
	padding:10px 0 0 20px;
}
.featureditem h1 {
	font-variant: small-caps;
	font-family: "Times New Roman";
	font-size:26px;
	color:black;
	font-weight:normal;
	width:100%;
	border-bottom: #a4a4a4 1px solid;
	padding-bottom:7px;
	margin-bottom:12px;
}
.featureditem a {
	color:#ff7800;
}
.featureditem a:hover {
	text-decoration: underline;
	color:#ff7800;
}
.featureditem h1 span {
	color: #ff7800;
}
.featureditem h3 {
	font-size:16px;
	font-weight: bold;
	padding: 10px 0 10px 0;
}
.featureditem ul {
	padding-top:10px;
	list-style: none;
}
.featureditem ul li {
	padding-bottom:5px;
}
img.featright {
	float:right;
}
a.more {
	display: block;
	height:20px; width:90px;
	padding: 7px 10px 3px 10px;
	text-align: center;
	background: transparent url(images/more-button.png) repeat-x top left;
	color: white;
	border: #a4a4a4 1px solid;
	margin-top:10px;
}
a.more:hover {
	text-decoration: none;
	background: transparent url(images/more-button.png) repeat-x -30px left;
	color:white;
}
.widget {
	background: transparent url(images/sidebar-background.png) no-repeat bottom left;
	padding-bottom: 10px;
}
.widget h3 {
	padding:10px 10px 0;
	background: transparent url(images/sidebar-top.png) no-repeat top left;
}
.widget ul {
	margin: 0 10px;
	padding: 10px 10px 0;
	background-color: #fff;
	border: #f1f1ed 1px solid;	
}
li.widget {
	margin-bottom: 20px;
}
