@font-face
{
font-family: Font1;
src: url('http://uppegy.com/fonts/DENMARK.TTF');
}

.jquerycssmenu{
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size:20px;
border:#ffffff;
width: 100%;
line-height:50px;
background: url(images/menu.jpg) bottom center repeat-x;
}

.jquerycssmenu ul{
padding: 0 0 0 0; /*6px should equal top padding of "ul li a" below, 7px should equal bottom padding + bottom border of "ul li a" below*/
margin: 0;
list-style-type: none;
float: left;
}

/*Top level list items*/
.jquerycssmenu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
display: block;
color: #ffffff;
padding: 0px 30px 0px 30px; /*top padding is 6px, bottom padding is 4px*/
margin-right: 20px; /*spacing between each menu link*/
text-decoration: none;
}

.jquerycssmenu ul li a:hover{
	color: #ffdd00;
}

.jquerycssmenu .current
{
	color: #ffdd00;
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li{
display: list-item;
float: left;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jquerycssmenu ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.jquerycssmenu ul li ul li a{
font: normal 14px Verdana;
width: 200px; /*width of sub menus*/
padding: 5px;
text-align:left;
line-height:30px;
margin: 0;
text-decoration: none;
color:#ffffff;
background: url(images/sub-menu.jpg) bottom center repeat-x;
border-left: 3px solid #061a2d; /*left border is 3px*/
border-right: 3px solid #061a2d; /*right border is 3px*/
padding-left:10px;
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
background: url(images/sub-menu.jpg) bottom center repeat-x;
border-left: 3px solid #ffdd00; /*left border is 3px*/
border-right: 3px solid #ffdd00; /*right border is 3px*/
color: #ffdd00;
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 7px;
right: 5px;
display:none;
}

.rightarrowclass{
position: absolute;
top: 5px;
right: 5px;
display:none;
}