html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td
	{
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	}

/* Remove possible quote marks from <q>/<blockquote> */

blockquote:before, blockquote:after, q:before, q:after
	{
	content: "";
	}

blockquote, q
	{
	quotes: "" "";
	}

/* Image replacement */
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

.replace
	{
	outline: none;
	display: block;
	position: relative;
	overflow: hidden;
	}

.replace span
	{
	display:block;
	position:absolute;
	top:0px;
	left:0px;
	z-index:1;
	}

/* Link styles */
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

a img
	{
	border:none;
	cursor: pointer;
	outline: none;
	}

a:link, a:visited
	{
	cursor: pointer;
	color: #314FA9;
	outline: none;
	text-decoration: none;
	}

a:hover
	{
	cursor: pointer;
	color: #213571;
	text-decoration: none;
	outline: none;
	}

a:active
	{
	cursor: pointer;
	color: #314FA9;
	outline: none;
	}

/* Body elements */

p
	{
	margin: 0 0 1.5em;
	}

blockquote
	{
	margin: 1.5em;
	color: #666;
	font-style: italic;
	}

code
	{
	margin: 1.5em 0;
	white-space: pre;
	font: 1em 'andale mono', 'monotype.com', 'lucida console', monospace;
	line-height: 1.5;
	}

abbr, acronym
	{
	border-bottom: 1px dotted #666;
	}

cite
	{
	font-style: italic;
	}

address
	{
	margin-top: 1.5em;
	font-style: italic;
	}

pre
	{
	margin: 1.5em 0;
	white-space: pre;
	}

strong
	{
	font-weight: bold;
	}

em
	{
	font-style: italic;
	}

del
	{
	text-decoration: line-through;
	color: #666;
	}

/* Headings */

h1 {
	font: bold 260%/100% Arial, Helvetica, sans-serif;
	margin: 0 0 10px;
	padding: 0;
	letter-spacing: -2px;
}
h2 {
	font: normal 140%/130% Arial, Helvetica, sans-serif;
	color: #666666;
}
h3 {
	font: bold 140%/130% Arial, Helvetica, sans-serif;
	color: #000;
	margin: 0;
	padding: 20px 0 5px;
}
h3 a {
	color: #000;
	text-decoration: none;
}
h3 a:hover {
	color: #FF3300;
}

/* List styles */
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

ol
	{
	list-style-type: decimal;
	margin:0 1.5em 1.5em 1.5em;
	list-style-position: inside;
	}

ul
	{
	margin:0 1.5em 1.5em 1.7em;
	list-style-position: outside;
	}

ul li
	{
	list-style: url(images/li.png);
	}

ul li:hover
	{
	list-style: url(images/li_on.png);
	}

dl
	{
 	margin: 0 0 1.5em 0;
	font-weight: bold;
	}

dt
	{
	font-weight: bold;
	}

dd
	{
	font-weight: normal;
	border-bottom: 1px solid #ccc;
	margin: 0px 0px 3px 20px;
	padding-bottom: 5px;
	}

/* Tables */
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

table
	{
	margin-bottom: 1.4em;
	}

th
	{
	/*border-bottom: 2px solid #ccc;*/
	font-weight: bold;
	}

td
	{
	/*border-bottom: 1px solid #ddd;*/
	}

th,td
	{
	padding: 4px 10px 4px 0;
	}

thead
	{
	}

tbody
	{
	}

tfoot
	{
	font-style: italic;
	}

caption
	{
	background: #ccc;
	}

/* Forms */
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

fieldset
	{
	width: 488px;
	padding: 15px 15px 0px 0px;
	background: url(images/entry-bg.png) no-repeat;
	}

legend
	{
	font-size: 1.5em;
	color: #314FA9;
	padding-top: 55px;
	}

select
	{
	border:1px solid #bbb;
	width:312px;
	color: #666;
	}

select:focus
	{
	border:1px solid #999;
	color: #000;
	}

.form_item input, .form_text_area
	{
	width: 300px;
	border:1px solid #bbb;
	padding:5px;
	color: #666;
	}

.form_item input:focus, .form_text_area:focus
	{
	border:1px solid #999;
	color: #000;
	}

.form_row_submit
	{
	clear: both;
	padding: 10px 0 0 150px;
	}

.form_label
	{
	float: left;
	width: 150px;
	}

.form_required
	{
	font-weight: bold;
	color: #3399ff;
	}

.form_item
	{
	float: left;
	}

.form_row
	{
	clear: both;
	padding-top: 10px;
	}

/* Form Errors */

.form_highlight input, .form_highlight textarea
	{
	border: 1px solid #FBC2C4;
	}

/* Success, error & notice boxes for messages and errors. */

.error, .notice, .success
	{
	padding: .9em;
	margin-bottom: 1em;
	border: 2px solid #ddd;
	}

.error
	{
	background: #FBE3E4;
	color: #D12F19;
	border-color: #FBC2C4;
	}

.notice
	{
	background: #FFF6BF;
	color: #817134;
	border-color: #FFD324;
	}

.success
	{
	background: #E6EFC2;
	color: #529214;
	border-color: #C6D880;
	}

.error a
	{
	color: #D12F19;
	}

.notice a
	{
	color: #817134;
	}

.success a
	{
	color: #529214;
	}

/* Custom / RTE classes */
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

.dotrule
	{
	height:1px;
	font-size:1px;
	background:url(images/dot.gif) repeat-x;
	clear:both;
	margin: 5px 0;
	}

.hrule
	{
	height:1px;
	font-size:1px;
	height: 1px;
	background: #ccc;
	clear: both;
	margin: 5px 0;
	}

.right
	{
	float:right;
	}

.left
	{
	float:left;
	}

.clear
	{
	clear: both;
	}

.small
	{
	font-size: .8em;
	margin-bottom: 1.875em;
	line-height: 1.875em;
	}

.large
	{
	font-size: 1.2em;
	line-height: 2.5em;
	margin-bottom: 1.25em;
	}

.quiet
	{
	color: #ccc;
	}

.hide
	{
	display:none;
	}

.highlight
	{
	background: #a5c7e8;
	padding: 2px;
	}


/********************************************************** // End // ********************************************************/
