/* CSS Document */

#menu, #menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0
}
#menu li {
    display: inline-block;
    position: relative;
    font-size: 16px;
	font-weight:500}
#menu a {
	display: block;
	width: 190px;
	height: 30px;
	line-height: 28px;
	text-align: center;
	background: #FFFFFF;
	border-top-color: #5A62A2;
	border-right-color: #5A62A2;
	border-bottom-color: #5A62A2;
	border-left-color: #5A62A2;
}
#menu ul {
   	left: -4000px;
    position: absolute
}
#menu li:hover > ul {
   	left: 0
}
#menu li li:hover > ul {
  	left: 190px;
    top: 0
}

