
#navbar {
	margin: 0;
	padding: 20px 0 10px 10px;
	border: none;
	background-color: #f8e6b4;
	text-align: left;
	width: 140px;
}

ul.nav {
	white-space: nowrap;
	list-style: none inside;
	margin: 0;
}

li.nav {
	margin-bottom: 12px;
}

ul.nav ul.nav {
	list-style: circle inside;
	margin-left: 8px;
}


.nav {
	background-color: #f8e6b4;
	color: #666666;
	border: 0;
	font-family: sans-serif;
	font-weight: bold;
	text-decoration: none;
}

a.nav:hover {
	color: #f8e6b4;
	background-color: #666666;
}

table.nav {
	border-collapse: collapse;
	border: 1px solid black;
}

/* Highlighted */

.nav_hi {
	background-color: lightblue;
	color: darkblue;
	border: 0;
	padding: 0;
	font-family: sans-serif;
	font-weight: bold;
	text-decoration: underline;
}

li.nav_hi {
	margin-bottom: 12px;
}

a.nav_hi {text-decoration: underline }

a.nav_hi:hover {
	color: lightblue;
	background-color: darkblue;
}

table.nav_hi {
	border-collapse: collapse;
	border: 1px solid black;
}


body, html {
	padding: 0;
	margin: 0 auto;
	color: black;
	font-family:Verdana,"Trebuchet MS",Verdana,sans-serif;
	font-size:85%;
	background-color: #f8e6b4;
}


h1 {
	color:#B4976B;
	padding-top: 4px;
	padding-bottom: 4px;
	font-size: 24px;
}

h2 {
	color: darkblue;
	font-size: 18px;
}

div,table,tr,td {
	padding: 0;
	margin: 0;
	border: none;
}

img {
	padding: 0;
	margin: 0;
	border: none;
	display: block;	/* Avoid extra border */
}

ul {
	margin: 0 0 0 1em;
	padding: 0;
	border: none;
}

ul ul {
	margin: 0 0 0 2em;
}

ul ul ul {
	margin: 0 0 0 3em;
}

table {
	border-collapse: collapse;
}

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

hr {
	border: none;
	background: black;
	height: 1px;
}

pre {
	font-family:Verdana,"Trebuchet MS",Verdana,sans-serif;
}

/*
 *=============================================================================
 *	Page layout
 *=============================================================================
 */

/*
	--- All elements have a default position so that z-index works ---
	
*/

* {
	position: static;
}


/*	--- Page description, keywords --- */
#description {
	display: none;
}

#description th {
	text-align: left;
	text-decoration: underline;
}

/*	--- Wrapper around whole body ---	*/

#wrap {
	margin: 0;
	padding: 0 0 0 30px;
	width: 800px;
	color: black;
	background-color: #f8e6b4;
	position: absolute;
	top: 0; left: 30px;
	border: none;
}

/*
 *-----------------------------------------------------------------------------
 *	Heading block
 *-----------------------------------------------------------------------------
 */

#top {
	position: relative;
	margin: 10px 0 0 0;
	padding: 0;
	width: 770px;
	height: 130px;
	clear: both;
	border-bottom: 1px solid black;
}

#logo {
	position: relative;
	float: left;
	margin: 0;
	width: 160px;
	height: 130px;
	border-right: 1px solid black;
}


#heading {
	position: relative;
	height: 90px;
	margin: 0 0 0 160px;
	padding: 40px 0 0 20px;
	font-size: 24px;
	font-weight: normal;
	color:#B4976B;
}

#path {
	width: 100%;
	clear: both;
	text-align: center;
	font-size: 1em;
	font-weight: normal;
	text-align: center;
}

/*
 *-----------------------------------------------------------------------------
 *	left column
 *-----------------------------------------------------------------------------
 */


#left {
	float: left;
	margin: 0;
	width: 160px;
}

/* ------ all browsers except IE ------- */
html>body #left {
	height: auto;
	min-height: 450px;
}

html>body #right {
	height: auto;
	min-height: 450px;
}

/*
 *-----------------------------------------------------------------------------
 *	right column
 *-----------------------------------------------------------------------------
 */

#right {
	height: 1%;
	position: relative;
	margin: 0 0 0 160px;
	width: 620px;
	padding: 10px 0 0 10px;
	border-left: 1px solid black;
}

/* 
	-- hack for the damned IE5+6 "3-pixel-jog bug" --
	   BOTH of these are necessary
 */

* html #left {
	width: 157px;
}

* html #right {
	margin-left: 157px;
}

/*
 *-----------------------------------------------------------------------------
 *	Page footer
 *-----------------------------------------------------------------------------
 */

#footer {
	position: relative;
	width: 800px;
	background-color: transparent;
	color: #666666;
	font-size: xx-small;
	padding-top: 16px;
	bottom: 0;
	clear: both;
}

#footer a {
	color: #666666;
}

/*
 *=============================================================================
 *	Messages
 *=============================================================================
 */

.error {
	background-color: yellow;
	color: red;
	font-weight: bold;
	font-family: Verdana, sans-serif
}

div.error {
	width: 100%;
	border: 2px solid red;
	padding: 8px
}

.warning {
	background-color: yellow;
	color: green;
	font-weight: bold;
	font-family: Verdana, sans-serif
}

div.warning {
	width: 100%;
	border: 2px solid green;
	padding: 8px
}

.message {
	color: green;
	font-family: Verdana, sans-serif
}

div.message {
	padding: 8px
}

/*
 *=============================================================================
 *	Misc.
 *=============================================================================
 */

ul.blue {
	white-space: nowrap;
	list-style: none inside;
	margin: 0;
}

ul.blue li {
	color: blue;
	margin-bottom: 12px;
}

ul.blue li a {
	color: blue;
}

table.album {
	border: 3px groove gray;	/* NOTE: IE does not recognize 'grey' */
}

.album td {
	border-top: 2px groove gray;
	background-color: lightgray;
}

table.album tbody > tr:first-child td {
	border-top: 0;
}
/*
 *-----------------------------------------------------------------------------
 *	link elements as buttons
 *-----------------------------------------------------------------------------
 */

a.btn, input.btn {
	border: 2px groove black;
	padding: 2px 4px;
	background-color: lightgray;
}

/*
 *=============================================================================
 *	Security, anti-spam
 *=============================================================================
 */

.sec {
        visibility: hidden;
        display: none;
}
