﻿@charset "UTF-8";
*
{
	-moz-box-sizing: content-box;  /* Follows w3c */
	box-sizing: content-box;
	margin: 0; 
	padding: 0; 
	font-size: 100%;
}
/* -------------------------------------------
 * Element Styles
  ------------------------------------------- */
BODY
{
	background-color: #FFFFFF;
}

BODY,CAPTION,LEGEND,DIV,SPAN
{
	font-family: Arial, sans-serif, Helvetica;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #777777;
	text-decoration: none;
	vertical-align: top;

}

A,CAPTION,DIV,H1,H2,H3,H4,H5,H6,LEGEND,SPAN,TD,TH,DT,DD,UL,OL
{
	margin: 0;
	padding: 0;
}
P
{
	margin-top: 10px;
	white-space: normal;
}

IMG, TABLE
{
	border: none;
}

TABLE
{
	margin: 20px 0;
	border-collapse: collapse;
}
CAPTION
{
	display: none;
    font-size: 80%;
    font-weight: bold;
    caption-side: bottom;
    text-align: left;
    vertical-align: bottom
}

HR
{
	border: 0;
	width: 100%;
	height: 1px;
}

/* -------------------------------------------
 * Common Classes
  ------------------------------------------- */
SMALL, .small
{
	font-size: 90%;
	line-height: 120%;
}
.large
{
	font-size: 150%;
	line-height: 150%;
	font-weight: normal;
	margin-bottom: 10px;
}

/* -------------------------------------------
 * Scrollable
  ------------------------------------------- */
.scrollable
{
	overflow: scroll;	
}
  
/* -------------------------------------------
 * Utility Classes
  ------------------------------------------- */
.icon
{
	vertical-align: middle;
	padding: 0 5px 2px 0;
}
.hand
{
	cursor: hand; /* Hack for IE */
	cursor: pointer;
}
.nohand
{
	cursor: default;
}

.strong, .bold
{
	font-weight: bold;
}
.italic
{
	font-style:italic;
}

.smallcaps
{
	font-variant: small-caps;
}
.uppercase
{
	text-transform: uppercase;
}
.lowercase
{
	text-transform: lowercase;
}
.capitalize
{
	text-transform: capitalize;
}

.underline
{
	text-decoration: underline;
}
.dotted-underline
{
	text-decoration: none;
	border-bottom: dotted 1px #CCCCCC;
}
.nounderline
{
	text-decoration: none;
}
.strike
{
	color: #8B0F11;
	text-decoration: line-through;
}


/* -------------------------------------------
 * Position
  ------------------------------------------- */
.relative
{
	position: relative;
}
.absolute
{
	position: absolute;
}

/* -------------------------------------------
 * Margins and Padding
  ------------------------------------------- */
.nomp
{
	margin: 0;
	padding: 0;
}
.nomargin
{
	margin: 0;
}
.nopad
{
	padding: 0;
}

/* -------------------------------------------
 * Float Styles
  ------------------------------------------- */
.clear
{
	clear: both;
	height: 0;
}
.clearer 
{ 
	clear: both; 
	display: block; 
	margin: 0; 
	padding: 0; 
	height: 0; 
	line-height: 1px; 
	font-size: 1px; 
}
.left
{
	float: left;
	width: auto;
}
.clear-left
{
	clear: left;
}
.right
{
	float: right;
	width: auto;
}
.clear-right
{
	clear: right;
}
.none
{
	float: none;
	width: auto;
}

/* -------------------------------------------
 * Wrap Styles
  ------------------------------------------- */
.wrap
{
    white-space: normal;
}
.nowrap
{
    white-space: nowrap;
}

/* -------------------------------------------
 * Block
  ------------------------------------------- */
.hide
{
	display: none;
}
.block
{
    display: block;
}
.inline
{
    display: inline;
}
.inline-block
{
    display: inline-block;
}

/* -------------------------------------------
 * List Classes
  ------------------------------------------- */
UL.list,
OL.list
{
	margin-left: 20px;
}  
  
UL.inline-list
{
	list-style-type: none;
}
UL.inline-list LI
{
	display: inline;
	width: auto;
	overflow: hidden; /* encloses the float */
}

UL.no-text
{
	font-size: 0;
	text-indent: -10000pt;
}


/* -------------------------------------------
 * Border Styles
  ------------------------------------------- */
.noborder
{
	border: none;
	border-collapse: collapse;
	padding: 0;
}
.top-border
{
	border-top: dotted 1px #999999;
}
.right-border
{
	border-right: dotted 1px #999999;
}
.bottom-border
{
	border-bottom: dotted 1px #999999;
}
.left-border
{
	border-left: dotted 1px #999999;
}


/* -------------------------------------------
 * Table
  ------------------------------------------- */
TABLE THEAD TD
{
	font-weight: bold;
	height: 30px;
	background-color: #FAFAFA;
	border-bottom: solid 1px #DDDDDD;
}

TABLE TBODY TD
{
	padding: 2px;
}
