﻿/* ------------------------------------------------------------------------------------------------

    This CSS file is designed to standardize the appearance of websites across a wide range of 
    browsers, including (but not limited too): IE 6+, Firefox 2+ and Safari.

    I have chosen to standardize on 16 pixel font size, 24 pixel line height, Sans-Serif fonts for 
    the content, and variously sized Serif fonts for the titles.

    NOTE: I *DO NOT* include HTML tags that are deprecated in HTML 4.01.

    Specifically: <applet>, <s>, <strike> and <u> are no longer supported.

------------------------------------------------------------------------------------------------ */

/* --------------------------------------------------------------------------------------------- */
/* CSS Reset */

a, abbr, acronym, address, b, big, blockquote, body, caption, center, cite, code, dd, del, dfn, div, dl, dt, em, fieldset, font, form, 
h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, object, ol, p, pre, q, samp, small, span, strong, sub, sup, 
table, tbody, td, tfoot, thead, th, tr, tt, ul, var
{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    vertical-align: baseline;
    background: transparent;
}

body
{  
    font-family: Arial, 'Helvetica Neue', Helvetica, Sans-Serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 24px;
    color: #000000;
    background-color: #FFFFFF;   
}

ol, ul
{
    list-style: none;
}

blockquote, q
{
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after
{
    content: '';
    content: none;
}

:focus
{
    outline: 0;
}

table
{
    border-collapse: collapse;
    border-spacing: 0;
}

/* --------------------------------------------------------------------------------------------- */
/* Headers (H1 Through H6) */

h1, h2, h3, h4, h5, h6
{
    margin-bottom: 16px;
    font-weight: bold;
}

h1
{   
    font-size: 26px;
    line-height: 34px;
}

h2
{
    font-size: 24px;
    line-height: 32px;
}

h3
{
    font-size: 22px;
    line-height: 30px;
}

h4
{
    font-size: 20px;
    line-height: 28px;
}

h5
{
    font-size: 18px;
    line-height: 26px;
}

h6
{
    font-size: 16px;
    line-height: 24px;
}

/* --------------------------------------------------------------------------------------------- */
/* Links */

a, a:visited
{
    color: #FF0000;
    text-decoration: none;
    cursor: pointer;
}

a:hover
{
    color: #0000FF;
}

a:focus
{
    outline: 1px dotted #CCCCCC;
}

a img
{
    border: 0px none;
}

/* --------------------------------------------------------------------------------------------- */
/* Horizonal Rule */

hr
{
    height: 0;
    margin-bottom: 16px;
    border: 0 solid #CCCCCC;
    border-top-width: 1px;
}

/* --------------------------------------------------------------------------------------------- */
/* Ordered Lists, Unordered Lists and Definition Lists. */

ol, ul, dl
{
    margin-bottom: 16px;
}

ol
{
    list-style: decimal;
}

ul
{
    list-style: disc;
}

li
{
    margin-left: 30px;
}

li ul, li ol
{
    margin-bottom: 0;
}

ul.disc
{
    list-style: disc;
}

ul.circle
{
    list-style: circle;
}

ul.square
{
    list-style: square;
}

ol.decimal
{
    list-style: decimal;
}

ol.alpha, ol.upper-alpha
{
    list-style: upper-alpha;
}

ol.lower-alpha
{
    list-style: lower-alpha;
}

ol.roman, ol.upper-roman
{
    list-style: upper-roman;
}

ol.lower-roman
{
    list-style: lower-roman;
}

dl dt
{
    font-weight: bold;
}

dl dd
{
    margin-left: 30px;
}

/* --------------------------------------------------------------------------------------------- */
/* Tables and Table Cells */

table
{
    width: 100%;
    vertical-align: middle;
}

th, td
{
    vertical-align: middle;
}

th
{
    font-weight: bold;
}

/* --------------------------------------------------------------------------------------------- */
/* Forms */

fieldset
{
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid #CCCCCC;
}

legend
{
    margin-left: -4px;
    padding: 0 4px 0 4px;
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
}

label
{
    font-weight: bold;
}

/* --------------------------------------------------------------------------------------------- */
/* Paragraphs and Font Modifiers */

p, pre, address, blockquote, cite, code, samp
{
    margin-bottom: 16px;
}

pre
{
    white-space: pre;
}

pre, code, samp, tt
{
    font-family: 'Andale Mono', 'Courier New', Courier, Monospace;
}

abbr, acronym
{
	border-bottom: 1px dotted #000000;
	cursor: help;
}

em, i, cite, address
{
    font-style: italic;
}

strong, b
{
    font-weight: bold;
}

ins
{
    text-decoration: none;
}

del
{
    text-decoration: line-through;
}

big
{
    font-size: 20px;
    line-height: 25px;
}

small
{
    font-size: 12px;
    line-height: 16px;
}

sub
{
    position: relative;
    bottom: -3px;
    font-size: 13px;
    vertical-align: bottom;
}

sup
{
    position: relative;
    top: -3px;
    font-size: 13px;
    vertical-align: top;
}

/* --------------------------------------------------------------------------------------------- */
/* Color stuff. */

.highlight
{
    background-color: #FFFF00;
    color: #000000;
}

.error, .warning, .success
{
    margin-bottom: 16px;
    padding: 10px;
    border: 2px solid #CCCCCC;
}

.error
{
    color: #651414;
    background-color: #FFEBEB;
    border-color: #FFB2B2;
}

.error a, .error a:visited
{
    color: #E52E2E;
    border-bottom: 1px dotted #E52E2E;
}

.error a:hover
{
    color: #FF0000;
    border-bottom: 1px dotted #FF0000;
}

.warning
{
    color: #4D420F;
    background: #FFFFCC;
    border-color: #FFD324;
}

.warning a, .warning a:visited
{
    color: #99821D;
    border-bottom: 1px dotted #99821D;
}

.warning a:hover
{
    color: #FF0000;
    border-bottom: 1px dotted #FF0000;
}

.success
{
    color: #0F4D0F;
    background: #D9FFD9;
    border-color: #99EB99;
}

.success a, .success a:visited
{
    color: #1D991D;
    border-bottom: 1px dotted #1D991D;
}

.success a:hover
{
    color: #FF0000;
    border-bottom: 1px dotted #FF0000;
}

/* --------------------------------------------------------------------------------------------- */
/* Useful Font Stacks - Fonts suitable for both titles and content text. */

.sans-serif
{
    font-family: Arial, 'Helvetica Neue', Helvetica, Sans-Serif;
}

.serif
{
    font-family: Cambria, Georgia, Times, 'Times New Roman', Serif;
}

.monospace
{
    font-family: 'Andale Mono', 'Courier New', Courier, Monospace;
}

/* --------------------------------------------------------------------------------------------- */
/* Text alignment. */

.align-left, .text-left
{
    text-align: left;
}

.align-right, .text-right
{
    text-align: right;
}

.align-center, .text-center, center
{
    text-align: center;
}

/* --------------------------------------------------------------------------------------------- */
/* Floating */

.float-left
{
    float: left;
}

.float-right
{
    float: right;
}

.float-none
{
    float: none;
}

.clear-left
{
    clear: left;
}

.clear-right
{
    clear: right;
}

.clear-both
{
    clear: both;
}
