/*

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 #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;

}

/* These lines adds background to the white part of the main 'page */		

	.custom #header_area .page {



	margin-top: 50px; 

        background: #f8f3e6;
border-top: 5px solid #bcdc72;
border-right: 5px solid #bcdc72;
border-left: 5px solid #bcdc72;
-moz-border-radius: 30px 30px 0px 0px;
border-radius: 30px 30px 0px 0px;
}



	.custom #content_area .page {

border-right: 5px solid #bcdc72;
border-left: 5px solid #bcdc72; 
background: #f8f3e6; padding-left: 24px;
padding-right: 24px;

}


.custom #footer_area .page {
background: #f8f3e6; margin-bottom: 50px; padding-left: 24px;
padding-right: 24px;
border-right: 5px solid #bcdc72;
border-left: 5px solid #bcdc72; 
border-bottom : 5px solid #bcdc72; 
-moz-border-radius: 0px 0px 30px 30px;
border-radius: 0px 0px 30px 30px;

}

.custom #content_box, .custom #column_wrap {

        background: none;

}

.custom #content_box { background: url('images/sandybeach.gif'); 
-moz-border-radius: 20px; 
border-radius: 20px;}

body.custom { background: #f9f5db url('images/water.gif'); }


		.custom #page { padding: 2em 1.9em; background: #f9f5db; border: 0.1em solid #b5b198; border-top: 0; }

/*---:[ end Set 2 ]:---*/


.custom #header { border-bottom:none;



height:150px;

padding-top:0;

padding-bottom:0;

background:url(images/banner2.png) 

center center no-repeat; }


.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }

.custom .menu { 
padding-bottom:5px;
}


.custom .menu a { 

background:transparent;
padding: 0.714em 1.16em;
letter-spacing: 3px;
}

.custom .menu a:hover { background-color: #c2d69c;}

.custom .menu ul a { background:#c2d69c;}


/*---------------------------------*/

/* WIDGETIZED FOOTER               */

/* Mike Nichols - October 17, 2009 */

/*---------------------------------*/



/* footer widget area setup */

#footer_setup {

	/* widgetized footer background (not footer background) */

	background: url('images/sandybeach.gif');
	-moz-border-radius:20px;
	border-radius:20px;

	/* widget padding */

	padding: 16px;

	/* margin at bottom of widgets */

	margin-bottom: 3px;

	/* do not change this! */

	overflow: hidden;

}



/* widget item setup */

#footer_setup .footer_items {

	/* contents alignment */

	text-align: left;

	/* widget width */

	width: 210px;

	/* space between widgets */

	padding-right: 10px;

	/* text color */

	color: #2361A1;

	/* do not change these! */

	display: inline-block;

	float: left;

	height: 100%;

}



/* widget item headers*/

#footer_setup .footer_items h3 {

	/* font size */

	font-size: 1em;

	/* bold or not */

	font-weight: bold;

	/* uppercase or not */

	text-transform: uppercase;

	/* space out the letters*/

	letter-spacing: 0px;

	/* font color*/

	color: #000000;

	/* padding under header text */

	padding-bottom: 3px;

	/* border under header text */

	border-bottom: 3px solid #ffdf00;

	/* distance between border and widget text */

	margin-bottom: 5px;

}



/* do not change these! */

#footer_setup .footer_items ul li { list-style: none; }

#footer_setup .footer_items ul { margin: 0px; padding: 0px; }

































