/*! Pushy - v0.9.2 - 2014-9-13
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */

/* Menu Appearance */

.pushy{
    position: fixed;
    width: 500px;
    height: 100%;
    top: 0;
    z-index: 9999;
    background: #285B4D;
    font-size: 0.9em;
    font-weight: bold;
    -webkit-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, 0.26);
    box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, 0.26);
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}

.pushy a{
    display: block;
    color: #FFF;
    padding: 15px 15px;
    border-bottom: none;
    border-top: none;
    text-decoration: none;
    font-family: 'alternate-gothic-no-3-d', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
}
.pushy h1 {
    display: block;
    color: #FFF;
    padding: 10px 0 15px 0;
    border-top: none;
    margin: 10px 25px;
    text-decoration: none;
    font-family: 'alternate-gothic-no-3-d', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 1px;
    border-bottom: 1px solid #7B8C88;
}

.pushy h1 span a {
    text-transform: lowercase;
    float: right;
    font-family: arial;
    font-weight: normal;
    text-align: center;
    color: #BEBEBE;
    font-size: 22px;
    padding: 2px 6px;
    border-radius: 14px;
    margin-top: -5px;
}

.pushy a:hover{
    background: #397665;
    color: #FFF;
}

.pushy ul {
    margin: 10px 25px;
    list-style: none;
    padding: 0;
}

.pushy input[type="text"] {
    margin: 25px 0 25px 25px;
    border: none;
    padding: 13px 14px;
    width: 70%;
}
.pushy input[type="submit"] {
    background: #8D8D8D;
    border: none;
    padding: 14px 8px;
    color: #FFF;
}

.menu-socials {
    list-style: none;
}
.menu-socials li {
    display: block;
    float:left;
    margin-right: 5px;
}

/* Menu Movement */

.pushy-left{
    -webkit-transform: translate3d(-900px,0,0);
    -moz-transform: translate3d(-900px,0,0);
    -ms-transform: translate3d(-900px,0,0);
    -o-transform: translate3d(-900px,0,0);
    transform: translate3d(-900px,0,0);
}

.pushy-open{
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.container-push, .push-push{
    -webkit-transform: translate3d(500px,0,0);
    -moz-transform: translate3d(500px,0,0);
    -ms-transform: translate3d(500px,0,0);
    -o-transform: translate3d(500px,0,0);
    transform: translate3d(500px,0,0);
}

/* Menu Transitions */

.pushy, #container, .push{
    -webkit-transition: -webkit-transform .2s cubic-bezier(.16, .68, .43, .99);
    -moz-transition: -moz-transform .2s cubic-bezier(.16, .68, .43, .99);
    -o-transition: -o-transform .2s cubic-bezier(.16, .68, .43, .99);
    transition: transform .2s cubic-bezier(.16, .68, .43, .99);
}

/* Site Overlay */

.site-overlay{
    display: none;
}

.pushy-active .site-overlay{
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    background-color: rgba(0,0,0,0.5);
    -webkit-animation: fade 500ms; 
    -moz-animation: fade 500ms; 
    -o-animation: fade 500ms;
    animation: fade 500ms;
}

@keyframes fade{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@-moz-keyframes fade{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@-webkit-keyframes fade{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@-o-keyframes fade{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

/* Example Media Query */

@media screen and (max-width: 768px){
    .pushy{
        font-size: 1.0em;
    }
}
@media screen and (max-width: 500px) {
  .pushy {
         width: 100% ;
  }
}
    
#accordian {
   
}

/* Navigation Styles */
#accordian h3 {
    display: block;
    color: #FFF;
    padding: 13px 47px;
    border-bottom: none;
    border-top: none;
    text-decoration: none;
    font-family: 'alternate-gothic-no-3-d', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    cursor: pointer;
    margin: 0;
}
/*heading hover effect*/
#accordian h3:hover {
    background-color: #3C7162;
}
/*iconfont styles*/
#accordian h3 span {
    font-size: 16px;
    margin-right: 16px;
}

/*links*/
#accordian ul ul li a {
    color: #FFF;
    text-decoration: none;
    font-size: 14px;
    line-height: 14px;
    display: block;
    padding: 8px 7px;
    transition: all 0.15s;
    text-transform: capitalize;
    letter-spacing: normal;
    font-weight: normal;
    transition: all 0.15s;
    font-family: 'museo-sans', sans-serif;
    font-weight: 500;
}



/*hover effect on links*/
#accordian ul ul li a:hover {
    background: #FFF;
    color: #285B4D;
    border-left: none;
    font-weight: bold;
}
/*Lets hide the non active LIs by default*/
#accordian ul ul {
    display: none;
    margin: 0 5px 25px 41px;
    columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;

}



/* Added by Foss */
#accordian .spanner {
    display: none;
    margin: -22px 5px 25px 41px;
    columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

/* added by foss */
@media screen and (min-width: 600px) {
.logoOnFlyout {
        display:none;
 }
}

#accordian li.active ul {
    display: block;
}

.closed {
    background-image: url('../images/nav-closed.png');
    background-position: 10px center;
    background-repeat: no-repeat;
}
.highlight {
    background-image: url('../images/nav-open.png');
    background-position: 10px center;
    background-repeat: no-repeat;
}
