/* 
  HTML5 ✰ Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #252525; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #274d1b; color:#fff; text-shadow: none; }
::selection { background:#274d1b; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }






 /* Primary Styles
    Author: Travis Gobeil	May 2011
 */


BODY {
	background: #1f1f1f url(../images/background.png) top repeat-x;
	font-family: "Gill Sans MT", "Gill Sans", Helvetica, sans-serif;
  	font-size: 62.5%;
	text-align: center; /* IE HACK */
	
}





/* ========================================
IMPORTED DIRECTLY FROM THE GUI 
===========================================*/

A:LINK,
A:VISITED {
	outline: none;
	border: none;
	text-decoration: none;
	color: #629e31;
}

A:HOVER {
	color: #8ec63f;
}


H1, H2, H3, H4, H5, H6 {
	margin: 0 0 0.75em 0;
	line-height: 1.1em;
	font-weight: normal;
	color: #121212;
}

H1 {
	font-size: 420%;
	line-height: 1em;
	margin: 0 0 0.25em 0;
}

H2 {
	font-size: 260%;
	line-height: 1.2em;
	margin: 0 0 0.5em 0;
}

H3 {
	font-size: 210%; line-height: 1.3em;
	
}

H4 {
	font-size: 180%;  line-height: 1.4em;
	color: #619e30;
	font-weight: bold;
}

H5 {
	font-size: 160%;  line-height: 1.2em;
	text-transform: uppercase;
	text-align: right;
	border-top: 1px solid #ccc;
	padding-top: 6px;
	margin-bottom: 2em;
}

H6 {
	font-size: 100%;	
	text-transform: uppercase;
	letter-spacing: 3px;
}


P {
	font-size: 160%;
	line-height: 1.6em;
	margin: 0 0 1em 0;
}

P.intro {
	border-left: 3px solid #737373;
	padding: 10px 110px 26px 26px;
	font-size: 210%; line-height: 1.8em;
	color: #363636;
	background: #efefef;
}

UL, OL {
	margin: 0 0 26px 26px;
	padding: 0;
}

LI {
	font-size: 160%; line-height: 1.2em;
	margin: 0 0 0.4em 0;
	padding: 0;
}

HR {
	border: none;
	margin: 10px 0 10px 0;
	height: 4px;
	background: #cccccc;
}

IMG {
	border: none;
	outline: none;
}

IFRAME {
	border: 1px solid #121212;	
}

BLOCKQUOTE {
	font-size: 240%; line-height: 1.3em;
	margin: 10px 0 16px 0;
	padding: 10px 14px;
	background: #629e31 url(../images/wave-lightgreen.gif) 0 0 fixed repeat;
	color: white;
	text-shadow: 0 1px 1px black;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;	
	-kpml-border-radius: 6px;
}

TABLE {
	width: 100%;
	margin: 0 0 16px 0;
	border-top: 3px solid #363636;
	border-bottom: 3px solid #363636;
}

TABLE IMG {
	border: none;	
}

TABLE TD,
TABLE TH {
	font-weight: normal;
	border-bottom: 1px solid #a3a3a3;	
	padding: 10px 10px;
	font-size: 140%; line-height: 1.2em;
	text-align: left;
    vertical-align: middle;
}

TABLE TH {
	border-bottom: 3px solid #363636;
	font-weight: bold;
}

TABLE TR.footer TD {
	border-top: 3px solid #363636;	
	text-align: right;
	font-size: 16px;
}

TABLE TR.paginate TD {
	border-bottom: 3px solid #363636;	
	font-size: 16px;
	background: white;
}



TABLE TH,
TABLE TR.footer {
	background-color: #ebebeb;
	background-image: url(../images/wave-lightgrey.gif);
	background-attachment: fixed;
	background-position: 0 0;
	background-repeat: repeat;
}

