1/* Basic styling */
2/* Draw the lines */
3.jOrgChart .line {
4  height                : 20px;
5  width                 : 4px;
6}
7
8.jOrgChart table {
9  border                : 0;
10  border-collapse       : separate;
11  margin                : 0;
12}
13
14.jOrgChart .down {
15  background-color 		: black;
16  margin 				: 0px auto;
17}
18
19.jOrgChart .top {
20  border-top          : 3px solid black;
21}
22
23.jOrgChart .left {
24  border-right          : 2px solid black;
25}
26
27.jOrgChart .right {
28  border-left           : 2px solid black;
29}
30
31/* node cell */
32.jOrgChart td {
33  text-align            : center;
34  vertical-align        : top;
35  padding               : 0;
36  border                : 0;
37}
38
39/* The node */
40.jOrgChart .node {
41  background-color 		: #ffffcf;;
42  display               : inline-block;
43  z-index 				: 10;
44  margin                : 0 2px;
45  padding               : 5px 5px;
46  line-height           : 1.3em;
47  border                : 1px solid black;
48  border-radius         : 6px;
49  -moz-border-radius    : 6px;
50  -webkit-border-radius : 6px;
51  font-weight           : bold;
52}
53
54.jOrgChart span.wrap_title {
55    font-weight: normal;
56    font-style: italic;
57}
58
59/* jQuery drag 'n drop */
60
61.drag-active {
62  border-style			: dotted !important;
63}
64
65.drop-hover {
66  border-style			: solid !important;
67  border-color 			: #E05E00 !important;
68}
69