@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333333;
}

/* Tips for this Hybrid layout
1. Since the side columns em-based sizing is based on the user's default font size, you will want to be sure that background graphics in the columns take that into account. Built correctly, this is more accessible for those that need larger font sizes, since the width of the columns remains proportionate. If this is undesirable with your design, simply change the width to a pixel size and be sure to change the margins on the #mainContent div accordingly.
2. Since the sizing of side columns in this layout are based on the 100% font size in the body element, if you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the column widths will downsize proportionately. You may want to increase their widths, and the size of the #mainContent div's side margins, to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
4. The #container div is not necessary for this layout at the 100% width. You may want to use it to create faux columns or limit the width of the layout.
5. It is not neccessary to have the 100% width on the #container div since, by nature, a div takes up 100% of the available space. It is here so that if you want to decrease the size of the overall container - perhaps leaving a bit of margin on each side - this will already be available for adjustment.
*/
.thrColHybHdr #container {
	/*margin: 0 auto;  the auto margins (in conjunction with a width) center the page if needed */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../layout/images/ContainerBGSlice_02.jpg);
	background-repeat: repeat-y;
	background-position: left top;
	margin: 0px;
	min-width: 955px;
}  
.thrColHybHdr #header {
	background-image: url(../layout/mastheadBG7.jpg);
	background-repeat: no-repeat;
	height: 130px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	width: 100%;
} 
.thrColHybHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColHybHdr #sidebar1 p" rule.
*/
.thrColHybHdr #sidebar1 {
	width: 220px; /* since this element is floated, a width must be given */
	background: #26418E;
	padding-bottom: 20px;
	padding-top: 20px;
	float: left;
}

.thrColHybHdr #container #sidebar1 a {
	font-size: 70%;
	color: #FFFFFF;
	display: block;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
	text-align: right;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
}

.thrColHybHdr #container #sidebar1 a:hover {
	font-size: 70%;
	color: #FFFFFF;
	display: block;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
	text-align: right;
	text-decoration: none;
	background-color: #68A4EA;
}

.thrColHybHdr #sidebar1 h3, .thrColHybHdr #sidebar1 p, .thrColHybHdr #sidebar2 p, .thrColHybHdr #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
[if IE]>
<style type="text/css"> 
#mainContent, #sidebar1 { zoom: 1;}
</style>
<![endif]
*/

/*Start MainContent Styles*/
.thrColHybHdr #mainContent {
	margin-left: 240px;
	background-image: url(../layout/images/photostrip3.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	margin-right: 20px;
	padding-right: 25%;
	padding-bottom: 60px;
	min-height: 400px;
	background-color: #FFFFFF;
	padding-top: 10px;
} 
.thrColHybHdr #container #mainContent h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #FFFFFF;
	padding-top: 12px;
	font-weight: normal;
	text-transform: uppercase;
	background-color: #26418E;
	padding-bottom: 12px;
	padding-left: 12px;
	width: 99%;
}
.thrColHybHdr #container #mainContent h2 {
	font-size: 110%;
	color: #000000;
}
.thrColHybHdr #container #mainContent p {
	font-size: 70%;
}
.thrColHybHdr #container #mainContent li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	padding-bottom: 1px;
	color: #26418E;
}
.MainContentPUnderline {
	text-decoration: underline;
}
.thrColHybHdr #container #mainContent #ContForm #ContactForm .errorMessage {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #FF0000;
}

.thrColHybHdr #container #mainContent #ContForm #ContactForm table {
	font-size: 70%;
	color: #26418E;
	background-color: #F0F0F0;
	background-image: url(../layout/images/PageCurl_03.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
.thrColHybHdr #container #mainContent ul {
}
/*End MainContent Styles*/
/*Start MainContent1 Styles*/
.thrColHybHdr #mainContent1 {
	margin-left: 240px;
	margin-right: 20px;
	padding-bottom: 60px;
	min-height: 400px;
	background-color: #FFFFFF;
	padding-top: 10px;
} 
.thrColHybHdr #container #mainContent1 h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #FFFFFF;
	padding-top: 12px;
	font-weight: normal;
	text-transform: uppercase;
	background-color: #26418E;
	padding-bottom: 12px;
	padding-left: 12px;
	width: 99%;
}
.thrColHybHdr #container #mainContent1 h2 {
	font-size: 110%;
	color: #000000;
}
.thrColHybHdr #container #mainContent1 p {
	font-size: 70%;
}
.thrColHybHdr #container #mainContent1 li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	padding-bottom: 1px;
	color: #26418E;
}
.MainContentPUnderline {
	text-decoration: underline;
}
.thrColHybHdr #container #mainContent1 #ContForm #ContactForm .errorMessage {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #FF0000;
}

