/* CSS Document */

html,body {
	margin: 0;
	padding: 0;
	height: 100%; /* needed for container min-height */
	background-image: url('../images/bg.jpg');
	background-repeat: no-repeat;
	background-color: #000000;
}


/*************************
 Main
 ************************/

div#main {
	position: relative; /* needed for footer positioning*/
	margin: 0 auto; /* center, not in IE5 */
	width: 100%;
	height: auto !important; /* real browsers */
	height: 60%; /* IE6: treaded as min-height*/
	min-height: 60%; /* real browsers */
	text-align: center;
} 

div.content {
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 60%;
    position: fixed; 
	display: table;
}

div.content p {
	display: table-cell; 
	vertical-align: middle;
}

  /* Horizontal centering of image: set left & right margins to 'auto' */
img.displayed {
	top: 50%;
	display: block; 
	margin: 1em auto;
}


.tag {
	width: 427px;  
	color: #ffffff;
	text-align: right;
	font: 11px, Arial, Helvetica, sans-serif;
	display:block;
	margin: auto;
}


div#address {
	position: relative;
	margin: 0 auto; /* center, not in IE5 */
	width: 427px;
	bottom: 0; /* stick to bottom */
	color: #333333;
	margin-bottom: 30px;
	text-align: right;
	font: 11px, Arial, Helvetica, sans-serif;
}

div#address a {
	color: #333333;
	text-decoration: none;
}

div#address a:hover {
	color: #ff0099;
}

div#footer {
	position: relative;
	margin: 0 auto; /* center, not in IE5 */
	width: 427px;
	bottom: 0; /* stick to bottom */
	color: #333333;
	margin-bottom: 10px;
	text-align: left;
	font: 11px, Arial, Helvetica, sans-serif;
}

