/* This is where the entire html and the body of the document are defined. */ /* ffffff = white */ /* 000000 = black */ html {margin:0px; padding:0px; background:#ffffff; font-family:verdana; font-size:1em;} body {margin:0px; padding:0px; background:#ffffff; font-family:verdana; font-size:1em;} /* This is where all four columns and their content areas are defined. */ /* This is where the left content column is defined. */ #leftcontent { position: absolute; left:1%; width:19%; top:50px; background:#fff; text-align: center; } /* This is where the center-left content column is defined. */ #centerleftcontent { position: absolute; left:22%; width:24%; top:50px; background:#fff; text-align: center; } /* This is where the center-right content column is defined. */ #centerrightcontent { position: absolute; left:48%; width:24%; top:50px; background:#fff; text-align: center; } /* This is where the right content column is defined. */ #rightcontent { position: absolute; left:74%; width:24%; top:50px; background:#fff; text-align: center; } /* This is where the borders of the center-left, center-right, and right columns are defined. */ #rightcontent, #centerrightcontent, #centerleftcontent { border:1px solid #000; } h1 { margin:0px 0px 0px 0px; font-size:2em; padding-top:0.2%; padding-bottom:0.2%; text-align: center; }