/* errors.css */
/* Lightweight stylesheet to be used with error pages. */

body {
	font-family: "Century Gothic", verdana, helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	background-color: #bfbfbf;
	background-image: url("../img/bg_body.png");
	background-repeat: repeat-x;
	margin-bottom: 35px;
}

a {
	color: #000;
}
a:hover {
	color: #c90100; /* Give user feedback on hover */
}

h1 {
	color: #c90100;
	font-size: 16px;
}

ul {
	line-height: 18px;
}

img {
	border: none;
}
#container {
	border: 1px solid #ddd;
	margin: 0px auto;
	width: 800px;
}

/* Header Components */
#header, .topnav-container {
	background-color: #fff;
	height: 60px;
	padding: 20px;
}
#headerSeparator {
	background-color: #333;
	height: 35px;
}
.buyonline {
	color: white;
	padding: 8px 70px;
}

/* Search Components */
#searchbox {
	float: right;
	border: 1px solid #333;
	margin: 8px 18px 0px 0px;
}
input.search {
	font-size: 12px;
	padding: 3px;
	float: left;
}
input.searchbtn {
	float: left;
	margin-top: 0px;
}

/* Main content */
#content {
	border-bottom: #c90100 20px solid;
	background-image: url("../img/bg_body.png");
	background-repeat: repeat;
	padding: 20px;
	position: relative;
}

/* Info boxes */
.infoBox {
	float: left;
	position: relative;
	width: 48%;
}
.infoBox > fieldset {
	background-color: white;
	
	/* Rounded corners */
	-moz-border-radius: 8px; /* Firefox */
	-webkit-border-radius: 8px; /* Safari, Chrome */
	border-radius: 8px; /* CSS3 */
	behavior: url(/site/css/border-radius.htc); /* IE */
}

legend {
	font-size: 12px;
	font-weight: bold;
}

.infoColumn {
	float: left;
	height: 300px;
}
.infoColumn.first {
	border-bottom: 1px dotted #ccc;
	margin-bottom: 10px;
	width: 100%;
}