/*
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/
*/

/*CONTAINER */
.custom #container {
   width: 690px;
   padding: 10px 10px 0 0;
   margin-top: 10px;
   margin-bottom: 20px;
   border: 1px solid #BBC4A3;
   background: #FFFFFF;
}


/* ROTATING HEADER STYLE */
div#rotating_header_image { 
   margin: 0 0 10px 10px;
   padding: 0 0 0 0;
}

/* STYLE THE HEADER */
.custom #header{
   padding: 0 0 .5em .5em;
   margin: 10px 0 0 10px;
   background: #dee4e2;
   
}
.custom #header #logo {
   font-size: 16px;
   padding: .3em .9em .1em .3em;;
   
}


/* STYLE THE TAGLINE */
.custom #header #tagline {
   font-style:italic;
}

/*NAV BAR ALIGNMENT & STYLE */
.custom .menu {
   margin: 0 0 0 10px;
   padding: 0 0 0 .3em;
   border: 1px solid #BBC4A3;
   font-weight: bold;
}

.custom .menu a{
   padding: .3em .9em .3em .9em;
   text-transform: none;
}

.custom .menu li a
{
letter-spacing: 0px;
padding: 5px 5px 5px 5px;
}

/*CONTENT STYLE AND PADDING */
.custom #content { 
	border: 1px solid #BBC4A3;
	padding: 10px;
	margin: 10px;
}

/* STYLE THE FIRST POST */
.custom .post.post_box{
   padding: 0 0 0 0;
   margin: 0 0 0 0;
}

/*POST TITLE FONT SIZE*/

.custom .headline_area { 
   margin: 0 0 10px 0;
   border-bottom: 1px dotted #BBC4A3
}

/*HIDE 'COMMENTS ARE CLOSED' */
.custom .format_text .to_comments {
   display: none;
}

/*IMAGE BOX STYLE*/
.custom #multimedia_box {
   text-align: center; 
   padding: 0 .5em .5em .5em;
   margin: 0;
}
.custom div#image_box img {
   border: 0px;
}

/*CALENDAR STYLE*/
.custom #wp-calendar{
	background: #f2f2e9;
}



/*STYLE THE SIDEBAR*/
.custom #sidebars{
   padding: 0 0 0 0;
   margin: 0 0 0 0;
}

.custom .sidebar_list { 
   margin: 0px 0px 0px 0px;
   padding: 10px 0px 0px 0px;  
}

/* SPECIFY PADDING ON WIDGETS */
.custom li.widget {
   border-top: 1px solid #BBC4A3;
   padding: 10px 0px 0px 0px;
   
}

.custom li.widget ul li { 
   padding: 0 0 0 .9em;
   margin-bottom: .1em;
   font-size: 1;
}
.custom li.widget li ul { 
   
}

/*STYLE FOR CATEGORIES*/
.custom li.widget_categories { 	
   
}

/*FOOTER*/
.custom #footer{
   margin: 6em 0 0 0;
}


