div.titlebar{
    height: 40px;
    background-color: orange;
    font-family: sans-serif;
    font-weight: bold;
    padding: 10px 10px;
    text-align: center;
}

img.homeimg{
    float: left;
    height: 25px;
    cursor: pointer;
}

div.spaceLine{
    height: 10px;
    background-color: navajowhite;
}

div.menubar{
    height: 50px;
    background-color: orange;
    font-family: sans-serif;
    font-weight: bold;
    padding: 10px 10px;
    text-align: center;
}

img.menuicons{
    height: 30px;
}

/****Drop Down Menu****/

nav ul {
    margin: 0;
    padding: 0;
    width: 0%;
}
nav li {
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
    min-width: 25%;
}

nav a {
    background: orange;
    color: black;
    display: block;
    width: 250px;
    text-align: left;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 15px;
    padding: 10px 90px 0px 10px;
    text-align: left;
    text-decoration: none;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}

nav li ul {
    opacity: 0;
    position: absolute;
    visibility: hidden;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}

nav li:hover ul {
    opacity: 1;
    top: 35px;
    visibility: visible;
}


