/*
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{
   color:#333333;
   font-family:Arial,Helvetica,sans-serif;
   margin-top:0;
}
.custom #container{
   background:url(images/repeater.jpg) repeat-y;
   width:741px;
}
.custom #page{
   background: url(images/header.jpg) no-repeat top;
   padding-bottom:0;
   padding-top: 0;
}
.custom #header{
   border: 0;
   padding: 0;
}
.custom #sidebars, .custom #footer{
   display: none;
}
.custom #headeliner-area{
   margin-left: -22px;
}
.custom #opt-in-area {
   background:#ffffff url(images/opt-in-footer.jpg) no-repeat;
   height:190px;
   margin-left:-22px;
   margin-top:-3px;
   width:741px;
}
.custom #opt-in-code-here {
   padding-left:150px;
   padding-top:20px;
   width:400px;
}
.custom input[type="text"] {
   background:#F9F9F9 none repeat scroll 0 0;
   border:2px solid #DDDDDD;
   clear:both;
   color:#444444;
   display:block;
   font-size:14px;
   font-weight:bold;
   margin-bottom:5px;
   margin-left:-5px;
   padding-bottom:5px;
   padding-left:5px;
   padding-top:5px;
   width:75%;
}
.custom .check-bullet {
   list-style-image:none;
   list-style-position:outside;
   list-style-type:none;
}
.custom .check-bullet li {
   background:transparent url(images/check-bullet.jpg) no-repeat scroll 0 0;
   margin-bottom:10px;
   padding-left:25px;
}
.format_text h2, .format_text h3 {
   text-align:center;
   color: #ff0000;
}
.custom #footerlink{
   text-align: center;
}
.custom #footerlink a{
   margin: 15px;
}
.custom #blog-optin {
   height:210px;
   width:569px;
   background: url(images/optin-bg.jpg) no-repeat;
   margin: 0 auto;
}
.custom #blog-optin h2 {
   color:#444444;
   font-family:Arial,sans-serif;
   font-size:18px;
   margin:5px 25px;
   padding:15px 15px 0;
   text-align:center;
   line-height:1.222em;
   font-weight: bold;
}
.custom #blog-optin p {
   color:#666666;
   display:block;
   font-family:Arial,sans-serif;
   font-size:12px;
   height:62px;
   line-height:1.8em;
   margin: 0 30px;
   padding:0 20px;
   text-align: left;
}
.custom #blog-optin form {
   padding:0px 20px;
}
.custom #blog-optin form input[type="text"] {
   color:#666666;
   font-size:13px;
   font-weight:bold;
   margin:10px 5px 5px 0;
   padding:9px;
   width:145px;
   display: inline
}
.custom #blog-optin form input[type="submit"] {
   background:transparent none repeat scroll 0 0;
   border:medium none;
   cursor:pointer;
   height:50px;
   text-indent: 9999px;
   width:165px;
   font-size: 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;
}