/*Synotac global.css - Version 1.1 - Last Updated 2/28/07
**************************************************************************
GLOBAL HTML TAG CSS
This is to get rid of MOST browser quirks
Note that this WILL cause problems with HTML editors
if users try to put borders on tables, etc.
****************************************************************************/
HTML
{
	height: 100%;
	margin-bottom: 1px;
}
BODY
{
	margin: 0;
	padding: 0;
	color: #000;
	background: #FFF;
}
/*for browsers that don't properly implement inheritance
NOTE: this includes IE 6 in many cases*/
BODY, P, LI, UL, OL, TD, TEXTAREA, INPUT, SELECT, FONT
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 2em;
	color: #515151;
}
P, LI, UL, OL, TD
{
	text-align: left;
}
IMG
{
	border: 0;
}
TD
{
	vertical-align: top;
	padding: 0;
	margin: 0;
}
FORM
{
	margin: 0;
	padding: 0;
}
/*line-height: normal is necessary so that IE does not resize input submit buttons on forms*/
INPUT
{
	margin: 0;
	line-height: normal;
}
P, H1, H2, H3, H4, H5, H6
{
	margin: 1em 0;
}
H1, H2, H3, H4, H5, H6
{
}
H1
{
	font-size: 18px;
}
H2
{
	font-size: 16px;
}
H3
{
	font-size: 14px;
}
H4, H5, H6
{
	font-size: 12px;
}
A
{
	color: #33C;
}
A:hover
{
	color: #999;
}
A:active
{
	color: #F93;
}
UL, OL, LI
{
	margin: 0;
	padding: 0;
}
LI
{
	margin-left: 15px;
}
/********************** End global HTML tag CSS ********************
**************************************************************************
GLOBAL CSS CLASSES
This is a library of basic classes that cover most
of the core CSS functionality needed
****************************************************************************/
.float_left
{
	float: left;
	margin: 0 10px 10px 0;
}
.float_right
{
	float: right;
	margin: 0 0 10px 10px;
}
.text_left_align
{
	text-align: left;
}
.text_center_align
{
	text-align: center;
}
.text_right_align
{
	text-align: right;
}
.text_justify
{
	text-align: justify;
}
.alert
{
	font-weight: bold;
	color: #F00;
}
.no_display
{
	display: none;
}
.border
{
	border: 1px solid #333;
}
DIV#newsletter_box
{
	margin-top: 0px;
}
DIV.facebook-link
{
	text-align: left;
	margin-left: 22px;
}
DIV.facebook-link IMG
{
	vertical-align: middle;
	border: none;
	text-decoration: none;
	margin-right: 5px;
}
/********************** End global CSS classes *********************/
