/* CSS Document */

.textLink a:link {color: #7D0D00; text-decoration: none; border-bottom:  1px dotted #7D0D00; font-weight: bold;}
.textLink a:visited {color: #7D0D00; text-decoration: none; border-bottom:  1px dotted #7D0D00; font-weight: bold;}
.textLink a:active {color: #7D0D00; text-decoration: none; border-bottom:  1px dotted #7D0D00; font-weight: bold;}
.textLink a:hover {color: #666666; text-decoration: none; border-bottom:  1px dotted #666666; font-weight: bold;}


body {
	margin: 0px;
}

#container {
	margin: 0px auto;
	width: 450px;
	padding: 40px 90px 60px 90px;
	background: #FCF8EF url(../images/paper-background.gif);
	text-align: center;
	border-bottom: 1px solid #E4E1DB;
	border-right: 1px solid #E4E1DB;
	border-left: 1px solid #EEE9DC;
	border-top: 1px solid #EEE9DC;
}

#logo {
	padding-bottom: 32px;
}

#signature {
	padding: 0px 0px 16px 0px;
}

#text {
	font-family: Georgia, Times New Roman, Times, serif;
	font-size: 11px;
	line-height: 18px;
	color: #000000;
	text-align: left;
	padding: 20px 0px 20px 0px;
}

#back {
	position: absolute;
	z-index: 1;
	margin-top: 20px;
	margin-left: 360px;
}

/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
Modified By: Noah Winecoff (http://www.findmotive.com)
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */

#lightbox{
	display:none;
	position: absolute;
	top:50%;
	left:50%;
	z-index:9999;
	width:335px;
	height:480px;
	margin: -240px 0px 0px -175px;
	border:10px solid #FFFFFF;
	background:#FFFFFF;
}
#lightbox[id]{
	position:fixed;
}

#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#000;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);
}
#overlay[id]{
	position:fixed;
}

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}

#lightbox.done img{
	width:100%;
	height:100%;
}


#closePanel {
	height: 15px;
	position: absolute;
	top: 0px;
	right: 0px;
	text-align: right;
}


#close {
	width: 16px;
	height: 15px;
}

