/*
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:#ffffff url("") repeat; }


.custom a {
color:#339E04;
text-decoration:underline;
}

.custom a:hover {
color:#339E04;
text-decoration:none;
}

.custom a:visited {
color:#339E04;
}


.custom .full_width .page {
background:transparent none repeat scroll 0 0;
margin:0 auto;
padding-left:0;
padding-right:0;
width:96.9em;
}

.custom #header_area  {
background:#ffffff url("images/organikal_newhead.jpg") repeat-x;

}


.custom #header_area .page {
padding-top:0;
background:#ffffff url("images/orgheaderback.jpg") no-repeat;
}

.custom #header {
height:157px;
padding-bottom:2.2em;
padding-left:2em;
padding-top:2.2em;
}


.custom #header #logo {
	text-indent: -9999px;
	
}
.custom #header #logo a {
	display: block;
	height: 110px;
	width: 747px;
	background: url("images/organikallogo2.png") no-repeat;
}

.custom #header #tagline {
float:left;
font-size:1.8em;
color:#D6460C;
font-family:georgia;
padding-left:0.2em;
height:28px;}














.custom #tabs {

background:#EB561A none repeat scroll 0 0;
margin-bottom:0em;
border-color:none;
border-style:none;
border-width:0 0;
height:40px;
list-style-image:none;
list-style-position:outside;
list-style-type:none;

}



.custom #tabs li {
background:#EB561A none repeat scroll 0 0;
border-color:none;
border-style:none;
border-width:0;
float:left;
margin-bottom:-0.1em;
margin-top:0.3em;
}



.custom ul#tabs li a {
font-size:1.5em;
padding:0.545em 0.818em;
}

.custom #tabs a {
color:#FFFFFF;
display:block;
letter-spacing:2px;
line-height:1em;
text-transform:uppercase;
}

.custom #tabs a:hover {
background:#d94409;
text-decoration:none;

}

.custom #tabs li.rss {
float:right;
padding-right:1em;
}

.custom #tabs .rss a {
font-size:1em;
padding:0.545em 1.3em;}

.custom #tabs .rss a:hover {
background:transparent url("images/icon-rss.gif") no-repeat scroll 100% 50%;}













.custom #content_box {
background:#ffffff url("images/dot-ddd.gif") repeat-y scroll 51.3em 0;
margin-top:2em;
width:100%;
}




.custom .headline_area h1, .headline_area h2 {
font-size:2.2em;
line-height:1.364em;
color:#eb561a;
}

.custom .format_text p {
color:#805441;
margin-bottom:1.571em;
}


.custom .format_text h2, .custom .format_text h3 {
color:#805441;
font-size:1.286em;
line-height:1.222em;
margin:1.833em 0 0.611em;
}











.custom #sidebars {
width:45.5em;
}


.custom .sidebar h3 {
color:#EB561A;
font-weight:bold;
letter-spacing:0;
font-size:1em;
line-height:1.385em;
margin-bottom:0.692em;
}

.custom #sidebar_1 {
width:22.7em;
}

.custom #sidebar_2 {
width:22.7em;
}


















/* tabbedwidget */

.ui-widget {
font-family:Verdana,Arial,sans-serif;
font-size:1em;
}

.ui-tabs .ui-tabs-panel {
background:transparent none repeat scroll 0 0;
border-width:0;
display:block;
padding:1em 0;
}


.ui-widget-content {
background:#FFFFFF url(images/ui-bg_flat_75_ffffff_40x100.png) repeat-x scroll 50% 50%;
border:none;
color:none;
}

.tabbed-widget .ui-tabs .ui-tabs-nav {
clear:both;
float:left;
margin:0 0 0.7em;
padding:0;
width:100%;
}

.ui-widget-header {
background:none;
border:none;
color:#222222;
font-weight:bold;
}

.tabbed-widget .ui-tabs .ui-tabs-nav li {
display:block;
float:left;
margin-right:2.2px;
width:60px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
border-bottom-width:0;
padding:3px;
}

.tabbed-widget .ui-tabs li.ui-tabs-selected a {
background:transparent none repeat scroll 0 0;
color:#D84403;
padding:0 0em;
text-decoration:none;
letter-spacing:-0.5px;
}

.ui-tabs .ui-tabs-nav li {
border-bottom-width:0 !important;
float:left;
margin:0 0.2em -1px 0;
padding:0;
position:relative;
}

.ui-tabs .ui-tabs-nav li a {
float:left;
letter-spacing:-0.5px;
padding:0.2em 0.1em;
text-decoration:none;
}











/* footer */

.custom #footer_area.full_width {
background:transparent url("images/orgfooter.png") repeat-x scroll 0 131px;
height:225px;
}

.custom #footer_area .page {
background:transparent url("images/orgfooterpage.png") no-repeat scroll 0 0;
height:225px;
padding-bottom:0;
}

.custom #footer {
padding-top:18em;
border-top:none;
clear:both;
color:#888888;
text-align:right;
}

