 /* ====================================================================
 box layout
 -------------------------------------------------------------------- */
 .columns-float-map
     {
     float : left;
     width : 10px;
     }
 .columns-float
     {
     float : left;
     width : 840px;
     }
 /* the relative positioning is required by IEs 5 + 6 (PC) - NN4 crashes if it sees them while other browsers don't seem to mind - hence the Caio hack */
 .column-one
     {
     width : 20px;
     float : left;
     }
 .column-two
     {
     width : 800px;
     float : left;
     }
 .column-three
     {
	width : 20px;
	float : right;
     }
 .column-four
     {
     width : 160px;
     float : left;
     }
 .column-map
     {
     width : 990px;
     float : left;
     }
 .box-footer
     {
     clear : both;
     }
 /* ====================================================================
 box-clear requires all sorts of hackery because of the way the
 different browsers cope with clearing floats
 see [ ]
 -------------------------------------------------------------------- */
 .box-clear { clear: both; line-height: 0px; font-size: 1px; }
 /* IE5 (mac) dealt with, now reset font-size for Geckos,
 turn off for IE5 (PC) + OmniWeb and back on for IE6 (PC)
 see [http://www.fu2k.org/alex/css/test/OmniWebInlineHack.mhtml] */
 /*\*/
 .box-clear { clear: both; font-size: medium; }
 .fake.box-clear { display: none; }
 /* */
 /* Turn off for Opera 6 and below */
 html>body div.box-clear { display: none; }
 /* And turn it back on again for good honest browsers
 see [http://www.albin.net/CSS/OwenHack.html] */
 head:first-child+body div.box-clear { display: block; }
 /* ====================================================================
 box styling
 -------------------------------------------------------------------- */
 .box-wrap
     {
     width:auto;
     padding : 0px;
     }
 .box-header
     {
     margin : 0px;
     border : none;
     cursor:pointer;
     }
 .box-footer
     {
     padding : 0px;
     border : none;
     }
 /* CSS HACK: position:relative needed by IE6 otherwise the header and col 2 don't show up on initial rendering - they're there but you have to minimise the window or switch to another app and back to see the full effect. But IE5(pc) doesn't like it. And nor does NN4.
 NB. the use of pos:rel has to go way beyond skin-deep - any nested element that needs a background colour appears to require to be be relatively positioned */
 /*/*/
 .box-wrap, .columns-float,.columns-float-map, .column-one, .column-two, .column-three, .column-four, .column-map, h2
     { p\osition: relative; }
 /* */

