/*------------------------------------------------------------
	TABS
-------------------------------------------------------------*/

/*Wrapper containing the tab buttons*/
div.tab_wrapper{
    height:25px;
    background:url('../../images/tab_info_bg.jpg') repeat-x;
    background-position:bottom;
    background-color:#C3B79D;
    position:relative;
    width:620px; /*Can't use 100% in IE'*/
    position: relative;
    overflow: hidden;
}

/*Wrapper containing the tab buttons on a sub level*/
div.tab_subwrapper{
    height:40px;
    background:url('../../images/tabs/tab_divide.gif') repeat-x;
    background-color:#C3B79D;
    position:relative;
    width:auto; /*Can't use 100% in IE'*/
    position: relative;
    overflow: hidden;
}

/*Area where the text above the tabs is displayed*/
div.tabs_content_text_area
{
    background-color:#C3B79D;
    padding:5px;    
}

/*The tab button*/
div.tab{
    background-color:#DBD2B9;
    background-image:url('../../images/tabs/assets.png');
    background-position: 0px -31px;
    height:26px;
    padding-left:10px;
    padding-right:10px;
    padding-top:5px;
    margin-top:0px;
    position:relative;
    font-size:11px;
}

/*The tab button, on a sub level*/
div.tab_subwrapper div.tab{
    padding-top:5px;
    margin-top:14px;
}

/*The selected tab*/
div.tab_on{
    background-position: 0px -5px;
}

/*Hovering over a link in a wrappen, general link styling*/
div.tab_wrapper a:hover, div.tab_subwrapper a:hover{
    text-decoration:none;
}

/*A tab link that has been clicked*/
a:visited div.tab{
	color:#333333;
}

/*A link in a tab*/
a:link div.tab{
	color:#333333;
}

/*Hovering over a tab*/
a:hover div.tab{
	color:#7C160F;
	background-position: 0px -57px;
}

/*The left side of a tab*/
div.tab .l_side {
    background-image:url('../../images/tabs/assets.png');
    background-position: -5px 0px;
    width:5px;
    height:5px;
    margin-top:-5px;
    position:absolute;
    left:0px;
}

/*The right side of a tab*/
div.tab .r_side {
    background-image:url('../../images/tabs/assets.png');
    background-position: 0px 0px;
    width:5px;
    height:5px;
    margin-top:-5px;
    position:absolute;
    right:0px;
}

/*The content that a tab opens*/
div.tab_content{
    clear:both;
    width:100%;
    height:auto;
    padding-top:5px;
    
}

/*The div holder the tab scrolling handlers*/
div.tab_scroller_container{
	height: 14px;
	background: #C3B79D;
	display: none;
}

/*The button that scrolls the tabs to the right*/
div.tab_scroller{
    display:none;
    z-index:250;
    cursor:pointer;
    float: right;
}

/*The button that scrolls the tabs to the left*/
div.tab_scroller_back{
    display:none;
    cursor:pointer;
    float: left;
}

/*All table cells inside the wrapper*/
div.tab_wrapper table td{
    padding-left:2px;
    padding-right:2px;
}

/*All table cells inside the wrapper on a sub level*/
div.tab_subwrapper table td{
    padding-left:2px;
    padding-right:2px;
}

/*The first table cell in the wrapper*/
div.tab_wrapper table td:first-child{
    padding-left:5px;
}

/*The first table cell in the wrapper on a sub level*/
div.tab_subwrapper table td:first-child{
    padding-left:5px;
}
