/*
#navcontainer { width: 200px; }

#navcontainer ul
{
margin: 0 0 0 0;
padding-left: 0;
list-style: none;
font-family: Arial, Helvetica, sans-serif;
font: 120%;
}

#navcontainer ul ul
{
display: block;
position: relative;
margin: 0 0 0 0;
left: 90%;
padding-left: 0;
list-style: none;
font-family: Arial, Helvetica, sans-serif;
font: 120%;
}

#navcontainer a
{
display: block;
padding: 3px;
width: 100%;
background-color: #FFCC33;
border-bottom: 0px solid #eee;
}

#navcontainer a:link, #navcontainer a:visited
{
color: #000000;
text-decoration: none;
}

#navcontainer a:hover
{
background-color: #FFFFCC;
color: #fff;
display: block;
}

#navcontainer a#current
{
background-color: #CCCC33;
color: #FFF;
font: 150%;
}
#navcontainer ul ul
{display: none;}

#navcontainer ul li:hover ul
{display: block;}
*/

/**************** page coding *****************/
body {
text-align:center;
}

div#page {
border-width: 0px;
border-style: solid;
text-align: center;
width:650px;
margin-right:auto;
margin-left:auto;
margin-top:10px;
padding:0px;
background:#fc2;
}

div#contentheader {
width:650px;
background:#fc2;
}

div#contentleft {
width:175px;
padding:0px;
float:left;
background:#fc3;
}
	
div#contentcenter {
width:455px;
padding:10px;
float:right;
background:#fff;
}

/**************** menu coding *****************/
#menu {
width: 100%;
background: #eee;
}

#menu ul {
list-style: none;
margin: 0;
padding: 0;
}

#menu a, #menu h2 {
font: bold 11px/16px arial, helvetica, sans-serif;
display: block;
border-width: 1px;
border-width: 1px;
border-style: solid;
border-color: #ccc #888 #555 #bbb;
margin: 0;
padding: 2px 3px;
}

#menu h2 {
color: #fff;
background: #000;
text-transform: uppercase;
/*display: none;   turn off toplevel menu*/
}

#menu a {
color: #000;
background: #efefef;
background: #fc3;
text-decoration: none;
}

/**** popout menu properties
#menu ul ul ul a {
color: #000;
//background: #efefef;
background: #fff;
text-decoration: none;
}
*****/
#menu a:hover {
color: #a00;
background: #fff;
}

#menu li {
position: relative;
}

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%;
width: 100%;
}

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;}

