/* dropdown menus
------------------------------ */
.ddnav {
	/* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	}

.ddnav li {
	/* all list items */
	float: left;
	position: relative;
	width: 145px;
	border:1px solid #D5E6EE;
	border-width:1px 1px 1px 1px;
	padding: 0.1em;
	color: #237898;
	background: #f1f7fb;
	text-align: center;
	margin: 0;
	}

.ddnav li ul {
	/* second-level lists */
	position: absolute;
	right: -1px;
	top: 2em;
	display: none;
	z-index:100;
	}

.ddnav li ul li {
	/* second-level list items */
	text-decoration: none;
	border-width:0 1px 1px 1px;
	}

.ddnav li:hover ul, .ddnav li.over ul {
	/* lists nested under hovered list items */
	display: block;
	color:#c00;
	background:#ddd;
	}

.dd-firstelem {
	border-left: 1px #D5E6EE solid;
	}


