html {
	font-family:Trebuchet MS, Helvetica, sans-serif;
	background-image:url('images/tile.jpg');
	background-position:top center;
	background-attachment:scroll;
}

body {
	width:960px;
	height:650px;
	margin:50px auto 0px auto;
	color:white;
	background-image:url('images/background.jpg');
	background-position:top center;
	background-repeat:no-repeat;
	background-attachment:scroll;
}
		
#main {
font-size:1.1em;
}

	/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	width:120px;
	height:50px;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	color:#FFF;
	width:120px;
	height:50px;
	padding:10px;
}

.dropdown a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	width:120px;
	height:50px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	width:120px;
	height:50px;	
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	width:120px;
	height:50px;
}