body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	margin: 0;
	padding: 0;
	color: #000;
}
.page-holder{
	width:100%;
	background-color: #000;
	background: url("images/BodyBlackBG.jpg") no-repeat top center;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6  , p{
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	color: #000;
}
h1 {
	font-size: 1.5em;
	padding: 0 15px 0 15px;
	margin: 0 20px 0 20px;
}
h2 {
	font-size: 1.0em;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 940px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	background: #fff;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background-color: #000;
}
.header h1 {
	position: relative;
	display: block;
	width: 170px;
	left: 0px;
	top: 0px;
	color: #fff;
	font-size: 1.2em;
	margin: 0px 0px 0px 10px;
	padding: 10px 0 0 10px;
}
.header h2 {
	position: relative;
	text-align: right;
	top: -10px;
	color: #fff;
	font-size: 0.8em;
	margin: 0px 0px 0px 50px;
}
/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

.content {
	padding: 10px 0;
	background: #ccc;
}
.content a:link {
	color: #cc9300;
	font-weight: bolder;
	font-size: 0.85em;
}
.content a:visited {
	color: #cc9300;
	font-weight: bolder;
	font-size: 0.85em;
}
.content a:hover {
	color: orange;
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	background-color: #666;
	color: #fff;
	text-align: center;
	font-size: 0.7em;
	-webkit-border-radius: 0px 0px 15px 15px;
	-moz-border-radius: 0px 0px 15px 15px;
	border-radius: 0px 0px 15px 15px;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
#copyright {
	color: #fff;
}
#address {
	color: #fff;
}
#phone {
	color: #fff;
}
.borderbox {
	width: 800px;
	background: #fff;
	margin: auto;
	padding: 10px;
	border: solid 1px orange;
	-webkit-border-radius: 0px 0px 15px 15px;
	-moz-border-radius: 0px 0px 15px 15px;
	border-radius: 0px 0px 15px 15px;
/*
  -moz-box-shadow:    0px 3px 5px 6px #ccc;
  -webkit-box-shadow: 0px 3px 5px 6px #ccc;
  box-shadow:         0px 0px 5px 6px #ccc;
*/
  text-align: justify;
}
.topbox {
	width: 800px;
	height: 20px;
	background: orange;
	margin: auto;
	padding: 10px;
/*	border: solid 1px transparent; */
	-webkit-border-radius: 15px 15px 0px 0px;
	-moz-border-radius: 15px 15px 0px 0px;
	border-radius: 15px 15px 0px 0px;
}


/* navigation menu */
#topnav {
	width: 940px;
	font-size: 0.6em;
	background: #333;
}
#topnav ul
{
	list-style-type:none;
	margin:0;
	padding:0;
	overflow:hidden;
}
#topnav li
{
	float:left;
}
#topnav a:link,#topnav a:visited
{
	display:block;
	width:80px;
	font-weight:bold;
	background-color:#333;
	color: #ccc;
	text-align:center;
	padding:4px;
	text-decoration:none;
	text-transform:uppercase;
}
#topnav a:hover, #topnav a:active
{
	color:#fff;
	background-color:#666;
}
#sitemap {
	margin: 0 0 0 100px;
	background: transparent;
	width: 400px;
}
#sitemap ul {
	margin: 0 0 0 10px;
}
#sitemap li {
	margin: 5px 0 0 20px;
}
#sitemap dt {
	margin: 5px 0 0 20px;
}
#sitemap a {
	color: black;
	font-size: 0.8em;
	font-weight: normal;
	text-decoration: none;
}
#sitemap a:hover {
	text-decoration: none;
	color: orange;
}
#contactform {
	background: transparent;
}
#contactform fieldset {
	width: 350px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	border: solid 1px orange;
}
#contactform legend {
	margin: 0 10px 0 10px;
	padding: 0 10px 0 10px;
}
#contactform label {
	display: block;
	float:left;
	width: 100px;
	text-align: right;
	padding-right: 10px;
	background: transparent;
}
#contactform label[for='security_code'] {

}
#contactform #captchaimg {
	margin-left: 100px;
}
#contactform label[for='message']{
	margin: auto;
	text-align: left;
}
#contactform input {
	float: left;
	width: 150px;
}
#contactform textarea {
	margin-left: 50px;
}
#contactform br {
	clear: both;
}
#contactform .err {
	color: red;
}
#contactform #submit {
	margin: 0 0 0 120px;
}
#whois {
	background: transparent;
	margin: 10px 0 10px 30px;
}
#whois ul {
	background: transparent;
	list-style-type: none;
}
#whois li {
	background: transparent;
}
#errors {
	color: red;
}
#whoisform {
	
}
#whoisform fieldset {
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	border: solid 1px orange;
}
#whoisform label {
	float: left;
	display: block;
	text-align: right;
	padding: 0 10px 0 0;
	width: 150px;
	background: transparent;
}
#whoisform br {
	clear: both;
}
.errors {
	color: red;
	background: black;
	padding: 5px 0 5px 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
}
#crumbs {
	font-size: 0.72em;
	background: #333;
	padding-left: 10px;
}
#crumbs ul
{
	list-style-type:none;
	margin:0;
	padding:0;
	overflow:hidden;
}
#crumbs li
{
	float:left;
}
#crumbs a:link,#crumbs a:visited
{
	display:block;
/*	width:80px; */
	font-weight:bold;
	background-color:#333;
	color: orange;
	text-align:center;
	padding:4px;
	text-decoration:none;
	text-transform:uppercase;
}
#crumbs a:hover, #crumbs a:active
{
	color:#fff;
	background-color:#666;
}

.thingray {
	border-top: solid orange thin;
}

.partition50 {
	float: left;
	display: block;
	width: 375px;
	background: white;
	border: thin black solid;
	margin: 5px auto 0 5px;;
	padding: 5px 0 5px 0;
	height: 300px;
	overflow: auto;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
blockquote {
	margin: 0 0 0 300px;
}
