/* Left menu*/
ul.left-menu
{
	margin:0; padding:0;
	position: relative; /*IE bug*/
	z-index: 1;
}

ul.left-menu li {
	height: 30px;
}

ul.left-menu li a
{
	font-size:100%;
	color:#fff;
	text-decoration:none;
	padding: 6px 16px;
	height: 16px;
	width: 240px;
	display: inline-block;
	text-transform: uppercase;
	margin-bottom: 2px;
	background: #5069ab; /* Для старых браузеров */
    background: -moz-linear-gradient(top, #00a2ff, #5069ab); /* Firefox 3.6+ */
    /* Chrome 1-9, Safari 4-5 */
    background: -webkit-gradient(linear, left top, left bottom, 
                color-stop(0%,#00a2ff), color-stop(100%,#5069ab));
    /* Chrome 10+, Safari 5.1+ */
    background: -webkit-linear-gradient(top, #00a2ff, #5069ab);
    background: -o-linear-gradient(top, #00a2ff, #5069ab); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #00a2ff, #5069ab); /* IE10 */
    background: linear-gradient(top, #00a2ff, #5069ab); /* CSS3 */
	white-space: nowrap;
	overflow: hidden;
	font-weight: bold;
}

ul.left-menu li:first-child a { 
	border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
}

ul.left-menu li:last-child a {
	border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
}

ul.left-menu li a:visited,
ul.left-menu li a.selected:link, 
ul.left-menu li a.selected:visited, 
ul.left-menu li a.selected:active, 
ul.left-menu li a.selected:hover
{
	color:#fff;
}

ul.left-menu li a:hover
{
	background: #009fff;
}

