.col {
  width: 320px;
  float: left;
  margin-right:32px;
  margin-bottom: 16px;
}

h3 {
  overflow: hidden;
	margin: 0;
	width: 100%;
	text-align: left;
	padding: 0;
	border: 1px #ccc solid;
	border-bottom: 0;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f0f0f0));
	background: linear-gradient(#fff, #f0f0f0);
	display: block;
	-webkit-box-shadow: 0px 3px 3px rgba(000,000,000,0.1);
	box-shadow: 0px 3px 3px rgba(000,000,000,0.1);
}

h3 a {
  color: #333;
	display: block;
	height: 44px;
	margin: 0;
	padding: 0 0 0 10px;
	overflow: hidden;
	white-space: nowrap;
	line-height: 44px;
	text-overflow: ellipsis;
	text-decoration: none;
	font-weight: bold;
	background: url(../images/list_mark1.png) no-repeat 100% 50%;
	font-size: 14px;
}
 .h3 a::after{
 content: url(./images/list_mark1.png);
 float: right;
 }
h3:hover { background: rgb(228,10,85); }
h3.open  { background: rgb(255,70,120); }
h3 + div { padding: 10px; }

/* Pre hide sections with JavaScript on
--- */
h3+div {
  display: none;
}

/* CSS3 Animation example
--- */
#css3-animated-example h3 + div {
	height: 0px;
	padding: 0px;
	overflow: hidden;
	display: block!important;
	-webkit-transform: translateZ(0);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#css3-animated-example .content {
  padding: 10px;
}

#css3-animated-example h3.open + div {
  height: auto;
  background-color:#FFF;

}

/* Event example
--- */
pre#event-log {
  background: #fafacc;
  padding: 10px;
  display: block;
}
