/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #204e7b;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}

/*************************************************/
/* CHANGE TEXT SIZE BASED ON SCREEN SIZE */
@media (max-width: 790px) {
    html {
        font-size: 100%;
    }
}
@media (max-width: 726px) {
    html {
        font-size: 85%;
    }
}
@media (max-width: 465px) {
    html {
        font-size: 75%;
    }
}

/*************************************************/
/* STYLE ALL P AND HEADING TAGS */
p, h1, h2, h3, h4, h5, h6 {
	padding: 7px;
    margin: 0px;
}
/* P TAGS */
p {
	font-size: 1em;
}
#content p {
	text-align: justify;
}
/* PAGE HEADINGS */
h1 { 
  font-size: 1.5em;
  color: #0558a8;
}
/* SUBTITLES */
h2 {
  font-size: 1.5em;
}
/*  */
h3 { 
  font-size: 1.3em;
}
/*  */
h4 { 
	font-size: 1.2em;
}
/*  */
h5 { 
  font-size: 1em;
}
/* FOOTER COPYRIGHT TEXT */
h6 { 
	font-size: .8em;
  font-weight: normal;
  text-align: center;
  color: #010101;
}

/*************************************************/
/* DEFAULT WEBSITE LINKS */
/* Sets the style for unvisited links. */
a,  a:link, a:visited, a:focus {
  color: #0558a8; text-decoration: underline; font-weight: normal !important;
}
/* Sets the style for links on mouseover. */
a:hover, a:active {
  color: #0558a8; text-decoration: none; font-weight: normal !important;
}

/* FOOTER LINKS */
/* Sets the style for unvisited links. */
a.bottom,  a.bottom:link, a.bottom:visited, a.bottom:focus {
  color: #010101; text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a.bottom:hover, a.bottom:active {
  color: #010101; text-decoration: none;
}

/* Sets the style for unvisited links. */
a.bottom2,  a.bottom2:link, a.bottom2:visited, a.bottom2:focus {
  color: #dddddd; text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a.bottom2:hover, a.bottom2:active {
  color: #dddddd; text-decoration: none;
}

/* FOOTER H6 LINKS */
/* Sets the style for unvisited links. */
h6 a,  h6 a:link, h6 a:visited, h6 a:focus {
  color: #272727; text-decoration: none; display: inline-block;
}
/* Sets the style for links on mouseover. */
h6 a:hover, h6 a:active {
  color: #272727; text-decoration: underline; display: inline-block;
}

/*************************************************/
/* TOP NAVIGATION HIGHLIGH OPEN PAGE */
.current {
  color: #fcb040;
  background-color: transparent !important;
}

/*************************************************/
/* TEXT STYLES */
.body-text-small {
	font-size: .8em;
}
.white {
	color: #ffffff;
}
.lt-gray {
	color: #dddddd;
}
.black {
	color: #000000;
}
.blue {
	color: #0558a8;
}
.separator {
	margin: 0 5px;
}
.red-bold {
	font-size: 1em;
	font-weight: bold;
	color: #CC0033;
}
.bottom-bar-text {
	color: #ffffff;
	font-size: 1em;
	margin: 0px 0px 0px 0px;
	padding: 10px;
	text-align: center;
}
.list {
	text-indent:  -10px;
	padding: 7px 15px 7px 25px;
}
.centered {
	text-align: center;
}
.formtable p {
	padding: 5px;
	font-size: .9em;
	text-transform: uppercase;
}
.formtable input, .formtable textarea, .formtable select {
	border: none;
	resize: none;
}
.form {
	font-size: .8em;
	padding: 4px;
}
.button {
	background-color: #1f1f1f;
	color: #ffffff;
	padding: 5px 25px;
	font-size: 1.1em;
	border: none;
}
.language {
	font-family: Comic Sans MS, Verdana, Arial, Helvetica, sans-serif;
	color: #0558a8;
	font-size: .7em;
	text-transform: uppercase;
}

/*************************************************/
/* ADDITIONAL STYLES */
hr {
	width: 90%; 
	text-align: center; 
	border: 0; 
	color: #dddddd; 
	background-color: #dddddd; 
	height: 1px;
}
#content li
{
	font-size: 1em;
  padding: 2px 7px 2px 7px;
  margin: 0;
}

/*************************************************/

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */

/* DIV SURROUNDING ENTIRE WEBSITE */
#fullPageWrapper {
  margin: 0 auto;
  text-align: left;
  width: 100%;
  background-image: url(../images/bg-body.jpg);
  background-repeat: no-repeat;
  background-position: top center;
   background-color: #204e7b;
}
#fullPage {
  margin: 0 auto;
  text-align: left;
  width: 100%;
  max-width: 1028px;
  position: relative;
}

