

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

a, a:hover {
    text-decoration:none;
}

.left-0 {left: 0 !important;}
/*.left-minus-15 {left: -1.5em !important;}
ul.nav, ol.nav {
	list-style:none;
}*/

/*------------------------------------*\
    Flaunt JS Navigation
\*------------------------------------*/

.nav {
	width: 100%;
    background-color:#7A1E99;/*#7A1E99; background for mobs only*/
	position:relative;
	display:inline-block;
    font-size: medium;
    font-size: 1.3vw;
    z-index: 99;
}

.nav-item {
    list-style: none;
	float:left;
	*display:inline-block;
	zoom:1;
	position:relative;
    opacity: 0.9;
    filter: alpha(opacity=90); /* For IE8 and earlier */
}

.nav-item a {
	display:block;
	color:#fff;
	padding:.5em 2em; /*changed to spread out menu VJJ*/
	background-color:#7A1E99;/*#7A1E99;*/
	border-bottom:1px solid #7A1E99;/*#7A1E99;*/
}

.nav-item > a:hover {
	background:#7A1E99;
    color: #fff;
}

.nav-item:hover .nav-submenu {
	display:block;
}

/* Navigation submenu */
.nav-submenu {
    list-style: none;
	display:none;
	position:absolute;
	left:2.1em;
	width:11em;
    /*font-size: 1em;VJJ28.09*/
}

.nav-submenu-item a {
	background:#7A1E99;
	border-bottom:1px solid #ccc;
	display:block;
	padding:.4em;

}
.nav-submenu-item a:hover {
	background:#fff;
    color: #7A1E99;
}

/* Mobile navigation */
.nav-mobile {
	display:none; /* Hide from browsers that don't support media queries */
	cursor:pointer;
	position:absolute;
	top:0;
	right:0;
	background:#7A1E99 url(css-images/menuicon.png) no-repeat center center;
    /**was lime**/
	height:2.5em;
	width:2.9em;
}
/* Mobile navigation, clickable area for revealing <ul> */
.nav-click {
	position:absolute;
	top:0;
	right:0;
	display:none;
	border-left:1px solid #cccccc;
	height:3em;
	width:2.9em;
	cursor:pointer;
    background:url(css-images/plus.png) no-repeat center center;

}
.nav-click i {
	display:block;
/*	height:28em;  - remove size because it seems to break ios9 devices - content wider than viewport
/*	width:28em;  */
	background-size:1.2em;
}
.nav-click:hover {  }

.nav-text {
	position:absolute;
	top:.5em;
	right: 3em;
}

.nav-arrow {}

.nav-rotate {
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	transform:rotate(180deg);
}


/*------------------------------------*\
    Media Queries
\*------------------------------------*/

@media only screen and (min-width: 1414px) {

    .nav-list {
        font-size: large;
		/*padding-left: 0;
		padding-right: 0;VJJ28.09*/
    }

	li.nav-item  {
		/*transform: scale(.5);*/
		padding-left: .5em;
		}

/*.nav-item  {
	min-width: 200px;
	max-width: 300px;
	}VJJ28.09*/
}

@media only screen and (min-width: 769px) and (max-width: 1414px) {

	.menu-left  {
		/*transform: scale(.5);*/
		width: 9em;}
}

@media only screen and (min-width: 769px)  {
	.nav-list  {display:inline !important;}
	.mob-only {display: none;}
}


/**maybe should be 769px???? see above BUT breaks if i incorporate??? investiage VJJ****/
@media only screen and (max-width: 769px) {

	.nav-mobile {
		display:block;
	}
	/**menu button position**/
    .nav {
		width:100%;
		padding:2.6em 0 0;
        font-size: 1.1em;
	}
	.nav-list {
		display:none;
	}
	.nav-item {
		width:100%;
		float:none;
        border-bottom: solid 1px #fff;

	}
    .nav-item:first-child {padding-left: 0;}
	.nav-item > a {
		padding:.9em;
	}

	.nav-click {
		display:block;

	}
	.nav-mobile-open {
		border-radius:5px 5px 0 0;
		-webkit-border-radius:5px 5px 0 0;
		-moz-border-radius:5px 5px 0 0;

	}
	.nav-item:hover .nav-submenu {
		display:none;
	}
	.nav-submenu {
		position:static;
		width:100%;

	}
}

/*@media only screen and (max-width: 767px)  {

    .nav-item {
        width: 7em;
    }
}*/




