@charset "utf-8";
/* CSS Document */

/* link color changes */

a:link{
	color: #000000;
	text-decoration: none;
}

a:visited{
	color: #004A64;
	text-decoration: none;
}

a:hover{
	color: #029BFC;
	text-decoration: none;
}


/*Top Navigation Bar*/
ul {
    font-size: 20px;
	font-family: 'Raleway', sans-serif;
	font-weight: bold;
	list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #7FB0D6; /* main navigation background color */
}

li {
    float: left;
	border-right: 2px solid #FFFFFF; /* Add a gray right border to all list items, except the last item (last-child) */
}

 li:last-child {
    border-right: none;
} 

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
    background-color: #1E425E;
} 

/* Suppose to change the color on the nav bar to the page your on*/
.active {
    background-color: #A6A6A6;
} 