/*************************************************/
/* SCROLLING TEXT */
#textscrollWrapper {
	padding: 0px 0px 0px 0px;
  margin: 0 auto;
  width: 100%;
  background-color: #194165;
  background-image: url(../images/gradient-bg-inspiration.jpg);
}
#textscroll {
  height: 30px;
  width: 100%;
  max-width: 1008px;
  padding: 10px 10px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0 auto; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	overflow: hidden !important;
}
@media (max-width: 800px) { /* HIDE SCROLLING QUOTES AT 800 WIDE */
    #textscroll, #textscrollWrapper {
		display: none;
	}
}
.inspiration {
	color: #ffcb56;
	font-weight: bold;
	font-size: 1.2em;
}
.scrollingtext {
	color: #ffffff;
	font-size: 1.1em;
	position: relative;
     left: 220px;
	 bottom: 22px;
	 width: 795px !important;
	overflow: hidden !important;
}
.marquee0 {
	width: 795px !important;
	overflow: hidden !important;
}

/*************************************************/
/* HEADER */
#headerWrapper {
  background-color: #272727;
  width: 100%;
  max-width: 1028px;
  padding: 0px 0px 0px 0px;
  margin: 0 auto;
}
#headerSlideshow {
	float: left;
	width: 78%;
}
#headerBrochure {
	float: left;
	width: 22%;
}
@media (max-width: 1028px) { /*  */
    #headerWrapper {
		overflow: hidden;
	}
}


/*************************************************/
/* TOP NAVIGATION */
#topNavigationWrapper {
	background-color: #204c7b;
	font-family: Comic Sans MS, Verdana, Arial, Helvetica, sans-serif;
  width: 100%;
  max-width: 1028px;
  padding: 0;
  margin: 0 auto;
}
#topNavigation {
  max-width: 1028px;
  padding: 0;
  margin: 0 auto;
  position: relative;
  min-height: 37px;
}
#topNavigation #parent-button {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 86px;
	height: 55px;
	z-index: 99999;
}
#mobile-parent-login-button {
	display: none;
	text-align: right;
}
@media only screen and ( max-width: 945px )
{
	#topNavigation #parent-button {
		display: none;
	}
	#mobile-parent-login-button {
		display: block;
	}
}

/* SEE NAV.CSS FOR ADDITIONAL TOP NAVIGATION CSS */

/*************************************************/
/* DIV TAG WRAPPING AROUND SIDEBAR, CONTENT, AND BOTTOM BOXES */
#contentWrapper {
  overflow: hidden;
  width: 100%;
}

/*************************************************/
/* CONTENT DEFAULT */
#contentWrapper #content {
  background-color: #ffffff;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
  overflow: hidden;
}
@media (max-width: 900px) { /* IMAGES CAN'T ALIGN TO THE LEFT/RIGHT WHEN SMALL ENOUGH */
    #content img {
		float: none !important;
		padding: 0 !important;
		margin: 0 !important;
	}
}
/* CONTENT SUB AREAS */
#contentWrapper #content .content-full {
  padding: 2%;
  margin: 0;
  width: 96%;
}
#contentWrapper #content .content-half {
  padding: 2%;
  margin: 0;
  width: 46%;
  min-width: 200px;
  float: left;
}
#contentWrapper #content #contactpage .content-half {
  min-width: 300px;
}
@media (max-width: 475px) { /* MAKE CONTENT HALF TAKE UP FULL PAGE. */
    #contentWrapper #content .content-half {
		float: none;
		width: 96%;
	}
}
#contentWrapper #content .content-40-percent {
  background-color: #ffffff;
  padding: 2%;
  margin: 0;
  width: 36%;
  min-width: 322px;
  float: left;
}
#contentWrapper #content .content-60-percent {
  padding: 2%;
  margin: 0;
  width: 56%;
  min-width: 400px;
  float: left;
}
#contentWrapper #content .content-30-percent {
  padding: 2%;
  margin: 0;
  width: 26%;
  min-width: 200px;
  float: left;
}
#contentWrapper #content .content-70-percent {
  padding: 2%;
  margin: 0;
  width: 66%;
  min-width: 300px;
  float: left;
}
#contentWrapper #content .content-no-percentage {
  padding: 5px;
  margin: 0;
  min-width: 200px;
  float: left;
}

/*************************************************/
/* CONTENT WITH SIDEBAR */
#contentWrapper #content .content-full-with-sidebar {
  padding: 2%;
  margin: 0;
  width: 62%;
  float: left;
}
@media (max-width: 900px) { /* CONTENT AREA GETS SMALLER AT 900 WIDE */
    #contentWrapper #content .content-full-with-sidebar {
		width: 53%;
	}
}
@media (max-width: 680px) { /* SIDEBAR DISAPPEARS AT 680 WIDE */
    #contentWrapper #content .content-full-with-sidebar {
		padding: 2%;
		margin: 0;
		width: 96%;
	}
}

