*{
	margin: 0;
	padding: 0;
}

body {
	margin: 0px;
}
/*Горизонтальное выпадающее меню*/
ul.menux {
	margin: 0;
	padding: 0;
	display: inline-block;
	background-color: #2b2b2b;
    background-repeat: no-repeat;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#A44061), to(#5F0001));
    background-image: -webkit-linear-gradient(#A44061, #5F0001);
    background-image: -moz-linear-gradient(top, #A44061, #5F0001);
    background-image: -ms-linear-gradient(#A44061, #5F0001);
    background-image: -o-linear-gradient(#A44061, #5F0001);
    background-image: linear-gradient(#A44061, #5F0001);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#A44061', endColorstr='#5F0001', GradientType=0); 
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	width: 1005px;
}

ul.menux li {
	float: left;
	list-style: none;
	border-right: 1px solid #A44061;
	position: relative;
}

ul.menux li a {
	display: block;
font: 13px/25px Arial, 'Times New Roman', Times, serif;
 font-weight: bold;
 color: #EFB9C8;
	padding: 8px 20px 10px;
	text-decoration: none;
	border-right: 1px solid #5F0001;
}

ul.menux li a:hover {
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#8D1F42), to(#5F0001));
    background-image: -webkit-linear-gradient(#8D1F42, #5F0001);
    background-image: -moz-linear-gradient(top, #8D1F42, #5F0001);
    background-image: -ms-linear-gradient(#8D1F42, #5F0001);
    background-image: -o-linear-gradient(#8D1F42, #5F0001);
    background-image: linear-gradient(#8D1F42, #5F0001);
}

ul.menux li:first-child a:hover {
	border-radius: 4px 0 0 4px;
	-webkit-border-radius: 4px 0 0 4px;
	-moz-border-radius: 4px 0 0 4px;
}
/*Выпадающее меню*/
ul.menux li ul {
	display: none;
}

ul.menux li:hover ul {
	display: block;
	position: absolute;
	top: 34px;
	border-radius: 0 0 4px 4px;
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#8D1F42), to(#5F0001));
    background-image: -webkit-linear-gradient(#8D1F42, #5F0001);
    background-image: -moz-linear-gradient(top, #8D1F42, #5F0001);
    background-image: -ms-linear-gradient(#8D1F42, #5F0001);
    background-image: -o-linear-gradient(#8D1F42, #5F0001);
    background-image: linear-gradient(#8D1F42, #5F0001);
	z-index: 1000;
        margin-top: 9px;
}

ul.menux li:hover ul li {
	float: none;
	width: 150px;
	border-right: none;
}

ul.menux li:hover ul li a {
	border-top: 1px solid #A44061;
	border-right: none;
	padding: 6px 20px 8px;
}

ul.menux li:hover ul li a:hover {
	background-color: transparent;
	color: #FFCDCA;
}

ul.menux li:hover ul li:first-child a:hover {
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}