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

   elements.css
   * Default html elements

-------------------------------------------------------------- */
/* Tabs
-------------------------------------------------------------- */
ul.tabs {
	display: block;
	margin: 0 0 1.5em 0;
	padding: 0;
	border-bottom: solid 1px #ddd; 
}
ul.tabs li {
	display: block;
	width: auto;
	height: 30px;
	padding: 0;
	float: left;
	margin-bottom: 0; 
}
ul.tabs li a {
	display: block;
	width: auto;
	height: 30px;
	line-height: 30px;
	margin: 0;
	padding: 0px 20px;
	border: solid 1px #ddd;
	border-width: 1px 1px 0 0;
	background: #f5f5f5;
	text-decoration: none;
}
ul.tabs li a.active {
	background: #fff;
	position: relative;
	padding-top: 4px;
	border-left-width: 1px;
	margin: 0 0 0 -1px;
	color: #111;
	-moz-border-radius-topleft: 2px;
	-webkit-border-top-left-radius: 2px;
	-moz-border-radius-topright: 2px;
	-webkit-border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px; 
}
ul.tabs li:first-child a.active { margin-left: 0; }
ul.tabs li:first-child a {
	border-width: 1px 1px 0 1px;
	-moz-border-radius-topleft: 2px;
	-webkit-border-top-left-radius: 2px;
	border-top-left-radius: 2px; 
}
ul.tabs li:last-child a {
	-moz-border-radius-topright: 2px;
	-webkit-border-top-right-radius: 2px;
	border-top-right-radius: 2px; 
}

ul.tabs-content { margin: 0; display: block; }
ul.tabs-content > li { display:none; }
ul.tabs-content > li.active { display: block; }

/* Clearfixing tabs for beautiful stacking */
ul.tabs:before,
ul.tabs:after {
	content: '\0020';
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0; 
}
	ul.tabs:after { clear: both; }
	ul.tabs { zoom: 1; }

/* Alert boxes - Success, info, notice and error/alert boxes
-------------------------------------------------------------- */
.error,
.alert,
.notice,
.success,
.info { padding: 0.8em; margin-bottom: 1em; border: 1px solid #ddd; }

.error, .alert { background: #fbe3e4; color: #8a1f11; border-color: #fbc2c4; }
.notice        { background: #fff6bf; color: #514721; border-color: #ffd324; }
.success       { background: #e6efc2; color: #264409; border-color: #c6d880; }
.info          { background: #d5edf8; color: #205791; border-color: #92cae4; }
.error a, .alert a { color: #8a1f11; }
.notice a          { color: #514721; }
.success a         { color: #264409; }
.info a            { color: #205791; }

nav ul,
nav ul li {
	list-style-type: none;
	list-style-image: none;
	margin: 0px;
	padding: 0px;
}