/*--.
   /
   \____ Styles for major page features ________________ */

table {
    font-family: sans-serif;
}
div {
    font-family: sans-serif;
}

/* Container for an Atlas data set */
#ds {
}

/* An Atlas data set title. */
#ds_title {
    color: white;
    background-color: #669999; 
    font-size: x-large;
    font-weight: bold;
    font-family: sans-serif;
    text-align: center;
    padding: 0.15em;
    margin: 0.1em;
}

#ds h3 {
    text-align: center;
    margin: 0.5em;
}

/* Container for a clickable coverage map */
.ds_cmap {
    margin-bottom: 1em;
}

/* Coverage map title */
.ds_cmap_title {
    font-size: larger;
    font-weight: bold;
    text-align: center;
    margin: 0.25em 0 0.25em 0;
}

/* Coverage map image */
.ds_cmap_image {
    text-align: center;
}

/* Coverage map caption */
.ds_cmap_caption {
    width: 75%;
    margin-top: 0.25em;
    margin-right: auto;
    margin-left: auto;
    font-size: small;
    font-style: italic;
    text-align: center;
}


/*--.
   /
   \____ Styles for informational text ________________ */

/* A block of descriptive text */
.ds_info {
    padding: 0.25em 1em 1em 1em;
    margin: 0;
}

/* Container for content floated right of some descriptive text */
.ds_right {
    float: right;
    margin: 0 0 1em 1em;
    padding: 1em;
}

/* Container for content floated left of some descriptive text */
.ds_left {
    float: left;
    margin: 0 1em 1em 0;
    padding: 1em;
}

/* Container and styling for lists of links */
.ds_links {
    text-align: center;
    margin-left: auto;
    padding: 0.25em 1em 1.5em 1em;
    margin: 0;
}

/* A bulleted list */
.ds_info_ul_li {
    margin-bottom: 0.5em;
    padding: 0.25em 1em 1em 2em;
}

.ds_links ul {
    display: inline;
    margin: 0;
    padding: 0;
}

.ds_links ul li {
    display: inline;
    margin: 0;
    padding: 0 0.4em 0 0.3em;
    border-right: 1px solid black;
}

.ds_links ul li.last {
    border-right: none;
}

.ds_links ul li a {
    white-space: nowrap;
    font-weight: bold;
}

/* Container for help text */
.ds_help {
    text-align: center;
    margin: 0.5em 1em 1.5em 1em;
}

/* Container for logos */
.ds_logo {
    text-align: center;
}

.ds_table {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0.5em;
    border-width: 1px;
    border-spacing: 0;
    border-style: outset;
    border-color: gray;
    background-color: inherit;
    border-collapse: collapse;
}

.ds_table th, .ds_table td {
    border-width: 1px;
    padding: 0.25em;
    border-style: inset;
    border-color: gray;
    background-color: inherit;
}

.ds_caption {
    font-size: x-small;
    padding: 0.25em 1em 1em 1em;
    margin: 0;
}

.ds_note {
    font-size: small;
    padding: 0.25em 1em 1em 1em;
    margin: 0;
}


/*--.
   /
   \____ Styles for the input form ________________ */

#ds_form {
    background-color: inherit;
    margin: 0;
    padding: 1em 1em 1.5em 1em;
}

#ds_form th, #ds_form td {
    padding: 0.2em;
    text-align: center;
}

#ds_form table.inputs {
    margin-right: auto;
    margin-left: auto;
}

#ds_form table.inputs th {
    color: white;
    background-color: #669999;
    font-weight: normal;
}

#ds_form table.inputs td {
    background-color: lightgray;
    vertical-align: middle;
}

/* Darken table cells if background is already grey. */
#ds #ds_form table.inputs td {
    background-color: #DDDDDD;
    vertical-align: middle;
}

#ds_form table.inputs td.in {
    text-align: left;
}

#ds_form table.submit {
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
}

/* Styling for lists of coordinate input examples */
.ds_form_ex {
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: small;
}

.ds_form_ex ul {
    display: inline;
    margin: 0;
    padding: 0.2em 0 0.2em 0;
}

.ds_form_ex ul li {
    display: inline;
    white-space: nowrap;
    margin: 0;
    padding: 0 1em 0 1em;
    border-right: 1px solid black;
}

/* Clearly delineate extent of a single example input */
.ds_form_ex ul li:hover {
    background-color: #CCCCCC;
}

.ds_form_ex ul li.last {
    border-right: none;
}

.ds_form_ex ul li.last:hover {
    background-color: #CCCCCC;
}


/*--.
   /
   \____ Styles for bold, colored text ________________ */

/* Bold red text, useful when referring to coverage maps. */
.red {
    color: #FF0033;
    font-weight: bold;
}

/* Bold green text, useful when referring to coverage maps. */
.green {
    color: green;
    font-weight: bold;
}

/* Bold yellow text, useful when referring to coverage maps. */
.yellow {
    color: #FFCC00;
    font-weight: bold;
}

/* Bold orange text, useful when referring to coverage maps. */
.orange {
    color: #FF8040;
    font-weight: bold;
}

/* Bold cyan text, useful when referring to coverage maps. */
.cyan {
    color: #00FFFF;
    font-weight: bold;
}

/* Bold magenta text, useful when referring to coverage maps. */
.magenta {
    color: #FF00FF;
    font-weight: bold;
}

/* Bold blue text, useful when referring to coverage maps. */
.blue {
    color: blue;
    font-weight: bold;
}

