/** Common Properties *******************************************************/

a, body, dd, dl, dt, div, fieldset, form, h1, h2, h3, h4, li, ul, ol, p, pre,
table, td, tr
{
    margin: 0;
    padding: 0;
}

a {
    color: black;
    cursor: pointer;
    text-decoration: none;
}

body {
    background: url("images/header.png") repeat-x top left white;
    color: black;
    font-size: 80%;
    font-family: "Lucida Grande", "Lucida Sans", "Bitstream Vera Sans", "Verdana", sans-serif;
}

code, textarea, pre {
    font-family: Monaco, "Bitstream Vera Sans Mono", monospace;
}

ul {
    list-style-type: none;
}

ul.errors {
    background: #ffd0d0;
    border: 2px solid #b20000;
    color: #b20000;
    margin: 50px auto;
    font-size: 140%;
    font-weight: bold;
    text-align: center;
    padding: 8px 0;
    width: 350px;
}

ul.errors li {
    margin: 5px 0;
}

/** Menu *******************************************************************/

#menu {
    margin-top: 25px;
    text-align: center;
}

#menu li {
    color: #888;
    display: inline;
}

#menu a {
    font-weight: bold;
    margin: 0 10px;
    text-decoration: underline;
}

#menu li.current a {
    text-decoration: none;
}

#menu a:hover {
    border-bottom: 1px solid #ff8000;
    text-decoration: none;
}

/** Main *******************************************************************/

#main {
    margin: 30px auto 0;
    width: 700px;
}

#main h1 {
    background: no-repeat center left;
    font-size: 200%;
    font-weight: bold;
    padding-left: 30px;
}

#main h1.controllers {
    background-image: url("images/controller.png");
}

#main h1.filters {
    background-image: url("images/filter.png");
}

#main h1 span {
    font-weight: normal;
    font-size: 50%;
    margin-left: 10px;
}

#main h1 span a {
    color: #777;
    text-decoration: underline;
}

#main h1 span a:hover {
    color: #ff8000;
    text-decoration: none;
}

/** Properties *************************************************************/

#main ul.properties {
    margin: 20px 0 0 40px;
}

#main ul.properties li {
    margin: 5px 0;
}

#main ul.properties a {
    font-size: 120%;
    text-decoration: underline;
}

#main ul.properties a:hover {
    color: #ff8000;
    text-decoration: none;
}

#main ul.properties strong, #main ul.properties a {
    background: url("images/gray_arrow.png") no-repeat center left;
    font-weight: bold;
    padding-left: 16px;
}

#main ul.properties span.classname {
    font-style: italic;
}

#main ul.properties span.action_count {
    color: #ff8000;
}

#main ul.properties li span a {
    background: none;
    font-weight: normal;
    font-size: 100%;
    margin: 0;
    padding: 0;
}

/** Actions ****************************************************************/

#main ul.actions {
    margin: 20px 0 0 60px;
}

#main ul.actions h2 {
    margin: 5px 0;
    font-size: 100%;
}

#main ul.actions li a {
    background: url("images/gray_arrow_bottom.png") no-repeat center left;
    padding-left: 16px;
}

#main ul.actions li a:hover {
    background-image: url("images/gray_arrow_bottom_hover.png");
}

#main ul.actions h2 a:hover {
    color: #ff8000;
}

#main ul.actions li.hidden a {
    background-image: url("images/gray_arrow_right.png");
}

#main ul.actions li.hidden a:hover {
    background-image: url("images/gray_arrow_right_hover.png");
}

#main ul.actions li.hidden ul {
    display: none;
}

#main ul.actions ul {
    margin: 5px 0 20px 20px;
}

#main ul.actions ul a {
    font-weight: normal;
    font-size: 100%;
    padding: 0;
}

#main ul.actions ul a, #main ul.actions ul a:hover {
    background: none;
}

#main ul.actions ul span {
    color: #777;
}

#main ul.actions ul span.type {
    font-style: italic;
}

/** Footer *****************************************************************/

#footer {
    margin: 50px 0 20px;
    text-align: center;
}

#footer p {
    margin: 5px 0;
}

#footer p.doff_link a {
    background: url("images/logo.png") no-repeat center;
    display: block;
    margin: 0 auto;
    height: 46px;
    width: 88px;
}

#footer p.author {
    color: #777;
}

#footer p.author a {
    color: #444;
}

#footer p.author a:hover {
    color: black;
}

#footer p.reload a {
    color: #777;
    text-decoration: underline;
}

#footer p.reload a:hover {
    color: black;
}

