.clear { clear: both; }

.wrapper {
margin: 0 auto;
width: 900px;
text-align: left;
position: absolute;
top: 10px;
left: 20px;

}

* html .wrapper {   /*** IE5.x/win box model fix ***/
width: 902px;
wid\th: 900px;
}

.outer {
position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
margin-left: 180px;    /*** Critical left col dimension value ***/
width: 598px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
}

* html .outer {   /*** IE5.x/win box model fix ***/
width: 600px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
wid\th: 598px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
}

.float-wrap {
float: left;
width: 598px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
margin-right: -1px;   /*** Static fix ***/
}

.center {
float: right;
margin-bottom: -1px; /*** Fixes a variance in IE/win for the green AP bottom boxes ***/
margin-left: -1px; /* Hidden from IE-mac */
width: 598px; /*** Critical left and right col/divider dimension value (moves inversly) ***/
}

.left {
position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
width: 182px;    /*** Critical left col/divider dimension value ***/
margin-left: -181px;    /*** Critical left col/divider dimension value ***/
}

* html .left {
float:left;	
}

*>html .left {width:181px;}   /*** Fix only for IE/Mac ***/

.container-left {
width: 180px;    /*** Critical left col dimension value ***/
}

.right {
float: left; 
position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
width: 122px;    /*** Critical right col/divider dimension value ***/
margin-right: -120px;    /*** Critical right col/divider dimension value ***/
margin-left: -1px;   /*** Static fix ***/
}

/* \*/
* html .right {
margin-left: 0px; 
margin-right: -500px; 
mar\gin-right: -122px;
}
/* */

/*** These commented-out rules below are there to explain the "Critical" info 
	for the rules above, because comments must not appear within the Mac-hack.
	The "rules" below are not active, they are just for teaching purposes. ***/

/*
* html .right {
margin-left: 0px;    *** Critical right divider dimension value ***
margin-right: -500px;    *** IE5.x/win fix, must be above a critical number, but very high values appear okay ***
mar\gin-right: -122px;    *** Critical right col/divider dimension value ***
}
*/


.container-right { 
/* \*/width: 120px;/* Hidden from IE-Mac */   /*** Critical right col dimension value ***/
margin-left: 3px;    /*** Critical right divider dimension value ***/
padding-bottom: 110px;   /*** To keep content from going underneath the AP bottom boxes ***/
}

/* \*/
* html .container-right {
fl\oat: right;
margin-left: 2px; 
mar\gin-left: 0px; 
}
/*** Static fixes ***/

/*** Below is the Holly hack, and if IE/Win shows bugs it's a good idea to apply this hack to 
	different elements and see if that fixes the problem. Sometimes it may be necessary 
	to use "position: relative;" on certain elements, but it's hard to tell in advance which 
	elements will need such fixes. Here it prevents IE5/Win from clipping the left ends 
	of the headings. ***/
/* \*/
* html h2 {height: 1%;}
/* */


/*** This is a fix for IE5/Win at the largest text size setting. ***/
/* \*/
* html .left {margin-right: -3px;}
/* */

/*** All the IE fixes that are inside separate "Mac-hacks" may be grouped 	within 
	just one Mac-hack for convenience if desired. However, each fix must come 
	later than the rule it is fixing or the fix itself will be overridden. ***/


