body{
    margin: 0px;
    padding: 0px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: normal;
    color: black;
    font-size: 14px;
}

h1{
    display: inline;
}

h2{
    display: inline;
}

h3{
    display: inline;
}

.headerFixed{
    width: 100%;
    height: 80px;
    background-color: #efefef;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.hrefHeaderLinks{
    color: black;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.hrefHeaderLinks:hover {
    color: blue;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}
/*Text Boxes*/
.textBoxSmall {
    width: 100px;
    border-color: black;
    border-style: solid;
    border-width: 1px;
}

.textBoxSmall:hover {
    background-color: #e3ffd0;
}

.textBoxSmallMan {
    width: 100px;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    background-color: #bcfda8;
}

.textBoxSmallMan:hover {
    background-color: #e3ffd0;
}

.textBoxMedium {
    width: 200px;
    border-color: black;
    border-style: solid;
    border-width: 1px;
}

.textBoxMedium:hover {
    background-color: #e3ffd0;
}

.textBoxMediumMan {
    width: 200px;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    background-color: #bcfda8;
}

.textBoxMediumMan:hover {
    background-color: #e3ffd0;
}

.textBoxLarge {
    width: 300px;
    border-color: black;
    border-style: solid;
    border-width: 1px;
}

.textBoxLarge:hover {
    background-color: #e3ffd0;
}

.textBoxLargeMan {
    width: 300px;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    background-color: #bcfda8;
}

.textBoxLargeMan:hover {
    background-color: #e3ffd0;
}

.textBoxXL {
    width: 400px;
    border-color: black;
    border-style: solid;
    border-width: 1px;
}

.textBoxXL:hover {
    background-color: #e3ffd0;
}

.textBoxXLMan {
    width: 400px;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    background-color: #bcfda8;
}

.textBoxXLMan:hover {
    background-color: #e3ffd0;
}

/*Buttons*/
input[type=submit]{
    padding: 5px;
    background-color: black;
    color: white;
    font-family: 'Century Gothic';
    font-size: 14px;
    font-weight: bold;
    border: none;
}

input[type=submit]:hover{
    padding: 5px;
    background-color: lightgray;
    color: blue;
    font-family: 'Century Gothic';
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}
