/* root element for tabs  */
ul.tabs {
	list-style:none;
	height: 43px;
	margin: 16px 0 -1px 0;
	font-size: 93%;
}

ul.tabs_no_title {
	margin-top: 0;
}

/* single tab */
ul.tabs li {
	float:left;
	margin-right: 1px;
}

/* link inside the tab. uses a background image */
ul.tabs a {
	background: url('../../site_images/tabs/tab_right_off.png') no-repeat top right;
	display: block;
	text-decoration: none;
}

ul.tabs a span {
	background: url('../../site_images/tabs/tab_left_off.png') no-repeat top left;
	color: #002B60;
	height: 22px;
	padding: 13px 10px 7px 10px;
	display: block;
	border-bottom: 1px solid #ccc;
}

ul.tabs a:active {
	outline: none;
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background: url('../../site_images/tabs/tab_right_on.png') no-repeat top right;
}

ul.tabs a:hover span {
	background: url('../../site_images/tabs/tab_left_on.png') no-repeat top left;
	text-decoration: underline;
	border-bottom: none;
	cursor: pointer;
	height: 22px;
	padding: 13px 10px 7px 10px;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current,
ul.tabs a.current:hover,
ul.tabs li.current a {
	background: url('../../site_images/tabs/tab_right_on.png') no-repeat top right;
}

ul.tabs a.current span,
ul.tabs a.current:hover span,
ul.tabs li.current a span {
	background: url('../../site_images/tabs/tab_left_on.png') no-repeat top left;
	text-decoration: none;
	display: block;
	cursor: default;
	border-bottom: none;
	height: 23px;
	padding: 13px 10px 8px 10px;
}

/* Pane styles */
div.panes {
	padding: 16px;
  border: 1px solid #D5D5D5;
	margin-bottom: 0;
}

div.panes.tab_map {
	padding: 0;
}


