/* MENU.CSS FOR FORMATTING THE MAIN MENU */
/* CSS DOCUMENTUM WITH UTF-8 CHARACTER SET */
@charset "utf-8";
/* font face setting */
@font-face {
  font-family: 'avantgarde_bk_btbook';
  src: url('../_font/avantgardebkbtbook-webfont.eot');
  src: url('../_font/avantgardebkbtbook-webfont.eot?#iefix') format('embedded-opentype'),
       url('../_font/avantgardebkbtbook-webfont.woff') format('woff'),
       url('../_font/avantgardebkbtbook-webfont.ttf') format('truetype'),
       url('../_font/avantgardebkbtbook-webfont.svg#avantgarde_bk_btbook') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'segoeui';
  src: url('../_font/segoeui.eot');
  src: url('../_font/segoeui.eot?#iefix') format('embedded-opentype'),
       url('../_font/segoeui.woff') format('woff'),
       url('../_font/segoeui.ttf') format('truetype'),
       url('../_font/segoeui.svg#segoeui') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* CLS_MAIN_MENU CLASS ONLY FOR THE MAIN MENU */
/* MAIN MENU DIV */
#main_menu {
  position: absolute;
  z-index: 2;
  width: auto;
  height: auto;
  left: 30%;
  top: 8%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
  text-decoration: none;
  text-align: center;
}
/* END: MAIN MENU DIV */
/* UL LIST ELEMENT */
.cls_main_menu ul {
  list-style: none;
  display: block;
	float: left;
	white-space: nowrap;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "avantgarde_bk_btbook";
  font-size: 24px;
  margin: 0;
  padding: 0;
}
/* END: UL LIST ELEMENT */
/* UL,LI LIST ELEMENTS */
.cls_main_menu ul li {
  list-style-type: none;
  margin: 0px;
  padding: 0px 17px 0px 0px;
  font-family: "avantgarde_bk_btbook";
  /*font-style: italic;
  font-weight: bold;*/
  font-size: 18px;
  /*display: inline;*/
  display: block;
  position: relative;
  float: left;
}
.cls_main_menu li ul {
  display: none;
}
/* END: UL,LI LIST ELEMENTS */
/* UL,LI LIST ELEMENTS AND USING A LINK */
.cls_main_menu ul li a {
  display: block;
  text-decoration: none;
  color: #000000;
  border-top: 1px solid #FFFFFF;
  padding: 5px 15px 5px 15px;
  background: #FFFFFF;
  margin-left: 1px;
  white-space: nowrap;
}
.cls_main_menu ul li a:hover {
  background: #FFF;
  color: #3e8b94;
}
.cls_main_menu li:hover ul {
  display: block;
  position: absolute;
}
.cls_main_menu li:hover li {
  float: none;
  font-size: 14px;
}
.cls_main_menu li:hover a {
  background: #FFFFFF;
}
.cls_main_menu li:hover li a:hover {
  background: #FFFFFF;
}
/* END: UL,LI LIST ELEMENTS AND USING A LINK */
/* END: CLS_MAIN_MENU CLASS ONLY FOR THE MAIN MENU */