@charset "UTF-8";
/* CSS Document */

body {
	background: #C8dA7A url(../images/pagetopbg.jpg) repeat-x;
	margin: 0;
	padding: 0;
}

/* ~~ 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;
}

/**********    Links    ******************/
a:link, a:visited {color: #573974; }
a:hover {text-decoration: none; }
a:active {text-weight: bold; }
.footer a:link {color: #597e04;}

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;}
/**********   Typography, Headings, Lists   *************/
body {	font: .9em Verdana, Arial, Helvetica, sans-serif; color: #573974;
		line-height: 1.7em;
}
h1, h2, h3, p, pre, blockquote, form, fieldset, table, ul, ol {margin: 0 0 0 5px;}
h4, h5, h6 {margin: 5px 0 0 5px;}
.centertext { text-align: center;}
.header h1 {margin: 0; padding: 10px 0; display: none;}
.purpleBoxfg h1 { display:block; margin: 0 0 0 5px; padding: 5px 10px 10px 10px; font-size: 95%; color: #FFF; background: url(../images/purpleBoxHeaderBg.gif) no-repeat; width: 220px;}
.homePage .mainContent .greenBoxfg h1 {
	margin: 0;
	padding: 8px 10px 10px 5px;
	font-size: 140%;
	color: #573974;
	background: url(../images/greenBoxHeaderBg.gif) no-repeat;
	width: 600px;
	height: 32px;
}
.template .mainContent .greenBoxfg h1 { margin: 0; padding: 0 10px 10px 5px; font-size: 150%; color: #573974; background: url(../images/greenBoxHeaderBgLrg.gif) no-repeat; width: 805px; height: 32px;}
.sidebar2 h4 {padding-left: 7px; font-size: 85%}

.whiteBoxfg p  {padding: 0 5px 20px 0;}

.whiteBoxfg ul li  {background: transparent url(../images/bullet.gif) no-repeat 0px 2px;} 
.whiteBoxfg ul li   {
	margin-top: 5px;
	margin-bottom: 1px;
	padding-left:18px;
	display:block;
	padding-bottom: 3px;
	text-align: left;
	margin-left: 6px;
	line-height: 18px;
	list-style-type: none;
	} 
.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 */
	color: #597e04;
	font-size: 75%;}
	
.sidebar1 ul, .sidebar2 ul{
	margin: 0;
	padding: 0 0 10px 10px;
	list-style-type: none;
	width: 190px; 
	}
.nav ul li {position: relative; background: url(../images/bullet_small.gif) no-repeat 0 7px; border-bottom: 1px dotted #FFF; height: 27px;}
.sidebar1 ul li, .sidebar2 ul li {position: relative; background: url(../images/bullet_small.gif) no-repeat 0 2px; border-bottom: 1px dotted #FFF; height: auto;}
.sidebar1 ul li a, .sidebar2 ul li a{
	display: block;
	overflow: auto; /*force hasLayout in IE7 */
	color: #FFFFFF;
	text-decoration: none;
	margin-left: 15px;}
.sidebar1 ul li a:visited {color: #FFFFFF;}
.sidebar1 ul li a:hover {background-color: #573974;}
.sidebar1 ul li a:active {color: #c8da7a;}

/**********   Layout Styles   *************/

/* ~~ This fixed width container surrounds all other divs ~~ */
.container {
	width: 1200px;
	margin: -100px auto 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */
.header {
	background: url(../images/header.gif) no-repeat top center;	
	padding: 0;
	margin: 0 auto;
	height: 265px;
	width: 1200px;	
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 220px;
	padding-bottom: 20px;
	color: #FFF;
}
.homePage .mainContent {
	padding: 0 0 10px 0;
	margin: 0 10px;
	width: 600px;
	float: left;
}
.template .mainContent { 
	padding: 0 0 10px 0;
	margin: 0 10px;
	width: 830px;
	float: left;
} 

.greenBoxfg {padding: 0 5px 5px 5px;}
.sidebar2 {
	float: left;
	width: 220px;
	padding: 0;
	color: #FFFFFF;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.mainContent ul, .mainContent ol { 
	padding: 0 15px 15px 40px; /* 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. */
}


/* ~~ The footer styles ~~ */
.footer {
	padding: 0;
	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 */
	text-align: right;
}

/* ~~ Miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the .container) if the .footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}


/**********   Navigation Styles   *************/ 
.nav {
	display: block;
	background: url(../images/navbg.gif) no-repeat;
	width: 220px;
	padding: 0;
	margin-bottom: 5px;
}
.nav ul{
	margin: 0;
	padding: 7px 0 0 10px;
	list-style-type: none;
	width: 190px; /* Main Menu Item widths */
	}
.nav ul li{position: relative; background: url(../images/bullet.gif) no-repeat 0 12px; border-bottom: 1px dashed #FFF; height: auto;	}

.nav ul li a{
	display: block;
	overflow: auto; /*force hasLayout in IE7 */
	color: #FFFFFF;
	text-decoration: none;
	padding: 6px;
	margin-left: 15px;
	}
.nav ul li a:visited {color: #FFFFFF;}
.nav ul li a:hover {background-color: #597e04; text-decoration: underline;border-bottom: 1px dashed #FFF; height: auto;}
.nav ul li a:active {color: #c8da7a;}
/* Holly Hack for IE \*/
* html .nav ul li { float: left; height: 1%; }
* html .nav ul li a { height: 1%; }
/* End */

/**********   Rounded Boxes   *************/
.purpleBox{display:block}
.purpleBox *{
  display:block;
  height:1px;
  overflow:hidden;
  font-size:.01em;
  background:#573974}
.purpleBox1{
  margin-left:3px;
  margin-right:3px;
  padding-left:1px;
  padding-right:1px;
  border-left:1px solid #979477;
  border-right:1px solid #979477;
  background:#736175}
.purpleBox2{
  margin-left:1px;
  margin-right:1px;
  padding-right:1px;
  padding-left:1px;
  border-left:1px solid #bcc979;
  border-right:1px solid #bcc979;
  background:#6c5775}
.purpleBox3{
  margin-left:1px;
  margin-right:1px;
  border-left:1px solid #6c5775;
  border-right:1px solid #6c5775;}
.purpleBox4{
  border-left:1px solid #979477;
  border-right:1px solid #979477}
.purpleBox5{
  border-left:1px solid #736175;
  border-right:1px solid #736175}
.purpleBoxfg{
  background:#573974}
  
.greenBox{display:block}
.greenBox *{
  display:block;
  height:1px;
  overflow:hidden;
  font-size:.01em;
  background:#6e9721}
.greenBox1{
  margin-left:3px;
  margin-right:3px;
  padding-left:1px;
  padding-right:1px;
  border-left:1px solid #a1bd53;
  border-right:1px solid #a1bd53;
  background:#84a737}
.greenBox2{
  margin-left:1px;
  margin-right:1px;
  padding-right:1px;
  padding-left:1px;
  border-left:1px solid #bfd371;
  border-right:1px solid #bfd371;
  background:#7fa331}
.greenBox3{
  margin-left:1px;
  margin-right:1px;
  border-left:1px solid #7fa331;
  border-right:1px solid #7fa331;}
.greenBox4{
  border-left:1px solid #a1bd53;
  border-right:1px solid #a1bd53}
.greenBox5{
  border-left:1px solid #84a737;
  border-right:1px solid #84a737}
.greenBoxfg{
  background:#6e9721}
  
.whiteBox{display:block;}
.whiteBox *{
  display:block; 
  height:1px;
  overflow:hidden;
  font-size:.01em;
  background:#FFFFFF}
.whiteBox1{
  margin-left:3px;
  margin-right:3px;
  padding-left:1px;
  padding-right:1px;
  border-left:1px solid #acc380;
  border-right:1px solid #acc380;
  background:#dae5c7}
.whiteBox2{
  margin-left:1px;
  margin-right:1px;
  padding-right:1px;
  padding-left:1px;
  border-left:1px solid #7ca137;
  border-right:1px solid #7ca137;
  background:#e3ebd4}
.whiteBox3{
  margin-left:1px;
  margin-right:1px;
  border-left:1px solid #e3ebd4;
  border-right:1px solid #e3ebd4;}
.whiteBox4{
  border-left:1px solid #acc380;
  border-right:1px solid #acc380}
.whiteBox5{
  border-left:1px solid #dae5c7;
  border-right:1px solid #dae5c7}
.whiteBoxfg{
  background:#FFFFFF; }  
  
/******************    Forms     ************************/
#formContainer {width: 100%; background: #FFF;}
#formContainer form {
  margin: 0;
  padding: 0;
  font-size: 100%;
  width:800px;
}

#formContainer form fieldset {
  /* clear: both; */
  font-size: 100%;
  border-color: #000000;
  border-width: 1px 0 0 0;
  border-style: solid none none none;
  padding: 10px;
  margin: 0 0 0 0;
}

#formContainer form fieldset legend {
  font-size: 150%;
  font-weight: normal;
  color: #000000;
  margin: 0 0 0 0;
  padding: 0 5px;
}

#formContainer label {
  font-size: 100%;
}

#formContainer label u {
  font-style: normal;
  text-decoration: underline;
}

#formContainer input, select, textarea {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 100%;
  color: #000000;
}

#formContainer textarea {
  overflow: auto;
}

#formContainer form div {
  clear: left;
  display: block;
  width: 704px;
  zoom: 1;
  margin: 5px 0 0 0;
  padding: 1px 3px;
}

#formContainer form fieldset div.notes {
  float: right;
  width: 158px;
  height: auto;
  margin: 0 0 10px 10px;
  padding: 5px;
  border: 1px solid #666666;
  background-color: #ffffe1;
  color: #666666;
  font-size: 88%;
}

#formContainer form fieldset div.notes h4 {
  background-image: url(../images/icon_info.gif);
  background-repeat: no-repeat;
  background-position: top left;
  padding: 3px 0 3px 27px;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #666666;
  color: #666666;
  font-size: 90%;
}

#formContainer form fieldset div.notes p {
  margin: 0em 0em 1.2em .7em;
  color: #666666;
}

#formContainer form fieldset div.notes p.last {
  margin: 0 0 0 .7em;
}

#formContainer form div fieldset {
  clear: none;
  border-width: 1px;
  border-style: solid;
  border-color: #666666;
  margin: 0 0 0 240px;
  padding: 0 5px 5px 5px;
  width: 300px;
	}
#formContainer form div fieldset legend {
  font-size: 100%;
  padding: 0 3px 0 9px;
	}
#formContainer form div.required fieldset legend {
  font-weight: bold;
	}
#formContainer form div label {
  display: block;
  float: left;
  width: 230px;
  padding: 3px 5px;
  margin: 0 0 5px 0;
  text-align: right;
	}
#formContainer form div.optional label, label.optional {
  font-weight: normal;
	}
#formContainer form div.required label, label.required {
  font-weight: bold;
	}
#formContainer form div label.labelCheckbox, form div label.labelRadio {
  float: none;
  display: block;
  width: 200px;
  zoom: 1;
  padding: 0;
  margin: 0 0 5px 142px;
  text-align: left;
	}
#formContainer form div fieldset label.labelCheckbox, form div fieldset label.labelRadio {
  margin: 0 0 5px 0;
  width: 290px;
	}
#formContainer form div img {
  border: 1px solid #000000;
	}
#formContainer p.error {
  background-color: #ff0000;
  background-image: url(../../assets/images/icon_error.gif);
  background-repeat: no-repeat;
  background-position: 3px 3px;
  color: #ffffff;
  padding: 3px 3px 5px 27px;
  border: 1px solid #000000;
  margin: auto 100px;
	}
#formContainer form div.error {
  background-color: #ffffe1;
  background-image: url(../../assets/images/required_bg.gif);
  background-repeat: no-repeat;
  background-position: top left;
  color: #666666;
  border: 1px solid #ff0000;
	}
#formContainer form div.error p.error {
  background-image: url(../../assets/images/icon_error.gif);
  background-position: top left;
  background-color: transparent;
  border-style: none;
  font-size: 88%;
  font-weight: bold;
  margin: 0 0 0 118px;
  width: 200px;
  color: #ff0000;
	}
#formContainer form div select, #formContainer form div textarea {
  width: 300px;
  padding: 1px 3px;
  margin: 0 0 0 0;
	}
#formContainer form div input.inputText, #formContainer form div input.inputPassword {
  width: 300px;
  padding: 1px 3px;
  margin: 0 0 0 0;
	}
#formContainer form div input.inputFile {
  width: 311px;
	}
#formContainer form div select.selectOne, form div select.selectMultiple {
  width: 311px;
  padding: 1px 3px;
	}
#formContainer form div input.inputCheckbox, #formContainer form div input.inputRadio, #formContainer input.inputCheckbox, #formContainer input.inputRadio {
  display: inline;
  height: auto;
  width: auto;
  background-color: transparent;
  border-width: 0;
  padding: 0;
  margin: 0 0 0 140px;
	}
#formContainer form div.submit {
  width: 214px;
  padding: 0 0 0 146px;
	}
#formContainer form div.submit div {
  display: inline;
  float: left;
  text-align: left;
  width: auto;
  padding: 0;
  margin: 0;
	}
#formContainer form div input.inputSubmit, #formContainer form div input.inputButton, #formContainer input.inputSubmit, #formContainer input.inputButton {
  background-color: #cccccc;
  color: #000000;
  width: auto;
  padding: 0 6px;
  margin: 0;
	}
#formContainer form div.submit div input.inputSubmit, #formContainer form div.submit div input.inputButton {
  float: right;
  margin: 0 0 0 5px;
	}
