/*------------- CSS Document ------------
Author:		Mark Johnson
Version:	CSS 2.0
Email:		MPJstuff_AT_gmail.com

REFERENCE: 
			http://www.vdotmedia.com/blog/vertically-center-content-with-css/
			http://javascriptkit.com/javatutors/static2.shtml
			
VALIDATED:	http://jigsaw.w3.org/css-validator/check/referer    
			2010, April 5
-----------------------------------------*/

/*html {
 height: 100%;
 width:	100%;
 overflow: hidden;

}

body {
font-family: "Lucida Grande","Lucida Sans Unicode", Helvetica, arial, sans-serif;
 font-size: 122%;
 text-align: center;
 height: 100%;
 width:	100%;
 margin: 0;
 padding: 0;
 overflow:hidden;
 color: #C0C0C0;
 background-color:#000080; 
 }
#container {
 width: 100%;
 height: 100%;
 display: table;
 position: relative;
 text-align:left;
}
#position {
 display: table-cell;
 vertical-align: middle;
 width: 100%;
 text-align: center;
 }
#flashDiv {
 text-align:center;
 height:600px;
 width:800px;
 min-height: 100%;
 min-width: 100%;
 overflow: hidden;
 position: absolute;
 top: 50%;
 display: table-cell;
 vertical-align: middle;
 margin:0 auto;
 margin-left:auto;
margin-right:auto;
}
#flashAlt {
 background-color: #FFFFFF;
 text-align:center;
 height:600px;
 width:800px;
 min-height: 100%;
 min-width: 100%;
 overflow: visible;
 position: absolute;
 top: 50%;
 display: table-cell;
 vertical-align: middle;
 margin:0 auto;
 margin-left:auto;
 margin-right:auto;
}

*/
