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

/*Background Colours Layout etc */
body.custom {
    background: transparent url(images/fullfire.png) repeat scroll 0 0;
    color:#333333;
}

.custom #page {
    background: transparent;
    width: 100%;
}
	
.custom #content_box{
	background:rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
	padding:0 0 0 1px;
}
.custom #content{
	padding-left: 1em;
}
.custom .postbox{
	padding-top:0px;
}
/*
.custom #sidebars{
	border-left: solid 1px #f5f5f5;
}*/

.custom #image_box{
	border:none;
	padding-top:1em;
	background: none;
}

.custom #image_box img{
	border: none;
}

#image_box img.three_by_two {
height:100%;
width:100%;
}

.custom .format_text p.note {
	/*-moz-border-radius: 0.6em;
	-webkit-border-radius: 0.6em;*/
	background: #f5f5f5;
	border: solid 1px #DDDDDD;
	color: #333333;
}
.custom format_text p.note H3{
	color: white;
}
.custom #multimedia_box{
	display: none;
}

.custom.home #multimedia_box{
	display: inline;
	width: 100%;
}
.custom.home #sidebars #multimedia_box{
	display: none;
}

.custom #footer{
	text-align: right;
	border-top: none;
}

/*Hide titles on pages*/

.custom.home .headline_area {
display:none !important;
}
.custom.about .headline_area {
display:none;
}
.custom.contact-us .headline_area {
display:none;
}
.custom.work .headline_area {
	display:none;
}
	

/*Fonts and Links*/
.custom a, .custom a:visited { 
	color: rgba(255,22,0,1);
	text-decoration:none;
	}	
	
.custom a:hover { 
		color: rgba(255,22,0,1); 
		text-decoration: underline;
		}	
		
.custom .format_text h3 {
color:#333333;
font-family:georgia;
font-size:2em;
letter-spacing:-0.04em;
line-height:1.2em;
margin:0.2em 0 0.625em;
}

.custom h4 {
color:#333333;
font-family:helvetica;
font-size:1em;
font-weight:lighter;
letter-spacing:0.35em;
line-height:1.6em;
text-transform:uppercase;
margin-bottom: 1em;
}


/*Header*/
.custom #header {
border: none;
height: 12em;
padding-bottom:1em;
padding-top: 0px;
display:none;
}

.custom #header #logo a {display: block; 
height: 224px; 
width: 300px; 
background: url('images/fullnoiselogo_words.png') no-repeat; 
outline: none; 
margin-bottom:10px; 
text-indent:-9999px; }

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


.custom #header #logo, { text-indent: -9999px; }

/*Tabs with colored bgs
.custom ul#tabs {
	border:none;
}

.custom ul#tabs li{
	-moz-border-radius-topleft:0.6em;
-moz-border-radius-topright:0.6em;
-webkit-border-top-left-radius:0.6em;
-webkit-border-top-right-radius:0.6em;
background:rgba(255, 255, 255, 0.8); none repeat scroll 0 0;
float:left;
height:31px;
border:none;
margin-bottom:none;
}

.custom ul#tabs li a {
color:#333333;
line-height:1em;
padding-top: 0.9em;
border:none;
margin-bottom:none;
}
.custom ul#tabs li a:hover {
	color:#333333;
	text-decoration:underline;
}

.custom ul#tabs li.current-cat, .custom ul#tabs li.current_page_item { 
	color: #ffffff;
	-moz-border-radius-topleft:0.6em;
	-moz-border-radius-topright:0.6em;
	-webkit-border-top-left-radius:0.6em;
-webkit-border-top-right-radius:0.6em;
background: rgba(255,22,0,0.8);
	}

ul#tabs li.current_page_item a, ul#tabs li.current-cat a {
color:#ffffff;
cursor:default;
}

.custom ul#tabs li.current-cat, .custom ul#tabs li.current_page_item a {color: #ffffff;}
.custom ul#tabs li.current-cat, .custom ul#tabs li.current_page_item a:hover {color: #ffffff; text-decoration:none;}

*/

/*Tabs with lines*/
.custom ul#tabs {
	border:none;
	padding-left:29px;
}

.custom ul#tabs li{
background:transparent;
float:left;
height:18px;
border:none;
margin-bottom:10px;
border-right: solid 1px #777777;
}

.custom ul#tabs li a {
color:rgba(255,22,0,1);
line-height:1em;
padding-top: 0.3em;
border:none;
margin-bottom:none;
font-size:1.2em;	
}
.custom ul#tabs li a:hover {
	color:rgba(255,22,0,1);
	text-decoration:underline;
}

.custom ul#tabs li.current-cat, .custom ul#tabs li.current_page_item { 
	color: #333333;
background: transparent;
	}

ul#tabs li.current_page_item a, ul#tabs li.current-cat a {
color:#333333;
cursor:default;
}

.custom ul#tabs li.current-cat, .custom ul#tabs li.current_page_item a {color: #333333;}
.custom ul#tabs li.current-cat, .custom ul#tabs li.current_page_item a:hover {color: #333333;}



/*Sidebars*/
.custom .sidebar{ 
	padding-left:22px;
	padding-bottom: 20px; }
















