/*Stylesheet for accordian menu from TheCodePlayer.com*/
			/*@import url(http://fonts.googleapis.com/css?family=Nunito);
			@import url(http://thecodeplayer.com/uploads/fonts/fontawesome/css/font-awesome.min.css);
*/
			#accordian * {background-color:white;margin: 0; padding: 0;}
/*
			body {
				background: #4EB889;
				font-family: Nunito, arial, verdana;
			}
*/
			#accordian {
				font-family: arial, verdana;
				/*background: #004050;
				width: 250px;
				margin: 50px auto 0 auto;*/
				background-color:white;
				width:100%;
				margin: 0 0 50px 0;
				padding-bottom:100px;
				color: black;
				/*
				border: 2px solid #7f7f7f;
				box-shadow: 6px 6px 0px #7f7f7f;*/
			}
			
			#accordian h3 {
				/*background: #003040; */
				background: linear-gradient(#003040, #002535);
			}
			#accordian h3 a {
				padding: 0 10px;
				font-size: 12px;
				line-height: 34px;
				display: block;
				color: black;
				background-color:lightgray;
				border-bottom: 4px solid #336d87;
				text-decoration: none;
			}
			
			#accordian h3:hover {
				text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
			}
			
			#accordian h3 span {
				font-size: 16px;
				margin-right: 10px;
			}
			
			#accordian li {
				list-style-type: none;
			}
			
			#accordian ul ul li a, #accordian h4 {
				color: black;
				text-decoration: none;
				font-size: 12px;
				line-height: 27px;
				display: block;
				padding: 0 15px;

				transition: all 0.15s;
				position: relative;
			}
			
			#accordian ul ul li a:hover {
				background: white;
				border-left: 10px solid lightgreen;
			}
			
			#accordian ul ul {
				display: none;
			}
			#accordian li.active>ul {
				display: block;
				color:red;
			}

			#accordian ul ul ul{
				margin-left: 15px; border-left: 1px dotted rgba(0, 0, 0, 0.5);
			}
/*
			#accordian a:not(:only-child):after {
				content: "\f104";
				font-family: fontawesome;
				position: absolute; right: 10px; top: 0;
				font-size: 14px;
			}
			#accordian .active>a:not(:only-child):after {
				content: "\f107";
			}
	*/		
			#accordian li>a {
			  color:white;
			}
			#accordian li.active>a {
			  color:red;
			}

/*--------------- end ------------*/