
/*css link all pages here, make your pages pretty*/

*{margin:0px;}
body {
    background-color : #000;
    font-family : arial;
    font-size : 10pt;
  }
/*"wrapper is the thing that holds the whole site together just chage the width"*/
#wrapper {
    /*this changes the color of the main page*/ 
    background-color :#ffffff;
    height : 100%;
    margin : auto;
    width : 693px;
  }

/*This is the site header or logo*/

#header {
    float : left;
    height : 100%;
    width : 800px;
  }
/*This is for a site with top navigation*/
/*replace with buttons later*/
#topnav {
    background-color : #676767;
    float:left;
    color:#ffffff;
    height : 100%;
    padding:5px;
    text-align :center;
    width : 683px;
  }
/*these are the columns*/

#leftcolumn {
float:left;
width:241px;
height:100%;
padding:5px;
background-color:#3e3e3e;
text-align:center;
  }
#rightcolumn2 {
    background-color : #515151;
   color : #ffffff;
    float : right;
    height :100%;
    margin:0px;
    outline-color : #B7B7B7;
    outline-style : solid;
    outline-width : 0px;
    padding:0px;
    text-align : left;
    width : 442px;
  }

#rightcolumn {
    background-color : #515151;
   color : #ffffff;
    float : left;
    height : 100%;
    margin:0px;
    outline-color : #B7B7B7;
    outline-style : solid;
    outline-width : 0px;
    padding:0px;
    text-align : center;
    width : 693px;
  }

#footer {
    background-color : #2F2F2F;
    float : right;
    font-family : arial;
    font-size : 8pt;
    height : 100%;
    padding:10px;
    text-align : center;
    width : 673px;
  }
#footer2 {
    background-color : #2F2F2F;
    float : right;
    font-family : arial;
    font-size : 8pt;
    height : 100%;
    padding:10px;
    text-align : center;
    width : 402px;
  }


a:link {
    color: #FFFFFF;
  }


a:visited {
    color: #fff;
  }


a:active {
    color: #fff;
  }


a:hover {
    text-decoration:underline;
  }


a {
    text-decoration: none ;
  }

