/*  mystyle1.css  */

h1, h2, h3, h4, p, a, li, ul {
  color: Black;  /* color #000000 */
  font-style: normal;  
  line-height: normal;
  background-color: White;  /* color #FFFFFF*/
  font-variant: normal;
  text-decoration: none;
}

/* Body text and page background */
body{
  margin: auto; /* centers the content on the page */
  padding: 0;
  width: 700px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: medium;
  /* background-image: url('images/blue015.jpg'); */
  background-color: #006699;
  /* border: thin solid #191970; */
}

/* main content style */
#main{
  width: 700px;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  position: absolute;
  top:8px;
  /* border: thin solid #191970; */
}

/* Page header style */
#header{
  width: 700px;
  padding-left: 0px;
  background-color: #ffffff;
  background-repeat: repeat;
  top:0px;
  /* border: thin solid #191970; */
}

/* Page banner style, use .bar class for text styling */
#banner{
  width: 100%;
  height: 20px;
  text-align: right;
  background-color: #006699;
  /* border: thin solid #191970; */
}

/* Style for leftsidebar column, usually links */
#leftsidebar{
  width:75px;
  float: left;
  text-align: right;
  padding-left: 11px;
  margin: 0px;
  padding-top: 10px;
  background-color: #ffffff;
  /* border: thin solid #191970; */
}

/* center content style */
#center{
  float: left;
  width:490px;
  margin: 0px;
  padding: 20px;
  background-color: #ffffff;
  /* border: thin solid #191970; */
}

/* bigcenter content style */
#bigcenter{
  float: left;
  width:660px;
  margin: 0px;
  padding: 10px;
  font-size: 12px;
  background-color: #ffffff;
  /* border: thin solid #191970; */
}

/* Style for rightsidebar column */
#rightsidebar{
  float: right;
  width:60px;
  padding: 0em;
  margin: 0em;
  background-color: #ffffff;

  /* border: thin solid #191970; */
}

/* Page footer style */
#footer{
  clear: both;
  text-align: right;
  width: 100%;
  height:22px;
  background-color: #ffffff;
  /* border: thin solid #191970; */
  padding-top: 4px;
}

p, li  /* added atributes for p and Li */
{
font-size: small
}

/* for links in the text */

a:link {color: #006699}    /* #696969 = DimGray*/
a:visited {color: #006699}
a:hover {color: #006699}
a:active {color: #006699}

/* for links in the left side bar */

a.one:link {color: #696969; }    /* #696969 = DimGray*/
a.one:visited {color: #696969;} 
a.one:hover {color: #006699;}
a.one:active {color: #006699;}
a.one{
  font-size:12px;
  font-weight:bold;
  }
  
/* for links in the banner */

a.bar:link {color: #ffffff; }
a.bar:visited {color: #ffffff;} 
a.bar:hover {color: #ffffff;}
a.bar:active {color: #ffffff;}
a.bar{
  font-size: 12px;
  font-style: italic;
  padding-right:15px;
  background-color: #006699;
}


/* for text in the footer */
.foot{
font-style: italic;
padding-right:15px;
} 

