/* CSS Document */
/* ===========================<Start of Firefox html for css>=============================================================== */
/* By specifiying Firefox default css settings, we insure that all browsers display css almost in an identical manner*/
/*CSS specifics to this website starts on line 433 */
/*[dir="rtl"] {
  direction: rtl;
  unicode-bidi: embed;
}
[dir="ltr"] {
  direction: ltr;
  unicode-bidi: embed;
}
bdo[dir] {
  unicode-bidi: bidi-override;
}*/

/* blocks */

html, div, map, dt, isindex, form {
  display: block;
}

body {
  display: block;
  margin: 8px;
}

p, dl, multicol {
  display: block;
  margin: 1em 0;
}

dd {
  display: block;
  -moz-margin-start: 40px;
}

blockquote {
  display: block;
  margin: 1em 40px;
}

address {
  display: block;
  font-style: italic;
}

center {
  display: block;
  text-align: -moz-center;
}

blockquote[type=cite] {
  display: block;
  margin: 1em 0px;
  padding-left: 1em;
  border-left: solid;
  border-color: blue;
  border-width: thin;
}

span[_moz_quote=true] {
  color: blue;
}

pre[_moz_quote=true] {
  color: blue;
}

h1 {
  display: block;
  font-size: 2em;
  font-weight: bold;
  margin: .67em 0;
}

h2 {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  margin: .83em 0;
}

h3 {
  display: block;
  font-size: 1.17em;
  font-weight: bold;
  margin: 1em 0;
}

h4 {
  display: block;
  font-weight: bold;
  margin: 1.33em 0;
}

h5 {
  display: block;
  font-size: 0.83em;
  font-weight: bold;
  margin: 1.67em 0;
}

h6 {
  display: block;
  font-size: 0.67em;
  font-weight: bold;
  margin: 2.33em 0;
}

listing {
  display: block;
  font-family: -moz-fixed;
  font-size: medium;
  white-space: pre;
  margin: 1em 0;
}

xmp, pre, plaintext {
  display: block;
  font-family: -moz-fixed;
  white-space: pre;
  margin: 1em 0;
}

/* tables */

table {
  display: table;
  border-spacing: 2px;
  border-collapse: separate;
  margin-top: 0;
  margin-bottom: 0;
  -moz-box-sizing: border-box;
  text-indent: 0;
}

table[align="left"] {
  float: left;
}

table[align="right"] {
  float: right;
  text-align: start;
}

table[rules]:not([rules="none"]) {
  border-collapse: collapse;
}
   
/* caption inherits from table not table-outer */  
caption {
  display: table-caption;
  text-align: center;
  -moz-box-sizing: border-box;
}

table[align="center"] > caption {
  margin-left: auto;
  margin-right: auto;
}

table[align="center"] > caption[align="left"] {
  margin-right: 0;
}

table[align="center"] > caption[align="right"] {
  margin-left: 0;
}

tr {
  display: table-row;
  vertical-align: inherit;
}

col {
  display: table-column;
}

colgroup {
  display: table-column-group;
}

tbody {
  display: table-row-group;
  vertical-align: middle;
}

thead {
  display: table-header-group;
  vertical-align: middle;
}

tfoot {
  display: table-footer-group;
  vertical-align: middle;
}

/* for XHTML tables without tbody */
table > tr {
  vertical-align: middle;
}

td { 
  display: table-cell;
  vertical-align: inherit;
  text-align: inherit; 
  padding: 1px;
}

th {
  display: table-cell;
  vertical-align: inherit;
  font-weight: bold;
  padding: 1px;
}

/*tr > form:-moz-is-html, tbody > form:-moz-is-html,
thead > form:-moz-is-html, tfoot > form:-moz-is-html,
table > form:-moz-is-html {
  /* Important: don't show these forms in HTML */
  /*display: none !important;
}

/* inlines */

q:before {
  content: open-quote;
}

q:after {
  content: close-quote;
}

b, strong {
  font-weight: bolder;
}

i, cite, em, var, dfn {
  font-style: italic;
}

tt, code, kbd, samp {
  font-family: -moz-fixed;
}

u, ins {
  text-decoration: underline;
}

s, strike, del {
  text-decoration: line-through;
}

blink {
  text-decoration: blink;
}

big {
  font-size: larger;
}

small {
  font-size: smaller;
}

sub {
  vertical-align: sub;
  font-size: smaller;
  line-height: normal;
}

sup {
  vertical-align: super;
  font-size: smaller;
  line-height: normal;
}

nobr {
  white-space: nowrap;
}

/* titles */
/*abbr[title], acronym[title] {
  border-bottom: dotted 1px;
}

/* lists */

