/*
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/
*/
#page { 
	padding-top:50px;
	}
#header {
	height:92px;
	overflow:hidden;
	padding:0;
	margin:0;
	border:0;
	border-color:#DDD;
}
#content_box {
	border:1px solid #DDD;
	background:transparent none;
}
#multimedia_box { 
	border:none;
	background:transparent none;
	margin-bottom:1.1em;
}
#sidebars #image_box img {
	background:transparent none;
	border:none;
	border-style:none;
	border-color:transparent;
	margin:0;
	padding:0;
}
#sidebars {
	width:40.5em;
}
#sidebar_1 {
	width:37.6em;
	border:1px solid #DDD;
	margin:1.1em;
	margin-bottom:2.2em;
	margin-top:0;
	padding-top:.5em;
}
#sidebar_1 h3 {
	font-size:2.5em;
	font-variant:normal;
	width:248px;
	height:39px;
	background:transparent url(images/factoidH3.gif) no-repeat 0 0;
}
#sidebar_2 {
	width:37.6em;
	border:1px solid #DDD;
	margin:1.1em;
	margin-bottom:2.2em;
	margin-top:0;
	padding-top:.5em;
}
#footer {
	text-align:left;
	background-color:#DDD;
	margin:0;
	width:93.5em;
	padding-right:0;
	border-top:none;
}
#image_box img.three_by_two {
height:25.0em;
width:37.6em;
}
#content .format_text h3 {
	color:#CC3333;
}
.category-quotes.teaser .format_teaser {
margin:0;
padding:0;
}
.menu a, .menu li ul {
	margin-bottom:5px;
}
.menu, .menu a, .menu li ul {
	border:0 1px 0 0;
}
.menu {
	border-bottom:5px solid #999;
}
.menu a {
	border-left:1px solid #DDD;
	line-height:0.5em;
	font-weight:bold;
		text-transform:none;
}
.menu li:first-child a {
	border:none;
}

.clock {
	color:#DDDDDD;
float:right;
font-size:1.1em;
font-weight:bold;
margin-bottom:-30px;
padding:10px;
position:relative;
top:-40px;
z-index:50;
	}
.rss {
	margin-right:200px;
}
/*
	List Expander 
*/

.listexpander, .listexpander ul, .listexpander li{
	margin:0;
	padding:0;
	list-style:none;
}

.listexpander li{
	line-height:200%;

}



/* first level */

.listexpander li, .listexpander li.collapsed{background:#FFF none;} 
.listexpander li.expanded{background:#FFF none;}


p.listexpander{
	height:1.5em;
	margin:0em 0;
}
p.listexpander a{
	float:left;
	height:1.5em;
	line-height:1.5em;
	padding:0 10px;
	border:1px solid #eee;
	margin-right:5px;
	cursor:pointer;
	display:none;visibility:hidden; /* comment out this line to display advance controls */
}
p.listexpander a:hover{
	background:#FFF;
}

/* float fix */
.listexpander li:after{
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.listexpander li{
	display: inline-block;
}
/* Hides from IE-mac \*/
* html .listexpander li{
	height: 1%;
}
.listexpander li{
	display: block;
}
/* End hide from IE-mac */
/* end float fix */