<style type="text/css">
@import url(http://fonts.googleapis.com/css?family=Lato);
/************************************************************************************
GENERAL
*************************************************************************************/

A
	{color: #000099}
A:link
	{color: #000099}
A:active
	{color: #000099}
A:visited
	{color: #000099}
A:hover
	{color: #000099;
	background-color: #cccccc}
body
	{font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-style: normal;}
p
	{margin-top: 0px;
	margin-bottom: 1px;
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-style: normal}
ul
	{font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-style: normal;}
ol
	{font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-style: normal;}
SCRIPT
	{width: 100%}	
H1
	{font-size:xx-large;
	font-weight: bold;
	text-transform: uppercase;
	font-family: 'Lato', sans-serif;
	line-height: 1em}
H2
	{font-size: x-large;
	font-weight: bold;
	font-family: 'Lato', sans-serif;
	line-height: 1em}
H3
	{font-size: large;
	font-weight: bold;
	font-family: 'Lato', sans-serif;
	line-height: 1em}
H4
	{margin-top: 0px;
	margin-bottom: 1px;
	font-size: medium;
	font-weight: bold;
	font-family: 'Lato', sans-serif;}
H5
	{margin-top: 0px;
	margin-bottom: 1px;
	font-size: small;
	font-weight: bold;
	font-family: 'Lato', sans-serif;}
H6	{margin-top: 0px;
	margin-bottom: 1px;
	font-size: x-small;
	font-weight: bold;
	font-family: 'Lato', sans-serif;}
.Caption
	{font-size: x-small;
	font-weight: bold;
	font-family: 'Lato', sans-serif;}
.Note
	{text-indent: -.25em;
	tab-stops: list .25em;
	font-size: x-small;
	font-style: italic;
	font-family: 'Lato', sans-serif;}
.TOC
	{font-size: small;
	font-weight: bold;
	text-transform: uppercase}
.LeftMarginHalf
	{margin-left: 0.5in}
.LeftMarginQuarter
	{margin-left: 0.25in}
.LeftMarginThreeQuarter
	{margin-left: 0.75in}
CODE, KBD
	{font-family: Courier, monospace}
.Gold {color: #ffff00}

/************************************************************************************
NAV
*************************************************************************************/
#nav-wrap {
	margin-top: 0;
	margin-bottom: 0;
	display: table;
	margin-left: auto;
	margin-right: auto;
}

/* menu icon */
#menu-icon {
	display: none; /* hide menu icon initially */
}

#nav {
	margin: 0 auto;
	float: left; 
	padding: 0;
}
#nav li {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	margin-right: 5px;
}

/* nav link */
#nav a {
	padding: 4px 15px;
	display: block;
	text-decoration: none;
	color: #ffffff;
	background-color: #000099;
}
#nav a:hover {
    color: #000099;
	background-color: #cccccc;
}

/* nav dropdown */
#nav ul {
	margin: 0 auto;
	background: #cccccc;
	padding: 2px;
	position: absolute;
	border: solid 1px #cccccc;
	display: none; /* hide dropdown */
	width: 350px;
	clear:left;

}
#nav ul li {
	float: none;
	margin: 0;
	padding: 0;
}
#nav li:hover > ul {
	display: block; /* show dropdown on hover */
}

/************************************************************************************
MOBILE
*************************************************************************************/
@media screen and (max-width: 600px) {

	/* nav-wrap */
	#nav-wrap {
		position: relative;
	}

	/* menu icon */
	#menu-icon {
		color: #000;
		width: 42px;
		height: 30px;
		background: #ecebeb url(../Images/menu-icon.png) no-repeat 10px center;
		padding: 8px 10px 0 42px;
		cursor: pointer;
		border: solid 1px #666;
		display: block; /* show menu icon */
	}
	#menu-icon:hover {
		background-color: #f8f8f8;
	}
	#menu-icon.active {
		background-color: #bbb;
	}
	
	/* main nav */
	#nav {
		clear: both;
		position: absolute;
		top: 38px;
		width: 300px;
		z-index: 10000;
		padding: 5px;
		background: #f8f8f8;
		border: solid 1px #999;
		display: none; /* visibility will be toggled with jquery */
	}
	#nav li {
		clear: both;
		float: none;
		margin: 5px 0 5px 10px;
	}
	#nav a, 
	#nav ul a {
		font: inherit;
		background: none;
		display: inline;
		padding: 0;
		color: #666;
		border: none;
	}
	#nav a:hover, 
	#nav ul a:hover {
		background: none;
		color: #000;
	}
	
	/* dropdown */
	#nav ul {
		width: auto;
		position: static;
		display: block;
		border: none;
		background: inherit;
	}
	#nav ul li {
		margin: 3px 0 3px 15px;
	}

}

@media screen and (min-width: 600px) {

	/* ensure #nav is visible on desktop version */
	#nav {
		display: block !important;
	}
	
}

</style>