/*

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/

*/



/* Header

=====================================================================*/

.custom #header {background: #ffffff; width: 1000px; height: 173px; padding: 0px; border: 0px;}
.custom #headerleft { float: left; width: 600px; padding: 0px 0px 0px 0px;}
.custom #headerright { float: right; width: 325px; padding: 0px 40px 0px 0px;}
.custom #logo {display: none;}
.custom #tagline {display: none;}
.custom #page { width: 1000px; padding: 0px; margin: 0px auto 0px; background: #ffffff; }



/* Header Right Nav

=====================================================================*/

.replace{

position:relative;

margin:0;

padding:0;

/* */

overflow:hidden;

/* */

}

.replace span{

display:block;

position:absolute;

top:0;

left:0;

z-index:1;

}

.mainmenu {

float: left;

width: 925px;

margin-top: -108px;

margin-left: -32px;

padding: 0px 0px 0px 0px;

}

#mainmenu {

width: 460px;

height: 152px;

margin: 0px 0 0 0;

float: left;

display: inline;

}

#mainmenu li {

display: inline;

float: left;

}

#mainmenu1{

width:80px;

height:155px;

font-size:1.2em;

position:relative;

overflow:hidden;

display: inline;

float: left;

margin: 0 5px 0 0px;

}

#mainmenu1 span{

background:url(images/twitter.png) no-repeat;

position:absolute;

width:100%;

height:100%;

cursor:pointer;

}

#mainmenu2{

width:80px;

height:155px;

font-size:1.2em;

position:relative;

overflow:hidden;

display: inline;

float: left;

margin: 0 5px 0 0px;

}

#mainmenu2 span{

background:url(images/facebook.png) no-repeat;

position:absolute;

width:100%;

height:100%;

cursor:pointer;

}

#mainmenu3{

width:80px;

height:155px;

font-size:1.2em;

position:relative;

overflow:hidden;

display: inline;

float: left;

margin: 0 5px 0 0px;

}

#mainmenu3 span{

background:url(images/rss.png) no-repeat;

position:absolute;

width:100%;

height:100%;

cursor:pointer;

}

#mainmenu4{

width:80px;

height:155px;

font-size:1.2em;

position:relative;

overflow:hidden;

display: inline;

float: left;

margin: 0 5px 0 0px;

}

#mainmenu4 span{

background:url(images/email.png) no-repeat;

position:absolute;

width:100%;

height:100%;

cursor:pointer;

}


#mainmenu li a:hover span {

background-position: 0 -155px;

}



/* Menu 

=====================================================================*/





.custom .menu {background: #d0e26a; border: none; height: 37px;}

.custom .menu a, .custom .menu li ul { background: #d0e26a; border: none; text-transform: none; font-family: century gothic, arial; letter-spacing: 0px; font-size: 15px; padding: 9px 9px 9px 9px; color: #37251a;}

.custom .menu a:hover { color: #ffffff; }

.custom .current a, .custom .menu .current a:hover, .custom .menu .current-cat a, .custom .menu .current-cat a:hover { background: #d0e26a; }

.custom .menu .current ul a, .custom .menu .current-cat ul a { background: none; color: #37251a; }

.custom .menu .current ul a:hover, .custom .menu .current-cat ul a:hover, .custom .menu .current-parent a:hover { color: #ffffff; }



.custom .headline_area { background: url(images/headline.png) center left no-repeat; padding: 0px 0px 0px 45px; }

.custom .headline_meta { text-transform: uppercase; font-style: normal;}



.custom .sidebar h3 { font-variant: normal; letter-spacing: 0px; text-transform: uppercase; text-align: center; border-bottom: 1px solid #79cad2; padding: 0px 0px 5px 0px;}
.categories a:hover img { opacity:.8;}