
/*****************************************
 CSS rules common to all, or most, of site
******************************************/

/***************
 Overall layout
****************/
#wrap
{
	background: white;
    width: 800px;
    margin: 100px auto 0px auto;
    text-align: left;
}


/*******
 Header
********/
#header
{
    margin: 10px 0px;
    padding-top: 25px;
}

#logo
{
    font: bold 26px 'Helvetica', 'sans-serif';
    color: green;
}


/**********
 Navigation
***********/
#navigation
{
    margin: 0px;
    display: block;
    height: 30px;
    padding: 5px;
    border: 1px solid #ccc;
}

#navigation li
{
    float: left;
    list-style: none;
    margin: 0px 5px 5px 5px;
    padding: 0px;
    height: 30px;
}

#navigation li a:link,
#navigation li a:visited
{
    display: block;
    padding: 5px;
    background: #ccc;
}

#navigation li a:hover
{
    text-decoration: none;
    background: #f4f4f4;
}


/****
 Body
*****/
#page
{
    padding: 20px;
    margin: 10px 0px;
}


/******
 Footer
*******/
#footer
{
    background: #eee;
    border: 1px solid #ccc;
    padding: 5px;
    text-align: right;
}


/***************
 Common Classes
****************/
.block
{
    display: block;
}

.inline
{
    display: inline;
}

.print-only
{
    display: none;
}


/**************
 CSS Rollovers
***************/
.rollover
{
    display: block;
    float: left;
    display: inline;
}

.rollover:hover
{
    visibility: visible;
}

.rollover img
{
    width: 100%;
    height: 100%;
    border: 0;
}

.rollover:hover img
{
    visibility: hidden;
}

.float-r
{
	float: right;
	clear: right;
}


/************************
 Element Defaults
 (Keep minimal, prefer
 classes and IDs instead)
*************************/

:focus
{
    outline: 0;
}

a:link, a:visited
{
    color: #e6222c;
    font-weight: bold;
    text-decoration: none;
}

a:hover
{
    text-decoration: underline;
}

body
{
    background: black url(/images/layout/body-bgd.png) repeat-x top center;
    color: black;
    font: normal 14px 'Georgia', 'Times New Roman', 'serif';
    margin: 0px;
    line-height: 1.6em;
}

h1, h2, h3, h4, h5, h6
{
    margin: 0px;
}

h2
{
	font-style: italic;
}

h3
{
	color: #333;
}

p
{
	color: #666;
	width: 475px;
}

img
{
    border: none;
    display: inline;
}

table
{
    border-collapse: collapse;
    border-spacing: 0px;
}

td
{
    vertical-align: top;
}

em
{
    color: #e6222c;
}

