/************************************

General Elements

************************************/

body {
  text-align: center;
  background: #eeeeee;
	margin: 0px;
}

* {
  font-family: Calibri, sans-serif;
}

h1 {
	clear: both;
	margin-top: 10px;
	margin-bottom: 5px;
}

h1.page_title { 
	font-size: 200%;
	border-bottom: solid 1px black;
	text-align: left;
	padding-left: 3px;
	font-style: italic; 
}

h2, h3 {
	clear: both;
	margin-top: 5px;
	margin-bottom: 5px;
}

h2 {
	width: 100%;
	background: powderblue;
	text-align: left;
	font-style: normal;
}
span.h2_text {
	padding-left: 20px; /* wrapper to push the _text_ inside the h2 tag away from the left margin. pushing the whole h2 away from the left margin by X pixels using padding gives the h2 a total width of 100% + X pixels (fouling up the layout), while pushing it to the left using margins creates a whitespace at the left and still fouls up the layout. Drawback of this method is the extra wrapping tags needed for all h2 elements. */
	display: block;

	}

span.h3_text {
	margin-left: 30px; /* see note in span.h2_text */
	display: block;
}

h3 {
/*	padding-left: 30px; */
	background: powderblue;
	text-align: left;
	font-style: italic;
}

div.rh_sidebar h2, div.rh_sidebar h3 {
	background-color: #FFEF99;
	margin-top: 2px;
	border-top: 1px dashed black;
}
div.sidebar_inside_box h2 {
	font-size: 1.5em;
}

div.sidebar_inside_box h3 {
	font-size: 1.2em;
}

a { 
	color: #003366; /* Blue */
	font-size: inherit;
}

a[name] {
	color: black;
}

p { 
	margin: 0.25em 1em; /* Top and Bottom, Left and Right */
  text-align: justify;
}

p.first_paragraph {
	margin-top: 1em;
}

p.first_paragraph:first-letter {
	font-size: large;
}

/* do not indent the first paragraph; only indent the 2nd and following paragraphs. */

p + p {
  text-indent: 1.5em;
  margin-top: 0 }

ul, ol {
	text-align: left;
/*	margin-left: 20px; */
}

li {
	margin-bottom: 5px;
}

.example_project {
	margin: 10px;
	padding: 10px;
	border: 2px dotted orange;
}

/************************************

Sidebar Elements

************************************/

div#sidebar_links a {
	margin-left: 1.5em;
}

img.kitco_image {
	width: 172px;
	height: 114px;
	
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* SITE MAP */

#site-map-links a { 
	font-size: medium;
  color: #000; 
} 

#index #indexLink, 
#services #servicesLink,
#staff #staffLink,
#downloads #downloadsLink,
#contact #contactLink,
#technical_reports #technical_reportsLink,
#permitting_and_legal_support #permitting_and_legal_supportLink,
#engineering_services #engineering_servicesLink,
#operations_support #operations_supportLink,
#phannon #phannonLink,
#droy #droyLink,
#iflint #iflintLink,
#ethornton #ethorntonLink,
#szou #szouLink,
#dwest #dwestLink { 
  background: #000; 
  color: #fff; 
}

/************************************

Page-Specific Elements

************************************/

img.services-grid_image {
	border: 1px solid black;
	margin-left: auto;
	margin-right: auto;
}

.services-grid_link_text {
	font-size: 1.3em;
	font-weight: bold;
}

img.googlemap {
	margin: 5px;
	width: 250px;
	height: 250px;
}

div.contact_page_block {
	display: block;
	width: 45%;
}

object.videoplayer {
	width: 300px;
	height: 240px;
	margin-right: auto;
	margin-left: auto;
	display: block;
}

.movie_caption {
	font-size: 80%;
}

/************************************

Debugging Elements

************************************/

.highlight {
	background: yellow;
}

