<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face { font-family: 'FormalScrp421 BT'; src: local('â˜º'), url('../style/fonts/formal-script-421-bt_-allfont.net--2.ttf') format('truetype'); }
#imContentGraphics { background: transparent url('../images/muraciclopiche_j72rtvy6.jpg') repeat left top; background-attachment: scroll;}
h2#imPgTitle { position: relative; float: left; }
#imBreadcrumb { position: relative; float: left; }
#imHeader_imCell_1 { display: block; position: relative; }
#imHeader_imCellStyle_1 { position: relative; box-sizing: border-box; text-align: center; z-index: 2;}
#imHeader_imCellStyleGraphics_1 { position: absolute; top: 0px; bottom: 0px; background-color: transparent; }
#imHeader_imObjectImage_01 { width: 100%; vertical-align: top; }
#imHeader_imCell_2 { display: block; position: relative; }
#imHeader_imCellStyle_2 { position: relative; box-sizing: border-box; text-align: center; z-index: 2;}
#imHeader_imCellStyleGraphics_2 { position: absolute; top: 0px; bottom: 0px; background-color: transparent; }
&lt;script type="text/javascript"&gt;
// CREDITS:
// Dynamic Countdown Player
// by Peter Gehrig
// Copyright (c) 2004 Peter Gehrig and Urs Dudli. All rights reserved.
// Permission given to use the script provided that this notice remains as is.
// Additional scripts can be found at http://Sito Sparito dalla rete
// info@24fun.com
// 2/28/2004
// prelevato ed illustrato su http://www.web-link.it

// IMPORTANT:
// If you add this script to a script-library or a script-archive
// you have to insert a link to http://Sito Sparito dalla rete 
// right into the webpage where the script will be displayed.

var futureyear=2016
var futuremonth=2
var futureday=25
var displaytype="vediall"
var digitordate="isdate"
var aftercountdown="stopit"
var digitfrom=100
var digitto=0
var speed=1

var countdownid=new Array()
var futuredate
var nowdate
var resultoreraw
var resultore
var resultminutiraw
var resultminuti
var resultsecondiraw
var resultsecondi

var p_secondi
var p_minuti
var p_ore
var p_giorni

var resultsecondionly
var resultminutionly
var resultoreonly
var content

var i_countdown=-1
var countdownid

var step=1
speed*=1000

if (digitfrom&gt;digitto) {step=-1}
if (digitfrom&lt;digitto) {step=1}

var browserinfos=navigator.userAgent 
var ns4=document.layers
var ie4=!document.getElementById&amp;&amp;document.all&amp;&amp;!browserinfos.match(/Opera/)
var ie5=document.getElementById&amp;&amp;document.all&amp;&amp;!browserinfos.match(/Opera/)
var ns6=document.getElementById&amp;&amp;!document.all&amp;&amp;!browserinfos.match(/Opera/)
var opera=browserinfos.match(/Opera/)  

function setfuturedate() {
	futuredate=new Date(futureyear,futuremonth,futureday,0,0,0)
	if (digitordate=="isdigit") {content=digitfrom-step	}
	docountdown()
}

function docountdown() {
	if (digitordate=="isdate") {
		calculateresults()
		formatresults()
		displayresults()
		setTimeout("docountdown()",speed)
	}
	else if (digitordate=="isdigit") {
		content+=step	
		displayresults()
		if (content==digitto) {
			setTimeout("happensafter()",speed)
		}
		else {
			setTimeout("docountdown()",speed)
		}
	}
}

function firstcountdown() {
	if (digitordate=="isdate") {
		futuredate=new Date(futureyear,futuremonth,futureday,0,0,0)
		calculateresults()
		formatresults()
	}
	else if (digitordate=="isdigit") {
		content=digitfrom
	}
}

function calculateresults() {
nowdate=new Date()
resultgiorniraw=(Date.parse(futuredate)-Date.parse(nowdate))/1000/60/60/24
if (displaytype!="vediall") {
	resultsecondionly=Math.floor((Date.parse(futuredate)-Date.parse(nowdate))/1000)
	resultminutionly=Math.floor((Date.parse(futuredate)-Date.parse(nowdate))/1000/60)
	resultoreonly=Math.floor((Date.parse(futuredate)-Date.parse(nowdate))/1000/60/60)
}
else {
	resultgiorni=Math.floor((Date.parse(futuredate)-Date.parse(nowdate))/1000/60/60/24)
	resultoreraw=(resultgiorniraw-resultgiorni)*24
	resultore=Math.floor((resultgiorniraw-resultgiorni)*24)
	resultminutiraw=(resultoreraw-resultore)*60
	resultminuti=Math.floor((resultoreraw-resultore)*60)
	resultsecondiraw=(resultminutiraw-resultminuti)*60
	resultsecondi=Math.floor((resultminutiraw-resultminuti)*60)
	}
}

function formatresults() {
	if (displaytype=="vediall") {
		if (resultgiorni&gt;1) {p_giorni="giorni"}
		else {p_giorni="day"}
		if (resultminuti&lt;10) {resultminuti="0"+resultminuti}
		if (resultsecondi&lt;10) {resultsecondi="0"+resultsecondi}
		content=resultgiorni+" "+p_giorni+" "+resultore+"h "+resultminuti+"m "+resultsecondi +"s"
	}
	else if (displaytype=="vedigiorni") {
		if (resultgiorni&gt;1) {p_giorni="giorni"}
		else {p_giorni="day"}
		content=resultgiorni+" "+p_giorni
	}
	else if (displaytype=="vediore") {
		content=resultoreonly+" Ore"
	}
	else if (displaytype=="vediminuti") {
		content=resultminutionly+" min"
	}
	else if (displaytype=="vedisecondi") {
		content=resultsecondionly+" sec"
	}
}

function happensafter() {
	if (aftercountdown=="repeatit") {
		if (digitordate=="isdigit") {content=digitfrom-step}
		docountdown()
	}
	if (aftercountdown!="stopit" &amp;&amp; aftercountdown!="repeatit") {
		document.location.href=aftercountdown
	}
}

function displayresults() {
	if (ie4) {
		for (i=0;i&lt;=countdownid.length-1;i++) {
			var thisclock=eval(countdownid[i])
			thisclock.innerHTML=content
		}
	}
	else {
		for (i=0;i&lt;=countdownid.length-1;i++) {
			document.getElementById(countdownid[i]).innerHTML=content
		}
	}
}

function setcountdown() {
	if (ns4 || ie4 || ie5 || ns6 || opera) {
		firstcountdown()
		i_countdown++
		countdownid[i_countdown]="countdown"+i_countdown
		document.write("&lt;span id='"+countdownid[i_countdown]+"' style='position:relative'&gt;"+content+"&lt;/span&gt;")
	}
}

if (ie4 || ie5 || ns6 || opera) {
	onload=setfuturedate
}
&lt;/script&gt;


