/* Name    : default
 * Version : 1.0
 * Content : Dragon Matrix popup CSS styles : calendar, alert, confirm, events, etc.
 * Author  : blenistour
 */

/* -------------------------------------------------------------------- */
/* ----------------------- STANDARD POP-UPS --------------------------- */
/* -------------------------------------------------------------------- */

/** Style for the standard pop-ups, don't edit unless you know what you are doing
 */
#popUpWO{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100px;
	height: 100px;
	visibility: hidden;
	z-index:1000;
	background-color: #FFFFFF;
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	opacity: 0.5;
}

/** Style for the standard pop-ups, don't edit unless you know what you are doing
 */
#popUpDO{
	position:absolute;
	visibility:hidden;
	z-index:999;
	background-color: #FFFFFF;
}

/* -------------------------------------------------------------------- */

/** Style for the standard alert pop-up border
 *  This is done in two different styles to be IE/DOM compatible
 *  This is to be IE/DOM compatible
 */
#alertPopUp{
	position:absolute;
	top:0px;
	left:0px;

  border: 1px solid #777777;
  padding: 2px;
  margin: 1px;

	background-color: #FFFFFF;
	display: none;
	visibility:hidden;
	z-index:1002;
}

/** Content of the alert pop-up.
 *  This is done in two different styles to be IE/DOM compatible
 *  This is to be IE/DOM compatible
 */
#alertPopUpContent{
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
}

/** Style of the alert popup message
 */
#alertPopUpMessage {
  text-align: center;
  vertical-align: middle;
}

/** Style of the alert popup group of buttons
 */
#alertPopUpButtons {
  height:34px;
  text-align: center;
  vertical-align: middle;
}

/* -------------------------------------------------------------------- */

/** Style for the standard confirm pop-up border
 *  This is done in two different styles to be IE/DOM compatible
 */
#confirmPopUp{
	position:absolute;
	top:0px;
	left:0px;

  border: 1px solid #777777;
  padding: 2px;
  margin: 1px;

	background-color: #FFFFFF;
	display: none;
	visibility:hidden;
	z-index:1002;
}

/** Content of the confirm pop-up.
 *  This is done in two different styles to be IE/DOM compatible
 */
#confirmPopUpContent{
  width: 100%;
  height: 100%;
	background-color: #FFFFFF;
}

/** Style of the confirm popup message
 */
#confirmPopUpMessage {
  text-align: center;
  vertical-align: middle;
}

/** Style of the confirm popup group of buttons
 */
#confirmPopUpButtons {
  height:34px;
  text-align: center;
  vertical-align: middle;
}

/** Empty space between two buttons
 */
.confirmPopUpButtonSeparator {
  width: 20px;
}

/* -------------------------------------------------------------------- */
