a:active {
	outline: none;
	outline-style: none;
	cursor:pointer;
}

a:focus {
	outline: none;
	outline-style: none;
	cursor:pointer;
}

/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0;
	padding:0;	
	border-bottom:4px solid #068bbf;	
	height:33px;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	background: url('../images/TabsBar.gif') no-repeat -421px 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 12px;
	display:block;
	height: 33px;  
	line-height:33px;
	width: 133px;
	text-align:center;	
	text-decoration:none;
	color:#999999;
	padding:0px;
	margin:0px;
	overflow:hidden;
	position:relative;
	top:4px;
}

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

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-position: -421px -34px;	
	color:#068bbf;
	text-decoration:none;
}

/* 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-position: -421px -68px;		
	cursor:default !important; 
	color:#ffffff !important;
	text-decoration:none;
}

/* Different widths for tabs: use a class name: sm, md(default), lg, xl */

ul.tabs span { margin:0;padding:0; }

/* small */
ul.tabs .sm a 			{ background-position: -554px 0px; width:80px; }
ul.tabs .sm a:hover 	{ background-position: -554px -34px;text-decoration:none; }
ul.tabs .sm a.current  { background-position: -554px -68px; }
ul.tabs .sm a.current:hover 	{ background-position: -554px -68px;text-decoration:none; }

/* medium */
ul.tabs .md a 			{ background-position: -421px 0px; width:133px; }
ul.tabs .md a:hover 	{ background-position: -421px -34px;text-decoration:none; }
ul.tabs .md a.current  { background-position: -421px -68px; }
ul.tabs .md a.current:hover 	{ background-position: -420px -68px;text-decoration:none; }

/* large */
ul.tabs .lg a 			{ background-position: -248px 0px; width:173px; }
ul.tabs .lg a:hover 	{ background-position: -248px -34px;text-decoration:none; }
ul.tabs .lg a.current  { background-position: -248px -68px; }
ul.tabs .lg a.current:hover 	{ background-position: -248px -68px;text-decoration:none; }

/* xtralarge */
ul.tabs .xl a 			{ background-position: -1px 0px; width:247px; }
ul.tabs .xl a:hover 	{ background-position: -1px -34px;text-decoration:none; }
ul.tabs .xl a.current { background-position: -1px -68px; }
ul.tabs .xl a.current:hover 	{ background-position: -1px -68px;text-decoration:none; }


/* Site specific positioning */

.CasePics ul.tabs {
	width:568px;
	margin: 0 20px 15px 0;
}


/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;
	padding:10px 15px 0 15px;
}