#imHeader_imCell_3 { display: block; position: relative; }
#imHeader_imCellStyle_3 { position: relative; box-sizing: border-box; text-align: center; z-index: 2;}
#imHeader_imCellStyleGraphics_3 { position: absolute; top: 0px; bottom: 0px; background-color: transparent; }
#imHeader_imObjectImage_03 { width: 100%; vertical-align: top; }
#imHeader_imCell_4 { display: block; position: relative; }
#imHeader_imCellStyle_4 { position: relative; box-sizing: border-box; text-align: center; z-index: 2;}
#imHeader_imCellStyleGraphics_4 { position: absolute; top: 0px; bottom: 0px; background-color: transparent; }
#imHeader_imCell_5 { display: block; position: relative; }
#imHeader_imCellStyle_5 { position: relative; box-sizing: border-box; text-align: center; z-index: 102;}
#imHeader_imCellStyleGraphics_5 { position: absolute; top: 0px; bottom: 0px; background-color: transparent; }
.label-wrapper .menu-item-icon {
max-height: 100%; position: absolute; top: 0; bottom: 0; left: 3px; margin: auto; z-index: 0; 
}
.im-menu-opened #imStickyBarContainer, .im-menu-opened #imPageToTop { display: none !important; }
#imFooter_imCell_1 { display: block; position: relative; }
#imFooter_imCellStyle_1 { position: relative; box-sizing: border-box; text-align: center; z-index: 2;}
#imFooter_imCellStyleGraphics_1 { position: absolute; top: 0px; bottom: 0px; background-color: transparent; }
#imSideBar_imCell_1 { display: block; position: relative; }
#imSideBar_imCellStyle_1 { position: relative; box-sizing: border-box; text-align: center; z-index: 102;}
#imSideBar_imCellStyleGraphics_1 { position: absolute; top: 0px; bottom: 0px; background-color: transparent; }
.label-wrapper .menu-item-icon {
max-height: 100%; position: absolute; top: 0; bottom: 0; left: 3px; margin: auto; z-index: 0; 
}
.im-menu-opened #imStickyBarContainer, .im-menu-opened #imPageToTop { display: none !important; }
#imStickyBar_imCell_1 { display: block; position: relative; }
#imStickyBar_imCellStyle_1 { position: relative; box-sizing: border-box; text-align: center; z-index: 2;}
#imStickyBar_imCellStyleGraphics_1 { position: absolute; top: 0px; bottom: 0px; background-color: transparent; }
#imStickyBar_imObjectTitle_01 {overflow: hidden; text-align: center; }
#imStickyBar_imObjectTitle_01_text {font: normal normal normal 22pt 'FormalScrp421 BT';  padding: 0px 0px 0px 0px;background-color: transparent; position: relative; display: inline-block; }
#imStickyBar_imObjectTitle_01_text,
#imStickyBar_imObjectTitle_01_text a { color: rgba(255, 255, 255, 1); white-space: pre; }
#imStickyBar_imObjectTitle_01_text a{ text-decoration: none; }
#imStickyBar_imCell_2 { display: block; position: relative; }
#imStickyBar_imCellStyle_2 { position: relative; box-sizing: border-box; text-align: center; z-index: 102;}
#imStickyBar_imCellStyleGraphics_2 { position: absolute; top: 0px; bottom: 0px; background-color: transparent; }
.label-wrapper .menu-item-icon {
max-height: 100%; position: absolute; top: 0; bottom: 0; left: 3px; margin: auto; z-index: 0; 
}
.im-menu-opened #imStickyBarContainer, .im-menu-opened #imPageToTop { display: none !important; }
#imGroup_1 { float: left; }
#imGroup_2 &gt; div { float: right; }
#imGroup_3 &gt; div { float: left; }
#imGroup_4 &gt; div { float: left; }
#imCell_3 { display: block; position: relative; }
#imCellStyle_3 { position: relative; box-sizing: border-box; text-align: center; z-index: 2;}
#imCellStyleGraphics_3 { position: absolute; top: 3px; bottom: 3px; background-color: transparent; }
#imTextObject_85_03 { font-style: normal; font-weight: normal; line-height: 22px; }
#imTextObject_85_03_tab0 div { line-height: 22px;}
#imTextObject_85_03_tab0 ul { list-style: disc; margin: 0; padding: 0; overflow: hidden; }
#imTextObject_85_03_tab0 ul ul { list-style: square; padding: 0 0 0 20px; }
#imTextObject_85_03_tab0 ul ul ul { list-style: circle; }
#imTextObject_85_03_tab0 ul li { margin: 0 0 0 22px; padding: 0px; }
#imTextObject_85_03_tab0 ol { list-style: decimal; margin: 0; padding: 0; }
#imTextObject_85_03_tab0 ol ol { list-style: lower-alpha; padding: 0 0 0 20px; }
#imTextObject_85_03_tab0 ol li { margin: 0 0 0 22px; padding: 0px; }
#imTextObject_85_03_tab0 blockquote { margin: 0 0 0 15px; padding: 0; border: none; }
#imTextObject_85_03_tab0 table { border: none; padding: 0; border-collapse: collapse; }
#imTextObject_85_03_tab0 table td { border: 1px solid black; word-wrap: break-word; padding: 4px 3px 4px 3px; margin: 0; vertical-align: middle; }
#imTextObject_85_03_tab0 p { margin: 0; padding: 0; }
#imTextObject_85_03_tab0 .inline-block { display: inline-block; }
#imTextObject_85_03_tab0 sup { vertical-align: super; font-size: smaller; }
#imTextObject_85_03_tab0 sub { vertical-align: sub; font-size: smaller; }
#imTextObject_85_03_tab0 img { border: none; margin: 0; vertical-align: text-bottom;}
#imTextObject_85_03_tab0 .fleft { float: left; vertical-align: baseline;}
#imTextObject_85_03_tab0 .fright { float: right; vertical-align: baseline;}
#imTextObject_85_03_tab0 img.fleft { margin-right: 15px; }
#imTextObject_85_03_tab0 img.fright { margin-left: 15px; }
#imTextObject_85_03_tab0 .imUl { text-decoration: underline; }
#imTextObject_85_03_tab0 .imStrike { text-decoration: line-through; }
#imTextObject_85_03_tab0 .imUlStrike { text-decoration: underline line-through; }
#imTextObject_85_03_tab0 .imVt { vertical-align: top; }
#imTextObject_85_03_tab0 .imVc { vertical-align: middle; }
#imTextObject_85_03_tab0 .imVb { vertical-align: bottom; }
#imTextObject_85_03_tab0 hr { border-width: 1px 0 0 0; border-style: solid; }
#imTextObject_85_03_tab0 .fs18 { vertical-align: baseline; font-size: 18pt;  }
#imTextObject_85_03_tab0 .ff1 { font-family: 'FormalScrp421 BT'; }
#imTextObject_85_03_tab0 .cf1 { color: rgb(192, 0, 0); }
#imTextObject_85_03_tab0 .fs24 { vertical-align: baseline; font-size: 24pt;  }
#imTextObject_85_03 .text-container {margin: 0 auto; position: relative; overflow: hidden;  background-color: rgba(255, 255, 255, 1);  }
#imGroup_5 &gt; div { float: right; }
#imGroup_6 &gt; div { float: left; }
#imCell_1 { display: block; position: relative; }
#imCellStyle_1 { position: relative; box-sizing: border-box; text-align: center; z-index: 2;}
#imCellStyleGraphics_1 { position: absolute; top: 3px; bottom: 3px; background-color: transparent; }
#imObjectImage_85_01 { width: 100%; vertical-align: top; max-width: 325px; }
#imGroup_7 &gt; div { float: left; }
#imGroup_10 &gt; div { float: left; }
#imGroup_13 &gt; div { float: left; }
#imGroup_16 &gt; div { float: left; }
#imGroup_19 &gt; div { float: left; }
#imGroup_22 &gt; div { float: left; }
#imGroup_25 &gt; div { float: right; }
#imGroup_26 &gt; div { float: left; }
#imGroup_27 &gt; div { float: left; }
#imCell_4 { display: block; position: relative; }
#imCellStyle_4 { position: relative; box-sizing: border-box; text-align: center; z-index: 2;}
#imCellStyleGraphics_4 { position: absolute; top: 3px; bottom: 3px; background-color: transparent; }
#imTextObject_85_04 { font-style: normal; font-weight: normal; line-height: 22px; }
#imTextObject_85_04_tab0 div { line-height: 22px;}
#imTextObject_85_04_tab0 ul { list-style: disc; margin: 0; padding: 0; overflow: hidden; }
#imTextObject_85_04_tab0 ul ul { list-style: square; padding: 0 0 0 20px; }
#imTextObject_85_04_tab0 ul ul ul { list-style: circle; }
#imTextObject_85_04_tab0 ul li { margin: 0 0 0 22px; padding: 0px; }
#imTextObject_85_04_tab0 ol { list-style: decimal; margin: 0; padding: 0; }
#imTextObject_85_04_tab0 ol ol { list-style: lower-alpha; padding: 0 0 0 20px; }
#imTextObject_85_04_tab0 ol li { margin: 0 0 0 22px; padding: 0px; }
#imTextObject_85_04_tab0 blockquote { margin: 0 0 0 15px; padding: 0; border: none; }
#imTextObject_85_04_tab0 table { border: none; padding: 0; border-collapse: collapse; }
#imTextObject_85_04_tab0 table td { border: 1px solid black; word-wrap: break-word; padding: 4px 3px 4px 3px; margin: 0; vertical-align: middle; }
#imTextObject_85_04_tab0 p { margin: 0; padding: 0; }
#imTextObject_85_04_tab0 .inline-block { display: inline-block; }
#imTextObject_85_04_tab0 sup { vertical-align: super; font-size: smaller; }
#imTextObject_85_04_tab0 sub { vertical-align: sub; font-size: smaller; }
#imTextObject_85_04_tab0 img { border: none; margin: 0; vertical-align: text-bottom;}
#imTextObject_85_04_tab0 .fleft { float: left; vertical-align: baseline;}
#imTextObject_85_04_tab0 .fright { float: right; vertical-align: baseline;}
#imTextObject_85_04_tab0 img.fleft { margin-right: 15px; }
#imTextObject_85_04_tab0 img.fright { margin-left: 15px; }
#imTextObject_85_04_tab0 .imUl { text-decoration: underline; }
#imTextObject_85_04_tab0 .imStrike { text-decoration: line-through; }
#imTextObject_85_04_tab0 .imUlStrike { text-decoration: underline line-through; }
#imTextObject_85_04_tab0 .imVt { vertical-align: top; }
#imTextObject_85_04_tab0 .imVc { vertical-align: middle; }
#imTextObject_85_04_tab0 .imVb { vertical-align: bottom; }
#imTextObject_85_04_tab0 hr { border-width: 1px 0 0 0; border-style: solid; }
#imTextObject_85_04_tab0 .fs18 { vertical-align: baseline; font-size: 18pt;  }
#imTextObject_85_04_tab0 .cf1 { color: rgb(192, 0, 0); }
#imTextObject_85_04_tab0 .ff1 { font-family: 'FormalScrp421 BT'; }
#imTextObject_85_04 .text-container {margin: 0 auto; position: relative; overflow: hidden;  background-color: rgba(255, 255, 255, 1);  }
#imCell_2 { display: block; position: relative; }
#imCellStyle_2 { position: relative; box-sizing: border-box; text-align: center; z-index: 2;}
#imCellStyleGraphics_2 { position: absolute; top: 3px; bottom: 3px; background-color: transparent; }
#imGroup_28 &gt; div { float: left; }
#imGroup_31 &gt; div { float: left; }
@media (min-width: 1050px) {
	.imContentDataContainer { width: 1037px; margin-left: auto; margin-right: auto; padding: 0 5px 0 5px; }
	#imPgTitle { width: 1033px; margin-left: 1px; margin-right: 1px; }
	#imBreadcrumb { width: 1023px; margin-left: 6px; margin-right: 6px; }
	#imGroup_1 { width: 100%; }
	#imGroup_2 { width: 1037px; }
	#imGroup_3 { width: 830px; }
	#imGroup_4 { width: 623px; }
	#imCell_3 { width: 617px; min-height: 33px;  padding-top: 3px; padding-bottom: 3px; padding-left: 3px; padding-right: 3px; }
	#imCellStyle_3 { width: 617px; min-height: 33px; padding: 3px 3px 3px 3px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imCellStyleGraphics_3 { left: 3px; right: 3px; }
	#imTextObject_85_03 .text-container {border-style: solid; border-color: rgba(169, 169, 169, 1); border-width: 0 1px 1px 1px;width: 100%; box-sizing: border-box;}
	#imTextObject_85_03 .text-container { height: 27px;}
	#imGroup_5 { width: 623px; }
	#imGroup_6 { width: 414px; }
	#imCell_1 { width: 202px; min-height: 289px;  padding-top: 3px; padding-bottom: 3px; padding-left: 3px; padding-right: 3px; }
	#imCellStyle_1 { width: 202px; min-height: 289px; padding: 3px 3px 3px 3px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imCellStyleGraphics_1 { left: 3px; right: 3px; }
	#imGroup_7 { width: 206px; }
	#imGroup_8 { width: 206px; height: 0px; }
	#imGroup_9 { width: 206px; height: 295px; }
	#imGroup_10 { width: 209px; }
	#imGroup_11 { width: 209px; height: 0px; }
	#imGroup_12 { width: 209px; height: 295px; }
	#imGroup_13 { width: 207px; }
	#imGroup_14 { width: 207px; height: 39px; }
	#imGroup_15 { width: 207px; height: 0px; }
	#imGroup_16 { width: 207px; }
	#imGroup_17 { width: 102px; height: 295px; }
	#imGroup_18 { width: 105px; height: 295px; }
	#imGroup_19 { width: 207px; }
	#imGroup_20 { width: 207px; height: 39px; }
	#imGroup_21 { width: 207px; height: 0px; }
	#imGroup_22 { width: 207px; }
	#imGroup_23 { width: 102px; height: 295px; }
	#imGroup_24 { width: 105px; height: 295px; }
	#imGroup_25 { width: 1037px; }
	#imGroup_26 { width: 935px; }
	#imGroup_27 { width: 830px; }
	#imCell_4 { width: 824px; min-height: 30px;  padding-top: 3px; padding-bottom: 3px; padding-left: 3px; padding-right: 3px; }
	#imCellStyle_4 { width: 824px; min-height: 30px; padding: 3px 3px 3px 3px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imCellStyleGraphics_4 { left: 3px; right: 3px; }
	#imTextObject_85_04 .text-container {border-style: solid; border-color: rgba(169, 169, 169, 1); border-width: 0 1px 1px 1px;width: 100%; box-sizing: border-box;}
	#imTextObject_85_04 .text-container { height: 24px;}
	#imCell_2 { width: 824px; min-height: 356px;  padding-top: 3px; padding-bottom: 3px; padding-left: 3px; padding-right: 3px; }
	#imCellStyle_2 { width: 824px; min-height: 356px; padding: 3px 3px 3px 3px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imCellStyleGraphics_2 { left: 3px; right: 3px; }
	#imGroup_28 { width: 105px; }
	#imGroup_29 { width: 105px; height: 36px; }
	#imGroup_30 { width: 105px; height: 362px; }
	#imGroup_31 { width: 102px; }
	#imGroup_32 { width: 102px; height: 36px; }
	#imGroup_33 { width: 102px; height: 362px; }
	
}

@media (max-width: 1049px) and (min-width: 720px) {
	.imContentDataContainer { width: 580px; margin-left: auto; margin-right: auto; padding: 0 5px 0 135px; }
	#imPgTitle { width: 576px; margin-left: 1px; margin-right: 1px; }
	#imBreadcrumb { width: 566px; margin-left: 6px; margin-right: 6px; }
	#imGroup_1 { width: 100%; }
	#imGroup_2 { width: 580px; }
	#imGroup_3 { width: 464px; }
	#imGroup_4 { width: 348px; }
	#imCell_3 { width: 344px; min-height: 33px;  padding-top: 3px; padding-bottom: 3px; padding-left: 2px; padding-right: 2px; }
	#imCellStyle_3 { width: 344px; min-height: 33px; padding: 3px 3px 3px 3px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imCellStyleGraphics_3 { left: 2px; right: 2px; }
	#imTextObject_85_03 .text-container {border-style: solid; border-color: rgba(169, 169, 169, 1); border-width: 0 1px 1px 1px;width: 100%; box-sizing: border-box;}
	#imTextObject_85_03 .text-container { height: 27px;}
	#imGroup_5 { width: 348px; }
	#imGroup_6 { width: 231px; }
	#imCell_1 { width: 112px; min-height: 159px;  padding-top: 3px; padding-bottom: 3px; padding-left: 2px; padding-right: 2px; }
	#imCellStyle_1 { width: 112px; min-height: 159px; padding: 3px 3px 3px 3px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imCellStyleGraphics_1 { left: 2px; right: 2px; }
	#imGroup_7 { width: 115px; }
	#imGroup_8 { width: 115px; height: 0px; }
	#imGroup_9 { width: 115px; height: 165px; }
	#imGroup_10 { width: 117px; }
	#imGroup_11 { width: 117px; height: 0px; }
	#imGroup_12 { width: 117px; height: 165px; }
	#imGroup_13 { width: 116px; }
	#imGroup_14 { width: 116px; height: 39px; }
	#imGroup_15 { width: 116px; height: 0px; }
	#imGroup_16 { width: 116px; }
	#imGroup_17 { width: 57px; height: 165px; }
	#imGroup_18 { width: 59px; height: 165px; }
	#imGroup_19 { width: 116px; }
	#imGroup_20 { width: 116px; height: 39px; }
	#imGroup_21 { width: 116px; height: 0px; }
	#imGroup_22 { width: 116px; }
	#imGroup_23 { width: 57px; height: 165px; }
	#imGroup_24 { width: 59px; height: 165px; }
	#imGroup_25 { width: 580px; }
	#imGroup_26 { width: 523px; }
	#imGroup_27 { width: 464px; }
	#imCell_4 { width: 460px; min-height: 30px;  padding-top: 3px; padding-bottom: 3px; padding-left: 2px; padding-right: 2px; }
	#imCellStyle_4 { width: 460px; min-height: 30px; padding: 3px 3px 3px 3px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imCellStyleGraphics_4 { left: 2px; right: 2px; }
	#imTextObject_85_04 .text-container {border-style: solid; border-color: rgba(169, 169, 169, 1); border-width: 0 1px 1px 1px;width: 100%; box-sizing: border-box;}
	#imTextObject_85_04 .text-container { height: 24px;}
	#imCell_2 { width: 460px; min-height: 356px;  padding-top: 3px; padding-bottom: 3px; padding-left: 2px; padding-right: 2px; }
	#imCellStyle_2 { width: 460px; min-height: 356px; padding: 3px 3px 3px 3px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imCellStyleGraphics_2 { left: 2px; right: 2px; }
	#imGroup_28 { width: 59px; }
	#imGroup_29 { width: 59px; height: 36px; }
	#imGroup_30 { width: 59px; height: 362px; }
	#imGroup_31 { width: 57px; }
	#imGroup_32 { width: 57px; height: 36px; }
	#imGroup_33 { width: 57px; height: 362px; }
	
}

