/* 
    Document   : main
    Created on : 31.01.2012, 14:47:37
    Author     : cami
    Description:
        Purpose of the stylesheet follows.
*/

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

*
{
    margin: 0;
    padding: 0;
    line-height:200%;
}


body{
    text-align:center;
    width: 100%;
    height: 100%;
    font-family: times,Verdana, Arial, Helvetica, sans-serif;
    background-image: url('back.jpg') ;
    background-repeat: repeat;
}

#content{
    width: 800px;
    margin-left:auto;
    margin-right: auto;
    position:relative;
    color:#000000;
    height: 100%;
    margin-top: 5px;
    background-color: #fff;
}

#header {
    width: 800px;
    margin-left:auto;
    margin-right: auto;
    height: 40px;
}

#menu ul {
    list-style-type: none;
    height: 30px;
    margin-top: 5px;
    clear: right;
}

#menu ul li {
    float: left;
    margin-left: 10px;
}

#menu ul li a {
    padding-right: 5px;
    padding-left: 5px;
    display: block;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", Times, serif;
    /*border: 1px solid #ccc;*/
    font-size: 15px;
    color: #fff;
    line-height: 25px;
}

#menu ul a:hover {
    background-color: #278a4a;
}