/* 
    Document   : base.css
    Created on : 10-Feb-2010, 11:06:20
    Author     : Paul Osborne
    Description:
        Base styling of root elements.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}

html {
    height: 100%;
    
}

h1 {
    padding: 0.5em 0 0.8em 0;
    margin-bottom: 1.2em;
    border-bottom: 1px solid #999;
}

h2 {
    
    font-weight: bold;
}



h4 {
    color: #CCC;
}


p {
    margin-bottom: 1em;
}

label {
    margin-right: 1em;
    vertical-align: top;
    display: inline-block;
    width: 175px;
}

input[type=text] {
    padding: 5px;
    width: 200px;
    border: 1px solid #c9c9c9;
    
}

strong {
    font-weight: bold;
}

textarea {
    width: 400px;
    height: 100px;
    font-family: courier new;
    margin-top: 0.5em;
    border: 1px solid #c9c9c9;
}

blockquote {
    margin: 0.5em 1em;
    border: 1px dashed #ccc;
    padding: 1em;
}

li {
    padding: 5px 0;
}



fieldset {
    background-color: #f3f6fb;
    padding: 1.5em;
    border: 1px solid #c9c9c9;
}

legend {
    padding: 5px 10px;
    background-color: #c9c9c9;
    
    color: #000000;
}

.form-errors {
    padding: 0.8em;
    background-color: #fff;
    border: 1px solid #999;
    margin-bottom: 1em;
    display: none;
}

ul.errors {
    margin-top: 0.5em;
}

ul.errors li {
    list-style-position: outside;
    list-style-type:circle;
    margin-left: 2em;
}

ul.faq li {
    margin: 1em 0;
}

ol li {
    list-style-position: outside;
    list-style-type: circle;
    margin-left: 1.5em;
    
}

ol li.link {
    list-style-position: outside;
    list-style-image:url("../images/link2.png");
    margin-left: 2em;
}

ol li.orange {
    list-style-position: outside;
    list-style-image:url("../images/bullet_orange.png");
    margin-left: 2em;
}

ol li.ruby {
    list-style-position: outside;
    list-style-image:url("../images/ruby.png");
    margin-left: 2em;
}

ol li.white {
    list-style-position: outside;
    list-style-image:url("../images/bullet_white.png");
    margin-left: 2em;
}

li > strong {
    font-size: 100%;
    display: block;
    width: 80%;
    color: #394a6c;
}