/*File:			
custom.css
Description:	Custom styles for ThesisBASIC 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 HTMLelements. 
	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 foundin the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/*/
	
	/*  Header CSS   */
	/*.custom #header_area{display:none;}
	.custom #nav_area /*{background:url(images/Gratebg.jpg) repeat; padding:.2em 0 ; border-bottom:1px solid #ddf;} */
	/*.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:9a4118;}
	.custom #title_area {background:c14e18; padding:0 0 0; border-bottom: ;}
  	.custom #header {background:url(images/sageheader1100.gif) center no-repeat; border-bottom:none; height:180px; padding-top:0; padding-bottom:0.5em; padding-right:0; padding-left:0;} */	
	.custom #header #logo {display:none;}	
	.custom #header #tagline {display:none;}	
	
		/* Rotating Header Images */
	.custom #header {padding:0; background:#fff; text-align:left; border: none;}
	.custom #header p#logo {color: #ff0000;}
	.custom #header h1 {font-size: 32px; color: #ff0000; #margin-left: 5px;}
	.custom #tagline {margin-bottom: 10px; margin-left: 5px;} /* font-family: Verdana,serif; color: #999999; }*/
	.custom #header img {border:10px solid #EEEEEE; position: relative; bottom: 0; top: 5px; width: 1035px; height: 120px;}
	
	/* Removes the "no comments" note when comments are removed from pages */
	.custom .comments_closed p {display: none ;}	
	
	/* Footer CSS  */
	/*.custom #footer_area {background:url(images/shadowbg.jpg) repeat; padding:0.5em 0; border-top:1px solid #bbd;} */
	.custom #footer {border-top:0;}
	.custom #footer a:hover  {color: #00f;}
	
	/* Body Background & Content Area CSS  */
	body.custom /*{background: url(images/shadowbg.jpg) repeat;} */
	.custom  #content_area  
	.page {background:#fff; margin-top: 0.5em;}
	
	/* Adds Avatar to each post */
	.custom .title-avatar {float:left; width:5em; margin-right:1em;}
	
	/*  Changes entry form width from third party forms like aweber  */
	.custom .format_text input, 
	.custom .sidebar .text_input {width:auto;}