/* LAYOUT CSS */
/* Defines the current content widths */

/* Page Widths */
.contentWidth {
    width: 1000px;
    margin: auto;
    text-align: left;
}
.columnWidth {
    width: 260px;
}

.contentWidthMin {
    min-width: 1000px;
}
.contentWidthMax {
    max-width: 2000px;
} /* width*2 */
.contentWidthFull {
    width: 100%;
    min-width: 1000px;
}
.contentWidthExact {
    width: 1000px;
}

.contentWidth-1 {
width: 730px;
} /* Content less 1 column */
.contentWidth-2 {
    width: 460px;
} /* Content less 2 columns */
.contentWidth-3 {
    width: 190px;
} /* Content less 3 columns */
/* note, additional space is taken from the content to allow for borders */

.contentWidth50p {
    width: 500px;
} /* Half content width; 50% */
.columnWidth50p {
    width: 130px;
} /* Half column width; 50% */

/* */
