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


Tabs Plugin 0.2 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:1px solid #ddd;
  height:auto;
  margin:0 0 .75em 0;
  overflow:auto;
  padding-left:0;
}
* html .tabs { height:1%; /* fixing IE 6 */ }
.tabs li {
  border-radius: 3px;
  float:left;
  line-height:1.5;
  list-style-type:none;
  margin:0 .25em 0 0;
  padding:0;

}
.tabs li a{
  background:#cdc;
  border-bottom:none; 
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;

  color:#252;
  cursor:pointer;
  display:block;
  float:left;
  font-weight:bold;
  padding:.15em .33em .25em .33em;
  box-shadow: 0px 0px 15px 0px #9a9 inset;
}

.tabs li a.selected {
  background:#696;
  box-shadow: 0px 0px 15px 0px #ada inset;
  color:#fff;
  cursor:default;
}
.tabs li a, .tabs li a:focus, .tabs li a:hover {
  text-decoration:none;
}
.tabs li a:focus, .tabs li a:hover {
  color:#595;
  outline:none;
}
.tabs li a.selected:focus, .tabs li a.selected:hover {
  color:#fafafa;
}
.tabs li.label {
border:none;
font-weight:bold;
line-height:1.5;
margin-right:.5em;
padding:.25em .33em .25em .33em;
}
