
/* First, the styles used for the whole page */

body {
  font-family: "arial";
  /*background-color: rgb(251,230,179);*/
  background-color: #aaaaaa;
  max-width: 1000px;
  padding-left: 5px;
  padding-right: 5px;
  
  /* These two lines center the whole page. */
  /* To left-align the page, comment out the follow two lines. */
  margin-left: auto;
  margin-right: auto;
}

#bodydiv { 
  /*text-align: left;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;*/
}

h1 {
  font-size: 36px;
  font-weight: bold;
}

a:link { color: #0000aa; }
a:hover { color: #aa0000; }



/* Now the styles used for the file list */

div.frow {
  background-color: rgb(213,206,181);
  border: 2px groove black;
  border-radius: 8px;
  padding: 2px;
  margin: 4px;
  width: 95%;
}

.fname {
  font-size: larger;
  font-weight: bold;
  padding-left: 2px;
}
.fname a:link { text-decoration: none; }
.fname a:hover { text-decoration: underline; }

.fname span.fsize { 
  font-size: 60%;
  font-weight: normal;
}

.fcom {
  padding-left: 5em;
  padding-top: 4px;
}
