@charset "utf-8";
body  {
	background: #000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
}
p {
	text-indent: 0;
	margin: 0 0 0.7em 0;
}
h2, h3, h4 , 

h1{
	margin-bottom: 0.2em;
}

ol {
	margin: 0 0 0 30px;
	padding: 0;
}
ol li {
	text-indent: 0;
	margin-bottom: 1em;
}
ul.spaced li {
	padding-bottom: 0.5em;
}


/*
img {
	position: relative;
	float: left;
}
*/

a img {
	border: 0;
	text-decoration: none;
}
a:link.ButtonLink, a:visited.ButtonLink { 
	text-decoration: none; 
	color: #000; 
	cursor: pointer; 
}
a:hover.ButtonLink { 
	background: #96F; 
	border-top: 2px solid #777; 
	border-right: 1px solid #777; 
	border-bottom: 1px solid #777; 
	border-left: 2px solid #777; 
}
#container {
	width: 770px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0  auto 10px auto; /* the auto margins (in conjunction with a width) center the page */
	/* border: 1px solid #000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 20px 0 0 0;
	background-color: #FFF;
	background-image: url(_images/background-blue-reverse.jpg);
	background-repeat: repeat-y;
} 
#header {
	/* background: #DDDD;  */
	padding: 0 10px 0 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin: 0 0 0 180px;
	color: #900;
	font: 100% "Times New Roman", Times, serif;
} 
#header h1 {
	margin: 0 0 0.5em 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	/* background: #EBEBEB; */ /* the background color will be displayed for the length of the content in the column, but no further */
	/* padding: 15px 10px 15px 20px; */
	padding: 15px;
	margin: 0;
}

#mainContent {
	margin: 0 0 0 180px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px 10px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

/* NAVIGATION */
#navbar h2 span { display: none; } /* change this for mobile devices? */
#navbar ul {
	margin: 0;
	padding: 0;
	text-indent: 0;
	list-style-type: none;
	font-size: 75%;
	font-weight: bold;
} 
#navbar li {
	margin-bottom: 0.75em;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
#footer {
	padding: 30px 0 30px 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	/* background:#DDDDDD; */
	text-align: center;
	margin: 0 0 0 180px;
	color: #900;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0 0 1em 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.txtindent p {
	text-indent: 2em;
}
.narrow {
	margin: 0 100px;
}

.border {
	border: 2px solid #000;
}

.floatright { /* 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: 0 0 10px 10px;
}
.floatleft { /* this class can be used to float an element left in your page */
	float: left;
	margin: 0 10px 10px 0;
}
.floatcenter { 
	display: block; 
	width: auto;
	margin: auto;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.clearright {
	clear: right;
	margin-top: 10px;
}
.orderimage {
	display: block;
	float: left;
	width: 150px;
	height: auto;
	clear: none;
	margin: 20px;
	text-align: center;
}

.caption { display: block; }

.orderimage h3 { color: #ff0033; }
/* Purple button 150 pixels wide */
.ButtonLink {
	display: block;
	text-align: center;
	padding: 2px 10px 1px 10px;
	color: #000;
	margin: 0 5px;
	background: #99F;
	border-top: 1px solid #999;
	border-right: 2px solid #777;
	border-bottom: 2px solid #777;
	border-left: 1px solid #999;
	width: 150px;
	height: auto;
	font-size: 75%;
	font-weight: bold;
}

#BackToTop a:link, #BackToTop a:visited {
	padding: 5px 5px;
	background: #9999FF; 
	border-top: 1px solid #999; 
	border-right: 2px solid #777; 
	border-bottom: 2px solid #777; 
	border-left: 1px solid #999; 
	cursor: pointer; 
	text-decoration: none; 
	color: #000; 
}

#BackToTop a:hover {
	padding: 5px 5px;
	background: #9966FF; 
	border-top: 1px solid #999; 
	border-right: 2px solid #777; 
	border-bottom: 2px solid #777; 
	border-left: 1px solid #999; 
	cursor: pointer; 
	text-decoration: none; 
	color: #000; 
}

#intro p { text-indent: 0 }

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
/* End hide from IE-mac */
.smaller {
	font-size: 60%;
}
