﻿/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/SideMenus/final_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.SideMenu {
font-size:0.85em;
position:relative;
top:0px;
left:0px;
padding-top:5px;
padding-bottom:5px;
width:145px;
height:auto;
}
/* remove all the bullets, borders and padding from the default list styling */
.SideMenu ul {
padding:0;
margin:0;
list-style-type:none;
}
.SideMenu ul ul {
width:145px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown SideMenu positon */
.SideMenu li {
width:145px;
}
/* style the links for the top level */
.SideMenu a, .SideMenu a:visited {
display:block;
font-size:10pt;
font-weight:bold;
text-decoration:none;
font-family: Helvectia, Arial, sans-serif ;
color:#2EC4FB; 
width:145px; 
padding:0px 0px; 
padding-bottom:5px;
border:1px solid #ffca29; border-width:0px 0px 1px 0px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .SideMenu a, * html .SideMenu a:visited {
width:145px;
w\idth:145px;
}

/* style the second level background */
.SideMenu ul ul a.drop, .SideMenu ul ul a.drop:visited {
text-decoration:none;
font-family:Arial;
font-weight:normal;
color:#005bab;
text-align:left;
left:0; 
top:37px; 
width:145px; 
font-size:12px;
padding-top:5px;
padding-bottom:5px;
padding-left:0px;
border:1px solid #ffca29; border-width:0px 0px 1px 0px;
}
/* style the second level hover */
.SideMenu ul ul a.drop:hover{
background:#ffe490 bottom right no-repeat;
text-decoration:none;
font-family:Arial;
font-weight:normal;
color:#005bab;
left:0; 
top:37px; 
padding:0px 0; 
width:145px; 
height:auto;
border-right-width:0px;
font-size:12px;
padding-top:5px;
padding-bottom:5px;
padding-left:0px;
}
.SideMenu ul ul :hover > a.drop {
background:#ffe490 bottom right no-repeat;
text-decoration:none;
font-family:Arial;
font-weight:normal;
color:#005bab;
left:0; 
top:37px; 
padding:0px 0; 
width:145px; 
height:auto;
border-right-width:0px;
font-size:12px;
padding-top:5px;
padding-bottom:5px;
padding-left:0px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.SideMenu ul ul {
height:auto;
top:0px;
left:0; 
width:145px;
}
/* another hack for IE5.5 */
* html .SideMenu ul ul {
top:37px;
t\op:37px;
}

/* position the third level flyout SideMenu */
.SideMenu ul ul ul{
position:relative;
left:0px;
width:145px;
top:0px;
text-indent:10px;
}
/* position the third level flyout SideMenu for a left flyout */
.SideMenu ul ul ul.left {
position:relative;
left:0px;
width:145px;
top:0px;
text-indent:10px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.SideMenu table {position:absolute; top:0; left:0;}

/* style the second level links */
.SideMenu ul ul a, .SideMenu ul ul a:visited {
color:rgb(0,0,153); 
height:auto; 
width:145px
/* yet another hack for IE5.5 */
}
* html .SideMenu ul ul a{
width:145px;
w\idth:145px;
}


/* style the top level hover */
.SideMenu a:hover, .SideMenu ul ul a:hover{
text-decoration:none;
font-family:Arial;
font-weight:bold;
color:#2EC4FB; 
}
.SideMenu :hover > a, .SideMenu ul ul :hover > a {
text-decoration:none;
font-family:Arial;
font-weight:bold;
color:#2EC4FB; 
}

/* make the second level visible when hover on first level list OR link */
.SideMenu ul li:hover ul,
.SideMenu ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.SideMenu ul :hover ul ul{
visibility:visible;
}

/* make the third level visible when you hover over second level list OR link */
.SideMenu ul :hover ul :hover ul{ 
visibility:visible;
}

