/*
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*/
a { outline: none; color: #48A1C7;} 
.custom #content_area { background: url('images/bg-main.jpg') repeat; }	
.custom .full_width > .page { background-color:transparent; } 
        
/* header */

.custom #header_area { display: block; background: #fff; outline: none; }
.custom #header #logo a { 
      display: block; 
      height: 119px; 
      width: 634px; 
      background: url(images/jaketextheader3.jpg) no-repeat; 
      outline: none; 
      background-color:transparent;  
      }
.custom #header #logo { padding: 0 0 0 4.8em; float: left; margin: 0 0 0 0; } 
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; background-color:transparent; }
.custom #header #tagline { height: 0; }

/* nav menu */          
	
	/* primary navigation styles */
		.custom ul.menu {float: left; padding: 0 0 0 23em; font-size:11px; background-color: transparent; margin-bottom: 1em; }
		.custom ul.menu .current {border: none; }              
		.custom ul.menu li a{ border: none; margin: 0 .5em; padding: 0 0 0 0; background-color: transparent; }
		.custom ul.menu li a:hover { border: none; color: #48A1C7; } 
        	.custom ul.menu .rss { float: left; }
		.custom ul.menu .rss a { padding: 0 0 0 0; background: none; border: none; }        
		.custom ul.menu .rss a:hover { padding: 0 0 0 0; background: none; border: none; color: #ff6600; text-decoration: none; } 

/* content area */ 

	/* front page */	
		.custom #content_area { padding: 0 0 0 0; }		
		.custom #content_area #content_box { padding: 0 0 0 0; }  
		.custom .featured_post_title { width: 100%; position: relative; background: none; z-index: 22; text-align: center;}  
 
	/* posts and pages */
		.custom #content_area .headline_area {padding: 0 0 0 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: 1px solid #ccc; padding: .5em 0; background: #eee; text-indent: 1em;}
		.custom .comments_closed p { display: none;}   
		.custom .post_box, .custom .teasers_box {border-top:1px solid #000;}
		.custom .top {padding-top:2em; border-top:0;}
		.custom .prev_next {font-size:12px;}

/* text block styles */
		.custom .format_text h4, .custom .format_text h5 {margin-bottom:0.785em;}
		.custom .format_text blockquote {border:solid #ccc; border-width:1px 0; padding:0.786em 0 0 0.786em;}
		.custom .format_text blockquote.right, .custom .format_text blockquote.left {padding:0.786em; text-align:center;}
		.custom .format_text ul, .custom .format_text ol {background:#f5f5f5; padding:0.25em 0;}
	        .custom .format_text ul li, .custom .format_text ol li {padding:0 0.5em;}
		.custom .format_text pre {background-color:#f5f5f5; border-color:#ccc;}
		.custom p.post_tags {background:#f5f5f5; border-bottom:1px solid #ccc; padding:0.25em 0.5em;}

  
/* sidebars */
	        .custom #sidebars h3 { background: url(images/sidebar_title_bg.png) no-repeat 0 0; padding: .5em 5em 1.9em 0; width: 100%; margin: 0 0 0 -.3em; text-align: center; font-weight: bold; color: #fff; }  

/* footer */    
	        .custom #footer_area { margin: 0; border: none; height: 128px; background: url(images/footer2.jpg) repeat-x;}
	        .custom #footer_area #footer { border: none; height: 90px; background: url(images/footer2.jpg) repeat-x; }

div#footer_social_icons {
	margin-left: 36em;
        }

div#home_page_photo {
        margin: 0 0 2em 12em;
        padding-bottom: 4em;
	background: url(images/jakeheader.png) no-repeat;
	position: relative;
	color: #fff;
	font-size: 20px;
	line-height: 22px;
	text-align: center;
	width: 515px;
	height: 274px;
	}
