﻿/* Easy Slider */
	#slider ul, #slider li,
	#slider2 ul, #slider2 li{
		margin:0;
		padding:0;
		list-style:none;
		}
	#slider2{margin-top:1em;}
	#slider li, #slider2 li{ 
		/* 
			define width and height of list item (slide)
			entire slider area will adjust according to the parameters provided here
		*/ 
		width:900px;
		height:160px;
		overflow:hidden; 
		}	

	ol#controls{
		margin:1em 0;
		padding:0;
		height:18px;	
		}
	ol#controls li{
		margin:0 10px 0 0; 
		padding:0;
		float:left;
		list-style:none;
		height:18px;
		line-height:18px;
		}
	ol#controls li a{
		float:left;
		height:18px;
		line-height:18px;
		border:1px solid #fff;
		background:#222222;
		color:#222222;
		padding:0 5px;
		text-decoration:none;

		opacity:0.6;
		-ms-filter: "alpha( opacity=60 )";
		filter: alpha(opacity=60);

		border-radius: 3px;        /* CSS3草案 */  
		-webkit-border-radius: 3px;    /* Safari,Google Chrome用 */  
		-moz-border-radius: 3px;   /* Firefox用 */  
		}
	ol#controls li.current a{
		background:#FF6600;
		color:#FF6600;
		}
	
/* // Easy Slider */