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

*/

/* BACKGROUND */

body.custom {
background: #545454 url(images/bg2.png) repeat-x scroll 0 0; }


/* FULL WIDTH HEADER */
.custom a{outline:none}.custom .full_width > .page{background:transparent; position:relative}
.custom #header{padding:0}#header form p{background:url(images/nav/search.gif) no-repeat;height:69px;width:241px}
        #header input{background:transparent;border:0;color:#FFF;text-transform:uppercase;width:170px;margin:29px 0 0 14px}
.custom #logo a{background:url(images/logo7.png) no-repeat;display:block;height:138px;text-indent:-9999px;width:450px}
.custom #tagline{font-size:0px!important; position:absolute; text-transform:uppercase; top:83px}
.custom .menu{height:47px;z-index:0}
.custom .menu a{letter-spacing:normal; margin-right:5px; padding:5px 8px}
.custom .menu .current{cursor:default}
.custom .menu .current:hover{text-decoration:none}
.custom .menu a { background: transparent; }
.custom .menu a {font-size: 15px; }

/* NAV MENU */ 
.custom ul#topnav {
border-style: none;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
width: 100%;
float: left;
}

.custom ul#topnav li { float: right; padding: 3px 10px 3px 0px; }
.custom ul#topnav li a { font-size: 2.1em; color: #000000; }
.custom ul#topnav li a:hover { text-decoration: underline; }

/* FEATURED BOX */
.custom #feature_box {
background: #e1e1e1;
border: none;
margin-right: 0px;
padding-left: 0;
padding-right: 0;
}

/*CONTENT */
.custom #content{background:#FFF url(http://www.thesiswebdesign.com/wp-content/themes/thesis_16/custom/images/BlackGrad.gif) repeat-x}
.custom #content_box {background-color:#e1e1e1;}



