html {
	margin:0;
	padding:0;
	}
	
body {
	margin:0;
	}
	
#boxT, #boxR, #boxB, #boxL  {
	position:relative;
	width:100%;height:100%
	}

#boxTR, #boxBR, #boxBL, #boxTL {
	position:relative;
	background-repeat: no-repeat;
	width:100%;height:100%
}

#boxT {
	background-image: url(images/border_top.gif);
	background-repeat: repeat-x;
	background-position: top;

	}
	
#boxR {
	background-image: url(images/border_right.gif);
	background-repeat: repeat-y;
	background-position: right;
	}
	
#boxB {
	background-image: url(images/border_bottom.gif);
	background-repeat: repeat-x;
	background-position: bottom;
}

#boxL {
	background-image: url(images/border_left.gif);
	background-repeat: repeat-y;
	background-position: left;
}

#boxTR {
	background-image: url(images/corner_topright.gif);
	background-position: right top;
}

#boxBR {
	background-image: url(images/corner_bottomright.gif);
	background-position: right bottom;
}

#boxBL {
	background-image: url(images/corner_bottomleft.gif);
	background-position: left bottom;
}

#boxTL {
	background-image: url(images/corner_topleft.gif);
	background-position: left top;
}