/* -----------------------------------------------------------------------
 
 
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.
 
----------------------------------------------------------------------- */
.tabcontainer{
	padding-top:5px;
/*	margin:10px;*/
}

.tabstrip{
	border-bottom:1px solid #999;
	margin:0 0 0 0;
} 

.tabbody{
	border:1px solid #999;
	border-top:none;
	margin:0 0 0 0;
}

.tabs {
  height:1%; /* fixing IE 6 */
  margin:0 0 -1px 0;
  min-height:auto;
  overflow:auto;
}
.tabs li {
  float:left;
  line-height:1.5;
  list-style-type:none;
  margin:0 .25em -0px 0;
  padding:0;
}

.tabs li.first {
  margin-left:15px;
}

.tabs li a {
  background:#ddd;
  border:1px solid #999;
  color:#222;
  cursor:pointer;
  display:block;
  float:left;
  font-weight:bold;
  padding:.15em .75em .25em .75em;
}
.tabs li a.selected {
  background:#3a8e35 url(/images/green_grad_25.gif);
  border-bottom:1px solid #3a8e35;
  top:10px;
  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:blue;
/*  background:yellow;*/
  outline:none;
}
.tabs li a.selected:focus, .tabs li a.selected:hover {
  color:#ffff00;
}
.tabs li.label {
border:none;
font-weight:bold;
line-height:1.5;
margin-right:.5em;
padding:.25em .33em .25em .33em;
}

ul.top_round li a{
  -moz-border-radius-topleft:4px; -webkit-border-top-left-radius:4px;
  -moz-border-radius-topright:4px; -webkit-border-top-right-radius:4px;
}