﻿/*The next line helps pages load smoothly especially on cell phones.*/
document.addEventListener('touchstart', onTouchStart, {passive: true});
/***** Global Settings *****/
html, body {
border:0;
margin: 0 10px; /*--top and bottom = 0 | right and left = 10px --*/
padding:0;
}

body {
font-size: 100%; 
background-color: #E4E1CD;
} /* font-size: 100%  set 1em = 16px; this is needed for IE */

img {
vertical-align: middle;
border:0;
margin:10px; 
}

/*Try width: inherit; or width: initial;*/


/***** Headings *****/

h1, h2, h3, h4, h5, h6 {
margin:0;
}

h1 {
padding:5px;
font-size:1.8em;
text-align: center; 
font-weight:bold; 
color: #B90000; 
} /* font-size 1.8em would set font size 1.8 times 1em */

h2 {
padding:5px;
font-size:1.3em;
text-align: center; 
font-weight:bold; 
color: #007600; 
} /* font-size 1.3em would set font size 1.3 times 1em */

h3 {
padding:5px;
font-weight:bold;
text-align: center; 
color: #000080; 
font-size:1.2em;
} /* sets font size 1.2 times 1em */

H4 {margin: 0;
padding:5px 0 5px 0;
color: #B70052; 
font-weight:bold; 
font-style: italic; 
font-size:1.15em;
} 

H5 {margin: 0;
padding:5px 0 5px 0;
font-weight:bold; 
font-size:1.15em;
} 

H6 {
padding:4px;
color: #3E1F00;
font-size:1.3em;
font-weight:bold; 
background-color: #57bebf;   /* #33afa8; #b8f2ff;*/
border: 2px solid #0000ff; /* Blue */
border-radius: 4px;
text-align: center;
margin: 8px;
/*line-height: 1.8;*/
/*cursor: pointer;*/
}

/***** Common Formatting *****/

p, ul, ol {margin: 0;
color: #3E1F00;
padding:5px 0 5px 0;
font-size:1.1em;
} /* font-size: 1em would set font size to 1em */

blockquote {
margin: 5px 25px 5px 25px;
color: #3E1F00;
font-size:1em;
}

dd {
margin: 10px 0;
border:0;
padding:5px 0 5px 0;
font-size:1em;}

/***** Links *****/

A:link {color: #0000FF}

A:visited {color: #007600}

A:active {color: #C10000}

A:hover {color: #C10000}

table {
	margin-left: auto;
	margin-right:auto;
	margin-bottom:5px;
	margin-top:5px;	
	text-align: center;
	font-weight:bold; 
}
th, td {
	padding: 5px;
	text-align: center;
	font-size:1.1em;
}