TABLE TH A { color: #363636;  }
TABLE TH A:HOVER { color: #8ec63f; }


/* DEFAULT FORM STUFF */

FORM {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-kpml-border-radius: 10px;
	background: #e1e1e1;
	margin: 0 0px 16px 0;
	padding: 16px;
}

FORM LABEL {
	font-size: 160%; line-height: 26px;
	display: block; float: left;
	width: 143px;
}

 .radio-text {
	font-size: 160%; line-height: 1em; padding-bottom: 16px;
	vertical-align: middle;
}

.radio {
	vertical-align: middle;	
	height: auto;
	width: auto;
	margin: 0 10px 10px 0;
}

FORM INPUT {
	font-family: "Gill Sans MT", "Gill Sans", Helvetica, sans-serif;
	font-size: 14px;
	height: 24px;
	margin: 0 0 10px 0;
	padding: 0 6px;
}

INPUT.text {
	width: 278px;	
	border: 1px solid #ccc;
	padding: 2px 6px;
}

INPUT.notext {
	width: 278px;
	background: #fdd;
	border: 1px solid #d90c14;
	padding: 2px 6px;
}

FORM SELECT {
  	font-family: "Gill Sans MT", "Gill Sans", Helvetica, sans-serif;
	font-size: 14px;
	line-height: 26px;
	height: 26px;
	vertical-align: middle;
	margin: 0 0 6px 0;
}

FORM LABEL.long {
	width: auto;
	float: none;
	margin-top: 10px;
	border-top: 1px dotted #919191;
	padding-top: 6px;
}

FORM .form-btn {
	text-shadow: 0 1px 1px #000000;
	background-color: #377723;
	background-image: url(../images/wave-medgreen.gif);
	background-attachment: fixed;
	background-position: 0 0;
	background-repeat: repeat;
	border: none;
	height: auto; width: auto;
	font-size: 21px;
	padding: 6px 16px;
	color: white;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;	
	-kpml-border-radius: 6px;
}

FORM .form-btn:HOVER {
	background-color: #8ec63f;
	background-image: url(../images/wave-lightgreen.gif);
	cursor: pointer;
}

FORM TEXTAREA {
	font-family: "Gill Sans MT", "Gill Sans", Helvetica, sans-serif;
	font-size: 14px;
	width: 440px;
	height: 80px;
	padding: 6px;
	margin: 0 0 16px 0;
}

.bigred {
	font-size: 130%; color: #ff0000;
}


/* REUSABLE CLASSES */

.red { color: #d90c14; }
.yellow { color: #f7c208; }
.green { color: #377723; }
.grey { color: #333333; }

/* HOVER CLASSES */

A.red:HOVER { color: #ff0c00; }
A.yellow:HOVER { color: #ffdf33; }
A.green:HOVER { color: #8ec63f; }
A.grey:HOVER { color: #cccccc; }

tr.green TD {
	background: #e0ecd6;
}

tr.yellow TD {
	background: #fdf3ce;
	color: #e7b208;
}

tr.red TD {
	background: #f7ced0;
	color: #d90c14;
}

.form-fail { 
	line-height: 1.2em;
	background: #d90c14; 
	padding: 6px 10px; 
	color: #ffffff;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;	
	-kpml-border-radius: 6px;
}

.form-warn { 
	line-height: 1.2em;
	background: #f7c208; 
	padding: 6px 10px; 
	color: white;
	border: 1px solid #f7c208;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;	
	-kpml-border-radius: 6px;
}

.form-succ { 
	line-height: 1.2em;
	background: #629e31; 
	padding: 6px 10px; 
	color: white;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;	
	-kpml-border-radius: 6px;
}




.alignright {	text-align: right;	}
.alignleft {	text-align: left;	}
.aligncenter {	text-align: center;	}


/* BASIC DIV LAYOUTS */

/* 2:2 */

.left-half-col,
.right-half-col {
	width: 466px;
	float: left;
	margin-bottom: 16px;
	margin-left: 11px;
}

/* 1:3 */

.left-one-quarter {
	width: 220px;
	float: left;
	margin-bottom: 16px;
	margin-left: 10px;
}

.right-three-quarters {
	width: 714px;
	float: left;
	margin-bottom: 16px;
	margin-left: 11px;
}

/* 3:1 */

.left-three-quarters {
	width: 714px;
	margin-bottom: 16px;
	margin-left: 10px;
	float: left;
}

.left-three-quarters H3 { font-weight: bold; } /* Just for 'News' Page & main text pages */

.right-one-quarter {
	width: 220px;
	float: left;
	margin-bottom: 16px;
	margin-left: 11px;
}


/* BUTTONS 
Turn ANY <A> TAG INTO A BUTTON! Just add class="btn-red" and so on */

A.btn-green:LINK,
A.btn-green:VISITED {
	text-transform: uppercase;
	text-shadow: 0 1px 1px #000000;
	background-color: #377723;
	background-image: url(../images/wave-medgreen.gif);
	background-attachment: fixed;
	background-position: 0 0;
	background-repeat: repeat;
	border: none;
	font-size: 16px;
	padding: 10px 16px;
	color: white;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;	
	-kpml-border-radius: 6px;
}

A.btn-green:HOVER {
	background-color: #8ec63f;
	background-image: url(../images/wave-lightgreen.gif);
	color: white;
	cursor: pointer;
}

A.btn-lightgreen:LINK,
A.btn-lightgreen:VISITED {
	text-transform: uppercase;
	text-shadow: 0 1px 1px #000000;
	background-color: #377723;
	background-image: url(../images/wave-lightgreen.gif);
	background-attachment: fixed;
	background-position: 0 0;
	background-repeat: repeat;
	border: none;
	font-size: 16px;
	padding: 10px 16px;
	color: white;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;	
	-kpml-border-radius: 6px;
}

A.btn-lightgreen:HOVER {
	background-color: #8ec63f;
	background-image: url(../images/wave-brightgreen.gif);
	color: white;
	cursor: pointer;
}


A.btn-red:LINK,
A.btn-red:VISITED {
	text-transform: uppercase;
	text-shadow: 0 1px 1px #000000;
	background-color: #d90c14;
	background-image: url(../images/wave-red.gif);
	background-attachment: fixed;
	background-position: 0 0;
	background-repeat: repeat;
	border: none;
	font-size: 16px;
	padding: 10px 16px;
	color: white;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;	
	-kpml-border-radius: 6px;
}

A.btn-red:HOVER {
	background-color: #ff0f00;
	background-image: url(../images/wave-redhigh.gif);
	color: white;
	cursor: pointer;
}

A.btn-yellow:LINK,
A.btn-yellow:VISITED {
	text-transform: uppercase;
	text-shadow: 0 1px 1px #000000;
	background-color: #f7c208;
	background-image: url(../images/wave-yellow.gif);
	background-attachment: fixed;
	background-position: 0 0;
	background-repeat: repeat;
	border: none;
	font-size: 16px;
	padding: 10px 16px;
	color: white;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;	
	-kpml-border-radius: 6px;
}

A.btn-yellow:HOVER {
	background-color: #ffff10;
	background-image: url(../images/wave-yellowhigh.gif);
	color: white;
	cursor: pointer;
}


.btn-download {
	float: right;
	margin-top: 10px;
}

.btn-download A:LINK,
.btn-download A:VISITED {
	display: block;
	font-size: 160%;
	text-shadow: 0 1px 1px #000000;
	background-color: #377723;
	background-image: url(../images/wave-medgreen.gif);
	background-attachment: fixed;
	background-position: 0 0;
	background-repeat: repeat;
	padding: 10px 26px;
	color: white;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;	
	-kpml-border-radius: 6px;
}

.btn-download A:HOVER {
	background-color: #8ec63f;
	background-image: url(../images/wave-lightgreen.gif);
	cursor: pointer;
}


/* CLEARFIX */

/* slightly enhanced, universal clearfix hack */
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */


/* DEFAULT "BOX" AREAS */

.box-in {
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	-kpml-border-radius: 6px;
	padding: 1px;
}

.box-in h4 {
	background: #8ec63f url(../images/wave-lightgreen.gif) repeat 0 0 fixed;
	border-top-right-radius: 6px; 
	border-top-left-radius: 6px; 
	-moz-border-radius-topleft: 6px; 
	-moz-border-radius-topright: 6px; 
	padding: 0 20px;
	color: #ffffff;
	text-shadow: 0 1px 1px #000000;
	text-transform: none;
	font-size: 260%; line-height: 42px;
	border-bottom: 1px solid #274d1b;
	margin: 0;
}

.box-in h4  A { color: white; }

.box-in h4 A:HOVER { color: #8ec63f; }

.box-in TABLE {
	margin: 16px;
	border-top: none;
	border-bottom: none;
}

.box-in TABLE TD,
.box-in TABLE TH {
	font-weight: normal;
	border-bottom: 1px solid #a3a3a3;	
	padding: 6px 6px;
	font-size: 140%; line-height: 1.2em;
	background: none;
}


.box-out .button A {
	float: right;
	margin: 0 10px 0 6px;
	background: #377723 url(../images/wave-medgreen.gif) repeat 0 0 fixed;
	border-bottom-right-radius: 6px; 
	border-bottom-left-radius: 6px; 
	-moz-border-radius-bottomleft: 6px; 
	-moz-border-radius-bottomright: 6px; 
	padding: 2px 16px 4px 16px;
	color: #ffffff;
	text-shadow: 0 1px 1px #000000;
	font-size: 160%; line-height: 26px;
	border-top: 1px solid #274d1b;
}



.box-out .button A:HOVER {
	background: #8ec63f url(../images/wave-lightgreen.gif) repeat 0 0 fixed;
}


/* LAYOUT & TYPE FOR DI2.0 */

#container, #footer-content {
	width: 968px;
	margin: 0 auto;
	text-align: left; /* IE HACK */
}

HEADER {
	height: 140px;	
}

#util {
	float: right;
	background-color: #363636;
	background-image: url(../images/wave-medgreen.gif);
	background-attachment: fixed;
	background-position: 0 0;
	background-repeat: repeat;
	padding: 6px 10px 6px 10px;
	color: white;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	-kpml-border-radius: 6px;	
}

#util P {
	font-size: 120%; 
	font-weight: bold;
	margin: 0;
	color: #ffffff
}

#util A { color: white; margin-left: 26px; }
#util A:HOVER { color: black; }

#logo {
	float: left;
	margin-top: 24px;
}

#navi {
	float: right;
	margin-top: 30px;
	position: relative;
	z-index: 999999;
	width: 660px;
}

#navi UL { float: right; }

#navi LI, #navi LI LI, #navi LI LI LI {
	font-size: 16px;	
}

#navi LI A { 
	text-transform: uppercase; 
}

#navi LI LI A { color: #363636; text-transform: none; }
#navi LI LI A:HOVER { color: white; }


/* MAIN AREA -- CONTENT PAGES ONLY */

#main {
	border-radius: 16px;
	-moz-border-radius: 16px;
	-webkit-border-radius: 16px;
	-kpml-border-radius: 16px;
	background: white;
	padding: 0 0 26px 0; margin: 0 0 26px 0;
	position: relative;
	overflow: hidden;
}

#sidebar {
	float: right;
	margin-top: 110px;
	width: 300px;
	overflow: hidden;
	position: relative;
	z-index: 10;
}

#sidebar H2 {
	border-bottom: 2px solid #619e30;
	padding-bottom: 2px;
}

#sidebar H1, #sidebar H2, #sidebar H3, #sidebar H4, #sidebar P, #sidebar UL { margin-right: 26px; }

#sidebar H4 {
	font-size: 210%;
	color: #252525;
}