/*************************************************/
/* SIDEBAR */
#contentWrapper #content .content-sidebar {
  padding: 1%;
  margin: 1% 2% 1% 1%;
  width: 25%;
  min-width: 250px;
  float: left;
  background-color: #ffffff;
}
.content-sidebar-bottom {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1028px;
  background-color: #ffffff;
  display: none;
  overflow: hidden;
  text-align: center; 
}
.content-sidebar-part-1, .content-sidebar-part-2 {
  padding: 0;
  margin: 0;
  width: 250px;
  max-width: 250px;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 680px) { /* SIDEBAR DISAPPEARS AT 680 WIDE */
    #contentWrapper #content .content-sidebar {
		display: none;
	}
	.content-sidebar-bottom {
		display: block;
	}
}
#mobile-language {
	display: none;
	text-align: right;
}
@media (max-width: 680px) { /* MOBILE LANGUAGE LINKS APPEAR AT 680 WIDE */
    #mobile-language {
		display: block;
	}
}


/*************************************************/
/* CONTACT FORM TABLE */
.contact-form {
	min-width: 360px !important;
}

/*************************************************/
/* FULL PAGE WIDTH MAP */
#contentWrapper #mapWrapper {
	background-color: #eeeeee;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media (max-width: 600px) {
    #contentWrapper #mapWrapper iframe {
		height: 200px !important;
	}
}

/*************************************************/
/* BOTTOM BOXES */
#bottomBoxesWrapper {
	background-color: #ffffff;
	overflow: hidden;
  width: 100%;
  max-width: 990px;
  padding: 5px;
  margin: 0 auto;
  text-align: center;
}
.bottomBox {
	background-color: #dadada;
	max-width: 236px;
	width: 22.75%;
	min-height: 375px;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	margin: .5%;
	padding: 0px;
	text-align: center;
	position: relative;
}
@media (max-width: 800px) {
    .bottomBox {
		width: 45%;
		max-width: 350px;
		min-height: 350px;
	}
}
@media (max-width: 450px) {
    .bottomBox {
		min-height: 300px;
	}
}
.redBox {
	width: 100%;
	background-color: #9c1926;
}
.yellowBox {
	width: 100%;
	background-color: #fcb042;
}
.greenBox {
	width: 100%;
	background-color: #5e8149;
}
.blueBox {
	width: 100%;
	background-color: #2753a6;
}
#readMore---Old {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 235px;
	height: 34px;
	z-index: 99;
}
#readMore {
	bottom: 0;
	position: absolute;
}
.boxText {
	font-size: .8em;
	text-align: left;
}

/*************************************************/
/* BOTTOM E-NEWSLETTER SIGN UP AND SEARCH */
#graybottombarWrapper {
  padding: 0px 0px 0px 0px;
  margin: 0px auto;
  width: 100%;
  max-width: 1000px;
  background-color: #ffffff;
  overflow: hidden;
}
#graybottombar {
  background-image: url(../images/footer-gray-box.gif);
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #ffffff;
  padding: 4px 2% 20px 2%; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px auto; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  max-width: 956px;
  width: 96%;
  height: 39px;
  line-height: 30px;
  color: #5f5f5f;
}
#graybottombar .text {
	vertical-align: top;
}
#graybottombar form, #graybottombar input {
	margin: 0px;
	padding: 0px;
    vertical-align: top;
}
#graybottombar input {
	border: none;
	padding: 4px;
	color: #5f5f5f;
}
#graybottombar .column {
	padding: 3px 20px;
	float: left;
}
#graybottombar .column-right {
	padding: 3px 20px;
	float: right;
}
@media (max-width: 750px) {
    #graybottombar {
		background-image: none;
		background-color: #f0f0f0;
		height: auto;
		padding-bottom: 4px;
		text-align: center;
	}
	#graybottombarWrapper {
		background-color: #f0f0f0;
	}
	#graybottombar .column, #graybottombar .column-right {
		padding: 3px 20px;
		float: none;
		display: inline-block;
		text-align: center;
	}
}

/*************************************************/
/* FOOTER */

#footerWrapper {
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  width: 100%;
}
#footerWrapper #footer {
  padding: 0px 0px 0px 0px;
  margin: 0 auto;
  max-width: 996px;
  width: 100%;
  background-color: #feeed2;
  border-bottom: solid 2px #ffffff;
  border-left: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
}
@media (max-width: 1000px) {
    #footerWrapper #footer {
		border: none;
	}
}