@charset "utf-8";

/* ************************************************************
   Cascading Style Sheet (CSS) for commonly used styles.
   Attach this to your Dreamweaver Template.
   Designed by Scott Nelson, Scott@WebDesignSB.com
   http://www.WebDesignSB.com/
   Updated: 2009-03-20
************************************************************ */

/* ********** Text Colors ********** */

.TextColorRed {
	color: #FF0000;
}

.TextColorOrange {
	color: #FFA500;
}

.TextColorYellow {
	color: #FFFF00;
}

.TextColorGreen {
	color: #009900;
}

.TextColorBlue {
	color: #0000FF;
}

.TextColorPurple {
	color: #800080;
}

.TextColorWhite {
	color: #FFFFFF;
}

.TextColorBlack {
	color: #000000;
}

.TextColorGrayLight {
	color: #CCCCCC;
}

.TextColorGrayDark {
	color: #666666;
}


/* ********** Text Styles ********** */


.TextStyleBold {
	font-weight: bold;
}

.TextStyleItalic {
	font-style: italic;
}

.TextStyleNormal {
	font-style: normal;
}

/* ********** Text Size ********** */

.TextSizeSmall {
	font-size: 10px;
}

/***********  Image Styles ********** */

img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.ImageAlignLeft {
	float: left;
	margin-right: 10px;
}

.ImageAlignRight {
	float: right;
	margin-left: 10px;
}

/* ********** Adobe Dreamweaver CS3/CS4 Float Styles ********** */

.FloatRight { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
}

.FloatLeft { /* this class can be used to float an element left in your page */
	float: left;
}

.FloatClear { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.FloatNone {
	float: none;
}

/* ********** Alignment and Display ********** */

.NoDisplay {
	display: none;
}

.AlignRight {
	text-align: right;
}

.AlignLeft {
	text-align: left;
}

.AlignCenter {
	text-align: center;
}

.AlignJustify {
	text-align: justify;
}

/* ********** Common Tag Definitions ********** */

iframe {
	border: none;
}

input, select, textarea {
	font-family: Arial, Helvetica, sans-serif;
}

/* ********** End Styles ********** */