/* navigation */
nav
{
	position: fixed;
	left: -210px;
	width: 220px;
	top: 0;
	bottom: 0;
	background-clip: content-box;
	background-color: #00CC00;
	border-right: 8px solid #00CC00;
	box-shadow: 10px 0 20px rgba(0,0,0,0.5);
	z-index: 1;
	cursor: pointer;
	padding-top: 5px;
}

nav:after
{
	position: absolute;
	content: ' ';
	width: 0;
	height: 0;
	right: -33px;
	top: 50%;
	border-width: 15px 10px;
	border-style: solid;
	border-color: transparent transparent transparent #00AA00;
}

nav ul
{
  width: 200px;
  list-style-type: none;
  margin: 0;
  padding: 1em;
}

nav a:link, nav a:visited
{
	display: block;
	width: 100%;
	font-weight: bold;
	line-height: 2.5em;
	text-indent: 14px;
	text-decoration: none;
	color: #000000;
	border-radius: 3px;
	outline: 0 none;
}

nav a:hover, nav a:focus
{
	color: #000000;
	background-color: #E7E7E7;
	text-shadow: 1px 1px #707070;
	box-shadow: inset 0 2px 2px rgba(0,0,0,0.2);
}

/* hovering */
nav, nav *
{
	-webkit-transition: all 600ms ease;
	-moz-transition: all 600ms ease;
	-ms-transition: all 600ms ease;
	-o-transition: all 600ms ease;
	transition: all 600ms ease;
}

nav:hover
{
	left: 0;
}

#NavMenuSEL        { padding-top: 5px; font-size: 1.3em; color: #000000; text-shadow: 1px 1px #707070; }
#NavSubMenu        { padding-top: 5px; padding-left: 15px; font-size: 1em; color: #000000; }
#NavSubMenuSEL  { padding-top: 5px; padding-left: 15px; padding-right: 3px; font-size: 1.15em; color: #000000; text-shadow: 1px 1px #707070; background-color: #E7E7E7; border-radius: 3px; background-clip: content-box; }