/*
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!*/

body.custom {
background-image:url(http://www.crazeforcars.com/wp-content/themes/thesis_151/custom/images/bg.jpg);
    
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #FFFFFF;
    border: 0.9em solid #090909;
}

a:link 		{text-decoration: none; color:#2361a1;background:none; }
a:visited 	{text-decoration: none; color:#888;background:none; }
a:hover 	{text-decoration: none; color:#2361a1;background:none;  }
a:active 	{text-decoration: none; color:#2361a1;background:none; }


.sidebar h3 { font-weight:bold; 
              letter-spacing:opx; 
			  color:#FFFFFF;
			  font-size:12px;
	          padding-left: 30px;
			  padding-right: 6px;
              padding-botton: 6px;
              padding-top: 6px;
	          background-image:url(http://www.crazeforcars.com/wp-content/themes/thesis_151/custom/images/menu_bg.png); 
			  background-repeat:no-repeat;	
			  height:35px;
			 }

.sidebar li { margin-bottom: 1.1em; border: 1px dotted #bbbbbb; border-left: 0; border-right:0; border-top:0; }

.custom #header { 
	border-bottom: 3px double #ddd; clear: both;
	height:131px;
	padding-top:0;
	padding-bottom:0;
	background:url(http://www.crazeforcars.com/wp-content/themes/thesis_151/custom/images/craze-for-cars.png) center left no-repeat; 
}
.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }

blockquote { 
	border: 1px solid #ddd; color: #666; 
	background-color:#eee;
	padding:2px;
}

.custom .headline_area a { 
color:#660033 ;
}
.custom .headline_area a:hover { 
color:#990099;
}
.custom .headline_area a:active { color:#990099;}

.custom .sidebar a {color:#2361a1 ; }
.custom .sidebar a:visited { color: #888 }
.custom .sidebar a:hover { color:#fe110b; text-decoration:none }


.custom ul#tabs li { background:#000000; border: 1px solid #CCCCCC; border-left: 0; float: left; }
.custom #tabs .rss {  padding-right: 0; background: none; border: none; float: right; }
.custom #tabs .rss a{ color:#2361a1;}
.custom #tabs .rss a:hover{ color:#fe110b;}
/* Change the color of a tab when the cursor hovers over it */
.custom ul#tabs li a { color:#5bf4f8; font-weight: bold}
.custom ul#tabs li a:hover {color:#FFFFFF; font-weight: bold}
.custom ul#tabs li a:active { color: #FFFFFF; font-weight: bold }
.custom ul#tabs .current_page_item a {color:#FFFFFF;}
/*.custom ul#tabs li a:hover { background: white; color:#663333; font-weight: bold}*/
/* Change the font color of a tab when the cursor hovers over it */
.custom ul#tabs li a:hover {color:#FFFFFF; color:#FFFFFF; font-weight: bold; text-decoration:none }

.custom #content_box {background-color:#ffffff;}
.custom #content {background-color:#fff;} 


.custom #widget_content {
background: #fff;
color: #111;
padding-left: 1em;
-moz-border-radius:5px;
-webkit-border-radius:5px ;
border-radius:5px ;
padding: 1em 0em 1em 1em;
border: 4px solid #777777;
}

.custom #widget_content .widget_icon {
float: right;
margin-right: 0.5em;}

.custom li.widget .my_widget_header {
background: #6B6B6B;
-moz-border-radius:5px;
-webkit-border-radius:5px ;
border-radius:5px ;
}

.custom li.widget .my_widget_header h3 {
color: #111111;
font-size: 1.5em;
text-align: center;
}