.thrColHybHdr #container #mainContent1 #ContForm #ContactForm table {
	font-size: 70%;
	color: #26418E;
	background-color: #F0F0F0;
	background-image: url(../layout/images/PageCurl_03.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
.thrColHybHdr #container #mainContent1 ul {
}
/*End MainContent1 Styles*/
/*Start Main Content2 Styles*/
.thrColHybHdr #mainContent2 {
	margin-left: 240px;
	background-image: url(../layout/images/photostrip4.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	margin-right: 20px;
	padding-right: 25%;
	padding-bottom: 60px;
	min-height: 400px;
	background-color: #FFFFFF;
	padding-top: 10px;
} 
.thrColHybHdr #container #mainContent2 h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #FFFFFF;
	padding-top: 12px;
	font-weight: normal;
	text-transform: uppercase;
	background-color: #26418E;
	padding-bottom: 12px;
	padding-left: 12px;
	width: 99%;
}
.thrColHybHdr #container #mainContent2 h2 {
	font-size: 110%;
	color: #000000;
}
.thrColHybHdr #container #mainContent2 p {
	font-size: 70%;
}
.thrColHybHdr #container #mainContent2 li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	padding-bottom: 1px;
	color: #26418E;
}
.MainContentPUnderline {
	text-decoration: underline;
}
.thrColHybHdr #container #mainContent2 #ContForm #ContactForm .errorMessage {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #FF0000;
}

.thrColHybHdr #container #mainContent2 #ContForm #ContactForm table {
	font-size: 70%;
	color: #26418E;
	background-color: #F0F0F0;
	background-image: url(../layout/images/PageCurl_03.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
.thrColHybHdr #container #mainContent2 ul {
}
/*End MainContent2 Styles*/
/*Start MainContent3 Styles*/

.thrColHybHdr #mainContent3 {
	margin-left: 240px;
	background-image: url(../layout/images/photostrip5.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	margin-right: 20px;
	padding-right: 25%;
	padding-bottom: 60px;
	min-height: 400px;
	background-color: #FFFFFF;
	padding-top: 10px;
} 
.thrColHybHdr #container #mainContent3 h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #FFFFFF;
	padding-top: 12px;
	font-weight: normal;
	text-transform: uppercase;
	background-color: #26418E;
	padding-bottom: 12px;
	padding-left: 12px;
	width: 99%;
}
.thrColHybHdr #container #mainContent3 h2 {
	font-size: 110%;
	color: #000000;
}
.thrColHybHdr #container #mainContent3 p {
	font-size: 70%;
}
.thrColHybHdr #container #mainContent3 li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	padding-bottom: 1px;
	color: #26418E;
}
.MainContentPUnderline {
	text-decoration: underline;
}
.thrColHybHdr #container #mainContent3 #ContForm #ContactForm .errorMessage {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #FF0000;
}

.thrColHybHdr #container #mainContent3 #ContForm #ContactForm table {
	font-size: 70%;
	color: #26418E;
	background-color: #F0F0F0;
	background-image: url(../layout/images/PageCurl_03.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
.thrColHybHdr #container #mainContent3 ul {
}
/*End MainContent3*/
/*Start MainContent4 Styles*/

.thrColHybHdr #mainContent4 {
	margin-left: 240px;
	background-image: url(../layout/images/photostrip6.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	margin-right: 20px;
	padding-right: 25%;
	padding-bottom: 60px;
	min-height: 400px;
	background-color: #FFFFFF;
	padding-top: 10px;
} 
.thrColHybHdr #container #mainContent4 h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #FFFFFF;
	padding-top: 12px;
	font-weight: normal;
	text-transform: uppercase;
	background-color: #26418E;
	padding-bottom: 12px;
	padding-left: 12px;
	width: 99%;
}
.thrColHybHdr #container #mainContent4 h2 {
	font-size: 110%;
	color: #000000;
}
.thrColHybHdr #container #mainContent4 p {
	font-size: 70%;
}
.thrColHybHdr #container #mainContent4 li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	padding-bottom: 1px;
	color: #26418E;
}
.MainContentPUnderline {
	text-decoration: underline;
}
.thrColHybHdr #container #mainContent4 #ContForm #ContactForm .errorMessage {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #FF0000;
}

