@charset "utf-8";
/* CSS Document */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin:0;
  padding:0;
  border:0;
  outline: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:#000000;
  background-image:url(images/bgnd_indust.gif);
  color:#999999;
  font-family:Arial, Helvetica, sans-serif;
  font-size:12px;
  line-height:18px;
  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: #2ac5f4;
  font-size: 24px;
  font-weight: bold;
  line-height: 14px;
  margin-top: 10px;
  margin-bottom: 10px;

}
/* Commonly used to style section titles. */
h2 {
  color: #b2edff;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  padding-top: 20px;
  padding-bottom: 15px;
}
/* Sets the style for the h3 header. */
h3 {
  color: #FFFFFF;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #2ac5f4;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #2ac5f4;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #b2edff;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #ffffff;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #ffffff;
}

.subhead {
	font-size: 18px;
	color: white;
}
