
/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}

/* tab pane styling */

div.panes {	
	margin-top:10px;
	width:661px;	
	float:left;
}

div.panes div {
	display:none;	
	height:500px;
	font-size:12px;
	float:none;
}



/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;		
	height:36px;
	width:563px;
	float:left;
	display:inline;
}

/* single tab */
ul.tabs li { 
	float:left;
	display:inline;	 
	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/v3/tabs.png) no-repeat 0px -72px;
	font-size:11px;
	display:block;
	height: 36px;
	width:123px;  
	line-height:28px;
	text-align:center;	
	text-decoration:none;
	color:#333;
	padding:0px;
	margin:0px;	
	position:relative;
}

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

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-position: 0px -36px;	
	color:#fff;	
}

/* 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: 0px 0px;		
	cursor:default !important; 
	color:#fff !important;
}

/* Different widths for tabs: use a class name: w1, w2 */


/* width 1 */
ul.tabs a.s 			{ background-position: 0px -72px; width:123px; }
ul.tabs a.s:hover 		{ background-position: 0px -36px; }
ul.tabs a.s.current 	{ background-position: 0px 0px; }

/* width 2 */
ul.tabs a.l 			{ background-position: -123px -72px; width:88px; }
ul.tabs a.l:hover 		{ background-position: -123px -36px; width:88px; }
ul.tabs a.l.current 	{ background-position: -123px 0px; width:88px; }


/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;		
}


