/*** Nav bar styles ***/

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

ul.nav{
	display: table;
	width: 100%;
	table-layout: fixed;
	text-align: center;
	font-family: "Adobe Caslon Pro", Georgia, Serif;
	font-size: 10pt;
	font-color: #262018;
	font-variant: small-caps;
}
ul.nav>li{
	display: table-cell;
	position: relative;
	padding: 2px 6px;
}


ul.nav li>ul{
/*Make the sub list items invisible*/
	display: none;
	position: fixed;
	max-width: 40ex;
	margin-left: 4%;
	margin-top: 2px;
}

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: 2px 10px;
}

/*** Menu colors (customizable) ***/

ul.nav,
.nav ul,
.nav ul li a{

	color: #262018;
}


ul.nav li:hover,
.nav ul li a:hover{

	color: #fff;
}

ul.nav li:active,
.nav ul li a:active{

	color: #fff;
}

ul.nav li:hover>ul,
.nav ul li a:hover{
	border-style: solid;
	border-color: #262018;
	border-top-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-width: 1px;
	}


ul.nav,
.nav ul{
	border-style: solid;
	border-color: #262018;
	border-top-width: 2px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-right-width: 0px;
}

.nav a{
	text-decoration: none;
}
.nav a:link	{color: #262018; text-decoration: none; text-align: center;}
.nav a:visited	{color: #262018; text-decoration: none; text-align: center;}
.nav a:hover	{color: #262018; text-decoration: underline; text-align: center;}