

/*
	These CSS rules affect the styling of the demo pages. The centering techniques
	are demonstrated in the individual in the individual 1.html, 2.html and 3.html files.
*/


*{
	margin:0;
	padding:0;
}

body{
	/* Setting default text color, background and a font stack */
	color:#29323c;
	font-size:14px;
	background: #ffffff;
	font-family:Arial, Helvetica, sans-serif;
}
a { 
    color:#bb2818;
}
a:hover { 
    color:#29323c;
}

#mydiv {
position:absolute;
top: 50%;
left: 40%;
width:900px;
height:450px;
margin-top: -225px; /*set to a negative number 1/2 of your height*/
margin-left: -325px; /*set to a negative number 1/2 of your width*/
border: 0px solid #fff;
background-color: #fff;
text-align: center;
}