/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the &lt;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 #header {
       	background: #fff url(images/alheader.jpg) no-repeat outline:none;
        height: 150px;
        } 

    
.custom #header #tagline {
	height: 0;}

.custom #header #logo, .custom #header #tagline {
	text-indent: -9999px;}


.custom #header #logo a {
        background: #fff url(images/alheader.jpg) no-repeat; outline:none;	
        width: 937px; 
        height: 150px; 
        display: block;
        margin-left:-0.5em;
        }

.custom #feature_box{
	background:#FFFFFF url(images/bgr-box-trans.png) repeat-y top left ;
        border:#dedbd1 1px solid ;
        margin-top:1em;
        margin-left:0em;
        padding: 0em;
        width: 567px;
        height:279px;          
       }

.custom .teasers_box {
        margin: 1.0em;
        text-align: left;
        background:#FFFFFC url(images/bgr-box-trans.png) repeat-x ;
        padding:1em;
        }

.custom #sidebar_1{
        margin: 0.5em;
        background-color:#ffffff; 
        }

.custom .sidebar a { 
        color:#001A7A;
        font-weight: bold;
        }

.custom .sidebar a:hover { 
        color:#cc0000;
        font-weight: bold;
        }

.custom .sidebar h3 {
        margin-top:1em;
        background-color:#cc0000;
        color: #ffffff;
        text-align: center;}

.custom .widget {
        padding-left: 0.5em;
        margin-bottom: 1.0em;
        margin-top:0em;
        font-color:#001A7A;
        background-color:#ffffff url(images/bgr-box-trans.png) repeat-x top;
        border:#dedbd1 1px solid;} 

.custom .thesis_widget_subscriptions {
        background:#fff url(images/bgr-box-trans.png) repeat-y ;
        }

  

.custom .menu {
        padding-top: 0em;
        background:#fff;
        width: 937px;
        font-weight: bold;
        font-size: 11px;
        margin-top: 0em;}


.custom h1,h2,h6 {
        font-weight: bold;
        text-transform: none;}

.custom h3{
	color: #CC0000;
        font-weight: bold;
        text-transform: none;
        text-align: center;}

.custom #footer{
        margin-top: 1.0em;
        border:1px solid #dedbd1;
        height: 325px;
        background-color: #1A1919;}



/* footer widget area setup */
#footer_setup {
	padding: 16px;
	margin-bottom: 25px;
	overflow: hidden;
        height: 100%;
        }

/* widget item setup */
#footer_setup .footer_items {
	text-align: left;
	width: 250px;
	padding-right: 35px;
	color: #9D9898;
        font-size: 1.4em;
        display: inline-block;
	float: left;
	}
#footer_setup .footer_items a {
	color:#9D9898;}

#footer_setup .footer_items a:hover{
	color:#cc0000;
        }

#footer_setup .footer_items h3 {
	font-size: 1.1em;
	font-weight: bold;
	letter-spacing: 2px;
	color: #cc0000;
	padding-bottom: 3px;
	border-bottom: 1px dotted #cc0000;
	margin-bottom: 3px;
        }
	
/* do not change these! */
#footer_setup .footer_items ul li { list-style: none; }
#footer_setup .footer_items ul { margin: 0px; padding: 0px; }

        


.custom .ads {
        text-align: center;}

.custom .ads img {
	padding: 1px;}

.custom .ads a:hover img {
	padding: 1px;
	border:2px solid #cc0000;
}


/* Page Navigation */
.custom .full_width #content_box .wp-pagenavi .page {
        margin: 2px;
        padding: 2px 4px;
        font-size: 16px;
        font-weight: bold;
        }