/*
    Document   : typography
    Created on : 6 févr. 2010, 20:01:58
    Author     : Sébastien Guibert
    Description:
       text styles
*/

/* Basics */
html		{ }
body		{ font-family: Arial, Helvetica, Sans-Serif; font-size: 12px; color: #444; }

/* Links */
a:visited	{ }
a:focus,
a:hover		{ color: #0f73ac; text-decoration: underline; }
a			{ color: #349bd5; text-decoration: none; }

/* Titles */
h1,h2,h3,h4,h5,h6	{ font-weight: bold; color: #555; }
h1 { font-size: 30px; }
h2 { font-size: 21px; }
h3 { font-size: 17px; }
h4 { font-size: 14px; }
h5 { font-size: 12px; }
h6 { font-size: 10px; }

/* Texts */
p { font-size: 12px; }
p.padded { padding: 5px 2%; }

/* Inline texts */
strong	{ font-weight: bold; }
em		{ font-style: italic; }
span	{ }
abbr	{ border-bottom: 1px dotted #555; cursor: help; }
blockquote { }
dfn		{ }
sup		{ }
sub		{ }
acronym { }
address	{ }
del		{ }
ins		{ }
pre		{ }
code	{ }
tt		{ }

/* Lists */
ul		{ list-style-type: none; }
ul li	{ }
ol		{ list-style-type: none; }
ol li	{ }

dl		{ }
dl dt	{ }
dl dd	{ }


caption		{ }
tr.even		{ background-color: #fff; }
tr.odd		{ background-color: #eee; }