

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

	
/* JS-created definition list */

.dropdown {
	margin:0;
}
.dropdown dd { position: relative; }

.dropdown a {
	text-decoration: none;
	outline: 0;
	font: 12px Arial, Helvetica, sans-serif;
	display: block;
	width: 66px;
	overflow: hidden;
	}

.dropdown dt a {
	border: 1px solid #D9D9D9;
	padding: 3px 0px 4px 10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 3px;
	color: #929292;
    background: url('../images/select-arrow.png');
	background-position: right center;
	background-repeat: no-repeat;
	}

	.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;
		color: #333;
		}

.dropdown dd ul {
	background: #A62427;
	color: #fff;
	display: none;
	position: absolute;
	z-index: 999;
	top: 0;
    left: -39px;;
	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;

	}

	.dropdown dd ul li a {
		padding: 3px 0px 5px 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('../images/flags.png?v=2');
		background-repeat: no-repeat;
		cursor: pointer;
		}

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

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

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

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