@charset "UTF-8";

.clear{clear:both;}

div #container483, #container483 ul, #container483 li{
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;}

#container483 { /* the menu container */
width: 100%;
	}

#container483 ul { /* menu ul style */
	list-style: none;
	margin: 0;
}

#container483 li { /* horizontal menu */
	/*float: left;*/
	position: relative;
    display: table-cell;
vertical-align:middle;}

#container483 a { /* the link style of menu */
	font-family: "Open Sans";
    color: #000;font-weight:700;
    display: block;
    padding: 20px;
    font-size: 14px;
    letter-spacing: 0.7px;
    transition: all 300ms ease-in-out 0s;
    word-break: normal;
}


 /* The sub menu is hidden by default and its position is places right under the parent menu*/
#container483 ul ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
text-align:left;
font-weight:600;
/*padding: 8px 25px;*/
	float: left;
	min-width: 200px;
    background: #fff;
    box-shadow: 0 1px 3.88px 0.12px rgba(0, 0, 0, 0.1);
	z-index: 99999;
}

/* The sub menu list element is given a minimum width */
#container483 ul ul li {
	min-width: 200px;
float: left;
}

/* the third level menu (sub sub menu) is placed to the left side of its parent*/
#container483 ul ul ul {
	left: 100%;
	top: 0;
}

#container483 ul ul a {
	padding: 10px;
	width: 200px;
	height: auto;
	border-right:none;
 font-size: 12px;
}

#container483 li:hover > a,
#container483 ul ul :hover > a {
	
	color: rgba(133, 206, 6, 1);
}
#container483 ul li:hover > ul {
	display: block;
}


