/*
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 div.welcome_box {
width: 90%;
padding: 0.571em 0.786em;
margin-left: 1em;
margin-right: 1em;
margin-bottom: 1em;
margin-top: 1em;
margin-bottom: 0em;
padding-bottom: 0em;
}

.custom div.join_us {
width: 80%;
align: center;
padding: 0.571em 0.786em;
margin-left: 1em;
margin-right: 1em;
margin-bottom: 1em;
margin-top: 1em;
margin-bottom: 0em;
padding-bottom: 0em;
}


/*---:[ Stuff ]:---*/

#archive_info {display:none;}
.custom h1.entry-title { background:#EEEEEE none repeat scroll 0 0; color:#000000; padding:0.3em 0; text-align:left; padding-left: 10px; padding-right: 10px; } 
/* .custom h1.entry-title { background:#2361A1 none repeat scroll 0 0; color:#FFFFFF; padding:0.3em 0; text-align:left; padding-left: 10px; padding-right: 10px; } */
.custom .sidebar h3 { background:#2361A1 none repeat scroll 0 0; color:#FFFFFF; padding:0.3em 0; text-align:center; }

.custom #content_box {background-color:#ffffff;}
.custom #content {background-color:#fff;}


.custom .entry-content h3 {
color:#CC3300;
}


/*---:[ footer styles ]:---*/
#footer p { font-size: 1.2em; line-height: 1.667em; width: 870px; }
ul.sidebar_list { padding-top: 2.2em; }


/*---:[ SIDEBAR ELEMENTS ]:---*/
// .custom #sidebars .sidebar_list { border-left: 1px solid #C9C9C9; color: #545454; padding: 0; }
// .custom #sidebars ul, #sidebars li div, #sidebars p { padding: 0 1em; }

/*---:[ FOOTER ELEMENTS ]:---*/
.custom #footer_area, .rsswidget img { display: none; }

#foot { background: #363636 url(../images/default/footer.gif) repeat-x; color: #EEE; margin-top: 3em; overflow: hidden; }
	#foot a, #copyright a { color: #eeffed; text-decoration: none; }
		#foot a:hover, #copyright a:hover { text-decoration: underline; }
	#foot ul.sidebar_list { padding: 2em 1em; }
	#foot .widget { margin: 0; }
	#foot .col { float: left; width: 33.3%; }
	
#copyright { border-top: 1px dashed #4D4D4D; clear: both; padding: 1.3em 0; }
	#copyright ul.sidebar_list { padding: 0 1em; }
	#copyright p { margin-bottom: 0.1em; }
		
	/* headings */
	#foot h3 { color: #c1ffbd; font-family: "Myriad Pro", Helvetica, Arial, sans-serif; font-size: 1.6em; margin-bottom: 0.6em; }
		#foot h3 a { color: #c1ffbd; }


/*********** Get rid of grey border lines ******************/

.custom #header, .custom .post, .custom .teasers_box, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #sidebar_1, .custom #sidebar_2, .custom #comment_list dt.comment, .custom #comment_list dd.comment, .custom #comment_list dl .bypostauthor .format_text, .custom #trackback_list {
        border-bottom: 0px;
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
}
.custom #content_box, .custom #column_wrap {
        background: none;
}


/*********** Custom ******************/


/*
body.custom {
    background: #ebebeb;
}
*/

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    // padding: 0.3em;
    // background: #33332f;
    background: #ffffff;
    border: 0.1em solid #3e3e3a;
}


.custom #page {
    background: #fff;
} 

/* -- Site Background -- */
body {
margin: 18px 0;
background: url("images/bg-stripe.png") repeat-x scroll 0 0 #c6c6c6;
}




