body { background-color: #DADADA; font: 80% Georgia, "Times New Roman", Times, serif; }

#header-bkg { width: 858px; background: #DADADA url("../img/header-bkg.gif") top left repeat-y; padding: 0 6px 0 6px; }
#header { padding: 8px 40px 8px 40px; height: 70px; color: #FFF; }

#nav-bkg { text-align: left; width: 858px; background: #DADADA url("../img/nav-bkg.gif") top left repeat-y; padding: 0 6px 0 6px; }
#nav { width: 765px; color: #857C71;  padding: 0 40px 0 40px; border-bottom: 1px solid #C6C6C4; }
#nav a {  }
#nav a:hover {  }

/* Content */
#content-bkg { text-align: left; width: 858px; background: #DADADA url("../img/content-bkg.gif") top left repeat-y; padding: 0 6px 6px 6px;}
#content { background:  url("../img/content-gradient-bkg.jpg") top left repeat-x; width: 765px; padding: 40px; }
#content h1 { font-weight: normal; font-size: 195%; letter-spacing: 1px; }
#content h2 { font-weight: normal; font-size: 130%; }
#content h3 { font-weight: normal; font: Verdana, Arial, Helvetica, sans-serif; font-size: 125%; }
#content h4 { font-weight: normal; font: Verdana, Arial, Helvetica, sans-serif; font-size: 195%; letter-spacing: 1px; }
#content h5 { font-weight: normal; font: Verdana, Arial, Helvetica, sans-serif; font-size: 100%; }
#content table td.caption { padding: 2px 10px 26px 10px; font-family: Georgia, "Times New Roman", Times, serif; font-size: 12px; }

#content #ADs { width: 175px; background-color: #FFF; padding: 5px; margin-left: 20px; float: right; text-align: center; }
#content #ADs a { display:block; border: 2px solid #FFF; padding: 2px; text-decoration: none; color: #000000; }
#content #ADs a:hover { border: 2px solid #DADADA; }

#content a { color: #870000; text-decoration: none; font-style: italic; }
#content a:hover { color: white; }
#content p {text-align: justify; }
#content table p { width: auto; text-align: left; }

td.green, td.detail { padding: 2px 10px 2px 0; color: #857C71; text-transform:uppercase; letter-spacing: 1px; font-size: 12px; }
td.caption { padding: 4px 10px 25px 10px; }
td.picture a { padding: 3px; }
td.picture a:hover { padding: 0; border: 3px solid white; }
td.japanese { padding: 10px; font: Verdana, Arial, Helvetica, sans-serif; font-size: 100%; }
td.j-title { padding: 10px; font: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; font-size: 195%; }
td.j-caption { padding: 4px 10px 25px 10px; font: Verdana, Arial, Helvetica, sans-serif; font-size: 100%; }

/* Footer */
#footer-bkg { text-align: left; width: 858px; background: #DADADA url("../img/footer-bkg.gif") bottom left no-repeat; padding: 0 6px 6px 6px; }
#footer { width: 765px; padding: 10px 40px 10px 40px; color: #FFF; font: 11px Arial, Helvetica, sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }
#footer span { float: right; }
#footer a { color: #FFF; text-decoration: none; }
#footer a:hover { color: #870000; font-weight: bold; }

/* Navigation */

/*

Here's a demo stylesheet used to format a menu and its content.
Feel free to alter the menu layout however you want. All you have to do is ensure the script
has the correct CSS property name (like 'visibility' or 'display') that you want it to change.

One good resource for UL/LI formatting: http://www.alistapart.com/articles/taminglists/
Consult your favourite CSS reference for editing fonts/borders/etc.

Otherwise, even if you're not very experienced at CSS, you can just go through and change
the #RGB border/background colours where suitable to customise for your site!

*/



/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 28px; /* I'm using ems rather than px to allow people to zoom their font */
 left: 0;
 width: 150px; color: #857C71;
 margin: 0;
 padding: 3px 4px 20px 4px;
 border-left: 1px solid #C6C6C4; border-right: 1px solid #C6C6C4;
 background: #FFF url("../img/nav-end.gif") bottom no-repeat;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: 0; /* I'm using ems rather than px to allow people to zoom their font */
 left: 158px;
 width: 150px; color: #857C71;
 margin: 0;
 padding: 3px 4px 3px 4px;
 border: 1px solid #C6C6C4;
 border-top: 2px solid #C6C6C4;
 border-bottom: 2px solid #C6C6C4;
 background-image: none;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
 float: left;
 position: relative;
 margin-right: 0px;
 padding: 0;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin-right: 0;
 margin-bottom: 0;
}

/* Links inside the menu */
.menulist a {
 display: block; padding: 7px; color: #857C71; text-decoration:none; border-left: 1px solid #FFF; border-right: 1px solid #FFF;
 font: 10px Arial, Helvetica, sans-serif; text-transform: uppercase; letter-spacing: 0.05em;
}
.menulist ul a {
 font: 12px Arial, Helvetica, sans-serif; text-transform: none; color: #857C71; letter-spacing: normal;
 padding: 3px 5px 3px 5px; border: none;
 border-bottom: 1px solid #CDCAC6;
}
.menulist ul ul a {
 font-size: 11px;
}

.menulist ul a.end {
 border-bottom: none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: black; background-color: #E5E5E5; border-left: 1px solid #C6C6C4; border-right: 1px solid #C6C6C4;
}
.menulist ul a:hover, .menulist ul a.highlighted:hover, .menulist ul a:focus {
 color: black; background-color: #F7F7F7; border-left: none; border-right: none;
 border-bottom: 1px solid #CDCAC6;
}
.menulist ul a.end:hover {
 border-bottom: none;
}
.menulist  a.highlighted {
 color: black; background-color: #E5E5E5; border-left: 1px solid #C6C6C4; border-right: 1px solid #C6C6C4;
}
.menulist  ul a.highlighted {
 color: #870000; background-color: #F7F7F7; border-left: none; border-right: none;
 border-bottom: 1px solid #CDCAC6;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/
.menulist a#nav-end {
	background-image:  url("../img/nav-end.gif"); 
}

/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display:  none;
}
.menulist ul a .subind {
 display:  block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */