/* STANDARDS:
   font-sizes and line-heights should all be defined in EMs except for the body font-size which should be in pixels.
   margins and paddings should all be defined in pixels.
   */

/********************************
*	Body and Wrapper Styles	*/

body, body.webprogram {
	background-color: #fff;	/* Set this to the bg color of footerwrapper,
		then set background-colors for the rest of the wrappers below.  
		This will make the footer appear to reach the bottom of the window. */
	color: #000;
	font-family: Arial, "Helvetica Neue", sans-serif;
	font-size:14px;
	height: auto;
	margin: 0 auto;
	padding:0;
	text-align: center;
	}
	html#range_0 body {
		height: auto;
		}
.wrapper, .headerwrapper, .menuwrapper, .contentwrapper, .footerwrapper {
	margin: 0 auto;
	padding: 0;
	text-align: left;
	width: 100%;
	}
	.headerwrapper {
		background-color: #fff;
		}
	.menuwrapper {
		background-color: #666;
		}
	.contentwrapper {
		background-color: #fff;
		padding-top: 10px;
		}
		.contentwrapper .content, .contentwrapper .sidebar {
			margin-bottom: 10px;
			}
			.contentwrapper .content ul li {
				list-style:disc;
				margin: 3px 10px;
				}
	.footerwrapper {
		/* body background-color will show in footerwrapper */
		font-size: 0.85em;
		padding: 10px 0 30px 0;
		text-align: center;
		}
		
/*	END Body and Wrappers					*
*********************************/

/********************************
*	Links				 		*/

a,
a:link,
a:focus,
a:active,
a:visited,
a:hover {
	color: #369;
	text-decoration: none;
	}
	a:visited {
		color: #639;
		}
	a:hover {
		color: #47c;
		text-decoration: underline;
		}

/*	END Links					*
*********************************/

/********************************
*	html basic tags and generic classes
*	HTML5 tag reference: http://www.w3schools.com/tags/ref_byfunc.asp
*/

	b, strong, .bold {	/* defines bold text */
		font-weight: bold;
		}

	i 		/* Defines a part of text in an alternate voice or mood */
	em,		/* defines emphasized text */
	dfn,		/* definition term, typically italicized */
	var,		/* variable, typically italicized */
	.italic {
		font-style: italic;
		}

	.emphasis {	/* Defines text that should be emphasized as stylistically different from normal text */
		font-size: 1.1em;
		font-style: italic;
		text-decoration: none;
		text-transform: uppercase;
		}

	mark, 	/* marks highlighted text */
	.highlight {
		background-color: #f6ff66;
		}

	code, samp, pre, kbd  {	/* Defines a piece of computer code, preformatted text, or keyboard input */
		font-family: Consolas, Monaco, "Lucida Console", "Lucida Sans Typewriter", "Bitstream Vera Sans Mono", monospace;
		}
	p {
		margin: 0 0 10px 0;
		}
	small, .small {
		font-size: 0.9em;
		}
		
	h1,h2,h3,h4,h5,h6 {
		font-weight: bold;
		margin: 0 0 5px 0;
	}
	h1 { font-size: 1.4em; }
	h2 { font-size: 1.3em; }
	h3 { 
		border-bottom-style: solid;
		border-bottom-width: 1px;
		font-size: 1.2em;
		font-weight: bold;
		padding:0 0 2px 0;
		text-align: left;
		}
	h4 { font-size: 1.1em; }
	h5 { font-size: 1.0em; }
	h6 { font-size: 1.0em; }

	hr {	/* just in case someone puts in an hr, it will be styled properly */
		border-bottom: 1px solid #ccc;
		height: 1px;
		margin: 5px 0;
		}
	.center {  /* PLEASE DO NOT USE <center> TAGs, just class="center"*/
		text-align: center;
		}
	.left { text-align: left; }
	.right { text-align: right; }
	.error {
		color: #c00; /* red for error color */
		}

/*	END html basic tags and generic classes	*
*********************************/

/********************************
*	Floats				 		*/

	.floatright { float: right; }
	.floatleft { float: left; }

	.clearboth {	clear: both; }
	.clear {	clear: both; }
	.clearleft {	clear: left; }
	.clearright { clear: right; }

/*	END Floats			*
*********************************/

/********************************
*	Lists 
		(lists do not have bullets or numbers by default.  
		These classes make the list have bullets or numbers.				 		
*/

	ul.listdisplay , ul.listdisplay li, ol.listdisplay ul, ol.listdisplay ul li {
		list-style: disc;
		list-style-type: disc;
		}
	ol.listdisplay , ol.listdisplay li, ul.listdisplay ol, ul.listdisplay ol li {
		list-style: decimal;
		list-style-type: decimal;
		}		
	.listdisplay, .listdisply li {
		margin: 0.2em 0 0.2em 1em;
		}
		.listdisplay li li {
			margin-left: 2em;
			}

/*	END Lists			*
*********************************/

/********************************
*	General Table Styles 		*/

table {
	border-right-color: #ccc;
	border-right-style: solid;
	border-right-width: 1px;
	border-top-color: #ccc;
	border-top-style: solid;
	border-top-width: 1px;
	}
	table td, table th {
		border-bottom-color: #ccc;
		border-bottom-style: solid;
		border-bottom-width: 1px;
		border-left-color: #ccc;
		border-left-style: solid;
		border-left-width: 1px;
		padding: 3px;
		text-align:left;
		vertical-align:top;
		}
	table th {
		font-weight: bold;
		background-color: #ccc;
		border-bottom-color: #333;
		border-left-color: #999;
		}
		
