@charset "UTF-8";
/* CSS Document */

#accordian {
	font-family: 'Nexa_Light';
	width:98%;
	height:auto;
	margin:0 0 0 2%;
	color:#FFF;
	/*Some cool shadow and glow effect
	box-shadow: 
		0 5px 15px 1px rgba(0, 0, 0, 0.6), 
		0 0 200px 1px rgba(255, 255, 255, 0.5);*/
}
/*heading styles*/
#accordian h3 {
	font-size:1em;
	cursor: pointer;
	color: #000;
	/*fallback for browsers not supporting gradients
	background: #003040; 
	background: linear-gradient(#003040, #002535);*/
}
#accordian h3 a {
	color: #000;
	/*fallback for browsers not supporting gradients
	background: #003040; 
	background: linear-gradient(#003040, #002535);*/
}

.currentAcoordion {
	font-size: 0.8em;
	line-height: 1em;
	padding:8px;
	cursor: pointer;
	color: #FFF;
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}
.currentAcoordion a {
	color: #FFF;
}
/*heading hover effect*/
#accordian h3:hover, #accordian h3 a:hover {
	color: #FFF;
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}
#accordian h3 a:hover, h3 a:visited {
	color: #FFF;
}
/*iconfont styles*/
#accordian h3 span {
	font-size: 1em;
	margin-right: 10px;
}
/*list items*/
#accordian ul li {
	width:100%;
	list-style-type: none;
	margin:15px 0px;
}
#accordian ul li a {
}
#accordian ul li a:hover {
	list-style-type: none;
	font-family:'Nexa_Bold';
}
/*links*/
#accordian ul ul li  {
	width:95%;
	padding-left:5%;
}
#accordian ul ul li:hover  {
	background:none;
}
#accordian ul ul li a {
	color: #000;
	text-decoration: none;
	font-size: 0.9em;
	line-height: 1.1em;
	display: block;
	padding:4px 4px;
	transition: all 0.15s;
}
/*hover effect on links*/
#accordian ul ul li a:hover {
	padding:4px 6px;
	font-weight:bold;
}
/*Lets hide the non active LIs by default*/
#accordian ul ul {
	display: none;
}
#accordian li.active ul {
	display: block;
}
/* ////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////// */
/* Grid TABLETS */

@media only screen and (min-width: 481px) and (max-width: 768px) {
	
#accordian ul li {
	width:100%;
	list-style-type: none;
	margin:10px 0px;
}
/* ////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////// */	
}
/* ////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////// */
/* Grid DESKTOP */
@media only screen and (min-width: 769px) {
		
#accordian ul li {
	width:100%;
	list-style-type: none;
	margin:5px 0px;
}
/* ////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////// */
}