.thrColHybHdr #container #mainContent4 #ContForm #ContactForm table {
	font-size: 70%;
	color: #26418E;
	background-color: #F0F0F0;
	background-image: url(../layout/images/PageCurl_03.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
.thrColHybHdr #container #mainContent4 ul {
}
/*End MainContent4*/
/*Start MainContent5 Styles*/
.thrColHybHdr #mainContent5 {
	margin-left: 240px;
	background-image: url(../layout/images/photostrip9.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	margin-right: 20px;
	padding-right: 25%;
	padding-bottom: 60px;
	min-height: 400px;
	background-color: #FFFFFF;
	padding-top: 10px;
} 
.thrColHybHdr #container #mainContent5 h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #FFFFFF;
	padding-top: 12px;
	font-weight: normal;
	text-transform: uppercase;
	background-color: #26418E;
	padding-bottom: 12px;
	padding-left: 12px;
	width: 99%;
}
.thrColHybHdr #container #mainContent5 h2 {
	font-size: 110%;
	color: #000000;
}
.thrColHybHdr #container #mainContent5 p {
	font-size: 70%;
}
.thrColHybHdr #container #mainContent5 li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	padding-bottom: 1px;
	color: #26418E;
}
.MainContentPUnderline {
	text-decoration: underline;
}
.thrColHybHdr #container #mainContent5 #ContForm #ContactForm .errorMessage {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #FF0000;
}

.thrColHybHdr #container #mainContent5 #ContForm #ContactForm table {
	font-size: 70%;
	color: #26418E;
	background-color: #F0F0F0;
	background-image: url(../layout/images/PageCurl_03.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
.thrColHybHdr #container #mainContent5 ul {
}
/*End MainContent5 Styles*/

/*Start MainContent5 Styles*/
.thrColHybHdr #mainContent5 {
	margin-left: 240px;
	background-image: url(../layout/images/photostrip9.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	margin-right: 20px;
	padding-right: 25%;
	padding-bottom: 60px;
	min-height: 400px;
	background-color: #FFFFFF;
	padding-top: 10px;
} 
.thrColHybHdr #container #mainContent5 h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #FFFFFF;
	padding-top: 12px;
	font-weight: normal;
	text-transform: uppercase;
	background-color: #26418E;
	padding-bottom: 12px;
	padding-left: 12px;
	width: 99%;
}
.thrColHybHdr #container #mainContent5 h2 {
	font-size: 110%;
	color: #000000;
}
.thrColHybHdr #container #mainContent5 p {
	font-size: 70%;
}
.thrColHybHdr #container #mainContent5 li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	padding-bottom: 1px;
	color: #26418E;
}
.MainContentPUnderline {
	text-decoration: underline;
}
.thrColHybHdr #container #mainContent5 #ContForm #ContactForm .errorMessage {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #FF0000;
}

.thrColHybHdr #container #mainContent5 #ContForm #ContactForm table {
	font-size: 70%;
	color: #26418E;
	background-color: #F0F0F0;
	background-image: url(../layout/images/PageCurl_03.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
.thrColHybHdr #container #mainContent5 ul {
}
/*End MainContent5 Styles*/
/*Start MainContent6 Styles*/
.thrColHybHdr #mainContent6 {
	margin-left: 240px;
	background-image: url(../layout/images/photostrip11.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	margin-right: 20px;
	padding-right: 25%;
	padding-bottom: 60px;
	min-height: 400px;
	background-color: #FFFFFF;
	padding-top: 10px;
} 
.thrColHybHdr #container #mainContent6 h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #FFFFFF;
	padding-top: 12px;
	font-weight: normal;
	text-transform: uppercase;
	background-color: #26418E;
	padding-bottom: 12px;
	padding-left: 12px;
	width: 99%;
}
.thrColHybHdr #container #mainContent6 h2 {
	font-size: 110%;
	color: #000000;
}
.thrColHybHdr #container #mainContent6 p {
	font-size: 70%;
}
.thrColHybHdr #container #mainContent6 li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	padding-bottom: 1px;
	color: #26418E;
}
.MainContentPUnderline {
	text-decoration: underline;
}
.thrColHybHdr #container #mainContent6 #ContForm #ContactForm .errorMessage {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #FF0000;
}

