/* CSS Document */

*,h1,h2,p,span,div{
	margin:0px;
	padding:0px;
	border:none;
	text-decoration:none;
	font:inherit;
	font-size:inherit;
	vertical-align:top;
}

html{
	background:#363636;
	font-size:13px;
}

div.content{
	position:relative;
	width:800px;
	left:50%;
	margin-left:-400px;
	font-family:Arial, Helvetica, sans-serif;
	background:#FFF;
	margin-top:0px;
	margin-bottom:40px;
	padding:0px 4px 4px 4px;
}

.serif{
	font-family:Georgia, "Times New Roman", Times, serif;
}

.shadow {
	-moz-box-shadow: 0px 0px 24px #000;
	-webkit-box-shadow: 0px 0px 24px #000;
	box-shadow: 0px 0px 24px #000;
}
.transBg{
	background:rgb(50,50,50);
	background:rgba(50,50,50,0.5);
}
.rounded{
	-moz-border-radius: 4px; /* Firefox */
	-webkit-border-radius: 4px; /* Safari and Chrome */
	border-radius: 4px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */
}
.roundedTop{
	-moz-border-radius: 4px 4px 0px 0px; /* Firefox */
	-webkit-border-radius: 4px 4px 0px 0px; /* Safari and Chrome */
	border-radius: 4px 4px 0px 0px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */
}

.roundedBottom{
	-moz-border-radius: 0px 0px 4px 4px; /* Firefox */
	-webkit-border-radius: 0px 0px 4px 4px; /* Safari and Chrome */
	border-radius: 0px 0px 4px 4px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */
}
.roundedTopRight{
	-moz-border-radius: 0px 4px 0px 0px; /* Firefox */
	-webkit-border-radius: 0px 4px 0px 0px; /* Safari and Chrome */
	border-radius: 0px 4px 0px 0px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */
}
.roundedTopLeft{
	-moz-border-radius: 4px 0px 0px 0px; /* Firefox */
	-webkit-border-radius: 4px 0px 0px 0px; /* Safari and Chrome */
	border-radius: 4px 0px 0px 0px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */
}
.roundedBottomLeft{
	-moz-border-radius: 0px 0px 0px 4px; /* Firefox */
	-webkit-border-radius: 0px 0px 0px 4px; /* Safari and Chrome */
	border-radius: 0px 0px 0px 4px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */
}

.redBg{
	background:#B20E10;
}

.red{
	color:#B20E10;
}

.black{
	color:#000;
}

.white{
	color:#FFF;
}

.dark{
	color:#363636;
}

.contactTable td{
	vertical-align:top;
	padding:4px 0px;
}

li{
	margin-left:14px;
	line-height:14px;
	margin-bottom:14px;
}

.grey{
	color:#363636;
}

.greyBg{
	background:#ededed;
}
.darkGreyBg{
	background:#888888;
}
.darkerGreyBg{
	background:#363636;
}

.small{
	font-size:10px;
}
.medium{
	font-size:13px;
}
.big{
	font-size:16px;
}

.submit{
	padding:4px;
	background:#333;
	color:#FFF;
	cursor:pointer;
}
.submit:hover{
	padding:4px;
	background:#B20E10;
	color:#FFF;
}

a{
	cursor:pointer;
	text-decoration:none;
	color:#A31027;
}
a:hover{
	color:#B20E10;
}

a.grey:hover{
	color:#B20E10;
}

a.navLink{
	text-decoration:none;
	color:inherit;
}
div.navDiv{
	cursor:pointer;
	padding: 4px 10px;
	width:120px;
	margin-right:4px;
}
div.navDiv:hover{
	background:#B20E10;
}
div.subNavDiv{
	cursor:pointer;
	padding: 2px 10px;
	width:120px;
	margin-right:4px;
}
div.subNavDiv:hover{
	background:#F0F0F0;
	color:#000;
}

strong{
	font-weight:bold;
}
em{
	font-style:italic;
}