/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
Created on : 16/06/2015, 05:50:04 PM
Author     : Alenca
*/

/* Basic styling */
/* Draw the lines */
.jOrgChart .line {
    height                : 20px;
    width                 : 4px;
}

.jOrgChart .down {
    background-color 		: rgba(37,80,164,1);	
    margin 				: 0px auto;
}

.jOrgChart .top {
    border-top          : 3px solid rgba(37,80,164,1);
}

.jOrgChart .left {
    border-right          : 2px solid rgba(37,80,164,1);
}

.jOrgChart .right {
    border-left           : 2px solid rgba(37,80,164,1);
}

/* node cell */
.jOrgChart td {
    text-align            : center;
    vertical-align        : top;
    padding               : 0;
}

/* The node */
.jOrgChart .node {
    /*background-color 		: #35363B;*/
    display               : inline-block;
    width                 : 96px;
    /*height                : 60px;*/
    height                : auto;
    z-index 				: 10;
    margin               : 0 2px;
    padding              : 5px 5px 5px 5px;
    margin               : 0px 5px 0px 5px;
    /*border: 2px solid #6d7072;*/
    border: 2px solid #484a4b;
    border-radius: 5px 5px 5px 5px;
}
.jOrgChart .node .flipper .front, .back{
    /*position: absolute;*/
    /*top: 0;
    left: 0;*/
    width: 96px;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: 2.5s ease;
    -moz-transition: 2.5s ease; /* Firefox */
    -webkit-transition: 2.5s ease; /* Chrome - Safari */
    -o-transition: 2.5s ease; /* Opera */
    position: relative;
}
.jOrgChart .node .flipper{
    width: 96px;
    height: auto;
    /*position: absolute;*/
}
.jOrgChart .node .flipper .back {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.jOrgChart .node .flipper:hover .front{
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.jOrgChart .node .flipper:hover .back{
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}
.jOrgChart .node .flipper .front .title{
    color: #2550A4;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 12px;
    text-align: center;
}
.jOrgChart .node .flipper .back .info_nodo{
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 10px;
    /*font-weight: bold;*/
    /*line-height: 1;
    letter-spacing: 4px;*/
    text-align: justify;
    color: #000;
}
/* jQuery drag 'n drop */

.drag-active {
    border-style			: dotted !important;
}

.drop-hover {
    border-style			: solid !important;
    border-color 			: #E05E00 !important;
}