/**
 * Main droplink wrapper
 */
.droplink {
	width: 140px;
	position:absolute;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	z-index: 9999;
}

/**
 * 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: #3E403D;
	border: solid 1px #3A3C39;
	/*background-color: #101494;
	border: solid 1px #101494;*/
	background-color: #396bac;
	background-color: #5b5bb4;
	border: solid 1px #5b5bb4;
	border: solid 1px #000066;
	border: solid 1px #4480c9;
	/*-webkit-box-shadow: 0px 6px 10px rgba(50, 50, 50, 0.44);
	-moz-box-shadow:    0px 6px 10px rgba(50, 50, 50, 0.44);
	box-shadow:         0px 6px 10px rgba(50, 50, 50, 0.44);*/
	-moz-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
  	-webkit-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
  	box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
}

/**
 * Set droplink title style
 */
.droplink h3 a {
	text-align: center;
	width: 100%;
	display: block;
	padding: 12px 0px;
	color: #333;
	background-image: url("/contact/forms/images/droplink_icon_normal2.png");
	background-position: 15px 12px;
	background-repeat: no-repeat;
	letter-spacing: 4px;
	text-decoration: none;
	text-transform: uppercase;
	text-indent: -9000px;
}

/**
 * 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 {
	/*color: #FFF;
	font-weight: bold;*/

}

/**
 * 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;
	background-image: url("/contact/forms/images/droplink_icon_hover.png");
	background-position: 15px 12px;
	background-repeat: no-repeat;
}

/**
 * Default hide bullet icons and hide the menu items
 */
.droplink ul{
	list-style: none;	
	display: none;
}

/**
 * Display the items when hovering the droplink
 */
.droplink:hover ul{
	display: block;
	margin: 44px 14px 14px 14px;
}

/**
 * Show list items as block so they fill the line
 */
.droplink li{
	display: block;
	margin: 0 0 4px 0 !important;
	padding: 0 !important;
}

/**
 * Style of the items
 */
.droplink li a{
	padding: 5px 14px 4px 14px;	
	margin: 1px;
	background-color: #484A47;
	background-color: #4480c9;
	display: block;
	color:#fff !important;
	text-decoration: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/**
 * Style when an items is hovered
 */
.droplink li a:hover {
	background-color: #CC3B1F;
	background-color: #396bac;	
	background-color: #bde0ff;
	color: #000066 !important;
	text-decoration: none !important;
}