﻿/* common css element to all three pages*/
* {
    -webkit-touch-callout: none;                            /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;                        /* prevent webkit from resizing text to fit */
    -webkit-tap-highlight-color: rgba(0,0,0,0);    /* make transparent link selection, adjust last value opacity 0 to 1.0 */
    -webkit-user-select: none;                               /* prevent copy paste, to allow, change 'none' to 'text' */
}

#theForm {
   position:relative; 
   margin:auto; 
   top:0; 
   width:100%; 
   height:100%;
}

.mnuBar {
   position:absolute;
   top:0;
   left:0;
   width:100%;
   border: 1px solid #000;
   height:45px;
   background-color:#663300;
   z-index:1;
}
.mnuBarTitle {
   position:absolute;
   top:12px;
   left:5px;
   font-weight:bold;
   color:white;
   font-size:10pt;
}

.mnuBtn {
   position:absolute;
   top:0;
   color:white;
   cursor:pointer;
   font-weight:bold;
   z-index:2;
   text-decoration:none;
   padding:4px 8px 4px 8px;
   font-size:12pt;
   text-align:center;
   vertical-align:middle;
}

.pnlLabel {
   position: absolute;
   left:10px;
   color:#FFFFFF;
}
.txtSm {
   position:absolute;
   left:10px;
   font-size: 9pt;
   color:#FFFFFF;
}
