body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}



div#wrapper {
  width: 800px;
  margin: auto;
}

div#wrapper #logos {
  padding: 10px;
  text-align: right;
}

div#header {
  text-align: center;  
}

div#nav {
  width: 630px;
  height: 25px;
  margin: auto;
  border-bottom: 1px solid #999999;
}

div#main {
  clear: both;
}

div#leftNav {
  width: 100px;
  float: left;
  display: inline;
  height: auto;
  padding: 10px;
}

div#leftNavGallery {
  width: 120px;
  float: left;
  display: inline;
  height: auto;
  padding: 10px;
}

div#leftContent {
  width: 482px;  
  float: left;
  padding: 10px;
}

div#main #centerContent{
  width: 352px;  
  float: left;
  padding: 10px;
}

div#mainAbout #centerContent{
  width: 450px;  
  float: left;
  padding: 10px 0 10px 10px;
}

div#main #centerContentGallery{
  width: 600px;  
  float: left;
  padding: 10px;
}

div#main #centerContentGallery h1{
  border-bottom: 1px solid #999999;
  padding-bottom: 3px;
}

div#main #centerContentGallery h3{
  border-bottom: 1px solid #999999;
  padding-bottom: 10px;
}

div#callout {
  width: 276px;
  float: right;
  padding: 0px 10px 0 10px;
  border: 1px solid;
  margin-top: 10px;
}

div#mainWide {
  width: 800px;
  float: left;
  padding: 10px;  
}

div#footer {
  clear: both;
  text-align: center;
  font-size: 75%;
  padding-top: 10px;   
}

p.footerLinks a {
  color: #666666;
}

/**navigation**/
div#nav a {
  display: block;
  text-align: center; 
  float: left;
  width: 90px;
}


/***links***/
a, a:link, a:visited {
  color: #cc0000;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  color: #999999;
}

/***elements***/
img {
  border: none;  
}

h1 {
  font-size: 18px;
}

h2 {
  font-size: 16px;
  padding-top: 10px;
}

h3 {
  font-size: 14px;
  line-height: 0px;
  padding-top: 10px;
}

/***classes***/
.fl {
  float: left;
}

.more {
  text-align: right;  
}

.artsDistrict p {
  padding: 25px;
  font-size: 11px;
}

.artsDistrict img {
  padding-right: 10px;
}

.date {
  color: #666666;
}

.tcenter {
 text-align: center; 
 display: block;
}

.list {
  
}


/***callout***/
.upcomingEvent p {
  font-size: 12px;
}

.upcomingEvent img {
  float: left;
  padding-right: 10px;
  padding-bottom: 10px;
}

.error {
  color: #cc0000;
  font-style: italic;
}
.red {
 color: #cc0000; 
}

.green {
 color: #00cc00; 
}

/**
Stylesheet: Slideshow.css
	CSS for Slideshow.

License:
	MIT-style license.

Copyright:
	Copyright (c) 2008 [Aeron Glemann](http://www.electricprism.com/aeron/).
	
HTML:
	<div class="slideshow">
		<div class="slideshow-images" />
		<div class="slideshow-captions" />
		<div class="slideshow-controller" />
		<div class="slideshow-loader" />
		<div class="slideshow-thumbnails" />
	</div>
	
Notes:
	These next four rules are set by the Slideshow script.
	You can override any of them with the !important keyword but the slideshow probably will not work as intended.
*/

.slideshow {
	display: block;
	position: relative;
	z-index: 0;
}
.slideshow-images {
	display: block;
	overflow: hidden;
	position: relative;
}		
.slideshow-images img {
	display: block;
	position: absolute;
	z-index: 1;
}		
.slideshow-thumbnails {
	overflow: hidden;
}

/**
Notes:
	These are examples of user-defined styles.
	Customize these classes to your usage of Slideshow.
*/

.slideshow {
	width: 664px;
	height: 504px;
	margin: 0 auto;
	background: url("../images/back.png") no-repeat scroll 0 0 transparent; 
}
.slideshow a img {
	border: 0;
}
/**
HTML:
	<div class="slideshow-images">
		<img />
		<img />
	</div>
	
Notes:
	The images div is where the slides are shown.
	Customize the visible / prev / next classes to effect the slideshow transitions: fading, wiping, etc.
*/

.slideshow-images {
	width: 640px;
	height: 480px;
	left: 12px;
	top: 12px;
}		
.slideshow-images-visible { 
	opacity: 1;
}	
.slideshow-images-prev { 
	opacity: 0; 
}
.slideshow-images-next { 
	opacity: 0; 
}
.slideshow-images img {
	float: left;
	left: 0;
	top: 0;
	position: static;
}


