/*Горизонтальное выпадающее меню*/
ul.menu {
	margin: 0;
	padding: 0;
	display: inline-block;
	width: 600px;
	padding-top:30px;
}

ul.menu li {
	float: left;
	list-style: none;
	position: relative;
}

ul.menu li a {
	color: black;
	display: block;
	font-family: Arial;
	font-weight:bold;
	font-size: 13px;
	padding: 8px 20px 10px;
	text-decoration: none;
	
}

ul.menu li a:hover {
	background-color: #f2f2f2;
}

ul.menu 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.menu li ul {
	display: none;
}

ul.menu 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-color: #f9f9f9;
	z-index: 1000;
}

ul.menu li:hover ul li {
	float: none;
	width: 150px;
	border-right: none;
}

ul.menu li:hover ul li a {
	border-top: 1px solid #ededed;
	border-right: none;
	padding: 10px 20px 10px 5px;
}

ul.menu li:hover ul li a:hover {
	background-color: transparent;
	color: #ff3300;
}

ul.menu li:hover ul li:first-child a:hover {
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}	


.track-form-w input[type="text"]{
	background:#FFF;
	border:1px solid #333;
	height:24px;
	width:220px;
	line-height:24px;
	margin:10px 0;
	padding:2px;
	color:#333;
	font-size:16px;
}
.track-form-w input[type="submit"]{
	padding:4px;
	cursor:pointer;
}

.user-tracker-history{
	width:100%;
	table-layout:fixed;
}
