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


 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 { 
	height:1%; /* fixing IE 6 */
	margin:0;
	min-height:auto;
	overflow:auto;
}
.tabs li {
  /*border:1px solid #ccc;
  border-bottom:none;*/
  float:left;
  line-height:1.5; 
  list-style-type:none;
  margin:0 .25em 0 0;
  padding:0 0 0 16px;
}
.tabs li a { 
	/*background:#ddd;
  border:1px solid #eee;
  border-bottom:none;*/
  color:#333;
  cursor:pointer;
  display:block;
  float:left;
  font-weight:bold;
  padding:10px 14px 7px 0px;
  overflow: hidden;
  font-family: Verdana;
  font-weight: normal;
}
.tabs li a, .tabs li a:focus, .tabs li a:hover { 
  text-decoration:none;
}
.tabs li a:focus, .tabs li a:hover { 
  color:#555;
  outline:none;
}
.tabs li a.selected:focus, .tabs li a.selected:hover { 
  color:#fafafa;
}	

