@charset "UTF-8";

/* Text Styles */
.doubleSpace {
	line-height:150%
}

.smallTitle {
	font-size:9pt;
	color:#ffb400;
}

.smallText {
	color:#555555;
	font-size:12px;
	line-height:150%
}

.mediumText {
	color:#555555;
	font-size:14px;
	line-height:150%
}

.headingText {
	font-family: Rockwell_Std, sans-serif;
	font-size:80px;
    color:#ffb400;
	padding:0px;
	margin:0px;
}

.semiHeadingText {
	font-family: Rockwell_Std_Light, sans-serif;
	font-size:24px;
	color:#444444;
}

.header3{
	font-size:16px;
	font-family:Avenir_LT_Std_Heavy, sans-serif;
	color:#555555;
	margin:0;
	padding:0;
}

.header4{
	font-size:14px;
	font-family:Avenir_LT_Std_Heavy, sans-serif;
	color:#ffb400;
	margin:0;
	padding:0;
}

.header5{
	font-size:14px;
	font-family:Avenir_LT_Std_Heavy, sans-serif;
	color:#555555;
	margin:0;
	padding:0;
}

.header6{
	font-family: Rockwell_Std, sans-serif;
	color:#ffb400;
	font-size:16px;
}

.header7{
	font-family: Avenir_LT_Std_Light, sans-serif;
	color:#ffb400;
	font-size:16px;
}

.header8{
	font-size:16pt;
	font-family:Avenir_LT_Std_Heavy, sans-serif;
	margin:0;
	padding:0;	
}

.headingTextBlack {
	font-family: Rockwell_Std, sans-serif;
	font-size:40px;
	color:#373737;
	padding:0px;
	margin:0px;
}

.yellowLink {
	color:#ffb400;
	text-decoration:none;
}

.yellowLink:hover {
	color:#ffb400;
	text-decoration:underline;
}
/* end Text Styles */





/* fonts */
@font-face {
	font-family: Avenir_LT_Std_Roman;
	src: url('../fonts/avenirltstd-roman-webfont.eot');
    src: url('../fonts/avenirltstd-roman-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/avenirltstd-roman-webfont.woff') format('woff'),
         url('../fonts/avenirltstd-roman-webfont.ttf') format('truetype'),
         url('../fonts/avenirltstd-roman-webfont.svg#Avenir_LT_Std_Roman') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
	font-family: Avenir_LT_Std_Light;
	src: url('../fonts/avenirltstd-light-webfont.eot');
    src: url('../fonts/avenirltstd-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/avenirltstd-light-webfont.woff') format('woff'),
         url('../fonts/avenirltstd-light-webfont.ttf') format('truetype'),
         url('../fonts/avenirltstd-light-webfont.svg#Avenir_LT_Std_Light') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
	font-family: Avenir_LT_Std_Heavy;
	src: url('../fonts/avenirltstd-heavy-webfont.eot');
    src: url('../fonts/avenirltstd-heavy-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/avenirltstd-heavy-webfont.woff') format('woff'),
         url('../fonts/avenirltstd-heavy-webfont.ttf') format('truetype'),
         url('../fonts/avenirltstd-heavy-webfont.svg#Avenir_LT_Std_Heavy') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Rockwell_Std';
    src: url('../fonts/rockwellstd-webfont.eot');
    src: url('../fonts/rockwellstd-webfont.eot?#iefix') format('embedded-opentype'),
	url('../fonts/rockwellstd-webfont.woff') format('woff'),
	url('../fonts/rockwellstd-webfont.ttf') format('truetype'),
	url('../fonts/rockwellstd-webfont.svg#Rockwell_Std') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'Rockwell_Std_Light';
    src: url('../fonts/rockwellstd-light-webfont.eot');
    src: url('../fonts/rockwellstd-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/rockwellstd-light-webfont.woff') format('woff'),
         url('../fonts/rockwellstd-light-webfont.ttf') format('truetype'),
         url('../fonts/rockwellstd-light-webfont.svg#Rockwell_Std_Light') format('svg');
    font-weight: normal;
    font-style: normal;

}



body {
	background: #42413C;
	margin: 0;
	padding: 0;
	color: #000;
	background-image:url(../images/background_tile.jpg);
	background-repeat:repeat;
	height:100%;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}

ul li {
	font-family: Avenir_LT_Std_Light, sans-serif;
	list-style: none;
}


a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:visited {
	
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
#container {
	max-width:1280px;
	min-width:940px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */ 
	overflow:hidden;
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	background-image:url(../images/banner_tile.png);
	background-repeat:repeat-x;
	height:59px;
}

#headerSection{
	width:940px;
	height:59px;
	margin-left:auto;
	margin-right:auto;
}

#banner{
	position:absolute; 
	top:0px; 
	display:block; 
	margin:0px 0px 0px -12px; 
	z-index:20;
}

p {
	font-family: Avenir_LT_Std_Light, sans-serif;
	font-size:16px;
	color:#555555;
}

h1 {
	font-family: Rockwell_Std, sans-serif;
	font-size:72pt;
	color:#ffb400;
	padding:0px;
	margin:0px;
}

h2 {
	font-family: Rockwell_Std_Light, sans-serif;
}



