

/* 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... */
    .ui-tabs-hide {
        display: none;
    }
}
/* Hide useless elements in print layouts... */
@media print {
    .ui-tabs-nav {
        display: none;
    }
}

/* Skin */

#tabs{
}
ul.ui-tabs-nav{
	list-style:none;
	width:207px; 
	float:left
}
.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
ul.ui-tabs-nav li{
    font-weight: bold;
	font-size:14px;
}
.ui-tabs-nav a{
    text-decoration: none;
	display:block;
	padding:5px 20px 5px 10px;
	color:#999999 
	
}
ul.ui-tabs-nav li a:hover{
	/*background: url(../images/pages/arrow-hover.gif) no-repeat right center;*/
}
ul.ui-tabs-nav .ui-tabs-selected a, ul.ui-tabs-nav .ui-tabs-selected a:hover{ 
	background:url(../images/pages/arrow.gif) no-repeat right center ;	
	color:#3AB7DD;
}

.ui-tabs-nav .ui-tabs-selected, ul.ui-tabs-nav li.ui-tabs-selected:hover{
	
}

.ui-tabs-nav .ui-tabs-selected a:link, .ui-tabs-nav .ui-tabs-selected a:visited,
.ui-tabs-nav .ui-tabs-disabled a:link, .ui-tabs-nav .ui-tabs-disabled a:visited { 
    cursor: text;
}
.ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active,
.ui-tabs-nav .ui-tabs-unselect a:hover, .ui-tabs-nav .ui-tabs-unselect a:focus, .ui-tabs-nav .ui-tabs-unselect a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer; 
	color: #3AB7DD;
	/*background: url(../images/pages/arrow-hover.gif) no-repeat right center;*/
}

.ui-tabs-panel {
	width:470px; 
	float:left;
	border-left:1px solid #61C6E3;
	padding-left:20px;
}

.officeInfo{}
.officeInfo li{
	float:left;
	width:225px;
	list-style:none;
	padding:10px 10px 10px 0;
}
.officeInfo li.left{
clear:left
}
.officeInfo li.right{
clear: right
}

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

