html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: Sans-Serif;
	line-height: 1.5em;
	background-image: url('/images/pth4bg.png');
	background-repeat: repeat-x;
	background-color: #ddebee;
}

#header {
	width: 100%;
	margin: 0;
	display: table;
	background-color: #808d8f;
	border-bottom: 1px solid #243;
}
	
.headerLogo {
	display: table-cell;
}

.headerText1 {
	display: table-cell;
	font-size: 20px;
	width: 80%;
	color: white;
	font-weight: bold;
	padding: 0 8px 0 8px;
	vertical-align: middle;
}

.headerSearchBox {
	display: table-cell;
	color: white;
	padding: 0 20px 0 5px;
	vertical-align: middle;
}


.content-wrap {
	min-height: 100%;
	margin: 0;
	padding: 0;
}

.content {
	margin: 0;
	padding: 0;
	padding-bottom: 30px;
}


.boxedText {
	width: 1000px;
	margin: 10px auto 10px auto;
	background: #fff;
	padding: 10px 20px 10px 20px;;
	border: 2px solid #8a9;
	border-radius: 15px;
	box-shadow: 5px 10px 20px #90a098;
}

.boxedText.square {
	border-top: 0;
	border-left: 0;
	border-bottom: 2px solid #666;
	border-right: 2px solid #666;
	border-radius: 0;
}

.boxedText.narrow {
	width: 800px;
	margin-top: 50px;
}

.boxedTextTitle {
	color: #b00;
	font-size: 120%;
	font-weight: bold;
	border-color: #aaa;
	border:  0 0 2px 10px;
	padding: 10px 0 8px 0;
}

.boxedTextLargeTitle {
	color: #b00;
	font-size: 140%;
	font-weight: bold;
	border-color: #aaa;
	border:  0 0 2px 10px;
	padding: 12px 0 10px 0;
}

.boxedTextHead {
	color: #666;
	font-size: 125%;
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 5px;
}

.boxedForm {
	width: 1000px;
	margin: 10px auto 20px auto;
	background: #f4f4f4;
	padding: 10px 20px 10px 20px;;
	border: 2px solid #8a9;
	border-radius: 15px;
	box-shadow: 5px 10px 20px #90a098;
}

.boxedForm.narrow {
	width: 800px;
	margin-top: 50px;
}

.formLabel {
	color: #444;
	font-weight: bold;
	text-align: right;
	vertical-align: top;
	padding-bottom: 10px;
	padding-right: 4px;
	white-space: nowrap;
}

formInput {
	margin-left: 4px;
	text-align: left;
	margin: 0 0 6px 0;
}

input.formInput {
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 4px 0 6px 6px;
	font-size: 100%;
}

select.formInput {
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 4px 0 6px 6px;
	font-size: 100%;
}

div.boxedForm textarea.formTextarea {
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 4px 0 6px 6px;
	font-size: 100%;
}

.label {
	color: #444;
	font-weight: bold;
}

textarea {
	font-family: Sans-Serif;
	font-size: 100%;
	border: 1px solid #dde;
	border-radius: 4px;
}

.blueButton {
	color: #fff;
	font-size: 100%;
	font-weight: bold;
	margin: 8px;
	padding: 1px 6px 2px 6px;
	background-color: #9ab;
	border: 0;
	border-radius: 5px;
}

.redButton {
	font-size: 90%;
	color: white;
	margin: 0;
	padding: 1px 8px;
	background-color: #b00;
	border: 0;
	border-radius: 8px;
}

button:hover {
	color: white;
	background-color: #b00;
}

.redText {
	color: #a00;
	font-weight:bold;
}

.smallRedText {
	display: block;
	color: #a00;
	font-size: 80%;
	line-height: 110%;
}

.smallTextLink {
	display: inline-block;
	color: #036;
	font-size: 90%;
	text-decoration: underline;
	cursor: pointer;
}
.smallTextLink:hover {
	color: #b00;
}

small {
	font-size:90%;
}

.floatRight {
	display: inline-block;
	float: right;
}

#footer {
	width: 100%;
	height: 40px;
	margin: 0;
	margin-top: -42px;
	border-top: 1px solid #243;
	background-color: #808d8f;
	color: white;
	text-align: center;
}

.footerLinks {
	float:left;
	padding: 5px 8px 5px 8px;
}
.footerLinks:hover {
	color: #b00;
}

#footer a {
	color: white;
}

.popup {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -100px;
	margin-left: -150px;
	min-width: 300px;
	z-index: 999;
	background-color: white;
	padding: 20px;
	visibility: hidden;
	border: 4px solid #999;
	border-radius: 20px;
}
.popup.red {
	border: 4px solid #a00;
	color: #a00;
}
.popup.blue {
	border: 4px solid #036;
	color: #036;
}
.popup.gray {
	border: 4px solid #ccc;
	color: #333;
}

.textBoxPopup {
	position: absolute;
	top: 80px;
	left: 50%;
	margin-left: -500px;
	z-index: 995;
	visibility: hidden;
	width: 1000px;
	background-color: #fff;
	padding: 10px 20px 10px 20px;;
	border-radius: 15px;
	border: 2px solid #666;
}

.textBoxPopup.red {
	border: 2px solid #b00;
}

.textBoxPopup.square {
	border: 0;
	border-radius: 0;
}

#dimPage{
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index: 990;
	background-color: black;
	opacity:0.2;
	filter: alpha(opacity=20);
	visibility: hidden;
}


.grayBar {
	width: 100%;
	font-size: 120%;
	color: #666;
	font-weight: bold;
	background-color: #f0f0f0;
	border-top: 1px solid #aaa;
	padding: 5px;
	padding-left: 10px;
	margin-top: 12px;
	margin-bottom: 5px;
}

.tooltip {
	position: relative;
	display: inline-block;
}

.tooltip .tooltiptext {
	visibility: hidden;
	border: 1px solid #666;
	background-color: #ffffcc;
	color: black;
	font-weight: normal;
	padding: 8px;
	text-align: left;
	border-radius: 8px;
	position: absolute;
	top: -8px;
	left: 105%;
	z-index: 1;
	box-shadow: 5px 10px 15px #999;
}

.tooltip:hover {
	background-color: #ffffcc;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}


.shareButtons {
	margin-top: 10px;
	display: table;
	float: right;
}
.shareButton {
	margin: 0;
	padding: 0 2px 0 2px;
	display: table-cell;
	text-align: right;
	vertical-align: top;
}

