body {
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	height:100%; /* This is needed in order to give the sidebar a height of 100%.  Without the body assignment, the sidebar has no "parent" upon which to base the 100% calculation... and actually this doesn't work. */
}


ul {
margin:0 0 20px 6px;
padding:0;
list-style-type:none;
}


li {
margin:4px 0 8px 0;
padding:0;
}

ul ul li {  /* this targets the second level list items as found in the curriculum vitae file */
margin:4px 0;
}

img {
border:0;
}

a:link, a:visited {
color: #990000;
text-decoration:none;
}

a:hover, a:active {
text-decoration:underline;
}


#container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0px auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	position:relative;
}

	
/* code from listamatic http://css.maxdesign.com.au/listamatic/horizontal27.htm START */	

#navcontainer {
height: 24px;
overflow:hidden;
margin: 0 auto;
position:relative;
}

#navcontainer ul
{
text-align: left;  /* make this center to center the nav */
padding-bottom: 5px;
padding-top: 5px;
padding-left: 0;
margin-top: 0;
/* cancels gap caused by top padding in Opera 7.54 */
margin-left: 0;
/*background-color: #036;*/
background-color:#8f8f8f;
color: #fff;
width: 100%;
font-family: Arial,Helvetica,sans-serif;
line-height: 18px;
/* fixes Firefox 0.9.3 */
}

#navcontainer ul li
{
margin:0;  /* tim code - i added this */
display: inline;
padding-left: 0;
padding-right: 0;
padding-bottom: 5px;
/* matches link padding except for left and right */
padding-top: 6px; /* The padding-top has to be 1 px more than the padding-top for navcontainer ul; this gets rid of any remaining line above the link  */
/*border-right: 1px solid #fff;*/ /* tim code - i moved this from #navcontainer ul li a to here */
}

#navcontainer ul li a
{
margin:0;  /* tim code - i added this */
padding-left: 10px;
padding-right: 10px;
padding-bottom: 5px;
padding-top: 6px; /* The padding-top has to be 1 px more than the padding-top for navcontainer ul; this gets rid of any remaining line above the link  */
color: #fff;
text-decoration: none;
}

#navcontainer ul li a:hover
{
background-color: #A7A7A7;
color:#333;
}

#navcontainer #active { border-left: 1px solid #A7A7A7; }


/* code from listamatic http://css.maxdesign.com.au/listamatic/horizontal27.htm STOP */
	
	
		#navcontainer ul li.navUsers {
		margin:0;
		padding-left: 6px;
		padding-right: 6px;
		color:#000;
		/*background-color:#F4F0C3;*/
		background-color:#ecd872;
		}
		
		#navcontainer ul li.spacer { /* use this class to create a space in the nav */
		margin:0;
		color:#333;
		}
		
		
	/*	#navcontainer ul li.selected {
		background: #A7A7A7;
		color:#000;
		}*/
		
		/*
		
		USE BELOW CSS TO CONTROL THE SELECTED LINK IN THE MAIN NAVIGATION
		
		*/
		
		#navcontainer ul li.selected a {
/*		background: #A7A7A7;*/
		color:#CCC;
		}
		
		
		#navFeature {
		position: absolute;
		right:10px;
		}
			
/* LISTAMATIC CODE STOP */

#contentWrapper {
/*border: 1px solid #52616C; */ /* this color is blue green */
}

#header {
height:70px;
/*background:url(../images_system/mosaico_header_117x670.jpg) no-repeat left;*/
position:relative;
background:#8f8f8f;
}

		#artistName {
		position:absolute;
		left:0px;
		top:10px;
		width: 770px;
		text-align:left;
		}
		
		#artistName h1 {
		font-size:18px;
		font-family:"Lucida Grande", "Times New Roman", Arial;
		color:#EAE5DD;
		}
		
		h1.artistName {
		font-size:18px;
		font-family:"Lucida Grande", "Times New Roman", Arial;
		color:#EAE5DD;
		}
		
		#feature {   /*  box to the right of the header image.  here is where you can set your "featured link" default is for the mercurio mailing list */
		position:absolute;
		right:0;
		width: 230px;
		height:70px;
		/*background-color:#000;*/
		text-align:center;
		color:#fff;
		font-size:10px;
		}
		
		#feature a {
		display:block;
		color:#fff;
		text-decoration:underline;
		}
		
		#feature a:hover {
		background:#8f8f8f;
		text-decoration:none;
		}

#moduleContainer { /* This contains the gallery and and other independent content */
position:relative;
height:100%;
width:100%;
}

		#sidebar {
		float:right;
		width: 230px;
		text-align:left;
		}
		
		#sidebar h2 {
		margin:25px 0 0 15px;
		}
		
		#sidebar ul {
		margin:0;
		padding:0;
		width:90%;
		margin:0 auto;
		}
		
		#sidebar li {
		margin:0px;
		padding: 5px;
		font-style:italic;
		}
		
		#sidebar a {
		display:block;
		text-decoration:none;
		}
		
		#sidebar li a:link, #sidebar li a:visited {
		color: #990000;
		text-decoration:none;
		}
		
		#sidebar li a:hover, #sidebar li a:active {
		text-decoration: underline;
		}
		

#mainContent {
	float:left;
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 10px auto 0 auto;
	width: 65%;  /* this is just about right, leaves enough room for the 228px sidebar */
 }

#mainContent_noSidebar {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 10px 0 10px 0;
	width: 65%;
}

#mainContent_full {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 10px 0 10px 0;
	width: 100%;
}

#clearFloats {
clear:both; /* I don't understand why this doesn't clear the gallery DIV on the galleries page... it should.  Turn on Border Control and you will see the green closed at the top.  Why? */
}

#footer {
height: 30px;
background-color:#b5b5b5;
}

#mercurio {
float:right;
}	


/* Removed from the "override" locations at the bottom of both galleries.css and galleries_selected.css */
/* Uncommenting this will activate the shadow on the left of the container */

#moduleContainer {
/*background:url(../images_system/mosaico_gallery_shadow_left_10x15.png) repeat-y left !important;
background:none;*/
}


/* BORDER CONTROL START */
/*#container {
border: 2px solid red;
}

#contentWrapper {
border: 4px solid yellow;
}

#moduleContainer {
border: 1px solid green;
}*/

/* BORDER CONTROL STOP */


