.style2009 {display:none;}

html, body, #wrapper {
    min-height: 100%; /*Sets the min height to the
                        height of the viewport.*/
    width: 100%;
    height: 100%; /*Effectively, this is min height
                    for IE5+/Win, since IE wrongly expands
                    an element to enclose its content.
                    This mis-behavior screws up modern  
                    browsers*/
    margin: 0;
    padding: 0;
    }

html>body, html>body #wrapper {
    height: auto; /*this undoes the IE hack, hiding it
                    from IE using the child selector*/
    } 

#wrapper {
    position: absolute;
    top: 0;
    left: 0;
    text-align:center;
    }
 
#content {
    height: auto;
    padding: .5em;
    padding-bottom: 10em;   /*Keeps content above footer. Originally
                           used margin, but a bug in Opera7 seemed
                           to add spurious margin, pushing the
                           footer beyond the viewport even with
                           short content. */
    }

#footer {
	font-size: 14pt;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    }

#content {text-align:left;}




#globalnav ul li{list-style-type:none; display:inline; padding:1em; text-align:center;}
