<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
	border: 0 none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	line-height: 1;
	list-style: none outside none;
	margin: 0;
	padding: 0;
	position: relative;
}
#cssmenu {
	color: #ffffff;
	font-family: Helvetica,Arial,sans-serif;
	min-width: 300px;
}
#menu_wrapper {
	position:absolute;
	z-index:999;								/*поверх слайдера*/
	left:-600px;								/*more than #cssmenu max-width*/
	-webkit-transition: left 0.4s ease-in-out;	/*плавный выезд/заезд*/
    -moz-transition: left 0.4s ease-in-out;
    -ms-transition: left 0.4s ease-in-out;
    -o-transition: left 0.4s ease-in-out;
    transition: left 0.4s ease-in-out;
	}
#menu_wrapper.show {left:0!important;}	/*будем переключать класс по клику на "гамбургер" чтобы показать/скрыть навигацию*/

#cssmenu ul ul {
	display: none;
}
#cssmenu &gt; ul &gt; li &gt; a {
	background: rgb(54,170,231); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(54,170,231,1) 0%, rgba(31,160,228,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(54,170,231,1)), color-stop(100%,rgba(31,160,228,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(54,170,231,1) 0%,rgba(31,160,228,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(54,170,231,1) 0%,rgba(31,160,228,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(54,170,231,1) 0%,rgba(31,160,228,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(54,170,231,1) 0%,rgba(31,160,228,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36aae7', endColorstr='#1fa0e4',GradientType=0 ); /* IE6-9 */
	border-left: 1px solid #1682ba;
	border-right: 1px solid #1682ba;
	border-top: 1px solid #1682ba;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset;
	color: #ffffff;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	padding: 15px 20px;
	text-decoration: none;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
	z-index: 2;
}
#cssmenu &gt; ul &gt; li &gt; a:hover, 
#cssmenu &gt; ul &gt; li.active &gt; a, 
#cssmenu &gt; ul &gt; li.open &gt; a {
	background: rgb(31,160,228); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(31,160,228,1) 0%, rgba(25,146,209,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(31,160,228,1)), color-stop(100%,rgba(25,146,209,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(31,160,228,1) 0%,rgba(25,146,209,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(31,160,228,1) 0%,rgba(25,146,209,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(31,160,228,1) 0%,rgba(25,146,209,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(31,160,228,1) 0%,rgba(25,146,209,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1fa0e4', endColorstr='#1992d1',GradientType=0 ); /* IE6-9 */
	color: #eeeeee;
}
#cssmenu &gt; ul &gt; li.open &gt; a {
	border-bottom: 1px solid #1682ba;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 1px rgba(0, 0, 0, 0.15);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 1px rgba(0, 0, 0, 0.15);
}
#cssmenu &gt; ul &gt; li:last-child &gt; a, 
#cssmenu &gt; ul &gt; li.last &gt; a {
	border-bottom: 1px solid #1682ba;
}
.holder {
	height: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 0;
}
.holder:after, .holder:before {							/*меню самого верхнего уровня*/
	content: "";
	display: block;
	height: 6px;
	position: absolute;
	right: 20px;
	-webkit-transform: rotate(-135deg);					/*поворачиваем .holder:after border-top/border-left чтобы была "птичка" вниз*/
	-moz-transform: rotate(-135deg);
	transform: rotate(-135deg);
	width: 6px;
	z-index: 10;
}
.holder:after {
	border-left: 2px solid #ffffff;
	border-top: 2px solid #ffffff;
	top: 17px;
}

li.has-sub.open &gt; a &gt; span.holder:after, li.has-sub.open &gt; a &gt; span.holder:before {
	-webkit-transform: rotate(135deg);					/*поворачиваем .holder:after border-top/border-left чтобы была "птичка" вправо (вверх: 45deg)*/
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
}

#cssmenu &gt; ul &gt; li &gt; a:hover &gt; span:after, 
#cssmenu &gt; ul &gt; li.active &gt; a &gt; span:after, 
#cssmenu &gt; ul &gt; li.open &gt; a &gt; span:after {
	border-color: #eeeeee;
}
.holder:before {
	border-left-color: inherit;
	border-left-style: solid;
	border-left-width: 2px;
	border-top-color: inherit;
	border-top-style: solid;
	border-top-width: 2px;
	top: 18px;
}
#cssmenu ul ul li a {
	background:#49505a;
	border-bottom: 1px solid #32373e;
	border-left: 1px solid #32373e;
	border-right: 1px solid #32373e;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
	color: #eeeeee;
	cursor: pointer;
	font-size: 13px;
	padding: 10px 20px;
	text-decoration: none;
	z-index: 1;
}
#cssmenu ul ul li:hover &gt; a, 
#cssmenu ul ul li.open &gt; a, 
#cssmenu ul ul li.active &gt; a {
	background: none repeat scroll 0 0 #424852;
	color: #ffffff;
}
#cssmenu ul ul li:first-child &gt; a {
	-webkit-box-shadow: none;
	box-shadow: none;
}
#cssmenu ul ul ul li:first-child &gt; a {
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}
#cssmenu ul ul ul li a {
	padding-left: 30px;
}
#cssmenu &gt; ul &gt; li &gt; ul &gt; li:last-child &gt; a, 
#cssmenu &gt; ul &gt; li &gt; ul &gt; li.last &gt; a {
	border-bottom: 0 none;
}
#cssmenu &gt; ul &gt; li &gt; ul &gt; li.open:last-child &gt; a, 
#cssmenu &gt; ul &gt; li &gt; ul &gt; li.last.open &gt; a {
	border-bottom: 1px solid #32373e;
}
#cssmenu &gt; ul &gt; li &gt; ul &gt; li.open:last-child &gt; ul &gt; li:last-child &gt; a {
	border-bottom: 0 none;
}
#cssmenu ul ul li.has-sub &gt; a:after {
	border-left: 2px solid #eeeeee;
	border-top: 2px solid #eeeeee;
	content: "";
	display: block;
	height: 5px;
	position: absolute;
	right: 20px;
	top: 11.5px;
	-webkit-transform: rotate(-135deg);					/*поворачиваем a:after border-top/border-left чтобы была "птичка" вниз*/
	-moz-transform: rotate(-135deg);
	transform: rotate(-135deg);
	width: 5px;
	z-index: 10;
}
#cssmenu ul ul li.active &gt; a:after, 
#cssmenu ul ul li.open &gt; a:after, 
#cssmenu ul ul li &gt; a:hover:after {
	border-color: #ffffff;
}


