/*
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/
*/


/*
INDEX
1. Global Elements
2. Heading Styles
3. Core Layout Elements
4. Header Styles (note: this is different from 'headings' It's the top box area)
5.Navigation Styles
6. Post Styles
7. Sidebar Styles
8. Widget Styles
9. Footer Styles
10. Site Customization Styles

*/

/*---[ 1. Global Elements ]---*/

	body { background: #545454 url(images/bg.gif) repeat-x; }

	.custom a { color: #911F10; outline: 0; }


/*---[ 2. Heading Styles ]---*/

	.custom h1 { font-size: 27px; }

	.custom h2 { font-size: 21px; }

        .custom h3 { font-size:15px; }

/*---[ 3. Core Layout Elements ]---*/

	.custom #container {border: 1px solid #000; margin: 20px auto; -moz-border-radius: 4px; -webkit-border-radius: 4px;}

	.custom #content_box { background: #FFF url(images/sidebarbg.gif) 734px 0 repeat-y; }

	.custom #content { background: #FFF url(images/redGrad.gif) repeat-x; border: 0; margin-top: 0px; }

	
/*---[ 4. Header Styles ]---*/

	.custom #header { background: #545454 url(images/header-bg.gif) no-repeat center top;border: 0; height: 313px; overflow: hidden; margin: 0; padding: 0; }
	
	.custom p#logo a {
		background: url(images/logo.png) no-repeat;
		display: block;
		float: right;
		height: 204px;
		margin: 39px 55px 0 0;
		text-indent: -9999px;
		width: 387px;
	}
	
	.custom #tagline { display: none; }
       
        .custom .menu .rss {padding-right:14px;}
	
/*---[ 5. Navigation Styles ]---*/

	/* add margin to the top nav menu */
	.custom .menu {color:#161616; margin:0 5px 5px; }
	
	
/*---[ 6. Post Styles ]---*/

	/*Feature Box*/
	.custom #feature_box {border-bottom: 2px solid #DDD;  height:187px; font-size: 13px; padding: 1em; padding-top:0; padding-bottom:0; background:#101010; }
	
	/* Wingman Tactics logo in feature box*/
	.custom .logo { padding-top: 1em; padding-left: 16em; padding-bottom: 0.5em; }
	
	/* the top of the teasers page*/
	.custom .teasers_box { margin-top: 0.5em; }
	

/*---[ 7. Sidebar Styles ]---*/

	.custom #sidebar_1 a{ color: #EEE; }
	
	.custom #sidebar_1 a:hover { color: #FF3300; }
	
	.custom #sidebar_1 { border: 1px solid #000; border-width: 0 1px 0 0; }
	
	
/*---[ 8. Widget Styles ]---*/

	.textwidget { background: none; border: none; color: #757373; margin: 5px; }
	
	.custom li.widget { margin-bottom: 0; padding-top: 5px; }


/*---[ 9. Footer Styles ]---*/

	.custom #footer a:hover { border: 0; }
	
	.custom #footer a { color: #EEE; }
	
	.custom #footer { background: url(images/mmw_logo.png) no-repeat; }
	
	.custom #footer { color: #999999; }
	
	.custom #footer p { color: #EEE; }
	

/*---[ 10. Site Customization Styles ]---*/

	/* GREY BREAKOUT BOX WITH MARGIN*/
	.format_text .grey_breakout_box { background: #EAEAEA; border: 10px solid #EAEAEA; margin-top:-0.8em; margin-bottom:0.4em; }
	
	/*remove box from form button graphics*/
	input[type=image] {width:auto; border:none ;}
	

