/*

File:			custom.css

Description:	Custom styles for the Thesis Theme that you define



Use:



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 overwrite *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!

*/



#page { 

	margin: 0px; 

	margin-top: 10px; 

	padding: 0px;

}

#header {

	height:150px;

	background: url(images/header-bg.jpg);

	background-repeat: no-repeat;

	margin-bottom:0;

	padding:0;

}

#header p, #header h1 {

	display:none;

}

a {

	color: #006599;

	text-decoration: none;

}

a:hover {

	color: #006599;

	text-decoration: underline;

}

.center_ad{

	margin-left:auto;

	margin-right:auto;

}

.textwidget li {

	line-height:40px;

}

.headline_area {

	display:none;

	margin-bottom:1em;

	padding-bottom:0;

}

#content .simpleitem h2 {

	font-size:1.5em;

	margin-bottom:.75em;

}

#content .simpleitem h2 a {

	text-decoration:none;

}

#content .simpleitem h3 {

	font-size:1.5em;

	margin-top:0;

	margin-bottom:1em;

}

#content .simpleitem h3 a {

	text-decoration:none;

	color: #5050b0;

}

.simpleitem {

	border-bottom:1px solid #CCC;

}

.adsense_content {

    padding-left: 28px;

    padding-bottom: 8px;

}

#content .adsense_comment {

    padding-bottom: 8px;

}

