@charset "utf-8";
/* CSS Document */

#holdm{
	position:relative;
	left:0px;
	z-index:10001; 
	font-size: 12px;		
}

ul.makeMenu {
  border: none;      /* puts a black border around the menu blocks */
     /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  /*float:left;*/
  display:inline;
}

ul.makeMenu ul { 
  border: 1px solid #000;      /* puts a black border around the menu blocks */
  background-color: #FFDDAB;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  display:none;  
  z-index: 10001;
}
/*
ul.makeMenu img
{
	float:right;
	margin-top:-9.5px;
	margin-right:4px;
	margin-bottom:4px;
}
*/
ul.makeMenu span
{
	float:left;
	margin-right:4px;
}

/* flota horizontal */
ul.makeMenu li {	
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #000;                 /* sets the default font colour to white */
  float: left;
  /*background-color:#DCE4F1;*/
  padding: 1px 14px 4px 1px;
  z-index:501;
  white-space: nowrap;
  min-height: 24px;
}

ul.makeMenu li div{
	padding-top: 6px;
}

ul.makeMenu ul li div{
	padding-top: 0px;
}

/* flota vertical */
ul.makeMenu ul li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #000;                 /* sets the default font colour to white */
  width: 12em;
  padding-right: 0px;
  white-space: normal;
  min-height: 10px;
  /*background-color:#EFF0F1;*/
}

ul.makeMenu ul {  
  display: none; 
  top: 22px; 
  left: 0px; 
}
ul.makeMenu li ul li ul {  
  display: none; 
  top: 0px; 
  left: 12em;
}

ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #3C7ABA;      /* gives the active menu items a yellow background */
  color: #fff; 
	z-index:10001;                /* makes the active menu item text black */ 
}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  position: absolute;
  width: 12em;
  display: block;
}
ul.makeMenu li:hover{
	z-index:10001;
}
	/* 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 */
	/* makes the child block visible - one of the most important declarations */
ul.makeMenu li:hover > ul {    
  display: block;              
  position: absolute; 
}	
/* and some link styles */
ul.makeMenu li a { color: #000; display: block; cursor:pointer; }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #fff; }
ul.makeMenu li:hover > a { color: #fff; } /* supports links in branch headings - should not be display: block; */