/*  UTF-8 without BOM     УТФ-8  ßßß */
/* z-index 2,3 -> 0,1 */

.menu_cotainer {
	border-color: #000;
	height: 40px;
	background: #2B2B2B;
	width: 100%

	-moz-border-radius:    5px;
	-webkit-border-radius: 5px;
	border-radius:         5px;  /*FF*/
}

/* Menu Styles */

.lvl_3_menu {
    position: absolute;
    top: 0;
    right: -150px;
    width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.lvl_3_menu > li {
    height: 40px;
    background: #595959; /*#999999*/
}
.lvl_3_menu > li:hover {
	background: gray; /*#CCCCCC;*/
}

.lvl_2_menu {
    position: absolute;
    top: 40px;
    left: 0;
    width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
	z-index: 2;
}

.lvl_2_menu > li {
    position: relative;
    height: 40px;
    background: #595959; /*#999999*/
}
.lvl_2_menu > li:hover {
	background: gray; /*#CCCCCC;*/
}

.lvl_1_menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lvl_1_menu > li {
    position: relative;
    float: left;
    height: 40px;
    width: 150px;
    background: #2B2B2B; /*#999999*/


	-moz-border-radius:    5px;
	-webkit-border-radius: 5px;
	border-radius:         5px;  /*FF*/
}
.lvl_1_menu > li:hover {
	background: gray; /*#CCCCCC;*/
}

.lvl_1_menu li:hover > ul {
    /* On hover, display the next level's menu */
    display: inline;
}


/* Menu Link Styles */

.lvl_1_menu a {
	/* Apply to all links inside the multi-level menu */

    font: 13px Arial, Helvetica, sans-serif;
    color: #DCDCDC;
    text-decoration: none;
    padding: 0 0 0 10px;

    /* Make the link cover the entire list item-container */
    display: block;
    line-height: 40px;



}
.lvl_1_menu a:hover { color: #000000; }