/*
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 #container{
     width: 800px;
}
.custom #header{
     display: none;
}
.custom #footer{
    border:0;
    text-align: justify;
    padding:0 160px;
    background:url(images/repeater.jpg) repeat-y top center;
}
.custom #footer p{
    font-size: 10px;
}
.custom #column_wrap{
    width: 659px;
}
.custom #page{
    padding: 0;
}
.custom #content_box, .custom #column_wrap{
    background: none;
}
.custom #sidebar_1{
     background-image:url(images/top-shadow-left.jpg);
     background-position:left top;
     background-repeat:no-repeat;
     width: 141px;
}
.custom #content{
    background-image:url(images/repeater.jpg);
    background-repeat:repeat-y;
    width: 518px;
    min-height:1470px;
}
.custom #sidebars{
    background-image:url(images/top-shadow-right.jpg);
    background-position:right top;
    background-repeat:no-repeat;
    width: 141px;
}
.custom h1, .custom h2 {
    color:#CC0000;
    font-family:"Times new roman";
    font-weight:bold;
    margin:5px;
}
.custom h1{
    font-size: 25px;
}
.custom .headline_area{
    display: none;
}
.custom .opt-bg-wrapper {
    background-image:url(images/arrows.jpg);
    background-position:center top;
    background-repeat:no-repeat;
    width:560px;
    margin-left:-42px;
     clear:both;
}
.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:0px;
    padding-bottom:5px;
    padding-left:5px;
    padding-top:5px;
    width:98%;
}
.custom input[type="image"] {
    clear:both;
    display:block;
    margin:0 auto;
    width: inherit;
}
.custom .check-bullet {
    list-style-image:none;
    list-style-position:outside;
    list-style-type:none;
}
.custom .check-bullet li {
    background: url(http://www.cellphone-locator.com/wp-content/uploads/2010/01/globe-bullet.jpg) no-repeat scroll 0 0;
    margin-bottom:6px;
    min-height:32px;
    padding-left:30px;
}
.custom hr{
    display: none;
}
.custom .hr {
    background:transparent url(images/dot.jpg) no-repeat scroll center center;
    height:33px;
    margin:10px 0;
}
.custom #sidebar_1 p{
    border-top:1px dotted #CCCCCC;
    margin-top:10px;
    padding-top:10px;
}
.custom #sidebar_1 span{
    clear:both;
    font-weight: bold;
} 
.custom #navi{
    text-align: center;
    margin: 15px 0;
}
.custom #navi a{
    margin: 0 13px;
    color: #288AB7;
    font-size: 10px;
}
.custom #mediaspace{
    border: 1px dotted #000000;
}
.custom .post_box{
    padding-top: 0;
}
.custom .format_text p{
    margin-bottom: 5px;
}
.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;
}