/* The following provides the action of the menus
and submenus */
#ultop ul {
    margin: 0;
    margin-left: 6px;
    padding: 0;
    list-style-type: none;
    position: relative;
}

#ultop ul li {
    border: none;
    margin: 0;
    margin-left: 0px;
    padding: 0;
    list-style-type: none;
    width: 195px;
    text-align: left;
    position: relative;
}

#ultop ul li ul {
    border: none;
    margin-left: 0px;
    list-style-type: none;
    width: 180px;
    text-align: left;
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
}

#ultop ul li:hover > ul {
    display: block;
}

/* The following provides formatting 
and colour */
#ultop ul li {
    background-color: #d5e6ff;
    color: #08266C;
    text-indent: 1em;
}

#ultop ul li a {
    color: inherit;
    text-decoration: none;
    line-height: 200%;
}

#ultop ul li a:hover {
    background-color: #3E4772;
    /* dark blue */
    color: #CD6953;
    /* dark red  */
    font-weight: bold;
}

#ultop ul li ul li:hover {
    background-color: #3E4772;
    /* dark blue */
    color: #CD6953;
    /* dark red  */
    font-weight: bold;
}

#ultop ul li:hover {
    background-color: #3E4772;
    color: #CD6953;
    font-weight: bold;
}

#ultop ul li a:current {
    background-color: gray;
    color: darkblue;
}

#ultop ul li ul li {
    text-decoration: none;
    line-height: 200%;
    font-weight: normal;
}

#ultop ul li ul li:hover {
    font-weight: bold;
}

/* fix to make whole tab of menu clickable */
a.fillchoice {
    display: block;
    width: 100%;
    height: 100%;
}

/* indent first line of paragraph 3 character widths */
p {
    text-indent: 1em
}