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

body.custom {
	background-color: #FFFFFF;
	background-image: url('images/bg_fade_to_white.jpg');
	background-repeat: repeat-x;
}

.custom #content_box {
	background: none;
}

.custom #content {
	background-color: #FFFFFF;
	margin-top: 20px;	
	-moz-border-radius:6px 6px 6px 6px;
	-webkit-border-radius: 6px;
}

.custom .post_box, .custom .teasers_box, .custom .full_width #content_box .page {
	margin:0 1.55em 0 1.55em;
}

.custom .full_width > .page {
	background-color: #F0EEEA;
}


#navigation {
	clear: both;
	margin: 0 0 0 0;
	padding: 0 25px;
	position: relative;
	width: auto;
}

	.menubar-l {
		background-position: 0 0;
		-moz-background-clip: border;
		-moz-background-inline-policy: continuous;
		-moz-background-origin: padding;
		background: transparent url('images/menubar_l.png') no-repeat scroll 0 0;
		height: 55px;
		left: 0;
		position: absolute;
		top: 0;
		width: 25px;
	}
	
	.menubar-r {
		-moz-background-clip:border;
		-moz-background-inline-policy:continuous;
		-moz-background-origin:padding;
		background:transparent url('images/menubar_r.png') no-repeat scroll 0 0;
		height:55px;
		position:absolute;
		right:0;
		top:0;
		width:25px;
	}
	
	.menubar-m {
		-moz-background-clip:border;
		-moz-background-inline-policy:continuous;
		-moz-background-origin:padding;
		background:transparent url('images/menubar_m.png') repeat-x scroll 0 0;
		height:55px;
	}
	
	#custom_menu {
		height: 33px;
		left: 12px;
		position: absolute;
		top: 10px;
		z-index: 11;
		margin-top: -1px;
	}

		.custom .menu, .custom .menu a, .custom .menu li ul {
			border-color: #505050;
			background: transparent;
			color: #FFFFFF;
			border: none !important;
		}
		
		.custom .menu a, .custom .menu li ul {
			padding-right: 26px;
			padding-left: 20px;
		}

		.custom .menu a {
			line-height:1.793em;
			border-width: 0 0 0.091em;
			background:transparent url('images/menu_level1_item.png') no-repeat scroll 100% 0;
		}	
		
		.custom .menu .current a, .custom .menu li.current-cat a {
			font-weight:900;
		}
		
		.custom .menu a:hover, .custom .menu .current ul a:hover, .custom .menu .current-cat ul a:hover, .custom .menu .current-parent a:hover {
			color: red;
		}	
		
		.custom .menu li.current, .custom .menu li.current-cat {
				-moz-background-clip:border;
				-moz-background-inline-policy:continuous;
				-moz-background-origin:padding;
				background:transparent url('images/menu_level1_item_active_l.png') no-repeat scroll 0 0;
		}
			
			.custom .menu li.current a, .custom .menu .current ul a, .custom .menu .current-cat ul a {
				background: transparent url('images/menu_level1_item_active_r.png') no-repeat scroll 100% 0;
			}	
			
			.custom .menu li.current-cat a {
				background: transparent url('images/menu_level1_item_active_r.png') no-repeat scroll 100% 0;
			}
			
			
	.custom #search_box  {
		background:url('images/searchbox_bg.png') no-repeat scroll 0 0 transparent;
		height:26px;
		padding:7px 0 0 26px;
		position:absolute;
		right:12px;
		top:10px;
		width:134px;
		z-index:12
	}
	
	
.custom #search {
	background-position: 0 0;
	background: transparent url('images/search_bg.png') no-repeat scroll 0 0;
	height: 18px;
	line-height: 18px;
	margin-bottom: 14px;
}

.custom #s {
	background:none repeat scroll 0 0 transparent;
	border:medium none;
	color:#646464;
	float:left;
	font-size:11px;
	height:15px;
	outline:medium none;
	padding:3px 0 0;
	width:84px;
}

.custom input#searchsubmit {
	width: 18px !important;
	height: 18px;
	float: left;
	display: block;
	cursor: pointer;
	border: 0 none;
	outline: 0 none;
	background: transparent url('images/magnifier_icon.png');
	background-repeat: no-repeat;
}




.custom .header_ad_link {
	margin-bottom: 10px;
	text-align: center;
}

.custom #header_area .page {
	padding-top: 0;
}

.custom #header {
	padding-top: 0;
	padding-bottom: 0;
	border: none;
	position: relative;
}

.custom .header_ad_box{
	height: 90px;
	width:	728px;
}

.custom .header_ad_right {
	position: absolute;
	top: 0px;
	right: 0px;
}

.custom #header #logo {
	padding-top: 5px;
}

.custom .float_right {
	float:	right;
	font-size:12px;
	line-height:14px;
	color: #646464;
}





.custom li#recent-posts-3 {
	background-color: #111111;
}

.custom li#recent-posts-3 h3 {
	background-color: white;
}


.custom .headline_area h1, .custom  .headline_area h2 {
	font: bold 36px helvetica;
}


