/****************************
* Basic styles for the TE CSS Menu
****************************/
/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

.TE_menutype_vertical {
	width: 10em; /* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

/* remove all list stylings */
.TE_menu, .TE_menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.TE_menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.TE_menutype_horizontal li{
	float: left;	/* move all main list items into one row, by floating them */	
}

.TE_menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.TE_menutype_horizontal li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.TE_menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.TE_menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
}

.TE_menutype_horizontal li:hover>ul {
	top: 100%;	/* 1st level go below their parent item */
}

.TE_menutype_vertical li:hover>ul {
	left: 100%;	/* and move them to the right of the item */
}

.TE_menutype_horizontal li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.TE_menu:after, .TE_menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.TE_menu, .TE_menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".TE_menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.TE_menutype_horizontal ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.TE_menutype_horizontal ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}

.TE_menutype_vertical ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
/* -- sticky.submenu.END -- */

.TE_menutype_horizontal .TE_position_right {
	float: right;
}

/****************************
* Menu Style: Internal (UK)
****************************/

.TE_menustyle_internal ul.TE_menu {
	background-color: #CCE3F8;
	border:1px solid #769BBA;
}
.TE_menustyle_internal ul.TE_menutype_vertical {
	width: 180px;
}
.TE_menustyle_internal ul ul{
	width: 160px;
}

.TE_menustyle_internal a {
	display: block;
	padding: 4px 5px;
	text-decoration: none !important;
	color: #555555 !important;
}
.TE_menustyle_internal ul.TE_menutype_horizontal a {
	padding-left: 10px;
	padding-right: 10px;
}
.TE_menustyle_internal ul.TE_menutype_vertical a {
	background: transparent url(/_TEincludes/MyTE/Images/MyTE_arrowBullet.gif) no-repeat 3px 4px !important;
	padding-left: 13px;
}

.TE_menustyle_internal ul.TE_menutype_horizontal li.TE_has_submenu a {
	padding-right: 23px;
}

.TE_menustyle_internal a:hover,
.TE_menustyle_internal li:hover > a {
	background-color: whitesmoke !important;
}

.TE_menustyle_internal ul.TE_menutype_horizontal li.TE_has_submenu > a {
	background-image: url(/_TEincludes/TEimages/TE_menuDownArrow.gif) !important;
	background-position: 90% 9px;
	background-repeat: no-repeat;
}
.TE_menustyle_internal ul.TE_menutype_horizontal li li.TE_has_submenu > a {
	background-image: url(/_TEincludes/TEimages/TE_menuRightArrow.gif) !important;
	background-position: 97% 7px;
	background-repeat: no-repeat;
}
.TE_menustyle_internal ul.TE_menutype_vertical li.TE_has_submenu {
	background-image: url(/_TEincludes/TEimages/TE_menuRightArrow.gif);
	background-position: 97% 7px;
	background-repeat: no-repeat;
}

.TE_menustyle_internal li li {
	background-color: #D8EBF8;
	padding: 0 3px 3px 3px;
}
.TE_menustyle_internal li li:first-child{
	padding-top: 3px;
}

/****************************
* Menu Style: Corporate / Brand sites
****************************/

.TE_menustyle_corporate ul.TE_menutype_horizontal {
	background: #fff url(/_TEincludes/TEimages/components_nav_bg.gif) no-repeat bottom left;
}

.TE_menustyle_corporate ul.TE_menutype_vertical {
	width: 180px;
}

.TE_menustyle_corporate ul ul {
	width: 210px;
	
	/* this disables the "sticky.submenu" feature... */
	padding: 0;
	margin: 0;
	border: 1px solid #ccc;
	background-color: whitesmoke;
}


.TE_menustyle_corporate ul a {
	display: block;
	line-height: 18px;
	font-size: 11px;
	text-align: left;
	text-decoration: none !important;
	color: #000 !important;
}

.TE_menustyle_corporate ul ul a {
	background-color: whitesmoke;
}

.TE_menustyle_corporate ul.TE_menutype_vertical a {
	border-bottom: 1px dashed #C3BFBE;
	padding: 5px 5px;
}
.TE_menustyle_corporate ul.TE_menutype_vertical ul a {
	border-bottom: none;
	padding: 3px 5px;
}

.TE_menustyle_corporate ul.TE_menutype_horizontal a {
	padding: 1px 10px;
	font-weight: bold;
}
.TE_menustyle_corporate ul.TE_menutype_horizontal ul a {
	font-weight: normal;
	padding: 1px 5px;
}

.TE_menustyle_corporate ul a:hover,
.TE_menustyle_corporate ul li:hover>a {
	background-color: whitesmoke;
	text-decoration: none !important;
}
.TE_menustyle_corporate ul ul a:hover,
.TE_menustyle_corporate ul ul li:hover>a {
	background-color: white;
}

.TE_menustyle_corporate ul li.TE_has_submenu>a {
	background-image: url(/_TEincludes/TEimages/TE_menuDownArrow.gif);
	background-repeat: no-repeat;
	background-position: 97% 50%;
}
.TE_menustyle_corporate ul.TE_menutype_vertical li.TE_has_submenu:hover>a,
.TE_menustyle_corporate ul.TE_menutype_horizontal ul li.TE_has_submenu:hover>a {
	background-image: url(/_TEincludes/TEimages/TE_menuRightArrow.gif);
}
.TE_menustyle_corporate ul.TE_menutype_horizontal>li.TE_has_submenu>a {
	background-position: 90% 7px;
	padding-right: 25px;
}

/****************************
* Menu Style: MyTE
****************************/
.TE_menustyle_myte ul.TE_menu {
	background-color:#63B1E5;
	border-bottom: 1px solid #005C84;
	border-top: 1px solid #005C84;
	color: #FFFFFF;
	font-size: 11pt;
	font-weight: bold;
}
.TE_menustyle_myte ul.TE_menutype_horizontal {
	height: 24px;
}
.TE_menustyle_myte ul.TE_menutype_vertical{
	border-left: 1px solid #005C84;
	border-right: 1px solid #005C84;
}

.TE_menustyle_myte a {
	display: block;
	padding: 3px 20px;
	background-color: #63B1E5;
	color: #fff !important;
	text-decoration: none !important;
}

.TE_menustyle_myte ul.TE_menutype_horizontal a {
	border-left: 1px dashed #FFFFFF !important;
}

/* no right border for subitems or the last item */
.TE_menustyle_myte ul.TE_menutype_horizontal li li a, 
.TE_menustyle_myte ul.TE_menutype_horizontal li:first-child a,
.TE_menustyle_myte ul.TE_menutype_horizontal li.TE_position_right a {
	border-left: none !important;
}

.TE_menustyle_myte a:hover, .TE_menustyle_myte li:hover>a {
	background-color: #00669E;
}

.TE_menustyle_myte li ul {
	width: 140px;
}

.TE_menustyle_myte li li a {
	font-size: 11px;
	padding: 4px 20px;
	border: 1px solid #63B1E5 !important;
	margin-top: -1px;
}

.TE_menustyle_myte li li a,
.TE_menustyle_myte li li:hover li a {
	background-color: #00669E !important;
}

.TE_menustyle_myte li li:hover a,
.TE_menustyle_myte li li:hover li:hover a {
	background-color: #63B1E5 !important;
}


/****************************
* Japan only CSS by authering kasama date;2009/7/22
****************************/
