/*
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 {  
    background: url('images/back.jpg');
color: #867663;
}

.custom #page {
    background: #f3e1bb;
	-moz-border-radius: 1em;
}

.custom #footer { background: #979666; color: #7D5B38;}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.1em;
    background: #979666;
    border: 0.2em solid #979666;
	-moz-border-radius: 1em;
}

.custom #content_box{
    padding: 2em;
}

.custom #sidebars{
    float: left;
}

.custom #sidebar_1 .widget_pages ul {
	margin: 0px 0px 0px 0px;
	padding: 0px;
}

.custom #sidebar_1 .widget_pages li {
border-bottom:0px dotted #111;
text-decoration:none;
margin: 5px 10px 7px 0px;
}

.custom .sidebar ul.sidebar_list {
padding-left:0px;
}

.custom #sidebar_1  li a {
color: #0066CC;
text-decoration:none;
font-size:14px;
}
.custom #sidebar_1 .widget_pages li a:hover {
color: #3C214E;
text-decoration:none;
}

/*--LINK colors, bgs, and borders--*/
.custom a, .custom a:visited { color: #0066CC; text-decoration: none; padding: 1px;}
.custom a:hover, .custom a:focus { color: #fff; background-color: #B4ABAB; padding: 1px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #FFE1E1; text-decoration: none;}
.custom ul#tabs li a, .custom ul#tabs li a:visited { color:  #0066CC; text-decoration: none; font-weight:bold;}
.custom	ul#tabs li a:hover , .custom a:focus{ color: #fff; text-decoration: none; background-color: transparent; border-bottom:none;}
.custom .format_text a:link, .custom .format_text a:visited {color: #0066CC;}
.custom .format_text a:hover, .custom .format_text li a:hover {color: #FFFFFF !important;}
.custom .sidebar a:link, .custom .sidebar a:visited { color: #0066CC;}
.custom .sidebar a:hover {color: #fff; text-decoration: none;}
.custom #footer a:link, .custom #footer a:visited { color:  #7D5B38;}	
.custom #footer a:active, .custom #footer a:hover {color:#fff;}	

/* This line sets up our clickable background image based on the site title's link */
.custom #header #logo a { display: block; width:800px; height: 250px; background: url('images/header.jpg') no-repeat; outline: none;}

.custom #header a {color: #FFF; background-color: #FFF; padding: 0px; border-bottom-width: 0px; border-bottom-style: solid; border-bottom-color: #FFF; text-decoration: none;}

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; margin:0;}

/*--HEADLINES--*/
.custom h2 { color: #7D5B38; font-weight: bold;}
.custom h3 { color: #7D5B38; font-weight: bold;}
.custom h4 { color: #333; font-weight:bold; line-height: 1.1em;}

/*--BORDERLINES--*/
.custom ul#tabs li { border-top: 0px; border-right: 0px; border-bottom: 0px; background: #6DCAD1; border-left: 0px solid #0FA679;}
.custom ul#tabs {background: #6DCAD1;  padding: 0.6em;}

/*--REMOVE HEADLINE ON FRONT PAGE--*/
.custom #noheadline .headline_area {
display:none;
}

/*--BLOCKQUOTES--*/
.custom blockquote{
background-color: transparent;
border-top: 3px double #CC6600;
border-left: none;
border-bottom: 3px double #CC6600;
padding: 5px;
font-style: oblique;
font-size: 1em;
margin-left: 15px;
margin-right: 0;
width: 290px;
float: right;
}

.custom blockquote p{
margin-bottom: 5px;
}

.custom #sidebar_1 ul ul ul li, .obar ul ul ul li{
	padding: 0px 0px 3px 20px;
	list-style-image: none;
padding-left:30px;
background-image: url(images/bg_arrow_right_2.gif);
background-repeat:no-repeat;
background-position:12px 4px;
}
