/* Style the body */
body {
  font-family: Bookman Old Style, Helvetica, sans-serif;
  margin: 0;
}

.third-level-menu
{
    position: absolute;
    top: 0;
    right: -350px;
    width: 350px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
	text-align: left;
}

.third-level-menu > li
{
    height: 30px;
    background: #380504;
}
.third-level-menu > li:hover { background: #FFFFFF; }

.second-level-menu
{
    position: absolute;
    top: 30px;
    left: 0;
    width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
	text-align: left;
}

.second-level-menu > li
{
    position: relative;
    height: 30px;
    background: #380504;
}
.second-level-menu > li:hover { background: #FFFFFF; }

.top-level-menu
{
    list-style: none;
    padding: 0;
    margin: 0;
	text-align: center;
	border-radius: 15;
}

.top-level-menu > li
{
    position: relative;
    float: left;
    height: 30px;
    width: 135px;
    background: #380504;
	border-radius: 15;
}
.top-level-menu > li:hover { background: #FFFFFF; }

.top-level-menu li:hover > ul
{
    /* On hover, display the next level's menu */
    display: inline;
}


/* Menu Link Styles */

.top-level-menu a /* Apply to all links inside the multi-level menu */
{
    font: bold 12px Arial, Helvetica, sans-serif;
    color: #FFFFFF;
	background: #380504;
    text-decoration: none;
    padding: 0 0 0 10px;

    /* Make the link cover the entire list item-container */
    display: block;
    line-height: 30px;
	border-radius: 15;
}
.top-level-menu a:hover { color: #380504; background: #FFFFFF }

/* Header/logo Title */
.header {
  padding: 5px;
  text-align: center;
  background: #380504;
  color: white;
}

/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 15%; /* IE10 */
  flex: 15%;
  background-color: #f1f1f1;
  padding: 5px;
}
/* Main column */
.main {   
  -ms-flex: 85%; /* IE10 */
  flex: 85%;
  background-color: white;
  padding: 5px;
}

/* Footer */
.footer {
  padding: 1px;
  text-align: center;
  background: #380504;
  color: white;
}

a:link {
  color: #380504;
  background: white;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #380504;
  background: white;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: white;
  background: #380504;
  text-decoration: none;
}

/* selected link */
a:active {
  color: #380504;
  background: white;
  text-decoration: none;
}

th, td {
  padding: 10px;
}

.first-word-uppercase-p::first-letter {
  font-size: 40px;
  color: #380504;
  font-weight: bold;
  line-height: .75;
}

.rows {
  display: flex;
  padding: 0px;
  line-height: 0;
}

/* Create three equal columns that sits next to each other */
.columns {
  flex: 20%, 60%, 20%;
  padding: 0px;
}

.center-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}