#container {
    width: 740px;
    margin: 20px auto;
}
#accordion {
    margin-top: 1px;
}
#accordion .item {
    width: 740px;
    height: 32px; /* height = total height of A child element */
    overflow: hidden;
    
    transition: height ease-in-out 500ms; /* css3 transition */
    -o-transition: height ease-in-out 500ms;
    -moz-transition: height ease-in-out 500ms;
    -webkit-transition: height ease-in-out 500ms;
    
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	
	padding-bottom: 8px;
    
    margin-bottom: 9px;
}
#accordion a {
    display: block;
    height: 1px;
    line-height: 10px;
    font-weight: bold;
    background: #f0f0f0;
    padding: 15px 0 24px 20px;
    color: #737373;
    text-decoration: none;
	
		    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

#accordion div:hover {
    height: 295px; /* height = total height of A and P elements */

}

.accordion-item {
	padding: 17px 0 0 17px;

} 