/* CSS Document */

/* ____________________ CSS DROP-DOWN MENU SYSTEM ____________________
   -------------------------------------------------------------------
   | This CSS file needs to be modified and then included in the     |
   | main CSS document. Please pay special attention to the ID and   |
   | class names in other CSS documents as to not overwrite the      |
   | styles in this file.                                            |
   ------------------------------------------------------------------- */
   
/* Styles for the submenus that make it look all pretty */


#navcontainer { 	/*ie6*/			/* Defines the size of the menu */
	width: 140px;
	border: 1px solid #FFFFFF;

}

#navcontainer ul {				/* The list properties of the menus */
	margin-left: 0;
	padding-left: 0;
	list-style-type: none;

}

#navcontainer a {				/* Defines the links in the menu, link color, background color, etc. */
	display: block;
	padding: 3px;
	background-color: #000000;
	border: 1px solid #000000;
	border-bottom: 1px solid #ffffff;
	color: #FDFFE4;
	font-size: 11px;
	font-weight: bold;
	width: 100%;
	text-decoration: none;
}


html>body #navcontainer li a { width: auto; }

#navcontainer a:hover {			/* Hover color properties */
	background-color: #005A1A;
	color: #ffffff;
}

/* Each submenu is listed here with its corresponding position on the page. Position can be either 'absolute' or 'relative' depending on the designer's preference. Default is 'absolute.' */

/* Submenus for homepage */

#subnav1 { 					/* Add as many as necessary */
	position: absolute;
	left: 225px;
	top: 72px;
	z-index: 1000;
	visibility: hidden;
}

#subnav2 {	
	position: absolute;
	left: 332px;
	top: 72px;
	z-index: 1000;
	visibility: hidden;
}

#subnav3 {	
	position: absolute;
	left: 530px;
	top: 72px;
	z-index:1000;
	visibility:hidden;
}


#subnav1-inside { 					/* Add as many as necessary */
	position: absolute;
	left: 265px;
	top: 72px;
	z-index: 1000;
	visibility: hidden;
}

#subnav3-inside {	
	position: absolute;
	left: 567px;
	top: 72px;
	z-index:1000;
	visibility:hidden;
}


/* Position of submenus for inside pages */

#subnav1a { 					/* Add as many as necessary */
	position: absolute;
	left: 320px;
	top: 38px;
	z-index: 1000;
	visibility: hidden;
	margin-left:0;
}

#subnav2a {	
	position: absolute;
	left: 128px;
	top: 215px;
	z-index: 1000;
	visibility: hidden;
}

#subnav3a {	
	position: absolute;
	left: 140px;
	top: 250px;
	z-index:1000;
	visibility:hidden;
}



