/*
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
*/

* { 
    margin: 0; 
    padding: 0; 
}

html, body, #bg, #bg table, #bg td, #cont {
    height:100%;
    width:100%;
    overflow:hidden;
}

#bg { 
    position: fixed; 
}

#bg div {
    height:200%;
    left:-50%;
    position:absolute;
    top:-50%;
    width:200%;
}

#bg td {
    text-align:center;
    vertical-align:middle;
}

#bg img {
    margin:0 auto;
    min-height:50%;
    min-width:50%;
}

#cont {
    position:absolute;
    top:0;left:0;
    z-index:70;
    overflow:hidden;
}

.box { 
	background-color:white;
	opacity:0.4;
	filter:Alpha(opacity=50); /* IE8 and earlier */
    margin: 40px auto; 
    width: 100%;
    padding: 10px;
	color: #000;
    padding-bottom:10px;
    font: 12px/2.8 Arial, Serif;
}

.box a { 
	color: #000;
	text-decoration: none;
}

.box img { 
	vertical-align: middle;
}