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

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

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

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

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

/* */
