<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.verticalaccordion&gt;ul {
    margin:0px;
    padding:0 10px 10px 10px;
    list-style:none;
   	width:100%;
}

.verticalaccordion&gt;ul&gt;li {
    display:block;
	overflow: hidden;
1    list-style:none;
	height:70px;
	width:100%;

    /* Decorative CSS */
    background-color:#fff;

    /* CSS3 Transition Effect */
    transition: height 0.3s ease-in-out;
    -moz-transition: height 0.3s ease-in-out;
    -webkit-transition: height 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out;

}

.verticalaccordion&gt;ul&gt;li&gt;h3 {
    display:block;
    margin: 0;
    padding:10px;
    height:60px;

    /* Decorative CSS */
    border-top:#f0f0f0 1px solid;
    font-family: roboto;
    text-decoration:none;
    text-transform:uppercase;
    color: #fff;
    /*background: #9b59b6;*/

    /* CSS3 Gradient Effect 
    background: -moz-linear-gradient( top, #9b59b6, #9b59b6);
    background: -webkit-gradient(linear, left top, left bottom, from(#9b59b6), to(#9b59b6));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#9b59b6, endColorstr=#9b59b6); /* IE 7 */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff999999, endColorstr=#ffcccccc)";   /* IE 8 */*/
}

.verticalaccordion&gt;ul&gt;li&gt;div {
    margin:0;
    overflow: auto;
    padding:10px;
    height:280px;
}

.verticalaccordion&gt;ul&gt;li:hover {
	height: 360px;
	background-color:#eeeeee;
}

.verticalaccordion:hover&gt;ul&gt;li:hover&gt;h3 {
    /* Decorative CSS */
    color:#fff;
    background: #90002f;

    /* CSS3 Gradient Effect */
    background: -moz-linear-gradient( top, #3d566e, #3d566e); /* FF, Flock */
    background: -webkit-gradient(linear, left top, left bottom, from(#3d566e), to(#3d566e)); /* Safari, Chrome */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3d566e, endColorstr=#3d566e); /* IE 5.5 - IE 7 */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff454545, endColorstr=#ff000000)";   /* IE 8 */
}

.verticalaccordion&gt;ul&gt;li&gt;h3:hover {
    cursor:pointer;
}
.product-img{width:100%; height:auto; padding:0 10px;}

</pre></body></html>