/*
 CSS checker
 http://htmlhelp.com/tools/csscheck/

 font-family: comma seperated font names to use in order if browser hase them
 font-style: normal | italic | oblique
 font-variant:  normal | small-caps
 font-weight: normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900
 font-size: <absolute-size> | <relative-size> | <length> | <percentage>
            xx-small | x-small | small | medium | large | x-large | xx-large
*/

/* unvisited link Light Blue */
a:link {
  color: #000055;
  background: #FFFFFF;
  font-weight: normal;
  text-decoration: none;
}

/* visited link Dark Blue*/
a:visited {
  color: #0000FF;
  background: #FFFFFF;
  font-weight: normal;
  text-decoration: none;
}

/* mouse over link Med Red UnderLine*/
a:hover {
  color: #DD0000;
  background: #FFFFFF;
  font-weight: normal;
  text-decoration: underline;
}

/* selected link Dark Blue*/
a:active {
  color: #0000FF;
  background: #FFFFFF;
  font-weight: normal;
  text-decoration: none;
}

body {
  background: #000000 url('bkg_blue_stripes1.jpg');
  font-style: oblique;
  font-variant: normal;
  font-weight: normal;
  font-size: small;
  font-family: Arial, Helvetica, sans-serif;
  margin-left: 1%;
  margin-right: 5%;
  color: Black;
 }

/* Start of definition list */
DL {
  background: #FFFFFF;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-size: small;
  font-family: Arial, Helvetica, sans-serif;
  margin-left: 1%;
  margin-right: 5%;
  color: Black;
}

/* definition Entry Title */
DT {
  background: #FFFFFF;
  color: Black;
}

/* definition Entrys */
DD {
  background: #FFFFFF;
  color: Black;
}


strong { 
   text-transform: uppercase;
   font-weight: bold;
   text-decoration: none;
 }

/* IFRAMES */
#FrameADS { 
   background-color:#000000;
   border-style:dashed;
   border-color: #000; /*CHOOSE THE COLOR YOU WANT HERE */
   border-top-width:1px; /*CHOOSE THE SIZE YOU WANT HERE */
   border-bottom-width:1px; /*CHOOSE THE SIZE YOU WANT HERE */
   border-left-width:1px; /*CHOOSE THE SIZE YOU WANT HERE */
   border-right-width:1px; /*CHOOSE THE SIZE YOU WANT HERE */
}

