/* @group Default CSS Layout */


body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}

#wrapper {
	margin: 0 auto;
	width: 985px;
}

#content {
	float: left;
	color: #333333;
	background: #FFFFFF;
	min-height: 350px;
	width: 524px;
	display: inline;
}

#header {
	color: #333;
	width: 985px;
	float: left;
	height: 267px;
	background: #FFFFFF;
}

#breadcrumbs {
	color: #424243;
	width: 985px;
	float: left;
	height: 40px;
	background: #FFFFFF;
	font-size: 10px;
}

#footer {
	width: 985px;
	height: 60px;
	clear: both;
	color: #fff;
	background: #707070;
}

#leftcolumn {
	color: #333;
	background: #FFFFFF;
	min-height: 350px;
	width: 227px;
	float: left;
}

#rightcolumn {
	color: #333;
	background: #FFFFFF;
	min-height: 350px;
	width: 234px;
	float: left;
}

.links a {
	color: #bd0000;
	text-decoration: underline;
}

.links a:hover {
	color: #bd0000;
	text-decoration: none;
}

.darkLinks a {
	color: #231f20;
	text-decoration: none;
}

.darkLinks a:hover {
	color: #231f20;
	text-decoration: underline;
}

A.greyLinks {
	color: #868686;
	text-decoration: none;
}

A.greyLinks:HOVER {
	color: #868686;
	text-decoration: underline;
}

A.quickLinks {
	color: #505050;
	text-decoration: none;
}

A.quickLinks:HOVER {
	color: #505050;
	text-decoration: underline;
}

A.redLinks {
	color: #bd0000;
	text-decoration: none;
}

A.redLinks:HOVER {
	color: #bd0000;
	text-decoration: underline;
}

hr {
	color: #afafaf;
	border: 0px;
	border-bottom: 1px solid #afafaf;
	margin: 20px 0px 20px 0px;
}

.underTitleHR {
	width: 524px;
	border-bottom: 1px solid #afafaf;
	margin-bottom: 20px;
	margin-top: 10px;
}

input.button {
	padding-left: 10px;
	padding-right: 10px;
	height: 24px;
	line-height: 14px;
	font-size: 11px;
	border: 1px solid #3d3d3d;
	background: #a6a6a6;
	color: #ffffff;
	float: none;
	font-weight: bold;
}

input.button:hover {
	background: #dbdbdb;
	color: #ffffff;
}

.error {
	color: #bd0000;
}

/* @end */

/* @group Footer */

A.smlwhtlnk {
	color: #fff;
	font-size: 10px;
	text-decoration: none;
}

A.smlwhtlnk:HOVER {
	color: #fff;
	font-size: 10px;
	text-decoration: underline;
}

A.smlgrylnk {
	color: #b4b4b4;
	font-size: 10px;
	text-decoration: none;
}

A.smlgrylnk:HOVER {
	color: #b4b4b4;
	font-size: 10px;
	text-decoration: underline;
}

#footerlinksleft {
	color: #fff;
	font-size: 10px;
	margin-left: 18px;
	margin-top: 25px;
	float: left;
}

#footerlinksright {
	color: #fff;
	font-size: 10px;
	margin-right: 18px;
	margin-top: 25px;
	float: right;
}

/* @end */

/*Accordian menu CSS*/

.arrowlistmenu {
	/*width of accordion menu*/
	width: 196px;
}

.arrowlistmenu .menuheader {
	/*CSS class for menu headers in general (expanding or not!)*/
	font: bold 12px Arial;
	color: #979797;
	margin-bottom: 8px;
	/*bottom spacing between header and rest of content*/
	margin-top: 8px;
	/*bottom spacing between header and rest of content*/
	border-bottom: 1px solid #d6d8d8;
	padding: 4px 0 12px 22px;
	/*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
}

.arrowlistmenu .menuheader:HOVER {
	text-decoration: underline;
}

.arrowlistmenu .openheader {
	/*CSS class to apply to expandable header when it's expanded*/
	color: #bd0000;
}

.arrowlistmenu ul {
	/*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 4px;
	cursor: hand;
	cursor: pointer;
	/*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li {
	padding-top: 4px;
	/*bottom spacing between menu items*/
}

.arrowlistmenu ul li .opensubheader {
	/*Open state CSS for sub menu header*/
	background: no-repeat url(../images/plus_sign.gif) 9% 50% !important;
}

.arrowlistmenu ul li .closedsubheader {
	/*Closed state CSS for sub menu header*/
	background: no-repeat url(../images/plus_sign.gif) 9% 50% !important;
}

.arrowlistmenu ul li a {
	/*for the submenu items*/
	color: #979797;
	display: block;
	padding: 2px 0;
	padding-left: 29px;
	/*link text is indented 19px*/
	text-decoration: none;
	font-weight: normal;
	font-size: 12px;
}

.arrowlistmenu ul li a:visited {
	color: #979797;
}

.arrowlistmenu ul li a:hover {
	/*hover state CSS*/
	background-color: #F3F3F3;
}

.arrowlistmenu ul li .subexpandable {
	margin-left: 11px;
}

.arrowlistmenu ul li .subexpandable2 {
	margin-left: 11px;
}

.arrowlistmenu ul li a.subexpandable:hover {
	/*hover state CSS for sub menu header*/
	background-color: #e9e0e0;
}

.arrowlistmenu ul li a.subexpandable2:hover {
	/*hover state CSS for sub menu header*/
	background-color: #e9e0e0;
}

/*Accordian Menu CSS End*/