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

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

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

.contentWidth-1 {
width: 650px;
} /* Content less 1 column */
.contentWidth-2 {
    width: 460px;
} /* 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: 420px;
} /* Half content width; 50% */
.columnWidth50p {
    width: 90px;
} /* Half column width; 50% */

/* */
