/*=================================================================
 *  DOM Layout Stylesheet for Windows/Mac Platforms
 *  emxUIDOMLayout.css
 *  Version 1.0
 *  Requires: emxUIDefault.css
 *
 *  This file contains the style definitions for pages using DOM layout.
 *
 *  Copyright (c) 1992-2003 MatrixOne, Inc. All Rights Reserved.
 *  This program contains proprietary and trade secret information 
 *  of MatrixOne,Inc. Copyright notice is precautionary only
 *  and does not evidence any actual or intended publication of such program
 * 
 *  static const char RCSID[] = $Id: emxUIDOMLayout.css,v 1.1 2003/12/08 21:04:38 jorajan Exp $
 *=================================================================
 */

 
/*=================================================================
 *  Default Styles
 *=================================================================
 */
 
* {
        -moz-box-sizing: border-box;
        box-sizing: border-box;
}

body {
        background-color: white;        
        margin: 0px;
        overflow: hidden;
        padding: 0px;
}        

form {
        position: inline;
}

/*=================================================================
 *  ID-Specific Styles
 *=================================================================
 */

#divPageHead {
        height: 83px;
        left: 0px;
        padding: 10px 16px 0px 16px;
        position: absolute;
        top: 0px;
        width: 100%;
        z-index: 1;
}

#divPageBody {
        height: 100%;
        left: 0px;
        padding-bottom: 50px;
        padding-top: 83px;
        position: absolute;
        top: 0px;
        width: 100%;
        z-index: 0;
}

#divPageFoot {
        bottom: 0px;
        height: 50px;
        padding: 12px 16px 6px 16px;
        position: absolute;
        width: 100%;
        z-index: 1;
}

#divPageTitle {
        border-top: 1px solid #003366;        
        color:#990000; 
        font-family: Arial, Helvetica, Sans-Serif; 
        font-weight: bold; 
        font-size: 12pt; 
        padding: 12px 0px 12px 0px;
}

#divDialogButtons {
        float:right;
}

/*=================================================================
 *  Extra Styles
 *=================================================================
 */

div.listing {
        background-color: white;
        height: 100%;
        padding: 10px;
        overflow: scroll;
        width: 100%;
}

