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

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}


.custom { background: #054fa4 url(images/bg.png) repeat-x; padding: 1em 0; border-top: 3px solid #ddd}

.custom .page { background: #fff; padding: 0em}
.custom #header_area .page { padding: 0em; background: none}
.custom #header_area #header { background: transparent url(images/header.png); border: none; height: 55px}

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


.custom #header_area #header .search_form {position: relative; right: -1.1em; bottom: 4.5em; float: right}
.custom #header_area #header .search_form #s { font-size: 2em; width: 18.2em; text-align: center; background: #fff}

.custom #header_area #tabs { border-left: 3px solid #000; border-right: 3px solid #000; margin: 0 -.3em; border-bottom: 1px solid #000; background:url(/wp-content/themes/thesis_151/custom/images/navbar.jpg) repeat-x; border-top: 1px solid #000; clear: both}

.custom #header_area #tabs li {border:  none; border-bottom: 1px solid #000; background:url(/wp-content/themes/thesis_151/custom/images/navbar.jpg) repeat-x; padding: 0 0 1px 0}

.custom #header_area #custom_rotating_header {border-top: 3px solid #000; margin:.5em -.3em 0em;  border-left: 3px solid #000; border-right: 3px solid #000; clear:both; height: 203px}

.custom #header_area #custom_rotating_header #images {float: left}
.custom #header_area #custom_rotating_header #featured_content { width: 363px; height: 200px; background:url(/wp-content/themes/thesis_151/custom/images/clearfixbg.jpg) no-repeat; float: right; }

.custom #content_area #content_box { background: url(images/content_bg.png)repeat-y; border-bottom: 1px solid #000}

.custom #content_area .page { padding: none; border-left: 3px solid #000; border-right: 3px solid #000;}

 /* Sidebar Content Stuff */
 
 .custom #content_area #sidebars { }
 
 /*Tabbed Widget Version 2.0*/
.tabbedwidget {
margin-top: 3em;
padding: 5px;
padding-top: 10px;
font-family:Verdana;
font-size:12px;
}

#tabvanilla h2 {margin-bottom:5px;}

.tabnav {
margin-bottom: 10px;
}

.tabnav li {
display: inline;
list-style: none;
padding-right: 5px;
}

.tabnav li a {
background: #e5f6fc;
border: 1px solid #0262A5;
padding: 4px 6px;
}

.tabnav li a:hover, .tabnav li a:active, .tabnav li.ui-tabs-selected a {
background: #e5f6fc;
border: 1px solid #0262A5;
}

.tabdiv {
margin-top: 2px;
background: #e5f6fc;
border: 1px solid #0262A5;
padding: 7px;
}

.tabdiv li {
list-style: none;
margin-bottom: 0.667em;
}

.ui-tabs-hide {
display: none;
}

  .custom #content_area #sidebars #sidebar_1 { border: none;}
  .custom #content_area #sidebars .widget { background: url(images/sidebar_bg.png); padding: .5em; text-align: center;}  
  .custom #content_area #custom_before_sidebars { margin: 0 0 -5em 0;}
  .custom #content_area #custom_after_sidebars { margin: -5em 0 0 0;}       
  
  /**********************************/  
/* Footer Stuff */
/**********************************/     

.custom #footer_area .page {border-left: 3px solid #000; border-right: 3px solid #000; border-bottom: 3px solid #000; background: #fff url(images/footer_bg.png) no-repeat}
.custom #footer_area #footer {border: none}

.custom ul.footer_widgets { width: 100%; text-align: center;}
.custom #footer_area li.widget { width: 23%; display: inline; float: left; padding: .5em;}  
.custom #footer_area li.widget h2 { border-bottom: 1px dotted #eee !important; margin: .5em 0;}      