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

html, body, div, span, object, blockquote, pre,
abbr, acronym, address, big, cite, code, dfn, em, font, img, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, fieldset, form, label, legend,
caption, tr, th, td {
	margin: 0;
	padding: 2;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}

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

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
}

body table {
	margin: 0;
	padding: 2;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
	border-collapse: collapse;
	border-spacing: 0;
}

/*
 * DEFAULT STYLES
 * 
 */
body {
	color: #333333;
	font-weight: normal;
	font-family: sans-serif;
}

#content {
	width: 97%;
	margin-left: 10px;
	margin-right: 10px;
	white-space: wrap;
}

/*removes horizontal overflow on certain devices*/
body div#wrap {
	width: 100%;
	overflow: hidden;
	position: absolute;
	left: 1;
	right: 1;
	padding: 0;
}
/*
 * CONTAINER BOXES
 * 
 */
body div.box p.box-text {
	border: 1px solid #D8D8D8;
	width: 90%;
	margin: 0 auto 0.6em auto;
	padding: 0.4em 0.4em;
	background-color: #F6F6F6;
}

/*
 * 2. LISTS
 * 
 */
/*
 * LIST WITH ICON
 * 30 x 30 graphic
 */
ul.list-graphical {
	list-style-type: none;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: -10px;
	margin-right: -10px;
	border-bottom: 1px solid #D5D8D8;
	color: #333333;
}

ul.list-graphical li {
	background: #F6F6F6 url(../images/sprite-list.png) repeat-x top;
	display: block;
	line-height: 40px;
}

ul.list-graphical a {
	display: block;
	padding-left: 50px;
	background: transparent url(../images/img-30x30-icon.png) no-repeat 7px top;
	height: 40px;
	text-decoration: none;
}
ul.list-graphical a:hover {
	background: transparent url(../images/img-30x30-icon.png) no-repeat 7px bottom;
	color: #FFFFFF;
	outline: none;
}

ul.list-graphical li:hover {
	background: #82CB20 url(../images/sprite-list.png) repeat-x 0px -50px;
}



/*
 * ALTERNATE GRAPHIC
 * 40 x 40 graphic
 */
/*---add this class if using a 40x40 graphic---*/
ul.list-graphical a.photo {
	display: block;
	padding-left: 50px;
	background: transparent url(../images/img-40x40.png) no-repeat 0px 0px;
	height: 40px;
}
/*
 * SIMPLE STYLED LIST BOX
 * 
 */
/*note: line height adjusts height*/
ul.list {
	list-style-type: none;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: -10px;
	margin-right: -10px;
	border-bottom: 1px solid #D5D8D8;
	background: #F6F6F6 url(../images/sprite-list.png) repeat-x top;
	color: #333333;
	line-height: 40px;
	white-space: nowrap;
}
ul.list li {
	background: #F6F6F6 url(../images/sprite-list.png) repeat-x top;
	line-height: 40px;
	display: block;
	overflow: hidden;
	white-space: nowrap;
}
ul.list a {
	padding-left: 10px;
	display: block;
	height: 40px;
	background: url(../images/sprite-open.png) no-repeat right top;
	text-decoration: none;
	overflow: hidden;
	white-space: nowrap;
}
ul.list li:hover {
	background: #82CB20 url(../images/sprite-list.png) repeat-x 0px -50px;
	color: #FFFFFF;
}

ul.list a:link, ul.list a:visited  {
	color: #333333;
}
ul.list a:hover {
	color: #FFFFFF;
	background: url(../images/sprite-open.png) no-repeat right bottom;
	outline: none;
}
ul.list a:active {
	color: #990000;
}
/*
 * ACCORDION DEFINITION LIST
 * 
 */
dl.list-accordion {
	margin-left: -10px;
	margin-right: -10px;
	border-bottom: 1px solid #D5D8D8;
}

dl.list-accordion dt{
	padding-left: 10px;
	line-height: 40px;
	height: 40px;
	
}
dl.list-accordion dd {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 0.5em;
	padding-bottom: 0.4em;
	line-height: normal;
}
/*definition term*/
dl.list-accordion dt {
	background: #F6F6F6 url(../images/sprite-list.png) repeat-x top;
}

dl.list-accordion dt.expanded {
	border-bottom: 1px solid #D5D8D8;
}

dl.list-accordion dt.collapsed {
	border-bottom: none;
}
/*container for expand/collapse icon*/
dl.list-accordion dt span {
	width: 14px;
	height: 14px;
	margin-top: 12px;
	margin-right: 0.5em;
	display: block;
	float: left;
}
/*switches icon when expanded*/
dl.list-accordion dt.expanded span{
	background: url(../images/sprite-expand-collapse.png) no-repeat left bottom;
}
/*switches icon when collapsed*/
dl.list-accordion dt.collapsed span{
	background: url(../images/sprite-expand-collapse.png) no-repeat left top;
}

dl.list-accordion dt:hover {
	background: #82CB20 url(../images/sprite-list.png) repeat-x 0px -50px;
	color: #FFFFFF;
	cursor: pointer;
}
/*definition container*/
dl.list-accordion dd {
	background-color: #FFFFF;
	padding-left: 2em;
}
/*
 * IMAGE GRID
 * 
 */
ul.grid {
	width: 100%;
	margin: 0 auto;
}

ul.grid li {
	display: inline;
}
ul.grid li img{
	border: 1px solid #D8D8D8;
	padding: .2em .2em;
	margin-right: .4em;
	margin-bottom: .4em;
}

/*
 * HOME
 * 
 */
div.home {
	font-size: .9em;
	background: #F6F6F6 url(../images/img-home.png) no-repeat 10px center;
	border-top: 1px solid #D8D8D8;
	padding-left: 1.5em;
	padding-top: .3em;
	padding-bottom: .3em;
	margin-top: 0.5em;
	margin-bottom: 0em;
	margin-left: -10px;
	margin-right: -10px;
	clear: both;
}

div.home a {
	color: #535353;
	text-decoration: none;
	width: 100%;
	display: block;
}

#footer {
	background: #434343 url(../images/sprite-footer.png) repeat-x top;
	padding: .7em 0em;
	clear: both;
	height: 3em;
}

#footer p {
	color: #FFF;
	font-size: .8em;
	margin-left: 10px;
	margin-top: 0em;
	margin-bottom: 0em;
	padding: 0em;
}
strong {
	font-weight: bolder;
}
em {
	font-style: italic;
}
