@CHARSET "UTF-8";
/*******************************************************************************
 * formatting.css
 *
 * This file contains text formatting styles. These are general styles for the
 * site, intended to be overridden by modules with more specific requirements.
 *
 * Author: William Madden
 *
 * Copyright (c) JB Interactive, 2008
 ******************************************************************************/

/*******************************************************************************
 * BODY
 ******************************************************************************/
body {
	font-family: "Trebuchet MS", Arial;
	font-size: 12px;
	color: #333333;
}

/*******************************************************************************
 * HEADINGS
 ******************************************************************************/
h1, h2, h3 {
	font-weight: bold;
	margin-bottom: 18px;
	font-size: 16px;
	line-height: 16px;
}

h1 {
	font-size: 23px;
	line-height: 23px;
}

h2 {
	color: #00538E;
}

h3 {
	font-size: 14px;
}

/*******************************************************************************
 * LINKS
 ******************************************************************************/
a {
	text-decoration: none;
	outline: none;
	color: #00538E;
}

a:hover {
	color: #128DC3;
}

/*******************************************************************************
 * SPACING
 ******************************************************************************/
p, ul, dl, ol {
	margin-bottom: 18px;
	line-height: 18px;
	font-size: 12px;
	padding-left: 18px;
}

/*******************************************************************************
 * SPACING
 ******************************************************************************/
ul, dl, ol {
	padding-left: 48px;
	line-height: inherit;
}

ul {
	list-style: disc outside;
}

ol {
	list-style: decimal outside;
}

li, dd {
	margin-bottom: 5px;
}
dd {
	padding-left: 10px;
}

/*******************************************************************************
 * TEXT FORMATTING
 ******************************************************************************/
strong {
	font-weight: bold;
}

em {
	font-style: italic;
	font-weight: inherit;
}