/* CSS Document */
/* 1 Reset mode	*/

*	{
	margin: 0;
	padding: 0;
}

body	{
	font-family: Arial, Helvetica, Nimbus Sans L, sans-serif;
	font-size: 0.9em;
	background-color: #ddd;

}

ul	{
	list-style-type: square;
	font-size: 1em;
	padding: 0 1em 1em 2em;
	
}


/* 2. Layout */

#container	{
	width: 60em;
	background-color: #ffffff;
	margin: 0 auto;
	border:1px solid #000000;

}

#header	{
	height: 6em;
	width: 60em;
	background: #0099CC;
}

#navigation	{
	width: 60em;
	height: 1.4em;
	background-color: transparent; 
	background-image: url(../images/nav-fade.jpg); 
	background-repeat: repeat-x;
}

#content	{
	width: 58em;
	padding: 1em;
	min-height:400px;
}

#footer	{
	height: 3.5em;
	width: 60em;
	background: #0099CC;
}

/* 3. Text */

#header p	{
	color: #ffffff;
	padding: 0.6em 0 0 0.6em;
	font-weight: 600;
	font-size: 2em;
}
#header p.subheader	{
	float:left;
	color: #ffffff;
	padding: 0.2em 0 0 1.2em;
	font-weight: 600;
	font-size: 1em;
}
#header em {
	float:right;
	font-style:normal;
	color: #ffffff;
	font-weight: 600;
	font-size: 1em;
	padding:5px;
}

#content h1	{
	color: #0099CC;
	padding: 0;
	margin: 0 0 0.2em 0;
	font-weight: 600;
	line-height: 1.5em;
	font-size: 2em;
}

#content h2	{
	color: #ff6600;
	padding: 0;
	margin: 0 0 0.9em 0;
	font-weight: 400;
	line-height: 1.5em;
	font-size: 1.5em;
}

#content h3	{
	color: #996633;
	padding: 0;
	margin: 2em 0 0.9em 0;
	font-weight: 600;
	line-height: 1.5em;
	font-size: 1.3em;
	border-bottom: 0.1em dotted #996633;
}

#content h4	{
	color: #996633;
	padding: 0;
	margin: 2em 0 0.9em 0;
	font-weight: 600;
	line-height: 1.5em;
	font-size: 1.1em;
	border-bottom: 0.1em dotted #996633;
	clear:left;
}

#content p	{
	color: #000000;
	padding: 0;
	margin: 0 0 0.9em 0;
	font-weight: 400;
	line-height: 1.5em;
	font-size: 1em;
}

	#content p.address	{
		color: #000000;
		padding: 0;
		margin: 0 0 0 3em;
		font-weight: 400;
		line-height: 1.5em;
		font-size: 1em;
		}
	#content p.name	{
		color: #000000;
		padding: 0;
		margin: 1em 0 0 3em;
		font-weight: 600;
		line-height: 1.5em;
		font-size: 1em;
		}

#footer p	{
		color: #ffffff;
		padding: 0.6em 0 0 0.6em;
		font-weight: 600;
		text-align: center;
		font-size: 1em;
	}
#footer p.minor	{
	color: #ffffff;
	padding: 0;
	font-weight: 400;
	text-align: center;
	font-size: 1em;
	}
#cards {
	float:right;
	margin-top:30px;
}
/* 4. Navigation */

#navigation ul	{
	display: inline;
	list-style-type: none;
	height: 1.4em;
	padding: 0;
}
#navigation li	{
	display: block;
	list-style-type: none;
	width: 10em;
	height: 1.39em;
	text-align: center;
	background-color: transparent;
	float: left;
}

#navigation a	{
	text-decoration: none;
	color: #000000;
	background-color: transparent;
	text-align: center;
	display: block;
	height: 1.4em;
	font-weight:bold;
}

#navigation a:hover	{
	text-decoration: none;
	background-color: transparent;
	width: 10em;
	display: block;
	height: 1.4em;
	text-align: center;
	background:url(../images/navbgblue.jpg) repeat-x;
	color:#FFFFFF;
}

/* 5. Images */

#content img	{
	border: 0.1em solid #000000;
}

#content img.right	{
	border: 0.3em solid #ff6600;
	margin: 0 0 0 1em;
	float: right;
	width: 10em;
}
#content img.left	{
	margin: 10px;
	float: left;
}
#content .logos {
	float:left;
	border:1px solid #FFFFFF;
	margin:5px;
	padding:0;
	text-decoration:none;
}
#cards img {
	margin: 0;
	padding: 0px 0px 0px 10px;
	border:0;
}
/* 6. Form Styling  */
fieldset {
	margin:1em 0;
	padding: 1em;
	border: 1px solid #ccc;
	}
legend {
	font-weight:bold;	
	}
label {
	float: left;
	width: 10em;
	}
fieldset p {
	position:relative;	
}
.feedback {
	position: absolute;
	margin-left:11em;
	left:200px;
	right: 0;
	background:url(../images/required.png) no-repeat left top;
	padding-left:27px;
	font-weight: bold;
	line-height:27px;
}
#commentbox .feedback {
	left:265px;	
}
input[type="text"] {
	width: 200px;	
}
input:focus, textarea:focus {
	background:#FFC;
	border-color:#06C;
}