html, body, ol, ul, li, dl, dt, dd, img {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  padding: 0 450px; /* 340px the critical side padding that sets the natural min-width! */
  background: gray; /* this BG tiles the area outside the columns */
        background:#FFFFF0;
  color: #000;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 100.01%; /* this body font-size fixes an IE bug and maintains x-browser uniformity */
  text-align: center; /* centers the #sizer element in IE5.x/win */
}

#sizer {
  margin: 0 auto; /* centers #sizer in standard browsers */
  padding: 0;
  width: 60%; /* this value controls liquidity; 0% = full rigid, 100% = full liquid */
  text-align: left; /* resets the default text alignment for the page */
  max-width: 120px; /* IE7 supports this property, doesn't need the fancy MS expression */
border: 1px solid #A72E30;
border-left: 0px solid #A72E30
}

#expander { /* Any % height here causes IE to lose the neg right margin */
	margin: 0 -420px; /* -335 neg side margin values should be < or = to side body padding */
	min-width: 670px; /* This prevents Safari from losing the negative margins in narrow windows */
	position: relative; /* makes #expander visible outside #sizer in IEwin */
	min-height: 1px; /* This harmless declaration gives Layout to IE7, which can't read the star/html hack in the CC below */
border: 0px solid #A72E30;
        background:#FFFFF0;
}

/* #expander must receive "hasLayout" for IEwin bug fixing; applied in CC */

#wrapper1 {
  position: relative;
  background: silver; /* this BG tiles the left column */
  font-size: .9em; /* set global font-size here */
  border: 0px solid #A72E30;
  border-left: 3px solid #A72E30
} /* this positioning may be needed for IEwin if page is to contain positioned elements */

#wrapper2 {
  position: relative; /* extra insurance against bugs in IEwin */
  background:green; /* this BG tiles the right column */
        background:#2D73B9;
        background:#A72E30;
        background:#CCCCCC;
        background:#A72E30;
}


/****************** Main Page Structure *****************/

/* To modify the side column widths and the col divider widths, the values that are
marked "critical" and also refer to the desired mod MUST be changed as a group. */


.outer {
  background: url(../images/bluelattice.gif); /* this BG tiles the center column */
  background:#FFFFF0;
  border-left: 0px solid #A72E30; /*** Critical left divider dimension value ***/
  border-right: 0px solid #A72E30; /*** Critical right divider dimension value ***/
  margin-left: 200px;    /*** Critical left col width value ***/
  margin-right: 200px;    /*** Critical right col width value ***/
}

.float-wrap {
  float: left;
  width: 100%;
}

.center {
  float: right;
  width: 100%;
}

.left {
  float: left;
        background:#CCCCCC;
        background:#A72E30;
  position: relative; /* Needed for IE/win */
  width: 200px;    /*** Critical left col width value ***/
  margin-left: -200px;    /*** Critical left col width value ***/ /*** Critical left divider dimension value ***/
left:-3px;
}

.right {
  float: right;
  position: relative; /* Needed for IE/win */
  width: 200px;    /*** Critical right col width value ***/
  margin-right: -200px;    /*** Critical right col width value ***/ /*** Critical right divider dimension value ***/
  margin-left: 0px;   /*** Critical right divider dimension value ***/
}

.centerbox {
  overflow: visible;
  width: 100%;
  background:#FFFFF0;
}

.container-left {color: #ffc; 
	background:fuchsia;
        background:#CCCCCC;
        background:#A72E30;
}

.container-right {color: #A72E30; 
	padding-bottom: 8px;
        background:#A72E30;
background: #CCCCCC;
        background:#A72E30;
} /* makes room for the froggy */
.container-right p {color:#A72E30;}


/************** Spacing Controls for various column contents ***************/

.outer ul {
  text-align: left;
  margin: 20px;
}

.textpadder {padding: 8px;}


/************** Special Fixes *************/

.outer {word-wrap: break-word;}
/* Prevents long urls from breaking layout in IE, must
be hidden in a conditional comment for CSS to validate */

img {max-width: 100%;}
/* prevents oversize images from breaking layout in browsers that support max-width */


/**************** Utility Rules *******************/

.brclear { /* Use a break with this class to clear float containers */
  clear:both;
  height:0;
  margin:0;
  font-size: 1px;
  line-height: 0;
}


.hide {display: none;}

