/* notepaper_border.css */
/* copyright 2007 Robert E Walker */

/* adjust container to compensate for border */

.image_border {
 margin-top: 0;
 margin-bottom: 26px; /* = bottom height */
}

/* set sizes for borders */

.top,
.top_left,
.top_right {
 height: 70px;
}

.right,
.top_right,
.bottom_right {
 width: 29px;
}

.bottom,
.bottom_right,
.bottom_left {
 height: 26px;
}

.left,
.bottom_left,
.top_left {
 width: 59px;
}

/* set fills, note that this is separate from all positioning styles for convenience of modding */

.image_border {
 background-image: url("../images/notepaper_border/fill.gif");
 background-color: transparent;
}

.top {
 background-image: url("../images/notepaper_border/top.gif");
 background-color: transparent;}

.image_border > .top {
 /* use .png for non-IE6 browsers */
 background-image: url("../images/notepaper_border/top.png");
}
.right {
 background-image: url("../images/notepaper_border/right.gif");
 background-color: transparent;}

.image_border > .right {
 /* use .png for non-IE6 browsers */
 background-image: url("../images/notepaper_border/right.png");
}
.bottom {
 background-image: url("../images/notepaper_border/bottom.gif");
 background-color: transparent;}

.image_border > .bottom {
 /* use .png for non-IE6 browsers */
 background-image: url("../images/notepaper_border/bottom.png");
}
.left {
 background-image: url("../images/notepaper_border/left.gif");
 background-color: transparent;}

.image_border > .left {
 /* use .png for non-IE6 browsers */
 background-image: url("../images/notepaper_border/left.png");
}
.top_left {
 background-image: url("../images/notepaper_border/top_left.gif");
 background-color: transparent;}

.image_border > .top_left {
 /* use .png for non-IE6 browsers */
 background-image: url("../images/notepaper_border/top_left.png");
}
.top_right {
 background-image: url("../images/notepaper_border/top_right.gif");
 background-color: transparent;}

.image_border > .top_right {
 /* use .png for non-IE6 browsers */
 background-image: url("../images/notepaper_border/top_right.png");
}
.bottom_right {
 background-image: url("../images/notepaper_border/bottom_right.gif");
 background-color: transparent;}

.image_border > .bottom_right {
 /* use .png for non-IE6 browsers */
 background-image: url("../images/notepaper_border/bottom_right.png");
}
.bottom_left {
 background-image: url("../images/notepaper_border/bottom_left.gif");
 background-color: transparent;}
 
.image_border > .bottom_left {
 /* use .png for non-IE6 browsers */
 background-image: url("../images/notepaper_border/bottom_left.png");
}