#formContainer form div small {
  display: block;
  margin: 0 0 5px 240px;
  padding: 1px 3px;
  font-size: 78%;
  zoom: 1;
	}
#formContainer label img {
  behavior: url(../../assets/scripts/label_img.htc);
	}
#formContainer form fieldset legend {
  line-height: 150%;
	}
#formContainer form input, form select, form textarea {
  background-color: #ffffff;
	}
#formContainer form textarea.expanding {
  overflow: auto;
  overflow-x: auto;
  overflow-y: visible;
	}
#formContainer div.optional label:before {
  content: '';
	}
#formContainer div.required label:before {
  content: '';
	}
#formContainer form div label.labelCheckbox, #formContainer form div label.labelRadio, #formContainer label.labelCheckbox, #formContainer label.labelRadio {
  display: block;
  width: 190px;
  zoom: 1;
  padding: 4px 0 0 18px;
  text-indent: -18px;
  line-height: 120%;
	}
#formContainer form div label.labelCheckbox input.inputCheckbox, #formContainer form div label.labelRadio input.inputRadio, #formContainer label.labelCheckbox input.inputCheckbox, #formContainer label.labelRadio input.inputRadio {
  margin: 0;
	}
#formContainer form div fieldset input.inputText, #formContainer form div fieldset input.inputPassword, #formContainer form div fieldset input.inputFile, #formContainer form div fieldset textarea.inputTextarea {
  width: 160px;
  margin: 0 0 0 18px;
  margin: expression(setCntr(), '0px 0 0 -124px');
	}
#formContainer form div label.compact {
  display: inline;
  width: auto;
  padding: 4px 10px 0 0;
  text-indent: 0;
  margin: 0 0 0 0;
	}
#formContainer form div.wide label {
  float: none;
  display: block;
	}

form div label.wide {
  width: 348px;
	}
#formContainer form div.wide input.inputText, #formContainer form div.wide input.inputPassword, #formContainer form div.wide input.inputFile, #formContainer form div.wide select, #formContainer form div.wide textarea {
  width: 344px;
  margin: 0;
	}
#formContainer form div.notes p, #formContainer form div small {
  line-height: 125%;
	}
#formContainer form div.wide small {
  margin: 0 0 5px 0;
	}
.homePage #container #mainContent div .greenBoxfg div .whiteBoxfg p strong a {
	font-variant: small-caps;
	font-weight: bold;
}

