/* 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 */


div.navcontainer { 				/* Defines the size of the menu */
	width: 170px;
}

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

div.navcontainer ul li {				/* The list properties of the menus */
	list-style: none;
}

div.navcontainer ul li a {				/* Defines the links in the menu, link color, background color, etc. */
	display: block;
	padding: 3px;
	background-color: #692226;
	color: #FFFBCB;
	font-size: 11px;
	font-weight: bold;
	width: 100%;
	text-decoration: none;
}


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

div.navcontainer ul li a:hover {			/* Hover color properties */
	background-color: #FFFBCB;
	color: #692226;
}

/* 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: 197px;
	top: 197px;
	z-index: 1000;
	visibility: hidden;
}

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

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

