/** ========================= BODY  ============================ */

/** ========================= COLOR PALETTE  ============================ */
/*
PRIMARY Blue/Purple - 3A435C / 333366 (web safe)
SECONDARY Teal = 336666
ACCENT 1 Deep Red = AA2808 / 993300 (web safe)
ACCENT 2 Goldenrod = ffcc33
ACCENT 3 Sky blue = ccffff
*/


body {
	margin: 0px;
	padding: 0px;
	background: #323B51 url(images/template/border.gif) repeat-y center top;
	text-align: left;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 13px;
	color: #333333; /*  text color is dark gray */
}

/** ========================= HEADINGS  ============================ */
h1 {
font-family: Georgia, "Times New Roman", Times, serif;
color: #993300;
font-size: 2em;
margin-bottom: 2px;
}

h2 {
font-family: Georgia, "Times New Roman", Times, serif;
color: #336666;
font-size: 1.8em;
letter-spacing: -1px;
margin-bottom: 0px;
padding: 0;
border-bottom: 1px dotted #336666;
}

h3 {
font-family: Georgia, "Times New Roman", Times, serif;
color: #993300; /* red */
font-variant: small-caps;
font-size: 1.2em;
margin-bottom: 1px;
}

h4 {

font-family: Georgia, "Times New Roman", Times, serif;
color: #336666; /* teal */
font-size: 1.2em;
margin-bottom: 1px;
}

/** ========================= HYPERLINKS  ============================ */
a {
	font-weight: bold;
	color: #323B51;
}

a:hover {
	text-decoration: none;
	color: #FF0000;
}

/** ========================= HEADER  ============================ */

#header {
	width: 760px;
	height: 150px; /* should be exact height of header.jpg */
    margin: 0px auto; /* 0px auto */
	background: #FFFFFF; /*323B51*/
	padding: 0 0 0 0;
}

#header h1 {
	margin: 0px;
	padding: 0px;
	text-align: center;
}

#header h2 {
	margin: 0px;
	padding: 0px;
	text-align: center;
	font-size: 14px;
}

/** ========================= MENU  ============================ */

#menu {
	width: 750px;
	margin: 0px auto;
	padding: 5px 0px 6px 5px; 
	background: #323B51 url(images/template/bg_off.jpg) repeat-x left top; 
	font-family: Arial, Helvetica, sans-serif;
	
}


#menu ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	text-align: center;
}

#menu li {
	display: inline;
}

#menu a {
	padding: 5px 15px;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
}

#menu a:hover {
    
	color: #ffcc33; /* gold */
	background: #ffffff url(images/template/bg_on.jpg) repeat-x left top; /* light teal blue */
	
}

/** ========================= CONTENT  ============================ */

#content {
	width: 760px;
	margin: 0px auto;
	padding: 20px 0px 0px 0px;
}

#content h2, #content h3, #content h4, #content h5, #content h6 {
	font-weight: normal;
}

#content p, #content ul, #content ol {
	line-height: 150%;
}

#content p.caption {
margin-top: 0;
font-family: Arial, Helvetica, sans-serif;
letter-spacing: -1px;
font-weight: bolder;
color: #336666;
}

#content p.crumbs {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 8pt;
}

/** ========================= LEFT SIDE BAR  ============================ */
#left {
	float: left;
	width: 175px; /*480*/
	padding: 0px 20px 40px 20px;
}

#left ul {
margin: 0;
padding: 0;
list-style: none;
line-height: normal;
font-family: Arial, Helvetica, sans-serif;
}
#left li {
margin-bottom: 1 px;
}

#left li ul {
}
#left h2 {
border-bottom: 1px dotted #333333;
margin-bottom: 3px;
}

#left h2 a {
	text-decoration: none;
	color: #336666;
	font-weight: normal;
}

/** ========================= RIGHT  COLUMN ============================ */
#right {
	float: right;
	width: 480px; 
	padding: 0px 20px 40px 20px;	
}

#right ul.toc {
margin-left: 0;
padding: 0;
list-style: outside;
line-height: 200%;
}
#right li.toc {
margin-bottom: 1px;
}

#right li.toc ul {
}

/** ========================= FULL PAGE - No left or right columns  ============================ */
#fullpage {
width: 655px;
margin: 20px auto;
text-align: left;
}

#fullpage h1 {
text-align: center;
}

#fullpage p {
text-align: left;
}


/** ========================= IMAGES  ============================ */
/* do not define img by itself - it will affect the logo image! */
img.noborder
{
border: solid 1px #6F5230;
}

img.left
{
position: relative;
float: left;
margin: 0em 1.8em 1.4em 0em;
}

img.right
{
position: relative;
float: right;
margin: 0em 0em 1.8em 1.8em;
}

/** ========================= FOOTER  ============================ */

#footer {
	clear: both;
	width: 760px;
	margin: 0px auto;
	border-top: 2px solid #323B51;
}

#footer p {
	margin: 0px;
	padding: 5px 10px;
	color: #323B51;
	text-align: center;
}


/** ========================= MESSAGE BOX CLEAN SERIES  ============================ */

	/** HTML USAGE
	<!-- Clean -->
<h1>Clean</h1>
<div class="clean-gray">Clean message box</div>				
<div class="clean-yellow">Clean message box</div>			
<div class="clean-ok">Clean Ok! message box</div>			
<div class="clean-error">Clean error message box</div>		

*/
	.clean-gray{
		border:solid 1px #DEDEDE; 
		background:#EFEFEF;
		color:#222222;
		padding:4px;
		text-align:center;
	}
	.clean-yellow{
		border:solid 1px #DEDEDE; 
		background:#FFFFCC;
		color:#222222;
		padding:4px;
		text-align:center;
	}
	.clean-ok{
		border:solid 1px #349534; 
		background:#C9FFCA;
		color:#008000;
		font-weight:bold;
		padding:4px;
		text-align:center;
	}
	.clean-error{
		border:solid 1px #CC0000; 
		background:#F7CBCA;
		color:#CC0000;
		font-weight:bold;
		padding:4px;
		text-align:center;
	}
	
