 .roundedCornerSpacer {
    margin: 0px; padding: 0px; border: 0px;
    clear: both;
    font-size: 1px; line-height: 1px;
}
 /* In the CSS below, the numbers used are the following:
    1px: the width of the border
    3px: a fudge factor needed for IE5/win (see below)
    4px: the width of the border (1px) plus the 3px IE5/win fudge factor
    14px: the width or height of the border image
*/

/*corner dimensions*/
 .borderTL, .borderTR, .borderBL, .borderBR {
    width: 19px; height: 19px;
    padding: 0px; border: 0px;
    z-index: 99;
}

/*basic corner positioning*/
.borderTL, .borderBL { float: left; clear: both; }
.borderTR, .borderBR { float: right; clear: right; }
.borderTL { margin: -2px 0px 0px -2px; }
.borderTR { margin: -2px -1px 0px 0px; }
.borderBL { margin: -19px 0px 0px 0px; }
.borderBR { margin: -19px 0px 0px 0px; }

 /* IE5-5.5/win needs the border scooted to the left or right by an
   additional 3px! Why? */
.borderTL {
    margin-left: -5px;
    ma\rgin-left: -2px;
}
html>body .borderTL {
    margin-left: -2px;
}
.borderTR {
    margin-right: -5px;
    ma\rgin-right: -2px;
}
html>body .borderTR {
    margin-right: -2px;
}
.borderBL {
    margin-left: -4px;
    ma\rgin-left: 0px;
}
html>body .borderBL {
    margin-left: 0px;
}
.borderBR {
    margin-right: -4px;
    ma\rgin-right: 0px;
}
html>body .borderBR {
	margin-right: 0px;
}



