/*
Responsive Mobile Toggle Menu v1.0
Description: Mobile first responsive toggle menu
Author: Danielle Vautier
*/

/*Page CSS*/

.mainMenu {
display: block;
position: relative;
width: 100%;
margin: 0;
padding: 0;
text-align: center;
line-height: 1.4;
float: left;

}
#toggleMenu, .toggleMenu {
display: none;
}
.toggleMenu {
display: block;
position: relative;
cursor: pointer;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
#toggleMenu:checked ~ .menu {
max-height: 800px;
opacity: 1;
}
.menu {
width: 100%;
margin: 0;
padding: 0;
list-style: none;
float: left;
max-height: 0px;
overflow-y: hidden;
text-align: center;
-moz-transition: all 1s ease-in-out;
-webkit-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
.menu li {
margin: 0;
padding: 0;
white-space: nowrap;
display: block;
width: 100%;
}
.menu li:hover {
background:url(../images/menu-hover.jpg) top center repeat-x;
cursor: pointer;
}
.menu a, .menu a:visited {
color: #fff;
text-decoration: none;
display: block;
}
.menu li:first-child {
border-left: 0;
}
.menu a:hover {
}
label.menuTitle {
text-align: left;
font-size: 13px;
padding: 15px 20px;
margin: 0 0;
width: auto; color:#3d3e3f;
display: block;
font-weight: 700;
cursor: pointer;
background:#f8f8f8 url(../images/nav.png) center right no-repeat;
}
 @media screen and (min-width:1200px) {
label.menuTitle {
display: none;
}
.menu {
display: block!important;
border: 0;
overflow: visible;
max-height: inherit;
padding: 10px 0;
}
.menu li {
width: auto;
display: inline;
border: 0;
}
.menu li:hover {
background: none;
}
.menu li:first-child {
border-left: 0;
}
.menu a, .menu a:visited {
display: inline;
width: auto;
padding: 0 3px 0 8px;
}
}
