/* Transparent Custom Corners and Borders V2 
================================================================
Coding technique from Roger Johansson at www.456bereastreet.com.
Page created by Tom Barnfield of www.runninghead.com on Friday 1st june 2007 at 4.27 pm (UK GMT Summer Time).
*/

/* CB CSS
================================================*/
/* Basic styling, used when JavaScript is unsupported */
.cbb {
	margin:1em 0px;
	padding:0px 10px;
	border:1px solid #000000;
	background:#000000;
}
.cbb h1 {
	margin:0px -10px;
	padding:0.3em 10px;
}
/* Normal styling */
.cb {margin:0.5em 0em;}
	/* Top corners and border */
.bt {
	height:17px;
	margin:0px 0px 0px 18px;
	background:url(../images/custom_cornered_box_images/box_black_1.png) no-repeat 100% 0%;
}
.bt div {
	position:relative;
	left:-18px;
	width:18px;
	height:17px;
	background:url(../images/custom_cornered_box_images/box_black_1.png) no-repeat 0% 0%;
	font-size:0px;
	line-height:0px;
}

/* Bottom corners and border */
.bb {
	height:17px;
	margin:0px 0px 0px 18px;
	background:url(../images/custom_cornered_box_images/box_black_1.png) no-repeat 100% 100%;
}
.bb div {
	position:relative;
	left:-18px;
	width:18px;
	height:17px;
	background:url(../images/custom_cornered_box_images/box_black_1.png) no-repeat 0% 100%;
	font-size:0px;
	line-height:0px;
}

	/* Left border */
.i1 {
	padding:0px 0px 0px 12px;
	background:url(../images/custom_cornered_box_images/borders_black_1.png) repeat-y 0% 0%;
}
	/* Right border */
.i2 {
	padding:0px 12px 0px 0px;
	background:url(../images/custom_cornered_box_images/borders_black_1.png) repeat-y 100% 0%;
}
	/* Wrapper for the content. Use it to set the background colour and insert some padding between the borders and the content. */
.i3 {
	display:block;
	margin:0px;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
	/* Make the content wrapper auto clearing so it will contain floats (see http://positioniseverything.net/easyclearing.html). */
.i3:after {
	content:"."; 
	display:block; 
	height:0px; 
	clear:both; 
	visibility:hidden;
}
.i3 {
	display:inline-block;
	background-color: #000000;
}
.i3 {display:block;}
/* CB CSS ends here */

