/* Ben's Cascading Style Sheet */


/* main body font */
body
{
  font-family: 'serif';
}


/* Settings for table that fill screen */
table.main
{
  width: 100%;
  height: 90%;
  text-align: left;
  border: 0px;
  cellpadding: 0px;
  cellspacing: 0px
}


/* header bar of main table */
th.main
{
  background-color: black;
  height: 55px;
  vertical-align: middle;

}


/* Main Title (in th.main) */
span.Title
{ 
  color: white;
  font-size: 250%;
  padding-left: 80px;
}


/* Sub Title (after Main Title) */
span.subTitle
{
  color: white;
  /*font-size: 100%; */
  padding-left: 50px;
  vertical-align: bottom;
}


/* Right Side main body cell */
td.right_col
{
  /*padding-top: 5px;*/
  vertical-align: top;
}


/* Left navigation */
td.left_col
{
  vertical-align: top;
  width: 160px;
  padding-top: 5px;
}

/* Path navigation (top of right col)*/
td.path
{
  text-align: right;
  color: #A7A09A;
  font-size: 75%;
  padding-top: 5px;
  padding-right: 5px;
  vertical-align: top;
}


/* All paragraph text */
p
{
  text-indent: 20pt;
}

/* path hyperlinks */
td.path a         { text-decoration: none; color: #A7A09A; }
td.path a:link    {  }
td.path a:visited {  }
td.path a:active  {  }
td.path a:hover   { color: black; border-bottom: 1px solid; }

/* text hyperlinks in paragraph text */
td.right_col a         { font-weight: bold; text-decoration: none; color: Black; }
td.right_col a:link    { border-bottom: 1px solid; }
td.right_col a:visited { border-bottom: 1px dashed; }
td.right_col a:active  { border-bottom: 1px solid; color: White;  background-color: black; }
td.right_col a:hover   { border-bottom: 1px solid; }



/* Footer */
p.footer
{
  text-align: center;
  color: #A7A09A;
  text-indent: 0px;
}


/* this is a divider */
span.divider
{ 
  padding: 2px;
  padding-left: 3px;
  display: block;
  border-style: solid;
  border-width: 2px 0px 0px 6px;
  border-color: black;
  font-weight: bold;
  margin-top: 50px;
  /*margin-bottom: 0px; */
  margin-left: 0px;
  /*margin-right: 100px;*/
  text-indent: 0px;
  width: 300px;
  font-size: 150%;
}

img
{
  border: 0px solid;
}


/**********************/
/***  For new menu  ***/
/**********************/

ul.makeMenu 
{
	position: fixed; /* Firefox users get a goodie */
}

ul.makeMenu  /* main menu container */
{ 
	width: 140px;             /* sets the size of the menu blocks */
	background-color: white;  /* a bg-color MUST be included for IE to work properly! */
	color: #000000;
	padding: 0px;
  	padding-left: 0px; /* stops the usual indent from ul */
	margin-left: 0px;  /* Opera 7 final's margin and margin-box model cause problems */
	font-size: 16px;
}

ul.makeMenu ul  /* sub menu container */
{	
	width: 125px;  				/* sets the size of the sub menu blocks */
	font-size: 13px;
	background-color: white;  	/* a bg-color MUST be included for IE to work properly! */
	margin-left: 0px;           /* Opera 7 final's margin and margin-box model cause problems */
	border-style: solid; 
	border-left-width: 6px;      /* this border puts some space between main-menu and sub-menu that the mouse can traverse*/
	border-left-color: #000000;
	border-right-width: 2px;     /*this puts some white space to the right of the sub-menu to buffer against the text on the page */
	border-right-color: #FFFFFF;
	border-top-width: 0px;
	border-bottom-width: 0px;		
	padding: 0px;
	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 even with the parent menu item */
  	left: 134px;                 /* 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 /*main menu and sub menu line items */
{ 
	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: black;
  	background-color: white;
  	padding: 0px;
  	padding-left: 3px;
  	border-style: solid;
  	border-width: 0px 0px 2px 6px;
  	border-color: black;
  	margin-bottom: 5px;
  	font-weight: bold;
  	text-decoration: none;
  	text-align: left;
}

ul.makeMenu ul li /* sub menu line items */
{
	list-style-type: none; /* removes the bullet points */
	margin: 0px;           /* Opera 7 puts large spacings between li elements */
	margin-left: 2px;      /* for space between left bar and bottom bar*/
	margin-bottom: 5px;
	border: solid #000000;
	border-width: 0px 0px 2px 0px; /* no border */
}

ul.makeMenu ul li.top /* first line of sub menu */
{
	margin-left: 0px;
	background-color: black;
	/*color: black;*/
	/*text-align: right;*/
	padding-right: 10px;
	font-size: 16px;
}


ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight /* active menu item */
{
  background-color: black;      /* 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 */
}

/* and some link styles */
ul.makeMenu li a /* menu links */
{
	color: black; 
	display: block; 
	width: 100%; 
	text-decoration: none;
}
ul.makeMenu li.top a /* first row of sub menu */
{ 
	color: white; 
	display: block; 
	width: 100%; 
	text-decoration: none;
}

ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink {  } /*active menu item when link? */
ul.makeMenu li:hover > a {  } /*active menu item when link? */ /* supports links in branch headings - must not be display: block; */

ul.makeMenu li a:hover, ul li a.CSStoHighLink { background-color: black; color: white; } /*active menu item when link? */
ul.makeMenu li:hover > a { background-color: black; color: white; } /*active menu item when link? */ /* supports links in branch headings - must not be display: block; */


/*NOTE there is more we have to do for IE... it is in the header */
/* this is what is there */

/*   < ! - - [if gte IE 5]><![if lte IE 7]>
<style>
/* 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: 0px; left: 10px;
}
</style>
<![endif]><![endif] - - > 
*/

