/*

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 #header { padding-top: 0; }
.custom #footer { padding-bottom: 0; }
.custom #page {
	border-top-width: 1.5em;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FF0080;
	border-bottom-color: #FF0080;
	border-bottom-width: 1.5em;
}

.format_text h1 { 
line-height:1.2em; 
} 

.format_text h2, h2 a{ 

color:#FF0080; 

} 



.custom .headline_area img.alignnone {
	margin: 0 auto 1.0em 0;
}

.format_text p {
margin-bottom: .9em;
}

.format_text h3 { 
-x-system-font:none; 
color:#FF0080; 
font-size:1.3em; 
font-size-adjust:none; 
font-stretch:normal; 
font-style:normal; 
font-variant:normal; 
font-weight:bold; 

line-height:1.4em; 
margin:0 0 7px; 
text-decoration:none; 
} 


.sidebar h3 {
background: #999;
color: #ffffff;
padding: 2px 4px;
}



.teaser h2 {
	font-size: 1.9em;
	
	line-height: 1.1em;
	letter-spacing:-.3px;
}

.format_text ul li {color: #576068; margin-left: 1.7em; }
.format_text ol li {color: #576068; margin-left: 1.7em; }


.format_text h4 { 
font-weight:bold; 
font-size: 1.2em;
line-height: 1.15em;
}

.custom .headline_area h2, .headline_area h1 { 
font-weight: normal; 
line-height: 1.10em;
font-size: 2.7em;
padding-right: 40px;


}

/*
.custom #logo a {
	background-image: url(http://visualjournalist.com/files/header.png);	/*replace logo.png with the name of your image*/
	width: 815px; /*change this to the width of your image*/
	height: 232px; /*change this to the height of your image*/
	background-repeat: no-repeat;
	display: block;
	text-indent: -9999px;
}
*/

.headline_area {
margin-bottom:1.2em;
}

.custom .archive h3 {margin-top: 0;}
.custom .archive ul {font-size: .85em; }
.custom .archivel { float: left; width: 40%;}
.custom .archiver { float: right; width: 60%;}

.custom .teaser {
width: 100%;
margin-top: 2em;
padding-top: 2em;
border-top: 1px dotted #bbb;
text-align: justify;
}
.custom .teasers_box {
padding-top: 0;
padding-bottom:0;
border-top: 0;
}