/* leftnav */
.ln_select, .ln_select > a {
      background-color: #efefef;
      color: #666;
}

/* hints */
#hints {
 position: absolute;
 bottom: 30px;
 left: 10px;
 width: 100%;
 background: none;
 z-index: 999;
}

.hint {
 font-size: 1.8em;
 background: #ffc /* yellow */;
 border: 1px solid #eee;
 width: 400px;
 padding: 1ex;
 text-align: center;
 margin: 0px auto;
}


/* any kind of message list */
table.msglist {
 width: 60em;
 table-layout: fixed;
 empty-cells: show;
 border-spacing: 0;
 border: 2px solid #9a996e /* medium */;
 padding-top: .25ex;
 padding-left: .25ex;
 background: #e8e8db /* superlight */;
 margin: 1ex;
}

table.msglist td {
 padding: .2ex 1ex .2ex 1ex;
 border-bottom: 1px inset #777;
 overflow: hidden;
 vertical-align: top;
}

table.msglist td.select {
 padding: 0;
 width: 2em;
}

table.msglist td.date {
 width: 10ex;
 max-width: 10ex;
 white-space: nowrap;
 padding-left: 0;
 color: black;
}

table.msglist td.title {
 overflow: hidden;
 font-size: 1.2em;
}

table.msglist a {
# color: blue;
# text-decoration: underline;
}

table.msglist .preview {
 font-size: .85em;
 overflow:hidden;
 padding-left: 1ex;
 color: black;
 text-weight: 100;
}


/* forms */
textarea, input, select {
 font-family: inherit;
 font-size: 1em;
 padding: 2px;
 background: white;
}

input {
 font-size: 1.8em;
 padding: .2ex;
 letter-spacing: .1ex;
}

select.normal, input.normal {
 font-size: 1em;
}

textarea {
 font-size: 1em;
 border: 1px solid #777;
}

.textpreview {
 border:1px solid black; 
 padding: .5ex;
}


button, input.button, input[type=submit], input[type=reset] { /* for ie6 */
 font-size: 1em;
 background: #eee;
}

form {
/*
  potentially make all forms inline - we can 
  always use divs if we want to mess with stuff.
*/
 display: inline;
}

form fieldset {
    padding-top: 1em;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #777;
}

form fieldset legend {
    font-size: 1.2em;
    font-weight: 800;
}

label {
 font-weight: 800;
}

div.row {
  overflow:hidden;
  width: 60em;
  padding-top: 10px;
/*  clear: both;
  padding-top: 10px; */
}

.optional, .optional * {
  font-weight: 200;
  color: #777;
}

div.row span.label {
  float: left;
  width: 100px;
  text-align: right;
  padding-right: 10px;
  }

div.row span.formw {
  float: right;
  margin-left: -5px;
  padding-left: 10px;
  max-width: 500px;
  text-align: left;
  width: 100%;
  } 

div.row span.fullwidth textarea, div.row span.fullwidth input {
 width: 500px;
}

/* used for coloring tables:*/
.odd, .odd td {
 background: #dcddc8 /* extralight */;
}
.even, .even td {
 background: #e8e8da /* superlight */;
}

.highlight, .highlight td {
 background: #ffc /* yellow */;
}

.even:hover, .odd:hover {
 border: 2px dashed #c2c2a0 /* light */;
}

.errorExplanation {
 font-size: 1.1em;
 background: #c2c2a0 /* light */;

}

.fieldWithErrors {
  padding: 3px;
  background-color: #4f4c25 /*dark*/;
  display: table;
}

/* help for any kind of input */
.input_tip {
 width: 80%;
 color: #777;
 font-size: .95em;
 font-family: tahoma, sans-serif;
 white-space: wrap;
}

.input_tip a {
 font-weight: 800;
}

.optf_label {
  color: #777;
}

.optf_input {
  color: #777;
}


/* auto complete */
div.auto_complete {
    width: 350px;
    z-index: 999;
}

div.auto_complete ul {
    background-color: white;
    border:1px solid #888;
    margin:0;
    padding:0;
    width:100%;
    list-style-type:none;
}
div.auto_complete ul li {
    background-color: white;
    opacity: 1.0;
    margin:0;
    padding:3px;
}
div.auto_complete ul li.selected {
    background-color: #fcd450;
}
div.auto_complete ul strong.highlight {
    color: #800; 
    margin:0;
    padding:0;
}

/* pagination */
  .pagination {
  font-family: Arial, sans-serif;
  padding: 3px;
  text-align: center;
  }
  .pagination a {
  padding: 2px 5px 2px 5px;
  margin: 2px;
  border: 1px solid #c0e5ac;
  text-decoration: none;
  color: #6b8060;
  }
  .pagination a:hover, .pagination a:active {
  border: 1px solid #6b8060;
  color: #000;
  }
  .pagination span.current {
  padding: 2px 5px 2px 5px;
  margin: 2px;
  border: 1px solid #6b8060;
  font-weight: bold;
  background-color: #6b8060;
  color: #FFF;
  }
  .pagination span.disabled {
  padding: 2px 5px 2px 5px;
  margin: 2px;
  border: 1px solid #eee;
  color: #ddd;
  }

.waiting {
 background: url("/images/indicator.white.gif") no-repeat scroll 0%;
 width: 16px;
 height: 16px;
}

.important, .strong {
 color: red;
 font-size:1.2em;
 font-weight:600;
}


.tooltip {
 z-index: 99;
 right: 5px;
 top: 10px;
 padding: 2px;
 border: 1px black outset;
 max-width: 180px;
 background: #c2c2a0 /* light */;
 color: black;
 font-weight: normal;
 font-size: 10pt;
}

.tooltip:before {
 content: 'Tip: ';
}

