/* CSS Document */

/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */


table {
	table-layout:fixed; /* force a solid grid */
	border-collapse:collapse;
	margin: 0 auto 1em;
	width:450px;
}
table th, table td {
	white-space:nowrap; /* don't want wrapping text */
	padding:2px 20px 2px 5px; /* right padding for required field marker */
}

table th {
	padding:2px 0 2px 5px;
	text-align:right;
}

td.required, tr.required td {
	background:url(../images/req.gif) center right no-repeat;
}

table input {
	width:100%; /* simply scale inputs to table cell size */
}

td.input-group input {
	width:auto; /* but not for radios or checks */ 
}




/*

html,body {
	margin:0;
	padding:0;
	height:100%;
	background:gray;
	
	font-family:arial,sans-serif;
	font-size:small;
	color:#666;
}

h1 { 
	font:1.5em georgia,serif; 
	margin:0.5em 0;
}

h2 {
	font:1.25em georgia,serif; 
	margin:0 0 0.5em;
}
	h1, h2, a {
		color:orange;
	}

p { 
	line-height:1.5; 
	margin:0 0 1em;
}

div#container {
	margin:0 auto;
	width:750px;
	background:#f0f0f0;
	height:auto !important;
	height:100%;
	min-height:100%;
}

div#header {
	padding:1em;
	background:#ddd url("../csslayout.gif") 98% 10px no-repeat;
	border-bottom:6px double gray;
}
	div#header p {
		font-style:italic;
		font-size:1.1em;
		margin:0;
	}

div#content {
	padding:1em;
}
	div#content p {
		text-align:justify;
		padding:0 1em;
	}
*/