/* This is the main screen css file / dwtemplate.com (c) 2010 */

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	color: #fff;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #000000;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Centers the page content container in IE 5 browsers. */
}

img
{ border-style: none;
}


/* TWO LINES BELOW for DATE Display - color, font, and position - you must use the 'date.js or 'date2.js' call-up in every page head you wish date displayed on. you can use two different positions - one with 'date' and the other with 'date2' javascript files, if needed simply copy date.js and rename it to 'date3.js' and so on to have as many as you require.  You will have to edit each new date.js file for the .date-font & #date-location, adding a new number after each.  You can see as an example by opening date2.js to see where the '2' was added within the date2.js file.   */

.date-font	{ color: #289D0B; font: 11px verdana, arial, sans-serif; font-weight: bold; }

#date-location	{ right: 50px; POSITION: absolute; TOP: 20px; }



/* Commonly used to style page titles. */
h1 {
  color: #8281d1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 24px;
}
/* Commonly used to style section titles. */
h2 {
  color: #8281d1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: bold;
}
/* Sets the style for the h3 header. */
h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 20px;
}
/* Sets the style for the h4 header. */
h4 {
  color: #8FD965;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
}
/* Sets the style for the h5 header. */
h5 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 16px;
	color: #67DFCF;
}
/* Sets the style for the h6 header. */
h6 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #3C0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: normal;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #FFFFCC;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #33CCFF;
  font-size: 12px;
  font-weight: normal;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #b92200;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #FFFFCC;
  font-size: 12px;
  font-weight: bold;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #571500;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 88em;
}
#outerWrapper #header {
  background-color: #571500;
  border-bottom: solid 0px #656586; /* Sets the bottom border properties for an element using shorthand notation */
  font-size: 18px;
  font-weight: bold;
  line-height: 15px;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper {
  overflow: hidden;
}
#outerWrapper #contentWrapper #rightColumn1 {
	background-color: #000000;
	border-left: solid 0px #a8a2d1; /* Sets the left border properties for an element using shorthand notation */
	float: right;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 12em;
	color: #FFF;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0 16em 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	color: #FFF;
}
#outerWrapper #footermenu {
	background-color: #000000;
	border-top: solid 0px #a8a2d1; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	color: #CCC;
}
.fltlft {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-top: 10px;
}
.fltrt {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
	margin-top: 10px;
}
.center {
	display: block;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}

#copyright {
	background-color: #4a5155;
    border-bottom: solid 0px #fff; /* Sets the bottom border properties for an element using shorthand notation */
    color: #fff;
  font-size: 9px;
  font-weight: normal;
    padding: 0px 10px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

/* END of CSS file                                         (c) 2010 dwtemplate @ http://www.dwtemplate.com */