ul, menu, dir {
  display: block;
  list-style-type: disc;
  margin: 1em 0;
  -moz-padding-start: 40px;
}

ol {
  display: block;
  list-style-type: decimal;
  margin: 1em 0;
  -moz-padding-start: 40px;
}

li {
  display: list-item;
  -moz-float-edge: margin-box;
}

/* nested lists have no top/bottom margins */
ul ul,   ul ol,   ul dir,   ul menu,   ul dl,
ol ul,   ol ol,   ol dir,   ol menu,   ol dl,
dir ul,  dir ol,  dir dir,  dir menu,  dir dl,
menu ul, menu ol, menu dir, menu menu, menu dl,
dl ul,   dl ol,   dl dir,   dl menu,   dl dl {
  margin-top: 0;
  margin-bottom: 0;
}

/* 2 deep unordered lists use a circle */
/*ol ul,   ul ul,   menu ul,   dir ul,
ol menu, ul menu, menu menu, dir menu,
ol dir,  ul dir,  menu dir,  dir dir {
  list-style-type: circle;
}

/* 3 deep (or more) unordered lists use a square */
/*ol ol ul,     ol ul ul,     ol menu ul,     ol dir ul,
ol ol menu,   ol ul menu,   ol menu menu,   ol dir menu,
ol ol dir,    ol ul dir,    ol menu dir,    ol dir dir,
ul ol ul,     ul ul ul,     ul menu ul,     ul dir ul,
ul ol menu,   ul ul menu,   ul menu menu,   ul dir menu,
ul ol dir,    ul ul dir,    ul menu dir,    ul dir dir,
menu ol ul,   menu ul ul,   menu menu ul,   menu dir ul,
menu ol menu, menu ul menu, menu menu menu, menu dir menu,
menu ol dir,  menu ul dir,  menu menu dir,  menu dir dir,
dir ol ul,    dir ul ul,    dir menu ul,    dir dir ul,
dir ol menu,  dir ul menu,  dir menu menu,  dir dir menu,
dir ol dir,   dir ul dir,   dir menu dir,   dir dir dir {
  list-style-type: square;
}


/* leafs */

/* <hr> noshade and color attributes are handled completely by
 * the nsHTMLHRElement attribute mapping code
 */
hr {
  display: block;
  height: 2px;
  border: 1px -moz-bg-inset;
  margin: 0.5em auto 0.5em auto;
  -moz-float-edge: margin-box;
  -moz-box-sizing: border-box;
}

hr[size="1"] {
  border-style: -moz-bg-solid none none none;
}

/**|*:-moz-any-link img, img[usemap], object[usemap] {
  border: 2px solid;
}

img[usemap], object[usemap] {
  color: blue;
}*/

frameset {
  display: block ! important;
  overflow: -moz-hidden-unscrollable;
  position: static ! important;
  float: none ! important;
  border: none ! important;
}

frame {
  border: none ! important;
}

iframe {
  border: 2px inset;
}

noframes {
  display: none;
}

spacer {
  position: static ! important;
  float: none ! important;
}

canvas {
  -moz-user-select: none;
}

/* focusable content: anything w/ tabindex >=0 is focusable */
abbr:focus, acronym:focus, address:focus, applet:focus, b:focus, 
base:focus, big:focus, blockquote:focus, br:focus, canvas:focus, caption:focus,
center:focus, cite:focus, code:focus, col:focus, colgroup:focus, dd:focus,
del:focus, dfn:focus, dir:focus, div:focus, dl:focus, dt:focus, em:focus,
fieldset:focus, font:focus, form:focus, h1:focus, h2:focus, h3:focus, h4:focus,
h5:focus, h6:focus, hr:focus, i:focus, img:focus, ins:focus, 
kbd:focus, label:focus, legend:focus, li:focus, link:focus, menu:focus, 
object:focus, ol:focus, p:focus, pre:focus, q:focus, s:focus, samp:focus, 
small:focus, span:focus, strike:focus, strong:focus, sub:focus, sup:focus, 
table:focus, tbody:focus, td:focus, tfoot:focus, th:focus, thead:focus, 
tr:focus, tt:focus, u:focus, ul:focus, var:focus {
   outline: 1px dotted invert;
}

/* hidden elements */
area, base, basefont, head, meta, script, style, title,
noembed, param {
   display: none;
}

/* emulation of non-standard HTML <marquee> tag */
marquee {
  display: block;
  -moz-binding: url('chrome://xbl-marquee/content/xbl-marquee.xml#marquee-horizontal');
}

marquee[direction="up"], marquee[direction="down"] {
  -moz-binding: url('chrome://xbl-marquee/content/xbl-marquee.xml#marquee-vertical');
  height: 200px;
}


