@charset "UTF-8";
/* CSS Document */
.menu {
    width: 100%;
    margin:0;
	padding:0;
	 background-color: rgb(51, 51, 51);

}

.menu-content { width:960px; margin:0 auto; }
.toggleMenu {
    display:  none;
    background: #333;
    padding: 10px 15px;
    color: #fff;
}
.nav {
    list-style: none;
     *zoom: 1;
     background:#333;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 9em;
}
.nav a {
    padding: 10px 22px;
    color:#fff;
}
.nav a:hover {
    color:#666;
}
.nav li {
    position: relative;
	font-size:1.15em;
}
.nav li:last-child { border-right:none; }

.nav .parent { }

.nav > li {
    float: left;
    
}
.nav > li > .parent {
    background-image: url("http://webdesigntutsplus.s3.amazonaws.com/tuts/378_tessa/tessa-lt-dropdowns-21c7868/images/downArrow.png");
    background-repeat: no-repeat;
    background-position: right;
}
.nav > li > a {
    display: block;
	border-bottom: 1px solid rgba(256, 256, 256, 0.2);
	 text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.22);
	
	-webkit-transition: all 140ms ease-in-out;
	-moz-transition: all 140ms ease-in-out;
	-ms-transition: all 140ms ease-in-out;
	-o-transition: all 140ms ease-in-out;
	transition: all 140ms ease-in-out;		
	    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.nav > li > a:hover{
	-webkit-transition: all 240ms ease-in-out;
	-moz-transition: all 240ms ease-in-out;
	-ms-transition: all 240ms ease-in-out;
	-o-transition: all 240ms ease-in-out;
	transition: all 240ms ease-in-out;			
	background-color:#000 !important; 
	color : #fff;
}

.nav li  ul {
    position: absolute;
    left: -9999px;
}
.nav > li.hover > ul {
    left: 0;
}
.nav li li.hover ul {
    left: 100%;
    top: 0;
}
.nav li li { 
width:120%;
font-size:0.9em;
letter-spacing:-1px;
}
.nav li li a {
    display: block;
    background: #666;
    position: relative;
    z-index:100;
    font-size:1.0em;
	border-bottom: 1px solid rgba(256, 256, 256, 0.2);
}

.nav li li a:hover {
		  background-color: #000 !important;
		  color:#FFF;
		  text-decoration:none;
	
	  }
	  

@media screen and (max-width: 767px) {
    .active {
        display: block;
    }
    .nav > li {
        float: none;
    }
    .nav > li > .parent {
        background-position: 95% 50%;
    }

    .nav > li > .parent {
   background-image: none; 
  }
    .nav li .more {
        background-image: url("http://webdesigntutsplus.s3.amazonaws.com/tuts/378_tessa/tessa-lt-dropdowns-21c7868/images/downArrow.png");
        background-repeat: no-repeat;
        background-position: 95% 50%;
        float: right;
      	width: 20%;
    		
    		padding: 8px 15px;
    		margin: 2px 5px 2px 0px;
        cursor: pointer;
    		z-index: 200;
        position: relative;
    }
  .nav li .more:before {
 
  background: rgba(0,0,0,.3);
  width: 1px;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -2px;
  }

    .nav ul {
        display: block;
        width: 100%;
    }
	  
   .nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }

}