/*
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/
*/

/* general tweeks*/
	.custom { background-color: #262626; }
	a { outline: none; color: #0F5CD1;} 
 
/* header */
	.custom #header_area { margin: 0 auto 0; background-color: #262626; }
	.custom #header_area .page { background: none; }
	.custom #header_area #header { padding: 0; border-bottom: none; height: 230px;}
	.custom #header_area #logo { float: left; width: 975px; }  
	
	/* To change the logo, simply replace /custom/images/logo.png with your own 301x85px image. */
		.custom #header_area #logo a {width: 975px; height: 230px; background: url(images/header.jpg) no-repeat; text-indent: -9999px; display: block; margin: 0 0 0 -.33em;}
	/* End logo style */
	
	.custom #header_area #tagline {display: none;}    

/* navigation */       
        .custom ul.menu {float: left; background-color: #262626; border: none; margin: 0 0 0 0; }   

/* Nav menu image replacement code */
.custom .menu .tab-home a { background: url('images/exumhomewhite.jpg') no-repeat; height: 25px; width: 73px; text-indent:-9999px;}
.custom .menu .tab-home a:hover { background: url('images/exumhomeblue.jpg') no-repeat; height: 25px; width: 73px; text-indent:-9999px;}
.custom .menu .tab.tab-home.current a { background: url('images/exumhomeblue.jpg') no-repeat;}
.custom .menu .tab-1 a { background: url('images/exumhistorywhite.jpg') no-repeat; height: 25px; width: 89px; text-indent:-9999px;}
.custom .menu .tab-1 a:hover { background: url('images/exumhistoryblue.jpg') no-repeat; height: 25px; width: 89px; text-indent:-9999px;}
.custom .menu .tab.tab-1.current a { background: url('images/exumhistoryblue.jpg') no-repeat;}
.custom .menu .tab-2 a { background: url('images/exumstudiowhite.jpg') no-repeat; height: 25px; width: 79px; text-indent:-9999px;}
.custom .menu .tab-2 a:hover { background: url('images/exumstudioblue.jpg') no-repeat; height: 25px; width: 79px; text-indent:-9999px;}
.custom .menu .tab.tab-2.current a { background: url('images/exumstudioblue.jpg') no-repeat;}
.custom .menu .tab-3 a { background: url('images/exumclientswhite.jpg') no-repeat; height: 25px; width: 86px; text-indent:-9999px;}
.custom .menu .tab-3 a:hover { background: url('images/exumclientsblue.jpg') no-repeat; height: 25px; width: 86px; text-indent:-9999px;}
.custom .menu .tab.tab-3.current a { background: url('images/exumclientsblue.jpg') no-repeat;}
.custom .menu .tab-4 a { background: url('images/exummediawhite.jpg') no-repeat; height: 25px; width: 70px; text-indent:-9999px;}
.custom .menu .tab-4 a:hover { background: url('images/exummediablue.jpg') no-repeat; height: 25px; width: 70px; text-indent:-9999px;}
.custom .menu .tab.tab-4.current a { background: url('images/exummediablue.jpg') no-repeat;}
.custom .menu .tab-5 a { background: url('images/exumcontactwhite.jpg') no-repeat; height: 25px; width: 105px; text-indent:-9999px;}
.custom .menu .tab-5 a:hover { background: url('images/exumcontactblue.jpg') no-repeat; height: 25px; width: 105px; text-indent:-9999px;}
.custom .menu .tab.tab-5.current a { background: url('images/exumcontactblue.jpg') no-repeat;}
  
/* content area */ 

	        /* front page */	             
                .custom #content_area #content_box { background: none; padding: 0 0 0 0; margin: 0 auto 2em; }  
		.custom .featured_post_title { width: 100%; position: relative; background: url(images/post_transparency.png); z-index: 22; text-align: center;}  

		/* blog archive link */ 
			.custom a#secondary_archives { text-align: center; float: right; font-size: 1.5em; margin: 1em 0 1em 1em ; padding: .1em 0; border-top: 1px dashed #262626; border-bottom: 1px dashed #262626; color: #262626; width: 150px;}
			.custom a#secondary_archives:hover { border-top: 1px dashed #1062B9; border-bottom: 1px dashed #1062B9; color: #1062B9; }    
 
	/* posts and pages */
		.custom #content_area .headline_area {background: url(images/grungeline2.jpg) no-repeat bottom; padding: 0 0 4em 0;}
		.custom #content_area .headline_area h1, .custom #content_area .headline_area p, .custom #content_area .entry-title  { text-align: center;}    
		.custom #content_area .post.post_box  {border: none;} 
		.custom.single #content_area #content_box .post h2,
		.custom .post_box .entry-content h2 { width: 100%; border-top: 1px dashed #ccc; border-bottom: 1px dashed #ccc; padding: .5em 0; background: #eee; text-indent: 1em;}
  
/* sidebars */
	.custom #sidebars h3 { display:none; }  

/* footer */    
	.custom #footer_area { background: #262626; margin: 0 auto 2em; border-top: none; }
	.custom #footer_area #footer { border: none; }  

.custom #footer .sidebar {border-bottom: solid #000; border-width:0.1em; border-top: 0; padding-top:.0; margin-bottom:1.1em; float:left; width:100%;}
	.custom #footer ul.sidebar_list {}
		.custom #footer li.widget {float:left; width:23%; padding-right:2%; text-align:left; margin-bottom:22px;}

/* css styling */  
div.comments_closed p {display:none;}
