/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */

html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
	background-image:url(../media/images/bg.png);
	color:#666;
	font: 100% Arial, Helvetica, sans-serif;
	font-size:12px;
}

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 {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:868px;
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/
	min-height:100%;
	background-image:url(../media/images/contentBG.png);
	filter: progid:DXImageTransform.Microsoft.Shadow(color=#666666,direction=135,strength=6); /*Add Shadow in IE. Remove if desired*/
	border-right: 1px solid #666666;
}

div#header {
	/*padding:1em;
	background:#ddd url("../csslayout.gif") 98% 10px no-repeat;
	border-bottom:6px double gray;*/
	background-color:#FFFFFF;
	height:150px;
	width:868px;
	background-image:url(../media/images/subPageBG.png);
	background-repeat:no-repeat;
}
	div#header p {
	font-style:normal;
	/*		font-size:1.1em; */
	text-align:right;
	padding-right:25px;
	padding-top:25px;
	height:45px;
	}
	div#header .subTitle {
	color:#3b372e;
	margin-top:0px;
	margin-left:25px;
	padding-left:6px;
	padding-right:6px;
	background-color:#ffffff;
	text-align:center;
	font: 24px Arial, Helvetica, sans-serif;
	float:left;
	color:#a0a1a5;
	font-weight:bold;
	}
	div#header .insideVig {
	height:333px;
	width:200px;
	margin-right:25px;
	margin-top:5px;
	float:right;
	}

div#content {
	padding:1em 0em 5em; /* bottom padding for footer */
	width:620px;
}
	div#content p {
		text-align:justify;
		padding:0 1em;	
	}

div#footer {
	position:absolute;
	width:100%;
	bottom:0; /* stick to bottom */
	background:#fff;
	border-top: 1px solid #eff0f2;
}
	div#footer p {
		padding:1em;
		margin:0;
		width: 400px;
	}
	div#footer .left {
		float: left;
		font-size:10px;
		font-weight:normal;
		color:#000000;
		text-align:left
	}
	div#footer .right {
		float: right;
		font-size:10px;
		font-weight:normal;
		color:#000000;
		margin-right:7px;
		text-align:right
	}
tr {
	vertical-align:top;
}
.Bold14 {
	font-size: 14px;
	font-weight: bold;
}