﻿/* MENU PRIMARY V1 */

.KeyMenuHeader
{
    position: relative;
    display: table;
    float: left;
    width: auto;
    height: inherit;
    cursor: pointer;
}
.KeyMenuSubMain {
    position: relative;
    display: table;
    width: auto;
    height: 40px;
    padding: 0px 20px 0px 20px;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    color: #FFFFFF;
    z-index: 100;
}
.KeyMenuSubMain_Icon {
    position: relative;
    display: table-cell;
    width: auto;
    height: inherit;
    text-align: center;
    vertical-align: middle;
}

    .KeyMenuSubMain_Icon svg {
        width: 22px;
        height: 22px;
        fill: #FFFFFF;
    }
.KeyMenuSubMain_Over {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    left: 0px;
    bottom: 0px;
    background-color: rgba(255,255,255,1.0);
    z-index: 10;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -moz-transform: scale(1.0,0.0);
    -ms-transform: scale(1.0,0.0);
    -o-transform: scale(1.0,0.0);
    -webkit-transform: scale(1.0,0.0);
    transform: scale(1.0,0.0);
    -moz-transition: all 0.6s cubic-bezier(0.000, 0.700, 0.300, 1.000);
    -ms-transition: all 0.6s cubic-bezier(0.000, 0.700, 0.300, 1.000);
    -o-transition: all 0.6s cubic-bezier(0.000, 0.700, 0.300, 1.000);
    -webkit-transition: all 0.6s cubic-bezier(0.700, 0.000, 0.300, 1.000);
    transition: all 0.6s cubic-bezier(0.000, 0.700, 0.300, 1.000);
}
.KeyMenuHeader:hover .KeyMenuSubMain_Over {
    -moz-transform: scale(1.0,1.0);
    -ms-transform: scale(1.0,1.0);
    -o-transform: scale(1.0,1.0);
    -webkit-transform: scale(1.0,1.0);
    transform: scale(1.0,1.0);
}

.KeyMenuSubBody {
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
    min-width: 200px;
    top: 40px;
    left: 50%;
    padding: 10px 10px 20px 10px;
    background-color: rgba(255,255,255,0.9);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.3);
    border-radius: 2px;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1000;
    -webkit-transform: translateX(-50%) translateY(-10px);
    -moz-transform: translateX(-50%) translateY(-10px);
    -o-transform: translateX(-50%) translateY(-10px);
    -ms-transform: translateX(-50%) translateY(-10px);
    transform: translateX(-50%) translateY(-10px);
    -moz-transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
    -ms-transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
    -o-transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
    -webkit-transition: all 0.3s cubic-bezier(0.700, 0.000, 0.300, 1.000);
    transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
}
    .KeyMenuSubBody:before {
        content: "";
        position: absolute;
        width: 0px;
        height: 0px;
        left: 50%;
        top: -6px;
        margin-left: -3px;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid rgba(255,255,255,0.9);
        z-index: 10;
    }
.KeyMenuSub {
    position: relative;
    width: 100%;
    height: auto;
    padding: 5px 5px 5px 5px;
    background-color: rgba(255,255,255,0.0);
    border-bottom: solid 1px #EAEAEA;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: normal;
    font-size: 0.9em;
    text-align: left;
    color: #000000;
    cursor: pointer;
    clear: both;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
    -ms-transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
    -o-transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
    -webkit-transition: all 0.3s cubic-bezier(0.700, 0.000, 0.300, 1.000);
    transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
}

    .KeyMenuSub:hover {
        background-color: rgba(255,255,255,1.0);
        padding-left: 10px;
        color: #B98C46;
    }



@media screen and (min-width:0px) and (max-width:600px)
{
    
}