@charset "utf-8";
/* CSS Document */

/* Set body margin and padding to zero to eliminate gap between browser and menu bar */
body {
	padding:0px;
	margin:0px;
}

img {
	border:none;
	outline:none;
}

/* Sets styling and background image for navigation bar. Change the image file to change the look. */
#tdglobalnav{
	background-image:url(images/globalbk2.png);
	background-repeat:repeat-x;
	margin: 0 0 5px 0; /* Sets width to 100%, eliminates gap between browser and creates a 5px space between the rest of the page content and the nav bar */
	padding:8px 8px 8px 20px; /* Aligns logo and sets height */
	cursor: pointer;
}

/* Creates rollover image behavior for the TD logo with CSS */
#tdglobalnav ul{
	background-image:url(images/tdmainlogo.png);
	background-repeat:no-repeat;
	margin:0;	/* Margin and padding must be established to eliminate alignment inconsistency in IE */
	padding:0; 
	width: 120px;
	height:10px;
	cursor: pointer;
	list-style-type: none;
}

#tdglobalnav ul:hover{
	background-image:url(images/tdmainlogoover.png);
	background-repeat:no-repeat;
	width: 120px;
	height:10px;
	cursor: pointer;
}


