﻿/* ---------------------------------------------------------------------------------------------

    This CSS file is designed to standardize the appearance of websites across a wide range of 
    browsers, including (but not limited too): IE 7+, Firefox 3.6+, Chrome and Safari.  It combines 
    a CSS reset (similar to what many CSS frameworks do) along with a few basic layout and typographical 
    styles.

    This file was updated on August 15th, 2011, along with the new ASP.NET website template. 

    I have made a few changes, such as fixing the <TABLE> tag and removing classes that never saw use.
     
   --------------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------------------- */
/* 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: 0;
    padding: 0;   
    /* margin-bottom: 16px; */
    font-weight: bold;
}

h1
{   
    margin-bottom: 13px;
    font-size: 26px;
    line-height: 39px;
}

h2
{
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 33px;
}

h3
{
    margin-bottom: 9px;
    font-size: 18px;
    line-height: 27px;
}

h4, h5, h6
{
    margin-bottom: 9px;
    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: 0 none;
}

/* --------------------------------------------------------------------------------------------- */
/* Horizonal Rule */

hr
{
    height: 0;
    line-height: 0;
    font-size: 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;
}

dl dt
{
    font-weight: bold;
}

dl dd
{
    margin-left: 30px;
}

/* --------------------------------------------------------------------------------------------- */
/* Tables and Table Cells */

table
{
    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;
}

/* --------------------------------------------------------------------------------------------- */
/* 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;
}

/* --------------------------------------------------------------------------------------------- */
/* Fix for reCaptcha Line-Height issue. */

.recaptchatable {
    line-height:15px;
}

/* --------------------------------------------------------------------------------------------- */
/* These are some settings to fix various display issues relating to deprecated HTML tags */
/* and attributes.  This fixes some (but not all) of the issues in IE 7. */

font[size="1"] { font-size: 12px; line-height: 18px }
font[size="2"] { font-size: 14px; line-height: 24px; }
font[size="3"] { font-size: 16px; line-height: 24px; }
font[size="4"] { font-size: 18px; line-height: 24px; }
font[size="5"] { font-size: 20px; line-height: 30px; }

table[width="100%"] { width: 100%; }
table[border="1"] { border: 1px solid #000000; }
table[border="1"] td, table[border="1"] th { border: 1px solid #000000; }
table[cellpadding="1"] td, table[cellpadding="1"] th { padding: 2px 2px; }
table[cellpadding="2"] td, table[cellpadding="2"] th { padding: 4px 4px; }
table[cellpadding="3"] td, table[cellpadding="3"] th { padding: 6px 6px; }
table td[align="center"], table th[align="center"] { text-align: center; }
table td[align="left"], table th[align="left"] { text-align: left; }
table td[align="right"], table th[align="right"] { text-align: right; }
table td[valign="top"], table th[valign="top"] { vertical-align: top; }
table td[valign="middle"], table th[valign="middle"] { vertical-align: middle; }
table td[valign="bottom"], table th[valign="bottom"] { vertical-align: bottom; }
table td[width="20%"], table th[width="20%"] { width: 20%; }
table td[width="40%"], table th[width="40%"] { width: 40%; }
table td[width="60%"], table th[width="60%"] { width: 60%; }
table td[width="80%"], table th[width="80%"] { width: 80%; }
table td[width="25%"], table th[width="25%"] { width: 25%; }
table td[width="50%"], table td[width="50%"] { width: 50%; }
table td[width="75%"], table td[width="75%"] { width: 75%; }
table td[width="33%"], table th[width="33%"] { width: 33%; }
table td[width="34%"], table th[width="34%"] { width: 34%; }
table td[width="66%"], table td[width="66%"] { width: 66%; }
table td[width="67%"], table td[width="67%"] { width: 67%; }
table td[width="100%"], table td[width="100%"] { width: 100%; }
table td[width="*"], table td[width="*"] { width: auto; }
