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

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

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

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

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

/* */