#sidebar IMG.feature {
	border-top-left-radius: 16px; 
	border-bottom-left-radius: 16px; 
	-moz-border-radius-topleft: 16px; 
	-moz-border-radius-bottomleft: 16px; 	
	margin: 0 0 16px 0;
}

#sidebar .sidebox {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-kpml-border-radius: 10px;
	background: #e1e1e1;
	margin: 0 26px 16px 0;
	padding: 0 0 1px 0;
}

#sidebar .sidebox2 {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-kpml-border-radius: 10px;
	background: #e1e1e1;
	margin: 0 26px 16px 0;
	padding: 10px;
}

#sidebar .sidebox H4, #sidebar .sidebox P, #sidebar .sidebox UL { padding: 0 11px; margin-right: 0; }

#sidebar {
	font-size: 90%;	
}

#sidebar .sidebox h3 {
	background: url(../images/wave-lightgreen.gif) repeat 0 0 fixed;
	border-top-right-radius: 10px; 
	border-top-left-radius: 10px; 
	-moz-border-radius-topleft: 10px; 
	-moz-border-radius-topright: 10px; 
	padding: 0 16px;
	color: #ffffff;
	text-shadow: 0 1px 1px #000000;
	font-size: 210%; line-height: 42px;
	border-bottom: 1px solid #274d1b;
	margin: 0 0 11px 0;
	width: auto !important;
	width: 242px; /* IE HACK */
}

