/*------------------------------------------------------------

default.css
Default CSS styles used across all browsers.

notes:
Place your generic class rules here. These rules will be applied to ALL browsers.

------------------------------------------------------------*/





/*------------------------------------------------------------

HTML elements

------------------------------------------------------------*/

body {
	background: #FFF;
	font-family: Trebuchet MS, Verdana, Sans-Serif;
	font-size: small;
}





/*------------------------------------------------------------

generic classes

------------------------------------------------------------*/


/* floats */

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}


/* float clears */

.clearBoth {
	clear: both;
}

.clearLeft {
	clear: left;
}

.clearRight {
	clear: right;
}


/* text alignment */

.alignCenter {
	text-align: center;
}

.alignLeft {
	text-align: left;
}

.alignRight {
	text-align: right;
}





/*------------------------------------------------------------

special messaging

------------------------------------------------------------*/

/* browser upgrade message */
.upgrade {
	margin-top: 1em;
	color: #900;
	border: 2px solid #900;
}

/* print preview message */
.printPreview {
	display: none;
}
