.ipWidget-AccordionAndTabs.ipSkin-default > ._accordion > dt {
    background: #dedede;
    padding: 10px;
    border-bottom: 0;
}
.ipWidget-AccordionAndTabs.ipSkin-default > ._accordion > dt:last-of-type {
    border-bottom: 1px solid #dedede;
}
.ipWidget-AccordionAndTabs.ipSkin-default > ._accordion > dt > a {
    display: block;
    color: #ffffff;
    font-weight: bold;
}
.ipWidget-AccordionAndTabs.ipSkin-default > ._accordion > dt > a > span {
    color: inherit;
}
.ipWidget-AccordionAndTabs.ipSkin-default > ._accordion > dd {
    border: 1px solid #dedede;
    border-top: 0;
    font-size: 12px;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.5s ease;
    -moz-transition: max-height 0.5s ease;
    transition: max-height 0.5s ease;
}
.ipWidget-AccordionAndTabs.ipSkin-default > ._accordion > dd.current {
    padding: 10px;
    max-height: 1000px;
    -webkit-transition: max-height 0.5s ease;
    -moz-transition: max-height 0.5s ease;
    transition: max-height 0.5s ease;
}
.ipWidget-AccordionAndTabs.ipSkin-default > ._accordion > dd:last-of-type {
    border-top: 1px solid white;
    position: relative;
    top: -1px;
}
.ipWidget-AccordionAndTabs.ipSkin-tabs ._tabs-menu > dt {
    display: block;
    float: left;
    margin-right: 10px;
    background-color: #ccc;
    border-top: 1px solid #d4d4d1;
    border-right: 1px solid #d4d4d1;
    border-left: 1px solid #d4d4d1;
}
.ipWidget-AccordionAndTabs.ipSkin-tabs ._tabs-menu > dt > a {
    display: inline;
    padding: 0 10px;
    line-height: 30px;
    color: #ffffff;
}
.ipWidget-AccordionAndTabs.ipSkin-tabs ._tabs-menu > dt.current {
    background-color: #fff;
    border-bottom: 1px solid #fff;
    overflow: hidden;
}
.ipWidget-AccordionAndTabs.ipSkin-tabs > ._tabs {
    clear: both;
    border: 1px solid #dedede;
    background-color: #fff;
    margin-bottom: 20px;
    padding: 10px;
}
.ipWidget-AccordionAndTabs.ipSkin-tabs > ._tabs ._tab {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.5s ease 0s;
    -moz-transition: max-height 0.5s ease 0s;
    transition: max-height 0.5s ease 0s;
}
.ipWidget-AccordionAndTabs.ipSkin-tabs > ._tabs ._tab.current {
    max-height: 1000px;
    -webkit-transition: max-height 0.5s ease 0.5s;
    -moz-transition: max-height 0.5s ease 0.5s;
    transition: max-height 0.5s ease 0.5s;
}