/******************** insertion à la volée de zones html *****************/

fieldset {
    background: #FCFCFC;
    padding: 16px;
    border: 1px solid #D5D5D5;
}

.addfields {
    margin: 10px 0;
}

#choicesDisplay {
    padding: 10px;
    background: rgb(227, 250, 227);
    border: 1px solid rgb(171, 239, 171);
    color: rgb(9, 56, 9);
}

.remove {
    background: #C76868;
    color: #FFF;
    font-weight: bold;
    font-size: 21px;
    border: 0;
    cursor: pointer;
    display: inline-block;
    padding: 4px 9px;
    vertical-align: top;
    line-height: 100%;
}

input[type="text"],
select {
    padding: 5px;
}

SortTable {
    border-collapse: collapse;
}

.SortTable th {
    border-bottom: 1px solid;
}

.SortTable td,
.SortTable th {
    border-left: 1px solid;
    padding: 5px 10px;
}

.SortTable td:first-child,
.SortTable th:first-child {
    border-left: none;
}

.sortorder:after {
    content: '\25b2'; // BLACK UP-POINTING TRIANGLE
}

.sortorder.reverse:after {
    content: '\25bc'; // BLACK DOWN-POINTING TRIANGLE
}


/******************** sous menus *****************/

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}