﻿
/* This is used by the follwing pages: 
	UserWelcomeEmail2.asp
*/


/* Classes for managing Email Preview */
#previewFade
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background-color: black;
	z-index:1001;
	opacity:0.80;
/*	
	-moz-opacity: 0.8;*/
} 
#previewContent
{
	display: none;
	position: fixed;
	top: 5%;
	left: 25%;
	right: 25%;
	bottom: 5%;
	padding: 16px;
	border: solid 4px #E0EBFF;
	background-color: #E0EBFF;
	z-index:1002;
	overflow: auto;
}
#previewCloseButton
{
	position: absolute;
	display: block;
	bottom: 0px;
	right: 0px;
	padding: 8px 16px 8px 32px;
	background-color: #E0EBFF;
	z-index:1004;
	outline: none;
}
#previewCloseButton:focus
{
}
#previewCloseButton:hover
{
	color: Red;
}
#previewActionButtons
{
	position: absolute;
	display: block;
	bottom: 0px;
	left: 0px;
	padding: 8px 32px 8px 16px;
	background-color: #E0EBFF;
	z-index:1004;
	outline: none;
}
#previewActionButtons a
{
	margin-right: 16px;
}
#previewActionButtons a:focus
{
}
#previewActionButtons a:hover
{
	color: Red;
}
#previewFrame
{
	position: absolute;
	border: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 94%;
}

/* send emails */
#sendContent,
#sendFrame,
#sendCloseLog
{
	display: none;
}
#sendCloseLog,
#sendViewLog
{
	padding: 2px 10px;
	margin-bottom: 2px;
	border: solid 1px black;
	background-color: #EEE;
	color: black;
	text-decoration: none;
}
#sendFrame
{
	min-height: 100px;
	padding: 1em;
	border: solid 1px black;
	background-color: #EEE;
	white-space: pre-wrap;
	*white-space: normal;	/* IE6 and IE7 to word-wrap long text lines in PRE tags */
}


/* edit content */
#editContent
{
	display:none;
}
#editContent TEXTAREA
{
	width:100%;
}





