/* remember, 'em' (such as font-size: 2em) is an element approximately equal to the height of a character. */
/* 'px' (such as font-size: 12px) is the unit for pixels. */
/* 'pt' (such as font-size: 12pt) is the unit for points. */
/* '%' (such as font-size: 80%) is the unit for... wait for it... percentages. */
/* Other units include 'pc' (picas), 'cm' (centimetres), 'mm' (millimetres) and 'in' (inches). */
/* When a value is zero, you do not need to state a unit. For example, if you wanted to specify no border, it would be border: 0. */
/* There are 16 valid predefined colour names.  These are aqua, black, blue, fushia, gray */
/* green, lime, maroon, navy, olive, purple, red, silver, teal, white, and yellow. */

body  {
	font-family: "times new roman", arial, helvetica, serif;
	font-size: 1em;
	color: black;
}

h1 {
	font-size: 1em;
	text-align: center;
	color: #fff;
	margin: 0em;
	padding: 0.5em;
	border-style: none;
	border-width: 0px;
	border-left-width: 0px;
	border-right-width: 0px;
	border-color: none;
}

h2 {
	font-size: 0.8em;
	text-align: none;
	color: #fff;
	background: none url(http://www.mccombsenergy.com/red_rock.gif) fixed top;
	margin: 0em;
	padding: 1em;
	border-style: none;
	border-width: 0px 0px 0px 0px;
}

/*
h3 {
	font-size: 0.7em;
	text-align: left;
	background: transparent;
	margin: 0em;
	padding: 1em;
	border-style: none;
	border-width: 0px 0px 0px 0px;
}
*/
a {
	text-decoration: none;
	color: none;
}

a:link {color:#01c;}
a:hover {color: #333;}
/*a:visited {color:#01c;}*/

/*
strong {
	font-style: italic;
	text-transform: uppercase;
}
*/

/*
p {
	letter-spacing: 1em;
	word-spacing: 1em;
	line-height: 1em;
	text-align: left;
}


img {
	border-style: solid;
	border-width: 0px;
}
*/

li {
	color: #000;
	font-style: normal;
}

/*
table {
	background-color: white;
}
*/