
.amazonmenu ul{

	font-family: "Noto Sans KR";
	font-size:16px;
	font-weight:600;
	list-style: none;
	color:#fff;
	margin: 0;
	padding: 0;
	margin-left:30px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

}

.amazonmenu ul li{
	position: static; /* menu li items should have position set to static */
	min-width:240px;
}

.amazonmenu > ul{


	width: 200px; /* width of main menu */
	height: 200px; /* height of main menu */
	position: relative;
}

.amazonmenu > ul li a{

	display: block;
	overflow: auto;
	padding: 8px 20px;
	position: relative;
	text-decoration: none;
	text-indent: 10px;

	font-family:'Noto Sans KR';font-size:16px;
	line-height:50px;


	color:#fff;
}

.amazonmenu > ul li.hassub > a::after{ /* Arrow to indicate this item has sub menu (LI elements with sub menus have a ".hassub" class). */
	border: 5px solid transparent;
	border-left-color: gray; /* Default color of arrow */
	content: '';
	height: 0;
	position: absolute;
	right: 5px;
	top: 40%;
	width: 0;

}

.amazonmenu > ul li.hassub.selected > a::after{ /* Style of arrow when corresponding sub menu is open (LI element has a "selected" class during this state */
	border-left-color: red;
}

.amazonmenu ul li a:hover, .amazonmenu ul li.hassub.selected > a{ /* style of hover and selected menu item links */
	background: #E4A61D;
	color: #fff;
}

.amazonmenu ul li > div, .amazonmenu ul li > ul{ /* Sub menus (Could be a DIV or UL wrapper) style */

	display: none;
	font-weight: normal;
	width: 320px;
	
	
	height: auto; /* height of sub menu */
	left: 100%;
	padding: 10px;
	position: absolute;
	top: -20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 1000;
}

