/**
 * JNews Migration JMagz Plugin - Shortcode CSS
 */

/* intro */
.content-inner .migration-intro-text > p:first-child,
.content-inner .migration-intro-text {
    font-size: 1.4em;
    line-height: 1.5em;
    color: #222;
    letter-spacing: -0.008em;
}

/* dropcaps */
.content-inner .migration-dropcaps > p:first-child:first-letter,
.content-inner .migration-dropcaps:first-letter,
.content-inner .migration-dropcaps {
    float: left;
    margin: 0.04em 0.2em 0 0.1em;
    color: #ef4135;
    font-size: 2em;
    line-height: 1em;
}

/* pullquote */
.content-inner blockquote.migration-pullquote-left {
    clear: left;
    float: left;
    max-width: 35%;
    margin: 0.4em 1.2em 0.4em 0;
}

.content-inner blockquote.migration-pullquote-right {
    clear: right;
    float: right;
    max-width: 35%;
    margin: 0.4em 0 0.4em 1.2em;
}

/* highlight */
.migration-highlight {
    border-radius: 2px;
    padding: 5px 6px;
    background-color: #000000;
    color: #FFFFFF;
    font-style: normal;
}

/* alert */
.content-inner .alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 2px;
}

.content-inner .alert-dismissable .close {
    position: relative;
    color: inherit;
}

