/* -------------------------------------------------------------- 

   typography.css
   * Sets up some sensible default typography.
   
-------------------------------------------------------------- */

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body{font:81.25%/1.5 Helvetica,Arial,'Liberation Sans',FreeSans,sans-serif;  color: #000; }

/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: 700; color: #111; }

h1 { font-size: 3em; line-height: 1.2; margin-bottom: 0.5em; }
h2 { font-size: 2em; line-height: 1.2; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1.2; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; margin-bottom: 1.5em; }
h6 { font-size: 1em; }

h1 img, h2 img, h3 img, 
h4 img, h5 img, h6 img {
  margin: 0;
}

/* `Spacing
----------------------------------------------------------------------------------------------------*/
p,
dl,
hr,
ol,
ul,
pre,
table,
address,
fieldset{margin-bottom:1.5em;line-height:1.5em}

/* Text elements
-------------------------------------------------------------- */
p img.left  { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

a { font-weight:700;text-decoration:none}
a:link{color:#000;}
a:visited { color: #000; }
a:hover { color: #333; }
a:active { color: #111; }

blockquote{font-family:Georgia, 'Times New Roman', serif;font-size:1.1em;padding-left:1.5em;border-left:4px solid #ccc}
blockquote cite{font-size:.9em}

strong      { font-weight: bold; }
em,dfn      { font-style: italic; }
small, sup, sub { font-size: 75%; }
sup { vertical-align: super; }
sub { vertical-align: sub; }
dfn         { font-weight: bold; }

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin: 0 0 1.5em; font-style: italic; }
abbr[title], acronym[title], dfn[title] { cursor: help; border-bottom: 1px solid #ccc; }
del         { color:#666; }

pre 				{ margin: 1.5em 0; white-space: pre; }
pre,code,tt { font-size: 92%; font-family: monaco, "Lucida Console", courier, monospace;}


/* Lists
-------------------------------------------------------------- */

li ul, 
li ol       { margin:0 1.5em; }
ul, ol      { margin: 0 1.5em 1.5em 1.5em; }

ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }

dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}


/* table
----------------------------------------------- */
table {
	width:100%;
	border:1px solid #bbb;
	margin-bottom:1.5em;
}
col.colC {
	width:8em;
}
th,td,caption { padding: .2em 1em; }
thead th {
	border-bottom:2px solid #888;
	background:#bbb;
	padding:.4em 1em .2em;
}
thead th.table-head {
	font-size:1em;
	font-weight:normal;
	text-transform:uppercase;
	color:#fff;
	background:#555;
	border:1px solid #555;
}
tbody th,
tbody td {
	border-top:1px solid #bbb;
	border-bottom:1px solid #bbb;
}
tbody tr.odd th,
tbody tr.odd td {
	background:#fff;
}
tfoot th,
tfoot td {
	border-top:2px solid #666;
	background:#eee;
}
tfoot tr.total th,
tfoot tr.total td {
	border-top:6px double #666;
}
tfoot tr.total th {
	text-transform:uppercase;
}
th.currency,
td.currency {
	text-align:right;
}

/* Misc classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #000; }
.highlight  { background:#FEFFBF; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }
