@CHARSET "ISO-8859-1";

html *
{
   /*font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;*/
   font-family: Calibri;
   font-size:14px;
   
}

#leftPanel * {margin: 0; padding: 0;}

#leftPanel {
	background: lightyellow;
	width: 230px;
	margin: 10px auto 10px 5px;
	color: white;
}

#leftPanel h3 {
	font-size: 14px;
	line-height: 30px;
	padding: 0 10px;
	cursor: pointer;
	/*fallback for browsers not supporting gradients*/
	background: #004594;
	/*background: linear-gradient(#004594, #004594);*/
	

}
/*heading hover effect*/
#leftPanel h3:hover {
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
	background-image:url('default/images/tSq.png');
	background-repeat:no-repeat;
	background-position:right top;
}
/*iconfont styles*/
#leftPanel h3 span {
	font-size: 16px;
	margin-right: 10px;
}
/*list items*/
#leftPanel li {
	list-style-type: none;
	border-bottom: 1px solid white;
}
/*links*/
#leftPanel ul ul li a {
	color: #000000;
	text-decoration: none;
	font-size: 14px;
	line-height: 25px;
	display: block;
	padding: 0 15px;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
}
/*hover effect on links*/
#leftPanel ul ul li a:hover {	
	border-left: 8px solid orange;
}
/*Lets hide the non active LIs by default*/
#leftPanel ul ul {
	display: none;
}
#leftPanel li.active ul {
	display: block;
}
/*
#leftPanel li.active h3 {
	background-image:url('default/images/tSq.png');
	background-repeat:no-repeat;
	background-position:right top;
}
*/
a.whiteLink:link,a.whiteLink:visited,a.whiteLink:hover,a.whiteLink:active{
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
}