/*style.css sheet*/

/*BASE STYLES FOR ELEMENTS*/
html {
	overflow-y: scroll;
}

body {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-weight: 100;
	background-color: #f2f2f2;
	color: #3c060a;
}

h1, h2, h3, h4, h5, h6 {
	display: block;
	padding: 10px 0px;
	font-weight: 100;
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 42px;
}

h3 {
	font-size: 36px;
}

h4 {
	font-size: 28px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 12px;
}

p {
	font-size: 14px;
	line-height: 20px;
	font-weight: 300;
	padding: 15px 0px;
}

.textCenter {
	text-align: center;
}

.clearFix {
	clear: both;
}



/*SPECIFIC STYLES FOR ELEMENTS*/

.headerWrapper, .bodyWrapper, .footerWrapper {
	width: 100%;
}

.headerContainer, .bodyContainer, .footerContainer {
	width: 1040px;
	margin: 0 auto;
	padding: 0px 20px;
}

.footerWrapper {
	background-color: #333;
	color: #f8f8f8;
	border-top: 7px solid #000;
	position: relative;
	top: -5px;
	z-index: 999;
}

.footerContainer {
	padding: 20px 0px;
}


.headerLogo {
	margin: 15px 0px 0px;
	display: inline-block;
}

.navContainer {
	display: inline-block;
	line-height: 85px;
	float: right;
}

.navContainer ul {
	list-style-type: none;
}

.navContainer ul li {
	float: left;
	display: inline-block;
	padding: 0px 30px;
	font-weight: 500;	
}

.pageList {
	margin-left: 30px;
	line-height: 20px;
}

.pageList li {
	margin: 10px 0px;
	font-weight: 300;
}

.bigImageContainer {
	text-align: center;
}

.tableCellLeft {
	height: 60px;
	font-weight: 700;
	padding-left: 10px;
}

.tableCellCenter {
	height: 60px;
	font-weight: 300;
	padding-left: 10px;
}

.tableHeaderPos {
	padding-top: 30px;
}

.tableImageBox {
	height: 1px;
	float: left;
	position: relative;
	top: -47px;
}

.tableImageBox2 {
	height: 1px;
	float: left;
	position: relative;
	top: -77px;
}







/*ANCHOR TAG CUSTOMIZATIONS*/
.navContainer ul li a, .footerContainer a {
	text-decoration: none;
	color: #3c060a;
}

.navContainer ul li a:hover, .footerContainer a:hover {
	text-decoration: none;
	color: #b0151b;
}

.buttonContainer {
	margin: 0 auto;
	text-align: center;
	padding: 15px 0px;
}

.myButton {
	background-color: #ec1c23;
	height: 35px;
	line-height: 35px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 5px 15px;
	color: #ededed;
	text-align:center;
	font-weight: 300;
	border-bottom: 2px solid #333;
	text-decoration: none;
}

.myButton:hover {
	background-color: #e01a21;
	border-bottom: 1px solid #666;
	cursor: pointer;
	text-decoration: none;
	color: #f8f8f8;
}

.footerWrapper a {
	color: #f8f8f8;
}

.footerWrapper a:hover {
	color: #f8f8f8;
	text-decoration: underline;
}

.containerColumn {
	padding: 0px 10px;
}

.columnList {
	margin-left: 25px;
	list-style-type: dot;
	margin-bottom: 20px;
}

.columnList li {
	line-height: 25px;
	font-weight: 300;
}










/*FORM ITEMS*/

.formContainer {
	margin-left: 15px;
}

.formItemName {
	font-size: 16px;
	font-weight: 300;
	margin: 10px 0px;
}

.formItemInput {
	width: 100%;
}

.formItemInputSubmit {
	width: 100%;
	margin-bottom: 20px;
}

.formItemInput input {
	width: 85%;
	margin-bottom: 20px;
}

input[type=submit] {
	width: auto;
	margin-top: 20px;
}