@CHARSET "utf-8";
/* CSS Document
 global.css includes style for elements global to the entire site.  The global elements include the followin:
 - structural elements (body, wrapper, headers, containers, links, etc.)
 - branding section (aka. header) which contains the site logo, name, call to action, etc.
 - reference section (aka footer) which contains supporting navigation, policies disclosures, copyright, signatures, etc.
 - navigation including primary, secondary, etc. navigation.  If navigation styles are complex
 a new navigation.css file might be justified to simplify editing.
 */
/*--- Element Styles -----*/
h1, h1 a {
    font-size: 146.5%;
    font-weight: 200;
    color: #9D8A1C;
}

h2, h2 a {
    font-size: 123.1%;
    color: #9D8A1C;
}

h3, h3 a {
    font-size: 108%;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover { /* mouse over link */
    color: inherit;
}
a:active, a:focus { /* selected link */
	outline: none;
	-moz-outline-style: none;
}
a img,:link img,:visited img {
    border: none
}

ul, ol {
    -moz-padding-start: 0;
    padding: 0 0 0 1em;
}

ol li {
    list-style: decimal;
}

label {
    display: block;
}

label.required:after {
    content: "*";
}

.smallfont {
    font-size: 85%;
}

.hmenu li {
    list-style: none;
    float: left;
}

.grey, .grey a {
    color: #616161;
}

.drkgrey {
    color: #4d4d4d;
}

.more-link {
    display: block;
    font-weight: 600;
}

.bolded {
    font-weight: 600;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

/*--- Page Structure -----
 
 Defines overall page structure without sub-elements */
body {
    background: black url(../chrome/background.jpg) repeat-x;
    text-align: center; /*this is in place to center in older browsers*/
    font-size: 84%;
}

#wrapper {
    width: 984px;
    margin: 0 auto;
    text-align: left;
}

#header {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 2;
}

#content-wrapper {
    position: relative;
    clear: left;
    background: #FFFBE8;
    color: #9D8A1C;
    height: 420px;
    border-bottom: #7E1416 solid 5px;
    z-index: 1;
}

#content-wrapper-long {
    position: relative;
    clear: left;
    background: #FFFBE8;
    color: #9D8A1C;
    border-bottom: #7E1416 solid 5px;
}

.content-column {
    float: left;
    width: 32%;
}

.content-column.wide {
    width: 64%;
}

#content {
    font-family: Pangu, Georgia, "Times New Roman", Times, serif;
}

#page-reference {
    width: 100%;
    font-family: Pangu, "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
#enter-site {
	width: 15em;
	text-align: center;
	margin: 0 auto;
	}

#enter-site a:hover h2 {
	color:#DED5A5;
}

/*--- Header styles ----- */
#logo {
	float: left;
	position:relative;
	top: 5px;
}

#banner-frame {
	clear: right;
	float: right;
	width: 370px;
	height: 74px;
	border: #B9A767 solid 3px;
	margin: 10px 0;
	padding: 0;
	overflow: hidden;
	text-align: left;
}

#banner-frame #bannerScroll {
	position: relative;
	top: -15px;
}

#banner-frame .banner-details {
	text-align: left;
	padding: 5px;
	height: 80px;
	color: #B4A643;
}

#banner-frame .banner-details h1 {
	margin: 15px 3px 5px 3px;
	font-size: 12px;
	font-weight: 600;
}

#banner-frame a:hover h1 {
	color: #B4A643; 
}
#banner-frame .banner-details p
{
	margin: 0 114px 0 0;
	font-size: 11px;
}
#banner-frame .banner-details a {
	font-size: 11px;
	font-weight: 600;
	color: #9D8A1C;
}
#banner-frame .banner-details a:hover {
	color: #B4A643;
}

/*--- Footer styles ----- */
#page-reference {
    margin-top: 10px;
    font-size: 70%;
    color: #B7A762;
}

#copyright {
    float: right;
    width: 70%;
    text-align: right;
    margin-right: 3px;
}


/*Float clearing hacks*/
.floatcontainer:after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

.floatcontainer {
    display: inline-block;
}

/* Hide from IE Mac \*/
.floatcontainer {
    display: block;
}

/* End hide from IE Mac */
