body,h1,h2,h3,p,quote,small,form,input,ul,li,ol,label{
	/* Page reset */
	margin:0px;
	padding:0px;
	color:#000000;
	font-size:12px;
	background: #FFFFFF;
	font-family:Verdana, Geneva, sans-serif;
}

body{
	/* Setting default text color, background and a font stack */
	color:#000000;
	font-size:12px;
	background: #FFFFFF;
	font-family:Verdana, Geneva, sans-serif;
}

/* Gallery styles */

#gallery{
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 1px #AAAAAA;
	-webkit-box-shadow:0 0 1px #AAAAAA;
	box-shadow:0 0 1px #AAAAAA;
	

	background: #FFFFFF;
	
	/* The width of the gallery */
	width:976px;
	overflow:hidden;
}

#slides{
	/* This is the slide area */
	height:357px;
	/*height:auto;*/	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:976px;
	overflow:hidden;
}

.slide{
	float:left;
}

#slideshow {
  width: 976px;
  height: 352px;
}


#main{
	/* The main container */
	margin:0px auto;
	text-align:center;
	width:976px;
	position:relative;
	font-family: "Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
}

a, a:visited {
	color:#848484;
	text-decoration:none;
	outline:none;
	font-family: Verdana, Geneva, sans-serif;
}

a:hover{
	text-decoration:underline;
	font-family: Verdana, Geneva, sans-serif;
}

p{
	padding:10px;
	text-align:left;
	color: #FFF;
	font-size: 14px;
	font-weight: normal;
}
.title {
	font-weight: bold;
	font-size: 18px;
	color: #999;
}

.footer {
	color: #666;
	text-align: left;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	position: relative;
	width: inherit;
	height: 17px;
}

.Text.Header {
	color: #FFF;
}
.slide {
	color: #CCC;
	font-size: 18px;
}
.slide .Text {
	font-weight: bold;
	color: #CCC;
}
.foot {
	text-align: center;
	color: #666;
	font-size: 10px;
}

.fadein { position:relative; width:500px; height:332px; }
.fadein img { position:absolute; left:0; top:0; }
$('.fadein img:gt(0)').hide();
					setInterval(function(){ },3000);
							 $('.fadein :first-child').fadeOut()
							 .next('img').fadeIn()
										  .end().appendTo('.fadein')

										  $(function(){
    $('.fadein img:gt(0)').hide();
    setInterval(function(){
      $('.fadein :first-child').fadeOut()
         .next('img').fadeIn()
         .end().appendTo('.fadein');}, 
      3000);
});