Code
#accordion .item {
width: 268px;
height: 30px;
overflow: hidden;
-webkit-transition: height ease-in-out 500ms;
border: 1px solid #000;
border-radius: 5px;
-webkit-border-radius: 5px;
margin-bottom: 2px;
}
#accordion h3 {
display: block;
height: 20px;
line-height: 20px;
margin: 0px 0px 5px 0px;
background: #000;
padding: 5px;
color: #ccc;
text-decoration: none;
font-size: 1.2em;
}
#accordion p {
height: 150px;
padding: 5px;
}
#accordion div:hover {
height: 150px;
background: #232323;
}
#accordion div:hover h3 {
border-bottom: 1px solid #ff0000;
font-weight: bold;
}