/* ===========================<End of Firefox html for css>=============================================================== */

body {
	font-family:Arial, Helvetica, sans-serif;
}
/*div {
	border: 1px dotted red;
}*/
div#container {
	position:relative;
	top:5px;
	width: 750px;
	margin-left:auto;
	margin-right:auto;
}
div#header {
	position:absolute;
	top:0px;
	left:0px;
	width:325px;
	height:30px;
	background-color:#808080;
	color:#FFFFFF;
	font-size:22px;
	border: 1px solid #808080;
}
#title {
	display:block;
	margin:3px 0px 0px 5px;
}
div#topMenu {
	position:absolute;
	top:0px;
	left:295px;
	width:455px;
	height:30px;
	background-color:#808080;
	border: 1px solid #808080;
	z-index:5;
}
.navMenu {
	float:right;
	/*padding:5px 0px 0px 0px;*/
	margin:5px 0px 0px 0px;
}
.navMenu td {
	text-align:center;
	border-right: 1px solid white;
}
.navMenu td.lastLink {
	border-right: 0px solid white;
}
.navMenu a:link {
	font:Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	text-decoration:none;
	font-size:12px;
}
.navMenu a:visited {
	font:Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	text-decoration:none;
	font-size:12px;
}
.navMenu a:hover {
	text-decoration:underline;
	font-size:12px;
}
#menu1 {
	width:350px;
}
#menu2 {
	width:750px;
}
div#menu {
	position:absolute;
	top:34px;
	left:0px;
	width:175px;
	height:305px;
	background-color:#E2E2E2;
	border: 1px solid #808080;
	z-index:10;
}
div#slideShow {
	position:absolute;
	top:34px;
	left:180px;
	width:570px;
	height:305px;
	border: 1px solid #808080;
	z-index:5;
}
div#info {
	position:absolute;
	top:343px;
	left:0px;
	width:620px;
	height:100px;
	background-color:#E2E2E2;
	border: 1px solid #808080;
}
div#track {
	position:absolute;
	top:343px;
	left:625px;
	width:125px;
	height:100px;
	text-align:center;
	border: 1px solid #808080;
}
div#footer {
	position:absolute;
	top:447px;
	left:0px;
	width:750px;
	height:30px;
	background-color:#808080;
	border: 1px solid #808080;
}

ul.makeMenu, ul.makeMenu ul {
  width: 175px;                 /* sets the size of the menu blocks */
  /*border: 1px solid #000; */     /* puts a black border around the menu blocks */
  background-color: #E2E2E2;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  
}
ul.makeMenu li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #000000;                 /* sets the default font colour to white */
  border-bottom:1px solid white;
}

ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  
  display: none;               /* hides child menu blocks - one of the most important declarations */
  width: 195px;
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 0px;                    /* 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 */
  border-left: 1px solid white;
}
ul.makeMenu li > ul > li > ul{         
  
  display: none;               
  width: 145px;
  position: absolute;          
  top: 0px;                    
  left: 195px;
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
	background-color: #808080;
	color: #FFFFFF;
 	font-weight: bold;
	}
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 */
  font-weight:normal;
  width:130px;
  position:absolute;
  top:0px;
  Left:175px;
  border-left: 1px solid white;
}
ul.makeMenu ul 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 */
  font-weight:normal;
  width:145px;
  position:absolute;
  top:0px;
  Left:130px;
 /* border-left: 1px solid white;*/
}
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 */
  font-weight:normal;
}
/* and some link styles */
ul.makeMenu li a { color: #000000; display: block; padding:3px 0px 3px 0px; width: 100%; text-decoration: none; font-family:Arial, Helvetica, sans-serif; font-size:12px; }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #ffffff; }
ul.makeMenu li:hover > a { color: #ffffff; } /* supports links in branch headings - must not be display: block; */
.bold {
	font-weight:bold;
}
#higherLevelLink1 {     
  border-top:1px solid #000000;
}
.makeMenu li.higherLevelLink2 {     
  border-top:1px solid #000000;
  border-bottom:0px;
}
#higherLevelLink3 {     
  border-top:1px solid #000000;
  border-bottom:1px solid #000000;
}
#higherLevelLink4 {
  border-bottom:0px;
}
#ups {
	font-size:11px;
	font-style: italic;	
}
#track a:link {
	text-decoration:none;
}
.bullet li {
	font-size:13px;
	list-style-type: disc;
	list-style-position: inside;
	margin-left:3px;
}
.bulletF li {
	font-size:12px;
	list-style-type: disc;
	list-style-position: inside;
	margin-left:3px;
}

