@charset "utf-8";
/* CSS Document */
.gallery_corners_tl, .gallery_corners_t, .gallery_corners_tr, .gallery_corners_l, .gallery_corners_r, .gallery_corners_bl, .gallery_corners_b, .gallery_corners_br, .gallery_corners {
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
}
.gallery_corners_t {
    /*
        change this div to layout the whole box (width, height, float, margin, ...)
        example lines:
        width: 60%;
        margin: 7px 35px 0px 1px
        to change distance to content/text scroll to class ".gallery_corners" and change the padding
    */
    background-color: #ffffff;
    background-image: url("gallery_corners_border.png");
    background-repeat: repeat-x;
    background-position: top;
}
.gallery_corners_tl {
    height: 100%;
    background-image: url("gallery_corners_topleft.png");
    background-repeat: no-repeat;
    background-position: left top;
}
.gallery_corners_tr {
    height: 100%;
    background-image: url("gallery_corners_topright.png");
    background-repeat: no-repeat;
    background-position: right top;
}
.gallery_corners_bl {
    height: 100%;
    background-image: url("gallery_corners_bottomleft.png");
    background-repeat: no-repeat;
    background-position: left bottom;
}
.gallery_corners_br {
    height: 100%;
    background-image: url("gallery_corners_bottomright.png");
    background-repeat: no-repeat;
    background-position: right bottom;
}
.gallery_corners {
    height: 100%;
    /* change this if you want to change the distance distance to text/content */
    padding: 16px 17px 16px 17px;
}

.gallery_corners_l {
    height: 100%;
    background-image: url("gallery_corners_border.png");
    background-repeat: repeat-y;
    background-position: left;
}
.gallery_corners_r {
    height: 100%;
    background-image: url("gallery_corners_border.png");
    background-repeat: repeat-y;
    background-position: right;
}
.gallery_corners_b {
    height: 100%;
    background-image: url("gallery_corners_border.png");
    background-repeat: repeat-x;
    background-position: bottom;
}

