@charset "utf-8";

/* ======================================================== */
/*  DROPDOWN NAVIGATION MENU   */
/*  TO BE USED IN ADDITION TO THE MAIN SITE CSS & SLICKNAV.CSS */
/*   MOBILE FIRST STYLES */
/* ======================================================== */


/*   SWITCHES FOR MOBILE MENU */

.slicknav_menu {
	display:block;
}

nav ul#menu {
	display: none;
}

/* ======================================================== */
/*   SWITCHES FOR TURNING ON DESKTOP MENU */
/*   min-width value may need to be adjusted based site */
/* ======================================================== */

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

.slicknav_menu {
	display: none;
	padding-right: 0px;
}

nav {
	text-align: right;
	margin-right: auto;
	margin-left: auto;
	width: 100%;
	z-index: 9999;
	display: block;
}

/* TOP MENU ITEMS CONTAINER */
nav > ul#menu {
	/* [disabled]max-width: 1000px; */
	list-style: none;
	margin: 0px auto;
	padding: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	-o-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-o-justify-content: flex-end;
	justify-content: flex-end;
	float: right;
} 
/* TOP MENU ITEMS */
nav > ul > li {
	position: relative;
	width: auto; /* mobile*/
	text-align: center;
	text-decoration: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	-o-flex-grow: 1;
	flex-grow: 1;
}
/* TOP MENU TEXT */
nav > ul > li > a:link, nav > ul > li > a:visited {
	color: rgba(109,110,113,1.00);
	display: block;
	padding: 5px 10px;
	text-decoration: none;
	width: 100%;
}
/* TOP MENU TEXT HOVER*/
nav > ul > li:hover > a {
	text-decoration: none;
	color: rgba(53,60,173,1.00);
}
/*###################################*/
/* FIRST DROP DOWN MENU CONTAINER*/
/*###################################*/
nav > ul > li > ul   {
	display: block;
	width: 100%;
	min-width: 250px;
	position: absolute;
	left: 0px;
	top: 30px;
	margin-left: auto;
	margin-right: auto;
	text-decoration: none;
	list-style-image: none;
	list-style-type: none;
	font-size: 0.9em;
	opacity: 0;
	visibility: hidden;
	overflow-y: hidden;
	overflow-x: hidden;
	z-index: 9999;
	
}
/* STYLE TO MAKE DROP DOWNS VISABLE */
nav > ul > li:hover > ul {
	opacity: 1;
	visibility: visible;
	overflow-y: visible;
	overflow-x: visible;
}

/* DROPDOWN ITEMS STYLE*/
nav > ul > li > ul > li {
	background-color: rgba(109,110,113,1.00);
	border-bottom: thin solid rgba(255,255,255,1.00);
	width: 100%;
	position: relative;
}


/* DROP DOWN MENU TEXT */	
nav > ul > li > ul > li > a:link, nav > ul > li > ul > li> a:visited {
	color: rgba(255,255,255,1.00);
	display: block;
	padding: 10px 15px;
	text-decoration: none;
	text-align: left;
}

/* DROPDOWN MENU TEXT HOVER*/
nav > ul > li > ul > li:hover > a {
	text-decoration: none;
	color: rgba(53,60,173,1.00);
	background-color: rgba(211,212,213,1.00);
}




/*###################################*/
/* DROP DOWN ARROWS */
/*   add as an <i> element where needed, see below */
/*     <i class="cis-icon icon-angle-down"></i>     */
/*###################################*/

@font-face {
  font-family: 'cis-min-symbols';
  src: url('../font/cis-min-symbols.eot?58031876');
  src: url('../font/cis-min-symbols.eot?58031876#iefix') format('embedded-opentype'),
       url('../font/cis-min-symbols.woff?58031876') format('woff'),
       url('../font/cis-min-symbols.ttf?58031876') format('truetype'),
       url('../font/cis-min-symbols.svg?58031876#cis-min-symbols') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
.cis-icon { 
  font-family: "cis-min-symbols";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

 /* open arrows */
.icon-angle-left:before { content: '\e806'; }
.icon-angle-right:before { content: '\e808'; } 
.icon-angle-up:before { content: '\e80b'; } 
.icon-angle-down:before { content: '\e811'; } 


}