@media (max-width: 719px) and (min-width: 480px) {
	.imContentDataContainer { width: 337px; margin-left: auto; margin-right: auto; padding: 0 5px 0 135px; }
	#imPgTitle { width: 333px; margin-left: 1px; margin-right: 1px; }
	#imBreadcrumb { width: 323px; margin-left: 6px; margin-right: 6px; }
	#imGroup_1 { width: 100%; }
	#imGroup_2 { width: 337px; clear: left; }
	#imGroup_3 { width: 337px; clear: right; }
	#imGroup_4 { width: 337px; clear: left; }
	#imCell_3 { clear: left; }
	#imCell_3 { width: 333px; min-height: 33px;  padding-top: 3px; padding-bottom: 3px; padding-left: 2px; padding-right: 2px; }
	#imCellStyle_3 { width: 333px; min-height: 33px; padding: 3px 3px 3px 3px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imCellStyleGraphics_3 { left: 2px; right: 2px; }
	#imTextObject_85_03 .text-container {border-style: solid; border-color: rgba(169, 169, 169, 1); border-width: 0 1px 1px 1px;width: 100%; box-sizing: border-box;}
	#imTextObject_85_03 .text-container { height: 27px;}
	#imGroup_5 { width: 337px; clear: left; }
	#imGroup_6 { width: 337px; clear: right; }
	#imCell_1 { clear: left; }
	#imCell_1 { width: 331px; min-height: 476px;  padding-top: 3px; padding-bottom: 3px; padding-left: 3px; padding-right: 3px; }
	#imCellStyle_1 { width: 331px; min-height: 476px; padding: 3px 3px 3px 3px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imCellStyleGraphics_1 { left: 3px; right: 3px; }
	#imGroup_7 { width: 337px; clear: left; }
	#imGroup_8 { width: 337px; height: 0px; clear: left; }
	#imGroup_9 { width: 337px; height: 0px; clear: left; }
	#imGroup_10 { width: 337px; clear: right; }
	#imGroup_11 { width: 337px; height: 0px; clear: left; }
	#imGroup_12 { width: 337px; height: 0px; clear: left; }
	#imGroup_13 { width: 337px; clear: left; }
	#imGroup_14 { width: 337px; height: 0px; clear: left; }
	#imGroup_15 { width: 337px; height: 0px; clear: left; }
	#imGroup_16 { width: 337px; clear: left; }
	#imGroup_17 { width: 337px; height: 0px; clear: left; }
	#imGroup_18 { width: 337px; height: 0px; clear: left; }
	#imGroup_19 { width: 337px; clear: right; }
	#imGroup_20 { width: 337px; height: 0px; clear: left; }
	#imGroup_21 { width: 337px; height: 0px; clear: left; }
	#imGroup_22 { width: 337px; clear: left; }
	#imGroup_23 { width: 337px; height: 0px; clear: left; }
	#imGroup_24 { width: 337px; height: 0px; clear: left; }
	#imGroup_25 { width: 337px; clear: left; }
	#imGroup_26 { width: 337px; clear: right; }
	#imGroup_27 { width: 337px; clear: left; }
	#imCell_4 { clear: left; }
	#imCell_4 { width: 335px; min-height: 30px;  padding-top: 3px; padding-bottom: 3px; padding-left: 1px; padding-right: 1px; }
	#imCellStyle_4 { width: 335px; min-height: 30px; padding: 3px 3px 3px 3px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imCellStyleGraphics_4 { left: 1px; right: 1px; }
	#imTextObject_85_04 .text-container {border-style: solid; border-color: rgba(169, 169, 169, 1); border-width: 0 1px 1px 1px;width: 100%; box-sizing: border-box;}
	#imTextObject_85_04 .text-container { height: 24px;}
	#imCell_2 { clear: left; }
	#imCell_2 { width: 335px; min-height: 356px;  padding-top: 3px; padding-bottom: 3px; padding-left: 1px; padding-right: 1px; }
	#imCellStyle_2 { width: 335px; min-height: 356px; padding: 3px 3px 3px 3px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imCellStyleGraphics_2 { left: 1px; right: 1px; }
	#imGroup_28 { width: 337px; clear: left; }
	#imGroup_29 { width: 337px; height: 0px; clear: left; }
	#imGroup_30 { width: 337px; height: 0px; clear: left; }
	#imGroup_31 { width: 337px; clear: right; }
	#imGroup_32 { width: 337px; height: 0px; clear: left; }
	#imGroup_33 { width: 337px; height: 0px; clear: left; }
	
}

@media (max-width: 479px) {
	.imContentDataContainer { width: calc(100% - 0px); padding: 0 0px 0 0px; }
	#imPgTitle { width: 100%; margin-left: 0px; margin-right: 0px; }
	#imBreadcrumb { width: 100%; margin-left: 0px; margin-right: 0px; }
	#imGroup_1 { width: 100%; }
	#imGroup_2 { width: 100%; clear: left; }
	#imGroup_3 { width: 100%; clear: right; }
	#imGroup_4 { width: 100%; clear: left; }
	#imCell_3 { clear: left; }
	#imCell_3 { width: 100%; min-height: 12px;  padding-top: 3px; padding-bottom: 3px; padding-left: 5px; padding-right: 5px; box-sizing: border-box; }
	#imCellStyle_3 { width: 100%; min-height: 0px; padding: 3px 3px 3px 3px; }
	#imCellStyleGraphics_3 { top: 3px; bottom: 3px; left: 5px; right: 5px; }
	#imTextObject_85_03 .text-container {border-style: solid; border-color: rgba(169, 169, 169, 1); border-width: 0 1px 1px 1px;width: 100%; box-sizing: border-box;}
	#imGroup_5 { width: 100%; clear: left; }
	#imGroup_6 { width: 100%; clear: right; }
	#imCell_1 { clear: left; }
	#imCell_1 { width: 100%; min-height: 12px;  padding-top: 3px; padding-bottom: 3px; padding-left: 5px; padding-right: 5px; box-sizing: border-box; }
	#imCellStyle_1 { width: 100%; min-height: 0px; padding: 3px 3px 3px 3px; }
	#imCellStyleGraphics_1 { top: 3px; bottom: 3px; left: 5px; right: 5px; }
	#imGroup_7 { display: none; clear: left; }
	#imGroup_8 { display: none; clear: left; }
	#imGroup_9 { display: none; clear: left; }
	#imGroup_10 { display: none; clear: right; }
	#imGroup_11 { display: none; clear: left; }
	#imGroup_12 { display: none; clear: left; }
	#imGroup_13 { display: none; clear: left; }
	#imGroup_14 { display: none; clear: left; }
	#imGroup_15 { display: none; clear: left; }
	#imGroup_16 { display: none; clear: left; }
	#imGroup_17 { display: none; clear: left; }
	#imGroup_18 { display: none; clear: left; }
	#imGroup_19 { display: none; clear: right; }
	#imGroup_20 { display: none; clear: left; }
	#imGroup_21 { display: none; clear: left; }
	#imGroup_22 { display: none; clear: left; }
	#imGroup_23 { display: none; clear: left; }
	#imGroup_24 { display: none; clear: left; }
	#imGroup_25 { width: 100%; clear: left; }
	#imGroup_26 { width: 100%; clear: right; }
	#imGroup_27 { width: 100%; clear: left; }
	#imCell_4 { clear: left; }
	#imCell_4 { width: 100%; min-height: 12px;  padding-top: 3px; padding-bottom: 3px; padding-left: 5px; padding-right: 5px; box-sizing: border-box; }
	#imCellStyle_4 { width: 100%; min-height: 0px; padding: 3px 3px 3px 3px; }
	#imCellStyleGraphics_4 { top: 3px; bottom: 3px; left: 5px; right: 5px; }
	#imTextObject_85_04 .text-container {border-style: solid; border-color: rgba(169, 169, 169, 1); border-width: 0 1px 1px 1px;width: 100%; box-sizing: border-box;}
	#imCell_2 { clear: left; }
	#imCell_2 { width: 100%; min-height: 12px;  padding-top: 3px; padding-bottom: 3px; padding-left: 5px; padding-right: 5px; box-sizing: border-box; }
	#imCellStyle_2 { width: 100%; min-height: 0px; padding: 3px 3px 3px 3px; }
	#imCellStyleGraphics_2 { top: 3px; bottom: 3px; left: 5px; right: 5px; }
	#imGroup_28 { display: none; clear: left; }
	#imGroup_29 { display: none; clear: left; }
	#imGroup_30 { display: none; clear: left; }
	#imGroup_31 { display: none; clear: right; }
	#imGroup_32 { display: none; clear: left; }
	#imGroup_33 { display: none; clear: left; }
	
}