.content-inner .alert strong {
    margin-right: 0.75em;
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-inner .alert strong:after {
    display: block;
    content: "";
    border-bottom: 1px solid rgba(125,125,125,0.1);
    width: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.content-inner button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

.content-inner .close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.5;
}

.content-inner .close:hover, .content-inner .close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

/* button */
.migration-btn {
    display: inline-block;
    padding: 9px 25px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    outline: 0;

    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.migration-btn:active {
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.migration-btn:hover, 
.migration-btn:focus {
    text-decoration: none;
}

.migration-btn-small {
    padding: 6px 16px;
    font-size: 12px;
}

.migration-btn-default {
  color: #646464;
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  background-image: -o-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff7f7f7', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  text-shadow: 0 1px 0 #fff;
  border-color: #c0c0c0;
}

.migration-btn-default:hover,
.migration-btn-default:focus {
  background: #f7f7f7;
  background: -moz-linear-gradient(top,  #f7f7f7 0%, #efefef 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(100%,#efefef));
  background: -webkit-linear-gradient(top,  #f7f7f7 0%,#efefef 100%);
  background: -o-linear-gradient(top,  #f7f7f7 0%,#efefef 100%);
  background: -ms-linear-gradient(top,  #f7f7f7 0%,#efefef 100%);
  background: linear-gradient(to bottom,  #f7f7f7 0%,#efefef 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#efefef',GradientType=0 );
}

.migration-btn-default:active {
  background: #efefef;
  background: -moz-linear-gradient(top,  #efefef 0%, #f7f7f7 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#efefef), color-stop(100%,#f7f7f7));
  background: -webkit-linear-gradient(top,  #efefef 0%,#f7f7f7 100%);
  background: -o-linear-gradient(top,  #efefef 0%,#f7f7f7 100%);
  background: -ms-linear-gradient(top,  #efefef 0%,#f7f7f7 100%);
  background: linear-gradient(to bottom,  #efefef 0%,#f7f7f7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#f7f7f7',GradientType=0 );
  border-color: #c0c0c0;
}

.migration-btn-default:disabled,
.migration-btn-default[disabled] {
  background-color: #e0e0e0;
  background-image: none;
}

.migration-btn-primary {
  background-image: -webkit-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
  background-image: -o-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
  background-image: linear-gradient(to bottom, #428bca 0%, #2d6ca2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #2b669a;
}

.migration-btn-primary:hover,
.migration-btn-primary:focus {
  background: #4da2e0;
  background: -moz-linear-gradient(top,  #4da2e0 0%, #3680bd 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4da2e0), color-stop(100%,#3680bd));
  background: -webkit-linear-gradient(top,  #4da2e0 0%,#3680bd 100%);
  background: -o-linear-gradient(top,  #4da2e0 0%,#3680bd 100%);
  background: -ms-linear-gradient(top,  #4da2e0 0%,#3680bd 100%);
  background: linear-gradient(to bottom,  #4da2e0 0%,#3680bd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4da2e0', endColorstr='#3680bd',GradientType=0 );
}

.migration-btn-primary:active {
  background: #2d6ca2;
  background: -moz-linear-gradient(top,  #2d6ca2 0%, #428bca 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2d6ca2), color-stop(100%,#428bca));
  background: -webkit-linear-gradient(top,  #2d6ca2 0%,#428bca 100%);
  background: -o-linear-gradient(top,  #2d6ca2 0%,#428bca 100%);
  background: -ms-linear-gradient(top,  #2d6ca2 0%,#428bca 100%);
  background: linear-gradient(to bottom,  #2d6ca2 0%,#428bca 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d6ca2', endColorstr='#428bca',GradientType=0 );
  border-color: #2b669a;
}

.migration-btn-primary:disabled,
.migration-btn-primary[disabled] {
  background-color: #2d6ca2;
  background-image: none;
}

.migration-btn-success {
  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
  background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
  background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #3e8f3e;
}

.migration-btn-success:hover,
.migration-btn-success:focus {
  background: #6bd06b;
  background: -moz-linear-gradient(top,  #6bd06b 0%, #4daf4d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6bd06b), color-stop(100%,#4daf4d));
  background: -webkit-linear-gradient(top,  #6bd06b 0%,#4daf4d 100%);
  background: -o-linear-gradient(top,  #6bd06b 0%,#4daf4d 100%);
  background: -ms-linear-gradient(top,  #6bd06b 0%,#4daf4d 100%);
  background: linear-gradient(to bottom,  #6bd06b 0%,#4daf4d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6bd06b', endColorstr='#4daf4d',GradientType=0 );
}

.migration-btn-success:active {
  background: #419641;
  background: -moz-linear-gradient(top,  #419641 0%, #5cb85c 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#419641), color-stop(100%,#5cb85c));
  background: -webkit-linear-gradient(top,  #419641 0%,#5cb85c 100%);
  background: -o-linear-gradient(top,  #419641 0%,#5cb85c 100%);
  background: -ms-linear-gradient(top,  #419641 0%,#5cb85c 100%);
  background: linear-gradient(to bottom,  #419641 0%,#5cb85c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#419641', endColorstr='#5cb85c',GradientType=0 );
  border-color: #3e8f3e;
}

.migration-btn-success:disabled,
.migration-btn-success[disabled] {
  background-color: #419641;
  background-image: none;
}

.migration-btn-info {
  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #28a4c9;
}

.migration-btn-info:hover,
.migration-btn-info:focus {
  background: #6bd8ef;
  background: -moz-linear-gradient(top,  #6bd8ef 0%, #32c5e6 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6bd8ef), color-stop(100%,#32c5e6));
  background: -webkit-linear-gradient(top,  #6bd8ef 0%,#32c5e6 100%);
  background: -o-linear-gradient(top,  #6bd8ef 0%,#32c5e6 100%);
  background: -ms-linear-gradient(top,  #6bd8ef 0%,#32c5e6 100%);
  background: linear-gradient(to bottom,  #6bd8ef 0%,#32c5e6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6bd8ef', endColorstr='#32c5e6',GradientType=0 );
}

.migration-btn-info:active {
  background: #2aabd2;
  background: -moz-linear-gradient(top,  #2aabd2 0%, #5bc0de 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2aabd2), color-stop(100%,#5bc0de));
  background: -webkit-linear-gradient(top,  #2aabd2 0%,#5bc0de 100%);
  background: -o-linear-gradient(top,  #2aabd2 0%,#5bc0de 100%);
  background: -ms-linear-gradient(top,  #2aabd2 0%,#5bc0de 100%);
  background: linear-gradient(to bottom,  #2aabd2 0%,#5bc0de 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2aabd2', endColorstr='#5bc0de',GradientType=0 );
  border-color: #28a4c9;
}

.migration-btn-info:disabled,
.migration-btn-info[disabled] {
  background-color: #2aabd2;
  background-image: none;
}

.migration-btn-warning {
  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #e38d13;
}

.migration-btn-warning:hover,
.migration-btn-warning:focus {
  background: #f9c65a;
  background: -moz-linear-gradient(top,  #f9c65a 0%, #f6ac1b 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9c65a), color-stop(100%,#f6ac1b));
  background: -webkit-linear-gradient(top,  #f9c65a 0%,#f6ac1b 100%);
  background: -o-linear-gradient(top,  #f9c65a 0%,#f6ac1b 100%);
  background: -ms-linear-gradient(top,  #f9c65a 0%,#f6ac1b 100%);
  background: linear-gradient(to bottom,  #f9c65a 0%,#f6ac1b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9c65a', endColorstr='#f6ac1b',GradientType=0 );
}

.migration-btn-warning:active {
  background: #eb9316;
  background: -moz-linear-gradient(top,  #eb9316 0%, #f0ad4e 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eb9316), color-stop(100%,#f0ad4e));
  background: -webkit-linear-gradient(top,  #eb9316 0%,#f0ad4e 100%);
  background: -o-linear-gradient(top,  #eb9316 0%,#f0ad4e 100%);
  background: -ms-linear-gradient(top,  #eb9316 0%,#f0ad4e 100%);
  background: linear-gradient(to bottom,  #eb9316 0%,#f0ad4e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb9316', endColorstr='#f0ad4e',GradientType=0 );
  border-color: #e38d13;
}

.migration-btn-warning:disabled,
.migration-btn-warning[disabled] {
  background-color: #eb9316;
  background-image: none;
}

.migration-btn-danger {
  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #b92c28;
}

.migration-btn-danger:hover,
.migration-btn-danger:focus {
  background: #eb605b;
  background: -moz-linear-gradient(top,  #eb605b 0%, #d93631 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eb605b), color-stop(100%,#d93631));
  background: -webkit-linear-gradient(top,  #eb605b 0%,#d93631 100%);
  background: -o-linear-gradient(top,  #eb605b 0%,#d93631 100%);
  background: -ms-linear-gradient(top,  #eb605b 0%,#d93631 100%);
  background: linear-gradient(to bottom,  #eb605b 0%,#d93631 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb605b', endColorstr='#d93631',GradientType=0 );
}

.migration-btn-danger:active {
  background: #c12e2a;
  background: -moz-linear-gradient(top,  #c12e2a 0%, #d9534f 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c12e2a), color-stop(100%,#d9534f));
  background: -webkit-linear-gradient(top,  #c12e2a 0%,#d9534f 100%);
  background: -o-linear-gradient(top,  #c12e2a 0%,#d9534f 100%);
  background: -ms-linear-gradient(top,  #c12e2a 0%,#d9534f 100%);
  background: linear-gradient(to bottom,  #c12e2a 0%,#d9534f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c12e2a', endColorstr='#d9534f',GradientType=0 );
  border-color: #b92c28;
}

.migration-btn-danger:disabled,
.migration-btn-danger[disabled] {
  background-color: #c12e2a;
  background-image: none;
}

.migration-btn-icon {
    margin-right: 8px;
    color: #949494;
}

a.migration-btn-primary,
a.migration-btn-success,
a.migration-btn-info,
a.migration-btn-warning,
a.migration-btn-danger {
    color: #fff !important;
}

/* tooltip */
.tooltip {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    position: absolute;
    visibility: visible;
    z-index: 1030;
}
.tooltip.in {
    opacity: 0.9;
}
.tooltip.top {
    margin-top: -3px;
    padding: 5px 0;
}
.tooltip.right {
    margin-left: 3px;
    padding: 0 5px;
}
.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0;
}
.tooltip.left {
    margin-left: -3px;
    padding: 0 5px;
}
.tooltip-inner {
    background-color: #000000;
    color: #FFFFFF;
    max-width: 200px;
    padding: 8px 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 2px;
}
.tooltip-arrow {
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
    height: 0;
    position: absolute;
    width: 0;
}
.tooltip.top .tooltip-arrow {
    border-top-color: #000000;
    border-width: 5px 5px 0;
    bottom: 0;
    left: 50%;
    margin-left: -5px;
}
.tooltip.top-left .tooltip-arrow {
    border-top-color: #000000;
    border-width: 5px 5px 0;
    bottom: 0;
    left: 5px;
}
.tooltip.top-right .tooltip-arrow {
    border-top-color: #000000;
    border-width: 5px 5px 0;
    bottom: 0;
    right: 5px;
}
.tooltip.right .tooltip-arrow {
    border-right-color: #000000;
    border-width: 5px 5px 5px 0;
    left: 0;
    margin-top: -5px;
    top: 50%;
}
.tooltip.left .tooltip-arrow {
    border-left-color: #000000;
    border-width: 5px 0 5px 5px;
    margin-top: -5px;
    right: 0;
    top: 50%;
}
.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #000000;
    border-width: 0 5px 5px;
    left: 50%;
    margin-left: -5px;
    top: 0;
}
.tooltip.bottom-left .tooltip-arrow {
    border-bottom-color: #000000;
    border-width: 0 5px 5px;
    left: 5px;
    top: 0;
}
.tooltip.bottom-right .tooltip-arrow {
    border-bottom-color: #000000;
    border-width: 0 5px 5px;
    right: 5px;
    top: 0;
}

/* accordion */
.panel {
    margin-bottom: 20px;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
    padding: 15px;
    line-height: 1.8em;
}

.panel-body:before,
.panel-body:after {
    display: table;
    content: " ";
}

.panel-body:after {
    clear: both;
}

.panel-body:before,
.panel-body:after {
    display: table;
    content: " ";
}

.panel-body:after {
    clear: both;
}

.panel > .list-group {
    margin-bottom: 0;
}

.panel > .list-group .list-group-item {
    border-width: 1px 0;
}

.panel > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.panel > .list-group .list-group-item:last-child {
    border-bottom: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}

.panel > .table {
    margin-bottom: 0;
}

.panel > .panel-body + .table {
    border-top: 1px solid #dddddd;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #dddddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel-group .panel {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 2px;
}

.accordion-toggle {
    font-style: normal;
    color: #333;
    text-transform: uppercase;
    display: block;
    letter-spacing: 1px;
    font-size: 14px;
    outline: none;
    -moz-outline: none;
}

.panel-group .panel + .panel {
    margin-top: 5px;
}

.panel-group .panel-heading {
    border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse .panel-body {
    border-top: 1px solid #dddddd;
}

.panel-group .panel-footer {
    border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #dddddd;
}

.panel-default {
    border-color: #dddddd;
}

.panel-default > .panel-heading {
    color: #333333;
    background-color: #f5f5f5;
    border-color: #dddddd;
}

.panel-default > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #dddddd;
}

.panel-default > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #dddddd;
}

.panel-primary {
    border-color: #428bca;
}

.panel-primary > .panel-heading {
    color: #ffffff;
    background-color: #428bca;
    border-color: #428bca;
}

.panel-primary > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #428bca;
}

.panel-primary > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #428bca;
}

.panel-success {
    border-color: #d6e9c6;
}

.panel-success > .panel-heading {
    color: #468847;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.panel-success > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #d6e9c6;
}

.panel-success > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #d6e9c6;
}

.panel-warning {
    border-color: #fbeed5;
}

.panel-warning > .panel-heading {
    color: #c09853;
    background-color: #fcf8e3;
    border-color: #fbeed5;
}

.panel-warning > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #fbeed5;
}

.panel-warning > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #fbeed5;
}

.panel-danger {
    border-color: #eed3d7;
}

.panel-danger > .panel-heading {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}

.panel-danger > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #eed3d7;
}

.panel-danger > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #eed3d7;
}

.panel-info {
    border-color: #bce8f1;
}

.panel-info > .panel-heading {
    color: #3a87ad;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #bce8f1;
}

.panel-info > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #bce8f1;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease;
}

/* tab */
.nav {
    list-style: none outside none;
    margin-bottom: 0;
    padding-left: 0;
}
.nav:before, .nav:after {
    content: " ";
    display: table;
}
.nav:after {
    clear: both;
}
.nav:before, .nav:after {
    content: " ";
    display: table;
}
.nav:after {
    clear: both;
}
.nav > li {
    display: block;
    position: relative;
}
.nav > li > a {
    display: block;
    padding: 10px 15px;
    position: relative;
}
.nav > li > a:hover, .nav > li > a:focus {
    background-color: #EEEEEE;
    text-decoration: none;
}
.nav > li.disabled > a {
    color: #999999;
}
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
    background-color: rgba(0, 0, 0, 0);
    color: #999999;
    cursor: not-allowed;
    text-decoration: none;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #EEEEEE;
    border-color: #428BCA;
}
.nav .nav-divider {
    background-color: #E5E5E5;
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
}
.nav > li > a > img {
    max-width: none;
}
.nav-tabs {
    border-bottom: 1px solid #DDDDDD;
    margin-left: 0px !important;
}
.nav-tabs > li {
    float: left;
    margin-bottom: -1px !important;
}
.nav-tabs > li > a {
    border: 1px solid transparent;
    border-radius: 2px 2px 0 0;
    line-height: 1.42857;
    margin-right: 2px;
}
.nav-tabs > li > a:hover {
    border-color: #EEEEEE #EEEEEE #DDDDDD;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #FFFFFF;
    border-color: #DDDDDD #DDDDDD transparent;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    color: #555555;
    cursor: default;
}
.nav-tabs.nav-justified {
    border-bottom: 0 none;
    width: 100%;
}
.nav-tabs.nav-justified > li {
    float: none;
}
.nav-tabs.nav-justified > li > a {
    text-align: center;
}
@media (min-width: 768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }
}
.nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #DDDDDD;
    margin-right: 0;
}
.nav-tabs.nav-justified > .active > a {
    border-bottom-color: #FFFFFF;
}
.nav-pills > li {
    float: left;
}
.nav-pills > li > a {
    border-radius: 5px 5px 5px 5px;
}
.nav-pills > li + li {
    margin-left: 2px;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    background-color: #428BCA;
    color: #FFFFFF;
}
.nav-stacked > li {
    float: none;
}
.nav-stacked > li + li {
    margin-left: 0;
    margin-top: 2px;
}
.nav-justified {
    width: 100%;
}
.nav-justified > li {
    float: none;
}
.nav-justified > li > a {
    text-align: center;
}
@media (min-width: 768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%;
    }
}
.nav-tabs-justified {
    border-bottom: 0 none;
}
.nav-tabs-justified > li > a {
    border-bottom: 1px solid #DDDDDD;
    margin-right: 0;
}
.nav-tabs-justified > .active > a {
    border-bottom-color: #FFFFFF;
}
.tabbable:before, .tabbable:after {
    content: " ";
    display: table;
}
.tabbable:after {
    clear: both;
}
.tabbable:before, .tabbable:after {
    content: " ";
    display: table;
}
.tabbable:after {
    clear: both;
}
.tab-content > .tab-pane, .pill-content > .pill-pane {
    display: none;
}
.tab-content > .active, .pill-content > .active {
    display: block;
    padding: 0 10px;
}
.nav .caret {
    border-bottom-color: #428BCA;
    border-top-color: #428BCA;
}
.nav a:hover .caret {
    border-bottom-color: #2A6496;
    border-top-color: #2A6496;
}
.nav-tabs .dropdown-menu {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: -1px;
}
.navbar {
    border: 1px solid transparent;
    margin-bottom: 20px;
    min-height: 50px;
    position: relative;
    z-index: 1000;
}
.navbar:before, .navbar:after {
    content: " ";
    display: table;
}
.navbar:after {
    clear: both;
}
.navbar:before, .navbar:after {
    content: " ";
    display: table;
}
.navbar:after {
    clear: both;
}
@media (min-width: 768px) {
    .navbar {
        border-radius: 2px;
    }
}
.navbar-header:before, .navbar-header:after {
    content: " ";
    display: table;
}
.navbar-header:after {
    clear: both;
}
.navbar-header:before, .navbar-header:after {
    content: " ";
    display: table;
}
.navbar-header:after {
    clear: both;
}
@media (min-width: 768px) {
    .navbar-header {
        float: left;
    }
}
.navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
    max-height: 340px;
    overflow-x: visible;
    padding-left: 15px;
    padding-right: 15px;
}
.navbar-collapse:before, .navbar-collapse:after {
    content: " ";
    display: table;
}
.navbar-collapse:after {
    clear: both;
}
.navbar-collapse:before, .navbar-collapse:after {
    content: " ";
    display: table;
}
.navbar-collapse:after {
    clear: both;
}
.navbar-collapse.in {
    overflow-y: auto;
}
@media (min-width: 768px) {
    .navbar-collapse {
        border-top: 0 none;
        box-shadow: none;
        width: auto;
    }
    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        overflow: visible !important;
        padding-bottom: 0;
    }
    .navbar-collapse.in {
        overflow-y: visible;
    }
    .navbar-collapse .navbar-nav.navbar-left:first-child {
        margin-left: -15px;
    }
    .navbar-collapse .navbar-nav.navbar-right:last-child {
        margin-right: -15px;
    }
    .navbar-collapse .navbar-text:last-child {
        margin-right: 0;
    }
}
.container > .navbar-header, .container > .navbar-collapse {
    margin-left: -15px;
    margin-right: -15px;
}
@media (min-width: 768px) {
    .container > .navbar-header, .container > .navbar-collapse {
        margin-left: 0;
        margin-right: 0;
    }
}
.navbar-static-top {
    border-width: 0 0 1px;
}
@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0 0 0 0;
    }
}
.navbar-fixed-top, .navbar-fixed-bottom {
    border-width: 0 0 1px;
    left: 0;
    position: fixed;
    right: 0;
}
@media (min-width: 768px) {
    .navbar-fixed-top, .navbar-fixed-bottom {
        border-radius: 0 0 0 0;
    }
}
.navbar-fixed-top {
    top: 0;
    z-index: 1030;
}
.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
}
.navbar-brand {
    float: left;
    font-size: 18px;
    line-height: 20px;
    padding: 15px;
}
.navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none;
}
@media (min-width: 768px) {
    .navbar > .container .navbar-brand {
        margin-left: -15px;
    }
}
.navbar-toggle {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid transparent;
    border-radius: 2px;
    float: right;
    margin-bottom: 8px;
    margin-right: 15px;
    margin-top: 8px;
    padding: 9px 10px;
    position: relative;
}
.navbar-toggle .icon-bar {
    border-radius: 1px 1px 1px 1px;
    display: block;
    height: 2px;
    width: 22px;
}
.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}
@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}
.navbar-nav {
    margin: 7.5px -15px;
}
.navbar-nav > li > a {
    line-height: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
}
@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        background-color: rgba(0, 0, 0, 0);
        border: 0 none;
        box-shadow: none;
        float: none;
        margin-top: 0;
        position: static;
        width: auto;
    }
    .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px;
    }
    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px;
    }
    .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
        background-image: none;
    }
}
@media (min-width: 768px) {
    .navbar-nav {
        float: left;
        margin: 0;
    }
    .navbar-nav > li {
        float: left;
    }
    .navbar-nav > li > a {
        padding-bottom: 15px;
        padding-top: 15px;
    }
}
@media (min-width: 768px) {
    .navbar-left {
        float: left !important;
    }
    .navbar-right {
        float: right !important;
    }
}
.navbar-form {
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.1);
    margin: 8px -15px;
    padding: 10px 15px;
}
@media (min-width: 768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }
    .navbar-form .form-control {
        display: inline-block;
    }
    .navbar-form .radio, .navbar-form .checkbox {
        display: inline-block;
        margin-bottom: 0;
        margin-top: 0;
        padding-left: 0;
    }
    .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] {
        float: none;
        margin-left: 0;
    }
}