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/bground_2.jpg');
	background-position:top center;
	background-repeat:no-repeat;
	background-attachment:scroll;
}

#prepage {
	width:100%;
	height:100%;
	text-align:center;
	padding-top:235px;
	background-image:url('../images/tile.jpg');
	background-position:top center;

}
		
#main {
position:absolute;
top:50px;
}

	/* 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;
	background-repeat:no-repeat;
	padding:10px;
	outline:none;
	z-index:5;
}

.dropdown a:hover{
	color:red;
}

.dropdown  a:active{
	color:darkred;
}


/* 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;
}