.button_container_proper {
	float: left;
	height: 15px;
	width: 100%;
	width: 200px;
	overflow: visible;
}

/**
 * Main droplink wrapper
 */
.droplink {
	width: 140px;
	width: 170px;
	position:absolute;
	z-index: 99999;
	overflow: visible;
	
}
.store_button_wrapper {
	width: 80px;
	height: 30px;
	overflow: visible;
	float: left;
	margin-right: 3px;

}
a.store_button {
	min-width: 80px;	
}
/**
 * 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 {
	/*background-color: #CCC;
	border: solid 1px #C1C1C1;*/
}

/**
 * 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;
}

/**
 * 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: #000;
}

/**
 * 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;
	width: 100%;
	margin-top: 30px;
	background-color: #CCC;
	background-color: #1C2D64;
}

/**
 * Display the items when hovering the droplink
 */
.store_button_wrapper:hover ul{
	display: block;
	position: relative;
	position: absolute;
	z-index: 9999999;
	width: 160px;
	border: solid 1px #BBB;
	border-top: none;
	
}

/**
 * Show list items as block so they fill the line
 */
.droplink li{
	display: block;
	width: 160px;
}

/**
 * Style of the items
 */
.droplink li a{
	padding: 5px 12px 4px 12px;	
	margin: 1px;
	display: block;
	color:#333;
	color: white;
	border-top: solid 1px #BBB;
	width: 156px;
}

/**
 * Style when an items is hovered
 */
.droplink li a:hover {
	color: #ffffff;	
	background-color: #2042b0;
}