
#country-select {
    position: absolute;
    right: -8px;
    top: 10px;
    width: 39px;
	}

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

#country-select form {
	width: 180px;
	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;
	width: -14px;
	overflow: hidden;
	}

.dropdown dt a {
background: none;
    border: 0 none;
    border-radius: 5px;
    color: #fff;
    padding: 10px;
	}

	.dropdown dt a.active {
		background: #008082;
		color: #fff;
		}

.dropdown dd ul {
	background: #008082;
    border-top: medium none;
    color: #fff;
    display: none;
    left: -10px;
    list-style: outside none none;
    margin: 0;
    padding: 10px;
    position: absolute;
    top: 10px;
    width: 61px;
    z-index: 999;
	-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;

	}

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

	.dropdown dd ul li a span,
	.dropdown dt a span {
		float: left;
		width: 16px;
		height: 11px;
		margin: 2px 6px 0 0;
		background-image: url(flags.png);
		background-repeat: no-repeat;
		cursor: pointer;
		}

		.pt a span { background-position: 0 0 }
		.uk a span { background-position: -16px 0 }
		.fr a span { background-position: -32px 0 }
		.es a span { background-position: -48px 0 }

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

	.dropdown dd ul li a em {
		color: #dbc3b5;
		}

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