@charset "UTF-8";
/* CSS Document */

body  {
	margin: 0; 
	/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000000;
	background-color: #E9E9E9/*#FF9900*/;
}

body {
	text-align: center;
	/* this centers the container in IE 5* browsers.
		The text is then set to the left aligned default in the #container selector */
	
}

/* set default text size */
body, th, td, div {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
}

/* Element specific mods */

a {
	color: #900;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #009933;
	text-decoration: none;
}

a:focus {
	-moz-outline-style: none;
}

h1 {
	font-size: 24px;
	font-weight: bold;
	margin-top: 0;
}

h2 {
	font-size: 15px;
	font-weight: bold;
}

#outwrap
{
	margin: 100px auto 0;
	padding: 15px;
	vertical-align: middle;
	text-align: center;
	border: #991B1E solid 2px;
	background: #FFF;
	font-size: 12px;
	width: 432px;
	height: auto;
	overflow: auto;
}

