body, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, img, form, fieldset, input, textarea, blockquote {
	margin: 0; padding: 0; border: 0;
}

body {
	background: #DAD5D4; /* Background abu abu */
	font-family: Helvetica, sans-serif; font-size: 14px; line-height: 5px;
}

nav {
    position: auto;
    margin: 11px; 
	text-align: center;
    width:1200px;
    margin:auto;
	margin-top:13px;
	margin-bottom:10px;
   
}

nav ul ul {
	display: none;
}

	nav ul li:hover > ul {
		display: block;
	}

nav ul {
	background: #36A403; 
    border-radius: 1px;  
	list-style: none;
	position: relative;
	display: inline-table;
}
	nav ul:after {
		content: ""; clear: both; display: block;
	}

	nav ul li {
		float: left;
	}
		nav ul li:hover {
			background: #666;
		}
			nav ul li:hover a {
				color: #fff;
			}
		
		nav ul li a {
			display: block; 
            padding: 11px; /* tinggi Bar Sub Menu */
            width: 124px; /* lebar Bar Sub Menu */
			color: #fff; text-decoration: none;
		}

			
		
	nav ul ul {
		background: #36A403; border-radius: 0px; padding: 0;
		position: absolute; top: 100%;
	}
		nav ul ul li {
			float: none; 
			border-top: 1px solid #B5BBBD;
			border-bottom: 1px solid #36A403; position: relative;
		}
			nav ul ul li a {
                text-align:left ; /* alignment text sub menu */
                width : 124px ; /* lebar sub menu background */
                padding: 11px; /*tinggi dan lebar sub menu */
                color: #fff;
		}	
				nav ul ul li a:hover {
					background: #666;
				}
		
	nav ul ul ul {
		position: absolute; left: 100%; top:0;
	}
		
