/* fonts */
.dropdowns {}

/* colors */
/* ------ */
/* togle menu button for narrow screens */
.toggleMenu {
    background: #d0cabf;
    color: #fff;
	height: 50px;
}

/* general navigation background colors */
.nav {
     background: #d0cabf;
}

/* general navigation link font color */
.nav a {
    color:#fff;
	font-weight: 600;
}

/* first level items borders */
.nav > li {
	padding: 20px 20px;
	
}

.nav > li:hover {
	background-color: #b9b1a8;
	
}

/* navigation hover colors */
.nav a:hover {
	background-color: #b9b1a8;
}

/* second level navigation colors */
.nav li li a {
    background: #d0cabf;
    border-bottom: 1px solid #c0c0c0;
}

/* third level navigation colors */
.nav li li li a {
    background:#cccccc;
    border-bottom: 1px solid #c0c0c0;;
}

/* ---------------- */
/*      layout      */
/* -----------------*/

/* main div */
.dropdowns {
	width:auto;
}

/* small screens menu button */
a.toggleMenu {
	padding: 10px 0;
	width:100%;
	text-align: center;
}

/* second and third level menus */
.nav ul {
	width:9em;
}

/* general paddings and other stuff */
.nav a {
	padding: 5px 10px;
}

/* parents that have submenus */
.nav > li > .parent {
	padding-right: 25px;
	background-position: 90% 50%;
}

/* small screen adjustments*/
@media screen and (max-width: 1020px) {
	.nav ul {
		width: 100%;
	}
}
