
/* get rid of those system borders being generated for A tags */
/** a { position:relative }*/ /* Gets links displaying over a PNG background */
a { outline:none; /* Gets rid of Firefox's dotted borders */ text-decoration:none }
a img { border:none } /* Gets rid of IE's blue borders */
a:active {outline:none;}
:focus {-moz-outline-style:none;}

* { padding: 0; margin: 0; }

body {
     font-family: Arial, Helvetica, sans-serif;
     font-size: 13px;
     background:black;
}
#wrapper { 
     margin: 0 auto;
     width: 1024px;
}
#header {
     width: 1024px;
     height: 134px;
     float: left;
     background: black;
}
#leftcolumn { 
     width: 100px;
     height:1044px;
     float: left;
     background: black;
 }
#content {
     width: 804px;
     height: 1024px;/*height + padding = total height*/
     float: left;
     padding: 10px;
     background: #999966;/*Jason's color*/
     display: inline;
}
#rightcolumn { 
     width: 100px;
     height: 1044px;
     float: left;
     background: black;
}

.centeredImage { /*used to center images*/
    text-align:center;
    margin-top:0px;
    margin-bottom:0px;
    padding:0px;
}

/* footer style*/            
.footer{
	text-align:center;
    list-style:none;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight:normal; 
}
.footer h3 { 
	margin-top: .1em; 
    margin-bottom: .1em;
}
.footer p { 
	font-size:.8em;
    margin-top: .1em; 
    margin-bottom: 1em;
}       
.footer li{
	display:inline;
}
.footer ul li a{
	padding:0 10px 0;
    color:#574A22;
    text-decoration:none; 
}
.footer ul li a:hover{
	text-decoration:underline;
}

/*small text for footer */ 
#footersmall {
	font-size: .9em;
}
/* end footer style */   
