/* main menu */

/*  не трогаем */
.ddsmoothmenu
{
	float: left;
	width: 100%; /* ширина блока */
	padding: 0 0 0 0; /* отступы */
	margin: 0;
	background: black url("../images/star-46.gif");
}

.ddsmoothmenu ul
{
	z-index: 100;
	margin: 0; 
	padding: 0;
	list-style-type: none;
}

.ddsmoothmenu ul li
{
	position: relative;
	float: left;
	display: inline;
	margin: 0 4px 0 0; /* отступ пунктов */
}

.ddsmoothmenu ul li a
{
	display: block;
}

* html .ddsmoothmenu ul li a
{ 
	display: inline-block;
}

.ddsmoothmenu ul li ul
{
	position: absolute; 
	left: 0;
	display: none;
	visibility: hidden;
}

.rightarrowclass{
	position: absolute; 
	top: 6px; 
	right: 5px;
}

.ddshadow
{
	position: absolute; 
	left: 0; 
	top: 0;
	width: 0; 
	height: 0;
	background: silver; /* цвет тени */
}

/* прозрачность тени */
.toplevelshadow
{
	opacity: 0.5;
}




/* ------------ свои настройки -------------- */


/* верхнее меню */
.ddsmoothmenu ul li a
{
	color: white;
	line-height: 30px;
	height: 30px;
	padding: 0 5px;
	margin: 5px 0 5px 0; /* отступ между верхней строчкой и подменю*/
	text-decoration: none;
}

/* выделенный пункт */
.ddsmoothmenu ul li.selected > a
{
	color: white;
	background: #606060;
}

/* булечка сбоку верхнего меню если нужно */
.ddsmoothmenu li.group a span 
{
	background: url("../images/menu-down.gif") no-repeat right; 
	padding: 0 15px 0 0;
}

/* убрать булечку для подменю */
.ddsmoothmenu li.group li span 
{
	background: none;
}


/* верхнее меню при наведении */
.ddsmoothmenu ul li a:hover
{
	color: white;
	background: #9F9F9F;
	bor1der: 1px solid #5F5F5F;
}

/* подменю */
.ddsmoothmenu ul li ul
{
	margin: 0px 0 0 0;
}

/* для подменю переопределяем стили */
.ddsmoothmenu ul li ul li a
{
	min-width: 200px; 
	margin: 0;
	padding: 5px 0 5px 20px;
	border: none;
	border-bottom: 1px solid #e6e6e6;
	border-top: 1px solid #e6e6e6;
	background: #cfcfcf; 
	color: black;
	font-weight: normal;
	line-height: 25px;
	height: 25px;
}

/* подпункт при наведении */
.ddsmoothmenu ul li ul li a:hover
{
	color: white;
	background: #9F9F9F url("../images/menu-bullet.png") no-repeat 9px center;
	border-left: 1px solid #cfcfcf;
	border-right: 1px solid #cfcfcf;
	min-width: 198px;
}

/* выделенный подпункт */
.ddsmoothmenu ul li ul li.selected a
{
	border-left: 1px solid #cfcfcf;
	border-right: 1px solid #cfcfcf;
	min-width: 198px;
}

/* выделенный подпункт при наведении */
.ddsmoothmenu ul li ul li.selected a:hover
{
}

/* углы */

/* верхние пункты*/
.ddsmoothmenu>ul>li>a 
{
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

/* первый блок выпадающего */
.ddsmoothmenu ul li.group ul li:first-child a
{
	border-radius-topleft: 5px;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	border-radius-topright: 5px; 
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
}

/* последний блок выпадающего */
.ddsmoothmenu ul li.group ul li:last-child a
{
	border-radius-bottomleft: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;

	border-radius-bottomright: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
}


