@charset "UTF-8";
/* CSS Document */
* {
	margin:0;
	padding:0;
} 

/* must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body, #wrap {
	height: 100%;
	background-color: #313840;
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
	font-weight: normal;
	background-image: url(../img/BGs/BG_header.png);
	background-repeat: repeat-x;
}

body > #wrap {
	height: auto; min-height: 100%;
}

#main {
	padding-bottom: 150px;
}  /* must be same height as the footer */
#header {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
}
#base {
	height: 20px;
	width: 960px;
	background-image: url(../img/BGs/BG_Footer.png);
	background-repeat: no-repeat;
	background-position: center top;
}

#footer {
	position: relative;
	margin-top: -150px; /* negative value of footer height */
	height: 150px;
	clear:both;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
} 

/* CLEAR FIX*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */
#contentArea {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	background-color: #FFF;
	background-image: url(../img/BGs/BG_Content.png);
	background-repeat: repeat-y;
	background-position: center;
}
a:link {
	color: #B10E16;
	text-decoration: none;
}
a:visited {
	color: #39C;
	text-decoration: none;
}
a:hover, a:active {
	color: #B10E16;
	text-decoration:underline;
}
h1 {
	font-size: 33px;
	margin-bottom: 10px;
	font-weight: normal;
	letter-spacing: -0.05em;
}
h2 {
	font-size: 22px;
	font-weight: normal;
	margin-bottom: 10px;
	line-height: 1.1;
}
h3 {
	font-size: 17px;
	font-weight: normal;
}
h4 {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 12px;
	font-weight: normal;
}
p {
	font-size: 14px;
	color: #333;
	line-height: 1.3;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

li {
	font-size: 14px;
	list-style-position: outside;
	color: #333;
}
p.li {
	font-size: 14px;
	margin-left:20px;
}
.colFull {
	width: 920px;
}
.colLeft {
	width: 630px;
	float: left;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-left: 50px;
	padding-right: 40px;
}
.colRight {
	float: left;
	width: 220px;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-right: 20px;
	font-family:Arial, Helvetica, sans-serif;
}
.colFullSpan {
	width: 100%;
	clear: left;
}
.borderThin {
	border: 5px solid #DCDCDC;
}
.lineHorz {
	background-image: url(../img/BGs/BG_HorzLine.png);
	background-repeat: repeat-x;
	background-position: center center;
	width: 630px;
	height: 30px;
	margin-top: 3px;
}
.lineHorzSmall {
	background-image: url(../img/BGs/BG_HorzLine.png);
	background-repeat: repeat-x;
	background-position: center center;
	width: 200px;
	height: 30px;
	margin-top: 3px;
}
.textRed {
	color: #B10E16;
}
.textGrey {
	color: #999;
}
.banner  {
	 background: #e3e3e3;
	 background: -moz-linear-gradient(top, #F2F2F2, #CCC);
	 background: -webkit-gradient(linear, left top, left bottom, from(#F2F2F2), to(#CCC));
	 
	 zoom: 1;
   filter: progid:DXImageTransform.Microsoft.Shadow(color='#292929', Direction=135, Strength=2);

	 
	 -ms-filter: “progid:DXImageTransform.Microsoft.gradient(startColorstr=#e3e3e3, endColorstr=#c8c8c8)”;
	 
	 padding: 4px 0px 4px 30px;
	 margin-left: -30px;
	 margin-top: 0;
	 margin-bottom: 20px;
	 position: relative;
	 width: 630px;

	-moz-box-shadow: 1px 1px 3px #666;
	-webkit-box-shadow: 1px 1px 3px #666;
       box-shadow: 1px 1px 3px #666;

	color: #454545;
	text-shadow: 0 1px 0 white;
}

.arrow {
	 width: 0; height: 0;
	 line-height: 0;
	 border-left: 20px solid transparent;
	 border-top: 10px solid #666;
	 top: 100%;
	 left: 0;
	 position: absolute;
}

