@charset "utf-8";
/* CSS Document */
/* Styles for the tabbed panels */
		
div#tabsheader {background:url(../images/backgrounds/bgimage_TabsHeader_HRUK.jpg) no-repeat top center;}
body.OFI div#tabsheader {background-image:url(../images/backgrounds/bgimage_TabsHeader_OFI.jpg);}

div#tabsheader h1 {
	font: normal 1.7em Verdana, Geneva, sans-serif;
	color:#fff;
	padding:11px 0 10px 25px;
}

div#tabcontent {
		background: url(../images/backgrounds/bgimage_TabsContent_HRUK.jpg) repeat-y right top;
		margin-bottom:0;
    padding: 1px 27px 0px 21px;
}
body.OFI div#tabcontent {background-image: url(../images/backgrounds/bgimage_TabsContent_OFI.jpg);}

ul#tabs {
    list-style: none;
		font:bold 11px Verdana, Geneva, sans-serif;
    margin: 0;
    padding: 0 0 0 20px;
		border-bottom: 1px solid #003366; margin-right:8px;
}
ul#tabs:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
ul#tabs li {
    float: left;
    margin: 0 0 0 1px;
    min-width: 84px; /* be nice to Opera */
}

ul#tabs a {
		display: block;
    padding: 0 10px 0 0;
    color:#777;
    font-weight: bold;
    line-height: 1.2em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
    outline: 0; /* prevent dotted border in Firefox */
		background: url(../images/icon/tabbedpanel_tabs_HRUK.png) no-repeat;
}
body.OFI ul#tabs a  {background-image: url(../images/icon/tabbedpanel_tabs_OFI.png);}

ul#tabs li.current a {
    position: relative;
    top: 1px;
    z-index: 2;
    margin-top: 0;
    color: #007290;
}
ul#tabs a span {
		display: block;
    width: 64px; /* IE 6 treats width as min-width */
    min-width: 64px;
    height: 15px; /* IE 6 treats height as min-height */
    min-height: 15px;
    padding: 3px 0 0 10px;
    background: url(../images/icon/tabbedpanel_tabs_HRUK.png) no-repeat 0 0;	
}
body.OFI ul#tabs a span {background-image: url(../images/icon/tabbedpanel_tabs_OFI.png);}

*>ul#tabs a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}

ul#tabs li.current a, ul#tabs a:hover, ul#tabs a:focus, ul#tabs a:active {
    background-position: 100% -78px;
		cursor: pointer;
		color:#007290;
}
ul#tabs a {
    background-position: 100% -52px;
}
ul#tabs li.current a span, ul#tabs a:hover span, ul#tabs a:focus span, ul#tabs a:active span {
    background-position: 0 -26px;
}
ul#tabs li.current a:link, ul#tabs li.current a:visited { 
    cursor: text;
}


/* Additional IE specific bug fixes... */
* html ul#tabs { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html ul#tabs  { /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}

/* This positions the image used to round off the bottom of the tabbed panel. It is enclosed within the tabbed panel.
   I have NO idea why it requires the below position CSS - it was the only way I could get it to display right for IE7. (2px of background bleed below the TabsFooter image). It was working fine in Firefox with just margin-left:21px , but as Firefox is happy this way too - so I'll leave it be .*/
.bgimage_TabsFooter {position:relative; top:2px; left:-21px; }
