/*
 * Copyright 2013 Christophe-Marie Duquesne <chmd@chmd.fr>
 *
 * CSS for making a resume with pandoc. Inspired by moderncv.
 *
 * This CSS document is delivered to you under the CC BY-SA 3.0 License.
 * https://creativecommons.org/licenses/by-sa/3.0/deed.en_US
 */

/* Changed a bit by jiaz */

/* Whole document */
body {
    font-family: "PT Serif", "Palatino Linotype";
    font-size: 0.8em;
    width: 640px;
    margin: auto;
    background: #FFFFFF;
    padding: 10px 10px 10px 10px;
}

/*
.title {
    display: none;
}
*/

/* Title of the resume */
h1 {
    font-size: 2.4em;
    color: #000000;
    text-align:center;
    margin-bottom:15px;
}

/* Titles of categories */
h2 {
    padding-left:8px;
    color: #000000;
}


/* Definitions */
dt {
    float: left;
    clear: left;
    width: 30%;
    font-weight: bold;
    text-align: right;
    margin-right: 1%;
}
dd {
    margin-left: 32%;
    margin-bottom:7px;
    padding-right:1%;
}
dd p {
    margin-top:0;
    margin-bottom:5px;
}
dd h4 {
    margin: 0;
    margin-bottom:5px;
}

/* Blockquotes */
blockquote {
    text-align: center
}
blockquote p {
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Links */
a {
    text-decoration: none;
    color: #397249;
}
a:hover, a:active {
    background-color: #397249;
    color: #FFFFFF;
    text-decoration: none;
    text-shadow: 1px 1px 1px #333;
}

/* Horizontal separators */
hr {
    color: #A6A6A6;
    clear: both;
    border-style: none;
}

ul {
    list-style: square;
    margin-top: 0;
    margin-bottom: 5px;
    padding-left: 0;
}

ul li {
    padding: 2px;
}