a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}

/* root element for tabs  */
ul.tabs {
	list-style:none;
	margin:0 !important;
	padding:0;
	height:28px;
	border-bottom:1px solid #000D87;
	padding-top: 3px;
}

/* Opera */

@media all and (-webkit-min-device-pixel-ratio:10000),
not all and (-webkit-min-device-pixel-ratio:0) {
  ul.tabs {height:30px;}
}

/* single tab */
ul.tabs li {
	float:left;
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important;
	margin-right:3px !important;
}

/* link inside the tab. uses a background image */
ul.tabs a {
	display:block;
	height: 28px;
	line-height:30px;
	width: 110px;
	text-align:center;
	text-decoration:none !important;
	color:#000;
	padding:0px;
	margin:0px;
	background-color: #C8D7ED;
	font-family: Arial, sans-serif;
	font-weight: bold;
	font-size: 12px;
	color: #000D87;
}

/* when mouse enters the tab move the background image */

ul.tabs a:hover {
	background-color: #D5DEEA;
	color: #000D87;
}

/* 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-color: #051788;
	cursor:default !important;
	color:#fff !important;
}

/* initially all panes are hidden */
div.panes div.pane {
	display:none;
	padding-top: 10px;
}