﻿/*
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 {
}.custom #container {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0.0em solid #000;
}

/*keeps the multimedia box to the left*/
.custom #multimedia_box {
background:#ffffff;
margin:0px 0px 0px 0px;
padding:0px;
border:0px;
}

/*removes the tiny remaining border from the multimedia box*/
#image_box img {border:none; padding:0px;}

/*adds sidebar background color when only MM box in sidebar. The image is the sidebar bkg the background fff color covers the content area*/
.custom #content_box {
background: #fff url('images/blueBkg.jpg') 
center left repeat-y; margin-top:0px;
}

.custom #header #logo a { display: block; height: 115px;width:960px; background: #000000 url('images/header.jpg') no-repeat; 
outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }
.custom #header {border-bottom:none; padding:0}
.custom #header { padding: 0px; 
}

/*controls the elements inside the menu, but not lenght, background color, or height which is below*/
.custom .menu  a, .menu li ul
{
letter-spacing:.1em;
font-weight:normal;
border: .0em solid #DDCFAC;
text-transform:none;
padding-left:8px;
padding-bottom:0px;
height:22px;
}

.custom .submenu a, .menu li ul {margin-left:3px;}

/*change the nav bar except tabs*/
.custom .menu { background: #ddcfac; margin-left: -1px; height:31px;}

.menu .tab-home {width:241px; text-align:center; padding-left: 1px;padding-right: 32px;}
.menu .tab-2 {padding-left:35px; padding-right:5px;}
.menu .tab-3 {padding-left:30px; padding-right:5px;}
.menu .tab-4 {padding-left:30px; padding-right:5px;}
.menu .tab-5 {padding-left:30px; padding-right:5px;}

/*moves the nav bar to the right and moves the entire bar up and down*/
.custom .menu { width:961px; padding-left: 0px; padding-bottom : 0.0em; padding-top: 0.0em;}

.custom #footer {background:#8291ae;}

/*controls the body text margins*/ 
.custom .post_box {
  margin-left: 10px;
  margin-right: 30px;
}

h1 {; font-weight: bold;
} 
address {font-style: normal;	
}
blockquote {
border-top: 1px solid #d3cfab;
border-bottom:5px;
padding-top:5px;
padding-bottom: 5px;
padding-right: 10px;
padding-left: 5px;
background: #ddcfac;
width:auto;
height: auto;
}
