/*
 * Copyright 1999-2004 The Apache Software Foundation.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/** simple CSS stylesheet for supersonic tour example app */

body {
    font-family: Georgia, Verdana, Arial, sans-serif;
}

.note {
    font-size: 80%;
}

a:hover {
    background-color: #ffff99;
    text-decoration: none;
}

td.navigation {
    font-size: 80%;
}

#navigation {
    background: #FFCC00;
    font-size: 80%;
    padding: 0.5em;
    font-family: verdana, helvetica, arial, sans-serif;
}

#navigation a {
    color:black;
}

#navigation .currentPage,.currentPageHeader {
    font-weight: bold;
}

#navigation .currentPage {
    background: #FFFF99;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.oddRow {
    background: #FFFFCC;
}

td,th {
    vertical-align: top;
    text-align: left;
}

.legend {
    font-style: italic;
}

.titleCell {
    font-size: 120%;
    font-weight: bold;
}

.links {
    font-size: 80%;
    text-align: right;
}

.footer {
    font-size: 80%;
    margin-top: 1em;
    border-top: solid #CCCCCC 1px;
    text-align: right;
}

h1 {
    border-bottom: solid red 1px;
}

h2 {
    border-bottom: solid #CCCCCC 1px;
}

.lineNumber {
    color: #666666;
}

.codeFilename {
    font-weight: bold;
    text-align: right;
    text-style: italic;
}

.code {
    font-family: courier, monospaced;
    font-size: 90%;
    background: #FFFFCC;
    margin-top: 1em;
    padding: 2px;
}

.codeIndent {
    margin-left: 1em;
}

.copyright {
    font-size: 80%;
    text-align: right;
}
