/* ------------------------------------------
  NECESSARY STYLES FOR RESPONSIVE NAV
--------------------------------------------- */
#navNew li a {
	color:#FFF;
}
.nav-collapse ul {
	margin: 0;
	padding: 0;
	width: 100%;
	display: block;
	list-style: none;
}
.nav-collapse li {
	width: 100%;
	display: block;
	color:#FFF;
}
.js .nav-collapse {
	clip: rect(0 0 0 0);
	max-height: 0;
	position: absolute;
	display: block;
	overflow: hidden;
	zoom: 1;
	margin-top:32px;
}
.nav-collapse.opened {
	max-height: 9999px;
}
 @media screen and (min-width: 761px) {
 .js .nav-collapse {
 position: relative;
 max-height: none;
}
 #nav-toggle {
 display: none;
}
}
/* ------------------------------------------
  DEMO PAGE'S STYLES
--------------------------------------------- */
.nav-collapse, .nav-collapse * {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.nav-collapse, .nav-collapse ul {
	list-style: none;
	width: 100%;
	float: left;
}
.nav-collapse li {
	float: left;
	width: 100%;
}
 @media screen and (min-width: 761px) {
 .nav-collapse li {
 width: 25%;
 *width: 24.9%; /* IE7 Hack */
 _width: 19%; /* IE6 Hack */
}
}
.nav-collapse a {
	color: #FFF;
	text-decoration: none;
	width: 100%;
	background-color:#FFF;
	background: rgba(199, 30, 98, 1);
	border-bottom: 1px solid #691637;
	float: left;
	opacity:1;
	text-transform:uppercase;
	font-size:12px;
	height:40px;
	line-height:40px;
	text-align:center;
	display:block;
 transition: opacity .5s ease-in-out;
 -moz-transition: opacity .5s ease-in-out;
 -webkit-transition: opacity .5s ease-in-out;
 -o-transition: opacity .5s ease-in-out;
	-webkit-animation: start 0.6s linear;
	-moz-animation:    start 0.6s linear;
	-o-animation:      start 0.6s linear;
	animation:         start 0.6s linear;
}
.nav-collapse a:hover {
	background: rgba(192, 40, 101, 1);
	background: rgba(105, 22, 55, 1);
}
 @media screen and (min-width: 761px) {
 .nav-collapse a {
 margin: 0;
 padding: 20px;
 float: left;
 color:#FFF;
 background-color:transparent;
 text-align: center;
 border-bottom: 0;
 border-right: 0px;
 display:none;
}
}
.nav-collapse ul ul a {
}
 @media screen and (min-width: 761px) {
 .nav-collapse ul ul a {
 display: none;
}
}
#nav-toggle {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 0;
	cursor: pointer;
	padding:0;
	width: 40px;
	height: 40px;
	margin-right:56px;
	float: right;
	text-indent: -9999px;
	overflow: hidden;
	background: url("../images/menu_white@2x.png") no-repeat center center;
	-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 2s; /* Firefox < 16 */
	-ms-animation: fadein 2s; /* Internet Explorer */
	-o-animation: fadein 2s; /* Opera < 12.1 */
	animation: fadein 2s;
	background-position:center bottom;
	background-repeat:no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
#nav-toggle:link {
	color:#FFF;
	opacity:1;
 transition: opacity .5s ease-in-out;
 -moz-transition: opacity .5s ease-in-out;
 -webkit-transition: opacity .5s ease-in-out;
 -o-transition: opacity .5s ease-in-out;
}
#nav-toggle:hover {
	opacity:0.3;
}
.nav-Active {
	opacity:0.3;
}
 /*@media screen and (-webkit-min-device-pixel-ratio: 1.3), screen and (min--moz-device-pixel-ratio: 1.3), screen and (-o-min-device-pixel-ratio: 2 / 1), screen and (min-device-pixel-ratio: 1.3), screen and (min-resolution: 192dpi), screen and (min-resolution: 2dppx) {
 #nav-toggle {
 background-image: url("../images/menu-retina.png");
 -webkit-background-size: 80px 80px;
 -moz-background-size: 80px 80px;
 -o-background-size: 80px 80px;
 background-size: 80px 80px;
}
}*/
@media all and (max-width: 480px) {
#nav-toggle {
 margin-right:36px;
}
}

/*ANIMATIONS*/
@keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}

/* Firefox < 16 */
@-moz-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}

/* Internet Explorer */
@-ms-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}

/* Opera < 12.1 */
@-o-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
