/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, form {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  /*zoom:1;*/
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
html {
    height: 100%;
	padding:0;
    margin-bottom:1px;
}
body {
    color: #534A40;
    font-family: Verdana, Arial, sans-serif;
    /* font-family: Helvetica, Arial, sans-serif; */
    font-size: 12px;
	background-color:#ffffff;
	background-image:url(images/header_slice.jpg);
	background-repeat:repeat-x;
	padding:0;
	background-position:top;
}
input,textarea,select {
	border: 1px #A5ACB2 solid;
	color: #534A40;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
}
a img{
	border:none;
}
a {
	color:#bf1e2e;
	font-weight:bold;
	text-decoration:none;
	cursor: pointer;
}
a:hover{
	text-decoration:underline;
}
h1{
	font-size:21px;
	font-weight:bold;
	color:#bf1e2e;
	line-height:normal;
}
h2 {
	font-size:16px;
}
h3 {
	font-size:14px;
}
hr{
	color:#21448f;
	background-color:#21448f;
	height:1px;
	padding:0;
	margin:0;
}
#wrapper{
	margin-left:auto;
	margin-right:auto;
	width:960px;
	padding-bottom:10px;
	background-color:#FFFFFF;
	background-image:url(images/wrapper_bg.jpg);
	background-position:top left;
	background-repeat:no-repeat;
}
#logo{
	float:left;
}
#menu{
	margin-top:15px;
	float:left;
	margin-left:10px;
	display:inline;
	line-height:normal;
	width: 800px;
}
#strapline{
	float:left;
	margin-top: 10px;
}
#mainContent{
	padding-top:30px;
	padding-left: 12px;
	padding-bottom: 20px;
	line-height:18px;
}
#mainContent ul {
	margin-left: 0;
padding-left: 0;
margin-bottom:0;
padding-bottom:0;
margin-top:0;
padding-top:0;
list-style: none;
}
#mainContent li{
	padding-left: 20px;
	padding-bottom:10px;
background-image: url(images/bullet.gif);
background-repeat: no-repeat;
background-position: 0 4px;
}
#mainContent ol{
	padding:0;
	margin:0 0 0 20px;
}
#mainContent ol li {
	background-image:none;
	padding-left:0;
}
#mainCol{
	width:700px;
	float: left;
	margin-right:20px;
}
#rightCol{
	float:left;
	width:225px;
}
#rightCol h1{
	font-size:14px;
}
#toolkitButton{
	margin-top:20px;
}
#acevo{
	margin-top:20px;
}
#footer{
	padding-top:15px;
	border-top:1px solid #21448f;
	font-size:12px;
}
#footerLinks{
	float:left;
}
#footerLinks a{
	color:#21448f;
	font-weight:normal;
}
#footer3wise{
	float:right;
}
.boldRed{
	font-weight:bold;
	color:#bf1e2e;
}
.clear{
	clear:both;
}
.tableBorder{
	border-collapse:collapse;border:1px solid #ccc;}
.tableBorder td{
	border-collapse:collapse;border:1px solid #ccc;padding:10px;}

.floatLeft{
	float:left;
	margin-right:10px;
	margin-bottom:10px;
}
.floatRight{
	float:right;
	margin-left:10px;
	margin-bottom:10px;
}
table{
	border-collapse:collapse;
}
table p{
	margin:0;
}