/* panorMenu */
#barit {
	display: none;
	margin: 0 0 0 9px;
}
.barit,
.barit.hide {
	clear: both;
	display: block;
	text-align: center;
}
.barit span {
	display: block;
	clear: both;
	margin: 0px 0 3px;
	padding: 0;
	width: 18px;
	height: 2px;
	text-align: center;
	cursor: pointer;
	border-radius: 4px;
	background: #4F71C6;
}
.barit span:hover {
	background: #A58495
}
.barit.hide {
	margin-top: 14px;
	width: 18px;
	height: 2px;
}
.barit.hide span.bar1 {
	transform: rotate(45deg);
}
.barit.hide span.bar3 {
	transform: rotate(-45deg);
  	margin-top: -5.2px;
}
.barit.hide span.bar2 {
	display: none;
}
div.clearb {
	clear: both;
	margin: 0px;
}
/* Unless you know what you do, do not touch this */
#primary-nav li {
	display: inline-block;
	padding: 0;
	margin: 0 0 0 2px;
}
/* Set the width of the menu elements at second level. Leaving first level flexible. */
#primary-nav {
	float: left;
	margin: 10px 0 0 10px;
	padding: 0px;
}
#primary-nav ul {
	position: absolute;
	list-style: none;
	top: 58px;
	width: 200px;
	margin: 0px;
	padding: 0px;
	display: none;
	background-color: #f2f2f2;
}
#primary-nav ul ul {
	margin-top: 1px;
	margin-left: -1px;
	left: 100%;
	top: 0px;
}
#primary-nav li li {
	position: relative;
	width: 200px;
	float: none;
}
#primary-nav li li {
	margin-left: 0px;
	margin-top: -2px;
	float: none;
	position: relative;
	z-index: 5;
}
/* Styling the basic apperance of the menu elements */
#primary-nav li a {
	float: left;
	margin: 0;
	padding: 5px 14px 25px 11px;
	text-decoration: none;
	color: #CB231F;
	font-size: 12px;
	border-radius: 10px 10px 0 0;
  box-shadow: 0 0 1px 1.5px #D3D3D3, inset 0px 10px 4px 2px rgba(234,234,234,0.5);
}
#primary-nav li a:hover {
  box-shadow: 0 0 1px 1.5px #D3D3D3;
	text-decoration: none;
	color: #000;
}
#primary-nav li.menuactive a {
	text-decoration: none;
	color: #000;
  box-shadow: 0 0 1px 1.5px #D3D3D3;
}
#primary-nav li.menuactive a:hover {
	color: #CB231F;
}
#primary-nav ul.unli li a {
	display: block;
	width: 180px;
	padding: 5px 10px;
	text-decoration: none;
	border: none;
	border-radius: initial;
	box-shadow: initial;
	color: #000000;
}
#primary-nav ul.unli li a:hover {
	border: none;
  box-shadow: initial;
	text-decoration: none;
	color: #CB231F;
}
#primary-nav ul.unli li.menuactive a {
	text-decoration: none;
	color: #000000;
  box-shadow: initial;
}
#primary-nav ul.unli li a.menuactive {
	text-decoration: underline;
	color: #CB231F;
}
/* Styling the basic apperance of the active page elements (shows what page in the menu is being displayed) */
#primary-nav ul li.menuactive a.menuactive.parent {
	background-image: url(/modules/MenuManager/images/arrow.gif);
	background-position: center right;
	background-repeat: no-repeat
}
/* Styling the basic apperance of the menuparents - here styled the same on hover (fixes IE bug) */
#primary-nav ul li.menuparent a.menuparent,
#primary-nav ul li.menuparent a.menuparent:hover {
	background-image: url(/modules/MenuManager/images/arrow.gif);
	background-position: center right;
	background-repeat: no-repeat;
}
/* Styling the apperance of menu items on hover */
#primary-nav li:hover {
}
/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */
#primary-nav ul,
#primary-nav li:hover ul,
#primary-nav li:hover ul ul,
#primary-nav li:hover ul ul ul {
	display: none;
}
#primary-nav li:hover ul,
#primary-nav ul li:hover ul,
#primary-nav ul ul li:hover ul,
#primary-nav ul ul ul li:hover ul {
	display: block;
}
/* panorMenu */