/*
IMPORTANT:
Essential styles to ensure accessibility
*/
@media projection, screen { /* use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .tabs-hide {
        display: none;
    }
}
@media print { /* retain accessibility by overriding inline style used by animations... */
    .fragment {
        display: block !important;
        height: auto !important;
        opacity: 1 !important;
    }
}

/*
TAB STYLES:
Some more styles, not important for making tabs work, just for the look of it...
*/
.anchors a:link, .anchors a:hover, .anchors a:visited{
	color:#FFF;
	text-decoration:none;
}
#home .anchors{
	background:#85c5e9;
}
.anchors {
    list-style: none;
    margin: 0;
    padding: 0 0 1px;
}
.anchors:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.anchors li {
	background:url(images/tab_home_off.gif) no-repeat;
	width:165px;
	text-align:center;
    float: left;
    margin: 0 5px 0 0;
}
.anchors a {
	width:165px;
	height:19px;
    display: block;
    position: relative;
    top: 1px;
    z-index: 2;
    padding: 5px 0px 2px 0px;
    color: #FFF;
	font-weight:bold;
    text-decoration: none;
}
.anchors .tabs-selected a {
    padding-bottom: 2px;
	margin-top:0px;
	color:#144560;
   
}
.anchors a:focus, .anchors a:active {
    outline: none; /* @ Firefox 1.5, remove ugly dotted border */
}
.anchors .tabs-selected a, .anchors a:hover, .anchors a:focus, .anchors a:active {
    background: url(images/tab_home_on.gif) left top no-repeat ;
	color:#144560;    
}

.fragment{
	background:#F6FAFD url(images/tab_home_on.gif) 0px -35px no-repeat;
}
.service_corner{
	background:url(images/service_corner.gif) 100% 0px no-repeat;
	padding:0 10px;
}
.anchors .tabs-selected a:link, .anchors .tabs-selected a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
	color:#144560;
    cursor: text;
}
.anchors a:hover, .anchors a:focus, .anchors a:active {
    cursor: pointer;
}
