/* Caution! Ensure accessibility in print and other media types... */
@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;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .tabs-nav {
        display: none;
    }
}

/* Skin */
.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0 0 0 0px;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs-nav ul {
margin: 0;
padding: 0;
width: 381px;
}
.tabs-nav li {
    float: left;
    margin: 0 0 0 0px;
	height: 26px;
    width: 127px; /* be nice to Opera */
}
.tabs-nav a {
    position: relative;
	background: url(../styleImages/backgrounds/homeBoxHead.png) repeat 0 0px;
    top: 0px;
	height: 26px;
    width: 127px;
	display:block;
    z-index: 2;
    padding-left: 0;
    color: #FFFFFF;
	font-family:Verdana, Arial, Tahoma;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.8;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */   
}
.tabs-selected a {
     color: #003c74;
	background: url(../styleImages/backgrounds/yellowTab.png) repeat 0 0px;
}

.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
	color: #003c74;
	background: url(../styleImages/backgrounds/yellowTab.png) repeat 0 0px;
    outline: 0; /* prevent dotted border in Firefox */
}
.tabs-selected a:hover {
     color: #003c74;
	background: url(../styleImages/backgrounds/yellowTab.png) repeat 0 0px;
}
.tabs-nav .tabs-selected a:link, .tabs-nav .tabs-selected a:visited, .tabs-nav .tabs-disabled a:link, .tabs-nav .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}

.tabs-nav .tabs-disabled {
    opacity: .4;
}
.tabs-container {
	width: 381px;
    padding: 0;
    background: #fff;
	border:1px solid #012649;
}
.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}
#container-1 {
width: 383px;
	height: 255px;
	margin: 3px;
	float: left;
}