/*Credits: Dynamic  Drive CSS Library */
/*URL: http://www.tech-easysweb.com/ */

body { 
font-family: Arial; 
font-size: 10pt; 
color: #FFFFFF; 
background-color: #000000; 
margin: 0; 
border: 0;
overflow: hidden; /* Necessary to handle locked bottom border  */
height: 100%; 
max-height: 100%;
/* body {background-image: url(navigate/BLACKBKGRND.gif); repeat-x 100% 100%; } \*/
/* background-image: url(navigate/blackbkgrnd.jpg); \*/
}

/* Fix for FireFox/Safari not spacing DIVs properly. */
#menu td {
position:relative; 
vertical-align:top; 
}
#menu td div ul li {
postion:relative; 
top:0px; 
}

/* Creates Locked down Border at bottom of page */
#framecontent{
position: absolute; 
bottom: 0; 
left: 0; 
width: 100%; 
height: 40px; /*Height of frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background: black;
color: white;
}

#tetag{
position: absolute;
bottom: 0;
right: 40px;
overflow: hidden;
}


#maincontent{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 40px; /*Set bottom value to HeightOfFrameDiv*/
overflow: auto; 
background: black;
}

/* This is used for padding between the DIVs */
.innertube{
margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

* html body{ /*IE6 hack*/
padding: 0 0 40px 0; /*Set value to (0 0 HeightOfFrameDiv 0)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}

.horiztreemenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.horiztreemenu ul li{
position: relative;
display: inline;
float: left;
top: 0;
background-color: #000000; /*overall menu background color*/
}

/*Top level menu link items style*/
.horiztreemenu ul li a{
display: block;
width: 80px; /*Width of top level menu link items*/
padding: 1px 8px;
border: 0px solid white;
border-left-width: 0;
text-decoration: none;
color: #CCFFCC;
}
	
/*1st sub level menu*/
.horiztreemenu ul li ul{
left: 0;
position: absolute;
top: 1em;
/* top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.horiztreemenu ul li ul li{
display: list-item;
/* position: absolute; {Did not work } */
float: none;
text-align: left;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.horiztreemenu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
.horiztreemenu ul li ul li a{
display: block;
width: 80px; /*width of sub menu levels*/
color: #CCFFCC;
text-decoration: none;
padding: 1px 5px;
border: 0px solid #ccc;
}

.horiztreemenu ul li a:hover{
background-color: green;
color: black;
}

/*Background image for top level menu list links */
.horiztreemenu .mainfoldericon{
background: #000000 url(navigate/arrow-down.gif) no-repeat center right;
}

/*Background image for subsequent level menu list links */
.horiztreemenu .subfoldericon{
background: #000000 url(navigate/arrow-right.gif) no-repeat center right;
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows horiztree menu, add 1em top spacing between the two in IE*/
padding-top: 0;
}

/* IE fix \*/
* html .horiztreemenu ul li { float: left; height: 1%;}
* html .horiztreemenu ul li a { height: 1%;}
* html .horiztreemenu ul li ul li { float: left;}
/* End */


