/*
nuCorners - rounded corner divs that expand x and y
by John-Paul Walton, johnpaul.walton@gmail.com
You have a better rounded-corner technique?
let me know johnpaul.walton@gmail.com
*/

.nuc {
	margin: 0;
	padding: 0;
	background-color: transparent;
	background-repeat: no-repeat !important;
}

/* basic, 4-corners */
.nuc				{ background-position: top left; }
.nuc .nuc			{ background-position: top right; }
.nuc .nuc .nuc		{ background-position: bottom right; }
.nuc .nuc .nuc .nuc	{ background-position: bottom left; padding: 1px; height: 100%;} /* the height fixes an issue in IE 5/win */
/* NOTE - innermost div MUST have at least 1px of padding */

#page 						{ background-image: url(images/tan_ul.gif) !important; }
#page .nuc					{ background-image: url(images/tan_ur.gif) !important; }
#page .nuc .nuc				{ background-image: url(images/tan_lr.gif) !important; }
#page .nuc .nuc .nuc		{ background-image: url(images/tan_ll.gif) !important; padding: .9em !important; }
