/* 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;
  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 {
	background-color: #FFF;
	color: #000;
	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: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #797979;
	font-weight: normal;
	text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
	color: #EA252E;
	font-weight: normal;
	text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #EA252E;
	font-weight: normal;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
/* 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: #fff;
  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: 100%;
}
#outerWrapper #header {
  background-color: #ffffff;
  border-style: none; /* Sets the border style properties for an element using shorthand notation */
  font-weight: bold;
  height: 185px;
  background-image:url(https://securelogohosting.com/ssl/pp-rebelcord.jpg);
  background-position:top left;
  background-repeat:no-repeat;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #header IMG { /* 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. */
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 2px 0px;
}

#outerWrapper #navbar {
	padding:162px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-style: normal;
	text-align: center;
	font-size: 13px;
}
#outerWrapper #navbar a:link { color: #ffffff; font-weight: bold; text-decoration: none; }
#outerWrapper #navbar a:visited { color: #ffffff; font-weight: bold; text-decoration: none; }
#outerWrapper #navbar a:hover { color: #CCCCCC; 	font-weight: bold; 	text-decoration: none; }
#outerWrapper #navbar a:active { color: #ffffff; font-weight: bold; text-decoration: none; }
#outerWrapper #contentWrapper #ads {
  background-color: #FFFFFF;
  border-style: none; /* Sets the border style properties for an element using shorthand notation */
  float: right;
  height: 100%;
  padding: 5px 5px 5px 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 135px;
  margin: 0px 0;
  }
#outerWrapper #contentWrapper #ads img{ /* 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. */
	padding: 0;
	margin-top: 4px;
	margin-bottom: 4px;
	margin-left:4px;
	text-align: center;
	border:none;
}
#outerWrapper #contentWrapper #funstuff {
  background-color: #ECD99F;
  border-style: none; /* Sets the border style properties for an element using shorthand notation */
  float: right;
  height: 100%;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 150px;
  margin: 0px 0px 0px 0px;
}
#outerWrapper #contentWrapper #funstuff {
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align:center;
  
}
#outerWrapper #contentWrapper #funstuff h1{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	text-transform: lowercase;
	text-align:left;
	color: #333333;
	position: relative;
	width: 148px;
	right: 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
	border-left: none;
	margin-top: 8px;
	margin-left: 8px;
	margin-bottom: 8px;
}
#outerWrapper #contentWrapper #funstuff h2{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-align:right;
	text-transform: none;
	text-decoration: none;
	color: #333333;
	margin-top: 2px;
	padding-right: 8px;
}
#outerWrapper #contentWrapper #sidebar {
  background-color: #ECD99F;
  border-style: none; /* Sets the border style properties for an element using shorthand notation */
  float: left;
  padding: 10px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 175px;
  margin: 0;
}
#outerWrapper #contentWrapper #sidebar div {
 text-align:center;
}
.center{
  text-align:center;
}
#outerWrapper #contentWrapper #sidebar h1{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	text-transform: lowercase;
	color: #333333;
	position: relative;
	width: 155px;
	right: 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
	border-left: none;
	margin-top: 8px;
	margin-left: 15px;
	margin-bottom: 8px;
}
#outerWrapper #contentWrapper #sidebar h2{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-align:right;
	text-transform: none;
	text-decoration: none;
	color: #333333;
	margin-top: 2px;
	padding-right: 8px;
}
#outerWrapper #sidebar h2 a:link { color: #333333; font-weight: normal; text-decoration: none; }
#outerWrapper #sidebar h2 a:visited { color: #333333; font-weight: normal; text-decoration: none; }
#outerWrapper #sidebar h2 a:hover {
	color: #FFFFFF;
	font-weight: normal;
	text-decoration: none;
}
#outerWrapper #sidebar h2 a:active { color: #333333; font-weight: normal; text-decoration: none; }
/* 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: 0px 145px 0 195px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 12px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #content h1{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:19px;
	font-weight: bold;
	text-transform: uppercase;
	color: #333333;
	width: 99%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
	margin-top: 10px;
	margin-bottom: 8px;
	overflow:auto;
}
#outerWrapper #contentWrapper #content h2{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #FF9900;
	text-decoration: none;
	margin-top: 5px;
	margin-bottom: 1px;
}
#outerWrapper #contentWrapper #content h3{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	line-height: normal;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	margin-top: 1px;
	margin-bottom: 1px;
	padding-left: 15px;
}
#outerWrapper #contentWrapper #content img{
	margin-left: 8px;
	margin-top: 3px;
	margin-bottom: 5px;
}

#outerWrapper #contentWrapper #content p{
	margin-top: 4px;
}
/* Styles for index page */

