* {
padding: 0;
margin: 0;
}

img {
border: 0px;
}

body {
margin-top: 30px;
color: #000000;
background-color: #ffffff;
font-family: Verdana, Helvetica, sans-serif;
font-size: 9pt;
}

#header {
display: none;
}

#content {
background: url(../bg.jpg) no-repeat; 
width: 450px;
height: 200px;
margin: auto;
}
#footer {
position: relative;
width: 450px;
margin: auto;
text-align: center;
padding-left: 70px;
top: -40px;
font-size: 9px;
}
#footer a { font-size: 7pt;}
#footer a:hover { font-weight: inherit;text-decoration: underline;}
a:link, a:visited, a:active { background-color:inherit; color: #000000; font-weight: 500; text-decoration: none; }

a:hover {  background-color:inherit; color: #000000; font-weight: bold; text-decoration: none; }

ul {
width: 110px;
position: relative;
top:70px;
left:210px;
list-style-image: url(../a.jpg);
}
.makeMenu li:hover {
font-weight: bold;
}
li {
cursor: default;
font-size: 10px;
}
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 */                /* 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 */
}
.subMenu1 {
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: -1px;                    /* position slightly lower than the parent menu item */
  left: 110px;  
  font-weight: normal;
}
.subMenu2 {
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: -1px;                    /* position slightly lower than the parent menu item */
  left: 90px;  
  font-weight: normal;
}
.subMenu3 {
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: -1px;                    /* position slightly lower than the parent menu item */
  left: 90px;  
  font-weight: normal;
}
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;   
  width: 150px;           /* makes the child block visible - one of the most important declarations */
}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;
  list-style-image: url(../a.jpg);              /* specially to go with the className changes in the behaviour file */
}