Centered Content


	/* CSS 2.1
	==================================== */

	@charset 'utf-8';

	@media all {
		img { border: 0; }
	}

	/* General Style Settings
	==================================== */

	@media screen, projection, print {
		* { font-family: palatino, georgia, 'bitstream vera serif', serif; 
			font-weight: normal; 
			margin: 0; 
			padding: 0; 
		}
		html {
			font-size: 62.5%; 
			line-height: 1.5;
			height: 100%;
		}
		body{
			width: 100%;
			height: 100%;
		}
	}

	/* Screen and Projection Style
	==================================== */

	@media screen, projection {

		body{
			font-size: 1.5em;
			background: #eee;
			color: #161515;
		}

		#content{
			background-color:#fff;
			width:50%;
			height:50%;
			margin: auto;
			position: relative;
			top:25%;
			overflow: auto;
		}
	}