#outerWrapper #contentWrapper #contentindex {
	margin: 0px 330px 0 195px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 12px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper #contentindex h1{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:19px;
	font-weight: bold;
	text-transform: uppercase;
	color: #333333;
	width: 99%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
	margin-top: 10px;
	margin-bottom: 8px;
}
#outerWrapper #contentWrapper #contentindex h2{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #FF9900;
	text-decoration: none;
	margin-top: 5px;
	margin-bottom: 1px;
}
#outerWrapper #contentWrapper #contentindex h3{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	line-height: normal;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	margin-top: 1px;
	margin-bottom: 1px;
	padding-left: 15px;
}
#outerWrapper #contentWrapper #contentindex img{
	margin-left: 8px;
	margin-top: 3px;
	margin-bottom: 5px;
}

#outerWrapper #contentWrapper #contentindex p{
	margin-top: 4px;
}

/* 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: both;
  display: block;
}
#outerWrapper #footer {
  background-color: #ea252c;
  border-top: solid 1px #666; /* 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) */
}
#outerWrapper #footer h1{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align:center;
	color:#FFFFFF;
	text-decoration: none;
	font-weight: lighter;
}
#outerWrapper #footer a:link { color: #ffffff; font-weight: lighter; text-decoration: none; }
#outerWrapper #footer a:visited { color: #ffffff; font-weight: lighter; text-decoration: none; }
#outerWrapper #footer a:hover { color: #CCCCCC; 	font-weight: lighter; 	text-decoration: none; }
#outerWrapper #footer a:active { color: #ffffff; font-weight: lighter; text-decoration: none; }



/* Miscellaneous classes for reuse */
.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;
	display:inline;
}
.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;
}
.story {
	border-bottom: dashed;
	border-width: 1px;
	margin-top: 5px;
	margin-bottom: 5px;
  	width:100%;
	}
	/* Hide from IE-mac \*/
* html .story {
	height:1%;
   	width:auto;
}

/* End hide from IE-mac */
.image{
	margin-left: 8px;
	margin-top: 3px;
	margin-bottom: 5px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #666666;
	text-align: center;
}
.body {
	border-bottom: dashed;
	border-width: 1px;
	margin-top: 3px;
	margin-bottom: 5px;
  	width:100%;
	}
.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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.linkclass {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-align:right;
	text-transform: none;
	text-decoration: none;
	color: #333333;
	margin-top: 2px;
}
.ads {
	margin-top: 0px;
	padding:0px 3px 6px 3px;
  	width:90%;
	text-align:center;
	}
.credits {  
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: xx-small; 
	font-style: normal; 
	line-height: normal; 
	font-weight: normal; 
	font-variant: normal; 
	text-transform: none; 
	color: #000000; 
	text-decoration: none
	}
.linkCredit {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: xx-small; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; text-transform: none; color: #000066; text-decoration: underline}
.date {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	color: #FF6633;
	text-decoration: none;
	font-size: 14px;
}
.headline {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #FF9900;
	text-decoration: none;
	text-align: center;
}
.newshead {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #FF9900;
	text-decoration: none;
	text-align: center;
}
.newsheadleft {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #FF9900;
	text-decoration: none;
	text-align: left;
}
.cutlines {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000000;
	text-decoration: none;
}
.bylines {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-transform: uppercase;
	color: #000000;
	text-decoration: none;
}
.newstop {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: x-small; font-style: normal; line-height: normal; font-weight: bold; font-variant: normal; text-transform: none; color: #000000; text-decoration: underline}
.subhead {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #FF9900;
	text-decoration: none
}
.bodyText {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #000000;
	text-decoration: none;
	margin-bottom: 5px;
}
.newsindex2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #006699;
	text-decoration: none
}
.archivespdf {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: xx-small; font-style: normal; line-height: normal; font-weight: bold; font-variant: normal; text-transform: none; color: #000000; text-decoration: none}
.archives {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	font-style: normal;
	line-height: 15px;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #006699;
	text-decoration: none
}
.archivesLinks {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: x-small; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; text-transform: none; color: #000066; text-decoration: none}
.linkbottom {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #006699;
	text-decoration: none
}
.linkArchFront {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: xx-small; font-style: normal; line-height: normal; font-weight: bold; font-variant: normal; text-transform: none; color: #333333; text-decoration: none}
hr { height:0px; 
        border:0px; 
        border-top:1px dashed #cccccc; }

