/******************* css for dropdown menu ************************/
#dropdown-menu{
	position: absolute;
	top: 0;
	right: 25px;
	background-color: #A40A25;
	border-bottom: 4px solid #E01739;
	border-right: 2px solid #E01739;
	border-left: 2px solid #E01739;
}

#dropdown-menu a{
	text-decoration: none;
	float: left;
	padding-top: 13px;
	padding-bottom: 13px;
	padding-left: 20px;
	padding-right: 20px;
	color: white;
	background-color: #A40A25;
	font-size: 12px;
	font-weight: bold;
	font-family: helvetica, Arial;
	font-weight: bold;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
}


#dropdown-menu a:hover{
	color: #A40A25;
	background-color: white;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
}


#dropdown-menu-container{
	position: absolute;
	top: -300px;
	right: 70px;
	width: 500px;
	height: auto;
	border: 3px solid #A40A25;
	overflow: hidden;
	background-color: rgba(255,255,255,1);
}

#dropdown-menu-container .top{
	width: 65%;
	height: 45px;
	float: left;
	padding-left: 5%;
	padding-right: 30%;
	padding-top: 5%;
	font-size: 100%;
	font-style: italic;
	color: #A40A25;
	font-weight: bold;
	/*text-shadow: 1px 1px 25px yellow;*/
	font-family: Helvetica, Arial;
}

#dropdown-menu-container .left-menu,.dropdown-menu-container .middle-menu,.dropdown-menu-container .right-menu{
	margin-bottom: 5%;
	height: auto;
	width: 33%;
	float: left;
	border-right: 1px solid #E01739;
}
#dropdown-menu-container .right-menu{
	width: 32%;
	border: none;
}

#dropdown-menu-container a{
	text-decoration: none;
	margin-bottom: 5%;
	margin-top: 5%;
	width: 100%;
	float: left;
	text-align: center;
	color: #A40A25;
	font-style: italic;
	font-family: Helvetica, Arial;
	font-size: 90%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
}


#dropdown-menu-container a:hover{
	text-shadow: 1px 1px 25px yellow;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
}
/**************** end of css for dropdown menu ***********/
