/*

Here's a demo stylesheet used to format a menu and its content.
Feel free to alter the menu layout however you want. All you have to do 
is ensure the script
has the correct CSS property name (like 'visibility' or 'display') that 
you want it to change.

One good resource for UL/LI formatting: 
http://www.alistapart.com/articles/taminglists/
Consult your favourite CSS reference for editing fonts/borders/etc.

Otherwise, even if you're not very experienced at CSS, you can just go 
through and change
the #RGB border/background colours where suitable to customise for your 
site!

*/



/* VERTICAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */

#left_navigation_teacher, #left_navigation_teacher ul {
font-family: "Verdana", Times, serif;
font-size: 13px;
margin: 0;
padding: 0;
font-weight: 700;
color: #000000;
background-color:#FFFFFF;
width: 150px;
list-style: none;
display: block;
border: 0;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from 
their teacher */
#left_navigation_teacher ul {
 visibility: hidden;
 position: absolute;
 border: 1px solid #A7C7DB;
 top: 0;
 left: 150px;
 width: 120px;
 padding: 0px 5px;
}

/*
 All menu items (<li> tags) are relatively positioned to correctly 
offset their submenus.
 They have borders that are slightly overlaid on one another to avoid 
doubling up.
*/
#left_navigation_teacher li {
position: relative;
margin-bottom: -1px;
text-align: right;
}

#left_navigation_teacher ul>li:last-child {
margin-bottom: 1px;
}

/* Links inside the menu */
#left_navigation_teacher a {
display:block;
border-color: #FFF;
padding: 3px 0px 3px 0px;
border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: dotted;
	border-right-style: none;
	border-bottom-style: dotted;
	border-left-style: none;
text-decoration: none;
margin: 1px;
/* border: 1px solid transteacher; */
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are teacher items to 
visible menus.
*/
#left_navigation_teacher a:hover, #left_navigation_teacher a.highlighted:hover, #left_navigation_teacher a:focus {
	font-family: "Verdana", Times, serif;
	font-size: 13px;
	color:#ffffff;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: dotted;
	border-right-style: none;
	border-bottom-style: dotted;
	border-left-style: none;
	border-top-color: #A7C7DB;
	border-right-color: #A7C7DB;
	border-bottom-color: #A7C7DB;
	border-left-color: #A7C7DB;
	border-color:#A9C3E6;
	text-decoration:none;
	display:block;
	background-color: #0772B6;
}

#left_navigation_teacher a.highlighted {
	color:#ffffff;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: dotted;
	border-right-style: none;
	border-bottom-style: dotted;
	border-left-style: none;
	border-top-color: #A7C7DB;
	border-right-color: #A7C7DB;
	border-bottom-color: #A7C7DB;
	border-left-color: #A7C7DB;
	border-color:#A9C3E6;
	text-decoration:none;
	display:block;
	background-color: #0772B6;

}

/*
 If you want per-item background images in your menu items, here's how 
to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a 
id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an 
image:
    #left_navigation_teacher a#xyz {
      background-image: url(out.gif);
    }
    #left_navigation_teacher a#xyz:hover, #left_navigation_teacher a.highlighted#xyz, #left_navigation_teacher 
a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' 
tag contents. */
#left_navigation_teacher a .subind {
 float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 
'Holly Hack'). \*/
* html #left_navigation_teacher li {
 float: left;
 height: 1%;
}
* html #left_navigation_teacher a {
 height: 1%;
}
/* End Hack */

