PRIMEFACES - Menu Ribbon - como alinhar o Label do RibbonGroup

Gostaria de saber se tem alguma forma de realizar o alinhamento do Label do RibbonGroup abaixo dos menus para que o mesmo não fique sobrepondo os botões.

<h:body>
<p:ribbon>
<p:tab title="Cadastros">

	<p:ribbonGroup label="Cadastros" style="width: 450px; height: 90px">
		<p:commandButton value="Clientes" icon="cadastro_clientes"
			styleClass="ui-ribbon-bigbutton" type="button"
			style="width: 80px; height: 80px"
			onclick="PF('painelFornecedores').show(); return false;"/>

		<p:commandButton value="Fornecedores" icon="fornecedor"
			styleClass="ui-ribbon-bigbutton" type="button"
			style="width: 80px; height: 80px"
			onclick="PF('painelFornecedores').show(); return false;" />

		<p:commandButton value="Usuários" icon="usuario"
			styleClass="ui-ribbon-bigbutton" type="button"
			style="width: 80px; height: 80px"
			onclick="PF('painelUsuarios').show(); return false;" />

		<p:commandButton value="Vendedores" icon="vendedor"
			styleClass="ui-ribbon-bigbutton" type="button"
			style="width: 80px; height: 80px"
			onclick="PF('painelVendedores').show(); return false;" />

		<p:commandButton value="Transportadores" icon="transportador"
			styleClass="ui-ribbon-bigbutton" type="button"
			style="width: 85px; height: 80px" />
	</p:ribbonGroup>
</p:tab>