/*
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 div.adblock img {
  padding: 4px;
  background-color: #FFFFFF;
  display: inline;
}
.custom .cenx {text-align: center;}


body 			{ font-family: "Bell MT", "Times New Roman", serif;	font-size: 16px; margin: 0; }
a 		{ color: #8f8f8f; text-decoration: none;}
a:hover 		{ color: #1a1a1a; }
img 			{ border: none; }
li 				{ list-style: none; }
#footer a { text-decoration: none; }
	
/*
Header
*/
#header1			{ background-color: #1a1a1a; height: 55px; padding: 0px 25px 0px 8px; -moz-border-radius: 10px; -webkit-border-radius: 10px; border: 1px solid #1a1a1a; margin: 25px auto 25px auto; width: 620px; }
#header1 img 	{ float: left; margin-top: 2px;	}
#header1 #nav 	{ float: right; margin-top: 12px; overflow: hidden; }
#header1 #nav li { float: left; padding-left: 25px; }

#nav li a 		{ color: white; font-size: 25px; font-weight: normal; font-family: "Bell MT"; }
#nav li a:hover { color: #bfbfbf; }

#tooltip 		{ position:absolute; border:1px solid #333; background:#1a1a1a; padding:2px 5px; color:#FFF; display:none; }
			
#cartimg		{ margin-top: -3px; margin-left: -1px; }


/*
Footer
*/
#footerdash 	{ border-bottom: dashed 1px #bfbfbf; height: 20px; }

#footer1		{ width: 620px; margin: 0px auto 30px auto; font-family: "Bell MT"; font-size: 16px; }
#footer1 a { text-decoration: none; }
#footer1 .clear	{ clear:both; display:block; overflow:hidden; visibility:hidden; width:0; height:0 }
	
#footerform 	{ text-align: left; width: 180px; padding: 10px -10px 10px 15px; height: 170px; background-color: #f6f6f6; margin: 0px; border: solid 1px #bfbfbf; border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; color: #1a1a1a; }
	
#footerright 				{ margin-left: 10px; float: left; width: 180px; margin-bottom: 5px; margin-top: 20px; }
#footerright h3 			{ text-align: center; margin-bottom: 5px; font-weight: normal; color: #1a1a1a; }
#footerright label 			{ width: 50px; }
#footerright input 			{ float: left; margin-bottom: 10px; width: 150px; }
#footerright .submitbutton 	{ width: 75px; margin-bottom: 0px; }
#footerright .row 			{ clear: both; float: left; width: 170px; }
	
#footerleft 				{ float: left; margin: 20px 0px 0px 0px; width: 413px; padding: 0px; }
#footerleft a h3 			{ font-weight: normal; color: #1a1a1a; text-align: left; margin-left: 10px; margin-bottom: 15px; }
#footerleft a h3:hover 		{ color: #bfbfbf; }
#footerleft ul 				{ padding: 0px; margin-top: -13px; color: #1a1a1a; }
#footerleft ul li 			{ text-align: left; padding: 10px; margin-bottom: 10px; background-color: #f6f6f6; border: solid 1px #bfbfbf; border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; list-style: none; }
#footerleft ul li a 		{ font-weight: bold; color: #1a1a1a; }
#footerleft ul li a:hover 	{ color: #e6e6e6; }

#footerbottom 				{ font-size: 17px; text-align: center; background-color: #1a1a1a; -moz-border-radius: 10px; -webkit-border-radius: 10px; border: solid 1px #1a1a1a; margin-top: 0px; height: 25px; padding: 5px; }
#footerbottom ul 			{ margin: 3px 0px 0px 108px; padding: 0px; }
#footerbottom ul li 		{ float: left; color: #fff; list-style: none; }
#footerbottom ul li a 		{ color: #fff; text-decoration: none; }
#footerbottom ul li a:hover { color: #bfbfbf; }

.gray 			{ color: #a3d518; }
	
#footerlogo a img	{ margin: 35px 0px 5px 210px; }

#copyright 		{ text-align: center; }

.custom #footer a {
     border-bottom:none;
}
