@import url('https://fonts.googleapis.com/css?family=Crimson+Text:400,700');

body {
	font-family: "Crimson Text", Georgia, Times New Roman, Times, serif;
	font-size: 19px;
	line-height: 24px;
}
td {
	font-family: "Crimson Text", Georgia, Times New Roman, Times, serif;
	font-size: 19px;
	line-height: 24px;
}
h1 {
	font-family: "Crimson Text", Georgia, Times New Roman, Times, serif;
	font-size: 28px;
	font-weight: bold;
	color: #0559a8;
	line-height: normal;
	margin-top: 0px;
	margin-bottom: 12px;
}
h2 {
	font-family: "Crimson Text", Georgia, Times New Roman, Times, serif;
	font-size: 24px;
	font-weight: bold;
	color: #b97326;
	margin-top: 0px;
	margin-bottom: 8px;
}
h3 {
	font-family: "Crimson Text", Georgia, Times New Roman, Times, serif;
	font-size: 22px;
	font-weight: bold;
	color: #000000;
	margin-top: 0px;
	margin-bottom: 8px;
}
h4 {
	font-family: "Crimson Text", Georgia, Times New Roman, Times, serif;
	font-size: 19px;
	font-weight: bold;
	color: #000000;
	margin-top: 0px;
	margin-bottom: 8px;
}
span {
	font-family: "Crimson Text", Georgia, Times New Roman, Times, serif;
	font-size: 15px;
	line-height: 18px;
}
span.gray {
	font-family: "Crimson Text", Georgia, Times New Roman, Times, serif;
	font-size: 15px;
	line-height: 18px;
	color: #808080;
}
span.blue {
	font-family: "Crimson Text", Georgia, Times New Roman, Times, serif;
	font-size: 15px;
	line-height: 18px;
	color: #0559a8;
}
span.red {
	font-family: "Crimson Text", Georgia, Times New Roman, Times, serif;
	font-size: 15px;
	line-height: 18px;
	color: #941116;
}
span.null {
	font-family: "Crimson Text", Georgia, Times New Roman, Times, serif;
	font-size: 8px;
	line-height: 11px;
	color: #ffffff;
}
a {
	font-size: 100%;
	color: #0070b5;
}
a:hover {
	color: #000000;
}
a.white {
	font-size: 17px;
	line-height: 19px;
	color: #ffffff;
	text-decoration: none;
}
a.white:hover {
	font-size: 17px;
	line-height: 19px;
	color: #ffffff;
	text-decoration: underline;
}

nav {
  float: left;
  width: 100%;
  /* background color of main menu items */
  background: #0559a8;
  font-size: 19px;
}
nav ul {
  margin: 0;
  padding: 0;
}
nav a {
  display: block;
  /* text color of main menu items */
  color: #ffffff;
  text-decoration: none;
}
nav a:hover {
  text-decoration: none;
}
nav ul li {
  position: relative;
  float: left;
  list-style: none;
  transition: 0.3s;
}
nav ul li.active {
  /* background color of active menu items */
  background: #b97326;
  /* text color of active menu items */
  color: #ffffff;
}
nav ul li a {
  /* pixel frame around menu items */
  padding: 8px 15px;
}
nav ul li.sub a {
  /* pixel frame around menu items */
  padding: 8px 35px 8px 15px;
}
nav ul li.subactive a {
  /* pixel frame around menu items */
  padding: 8px 35px 8px 15px;
}
nav ul > li.sub > a:after {
  position: absolute;
  float: right;
  content: '';
  margin-left: 10px;
  margin-top: 5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #ffffff;
  border-bottom: 5px solid transparent;
}
nav ul ul li.sub > a:after {
  position: relative;
  margin-left: auto;
  margin-right: -30px;
  border-left: 5px solid #ffffff;
  border-right: 5px solid transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
nav ul li.subactive {
  /* background color of active menu items */
  background: #b97326;
  /* text color of active menu items */
  color: #ffffff;
}
nav ul > li.subactive > a:after {
  position: absolute;
  float: right;
  content: '';
  margin-left: 10px;
  margin-top: 5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #ffffff;
  border-bottom: 5px solid transparent;
  /* background color of active top-level submenu items */
  background: #b97326;
  /* text color of active top-level submenu items */
  color: #ffffff;
}
nav ul ul li.subactive > a:after {
  position: relative;
  margin-left: auto;
  margin-right: -30px;
  border-left: 5px solid #ffffff;
  border-right: 5px solid transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  /* background color of active sub-level submenu items */
  background: #0559a8;
  /* text color of active sub-level submenu items */
  color: #ffffff;
}
nav ul li:hover {
  /* background color of highlighted menu items */
  background: #b97326;
}
nav ul ul {
  position: absolute;
  top: -9999px;
  left: -9999px;
  /* background color of submenu items */
  background: #0559a8;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  z-index: 1;
}
nav ul ul li {
  float: none;
  width: 250px;
  border-bottom: 1px solid #333333;
}
nav ul ul li.active {
  /* background color of active submenu items */
  background: #b97326;
  /* text color of active submenu items */
  color: #ffffff;
}
nav ul ul li a {
  /* pixel frame around submenu items */
  padding: 8px 20px;
  /* text color of submenu items */
  color: #ffffff;
}
nav ul ul li:last-child {
  border-bottom: none;
}
nav ul li:hover > ul {
  top: 100%;
  left: 0;
}
nav ul ul li:hover > ul {
  top: 0;
  left: 250px;
}
