/* CSS Document */
html, body {
	margin: 0; 
	padding: 0;
	border: 0;
	min-height: 100%; margin-bottom: 1px; /* stops page jog, scrollbars always on */
}

body {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;
	font-size: 100.1%;
	color: #000000;
	background-color: #FFFFFF;
	text-align: center; /* Hack to center the container in IE5.x pc */
}

/* ***STRUCTURE part 1: container, banner, navbar */

div#container {
	width: 772px; /*sets the width - no border means no hack? */
	margin: 10px auto;/* centers the div. 5px is applied top and bottom, auto center horz*/
	position: relative; /* sets a border to all 4 sides */
	text-align: left; /* needed after the IE hack in body */
	color: #000000;
	background-color: #FFFFFF;
}

div#banner {
	position: relative; /* without it Dreamweaver allows sidebar div to ride up over the banner in design view */
	width: 772px;
	height: 160px;
}

/* *** nav_logo includes small menu */
#nav_logo_block {
	position: relative;
	float: left;
	height:160px;
	width: 190px;
}


/* *** small nav menu inside #nav_logo *** */
#menu {
	position: absolute;
	left: 0px;
	top: 110px;
	height: 50px;
	width: 140px;
	z-index: 1;
}
	

/* *** start 3 color blocks */
#nav_exhibits_block, #nav_classes_block, #nav_artists_block {
	position: relative;
	float: left;
	width: 190px;
	height: 160px;
	border: 2px solid #FFF;
}
#nav_exhibits_block p, #nav_classes_block p, #nav_artists_block p {
	margin: 0;
	padding: 0;
}

/* *** styling small left nav bar list*** */
#menu ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;
	line-height: 18px;
	font-size: 66%;
	letter-spacing: 1px;
}

#menu ul li {
	margin: 0; /* *** for Opera only*** */
}
#menu li a {
	display: block;
	color: #000;
	list-style-type: none;
	text-decoration: none;
	width: 120px;
	padding: 0px 0px 0px 20px;
}

#menu ul li a:visited { /* *** in this order VHA*** */
	color: #000; 
}
#menu ul li a:hover {
	color: #C72828;
}
#menu ul li a:active {
	color: #C72828;
}
	
/* declarations to focus the nav_menu list */
body#index #t-index a, 
body#aboutus #t-aboutus a, 
body#contact #t-contact a {
	color: #C72828;
	border-left-width: 6px;
	border-left-style: solid;
	border-left-color: #C72828;
	padding: 0px 0px 0px 14px;
	font-weight: bold;
}

	

/* *** font-size is in percent, line height is in ems*** */
p, ul {
	font-size: 100%;
	color: #000000;
	line-height: 1.5em;
	margin: 0;
	padding: 0;
}
ul {
	font-size: 80%;
	padding-right: 12px;
	padding-left: 16px;
	padding-top: 3px;
	padding-bottom: 6px;
}
#sidebar ul {
	font-size: 75%;
	padding-right: 0px;
	padding-left: 0px;
	padding-top: 3px;
	padding-bottom: 6px;
	font-family: Georgia, "Times New Roman", Times, serif;
	list-style-type: none;
	color: #666666;
}
#sidebar ul li {
	padding-top: 5px;
}

/* CSS Selectors for the structure of document */
/* *** wrapper includes content and sidebar *** */
#wrapper {
	display: table; /* makes footer margins work - thanks George! */
	margin: 0;
	padding: 40px 0 30px 0; /* MacIE5.5 wants padding not margin ** */
	position: relative;
	width: 100%;
	height: auto;
	clear: both; /* *** need for MacIE 5.5 ** */
}
/* *** sidebar *** */
#sidebar {
	position: absolute; /* *** need for MacIE 5.5 ** */
	float: left;
	clear: left;
	margin: 0;
	padding: 0 10px 0 20px;
	width: 165px;
}
/* *** content styling *** */
#content {
	position: relative;
	float: right; /* problems with float left in IE Mac */
	width: 520px;
	margin: 0;
	padding: 0 20px 0 20px;
	border-left-width: 2px;
	border-left-style: dotted;
	border-left-color: #CCC;
}

/* *** for two columns on Artists list *** */
#column1 {
	width: 250px;
	float: left;
}
#column2 {
	width: 250px;
	float: right;
}

/* *** bottom footer *** */
#footer {
	width: 772px;
	clear: both;
	margin-top: 1em;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
}
/* *** styling footer copy *** */
#footer p {
	font-size: 65%;
	text-align: right;
	color: #666;
	padding-top: 4px;
}

