/*
	Panning Slideshow with jQuery
	Build Internet Tutorial (www.buildinternet.com)
	Written by Zach Dunn
*/

*{margin:0; padding:0;}

body{ height:100%;}

#window{
	clear:both;
	width:960px;
	height:350px;
	background:#fff;
	overflow:hidden;
	position:relative;
	margin:0px auto 0px auto;
	background-image: url(images/bg_slide.png);

}

#slideshow{width:1960px; height:700px; overflow:hidden; position:relative;}
	#slideshow li{width:960px; height:350px; float:left; display:inline;}


#content{ color:#FFF; width:960px; margin:0px auto 10px auto; overflow:hidden; padding-top:20px;}

	#content p{
	font-size:12px;
	line-height:1.8em;
	padding:20px 30px 30px 0px;
	margin:0;
	color: #333333;
	text-align: justify;
}
		#content p a{
	color:#333;
}
		#content img{
	float:left;
	padding:10px;
}
		
p.footer{text-align:center; color:#ccc; font-size:12px; font-family: arial, sans-serif;}
	p.footer a{color:#73ccff; text-decoration: none;}
		