@media (min-width: 1050px) {
	#imHeader_imObjectImage_01_wrapper { position: absolute; top: -23px; left: 1px; width: 1003px; height: 203px; z-index: 1003; overflow-y: hidden; }
	#imHeader_imObjectImage_01_wrapper img {-webkit-clip-path: inset(0 0 0% 0);clip-path: inset(0 0 0% 0);}#imHeader_imCell_1 { width: 1003px; min-height: 203px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_1 { width: 1003px; min-height: 203px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_1 { left: 0px; right: 0px; }
	#imHeader_imHTMLObject_02_wrapper { position: absolute; top: 147px; left: 54px; width: 1011px; height: 32px; z-index: 1004; overflow-y: hidden; }
	#imHeader_imCell_2 { width: 1011px; min-height: 30px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_2 { width: 1011px; min-height: 30px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_2 { left: 0px; right: 0px; }
	#imHeader_imObjectImage_03_wrapper { position: absolute; top: 2px; left: 67px; width: 884px; height: 194px; z-index: 1002; overflow-y: hidden; }
	#imHeader_imObjectImage_03_wrapper img {-webkit-clip-path: inset(0 0 -8.38% 0);clip-path: inset(0 0 -8.38% 0);}#imHeader_imCell_3 { width: 884px; min-height: 179px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_3 { width: 884px; min-height: 179px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_3 { left: 0px; right: 0px; }
	#imHeader_imHTMLObject_04_wrapper { display: none; }
	#imHeader_imCell_4 { width: 717px; min-height: 350px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_4 { width: 717px; min-height: 350px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_4 { left: 0px; right: 0px; }
	#imHeader_imMenuObject_05_wrapper { position: absolute; top: 181px; left: 40px; width: 1015px; height: 26px; z-index: 1006;  }
	#imHeader_imCell_5 { width: 1015px; min-height: 34px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_5 { width: 1015px; min-height: 34px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_5 { left: 0px; right: 0px; }
	/* Main menu background */
	#imHeader_imMenuObject_05 { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; background-color: transparent; padding: 0px 0px 0px 0px; }
	/* Main menu button size and position */
	#imHeader_imMenuObject_05 &gt; ul &gt; li {position: relative;margin-left: 3px; margin-top: 0px; display: inline-block; vertical-align: top; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; .label-wrapper, #imHeader_imMenuObject_05 &gt; ul &gt; li &gt; div &gt; .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imHeader_imMenuObject_05 .hamburger-button {cursor: pointer; width: 34px; height: 34px; display: inline-block; vertical-align: top; padding: 0; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imHeader_imMenuObject_05 .hamburger-bar { margin: 3px auto; width: 65%; height: 3px; background-color: rgba(255, 255, 0, 1); }
	#imHeader_imMenuObject_05 .label-inner-wrapper, #imHeader_imMenuObject_05 .hamburger-button &gt; div { display: table; width: 100%; height: 100%; position: relative; z-index: 1; } #imHeader_imMenuObject_05 &gt; ul &gt; li .label, #imHeader_imMenuObject_05 .hamburger-button &gt; div &gt; div { display: table-cell; vertical-align: middle; }
	/* Main menu default button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: url('../images/328DFB0B81E5D2275AF91522FF29A475.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Hamburger button style */
	#imHeader_imMenuObject_05 .hamburger-button {background-color: rgba(12, 76, 114, 1);background-image: url('../images/328DFB0B81E5D2275AF91522FF29A475.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 .hamburger-button .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Main menu current button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu hover button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu separator button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05 .imLevel { cursor: default; }
	#imHeader_imMenuObject_05 { text-align: left;}
	/* Level menu background */
	#imHeader_imMenuObject_05 ul ul { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;  background-color: transparent; }
	/* Level menu button size and position */
	#imHeader_imMenuObject_05 ul ul li {position: relative;margin-bottom: 3px; display: inline-block; vertical-align: top; }
	/* Multiple column menu buttons position */
	#imHeader_imMenuObject_05 .multiple-column &gt; ul {max-width: 120px;}
	#imHeader_imMenuObject_05 ul ul li:last-child {margin-bottom: 0;}
	#imHeader_imMenuObject_05 ul ul .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; }
	#imHeader_imMenuObject_05 ul ul .label { display: table-cell; vertical-align: middle; }
	/* Level menu default button style */
	#imHeader_imMenuObject_05 ul ul .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 ul ul .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Level menu hover button style */
	#imHeader_imMenuObject_05 ul ul li.imLevel:hover &gt; .label-wrapper {background-color: transparent;background-image: url('../images/4AB91901C7D24B9D0E2DDE024B1880AE.png');border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imHeader_imMenuObject_05 ul ul li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05 ul ul li.imPage:hover &gt; .label-wrapper {background-color: transparent;background-image: url('../images/4AB91901C7D24B9D0E2DDE024B1880AE.png');border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imHeader_imMenuObject_05 ul ul li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Level menu separator button style */
	#imHeader_imMenuObject_05 ul ul .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imHeader_imMenuObject_05 ul ul .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Level menu separation line style */
	#imHeader_imMenuObject_05 ul ul { z-index: 2; }/* Level menu show/hide directives */
	#imHeader_imMenuObject_05 .multiple-column {position: absolute; z-index: 2;left: 0;}
	#imHeader_imMenuObject_05 .multiple-column &gt; ul {position: static;
	display: inline-block;vertical-align: top;}
	#imHeader_imMenuObject_05 .multiple-column &gt; ul &gt; li {display: block;}
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; ul {position: absolute;
	top: 34px;
	}
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; ul.open-bottom { left: 0; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; ul.open-left { right: 120px; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; ul.open-right { left: 120px; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; ul ul, #imHeader_imMenuObject_05 .multiple-column &gt; ul &gt; li ul {position: absolute;
	top: 0;
	}
	#imHeader_imMenuObject_05  &gt; ul &gt; li &gt; ul ul.open-left, #imHeader_imMenuObject_05 .multiple-column &gt; ul &gt; li ul.open-left{ right: 120px; }
	#imHeader_imMenuObject_05  &gt; ul &gt; li &gt; ul ul.open-right, #imHeader_imMenuObject_05 .multiple-column &gt; ul &gt; li ul.open-right{ left: 120px; }
	#imHeader_imMenuObject_05 ul &gt; li &gt; ul, .multiple-column { display: none; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li:nth-child(8n+1) {margin-left: 0;}
	#imHeader_imMenuObject_05 &gt; ul &gt; li:nth-child(n+9) {margin-top: 3px; }
	#imHeader_imMenuObject_05-menu-opened { display: none; }
	#imHeader_imMenuObject_05 .hamburger-component { display: none; }
	
}

@media (max-width: 1049px) and (min-width: 720px) {
	#imHeader_imObjectImage_01_wrapper { display: none; }
	#imHeader_imObjectImage_01_wrapper img {-webkit-clip-path: inset(0 0 -6.161% 0);clip-path: inset(0 0 -6.161% 0);}#imHeader_imCell_1 { width: 1044px; min-height: 211px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_1 { width: 1044px; min-height: 211px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_1 { left: 0px; right: 0px; }
	#imHeader_imHTMLObject_02_wrapper { position: absolute; top: 102px; left: 22px; width: 717px; height: 38px; z-index: 1004; overflow-y: hidden; }
	#imHeader_imCell_2 { width: 717px; min-height: 30px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_2 { width: 717px; min-height: 30px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_2 { left: 0px; right: 0px; }
	#imHeader_imObjectImage_03_wrapper { position: absolute; top: -12px; left: -16px; width: 738px; height: 146px; z-index: 1002; overflow-y: hidden; }
	#imHeader_imObjectImage_03_wrapper img {-webkit-clip-path: inset(0 0 2.013% 0);clip-path: inset(0 0 2.013% 0);}#imHeader_imCell_3 { width: 738px; min-height: 149px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_3 { width: 738px; min-height: 149px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_3 { left: 0px; right: 0px; }
	#imHeader_imHTMLObject_04_wrapper { position: absolute; top: 110px; left: 5px; width: 716px; height: 29px; z-index: 1005; overflow-y: hidden; }
	#imHeader_imCell_4 { width: 716px; min-height: 350px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_4 { width: 716px; min-height: 350px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_4 { left: 0px; right: 0px; }
	#imHeader_imMenuObject_05_wrapper { display: none; }
	#imHeader_imCell_5 { width: 100px; min-height: 34px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_5 { width: 100px; min-height: 34px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_5 { left: 0px; right: 0px; }
	/* Main menu background */
	#imHeader_imMenuObject_05 { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; background-color: transparent; padding: 0px 0px 0px 0px; }
	/* Main menu button size and position */
	#imHeader_imMenuObject_05 &gt; ul &gt; li {position: relative;margin-left: 3px; margin-top: 0px; display: inline-block; vertical-align: top; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; .label-wrapper, #imHeader_imMenuObject_05 &gt; ul &gt; li &gt; div &gt; .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imHeader_imMenuObject_05 .hamburger-button {cursor: pointer; width: 34px; height: 34px; display: inline-block; vertical-align: top; padding: 0; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imHeader_imMenuObject_05 .hamburger-bar { margin: 3px auto; width: 65%; height: 3px; background-color: rgba(255, 255, 0, 1); }
	#imHeader_imMenuObject_05 .label-inner-wrapper, #imHeader_imMenuObject_05 .hamburger-button &gt; div { display: table; width: 100%; height: 100%; position: relative; z-index: 1; } #imHeader_imMenuObject_05 &gt; ul &gt; li .label, #imHeader_imMenuObject_05 .hamburger-button &gt; div &gt; div { display: table-cell; vertical-align: middle; }
	/* Main menu default button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: url('../images/328DFB0B81E5D2275AF91522FF29A475.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Hamburger button style */
	#imHeader_imMenuObject_05 .hamburger-button {background-color: rgba(12, 76, 114, 1);background-image: url('../images/328DFB0B81E5D2275AF91522FF29A475.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 .hamburger-button .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Main menu current button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu hover button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu separator button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05 .imLevel { cursor: default; }
	#imHeader_imMenuObject_05 { text-align: right;}
	#imHeader_imMenuObject_05 .hidden { display: none; }
	#imHeader_imMenuObject_05-menu-opened { overflow: visible; z-index: 10402; }
	#imHeader_imMenuObject_05-menu-opened ul ul { display: none; /*margin-bottom: 1px;*/ }
	#imHeader_imMenuObject_05-menu-opened li &gt; div { display: none; }
	#imHeader_imMenuObject_05-menu-opened div &gt; ul { display: block; }
	#imHeader_imMenuObject_05-menu-opened &gt; ul { position: absolute; right: 0; left: auto; top: 40px; background-color: transparent; overflow-x: hidden; overflow-y: auto; height: calc(100% - 40px) }
	#imHeader_imMenuObject_05-menu-opened .hamburger-menu-close-button { display: block; font-family: Arial; font-size: 30px; text-align: right; padding: 5px 10px; color: rgba(255, 255, 0, 1); }
	#imHeader_imMenuObject_05-menu-opened .hamburger-menu-close-button span { cursor: pointer; }
	#imHeader_imMenuObject_05-menu-opened{ position:fixed; top: 0; bottom: 0; right: 0; width: 120px; border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;;  }
	#imPageExtContainer:after{ position: fixed; top: 0; right: 0; width: 0; height: 0; content: ''; opacity: 0; transition: opacity 1s; z-index: 10401;}
	.menu-imHeader_imMenuObject_05-opened #imPageExtContainer:after{ width: 100%; height: 100%; background-color: rgba(0, 0, 0, 1); opacity: 0.5;}
	#imHeader_imMenuObject_05 .hidden { display: none; }
	/* Responsive menu button size and position */
	#imHeader_imMenuObject_05-menu-opened li {position: relative;margin-bottom: 3px; display: inline-block; vertical-align: top; }
	#imHeader_imMenuObject_05-menu-opened li:last-child {margin-bottom: 0;}
	#imHeader_imMenuObject_05-menu-opened .label-wrapper { display: block; overflow: hidden; position: relative; width: 116px; height: 34px; padding: 0 2px 0 2px; }
	#imHeader_imMenuObject_05-menu-opened .label-inner-wrapper { display: table; width: 100%; height: 100%; z-index: 1; position: relative; } #imHeader_imMenuObject_05-menu-opened .label { display: table-cell; vertical-align: middle; }
	#imHeader_imMenuObject_05-menu-opened .hamburger-menu-background { position: absolute;display: block;top: 0;bottom: 0;width: 120px;right: 0; left: auto;border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;background-color: transparent;transition: left 0.5s, right 0.5s, opacity 0.5s;-webkit-transition: left 0.5s, right 0.5s, opacity 0.5s;}
	/* Responsive menu default button style */
	#imHeader_imMenuObject_05-menu-opened ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05-menu-opened ul ul &gt; li &gt; .label-wrapper {background-color: rgba(32, 96, 134, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05-menu-opened ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(52, 116, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(72, 136, 134, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Responsive menu hover button style */
	#imHeader_imMenuObject_05-menu-opened ul &gt; li:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul &gt; li:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu current button style */
	#imHeader_imMenuObject_05-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu separator button style */
	#imHeader_imMenuObject_05-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Responsive menu separation line style */
	#imHeader_imMenuObject_05-menu-opened {  transform: translate3d(120px, 0 ,0);  transition: transform 1s;  -webkit-transition: transform 1s;}
	#imHeader_imMenuObject_05-menu-opened.animated {  transform: translate3d(0, 0, 0);}
	
}

@media (max-width: 719px) and (min-width: 480px) {
	#imHeader_imObjectImage_01_wrapper { display: none; }
	#imHeader_imObjectImage_01_wrapper img {-webkit-clip-path: inset(0 0 -6.161% 0);clip-path: inset(0 0 -6.161% 0);}#imHeader_imCell_1 { width: 1044px; min-height: 211px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_1 { width: 1044px; min-height: 211px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_1 { left: 0px; right: 0px; }
	#imHeader_imHTMLObject_02_wrapper { display: none; }
	#imHeader_imCell_2 { width: 1044px; min-height: 30px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_2 { width: 1044px; min-height: 30px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_2 { left: 0px; right: 0px; }
	#imHeader_imObjectImage_03_wrapper { position: absolute; top: 0px; left: 1px; width: 478px; height: 103px; z-index: 1004; overflow-y: hidden; }
	#imHeader_imObjectImage_03_wrapper img {-webkit-clip-path: inset(0 0 -6.186% 0);clip-path: inset(0 0 -6.186% 0);}#imHeader_imCell_3 { width: 478px; min-height: 97px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_3 { width: 478px; min-height: 97px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_3 { left: 0px; right: 0px; }
	#imHeader_imHTMLObject_04_wrapper { display: none; }
	#imHeader_imCell_4 { width: 717px; min-height: 350px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_4 { width: 717px; min-height: 350px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_4 { left: 0px; right: 0px; }
	#imHeader_imMenuObject_05_wrapper { display: none; }
	#imHeader_imCell_5 { width: 100px; min-height: 34px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imHeader_imCellStyle_5 { width: 100px; min-height: 34px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imHeader_imCellStyleGraphics_5 { left: 0px; right: 0px; }
	/* Main menu background */
	#imHeader_imMenuObject_05 { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; background-color: transparent; padding: 0px 0px 0px 0px; }
	/* Main menu button size and position */
	#imHeader_imMenuObject_05 &gt; ul &gt; li {position: relative;margin-left: 3px; margin-top: 0px; display: inline-block; vertical-align: top; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; .label-wrapper, #imHeader_imMenuObject_05 &gt; ul &gt; li &gt; div &gt; .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imHeader_imMenuObject_05 .hamburger-button {cursor: pointer; width: 34px; height: 34px; display: inline-block; vertical-align: top; padding: 0; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imHeader_imMenuObject_05 .hamburger-bar { margin: 3px auto; width: 65%; height: 3px; background-color: rgba(255, 255, 0, 1); }
	#imHeader_imMenuObject_05 .label-inner-wrapper, #imHeader_imMenuObject_05 .hamburger-button &gt; div { display: table; width: 100%; height: 100%; position: relative; z-index: 1; } #imHeader_imMenuObject_05 &gt; ul &gt; li .label, #imHeader_imMenuObject_05 .hamburger-button &gt; div &gt; div { display: table-cell; vertical-align: middle; }
	/* Main menu default button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: url('../images/328DFB0B81E5D2275AF91522FF29A475.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Hamburger button style */
	#imHeader_imMenuObject_05 .hamburger-button {background-color: rgba(12, 76, 114, 1);background-image: url('../images/328DFB0B81E5D2275AF91522FF29A475.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 .hamburger-button .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Main menu current button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu hover button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu separator button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05 .imLevel { cursor: default; }
	#imHeader_imMenuObject_05 { text-align: right;}
	#imHeader_imMenuObject_05 .hidden { display: none; }
	#imHeader_imMenuObject_05-menu-opened { overflow: visible; z-index: 10402; }
	#imHeader_imMenuObject_05-menu-opened ul ul { display: none; /*margin-bottom: 1px;*/ }
	#imHeader_imMenuObject_05-menu-opened li &gt; div { display: none; }
	#imHeader_imMenuObject_05-menu-opened div &gt; ul { display: block; }
	#imHeader_imMenuObject_05-menu-opened &gt; ul { position: absolute; right: 0; left: auto; top: 40px; background-color: transparent; overflow-x: hidden; overflow-y: auto; height: calc(100% - 40px) }
	#imHeader_imMenuObject_05-menu-opened .hamburger-menu-close-button { display: block; font-family: Arial; font-size: 30px; text-align: right; padding: 5px 10px; color: rgba(255, 255, 0, 1); }
	#imHeader_imMenuObject_05-menu-opened .hamburger-menu-close-button span { cursor: pointer; }
	#imHeader_imMenuObject_05-menu-opened{ position:fixed; top: 0; bottom: 0; right: 0; width: 120px; border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;;  }
	#imPageExtContainer:after{ position: fixed; top: 0; right: 0; width: 0; height: 0; content: ''; opacity: 0; transition: opacity 1s; z-index: 10401;}
	.menu-imHeader_imMenuObject_05-opened #imPageExtContainer:after{ width: 100%; height: 100%; background-color: rgba(0, 0, 0, 1); opacity: 0.5;}
	#imHeader_imMenuObject_05 .hidden { display: none; }
	/* Responsive menu button size and position */
	#imHeader_imMenuObject_05-menu-opened li {position: relative;margin-bottom: 3px; display: inline-block; vertical-align: top; }
	#imHeader_imMenuObject_05-menu-opened li:last-child {margin-bottom: 0;}
	#imHeader_imMenuObject_05-menu-opened .label-wrapper { display: block; overflow: hidden; position: relative; width: 116px; height: 34px; padding: 0 2px 0 2px; }
	#imHeader_imMenuObject_05-menu-opened .label-inner-wrapper { display: table; width: 100%; height: 100%; z-index: 1; position: relative; } #imHeader_imMenuObject_05-menu-opened .label { display: table-cell; vertical-align: middle; }
	#imHeader_imMenuObject_05-menu-opened .hamburger-menu-background { position: absolute;display: block;top: 0;bottom: 0;width: 120px;right: 0; left: auto;border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;background-color: transparent;transition: left 0.5s, right 0.5s, opacity 0.5s;-webkit-transition: left 0.5s, right 0.5s, opacity 0.5s;}
	/* Responsive menu default button style */
	#imHeader_imMenuObject_05-menu-opened ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05-menu-opened ul ul &gt; li &gt; .label-wrapper {background-color: rgba(32, 96, 134, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05-menu-opened ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(52, 116, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(72, 136, 134, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Responsive menu hover button style */
	#imHeader_imMenuObject_05-menu-opened ul &gt; li:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul &gt; li:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu current button style */
	#imHeader_imMenuObject_05-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu separator button style */
	#imHeader_imMenuObject_05-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Responsive menu separation line style */
	#imHeader_imMenuObject_05-menu-opened {  transform: translate3d(120px, 0 ,0);  transition: transform 1s;  -webkit-transition: transform 1s;}
	#imHeader_imMenuObject_05-menu-opened.animated {  transform: translate3d(0, 0, 0);}
	
}

@media (max-width: 479px) {
	#imHeader_imObjectImage_01_wrapper { display: none; }
	#imHeader_imObjectImage_01_wrapper img {-webkit-clip-path: inset(0 0 -6.161% 0);clip-path: inset(0 0 -6.161% 0);}#imHeader_imCell_1 { width: 100%; min-height: 211px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; box-sizing: border-box; }
	#imHeader_imCellStyle_1 { width: 100%; min-height: 0px; padding: 0px 0px 0px 0px; }
	#imHeader_imCellStyleGraphics_1 { top: 0px; bottom: 0px; left: 0px; right: 0px; }
	#imHeader_imHTMLObject_02_wrapper { display: none; }
	#imHeader_imCell_2 { width: 100%; min-height: 30px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; box-sizing: border-box; }
	#imHeader_imCellStyle_2 { width: 100%; min-height: 0px; padding: 0px 0px 0px 0px; }
	#imHeader_imCellStyleGraphics_2 { top: 0px; bottom: 0px; left: 0px; right: 0px; }
	#imHeader_imObjectImage_03_wrapper { position: absolute; top: 3px; left: 1px; width: 316px; height: 66px; z-index: 1004; overflow-y: hidden; }
	#imHeader_imObjectImage_03_wrapper img {-webkit-clip-path: inset(0 0 -3.125% 0);clip-path: inset(0 0 -3.125% 0);}#imHeader_imCell_3 { width: 100%; min-height: 64px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; box-sizing: border-box; }
	#imHeader_imCellStyle_3 { width: 100%; min-height: 0px; padding: 0px 0px 0px 0px; }
	#imHeader_imCellStyleGraphics_3 { top: 0px; bottom: 0px; left: 0px; right: 0px; }
	#imHeader_imHTMLObject_04_wrapper { display: none; }
	#imHeader_imCell_4 { width: 100%; min-height: 350px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; box-sizing: border-box; }
	#imHeader_imCellStyle_4 { width: 100%; min-height: 0px; padding: 0px 0px 0px 0px; }
	#imHeader_imCellStyleGraphics_4 { top: 0px; bottom: 0px; left: 0px; right: 0px; }
	#imHeader_imMenuObject_05_wrapper { position: absolute; top: 73px; left: 229px; width: 36px; height: 36px; z-index: 1006;  }
	#imHeader_imCell_5 { width: 100%; min-height: 34px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; box-sizing: border-box; }
	#imHeader_imCellStyle_5 { width: 100%; min-height: 0px; padding: 0px 0px 0px 0px; }
	#imHeader_imCellStyleGraphics_5 { top: 0px; bottom: 0px; left: 0px; right: 0px; }
	/* Main menu background */
	#imHeader_imMenuObject_05 { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; background-color: transparent; padding: 0px 0px 0px 0px; }
	/* Main menu button size and position */
	#imHeader_imMenuObject_05 &gt; ul &gt; li {position: relative;margin-left: 3px; margin-top: 0px; display: inline-block; vertical-align: top; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; .label-wrapper, #imHeader_imMenuObject_05 &gt; ul &gt; li &gt; div &gt; .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imHeader_imMenuObject_05 .hamburger-button {cursor: pointer; width: 34px; height: 34px; display: inline-block; vertical-align: top; padding: 0; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imHeader_imMenuObject_05 .hamburger-bar { margin: 3px auto; width: 65%; height: 3px; background-color: rgba(255, 255, 0, 1); }
	#imHeader_imMenuObject_05 .label-inner-wrapper, #imHeader_imMenuObject_05 .hamburger-button &gt; div { display: table; width: 100%; height: 100%; position: relative; z-index: 1; } #imHeader_imMenuObject_05 &gt; ul &gt; li .label, #imHeader_imMenuObject_05 .hamburger-button &gt; div &gt; div { display: table-cell; vertical-align: middle; }
	/* Main menu default button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: url('../images/328DFB0B81E5D2275AF91522FF29A475.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Hamburger button style */
	#imHeader_imMenuObject_05 .hamburger-button {background-color: rgba(12, 76, 114, 1);background-image: url('../images/328DFB0B81E5D2275AF91522FF29A475.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 .hamburger-button .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Main menu current button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu hover button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: url('../images/2B2EFC53361D360B17DA85A2B9531CEA.png');border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu separator button style */
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05 .imLevel { cursor: default; }
	#imHeader_imMenuObject_05 { text-align: right;}
	#imHeader_imMenuObject_05 .hidden { display: none; }
	#imHeader_imMenuObject_05-menu-opened { overflow: visible; z-index: 10402; }
	#imHeader_imMenuObject_05-menu-opened ul ul { display: none; /*margin-bottom: 1px;*/ }
	#imHeader_imMenuObject_05-menu-opened li &gt; div { display: none; }
	#imHeader_imMenuObject_05-menu-opened div &gt; ul { display: block; }
	#imHeader_imMenuObject_05-menu-opened &gt; ul { position: absolute; right: 0; left: auto; top: 40px; background-color: transparent; overflow-x: hidden; overflow-y: auto; height: calc(100% - 40px) }
	#imHeader_imMenuObject_05-menu-opened .hamburger-menu-close-button { display: block; font-family: Arial; font-size: 30px; text-align: right; padding: 5px 10px; color: rgba(255, 255, 0, 1); }
	#imHeader_imMenuObject_05-menu-opened .hamburger-menu-close-button span { cursor: pointer; }
	#imHeader_imMenuObject_05-menu-opened{ position:fixed; top: 0; bottom: 0; right: 0; width: 120px; border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;;  }
	#imPageExtContainer:after{ position: fixed; top: 0; right: 0; width: 0; height: 0; content: ''; opacity: 0; transition: opacity 1s; z-index: 10401;}
	.menu-imHeader_imMenuObject_05-opened #imPageExtContainer:after{ width: 100%; height: 100%; background-color: rgba(0, 0, 0, 1); opacity: 0.5;}
	#imHeader_imMenuObject_05 .hidden { display: none; }
	/* Responsive menu button size and position */
	#imHeader_imMenuObject_05-menu-opened li {position: relative;margin-bottom: 3px; display: inline-block; vertical-align: top; }
	#imHeader_imMenuObject_05-menu-opened li:last-child {margin-bottom: 0;}
	#imHeader_imMenuObject_05-menu-opened .label-wrapper { display: block; overflow: hidden; position: relative; width: 116px; height: 34px; padding: 0 2px 0 2px; }
	#imHeader_imMenuObject_05-menu-opened .label-inner-wrapper { display: table; width: 100%; height: 100%; z-index: 1; position: relative; } #imHeader_imMenuObject_05-menu-opened .label { display: table-cell; vertical-align: middle; }
	#imHeader_imMenuObject_05-menu-opened .hamburger-menu-background { position: absolute;display: block;top: 0;bottom: 0;width: 120px;right: 0; left: auto;border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;background-color: transparent;transition: left 0.5s, right 0.5s, opacity 0.5s;-webkit-transition: left 0.5s, right 0.5s, opacity 0.5s;}
	/* Responsive menu default button style */
	#imHeader_imMenuObject_05-menu-opened ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05-menu-opened ul ul &gt; li &gt; .label-wrapper {background-color: rgba(32, 96, 134, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05-menu-opened ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(52, 116, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(72, 136, 134, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Responsive menu hover button style */
	#imHeader_imMenuObject_05-menu-opened ul &gt; li:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul &gt; li:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu current button style */
	#imHeader_imMenuObject_05-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imHeader_imMenuObject_05-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu separator button style */
	#imHeader_imMenuObject_05-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imHeader_imMenuObject_05-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Responsive menu separation line style */
	#imHeader_imMenuObject_05-menu-opened {  transform: translate3d(120px, 0 ,0);  transition: transform 1s;  -webkit-transition: transform 1s;}
	#imHeader_imMenuObject_05-menu-opened.animated {  transform: translate3d(0, 0, 0);}
	
}

@media (min-width: 1050px) {
	#imFooter_imHTMLObject_01_wrapper { position: absolute; top: 17px; left: 6px; width: 1040px; height: 100px; z-index: 1002; overflow-y: hidden; }
	#imFooter_imCell_1 { width: 1040px; min-height: 350px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imFooter_imCellStyle_1 { width: 1040px; min-height: 350px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imFooter_imCellStyleGraphics_1 { left: 0px; right: 0px; }
	
}

@media (max-width: 1049px) and (min-width: 720px) {
	#imFooter_imHTMLObject_01_wrapper { position: absolute; top: 14px; left: 5px; width: 710px; height: 100px; z-index: 1002; overflow-y: hidden; }
	#imFooter_imCell_1 { width: 710px; min-height: 350px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imFooter_imCellStyle_1 { width: 710px; min-height: 350px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imFooter_imCellStyleGraphics_1 { left: 0px; right: 0px; }
	
}

@media (max-width: 719px) and (min-width: 480px) {
	#imFooter_imHTMLObject_01_wrapper { position: absolute; top: 16px; left: 4px; width: 472px; height: 100px; z-index: 1002; overflow-y: hidden; }
	#imFooter_imCell_1 { width: 472px; min-height: 350px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imFooter_imCellStyle_1 { width: 472px; min-height: 350px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imFooter_imCellStyleGraphics_1 { left: 0px; right: 0px; }
	
}

@media (max-width: 479px) {
	#imFooter_imHTMLObject_01_wrapper { position: absolute; top: 16px; left: 62px; width: 251px; height: 100px; z-index: 1002; overflow-y: hidden; }
	#imFooter_imCell_1 { width: 100%; min-height: 350px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; box-sizing: border-box; }
	#imFooter_imCellStyle_1 { width: 100%; min-height: 0px; padding: 0px 0px 0px 0px; }
	#imFooter_imCellStyleGraphics_1 { top: 0px; bottom: 0px; left: 0px; right: 0px; }
	
}

@media (min-width: 1050px) {
	#imSideBar_imMenuObject_01_wrapper { display: none; }
	#imSideBar_imCell_1 { width: 100px; min-height: 34px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imSideBar_imCellStyle_1 { width: 100px; min-height: 34px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imSideBar_imCellStyleGraphics_1 { left: 0px; right: 0px; }
	/* Main menu background */
	#imSideBar_imMenuObject_01 { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; background-color: transparent; padding: 0px 0px 0px 0px; }
	/* Main menu button size and position */
	#imSideBar_imMenuObject_01 &gt; ul &gt; li {position: relative;margin-left: 3px; margin-top: 0px; display: inline-block; vertical-align: top; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; .label-wrapper, #imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; div &gt; .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imSideBar_imMenuObject_01 .hamburger-button {cursor: pointer; width: 34px; height: 34px; display: inline-block; vertical-align: top; padding: 0; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imSideBar_imMenuObject_01 .hamburger-bar { margin: 3px auto; width: 65%; height: 3px; background-color: rgba(255, 255, 0, 1); }
	#imSideBar_imMenuObject_01 .label-inner-wrapper, #imSideBar_imMenuObject_01 .hamburger-button &gt; div { display: table; width: 100%; height: 100%; position: relative; z-index: 1; } #imSideBar_imMenuObject_01 &gt; ul &gt; li .label, #imSideBar_imMenuObject_01 .hamburger-button &gt; div &gt; div { display: table-cell; vertical-align: middle; }
	/* Main menu default button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Hamburger button style */
	#imSideBar_imMenuObject_01 .hamburger-button {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 .hamburger-button .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Main menu current button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu hover button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu separator button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01 .imLevel { cursor: default; }
	#imSideBar_imMenuObject_01 { text-align: right;}
	#imSideBar_imMenuObject_01 .hidden { display: none; }
	#imSideBar_imMenuObject_01-menu-opened { overflow: visible; z-index: 10402; }
	#imSideBar_imMenuObject_01-menu-opened ul ul { display: none; /*margin-bottom: 1px;*/ }
	#imSideBar_imMenuObject_01-menu-opened li &gt; div { display: none; }
	#imSideBar_imMenuObject_01-menu-opened div &gt; ul { display: block; }
	#imSideBar_imMenuObject_01-menu-opened &gt; ul { position: absolute; left: 0; right: auto; top: 40px; background-color: transparent; overflow-x: hidden; overflow-y: auto; height: calc(100% - 40px) }
	#imSideBar_imMenuObject_01-menu-opened .hamburger-menu-close-button { display: block; font-family: Arial; font-size: 30px; text-align: right; padding: 5px 10px; color: rgba(255, 255, 0, 1); }
	#imSideBar_imMenuObject_01-menu-opened .hamburger-menu-close-button span { cursor: pointer; }
	#imSideBar_imMenuObject_01-menu-opened{ position:fixed; top: 0; bottom: 0; left: 0; width: 120px; border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;;  }
	#imPageExtContainer:after{ position: fixed; top: 0; right: 0; width: 0; height: 0; content: ''; opacity: 0; transition: opacity 1s; z-index: 10401;}
	.menu-imSideBar_imMenuObject_01-opened #imPageExtContainer:after{ width: 100%; height: 100%; background-color: rgba(0, 0, 0, 1); opacity: 0.5;}
	#imSideBar_imMenuObject_01 .hidden { display: none; }
	/* Responsive menu button size and position */
	#imSideBar_imMenuObject_01-menu-opened li {position: relative;margin-bottom: 3px; display: inline-block; vertical-align: top; }
	#imSideBar_imMenuObject_01-menu-opened li:last-child {margin-bottom: 0;}
	#imSideBar_imMenuObject_01-menu-opened .label-wrapper { display: block; overflow: hidden; position: relative; width: 116px; height: 34px; padding: 0 2px 0 2px; }
	#imSideBar_imMenuObject_01-menu-opened .label-inner-wrapper { display: table; width: 100%; height: 100%; z-index: 1; position: relative; } #imSideBar_imMenuObject_01-menu-opened .label { display: table-cell; vertical-align: middle; }
	#imSideBar_imMenuObject_01-menu-opened .hamburger-menu-background { position: absolute;display: block;top: 0;bottom: 0;width: 120px;left: 0; right: auto;border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;background-color: transparent;transition: left 0.5s, right 0.5s, opacity 0.5s;-webkit-transition: left 0.5s, right 0.5s, opacity 0.5s;}
	/* Responsive menu default button style */
	#imSideBar_imMenuObject_01-menu-opened ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01-menu-opened ul ul &gt; li &gt; .label-wrapper {background-color: rgba(32, 96, 134, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01-menu-opened ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(52, 116, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(72, 136, 134, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Responsive menu hover button style */
	#imSideBar_imMenuObject_01-menu-opened ul &gt; li:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened ul &gt; li:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu current button style */
	#imSideBar_imMenuObject_01-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu separator button style */
	#imSideBar_imMenuObject_01-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Responsive menu separation line style */
	#imSideBar_imMenuObject_01-menu-opened {  transform: translate3d(-120px, 0 ,0);  transition: transform 1s;  -webkit-transition: transform 1s;}
	#imSideBar_imMenuObject_01-menu-opened.animated {  transform: translate3d(0, 0, 0);}
	
}

@media (max-width: 1049px) and (min-width: 720px) {
	#imSideBar_imMenuObject_01_wrapper { position: absolute; top: 5px; left: 8px; width: 116px; height: 298px; z-index: 1002;  }
	#imSideBar_imCell_1 { width: 116px; min-height: 293px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imSideBar_imCellStyle_1 { width: 116px; min-height: 293px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imSideBar_imCellStyleGraphics_1 { left: 0px; right: 0px; }
	/* Main menu background */
	#imSideBar_imMenuObject_01 { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; background-color: transparent; padding: 0px 0px 0px 0px; }
	/* Main menu button size and position */
	#imSideBar_imMenuObject_01 &gt; ul &gt; li {position: relative;margin-left: 3px; margin-top: 0px; display: inline-block; vertical-align: top; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; .label-wrapper, #imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; div &gt; .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imSideBar_imMenuObject_01 .hamburger-button {cursor: pointer; width: 34px; height: 34px; display: inline-block; vertical-align: top; padding: 0; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imSideBar_imMenuObject_01 .hamburger-bar { margin: 3px auto; width: 65%; height: 3px; background-color: rgba(255, 255, 0, 1); }
	#imSideBar_imMenuObject_01 .label-inner-wrapper, #imSideBar_imMenuObject_01 .hamburger-button &gt; div { display: table; width: 100%; height: 100%; position: relative; z-index: 1; } #imSideBar_imMenuObject_01 &gt; ul &gt; li .label, #imSideBar_imMenuObject_01 .hamburger-button &gt; div &gt; div { display: table-cell; vertical-align: middle; }
	/* Main menu default button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Hamburger button style */
	#imSideBar_imMenuObject_01 .hamburger-button {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 .hamburger-button .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Main menu current button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu hover button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu separator button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01 .imLevel { cursor: default; }
	#imSideBar_imMenuObject_01 { text-align: left;}
	/* Level menu background */
	#imSideBar_imMenuObject_01 ul ul { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;  background-color: transparent; }
	/* Level menu button size and position */
	#imSideBar_imMenuObject_01 ul ul li {position: relative;margin-bottom: 3px; display: inline-block; vertical-align: top; }
	/* Multiple column menu buttons position */
	#imSideBar_imMenuObject_01 .multiple-column &gt; ul {max-width: 120px;}
	#imSideBar_imMenuObject_01 ul ul li:last-child {margin-bottom: 0;}
	#imSideBar_imMenuObject_01 ul ul .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; }
	#imSideBar_imMenuObject_01 ul ul .label { display: table-cell; vertical-align: middle; }
	/* Level menu default button style */
	#imSideBar_imMenuObject_01 ul ul .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 ul ul .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Level menu hover button style */
	#imSideBar_imMenuObject_01 ul ul li.imLevel:hover &gt; .label-wrapper {background-color: transparent;background-image: url('../images/4AB91901C7D24B9D0E2DDE024B1880AE.png');border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 ul ul li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01 ul ul li.imPage:hover &gt; .label-wrapper {background-color: transparent;background-image: url('../images/4AB91901C7D24B9D0E2DDE024B1880AE.png');border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 ul ul li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Level menu separator button style */
	#imSideBar_imMenuObject_01 ul ul .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 ul ul .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Level menu separation line style */
	#imSideBar_imMenuObject_01 ul ul { z-index: 2; }/* Level menu show/hide directives */
	#imSideBar_imMenuObject_01 .multiple-column {position: absolute; z-index: 2;top: 0; left: 120px;}
	#imSideBar_imMenuObject_01 .multiple-column &gt; ul {position: static;
	display: inline-block;vertical-align: top;}
	#imSideBar_imMenuObject_01 .multiple-column &gt; ul &gt; li {display: block;}
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; ul {position: absolute;
	top: 0;
	}
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; ul.open-bottom { left: 0; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; ul.open-left { right: 120px; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; ul.open-right { left: 120px; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; ul ul, #imSideBar_imMenuObject_01 .multiple-column &gt; ul &gt; li ul {position: absolute;
	top: 0;
	}
	#imSideBar_imMenuObject_01  &gt; ul &gt; li &gt; ul ul.open-left, #imSideBar_imMenuObject_01 .multiple-column &gt; ul &gt; li ul.open-left{ right: 120px; }
	#imSideBar_imMenuObject_01  &gt; ul &gt; li &gt; ul ul.open-right, #imSideBar_imMenuObject_01 .multiple-column &gt; ul &gt; li ul.open-right{ left: 120px; }
	#imSideBar_imMenuObject_01 ul &gt; li &gt; ul, .multiple-column { display: none; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li:nth-child(1n+1) {margin-left: 0;}
	#imSideBar_imMenuObject_01 &gt; ul &gt; li:nth-child(n+2) {margin-top: 3px; }
	#imSideBar_imMenuObject_01-menu-opened { display: none; }
	#imSideBar_imMenuObject_01 .hamburger-component { display: none; }
	
}

@media (max-width: 719px) and (min-width: 480px) {
	#imSideBar_imMenuObject_01_wrapper { position: absolute; top: 5px; left: 7px; width: 116px; height: 319px; z-index: 1002;  }
	#imSideBar_imCell_1 { width: 116px; min-height: 293px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imSideBar_imCellStyle_1 { width: 116px; min-height: 293px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imSideBar_imCellStyleGraphics_1 { left: 0px; right: 0px; }
	/* Main menu background */
	#imSideBar_imMenuObject_01 { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; background-color: transparent; padding: 0px 0px 0px 0px; }
	/* Main menu button size and position */
	#imSideBar_imMenuObject_01 &gt; ul &gt; li {position: relative;margin-left: 3px; margin-top: 0px; display: inline-block; vertical-align: top; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; .label-wrapper, #imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; div &gt; .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imSideBar_imMenuObject_01 .hamburger-button {cursor: pointer; width: 34px; height: 34px; display: inline-block; vertical-align: top; padding: 0; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imSideBar_imMenuObject_01 .hamburger-bar { margin: 3px auto; width: 65%; height: 3px; background-color: rgba(255, 255, 0, 1); }
	#imSideBar_imMenuObject_01 .label-inner-wrapper, #imSideBar_imMenuObject_01 .hamburger-button &gt; div { display: table; width: 100%; height: 100%; position: relative; z-index: 1; } #imSideBar_imMenuObject_01 &gt; ul &gt; li .label, #imSideBar_imMenuObject_01 .hamburger-button &gt; div &gt; div { display: table-cell; vertical-align: middle; }
	/* Main menu default button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Hamburger button style */
	#imSideBar_imMenuObject_01 .hamburger-button {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 .hamburger-button .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Main menu current button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu hover button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu separator button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01 .imLevel { cursor: default; }
	#imSideBar_imMenuObject_01 { text-align: left;}
	/* Level menu background */
	#imSideBar_imMenuObject_01 ul ul { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;  background-color: transparent; }
	/* Level menu button size and position */
	#imSideBar_imMenuObject_01 ul ul li {position: relative;margin-bottom: 3px; display: inline-block; vertical-align: top; }
	/* Multiple column menu buttons position */
	#imSideBar_imMenuObject_01 .multiple-column &gt; ul {max-width: 120px;}
	#imSideBar_imMenuObject_01 ul ul li:last-child {margin-bottom: 0;}
	#imSideBar_imMenuObject_01 ul ul .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; }
	#imSideBar_imMenuObject_01 ul ul .label { display: table-cell; vertical-align: middle; }
	/* Level menu default button style */
	#imSideBar_imMenuObject_01 ul ul .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 ul ul .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Level menu hover button style */
	#imSideBar_imMenuObject_01 ul ul li.imLevel:hover &gt; .label-wrapper {background-color: transparent;background-image: url('../images/4AB91901C7D24B9D0E2DDE024B1880AE.png');border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 ul ul li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01 ul ul li.imPage:hover &gt; .label-wrapper {background-color: transparent;background-image: url('../images/4AB91901C7D24B9D0E2DDE024B1880AE.png');border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 ul ul li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Level menu separator button style */
	#imSideBar_imMenuObject_01 ul ul .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 ul ul .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Level menu separation line style */
	#imSideBar_imMenuObject_01 ul ul { z-index: 2; }/* Level menu show/hide directives */
	#imSideBar_imMenuObject_01 .multiple-column {position: absolute; z-index: 2;top: 0; left: 120px;}
	#imSideBar_imMenuObject_01 .multiple-column &gt; ul {position: static;
	display: inline-block;vertical-align: top;}
	#imSideBar_imMenuObject_01 .multiple-column &gt; ul &gt; li {display: block;}
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; ul {position: absolute;
	top: 0;
	}
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; ul.open-bottom { left: 0; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; ul.open-left { right: 120px; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; ul.open-right { left: 120px; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; ul ul, #imSideBar_imMenuObject_01 .multiple-column &gt; ul &gt; li ul {position: absolute;
	top: 0;
	}
	#imSideBar_imMenuObject_01  &gt; ul &gt; li &gt; ul ul.open-left, #imSideBar_imMenuObject_01 .multiple-column &gt; ul &gt; li ul.open-left{ right: 120px; }
	#imSideBar_imMenuObject_01  &gt; ul &gt; li &gt; ul ul.open-right, #imSideBar_imMenuObject_01 .multiple-column &gt; ul &gt; li ul.open-right{ left: 120px; }
	#imSideBar_imMenuObject_01 ul &gt; li &gt; ul, .multiple-column { display: none; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li:nth-child(1n+1) {margin-left: 0;}
	#imSideBar_imMenuObject_01 &gt; ul &gt; li:nth-child(n+2) {margin-top: 3px; }
	#imSideBar_imMenuObject_01-menu-opened { display: none; }
	#imSideBar_imMenuObject_01 .hamburger-component { display: none; }
	
}

@media (max-width: 479px) {
	#imSideBar_imMenuObject_01_wrapper { display: none; }
	#imSideBar_imCell_1 { width: 100%; min-height: 34px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; box-sizing: border-box; }
	#imSideBar_imCellStyle_1 { width: 100%; min-height: 0px; padding: 0px 0px 0px 0px; }
	#imSideBar_imCellStyleGraphics_1 { top: 0px; bottom: 0px; left: 0px; right: 0px; }
	/* Main menu background */
	#imSideBar_imMenuObject_01 { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; background-color: transparent; padding: 0px 0px 0px 0px; }
	/* Main menu button size and position */
	#imSideBar_imMenuObject_01 &gt; ul &gt; li {position: relative;margin-left: 3px; margin-top: 0px; display: inline-block; vertical-align: top; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; .label-wrapper, #imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; div &gt; .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imSideBar_imMenuObject_01 .hamburger-button {cursor: pointer; width: 34px; height: 34px; display: inline-block; vertical-align: top; padding: 0; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imSideBar_imMenuObject_01 .hamburger-bar { margin: 3px auto; width: 65%; height: 3px; background-color: rgba(255, 255, 0, 1); }
	#imSideBar_imMenuObject_01 .label-inner-wrapper, #imSideBar_imMenuObject_01 .hamburger-button &gt; div { display: table; width: 100%; height: 100%; position: relative; z-index: 1; } #imSideBar_imMenuObject_01 &gt; ul &gt; li .label, #imSideBar_imMenuObject_01 .hamburger-button &gt; div &gt; div { display: table-cell; vertical-align: middle; }
	/* Main menu default button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Hamburger button style */
	#imSideBar_imMenuObject_01 .hamburger-button {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 .hamburger-button .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Main menu current button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu hover button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu separator button style */
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01 .imLevel { cursor: default; }
	#imSideBar_imMenuObject_01 { text-align: right;}
	#imSideBar_imMenuObject_01 .hidden { display: none; }
	#imSideBar_imMenuObject_01-menu-opened { overflow: visible; z-index: 10402; }
	#imSideBar_imMenuObject_01-menu-opened ul ul { display: none; /*margin-bottom: 1px;*/ }
	#imSideBar_imMenuObject_01-menu-opened li &gt; div { display: none; }
	#imSideBar_imMenuObject_01-menu-opened div &gt; ul { display: block; }
	#imSideBar_imMenuObject_01-menu-opened &gt; ul { position: absolute; left: 0; right: auto; top: 40px; background-color: transparent; overflow-x: hidden; overflow-y: auto; height: calc(100% - 40px) }
	#imSideBar_imMenuObject_01-menu-opened .hamburger-menu-close-button { display: block; font-family: Arial; font-size: 30px; text-align: right; padding: 5px 10px; color: rgba(255, 255, 0, 1); }
	#imSideBar_imMenuObject_01-menu-opened .hamburger-menu-close-button span { cursor: pointer; }
	#imSideBar_imMenuObject_01-menu-opened{ position:fixed; top: 0; bottom: 0; left: 0; width: 120px; border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;;  }
	#imPageExtContainer:after{ position: fixed; top: 0; right: 0; width: 0; height: 0; content: ''; opacity: 0; transition: opacity 1s; z-index: 10401;}
	.menu-imSideBar_imMenuObject_01-opened #imPageExtContainer:after{ width: 100%; height: 100%; background-color: rgba(0, 0, 0, 1); opacity: 0.5;}
	#imSideBar_imMenuObject_01 .hidden { display: none; }
	/* Responsive menu button size and position */
	#imSideBar_imMenuObject_01-menu-opened li {position: relative;margin-bottom: 3px; display: inline-block; vertical-align: top; }
	#imSideBar_imMenuObject_01-menu-opened li:last-child {margin-bottom: 0;}
	#imSideBar_imMenuObject_01-menu-opened .label-wrapper { display: block; overflow: hidden; position: relative; width: 116px; height: 34px; padding: 0 2px 0 2px; }
	#imSideBar_imMenuObject_01-menu-opened .label-inner-wrapper { display: table; width: 100%; height: 100%; z-index: 1; position: relative; } #imSideBar_imMenuObject_01-menu-opened .label { display: table-cell; vertical-align: middle; }
	#imSideBar_imMenuObject_01-menu-opened .hamburger-menu-background { position: absolute;display: block;top: 0;bottom: 0;width: 120px;left: 0; right: auto;border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;background-color: transparent;transition: left 0.5s, right 0.5s, opacity 0.5s;-webkit-transition: left 0.5s, right 0.5s, opacity 0.5s;}
	/* Responsive menu default button style */
	#imSideBar_imMenuObject_01-menu-opened ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01-menu-opened ul ul &gt; li &gt; .label-wrapper {background-color: rgba(32, 96, 134, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01-menu-opened ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(52, 116, 114, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(72, 136, 134, 1);background-image: none;border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1) rgba(0, 0, 0, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Responsive menu hover button style */
	#imSideBar_imMenuObject_01-menu-opened ul &gt; li:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened ul &gt; li:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu current button style */
	#imSideBar_imMenuObject_01-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imSideBar_imMenuObject_01-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu separator button style */
	#imSideBar_imMenuObject_01-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imSideBar_imMenuObject_01-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: left; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Responsive menu separation line style */
	#imSideBar_imMenuObject_01-menu-opened {  transform: translate3d(-120px, 0 ,0);  transition: transform 1s;  -webkit-transition: transform 1s;}
	#imSideBar_imMenuObject_01-menu-opened.animated {  transform: translate3d(0, 0, 0);}
	
}

@media (min-width: 1050px) {
	#imStickyBar_imObjectTitle_01_wrapper { position: absolute; top: 8px; left: 5px; width: 1040px; height: 42px; z-index: 1002;  }
	#imStickyBar_imCell_1 { width: 1040px; min-height: 33px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imStickyBar_imCellStyle_1 { width: 1040px; min-height: 33px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imStickyBar_imCellStyleGraphics_1 { left: 0px; right: 0px; }
	#imStickyBar_imObjectTitle_01_text { top: 0px;  }
	#imStickyBar_imObjectTitle_01 { min-height: 33px; }
	#imStickyBar_imMenuObject_02_wrapper { position: absolute; top: 53px; left: 668px; width: 30px; height: 32px; z-index: 1003;  }
	#imStickyBar_imCell_2 { width: 30px; min-height: 34px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imStickyBar_imCellStyle_2 { width: 30px; min-height: 34px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imStickyBar_imCellStyleGraphics_2 { left: 0px; right: 0px; }
	/* Main menu background */
	#imStickyBar_imMenuObject_02 { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; background-color: transparent; padding: 0px 0px 0px 0px; }
	/* Main menu button size and position */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li {position: relative;margin-left: 3px; margin-top: 0px; display: inline-block; vertical-align: top; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; .label-wrapper, #imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; div &gt; .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imStickyBar_imMenuObject_02 .hamburger-button {cursor: pointer; width: 34px; height: 34px; display: inline-block; vertical-align: top; padding: 0; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imStickyBar_imMenuObject_02 .hamburger-bar { margin: 3px auto; width: 65%; height: 3px; background-color: rgba(255, 255, 0, 1); }
	#imStickyBar_imMenuObject_02 .label-inner-wrapper, #imStickyBar_imMenuObject_02 .hamburger-button &gt; div { display: table; width: 100%; height: 100%; position: relative; z-index: 1; } #imStickyBar_imMenuObject_02 &gt; ul &gt; li .label, #imStickyBar_imMenuObject_02 .hamburger-button &gt; div &gt; div { display: table-cell; vertical-align: middle; }
	/* Main menu default button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	/* Hamburger button style */
	#imStickyBar_imMenuObject_02 .hamburger-button {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 .hamburger-button .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	/* Main menu current button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imStickyBar_imMenuObject_02 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu hover button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu separator button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02 .imLevel { cursor: default; }
	#imStickyBar_imMenuObject_02 { text-align: right;}
	#imStickyBar_imMenuObject_02 .hidden { display: none; }
	#imStickyBar_imMenuObject_02-menu-opened { overflow: visible; z-index: 10402; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul { display: none; /*margin-bottom: 1px;*/ }
	#imStickyBar_imMenuObject_02-menu-opened li &gt; div { display: none; }
	#imStickyBar_imMenuObject_02-menu-opened div &gt; ul { display: block; }
	#imStickyBar_imMenuObject_02-menu-opened &gt; ul { position: absolute; right: 0; left: auto; top: 40px; background-color: transparent; overflow-x: hidden; overflow-y: auto; height: calc(100% - 40px) }
	#imStickyBar_imMenuObject_02-menu-opened .hamburger-menu-close-button { display: block; font-family: Arial; font-size: 30px; text-align: right; padding: 5px 10px; color: rgba(255, 255, 0, 1); }
	#imStickyBar_imMenuObject_02-menu-opened .hamburger-menu-close-button span { cursor: pointer; }
	#imStickyBar_imMenuObject_02-menu-opened{ position:fixed; top: 0; bottom: 0; right: 0; width: 120px; border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;;  }
	#imPageExtContainer:after{ position: fixed; top: 0; right: 0; width: 0; height: 0; content: ''; opacity: 0; transition: opacity 1s; z-index: 10401;}
	.menu-imStickyBar_imMenuObject_02-opened #imPageExtContainer:after{ width: 100%; height: 100%; background-color: rgba(0, 0, 0, 1); opacity: 0.5;}
	#imStickyBar_imMenuObject_02 .hidden { display: none; }
	/* Responsive menu button size and position */
	#imStickyBar_imMenuObject_02-menu-opened li {position: relative;margin-bottom: 3px; display: inline-block; vertical-align: top; }
	#imStickyBar_imMenuObject_02-menu-opened li:last-child {margin-bottom: 0;}
	#imStickyBar_imMenuObject_02-menu-opened .label-wrapper { display: block; overflow: hidden; position: relative; width: 116px; height: 34px; padding: 0 2px 0 2px; }
	#imStickyBar_imMenuObject_02-menu-opened .label-inner-wrapper { display: table; width: 100%; height: 100%; z-index: 1; position: relative; } #imStickyBar_imMenuObject_02-menu-opened .label { display: table-cell; vertical-align: middle; }
	#imStickyBar_imMenuObject_02-menu-opened .hamburger-menu-background { position: absolute;display: block;top: 0;bottom: 0;width: 120px;right: 0; left: auto;border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;background-color: transparent;transition: left 0.5s, right 0.5s, opacity 0.5s;-webkit-transition: left 0.5s, right 0.5s, opacity 0.5s;}
	/* Responsive menu default button style */
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02-menu-opened ul ul &gt; li &gt; .label-wrapper {background-color: rgba(32, 96, 134, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(52, 116, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(72, 136, 134, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	/* Responsive menu hover button style */
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu current button style */
	#imStickyBar_imMenuObject_02-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imStickyBar_imMenuObject_02-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu separator button style */
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Responsive menu separation line style */
	#imStickyBar_imMenuObject_02-menu-opened {  transform: translate3d(120px, 0 ,0);  transition: transform 1s;  -webkit-transition: transform 1s;}
	#imStickyBar_imMenuObject_02-menu-opened.animated {  transform: translate3d(0, 0, 0);}
	
}

@media (max-width: 1049px) and (min-width: 720px) {
	#imStickyBar_imObjectTitle_01_wrapper { position: absolute; top: 8px; left: 3px; width: 711px; height: 45px; z-index: 1002;  }
	#imStickyBar_imCell_1 { width: 711px; min-height: 33px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imStickyBar_imCellStyle_1 { width: 711px; min-height: 33px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imStickyBar_imCellStyleGraphics_1 { left: 0px; right: 0px; }
	#imStickyBar_imObjectTitle_01_text { top: 0px;  }
	#imStickyBar_imObjectTitle_01 { min-height: 33px; }
	#imStickyBar_imMenuObject_02_wrapper { position: absolute; top: 58px; left: 498px; width: 30px; height: 32px; z-index: 1003;  }
	#imStickyBar_imCell_2 { width: 30px; min-height: 34px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imStickyBar_imCellStyle_2 { width: 30px; min-height: 34px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imStickyBar_imCellStyleGraphics_2 { left: 0px; right: 0px; }
	/* Main menu background */
	#imStickyBar_imMenuObject_02 { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; background-color: transparent; padding: 0px 0px 0px 0px; }
	/* Main menu button size and position */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li {position: relative;margin-left: 3px; margin-top: 0px; display: inline-block; vertical-align: top; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; .label-wrapper, #imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; div &gt; .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imStickyBar_imMenuObject_02 .hamburger-button {cursor: pointer; width: 34px; height: 34px; display: inline-block; vertical-align: top; padding: 0; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imStickyBar_imMenuObject_02 .hamburger-bar { margin: 3px auto; width: 65%; height: 3px; background-color: rgba(255, 255, 0, 1); }
	#imStickyBar_imMenuObject_02 .label-inner-wrapper, #imStickyBar_imMenuObject_02 .hamburger-button &gt; div { display: table; width: 100%; height: 100%; position: relative; z-index: 1; } #imStickyBar_imMenuObject_02 &gt; ul &gt; li .label, #imStickyBar_imMenuObject_02 .hamburger-button &gt; div &gt; div { display: table-cell; vertical-align: middle; }
	/* Main menu default button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	/* Hamburger button style */
	#imStickyBar_imMenuObject_02 .hamburger-button {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 .hamburger-button .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	/* Main menu current button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imStickyBar_imMenuObject_02 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu hover button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu separator button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02 .imLevel { cursor: default; }
	#imStickyBar_imMenuObject_02 { text-align: right;}
	#imStickyBar_imMenuObject_02 .hidden { display: none; }
	#imStickyBar_imMenuObject_02-menu-opened { overflow: visible; z-index: 10402; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul { display: none; /*margin-bottom: 1px;*/ }
	#imStickyBar_imMenuObject_02-menu-opened li &gt; div { display: none; }
	#imStickyBar_imMenuObject_02-menu-opened div &gt; ul { display: block; }
	#imStickyBar_imMenuObject_02-menu-opened &gt; ul { position: absolute; right: 0; left: auto; top: 40px; background-color: transparent; overflow-x: hidden; overflow-y: auto; height: calc(100% - 40px) }
	#imStickyBar_imMenuObject_02-menu-opened .hamburger-menu-close-button { display: block; font-family: Arial; font-size: 30px; text-align: right; padding: 5px 10px; color: rgba(255, 255, 0, 1); }
	#imStickyBar_imMenuObject_02-menu-opened .hamburger-menu-close-button span { cursor: pointer; }
	#imStickyBar_imMenuObject_02-menu-opened{ position:fixed; top: 0; bottom: 0; right: 0; width: 120px; border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;;  }
	#imPageExtContainer:after{ position: fixed; top: 0; right: 0; width: 0; height: 0; content: ''; opacity: 0; transition: opacity 1s; z-index: 10401;}
	.menu-imStickyBar_imMenuObject_02-opened #imPageExtContainer:after{ width: 100%; height: 100%; background-color: rgba(0, 0, 0, 1); opacity: 0.5;}
	#imStickyBar_imMenuObject_02 .hidden { display: none; }
	/* Responsive menu button size and position */
	#imStickyBar_imMenuObject_02-menu-opened li {position: relative;margin-bottom: 3px; display: inline-block; vertical-align: top; }
	#imStickyBar_imMenuObject_02-menu-opened li:last-child {margin-bottom: 0;}
	#imStickyBar_imMenuObject_02-menu-opened .label-wrapper { display: block; overflow: hidden; position: relative; width: 116px; height: 34px; padding: 0 2px 0 2px; }
	#imStickyBar_imMenuObject_02-menu-opened .label-inner-wrapper { display: table; width: 100%; height: 100%; z-index: 1; position: relative; } #imStickyBar_imMenuObject_02-menu-opened .label { display: table-cell; vertical-align: middle; }
	#imStickyBar_imMenuObject_02-menu-opened .hamburger-menu-background { position: absolute;display: block;top: 0;bottom: 0;width: 120px;right: 0; left: auto;border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;background-color: transparent;transition: left 0.5s, right 0.5s, opacity 0.5s;-webkit-transition: left 0.5s, right 0.5s, opacity 0.5s;}
	/* Responsive menu default button style */
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02-menu-opened ul ul &gt; li &gt; .label-wrapper {background-color: rgba(32, 96, 134, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(52, 116, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(72, 136, 134, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	/* Responsive menu hover button style */
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu current button style */
	#imStickyBar_imMenuObject_02-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imStickyBar_imMenuObject_02-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu separator button style */
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Responsive menu separation line style */
	#imStickyBar_imMenuObject_02-menu-opened {  transform: translate3d(120px, 0 ,0);  transition: transform 1s;  -webkit-transition: transform 1s;}
	#imStickyBar_imMenuObject_02-menu-opened.animated {  transform: translate3d(0, 0, 0);}
	
}

@media (max-width: 719px) and (min-width: 480px) {
	#imStickyBar_imObjectTitle_01_wrapper { position: absolute; top: 8px; left: 4px; width: 475px; height: 43px; z-index: 1002;  }
	#imStickyBar_imCell_1 { width: 475px; min-height: 33px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imStickyBar_imCellStyle_1 { width: 475px; min-height: 33px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imStickyBar_imCellStyleGraphics_1 { left: 0px; right: 0px; }
	#imStickyBar_imObjectTitle_01_text { top: 0px;  }
	#imStickyBar_imObjectTitle_01 { min-height: 33px; }
	#imStickyBar_imMenuObject_02_wrapper { position: absolute; top: 60px; left: 379px; width: 29px; height: 29px; z-index: 1003;  }
	#imStickyBar_imCell_2 { width: 29px; min-height: 34px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }
	#imStickyBar_imCellStyle_2 { width: 29px; min-height: 34px; padding: 0px 0px 0px 0px; border-top: 0; border-bottom: 0; border-left: 0; border-right: 0; }
	#imStickyBar_imCellStyleGraphics_2 { left: 0px; right: 0px; }
	/* Main menu background */
	#imStickyBar_imMenuObject_02 { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; background-color: transparent; padding: 0px 0px 0px 0px; }
	/* Main menu button size and position */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li {position: relative;margin-left: 3px; margin-top: 0px; display: inline-block; vertical-align: top; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; .label-wrapper, #imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; div &gt; .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imStickyBar_imMenuObject_02 .hamburger-button {cursor: pointer; width: 34px; height: 34px; display: inline-block; vertical-align: top; padding: 0; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imStickyBar_imMenuObject_02 .hamburger-bar { margin: 3px auto; width: 65%; height: 3px; background-color: rgba(255, 255, 0, 1); }
	#imStickyBar_imMenuObject_02 .label-inner-wrapper, #imStickyBar_imMenuObject_02 .hamburger-button &gt; div { display: table; width: 100%; height: 100%; position: relative; z-index: 1; } #imStickyBar_imMenuObject_02 &gt; ul &gt; li .label, #imStickyBar_imMenuObject_02 .hamburger-button &gt; div &gt; div { display: table-cell; vertical-align: middle; }
	/* Main menu default button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	/* Hamburger button style */
	#imStickyBar_imMenuObject_02 .hamburger-button {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 .hamburger-button .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	/* Main menu current button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imStickyBar_imMenuObject_02 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu hover button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu separator button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02 .imLevel { cursor: default; }
	#imStickyBar_imMenuObject_02 { text-align: right;}
	#imStickyBar_imMenuObject_02 .hidden { display: none; }
	#imStickyBar_imMenuObject_02-menu-opened { overflow: visible; z-index: 10402; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul { display: none; /*margin-bottom: 1px;*/ }
	#imStickyBar_imMenuObject_02-menu-opened li &gt; div { display: none; }
	#imStickyBar_imMenuObject_02-menu-opened div &gt; ul { display: block; }
	#imStickyBar_imMenuObject_02-menu-opened &gt; ul { position: absolute; right: 0; left: auto; top: 40px; background-color: transparent; overflow-x: hidden; overflow-y: auto; height: calc(100% - 40px) }
	#imStickyBar_imMenuObject_02-menu-opened .hamburger-menu-close-button { display: block; font-family: Arial; font-size: 30px; text-align: right; padding: 5px 10px; color: rgba(255, 255, 0, 1); }
	#imStickyBar_imMenuObject_02-menu-opened .hamburger-menu-close-button span { cursor: pointer; }
	#imStickyBar_imMenuObject_02-menu-opened{ position:fixed; top: 0; bottom: 0; right: 0; width: 120px; border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;;  }
	#imPageExtContainer:after{ position: fixed; top: 0; right: 0; width: 0; height: 0; content: ''; opacity: 0; transition: opacity 1s; z-index: 10401;}
	.menu-imStickyBar_imMenuObject_02-opened #imPageExtContainer:after{ width: 100%; height: 100%; background-color: rgba(0, 0, 0, 1); opacity: 0.5;}
	#imStickyBar_imMenuObject_02 .hidden { display: none; }
	/* Responsive menu button size and position */
	#imStickyBar_imMenuObject_02-menu-opened li {position: relative;margin-bottom: 3px; display: inline-block; vertical-align: top; }
	#imStickyBar_imMenuObject_02-menu-opened li:last-child {margin-bottom: 0;}
	#imStickyBar_imMenuObject_02-menu-opened .label-wrapper { display: block; overflow: hidden; position: relative; width: 116px; height: 34px; padding: 0 2px 0 2px; }
	#imStickyBar_imMenuObject_02-menu-opened .label-inner-wrapper { display: table; width: 100%; height: 100%; z-index: 1; position: relative; } #imStickyBar_imMenuObject_02-menu-opened .label { display: table-cell; vertical-align: middle; }
	#imStickyBar_imMenuObject_02-menu-opened .hamburger-menu-background { position: absolute;display: block;top: 0;bottom: 0;width: 120px;right: 0; left: auto;border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;background-color: transparent;transition: left 0.5s, right 0.5s, opacity 0.5s;-webkit-transition: left 0.5s, right 0.5s, opacity 0.5s;}
	/* Responsive menu default button style */
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02-menu-opened ul ul &gt; li &gt; .label-wrapper {background-color: rgba(32, 96, 134, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(52, 116, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(72, 136, 134, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	/* Responsive menu hover button style */
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu current button style */
	#imStickyBar_imMenuObject_02-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imStickyBar_imMenuObject_02-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu separator button style */
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Responsive menu separation line style */
	#imStickyBar_imMenuObject_02-menu-opened {  transform: translate3d(120px, 0 ,0);  transition: transform 1s;  -webkit-transition: transform 1s;}
	#imStickyBar_imMenuObject_02-menu-opened.animated {  transform: translate3d(0, 0, 0);}
	
}

@media (max-width: 479px) {
	#imStickyBar_imObjectTitle_01_wrapper { position: absolute; top: 5px; left: 3px; width: 313px; height: 37px; z-index: 1002;  }
	#imStickyBar_imCell_1 { width: 100%; min-height: 33px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; box-sizing: border-box; }
	#imStickyBar_imCellStyle_1 { width: 100%; min-height: 0px; padding: 0px 0px 0px 0px; }
	#imStickyBar_imCellStyleGraphics_1 { top: 0px; bottom: 0px; left: 0px; right: 0px; }
	#imStickyBar_imObjectTitle_01_text { top: 0px;  }
	#imStickyBar_imObjectTitle_01 { min-height: 33px; }
	#imStickyBar_imMenuObject_02_wrapper { position: absolute; top: 42px; left: 253px; width: 30px; height: 29px; z-index: 1003;  }
	#imStickyBar_imCell_2 { width: 100%; min-height: 34px;  padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; box-sizing: border-box; }
	#imStickyBar_imCellStyle_2 { width: 100%; min-height: 0px; padding: 0px 0px 0px 0px; }
	#imStickyBar_imCellStyleGraphics_2 { top: 0px; bottom: 0px; left: 0px; right: 0px; }
	/* Main menu background */
	#imStickyBar_imMenuObject_02 { border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; background-color: transparent; padding: 0px 0px 0px 0px; }
	/* Main menu button size and position */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li {position: relative;margin-left: 3px; margin-top: 0px; display: inline-block; vertical-align: top; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; .label-wrapper, #imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; div &gt; .label-wrapper { display: block; overflow: hidden; width: 116px; height: 34px; padding: 0 2px 0 2px; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imStickyBar_imMenuObject_02 .hamburger-button {cursor: pointer; width: 34px; height: 34px; display: inline-block; vertical-align: top; padding: 0; border-width: 0px 0px 0px 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
	#imStickyBar_imMenuObject_02 .hamburger-bar { margin: 3px auto; width: 65%; height: 3px; background-color: rgba(255, 255, 0, 1); }
	#imStickyBar_imMenuObject_02 .label-inner-wrapper, #imStickyBar_imMenuObject_02 .hamburger-button &gt; div { display: table; width: 100%; height: 100%; position: relative; z-index: 1; } #imStickyBar_imMenuObject_02 &gt; ul &gt; li .label, #imStickyBar_imMenuObject_02 .hamburger-button &gt; div &gt; div { display: table-cell; vertical-align: middle; }
	/* Main menu default button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	/* Hamburger button style */
	#imStickyBar_imMenuObject_02 .hamburger-button {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 .hamburger-button .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	/* Main menu current button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imStickyBar_imMenuObject_02 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu hover button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imPage:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; li.imLevel:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Main menu separator button style */
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02 &gt; ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02 .imLevel { cursor: default; }
	#imStickyBar_imMenuObject_02 { text-align: right;}
	#imStickyBar_imMenuObject_02 .hidden { display: none; }
	#imStickyBar_imMenuObject_02-menu-opened { overflow: visible; z-index: 10402; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul { display: none; /*margin-bottom: 1px;*/ }
	#imStickyBar_imMenuObject_02-menu-opened li &gt; div { display: none; }
	#imStickyBar_imMenuObject_02-menu-opened div &gt; ul { display: block; }
	#imStickyBar_imMenuObject_02-menu-opened &gt; ul { position: absolute; right: 0; left: auto; top: 40px; background-color: transparent; overflow-x: hidden; overflow-y: auto; height: calc(100% - 40px) }
	#imStickyBar_imMenuObject_02-menu-opened .hamburger-menu-close-button { display: block; font-family: Arial; font-size: 30px; text-align: right; padding: 5px 10px; color: rgba(255, 255, 0, 1); }
	#imStickyBar_imMenuObject_02-menu-opened .hamburger-menu-close-button span { cursor: pointer; }
	#imStickyBar_imMenuObject_02-menu-opened{ position:fixed; top: 0; bottom: 0; right: 0; width: 120px; border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;;  }
	#imPageExtContainer:after{ position: fixed; top: 0; right: 0; width: 0; height: 0; content: ''; opacity: 0; transition: opacity 1s; z-index: 10401;}
	.menu-imStickyBar_imMenuObject_02-opened #imPageExtContainer:after{ width: 100%; height: 100%; background-color: rgba(0, 0, 0, 1); opacity: 0.5;}
	#imStickyBar_imMenuObject_02 .hidden { display: none; }
	/* Responsive menu button size and position */
	#imStickyBar_imMenuObject_02-menu-opened li {position: relative;margin-bottom: 3px; display: inline-block; vertical-align: top; }
	#imStickyBar_imMenuObject_02-menu-opened li:last-child {margin-bottom: 0;}
	#imStickyBar_imMenuObject_02-menu-opened .label-wrapper { display: block; overflow: hidden; position: relative; width: 116px; height: 34px; padding: 0 2px 0 2px; }
	#imStickyBar_imMenuObject_02-menu-opened .label-inner-wrapper { display: table; width: 100%; height: 100%; z-index: 1; position: relative; } #imStickyBar_imMenuObject_02-menu-opened .label { display: table-cell; vertical-align: middle; }
	#imStickyBar_imMenuObject_02-menu-opened .hamburger-menu-background { position: absolute;display: block;top: 0;bottom: 0;width: 120px;right: 0; left: auto;border-style: solid; border-width: 0px 0px 0px 0px; border-color: transparent transparent transparent transparent; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;background-color: transparent;transition: left 0.5s, right 0.5s, opacity 0.5s;-webkit-transition: left 0.5s, right 0.5s, opacity 0.5s;}
	/* Responsive menu default button style */
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02-menu-opened ul ul &gt; li &gt; .label-wrapper {background-color: rgba(32, 96, 134, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(52, 116, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper {background-color: rgba(72, 136, 134, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul ul ul ul &gt; li &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: normal;}
	/* Responsive menu hover button style */
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li:hover &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; li:hover &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu current button style */
	#imStickyBar_imMenuObject_02-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(0, 0, 0, 1);font-weight: bold;}
	#imStickyBar_imMenuObject_02-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper {background-color: rgba(217, 207, 176, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened .imMnMnCurrent &gt; ul &gt; .imMnMnCurrent &gt; .label-wrapper .label {color: rgba(0, 0, 0, 1);font-weight: bold;}
	/* Responsive menu separator button style */
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper {background-color: rgba(12, 76, 114, 1);background-image: none;border-color: rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1) rgba(211, 211, 211, 1);border-style: solid; }
	#imStickyBar_imMenuObject_02-menu-opened ul &gt; .imMnMnSeparator &gt; .label-wrapper .label {width: 100%;height: 100%;font-family: Arial;font-size: 10pt;font-style: normal;text-decoration: none;text-align: center; color: rgba(255, 255, 0, 1);font-weight: bold;}
	/* Responsive menu separation line style */
	#imStickyBar_imMenuObject_02-menu-opened {  transform: translate3d(120px, 0 ,0);  transition: transform 1s;  -webkit-transition: transform 1s;}
	#imStickyBar_imMenuObject_02-menu-opened.animated {  transform: translate3d(0, 0, 0);}
	
}

</pre></body></html>