/*
default.css
Default CSS styles used across all browsers.

author: Sing Chan
last modified: May 29, 2007


notes:
Place your generic class rules here. These rules will be applied to ALL browsers.
*/





/*------------------------------------------------------------

generic HTML elements

------------------------------------------------------------*/

body {
	background: #FFF;
}





/*------------------------------------------------------------

generic classes

------------------------------------------------------------*/

.note {
	color: #666;
	font-size: 80%;
}

.test {
	color: red;
}





/*------------------------------------------------------------

alignment and floating

------------------------------------------------------------*/

.alignLeft {
	text-align: left;
}

.alignRight {
	text-align: right;
}

.alignCenter {
	text-align: center;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.clearBoth {
	clear: both;
}

.clearLeft {
	clear: left;
}

.clearRight {
	clear: right;
}





/*------------------------------------------------------------

special messaging

------------------------------------------------------------*/

/* browser upgrade message */
.upgrade {
	margin-top: 1em;
	color: #900;
	border: 2px solid #900;
}

/* print preview message */
.printPreview {
	display: none;
}

