﻿/* -- [Syd 1/31/07] Set up based on design for PopupMaster.master  -- */
/* -- Classes used in PopupMaster.master follow these layouts:

	-- EntirePage --
	+----------+--------------------------------------------------------+
	| PageHeaderPopup (entire top section)									|
	|                           |                                       |
	| PageHeaderPopupLeft			| PageHeaderPopupRight                       |
	+----------+--------------------------------------------------------+
	|          |PageMainPopup (where all application forms will appear)      |
	|          |								                        |
	|          |                                                        |
	|          |                                                        |
	|          |                                                        |
	|          |                                                        |
	+----------+--------------------------------------------------------+

-- */

.PopupMaster 
{
	/*width:100%;*/
	border: solid 1px #A9A9A9;
	background-color: #fff; /*White*/
	color: #000; /*Black*/
	font-family: Arial;
	min-width: 600px;
	max-width: 1200px;
	margin: 10px 10px 0px 10px;
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
	-moz-border-radius-topright: 15px;
	-moz-border-radius-topleft: 15px;
}

.PopupMasterPrinting
{
	/*width:100%;
	border: solid 1px #A9A9A9;*/
	background-color: #fff; /*White*/
	color: #000; /*Black*/
	font-family: Arial;
	min-width: 600px;
	max-width: 1200px;
	margin: 10px 10px 0px 10px;
	/*border-top-right-radius: 15px;
	border-top-left-radius: 15px;
	-moz-border-radius-topright: 15px;
	-moz-border-radius-topleft: 15px;*/
}

.PageHeaderPopup
{
	/*width: 100%;*/
	font-size: Medium;
	font-family: Arial;
	padding:10px;
	/*color: Blue;*/
	background-color: #FF0000; /*Red*/
	border-bottom: solid 1px #A9A9A9; /*DarkGray*/
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
	-moz-border-radius-topright: 15px;
	-moz-border-radius-topleft: 15px;
}

.PageHeaderPopup h1 
{
	text-align: center;
}

.PageHeaderPopup h2 
{
	text-align: center;
}

.PageHeaderPopupLeft 
{
	float:left;	
}

.PageHeaderPopupRight
{
	float:right;
	text-align: right;
}

.PageMainPopup
{
	/*width: 100%;*/
	font-size: Small;
	font-family: Arial;
	padding:5px;
	min-height:500px;
	/*color: Blue;*/
	background-color: #FFFACD; /*LemonChiffon*/
	border-color: #A9A9A9; /*DarkGray*/
}