/* Cascading Style Sheet for jota pages */
/* Author: Glenn Satchell, glenn@uniq.com.au, 8 March 2002 */

/* colours */
/* .ext { color: #006633; } */ /* dark green */
/* .wp { color: #333366; } */
.int, .ext, .wp { color: #003366; } /* blue */
.bright { color: #660099; } /* purple */
.bg { background: #fff0f0; }

/* little icon next to external link */
a.ext, a.wp {
    padding: 0 13px 0 0;
    background: transparent url(/images/icon_wwwarrow.gif) no-repeat scroll right center;
}

/* alignment */
.top    { vertical-align: top; }
.right  { text-align: right }
.centre { text-align: center }
.larger { font-size: 120% }
.width100 {
    width: 100%;
    _width: 99%; /* 100% messes up IE6 */
}
.width25 { width: 25%; }
.width20 { width: 20%; }

html {
    font: normal 10pt arial, helvetica, sans-serif;
}
body {
    color: #000000;
    background: #ffffff;
    margin: 2px;
}

#navigation {
    float: left;
    width: 160px;
}
#footer {
    clear: both;
}

#content {
    margin-left: 165px;
}

/* list in a navigation area */
#navigation ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    margin-left: 0px; /* needed by IE */
}
#navigation li a {
    display: block;
    margin: 0px 0px 2px 0px;
    _margin-bottom: -12px; /* IE6 hack for wide spaces */
    padding: 2px 8px 2px 8px;
    color: #ffffff;
    background: #336699; /* blue */
    text-decoration: none;
    border-radius: 8px;
}
#navigation li a:hover {
    background: #6699cc; /* light blue */
    border-radius: 8px;
}
#navigation h4 {
    display: block;
    margin: 0px 0px 2px 0px;
    padding: 10px 8px 10px 8px;
    color: #ffffff;
    background: #003366;
    border-radius: 8px;
}
#navigation .ext {
    color: #ccccff;
    border-radius: 8px;
}

/* web page menu bar */
.menubar {
    display: block;
    font-size: 120%;
    margin: 0px 0px 2px 0px;
    padding: 4px 8px 4px 8px;
    color: #ffffff;
    background: #003366;
    border-radius: 8px;
}
.menubar a, .menubar a:visited {
    font-style: normal;
    padding: 4px 6px 4px 6px;
    text-decoration: none;
    color: #ffffff;
}
/* web page location bar */
.location {
    display: block;
    /* font-size: 80%; */
    margin: 0px 0px 2px 0px;
    padding: 4px 8px 4px 8px;
    color: #ffffff;
    background: #336699;
    border-radius: 8px;
}
.location a, .location a:visited {
    font-style: normal;
    padding: 4px 6px 4px 6px;
    color: #ffffff;
    text-decoration: none;
}

/* images that float left */
.img_left {
    float: left;
    margin: 0px 5px 5px 0px;
}
/* images that float right */
.img_right {
    float: right;
    margin: 0px 0px 5px 5px;
}
/* images that are centred */
.img_centre {
    margin-left: auto;
    margin-right: auto;
}

#code {
    font-weight: bold;
    color: #660099;
}

#code img {
    vertical-align: middle;
}

b, strong { color: #660099 }

em { font-style: italic }

h1 { font-weight: bold; font-size: 160% }
h2 { font-weight: bold; font-size: 140% }
h3 { font-weight: bold; font-size: 120% }
h4 { font-weight: bold; }
h5 { font-weight: bold; }
h6 { font-weight: normal; }

table {
    border: 0px;
}

th {
    font-weight: bold;
    background: #cccccc;
    text-align: left;
    padding: 3px;
}

td {
    font-weight: normal;
    text-align: left;
    vertical-align: top;
    padding: 3px;
}

img {
    border: 0px;
}
ol li {
    padding-bottom: 1em;
}

/* links */
a {
    color: #003366;
    text-decoration: underline;
}
a:hover {
    text-decoration: underline;
    background: #6699cc; /* light blue */
}
/* this class removes the hover on the <a><img /></a> */
a.nohover {
    background: none;
    text-decoration: none;
}
a:visited {
    font-style: italic;
    text-decoration: underline;
}

/* do some clever things with abbreviations and acronyms
   depending on whether a title is specified */
abbr, acronym { border: none; }

abbr[title], acronym[title] {
    border-bottom: 2px dotted #003366;
    cursor: help;
}

/* settings that apply when printing */
@media print {
    /* turn off navigation */
    #navigation { display: none; }
    #content { margin-left: 0px; }
    .location, .menubar { display: none; }
    table {
	border: 0px;
	padding: 0px;
    }
    tr, th, td { padding: 0px; }
    body { margin: 0px; }
}