/*	END General Table Styles	*
*********************************/

/********************************
*	Form Validation Styles 		*/

form .error input, .FormError {
	background-color:#FFCCCC;
	border:2px #ff3300 solid;
	padding:5px;
}

.ErrorElement {
	display: inline-block;
}

/*	END Form Validation Styles	*
*********************************/




/********************************
*	Banner Styles 		*/

.bannerimg {
	height: auto;
	margin: 5px auto;
	padding: 0;
	text-align:center;
	width: auto;
	}
	.bannerimg img {
		margin: 0 auto;
		}
	html#range_0 .bannerimg {
		text-align:left;
		}
.banner {
	color: #000;
	font-weight: normal;
	margin: 0;
	overflow: visible;
	padding: 0;
	text-align: left;
	width: 100%;
	}
	html#range_0 .banner {
		display: none;
		height: 0;
		margin:0;
		padding:0;
		}
	.banner h1 {
		border: none;
		display: block;
		font-size: 2.2em;
		height:auto;
		margin: 0;
		padding: 15px 0;
		text-align: left;
		}
		html#range_1 .banner h1 { 
			font-size: 1.6em; 
			padding: 10px 0 5px 0; 
			}
	.banner h2 {
		border-bottom: none;
		font-size: 1.4em;
		margin: 0;
		padding: 0;
		text-align: left;
		}
		html#range_1 .banner h2 { font-size: 1.0em; }

/*	END Banner					*
*********************************/

/********************************
*	Horizontal Nav Bar 			*/

.menuwrapper .mainnav {
	height: auto;
	margin: 0 auto;
	padding: 0;
	}
	html#range_0 .menuwrapper .mainnav {
		clear: both;
		height: auto;
		}
	.menuwrapper .mainnav ul {
		background-image:url('/static/img/buttongradient.png');
		background-position: 50% 50%;
		background-repeat:repeat-x;
		border-left-color: #999;
		border-left-style: solid;
		border-left-width: 1px;
		border-right-color: #999;
		border-right-style: solid;
		border-right-width: 1px;
		display: block;
		margin: 0;
		padding: 0;
		}
		.menuwrapper .mainnav ul li {
			border-right-color: #999;
			border-right-style: solid;
			border-right-width: 1px;
			display: inline-block;
			margin: 0 -4px 0 0 ;
			padding: 0;
			}
			.menuwrapper .mainnav ul li a,
			.menuwrapper .mainnav ul li a:link,
			.menuwrapper .mainnav ul li a:active,
			.menuwrapper .mainnav ul li a:visited,
			.menuwrapper .mainnav ul li a:focus,
			.menuwrapper .mainnav ul li a:hover {
				color: #fff;
				border:none;
				display: block;
				margin: 0;
				padding: 4px 8px 4px 8px;
				text-align: center;
				text-decoration: none;
				width: auto;
				}
				.menuwrapper .mainnav ul li a:hover {
					background-color: #333;
					}
/*	END Horizontal Nav Bar		*
*********************************/

/********************************
*	Aside navigation 			*
*	and sidebar Sections 		*/

.navigation {
	line-height: 1em;
	}
	.navigation .nav_title {
		background-color: #666;
		color: #FFFFFF;
		padding:5px;
		}
	.navigation li {
		border: none;
		font-size: 1em;
		font-weight: normal;
		padding: 2px;
		}
		.navigation  li:hover{
			background-color: #efefef;
			}
		.navigation li a{
			text-decoration: none;
			}
		.navigation li a:link, .navigation li a:visited, .navigation li a:focus, .navigation li a:active {
			font-weight: normal;
			padding-top: 0px;
			padding-bottom: 0px;
			}
			.navigation  li a:hover {
				background-color: #efefef;
				text-decoration: none;
				}

.sidebar{
	margin-bottom: 15px;
	}
	html#range_0 .sidebar {
		clear:both;
		}
	.sidebar .section {
		margin-bottom: 10px;
		padding-bottom: 10px;
		}
	.sidebar .section div, .sidebar .section p {
		clear: both;
		}
	.sidebar .section .section_title {
		font-weight: bold;
		margin: 0 0 10px 0;
		/* padding: 5px 10px; */ /* this padding is only necessary if there is a background color on this title */
		text-align: left;
		}
		.sidebar .section .section_title a:link,
		.sidebar .section .section_title a:visited,
		.sidebar .section .section_title a:active,
		.sidebar .section .section_title a:focus,
		.sidebar .section .section_title a:hover {
			color: #fff;
			}
	.sidebar .section ul {
		list-style-type: none;
		margin:0px;
		padding:0px;
		}
		.sidebar .section li {
			border-color: #ccc;
			border-bottom-width: 1px;
			border-bottom-style: dashed;
			padding: 2px;
			}
			.sidebar .section li a{
				line-height: 1.5em;
				text-decoration: none;
				}
				.sidebar .section li:hover{
					background-color: #efefef;
					}
				.sidebar .section li a:hover {
					color: #000000;
					text-decoration: none;
					}
					
/*	END Aside navigation 		*
 *	and sidebar Sections 		*
*********************************/	

a.btn {
	display: block;
    width: auto;
    right: 0;
    top: 10px;
    height: auto;
    color: #f3f4f6;
    background-color: #67696E;
    border: 0px solid #727880;
    border-radius: 4px;
    -moz-border-radius: 4px;
    display: inline-block;
    font-size: 1em;
    font-weight: normal;
    letter-spacing: .1em;
    text-transform: none;
    margin: 0.5em 0.5em 0.5em 0;
    padding: 0.4em 0.5em 0.3em;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    cursor: pointer;
}