/*
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/
*/
.custom h1, .custom h2{
     color:#CC0000;
     font-weight:bold;
     font-family: "Times new roman";
     margin: 4px;
}
.custom h1{
     font-size:28px;
}
.custom h2{
     font-size:24px;
}
.custom #container{
     width: 885px;
}
.custom #header{
     display: none;
}
.custom #content, .custom #sidebars{
     background: #ffffff;
     border: 2px solid #000000;
}
.custom #sidebars h3{
     background-color:#CC0000;
     color:#FFFFFF;
     font-family:Verdana,sans-serif;
     font-size:14px;
     font-weight:bold;
     text-align:center;
     padding: 6px 0;
}
.custom #sidebars a{
     font-family:Verdana,sans-serif;
     font-size:11px;
     text-decoration: underline;
}
.custom ul.sidebar_list{
     padding: 3px;
}
.custom .blogroll{ 
     padding: 0 10px;
}
.custom .headline_area{
     display: none;
}
.custom .check-bullet{
     list-style: none;
}
.custom .check-bullet li{
     background: url(images/bullet.jpg) no-repeat;
     padding-left: 33px;
     margin-bottom:10px;
}
.custom #footer{
    background:none repeat scroll 0 0 #1A54A1;
    clear:both;
    color:#DFDFDF;
    float:right;
    text-align:justify;
}
.custom #footer p{
    font-size: 10px;
}
.custom #footer a{
     text-decoration: underline;
     color: #CC0000;
}
.custom .opt-in{
     width: 566px;
     height: 215px;
     background: url(images/opt-in.jpg) no-repeat;
     margin:0px auto;
}
.custom .opt-in p{
    color:#FFFFFF;
    font-family:Arial,sans-serif;
    font-size:16px;
    font-weight:bold;
    margin-bottom:0;
    margin-left:175px;
    padding:35px 15px 0;
    text-align:left;
}
.custom .opt-in form input[type="text"] {
     float: left; 
     color:#666666;
     font-size:13px;
     font-weight:bold;
     margin:15px 5px 5px;
     padding:9px;
     width:145px;
}

.custom .opt-in form input[type="submit"] {
     background:transparent none repeat scroll 0 0;
     border:medium none;
     cursor:pointer;
     height:50px;
     text-indent:99999px;
     width:350px;
     font-size: 0;
}
.custom .opt-in form {
     margin-left:170px;
     margin-top:-10px;
     padding:0 20px 20px;
}
.custom .hr{
    height: 33px;
    background: url(images/dot.jpg) no-repeat center center;
    margin: 10px 0;
}
.custom hr{
    display:none;
}
.custom .post_box{
    padding-top: 5px;
}
.custom #page{
    padding-top: 3px;
}
.custom li.widget ul li{
    margin: 0;
}
.custom li.widget li ul{
    margin: 0;
}
.custom ul#recombtn{
    list-style:none;
     margin: 0 5px;
}
.custom ul#recombtn li{
    float:left;
    margin:  3px;
}
.custom #recombox{
    background: #FFF3DF;
    border: 1px solid #AF6F00;
}
.custom #recombox p{
    margin: 10px;
}