﻿body {
    font-size:20px;
    /*color: green;*/
}

#logoImage{
    /*add space/padding from the top to the logo*/
    top: 5px;
    left:0;
    height: 55px;
    width:auto;
}

#menuTray {
    height: 55px;
}

.site-wrap {
    top: 60px;
}

.navigation {
    /* critical sizing and position styles */
    position:fixed;
    width:100%;
    list-style:none;
    margin:0;
    padding:0;
    padding-left:0px;
    text-align:right; 
    z-index:10;
    background-color:transparent;
    /*sets the vertical location of the menu bar*/
    padding-top:17px;
}

/* Navigation Menu - List items */
.nav-item {
    display:inline;
    padding: 2px;
    margin: 0 3px;
    text-align:left;
}

.nav-item a {
    /*defines a horizontal list*/
    display: inline-block;
    /*text size of horizontal menu*/
    font-size: 22px;
    /*color of text in menu*/
    color:#252525;
}

.nav-item a:hover {
    color: #ACBD5D;
}

.nav-item:hover ul {
    display: block;
}
@media (max-width: 1150px) 
{
    .nav-item a {
        padding-top:7px;
        font-size: 18px;
    }
    .customerIcon{
        height:18px;
    }
}




.subMenu{
    position: absolute;
    display: none;
    padding-top:20px;
    padding-bottom:10px;
    padding-right: 15px;
    padding-left: 15px;
    background:white;
    border:3px solid white;
    /*bulleted style: none, numbers, letters, greek, etc...*/
    list-style: none;
}

.subMenu-item{
    /*horizontal spacing between navigation items*/
    padding-bottom:6px;
}

.subMenu-item a{
    font-size:18px;
}

.subMenu-hr{
    /*horizontal spacing for the horizontal line*/
    padding-bottom:6px;
}

#spacerDiv{
    height:145px;
}
