@CHARSET "ISO-8859-1";

.dropdown {
	position: relative;
	display: inline-block;
	text-align: right;
	
}

.ddRight {
	text-align: right;
}

.ddLeft {
	text-align: left;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	border: solid 1px;
	text-align: left;
	z-index: 1;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown .dropdown-content a {
	text-decoration: none;
}

.dropdown .dropdown-content a:hover {
	color: #339;
	background:#d0dafd;
}

