﻿/* ------------------------------------------------------------------------- */
/* XPopup                                                                    */
/* ------------------------------------------------------------------------- */

.XPopup {
   position: absolute;
   z-index: 10;
}

.XPopupMask {
   background-color: white;
   filter: mask();
   overflow: hidden;
   position: absolute;
      left: 0px;
      top: 0px;
   z-index: 15;
}

.XPopupContent {
   border: solid lightgrey 1px;
   background-color: white;
   filter: alpha(opacity=90);
   opacity: 0.9;
   -moz-opacity: 0.9;
   position: absolute;
      left: 0px; 
      top: 0px; 
   z-index: 25; 
}

.XPopupMenuItem {
   background-color: lightgrey;
   color: gray;
   line-height: 1.0em;
   padding-top: 3px;
   padding-left: 3px;
   padding-right: 3px;
   padding-bottom: 0px;
   text-align: left;
}

.XPopupMenuItem-Disabled {
   background-color: lightgrey;
   color: white;
   line-height: 1.0em;
   padding-top: 3px;
   padding-left: 3px;
   padding-right: 3px;
   padding-bottom: 0px;
   text-align: left;
}

.XPopupMenuItemImage {
   border-width: 0px;
   width: 16px;
   margin-right: 5px;
   vertical-align: middle;
}

.XPopupShadow {
   background-color: gray;
   filter: alpha(opacity=20);
   opacity: 0.2;
   -moz-opacity: 0.2;
   position: absolute;
   z-index: 20;
}

/* ------------------------------------------------------------------------- */

