div.orgChart {
    margin                : 10px;
    padding               : 20px;
}

div.orgChart h2 {
    margin                : 0px;
	font-size             : 14px;
	font-family: 'Arial', serif;
    font-weight: 600;
    line-height: 1.42857143;
    color: #ff0000;
	margin-top: 10px;
    margin-bottom: 10px;
}
div.orgChart h2 span {
    font-size             : 12px;
    margin-top: 10px;
}

div.orgChart ul {
    list-style            : none;
    margin                : 4px;
    padding               : 0px;
    font-size             : 0.8em;
    text-align            : left;
}

div.orgChart ul.stack,
div.orgChart ul.stack ul {
    text-align            : center;
}

div.orgChart table {
    width                 : 100%;
	margin-bottom : 0px;
}

div.orgChart tr.lines td.line {
    width                 : 1px;
    height                : 20px;
}

div.orgChart tr.lines td.top {
    border-top            : 2px solid #CE8948;
}

div.orgChart tr.lines td.left {
    border-right          : 2px solid #CE8948;
}

div.orgChart tr.lines td.right {
    border-left           : 0px dashed #CE8948;
}

div.orgChart tr.lines td.half {
    width                 : 50%;
}


div.orgChart td {
    text-align            : center;
    vertical-align        : top;
    padding               : 0px 2px;
}

div.orgChart div.node {
	border: 2px solid #d2d2d2;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    -webkit-transition: all linear .1s;
    -moz-transition: all linear .1s;
    transition: all linear .1s;
    background: #251234;
	cursor: default;
    display: inline-block;
    padding: 5px 10px;
    position: relative;
    box-shadow: 1px 1px 0px #ddd;
}

div.orgChart div.node:hover {
    background: #fcfaca;
    cursor: pointer;
}

.org-add-button, .org-del-button, .org-confirm-del-button{
    position: absolute;
    font-size: 12px;
}

.org-add-button:hover, .org-del-button:hover{
    background-color: #eef;
    border-radius: 2px;
    cursor: pointer;
}


.org-input{
    width: 90px;
}

.org-confirm-del-button{
    display: none;
}