/**
 * 默认应用样式
 * 
 * @version $Id: default.css 745 2013-09-27 09:44:06Z liqt $
 * @creator liqt @ 2013-02-21 11:18:16 by caster0.0.3
 */
@import url('module.function.css');

@media all {

    /**
    * @section global typography settings
    *
    * vertical rhythm settings (based on em-unit)
    * -------------------------------------------
    * basefont-size: 14px (87.5%)
    * line-height  : 21px (factor: 1.5)
    */

    /* (en) reset font size for all elements to standard (16 Pixel) */
    /* (de) Alle Schriftgrößen auf Standardgröße (16 Pixel) zurücksetzen */
    html * { font-size:100%; }

    /**
    * (en) reset monospaced elements to font size 16px in all browsers
    * (de) Schriftgröße von monospaced Elemente in allen Browsern auf 16 Pixel setzen
    *
    * @see: http://webkit.org/blog/67/strange-medium/
    */

    textarea,
    pre,
    code,
    kbd,
    samp,
    var,
    tt {
        font-family: "微软雅黑", Consolas, "Lucida Console", "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier;
    }

    /* (en) base layout gets standard font size 14px */
    /* (de) Basis-Layout erhält Standardschriftgröße von 14 Pixeln */
    body {
        font-family: "微软雅黑", "Droid Serif", Georgia, "Times New Roman", Times, serif;
        font-size:87.50%; /* base: 14px */
        
        /* (en) Prevent auto-scaling of text in mobile webkit browsers */
        /* (de) Automatische Schriftvergrößerung in mobilen Webkit-Browsern vermeiden */
        -webkit-text-size-adjust:100%;
    }

    /*--- Headings | Überschriften ------------------------------------------------------------------------*/

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: 400;
        margin:0;
    }

    h1 {
        font-size:350%;
    }

    h2 {
        font-size:250%;
    }

    h3 {
        font-size:175%;
    }

    h4 {
        font-size:133.33%;
    }

    h5 {
        font-size:116.67%;
    }

    h6 {
        font-weight: bold;
        font-size:100%;
    }

    /* --- Lists | Listen  -------------------------------------------------------------------------------- */

    ul,
    ol,
    dl {
        font-size:1em;
    }

    ul {
        list-style-type:disc;
    }

    ol {
        list-style-type:decimal;
    }

    ul ul {
        list-style-type:circle;
        margin-top:0;
    }

    ol ol {
        list-style-type:lower-latin;
        margin-top:0;
    }

    ol ul {
        list-style-type:circle;
        margin-top:0;
    }

    li {
        font-size:1em;
    }

    dt { font-weight:bold; }

    /* --- general text formatting | Allgemeine Textauszeichnung ------------------------------------------ */

    p {
        font-size:1em;
    }

    blockquote, cite, q {
        font-style:italic;
    }

    blockquote {
    }

    strong, b { font-weight:bold; }

    em, i { font-style:italic; }

    big {
        font-size:116.667%;
    }

    small {
        font-size:85.71%;
    }

    pre,
    code,
    kbd,
    tt,
    samp,
    var {
        font-size:100%;
    }

    pre {
        white-space: pre;
        white-space: pre-wrap;
        word-wrap: break-word;
    }
    pre, code { color:#800; }

    kbd, samp, var, tt {
        color:#666;
        font-weight:bold;
    }

    var, dfn { font-style:italic; }

    acronym, abbr {
        font-variant:small-caps;
        letter-spacing:.07em;
        cursor:help;
    }

    sub,
    sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
    }

    sup { top: -0.5em; }
    sub { bottom: -0.25em; }

    mark {
        background: #ff0;
        color: #000;
    }

    hr {
        color:#fff;
        background:transparent;
        border:0;
        border-bottom:1px #eee solid;
    }

    /*--- Links ----------------------------------------------------------------------------------------- */

    a {
        color:#4D87C7;
        background:transparent;
        text-decoration:none;
    }

    a:active { outline: none; }

    /* (en) maximum constrast for tab focus - change with great care */
    /* (en) Maximaler Kontrast für Tab Focus - Ändern Sie diese Regel mit Bedacht */
    a:hover,
    a:focus {
/*         background-color: #4D87C7; */
/*         color:#fff; */
/*         text-decoration:none; */
    }

    /* --- images ------------------ */

    img,
    figure {
        margin: 0;
    }

    /**
    * ------------------------------------------------------------------------------------------------- #
    *
    * Tables | Tabellen
    *
    * (en) Generic classes for table-width and design definition
    * (de) Generische Klassen für die Tabellenbreite und Gestaltungsvorschriften für Tabellen
    *
    * @section content-tables
    */

    table {
        width:100%;
        border-collapse:collapse;
        color:#333;
        border-top: 1px #ccc solid;
        border-bottom: 1px #ccc solid;
    }

    table caption {
        font-variant:small-caps;
    }

    th, td {
        line-height: 1.5em;
        vertical-align: top;
        padding: 0.7143em 0.5em;
    }

    th *:first-child,
    td *:first-child {
        margin-top: 0;
    }

    th.nowrap,
    td.nowrap {
        white-space: nowrap;
    }

    thead th {
        text-align: left;
        color:#000;
        border-bottom:2px #000 solid;
    }

    tbody th {
        text-align: left;
        border-top:1px solid #ccc;
        text-align:left;
    }

    tbody td {
        text-align: left;
        border-top:1px solid #ccc;
    }

    /* highlight row on mouse over */
    tbody tr:hover th,
    tbody tr:hover td {
        background:#f8f8f8;
    }
}