@charset "utf-8";
/*
ofm.css for OnlineFileManager
last modified: 2007-09-23
*/

body {
  background-color: white;
  color: black;
}

#container {
  margin-left: auto;
  margin-right: auto;
  width: 900px;
  background-color: silver;
  color: black;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
}

/* pop up container for info, help, ... */
#pu_container {
  position: absolute;
  left: 200px;
  top: 50px;
  width: 500px;
  height: 400px;
  border: 2px solid black;
  background-color: white;
  color: black;
}

/* --- start - upload styles ---------- */
/* "Press escape anytime to cancel upload." */
#cancel_text {
    display: none; /* initial value: hidden */
}

#up_info {
    display: none;
    border: 1px solid gray;
}
/* --- end - upload styles ------------ */

/* file operations */
#ops {
  margin-top: 0.5em;
  cursor: default;
}
#ops span {
  border: 1px solid black;
}
#ops span:hover {
  background-color: white;
  color: black;
}

/* shows that the tag is clickable */
.click, #help_menu span, #help_c {
  cursor: pointer;
  color: blue;
  background: transparent;
  text-decoration: none;
}
.click:hover, #help_menu span:hover, #help_c:hover {
  color: #000088;
  background: transparent;
  text-decoration: underline overline;
}

/* style for current dir name */
#curr_dir {
  font-weight: bold;
  font-size: 20px;
  font-family: 'Courier New', sans-serif;
  text-align: center;
}

a img {
  border: none;
}

td.icon {
  width: 30px;
  text-align: center;
}

td.name {
  font-family: FixedSys, 'Courier New', monospace;
  font-size: 12pt;
  text-align: left;
}

td.size {
  width: 100px;
  font-family: FixedSys, 'Courier New', monospace;
  font-size: 10pt;
  text-align: right;
  cursor: default;
}

td.date {
  width: 150px;
  font-family: FixedSys, 'Courier New', monospace;
  font-size: 10pt;
  text-align: center;
  cursor: default;
}

td.dele {
  width: 30px;
  text-align: center;
}

table {
   border-top: 1px solid gray;
   border-right: 0px;
   border-left: 1px solid gray;
   border-bottom: 0px;
   width: 100%;
   border-collapse:	collapse;   /* same as cellspacing ="0" in HTML */
}

/*td.icon, td.name, td.size, td.date, td.dele {*/
td, th {
   margin: 0px;
   border-left-width: 0px;
   border-top-width: 0px;
   border-bottom-width: 1px;
   border-right-width: 1px;
   border-color: gray;
   border-style: solid;
}

/* icons */
div.icon {
   width: 16px;
   height: 16px;
   background-image: url('img/allinone.gif');
   background-repeat: no-repeat;
   margin: auto auto auto auto;
}

/* --- start - help styles ---------- */
/* about box */
#help {
    padding-left: 1em;
    padding-right: 1em;
    width: 25em;
    border: 1px solid black;
    margin-left: auto;
    margin-right: auto;
}

#help_menu {
    text-align: center;
}

#help_close {
    text-align: center;
    margin-top: 1em;
}
/* --- end - help styles ------------ */

/* end of file */
