/* source:  http://www.jakpsatweb.cz/css/css-vertical-center-solution.html */

body, html {height: 100%; background: #dedede; 
color: white;
font-family: "Verdana", "Arial", "Helvetica";
font-size: 11px;
}
#outer {height: 100%; overflow: visible; width: 100%; position: relative; } /* or without overflow */
#outer[id] {display: table; position: static;}
	
#middle {position: absolute; top: 50%; width: 100%; text-align: center;} /* for explorer only*/
#middle[id] {display: table-cell; vertical-align: middle; position: static;}
		
#inner {position: relative; top: -50%; text-align: left;} /* for explorer only */
#inner {width: 678px; margin-left: auto; margin-right: auto;} /* for all browsers*/
/* optional: #inner[id] {position: static;} */


a, a:visited {
    font-weight: bold;
    color: #8b0008;
    text-decoration: none;
}
		


