
#nav
{
	width: 60em; /* 1000 */
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	text-align: left;
	vertical-align: middle;
   z-index: 100;
}

#nav > a
{
	display: none;
}

#nav li
{
	position: relative;
}

#nav li a
{
	color: #000;
	display: block;
}

#nav li a:active
{
	background-image: url(../images/texture_grain_200x200_v3.png);
	background-repeat: repeat;
	background-color: White;
}

#nav span:after
{
	width: 0;
	height: 0;
	border: 0.313em solid transparent; /* 5 */
	border-bottom: none;
	border-top-color: #444;
	content: '';
	vertical-align: middle;
	display: inline-block;
	position: relative;
	right: -0.313em; /* 5 */
}

/* first level */

#nav > ul
{
	height: 3em; /* 60 */
	background-image: url(https://www.lanternworks.com/images/pool_table_cb.png);
	background-repeat: repeat;
   list-style: none;
}

#nav > ul > li
{
	width: 100%;
	height: 100%;
	float: left;
   list-style: none;
}

#nav > ul > li > a
{
	height: 100%;
	font-size: 1.2em; /* 24 */
	line-height: 2.5em; /* 60 (24) */
	text-align: left;
}

#nav > ul > li:not( :last-child ) > a
{
	border-right: 1px solid #ccc;
}



/* second level */

#nav li ul
{
	background-image: url(../images/texture_grain_200x200_v3.png);
	background-repeat: repeat;
	background-color: White;
	display: none;
	position: absolute;
	top: 100%;
	z-index: 1000;
}

#nav li:hover ul
{
	display: block;
	left: 0;
	right: 0; 
   list-style: none;
}

#nav li:not( :first-child ):hover ul
{
	left: 0px; 
}

#nav li ul a
{
	font-size: 1.25em; /* 20 */
	border-top: 1px solid #bbb;
	padding: 0.75em; /* 15 (20) */
}

#nav li ul li a:hover, #nav li ul:not( :hover ) li.active a
{
	background-color: #ddd; 
}

@media only screen and ( max-width: 62.5em ) /* 1000 */
{
	#nav
	{
		width: 100%;
		position: static;
		margin: 0;
	}
}

