/*
 * don't put borders around #content as various implementations of equal-height
 * column css for #center/#right might not contain all of #content (i.e. css
 * using border-right-width)
 */
/*
 * can't conveniently use vertical borders on #content/#center/#right with
 * current equal-height css implementation without wrapping #content in yet
 * another div. no thanks.
 */
#menu, #center, #right, #below, #footer, #legal {
 border-color:black;
 border-style:solid;
}
#menu, #center, #right, #below, #footer, #legal {
 border-width:1px 0pt 0pt 0pt;
}
#center {
 border-width:1px 1px 0pt 0pt;
 margin-left:-1px;
}
#right {
 border-width:1px 0pt 0pt 1px;
 margin-left:-2px;
}
#legal {
 border-bottom-width:1px;
}
