/*
 * NOSA HEADER START
 *
 * The contents of this file are subject to the terms of the NASA Open
 * Source Agreement (NOSA), Version 1.3 only (the "Agreement").  You may
 * not use this file except in compliance with the Agreement.
 *
 * You can obtain a copy of the agreement at
 *   docs/NASA_Open_Source_Agreement_1.3.txt
 * or
 *   https://sscweb.gsfc.nasa.gov/WebServices/NASA_Open_Source_Agreement_1.3.txt.
 *
 * See the Agreement for the specific language governing permissions
 * and limitations under the Agreement.
 *
 * When distributing Covered Code, include this NOSA HEADER in each
 * file and include the Agreement file at
 * docs/NASA_Open_Source_Agreement_1.3.txt.  If applicable, add the
 * following below this NOSA HEADER, with the fields enclosed by
 * brackets "[]" replaced with your own identifying information:
 * Portions Copyright [yyyy] [name of copyright owner]
 *
 * NOSA HEADER END
 *
 * Copyright (c) 2016-2017 United States Government as represented by
 * the National Aeronautics and Space Administration. No copyright is
 * claimed in the United States under Title 17, U.S.Code. All Other
 * Rights Reserved.
 *
 */


#catalogDiv {
    width: 100%;
    height: 400px;
    overflow: auto;
/*
    border-width: 2px;
    border-radius: 5px;
    border-style: solid;
    border-color: blue;
    margin: 5px;
    padding: 5px;
*/
}


#catalogTable, th, td {
    width: 100%;
    border: 2px solid black;
    border-collapse: collapse;
    table-layout: fixed;
}

table#catalogTable tr:hover td {background-color: aquamarine}

.id {
    width: 100px; 
    word-wrap: break-word;
}

/*
#infoDiv {
    border-width: 2px;
    border-radius: 5px;
    border-style: solid;
    border-color: blue;
    margin: 5px;
    padding: 5px;
}
*/


#infoTableDiv {
    width: 100%;
    height: 300px;
    overflow: auto;
}

#infoTable {
    width: 100%;
    border: 2px solid black;
    border-collapse: collapse;
    table-layout: fixed;
}

table#infoTable tr:nth-child(even) {background-color: cyan}

#paramDiv {
    width: 100%;
    height: 400px;
    overflow: auto;
}

#paramTable {
    width: 100%;
    border: 2px solid black;
    border-collapse: collapse;
    table-layout: fixed;
}

/*
table#paramTable tr:nth-child(even) {background-color: cyan}
*/

#dataArea {
    overflow: auto;
    white-space: pre;
}


