/* Element Style */
body {
 color : black;
 background-color : lemonchiffon;
}
h1 {
 color : coral;
 background-color : lightyellow;
 border-style : outset;
 border-width : thin;
 border-color : coral;
 padding-left : 0.5em;
 padding-right : 0.5em;
 padding-top : 0.2em;
 padding-bottom : 0.2em;
}
h2 {
 border-style : solid;
 border-width : 0em 0em 0em 1em;
 border-color : yellowgreen;
 padding-left : 0.2em;
 margin-bottom : 0.3em;
}
h3 {
 margin-bottom : 0.3em;
}
p, ul, ol, li {
 line-height : 150%;
}
address {
 line-height : 125%;
 text-align : right;
}

/* Table style */
thead, .header {
 background-color : yellowgreen;
}
tbody, .body {
 background-color : lightyellow;
}
tr {
 vertical-align : top;
}
th {
 text-align : left;
}
.number {
 text-align : right;
}

/* Class style */
h1 span.abstract {
 font-size : smaller;
}
div.content {
 margin-left : 1em;
}
p.menu {
 border-style : solid;
 border-color : yellowgreen;
 border-width : 0em 0em thin 0em;
 margin-right : 0em;
}
.code {
 color : white;
 background-color : black;
 border-color : gray;
 border-style : inset;
 border-width : thin;
 margin : 0em 2em 0em 2em;
 padding : 1em 1em 1em 1em;
}