/* --- directory store detail page, tabbed content --- */
div#tabs {
  padding: 10px 0;
}
.tabnav ul {
	position: relative;
  overflow: hidden;
  width: 440px;
  height: 46px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.tabnav li {
	float: left;
  display: inline;
  height: 46px;
	margin: 0 0 0 5px;
	padding: 0;
}
.tabnav li.tablink1 {
	margin: 0;
}
.tabnav li a {
	display: block;
  height: 38px;
	margin: 0 0 6px 0;
	padding: 0 10px;
	color: #333;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: normal;
	text-decoration: none;
  line-height: 38px;
	background-color: #EBEBEB;
	border: solid 1px #EBEBEB;
	outline: none;
}
.tabnav li a:hover {
	text-decoration: none;
}


div.tabcontents {
	position: relative;
	z-index: 1;
	width: 438px;
	min-height: 200px;
	margin: -1px 0 0 0;
	padding: 0;
	background-color: #e5e0ea;
	border: solid 1px #9485a3;
}
div.tabcontents a {
	color:#50b900;
}

div.tabcontents div.item {
	width: 408px;
	margin: 0 15px;
	padding: 15px 0 0 0;
	border-top: solid 1px #C8D5B9;
}
div.tabcontents div.item.first {
	border-top: none;
}
.tabcontents h2 {
	margin: 0;
	padding: 0;
	color: #333;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.4em;
	border-bottom: none;
}
.tabcontents p.date {
	margin: 0;
	padding: 0;
	color: #408e63;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 2.4em;
}
.tabcontents p.links a {
	font-size: 11px;
	font-weight: bold;
}
.tabcontents ul li {
	float: none;
}


/* 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 */
.ui-tabs-nav, .ui-tabs-panel {
}
.ui-tabs-nav {
  /* styling the UL outside of the tabs-specific coding */
}
.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.ui-tabs-nav li {
    float: left;
}
.ui-tabs-nav a, .ui-tabs-nav a span {
}
.ui-tabs-nav a {
}
.ui-tabs-nav a:link, .ui-tabs-nav a:visited {
}
.ui-tabs-nav .ui-tabs-selected a {
  position: relative;
  top: 0;
  z-index: 2;
  height: 44px;
	margin: 0 0 0 0;
	padding: 0 10px;
	color: #333;
	text-decoration: none;
	background-color: #e5e0ea;
	border: solid 1px;
	border-color: #9485a3 #9485a3 #e5e0ea #9485a3;
	outline: none;
}
.ui-tabs-nav a span {
/*    padding-top: 1px;
    padding-right: 0;
    height: 20px;
    background-position: 0 0;
    line-height: 20px;*/
}
.ui-tabs-nav .ui-tabs-selected a span {
    padding-top: 0;
    height: 27px;
    background-position: 0 -23px;
    line-height: 27px;
}
.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 { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    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... */
	/*color: #333;
	text-decoration: none;
  cursor: pointer;*/
}
.ui-tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}
.ui-tabs-nav .ui-tabs-disabled a:link, .ui-tabs-nav .ui-tabs-disabled a:visited {
    color: #000;
}
.ui-tabs-panel {
    /*background: #fff;*/ /* declare background color for container to avoid distorted fonts in IE while fading */
}
/*.ui-tabs-loading em {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}*/

/* 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;
}