.thrColHybHdr #container #mainContent6 #ContForm #ContactForm table {
	font-size: 70%;
	color: #26418E;
	background-color: #F0F0F0;
	background-image: url(../layout/images/PageCurl_03.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
.thrColHybHdr #container #mainContent6 ul {
}
/*End MainContent6 Styles*/
/*Start MainContent7 Styles*/
.thrColHybHdr #mainContent7 {
	margin-left: 240px;
	background-image: url(../layout/images/photostrip12.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	margin-right: 20px;
	padding-right: 25%;
	padding-bottom: 60px;
	min-height: 400px;
	background-color: #FFFFFF;
	padding-top: 10px;
} 
.thrColHybHdr #container #mainContent7 h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #FFFFFF;
	padding-top: 12px;
	font-weight: normal;
	text-transform: uppercase;
	background-color: #26418E;
	padding-bottom: 12px;
	padding-left: 12px;
	width: 99%;
}
.thrColHybHdr #container #mainContent7 h2 {
	font-size: 110%;
	color: #000000;
}
.thrColHybHdr #container #mainContent7 p {
	font-size: 70%;
}
.thrColHybHdr #container #mainContent7 li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	padding-bottom: 1px;
	color: #26418E;
}
.MainContentPUnderline {
	text-decoration: underline;
}
.thrColHybHdr #container #mainContent7 #ContForm #ContactForm .errorMessage {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #FF0000;
}

.thrColHybHdr #container #mainContent7 #ContForm #ContactForm table {
	font-size: 70%;
	color: #26418E;
	background-color: #F0F0F0;
	background-image: url(../layout/images/PageCurl_03.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
.thrColHybHdr #container #mainContent7 ul {
}
/*End MainContent7 Styles*/
/*Start MainContent8 Styles*/
.thrColHybHdr #mainContent8 {
	margin-left: 240px;
	background-image: url(../layout/images/photostrip13.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	margin-right: 20px;
	padding-right: 25%;
	padding-bottom: 60px;
	min-height: 400px;
	background-color: #FFFFFF;
	padding-top: 10px;
} 
.thrColHybHdr #container #mainContent8 h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #FFFFFF;
	padding-top: 12px;
	font-weight: normal;
	text-transform: uppercase;
	background-color: #26418E;
	padding-bottom: 12px;
	padding-left: 12px;
	width: 99%;
}
.thrColHybHdr #container #mainContent8 h2 {
	font-size: 110%;
	color: #000000;
}
.thrColHybHdr #container #mainContent8 p {
	font-size: 70%;
}
.thrColHybHdr #container #mainContent8 li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	padding-bottom: 1px;
	color: #26418E;
}
.MainContentPUnderline {
	text-decoration: underline;
}
.thrColHybHdr #container #mainContent8 #ContForm #ContactForm .errorMessage {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #FF0000;
}

.thrColHybHdr #container #mainContent8 #ContForm #ContactForm table {
	font-size: 70%;
	color: #26418E;
	background-color: #F0F0F0;
	background-image: url(../layout/images/PageCurl_03.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
.thrColHybHdr #container #mainContent8 ul {
}
/*End MainContent8 Styles*/
/*Start MainContent9 Styles*/
.thrColHybHdr #mainContent9 {
	margin-left: 240px;
	background-image: url(../layout/images/photostrip14.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	margin-right: 20px;
	padding-right: 25%;
	padding-bottom: 60px;
	min-height: 400px;
	background-color: #FFFFFF;
	padding-top: 10px;
} 
.thrColHybHdr #container #mainContent9 h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #FFFFFF;
	padding-top: 12px;
	font-weight: normal;
	text-transform: uppercase;
	background-color: #26418E;
	padding-bottom: 12px;
	padding-left: 12px;
	width: 99%;
}
.thrColHybHdr #container #mainContent9 h2 {
	font-size: 110%;
	color: #000000;
}
.thrColHybHdr #container #mainContent9 p {
	font-size: 70%;
}
.thrColHybHdr #container #mainContent9 li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	padding-bottom: 1px;
	color: #26418E;
}
.MainContentPUnderline {
	text-decoration: underline;
}
.thrColHybHdr #container #mainContent9 #ContForm #ContactForm .errorMessage {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #FF0000;
}

.thrColHybHdr #container #mainContent9 #ContForm #ContactForm table {
	font-size: 70%;
	color: #26418E;
	background-color: #F0F0F0;
	background-image: url(../layout/images/PageCurl_03.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
.thrColHybHdr #container #mainContent9 ul {
}
/*End MainContent9 Styles*/

