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


 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%;
	min-height:auto;
	overflow:auto;
	margin-top: 0em;
	margin-right: 0px;
	margin-bottom: 0.75em;
	margin-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ccc;
}
.tabs li {
	float:left;
	line-height:1.2em;
	list-style-type:none;
	margin:0 .25em 0 0;
	padding:0;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #52B3E9;
	border-right-color: #52B3E9;
	border-bottom-color: #52B3E9;
	border-left-color: #52B3E9;
}
.tabs li a {
	color:#222;
	cursor:pointer;
	display:block;
	float:left;
	font-weight:bold;
	padding:.15em .33em .25em .33em;
	font-size: 1.10em;
	background-color: #C4E5F8;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
}
.tabs li a.selected {
	border:1px solid #666;
	border-bottom:none;
	color:#fff;
	cursor:default;
	background-color: #12628E;
}
.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;
}	
.tabs li.label { 
	border:none;
	font-weight:bold;
	line-height:1.5; 
	margin-right:.5em; 
	padding:.25em .33em .25em .33em;
}
