/*
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 .menu a {text-transform: capitalize }

.custom {
	padding-top: 5px;
}

/* Kristarella Full Width Headers */
.custom #header_area {background:#ffffff;}
	.custom #header {border-bottom:0;}
	
.custom #nav_area {background:#1919B3; border-bottom:1px solid #DBD4B7; padding-top:10px;}
	.custom ul#tabs {border-bottom:0; border-color:#DBD4B7;}
		.custom ul#tabs li {border-color:#DBD4B7; background-color:#E6DEC0;}
		.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {background:#fff;}	
		
.custom #header #logo, .custom #header #tagline { display:none; }

.custom #nav_area ul {border-bottom:none; border-left:none;}
	.custom #nav_area ul li {border-width:0; margin-bottom:0; padding-bottom:0; background:none;}

.custom #header {border-bottom:none; height:250px; padding-top:0; padding-bottom:0; background:url(http://mygreatkid.com/wp-content/themes/thesis/custom/images/HeaderMGK.jpg) center no-repeat;}

		
/* Featured Post Formatting */
.custom #feature_box { font-family: Georgia; Helvetica,Arial,sans-serif; color: #060606; background: #FEFFBF; padding: 10px 15px 10px 15px; }
.custom #feature_box h2 { font-size: 2.2em; margin: 0 0 15px 0; }
.custom #feature_box h2 a { color: #000000; text-decoration: none; }
.custom #feature_box h2 a:hover { color: #FF0000; }
.custom #feature_box p { font-size: 1.4em; color: #000000; line-height:1.571em; text-align: justify;}
.custom #feature_box .featurereadmore { padding: 10px 0 0 0; }
.custom #feature_box .featurereadmore a { font-size: 12px; color: #000000; text-decoration: none; }

/* Code for letters in the nav menu bar */
.custom ul#tabs li a { display: block; line-height: 1em; color: #ffffff; letter-spacing: 2px; }
.custom ul#tabs li a { font-size: 1.2em; font-family: Georgia, "Times New Roman", Times, serif; padding: 0.583em 0.833em; }

/* Code for the nonselcted tabs on the nav menu bar */
.custom ul#tabs li { margin-bottom: -0.1em; background: #000080; border: 1px solid #ddd; border-left: 0; float: left; }

/* Code for the current selected item TAB */
.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: .1em; background: #ff0000; border-bottom: 0; }

.custom ul#tabs li a:hover { color: #ff0000; text-decoration: underline; }

.custom li.widget .callout { padding: 0.846em; line-height: 1.385em; background: #e3f0f2; border: 0.077em solid #addde6; }   

/* adds space between nav menu and page */
.custom ul#tabs {margin-bottom:10px;}	

/* pullquotes with double bar above and below */
.custom blockquote.left, .custom blockquote.right {
   width: 200px;
   margin: 5px 15px 5px 0;
   padding: 5px 0;
   border: 3px double #AAAAAA;
   border-width: 3px 0;
   font-size: 1.4em;
   text-align: center;
}
.custom blockquote.left { float: left; }
.custom blockquote.right { float: right; }