/**
 * Main droplink wrapper
 */
 
.droplink-container {
	height: 70px;	
}
.droplink {
	width: 100%;
	position:absolute;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
    -moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
}

/**
 * Reset the margins and paddings
 */
.droplink ul, .droplink h3, .droplink h3 a{
	padding: 0px;
	margin: 0px;
}

/**
 * Draw border when mouse hover the droplink
 */
.droplink:hover {
	height: auto;
	background-color: #6b409b;
	border: solid 1px #6b409b;
-webkit-box-shadow:rgba(0, 0, 0, 0.8) 2px 3px 10px 0px;
-moz-box-shadow:rgba(0, 0, 0, 0.8) 2px 3px 10px 0px;
box-shadow:rgba(0, 0, 0, 0.8) 2px 3px 10px 0px;

}

/**
 * Set droplink title style
 */
.droplink h3 a {
	text-align: left;
	width: 100%;
	display: block;
	padding: 6px 5px 4px 10px;
	color: white;
	text-decoration: none;
	font-family: "bebas-neue",sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 22px;
	text-shadow:rgba(0, 0, 0, 0.419608) 1px 1px 1px;
	background-color: #6b409b;
	background-image: url(images/arrow.png);
	background-repeat: no-repeat;
	background-position: 90% 50%;
}

/**
 * Hide image border when you use an image as link
 */
.droplink h3 a img{
	border: none;	
}

/**
 * Text style of the title when the menu is opened
 */
.droplink:hover h3 a {

}

/**
 * Make sure the Main label stays on the same place
 * If you don't use this block the label will move one pixel
 * because of the border that is added to the droplink div
 */
.droplink:hover h3 a {
	position: absolute;
	left: -1px;
	top: -1px;
}

/**
 * Default hide bullet icons and hide the menu items
 */
.droplink ul{
	list-style: none;	
	display: none;
	background-color: #6b409b;
	margin: 0;
	padding: 0;
	padding: 10px 15px 10px 0;
	margin: 0;
}

/**
 * Display the items when hovering the droplink
 */
.droplink:hover ul{
	display: block;
		margin: 0;
	margin-top: 40px;
}

/**
 * Show list items as block so they fill the line
 */
.droplink li{
	display: block;
}

/**
 * Style of the items
 */
.droplink li a{
	padding: 5px 12px 4px 34px;	
	margin: 2px;
	background-color: #7a4aaf;
	display: block;
	color:#FFF;
	text-decoration: none;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
    -moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	background-repeat:no-repeat;
	background-position: 5px 50%;
}

/**
 * Style when an items is hovered
 */
.droplink li a:hover {
	background-color: #302d32;	
}

/**
 * Social icons
 */
.droplink .college a {
	background-image:url("images/icons/college-favicon.png");	
}
.droplink .highschool a {
	background-image:url("images/icons/highschool-favicon.png");	
}
.droplink .med a {
	background-image:url("images/icons/med-favicon.png");	
}
.droplink .law a {
	background-image:url("images/icons/law-favicon.png");	
}
.droplink .supporters a {
	background-image:url("images/icons/supporters-favicon.png");	
}
