/*
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 and  Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/
.custom .comments_closed p {display: none ;}

body.custom { background: #ffffff url("images/trash-bg.jpg") repeat-x; }
.custom #container { margin-bottom: 2em; margin-top: 1em; padding: 0.3em; background: #ffffff; border: #000000 1px solid; }
.custom #page { padding: 2em 1.9em 0 1.9em; background: #ffffff;}

.custom #header {
width: 100%;
padding: 0;
}

/*All Links*/
.custom a, .custom a:visited { color: #262d39; }
.custom a:hover { color: #000000; }

.custom h2 a, .custom h2 a:visited { color: #000000; }
.custom h2 a:hover { color: #000000; text-decoration:underline; }

/*Nav bar*/
.custom ul#tabs li a { background: #b9b9b9; color:#000000; font-size:12px; font-weight:bold; }
.custom ul#tabs li a:hover { background: #000000; color:#ffffff; font-size:12px; font-weight:bold; }


.custom ul#tabs { background: #b9b9b9;}

/*sidebar*/
.custom #sidebars {  }
.custom #sidebar_1 {  }
.custom #sidebar_2 {  }
.custom .sidebar {  }

.custom #column_wrap { background: none; }


/*Footer*/

.custom #footer-links {
	clear:both;
	margin:0 auto;
	padding:5px 0;
	width:900px;
	text-align:center;
	border-top:1px solid #ddd;
	background:#fff;
	font-size:12px;
}
.custom #footer-links a.credits, .custom #footer-links a.credits:visited {
	color:#333333;
}
.custom #footer-rap {
	padding:1px 3px 5px 3px;
	background: #ffffff;
        text-align: center;
}

.custom #footer p {
	padding:10px 0;
}

.custom #footer {
	border-top: #000000 1px dashed;
}

.custom #footer-left {
	width:600px;
	float:left;
}


.custom  #content_box { background: none ; }

/* Heading Tags */

.custom h1 { line-height: normal; font-size: 22px; }

/* My Text Div 1 */
.custom #mytextdiv1 {
width: 195px;
position: relative;
padding: 1em;
background-color: #eeeedd;
margin-left: -.77em;
margin-top: .3em;
	border:1px solid #adadad; 
	border-left-color:#ececec; 
	border-top-color:#ececec; 
}
.custom #mytextdiv1 ul {
margin:0;
padding: 0;
list-style: none;
}
.custom #mytextdiv1 h2 {
margin-bottom: 0.5em;
font-size: 1.5em;
}

#sidebar-contact-form { margin: 5px 0 5px 0; padding: 5px; width:185px; height:360px; background:url("images/orange-bg.jpg"); }

#sidebar-contact-form h2 { font-size: 14px; font-weight:bold; }

#sidebar-contact-form strong { color: #ffffff; }

#sidebar-contact-form strong:hover { color: #000000; }

#sidebar-contact-form-button { color: #000000; }

#sidebar-contact-form-button:hover { background:#cccccc;}

#custom-sidebar-link h2{
     font-size: 19px;
     padding:5px 0;
}
#custom-sidebar-link a{
     font-size: 15px;
     padding:2px 0;
}