/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


/* General style information */
body {
  background-color: #0d0d0d;
  color: #737373;
  font-family: Verdana;
}
h1 {
  color: #8B0000;
  font-size: 3em;
}
li {
  list-style-type: none;
}
a {
 outline: none 
}
a:link {
 color: #8B0000 
} 
a:visited {
 color: #cc00cc
}
a:focus {
  text-decoration: none;
  background: #666666;
  color: #8B0000
}
a:hover {
  text-decoration: none
}
a:active {
  color: #ff4d4d;
  text-decoration: none;
  background: none
}
hr {
  border-top: 3px double #737373;
  border: 1px dashed #737373;
  text-align: center
}

/* Tools to call */
.fic {
 text-indent: 2em;
 text-align: left;
 width: 900px;
}

/* Form Specifics - Might not Need*/
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}