﻿
#navMenu {
	width:900px;
	margin:auto;
}

#navMenu ul {
    padding-left:0px;
    text-indent:0;
    margin-left:0;
}

#navMenu ul li {
	font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
	font-size:medium;
	float:left;
    display:inline-block;
    padding-left:0;
	margin-left:0;
}

#navMenu ul li a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 30px 30px;
    text-decoration: none;
    background-color:#110065;
}

#navMenu ul li a:hover {
    background-color:#92c8ee
}

#navMenu ul li a.active {
	background:rgba(255,138,30,.8);	
}

#footer ul {
    padding-left:0px;
    text-indent:0;
    margin-left:0;
}

#footer ul li {
	font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
	font-size:medium;
	float:left;
    display:inline-block;
    padding-left:0;
	margin-left:0;
}

#footer ul li a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 20px 20px;
    text-decoration: none;
    background-color:#110065;
}

#filler {
    background-color:#110065;
	width: 540px;
    padding: 20px 20px;
}

#fillerOne {
    background-color:#110065;
	width: 240px;
    padding: 30px 20px;
}

#footer ul li a:hover {
    background-color:#92c8ee
}

@media screen and (max-width:680px) {
}

/******************************************************************
/*ul.navMenu{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

/* Float the list items side by side */
/*ul.navMenuli {float: left;}

/* Style the links inside the list items */
/*ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
ul.navMenu li a {
    display: inline-block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of links on hover */
/*ul.navMenu li a:hover {background-color: #555;}

/* Hide the list item that contains the link that should open and close the topnav on small screens */
/*ul.navMenu li.icon {display: none;}

	/* When the screen is less than 680 pixels wide, hide all list items, except for the first one ("Home"). Show the list item that contains the link to open and close the topnav (li.icon) */
/*@media screen and (max-width:680px) {
  ul.topnav li:not(:first-child) {display: none;}
  ul.topnav li.icon {
    float: right;
    display: inline-block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens */
/*@media screen and (max-width:680px) {
  ul.topnav.responsive {position: relative;}
  ul.topnav.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  ul.topnav.responsive li {
    float: none;
    display: inline;
  }
  ul.topnav.responsive li a {
    display: block;
    text-align: left;
  }
}


/* Toggle between adding and removing the "responsive" class to topnav when the user clicks on the icon */
/*function myFunction() {
    var x = document.getElementById("myTopnav");
    if (x.className === "topnav") {
        x.className += " responsive";
    } else {
        x.className = "topnav";
    }
}