@import url("base_770_style.css");


.outer 
{
    position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
    margin-left: 150px;    /*** Critical left col dimension value ***/
       /*** Critical left and right col/divider dimension value (moves inversly) ***/
       /*** Critical left divider dimension value ***/
      /*** Critical right divider dimension value ***/
      
     
}

* html .outer 
{   /*** IE5.x/win box model fix ***/
    width: 619px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
    wid\th: 916px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
    margin-left: 149px;
}

.float-wrap 
{
    float: left;
    position: relative;
    width: 619px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
    /*** background-color: red; ***/
    background: #ffffff;
    border-left: 1px solid #ccc;
    /***  margin-right: -1px;    Static fix ***/
    border-right: 1px solid #ccc; 
    
}

.center 
{
    float: right;
    width: 619px;
    /*** 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 ***/
    /* \*/

    /* Hidden from IE-mac */
}

.left {
    position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
    width: 151px;    /*** Critical left col/divider dimension value ***/
    /***background-color: blue;***/
    margin-left: -151px;    /*** Critical left col/divider dimension value ***/
}

* html .left 
{
    float:left;	
}

*>html .left {width:150px;}   /*** Fix only for IE/Mac ***/
*>html .center {margin-bottom:0px;}   /*** Fix only for IE/Mac ***/


.container-left 
{
    width: 150px;    /*** Critical left col dimension value ***/
    padding-bottom: 10px;   /*** To keep content from going underneath the 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. ***/
/* \*/
* 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. ***/

<!--[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;}

<![endif]-->