.dk_container {
	width:219px;
		background-color:#FFFFFF;
		font-size:15px;				/*changed to ems*/
	white-space: nowrap;
	margin-left:5px;				/*added this so that everything stays neatly on one line*/
}

.dk_container:focus {
	outline: 0;
}

.dk_container a {
	cursor: pointer;
	text-decoration: none;
}

/* Opens the dropdown and holds the menu label */
.dk_toggle {	
width:197px;						/*changed to ems*/
	font-size:15px;
	padding: 0 4em 0 1em;				/*changed to ems - and removed top/bottom padding*/
	line-height: 2.7em;					/*added this  instead of the padding top/bottom. we can now calculate it exactly */
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	background:#FFFFFF url(../../images/mundi/location_icon.png) 5px 10px no-repeat;				/*added this so that everything stays neatly on one line*/
	padding:0 0 0 25px;
}

.dk_toggle:after {
	font-family: 'FontAwesome';
	font-size: 1em;						/*changed to ems*/
	line-height: 2.5em;					/*exactly the same as the parent - so everything aligns vertically*/
	content: "\f0dc";	/*changed to ems*/
	float: right;
	margin-right: -10px;					/*changed to ems*/
	/*margin-top: 4px;					won't need this, we've specified the lineheight for vertical aligning*/
}

/* Applied whenever the dropdown is open */
.dk_open {
z-index: 10;
}

.dk_open .dk_toggle {
	background-color:#FFFFFF;
	z-index: 30;
	width:197px;
}

.dk_open .dk_toggle:after {
	/*I've removed a load of styles here, as they're all inherited from .dk_toggle:after */

	margin-right: -10px;	
	/*changed to ems*/
}

/* The outer container of the options */
.dk_options {

}

.dk_options a {
	padding: 0 1em;
	line-height: 2.5em;					/*added this instead of the padding top/bottom. we can now calculate it exactly */
	
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	padding:0 0 0 25px;
}

.dk_options li {
	background-color: #fff;
	color: #666;
}

.dk_options li:first-child {
	display: none;
}

.dk_options #divider {
	width: 90%;							/*flexible value - leave as it is!*/
	height: .1em;						/*rounded to a neat ems value*/		
	margin: auto;
	background-color: #fff;
}

.dk_options li:last-child #divider {
	display: none;
}

.dk_options a:hover,.dk_option_current a {
	color: #000;
	text-decoration: none;		/*change to ems*/
	background-color:#EBF6F5;
}

/* Inner container for options, this is what makes the scrollbar possible. */
.dk_options_inner {
	
	color: #a2a8ad;

}

/* Set a max-height on the options inner */
.dk_options_inner,.dk_touch .dk_options {
	/*max-height: 250px;				not sure why?*/
}

/******  End Theme ******/
/***** Critical to the continued enjoyment of working dropdowns ******/
.dk_container {
	display: none;
	float: left;
	position: relative;
}

.dk_container a {
	/*width: auto!important;		I don't like using !important, but this needs to override a fixed pixel width which is added inline by the dropkick script - or comment out line 116 in the js*/
	outline: 0;
}

.dk_toggle {
	display: -moz-inline-stack;
	display: inline-block;
	*display: inline;
	position: relative;
	zoom: 1;
}

.dk_open {
	position: relative;
}

.dk_open .dk_options {
	display: block;
}

.dk_open .dk_label {
	color: inherit;
}

.dk_options {
	display: none;
	margin-top: -.05em;			/*change to ems*/
	position: absolute;
	right: 0;
	width: 100%;
}

.dk_options a,.dk_options a:link,.dk_options a:visited {
	display: block;
}

.dk_options_inner {
	overflow: auto;
	position: relative;
}