/* the body of our pages */
body {
    background-color: #E7EAD5;
    margin-left: 30px;
    margin-right: 30px;
    font-family: Verdana, serif;
    font-size: 0.8em;
}

/* the top portion of the page, containing the title image */
div#pagetitle {
    text-align: right;
    padding-bottom: 10px;

}

/* the bottom portion of the page, containing the site's creator and w3c images */
div#pagefooter {
    padding-top: 5px;
    text-align: right;
}

/* images in the footer */
div#pagefooter a img {
    margin-bottom: 10px;
}

div#pagefooter a:hover img {
    margin-bottom: 5px;
}

/* the white box that contains the actual pages' content */
div.content_box {
    background-color: #FFFFFF;
    padding: 10px;
    border: 2px solid #8CACBB;
    border-top: 0px;
}

/* menu bars */
table.menu {
    width: 100%;
    white-space: nowrap;
    padding-top: 0px;
    background-color: #FFFFFF;
    border: 2px solid #8CACBB;
    border-bottom: 0px;
    border-spacing: 0px;
    text-decoration: none;
    font-weight: bold;
    color: #AEC1B9;
}

table.menu td.spacer {
    width:100%;
    border-right: 0px;
}

table.menu td {
    padding-left: 12px;
    padding-right: 12px;
    border-right: 1px solid #8CACBB;
    border-bottom: 1px solid #8CACBB;
	white-space: nowrap;
}

table.menu#area_menu td.current_area {
    background-color: #E6E6E6;
    border-bottom: 0px;
}

table.menu#area_menu td.current_area_bottom_border {
    background-color: #E6E6E6;
}

/* section menu */
table.menu#section_menu {
    border-top: 0px;
    background-color: #E6E6E6;
}

table.menu td.current_section {
    background-color: #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

table.menu td.current_section_bottom_border {
    background-color: #CCCCCC;
}


/* topic menu */
table.menu#topic_menu {
    border-top: 0px;
    background-color: #CCCCCC;
}

table.menu td.current_topic a {
    color: #FFFFFF;
}

/* links in menus */
table.menu a {
    text-decoration: none;
    font-weight: bold;
    color: #D4A404;
}

/* hover effect for menu cells */
table.menu td:hover {
    background-color: #FFE794;
}

/* disable hover for some cells */
table.menu#area_menu td.spacer:hover {
    background-color: #FFFFFF;
}

table.menu#section_menu td.spacer:hover {
    background-color: #E6E6E6;
}

table.menu#topic_menu td.spacer:hover {
    background-color: #CCCCCC;
}

table.menu#area_menu td.current_area:hover {
    background-color: #E6E6E6;
}

table.menu#section_menu td.current_section:hover {
    background-color: #CCCCCC;
}

table.menu#topic_menu td.current_topic:hover {
    background-color: #CCCCCC;
}


/**
 * definitions that format the page content follow
 */

/* links */
A:link {
    text-decoration: none;
    font-weight: bold;
    color: #B28A03;
}

A:visited {
    text-decoration: none;
    font-weight: bold;
    color: #B28A03;
}

A:active {
    text-decoration: none;
    font-weight: bold;
    color: #B28A03;
}

A:hover {
    font-weight: bold;
    color: #D9A804;
}

/* display an icon in front of every external link */
a.external:before {
  content: url(/global/images/ext_link.png);
}

/* horizontal lines */
hr {
    height: 1px;
    border-width: 0px;
    background-color: #D9A804;
    width: 50%;
    margin-left: 0px;
}


/* headings */
h1 {
    text-align: center;
    font-size: 1.6em;
    color: #D4A404;
    font-weight: bold;
}

h2 {
    text-align: left;
    font-size: 1.2em;
    color: #000000;
    font-weight: bold;
    text-decoration: underline;
}

h3 {
    text-align: left;
    font-size: 1.0em;
    color: #333333;
    font-weight: bold;
}

/* paragraphs in general */
p {
    text-align: justify;
}

p.center {
    text-align: center;
}


/* images */
img {
    border: 0px;
}

/* a small box */
div.box {
    text-align: center;
    border: 1px solid #999999;
    background-color: #FFFFFF;
    padding:5px;
    margin-left: 5px;
    margin-right: 5px;
}


/* underlined text */
span.underline {
	text-decoration: underline;
}


/* elements of lists */
li {
    text-align: justify;
}

/* notes */
span.note {
    font-style: italic;
}

span.note:before {
    content: url(/global/images/attention.png);
}

/* lines of code */
tt {
    border: 1px solid #A0A0A0;
    background-color: #EDEDED;
    font-style: italic;
    white-space: nowrap;
    color: #000000;
}

/* boxes of code */
pre {
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #A0A0A0;
    background-color: #EDEDED;
}

pre span.nr {
    color: #A0A0A0;
    margin-left: 5px;
    margin-right: 15px;
}


