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

/* menu nav reset */
.custom ul#tabs {border-bottom:none; border-left:none;}
	.custom ul#tabs li {margin-bottom:0; border:none; background:none;}
	.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {padding-bottom:0; background:none;}
	.custom ul#tabs li.rss {}
		.custom ul#tabs li a {}
		.custom ul#tabs li a:hover {text-decoration:none;}
		.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {}
		
/*  end of nav reset */


body.custom {
	background: #323783 url('images/bkg_Stars_long.png') repeat-x;
	margin: 2.5em auto .5em;
}

input,
textarea {
	font-family: Arial, sans-serif;
}

.custom img {
	border: 1px solid #000000;
}

.custom .page {
	background: #d9b801;
	padding-left: .5em;
	padding-right: .5em;
}

.custom #header_area .page {
	background-color: #d9b801;
	padding-top: .5em;
	margin: 0px auto 0 ;
}

.custom #header {
	background: #ffffff url('images/banner_header.png') no-repeat top left;
	padding: 0;
	margin: 0;
	height: 220px;
	border: none;
}

.custom ul#tabs {
	background-color: #ffffff;
}

.custom ul#tabs li a {
	color: #323783;
	letter-spacing: 0;
	/*text-transform: none;*/
}

.custom ul#tabs li a:hover {
	color: #bf3702;
}
.custom ul#tabs li.current_page_item a,
.custom ul#tabs li.current-cat a {
	color: #bf3702;
}

.custom ul#tabs li.rss {
	padding-right: .5em;
}

.custom #content_area .page {
	background-color: #d9b801;
	padding: 0 .5em .5em;
	margin: 0px auto 0 ;
}

.custom #content_box {
	background-color: #ffffff;
}

.custom #content #archive_info p {
	display: none;
}

.custom .mceTemp img {
	margin: 8px;
}

.custom .format_text .to_comments {
	display: none;
}

/*
.custom .format_text img {
	background-color: #eeeeee;
	border: 1px solid #dddddd;
	padding: 6px;
}
*/

.custom #sidebars {
	border: none;
}

.custom #sidebar_1 {
	border: none;
}

.custom #footer_area .page {
	background-color: #323783;
	margin: 0px auto 0 ;
	padding: 0;
}

.custom #footer {
	text-align: center;
	padding: 0;
	border: none;
	color: #ffffff;
}

.custom #footer a {
	color: #ffffff;
}

.custom #footer a:hover {
	color: #000000;
}

/* For contact form page and form */
 .custom.contact-us .page #content_box {
	background: #ffffff;
 }

 .custom #contactA {
 	width: 600px;
 	font-size: 1.3em;
 	font-family: arial;
 	margin: 4px auto;
 }
 
 .custom #contactB {
 	width: 500px;
 	margin: 4px auto;
 }
 
 .custom #wpcf .challenge {
 	width: 50px;
 }
 
 .custom .wpcfh1{
 	font-size: 2em;
 	font-weight: bold;
 	color: #ff0000;
 	width: 600px;
 	margin: 1em auto;
 }
 
.custom .addyBox {
 	text-align: center;
 	margin: 1em auto;
 	font-weight: bold;
}
 
/* end of contact form CSS */

