﻿/*style.css*/

/* Universal style rule */
*{
/* Block all browser default margins and padding */
  margin: 0;
  padding: 0;
}    

body 
{
    background-color:#000044;
    color:#ffffff;
    font-family: "Tempus Sans ITC", Verdana, Sans-Serif;
    text-align:center;
}

#wrapper
{
    width:845px;
    margin: 20px auto 20px auto;
    position:relative;
}

#header
{
    background-image:url(logo.jpg);
    width:844px;
    height:146px;
}

#nleftcol
{
    float:left;
    margin:5px 5px 5px 5px;
    width:auto;
    /* For absolutely-positioned leftcolumn */
  position:absolute;
  top:10em; /* Same as branding div height */
  left:0;
    }

#nrightcol
{
    float:right;
    margin:5px 5px 5px 5px;
    clear:right;
    width:auto;
    /* For absolutely-positioned leftcolumn */
  position:absolute;
  top:10em; /* Same as branding div height */
  right:0;
}

#content
{
    font-family:"Tempus Sans ITC", Verdana, Sans-Serif;
    font-size: 16px;
}

ul
{
    margin: 5px;
    line-height:2em;
    text-align:center;
}

div.center
{
    width:100%;
    text-align:center;
}

span.orange
{
    color:orange;
}

span.red
{
    color:red;
} 

img.style 
{
border: #ffff00 3px solid;
margin: 10px;
text-align:center;
}

h1
{
    font-family: "Papyrus LET", "Times New Roman", Sans-Serif;
    font-size: 32px;
    color:Yellow;
    text-align:center;
    margin:10px;
}

h2
{
    font-family:Fantasy, "Tempus Sans ITC", Sans-Serif;
    font-size: 20px;
    text-align:center;
    margin: 5px;
    line-height:2em;
}

#footer
{
    /*not defined*/
}