/**
 * Main droplink wrapper
 */
.droplink {
	z-index:2;
	width: 140px;
	position: absolute;
	top: 95px;
	left: 853px;
	-moz-border-radius-topleft: 10px;
	-webkit-border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
	-webkit-border-top-right-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
	-webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
	-webkit-border-bottom-right-radius: 10px;
}

/**
 * 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: #124b75;
	border: solid 1px #0a3351;
}

/**
 * Set droplink title style
 */
.droplink h3 a {
	text-align: center;
	width: 100%;
	display: block;
	padding: 12px 0px;
	color: #333;
	letter-spacing: 4px;
	text-decoration: none;
	text-transform: uppercase;
}

/**
 * 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;
}

/**
 * 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-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 12px;	
	display: block;
	color:#3084b3;
	font-size:12px;
	margin: 2px;
	text-decoration: none;
	/* background-color: #24608c; */
	-moz-border-radius-topleft: 10px;
	-webkit-border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
	-webkit-border-top-right-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
	-webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
	-webkit-border-bottom-right-radius: 10px;
}

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