/*** Nav bar styles ***/

ul.nav,
.nav ul{
/*Remove all spacings from the list items*/
	margin: 0;
	padding: 0;
	cursor: default;
	list-style-type: none;
	display: inline;
}

ul.nav{
	display: table;
}
ul.nav>li{
	display: table-cell;
	position: relative;
	padding: 3px 3px;
}


ul.nav li>ul{
	/*Make the sub list items invisible*/
	display: none;
	position: absolute;
	max-width: 50ex;
	margin-left: 15px;
	margin-top: 1px;
	z-index: 2;
}

ul.nav li:hover>ul{
	/*When hovered, make them appear*/
	display : block;
}

.nav ul li a{
	/*Make the hyperlinks as a block element, sort of a hover effect*/
	display: block;
	padding: 0px;
}

ul.nav,
.nav ul{
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.nav a{
	text-decoration: none;
	display: block;
	border-width: 0px 0px 0px;
}
