/*
Responsive Mobile Toggle Menu v1.0
Description: Mobile first responsive toggle menu
Author: Danielle Vautier
*/

/*Page CSS*/

.mainMenu {
overflow:hidden;
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 {
cursor: pointer;
}
.menu a, .menu a:visited {
text-decoration: none;
/*display: block;*/
}
.menu li:first-child {
border-left: 0;
}
.menu a:hover {
color:#fff;
}
label.menuTitle
{
    text-align: left;
    font-size: 13px;
    color: #fff;
    display: block;
    font-weight: bold;
    cursor: pointer;
    float: left;
    -webkit-transition: 0.6s ease-in-out;
    -moz-transition: 0.6s ease-in-out;
    -o-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
    position: relative;
    z-index: 9999;
    width: 100%;
}
label.menuTitle:after
{
    content: "Menu";
    position: absolute;
    top: 50%;
    left: 52px;
    font-size: 16px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
	z-index:-8;
}
.bar1, .bar2, .bar3
{
    width: 22px;
    height: 2px;
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 2px;
}
.bar1
{
    background-color: #fff;
}
.bar2
{
    background-color: #fff;
}
.bar3
{
    background-color: #fff;
}
.change .bar1
{
	-webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: relative;
    top: 8px;
}
.change .bar2
{
	opacity: 0;
}
.change .bar3
{
	-webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
    top: -8px;
}
 @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 {
}
.menu li:first-child {
border-left: 0;
}
.menu a, .menu a:visited {
display: inline;
width: auto;
padding: 0;
}
}
@media screen and (max-width:768px)
{
	.menu
	{
		
	}
}
@media screen and (max-width:480px)
{label.menuTitle
{
    
}
}