@charset "utf-8"

body, h1, h2, h3, h4, h5, h6 p, div, ul li {
    margin: 0;
    padding: 0;
}
h4{color:blue;}
a{color:orange}
body {
    font-family: Verdana, sans-serif;
   }
  #divWrapper {
    width: 800px;
    margin: 0 auto;
    }

  #divHeader { 
      width:800px;
      text-align:center;
	
    }

    #divHeader img {
        padding-top: 10px;
        padding-bottom: 10px;
    }
#divLine {
    width: 800px;
    background: #3333FF;
    height: 2px;
}
#divLinks {
    width: 800px;
    background: #666;
	
}
#divNav {
    width: 700px;
    background: #666;
    height: 36px;
    margin: 0 auto;
}
    #divNav ul {
        list-style-type: none;
    }
        #divNav ul li {
            float: left;
        }
            #divNav ul li a {
                display: block;
                height: 20px;
                line-height:20px;
                background: #000;
                width: 100px;
                font-size: 0.8em;
                font-weight :bold;
                color: #FFF;
                text-align: center;
                text-decoration:none;
                margin:8px;

                /*Border radius*/
                border-radius:5px;
                -moz-border-radius:5px;
                -webkit-border-radius:5px;
                border:1px solid #000;

                /*gradient*/
               
                background:-moz-linear-gradient(top, #666,#333);
                background:-webkit-gradient(linear, left top, left bottom, from (#666), to (#333));
            }
#divNav ul li a:hover {
      background:#333;
      background:-moz-linear-gradient(top, #000,#666);
      background:-webkit-gradient(linear, left top, left bottom, from (#000), to (#666));
      }
#divNav ul li a.current, #divNav ul li a.current:hover {
                background:#333;
                background:-moz-linear-gradient(top, #000,#666);
                background:-webkit-gradient(linear, left top, left bottom, from (#000), to (#666));
                color:#f63;
                cursor:default;
                }
#divFooter {
    background: #222;
    height: 7px;
    width: 800px;
    border-bottom: 1px solid #333;
}