body{
  margin:10px 10px 100px 10px;
  padding:70px 300px 0px 250px;
 }
 div#header{
  position:absolute;
  top:0;
  left:0;
  width:97%;
  height:50px;
  margin-left:20px;
  margin-right:20px;
  vertical-align:bottom;
  border-style:solid;
  border-color:black;
  border-width:1px 0px; /* top and bottom borders: 1px; left and right borders: 0px */
  line-height:11px;
  background-color:#eee;
 }
 div#Content{
  font:12px verdana, arial, helvetica, sans-serif;
 }
 div#navAlpha{
  position:absolute;
  margin-left:20px;
  top:60px;
  left:0;
  width:200px;
  /*height:100%;*/
  border:1px dashed black;
  background-color:#eee;
  padding:10px;
  z-index:1;
 }
 div#navBeta{
  position:absolute;
  margin-right:20px;
  top:60px;
  right:0;
  width:160px;
  /*height:100%;*/
  border:1px dashed black;
  background-color:#eee;
  padding:10px;
  z-index:1;
 }
 @media screen{
  body>div#header{
   position:fixed;
  }
  body>div#navAlpha{
   position:fixed;
  }
  body>div#navBeta{
   position:fixed;
  }
 }
 * html body{
  overflow:hidden;
 } 
 * html div#content{
  height:100%;
  overflow:auto;
 }
 
a {
	color:#09c;
	font-size:11px;
	font-family:verdana, arial, helvetica, sans-serif;
	font-weight:600;
	text-decoration:none;
	}
a:link {color:#09c;}
a:visited {color:#07a;}
a:hover {background-color:#eee;}

ul.makeMenu, ul.makeMenu ul {
  width: 200px;                 /* sets the size of the menu blocks */
  border: 0px solid #000;      /* puts a black border around the menu blocks */
  background-color: #eee;      /* 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: #09c;                 /* sets the default font colour to white */
  border: 0px solid black;
  font-weight:900;
  z-index:3;
}
.box {
  border:1px solid black;
}
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 */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 0px;                    /* position slightly lower than the parent menu item */
  left: 195px;                  /* this must not be more than the width of the parent block, or the mouse will
  width: 150px;                                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: #ffa;      /* gives the active menu items a yellow background */
  color: #000;                 /* makes the active menu item text black */ 
}
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 */
}
/* and some link styles */
ul.makeMenu li a { color: #09c; display: block; width: 100%; text-decoration: underline; }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #09c; }
ul.makeMenu li:hover > a { color: #09c; } /* supports links in branch headings - must not be display: block; */

/* that IE 5+ conditional comment makes this only visible in IE 5+ */
ul.makeMenu li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
	behavior: url( IEmen.htc );
}
ul.makeMenu ul {  /* copy of above declaration without the > selector */
	display: none; position: absolute; top: 2px; left: 78px;
}


h1 {
	margin:0px 0px 15px 0px;
	padding:0px;
	font-size:28px;
	font-weight:900;
	color:#ccc;
	}
h2 {
	font:bold 12px/14px verdana, arial, helvetica, sans-serif;
	margin:0px 0px 5px 0px;
	padding:0px;
	}
h3 {
	margin:0px 0px 0px 0px;
	padding:0px;
	font-size:11px;
	font-weight:900;
	color:#09c;
	border: 1px solid black;
	}

p {
	font:11px/20px verdana, arial, helvetica, sans-serif;
	margin:0px 0px 16px 0px;
	padding:0px;
	}

