/*
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 {
	font-family: Verdana,Arial,Helvetica,sans-serif;
	}
.custom #header {
	padding: 0;
	border-width: 0;
	background-color: #000;
	text-align: right;
}
.custom #page {
	padding: 0;
	border-width: 0;
}
.custom #container {
	width: 96em;
}
.custom .post_box {
	margin: 0 3em;
}
.custom #content {
	width: 66em;
}
.custom #sidebars {
	width: 30em;
}
.custom #content_box {
	background:transparent url(../lib/images/dot-ddd.gif) repeat-y scroll 66em 0;
}
.custom .teasers_box {
	width: 60em;
	margin: 0 3em 0 3em;
}
.custom .teaser {
	width: 28em;
}
.custom .prev_next {
border-width: 0;
padding-left: 3em;
}

.custom .sidebar ul.sidebar_list {
padding: 0 1.5em;
}

.custom li.widget {
margin-bottom: 1em;
}

.custom .format_text p  {
	margin-bottom:0.5em;
}
.custom .format_text h2, .custom .format_text h3 {
	margin:0.5em 0;
}
.custom #comments {
margin: 2em 3em 1em 2.3em;
}

/* Tabber Code Inserted beyond this point */

/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber {
}
.tabberlive {
 margin: 0 10px;
 padding-bottom: 10px;
 border: 1px solid #532A12;
 background: #fff;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin: 3px 0 0;
 padding: 0 0 3px 0;
 font: bold 12px Arial, Helvetica, sans-serif;
 border-bottom: 1px solid #fff;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 padding-left: 0;
 display: inline;
}

ul.tabbernav li a
{
 padding: 3px 6px;
 border-bottom: none;
 text-decoration: none;
 border-right: 1px solid #fff;
}

ul.tabbernav li a:link { 
	color: #fff; 
	background: #532A12;
	}
ul.tabbernav li a:visited { color: #fff; }

ul.tabbernav li a:hover, ul.tabbernav li.tabberactive a:hover
{
 color: #fff;
 background: #A52D23;
 text-decoration: none;
}

ul.tabbernav li.tabberactive a
{
 background-color: #A52D23;
 color: #fff;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding: 0;
 border: none;
 margin: 0 0 0 0;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

/* height:75px; */

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

/* overflow:auto; */
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
}

.tabbertab .widged li{
list-style-type: none;
margin: 0 10px;
}

.tabbertab .widged li li{
list-style-type: circle;
margin-bottom: 6px;
}





.tabberlive {
	margin: 1.5em;
	padding-bottom: 0;
	border:  none;
}
.tabberlive .tabbertab {
	background-color: #ccc;
	border: 1px solid #000;
	}
ul.tabbernav
{
	margin: 0;
 	border-bottom: 1px solid #A52D23;
	background: #fff;
	}
ul.tabbernav li a:visited { color: #fff; }

ul.tabbernav li a:link { 
	background: #000;
	}

ul.tabbernav li.tabberactive a {
	background-color: #A52D23;
	}
ul.tabbernav li a:hover, ul.tabbernav li.tabberactive a:hover {
 	color: #fff;
 	background: #A52D23;
 	text-decoration: none;
	}
h2, h2 a, h2 a:visited, h3, h3 a, h3 a:visited {
	color: #A52D23;
	}	
#right-sidebar {
	margin-top: 30px;
	}
.widged {
	padding: 1em;
	font-size: 1.0em;
	}
	
	
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: auto;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 8em;
	float: left;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 8.2em;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 160px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #EEE;
	padding: 0.5em 0.75em;
	color: #333;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #33C;
	color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #33C;
	color: #FFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}


ul.MenuBarHorizontal
{
width:96em;
background-color: #000;
height: 2.8em;
}
ul.MenuBarActive
{
}
ul.MenuBarHorizontal li
{
	width: 15.98em;
}
ul.MenuBarHorizontal ul
{
	width: 16em;
}
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
}
ul.MenuBarHorizontal ul li
{
	width: 16em;
}
ul.MenuBarHorizontal ul ul
{
}
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
}
ul.MenuBarHorizontal ul
{
}
ul.MenuBarHorizontal a
{
	padding: 0.35em;
	background: #000;
	border-right: 1px solid #FFF;
	color: #FFF;
	font-size: 1.4em;
	text-align: center;
}
ul.MenuBarHorizontal ul a
{
	border-bottom: 1px solid #FFF;
	padding: 0.5em;
}
ul.MenuBarHorizontal a.noBorder {
	border-right: 0px none;
;
}
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #FB0118;
}
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
}

ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url(images/SpryMenuBarDownHover.gif);
}
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
}
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(images/SpryMenuBarDownHover.gif);
	background-color: #333;
}
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(images/SpryMenuBarDownHover.gif);
	background-color: #333;
}
ul.MenuBarHorizontal iframe
{
}
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
	}
}

.adDiv {
width: 125px;
float: left;
margin-bottom: 1em;
}

