@import url("base_770_style.css"); 


.outer 
{
    position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
    margin-left: 0px;    /*** Critical left col dimension value ***/
    width: 770px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/   
}

.float-wrap 
{
    float: left;
    width: 770px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
    /*** background-color: red; ***/
    border-right: 1px solid #ccc;
        

}

.center 
{
    float: right;
    width: 770px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
    margin-bottom: -1px;   /*** Fixes a variance in IE/win for the green AP bottom boxes ***/

    

}

/*** 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. ***/


<!--[if IE]>

/*** The rule below prevents long urls from widening floated cols and breaking the layout 
	in IE. It is not valid, but if placed within a "Conditional comment" it will be hidden 
	from all user agents other than IE/Win, and thus validate. This fix fails in IE5/Win.
	http://msdn.microsoft.com/workshop/author/dhtml/overview/ccomment_ovw.asp ***/

.outer {word-wrap: break-word;}
.center {width: 770px;margin-left: -1px;}

/*** 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. ***/
*>html .center {width: 716px; }

<![endif]-->