/*************************************************************************************************
*             Stylesheet for Pop down menu:- menu1 v1.01 by mark Foyster.                        *
*                                                                                                *
* Insert this stylesheet between the head tags of your html document using the link tag eg:-     *
*                    <link rel="stylesheet" type="text/css" href="menu1.css" />                  *
*                                                                                                *
* See the instructions with the menu1.js file to see how to embed the scroller in your           *
* homepage. To change the size or styles of the scroller, use the stylesheet below.              *
*                                                                                                *
**************************************************************************************************
*/

/*Style information for the static menu bar container*/
#menubar
{
	position:relative;
	left:75px; /*relative x co-ord, alter to place menu bar on your page*/
	top:-5px;/*relative y co-ord, alter to place menu bar on your page*/
	width:600px; /* 150 pixels per menu title*/
	height:30px;
	
	background-color:#dddddd;
	overflow:visible;	
}

/*First menu title text styling*/
#menuopt1
{
	font-family: VERDANA;
	font-size: 8pt;
	position:absolute;
	left:0px;
	top:8px;
	width:150px;
	height:50px; /*By setting this to overlap downwards, mouseover is preserved when box is dropped */
	text-align:center;
}

/*Second menu title text styling*/
#menuopt2
{
	font-family: VERDANA;
	font-size: 8pt;
	position:absolute;
	left:150px;
	top:8px;
	width:150px;
	height:50px;/*By setting this to overlap downwards, mouseover is preserved when box is dropped */
	text-align:center;
}

/*Third menu title text styling*/
#menuopt3
{
	font-family: VERDANA;
	font-size: 8pt;
	position:absolute;
	left:300px;
	top:8px;
	width:150px;
	height:50px;/*By setting this to overlap downwards, mouseover is preserved when box is dropped */
	text-align:center;
}

#menuopt4
{
	font-family: VERDANA;
	font-size: 8pt;
	position:absolute;
	left:450px;
	top:8px;
	width:150px;
	height:50px;/*By setting this to overlap downwards, mouseover is preserved when box is dropped */
	text-align:center;
}

/*Style settings for pop down menu box*/
.menusubs
{
	font-family: VERDANA;
	font-size: 8pt;
	visibility:hidden;
	position:absolute;
	left:0px;
	top:30px;
	width:150px;
	height:120px; /*30 pixels per line, change this and size of background image if you change menu option sizes or numbers*/
	background-color:#dddddd;
	/*background-image:url(images/mboxbak.png); Loads background image for pop down box*/
}

/*styling for anchors within menu links*/
a.menulink
{
	font-family: VERDANA;
	font-size: 8pt;
	text-decoration: none;/*Stops links from being underlined*/
	color:black;/*Restores colour*/
}

