/*Navigation TEST*/



/* =======================TOP NAVIGATION starts here ====================================*/

/* horizontal menu starts here */

div#topnav {
	width:100%; 	/* makes the div full width */
	float:left; /*makes the div enclose the list */
	border-top:1px solid #960;	
	border-bottom:1px solid #999;	 
	font-size:12px; 
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	height: 28px;
	font-weight: bold;
	background-color: #d7cfb9;
}
div#topnav ul {
	margin: 0;/* indents ul from edge of container */
	padding-left: 0;

}
div#topnav li {
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none; /*sets the background of the menu items */
	height: 28px;
	border-right:1px solid #999; /* creates dividing lines between the li elements */
	color: #f9f9e5;
	margin: 0;

	}
div#topnav li:first-child {
	border-left:1px solid #999; /*the first vertical line on the menu */
	}
div#topnav a {
	display:block; /*makes list items in drop down highlight and wrapped lines indent correctly */
	padding:4px 6px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#5a5a5a;	/* sets the type color */
	line-height: 20px;
	margin: 0;
	}
div#topnav a:hover {
	color:#663333;
	background-color:#f2d6a5;
	margin: 0;
	}
/* the horizontal menu ends here */


/* the drop-down starts here */

div#topnav li ul {
	margin: 0px; /* prevents the TEMP value inheriting from the horiz menu - OK to remove if you remove TEMP above */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:10em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	left:0px; /*aligns the drop exactly under the menu */
	top: 28px;
	}
div#topnav li ul li {
	width:100%; /* makes the list items fill the list container (ul) */
	border-left:1px solid #069; /*  three sides of each drop-down item */
	border-bottom:1px solid #069;
	border-right:1px solid #069;
	padding:0 0 1px;
	background-color: #f9f9e5;
	}
div#topnav li ul li:first-child {
	border-top:1px solid #069; /*the top edge of the dropdown */
	border-left: 1px solid #069; /*  three sides of each drop-down item */
	}
/* make the drop-down display as the menu is rolled over */
div#topnav li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#listmenu li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#topnav ul {
	float:left; /* makes the ul wrap the li's */
	border-left:1px solid #000; /* adds the rightmost menu vertical line to the ul */
	margin-left:15px; /* IE doubles the given value above - why? */
	}
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  div#topnav ul li ul {
	border-top:1px solid #069;
	border-left:0px; /* stops the drop inheriting the ul border */
	}
/* the Tantek hack to feed IE Win 5.5-5.0 a lower value to get the pop-out to touch the drop-down */
* html  div#topnav ul li ul li ul { 
  left:9.85em; 
  voice-family: "\"}\""; 
  voice-family:inherit;
  left:10em;
  }
/* and the "be nice to Opera" rule */
html>body div#topnav ul li ul li ul {
  left:10em;
  }

/* an Opera-only hack to fix a redraw problem by invisibly extending the ul */
/* the first-level drop stays open for 100px below the bottom but at least it works */
/* this can be reduced to as little as 22px if you don't have pop-outs */
/* the pop-out menu stays open for 22px below the bottom but at least it works */


@media all and (min-width: 0px){
   body div#topnav ul li ul {padding-bottom:200px;}
   body div#topnav ul li ul li ul {padding-bottom:22px;}
   body div#topnav ul li ul li ul li ul li:hover {visibility:visible;} /* same effect as display:block in this situation */

   }
/*end Opera hack */
/* end of hack zone */
/* END OF LIST-BASED MENU */

/* finally after feeding values to all others, we deal with MAc5 IE */
/* IE5 Mac can't do drop-downs so we need to present the info in a different way*/
/* we present the drop down choices in a row and never show any second-level drops */
 /* this stylesheet is read by IE5 Mac only - hack omits 'url' and leave no space between @import and ("   */

@import("ie51_menu_hack.css"); 


/* =====================END OF TOP NAVIGATION ============================================*/

/*===================START column one ---Left Navigation-- CSS =======================================*/


/*==================================START column one ---Left Navigation =======================================*/




div#column1 {
	width:180px;
	float:left;
	margin-top: 20px;
	background-color: #fdf9e5;
}

div#leftnav {
	width:180px;
	margin: 0;
	padding: 0;
	background-color:#fdf9e5;
	font-size:20px;
	font-family:Arial, Helvetica, sans-serif;
	color: #5a5a5a;
	font-weight: bold;
}
div#leftnav ul {
	width: 160px;
	margin:0px 8px 12px 8px;
	padding:0;
}
div#leftnav li {
	border-bottom:2px dotted #960;
	line-height: 40px;
	list-style-type:none;
	margin:0;
}
div#leftnav li:first-child{
	border-top:2px dotted #960;
	margin:0;
}

div#leftnav a {
	text-decoration:none;
	color:#5a5a5a;
	padding-left:6px;
	line-height: 40px;
	display:block;
	margin-bottom: 0;
	margin-top: 0;

}
div#leftnav a:hover {
	color:#663333;
	background-color:#d7cfb9;
}

	
/* a hack for IE Win only \*/	
* html #leftnav ul {border-top:2px dotted #960;}
/*end of hack */
	
div#leftnav li:first-child a {
	display:block;
	padding:0 0 0 6px;
	line-height: 40px;
	margin:0;
}
div#leftnav li:first-child a:hover {
	padding:0 0 0 6px;
	background-color: #d7cfb9;
	margin:0;



/* TEMPORARY --- test for More Arts list*/	

}
div#leftnav li .more{
	height: 146px;
}
div#leftnav li .more ul{
	width: 100px;
	margin-top: -6px;
	border-top: none;
}

div#leftnav li .more p{
	font-size: 12px;
	font-weight: normal;
	border-top: none;
	border-bottom: none;
	line-height: 18px;
	margin: 0 0 0 14px;
	padding: 0;
	border: none;
}
.redbar {
	border-left-width: 14px;
	border-left-style: solid;
	border-left-color: #993333;
	margin-left: 6px;
	height: 40px;
	display: block;
	padding:0;
}
.yellowbar {
	border-left-width: 14px;
	border-left-style: solid;
	border-left-color: #ddaf66;
	margin-left: 6px;
	height: 40px;
	display: block;
	padding:0;
}
.greenbar {
	border-left-width: 14px;
	border-left-style: solid;
	border-left-color: #8ca786;
	margin-left: 6px;
	height: 40px;
	display: block;
	padding:0;
}
.bluebar {
	border-left-width: 14px;
	border-left-style: solid;
	border-left-color: #668ca3;
	margin-left: 6px;
	height: 40px;
	display: block;
	padding:0;
}



/*=======================================END column one - Navigation ============================================*/



/*==================================================START:Clearfix=================================================*/


/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */

.clearfix:after {
    content: ".";              /* the period is placed on the page as the last thing before the div closes */
	display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;                  /* ensure the period is not visible */
    clear: both;               /* make the container clear the period */
    visibility: hidden;}	     /* further ensures the period is not visible */


.clearfix {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}

/*=======================================END Clearfix ============================================*/
<h6>&nbsp;</h6>

