/* RESET TO MAKE THE SAME FOR ALL BROWSERS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	overflow-x: hidden;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* GENERAL STYLES */
body {
	background-color: #8e9574;
	color: #646453;
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 0.875em;
	line-height: 1.4em;
}

h1, .page-header {
	font-family: "Times New Roman", Times, serif;
	font-size: 2.5em;
	font-style: italic;
	font-weight: 700;
	line-height: 35px;
	padding: 10px 0 20px 0;
	text-align: center;
}

h2 {
	font-size: 0.975em;
	font-weight: 700;
	text-align: center;
}

h5 {
	font-weight: 700;
}

ol {
	margin-left: 40px;
}

.sub-header {
	font-size: 1.72em;
}

a {
	color: #925029;
}

.image-link {
	text-decoration: none;
}

.spacer-small { padding: 10px; }
.spacer-medium { padding: 20px; }

.bold { font-weight: 700; }

.left-align { text-align: left; }
.top-align { vertical-align: top; }
.clear { clear: both; }

.green-bg { background-color: #8e9574; }
.brown-bg { background-color: #5e361d; }
.brown-text { color: #5e361d; }
.gray-text { color: #818085; }
.white-text { color: #fff; }

.green-right-arrow {
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #4b5039;
	height: 0; 
	width: 0; 
}

.green-down-arrow {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #4b5039;
	height: 0; 
	width: 0; 
}

.green-up-arrow {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #4b5039;
	height: 0; 
	width: 0; 
}

.green-btn {
	background-color: #4b5039;
	border: 1px solid;
	border-radius: 6px;
	color: #FFF;
	cursor: pointer;
	display: inline-block;
	padding: 5px 10px;
	vertical-align: top;
}

.form-entry .error-messages .error {
	color: #FF0000;
	display: block;
}

/* Loading Modal */
.loading-modal {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('../images/loading-icon.gif') 
                50% 50% 
                no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading {
    overflow: hidden;   
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .loading-modal {
    display: block;
}


/* Content Pages */
#content-page a {
	text-decoration: none;
	font-weight: 700;
}

#content-page a :hover {
	text-decoration: underline;
}