#painelCategoria button {
	float:left;
	display: block;
}

ul.menu {
	list-style-type: none;
	height: 60px;
	width: 600px;
	margin: 0;
	padding: 0;
}

ul.menu li{
	position: relative;
	float: left;
	width: 24%;
	margin-right: 5px;
	
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#e5e5e5 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */



	border-style: solid;
	border-width: 1px;
	border-color: grey;
	cursor: pointer;

	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	     -o-border-radius: 4px;
	        border-radius: 4px;

	-webkit-box-shadow:  1px 1px 2px 1px rgba(50, 50, 50, .2);
	   -moz-box-shadow:  1px 1px 2px 1px rgba(50, 50, 50, .2);
		 -o-box-shadow:  1px 1px 2px 1px rgba(50, 50, 50, .2);
        	box-shadow:  1px 1px 2px 1px rgba(50, 50, 50, .2);
}

ul.menu li:last-child{
	margin-right: 0;
}

ul.menu li:hover {
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #d6d6d6 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d6d6d6)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#d6d6d6 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#d6d6d6 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#d6d6d6 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#d6d6d6 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d6d6d6',GradientType=0 ); /* IE6-9 */

	border-color:black;
}

ul.menu li.selected {
	background: #e56d54; /* Old browsers */
	background: -moz-linear-gradient(top,  #e56d54 0%, #e82700 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e56d54), color-stop(100%,#e82700)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #e56d54 0%,#e82700 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #e56d54 0%,#e82700 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #e56d54 0%,#e82700 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #e56d54 0%,#e82700 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e56d54', endColorstr='#e82700',GradientType=0 ); /* IE6-9 */

	-webkit-box-shadow:  2px 2px 5px 1px rgba(50, 50, 50, .5);
	   -moz-box-shadow:  2px 2px 5px 1px rgba(50, 50, 50, .5);
		 -o-box-shadow:  2px 2px 5px 1px rgba(50, 50, 50, .5);
        	box-shadow:  2px 2px 5px 1px rgba(50, 50, 50, .5);
    border-color:black;
}
ul.menu li.selected p{
	color: white;
}

ul.menu li p{
	font-family: "StagSansBook";
    display: inline-block;
    vertical-align: middle;
    width: 100%;
	text-align: center;
	text-transform:uppercase;
	font-size: 14px;
	font-weight: bold;
	color: #666;
	pointer-events: none;
}

#wrapperCardeais{
	width: 620px;
	height: 620px;
	border-bottom: solid;
	border-color: grey;
	border-bottom-width: 1px;
}

.coluna {
	background-color: #eeeeee;
	height: 100%;
	float: left;
}

.cardeal{
	display: block;
	width: 40px;
	height: 40px;
	background-color: papayawhip;
	font-family: "Arial", "Helvetica", sans;
	font-size: 10px;
	color: grey;
	border-style: solid;
	border-color: rgba(255, 255, 255, .5);
	border-width: 1px;
	-webkit-transition: all 1s ease-in-out;
  	   -moz-transition: all 1s ease-in-out;
  	     -o-transition: all 1s ease-in-out;
  	        transition: all 1s ease-in-out;

  	-webkit-border-radius: 4px;
  	   -moz-border-radius: 4px;
	     -o-border-radius: 4px;
	        border-radius: 4px;
}

.cardeal:hover {
	border-width: 1px;
	border-color: #e82700;
}

.cardeal img {
	width: 40px;
	height: 40px;

	-webkit-border-radius: 4px;
  	   -moz-border-radius: 4px;
	     -o-border-radius: 4px;
	        border-radius: 4px;
}

.cardeal img.imgFavorito{
	position: absolute;
	display: block;
	top: 30px;
	left: 30px;
	width: 8px;
	height: 8px;
}

#divCardeais{
	height: 650px;
	overflow: hidden;
}

/*#wrapperLabels{
	display: block;
	position: absolute;
	background-color: red;
	width: 100%;
	height: 100%;
}*/

.labelsCardeais{
	position: absolute;
	display: block;
	left: 15px;
	color: #333;
	font-size: 16px;
}

.divTextoTooltip {
	width: 120px;
}
.divTextoTooltip p{
	font-size: 11px;
	margin: 3px 0;
}
.divTextoTooltip h5{
	margin: 3px 0;
}