.dropdownBB {
/* 	display: inline; */
	margin-right: 3px;
	margin-left: 3px;
	position: relative;
}

.dropdownBB .dropdownBB_button {
	cursor: pointer;
	width: auto;
	display: inline-block;
	padding-left: 7px;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-right: 22px;
	border: 1px solid #AAA;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font-weight: bold;
	color: #717780;
	line-height: 16px;
	text-decoration: none !important;
	background: white url("img/seta_baixo.png") no-repeat 90% 10px;
	
/* 	background-position: 10px 10px; */
}

.dropdownBB.open .dropdownBB_button {
	border: 1px solid #3B5998;
	color: white;
	background: #6D84B4 url("img/seta_baixo.png") no-repeat 90% -26px;
	-moz-border-radius-topleft: 2px;
	-moz-border-radius-topright: 2px;
	-moz-border-radius-bottomright: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-radius: 2px 2px 0px 0px;
	border-radius: 2px 2px 0px 0px;
	border-bottom-color: #6D84B4;
}

.dropdownBB .dropdownBB_button:hover {
	background-color: #6D84B4;
	color: #fff;
}

.dropdownBB .dropdownBB_button img {
	height: 14px;
	margin-top: 1px;
	margin-bottom: 1px;
	float: left;
	margin-right: 5px;
}

.dropdownBB .dropdownBB_content {
	display: none;
	position: absolute;
	border: 1px solid #777;
	padding: 0px;
	background: white;
	top: 100%;
	right: 0; /*Para abrir a esqeurda*/
/* 	margin: 5px 0; */
	text-align: left;
	z-index: 1;
	
	
}

.dropdownBB.open .dropdownBB_content {
	display: block;
}

.dropdownBB .dropdownBB_content li {
	list-style: none;
	margin-left: 0px;
	line-height: 16px;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #f1f1f1;
	margin-top: 2px;
	margin-bottom: 2px;
	
}

.dropdownBB .dropdownBB_content li:hover {
	border-top-color: #3B5998;
	border-bottom-color: #3B5998;
	background-color: #6D84B4;
}

.dropdownBB .dropdownBB_content li a {
	display: block;
	padding: 2px 7px;
	padding-right: 15px;
	color: black;
	text-decoration: none !important;
}

.dropdownBB .dropdownBB_content li:hover a {
	color: white;
	text-decoration: none !important;
}

.dropdownBB .dropdownBB_content li img {
	height: 14px;
	margin-top: 1px;
	margin-bottom: 1px;
	float: left;
	margin-right: 5px;
	border: none;
}

/**
	Quando disabled
*/
.dropdownBB .dropdownBB_content li.disabled {
	list-style: none;
	margin-left: 0px;
	line-height: 16px;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #f1f1f1;
	margin-top: 2px;
	margin-bottom: 2px;
}

.dropdownBB .dropdownBB_content li.disabled:hover {
	border-top-color: #fff;
	border-bottom-color: #fff;
	background: #fff;
	cursor: default;
}

.dropdownBB .dropdownBB_content li.disabled a {
	display: block;
	padding: 2px 7px;
	padding-right: 15px;
	color: #a8b0c5;
	text-decoration: none !important;
}

.dropdownBB .dropdownBB_content li.disabled:hover a {
	color: a8b0c5;
	text-decoration: none !important;
	cursor: default;
}