/* template4single.css
Style sheet for template four single topic version
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;
    color: white;


}

/*  layout bits ******************************************** */
#outer
{
    position: relative;
    width: 600px;
    margin: auto;
    background-color: rgb(1,0,104);
    border: 5px white solid;
    padding: 40px 40px;

}

/* */
#title
{
    position: relative;
    top:0px;
    background-image: url(images/logoBG.jpg);
    background-position: top left;
    background-repeat: repeat-x;
    width:300px;
    margin : auto;
    padding: 10px 10px;
}

#title a
{
    display: block;
    font-size: 40px;
    color: white;
    text-align: center;
    text-decoration: none;
}

#middle
{
margin-top: 40px;
}

h2, h4
{
    font-family: Tahoma, Geneva, sans-serif;
    padding: 30px;
    color: white;
    letter-spacing: 0.3em;
}

h4
{
    padding: 20px;   
}

p
{
    padding: 10px;
    line-height: 1.5em;
    word-spacing: 0.3em;
    background: rgb(0,0,200);
}

a
{
    color: white;
    text-decoration: none;
    border-bottom: 1px dotted rgb(200,100,100);
}


.blogform
{
    background: rgb(50,50,190);
    border: thin red solid;
}
.blogfrom p
{
    color: aqua;
}

#outermaths
{position: relative;
    width: 600px;
    margin: auto;
    
    border: 5px white solid;
    padding: 40px 40px;
    background: rgb(200,220,255);
}