<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html> 
    <head> 
        <title><?=$pageTitle?></title> 
 
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
 
        <style> 
            body { 
                background-color: #F6F3E2; 
                color: #7F714A; 
 
                font-family: sans-serif; 
                font-size: 24px; 
 
                height: 100%; 
                width: 100%; 
 
                margin: 0; 
                padding: 0; 
                overflow: hidden; 
 
                display: table; 
                #position: relative; 
            } 
 
            html { 
                height: 100%; 
                margin: 0; 
                padding: 0; 
            } 
 
            a { 
                color: #7F714A; 
                font-weight: bold; 
                text-decoration: none; 
            } 
            a:hover { 
                text-decoration: underline; 
            } 
 
            #center1 { 
                #position: absolute; 
                #top: 50%; 
 
                display: table-cell; 
                vertical-align: middle; 
 
                text-align: center; 
                width: 100%; 
            } 
 
            #center2 { 
                #position: relative; 
                #top: -50%; 
 
                text-align: center; 
 
                width: 100%; 
            } 
        </style> 
    </head> 
 
    <body> 
 
        <div id="center1"><div id="center2"> 
            <?=$pageMessage?> 
        </div></div> 
    </body> 
</html> 
 
 |