.country-select{
	float:right;
	position: relative;
	margin-right:10px;
	}

/* rought form styles for when JS is disabled */

.country-select form {
	padding: 0;
	}

.country-select select,
.country-select input {
	display: inline;
	padding: 0;
	margin: 0;
	}
	
	
/* JS-created definition list */

.dropdown dd { position: relative; }

.dropdown a {
	text-decoration: none;
	outline: 0;
	display: block;
	overflow: hidden;
	}

.dropdown dt a {
	background: #4bc531;
	padding: 3px 10px 4px 10px;
	-webkit-border-radius: 0px 0px 5px 5px;
	-moz-border-radius: 0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px;
	color: #fff;
	-moz-box-shadow: 0px 1px 1px 1px #333;
    box-shadow: 0px 1px 1px 1px #333;	
	-webkit-box-shadow: 0px 1px 1px 1px #333;
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#4bc531) to(#3f982e)); /*old webkit*/
    background: -webkit-linear-gradient(#4bc531, #3f982e); /*new webkit*/
    background: -moz-linear-gradient(#4bc531, #3f982e); /*gecko*/
    background: -ms-linear-gradient(#4bc531, #3f982e); /*IE10*/
    background: -o-linear-gradient(#4bc531, #3f982e); /*opera 11.10+*/
    background: linear-gradient(#4bc531, #3f982e); /*future CSS3 browsers*/
    -pie-background: linear-gradient(#4bc531, #3f982e); /*PIE*/	
    height:18px;
    text-shadow:0px 1px #333;	
	}

	.dropdown dt a.active {
		-webkit-border-bottom-left-radius: 0;
		-webkit-border-bottom-right-radius: 0;
		-moz-border-radius-bottomleft: 0;
		-moz-border-radius-bottomright: 0;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		border-bottom: 1px dotted #676768;
		-moz-box-shadow: 0 3px 7px rgba(0,0,0,.5);
		-webkit-box-shadow: 0 3px 7px rgba(0,0,0,.5);
		box-shadow: 0 3px 7px rgba(0,0,0,.5);
		color: #fff;
		}

.dropdown dd ul {
	background: #498E3B;
	display: none;
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	padding: 2px 0 5px 0;
	list-style: none;
	border-top: none;
	margin: 0;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	-moz-box-shadow: 0 3px 7px rgba(0,0,0,.5);
	-webkit-box-shadow: 0 3px 7px rgba(0,0,0,.5);
	box-shadow: 0 3px 7px rgba(0,0,0,.5);
	}

	.dropdown dd ul li a {
		padding: 2px 10px;
		}

	.dropdown dd ul li a span.flag,
	.dropdown dt a span.flag {
		float: left;
		width: 0x;
		height: 11px;
		margin: 2px 10px 0 0;
		cursor: pointer;
		}

		.us a span.flag { background-position: 0 0 }
		.uk a span.flag { background-position: -16px 0 }
		.fr a span.flag { background-position: -32px 0 }
		.de a span.flag { background-position: -48px 0 }
		.nl a span.flag { background-position: -64px 0 }

	.dropdown dd ul li a em,
	.dropdown dt a em {
		font-style: normal;
		text-align: left;
		float: left;
		width: 70px;
		cursor: pointer;
		}

	.dropdown dd ul li a em {
		color: #FFFFFF;
		}
		.dropdown dd ul li a:hover { background-color: rgba(255,255,255,.1); }
		.dropdown dd ul li a:hover em { color: #fff; }

.dropdown dd ul, .dropdown dt { width: 130px; }
.dropdown dd ul li { padding: 5px 0; }
.arrow-down { width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 5px solid #eee; float: left; margin-top: 5px; }