﻿/**************************  CSS RESET **************************/
/* 

This file should include the ugly hacks and filters to eliminate the variations between browsers

*/
/***************************************************************/


/* Global White Space Reset */
*
{
  padding: 0px;
  margin: 0px;
}


html, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, /*sub, sup,*/ tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td
{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #000;
}

/*body tag was moved to here instead of general.css because of the 3G bug when viewing the website*/

body
{
  background-color: #e7e3db;
  color: #231F20;
  font-family: Century Gothic, Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.8em;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}


table
{
  border-spacing: 0px;
}

img
{
  border: none;
}

ul
{
  list-style-type: none;
}


/**** Remove Unwanted Focus Outlines ****/
*:focus
{
  outline: none;
}
*::-moz-focus-inner
{
  border: none;
}


a
{
  text-decoration: none;
}


