/* BODY STRUCTURE */

.cost_container {    
    float: right;   
    width: 40%;   
    text-align: right;   
    font-family: Verdana, Arial, sans-serif;   
    font-size: 90%;   
    font-weight: bold;
}


/* HEADINGS */

h3.property {    
    font-family: Verdana, Arial, sans-serif;    
    font-weight: bold;    
    font-size: 100%;           
    margin-bottom: .35em;
} 
h3.invisible {    
    font-family: Verdana, Arial, sans-serif;    
    font-weight: bold;    
    font-size: 100%;           
    margin-bottom: .35em;
    visibility: hidden;
} 


/* TEXT */
 
.description {    
    font-family: Verdana, Arial, sans-serif;    
    font-weight: bold;    
    size: 90%;    
    margin: 0 0 1em 0;
    padding-top: 0;
}
.cost {            
    font-family: "Trebuchet MS", Arial, sans-serif;    
    font-weight: bold;    
    font-size: 120%;
}
.highlight {
    font-weight: bold;
    font-size: 110%;
    color: #FF0000;
}
.lead {
    margin-top: 1em;
}


/* IMAGES */

.hoverbox {
    float: left;
    position: relative;
    margin: 0 .5em .25em 0;
    font-size: 80%;
    font-family: Verdana, Arial, sans-serif;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}
.thumbnail img {
    border: 5px solid #EBEBEB;
    margin: 0 .5em .5em 0;
}
.thumbnail:hover img {
    border: 5px solid #EBEBEB;
}
.thumbnail span { /*CSS for enlarged image*/
    position: absolute;
    background-color: #FFFFFF;
    padding: 5px;
    left: -1000px;
    visibility: hidden;
    color: black;
    text-decoration: none;
}
.thumbnail span img { /*CSS for enlarged image*/
    border-width: 0;
    padding: 2px;
}
.thumbnail:hover span { /*CSS for enlarged image*/
    visibility: visible;
    top: 0px;
    left: 220px; /*position where enlarged image should offset horizontally */
    z-index: 50;
}