/****************************************************************************/
/* Module: tributary_site_layout.css                                        */
/*                                                                          */
/* Copyright (c) 2006 Tributary                                             */
/*                                                                          */
/* Description:                                                             */
/*    This is the author's first attempt at designing this site's CSS.      */
/*    Will limit this initial version to the capabilities of CSS1 as        */
/*    described in the by the governing W3C Recommendation located at       */
/*    http://www.w3.org/TR/REC-CSS1                                         */
/*                                                                          */
/* Author: Chris Norris                                                     */
/*                                                                          */
/* Original Date: April 10, 2006                                            */
/****************************************************************************/
A:active
{
   color: #ffffff;
   text-decoration: underline;
}
A:hover
{
   font-weight: bold;
   color: #ffffff;
   text-decoration: underline;
}
A:link
{
   color: #ffffff;
   text-decoration: underline;
}
A:visited
{
   color: white;
   text-decoration: underline;
}

BODY
{
   color: #ffffff;
   background-color: #000000;
   text-align: center; /* This align is an IE fix! */
   font-family: verdana, arial, sans-serif, helvetica;
   font-size: 10pt;
}

#wrap
{
   text-align: left;
   width: 750px;
   margin:0px auto;
}

#topNavigation
{
   margin-left: 0px auto;
   margin-right: 0px auto;
   text-align: center;
}

#mainContainer
{
   margin-left: 0px auto;
   margin-right: 0px auto;
   width: 750px;
}

#leftPanel
{
   width: 400px; /*position: absolute;*/
   float: left;
   background-color: transparent;
}

#rightPanel
{
   width: 300px;
   float: right;
}

.centered
{
   text-align: center;
}

.centered-table
{
   margin-left: auto;
   margin-right: auto;
}

