/*
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.custom {
	background-image: url(http://www.macleanmedia.com/scratch/wood-floor.jpg);
}

div#page {
	padding-top: 0px;
background-color: white;
}

div#header {
	background-color: white;
	padding-top: 10px;
}

div#content_box {
	background-color: white;
}



 div.format_text.entry-content p.to_comments a span {
	font-size: inherit;
	font-weight: normal;
	font-style: normal;
}

div.comments_closed {
	display: none;
}

/* custom  sitemap and archives page */
.custom .sitemap h3 {margin-top: 0;}
.custom .sitemap ul {font-size: .85em; }
.custom .sitemapl { float: left; width: 30%;}
.custom .sitemapr { float: right; width: 70%;}

.custom #header_widget_1 ul.sidebar_list li.widget {position: absolute; display: block; top:60px; left:787px; width:468px; }

#text-9 div.textwidget object {
	left: 20px;
	position: relative;
}


ul.menu {	list-style: none;
	background: #eceefb;
	height: 35px;
	width: 100%;
	margin:0px auto;
	border-left: solid 1px #eceefb;

	
}

ul.menu li {	
			float: left;
	border-right: solid 1px #eceefb;
	height: 35px;
	
	
}

ul.menu li a, ul.menu li.current a{	


			padding: 0 9px 0 9px;
	border-right: solid 1px #eceefb;
	outline: none;
	background: #eceefb;
	border-top: 0px;
	border-bottom: 0px;
	font: normal normal 12px/35px Georgia, "Times New Roman", Times, serif;
}

ul.menu li a:hover, ul.menu li.current a:hover{	
	background: #e7e9f6;
	
}

li.tab.tab-1 {

}

#page ul.menu li.tab.tab-home.current a {

		background: #eff2ff;

}
ul.menu {
	margin: 0 auto;
	width: 930px;
border-bottom: 0px;
}

li.tab.tab.current a
{
	background: #fffffc;
}
li.tab.tab-home.current a{
	background: #eceefb;
}


/*Similar Posts*/

#similar-posts li {
	margin-left: 0px;
	float: left;
	font-weight: bold;
	background: #fff;
	line-height: 1.4em;
	overflow: hidden;
	margin-right: 10px;
}

.custom #similar-posts h2 {
	clear: left;
	font-size: 13px;
	line-height: 1.4em;
	margin: 0;
	overflow: hidden;
	text-transform: capitalize;
	width: 120px;
}

#similar-posts li a img {
	padding: 6px;
	background: #eee;
	border: solid 1px #ddd;
}

#similar-posts h2 a {
	color: #6582eb;
}

.rel-posts ul {
	height: 220px;
	margin-left: 0px;
	margin-bottom: 0px;
}

.rel-posts {
	background: white;
}

.rel-posts h3{
font-size: 16px;
margin-bottom: 10px;
}

.postauthor p{
	font-size: 14px;
	line-height: 1.4em;
}

.postauthor h3{
font-size: 16px;
margin-bottom: 10px;
}

#post-box-descriptions p { font-size: 14px; line-height: 1.5em; padding: 10px 2.5em 10px 0;  }
#post-box-descriptions h3 { padding: 0; }
#post-box-descriptions ul { list-style-position: inside;  list-style-type: square; margin-left: 1em; }
#post-box-descriptions ul a { font-size: 14px;
	
}
#post-box-descriptions ul a:hover { border: 0; }
#post-box-descriptions li { margin-bottom: 10px; }
#subscribe { background: #FFF; margin: 5px 5px 0 5px; padding: 5px 10px; }
#custom { background: #E4F2FD; border: 1px solid #C6D9E9; margin: 15px; padding: 19px 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px;}
#custom-description{
	background: #E4F2FD; border: 1px solid #C6D9E9; float: left; margin: 5px; padding: 0px 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; 
}