#groups_tree {
	margin: 0;
	padding: 7px 6px 0;
	line-height: 100%;

	border-radius: 2em;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;

/*	-webkit-box-shadow: 0 1px 3px rgba(0,0,0, .4);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0, .4);
*/
}
#groups_tree li {
	margin: 0 5px;
	position: relative;
	list-style: none;
}


/* main level link */
#groups_tree a {
	font-weight: bold;
/*	color: #e7e5e5; */
	text-decoration: none;
	display: block;
	padding:  8px 20px;
	margin: 0;

	-webkit-border-radius: 1.6em;
	-moz-border-radius: 1.6em;
	
	text-shadow: 0 1px 1px rgba(0,0,0, .3);
}
#groups_tree a:hover {
}

/* main level link hover */
#groups_tree .current a, #groups_tree li:hover > a {

}

/* sub levels link hover */
#groups_tree ul li:hover a, #groups_tree li:hover li a {
	border: none;
/*	color: #666; */

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}
#groups_tree ul a:hover {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;

	text-shadow: 0 1px 1px rgba(0,0,0, .1); 
}

/* dropdown */

#groups_tree li:hover > ul {
	display: block;
}
#groups_tree li:hover{
	border-radius: 10px;
}

/* level 2 list */
#groups_tree ul {
	display: none;
	margin: 0;
	padding: 0;
	width: 185px;
	position: absolute;
	top: 0px;
	left: 200px;
	border: solid 1px #b4b4b4;
	z-index: 20;

	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

	-webkit-box-shadow: 0 1px 3px rgba(0,0,0, .3);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0, .3);
	box-shadow: 0 1px 3px rgba(0,0,0, .3);
}
#groups_tree ul li {
	float: none;
	margin: 0;
	padding: 0;
	word-wrap: break-word;
}


#groups_tree ul a {
	font-weight: normal;
/*	text-shadow: 0 1px 0 #fff;*/
}

/* level 3+ list */
#groups_tree ul ul {
	left: 181px;
	top: -3px;
}

/* rounded corners of first and last link */
#groups_tree ul li:first-child > a {
	-webkit-border-top-left-radius: 9px;
	-moz-border-radius-topleft: 9px;

	-webkit-border-top-right-radius: 9px;
	-moz-border-radius-topright: 9px;
}
#groups_tree ul li:last-child > a {
	-webkit-border-bottom-left-radius: 9px;
	-moz-border-radius-bottomleft: 9px;

	-webkit-border-bottom-right-radius: 9px;
	-moz-border-radius-bottomright: 9px;
}

/* clearfix */
#groups_tree:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#groups_tree {
	display: inline-block;
} 
html[xmlns] #groups_tree {
	display: block;
}
 
* html #groups_tree {
	height: 1%;
}