nav.popout {
	-webkit-font-smoothing: antialiased;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    height: auto !important;
    height: 100%;
    min-height: 100%;
    text-rendering: optimizeLegibility;
	box-shadow: 0 0 10px rgba(0,0,0,.15);
	text-align: center;
	-webkit-border-radius: 6px;
	-moz-border-radius: 9px;
	border-radius: 0 0 6px 6px;
	
	width: 180px;
	background: #ffffff;
	padding-bottom: 3px;
	padding-right: 4px;
}

nav.popout > ul {
	list-style-type: none;
	margin-left: 3px;
}

nav.popout > ul > li, submenu {
	display: block;
	position: relative;
	z-index: 1;
}
nav.popout > ul > li > a, submenu {
	background-color: rgb(157, 34, 60);
	background-image: -webkit-linear-gradient(135deg, #2b3d80, #3d2b80);
	background-image: -moz-linear-gradient(135deg, #2b3d80, #3d2b80);
	background-image: -o-linear-gradient(135deg, #2b3d80, #3d2b80);
	background-image: linear-gradient(135deg, #2b3d80, #3d2b80);
	border-bottom: 1px solid rgba(255,255,255,.1);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.1), 0 1px 1px rgba(0,0,0,.1);
	color: rgb(255,255,255);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .2rem;
	text-shadow: 0 1px 1px rgba(0,0,0,.75);
	text-decoration: none;
	line-height: 41px;
	
	display: block;
	height: 41px;
	transition: all .1s ease;

}


nav.popout > ul > li > a:hover, submenu:hover {
	background-color: rgb(114, 51, 98);
	background-image: -webkit-linear-gradient(150deg, #a12828, #7a3167);
	background-image: -moz-linear-gradient(150deg, #a12828, #7a3167));
	background-image: -o-linear-gradient(150deg, #a12828, #7a3167);
	background-image: linear-gradient(150deg, #a12828, #7a3167); 
	cursor: pointer;
}


nav.popout > ul > li > ul {
	transition: right .5s ease;
	list-style-type: none;
	color: #000000;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
nav.popout > ul > li > ul > li > a {
	background-color: #9D223C;
	background-image: -webkit-linear-gradient(135deg, #7a3167, #a12828);
	background-image: -moz-linear-gradient(135deg, #7a3167, #a12828);
	background-image: -o-linear-gradient(135deg, #7a3167, #a12828);
	background-image: linear-gradient(135deg, #7a3167, #a12828);
	border-bottom: 1px solid rgba(255,255,255,.1);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.1), 0 1px 1px rgba(0,0,0,.1);
	color: #ffffff;
	display: block;
	font-size: 14px;
	font-weight: 300;
	height: 30px;
	line-height: 30px;
	letter-spacing: .2rem;
	text-shadow: 0 1px 1px rgba(0,0,0,.45);
	transition: all .1s ease;
	text-decoration: none;
	width: 177px;
}

nav.popout > ul > li > ul > li > a:hover {
	background-color: rgb(114, 51, 98);
	background-image: -webkit-linear-gradient(150deg, #993176, #bb2e20);
	background-image: -moz-linear-gradient(150deg, #993176, #bb2e20);
	background-image: -o-linear-gradient(150deg, #993176, #bb2e20);
	background-image: linear-gradient(150deg, #993176, #bb2e20);
	cursor: pointer;
}

nav.popout > ul > li:hover > ul {
   right: -177px;
   opacity: 1;
}