/* 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%;
}
/* 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 {
	margin: 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background-image: url(images/Background.gif);
	background-repeat: repeat;
}

form {
	margin: 0px;
	padding: 0px;
}

/* Sets the style for unvisited links. */
a,  a:link {
  color: #CC5500;
  font-weight: bold;
  text-decoration: none;
}

/* Sets the style for visited links. */
a:visited {
  color: #CC5500;
  font-weight: bold;
  text-decoration: none;
}

/* Sets the style for links on mouseover. */
a:hover {
  color: #CC5500;
  text-decoration: underline;
}

/* Sets the style for a link that has focus. */
a:focus {
  color: #CC5500;
}

/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #CC5500;
}

p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0px;
	padding-right: 5px;
	padding-bottom: 15px;
	padding-left: 5px;
	line-height: 140%;
	color: #000000;
	padding-top: 0px;
}

/* 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 {
	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: 760px;
	background-image: url(images/Body.gif);
	background-position: 0px 0px;
	background-repeat: repeat-y;
}

#outerWrapper #header {
	background-image: url(images/Header.gif);
	background-position: 0px 0px;
	width: 740px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	height: 50px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
}

#outerWrapper #contentWrapper #rightColumn {
	float: right;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 235px;
	margin: 0px;
}

/* 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 {
	color: #000000;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
	width: 460px;
	float: left;
	margin: 0px;
}

#outerWrapper #contentWrapper {
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */

#outerWrapper #contentWrapper .clearFloat {
  clear: right;
  display: block;
}

#outerWrapper #footer {
	clear:both;
	width:740px;
	background-image: url(images/Footer.gif);
	background-position: 0px bottom;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	text-align: center;}

#Dater {
	width: 750px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 5px;
	text-align: right;
	padding-top: 0px;
	padding-right: 18px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: none;
}

#Logo {
	float: left;
	width: 48%;
	text-align: left;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
	margin: 0px;
}

#BO {
	margin: 0px;
	float: right;
	width: 48%;
	text-align: right;
	padding-right: 15px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#Navigation {
	width: 748px;
	background-color: #E0650D;
	font-size: 13px;
	color: #FFFFFF;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 1px;
	text-align: center;
	border: 1px solid #FFFFFF;
	font-weight: normal;
}
ul#NavList
{
	white-space: nowrap;
	margin: 0px;
	padding: 0px;
}

#NavList li
{
	display: inline;
	list-style-type: none;
}

#NavList a { padding: 3px 15px; }

#NavList a:link, #NavList a:visited
{
	color: #FFFFFF;
	text-decoration: none;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 92%;
}

#NavList a:hover
{
color: #FFFFFF;
background-color: #444444;
text-decoration: none;
}

#Image {
	padding: 0px;
	width: 748px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #273947;
	clear: both;
	height: 200px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #FFFFFF;
	border-left-color: #FFFFFF;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 1px;
}

h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: normal;
	color: #CC6600;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #555555;
	width: 100%;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	text-indent: 5px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
}

h2 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #000000;
	border-bottom-width: 3px;
	border-bottom-style: double;
	border-bottom-color: #273847;
	padding-bottom: 5px;
	font-weight: normal;
	font-variant: small-caps;
	padding-top: 10px;
	padding-right: 0px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
}

h3 {
	margin: 0px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #990000;
	font-weight: bold;
	text-indent: 5px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	text-decoration: none;
}

h4 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #000000;
	text-transform: uppercase;
	text-indent: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	padding-bottom: 5px;
}

.ListULBlack {
	color: #000000;
	padding: 0px;
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 10px;
	margin-left: 25px;
}

.ListUL {
	color: #CC6600;
	padding: 0px;
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 10px;
	margin-left: 25px;
}

li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #CC3300;
}

.ListText {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 140%;
	color: #000000;
}

.SearchTextBox {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	width: 118px;
	border: 1px solid #999999;
}

.Button {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFCC;
	background-color: #444444;
	height: 20px;
	font-weight: bold;
	border: 1px solid #444444;
	letter-spacing: 1px;
}


/* set the image to use and establish the lower-right position */

.cssbox, .cssbox_body, .cssbox_head, .cssbox_head h2 {
	background-color: transparent;
	background-image: url(images/QuotesGray.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}

.cssbox {
	width: 208px!important; /* intended total box width - padding-right(next) */
	width: 208px; /* IE Win = width - padding */
	padding-right: 15px; /* use to position the box */
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

/* set the top-right image */

.cssbox_head {
	background-position: top right;
	margin-right: -15px; /* pull the right image over on top of border */
	padding-right: 40px; /* right-image-gap + right-inside padding */
} 

/* set the top-left image */

.cssbox_head h2 {
	background-position: top left;
	margin: 0px; /* reset main site styles*/
	border: 0; /* padding-left = image gap + interior padding ... no padding-right */
	height: auto !important;
	height: 1%; /* IE Holly Hack */
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 80%;
	font-weight: bold;
	color: #FFFFFF;
	letter-spacing: 0.05em;
	font-variant: normal;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 18px;
}

/* set the lower-left corner image */

.cssbox_body {
	background-position: bottom left; /* mirror .cssbox_head right/left */
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 20px;
	margin-top: 0px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 0px;
}

/* set the image to use and establish the lower-right position */ .SearchBox, .SearchBody, .SearchHead, .SearchHead h2 {
	background-image: url(images/QuotesGray.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-color: transparent;
}

.SearchBox {
	width: 208px!important; /* intended total box width - padding-right(next) */
	width: 208px; /* IE Win = width - padding */
	padding-right: 15px; /* use to position the box */
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

/* set the top-right image */

.SearchHead {
	background-position: top right;
	margin-right: -15px; /* pull the right image over on top of border */
	padding-right: 40px; /* right-image-gap + right-inside padding */
} 

/* set the top-left image */

.SearchHead h2 {
	background-position: top left;
	margin: 0px; /* reset main site styles*/
	border: 0; /* padding-left = image gap + interior padding ... no padding-right */
	height: auto !important;
	height: 1%; /* IE Holly Hack */
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 80%;
	font-weight: bold;
	color: #FFFFFF;
	font-variant: normal;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 15px;
}

/* set the lower-left corner image */

.SearchBody {
	background-position: bottom left; /* mirror .cssbox_head right/left */
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 18px;
	padding-left: 15px;
	margin: 0px;
}

#Copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	text-decoration: none;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 0px;
	padding-right: 0px;
	margin: 0px;
}

#Copyright a {
	color: #FFFFFF;
	text-decoration: none;
}

.SmallText {
	font-size: 11px;
}

.TableText {
	color: #000000;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 10px;
}

.LeftBorder {
	padding: 5px;
	margin-right: 15px;
	border: 1px solid #CCCCCC;
	float: left;
	margin-top: 10px;
	margin-bottom: 0px;
	margin-left: 2px;
}

.RightBorder {
	padding: 5px;
	margin-left: 15px;
	border: 1px solid #CCCCCC;
	float: right;
	margin-top: 10px;
	margin-bottom: 0px;
	margin-right: 2px;
}

.Quote {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 80%;
	line-height: 125%;
	margin: 0px;
	padding: 5px;
}
