/**
 * Main droplink wrapper
 */
.droplink {
	width: 380px;
	position:absolute;
	
}

/**
 * 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: #ffffff;
	/*border: solid 1px #bebdbd;*/
	
}

/**
 * Set droplink title style
 */
.droplink h3 a {
	text-align: left;
	width: 100%;
	display: block;
	padding: 0px 0px;
	
	/*color: #333;
	letter-spacing: 3px;
	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: 5px;
	top: 0px;*/
}

/**
 * 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: 26px;
}

/**
 * Show list items as block so they fill the line
 */
.droplink li{
	display: block;
}

/**
 * Style of the items
 */
.droplink li a{
	padding: 0px 0px 5px 0px;	
	
	background-color: #ffffff;
	border:1px solid #bebdbd;
	
	display: block;
	color:#666666;
	text-decoration: none;
	background-repeat:no-repeat;
	background-position: 20px 3px;
}

/**
 * Style when an items is hovered
 */
.droplink li a:hover {
	background-color: #f2f2f2;	
	
}


