/* 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%;
	line-height: normal;
	color: #000;
}
/* 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: #663C26;
	color: #FF9;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: normal;
	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) */
	background-image: url(../images/steampup/FSbLYPK.jpg);
	background-attachment: fixed;
	background-repeat: repeat-x;
	background-position: bottom;
}
/* Commonly used to style page titles. */
h1 {
	color: #000;
	font-size: 150%;
	font-weight: bold;
	line-height: normal;
}
/* Commonly used to style section titles. */
h2 {
	color: #A36A4C;
	font-size: 145%;
	font-weight: bold;
	line-height: normal;
}

/**************removes the red dotted line on links***************/
 a, a:active, a:focus{
	outline:none !important;
}

/*------------------ Sets the style for RED areas except menu----------------------- */
#outerWrapper #contentWrapper #rightColumn1 a, a:link {
	color: #FFF;
	text-decoration: none;
}
/* Sets the style for visited links. */
#outerWrapper #contentWrapper #rightColumn1 a:visited {
	color: #CCC;
 	text-decoration: none;
}
/* Sets the style for links on mouseover. */
#outerWrapper #contentWrapper #rightColumn1 a:hover {
	color: #DA682A;
}
/* Sets the style for a link that has focus. */
#outerWrapper #contentWrapper #rightColumn1 a:focus {
	color: #CCC;
}
/* Sets the style for a link that is being activated/clicked. */
#outerWrapper #contentWrapper #rightColumn1 a:active {
	color: #FFF;
}
/* 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: #47191C;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	/*max-width: 1000px;
	min-width: 800px;*/
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 100%;
}
#outerWrapper #header {
	background-color: #643523; /* Sets the bottom border properties for an element using shorthand notation */
 	height: auto;
	line-height: normal;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-top-color: #8A480C;
	border-right-color: #8A480C;
	border-bottom-color: #8A480C;
	border-left-color: #8A480C;
	background-image: url(../images/steampup/FSbLYPK.jpg);
	background-repeat: repeat-x;
}

#outerWrapper #header img {
   display: block;
   max-width: 100%;
   max-height: 100%;
   width: auto;
   height: auto;
    display:inline-block;
    margin: 0 auto;
	text-align: center;      /* 3 lines-------centers riggs*/
}


#outerWrapper #topNavigation {  /*unused  for future use*/
	/*background-color: #900;
   /* border-bottom: solid 1px #900;Sets the bottom border properties for an element using shorthand notation */
  /* border-color: #900; Sets the border color properties for an element using shorthand notation */
  /* border-width: thin; Sets the border width properties for an element using shorthand notation */
  /*	padding: 5px; Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #47191C;
	height: 25px;
	padding: 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  }
  
  
  
#outerWrapper #contentWrapper {
	overflow: hidden;
	width: 100%;
	float: left;
	background-color: #633D28;
	background-image: url(../images_basic/brownbak.jpg);
 
}

/* 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-top: 0;
 	margin-right: 0;
	margin-bottom: 0;
	margin-left: 10px;
	background-color: #FFC;
	padding: 10px;
	color: #47191C;
	width: 75%;
	float: none;
	height: auto;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
 	background-image: url(../images/steampup/images%20(4)
.jpg);
	background-repeat: no-repeat;
 
}
#outerWrapper #contentWrapper #content img {
   max-width: 90%;
   width: auto;
   height: auto;

}	
 #clear {
    clear: both;
	}
 
 
 
/*------------------ Sets the style for WHITE areas except menu----------------------- */
#outerWrapper #contentWrapper #content a,  a:link {
	color: #A36A4C;
	text-decoration: none;
 
}
/* Sets the style for visited links. */
#outerWrapper #contentWrapper #content a:visited {
	color: #C68F3F;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
#outerWrapper #contentWrapper #content a:hover {
	color: #C68F3F;
 
}
/* Sets the style for a link that has focus. */
#outerWrapper #contentWrapper #content a:focus {
	color: #DA682A;
}
/* Sets the style for a link that is being activated/clicked. */
#outerWrapper #contentWrapper #content a:active {
	color: #5D3722;
 
}



#outerWrapper #contentWrapper #rightColumn1 {
	background-color: #643523;
	/* border-right: solid 1px #b92200;Sets the right border properties for an element using shorthand notation */
	float: right; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 20%;
	height: auto;
	color: #FFF;
	border-top-color: #633D28;
	border-right-color: #633D28;
	border-bottom-color: #633D28;
	border-left-color: #633D28;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	padding: 5px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: normal;
	background-image: url(../images_basic/brownbak.jpg);
	background-repeat: repeat;
	background-position: bottom;
}



#outerWrapper #contentWrapper #rightColumn1 img {
   max-width: 100%;
   width: auto;
   height: auto;

}

#outerWrapper #contentWrapper #content iframe {
   max-width: 100%;
   width: auto;
   height: auto;
}


#outerWrapper #footer {
	background-color: #FFF; /* 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) */
	border-top-style: none;
	color: #FFFFFF;
 
}
h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #cccccc;
	font-weight: normal;
	text-align: center;
}

.sharebox {
	float: right;
	width: auto;
	height: auto;
	clear: both;
	background-color: #47191C;
}
 

/*--------------------1st version of responsive block - 4columns - for RESPONSIVE BLOCKS----------------------- */
.blocks-container {
 	width: 100%;
	height: calc(100% - 24%);
	left: 5px;
}

.blocks {              /*block code for ads bottom main content*/
	width: 24%;
	height: auto;
	max-height: inherit;
	border:1px;
    padding: 1px:
    float: left;
	display: inline-block;   /*these contain the text in the block*/
	vertical-align: top;
	color: #47191C;
}   

@media (max-width: 560px) {
    .blocks {
        width: 100%;
    }

 /* --------------- TABLE in notes css responsive table----------------------- */

#outerWrapper #contentWrapper #content table tr td {
	height: auto;
}

#page-wrap {
	width: 90%;
	/* overflow-x: auto;  cuts off table & scrolls*/
	overflow: visible; 
		
		}
	 	
  	table {
	width: 60%;
	background-color: #FFF;
	border-collapse: collapse;  /* <--- add this so all the internal <td>s share adjacent borders  */
	background-image: url(../images/pawback.jpg);
    
   	}

 	td, th {
  	width: auto;
	height: auto;
    border: 1px solid #000; /*adds or removes double border*/
	
	}

    th {
	float: left;
   	width: inherit;

 	}
 /* --------------- TABLE in notes css responsive table----------------------- */
