/* set the image to use and establish the lower-right position */ 
.cssbox, .cssbox_body, .cssbox_head, .cssbox_head h2 {
    background: transparent url(demobox.png) no-repeat bottom right; 
} 
.cssbox { 
    width: 100% !important; /* intended total box width - padding-right(next) */
    width: 100%; /* IE Win = width - padding */
    padding-right: 15px; /* the gap on the right edge of the image (not content padding) */ 
} 

/* set the top-right image */ 
.cssbox_head { 
color: #666666;
	font-family: Arial;
	font-size: 13px;
	font-weight: bold;
	padding: 0px 0px 0px 0px;
    background-position: top right; /* pull the right image over on top of border */
    border-bottom: 1px solid #666666;
} 

/* set the top-left image */ 
.cssbox_head h7 { 
    background-position: top left; 
    margin: 0; /* reset main site styles*/ 
    border: 0; /* ditto */ 
    padding: 0px 0 10px 0px; /* padding-left = image gap + interior padding ... no padding-right */ 
    height: auto !important; height: 1%; /* IE Holly Hack */ 
} 

/* set the lower-left corner image */ 
.cssbox_body { 
    background-position: bottom left;  
    padding: 5px 0 10px 0px; /* mirror .cssbox_head right/left */ 
} 