/* *** redefining general links *** */
a:link {
	color: #1057A3;
	text-decoration: underline;
}
a:visited {
	color: #660066;
	text-decoration: underline;
}
a:hover {
	color: #CC9900;
	text-decoration: underline;
}
a:active {
	color: #CC3300;
}

/* *** redefining html tags *** */
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
	letter-spacing: 1px;
}

h1 {
	font-size: 100%;
	color: #C72828;
	padding-bottom: 5px;
}

h2 {
	font-size: 90%;
	margin-top: 1em;
	color: #E36800;
}
h3, h4 {
	font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;
	font-size: 80%;
	margin-top: 1.2em;
	line-height: 1.4em;
	color: #1057A3;
}
h4 {
	font-style: italic;
}
h5, h6 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 90%;
	margin-top: 1em;
	color: #992E2F;
}
h6 {
	font-style: italic;
}

body#exhibits h3, body#exhibits h4 {
	margin-top: 4px;
}

#content p {
	font-size: 80%;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

/* *** styling sidebar copy *** */
#sidebar h1, #sidebar h2, #sidebar h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: normal;
	letter-spacing: 0px;
	line-height: 1.2em;
	padding: 0;
}

#sidebar h2 {
	margin: 1.5em 0 0;
	color: #1057A3;
	font-size: 90%;
	padding: 0px;
}

#sidebar h3 {
	color: #333;
	font-size: 80%;
	margin: 1em 0 0 0;
}
#sidebar h4 {
	color: #555;
	font-size: 75%;
	margin: 0.5em 0 0 0;
}

#sidebar p {
	padding: 0;
	margin-top: 0.4em;
	margin-bottom: 0.6em;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #333;
	font-size: 75%;
	line-height: 1.4em;
}
#sidebar p.head {
	letter-spacing: 2px;
	color: #999999;
	margin-top: 4px;
	font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;
	font-style: normal;
	font-size: 75%;
	font-weight: bold;
}

/* *** misc classes*** */
.highlight {
	color: #C72828;
}

.nomargins {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.smallmargintop {
	margin-top: 4px;
}
.xtraSpaceB4, #sidebar p.xtraSpaceB4 {
	padding-top: 10px;
}


/* *** styling images *** */
.floatleft {
	float: left;
	margin-right: 10px;
}
.floatright {
	float: right;
	margin-left: 10px;
}
.noborder {  /* no border, margins */
	border: 0;
	margin: 0;
	padding: 0;
}
.img_borderonly_left {  /* use for a stack of images, does NOT float */
	border: 2px solid #1057A3;
	margin-top: 6px;
	margin-right: 10px;
	margin-bottom: 8px;
	margin-left: 0px;
}
.imgfloatrighthead {
	border: 2px solid #1057A3;
	float: right;
	margin-top: 0px;
	margin-right: 4px;
	margin-bottom: 8px;
	margin-left: 8px;
	clear: right;
}
.imgfloatright {
	border: 2px solid #1057A3;
	float: right;
	margin-top: 3px;
	margin-right: 4px;
	margin-bottom: 6px;
	margin-left: 8px;
	clear: right;
}
.imgfloatleftclear {
	border: 2px solid #1057A3;
	float: left;
	clear: both;
	margin-top: 8px;
	margin-right: 10px;
	margin-bottom: 8px;
	margin-left: 0px;
}
.imgfloatleft {
	border: 2px solid #1057A3;
	float: left;
	margin-top: 6px;
	margin-right: 10px;
	margin-bottom: 8px;
	margin-left: 0px;
}
.imgfloatlefthead {
	border: 2px solid #1057A3;
	float: left;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 8px;
	margin-left: 0px;
}

#clearboth {
	clear: both;
}
.clearboth {
	clear: both;
}

.clearleft {
	clear: left;
}

.clearright {
	clear: right;
}

.clearboth_ruleabove { /* for major breaks - red line */
	clear: both;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #C72828;
	padding-top: 12px;
}
.ruleabove { /* for major breaks */
	clear: both;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #ED8524;
	padding-top: 12px;
	margin-top: 24px; /**  IN EXHIBITS PAGE, ONLY PARTIALLY DISPLAYS - OK IN BROWSER */
}

div.clearer { /* see www.complexspiral.com/publications/containing-floats, don't need to put nb space */
	clear: both; 
	line-height: 0px; 
	height: 0px;
}



