/* CORNER BOX WITH ONE LARGE IMAGE */
.cssbox, .cssbox_body, .cssbox_head, .cssbox_head div { 
	background: transparent url("/images/layout/top-menu-box.jpg") no-repeat bottom right; 
} 
.cssbox { 
	padding-right: 18px; /* the gap on the right edge of the image (not content padding) */ 
	/*margin: 20px auto;*/   /* to center box on page (horizontally) */
	width: 100%;
} 
/* set the top-right image */ 
.cssbox_head { 
	background-position: top right; 
	margin-right: -18px; /* pull the right image over on top of border */ 
	padding-right: 20px; /* right-image-gap + right-inside padding */ 
} 
/* set the top-left image */ 
.cssbox_head div { 
	background-position: top left; 
	margin: 0; /* reset main site styles*/ 
	border: 0; /* ditto */ 
	padding: 0px 0 0px 20px; /* padding-left = image gap + interior padding ... no padding-right */ 
	/*height: auto !important;*/ /* then behaves in ff same as ie */
	height: 10px;
} 
.cssbox_head div.title { 	
	font-weight: bold;
}

/* set the lower-left corner image */ 
.cssbox_body { 
	background-position: bottom left; 
	margin-right: 0px; /* interior-padding right */ 
	padding: 5px 0 5px 16px; /* mirror .cssbox_head right/left */ 
	height: 1%;
}
.cssbox_body .inner {
	position: relative;
	margin-top: -10px;
}

