@charset "UTF-8";

/**
 * Author: Michael Gilkes (Valor Apps)
 * Date: December 7, 2011
 *
 *
 * Dark Grey Border: #7A7873
 * Text Shadow: #42413E
 */


/***************|Easy Tabs            |***************
*****************************************************/
div.easytabs
{
	margin: 5px 0px;
}

div.easytabs > ul
{
	list-style: none;
	display: block;
	width: inherit;
	position: relative;
	padding: 0;
	margin: 0;
	background: transparent;
}

div.easytabs > ul > li
{
	display: inline;
	border: 1px solid #A1C3D7; 
	padding: 4px 10px;
	margin: 0px 2px;
	font-size: 12pt;
	color: #FFFFFF;
	-webkit-border-radius: 5px 5px 0px 0px;
	-moz-border-radius: 5px 5px 0px 0px;
	border-radius: 5px 5px 0px 0px;
	background: #A1C3D7; /*fallback for non-CSS3 browsers*/
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#85B2CB), to(#B4D0DF)); /*old webkit*/
	background: -webkit-linear-gradient(#85B2CB, #B4D0DF); /*new webkit*/
	background: -moz-linear-gradient(#85B2CB, #B4D0DF); /*gecko*/
	background: -o-linear-gradient(#85B2CB, #B4D0DF); /*opera 11.10+*/
	background: linear-gradient(#85B2CB, #B4D0DF); /*future CSS3 browsers*/
}

div.easytabs > ul > li:first-child
{
	margin-left: 0px;
}

div.easytabs > ul > li:hover
{
	background: #1AA8FB;
	cursor: pointer;
}

div.easytabs > ul > li.active
{
	font-weight: bold;
	background: #268ED9; /*fallback for non-CSS3 browsers*/
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#1AA8FB), to(#2F7AC0)); /*old webkit*/
	background: -webkit-linear-gradient(#1AA8FB, #2F7AC0); /*new webkit*/
	background: -moz-linear-gradient(#1AA8FB, #2F7AC0); /*gecko*/
	background: -o-linear-gradient(#1AA8FB, #2F7AC0); /*opera 11.10+*/
	background: linear-gradient(#1AA8FB, #2F7AC0); /*future CSS3 browsers*/
	cursor: default;
}

div.easytabs > div
{
	display: none;
	position: relative;
	background: silver;
	padding: 1em 1em 1em;
	margin: 0;
	margin-top: 2px;
	border: 1px solid #A1C3D7; 
}

div.easytabs > div.active
{
	display: block;
}

