/* Begin CSS Drop Down Menu */

#menuh-container		/* this is the main container position as you want*/
	{
	font-size: 1em;		/* do not remove or alter */
	z-index: 1;			/* do not remove or alter */

	}

#menuh							/* this is where you may change font and font size */
	{
	float: none;									/* do not remove or alter */
    width: 100%;
	}

/* === comment ===
The width value above can be critical to your design. If you leave the value at 100%, then 
the menu will wrap if the browser window is reduced to a size where the menu can't fit. 
If you want your menu to not wrap, then you must set it to a specific size.

To determine what specific size you need, simply count the number of grandparents and 
multiply that number by the width given in the menh ul and menuh lu rules. For example, 
this menu has five grandparents and the width for the menuh ul and li is 9em. Therefore, 
a width of 400 em would stop this menu from wrapping.
*/

			
#menuh a.grandparent, #menuh a.grandparent:visited  /* attaches down-arrow to all top-parents */
	{
	font-size: 13px;								/* size of the text in the menu */
	font-family: sans-serif, Trebuchet MS, Arial, sans-serif, Helvetica; 		/* font */
	font-weight: bold;							/* weight (i.e., bold, italic, ect.)  */
	text-align: center; 				/* if you change this, you'll have to add padding */
	color: #DDDDDD;							/* color of text */
	padding:8px 17px 8px 18px;
	margin: 0px 0px 0px 0px;
	}
#menuh a.grandparent:hover  /* attaches down-arrow to all top-parents */
	{
	color: #950101;							/* color of text */
	background: url(../imagenes/web/item-primary-bg.gif);
	background-repeat: no-repeat;
	background-position: center;
	}
	
#menuh a.parent, #menuh a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-image: url(menu-arrow-down.gif);	/* do not remove or alter */
	background-position: right center;			/* do not remove or alter */
	background-repeat: no-repeat				/* do not remove or alter */
	}

#menuh a, #menuh a:visited				/* menu at rest */
	{
	height:1%;							/* do not remove or alter */
	display: block;						/* do not remove or alter */
	white-space: nowrap;				/* do not remove or alter */

	padding:3px 3px 3px 6px;
	margin: 0px 0px 0px 0px;
	text-align: left; 				/* if you change this, you'll have to add padding */
	text-decoration: none;				/* this stops the default underline of links */
	color: #000000;						/* color of the text */
	font-size: 11px;								/* size of the text in the menu */
	font-family: sans-serif, Trebuchet MS, Arial, sans-serif, Helvetica; 		/* font */
	font-weight: bold;							/* weight (i.e., bold, italic, ect.)  */
	}	
	
#menuh a:hover								/* menu at mouse-over  */
	{
	color: #950101;							/* color of text */
	background: url(../imagenes/web/item-primary-bg.gif);
	background-repeat: no-repeat;
	background-position: center;
	}	
	
/* NOTE  the width attriute below is REQUIRED IN BOTH #menuh ul and #menuh li rules below. */
/* If you remove these, the menu will automatically adjust to the length of the menu text. */
/* In other words, the menu becomes a variable width menu (some menus require that) */
/* HOWEVER, you mist add padding to left and right make the menu text readable */
	
#menuh ul.grandparent
	{
	list-style: none;			/* do not remove or alter */
	margin: 0;					/* do not remove or alter */
	padding: 0;					/* do not remove or alter */
	float: left;				/* do not remove or alter */
	width: 100px;					/* width of all menu boxes -- read note above*/
	}

#menuh li.grandparent
	{
	position: relative;			/* do not remove or alter */
    min-height: 1px;			/* do not remove or alter */ 
    vertical-align: bottom;		/* do not remove or alter */
	width: 100px;					/* width of all menu boxes -- read note above*/
	}
	
#menuh ul
	{
	list-style: none;			/* do not remove or alter */
	margin: 0;					/* do not remove or alter */
	padding: 0;					/* do not remove or alter */
	float: left;				/* do not remove or alter */
	width: 160px;					/* width of all menu boxes -- read note above*/
	}

#menuh li
	{
	position: relative;			/* do not remove or alter */
    min-height: 1px;			/* do not remove or alter */ 
    vertical-align: bottom;		/* do not remove or alter */
    width: 160px;					/* width of all menu boxes -- read note above*/
	}

/* ===== DO NOT REMOVE OR ALTER ANYTHING BELOW ===== */

#menuh ul ul			/* parent menu */
	{
	position:absolute;
	top: auto;
	left: 0px;
	display:none;
	padding:10px 4px 10px 4px;
	margin: 0px 0px 0px 0px;
	z-index: 0;	
	background: url(../imagenes/web/item-secondary-container-bg.jpg);
	background-repeat: repeat-x;
	background-color: #aeaeae;
	border-bottom: 1px solid #CA6500;
	}

#menuh ul ul ul	/* child menu */
	{
	position:absolute;
	top: 0;
	left: 100%;
	}

div#menuh li:hover
	{
	cursor:pointer;
	}

div#menuh li:hover ul ul,
div#menuh li li:hover ul ul,
div#menuh li li li:hover ul ul,
div#menuh li li li li:hover ul ul
{display:none;}

div#menuh li:hover ul,
div#menuh li li:hover ul,
div#menuh li li li:hover ul,
div#menuh li li li li:hover ul
{display:block;}

#menuh						/* IE stuff */
	{
	float:none;
	}
	
body						/* IE stuff */
	{
	behavior:url(www.canon.cl/canon/css/csshover.htc);
	}
	
#menuh ul li				/* IE stuff */
	{
	float:left;
	}
	
#menuh a					/* IE stuff */
	{
	height:1%;
	}

/* End CSS Drop Down Menu */
