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


 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 {
	min-height:auto;
	overflow:auto;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EEE8C4;
	list-style-type: none;
	padding:0px;
}
.tabs li {
	float:left;
	line-height:1.5;
	list-style-type:none;
	margin:0 .25em 0 0;
	padding:0;
}
.tabs li a {
	color:#222;
	cursor:pointer;
	display:block;
	float:left;
	font-weight:bold;
	height: 25px;
	padding-top: 0.43em;
	padding-right: 0.33em;
	padding-left: 0.33em;
	text-align: center;
	background-repeat: no-repeat;
	background-color: #F9F7EC;
	padding-bottom: 0.33em;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #EEE8C4;
	border-right-color: #EEE8C4;
	border-left-color: #EEE8C4;
	font-size: 15px;
}
.tabs li a.selected {
	color:#FF3300;
	cursor:default;
	background-color: #F2ECCE;
}
.tabs li a, .tabs li a:focus, .tabs li a:hover { 
  text-decoration:none;
}
.tabs li a:focus, .tabs li a:hover { 
  color:#FF3300;
  outline:none;
}
.tabs li a.selected:focus, .tabs li a.selected:hover { 
}	
.tabs li.label { 
	border:none;
	font-weight:bold;
	line-height:1.5; 
	margin-right:.5em; 
	padding:.25em .33em .25em .33em;
}
/* CSS Document */

.tabcontent{
	margin: 0px;
	background-color: #FFFFFF;
	padding: 10px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #EEE8C4;
	border-bottom-color: #EEE8C4;
	border-left-color: #EEE8C4;
}
