/* 
    Document   : default
    Created on : Feb 22, 2010, 12:25:48 AM
    Author     : mediapc
    Description:
        Purpose of the stylesheet follows.
*/

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

root { 
    display: block;
}

body {
    background: #fffeed;
}

#header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 75px;
    width: 100%;
    background: url(./images/header.png) repeat-x;
    margin: 0px;
    padding: 0px;
}

#logo {
    font-size: 32px;
    color: #ffffff;
    font-family: "FreeSerif", Serif;
    float: left;
    margin: 0px 4px;
}

#title {
    font-size: 32px;
    color: #f6d312;
    font-family: "FreeSerif", Serif;
    float: left;
    margin: 0px 10px;
}

#login {
    float: right;
    margin: 6px 20px;

}

#login form {
    margin: 0px;
    padding: 0px;
}

#login input {
    color: #00590a;
    background: #e0f2da;
    border: 1px solid #18401b;
}

#nav {
    clear: both;
    font-size: 24px;
    color: #f6d312;
    font-family: "FreeSerif";
    float: right;
    margin: 5px 20px;
}

#nav ul {
    list-style: none;
    margin: 0px;
}

#nav li {
    float: left;
    margin: 0px 4px;
}

#nav a {
    color: #009811;
    text-decoration: none;
}

#nav a:hover {
    color: #00590a;
    text-decoration: none;
}

#content {
    min-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}