/*
wm1.css
Copyright (c) 2009 Walter Milner

*/

* { /* zero margin and padding on everything. I set other values where I want them */
    margin: 0;
    padding: 0;
}

body
{
    background: rgb(140,140,140);
    font-family: georgia, serif;
    font-size: 14px;
}




#outerBorder /* This centers everything, with a total width of 900 pixels */
{
    position: relative;
    width: 1000px;
    height: 505px;
    overflow: hidden;
    margin: auto;
    background: white;
}
#outer
{position: relative;
    width: 990px;
   height: 500px;
    overflow: hidden;
    margin: auto;
    background-color: rgb(1,0,104);
background-image: url(images/bluishbg.jpg);
background-repeat: repeat-y;
background-position:top left;

}

#logoDiv
{
    position: absolute;
    left:0;
    top:0;
    width: 990px;
    height:90px;
    background-image: url(images/logoBG.jpg);
    font-size: 4em;
    padding-top: 10px;
}

#logoBottom
{
   position: absolute;
    left:0;
    top:100px;
    width: 990px;
    height:5px;
    background: white;
    z-index: 0;
}






#left
{
    position: absolute;
    left:100px;
    top: 115px;
    width:530px;
    padding: 10px;
    background: blue;
}

#left h2
{
    display:  inline;
    font-size: 1.2em;
    color: rgb(200,200,255);
}

#left h3
{
    padding-top: 30px;
}
#left a
{
    text-decoration: none;
    color: white;
    padding-left:3px;
    padding-right:3px;
    border-left: 1px solid rgb(120,120,120);
    
}

.linkBlock
{
    border-bottom: 1px white dotted;
    padding-top: 8px;
    height: 30px;
}
li
{
    display: inline;
}

#footer
{
    margin-top: 30px;
   text-align: center;
   font-size: 0.8em;
    
}


