First fix these two errors
line 501 .centerBoxHeading Property background-colo doesn't exist : #c9eda5
line 779 .Left_Nav_FPS_Box_Header a:visited, .Left_Nav_FPS_Box_Header a:link Parse Error -
Then
Find this code:
body {
margin: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 62.5%;
color: #000000;
background-color: #ffffff;
height:100%;
width:100%;
}
And change to this code:
body {
margin: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 62.5%;
color: #000000;
background-color: #ffffff;
}
Find this code:
#navBreadCrumb, #navEZPagesTop {
font-size: 0.95em;
font-weight: bold;
margin: 0em;
padding: 0.5em;
width:100%;
float:left;
}
and chang to this code:
#navBreadCrumb, #navEZPagesTop {
font-size: 0.95em;
font-weight: bold;
margin: 0em;
padding: 0.5em;
width:760px;
float:left;
}
Should have all your pages in the center with no hang-overs or blow-outs



