/* Default styling. Used when JavaScript is unsupported */
.box
{
	border: 1px solid #999;
	margin: 5px 8px;
}

/* Insert the custom corners and borders for browsers with sufficient JavaScript support */
.box_style
{
}

/* Common Styles for Top and Bottom Corners */
.bt,
.bt div,
.bb,
.bb div
{
	background-image: url(../images/box_border.png);
	background-repeat: no-repeat;

	/* Needed for IE */
	font-size: 0;
}

/* Top Border and Right Corner*/
.bt
{
	background-position: 100% 0;
	margin-left: 9px;
	height: 6px;
}

/* Top Left Corner */
.bt div
{
	width: 9px;
	height: 6px;
	position: relative;
	left: -9px;
	background-position: 0 0;
}

/* Bottom Border and Right Corner */
.bb
{
	background-position: 100% 100%;
	margin-left: 9px;
	height: 10px;
}

/* Bottom Left Corner */
.bb div
{
	width: 9px;
	height: 10px;
	position:relative;
	left: -9px;
	background-position: 0 100%;
}

/* Common Styles for Left and Right Borders */
.i1,
.i2
{
	background-image: url(../images/box_border-sides.png);
	background-repeat: repeat-y;
}

/* Left Border */
.i1
{
	padding-left: 9px;
	background-position: 0 0;
}


/* Right Border */
.i2
{
	padding-right: 9px;
	background-position: 100% 0;

}

/* Wrapper for the content. Use it to set the background colour and insert some padding between the borders and the content. */
.box_content
{

}