

/*custom font for text*/
@import url(https://fonts.googleapis.com/css?family=Nunito);
/*CSS file for fontawesome - an iconfont we will be using. This CSS file imported contains the font-face declaration. More info: http://fortawesome.github.io/Font-Awesome/ */
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.min.css);

/*Basic reset*/
li {
	margin: 0; padding: 0;
}
#accordian {
	clear:both;
	display: block;
	margin: 70px auto 0 auto;
	
}
@media only screen and (min-device-width : 600px) {
	#accordian {
	/*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);
	margin: 100px auto 0 auto;
	position: fixed;
	}
	.quotation {
		box-shadow: 
		0 5px 15px 1px rgba(0, 0, 0, 0.6), 
		0 0 200px 1px rgba(255, 255, 255, 0.5);
	margin: 100px auto 0 auto;
	position: fixed;
	}
}
#accordian ul{
	margin: auto; padding: 0;
	list-style: none;
}
#accordian li {
	margin-top: 0px;
	margin-bottom: 0px;
}
/*heading styles*/
#accordian h5 {
    position: relative;
    padding: 0px 20px 0px 35px;
    height: 25px;
    color: maroon;
    font-size: 0.9em;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
    text-shadow: 0px 1px 0px rgba(8, 0, 0, 0.5);
    background: #fffccc;
    border: #FFDBB7 outset 4px;cursor:pointer; 
    margin: 0;
    
}
#accordian a {
	  color: maroon;
    font-size: 0.9em;
    font-weight: normal;
    text-decoration: none;
}
/*heading hover effect*/
#accordian h5:hover {
	  color: #3e5706;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, .2);
    /*background: url(../img/active.png) repeat-x;*/
    background: yellow;
    background: -moz-linear-gradient(top, yellow 0%, gold 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, yellow), color-stop(100%, gold));
    background: -webkit-linear-gradient(top, yellow 0%, gold 100%);
    background: -o-linear-gradient(top, yellow 0%, gold 100%);
    background: -ms-linear-gradient(top, yellow 0%, gold 100%);
    background: linear-gradient(top, yellow 0%, gold 100%);
       cursor:pointer; 
}
/*iconfont styles*/
#accordian h5 span {
	font-size: 16px;
	margin-right: 10px;
}
/*list items*/
#accordian li {
	list-style-type: none;
}
/*links*/
#accordian ul ul li a {
	color: maroon;
	background: #FFF5EE;
	text-decoration: none;
	font-size: 0.8em;
	line-height: 27px;
	display: block;
	padding: 0 5px;
	border-bottom: 1px solid grey;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
}
/*hover effect on links*/
#accordian ul ul li a:hover {
	background: yellow;
	border-left: 5px solid lightgreen;
}
/*Lets hide the non active LIs by default*/
#accordian ul ul {
	display: none;
}
#accordian li.active ul {
	display: block;
}
.styled-select select {
   background: transparent;
   width: 268px;
   padding: 5px;
   font-size: 16px;
   line-height: 1;
   border: 0;
   border-radius: 0;
   height: 34px;
   -webkit-appearance: none;
   }
.styled-select {
   width: 240px;
   height: 34px;
   overflow: hidden;
   background: url(images/menu.png) no-repeat right #ddd;
   border: 1px solid #ccc;
   }