#cssmenu ul ul li.has-sub.open &gt; a:after {				/*подменю 2/3-го уровней*/
	-webkit-transform: rotate(135deg);					/*поворачиваем a:after border-top/border-left чтобы была "птичка" вправо у открытого меню/подменю (вверх: 45deg)*/
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
	top: 14px;
	}

#cssmenu ul ul li.active &gt; a &gt; span { color:#F4F4B5; }	/*выбранное подменю 2/3-го уровней*/

#cssmenu ul ul li &gt; a &gt; span.count { float:right; color:#999; margin:0 1em; }	/*счётчик домов на улице, всегда 3-й уровень вложенности*/

/*li имеет класс active и не имеет класса has-sub - подменю последнего уровня вложенности:*/
#cssmenu li.active:not(.has-sub) &gt; a:before {	/*подменю последнего уровня(2-го или 3-го), которое без класса has-sub(не имеет подменю) */
	border-left: 2px solid #eeeeee;
	border-top: 2px solid #eeeeee;
	content: "";
	display: block;
	height: 5px;
	position: absolute;
	right: 20px;
	top: 14px;
	-webkit-transform: rotate(135deg);					/*поворачиваем border-top/border-left чтобы была "птичка" вправо*/
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
	width: 5px;
	z-index: 10;
}
</pre></body></html>