/* CSS:Popup */
.popup_title {
  background-color:#ff7927;
  font-family:tahoma;
  font-size:16px;
  color:white; 
  height:30px;
  line-height:30px;
  padding-left:10px; 
  padding-right:10px;
  font-weight:bold; 
  text-align:left
}

.popup_close {
  font-family:tahoma;
  font-size:16px;
  font-weight:bold; 
  height:30px;
  line-height:30px;
  cursor:pointer;
}

.popup_div {
  padding: 10px 15px 10px;
}

.popup_menu {
  background-color:#eee;
  border-bottom:1px solid #bbb;
  height:30px;
  line-height:30px;
  font-size:11px;
  font-weight:bold;
  padding:0px 15px 0px;
}

.popup_options {
  border-top:1px solid #eee;
  text-align:center;
  height:40px;
  line-height:40px;
  padding:0px 15px 0px;
}

/* CSS:Popup */
.popup_window {
  position:relative;
  margin: auto;
}

.popup_border {
  z-index:25;
  background:black;
  color:white;
  position:absolute;
  opacity:0.55;
  filter:alpha(opacity=55);
  -moz-border-radius:7px;
  border-radius:7px;
}

.popup_titlebar {
  z-index:30;
  position:absolute;
  background-color:transparent;
  color:white;
  text-shadow: black 0.1em 0.1em 0.2em;
  font-size:14px;
  font-weight:bold;
  line-height:15px;
}

.popup_content {
  z-index:30;
  background-color:white;
  position:absolute;
}

.popup_contentdiv {
  width:100%;
  height:100%;
  padding:10px;
}

