﻿/**
 * Master Stylesheet
 * @cssdoc      version 1.0-pre
 *
 * @project     Scale Hobbies
 * @site        http://www.Scale-Hobbies.com
 * @copyright   2011 by author
 * @author      colin-michael.com <colin.d.michael@gmail.com>
 * @date        2010-02-20
 * @version     2011.01.31.1
 *
 * @colordef    #f0f0f0;  (Background)
 * @colordef    #1e1e1e; light black (Content)
 * @colordef    #1e1e1e;  (h1)
 * @colordef    #808080; (h2, h3, a:all)
 * @fontdef     Arial, Helvetica, sans-serif
 */


/**
 * @section Tag Selectors
 *
 * HTML tags and pseudos
 */
body {
    background-color:#300000;
    color:#0c0c0c;
    font:0.9em/1.1em Arial, Helvetica, sans-serif;
    height:100%;
    width:100%;
}
a {
    color:#900000;
}
h1, h2, h3, h4, h5 {
    font-variant:small-caps;
}
h1 {
    color:#800000;
    font-size:1.5em;
}
h2 {
    color:#1c1c1c;
    font:1.2em/1.2em sans-serif;
    margin-bottom:5px;
}
h3 {
    color: #000080;
    font-size: 1.1em;
}
h4 {
    font-size:1em;
}
p {
    font-size:0.9em;
    margin-bottom:5px;
    text-align:justify;
}


/**
 * @section ID Selectors
 *
 * ID block style
 */
#banner {
    background-color:#7c7c7c;
    text-align:center;
}
#content {
    background-color:inherit;
    margin:0 auto;
    visibility: hidden;
    width:900px;
}


/**
 * @section Class Selectors
 *
 * Class styling
 */
.alc {
    text-align:center;
}
.alr {
    text-align:right;
}
.b {
    font-weight:bold;
}
.border1 {
    border:1px solid black;
    padding:4px;
}
.i {
    font-style:italic;
}
.indent5 {
    margin-left:5px;
}
.indent10 {
    margin-left:10px;
    margin-right:10px;
}
.indent20 {
    margin-left:20px;
    margin-right:20px;
}
.indent30 {
    margin-left:30px;
}
.indent40 {
    margin-left:40px;
}
.indent100 {
    margin-left:100px;
}
.justify {
    text-align:justify;
}
.m-10 {
    margin-top:-10px;
}
.m0 {
    margin:0;
}
.m5 {
    margin:5px;
}
.m10 {
    margin:10px;
}
.m25 {
    margin-left:25px;
}
.mauto {
    margin-left:auto;
    margin-right:auto;
}
.mb-15 {
    margin-bottom:-15px;
}
.small {
    font-size:0.85em;
}
.u {
    text-decoration:underline;
}
.ulist li {
    list-style-type:disc;
    line-height:1.2em;
    margin:0 0 0 25px;
    text-align:justify;
}
.xsmall {
    font-size:0.75em;
}


