<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.testimonial {
    /* This holds the full view of the quote */
    background:url(mid_part.png) repeat-y;
    width:585px;
    margin:40px 0 20px 20px;
    display: inline-block;
    /* float: left; */
}
 
.top_part {
    /* Positioned inside the #box div, holds the top part of the view */
    background:url(top_part.png) no-repeat;
 
    min-height:50px;
 
    /* Providing height for browsers that do not support min-height (e.g. IE6) */
    height:50px;
 
    float:left;
    margin-top:-10px;
    width:100%;
    padding-top:20px;
}
 
div &gt; .top_part {
    /* Setting the height to auto for non-IE6 browsers */
    height:auto;
}
 
.bot_part {
    /* Bottom part of the full view */
    background:url(bot_part.png) no-repeat;
    height:24px;
    float:left;
    width:100%;
    margin-bottom: -10px;
}
 
h3.quote{
    /* This is the text of the quote in the full view. Replaced by Cufon */
    font-size:11px;
    color:#616161;
    text-align:right;
    padding:15px 40px 10px 40px;
    line-height:20px;
}
 
.author{
    /* The span that holds the name of the author */
    color:#9C9C9C;
    float:right;
    font-size:10px;
    font-style:italic;
    font-weight:bold;
    letter-spacing:1px;
    margin-right:40px;
    text-transform:uppercase;
}
.title{
    color:#9C9C9C;
    float:left;
    font-size:12px;
    font-style:italic;
    font-weight:bold;
    letter-spacing:1px;
    margin-left:40px;
    text-transform:uppercase;
}
</pre></body></html>