/*
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 .ad_block {
float:left;
margin:5px 0 0;
padding:0 0 0 0;
width:315px;
}

.ad_block ul {
margin:0;
overflow:hidden;
padding:0;
}

.ad_block li {
	background:#FFFFFF none repeat scroll 0 0;
	display:block;
	float:left;
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	margin:3px 5px 0 4px;
	overflow:hidden;
	padding:5px 8px;
	width:125px;
}

/* START TOP LOGO*/

.custom .topLogo {
	width: 950px;
	margin-left: auto;
	margin-right:auto;	
	margin-top: 20px;
	margin-bottom: 20px;
	
	
}

/* END TOP LOGO*/


/* START TAGLINE*/

.custom .tagline {
	width:900px;		
	margin-bottom: 20px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 8pt; 
	color: #ff9900;	
	
}

.custom .tagline a {
	width:950px;		
	margin-bottom: 20px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 8pt; text-decoration:underline;
	line-height:1.75; 
	color: #ff9900;	
	
}

.custom .tagline a:hover{
	width:950px;		
	margin-bottom: 20px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 8pt; 
	color: #ff9900;
	
}









/* END TAGLINE*/

/* START JESSICA*/

.custom .jessica {
	margin-left:15px;	
	margin-top:10px;
	margin-bottom:5px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.2em; 
	color: #ff9900;	
	font-weight:bold;
			
}

/* END JESSICA*/

/* START ADBLOCK1*/

.custom .adBlock1 {
	width:270px;
	margin-left:12px;
	margin-top:5px;
	margin-bottom:5px;
}	

/* END ADBLOCK1*/

/* Change the padding of the header image*/
.custom #header { padding-top: 0.8em; padding-bottom: 0em; }