/* Easy Slider */
	#slider_place{
		width:960px;
		height:300px;
		position: relative;	
	}
	
	#slider_place h1{
		font-size: 30px;
		color: #1d4670;
		font-family: Georgia, "Times New Roman", Times, serif !important; 
	}

	#slider ul, #slider li{
		margin:0;
		padding:0;
		list-style:none;
		background: transparent url(images/slider_bg.gif) repeat-x;
		}
	
	#slider, #slider li{ 
		/* 
			define width and height of container element and list item (slide)
			list items must be the same size as the slider area
		*/ 
		width:960px;
		height:300px;
		overflow:hidden; 
		}
	
	#slider li .img{
		width: 500px;
		float: left;
	}
	#slider li .li_content{
		float: left;
		width: 400px;
		padding: 40px 0;
		line-height: 1.5em;
		font-family: Georgia, "Times New Roman", Times, serif !important; 
	}

	
	span#prevBtn a{
		position: absolute;
		top: 120px;
		left: 0;
		width: 40px;
		height: 60px;
		background: transparent url(images/slider_buttons.png) no-repeat;
		background-position: top right;
	}
	
	span#prevBtn:hover a{
		background-position: bottom right;
	}


	span#nextBtn a{
		position: absolute;
		top: 120px;
		right: 0;
		width: 40px;
		height: 60px;
		background: transparent url(images/slider_buttons.png) no-repeat;
		background-position: top left;	
	}
	span#nextBtn a:hover{
		background-position: bottom left;
	}
	

/* // Easy Slider */