/*------------------------------
Typography

@package Delicato WP Theme
@subpackage Styles
--------------------------------*/

/*Reset*/

*{  border:0;
    margin:0;
    padding:0;
}

ul, ol{
    list-style-type:none;
}

a {
    text-decoration:none;
}

h1,h2,h3,h4,h5,h6 { 
    font-weight:normal;
    clear:both;
}

a img {
    border: none;
}

.skip-link {
    visibility:hidden;
}


/*General typography settings*/

body, input, textarea {
    font-size: 0.8em;
    line-height:1.5em;
    font-family: Verdana, "Trebuchet MS", sans-serif;
}

input, textarea{
    color:#666666;
    border: 1px ridge #cccccc;
    padding:2px 0;
}

select{
    color:#666666;
    border: 1px ridge #cccccc;
    width:188px;
    padding-right:0px;
}

textarea{
    width:99.5%;
}

code, samp {
    font-family: Monaco, monospace;
}

strong {
    font-weight: bold;
}

cite, em, i {
    font-style: italic;
}

q {
    margin-left: 7%;
    font-style:italic;
    color:#666666;
}

blockquote, blockquote em, blockquote i{
    margin-left: 7%;
    font-style:italic;
    color:#666666;
    /*image:optional*/;
}

blockquote cite{
    margin-left:50%;
}

p, address {
    margin-bottom:2%;
}

abbr, acronym{
    border-bottom: 1px dotted #666666;
    cursor: help;
}


/*Headings*/

h1,h2,h3,h4,h5,h6{
    color:#666666;
}

h1{
    font-size:200%;
    line-height:120%;
    margin-bottom:1.4em;
}

h2{
    font-size:160%;
    line-height:120%;
    margin-bottom:1.1em;    
}

h3{
    font-size:140%;
    margin-bottom:0.9em;    

}

h4{
    font-size:110%;
}


/*Tables*/

table{
    caption-side:top;
    border: 1px solid #999999;
    border-collapse:collapse;
    margin: 0 0 5% 0;
}

th, td{
    border: 1px solid #999999;
    padding: 6px 20px;
    vertical-align:middle;
}

th{
    background-color:#cccccc;
    color:#150f13;
    text-align:left;
}

table img, table a img{
    border:0;
    padding:0;
    margin: 0;
}


/*Lists styling ------ Adapt list styling to content, sidebars and list-style-image*/

ol {
    margin: 5% 0 5% 7%;
}

ul {
    /*ul margin for content defined in main stylesheet*/
}

ol {
    list-style-type: decimal;
}

ol ol {
    list-style:upper-alpha;
}

ol ol ol {
    list-style:lower-roman;
}

ol ol ol ol {
    list-style:lower-alpha;
}

ul ul, ol ol, ul ol, ol ul {
    margin-bottom:1%;
    margin-top:1%;
}

dl {
    margin:0;
}

dt {
    font-weight:bold;
}

dd {
    margin-left: 1.5em;
}