body{
background-color: black;
margin: 0px;
padding: 0px;
}

#wrapper {
/* Set left and right margins to auto, thus centering the 
     element in the containing (body) tag: */
  margin-top: -1px;
  margin-left: auto;
  margin-right: auto;  
  /* Reset alignment to compensate for 'text-align:center': */
  text-align: left;
  /* Specify the width of the element. This should be the same
     as 'body min-width': */
  width: 769px;
}
.style1 {
font-size: 9px;
}

#main_table{  
position:absolute; 
margin-top: 0px; 
padding: 0px;
}

#main{
background-image: url(../images/content.jpg); 
background-repeat:no-repeat;
}

.l_expand{
background-image: url(../images/left_expander.gif);
background-repeat: repeat-y;
}

.r_expand{
background-image: url(../images/right_expander.gif);
background-repeat: repeat-y;
}

.content{
padding-left: 20px;
padding-right: 10px;
color:#333333;
line-height: 120%;
font-size:12px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}


.content ul li {
padding-left: 20px;
padding-right: 10px;
color:#333333;
text-decoration:none;
line-height: 120%;
font-size:10px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}

.content a {
color:#333333;
font-weight:bold;
text-decoration:none;
line-height: 120%;
font-size:12px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}

.content a:hover{
color:#990000;
text-decoration:none;
line-height: 120%;
font-size:12px;
font-family:Verdana, Arial, Helvetica, sans-serif;

}


li a{
padding-left: 20px;
padding-right: 10px;
color:#333333;
text-decoration:none;
line-height: 120%;
font-size:10px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}

.mtable_small{
padding: 0px;
color:#666666;
font-weight:bold;
line-height: 75%;
text-decoration: none;
font-size:10px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}

.mtable_small a{
padding: 0px;
color:#666666;
font-weight:bold;
line-height: 75%;
text-decoration: none;
font-size:10px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}

.bread {
padding: 0px;
line-height: 1 em;
color:#333333;
font-weight:bold;
text-decoration: none;
font-size:9px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}


.bread a{
padding: 0px;
line-height: 1em;
color:#333333;
font-weight:bold;
text-decoration: none;
font-size:9px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}

.bread a:hover{
padding: 0px;
line-height: 1em;
color:#999999;
font-weight:bold;
text-decoration: none;
font-size:9px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}

h1{
text-indent: 75px;
font-weight:bold;
color:#CA0000;
font-size:18px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}

.tablecell{
padding-left: 2px;
color:#333333;
line-height: 120%;
font-size:12px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}


#footerkeywords {

}


/*DROP DOWN MENU WITH CSS*/

#menu {
width: 10em; /* set width of menu */
background-color: transparent;
padding-left: 20px;
} 

#menu ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}

/* style, color and size links and headings to suit */
#menu a, #menu h2 {
font: bold 15px/16px arial, helvetica, sans-serif;
display: block;
margin: 0;
padding: 2px 3px;
}

#menu h2 {
color: #fff;
background-color: transparent;
text-transform: uppercase;
}

#menu a {
color: #fff;
background-color: transparent;
text-decoration: none;
}

#menu a:hover {
color: #cccccc;
background-color: transparent;
}

#menu li {
/* make the list elements a containing block for the nested lists */
position: relative;
} 

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%; /* to position them to the right of their containing block */
width: 100%; /* width is based on the containing block */
}

/*Hiding and Revealing using :hover*/

div#menu ul ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}

/*fixing for IE*/

<!--[if IE]>       
<style type="text/css" media="screen">

body {
behavior: url(http://www.nanaimofoundry.com/styles/csshover.htc); /* call hover behaviour file */
font-size: 100%; /* enable IE to resize em fonts */
} 
#menu ul li {
float: left; /* cure IE5.x "whitespace in lists" problem */
width: 100%;
}
#menu ul li a {
height: 1%; /* make links honour display: block; properly */
} 

#menu a, #menu h2 {
font: bold 0.7em/1.4em arial, helvetica, sans-serif; 
/* if required use em's for IE as it won't resize pixels */
} 
</style>
<![endif]