/************************************************************************
*
*
	CSS for tabs for IHR
	by Jakob Persson
	Based on Sliding Doors technique:
	http://www.alistapart.com/articles/slidingdoors

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



#header {
    	float:left;
    	width:100%;
		background: #F2F2F2 url(images/tab_bg.gif) repeat-x bottom;
    	font-size:93%;
    	line-height:normal;
		
		font-weight: bold;
		font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
		font-size: 12px;
		clear: none;
}

#header #mainnavtabbed {
    	margin:0;
		padding:10px 10px 0;
    	list-style:none;
}
	
#header #mainnavtabbed li {
    	float:left;
		background:url("images/tab_inactive_l.gif") no-repeat left top;
    	margin:0;
		margin-right: 4px;
    	padding: 0 0 0 11px;
}
	
#header #mainnavtabbed a {
		float:left;
		display:block;
		background: url(images/tab_inactive_r.gif) no-repeat right top;
		padding: 8px 15px 4px 4px;
		text-decoration: none;
		color: #FFFFFF;
}

#header #mainnavtabbed li.current {
    background-image:url(images/tab_active_l.gif);
}

#header #mainnavtabbed li.current a {
    background-image:url(images/tab_active_r.gif);
	 color: #009997;
	 padding-bottom: 5px;
}

#header {
	margin-bottom: -20px;
}

html>body #header {
	margin-bottom: -10px;
}


/* Commented Backslash Hack
   hides rule from IE5-Mac \*/
#header a {float:none;}
/* End IE5-Mac hack */

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

.tabcontent {
	border: 1px solid silver;
	border-width: 0px 1px 1px 1px;
	background: #FFFFFF;
	padding: 8px;
	padding-top: 32px;
}

html>body .tabcontent {
	padding-top: 64px;
}