*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html{
    font-size: 120%;
    font-family: sans-serif;
}

#wholePage{
    background-color: #aaaaaa;
    height: 100%;
}

#mainPage{
    background-color: white;
    border-radius: 5px;
    margin: auto;
}

header{
    color: #333;
}

#mainHeader{
    padding: 5px;
    margin-bottom: 10px;
    height: 150px;
    width: 100%;
}

header .logo{
    float: left;
    width: 25%;
    height: 100%;
}

header .midHeader{
    width: 50%;
    margin: auto;
    text-align: center;
    font-size: 2em;
    padding-top: 30px;
    font-family: sans-serif;
}

header .contact{
    float: right;
    padding-top: 52px;
    padding-right: 30px;
}

header #title-nav{
    clear: both;
    width: 100%;
    height: 50px;
    background-color: #005599;
    line-height: 50px;
}

header #nav{
    height: 50px;
}

header #nav ul{
    list-style-type: none;
}

header #nav ul li{
    float: left;
    display: block;
    width: 33.3%;
    text-align: center;
}

header #nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 1.25em;
    color: white;
    text-decoration: none;
}

header #nav a:hover {
    font-size: 1.5em;
    background-color: lightsteelblue;
}

header #nav ul li a.active {
    font-size: 1.5em;
    background-color: cornflowerblue;
}

#mainContent{
    clear: both;
    min-height: 375px;
    padding: 30px;
}

footer{
    clear: both;
    width: 100%;
    height: 50px;
    text-align: center;
    color: white;
    background-color: #005599;
    padding-top: 13px;
}

/*Content*/
h1.title{
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 15px;
    padding-left: 30px;
    border-bottom: 1px solid #0D504D;
    color: white;
    text-transform: capitalize;
}

#rightContent{
    margin-left: 2%;
    font-size: 1.7em;
    padding: 10px;
    color: #333;
}