/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the &lt;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; }	&lt;--- 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 {margin-top: 2.2em; margin-bottom: 2.2em;}

/* HEADER TWEEKS */
.custom #header { background: #ffffff url(images/header.gif) top left no-repeat; margin-bottom: 1.0em; padding: 0 ; height: 10em }
.custom #header #tagline { font-size: 10px; padding: 55px 0px 0px 468px; color: #4c472c}

/* MENU LICIOUS */
.custom .menu {background: #68613c; padding: 0;  }

/* CONTENT MANIPULATION*/
.custom #content_box {margin-top: 1.0em; margin-left: 0em;}
.custom #content_box h1, h2, h3, h4, h5 {padding-left: .2em; font-size: 2.4em; font-variant:small-caps; letter-spacing:2px; border-bottom: 1px solid #DDDDDD;}
.custom #content_box a:hover {color: #111111;}
.custom .format_text h2, .format_text h3, .format_text h4, .format_text h5 {font-weight: normal; font-size: 1.8em;}
.custom .post_box, .teasers_box, .full_width #content_box .page {margin: 0em}

/* Page Tweeks */
.custom .post_box { width: 662px; float: left;  padding: 1.0em; border:1px solid #dddddd; margin-bottom: 1.0em;}
.custom .comments_closed p {display: none ;}

/* FEATURE BOX */
.custom #feature_box  {margin: 0em 1em 1em 0em; padding: 1em; background:#9d956a;}

/* Features List */
.custom #features li { float: left; width: 200px; }

/* SIDEBAR GOODNESS */
.custom .sidebar h3 {padding: 0.1em 0.2em; ; font-variant:small-caps; font-weight: bold; border:; letter-spacing:2px;}
.custom .sidebar ul.sidebar_list {margin: 0 1.0em; padding: .5em 0.5em; }
.custom .sidebar a {font-variant:small-caps; }
.custom .sidebar a:hover {text-decoration: underline; }


/* TEASER TEASER */
.custom .teasers_box {padding-top: 0; padding-bottom:0; border-top: 0; margin-top: 0.5em; margin-bottom: 0.5em;}
.custom .teasers_box h2 {border-bottom: 1px solid #afa893; font-size: 1.8em; padding-left: .2em; font-variant:small-caps; }
.custom .teasers_box h2 a {color: #96342C;}
.custom .teasers_box h2 a:hover {color: #660000; }



/* MULTIMEDIA & IMAGE BOX STUFF */
.custom #multimedia_box {margin-top: 0; margin-bottom: 0;}
.custom .image_box {background: #9d956a;}
.custom #image_box {background: #ffffff; padding: .5em; border: 0.1em solid #dddddd; }
.custom #image_box img {border-width:0.0em; display:block; padding:0.0em; height: 137px; width: 248px;}
.custom .custom_box {background: #9d956a;}

/* Google Map iFrame */ 
iframe.framed {border-width: 1px; border-color: #DDDDDD; border-style: solid; padding: 0.5em; margin: .6em 1.571em 1.571em 0; background: #EEEEEE none repeat scroll 0 0;}


/* FOOTER MAGIC */
.custom #footer {height: auto; background: #686137; margin-top: 1.0em; font-variant:small-caps; text-align:center;}
.custom #footer a, a:hover { color:#ffffff; } 
.custom #footer h6{text-align:center; font-size: 10px;}




