/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.1
*/
/* base.css, part of YUI's CSS Foundation */
a{text-decoration: none;color: #818181;}
a:hover{color: #e20a16;text-decoration: underline;}
	
.hide,hr{display: none;}
strong{font-weight: bold;}

h1 {
	/*18px via YUI Fonts CSS foundation*/
	font-size:100%;
	color:#7b7b7b;
	font-style:normal;
	font-weight:normal;
	line-height:20px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #7f7f7f;
	padding-bottom: 10px;
	width:700px;	
}
h2 {
	/*16px via YUI Fonts CSS foundation*/
	font-size:100%;
	color:#549624;
	font-style:normal;
	font-weight:normal;
	line-height:20px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #7f7f7f;
	padding-bottom: 25px;
	width:700px;
	
}
h3 {
	/*14px via YUI Fonts CSS foundation*/
	font-size:108%;  
}
h6 {
	/*14px via YUI Fonts CSS foundation*/
	font-size:75%;  
}

h1,h2,h3 {
	/* top & bottom margin based on font size */
	margin:1em 0;
}

abbr,acronym {
	/*indicating to users that more info is available */
	border-bottom:1px dotted #000;
	cursor:help;
} 
em {
	/*bringing italics back to the em element*/
	font-style:italic;
}
blockquote,ul,ol,dl {
	/*giving blockquotes and lists room to breath*/
	margin:1em;
}
ol,ul,dl {
	/*bringing lists on to the page with breathing room */
	margin-left:2em;
}
ol li {
	/*giving OL's LIs generated numbers*/
	list-style: decimal outside;	
}

dl dd {
	/*giving UL's LIs generated numbers*/
	margin-left:1em;
}
th,td {
	/*borders and padding to make the table readable*/
	border:1px solid #000;
	padding:.5em;
}
th {
	/*distinguishing table headers from data cells*/
	font-weight:bold;
	text-align:center;
}
caption {
	/*coordinated margin to match cell's padding*/
	margin-bottom:.5em;
	/*centered so it doesn't blend in to other content*/
	text-align:center;
}
p,fieldset,table,pre {
	/*so things don't run into each other*/
	margin-bottom:1em;
}
/* setting a consistent width, 160px; 
   control of type=file still not possible */
input[type=text],input[type=password],textarea{width:12.25em;*width:11.9em;}





#hd{
	text-align: right;
	height:24px;
	font-size:11px;
}


/* MENU */
.menu {
z-index:1000;
font-size:90%;
margin:59px 0 50px 0px; 
font-family:'Trebuchet MS', Verdana,Helvetica, sans-serif;/* this page only */
color:#818181;

}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
width:150px;
}
/* hack for IE5.5 */
* html .menu ul {margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */
.menu li {
position:relative;
background:#fff;
height:26px;
}

/* get rid of the table */
.menu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
.menu a, .menu a:visited {
display:block; 
text-decoration:none;
height:25px;
line-height:25px;
width:149px;
color:#818181;
text-indent:5px;
border:1px solid #fff;
border-width:0 1px 1px 0;
text-decoration: none;
}
/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {background:#fff; width:150px; w\idth:149px;text-decoration: none;}
/* style the link hover */
* html .menu a:hover {color:#fff; background:#e20a16;text-decoration: none;}

.menu :hover > a {
color:#fff; 
background:#e20a16;
text-decoration: none;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
top:0;
left:150px; 
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul {
visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}

