/*
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: #ddd; }
.custom #container { margin-top: 3.8em; margin-bottom: 2.2em; border: 0.1em solid #000; }
	.custom #page { background: #fff; }
		.custom #header { padding-top: 0; padding-bottom: 0px; border-bottom: 5px solid #efefef; border-top: 1px solid #dd0068; background-color: #ff0078; margin: -2.2em -2.2em 0em -2.2em;
			z-index: 1;
		 }
		.custom .search_form { float: right; padding: 4em 2em 2em 2em; }
			.custom .search_form input { font-size: 1.3em; line-height: 1em; width: 15.385em; padding: 0.308em; }
			.custom .search_form input:focus { background: #fff; }
		.custom ul#tabs { padding: 0 0em 0em 70px; border: 0; }
			.custom ul#tabs li { margin-bottom: 0; background: none; border: 0; }
			.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat { padding-bottom: 0; }
				.custom ul#tabs li a { padding-top: 0.909em; padding-bottom: 0.909em; color: #999; font-weight: bold; letter-spacing: 1px; }
				.custom ul#tabs li a:hover { color: #555; background: #efefef; text-decoration: none; }
				.custom ul#tabs li.current_page_item a { color: #555; background: #efefef; }
			.custom ul#tabs li.rss a { padding-right: 0.818em; background-image: none; }
		.custom #content_box { background: none; border-top: 0.1em dotted #ccc; }
				.custom .prev_next, .custom #archive_info { border: none; }
					.custom input.form_submit:hover { color: #111; background: #f2e127; }
			.custom #multimedia_box, .custom #image_box, .custom #video_box, .custom #custom_box { background: none; border: 0; }
			.custom #sidebars { border: none; }
				.custom #sidebar_1 { border-right: none; }
		.custom #footer { padding-bottom: 0; border-top: 0.1em dotted #ccc; 
		
		text-align: left;
		}
		
		.custom #footer p {
			
			display: none; 
		}

.custom a { color: #ff0078; }
.custom a:hover { color: #ff0078; }
.custom #header #logo a, .custom #header #logo a:hover, .custom h2 a, .custom h2 a:hover { color: #111; }


/* Header */


.custom #logo_symbol{
	
	background: url(../images/frugal.png) no-repeat;
	height: 205px;
	width: 128px;
	position:absolute;
	display: block;
	top: 5px;
	z-index: 5;
	
	margin-left: -2.8em;
	
	}
	
.custom #header #logo 	{
	
	margin-left: 100px;
	margin-top: 15px;
	margin-bottom: 15px;
	z-index: 2;	
	border: 0px solid #fff;
	}

.custom #header #logo a {
   color: #ff0078;
   text-decoration: none;
	background: transparent url(../images/frugal_tagline.gif) no-repeat scroll 0 0;
display: block;
   width: 386px;
   height: 70px;
   outline-color:-moz-use-text-color;
outline-style:none;
outline-width:medium;
font-size: 0px;
font-decoration: none;
 	
}

.custom #header #logo a:visited {
   color: #ff0078;
   text-decoration: none;
}

.custom #header #logo a:hover {
   color: #ff0078;
   text-decoration: none;
}
.custom #header #logo a:active {
   color: #ff0078;
   text-decoration: none;
}

.custom #header #tagline {
   color: #111111;
   font-weight: normal;
   padding-left: 10px;
   font-size: 0px;
   display: none;

}

.custom #feature_box {
	
	height: 10px;
	background-color: #fff;
	border: 0px;
	
	}


.custom #content {
	
		border-right: 1px dotted #ccc;
	
	}

.custom #custom_box {
	
	border-left: 0px solid #ccc;
	margin-top: 10px;
	
	}


.custom #multimedia_box {
	
		margin-bottom: 0px;
	
	}
	
	
.custom #social_media {
	
	background-color: #fff;
		margin-bottom: 20px;
		margin-left: 10px;
		padding-left: 30px;
		padding-top: 10px;
		padding-bottom: 10px;
		border-bottom: 1px dotted #ccc;
		border-top: 1px dotted #ccc;
		line-height: 15px;
	
	}
	
.custom #social_media p {
	
	padding-bottom: 5px;
	
	}

.custom #footer #footerNav {
	
	font-size: 14pt;
	padding: 5px 0px 15px 0px;
	
	}
