@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
#container/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs 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 entire layout will downsize proportionately. You may want to increase the widths of the various divs 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.
*/
  {
	width: 95%;
	margin: 4px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 4px solid #CC6600;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	padding: 4px;
	min-width: 900px;
} 
#container2 {
	width: 95%;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #ECECEC;
	margin: 4px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 4px solid #CC6600;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	padding: 4px;
	min-width: 900px;
}

#header  {
	background: no-repeat left;
	padding: 0px;
	margin: 4px 0px 0px;
	border-bottom: #CC6600;
	text-align: center;
} 
#titleRow {
	border-bottom: 4px solid #CC6600;
	border-top: 4px none #CC6600;
	background: #FFFFFF url(../assets/flash/TitleBck.jpg) repeat-y;
}

.buttonsRow {
	width: 100%;
	padding-top: 4px;
	padding-bottom: 4px;
	text-align: center;
	margin-top: 8px;
	margin-bottom: 8px;
}
#container .buttonsRow a {
	margin: 6px 2px 2px;
	padding: 2px 4px;
	background: #ECECFF;
	border: 1px solid #990000;
	font-size: 12px;
}
.fullWidth {
	width: 100%;
}
.fullWidth a {
	border: 1px solid #000000;
	background: #ECECFF;
	margin: 6px 2px 2px;
	padding: 2px 4px;
}



#sidebar1/* 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 ".thrColElsHdr #sidebar1 p" rule.
*/
  {
	float: left;
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	text-align: left;
	border-top: 1px solid #990000;
	border-right: 1px solid #990000;
	border-bottom: 1px solid #990000;
	border-left: 1px none #990000;
	margin-top: 8px;
}
#sidebar1 a {
	margin: 4px 1px 4px 4px;
	padding: 2px 14px 1px 4px;
	font: small-caps normal 14px Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
	color: #000000;
	border-top: 1px solid #CC6600;
	border-right: 1px solid #CC6600;
	border-bottom: 4px solid #CC6600;
	border-left: 3px solid #CC6600;
	background: #FAF4E7;
}
#sidebar1 a:visited {
	font: small-caps normal 14px Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	text-decoration: none;
	border-bottom: 4px solid #CC6600;
	border-top: 1px solid #CC6600;
	border-right: 1px solid #CC6600;
	border-left: 3px solid #CC6600;
	background: #FAF4E7;
}
#sidebar1 a:hover {
	font: small-caps normal 14px Verdana, Arial, Helvetica, sans-serif;
	color: #990000;
	text-decoration: none;
	background: #FCE45C;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 4px solid #000000;
	border-left: 3px solid #000000;
}
.activePage {
	font: small-caps 14px Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	background: #EFC77C;
	border-bottom: 4px solid #000000;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-left: 3px solid #000000;
	margin: 4px 1px 4px 4px;
	padding: 2px 14px 1px 4px;
}


.sidebar1_bottom {
	margin: 10px 0px 0px;
	padding: 0px;
	border: 1px none #FF0000;
	width: 200px;
	float: left;
}

.sidebar1_bottom table {
	border-top: 4px none #0000FF;
	border-bottom: 2px none #0000FF;
	border-right-style: none;
	border-left-style: none;
}

#sidebar2  {
	float: right;
	width: 190px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 6px 2px 4px 6px; /* top and bottom padding create visual space within this div */
	text-align: center;
	margin-bottom: 4px;
	border: 1px none #CC6600;
}
#container #sidebar1 .sidebar1_bottom a {
	color: #FF0000;
}

.box {
	padding: 2px;
	border: 2px solid #CC6600;
	margin-top: 4px;
	margin-bottom: 4px;
	background: #F1E6C2;
}

#mainContent/* 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.
*/
  {
	border-right: 1px none #006600;
	border-left: 1px none #006600;
	border-bottom-style: none;
	padding-right: 4px;
	padding-left: 4px;
	line-height: 1.3em;
	border-top: 1px none #CC6600;
	margin-right: 198px;
	margin-bottom: 0;
	margin-left: 204px;
} 

