td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: 14px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #333333;
	}

p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #080808;
	text-decoration: none;
}	
	
.side {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #080808;
	text-decoration: none;
	}	
	
	
.text_body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: 14px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #333333;
	}

.text_homepage {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: 12px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #666666;
	text-decoration: none;
	}
	
.text_homepage_link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: 12px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #666666 ;
	text-decoration: underline;
	}
	
.text_body_bold {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px; font-style: normal;
	line-height: 14px; font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #333333;
	}
	
.breadcrumb_nav {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: 16px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #333333 ;
	text-decoration: none;
	}

ul.makeMenu, ul.makeMenu ul {
  width: 180px;
  margin: 0px;
  padding: 0px;
  padding-top: 1px;
  padding-bottom: 1px;
  border: none;
  border: 1px #7C96A1 solid;
  list-style: none;
  position: relative;
}
ul.makeMenu li {
  margin: 0px;
  margin-left: 1px;
  margin-right: 1px;
  margin-bottom: -1px;
  padding: 2px;
  padding-left: 0px;
  border: 1px #ffffff solid;
  background: #3E5267;
  color: #FFFFFF;
  cursor: default;
  position: relative;
}
ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  border: none;
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: -2px;                    /* position slightly lower than the parent menu item */
  left: 175px;                 /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #025FC1;   /* gives the active menu items a yellow background */
}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}
ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}
ul.makeMenu li a {
  color: #FFFFFF;
  text-decoration: none;
  padding: 3px;
  }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink {
  }
ul.makeMenu li:hover > a {
  } 