/*
 * Another CSS Baseline
 * Author:		Sterling Hamilton
 * Website:		http://www.sterlinghamilton.com
 * Date:		01.04.09
 * Revision Date: 	04.11.09
 * Version 1.0
 * Inspired by several other baselines.
 * Original Template idea from the works of Roy Lindauer: http://www.roylindauer.com
 * Also inspired by Eric Meyer: http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
 * CSS Validates 100%
 */

/* This should take care of most of the base elements. */
body, table, div, p, pre, blockquote, fieldset, form,
h1, h2, h3, h4, h5, h6, pre, ul, ol, dl, address, li,
dd, dt, frameset, li, tbody, td, tfoot, th, thead, tr
{
    margin:0px;
    padding:0px;
    font-weight:inherit;
    font-style:inherit;
    vertical-align:baseline;
}

/* I like my tabular data to show on the top of a cell. */
table, tbody, td, tfoot, th, thead, tr
{
    vertical-align:top;
}

/* For dealing with FireFox's ugly link outlines. */
a:active
{
    outline: none;
}
a img, :link img, :visited img
{
    border:none;
}
table
{
    border-collapse:collapse;
    border-spacing:0px;
}
ol, ul
{
    list-style:none;
}
q:before, q:after, blockquote:before, blockquote:after
{
    content:"";
}

/*
  Clearfix for most browsers
*/

/* Clear fix for floated elements */
.clearfix:after{content: "."; display: block; height: 0; clear: both; visibility: hidden;}
.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
