/**
 * Grid container
 */
#tiles {
width:950px;
list-style-type: none;
position: relative; /** Needed to ensure items are laid out relative to this container **/
margin: 0;
}

/**
 * Grid items
 */
#tiles li {
	float:left;
	width: 298px;
	background-color: #ffffff;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	margin-right:12px;
	/** display: none; Hide items initially to avoid a flicker effect **/
	cursor: pointer;
	border:solid 1px #ddd;
	background:url(../images/yinguang/s_16.jpg) bottom no-repeat #fff;
	padding-bottom:10px;
	text-align: center;  /* 2013-06-18 14:04 Tian Baicheng*/
}

#tiles li img {
display: block;
padding:15px;
}

/**
 * Grid item text
 */
#tiles li p {
font-size: 12px;
width:288px; height:auto; overflow:hidden;  border-top:none; 
color:#333; font-family:"微软雅黑"; line-height:20px; padding:5px;
}

/**
 * Some extra styles to randomize heights of grid items.
 */
#tiles ali:nth-child(3n) {
height: 175px;
}

#tiles ali:nth-child(4n-3) {
padding-bottom: 30px;
}

#tiles ali:nth-child(5n) {
height: 250px;
}

/* 2013-06-18 */
#tiles li div {
	padding: 27px;
	font-family: "微软雅黑";
	font-size: 20px;
	color: #666666;
}



/** General page styling **/
  

#main {
width:950px; height:auto; overflow:hidden; margin:0 auto;
}

.chigh{font-size:16px;}
.clow{ color:#336699;}