/* Pseudo-Popup */

div#popupwin {
  display:    block;
  position:   fixed;
  top:        50px;
  left:       100px;
  width:      400px;
  padding:    2px;
  color:      #000000;
  background: #cccccc;
  border:     2px outset #cccccc;
  z-index: 100;
}
* html div#popupwin {
  position: absolute;
}
div#popuptitle {
  color:         #fff;
  background:    #ccc;
  font-weight:   bold;
  font-size:     12px;
  font-family:   verdana, arial, helvetica, sans-serif;
  padding-bottom:1px;
  cursor:        default;
}
div#popuptitle * {
  cursor: default;
}
div#innerpopuptitle {
  background: #042194;
  color:      #fff;
  height:     20px;
  line-height:20px;
  cursor: 		move;
}
div#innerpopuptitle img {
  border: 0px;
  padding:0px;
  float:  right;
  display:block;
}
div#popupcontent {
  display:      block;
  height:       280px;
  line-height:	130%;
  font-family:  arial, helvetica, sans-serif;
  overflow:     auto;
  border:       1px inset #ccc;
  font-size:    100%;
  color:        #000000;
  background:   #ffffff;
  padding:      5px;
}
div#popupcontent a{
  background: white;
  text-decoration: underline;
  font-weight: bold;
}
div#popupcontent span{
  font-size: 80%;
}