/*
    960 Grid System ~ Text CSS.
    Learn more ~ http://960.gs/

    Licensed under GPL and MIT.
*/

/* `Basic HTML
----------------------------------------------------------------------------------------------------*/

body {
    font: 13px/1.5 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif;
    }


a:focus {
    outline: 1px dotted invert;
    }

a, a:visited {
    color: #006ab4;
    text-decoration: none;
    font-weight: bold;
    }

a:hover {
    text-decoration: underline;
    color: #cf960b;
    }



hr {
    border: 0 #ccc solid;
    border-top-width: 1px;
    clear: both;
    height: 0;
    }


/* `Headings
----------------------------------------------------------------------------------------------------*/

h1 {
    font-size: 30px;
    font-family: Palatino Linotype, Times New Roman, Times, serif;
    font-weight: normal;
    font-style: italic;
    color: #9e6116;
    margin-bottom: 10px;
    margin-top: 10px;
    }


h2 {
    font-size: 28px;
    font-family: Palatino Linotype, Times New Roman, Times, serif;
    font-weight: normal;
    font-style: italic;
    color: #9e6116;
    margin-bottom: 10px !important;
    }


h3 {
    font-size: 21px;
    color: #00518b;
}

h4 {
    font-size: 19px;
    color: #00518b;
    }


h5 {
    font-size: 17px;
    color: #00518b;
    margin-top: 10px;
    }


h6 {
    font-size: 15px;
    color: #00518b;
    }


/* `Spacing
----------------------------------------------------------------------------------------------------*/

ol {
    list-style: decimal;
    }


ul {
    list-style:disc;
    list-style-position: inside;
    }


li {
    margin-left: 30px;
    }


p,
dl,
hr,
h1,
h3,
h4,
h5,
h6,
ol,
ul,
pre,
table,
address,
fieldset {
    margin-bottom: 20px;
    }


