﻿/***********************************************/
/* HTML ELEMENTS                              */
/***********************************************/
body
{
  margin: 0px;
  color: #fff;
  font-size: 12px;
  font-family: "Courier New", Courier, monospace;
  background-color: #000;
	text-align: center;
}

h1, h2, h3{
	margin: 0px;	
}
p{
	margin: 0px;
}
/***********************************************/
/* LAYOUT DIVS                                 */
/* Elements list below are for container type  */
/* divs which will contain content             */
/***********************************************/
/* master container div; should only be one container */
#container
{
  width: 1030px;
  margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* content div */
.content
{
	padding: 10px 0;
	width: 840px;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

.sidebar1 {
	width: 180px;
	padding-bottom: 10px;
	float: right;
}
.header
{
	margin: 0 auto;
	text-align: center;
}
/* footer div */
.footer
{
	padding: 10px 0;
	background-color: #000;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

.newsItem
{
	clear: left;
	margin-top: 10px;
	text-align: left;
}
.newsImage
{
	padding-right: 10px;
}
/***********************************************/
/* SPECIAL DIVS                                */
/* Elements that are used to display some sort */
/* visual behavior without content             */
/***********************************************/
/* shows a visual seperation */
.dashedline
{
    border-bottom: 1px dashed #cccccc;
    padding-top: 3px;
    margin-bottom: 3px;
    clear:right;
}
.clear2column
{
  clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.floatLeft
{
	float: left;
}