/*SIDE NAVIGATION SECTION with FLYOUTS */

#leftNavigation{font-family:Arial, Helvetica, sans-serif;
               font-weight:bold; font-size:9px;
               }
#leftNavigation ul {
			margin: 0;
			padding: 0;
			list-style: none;
			width: 175px; /* Width of Menu Items, width 174px originally */
			border-bottom: 1px solid #ccc;
			line-height:10px;
			}

#leftNavigation ul li {
			position:relative; /*keep this to position the list*/
			margin:0px;
			padding:0px;
			display:inline; /*turn off for SAFARI BROWSER*/
			width:175px; /*width: 174px originally*/
			/*background: url(images/arrow.gif) right center no-repeat;*/
			line-height:10px;
			vertical-align:bottom;/*FIXES gaps between list elements in Internet Explorer*/
			}

#leftNavigation ul li a {
			display: block;
			text-decoration: none;
			color: #666666;
      font-weight:bold;
      text-align:left;
			padding: 5px 8px 5px 12px;
			border-top: 1px solid #fff;
			border-bottom: 0;
			line-height:10px;
			vertical-align:bottom;/*FIXES gaps between list elements in Internet Explorer*/
      background-color:#cccccc;
      font-size:10px;
			}


#leftNavigation ul li a:hover {color: #000000; background-color: #eeeeee ;
 }
/* Hover Styles for the navigation bar */

#leftNavigation ul li ul { /*positions the 2nd sub nav list*/
			position:absolute;
			display:none;/*HIDE THE SUB NAVIGATION INITIALLY*/
			left: 175px; /* Set 1px less than menu width, 173px originally */
			top: 0px;
			width:200px;
			background-color:#e5e5e5;
			font-weight:bold;
			}

#leftNavigation ul li ul:hover{
			position:absolute;
			left:176px;
			top:0px;
			}

#leftNavigation li ul li a {
			padding: 5px 8px 5px 12px;
			display:block;
			width:225px;
			background-color:#e5e5e5;
      color:#666666;
      text-align:left;
			} /* Sub Menu Styles */

#leftNavigation li ul li {
			width:225px; /*width: 174px originally*/
			}

#leftNavigation li ul li a:hover{
			background-color:d6d6d6;
      color:#000000;
			display:block;
			width:225px;
			}

#leftNavigation li:hover ul ul, #leftNavigation li.over ul ul { display:none; }

#leftNavigation li:hover ul, #leftNavigation li li:hover ul,
#leftNavigation li.over ul, #leftNavigation li li.over ul
{ display: block; }
/* Triggers */

 /*SIDE NAVIGATION SECTION */