/*Start MainContent10 Styles*/
.thrColHybHdr #mainContent10 {
	margin-left: 240px;
	background-image: url(../layout/images/photostrip15.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	margin-right: 20px;
	padding-right: 25%;
	padding-bottom: 60px;
	min-height: 400px;
	background-color: #FFFFFF;
	padding-top: 10px;
} 
.thrColHybHdr #container #mainContent10 h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #FFFFFF;
	padding-top: 12px;
	font-weight: normal;
	text-transform: uppercase;
	background-color: #26418E;
	padding-bottom: 12px;
	padding-left: 12px;
	width: 99%;
}
.thrColHybHdr #container #mainContent10 h2 {
	font-size: 110%;
	color: #000000;
}
.thrColHybHdr #container #mainContent10 p {
	font-size: 70%;
}
.thrColHybHdr #container #mainContent10 li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	padding-bottom: 1px;
	color: #26418E;
}
.MainContentPUnderline {
	text-decoration: underline;
}
.thrColHybHdr #container #mainContent10 #ContForm #ContactForm .errorMessage {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #FF0000;
}

.thrColHybHdr #container #mainContent10 #ContForm #ContactForm table {
	font-size: 70%;
	color: #26418E;
	background-color: #F0F0F0;
	background-image: url(../layout/images/PageCurl_03.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
.thrColHybHdr #container #mainContent10 ul {
}
/*End MainContent10 Styles*/

/*Start MainContent11 Styles*/
.thrColHybHdr #mainContent11 {
	margin-left: 240px;
	background-image: url(../layout/images/photostrip10.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	margin-right: 20px;
	padding-right: 25%;
	padding-bottom: 60px;
	min-height: 400px;
	background-color: #FFFFFF;
	padding-top: 10px;
} 
.thrColHybHdr #container #mainContent11 h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #FFFFFF;
	padding-top: 12px;
	font-weight: normal;
	text-transform: uppercase;
	background-color: #26418E;
	padding-bottom: 12px;
	padding-left: 12px;
	width: 99%;
}
.thrColHybHdr #container #mainContent11 h2 {
	font-size: 110%;
	color: #000000;
}
.thrColHybHdr #container #mainContent11 p {
	font-size: 70%;
}
.thrColHybHdr #container #mainContent11 li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	padding-bottom: 1px;
	color: #26418E;
}
.MainContentPUnderline {
	text-decoration: underline;
}
.thrColHybHdr #container #mainContent11 #ContForm #ContactForm .errorMessage {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #FF0000;
}

.thrColHybHdr #container #mainContent10 #ContForm #ContactForm table {
	font-size: 70%;
	color: #26418E;
	background-color: #F0F0F0;
	background-image: url(../layout/images/PageCurl_03.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
.thrColHybHdr #container #mainContent11 ul {
}
/*End MainContent11 Styles*/

.thrColHybHdr #footer {
	background:#999999;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	color: #DDDDDD;
	border-top-width: 1px;
	border-top-style: solid;
	height: 185px;
} 
.thrColHybHdr #container #footer p {
	font-size: 70%;
	color: #FFFFFF;
	text-align: right;
	padding-right: 10px;
}
.thrColHybHdr #container #footer #credit {
	background-color: #333333;
	width: 220px;
	float: right;
}
.thrColHybHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	margin-bottom: 8px;
	margin-top: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.Sidebar2Strip1 {
	background-color: #333333;
	background-image: url(../2009%20Website%20Files/layout/images/photostrip2.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 600px;
	width: 220px;
}
.thrColHybHdr #container #footer #credit a {
	color: #FFFFFF;
}



.ContFormLabels {
	color: #26418E;
}
.thrColHybHdr #container #mainContent2 #ContForm #ContactForm #FormButtons {
	width: 715px;
	padding-top: 10px;
}
.thrColHybHdr #container #mainContent2 #ContForm #ContactForm #HomePhone {
	color: #26418E;
}
.thrColHybHdr #container #mainContent2 #ContForm #ContactForm #Postcode {
	color: #26418E;
}
.thrColHybHdr #container #mainContent2 #ContForm #ContactForm #State {
	color: #26418E;
}
.thrColHybHdr #container #mainContent2 #ContForm #ContactForm #Suburb {
	color: #26418E;
}
.thrColHybHdr #container #mainContent2 #ContForm #ContactForm #Address {
	color: #26418E;
}
.thrColHybHdr #container #mainContent2 #ContForm #ContactForm .ContFormLabels #FullName {
	color: #26418E;
}
.thrColHybHdr #container #mainContent2 #ContForm #ContactForm #uploaded_file {
	color: #26418E;
}
.GreenGuage {

}
.thrColHybHdr #container #header img {
}
.thrColHybHdr #container #header #flash {
	width: 760px;
	float: left;
}
.thrColHybHdr #container #header #GreenGuage {
	float: right;
	width: 240px;
}
.ReqField {
	font-weight: bold;
	color: #FF0000;
}
