/* Dropdown style */


.dropdown dt {
	display: inline-block;
	width: 90%;
	border: 1px solid #ccc;
	border-radius: 60px;
	text-decoration: none;
}



.dropdown dt a:hover, .dropdown dt a:active{
	border-color: #bdc3c7;
}

.dropdown dt span{
    display: block;
    padding: 12px;
    background: url("../img/arrow.svg") no-repeat scroll right center;
    border-right: 1em solid transparent;
    cursor: pointer;
    font-size: 14px;
    line-height: 18px;
}
  
dd ul li:last-child a:hover{
	border-radius: 0 0 16px 16px;
}

dd ul li:first-child a:hover{
	border-radius: 16px 16px 0 0;
}

dd ul {
    display: none;
    position: absolute;
    top: -44px;
    width: 90%;
    left: 5%;
    list-style: none;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #bdc3c7;
    border-radius: 21px;
}

dd {
	position: relative;
}
		
dd li a {
	display: block;
	padding: 10px;
	text-decoration: none;
    font-size: 13px;
}

dd li a:hover{
	background-color: #fe2c1a;
	color: #fff;
	cursor: pointer;
}


.selected{
	font-weight: 700;
}