@charset "utf-8";
/* CSS Document */
a {text-decoration: none;}
/*.container {
    width: 90%;
    max-width: 940px;
    margin: 10px auto;
}*/
.toggleMenu {
    display:  none;
    background:#759FFF;
    padding: 10px 15px;
    color: #fff;
}
.nav {
	width: 100%;
    list-style: none;
     *zoom: 1;
     background:#759FFF;
	border-radius: 8px;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 9em;
	
}
.nav a {
    padding: 12px 20px;
    color:#fff;
	/*text-transform: uppercase;*/
}
.nav li {
    position: relative;
}
.nav > li {
    float: left;
    /*border-left: 3px solid #759FFF;*/
}
/*
.nav > li > .parent { 
    background-image: url("images/downArrow.png");
    background-repeat: no-repeat;
    background-position: right;
}*/
.nav > li > a {
    display: block;
	/*border-left: 3px solid #759fff;*/
}
/*Действие при наведении мышки на ссылки 1 уровня*/
.nav li:hover > a {text-decoration:underline;}
/*Действие при наведении мышки на ссылки 2,3 уровня*/
.nav li li:hover > a {
	text-decoration:underline;
	border-left:3px solid #E59B9C;/**/
	background-color: #0186ba;
	background-image: -moz-linear-gradient(#04acec,  #0186ba);	
	background-image: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba));
	background-image: -webkit-linear-gradient(#04acec, #0186ba);
	background-image: -o-linear-gradient(#04acec, #0186ba);
	background-image: -ms-linear-gradient(#04acec, #0186ba);
	background-image: linear-gradient(#04acec, #0186ba);
}
.nav li  ul {
    position: absolute;
    left: -9999px;
	width: auto;
}
.nav li  ul a {
	padding: 10px;
	white-space: nowrap;
	/*width: auto;*/
} 
.nav > li.hover > ul {
    left: 0;
}
.nav li li.hover ul {
    left: 100%;
    top: 0;
}
.nav li li a {
    display: block;
    background: #759fff;
    position: relative;
    z-index:100;
    border-left: 3px solid #ffffff;
}
.nav li li li a {
    background: #759fff;
    z-index:200;
    /*border-top: 1px solid #1d7a62;*/
}
@media screen and (max-width: 841px) {
	.nav a {
		font-size: 14px;
		padding: 12px 10px;
	}
}
@media screen and (max-width: 655px) {
    .active {
        display: block;
    }
    .nav > li {
        float: none;
    }
	/*
	.nav > li > .parent {
        background-position: 95% 50%;
    }
    .nav li li .parent {
        background-image: url("images/downArrow.png");
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }*/
	.nav {
		width: 205px;/**/
		border-radius: 0px;/**/
	}
    .nav ul {
        display: block;
        width: 100%;
	}
	.nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }

}