/*
	 Organic Tabs
	 by Chris Coyier
	 http://css-tricks.com
*/

/** { margin: 0; padding: 0; }
html { overflow-y: scroll; }*/
a {
	text-decoration: none;
}
a:focus {
	outline: 0;
}
p {
	font-size: 15px;
	margin: 0 0 20px 0;
}

/* Generic Utility */
.hide {
	position: absolute;
	top: -9999px;
	left: -9999px;
}


/* Specific to tabcontents */
#tabcontents {
	position: relative;
}

#tabcontents .list-wrap {
	background: #fff;
	padding: 0px;
	margin: 0 0 15px 0;
	padding-top: 31px;
}

#tabcontents ul {
	list-style: none;
	margin:0 auto;
	padding: 0;
}

#tabcontents ul li a {
	display: block;
	border-bottom: 1px solid #666;
	padding: 4px;
	color: #666;
	
}

#tabcontents ul li a:hover {
	background: #9DCD79;
	color: white;
}

#tabcontents ul li:last-child a {
	border: none;
}

#tabcontents .tab {
	overflow: hidden;
	margin-left: 22px;
	position: absolute;
	top:0;
}

#tabcontents .tab li {
	width: 66px;
	float: left;
	margin: 0 5px 0 0;
}

#tabcontents .tab li.last {
	margin-right: 0;
}

#tabcontents .tab li a {
	display: block;
	padding: 5px;
	background: #E6F4DD;
	color: #063;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	border: none;
	text-decoration: none;
	border-radius: 8px 8px 0 0;
}

#tabcontents li a.current, #tabcontents li a.current:hover {
	color: #FFF;
	border: 1px solid #666;
	border-bottom: 1px solid #9DCD79;
	border-radius: 8px 8px 0 0;
	background: #9DCD79;
    background : -webkit-gradient(linear, left top, left bottom, from(#9dcd79), to(#6c8d5));
	background: -webkit-linear-gradient(top,  rgba(157,205,121,1) 0%,rgba(118,148,95,0.84) 79%,rgba(112,140,91,1) 92%,rgba(108,141,83,1) 93%,rgba(157,205,121,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(157,205,121,1) 0%,rgba(118,148,95,0.84) 79%,rgba(112,140,91,1) 92%,rgba(108,141,83,1) 93%,rgba(157,205,121,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9dcd79', endColorstr='#9dcd79',GradientType=0 ); /* IE6-9 */


}

#tabcontents li:last-child a.current, #tabcontents li:last-child a.current:hover {
	border: 1px solid #666;
	border-bottom: 1px solid #9DCD79;
	border-radius: 8px 8px 0 0;
}

#tabcontents .tab li a:hover, #tabcontents .tab li a:focus { 
	 background : -webkit-gradient(linear, left top, left bottom, from(#9dcd79), to(#6c8d5));
	
}

#tabcontents ul li:last-child a:hover, #tabcontents ul li:last-child a:focus {
	border: 1px solid #666;
	border-bottom: 1px solid #9DCD79;
}
