
/* -------- Editor window: -------- */

.authPopupFade {
  z-index: 1000;
  position: fixed;
  display: none;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #666666;
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.authPopupWrap {
  z-index: 1001;
  position: fixed;
  display: none;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.authPopupWindow {
  position: relative;
  height: 100%;
  max-width: 1000px;
  margin: 0px auto 0px auto;
  background-color: #E9E9E9;
  -moz-box-shadow: 0px 0px 9px #000000;
  -webkit-box-shadow: 0px 0px 9px #000000;
  box-shadow: 0px 0px 9px #000000;
}

.authPopupHeader {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
	height: 39px;
  border-bottom: 1px solid #666666;
	text-align: center;
	font-weight: bold;
}

.authPopupTitle {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
	height: 39px;
	line-height: 39px;
  font-size: 20px;
	text-align: center;
	font-weight: bold;
  color: #333333;
}

.authPopupClose {
  position: absolute;
  top: 3px;
  right: 8px;
  width: 30px;
  height: 30px;
  font-size: 38px;
  line-height: 30px;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
}

.authPopupContent {
  position: absolute;
  top: 40px;
  left: 0px;
  right: 0px;
	bottom: 0px;
	background-color: #F3F3F3;
	overflow-y: scroll;
}

.authPopupButtons {
  position: relative;
  max-width: 200px;
  height: 40px;
  margin: 0px auto 0px auto;
}

/* -------- Dialog box: -------- */

.authDialogFade {
  z-index: 2000;
  position: fixed;
  display: none;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #666666;
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.authDialogWrap {
  z-index: 2001;
  position: fixed;
  display: none;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.authDialog {
  position: relative;
  max-width: 400px;
  margin-top: 15%;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 6px 6px 6px;
  background-color: #CCCCCC;
  -moz-box-shadow: 0px 0px 9px #000000;
  -webkit-box-shadow: 0px 0px 9px #000000;
  box-shadow: 0px 0px 9px #000000;
}

.authDialogHeader {
  position: relative;
  width: 100%;
	height: 30px;
}

.authDialogTitle {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-weight: bold;
  color: #333333;
}

.authDialogClose {
  position: absolute;
  top: -2px;
  right: 2px;
  width: 20px;
  height: 30px;
  font-size: 1.7em;
  line-height: 30px;
  font-weight: bold;
  text-align: right;
  color: #000000;
  cursor: pointer;
}
.authDialogClose:hover {
  color: #2288CC;
}

.authDialogContent {
  padding: 12px;
	background-color: #F6F6F6;
}

.authDialogMessage {
  margin: 0px 8px 8px 8px;
  font-size: 10pt;
  line-height: 13pt;
}

.authDialogButtons {
  clear: both;
  float: right;
  height: 40px;
  margin: 12px 0px 0px 0px;
  padding-right: 16px;
}

/* -------- Buttons: -------- */

.authButton {
  height: 26px;
  padding-left: 12px;
  padding-right: 12px;
  font: 13px sans-serif;
  color: #333333;
  font-weight: bold;
}
.authButtonSmall {
  height: 20px;
  padding-left: 6px;
  padding-right: 6px;
  font: 11px sans-serif;
  color: #333333;
  font-weight: bold;
}