/* fonts */
.dropdowns {font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }

/* colors */
/* ------ */
/* togle menu button for narrow screens */
.toggleMenu {
    
}

/* general navigation background colors */
.nav {
    background-color: 	#836785;
	 
	
}

/* general navigation link font color */
.nav a {
    color:#FFF;
}

/* first level items borders */
.nav > li {
	
}

/* navigation hover colors */
.nav a:hover {
	background-color:#fff;
	color:#83678;
}

/* second level navigation colors */
.nav li li a {
    background-color: #836785;
    border-bottom: 1px solid #fff;
}

/* third level navigation colors */
.nav li li li a {
    background-color: #836785;
    border-bottom: 1px solid #fff;
}

/* ---------------- */
/*      layout      */
/* -----------------*/

/* main div */
.dropdowns {
	width:auto;
}

/* small screens menu button */
a.toggleMenu {
	padding: 0px 0;
	width:100%;
	text-align: center;
}

/* second and third level menus */
.nav ul {
	width:12em;
}

/* 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: 768px) {
	.nav ul {
		width: 100%;
	}
}
