@charset "UTF-8";
body {
	font: 12px/18px Arial, Helvetica, Verdana, sans-serif;
	background: #dcecea url(../img/bg.png) repeat-y top center;
	margin: 0;
	padding: 0;
	color: #000;
	overflow-y: scroll;
}

/* ~~ 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;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Cabin Condensed', sans-serif;
	font-weight: normal;
}
h1 {
	color: #107a70;
	font-size: 30px;
	letter-spacing: -0.5px;
}
h2 {
	color: #dbc22a;
	font-size: 18px;
}
h3 {
	color: #107a70;
	font-size: 14px;
	font-weight: bold;
}
.sidebar2 h1 {
	color: #107a70;
	font-size: 18px;
}
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;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #107a70;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #107a70;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

input[type="text"] {
	border: 1px solid #63a8a2;
	width: 400px;
	padding: 2px;
}
input[type="submit"] {
	background-color: #dbc22a;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 5px 15px;
}
form {
	border: 1px solid #dbc22a;
	margin-bottom: 20px;
	padding: 20px;
}
form div {
	text-align: left;
}
form div center {
	text-align: left;
}

.bg_logo {
	min-height: 800px;
	background: url(../img/bg_logo.png) no-repeat top center;
}
/* ~~ this fixed width container surrounds all other divs~~ */
.container {
	width: 990px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	overflow: hidden; /* this declaration makes the .container understand where the floated columns within ends and contain them */
}

/* ~~ 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: 226px;
	padding-bottom: 10px;
	padding-top: 170px;
	color: #107a70;
}
.contentContainer {
	padding: 0;
	width: 514px;
	float: left;
}
.sidebar2 {
	float: left;
	width: 250px;
	padding: 0;
}
.contentContainer .rootline {
	height: 60px;
}
.contentContainer .content {
	padding: 28px;
	padding-top: 12px;
}
.sidebar1 .sideContent {
	padding: 15px;
	padding-right: 40px;
}
.sidebar2 .sideContent {
	padding: 20px;
	padding-left: 28px;
	padding-top: 40px;
}
.breadcrumb {
	margin: 0px 28px;
	padding: 10px 0px;
	padding-bottom: 5px;
	font-size: 10px;
	color: #aaa;
	background: url(../img/breadcrumb.png) no-repeat left bottom;
}
.breadcrumb a {
	color: #63a8a2;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 15px; /* 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. */
}
.content ul {
	list-style-type: none;
	padding-left: 0px;
}
.content ul li {
	padding-left: 15px;
	background: url(../img/bullet.png) no-repeat left 9px;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	background: url(../img/menu_bg_off.png) repeat-y right top;
}
ul.nav li {
	background: url(../img/menu_top_off.png) no-repeat right top;
}
ul.nav li div {
	background: url(../img/menu_bottom_off.png) no-repeat right bottom;
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	color: #107a70;
	padding: 6px 5px 6px 15px;
	padding-bottom: 7px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
	background: url(../img/arrow_off.png) no-repeat right center;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #63a8a2;
	background: #f3f8f8 url(../img/arrow_on.png) no-repeat right center;
	padding-bottom: 6px;
	border-bottom: 1px solid #ddd;
}
ul.nav li.active a {
	color: #dbc22a;
	background: #ffffff url(../img/arrow_on.png) no-repeat right center;
	padding-bottom: 6px;
	border-bottom: 1px solid #ddd;
}
ul.nav li.active a:hover {
	background: #f3f8f8 url(../img/arrow_on.png) no-repeat right center;
}
ul.subNav {
	list-style: none; /* this removes the list marker */
	margin-bottom: 0px; /* this creates the space between the navigation on the content below */
	background: #ffffff url(../img/submenu_bg_off.png) repeat-y right top;
	font-size: 11px;
}
ul.subNav li {
	background: none;
	border-bottom: 1px solid #f5f5f5;
	border-right: 1px solid #ddd;
}
ul.subNav li div {
	background: none;
}
ul.subNav a, ul.subNav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	color: #107a70;
	padding: 3px 5px 3px 25px;
	background: url(../img/arrow_on.png) no-repeat 15px center;
}
ul.subNav a:hover, ul.subNav a:active, ul.subNav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #63a8a2;
	background: #f3f8f8 url(../img/arrow_on.png) no-repeat 15px center;
	padding-bottom: 3px;
	border-bottom: none;
}
ul.subNav li.active a {
	padding-bottom: 3px;
	color: #dbc22a;
	background: url(../img/arrow_on.png) no-repeat right center;
	border-bottom: none;
}
ul.subNav li.active a:hover {
	background: #f3f8f8 url(../img/arrow_on.png) no-repeat right center;
}

ul.subSubNav {
	list-style: none; /* this removes the list marker */
	margin-bottom: 0px; /* this creates the space between the navigation on the content below */
	background: #ffffff url(../img/submenu_bg_off.png) repeat-y right top;
}
ul.subSubNav a, ul.subSubNav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	color: #107a70;
	padding: 3px 5px 3px 40px;
	background: url(../img/arrow_on.png) no-repeat 30px center;
}
ul.subSubNav a:hover, ul.subSubNav a:active, ul.subSubNav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #63a8a2;
	background: #f3f8f8 url(../img/arrow_on.png) no-repeat 30px center;
	border-bottom: none;
}
ul.subSubNav li.active a {
	padding-bottom: 3px;
	color: #dbc22a;
	background: url(../img/arrow_on.png) no-repeat right center;
	border-bottom: none;
}
ul.subSubNav li.active a:hover {
	background: #f3f8f8 url(../img/arrow_on.png) no-repeat right center;
}


/* ~~ 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 overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}




.csc-textpic-caption {
	background: #107a70;
	padding: 5px 10px;
	color: #ffffff;
	font-style: italic;
	font-size: 11px;
}