/*
 * Base Screen Styles
 */



/*******************************************************************************
 * Reset styles
 */

/*
 * Resets properties on main elements
 */
A,
ABBR,
ACRONYM,
ADDRESS,
APPLET,
B,
BIG,
BLOCKQUOTE,
BODY,
CAPTION,
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,
S,
SAMP,
SMALL,
SPAN,
STRIKE,
STRONG,
SUB,
SUP,
TABLE,
TBODY,
TD,
TFOOT,
TH,
THEAD,
TR,
TT,
UL,
VAR {
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

/*
 * Highlights deprecated tags
 */
APPLET,
BASEFONT,
CENTER,
DIR,
FONT,
ISINDEX,
MENU,
S,
STRIKE,
U,
XMP {
  background-color: #FF0000;
}

/*
 * Removes styles from numbered and unordered lists
 */
OL,
UL {
  list-style: none;
}

/*
 * Resets styles from links
 */
A:link,
A:visited,
A:active {
  text-decoration: none;
}

/*
 * Enables underline for links only on mouse hovering
 */
A:hover {
  text-decoration: underline;
}

/*
 * Removes border from certains elements
 */
FIELDSET,
IMG {
  border: 0;
}

/*
 * Disables certains elements that should not be displayed
 */
HR,
LEGEND {
  display: none;
}

/*
 * Disables outline around elements (custom styles should be defined)
 */
:focus {
  outline: none;
}

/*
 * Resets styles for tables (cellspacing still needs to be set in the markup)
 */
TABLE {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
 * Sets default styles for table elements
 */
CAPTION,
TH,
TD {
  font-weight: normal;
  text-align: left;
}

/*
 * Aligns text vertically inside the tables
 */
TABLE,
TH,
TD {
  vertical-align: middle;
}

/*
 * Resets styles for quoted elements
 */
BLOCKQUOTE,
Q {
  quotes: none;
}

/*
 * Resets styles for quoted elements (before and after)
 */
BLOCKQUOTE:after,
BLOCKQUOTE:before,
Q:after,
Q:before {
  content: "";
  content: none;
}

/*
 * Makes sure form elements inherit font properties
 */
BUTTON,
INPUT,
SELECT,
TEXTAREA {
  font-family: inherit;
  font-size: inherit;
}

/*
 * Resets styles for inserted and deleted text
 */
DEL,
INS {
  text-decoration: none;
}

/*
 * Resets styles for preformatted text
 */
PRE {
  white-space: normal;
}



/*******************************************************************************
 * Base styles
 */
BODY {
  background-color: #FDFDFD;
  color: #333333;
  font-family: Arial, Verdana, Helvetica, sans-serif;
  font-size: 10px;
  line-height: 16px;
}
