Здравствуйте уважаемые форумчане, я только обучаюсь, так что сильно не ругайте. Делаю небольшой проект, точнее пытаюсь сделать. Возникла такая проблема, что при наведении на многоуровневую строку, которая содержит в себе подменю, начинает "скакать" фон. Код CSS Код (Text): @font-face { font-family: "radar"; src: url('../font/Radar-Normal.eot'); src: url('../font/Radar-Normal.eot?#iefix') format('embedded-opentype'), url('../font/Radar-Normal.woff') format('woff'), url('../font/Radar-Normal.ttf') format('truetype'), url('../font/Radar-Normal.svg#Radar-Normal') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: "naraw"; src: url('../font/Arial-Narrow-Regular.eot'); src: url('../font/Arial-Narrow-Regular.eot?#iefix') format('embedded-opentype'), url('../font/Arial-Narrow-Regular.woff') format('woff'), url('../font/Arial-Narrow-Regular.ttf') format('truetype'), url('../font/Arial-Narrow-Regular.svg#Arial-Narrow-Regular') format('svg'); font-weight: normal; font-style: normal; } a{ text-decoration:none; color: black; } p{ margin: 5px; } html,body{ padding: 0px; margin: 0px; font-family: "radar"; font-size: 18pt; font-weight:normal; font-style: normal; } #header img{ max-width: 100%; margin-bottom: -8px; } #context{ background-image: url("../images/context.png"); background-repeat: repeat; overflow: hidden; max-width: 100%; } #hide-context{ margin-top:90px ; margin-bottom: 20px; } #footer img{ max-width: 100%; } #block-context{ margin-top: 50px; } .quotes{ background-color: #e5ddc6; border-radius: 6px; margin: 8px; padding: 5px; } .link-text{ font-size: 20pt; color: #7c6a54; } #navigation{ margin: 0px; padding-left: 170px; } #navigation li{ float: left; margin-right: 60px; display: block; position: relative; } #navigation li a{ display: block; text-decoration:none; } #navigation ul{ position: absolute; z-index: 10; left:-9999px; list-style:none; } #navigation ul li{ margin-top: 5px; margin-left: -98px; float: none; background-repeat: repeat-x; } #navigation ul a{ width: 180px; -moz-box-shadow: 0 0 10px rgba(0,0,0,0.5); /* Для Firefox */ -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5); /* Для Safari и Chrome */ box-shadow: 0 0 10px rgba(0,0,0,0.5); /* Параметры тени */ text-align: center; color: black; padding: 4px; border-radius: 3px; font-size: 15pt; } #navigation li:hover ul{ padding-top:4px; left:0; opacity: 5; } #navigation li:hover a{ text-decoration:underline; } #navigation li:hover ul a{ text-decoration:none; } .link-menu{ margin: 9px; text-decoration:none; } Где промах?