/******************
 * authentication *
 ******************/
.auth_page{
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  background-color: #9999ff;
}

.auth_div{
  text-align: center;
  vertical-align: middle;
  position: absolute;
  top: 25%;
  left: 30%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.auth_title{
  font-family: Verdana,Arial,Helvetica,sans-serif;
  font-size: 20px;
  margin-top: 3px;
  margin-bottom: 3px;
  margin-left: 3px;
  margin-right: 3px;
  font-weight: bolder;
  letter-spacing: 4px;
  text-align: center;
  background-color: #9999ff;
  width: 100%;
  border-top-style: ridge;
  border-bottom-style: ridge;
  border-left-style: ridge;
  border-right-style: ridge;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
}
 
.auth_subtitle{
  color: #9999ff;
  text-align: right;
  width: 90%;
  font-family: Verdana,Arial,Helvetica,sans-serif;
  font-size: 12px;
  font-style: italic;
  text-decoration: overline;
}

.auth_table{
  font-family: Verdana,Arial,Helvetica,sans-serif;
  width: 300px;
  background-color: #ccccff;
}

.auth_spacer{
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: #9989ff;
}

.auth_form{
  font-family: Verdana,Arial,Helvetica,sans-serif;
  font-size: 14px;
}
 
 
/**************
 * visibility *
 ***************/
.my_hidden_abs{
  visibility: hidden;
  position: absolute;
}

.my_hidden_rel{
  visibility: hidden;
  position: relative;
}

.my_visible_rel{
  visibility: visible;
  position: relative;
}

.my_visible_abs{
  visibility: visible;
  position: absolute;
}


.last_visible_rel{
  visibility: visible;
  position: relative;
  border: 1px dashed;
}


/***********
 * opacity *
 ***********/
 .opacity_on_25{
  filter: alpha(opacity=25);
  -moz-opacity: .25;
  opacity: .25;
  -khtml-opacity: .25;
}

.opacity_on_50{
  filter: alpha(opacity=50);
  -moz-opacity: .50;
  opacity: .50;
  -khtml-opacity: .50;
}

.opacity_on_75{
  filter: alpha(opacity=75);
  -moz-opacity: .75;
  opacity: .75;
  -khtml-opacity: .75;
}

.opacity_off{
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  -khtml-opacity: 1.0;
}


/************
 * calendar *
 ************/
.c_table{
  font-family: Verdana,Arial,Helvetica,sans-serif;
  font-size: 8pt;
  text-decoration: none
}

.c_bold{
  font-weight: bold; 
  color: white; 
  text-align: center; 
}

.c_b{
  color: black; 
  text-align: right;
}

.c_bc{
  font-weight: bold; 
  color: white; 
  text-align: center; 
}
 
/**********
 * errors *
 **********/
.errors_div_visible{
  visibility: visible;
  border-top-style: dashed;
  border-bottom-style: dashed;
  border-left-style: dashed;
  border-right-style: dashed;
  background-color: #9999ff;
  max-width: 450px;
  max-height: 150px;
  border-top-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-right-width: 2px;
  border-top-color: #ffcc66;
  border-bottom-color: #ffcc66;
  border-left-color: #ffcc66;
  border-right-color: #ffcc66;
  overflow: auto; 
  top: 2px;
  right: -1px;
  position: fixed;
  z-index: 10;
}

.errors_div_text{
  font-family: Verdana,Arial,Helvetica,sans-serif;
  font-size: 11px;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

/***********
 * various *
 ***********/
 .pointer{
  cursor: hand;
  cursor: pointer;
 }