
/*-------------------------------------------------------------------------
	Infront CMS (infrontcms.css)
//-------------------------------------------------------------------------

//-------------------------------------------------------------------------
	These styles are used by the Rich Text Editor (RTE) in ContentWorks. The
	idea here is that we need to define all the styles that are relating to
	content in this sheet and make sure not to put the same styles into
	styles.css or there could be inconsitencies between how the user edits
	the content and how the content displays on the front end.
//-------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------
	Body - Define base font formatting. This background color is what the
	user sees when editing their content, so you want to keep it the same as
	the site content background. The site might have a dark blue graident
	background image, but if the content for the page is on white, this style
	needs to be set to white. For more custom formatting of the overall site
	background, make those modifications to styles.css.
//-------------------------------------------------------------------------*/

body {
	background-color: #fff;
	font: 12px/18px verdana, arial, sans-serif;
	margin: 0;
}

p,
ol,
ul { padding: 9px 0; }
blockquote { margin: 9px 18px; }

ul {
	list-style: disc;
	margin-left: 18px;
}

ol {
	list-style: decimal;
	margin-left: 18px;
}

/* --- The TD font-size needs to be defined for some odd reason --- */
td { font-size: 11px; }

/*-------------------------------------------------------------------------
	Headers - The browser will scale the headlines to the accessiblility
	settings of the browser.
//-------------------------------------------------------------------------*/
h1 {
	color: #0060ff;
	font-size: 2.0em;
	font-weight: normal;
}

h2 {
	color: #99742e;
	font-size: 1.8em;
	font-weight: normal;
}

h3 {
	color: #0060ff;
	font-size: 1.6em;
	font-weight: normal;
}

h4 {
	color: #4e4e4e;
	font-size: 1.4em;
}

h5 {
	color: #4e4e4e;
	font-size: 1.2em;
}

h6 {
	color: #4e4e4e;
	font-size: 1.0em;
}


/*-------------------------------------------------------------------------
	Default Link Style
//-------------------------------------------------------------------------*/
a { text-decoration: underline; font-weight: bold; }
a:hover { text-decoration: none; }
a:active {}
a:visited {}


/*-------------------------------------------------------------------------
	Horizontal Rule
//-------------------------------------------------------------------------*/
hr {
	background-color: #333333;
	border: 0;
	color: #333333;
	height: 1px;
}

/*-------------------------------------------------------------------------
	List Items - NOT NAVIGATION - CONTENT ONLY
//-------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------
	Custom Editor Styles - Optional
//-------------------------------------------------------------------------*/


/*Pull these colors out of the design comp, or the provided color pallate file*/

.side_content_header {
	background: #d2d2d2;
	color: #5b5b5b;
	display: block;
	font-weight: normal;
	margin: 15px 0;
	padding: 15px;
}

.blue { color: #0060ff; }
.gold { color: #99742e; }
.charcoal { color: #4e4e4e; }

/*-------------------------------------------------------------------------
	Image Styles - optional - useful in the editor
//-------------------------------------------------------------------------*/
