﻿@import url("layout.css");

/*  Default styles.  */

body
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	background-color: #244765;  /*  Darkest blue at top of image is #103c63  */
	background-image: url('images/background.jpg');
	background-repeat: repeat-x;
	text-align: center;
	height: auto;
}

p
{
	margin-top: 10px;
	margin-bottom: 20px;
}

h1,h2,h3,h4,h5,h6
{
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-bottom: 0px;
}

h1
{
	font-size: xx-large;
}

h2
{
	font-size: x-large;
}

h3
{
	font-size: large;
}

h4
{
	font-size: medium;
}

h5
{
	font-size: small;
}

h6
{
	font-size: x-small;
}

a
{
	color: #ffffff;
	text-decoration: none;
}

a:visited
{
	color: #ffffff;
	text-decoration: none;
}

a:active
{
	color: #ffffff;
	text-decoration: none;
}

a:hover
{
	color: #191b1e;
	text-decoration: none;
}

.style_bold
{
	font-weight: bold;
}

.style_italic
{
	font-style: italic;
}


/*  Page composition.
 
	Define the style for each section of the page.  Every section is designed to
	fit within a "container".  Global styles can be defined within each section, 
	like #header {} with specific styles derived from there, like #header p {} for
	paragraphs within the header, #header h1 {} for heading 1, etc.
*/

#container  /*  All sections will reside within the container.  */
{
	width: 775px;
	height: 100%;
	background-color: #978f7a;
	text-align: left;
	margin: auto;
}

#header  /*  The graphic at the top of each page.  */
{
	width: 775px;
	height: 113px;
	overflow: auto;
	text-align: left;
	vertical-align: bottom;
	color: #ffffff;
	background-image: url('images/ssa.gif');
	background-repeat: no-repeat;
}

#menu_bar   /*  The menu bar in the header.  */
{
	width: 555px;   /* 775 (header width) - 220 (left) = 555.  */
	height: 20px;
	overflow: hidden;
	text-align: left;
	vertical-align: bottom;
	color: #ffffff;
	position: relative;
	left: 220px;
	top: 88px;
	font-size: 10pt;
}

#menu_bar a:hover
{
	background: #6c6656;
	color: white;
	text-decoration: none;
}

#image_bar  /*  An optional "image bar" can reside below the "header".  */
{
	position: relative;
	text-align: center;
	height: 175px;
	overflow: hidden;
	border-left: 1px #d8d3c7 solid;
	border-right: 1px #d8d3c7 solid;
	border-bottom: 1px #d8d3c7 solid;
	margin-left: 15px;
	margin-right: 14px;	
}

#page  /*  A "page" will contain everything below the "image_bar".  */
{
	position: relative;
	border-left: 3px #191b1e solid;
	border-right: 3px #191b1e solid;
	border-bottom: 3px #191b1e solid;
}

#left_margin  /*  Provided for IE6.0 compatibility.  */
{
	float: left;   /*  For newer versions of IE and Foxfire, this can be moved to "navigation".  */
	width: 15px;
}

#navigation  /*  A "navigation" sidebar resides on the left of a "page".  */
{
	float: left;
	margin-left: 0px;
	width: 144px;
	color: #ffffff;
	background-color: #b1a994;
	font-size: 13px;
	font-weight: bold;
	text-align: left;
	padding: 0px;
	border-left: 1px #d8d3c7 solid;
	border-bottom: 1px #d8d3c7 solid;
	overflow: hidden;
}

#navigation p
{
	line-height: 100%;
	margin: 0px 5px 5px 10px;
}

#navigation ul
{
	margin-top: 0px;
	margin-bottom: 20px;
}

#navigation li
{
	list-style: disc inside none;
    margin: 2px 0 2px -22px;   /*  Adjust the spacing between list items.  */
}

#navigation a
{
	color: #ffffff;
	background-color: #b1a994;
	text-decoration: none;
	font-weight: normal;
}

#navigation a:hover
{
	background: #6c6656;
	color: white;
	text-decoration: none;
}

#content  /*  The "content" of a "page" resides right of the "navigation" sidebar.  */
{
	margin-right: 14px;
	padding: 10px;
	background-color: #6c6656;  
	color: #ffffff;
	border-left: 1px #d8d3c7 solid;
	border-right: 1px #d8d3c7 solid;
	border-bottom: 1px #d8d3c7 solid;
}

#content a
{
	text-decoration: underline;
}

#content table
{
	border-collapse: collapse;
	border-color: #d8d3c7;
}

#frame  /*  A page can contain a "frame".  */
{
	background-color: #6c6656;  
	color: #ffffff;
	border:3px #d8d3c7 solid;
}

#frame_content
{
	background-color: #6c6656;  
	color: #ffffff;
}

#menu  /*  A "page" can contain a "menu".  */
{
	background-color: #6c6656;  
	color: #ffffff;
}


#selection  /*  A "page" can contain a "selection".  */
{
	background-color: #6c6656;  
	color: #ffffff;
}

#footer  /*  The "footer" resides across the bottom of a "page".  */
{
	clear: both;
	overflow: hidden;
	padding-top: 1%;
	padding-bottom: 1%;
	color: #d8d3c7;
	background-color: #978f7a;
}

#footer p
{
	font-size: x-small;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
}

#footer a
{
	color: #d8d3c7;
	text-decoration: underline;
}

#footer a:hover
{
	color: #d8d3c7;
	text-decoration: none;
}