#mainContent img {
	margin: 4px;
	padding: 0px;
	border: 3px solid #CC6600;
	width: 50%;
	float: right;
}
#mainContentRight {
	border-right: 1px none #006600;
	border-left: 1px none #006600;
	border-bottom-style: none;
	padding-right: 4px;
	padding-left: 4px;
	line-height: 1.3em;
	border-top: 1px none #CC6600;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 206px;
}
#container #mainContentRight input {
}
input {
}

#mainContentRight img {
	text-align: center;
}


.float_swf {
	width: 50%;
	border: 3px none #CC6600;
	float: right;
	height: 400px;
}


img {
	border: 2px solid #CC6600;
}


#photo {
	background: no-repeat center;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	padding: 0px;
	border: 1px none #990000;
}
#photo img {
	width: 100%;
	border-right: 1px none #FF0000;
	border-bottom: 4px solid #CC6600;
	border-left: 1px none #FF0000;
	border-top-style: none;
}

#footer  {
	padding: 4 10px 0;
	margin-top: 4px;
	border-top: 4px solid #CC6600;
} 
#footer a {
	color: #000000;
	font-size: 14px;
}
#footer a:hover {
	font-size: 14px;
	color: #990000;
}


/* 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;
}
.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;
}
.v9 {
	font: 9px Verdana, Arial, Helvetica, sans-serif;
}
.v14 {
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
}

.v16 {
	font: 16px Verdana, Arial, Helvetica, sans-serif;
}
.v24 {
	font: 24px Verdana, Arial, Helvetica, sans-serif;
}
.v12red {
	color: #990000;
	font-size: 12px;
}

.v16red {
	font: 16px Verdana, Arial, Helvetica, sans-serif;
	color: #990000;
}
.v24red {
	font: 24px Verdana, Arial, Helvetica, sans-serif;
	color: #990000;
}
.times14 {
	font: 14px "Times New Roman", Times, serif;
}

.times16 {
	font: 16px "Times New Roman", Times, serif;
}

.times24red {
	font: 24px "Times New Roman", Times, serif;
	color: #990000;
}


.times28 {
	font-size: 28px;
	color: #000000;
	font-family: "Times New Roman", Times, serif;
	padding-bottom: 4px;
	border-bottom: 2px solid #CC6600;
	font-variant: small-caps;
	border-top: 3px none #CC6600;
	padding-top: 4px;
	margin-top: 0px;
}
.times36 {
	font: small-caps 36px Georgia, "Times New Roman", Times, serif;
	color: #333333;
	padding-top: 4px;
	padding-bottom: 4px;
	border-bottom: 4px solid #CC6600;
}



.swf {
	width: 80%;
}
.flashSlides {
	background: #FF0000;
	border: 1px solid #0000FF;
}
textarea {
	width: 98%;
}
#eventsCalendar {
	margin: 0px 216px 0 204px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	border-right: 1px none #FF0000;
	border-left: 1px none #FF0000;
	border-top-style: none;
	border-bottom-style: none;
	line-height: 1.3em;
	padding: 0px;
}
.headline {
	font: 18px Georgia, "Times New Roman", Times, serif;
	color: #000099;
	border-bottom: 1px solid #999999;
	margin-bottom: 2px;
	text-align: left;
}
.news_text {
	font: 12px/1.3em Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	margin-bottom: 1em;
	border-bottom: 1px solid #999999;
	padding-bottom: .5em;
	margin-top: 0.3em;
	border-left: 1px solid #999999;
	padding-left: 4px;
	text-align: left;
}
.special {
	background: #FFFFFF;
	margin-right: auto;
	margin-left: auto;
	border: 2px solid #CC6600;
	padding: 2px;
}

input.btn {
	font-size: 16px;
	color: #0000FF;
	background: #D9D9FF;
	border: 1px solid #006600;
	margin-right: 8px;
	width: 180px;
}
.v14green {
	font: small-caps 14px "Times New Roman", Times, serif;
	color: #003300;
}
#menuContent {
	border-right: 1px none #006600;
	border-left: 1px none #006600;
	border-bottom-style: none;
	padding-right: 4px;
	padding-left: 4px;
	border-top: 1px none #CC6600;
	margin-right: 198px;
	margin-bottom: 0;
	margin-left: 204px;
}
th {
	font: 18px "Times New Roman", Times, serif;
	color: #990000;
	text-decoration: underline;
}
