/*
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/
*/



body.custom {
    background: #8db6b6 url('images/mostliteback.jpg') 50% 0 repeat;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
}

.custom #page {
    background: #fff;
}






.custom ul#tabs li ul {display:none; position:absolute; list-style:none;}
.custom ul#tabs li ul li {float:none;}
.custom ul#tabs li:hover ul {display:block;}
.custom ul#tabs {margin-bottom:-0.1em;} /* Fix for IE6 */




.custom ul#tabs li a:hover {color: #F9EDD5 ; text-decoration: underline; background-color: #DBC7AE; }

/*.custom ul#tabs li:hover ul {display:block;}*/
.custom ul#tabs { margin-bottom:-1px;} /* Fix for IE6 */




/*ul#tabs li a:hover {color: #fff; text-decoration: underline; background-color: #1873a1; }*/




/* Change the home tab unselected color */
.custom ul#tabs .home-item { background: #F9EDD5;  }
/* Change the home tab unselected font color */
.custom ul#tabs .home-item a { color: black; }

/* Change the about tab unselected color */
.custom ul#tabs .page-item-141 {background: #F9EDD5; }
/* Change the about tab unselected font color */
.custom ul#tabs .page-item-141 a { color: black; }

/* Change the classified tab unselected color */
.custom ul#tabs .page-item-108 { background: #F9EDD5; }
/* Change the tab 3 unselected font color */
.custom ul#tabs .page-item-108 a { color: black; }

/* Change the fun in L.C. tab unselected color */
.custom ul#tabs .page-item-188 { background: #F9EDD5; }
/* Change the tab 3 unselected font color */
.custom ul#tabs .page-item-188 a { color: black; }

	/* Change the events tab unselected color */
        .custom ul#tabs .page-item-408 { background: #F9EDD5; }
        /* Change the tab 3 unselected font color */
        .custom ul#tabs .page-item-408 a { color: black; }





/* Change the local business tab unselected color */
.custom ul#tabs .page-item-573 { background: #F9EDD5; }
/* Change the tab 2 unselected font color */
.custom ul#tabs .page-item-573 a { color: black; }

/* Change the testimonials tab unselected color */
.custom ul#tabs .page-item-203 { background: #F9EDD5; }
/* Change the tab 4 unselected font color */
.custom ul#tabs .page-item-203 a { color: black; }

/* Change the stories and poems tab unselected color */
.custom ul#tabs .page-item-6 { background: #F9EDD5; }
/* Change the tab 4 unselected font color */
.custom ul#tabs .page-item-6 a { color: black; }

	/* Change the cowboy storiestab unselected color */
	.custom ul#tabs .page-item-364 { background: #F9EDD5; }
	/* Change the tab 4 unselected font color */
	.custom ul#tabs .page-item-364 a { color: black; }

	/* Change the lydias page tab unselected color */
	.custom ul#tabs .page-item-532 { background: #F9EDD5; }
	/* Change the tab 4 unselected font color */
	.custom ul#tabs .page-item-532 a { color: black; }







/* Change sidebar color */

.custom #content_box {background-color: #F0DEC6;}
.custom #content {background-color:#F9EDD5;}


/* create a custom element id */
#custom_element {
	/* width for the box */
	width: 135px;
	/* height for the box */
	height: 100px;
	/* background if desired */
	background: #D1BBA6;
	/* border if desired or for testing */
	border: 2px solid #000000;
	/* padding to keep the contents away from the border */
	padding: 1em 1em 1em 1em;
	/* margin outside box to separate if from other elements */
	margin: 0em 0em 0em 0em;
}







