/* Main Hover */

:link {
color: #0066CC;
text-decoration: underline;
}

:visited {
color: #0066CC;
text-decoration: underline;
}

:hover {
color: #0099FF;
text-decoration: underline;
}

:active {
color: #0066CC;
text-decoration: underline;
}

/* Title Text */

.titletext {
font-size: 16px;
font-family: Verdana, Arial, sans-serif;
color: #006699;
text-decoration: none;
font-weight: bold;
}

/* Highlight Text */

.highlighttext {
font-size: 11px;
font-family: Verdana, Arial, sans-serif;
color: #006699;
text-decoration: bold;
}

/* Body Text */

.bodytext {
font-size: 11px;
font-family: Verdana, Arial, sans-serif;
color: #666666;
text-decoration: none;
}

/* Nav Links */

.navlinks {
font-size: 11px;
font-family: Verdana, Arial, sans-serif;
color: #666666;
text-decoration: none;
}

a.navlinks:link {
font-size: 11px;
font-family: Verdana, Arial, sans-serif;
color: #0066CC;
text-decoration: none;
font-weight: normal;
}

a.navlinks:visited {
font-size: 11px;
font-family: Verdana, Arial, sans-serif;
color: #0066CC;
text-decoration: none;
font-weight: normal;
}

a.navlinks:hover {
font-size: 11px;
font-family: Verdana, Arial, sans-serif;
color: #0099FF;
text-decoration: underline;
font-weight: normal;
}

/* Nav Links Highlight */

.navlinkshighlight {
font-size: 11px;
font-family: Verdana, Arial, sans-serif;
color: #666666;
text-decoration: none;
}

a.navlinkshighlight:link {
font-size: 11px;
font-family: Verdana, Arial, sans-serif;
color: #FF6600;
text-decoration: none;
font-weight: normal;
}

a.navlinkshighlight:visited {
font-size: 11px;
font-family: Verdana, Arial, sans-serif;
color: #FF6600;
text-decoration: none;
font-weight: normal;
}

a.navlinkshighlight:hover {
font-size: 11px;
font-family: Verdana, Arial, sans-serif;
color: #0099FF;
text-decoration: underline;
font-weight: normal;
}

/* Small Text */

.smalltext { 
font-size: 10px;
font-family: Verdana, Arial, sans-serif;
color: #666666;
text-decoration: none;
}

.smallertext { 
font-size: 9px;
font-family: Verdana, Arial, sans-serif;
color: #999999;
text-decoration: none;
}

a.smallertext:link {
font-size: 9px;
font-family: Verdana, Arial, sans-serif;
color: #999999;
text-decoration: none;
font-weight: normal;
}

a.smallertext:visited {
font-size: 9px;
font-family: Verdana, Arial, sans-serif;
color: #999999;
text-decoration: none;
font-weight: normal;
}

a.smallertext:hover {
font-size: 9px;
font-family: Verdana, Arial, sans-serif;
color: #0099FF;
text-decoration: underline;
font-weight: normal;
}

/* Heading Text */

h1 {
font-family: Verdana, Arial, sans-serif;
color: #006699;
margin-bottom: 0px;
}

h2 {
font-family: Verdana, Arial, sans-serif;
color: #006699;
margin-bottom: 0px;
}

h3 {
font-family: Verdana, Arial, sans-serif;
color: #006699;
margin-bottom: 0px;
}

/* Custom Items */

/* Right Main Navigation */

ul.makeMenu, ul.makeMenu ul {
width: 199px;                 /* sets the size of the menu blocks */
background-color: #C9E4F1;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
margin-top: 0px;           /* stops the usual indent from ul */ 
margin-bottom: 0px;           /* stops the usual indent from ul */ 
padding-left: 0px;           /* stops the usual indent from ul */
margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
font-family: verdana, arial, sanf-serif;
font-size: 11px;
}

ul.makeMenu li {
list-style-type: none;      /*  removes the bullet points */
border-top: 1px solid #fefefe;
border-bottom: 1px solid #c3c8cb;
margin: 0px;                 /* Opera 7 puts large spacings between li elements */
position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
color: #1070A0;                 /* sets the default font colour to white */
}

ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
display: none;               /* hides child menu blocks - one of the most important declarations */
position: absolute;          /* make child blocks hover without leaving space for them */
top: 2px;                    /* position slightly lower than the parent menu item */
left: 78px;                  /* this must not be more than the width of the parent block, or the mouse will have to move off the element to move between blocks, and the menu will close */
}

ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
background-color: #FFFFFF;      /* gives the active menu items a yellow background */
color: #000;                 /* makes the active menu item text black */ 
border-top: 1px solid #fefefe;
border-bottom: 1px solid #c3c8cb;
}

ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
display: block;              /* specially to go with the className changes in the behaviour file */
}

ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements the > targets only the child ul, not any child uls of that child ul */
display: block;              /* makes the child block visible - one of the most important declarations */
}

/* and some link styles */
ul.makeMenu li a { color: #1070A0; display: block; width: 100%; text-decoration: none; }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #1070A0; text-decoration: underline; }
ul.makeMenu li:hover > a { color: #1070A0; } /* supports links in branch headings - must not be display: block; */

/* Right Main Navigation 2 */

ul.makeMenu2, ul.makeMenu2 ul {
width: 199px;                 /* sets the size of the menu blocks */
background-color: #FFCC99;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
margin-top: 0px;           /* stops the usual indent from ul */ 
margin-bottom: 0px;           /* stops the usual indent from ul */ 
padding-left: 0px;           /* stops the usual indent from ul */
margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
font-family: verdana, arial, sanf-serif;
font-size: 11px;
}

ul.makeMenu2 li {
list-style-type: none;      /*  removes the bullet points */
border-top: 1px solid #fefefe;
border-bottom: 1px solid #c3c8cb;
margin: 0px;                 /* Opera 7 puts large spacings between li elements */
position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
color: #1070A0;                 /* sets the default font colour to white */
}

ul.makeMenu2 li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
display: none;               /* hides child menu blocks - one of the most important declarations */
position: absolute;          /* make child blocks hover without leaving space for them */
top: 2px;                    /* position slightly lower than the parent menu item */
left: 78px;                  /* this must not be more than the width of the parent block, or the mouse will have to move off the element to move between blocks, and the menu will close */
}

ul.makeMenu2 li:hover, ul.makeMenu2 li.CSStoHighlight2 {
background-color: #FFFFFF;      /* gives the active menu items a yellow background */
color: #000;                 /* makes the active menu item text black */ 
border-top: 1px solid #fefefe;
border-bottom: 1px solid #c3c8cb;
}

ul.makeMenu2 ul.CSStoShow2 {     /* must not be combined with the next rule or IE gets confused */
display: block;              /* specially to go with the className changes in the behaviour file */
}

ul.makeMenu2 li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements the > targets only the child ul, not any child uls of that child ul */
display: block;              /* makes the child block visible - one of the most important declarations */
}

/* and some link styles */
ul.makeMenu2 li a { color: #1070A0; display: block; width: 100%; text-decoration: none; }
ul.makeMenu2 li a:hover, ul.makeMenu2 li a.CSStoHighLink2 { color: #1070A0; text-decoration: underline; }
ul.makeMenu2 li:hover > a { color: #1070A0; } /* supports links in branch headings - must not be display: block; */
