﻿@charset "utf-8";
/* CSS Document */

<style type="text/css"> 
 
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;
	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 */
	background:url(images/bg.gif);
	background-repeat:repeat-y;
	background-color:#003916;
}

/* 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.
*/
.twoColElsLtHdr #container { 
	width: 100%;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColElsLtHdr #header {
	border-bottom-style:solid;
	border-bottom-width:1px;
	padding: 0 5px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColElsLtHdr #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 ".twoColElsLtHdr #sidebar1 p" rule.
*/
.twoColElsLtHdr #sidebar1 {
	width: 175px; /* since this element is floated, a width must be given */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
	font-size: 12px;
	border-right-width:1px;
	border-right-color:#FFF;
	border-right-style:solid;
}
.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
	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.
*/
.twoColElsLtHdr #mainContent {
	padding:5px;
	width:auto;
	text-align: left;
} 
.twoColElsLtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.twoColElsLtHdr #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 */
	text-align: center;
}

/* 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;
}
a:link{
color:#DABC6E;
}
a:visited{
color:#A78E49;
}
a:active{
color:#F1E6C7;
}
body{
color:#FFFFFF;
background-color:#003916;
background:url(images/bg.gif);
background-repeat:repeat-y;
}
h1{
color:#FFFFFF;
}
h2, marquee{
color:#FFFFFF;
}
h3{
color:#FFFFFF;
}
h4{
color:#FFFFFF;
}
h5{
color:#FFFFFF;
}
h6{
color:#FFFFFF;
}
label, .MSTHEME-LABEL{
color:#FFFFFF;
}
FIELDSET{
border-color:#000000;
color:#FFFFFF;
}
LEGEND{
color:#FFFFFF;
}
SELECT{
border-color:#BBBBBB;
color:#000000;
}
CAPTION{
color:#FFFFFF;
}
TH{
color:#FFFFFF;
}
HR{
color:#000000;
}
TD{
border-color:#FFFFFF;
}
.mstheme-topbar-font{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
}
h1{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:bold;
font-style:normal;
}
h2{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:normal;
font-style:normal;
}
h3{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:normal;
font-style:normal;
}
h4{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:normal;
font-style:normal;
}
h5{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:normal;
font-style:normal;
}
h6{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:normal;
font-style:normal;
}
IL{
list-style-image:url('bull2_evrgreen.gif');
}
BUTTON{
border-style:solid;
border-width:1pt;
font-family:Arial,Helvetica,sans-serif;
font-style:normal;
}
label, .MSTHEME-LABEL{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-style:normal;
}
TEXTAREA{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-style:normal;
}
FIELDSET{
border-style:solid;
border-width:1pt;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-style:normal;
}
LEGEND{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-style:normal;
}
SELECT{
border-style:solid;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-style:normal;
}
TABLE{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-style:normal;
}
CAPTION{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-style:normal;
}
TH{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	vertical-align: top;
}
MARQUEE{
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-main{
border-color:#000000;
}
.ms-bannerframe, .ms-GRHeaderBackground, .ms-storMeFree{
background-image:url('');
background-color:#474023;
background-repeat:repeat-x;
}
.ms-banner{
color:#000000;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-banner a:link{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
font-weight:normal;
text-decoration:none;
}
.ms-banner a:visited{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
font-weight:normal;
text-decoration:none;
}
.ms-nav td{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:normal;
color:#FFFFFF;
}
.ms-navframe{
border-color:#003213;
}
.ms-nav a{
text-decoration:none;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:normal;
color:#DABC6E;
}
.ms-nav a:hover{
text-decoration:underline;
color:#FFEF82;
}
.ms-nav a:visited{
color:#DABC6E;
}
.ms-viewselect a:link{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#DABC6E;
}
.ms-titlearea{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
}
.ms-pagetitle{
color:#FFFFFF;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:bold;
}
.ms-pagetitle a{
text-decoration:underline;
color:#DABC6E;
}
.ms-pagetitle a:hover{
text-decoration:underline;
color:#FFEF82;
}
.ms-announcementtitle{
font-weight:bold;
}
.ms-formlabel{
font-family:verdana;
font-size:.7em;
font-weight:normal;
color:#969696;
}
.ms-formbody{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
}
.ms-formdescription{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#969696;
}
.ms-selected{
background-color:#648973;
color:#FFFFFF;
}
.ms-selected SPAN{
color:#648973;
}
.ms-filedialog TD{
height:16px;
}
.ms-descriptiontext{
color:#FFFFFF;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-descriptiontext a{
color:#DABC6E;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-separator{
color:#FFFFFF;
}
.ms-authoringcontrols{
background-color:#003213;
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
}
.ms-alternating{
background-color:#003213;
}
.ms-sectionheader{
color:#FFFFFF;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:bold;
}
.ms-sectionline{
background-color:#000000;
}
.ms-partline{
background-color:#000000;
}
.ms-propertysheet{
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-propertysheet th{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
font-weight:bold;
}
.ms-propertysheet a{
text-decoration:none;
color:#DABC6E;
}
.ms-propertysheet a:hover{
text-decoration:underline;
color:#FFEF82;
}
.ms-propertysheet a:visited{
text-decoration:none;
color:#A78E49;
}
.ms-propertysheet a:visited:hover{
text-decoration:underline;
}
.ms-itemheader a{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:bold;
color:#FFFFFF;
text-decoration:none;
}
.ms-itemheader a:hover{
text-decoration:underline;
color:#FFFFFF;
}
.ms-itemheader a:visited{
text-decoration:none;
color:#FFFFFF;
}
.ms-itemheader a:visited:hover{
text-decoration:underline;
}
.ms-vh{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#DABC6E;
text-decoration:none;
font-weight:normal;
}
.ms-vb{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
height:18px;
vertical-align:top;
}
.ms-homepagetitle{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
font-weight:bold;
text-decoration:none;
}
.ms-homepagetitle:hover{
text-decoration:underline;
color:#DABC6E;
}
.ms-addnew{
font-weight:normal;
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
text-decoration:none;
}
.ms-cal{
border-collapse:collapse;
table-layout:fixed;
font-family:Verdana,Arial,Helvetica,sans-serif;
cursor:default;
}
.ms-caltop{
border-top:1px solid #000000;
border-left:1px solid #000000;
border-right:1px solid #000000;
vertical-align:top;
width:14%;
height:30px;
}
.ms-calhead{
border:none;
text-align:center;
background-color:#FFFFFF;
color:#003916;
font-family:Verdana,Arial,Helvetica,sans-serif;
padding:2px;
}
.ms-caldow{
border-top:1px solid #000000;
border-left:1px solid #000000;
border-right:1px solid #000000;
vertical-align:top;
text-align:center;
font-weight:bold;
color:#FFFFFF;
height:20px;
}
.ms-calmid{
border-left:1px solid #000000;
border-right:1px solid #000000;
height:20px;
}
.ms-calspacer{
border-left:1px solid #000000;
border-right:1px solid #000000;
height:4px;
}
.ms-calbot{
border-top:none;
border-left:1px solid #000000;
border-right:1px solid #000000;
border-bottom:1px solid #000000;
height:2px;
}
.ms-appt a{
color:#DABC6E;
}
.ms-appt a:hover{
color:#FFEF82;
}
.ms-appt{
border:2px solid #000000;
text-align:center;
vertical-align:middle;
height:18px;
overflow:hidden;
text-overflow:ellipsis;
background-color:#648973;
color:#FFFFFF;
}
.ms-caldowdown{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:bold;
color:#FFFFFF;
text-align:center;
vertical-align:middle;
}
.ms-caldown{
color:#FFFFFF;
vertical-align:top;
}
.ms-datepickeriframe{
position:absolute;
display:none;
background:#FFFFFF;
}
.ms-datepicker{
font-family:Verdana,Arial,Helvetica,sans-serif;
background-color:#003916;
color:#FFFFFF;
border:2px outset activeborder;
cursor:default
}
.ms-dpdow{
border:none;
vertical-align:top;
text-align:center;
font-weight:bold;
color:#FFFFFF;
border-bottom:1px solid #000000;
}
.ms-dpday{
border:none;
text-align:center;
cursor:hand;
}
.ms-dpselectedday{
border:none;
background-color:#003213;
text-align:center;
cursor:hand;
}
.ms-dpnonmonth{
color:#000000;
border:none;
text-align:center;
cursor:hand;
}
.ms-dphead{
border:none;
text-align:center;
font-weight:bold;
background-color:#4E5346;
color:#FFFFFF;
}
.ms-dpfoot{
text-align:center;
text-align:center;
font-style:italic;
border-top:1px solid;
border-left:none;
border-bottom:none;
border-right:none;
height:24px;
}
IMG.ms-button{
cursor:hand;
}
.ms-toolbar, .ms-toolbar a:visited{
font-family:Verdana,Arial,Helvetica,sans-serif;
text-decoration:none;
color:#DABC6E;
}
.ms-stylebody{
font-family:verdana;
font-size:8pt;
}
.ms-styleheader a:link, .ms-stylebody a:link{
color:#DABC6E;
text-decoration:none;
}
.ms-styleheader a:visited, .ms-stylebody a:visited{
text-decoration:none
}
.ms-styleheader a:hover, .ms-stylebody a:hover{
color:#ff3300;
text-decoration:underline;
}
table.ms-toolbar{
background-image:url('toolgrad_evrgreen.gif');
border:1px solid #000000
background-color:#000000;
}
.ms-gridT1{
font-family:Verdana,Arial,Helvetica,sans-serif;
text-align:center;
color:#648973;
}
select{
font-family:Verdana,Arial,Helvetica,sans-serif;
}
hr{
color:#000000;
height:2px;
}
.ms-formdescription A{
color:#DABC6E;
text-decoration:none;
}
.ms-formtable .ms-formbody{
line-height:1.3em;
}
.ms-radiotext{
cursor:default;
text-align:left;
font-family:verdana;
font-size:10pt;
height:19px;
}
.ms-gridtext{
cursor:default;
font-family:Verdana,Arial,Helvetica,sans-serif;
height:19px;

}
.ms-formbody{
font-family:Verdana,Arial,Helvetica,sans-serif;
vertical-align:top;
}
table.ms-form th{
color:#FFFFFF;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:normal;
vertical-align:top;
}
table.ms-form td{
width:100%;
vertical-align:top;
}
.ms-formrecurrence{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:normal;
vertical-align:top;
}
.ms-long{
font-family:Verdana,Arial,Helvetica,sans-serif;
width:386px;
}
.ms-banner a:link{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
font-weight:bold;
text-decoration:none;
}
.ms-banner a:visited{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
font-weight:bold;
text-decoration:none;
}
.ms-nav td, .ms-nav .ms-SPZoneLabel, .ms-input{
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-nav th{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:normal;
color:#DABC6E;
}
.ms-navheader a, .ms-navheader a:link, .ms-navheader a:visited{
font-weight:bold;
}
.ms-navframe{
background:#335E3D;
}
.ms-navline{
border-bottom:1px solid #001207;
}
.ms-nav .ms-navwatermark{
color:#005420;
}
.ms-selectednav{
border:1px solid #FFFFFF;
background:#003916;
padding-top:1px;
padding-bottom:2px;
}
.ms-unselectednav{
border:1px solid #335E3D;
padding-top:1px;
padding-bottom:2px;
}
.ms-verticaldots{
border-right:1px solid #000000;
border-left:none;
}
.ms-nav a:link{
}
TD.ms-titleareaframe{
color:#000000;
border-color:#000000;
}
TABLE.ms-titleareaframe{
border-left:0px;
}
Div.ms-titleareaframe{
border-top:4px solid #000000;
}
.ms-searchform{
background-color: #000000;
}
.ms-searchcorner{
background-color:#000000;
background-image:none;
}
.ms-titlearealine{
background-color:#000000;
}
.ms-bodyareaframe{
border-color:#000000;
}
.ms-pagetitle{
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-pagetitle a{
text-decoration:none;
}
.ms-pagetitle a:hover{
text-decoration:underline;
}
.ms-pagecaption{
color:#FFFFFF;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-selectedtitle{
background-color:#003213;
border:1px solid #9EBAA9;
padding-top:1px;
padding-bottom:2px;
}
.ms-unselectedtitle{
margin:1px;
padding-top:1px;
padding-bottom:2px;
}
.ms-menuimagecell{
background-color:#9EBAA9;
cursor:hand;
}
.ms-filedialog td{
height:16px;
}
.ms-alerttext{
color:#DB6751;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-sectionheader a{
color:#FFFFFF;
text-decoration:none;
}
.ms-sectionheader a:hover{
color:#FFFFFF;
text-decoration:none;
}
.ms-sectionheader a:visited{
color:#FFFFFF;
text-decoration:none;
}
.ms-discussiontitle{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
font-weight:bold;
}
.ms-vh2{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#DABC6E;
text-decoration:none;
font-weight:normal;
vertical-align:top;
}
.ms-vh-icon{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#DABC6E;
text-decoration:none;
font-weight:normal;
vertical-align:top;
width:22px;
}
.ms-vh-icon-empty{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#DABC6E;
text-decoration:none;
font-weight:normal;
vertical-align:top;
width:0px;
}
.ms-vh-left{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#DABC6E;
text-decoration:none;
font-weight:normal;
}
.ms-vh-left-icon{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#DABC6E;
text-decoration:none;
font-weight:normal;
width:22px;
}
.ms-vh-left-icon-empty{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#DABC6E;
text-decoration:none;
font-weight:normal;
width:0px;
}
.ms-vh-right{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#DABC6E;
text-decoration:none;
font-weight:normal;
}
.ms-vh-right-icon{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#DABC6E;
text-decoration:none;
font-weight:normal;
width:22px;
}
.ms-vh-right-icon-empty{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#DABC6E;
text-decoration:none;
font-weight:normal;
width:0px;
}
.ms-vh a, .ms-vh a:visited, .ms-vh2 a, .ms-vh2 a:visited, .ms-vh-left a, .ms-vh-right a{
color:#DABC6E;
text-decoration:none;
}
.ms-vh a:hover, .ms-vh2 a:hover{
text-decoration:underline;
}
.ms-vhImage{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#D1D1D1;
text-decoration:none;
font-weight:normal;
vertical-align:top;
width:18pt;
}
.ms-gb{
font-family:Verdana,Arial,Helvetica,sans-serif;
height:18px;
color:#FFFFFF;
background-color:#003213;
font-weight:bold;
}
.ms-styleheader{
font-family:verdana;
font-size:0.68em;
background-color:#003213;
}
.ms-vb, .ms-vb2, .ms-GRFont, .ms-vb-user{
font-family:Verdana,Arial,Helvetica,sans-serif;
vertical-align:top;
}
.ms-vb a, .ms-vb2 a, .ms-GRStatusText a, .ms-vb-user a{
color:#DABC6E;
text-decoration:none;
}
.ms-vb a:hover, .ms-vb2 a:hover, .ms-vb-user a:hover{
color:#FFEF82;
text-decoration:underline;
}
.ms-vb a:visited, .ms-vb2 a:visited, .ms-GRStatusText a:visited, .ms-vb-user a:visited{
color:#DABC6E;
text-decoration:none;
}
.ms-vb a:visited:hover, .ms-vb2 a:visited:hover, .ms-vb-user a:visited:hover{
color:#FFEF82;
text-decoration:underline;
}
.ms-vb2, .ms-vb-title, .ms-vb-icon, .ms-vb-user{
border-top:1px solid #9EBAA9;
}
.ms-vb-icon{
vertical-align:top;
width:16px;
padding-top:2px;
padding-bottom:0px;
}
.ms-vb2{
padding-top:3px;
padding-bottom:0px;
}
.ms-addnew{
font-weight:normal;
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#DABC6E;
text-decoration:none;
}
.ms-error{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:normal;
color:#db6751;
}
.ms-vcal{
border-collapse:separate;
table-layout:fixed;
font-family:Verdana,Arial,Helvetica,sans-serif;
cursor:default;
}
.ms-Dcal{
border-collapse:collapse;
border-left:1px solid #000000;
border-right:1px solid #000000;
table-layout:fixed;
font-family:Verdana,Arial,Helvetica,sans-serif;
cursor:default;
}
.ms-calDmidHour{
border-color:#000000;
height:20px;
}
.ms-calDmidHalfHour{
border-color:#000000;
height:20px;
}
.ms-calDmidQuarterHour{
border:0px none;
height:20px;
}
.ms-CalSpacer{
border-left:1px solid #000000;
border-right:1px solid #000000;
height:4px;
}
.ms-CalDSpacer{
border-left:1px solid #000000;
border-right:1px solid #000000;
height:4px;
}
.ms-CalVSpacer{
background-color:#000000;
width:0px;
}
.ms-CalAllDay{
text-align:center;
vertical-align:top;
width:10%;
height:12px;
}
.ms-firstCalHour{
vertical-align:top;
width:10%;
height:12px;
}
.ms-calHour{
border-top:1px solid #000000;
vertical-align:top;
width:10%;
height:12px;
}
.ms-calHalfHour{
border-top:1px solid #001207;
vertical-align:top;
height:12px;
}
.ms-calQuarterHour{
border-top:0px none;
vertical-align:top;
height:12px;
}
.ms-Dappt{
border:2px solid #000000;
text-align:center;
vertical-align:middle;
height:18px;
overflow:hidden;
background-color:#648973;
color:#FFFFFF;
}
.ms-Vappt{
border-top:1px solid #003916;
border-left:2px solid #003916;
border-bottom:3px solid #003916;
border-right:2px solid #003916;
text-align:center;
padding-left:3px;
padding-right:3px;
vertical-align:middle;
height:12px;
overflow:hidden;
text-overflow:ellipsis;
background-color:#005420;
color:#FFFFFF;
}
.ms-Vapptsingle a, .ms-Vappt a{
text-decoration:none;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:normal;
color:#DABC6E;
overflow:hidden;
text-overflow:ellipsis;
}
.ms-Vappt a:link{
}
.ms-Vappt a:hover{
text-decoration:underline;
color:#FFFFFF;
}
.ms-Vevt{
padding:0px;
text-align:center;
vertical-align:top;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:normal;
height:12px;
overflow:hidden;
text-overflow:ellipsis;
color:#FFFFFF;
}
.ms-Vevt a{
text-decoration:none;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:normal;
color:#FFFFFF;
}
.ms-Vevt a:link{
}
.ms-Vevt a:hover{
text-decoration:underline;
color:#FFFFFF;
}
.ms-Vevt a:visited{
color:#DFD664;
}
.ms-apptsingle{
border-left:1px solid #000000;
border-right:1px solid #000000;
height:18px;
vertical-align:middle;
overflow:hidden;
text-overflow:ellipsis;
color:#FFFFFF;
}
.ms-Dapptsingle{
border-left:1px solid #000000;
border-right:1px solid #000000;
height:18px;
vertical-align:middle;
overflow:hidden;
color:#FFFFFF;
}
.ms-Vapptsingle{
border:1px solid #000000;
text-align:center;
vertical-align:middle;
overflow:hidden;
text-overflow:ellipsis;
color:#FFFFFF;
background-color:#005420;
}
.ms-Vapptsingle a:link{
}
.ms-Vapptsingle a:hover{
text-decoration:underline;
}
.ms-Vapptsingle a:visited{
}
.ms-dpnextprev{
border:none;
text-align:center;
font-weight:bold;
background-color:#4E5346;
color:#FFFFFF;
cursor:hand;
}
.ms-discussionseparator{
color:#001207;
height:1px;
}
.ms-stylelabel{
font-family:verdana;
font-size:8pt;
color:#DABC6E;
}
.ms-stylebox{
font-family:verdana;
border:1px solid #001207;
text-align:left
}
img.thumbnail{
border:3px solid #4E5346;
}
tr.ms-imglibselectedrow{
background-color:#6F672C;
}
table.ms-imglibtitletable{
border:0px solid #000000;
}
.ms-imglibthumbnail{
background-color:#6F672C;
border:solid #4E5346 0px;
}
span.thumbnail{
padding:16 10;
position:relative;
width:5px;
}
span.userdata{
behavior:url(#default#userData);
display:none;
}
.ms-imglibmenuhead{
cursor:move;
}
.ms-imglibmenu{
background-color:#6F672C;
cursor:hand;
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#DABC6E;
}
.ms-imglibmenutext{
cursor:move;
font-weight:bold;
color:#DABC6E;
}
.ms-imglibmenuarea{
background-color:#6F672C;
}
img.ms-imglibpreviewarea{
border:solid #6F672C 3px;
margin-top:3px;
}
a.ms-imglibPreviewTitle{
overflow:hidden;
text-overflow:ellipsis;
width:130;
}
table.ms-imglibPreviewTable{
display:none;
}
.UserShadedRegion{
font-family:Verdana,Arial,Helvetica,sans-serif;
background-color:#003213;
}
.UserCaption{
font-family:Verdana,Arial,Helvetica,sans-serif;
background-color:#003213;
}
.UserConfiguration{
font-family:Verdana,Arial,Helvetica,sans-serif;
background-color:#003213;
}
.UserDottedLine{
margin-bottom:2px;
height:1px;
overflow:hidden;
background-color:transparent;
background-image:url('dot_evrgreen.gif');
background-repeat:repeat-x
}
.UserButton, .UserInput, .UserSelect{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#000000;
}
.UserNotification{
font-family:Verdana,Arial,Helvetica,sans-serif;
padding:4px;
COLOR:#000000;
}
.UserToolBarTextArea{
padding-bottom:5px;
font-weight:normal;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.UserToolbarTextArea A:link{
COLOR:#DABC6E;
TEXT-DECORATION:none;
}
.UserToolbarTextArea A:visited{
COLOR:#DABC6E;
TEXT-DECORATION:none;
}
.UserToolbarTextArea A:hover{
COLOR:#FFEF82;
TEXT-DECORATION:underline;
}
.UserToolbarDisabledLink{
COLOR:#474023;
font-family:Verdana,Arial,Helvetica,sans-serif;
padding:4px;
}
.UserToolbarImage{
border:medium none;
cursor:hand;
background-color:#000000;
text-align:center;
}
.UserToolBarImageArea{
padding-bottom:5px;
font-weight:normal;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.UserToolbarSelectedImage{
border-right:medium none;
border-top:medium none;
border-left:medium none;
border-bottom:#000000 1px solid;
font-weight:bold;
vertical-align:top;
text-align:center;
}
.UserGenericHeader{
font-weight:bold;
color:#FFFFFF;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.UserGeneric{
padding:8px 5px 7px 5px;
}
.UserGenericText{

}
.UserGenericBody{
padding:5px 0px 0px 17px;
}
.UserSectionTitle{
font-weight:bold;
width:100%;
margin-bottom:5px;
padding-bottom:2px;
border-bottom:solid 1px #4E5346;
color:#FFFFFF;
}
.UserSectionHead{
width:100%;
padding:0px 0px 3px 0px;
color:#FFFFFF;
}
.UserSectionFooter{
color: ;
border-top:1px solid #4E5346
}
.UserSectionBody{
width:100%;
padding:0px 0px 0px 7px;
}
.UserControlGroup{
padding-bottom:10px;
padding-top:2px;
}
.UserFooter{
width:100%;
padding:10px 7px 7px 7px;
}
.UserCommandArea{
padding-top:7px;
}
.UserToolbar{
background-image:url('toolgrad_evrgreen.gif');
border:1px solid #000000;
background-repeat:repeat-x;
background-color:transparent
}
.UserCellSelected{
font-family:Verdana,Arial,Helvetica,sans-serif;
padding:1px 4px 2px 4px;
background-color:#003916;
border:solid 1px #E4B014;
color:#FFFFFF;
}
.UserCell{
font-family:Verdana,Arial,Helvetica,sans-serif;
padding:2px 5px 3px 5px;
color:#FFFFFF;
}
.UserGenericBulletItem{
padding-bottom:2px;
}
.ms-ToolPaneFrame{
padding:0px;
background-color:#003213;
}
.ms-ToolPaneBody{
padding-bottom:2px;
padding-top:2px;
}
.ms-ToolPaneHeader{
background-color:#4E5346;
border-style:none;
}
.ms-ToolPaneBorder{
border-right:#646A5A 1px solid;
border-top:solid none;
border-bottom:solid none;
border-left:#646A5A 1px solid;
}
.ms-ToolPaneClose{
background-color:#4E5346;
}
.ms-ToolPaneTitle{
color:#FFFFFF;
font-weight:bold;
font-family:Verdana,Arial,Helvetica,sans-serif;
padding-top:3px;
padding-bottom:3px;
background-color:#4E5346;
}
.ms-ToolPaneFooter{
background-color:#4E5346;
padding:5px;
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
}
.ms-ToolPaneError{
color:#db6751;
font-family:Verdana,Arial,Helvetica,sans-serif;
padding:2px;
}
.ms-ToolPaneInfo{
padding-right:5px;
padding-top:5px;
padding-bottom:0px;
padding-left:5px;
color:#FFFFFF;
font-family:Verdana,Arial,Helvetica,sans-serif;
background-color:#646A5A;
}
.ms-ToolPartSpacing{
padding-top:8px;
}
.ms-TPBorder{
border:none;
}
.ms-TPHeader{
background-color:#001207;
}
.ms-TPTitle{
color:#FFFFFF;
font-weight:bold;
font-family:Verdana,Arial,Helvetica,sans-serif;
padding-top:2px;
padding-bottom:2px;
}
.ms-TPBody{
color:#FFFFFF;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-TPBody a:link, .ms-TPBody a:visited, .ms-TPBody a:hover{
color:#DABC6E;
text-decoration:none;
cursor:hand;
}
.ms-TPCommands{
}
.ms-TPInput{
color:#000000;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-CategoryTitle{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight:bold;
text-decoration:none;
}
.ms-PropGridBuilderButton{
border:solid 1px #9EBAA9;
width:16px;
display:none;
background-color:#4E5346;
}
.ms-SPZone{
border:#000000 1px solid;
padding:5px;
}
.ms-SPZoneSelected{
border:#646A5A 1px solid;
padding:5px;
}
.ms-SPZoneIBar{
border:#646A5A 3px solid;
}
.ms-SPZoneLabel{
color:#FFFF80;
font-family:Verdana,Arial,Helvetica,sans-serif;
padding:0;
}
.ms-SPError{
color:#DB6751;
font-family:Verdana,Arial,Helvetica,sans-serif;
padding-right:2px;
padding-top:2px;
padding-bottom:2px;
padding-left:2px;
border-bottom:#646A5A 2px solid;
}
.ms-SPZoneCaption{
color:#FFFF80;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-WPDesign{
background-color:#646A5A;
}
.ms-WPMenu{
background-color:#646A5A;
}
.ms-WPTitle{
font-weight:bold;
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#FFFFFF;
padding-top:2px;
padding-bottom:2px;
}
.ms-WPTitle a:link, .ms-WPTitle a:visited{
color:#FFFFFF;
text-decoration:none;
cursor:hand;
}
.ms-WPTitle A:hover{
color:#FFEF82;
text-decoration:underline;
cursor:hand;
}
.ms-WPSelected{
border:#E4B014 3px dashed;
}
.ms-WPBody{
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-WPBody table, .ms-TPBody table{
}
.ms-WPBody a:link, .ms-WPBody a:visited{
color:#DABC6E;
text-decoration:none;
}
.ms-WPBody A:hover{
color:#FFEF82;
text-decoration:underline;
}
.ms-WPBody th, .ms-TPBody th{
font-weight:bold;
}
.ms-WPBody td{
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-WPBody h1, .ms-TPBody h1{
font-weight:bold;
}
.ms-WPBody h2, .ms-TPBody h2{
font-weight:bold;
}
.ms-WPBody h3, .ms-TPBody h3{
font-weight:bold;
}
.ms-WPBody h4, .ms-TPBody h4{
font-weight:bold;
}
.ms-WPBody h5, .ms-TPBody h5{
font-weight:bold;
}
.ms-WPBody h6, .ms-TPBody h6{
font-weight:bold;
}
.ms-WPBorder{
border-right:#001207 1px solid;
border-left:#001207 1px solid;
border-top-style:none;
border-bottom:#001207 1px solid;
}
.ms-HoverCellActive{
border:#DABC6E 1px solid;
background-color:#4E5346;
}
.ms-HoverCellActiveDark{
border:solid 1px #001207;
background-color:#646A5A;
}
.ms-SPLink{
font-family:Verdana,Arial,Helvetica,sans-serif;
color:#DABC6E;
}
.ms-SPLink a:link, .ms-SPLink a:visited{
color:#DABC6E;
text-decoration:none;
}
.ms-SPButton{
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-PartSpacingVertical, .ms-PartSpacingHorizontal{
padding-top:10px;
}
.ms-WPHeader{
background-color:#335E3D;
background-image:url('partgrad.gif');
background-repeat:repeat-x;
}
.ms-PageHeaderDate{
color:#FFFFFF;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-PageHeaderGreeting{
color:#FFFFFF;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-rtApplyBackground{
background-color:#648973;
border:0.02cm solid #9EBAA9;
}
.ms-rtRemoveBackground{
background-color:transparent;
border:0.02cm solid #003916;
}
.ms-rtToolbarDefaultStyle{
font:normal 8pt Verdana,Arial,Helvetica,sans-serif;
}
.ms-subsmanageheader{
background-color:#003213;
font-family:Verdana,Arial,Helvetica,sans-serif;
text-decoration:none;
font-weight:bold;
vertical-align:top;
}
.ms-subsmanagecell{
color:#FFFFFF;
font-family:Verdana,Arial,Helvetica,sans-serif;
height:18px;
vertical-align:top;
}
.ms-ConnError{
color:#db6751;
}
.ms-storMeUsed{
background-color:#FFCA42;
}
.ms-storMeFree{
background-color:#7CBC00;
}
.ms-storMeEstimated{
background-color:#FFEF82;
}
.ms-underline{
vertical-align:top;
border-bottom:1px solid #000000;
padding-left:4;
padding-right:4;
padding-top:2;
padding-bottom:4;
}
.ms-underlineback{
vertical-align:top;
border-bottom:1px solid #000000;
padding-left:4;
padding-right:4;
padding-top:2;
padding-bottom:4;
background-color:#003213;
}
.ms-smallheader{
font-weight:bold;
color:#FFFFFF;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
.ms-smallsectionline{
padding-left:0;
padding-right:0;
padding-top:2;
padding-bottom:0;
border-bottom:1px solid #000000;
}
.ms-tabselected{
font-family:Verdana,Arial,Helvetica,sans-serif;
background-color:#000000;
border-right:#000000 2px solid;
border-left:#000000 2px solid;
border-top:#000000 2px solid;
border-bottom:#000000 2px solid;
font-weight:bold;
padding-top:3px;
padding-bottom:3px;
padding-left:10px;
padding-right:10px;
color:#FFFFFF;
}
.ms-tabinactive{
font-family:Verdana,Arial,Helvetica,sans-serif;
background-color:#335E3D;
border-right:#335E3D 2px solid;
border-left:#335E3D 2px solid;
border-top:#335E3D 2px solid;
border-bottom:#335E3D 2px solid;
padding-top:3px;
padding-bottom:3px;
padding-right:10px;
padding-left:10px;
color:#DABC6E;
}
.ms-tabinactive a:link, .ms-tabinactive a:hover, .ms-tabinactive a:visited{
color:#DABC6E;
text-decoration:none;
}
.ms-surveyVBarT{
font-size:7pt;
font-family:verdana;
text-align:center;
color:#648973;
}
.ms-surveyGVVBar{
width:9px;
background-color:#003916;
border-top-color:#003916;
border-top-style:solid;
border-top-width:0px;
border-bottom-color:#9EBAA9;
border-bottom-style:solid;
border-bottom-width:0px;
}
.ms-surveyGVVBarS{
width:20px;
}
.ms-uploadborder{
border:1px solid #474023;
}
.ms-uploadcontrol{
background-color:#648973;
}
.ms-highlight{
background-color:#474023;
}
.UserBackground{
background-color:#003916;
}
.ms-MWSSelectedInstance{
color:#FFFFFF;
text-decoration:none;
}
.ms-MWSInstantiated a:link, .ms-MWSInstantiated a:visited{
color:#DABC6E;
text-decoration:none;
}
.ms-MWSInstantiated a:hover{
color:#FFEF82;
text-decoration:underline;
}
.ms-MWSUninstantiated a:link, .ms-MWSUninstantiated a:visited{
color:#DABC6E;
text-decoration:none;
}
.ms-MWSUninstantiated a:hover{
color:#DABC6E;
text-decoration:underline;
}
.ms-ToolStrip{
color:#FFFFFF;
background-color:#335E3D;
border-left:#000000 1px solid;
border-right:#000000 1px solid;
border-top:#000000 1px solid;
border-bottom:#000000 1px solid;
}
.twoColElsLtHdr #container #sidebar1 p {
	text-align: center;
}
.twoColElsLtHdr #container #sidebar1 p {
	font-size: 14px;
}
.twoColElsLtHdr #container #sidebar1 p {
	font-size: 12px;
}
.twoColElsLtHdr #container #sidebar1 p {
	font-family: Verdana, Geneva, sans-serif;
}
.style3 {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-style: italic;
	font-size: medium;
	font-weight: normal;
}
.style4 {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: medium;
	font-weight: normal;
	text-align:center;
}
.style5 {
	text-align: center;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: large;
	color: #DABC6E;
	font-weight: bold;
}
.style7 {
	font-weight: normal;
}.style8 {
	font-weight: normal;
	text-align: left;
}
 
</style>[if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.twoColElsLtHdr #sidebar1 { padding-top: 30px; }
.twoColElsLtHdr #mainContent { zoom: 1; padding-top: 15px; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]

