/* CSS Document */
body {
  background-color: #fff;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 14px;
}
/* Commonly used to style page titles. */
h1 {
  color: #000000;
  font-size: 20px;
  font-weight: bold;
  line-height: 50px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  line-height: 32px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #0099CC;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
p{
	line-height:1.6em;
	margin:0 0 1em 0;
}