/* @override http://192.168.1.106/~Wolfgang/drupal/sites/default/themes/cleanmarine/nice_menus_geg.css */

/* style the outer div to give it width */
.breadcrumb {

width:750px; 
padding: 5 0 0 15;
font-size:0.85em;
}
/* remove all the bullets, borders and padding from the default list styling */
.breadcrumb ul {
padding:0;
margin:0;
list-style-type:none;
}
.breadcrumb ul ul {
width:70px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.breadcrumb li {
float:left;

padding: 0 10px;
margin: 0;
position:relative;
}

.breadcrumb li ul li{
	width: 150px;
	
}
/* style the links for the top level */
.breadcrumb a, .breadcrumb a:visited {
display:block;
font-size: 11px;
text-decoration:none; 
color:black; 
 
padding: 0 5px; 
line-height: 29px;
	font-weight: bold;
	text-transform: capitalize;
}


/* style the second level background */
.breadcrumb ul ul a.drop, .breadcrumb ul ul a.drop:visited {
background: #3468ce;
}
/* style the second level hover */
.breadcrumb ul ul a.drop:hover{

}
.breadcrumb ul ul :hover > a.drop {
background: #3468ce;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.breadcrumb ul ul {
display: none;
position:absolute;
height:0;

left:0; 

	font-weight: normal;
	font-style: normal;
}
/* another hack for IE5.5 */
* html .breadcrumb ul ul {
top:30px;
t\op:31px;
}


/* style the table so that it takes no part in the layout - required for IE to work */
.breadcrumb table {position:absolute; top:0; left:0;}

/* style the second level links */
.breadcrumb ul ul a, .breadcrumb ul ul a:visited {
	
background: #3468ce;
color:white; 
height:auto; 
line-height: 1em; 
padding:5px 10px; 
width:109px
/* yet another hack for IE5.5 */;
	font-weight: normal;
	font-style: normal;
	font-size: 13px;
}
* html .breadcrumb ul ul a{
width:130px;
w\idth:129px;
}


/* style the top level hover */
.breadcrumb a:hover, .breadcrumb ul ul a:hover{
color:#fff; 
background:#949e7c;
}
.breadcrumb :hover > a, .breadcrumb ul ul :hover > a {
color:black;
background:#fff;
}

/* make the second level visible when hover on first level list */
.breadcrumb li:hover ul{
display: block;
}

/* stephen: third level menus aren't dealt with well yet */
.breadcrumb ul ul li ul,
.breadcrumb li:hover ul ul
{
	display: none;
}
.breadcrumb ul ul li:hover ul{
	top: 0px;
	display: block;
	margin-left: 130px;
}
/* --- */

