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

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

/** Defines the style of the event selector pop-up
 */
#eventSubscriptionPopUp, #userEventSubscriptionPopUp {
  position:absolute;
  top:0px;
  left:0px;
  z-index:1000;

  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 1px;
  padding-right: 1px;

  background-color: #FFFFFF;

  border-color: #999999 #999999 #999999 #999999;
  border-style: solid;
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px; 
  border-bottom-width: 1px; 
  
  visibility:hidden;
  display:none;
  overflow: hidden;
  overflow-x : hidden;
  overflow-y : hidden;   
}

/** Defines the style of the popup title
 */
#eventSubscriptionTitle {
   background-color: #BBBBBA;
   background-image: url('./images/subscr-title-background.gif');

   width: 170px;
   height: 16px;

   padding-top: 4px;
   padding-bottom: 4px;
   padding-left: 4px;
   padding-right: 4px;
}

/** Defines the style of a category in the subscription list
 */
.eventSubscriptionCategory {
   background-color: #CCCCCC;
   background-image: url('./images/subscr-background.gif');

   width: 170px;
   height: 16px;

   margin-top: 1px;
   padding-top: 4px;
   padding-bottom: 4px;
   padding-left: 4px;
   padding-right: 4px;
}

/* -------------------------------------------------------------------- */
/* ----------------------- 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 iframe pop-up border
 *  This is done in two different styles to be IE/DOM compatible
 *  This is to be IE/DOM compatible
 */
#iframePopUp{
	position:absolute;
	top:0px;
	left:0px;

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

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

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

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

/** 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;
}

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

/** Style for the standard yesNoCancel pop-up border
 *  This is done in two different styles to be IE/DOM compatible
 */
#yesNoCancelPopUp{
	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 yesNoCancel pop-up.
 *  This is done in two different styles to be IE/DOM compatible
 */
#yesNoCancelPopUpContent{
  width: 100%;
  height: 100%;
	background-color: #FFFFFF;
}

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

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

/** Empty space between two buttons
 */
.yesNoCancelPopUpButtonSeparator {
  width: 15px;
}

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

/** Style for the standard prompt pop-up border
 *  This is done in two different styles to be IE/DOM compatible
 */
#promptPopUp{
	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 prompt pop-up.
 *  This is done in two different styles to be IE/DOM compatible
 */
#promptPopUpContent{
  width: 100%;
  height: 100%;
	background-color: #FFFFFF;
}

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

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

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


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

/** Calendar popup
 */
#calendarPopUp {
	position:absolute;
	top:0px;
	left:0px;
    border: 1px solid #BBBBBB;
    padding:1px;
    background-color: #FFFFFF;

	display: none;
	visibility:hidden;
	z-index:1002;
}

/** Calendar popup table style
 */
.calendarPopUpTable {
  padding:0;
  margin:0;
  border-left: 1px solid #A2ADBC;
  font: normal 10px Verdana, Arial, Helvetica, sans-serif;
  color: #616176;
  background-color: #FFFFFF;
}

.calendarPopUpTable caption {
  background-color: #CCCCBB;
  font-weight: bold;
  text-align: right;
  vertical-align: middle;
}

#calendarPopUpTableCaption {
	position:relative;
	top:0px;
	left:0px;
    border: 0px;
	height:18px;
    padding:0;
    margin:0;
}

.calendarPopUpTable caption a {
	position:absolute;
	left:137px;
    top:0px;
}

/** Style for the SELECT displaying monthes
 */
#calendarPopUpMonth {
	position:absolute;
	left:0px;
    top:0px;
    font: normal 9px Verdana, Arial, Helvetica, sans-serif;
    width:80px;
    height:16px;
}

/** Style for the SELECT displaying years
 */
#calendarPopUpYear {
	position:absolute;
	left:81px;
    top:0px;
    font: normal 9px Verdana, Arial, Helvetica, sans-serif;
    width:55px;
    height:16px;
}

.calendarPopUpTable th {
 position:relative;
 border-right: 1px solid #CCCCBB;
 border-bottom: 1px solid #CCCCBB;
 height: 20px;
 text-align: center;
 vertical-align: middle;
 background-color: #CCCCDD;
}

.calendarPopUpTable td {
 border-right: 1px solid #A2ADBC;
 border-bottom: 1px solid #A2ADBC;
 padding:0px;
 margin:0px;
 text-align: center;
 vertical-align: middle;
}

/** Style of an empty day cell
 */
.calendarPopUpDayCellEmpty span {
  background-color:#DDDDDD;
	display: block;
	width: 21px;
	height: 20px;
}

/** Style of a selectable cell
 */
.calendarPopUpDayCell {
  text-align: center;
  vertical-align: middle;
}

.calendarPopUpDayCell a {
	font: normal 10px/20px Verdana, Arial, Helvetica, sans-serif;
  color: #616176;
	display: block;
	width: 21px;
	height: 20px;
  text-align: center;
}

.calendarPopUpDayCell a:active {text-decoration:none;background-color: #9495B1;}
.calendarPopUpDayCell a:link {text-decoration:none;}
.calendarPopUpDayCell a:visited {text-decoration:none;}
.calendarPopUpDayCell a:hover {text-decoration:none;background-color: #BFBFD8;}

/** Style of a selected cell
 */
.calendarPopUpDayCellSelected {
 text-align: center;
 vertical-align: middle;
}

.calendarPopUpDayCellSelected a {
 font: normal 10px/20px Verdana, Arial, Helvetica, sans-serif;
 color: #FFFFFF;
 text-decoration:none;
 background-color: #9495B1;
 display: block;
 width: 21px;
 height: 20px;
 text-align: center;
}

.calendarPopUpDayCellSelected a:active {text-decoration:none;background-color: #9495B1;}
.calendarPopUpDayCellSelected a:link {text-decoration:none;}
.calendarPopUpDayCellSelected a:visited {text-decoration:none;}
.calendarPopUpDayCellSelected a:hover {text-decoration:none;background-color: #BFBFD8;}
