/*  The menu holder*/
#ssmenubar
{
	background-color: #333;
	border: 1px solid #989898;
	color: #fff;
	height: 17px;
	margin:1px 0 0 20px;
	padding: 1px 0px 1px 0px;
	position: relative;
	width: 778px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	font-size: 12px;
}

/* this is the main UL element*/
.dropdown
{
	display: none;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	margin: 0px 0px;
	padding: 0px;
}

/* these are the inner menus*/
.dropdown ul
{
	margin: 0px 0px 0px 0px;
	padding: 0px 1px;
	border-top: 1px solid #444;
	list-style: none;
	background:#333333 none repeat scroll 0 0;
    border:1px solid #989898;
}

/* these are all the LIs in the menu*/
.dropdown li.page_item
{
	background-color: #666;
	border: 1px solid #cdcdcd;
	cursor: pointer;
	margin: 0 0 0 2px;
	text-align: center;
	width: 110px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a
{
	color: #fff;
	text-decoration: none;
	width: 100%;
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li.page_item
{
	border: 1px solid #FFFFFF;
    margin: 1px 0;
    padding-bottom: 5px;
    padding-left: 16px;
    padding-top: 2px;
    text-align: left;
    width: 180px;
    min-width: 110px;
}
.dropdown ul li:hover{
   
   background:#666666 url(../images/logo_ball.png) no-repeat scroll -30px -18px;
}
/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down
{
	background: #666 url('../images/logo_ball_20.png') no-repeat -8px -43px;
	text-align: center;
	width: 110px;
}
.dropdown li.submenu-down:hover{background-position: -8px -23px}
/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left
{
	background: #666 url('../images/logo_ball_20.png') no-repeat -8px -43px;
	padding-right: 0px;
	width: 110px;
}
.dropdown li.submenu-left:hover{background-position: -8px -23px}
.dropdown li.menu_bar_left{
	width: 43px;
	margin-left: 1px;
	border: 1px solid #cdcdcd;
	-moz-border-radius-topleft: 7px;
    -moz-border-radius-bottomleft: 7px;
	-webkit-border-top-left-radius: 7px ;
	-webkit-border-bottom-left-radius: 7px ;
	border-radius: 7px 0px 0px 7px;
}
.dropdown li.menu_bar_right {
	width: 42px;
	border: 1px solid #cdcdcd;
	-moz-border-radius-topright: 7px;
    -moz-border-radius-bottomright: 7px;
	-webkit-border-bottom-right-radius: 7px ;
	-webkit-border-top-right-radius: 7px ;
	border-radius: 0px 7px 7px 0px;
}


