.roundedCornerSpacer {
    margin: 0;
    padding: 0;
    border: 0;
    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
18px: the width or height of the border image
*/
.borderTL, .borderTR, .borderBL, .borderBR {
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    z-index: 99
    }
.borderTL, .borderBL {
    float: left;
    clear: both
    }
.borderTR, .borderBR {
    float: right;
    clear: right
    }
.borderTL {
    margin: -1px 0 0 -1px
    }
.borderTR {
    margin: -1px -1px 0 0
    }
.borderBL {
    margin: -18px 0 0 0
    }
.borderBR {
    margin: -18px 0 0 0
    }
/* IE5-5.5/win needs the border scooted to the left or right by an
additional 3px! Why? */
.borderTL {
    margin-left: -4px;
    margin-left: -1px
    }
html > body .borderTL {
    margin-left: -1px
    }
.borderTR {
    margin-right: -4px;
    ma\rgin-right: -1px
    }
html > body .borderTR {
    margin-right: -1px
    }
.borderBL {
    margin-left: -3px;
    ma\rgin-left: 0
    }
html > body .borderBL {
    margin-left: 0
    }
.borderBR {
    margin-right: -3px;
    ma\rgin-right: 0
    }
html > body .borderBR {
    margin-right: 0
    }
/* To get around a known bug in IE5/win, apply the
border (no margin, padding or positioning) to the
content class and apply whatever positioning you
want to the contentWrapper class. */
.content {
    margin: 0;
    padding: 0;
    border: 1px solid rgb(127, 127, 127)
    }
.contentWrapper {
    /* position this div however you want, but
    keep its padding and border at zero */
    padding: 0;
    border: 0
    }