
/**
 * Typography.
 *
 * @package    themes
 * @subpackage default2
 * @author     Julien Casanova <julien_casanova@yahoo.fr>
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

/* Blocks */
body {
    font-family: Arial, sans-serif;
    font-size: small;
    line-height: 1em;
    color: #000;
}
p {
    margin-bottom: 0.7em;
    font-size: 1em;
    line-height: 1.1em;
}
pre { /* blockquote */
    margin-bottom: 1em;
    border: 1px solid #666;
    border-left: 5px solid #666;
    padding: 1em;
    background-color: #eee;
    font-family: monospace;
    font-size: 1em;
}
/* END blocks */


/* Headings */
h1 {
    margin-bottom: 1em;
    border-bottom: 1px solid #666;
    padding-bottom: 0.3em;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.3em;
    color: #666;
}
h2 {
    margin-bottom: 0.5em;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.3em;
    color: #666;
}
h3 {
    margin-bottom: 0.3em;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.2em;
    color: #666;
}
h4 {
    margin-bottom: 0.2em;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.2em;
    color: #666;
}
h5 {
    margin-bottom: 0.1em;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.1em;
    color: #666;
}
h6 {
    margin-bottom: 0.1em;
    font-size: 1em;
    font-weight: bold;
    line-height: 1em;
    color: #666;
}
/* END headings */


/* Lists */
ul {
	margin: 0 0 0.7em 1em;
    list-style: none outside url(<?php echo $baseUrl ?>/images/bullets/default.gif);
    line-height: 1.3em;
}
    ul li {
        margin-left: 30px;
	}
ol {
    margin: 0 0 0.7em 1em;
    list-style: outside decimal;
    line-height: 1.3em;
}
    ol li {
        margin-left: 30px;
	}
dl {
    margin-bottom: 0.7em;
    line-height: 1.3em;
}
	dl dt {
	    font-weight: bold;
	}
	dl dd {
        margin-bottom: 0.2em;
		margin-left: 30px;
	}
/* END lists */


/* Links */
a,
a:link,
a:active {
    color: #09c;
    text-decoration: none;
}
a:visited {
    /* color: #184a84; */
}
a:hover {
    text-decoration: underline;
}
/* END links */


/* Misc */
hr {
    display: none;
}
div.hr {
    margin: 1em auto;
    height: 1px;
    background-color: #999;
    line-height: 1px;
}