.content {
	display:block;
	width:auto;
	height:100%;
	background-image:url(../images/background_content_tile.jpg);
	background-repeat:repeat;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol, .contentNoTexture ul, .contentNoTexture ol {
	padding: 0; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

.contentNoTexture {
	display:block;
	width:auto;
	height:100%;
}

nav{
	height:59px;
	padding-right:0px;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
nav ul {
	list-style: none; /* this removes the list marker */
	margin-left:0px;
	margin-right:auto;
	padding-top:8px;
	
}
nav ul li {
	text-decoration: none;
	float:right;
}

nav ul li a, nav ul li a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	font-family: Avenir_LT_Std_Light, sans-serif;
	color: #555555;
	font-size:18px;
	padding: 20px 0px 8px 40px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	
	text-decoration: none;
}
nav ul li a:hover, nav ul li a:active, nav ul a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #FFFFFF;
}

#selectedNav
{
	color: #FFFFFF;
}

/* ~~ SubNavigation ~~ */
#subNav
{
	position:relative;
	display:block;
	height:52px;
	width:100%;
	background-color:#555555;
	background-image:url(../images/background_footer_tile.jpg);
	background-repeat:repeat;
	z-index:5;
}

#subNavCircle
{
	position:absolute;
	margin-top:44px;
}

#subNavContainer
{
	display:block;
	height: 52px;
	width:375px;
	margin-left:auto;
	margin-right:auto;
}

#subNav ul {
	list-style: none; /* this removes the list marker */
	
}
#subNav ul li {
	text-decoration: none;
	float:right;
	text-shadow:0px 1px 1px #000000;
}

#subNav ul li a, #subNav ul li a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	font-family: Rockwell_Std_Light, sans-serif;
	color: #AAAAAA;
	font-size:18px;
	padding: 16px 20px 20px 20px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	
	text-decoration: none;
}
#subNav ul li a:hover, #subNav ul li a:active, #subNav ul a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #ffb400;
}


/* ~~ The footer ~~ */
footer{
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	
	background-image:url(../images/background_footer_tile.jpg);
	background-repeat:repeat;
	height:280px;
	border-top:solid;
	border-top-color:#ffb400;
	border-top-width:3px;
}

footer p{
	text-align:center;
}

#footerCopyright {
	color:#7E7E7E;
	font-family:Avenir_LT_Std_Roman, sans-serif;
	font-size:12px;
}

/* column container */
.colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug */
	width:680px;			/* width of whole page */
	margin-left:auto;
	margin-right:auto;
}
/* common column settings */
.colright,
.colmid,
.colleft {
	float:left;
	width:100%;			/* width of page */
	position:relative;
}
.col1,
.col2,
.col3 {
	float:left;
	position:relative;
	padding:31px 0 80px 0;	/* no left and right padding on columns, we just make them narrower instead 
					only padding top and bottom is included here, make it whatever value you need */
	
}

/*

#footerLeft{
	width:200px;
	display:block;
	float:left;
}

#footerMiddle{
	width:200px;
	display:block;
	float:right;
}

#footerRight{
	width:200px;
	display:block;
	float:right;
}
*/

.footerHeading {
	font-family: Rockwell_Std_Light, sans-serif;
	color:#ffb400;
	padding-bottom:7px;
}

/* footer end */

/* home page */

#columns {
	width:940px;
	height:240px;
	display:block;
	margin-left:auto;
	margin-right:auto;
}

#columns .column {
	position: relative;
}

#columns .left {
	width:470px;
	float: left;
	display: block;
	padding-top:60px;
}

#columns .right {
	width:470px;
	float:left;
	display: block;
	line-height:150%;
	padding-top:39px;
	font-size:12pt;
    
}

#columns a{
	color:#ffb400;
	font-family: Avenir_LT_Std_Light, sans-serif;
	font-size:16px;
	text-decoration:none;
}

#columns a:hover{
	text-decoration:underline;
}

/* 3 Column settings */
.threecol {
	
	
}
.threecol .colmid {
	right:14%;			/* width of the right column */
	
}
.threecol .colleft {
	right:43%;			/* width of the middle column */
	
}
.threecol .col1 {
	width:43%;			/* width of center column content (column width minus padding on either side) */
	left:100%;			/* 100% plus left padding of center column */
}
.threecol .col2 {
	width:43%;			/* Width of left column content (column width minus padding on either side) */
	left:14%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
}
.threecol .col3 {
	width:14%;			/* Width of right column content (column width minus padding on either side) */
	left:57%;			/* Please make note of the brackets here:
					(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
}

.threecol ul
{
	font-family: Rockwell_Std_Light, sans-serif;
	color:#ffb400;
	font-size:14px;
	list-style: none;
}

.threecol ul a, nav ul a:visited{
	text-align:center;
	text-decoration: none;
	font-family: Avenir_LT_Std_Light, sans-serif;
	color: #CCCCCC;
	font-size:12px;
}

.threecol ul a:hover, nav ul a:active, nav ul a:focus{
}



/* FOOTER END */
#shadowLeft{
	background-image:url(../images/side_shadow_left.png);
	background-repeat:repeat-y;
	width:28px;
	position:absolute;
	height:100%;
	top:0px;
	margin-left:-28px;
}

#shadowRight{
	background-image:url(../images/side_shadow_right.png);
	background-repeat:repeat-y;
	width:28px;
	position:absolute;
	top:0px;
	height:100%;
	margin-left:1280px;
}

#backgroundImage{
	width:1280px;
	height:100%;
	position: absolute;
	background-image:url(../images/background_footer_tile.jpg);
	background-repeat:repeat;
	z-index:-1;
}


/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
}


