
/* CSS Script for Drop down menu */
.dropdown {
    position: relative;
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 138px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 5px 8px;
	z-index: 1;
	margin-top: -37px;
}

.dropdown:hover .dropdown-content {
	
    color: #06F; 
    padding: 5px 8px;
    text-decoration: none;
    display: inline-block;
	border-style: solid ;
	border-color:#0CF; */
	
    background: -webkit-linear-gradient(top, #FBFBFB 0%, #F4F4F4 100%);
    background: -moz-linear-gradient(top, #FBFBFB 0%, #F4F4F4 100%);
    background: -o-linear-gradient(top, #FBFBFB 0%, #F4F4F4 100%);
    background: -ms-linear-gradient(top, #FBFBFB 0%, #F4F4F4 100%);
    background: linear-gradient(top, #FBFBFB 0%, #F4F4F4 100%);
 
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.dropdown:hover a:hover {color: #F30; text-decoration:underline;}

