/*
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;
    /* Efecto girar div */
    transition: 0.6s ease;
    -moz-transition: 0.6s ease; /* Firefox */
    -webkit-transition: 0.6s ease; /* Chrome - Safari */
    -o-transition: 0.6s ease; /* Opera */
    /*position: relative;*/
}

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

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