﻿/*
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/
*/

/* -------- STUFF THAT I PUT AT THE TOP BECAUSE IT WORKS BETTER THERE ------------- */


.in-text-comment {
color: #0C0073;
}

.format_text img.left, .format_text img.alignleft, .wp-caption.alignleft {
margin:0 1.571em 0 0;
}

.format_text h2, .format_text h3 {
font-size:1.286em;
line-height:1.222em;
margin:0 0 0.611em;
}


/* --------------SPECIAL / ONE TIME USE STYLES -------------- */


.noborder {
border: 0px;
border-width: 0px;
border-color: #ffffff;
padding: 0px !important;
width: auto !important;
text-align: center !important;
}



/*  -------------- IN TEXT QUOTING -- PULL QUOTES & BLOCKQUOTES---------- */
.custom .pullquote {
padding: 10px;
float: right;
width: 180px;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 15px;
border-top-width: 3px;
border-bottom-width: 3px;
border-top-style: double;
border-bottom-style: double;
border-top-color: #A9A9A9;
border-bottom-color: #A9A9A9;
font-size: 20px;
text-align: center;
line-height: 28px;
font-family: Tahoma, Helvetica, sans-serif;
font-style: italic;
font-weight: normal;
color: #4F839F;
}


/* ---------------- BUMPS THE POST BOX AND SIDEBAR UP --------- */

.post_box {
padding-top: 0em;
}

.custom ul.sidebar_list {
padding-top: 0em; }

/* ----------------- PAGE LAYOUT ELEMENTS ---------------- */

body.custom {

    background-image:url('images/pattern.jpg')
        }

.custom #container {
    margin-top: 0em;
    margin-bottom: 2em;
    padding: 0em;
    background: #33332f;
    border: 0px solid #3e3e3a;
    }

.custom #page {
    background: #fff;

    }

.custom #header { 
margin: 0px;
padding: 0px;
border-bottom: 0px double #ddd; clear: both; 

}

.custom #tabs {
	border: 0px;
}



#centerdiv {
  width: 877px ;
  margin-left: auto ;
  margin-right: auto ;
  margin-top: 1em;
  margin-bottom: -0.26em;
}

/* --------------------- MENU FUNCTIONS ------------------- */


#menu {
background:transparent url(images/nav.jpg) no-repeat;
height:60px;
margin-left: auto;
margin-right: auto;
margin-bottom: -1.25em;
padding:0;
width:877px;
}

#menu ul {
list-style-image:none;
list-style-position: inside;
list-style-type:none;
margin:0;
padding:0;
}

#menu li {
display:inline;
}


#menu a:hover {
background-color:#FFFFFF;
color:#000000;
opacity:0.4;
text-decoration: none;
}

#menu a {
color:#FFFFFF;
background: url(images/img05.gif) repeat-y left top;
display:block;
float:left;
font-size:13px;
height:40px;
padding:20px 35px 0;
text-decoration:none;
text-transform:capitalize;
}

a:hover {
border-bottom:medium none;
text-decoration: underline;
}


/* -------------- SIDEBARS -------------- */


.sidebar h3 {
font-size:larger;
color: inherit;
font-variant: normal;
letter-spacing: inherit;
text-align: center; 
padding: 3px 0px; 
border-bottom: dashed 1px #ccc;
}

#sidebarbg {
background-color: #F5F5F5;
padding-top: 2px;
padding-right: 2px;
padding-bottom: 2px;
padding-left: 10px;
border: 1px dotted gray;
}

#sidebarbg .headline {
text-align: center;
font-size: larger;
}

#sidebarbg ul
{
padding: 0px;
margin:0px;
}

#sidebarbg li
{
background-image:url(http://www.trancedout.com/blog/images/li-pin.gif);
background-repeat:no-repeat;
background-position:0px 5px;
padding-left: 20px !important;
}

#sidebarbg h2 {
	font-size: 14px; padding: 3px 0px; margin: 0px 7px 3px 7px; border-bottom: dashed 1px #ccc;
}

li#wp-cumulus.widget {
background-color: #F5F5F5;
border: 1px dotted gray;

}


/*  Change for Thesis 1.6 -- .menu (the menu class) is their menu;  #menu (the menu id) is my menu */

.menu {
border-color: #ffffff;
border: 0px;


/*   ------------------------- TEXT STYLES ------------------------ */

.negative-margin2em {
margin: -2em;
}