#sidebar h4 {
	font-size: 180%;
}

UL.newslist {
	list-style: none;
	margin: 0 26px 16px 0;
	border-top: 1px solid #3d3d3d;
	border-bottom: 1px solid #3d3d3d;
}

UL.newslist LI {
	font-size: 160%; line-height: 1.4em;
	padding: 10px 0; margin: 0;
	border-bottom: 1px solid #acacac;
}

/* MAIN CONTENT AREAS */

#upper-main {
	background: url(../images/wave-lightgreen.gif) fixed 0 0 repeat;	
	padding: 10px 0 6px 26px;
	color: white;
	border-bottom: 1px solid #377723;
	border-top-right-radius: 16px; 
	border-top-left-radius: 16px; 
	-moz-border-radius-topleft: 16px; 
	-moz-border-radius-topright: 16px; 
}

#upper-main H1, #upper-main H2, #upper-main H3, #upper-main H4, #upper-main P { color: white; padding-right: 330px; }

#upper-main H1 {
	font-size: 540%;
	clear: left;
	margin-top: 54px;
	margin-bottom: 10px;
}

#upper-main P {
	font-size: 180%; line-height: 1.5em;	
}

#upper-main UL {
	list-style: none;
	margin: 0; padding: 0;
	position: absolute;
	top: 10px; left: 16px; right: 16px;
}

