﻿/* GLOBAL STYLES */

/* HTML STYLE ______________________________________________________________________________________________________________________________________*/
/* NO SCROLL BARS (Mozilla always adds scrollbars) --------------------------------------------------------------------*/
html {
	overflow: -moz-scrollbars-vertical;
}
/*
html, body {
	width:100%;
}*/

/* BODY STYLE ______________________________________________________________________________________________________________________________________*/
body {
	/* color tag pertains to fonts */
	color:#d2dae3;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 62.5%;
	text-align:center;
	background-color:#788992;
	/* bg gradient w/thin top bar */
	background-image:url(../images/bg_shim.gif);
	background-repeat:repeat-x;
}

/* TEXT LINKS (orange) ______________________________________________________________________________________________________________________________________*/
a:link {
	color:#e69046;
	text-decoration: none;
}
a:visited {
	color:#e69046;
	text-decoration: none;
}
a:hover {
	color:#e69046;
	text-decoration: underline;
}
a:active {
	color:#e69046;
	text-decoration: underline;
}

/* TEXT LINKS - SECONDARY NAV (side panel - white & bold) -----------------------------------------------------------------------------------------------------------------------------*/
a.navNd:link {
	color:#5095de;
	font-weight:bold;
}
a.navNd:visited {
	color:#5095de;
	font-weight:bold;
}
a.navNd:hover {
	color:#e69046;
	font-weight:bold;
}
a.navNd:active {
	color:#e69046;
	font-weight:bold;
}
a.navNdCurrent {
	color:#e69046;
	font-weight:bold;
	text-decoration: underline;
}

/* TEXT LINKS (orange / bold) ______________________________________________________________________________________________________________________________________*/
a.large:link {
	font-size:1.3em;
	font-weight:bold;
	line-height:17px;
}
a.large:visited {
	font-size:1.3em;
	font-weight:bold;
	line-height:17px;
}
a.large:hover {
	font-size:1.3em;
	font-weight:bold;
	line-height:17px;
}
a.large:active {
	font-size:1.3em;
	font-weight:bold;
	line-height:17px;
}

/* LINE BREAK ______________________________________________________________________________________________________________________________________*/
.rule {
	display:block;
	height:15px;
	width:100%;
	background-image:url(../images/hori_rule.gif);
	clear:both;
}