@charset "iso-8859-1";

this one is the test layout 

.content
{
        border : solid 4px rgb(0,0,0);
	padding : 7px;
	background-color : rgb(255,255,255);
	color : rgb(0,0,0);
}

.nav-link 
{
	text-align : center;
}




/*****************************************************************************
* SIDEBAR STUFF
*****************************************************************************/
.verify-panel /* this is the little badges that say that the website is accessible, which are cute but do we really need?*/
{
	display:inline-block;
    text-align: center;
}

.menu 
{
    text-align: center;
    
}
.menu ul
{
	display : inline-block;

}

.menu li
{
        display : inline-block;
        margin : 5px;
        padding : 0;
}

.menu li a 
{
        display : inline-block;
    border: solid thin;
    border-color: transparent;
}

.menu li a:hover
{
        display : inline-block;
}



/*****************************************************************************
* Standard HTML Elements
*****************************************************************************/


h1
{
        margin-top : 0ex;
}

h2
{
        margin-top : 0.15em;
}



p
{
        text-indent : 1em;
        margin-top : 0.35em;
        margin-bottom : 0.35em;
}



/*****************************************************************************
*  skidoo_lean.css : 2004-08-17 : Ruthsarian Layouts
* ----------------------------------------------------------------------------
*  lean and mean version of the original skidoo layout seen at:
*  http://webhost.bridgew.edu/etribou/layouts/skidoo/
*  CSS for horizontal and vertical nav elements based on unordered lists
*  isn't here to help reduce the layout to its core components.
******************************************************************************/

#pageWrapper
{
	min-width : 0px;
	margin: 0;
	width: auto;
	color : inherit;
	background-color : transparent;
}

#outerColumnContainer
{
	margin : 7px 0px;
	border-color : transparent;
	border-style: solid;
	border-width: 0 0 0 0; /* side border widths must equal the
				     widths of the left and right columns. 
				  */
	z-index: 1;
	color : inherit;
	background-color : transparent;
}

* html #outercolumncontainer
{
	/* IE5.0/Win fix for 1px whitespace between masthead and body. 
	 * The case-incorrect selector is on purpose. IE5.0 and IE5.5 are
	 * case insensitive and I'm targeting IE 5.0. 5.5 doesn't get hurt
	 * by this extra margin work.
	 */
	margin-top: -1px;
	border-top: solid 1px #000;
}



#leftColumn
{
	margin: 0 0 0 0;	/* the margin on the side the column is to be
				   rendered on must be the negative equal of 
				   the column's width. The opposite border must
				   be 1px */
	width: 100%;

    
}

#contentColumn
{
	margin: 0 0;		/* required to get the negative margin-based
				   layout to work. if #contentColumn does not
				   overlap the left and right columns, then
				   the whole layout will break */

}





/*****************************************************************************/