/*
-----------------------------------------------
Grey Box Method - Layout CSS
----------------------------------------------- */

body {
    background: #eee;
    border-top: 5px solid #000;
    color: #333;
    font-size: 11px;
    padding: 0 0 40px;
}


/* anchors
----------------------------------------------- */
a {
    color: #000;
    font-weight: normal; /*font-weight:bold;*/
    /*text-decoration: none;*/
    text-decoration: underline;
}

    a:hover {
        color: #333;
    }

/* 960 grid system container background
----------------------------------------------- */
.container_16 {
    background: #fff;
}

/* headings
----------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2em;
    margin-bottom: .3em;
}

h2 {
    margin-top: 1em;
}

h5 {
    font-size: 1.2em;
}

h6 {
    font-size: 1em;
    text-transform: uppercase;
}


h1 a {
    font-weight: normal;
}

/* page heading
----------------------------------------------- */
h2#page-heading {
    font-weight: normal;
    padding: .5em;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #ccc;
}


/* boxes
----------------------------------------------- */
.box {
    background: #ddd;
    margin-bottom: 20px;
    padding: 10px 10px 1px 10px;
}

    .box h2 {
        font-size: 1em;
        font-weight: normal;
        text-transform: uppercase;
        color: #fff;
        background: #333;
        margin: -10px -10px 0 -10px;
        padding: 6px 12px;
    }

        .box h2 a,
        .box h2 a.visible {
            color: #fff;
            background: #333 url("switch_minus.gif") 96% 50% no-repeat;
            display: block;
            padding: 6px 12px;
            margin: -6px -12px;
            border: none;
        }

.grid_4 .box h2 a {
    background-position: 97% 50%;
}

.grid_5 .box h2 a {
    background-position: 98% 50%;
}

.grid_12 .box h2 a {
    background-position: 99% 50%;
}

.box h2 a.hidden,
.box h2 a.hidden:hover {
    background-image: url("switch_plus.gif");
}

.box h2 a:hover {
    background-color: #111;
}

.block {
    padding-top: 10px;
}

/* paragraphs, quotes and lists
----------------------------------------------- */
p {
    margin-bottom: 1em;
}

blockquote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2em;
    padding-left: 1em;
    border-left: 4px solid #ccc;
}

    blockquote cite {
        font-size: .9em;
    }

ul, ol {
    padding-top: 0;
}



/* table
----------------------------------------------- */
table.data {
    width: 100%;
    border: 1px solid #bbb;
    margin-bottom: 10px;
}
/*col.colC {
  width:8em;
}*/
.data th, td {
    padding: .2em 1em;
    text-align: left;
}

.data thead th {
    border-bottom: 2px solid #888;
    background: #bbb;
    padding: .4em 1em .2em;
}

    .data thead th.table-head {
        font-size: 1em;
        font-weight: normal;
        text-transform: uppercase;
        color: #fff;
        background: #555;
        border: 1px solid #555;
    }

.data tbody th,
.data tbody td {
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    background: #eee;
}

.data tbody tr.odd th,
.data tbody tr.odd td {
    background: #fff;
}

.data tfoot th,
.data tfoot td {
    border-top: 2px solid #666;
    background: #eee;
}

.data tfoot tr.total th,
.data tfoot tr.total td {
    border-top: 6px double #666;
}

.data tfoot tr.total th {
    text-transform: uppercase;
}

.data th.currency,
.data td.currency {
    text-align: right;
}


/* forms
----------------------------------------------- */
form {
    overflow: hidden;
}

fieldset {
    border: 1px solid #bbb;
    padding: 10px;
    position: relative;
    background: #e9e9e9;
    margin-bottom: 10px;
}

legend {
    font-size: 1.1em;
    padding: .4em .8em;
    background: #fff;
    border: 1px solid #bbb;
}

fieldset.login p {
    margin-bottom: 1em;
    margin-top: 0pt;
}

fieldset p label {
    width: 98%;
}

fieldset p input {
    width: 98%;
}

fieldset p select {
    width: 99%;
}

fieldset.login p label {
    float: left;
    line-height: 2em;
    margin-right: 3%;
    text-align: right;
    width: 32%;
}

fieldset.login p input {
    width: 60%;
}

fieldset.login input.button {
    margin-left: 35%;
}

form p.notice {
    font-weight: bold;
}

input.search.text {
    width: 66%;
}

input.search.button {
    width: 28%;
    margin-left: 2%;
}


/* articles
----------------------------------------------- */
.box .article {
    border-top: 3px solid #fff;
    padding: 13px 10px 0 10px;
}

.box .first {
    border-top: none;
}



