@CHARSET "ISO-8859-1";


.organceo-organogram ul {
	padding-top: 20px; position: relative;
	
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.organceo-organogram li {
	float: left; text-align: center;
	list-style-type: none;
	position: relative;
	padding: 20px 25px 0 0px;
	
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

/*We will use ::before and ::after to draw the connectors*/

.organceo-organogram li::before, .organceo-organogram li::after{
	content: '';
	position: absolute; top: 0; right: 57%;
	border-top: 2px solid #ccc;
	width: 50%; height: 18px;
}
.organceo-organogram li::after{
	right: auto; left: 43%;
	border-left: 2px solid #ccc;
}

/*We need to remove left-right connectors from elements without 
any siblings*/
.organceo-organogram li:only-child::after, .organceo-organogram li:only-child::before {
	display: none;
}

/*Remove space from the top of single children*/
.organceo-organogram li:only-child{ padding-top: 0;}

/*Remove left connector from first child and 
right connector from last child*/
.organceo-organogram li:nth-child(1)::before, .organceo-organogram li:nth-child(4)::after{
	border: 0 none;
}

/*Adding back the vertical connector to the last nodes*/
.organceo-organogram li:nth-child(4)::before{
	border-right: 2px solid #ccc;
	border-radius: 0 5px 0 0;
	-webkit-border-radius: 0 5px 0 0;
	-moz-border-radius: 0 5px 0 0;
}
.organceo-organogram li:nth-child(1)::after{
	border-radius: 5px 0 0 0;
	-webkit-border-radius: 5px 0 0 0;
	-moz-border-radius: 5px 0 0 0;
}

.organceo-organogram ul ul{
	padding-top: 300px;
}

.organceo-organogram li a{
	border: 5px solid transparent;
	background: #FFF1C2;
	padding: 5px 10px;
	cursor: pointer;
	width: 95px;
	text-decoration: none;
	color: #4C4943;
	font-family: arial, verdana, tahoma;
	font-weight: bold;
	display: inline-block;

	-webkit-box-shadow: 2px 2px 7px 2px rgba(0,0,0,0.75);
	-moz-box-shadow: 2px 2px 7px 2px rgba(0,0,0,0.75);
	box-shadow: 2px 2px 7px 2px rgba(0,0,0,0.75);
	
	background: #e6ebef;

	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.organceo-organogram li a:hover{
	border: 5px solid #efcb2c;
}

.organceo-selector-acronym{ font-size: 14px; letter }
.organceo-selector-name{ font-size: 12px }

/*Time to add downward connectors from parents*/
.organceo-organogram ul ul::before{
	content: '';
	position: absolute; top: 0; left: 50%;
	border-left: 2px solid #ccc;
	width: 0; 
	height: 300px;
}

/*---------- ARRUMANDO AS CORES E POSICOES DOS NÓS ------------------*/
#presidencia{
	border: 5px solid #efcb2c;
	background: #273e74;
	color: #FFF1C2;
	font-size: 24px;
	width: 175px;
}

#conselho-superior{
	font-size: 16px;
	background: #385AA8;
	color: white;
}

#assessoria-de-cooperacao-internacional, #auditoria-interna, #gabinete, #procuradoria-federal{ 
	background: #2c60bd;
	color: white;
	font-size: 18px;
	width: 170px;
	height: 75px;
	display: table-cell;
	vertical-align: middle;
}

/* --------- LADO ESQUERDO --------------------*/
.organceo-auditoria-interna{
	position: absolute;
	top: 50px;
	left: 20px;
}

.organceo-auditoria-interna::after{
	border: 1px solid #ccc;
	content: '';
	position: absolute;
	top: 39px;
	width: 100px;
	left: 202px;
}

.organceo-assessoria-de-cooperacao-internacional{
	position: absolute;
	top: 160px;
	left: 20px;
}

.organceo-assessoria-de-cooperacao-internacional::after{
	border: 1px solid #ccc;
	content: '';
	position: absolute;
	top: 39px;
	width: 100px;
	left: 202px;
}

/* --------- LADO DIREITO --------------------*/

.organceo-gabinete{
	position: absolute;
	top: 50px;
	left: 415px;
}

.organceo-gabinete::before{
	border: 1px solid #ccc;
	content: '';
	position: absolute;
	right: 200px;
	top: 39px;
	width: 92px;
}

.organceo-procuradoria-federal{
	position: absolute;
	top: 160px;
	left: 415px;
}

.organceo-procuradoria-federal::before{
	border: 1px solid #ccc;
	content: '';
	position: absolute;
	right: 200px;
	top: 39px;
	width: 92px;
}



/* ----------------- CONSELHO ----------------------*/

.organceo-conselho-superior{
	position: absolute;
	top: -52px;
	left: -7px;
}

.organceo-conselho-superior .organceo-division-selector{
	width: auto;
	height: auto;
	line-height: 2em;

	border-radius: 0;
	-webkit-border-radius: 0%;
	-moz-border-radius: 0;
}

.organceo-conselho-superior::after{
	border: 1px solid #ccc;
	content: '';
	position: absolute;
	width: 46px;
	left: 176px;
	top: 29px;
}


/* A partir daqui é o CSS do resto da pagina */

.organceo-organogram{
	overflow: auto;
	padding: 20px;
}

#organceo-divisions-divs{ padding: 20px }
#organceo-divisions-divs h2{ margin-bottom: 5px }
#organceo-divisions-divs h3{ margin-bottom: 3px; margin-top: 5px }