.amazonmenu ul{
	font: normal 12px Verdana;
	list-style: none;
	margin: 0;
	padding: 0;
	-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 */
}

.amazonmenu > ul{
	background: white;
	border-right:1px solid #DADADA;
	
	width: 200px; /* width of main menu */
	/*height: 400px; /* height of main menu */
	position: relative;
        min-height:250px;
}

.amazonmenu > ul li a {
    color: black;
    display: block;
    overflow: auto;
    padding: 0px 10px;
    position: relative;
    text-decoration: none;
    
    font-size: 12px;
    line-height: 30px;
}

.amazonmenu > ul li a span{ display: block; text-align: center; }

.amazonmenu > ul li.hassub > a::after{ /* Arrow to indicate this item has sub menu (LI elements with sub menus have a ".hassub" class). */
	
	content: '';
	height: 0;
	position: absolute;
	right: 5px;
	top: auto;
	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: #990000;
	color: #fff;
}

.amazonmenu ul li > div, .amazonmenu ul li > ul{ /* Sub menus (Could be a DIV or UL wrapper) style */
	background: #fff;
	
	display: none;
	font-weight: normal;
	width: 1056px!important;
	/*height: 400px; /* height of sub menu */
	left: 100%;
	padding: 10px;
	position: absolute;
	top: 0;
	
	z-index: 1000; height:100%; border-left:1px solid #D3D3D3;
}
.issub{ display:block; }
.issub a{ padding: 0px 5px!important;
    display: inline-block!important;
    
    line-height: 20px!important; font-size: 11px!important;  }
.issub a:hover{ background: none!important; color: #424242!important; }
.nopad{ padding: 0px; }
/* ###### CSS Media queries ###### */

@media screen and (max-width: 480px){ /* When screen size is 480px */
	.amazonmenu ul li > div, .amazonmenu ul li > ul{
		left: 30px; /* Stack the sub menus so they take up less space */
	}

	.amazonmenu > ul li.hassub.selected::after{ /* Add "veil" to parent menus */
		background: #eee;
		content: '';
		height: 100%;
		left: 0;
		opacity: .8;
		pointer-events: none;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: 1;
	}
}