/*****************************************************************
 *                                                               *
 *  XCSS Menu Styles Belleville                                  *
 *  ----------------                                             *
 *                                                               *
 * This area will include details regarding the required and     *
 * optional styles, how they are used, and in most cases why.    *
 *                                                               *
 *                                                               *
 *                                                               *
 *****************************************************************/

/******************************************************** 
 * Top Horizontal Menu Styles                           * 
 ********************************************************/
.hnav .xcsstitle {
	display: none;
}
/* Container div, mainly used to cascade defaults so that multiple menus 
   can coexist on a single page without having to share a layout and design. */
.hnav {
	position: relative;
	z-index: 20;
	height: 50px;
	display: inline-block;
}
/* Setup appearance of the top level menu "button", including background images*/
.hnav .button {
	float: left;
	z-index: 0;
	padding-top: 0px;
	height: 50px;
}
/** html .hnav #button1 {width:165px;}
* html .hnav #button2 {width:125px;}
* html .hnav #button3 {width:120px;}
* html .hnav #button4 {width:210px;}
* html .hnav #button5 {width:205px;}
* html .hnav #button6 {width:60px;}
* html .hnav #button7 {width:150px;}*/

.hnav .button:hover {
	background: rgba(255,255,255,0.04);
}
/* Setup the currently active button to look different. Optional, but nice */
.hnav .activebutton {
	float: left;
	background: rgba(255,255,255,0.04);
}
.hnav .activebutton a {
	color: #fff;
}
.hnav .activebutton ul {
}
/* Setup the currently active button to look different. Optional, but nice */
/* Setup appearance of links */
.hnav a {
	height: 36px;
	display: block;
	color: #fff;
	text-decoration: none;
	font-weight: normal;
	font-size: 17px;
	padding-right: 17px;
	padding-left: 17px;
	font-family: 'Bitter', serif;
	vertical-align: middle;
	padding-top: 14px;
	padding-bottom: 0px;
	text-transform: none;
	letter-spacing: 0px;
}
.hnav a:hover {
	color: #fff;
}
/* This is the arrow shown in the top level, where there is a dropdown level of menu */
.hnav a.navarrow {
}
/* This is the arrow shown in the dropdown where there is a third level of menu */
.hnav a.subarrow {
	background-image: url(../images/flyout_indicator.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.hnav ul ul a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: normal;
	vertical-align: middle;
	height: 100%;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-right: 30px;
	padding-left: 9px;
	font-family: 'Open Sans', sans-serif;
	line-height: 20px;
	text-transform: none;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
/* dropdown font colour, when youâ€™re on the active section sk */
.hnav .parent ul a {
	color: #fff;
}
.hnav ul ul li a:hover {
	text-decoration: none;
	color: #fff;
	background: rgba(255,255,255,0.04);
}
/* Hide the dot on unordered lists */
.hnav ul, .hnav li {
	padding: 0;
	margin: 0;
	list-style: none;
}
/* Hide the dot on unordered lists */

.hnav .parent:hover div.dropdown {
	left: -23px;
	top: 20px;
} /* hover rule for 1st dropdowns */
.hnav .dropdown li:hover div {
	left: 180px; /* this value controls the amount of flyout "overlap" */
	top: -1px; /* this value controls the amount of flyout vertical offset */
}
.hnav .parent {
	position: relative;
}
.hnav .parent:hover {
	background-image: url(../images/bgfix.gif);
}
/* Could be different for each of the container navs... hnav, vnav, etc. */
.hnav .dropdown {
	width: 250px;
	position: absolute;
	left: -3000px;
	top: auto; /* puts dropdowns directly under top nav */
	text-align: left; /* needed because IE misapplies text centering to boxes */
	background: url(../images/flyout_indicator.png/bgfix.gif);
	z-index: 200;
	position: absolute;
}
/* The margins on the UL's replace the div paddings to create "sticky hovering"
zones,  and the margins should "fill" the divs, making the IE BG fix unnecessary.
Unfortunately the BG fix is still needed, although this method does eliminate
possible box model problems */
.hnav .dropdown ul {
	width: 180px;
	padding-bottom: 0px;
	z-index: 200;
	position: absolute;
	padding-left: 0px;
	margin-top: 30px;
	margin-right: 30px;
	margin-bottom: 30px;
	margin-left: 22px;
	padding-top: 2px;
	padding-right: 0px;
	background-color: #272727;
	border-left: 1px solid rgba(255,255,255,0.1);
	border-right: 1px solid rgba(255,255,255,0.1);
}
/* rules for divs inside dropdown */
.hnav .dropdown div {
	width: 250px;
	position: absolute;
	left: -3000px;
	top: auto; /* puts dropdowns directly under top nav */
	text-align: left; /* needed because IE misapplies text centering to boxes */
	background: url(../images/flyout_indicator.png/bgfix.gif);
	z-index: 200;
	position: absolute;
}
/* Background colour for flyouts, and "sticky hovering" zones for flyouts */
.hnav .dropdown div ul {
	width: 180px;
	z-index: 200;
	position: absolute;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-color: #272727;
	border-left: 1px solid rgba(255,255,255,0.1);
	border-right: 1px solid rgba(255,255,255,0.1);
}
.hnav .dropdown div ul a {
	color: #fff;
} /* Foreground colour for  flyouts */
.hnav .dropdown li {
	position: relative;
	vertical-align: bottom;
	width: 180px;
	text-align: left;
	border: none;
} /* IE5/win bugfix */
.hnav .dropdown li:hover {
} /* hover color effect on dropdown links */
.hnav .dropdown div li:hover {
} /* hover color effect on flyout links */
/* Setup defaults for the second level items (we need one per, so they can be styled differently) */
.hnav .drop1 ul {
}
.hnav .drop2 ul {
}
.hnav .drop3 ul {
}
.hnav .drop4 ul {
}
.hnav .drop5 ul {
}
.hnav .drop6 ul {
}
.hnav .drop7 ul {
}
.hnav .drop8 ul {
}
.hnav .drop9 ul {
}
.hnav .drop10 ul {
}
.hnav .drop11 ul {
}
.hnav .drop12 ul {
}
.hnav .drop13 ul {
}
.hnav .drop14 ul {
}
.hnav .drop15 ul {
}
.hnav .drop16 ul {
}
.hnav .drop17 ul {
}
.hnav .drop18 ul {
}
.hnav .drop19 ul {
}
.hnav .drop20 ul {
}
.hnav .drop21 ul {
}
.hnav .drop22 ul {
}
.hnav .drop23 ul {
}
.hnav .drop24 ul {
}
.hnav .drop25 ul {
}
/* Setup styles for the third level items... with a cascade to keep it simple */

.hnav .drop1 ul div ul {
}
/******************************************************** 
 * Vertical Side-Bar Menu Styles (most of them anyway)  * 
 ********************************************************/

/* Container div, mainly used to cascade defaults so that multiple menus 
   can coexist on a single /* Container div, mainly used to cascade defaults so that multiple menus 
   can coexist on a single page without having to share a layout and design. */

.vnav .xcsstitle {
	display: none;
}
.vnav {
	position: relative;
	border: 0px;
	border-width: 0px 0;
	text-align: left;
	font-family: 'Bitter', serif;
	z-index: 10;
	width: 100%;
}
.vnav a {
	display: block;
	color: #000;
	font-weight: normal;
	font-size: 15px;
	font-family: 'Bitter', serif;
	text-decoration: none;
	padding-top: 13px;
	padding-bottom: 13px;
	padding-right: 0px;
	border: 0px;   /* makes the dividers between the top nav links */
	line-height: 22px;
	padding-left: 15px;
}
.vnav a .activebutton {
	color: #000 !important;
}
.vnav a:hover {
	color: #000;
	font-weight: bold;
}
/* borders the bottoms of the dropdown and flyout links */
.vnav ul ul a {
	color: #000;
	font-weight: normal;
}
.vnav .button {
	float: left;
	z-index: 0;
	color: #000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
	padding-right: 0px;
	padding-left: 0px;
	width: 230px;
}
.vnav .button:hover {
	color: #000;
	font-weight: bold;
	background-color: none;
}
/* Setup the currently active button to look different. Optional, but nice */
.vnav .activebutton {
	float: left;
	font-weight: bold;
	color: #000 !important;
	background-color: none;
}
.vnav .button .dropdown {
	display: none;
}
.vnav .activebutton .dropdown {
	display: block;
	color: #fff !important;
}
/* borders the bottoms of the dropdown and flyout links */
.vnav .dropdown li {
	color: #000 !important;
}
.vnav .dropdown a {
	display: block;
	color: #000;
	font-family: 'Bitter', serif;
	font-size: 14px;
	font-weight: normal;
	text-transform: none;
	text-align: left;
	padding-bottom: 10px;
	padding-top: 10px;
	padding-left: 30px;
	padding-right: 0px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #666;
	width: 200px;
	background-color: none;
	background-image: url(../../images/dropnav_bullet.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.vnav .dropdown a:hover {
	display: block;
	color: #000;
	font-family: 'Bitter', serif;
	font-size: 14px;
	font-weight: bold;
	background-color: none;
}
/* This is the arrow shown in the top level, where there is a fly-out level of menu */
.vnav a.navarrow {
	background: url(../../images/dropdown_indicator.png) no-repeat right center;
}
/* This is the arrow shown in the fly-out where there is a third level of menu */
.vnav a.subarrow {
	background-image: url(../../images/dropdown_indicator.png);
	background-repeat: no-repeat;
	background-position: right center;
}
/* Hide the dot on unordered lists */
.vnav ul, .vnav li {
	padding: 0px;
	margin: 0px;
	list-style: none;
}
.vnav .parent div.dropdown {
	color: #000 !important;
} /* hover rule for 1st flyouts */
/* hover rule for 2nd flyouts */
.vnav .dropdown li:hover div {
	left: 0px; /* this value controls the amount of flyout "overlap" */
	top: 0px; /* this value controls the amount of flyout vertical offset */
}
.vnav .parent {
	position: relative;
}
.vnav .parent:hover {
	background-image: url(/images/bgfix.gif);
}
/* Could be different for each of the container navs... hnav, vnav, etc. */
.vnav .dropdown {
	position: relative;
	left: 0px;
	top: 0px; /* puts dropdowns directly under top nav */
	text-align: left; /* needed because IE misapplies text centering to boxes */
	background: url(/images/bgfix.gif);
	width: 175px;
}
/* The margins on the UL's replace the div paddings to create "sticky hovering"
zones,  and the margins should "fill" the divs, making the IE BG fix unnecessary.
Unfortunately the BG fix is still needed, although this method does eliminate
possible box model problems */
.vnav .dropdown ul {
	position: relative;
	margin: 0 0px 0px 0px; /* creates "sticky hovering" zones for dropdowns */
}
/* rules for divs inside dropdown */
.vnav .dropdown div {
	position: relative;
	left: 0px;
	top: auto;
	background: url(/images/bgfix.gif);
	text-align: left; /* needed because IE misapplies text centering to boxes */
	display: block;
	color: #000;
}
/* Background colour for flyouts, and "sticky hovering" zones for flyouts */
.vnav .dropdown div ul {
	margin: 0px 0px 0px 0;
}
.vnav .dropdown div ul a {
	color: #000;
	background-image: none;
} /* Foreground colour for  flyouts */
.vnav .dropdown li {
	position: relative;
	vertical-align: bottom;
	color: #fff;
} /* IE5/win bugfix */
.vnav .dropdown li:hover {
} /* hover color effect on dropdown links */
.vnav .dropdown div li:hover {
} /* hover color effect on flyout links */
/* Setup defaults for the second level items (we need one per, so they can be styled differently) */
.vnav .drop1 ul {
}
.vnav .drop2 ul {
}
.vnav .drop3 ul {
}
.vnav .drop4 ul {
}
.vnav .drop5 ul {
}
.vnav .drop6 ul {
}
.vnav .drop7 ul {
}
.vnav .drop8 ul {
}
.vnav .drop9 ul {
}
.vnav .drop10 ul {
}
.vnav .drop11 ul {
}
.vnav .drop12 ul {
}
.vnav .drop13 ul {
}
.vnav .drop14 ul {
}
.vnav .drop15 ul {
}
.vnav .drop16 ul {
}
.vnav .drop17 ul {
}
.vnav .drop18 ul {
}
.vnav .drop19 ul {
}
.vnav .drop20 ul {
}
.vnav .drop21 ul {
}
.vnav .drop22 ul {
}
.vnav .drop23 ul {
}
.vnav .drop24 ul {
}
.vnav .drop25 ul {
}
/* Setup styles for the third level items... with a cascade to keep it simple */
.vnav .drop4 ul div ul {
}
/******************************************************** 
 * Common/Shared Dropdown Menu Styles                   * 
 ********************************************************/

/* this parent div does not provide "sticky hovering", but instead fixes a 
strange bug in Op7. When an element serves as a hovered popup "parent" element, 
that element must not also be floated or all heck breaks loose in Opera 7. 
To prevent this, we have floated the top level list items, while nesting 
hoverable parent divs inside that are then hovered to generate the dropdowns. */

/******************************************************** 
 * Misc Styles and IE Fixes                             * 
 ********************************************************/

.floatfix {
	margin-right: -3px;
}
/* this fixes the IE 3px bug that is common in this type of float arrangement */ 

/* This is to hide the following from IE/Mac. \*/
*html .button .dropdown li {
	height: 1%;
	margin-left: -16px;
	mar\gin-left: 0;
}
/* */

/* The first rule above fixes "bullet region" problems in IE5.x/win, 
and the 2nd is to make all links fully clickable. */    

/*\*/ /*/
.hnav .dropdown, .hnav .dropdown div {width: 189px;}
.hnav .button .dropdown ul {margin: 0px;}
.hnav .dropdown, .hnav .dropdown div {position: static;}
.hnav .dropdown ul {border: 0;}

.vnav .dropdown, .vnav .dropdown div {width: 189px; top: -30px}
.vnav .button .dropdown ul {margin: 0px;}
.vnav .dropdown, .vnav .dropdown div {position: static;}
.vnav .dropdown ul {border: 0;}
/* */

.menu-trigger {
	display: none;
}
.mp-arrow {
	display: none;
}
 @media (max-width: 1155px) {
.hnav a {
	height: 36px;
	display: block;
	color: #fff;
	text-decoration: none;
	font-weight: normal;
	font-size: 1.55vw;
	padding-right: 1.4vw;
	padding-left: 1.4vw;
	font-family: 'Bitter', serif;
	vertical-align: middle;
	padding-top: 14px;
	padding-bottom: 0px;
	text-transform: none;
	letter-spacing: 0px;
}
}
