/* 

Color Scheme:
	
- WhiteSmoke
- SlateGray
- WhiteSnow
- Lavender
- SlateBlue
- DarkSalmon
- Silver
- Salmon	

Property order:

- position
- clear
- float	
- overflow
- color
- background
- width
- height
- padding
- border	
- margin
- text-align
- text-decoration
- text-transform
- letter-spacing
- line-height
- font
- list-style

*/

* {
	padding: 0; 
	margin: 0; 
}

html, body {
	margin: 0; 
	padding: 0;
}
	
body {
	color: SlateGray; 
	background: WhiteSmoke url(../images/background01.gif); 
	padding: 0; 
	margin: 0; 
	text-align: center; 
}

ul {
	list-style: none;
}	

li {
	font: 12pt Georgia, Times, serif;
}	

a {
	color: SlateGray;
	text-decoration: none; 
}

img {
	border: none;
}	

p {
	font: 10pt Verdana, sans-serif;
}

.cssLeftFloater {
	float: left;
}

.cssRightFloater {
	float: right;
}

form {
	margin: 4px 120px 4px 0px;
	padding: 4px;
	background-color: Lavender;
	border-left: LightSteelBlue 1px solid;
	border-top: LightSteelBlue 1px solid;
	border-right: SteelBlue 1px solid;
	border-bottom: SteelBlue 1px solid;
}

.cssButton {
	padding: 2px 4px;	
	color: WhiteSmoke;
	background-color: SteelBlue;
	border-left: LightSteelBlue 1px solid;
	border-top: LightSteelBlue 1px solid;
	border-right: DimGray 1px solid;
	border-bottom: DimGray 1px solid;
	font-family: Verdana, sans-serif;
	font-size: 9pt;		
	font-weight: bold;
	cursor: pointer;
}

.cssTextArea {
	color: SteelBlue;
	background-color: White;
	border: SlateGray 1px solid;
	font-family: Verdana, sans-serif;
	font-size: 8pt;		
	font-weight: normal;
}

.cssCheckBox {
}

.cssCheckBoxLabel {
	margin-left: 4px;
	color: SteelBlue;
	font-family: Verdana, sans-serif;
	font-size: 8pt;		
	font-weight: normal;
}