#upper-main UL LI {
	display: inline;	
	margin: 0; padding: 0;
}

#upper-main UL LI A:LINK,
#upper-main UL LI A:VISITED {
	background: white;
	padding: 6px 10px;
	margin: 0 16px 0 0;
	float: left;
	border-bottom: 1px solid #377723;
	color: #629e31;
}

#upper-main UL LI A:HOVER {
	color: #8ec63f;
}

#upper-main UL LI.selected A {
	color: black;
	background: none;
	border: none;
}

#lower-main {
	margin: 16px 360px 16px 26px;
}

#lower-main H2 {
	border-top: 3px solid #619e30;
	padding-top: 6px;
}

#lower-main UL LI,
#lower-main OL LI {
	padding-left: 10px;
}

/* FOOTER AREA */

FOOTER {
	margin: 16px 0 0 0;
	padding: 16px 0;
	width: 100%;
	height: auto;
	background: url(../images/wave-grey5.gif) fixed 0 0 repeat;
	border-top: 1px solid #595959;
	border-bottom: 1px solid #595959;
	color: white;
}

FOOTER A:LINK, FOOTER A:VISITED {
	color: white;
}

FOOTER A:HOVER {
	color: 	#8ec63f;
}

#sitemap UL {
	font-size: 10px;
	list-style: none;
	margin: 0 42px 2em 0;
	padding: 0;
}

#sitemap UL LI {
	font-weight: bold;	
	float: left;
}

#sitemap UL UL {
	margin-top: 6px;
	margin-left: 0;	
}

#sitemap UL UL LI {
	font-weight: normal;
	float: none;
	font-size: 140%;
}

#sitemap UL UL UL {
	margin-bottom: 0;
	margin-left: 16px;
}

#contact {
	text-align: right;
	border-left: 1px solid #cfcfcf;
}

p.copy {
	clear: both;
	color: #cfcfcf;
	font-size: 120%; text-align: left;	
}



/* ---------------------------------------------------- */
/* SLIDESHOW > SLIDES
/* ---------------------------------------------------- */

