/*
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 {}
.custom .clear {clear:both;}
.custom #container {}
.custom #page {padding-top:0;}

.custom #header {display:block; position:relative; margin:0; padding:0; border:none; background:url(images/bg-header.png) top left no-repeat;}
.custom #header #tagline {font-size:1.125em;}
.custom #header #header_banner {display:block; width:770px; height:128px; border:0px solid #000; position:absolute; top:0; right:0;}
.custom #slideshow-wrapper #fullsize #imgprev, .custom #slideshow-wrapper #fullsize #imgnext, .custom #slideshow-wrapper #fullsize #imglink {display:none;}
.custom #slideshow-wrapper {padding:0; margin:0 auto;}

.custom #fius_header, .custom .flashmovie-header {display:block; position:absolute; top:0; left:0; z-index:1;}
.custom #logo {display:block; height:128px; width:230px; background:url(images/bg-logo.png) top left no-repeat; z-index:2;}
.custom #logo a {display:block; height:128px; width:230px; text-indent:-9999px;}
.custom #tagline {display:none; color:#000;}
.custom .menu {background:url(images/bg-menu.jpg) top left repeat-x; padding-bottom:0.5em;}
.custom .menu a, .custom .menu a:hover, .custom .menu .current a:hover {letter-spacing:1px; padding:0.4em 1.5em; text-shadow:0px 1px 1px #333; background:transparent url(images/bg-arrow-red.png) center left no-repeat;}
.custom .menu .tab.tab-1 {margin-left:24em;}

/* Content Styles */
.custom.home .headline_area {width:30em;}
.custom.home .flashmovie {display:block; margin-top:-5em;}
.custom.home .post_box {margin-right:0;}
.custom #content_box {background:url(images/bg-sidebar.png) top left repeat-y; border-top: 1px solid #F00; border-bottom: 1px solid #F00;}
.custom hr {color:#900; background:#900; height:5px; width:90%; margin:0.5em 0;}
.custom #sidebars a {color:#FFF; text-shadow:0px 1px 1px #333; background:transparent url(images/bg-arrow-white.png) center left no-repeat; padding-left:1em;}
.custom #sidebars a:hover {background:transparent url(images/bg-arrow-red.png) center left no-repeat; text-decoration:none;}
.custom #flexipages-3, .custom #flexipages-4 {padding-top:1em; margin-bottom:0; border-top: 3px dotted #FFF;}
.custom #extended-categories-3 h3{display:none;}
.custom .format_text img {margin:0.5em;}
.custom .comments_closed {display:none;}

.custom #prod_menu {display:block; float:right; margin-top:0.5em; border:0px solid red;}
.custom #prod_menu ul li{display:block; list-style:none; float:left; margin-right:0.5em; background:url(images/bg-prod-menu.png) bottom left no-repeat;}
.custom #prod_menu ul li a {display:block; padding:0.4em 1em; color:#333; text-shadow:0px 1px 1px #999; font-size:0.95em; text-transform:uppercase; letter-spacing:1px; text-align:center;}
.custom #prod_menu ul li a:hover {color:#FFF;}

/* Footer Styles */
.custom #footer a {text-decoration:none; border:0;}
.custom #linkcat-3 h2{display:none;}
.custom li#linkcat-3 {list-style:none; background:none;}
.custom #footer_links ul li{display:block; font-size:1.2em;list-style:none; float:left; background:url(images/bg-arrow-grey.png) center left no-repeat; margin-right:1em; padding-left:1em;}

/* Form Styles */
.custom .wpcf7 p {margin:0.5em 0;}
.custom .wpcf7 .textfield {width:15em; padding:2px;}
.custom .wpcf7 .selectfield {width:15em; padding:2px;}
.custom .wpcf7 .submitbutton {width:10em; color:#FFF; background:#900;}
.custom .wpcf7 .checkbox input{width:1em;}