/* -----------------------------------------------------------------------


 Tabs Plugin 0.1 for the Blueprint CSS Framework
 http://blueprintcss.org

   * Copyright (c) 2008-Present. Refer to the main Blueprint license.
   * See README for instructions on how to use this plugin.
   * For credits and origins, see AUTHORS.

----------------------------------------------------------------------- */

.tabs { 
	border-bottom:0px solid #ccc;
	height:1%; /* fixing IE 6 */
	margin:0 0 .75em 0;
	min-height:auto;
	overflow:auto;
}
.tabs li {
	border:0px solid #ccc;
	border-bottom:none;
	float:left;
	line-height:1.5; 
	list-style-type:none;
	margin:0;
	padding:0px;
}
.tabs li a { 
	background:url(../../images/in_active_tab_bg.png) no-repeat;
	border:0px solid #eee;
	border-bottom:none;
	color:#4aa1d9;
	cursor:pointer;
	display:block;
	width:290px;
	float:left;
	font-weight:bold;
	padding:11px 5px 7px 25px;
	margin-bottom:20px;
}
.tabs li a.selected { 
	background:url(../../images/active_tab_bg.png) no-repeat;
	border:0px solid #666;
	border-bottom:none;
	color:#666;
	cursor:default;
}
.tabspacing {
	margin:0 29px 0 0 ;
}
.tabs li a, .tabs li a:focus, .tabs li a:hover { 
	text-decoration:none;

}
.tabs li a:focus, .tabs li a:hover { 
	color:#666;
	outline:none;
	background:url(../../images/active_tab_bg.png) no-repeat;
}
.tabs li a.selected:focus, .tabs li a.selected:hover { 
	color:#666;
}	