#slideshow {
	width: 100%;
	height: 315px;
	background: black;
	margin: 0 0 16px 0;
	border-color: #595959;
	border-width: 1px;
	border-style: solid;
	position: relative;
	overflow: hidden; 
}

#slideshow UL {
	list-style: none;
	margin: 0; padding: 0;
}

#slideshow .slides {
	overflow: hidden;
	width: 100%;
}

#slideshow .slides ul {
	width: 100%;
}

#slideshow .slides li {
	width: 100%;
	padding: 0;
	height: 315px;
}

#slideshow .slides LI#slide-one {
	background: url(../images/slide-2.jpg) top center no-repeat;
	}
#slideshow .slides LI#slide-two {
	background: url(../images/slide-3.jpg) top center no-repeat;
	}
#slideshow .slides LI#slide-three {
	background: url(../images/slide-1.jpg) top center no-repeat;
	}
#slideshow .slides LI#slide-four {
	background: url(../images/slide-4.jpg) top center no-repeat;
	}



#slideshow .slides LI IMG {
	text-align: center;
}

#slideshow .slides h2 {
margin-top: 0;

}

.slidenav {
	position: absolute;
	bottom: 10px; left: 10px;
	z-index: 10;
}

.slidenav UL {
	list-style: none;
	margin: 0; padding: 0;
}

.slidenav UL LI {
	display: inline;
}

.slidenav UL LI A:LINK,
.slidenav UL LI A:VISITED {
	display: block; 
	float: left;
	height: 16px; width: 16px;
	background: url(../images/slidenav-dots.png) top center no-repeat;
	margin: 0 5px 0 0;
	text-indent: -9000px;
}

.slidenav UL LI A:HOVER {
	background-position: center center;
}

.slidenav UL LI.on A {
	background-position: bottom center;	
}



/* NEWS & SOCIAL AREAS */

#newsfeed, #social {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-kpml-border-radius: 10px;	
	color: white;
	height: 42px;
	line-height: 42px;
	font-size: 160%;
	overflow: hidden;	
}

#newsfeed {
	background: url(../images/wave-grey3.gif) fixed 0 0 repeat;
}

#newsfeed A {
	color: #232323;	
}

#newsfeed A:HOVER {
	color: #ffffff;	
}

.newstitle {
	background: url(../images/wave-grey4.gif) fixed 0 0 repeat;
	display: block;
	float: left;
	margin: 0 10px 0 0;
	border-top-left-radius: 10px; 
	border-bottom-left-radius: 10px; 
	-moz-border-radius-topleft: 10px; 
	-moz-border-radius-bottomleft: 10px; 	
	padding: 0 16px;
}

.readmore {
	float: right;
	padding: 0 10px;
}

#newsfeed .readmore A { color: white; text-decoration: underline; }
#newsfeed .readmore A:HOVER { color: black; }

.newsitems a {
	display: block;
	margin-left: 124px;
	width: 460px;
}

#social {
	background: url(../images/wave-grey4.gif) fixed 0 0 repeat;
}

#social P { font-size: 100%; margin: 0; line-height: 42px; float: left; padding: 0 16px; }

#social IMG {
	vertical-align: middle;	
	margin: 0 2px;
}


/* HOME PAGE BUCKETS */


#threatbox,
#solbox {
	background: #ebebeb;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-kpml-border-radius: 10px;
	padding-bottom: 16px;
	overflow: hidden;
}

#threatbox h2,
#solbox H2{
	background: url(../images/wave-medgreen.gif) repeat 0 0 fixed;
	padding: 0 26px;
	color: #ffffff;
	text-shadow: 0 1px 1px #000000;
	font-size: 260%; line-height: 50px;
	border-bottom: 1px solid #274d1b;
	margin: 0;
}

#threatbox P,
#solbox P {
	margin: 16px 144px 11px 26px;	
}

#threatbox IMG,
#solbox IMG {
	float: right;
	margin: -16px 11px 0 0;
	border-radius: 16px;
	-moz-border-radius: 16px;
	-webkit-border-radius: 16px;
	-kpml-border-radius: 16px;	
}

#solbox H2 {
	background: url(../images/wave-lightgreen.gif) repeat 0 0 fixed;
}





/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}


