| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031 | .mce-container,.mce-container *,.mce-widget,.mce-widget *,.mce-reset {    margin: 0;    padding: 0;    border: 0;    outline: 0;    vertical-align: top;    background: transparent;    text-decoration: none;    color: #454545;    font-family: 'Open Sans', sans-serif;    font-size: 13px;    text-shadow: none;    float: none;    position: static;    width: auto;    height: auto;    white-space: nowrap;    cursor: inherit;    -webkit-tap-highlight-color: transparent;    line-height: normal;    font-weight: normal;    text-align: left;    -moz-box-sizing: content-box;    -webkit-box-sizing: content-box;    box-sizing: content-box;    direction: ltr;    max-width: none}.mce-widget button {    -moz-box-sizing: border-box;    -webkit-box-sizing: border-box;    box-sizing: border-box}.mce-container *[unselectable] {    -moz-user-select: none;    -webkit-user-select: none;    -o-user-select: none;    user-select: none}.mce-fade {    opacity: 0;    -webkit-transition: opacity .15s linear;    transition: opacity .15s linear}.mce-fade.mce-in {    opacity: 1}.mce-tinymce {    visibility: inherit !important;    position: relative}.mce-fullscreen {    border: 0;    padding: 0;    margin: 0;    overflow: hidden;    height: 100%;    z-index: 100}div.mce-fullscreen {    position: fixed;    top: 0;    left: 0;    width: 100%;    height: auto}.mce-tinymce {    display: block;    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px}.mce-wordcount {    position: absolute;    top: 0;    right: 0;    padding: 8px}div.mce-edit-area {    background: #FFF;    filter: none}.mce-statusbar {    position: relative}.mce-statusbar .mce-container-body {    position: relative}.mce-fullscreen .mce-resizehandle {    display: none}.mce-charmap {    border-collapse: collapse}.mce-charmap td {    cursor: default;    border: 1px solid #cfd3d6;    width: 20px;    height: 20px;    line-height: 20px;    text-align: center;    vertical-align: middle;    padding: 2px}.mce-charmap td div {    text-align: center}.mce-charmap td:hover {    background: #f5f5f5}.mce-grid td.mce-grid-cell div {    border: 1px solid #d6d6d6;    width: 15px;    height: 15px;    margin: 0px;    cursor: pointer}.mce-grid td.mce-grid-cell div:focus {    border-color: #a1a1a1}.mce-grid td.mce-grid-cell div[disabled] {    cursor: not-allowed}.mce-grid {    border-spacing: 2px;    border-collapse: separate}.mce-grid a {    display: block;    border: 1px solid transparent}.mce-grid a:hover,.mce-grid a:focus {    border-color: #a1a1a1}.mce-grid-border {    margin: 0 4px 0 4px}.mce-grid-border a {    border-color: #d6d6d6;    width: 13px;    height: 13px}.mce-grid-border a:hover,.mce-grid-border a.mce-active {    border-color: #a1a1a1;    background: #f5f5f5}.mce-text-center {    text-align: center}div.mce-tinymce-inline {    width: 100%}.mce-colorbtn-trans div {    text-align: center;    vertical-align: middle;    font-weight: bold;    font-size: 20px;    line-height: 16px;    color: #7d7d7d}.mce-monospace {    font-family: "Courier New", Courier, monospace}.mce-toolbar-grp {    padding: 5px 0px 5px 5px;}.mce-toolbar-grp .mce-flow-layout-item {    margin-bottom: 0}.mce-rtl .mce-wordcount {    left: 0;    right: auto}.mce-croprect-container {    position: absolute;    top: 0;    left: 0}.mce-croprect-handle {    position: absolute;    top: 0;    left: 0;    width: 20px;    height: 20px;    border: 2px solid white}.mce-croprect-handle-nw {    border-width: 2px 0 0 2px;    margin: -2px 0 0 -2px;    cursor: nw-resize;    top: 100px;    left: 100px}.mce-croprect-handle-ne {    border-width: 2px 2px 0 0;    margin: -2px 0 0 -20px;    cursor: ne-resize;    top: 100px;    left: 200px}.mce-croprect-handle-sw {    border-width: 0 0 2px 2px;    margin: -20px 2px 0 -2px;    cursor: sw-resize;    top: 200px;    left: 100px}.mce-croprect-handle-se {    border-width: 0 2px 2px 0;    margin: -20px 0 0 -20px;    cursor: se-resize;    top: 200px;    left: 200px}.mce-croprect-handle-move {    position: absolute;    cursor: move;    border: 0}.mce-croprect-block {    opacity: .3;    filter: alpha(opacity=30);    zoom: 1;    position: absolute;    background: black}.mce-imagepanel {    overflow: auto;    background: black}.mce-imagepanel img {    position: absolute}.mce-imagetool.mce-btn .mce-ico {    display: block;    width: 20px;    height: 20px;    text-align: center;    line-height: 20px;    font-size: 20px;    padding: 5px}.mce-container,.mce-container-body {    display: block}.mce-autoscroll {    overflow: hidden}.mce-scrollbar {    position: absolute;    width: 7px;    height: 100%;    top: 2px;    right: 2px;    opacity: .4;    filter: alpha(opacity=40);    zoom: 1}.mce-scrollbar-h {    top: auto;    right: auto;    left: 2px;    bottom: 2px;    width: 100%;    height: 7px}.mce-scrollbar-thumb {    position: absolute;    background-color: #000;    border: 1px solid #888;    border-color: rgba(85, 85, 85, 0.6);    width: 5px;    height: 100%;    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px}.mce-scrollbar-h .mce-scrollbar-thumb {    width: 100%;    height: 5px}.mce-scrollbar:hover,.mce-scrollbar.mce-active {    background-color: #AAA;    opacity: .6;    filter: alpha(opacity=60);    zoom: 1;    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px}.mce-scroll {    position: relative}.mce-panel {    border: 0 solid #edeeef;    border: 0 solid #cfd3d6;    background-color: #f5f5f5}.mce-floatpanel {    position: absolute}.mce-floatpanel.mce-fixed {    position: fixed}.mce-floatpanel .mce-arrow,.mce-floatpanel .mce-arrow:after {    position: absolute;    display: block;    width: 0;    height: 0;    border-color: transparent;    border-style: solid}.mce-floatpanel .mce-arrow {    border-width: 11px}.mce-floatpanel .mce-arrow:after {    border-width: 10px;    content: ""}.mce-floatpanel.mce-popover {    filter: progid: DXImageTransform.Microsoft.gradient(enabled false);    background: transparent;    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px;    top: 0;    left: 0;    background: #fff;    border: 1px solid #cfd3d6;}.mce-floatpanel.mce-popover.mce-bottom {    margin-top: 10px;    *margin-top: 0}.mce-floatpanel.mce-popover.mce-bottom>.mce-arrow {    left: 50%;    margin-left: -11px;    border-top-width: 0;    border-bottom-color: #cfd3d6;    top: -11px}.mce-floatpanel.mce-popover.mce-bottom>.mce-arrow:after {    top: 1px;    margin-left: -10px;    border-top-width: 0;    border-bottom-color: #fff}.mce-floatpanel.mce-popover.mce-bottom.mce-start {    margin-left: -22px}.mce-floatpanel.mce-popover.mce-bottom.mce-start>.mce-arrow {    left: 20px}.mce-floatpanel.mce-popover.mce-bottom.mce-end {    margin-left: 22px}.mce-floatpanel.mce-popover.mce-bottom.mce-end>.mce-arrow {    right: 10px;    left: auto}.mce-fullscreen {    border: 0;    padding: 0;    margin: 0;    overflow: hidden;    height: 100%}div.mce-fullscreen {    position: fixed;    top: 0;    left: 0}#mce-modal-block {    opacity: 0;    filter: alpha(opacity=0);    zoom: 1;    position: fixed;    left: 0;    top: 0;    width: 100%;    height: 100%;    background: #000}#mce-modal-block.mce-in {    opacity: .3;    filter: alpha(opacity=30);    zoom: 1}.mce-window-move {    cursor: move}.mce-window {    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px;    filter: progid: DXImageTransform.Microsoft.gradient(enabled false);    background: transparent;    background: #fff;    position: fixed;    top: 0;    left: 0;    opacity: 0;    -webkit-transition: opacity 150ms ease-in;    transition: opacity 150ms ease-in}.mce-window.mce-in {    opacity: 1}.mce-window-head {    padding: 9px 15px;    border-bottom: 1px solid #cfd3d6;    position: relative}.mce-window-head .mce-close {    position: absolute;    right: 15px;    top: 9px;    font-size: 20px;    font-weight: bold;    line-height: 20px;    color: #8f8f8f;    cursor: pointer;    height: 20px;    overflow: hidden}.mce-close:hover {    color: #b5b5b5}.mce-window-head .mce-title {    line-height: 20px;    font-size: 20px;    font-weight: bold;    text-rendering: optimizelegibility;    padding-right: 10px}.mce-window .mce-container-body {    display: block}.mce-foot {    display: block;    background-color: #fff;    border-top: 1px solid #cfd3d6;    -webkit-border-radius: 0 0 3px 3px;    -moz-border-radius: 0 0 3px 3px;    border-radius: 0 0 3px 3px}.mce-window-head .mce-dragh {    position: absolute;    top: 0;    left: 0;    cursor: move;    width: 90%;    height: 100%}.mce-window iframe {    width: 100%;    height: 100%}.mce-window.mce-fullscreen,.mce-window.mce-fullscreen .mce-foot {    -webkit-border-radius: 0;    -moz-border-radius: 0;    border-radius: 0}.mce-window-body .mce-listbox {    border-color: #ccc}.mce-rtl .mce-window-head .mce-close {    position: absolute;    right: auto;    left: 15px}.mce-rtl .mce-window-head .mce-dragh {    left: auto;    right: 0}.mce-rtl .mce-window-head .mce-title {    direction: rtl;    text-align: right}.mce-tooltip {    position: absolute;    padding: 5px;    opacity: .8;    filter: alpha(opacity=80);    zoom: 1}.mce-tooltip-inner {    font-size: 11px;    background-color: #000;    color: #fff;    max-width: 200px;    padding: 5px 8px 4px 8px;    text-align: center;    white-space: normal}.mce-tooltip-inner {    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px}.mce-tooltip-arrow {    position: absolute;    width: 0;    height: 0;    line-height: 0;    border: 5px dashed #000}.mce-tooltip-arrow-n {    border-bottom-color: #000}.mce-tooltip-arrow-s {    border-top-color: #000}.mce-tooltip-arrow-e {    border-left-color: #000}.mce-tooltip-arrow-w {    border-right-color: #000}.mce-tooltip-nw,.mce-tooltip-sw {    margin-left: -14px}.mce-tooltip-n .mce-tooltip-arrow {    top: 0px;    left: 50%;    margin-left: -5px;    border-bottom-style: solid;    border-top: none;    border-left-color: transparent;    border-right-color: transparent}.mce-tooltip-nw .mce-tooltip-arrow {    top: 0;    left: 10px;    border-bottom-style: solid;    border-top: none;    border-left-color: transparent;    border-right-color: transparent}.mce-tooltip-ne .mce-tooltip-arrow {    top: 0;    right: 10px;    border-bottom-style: solid;    border-top: none;    border-left-color: transparent;    border-right-color: transparent}.mce-tooltip-s .mce-tooltip-arrow {    bottom: 0;    left: 50%;    margin-left: -5px;    border-top-style: solid;    border-bottom: none;    border-left-color: transparent;    border-right-color: transparent}.mce-tooltip-sw .mce-tooltip-arrow {    bottom: 0;    left: 10px;    border-top-style: solid;    border-bottom: none;    border-left-color: transparent;    border-right-color: transparent}.mce-tooltip-se .mce-tooltip-arrow {    bottom: 0;    right: 10px;    border-top-style: solid;    border-bottom: none;    border-left-color: transparent;    border-right-color: transparent}.mce-tooltip-e .mce-tooltip-arrow {    right: 0;    top: 50%;    margin-top: -5px;    border-left-style: solid;    border-right: none;    border-top-color: transparent;    border-bottom-color: transparent}.mce-tooltip-w .mce-tooltip-arrow {    left: 0;    top: 50%;    margin-top: -5px;    border-right-style: solid;    border-left: none;    border-top-color: transparent;    border-bottom-color: transparent}.mce-progress {    display: inline-block;    position: relative;    height: 20px}.mce-progress .mce-bar-container {    display: inline-block;    width: 100px;    height: 100%;    margin-right: 8px;    border: 1px solid #ccc;    overflow: hidden;    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px}.mce-progress .mce-text {    display: inline-block;    margin-top: auto;    margin-bottom: auto;    font-size: 14px;    width: 40px;    color: #333}.mce-bar {    display: block;    width: 0%;    height: 100%;    background-color: #d7d7d7;    -webkit-transition: width .2s ease;    transition: width .2s ease}.mce-notification {    position: absolute;    background-color: #f0f0f0;    padding: 5px;    margin-top: 5px;    opacity: .8;    filter: alpha(opacity=80);    zoom: 1;    border-width: 1px;    border-style: solid;    border-color: #ccc}.mce-notification-success {    background-color: #dff0d8;    border-color: #d6e9c6}.mce-notification-info {    background-color: #d9edf7;    border-color: #779ecb}.mce-notification-warning {    background-color: #fcf8e3;    border-color: #faebcc}.mce-notification-error {    background-color: #f2dede;    border-color: #ebccd1}.mce-notification.mce-has-close {    padding-right: 15px}.mce-notification .mce-ico {    margin-top: 5px}.mce-notification-inner {    display: inline-block;    font-size: 14px;    margin: 5px 8px 4px 8px;    text-align: center;    white-space: normal;    color: #31708f}.mce-notification-inner a {    text-decoration: underline;    cursor: pointer}.mce-notification .mce-progress {    margin-right: 8px}.mce-notification .mce-progress .mce-text {    margin-top: 5px}.mce-notification *,.mce-notification .mce-progress .mce-text {    color: #333}.mce-notification .mce-progress .mce-bar-container {    border-color: #ccc}.mce-notification .mce-progress .mce-bar-container .mce-bar {    background-color: #333}.mce-notification-success *,.mce-notification-success .mce-progress .mce-text {    color: #3c763d}.mce-notification-success .mce-progress .mce-bar-container {    border-color: #d6e9c6}.mce-notification-success .mce-progress .mce-bar-container .mce-bar {    background-color: #3c763d}.mce-notification-info *,.mce-notification-info .mce-progress .mce-text {    color: #31708f}.mce-notification-info .mce-progress .mce-bar-container {    border-color: #779ecb}.mce-notification-info .mce-progress .mce-bar-container .mce-bar {    background-color: #31708f}.mce-notification-warning *,.mce-notification-warning .mce-progress .mce-text {    color: #8a6d3b}.mce-notification-warning .mce-progress .mce-bar-container {    border-color: #faebcc}.mce-notification-warning .mce-progress .mce-bar-container .mce-bar {    background-color: #8a6d3b}.mce-notification-error *,.mce-notification-error .mce-progress .mce-text {    color: #a94442}.mce-notification-error .mce-progress .mce-bar-container {    border-color: #ebccd1}.mce-notification-error .mce-progress .mce-bar-container .mce-bar {    background-color: #a94442}.mce-notification .mce-close {    position: absolute;    top: 6px;    right: 8px;    font-size: 20px;    font-weight: bold;    line-height: 20px;    color: #8f8f8f;    cursor: pointer;    height: 20px;    overflow: hidden}.mce-abs-layout {    position: relative}body .mce-abs-layout-item,.mce-abs-end {    position: absolute}.mce-abs-end {    width: 1px;    height: 1px}.mce-container-body.mce-abs-layout {    overflow: hidden}.mce-btn {    border: 1px solid #eaebec;    border-color: #cfd3d6 #cfd3d6 #cfd3d6 #cfd3d6;    position: relative;    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);    display: inline-block;    *display: inline;    *zoom: 1;    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px;    background-color: #fbfbfb    margin-bottom: 2px;}.mce-btn:hover,.mce-btn:focus {    color: #333;    background-color: #eee;    border-color: #ccc}.mce-btn.mce-disabled button,.mce-btn.mce-disabled:hover button {    cursor: default;    opacity: .4;    filter: alpha(opacity=40);    zoom: 1}.mce-btn.mce-active,.mce-btn.mce-active:hover {    background-color: #e7e7e7;    border-color: #ccc}.mce-btn:active {    background-color: #ebebeb;    border-color: #ccc}.mce-btn button {    padding: 5px 10px;    font-size: 14px;    line-height: 20px;    *line-height: 16px;    cursor: pointer;    color: #333;    text-align: center;    overflow: visible;    -webkit-appearance: none}.mce-btn button::-moz-focus-inner {    border: 0;    padding: 0}.mce-btn i {    text-shadow: 1px 1px #fff}.mce-primary {    min-width: 50px;    color: #fff;    border: 1px solid transparent;    border-color: transparent;    background-color: #1b2531}.mce-primary:hover,.mce-primary:focus {    background-color: #121921;    border-color: transparent}.mce-primary.mce-disabled button,.mce-primary.mce-disabled:hover button {    cursor: default;    opacity: .4;    filter: alpha(opacity=40);    zoom: 1}.mce-primary.mce-active,.mce-primary.mce-active:hover,.mce-primary:not(.mce-disabled):active {    background-color: #090c10}.mce-primary button,.mce-primary button i {    color: #fff;    text-shadow: 1px 1px #333}.mce-btn .mce-txt {    font-size: inherit;    line-height: inherit;    color: inherit}.mce-btn-large button {    padding: 9px 14px;    font-size: 16px;    line-height: normal;    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px}.mce-btn-large i {    margin-top: 2px}.mce-btn-small button {    padding: 1px 5px;    font-size: 12px;    *padding-bottom: 2px}.mce-btn-small i {    line-height: 20px;    vertical-align: top;    *line-height: 18px}.mce-btn .mce-caret {    margin-top: 8px;    margin-left: 0}.mce-btn-small .mce-caret {    margin-top: 8px;    margin-left: 0}.mce-caret {    display: inline-block;    *display: inline;    *zoom: 1;    width: 0;    height: 0;    vertical-align: top;    border-top: 4px solid #333;    border-right: 4px solid transparent;    border-left: 4px solid transparent;    content: ""}.mce-disabled .mce-caret {    border-top-color: #aaa}.mce-caret.mce-up {    border-bottom: 4px solid #333;    border-top: 0}.mce-btn-flat {    border: 0;    background: transparent;    -webkit-border-radius: 0;    -moz-border-radius: 0;    border-radius: 0;    filter: none}.mce-btn-flat:hover,.mce-btn-flat.mce-active,.mce-btn-flat:focus,.mce-btn-flat:active {    border: 0;    background: #e6e6e6;    filter: none}.mce-btn-has-text .mce-ico {    padding-right: 5px}.mce-rtl .mce-btn button {    direction: rtl}.mce-btn-group .mce-btn {    border-width: 1px;    margin: 0;    margin-bottom: 2px;    -webkit-border-radius: 0;    -moz-border-radius: 0;    border-radius: 0;    margin-left: 2px}.mce-btn-group:not(:first-child) {    border-left: 1px solid #d9d9d9;    padding-left: 3px;    margin-left: 3px}.mce-btn-group .mce-first {    -webkit-border-radius: 3px 0 0 3px;    -moz-border-radius: 3px 0 0 3px;    border-radius: 3px 0 0 3px;    margin-left: 0}.mce-btn-group .mce-last {    -webkit-border-radius: 0 3px 3px 0;    -moz-border-radius: 0 3px 3px 0;    border-radius: 0 3px 3px 0}.mce-btn-group .mce-first.mce-last {    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px}.mce-btn-group .mce-btn.mce-flow-layout-item {    margin: 0}.mce-rtl .mce-btn-group .mce-btn {    margin-left: 0;    margin-right: 2px}.mce-rtl .mce-btn-group .mce-first {    margin-right: 0}.mce-rtl .mce-btn-group:not(:first-child) {    border-left: none;    border-right: 1px solid #d9d9d9;    padding-right: 4px;    margin-right: 4px}.mce-checkbox {    cursor: pointer}i.mce-i-checkbox {    margin: 0 3px 0 0;    border: 1px solid #cfd3d6;    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px;    background-color: #fbfbfb;    text-indent: -10em;    *font-size: 0;    *line-height: 0;    *text-indent: 0;    overflow: hidden}.mce-checked i.mce-i-checkbox {    color: #333;    font-size: 16px;    line-height: 16px;    text-indent: 0}.mce-checkbox:focus i.mce-i-checkbox,.mce-checkbox.mce-focus i.mce-i-checkbox {    border: 1px solid #cfd3d6}.mce-checkbox.mce-disabled .mce-label,.mce-checkbox.mce-disabled i.mce-i-checkbox {    color: #afafaf}.mce-checkbox .mce-label {    vertical-align: middle}.mce-rtl .mce-checkbox {    direction: rtl;    text-align: right}.mce-rtl i.mce-i-checkbox {    margin: 0 0 0 3px}.mce-combobox {    display: inline-block;    *display: inline;    *zoom: 1;    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px;    *height: 32px}.mce-combobox input {    border: 1px solid #c5c5c5;    border-right-color: #c5c5c5;    height: 28px}.mce-combobox.mce-disabled input {    color: #b5b5b5}.mce-combobox.mce-has-open input {    -webkit-border-radius: 3px 0 0 3px;    -moz-border-radius: 3px 0 0 3px;    border-radius: 3px 0 0 3px}.mce-combobox .mce-btn {    border: 1px solid #c5c5c5;    border-left: 0;    -webkit-border-radius: 0 3px 3px 0;    -moz-border-radius: 0 3px 3px 0;    border-radius: 0 3px 3px 0}.mce-combobox button {    padding-right: 8px;    padding-left: 8px}.mce-combobox.mce-disabled .mce-btn button {    cursor: default;    opacity: .4;    filter: alpha(opacity=40);    zoom: 1}.mce-colorbox i {    border: 1px solid #c5c5c5;    width: 14px;    height: 14px}.mce-colorbutton .mce-ico {    position: relative}.mce-colorbutton-grid {    margin: 4px}.mce-colorbutton button {    padding-right: 6px;    padding-left: 6px}.mce-colorbutton .mce-preview {    padding-right: 3px;    display: block;    position: absolute;    left: 50%;    top: 50%;    margin-left: -17px;    margin-top: 7px;    background: gray;    width: 13px;    height: 2px;    overflow: hidden}.mce-colorbutton.mce-btn-small .mce-preview {    margin-left: -16px;    padding-right: 0;    width: 16px}.mce-colorbutton .mce-open {    padding-left: 4px;    padding-right: 4px;    border-left: 1px solid transparent}.mce-colorbutton:hover .mce-open {    border-color: #ccc}.mce-colorbutton.mce-btn-small .mce-open {    padding: 0 3px 0 3px}.mce-rtl .mce-colorbutton {    direction: rtl}.mce-rtl .mce-colorbutton .mce-preview {    margin-left: 0;    padding-right: 0;    padding-left: 3px}.mce-rtl .mce-colorbutton.mce-btn-small .mce-preview {    margin-left: 0;    padding-right: 0;    padding-left: 2px}.mce-rtl .mce-colorbutton .mce-open {    padding-left: 4px;    padding-right: 4px;    border-left: 0}.mce-colorpicker {    position: relative;    width: 250px;    height: 220px}.mce-colorpicker-sv {    position: absolute;    top: 0;    left: 0;    width: 90%;    height: 100%;    border: 1px solid #c5c5c5;    cursor: crosshair;    overflow: hidden}.mce-colorpicker-h-chunk {    width: 100%}.mce-colorpicker-overlay1,.mce-colorpicker-overlay2 {    width: 100%;    height: 100%;    position: absolute;    top: 0;    left: 0}.mce-colorpicker-overlay1 {    filter: progid: DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#ffffff', endColorstr='#00ffffff');    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#ffffff', endColorstr='#00ffffff')";    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0))}.mce-colorpicker-overlay2 {    filter: progid: DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#00000000', endColorstr='#000000');    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#00000000', endColorstr='#000000')";    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000)}.mce-colorpicker-selector1 {    background: none;    position: absolute;    width: 12px;    height: 12px;    margin: -8px 0 0 -8px;    border: 1px solid black;    border-radius: 50%}.mce-colorpicker-selector2 {    position: absolute;    width: 10px;    height: 10px;    border: 1px solid white;    border-radius: 50%}.mce-colorpicker-h {    position: absolute;    top: 0;    right: 0;    width: 6.5%;    height: 100%;    border: 1px solid #c5c5c5;    cursor: crosshair}.mce-colorpicker-h-marker {    margin-top: -4px;    position: absolute;    top: 0;    left: -1px;    width: 100%;    border: 1px solid #333;    background: #fff;    height: 4px;    z-index: 100}.mce-path {    display: inline-block;    *display: inline;    *zoom: 1;    padding: 8px;    white-space: normal}.mce-path .mce-txt {    display: inline-block;    padding-right: 3px}.mce-path .mce-path-body {    display: inline-block}.mce-path-item {    display: inline-block;    *display: inline;    *zoom: 1;    cursor: pointer;    color: #454545}.mce-path-item:hover {    text-decoration: underline}.mce-path-item:focus {    background: #666;    color: #fff}.mce-path .mce-divider {    display: inline}.mce-disabled .mce-path-item {    color: #aaa}.mce-rtl .mce-path {    direction: rtl}.mce-fieldset {    border: 0 solid #9E9E9E;    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px}.mce-fieldset>.mce-container-body {    margin-top: -15px}.mce-fieldset-title {    margin-left: 5px;    padding: 0 5px 0 5px}.mce-fit-layout {    display: inline-block;    *display: inline;    *zoom: 1}.mce-fit-layout-item {    position: absolute}.mce-flow-layout-item {    display: inline-block;    *display: inline;    *zoom: 1}.mce-flow-layout-item {    margin: 2px 0 2px 2px}.mce-flow-layout-item.mce-last {    margin-right: 2px}.mce-flow-layout {    white-space: normal}.mce-tinymce-inline .mce-flow-layout {    white-space: nowrap}.mce-rtl .mce-flow-layout {    text-align: right;    direction: rtl}.mce-rtl .mce-flow-layout-item {    margin: 2px 2px 2px 0}.mce-rtl .mce-flow-layout-item.mce-last {    margin-left: 2px}.mce-iframe {    border: 0 solid #cfd3d6;    width: 100%;    height: 100%}.mce-label {    display: inline-block;    *display: inline;    *zoom: 1;    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);    overflow: hidden}.mce-label.mce-autoscroll {    overflow: auto}.mce-label.mce-disabled {    color: #aaa}.mce-label.mce-multiline {    white-space: pre-wrap}.mce-label.mce-error {    color: #a00}.mce-rtl .mce-label {    text-align: right;    direction: rtl}.mce-menubar .mce-menubtn {    border-color: transparent;    background: transparent;    -webkit-border-radius: 0;    -moz-border-radius: 0;    border-radius: 0;    filter: none}.mce-menubar .mce-menubtn button {    color:}.mce-menubar {    border: 1px solid #dee1e2}.mce-menubar .mce-menubtn button span {    color: #454545}.mce-menubar .mce-caret {    border-top-color: #454545}.mce-menubar .mce-menubtn:hover,.mce-menubar .mce-menubtn.mce-active,.mce-menubar .mce-menubtn:focus {    border-color: #ccc;    background: #fff;    filter: none}.mce-menubtn button {    color: #333}.mce-menubtn.mce-btn-small span {    font-size: 12px}.mce-menubtn.mce-fixed-width span {    display: inline-block;    overflow-x: hidden;    text-overflow: ellipsis;    width: 90px}.mce-menubtn.mce-fixed-width.mce-btn-small span {    width: 70px}.mce-menubtn .mce-caret {    *margin-top: 6px}.mce-rtl .mce-menubtn button {    direction: rtl;    text-align: right}.mce-menu-item {    display: block;    padding: 6px 15px 6px 12px;    clear: both;    font-weight: normal;    line-height: 20px;    color: #333;    white-space: nowrap;    cursor: pointer;    line-height: normal;    border-left: 4px solid transparent;    margin-bottom: 1px}.mce-menu-item .mce-ico,.mce-menu-item .mce-text {    color: #333}.mce-menu-item.mce-disabled .mce-text,.mce-menu-item.mce-disabled .mce-ico {    color: #adadad}.mce-menu-item:hover .mce-text,.mce-menu-item.mce-selected .mce-text,.mce-menu-item:focus .mce-text {    color: #333}.mce-menu-item:hover .mce-ico,.mce-menu-item.mce-selected .mce-ico,.mce-menu-item:focus .mce-ico {    color: #333}.mce-menu-item.mce-disabled:hover {    background: #ccc}.mce-menu-shortcut {    display: inline-block;    color: #adadad}.mce-menu-shortcut {    display: inline-block;    *display: inline;    *zoom: 1;    padding: 0 15px 0 20px}.mce-menu-item:hover .mce-menu-shortcut,.mce-menu-item.mce-selected .mce-menu-shortcut,.mce-menu-item:focus .mce-menu-shortcut {    color: #333}.mce-menu-item .mce-caret {    margin-top: 4px;    *margin-top: 3px;    margin-right: 6px;    border-top: 4px solid transparent;    border-bottom: 4px solid transparent;    border-left: 4px solid #333}.mce-menu-item.mce-selected .mce-caret,.mce-menu-item:focus .mce-caret,.mce-menu-item:hover .mce-caret {    border-left-color: #333}.mce-menu-align .mce-menu-shortcut {    *margin-top: -2px}.mce-menu-align .mce-menu-shortcut,.mce-menu-align .mce-caret {    position: absolute;    right: 0}.mce-menu-item.mce-active i {    visibility: visible}.mce-menu-item-normal.mce-active {    background-color: #f5f5f5}.mce-menu-item-preview.mce-active {    border-left: 5px solid #cfd3d6}.mce-menu-item-normal.mce-active .mce-text {    color: #333}.mce-menu-item-normal.mce-active:hover .mce-text,.mce-menu-item-normal.mce-active:hover .mce-ico {    color: #333}.mce-menu-item-normal.mce-active:focus .mce-text,.mce-menu-item-normal.mce-active:focus .mce-ico {    color: #333}.mce-menu-item:hover,.mce-menu-item.mce-selected,.mce-menu-item:focus {    text-decoration: none;    color: #333;    background-color: #f5f5f5}div.mce-menu .mce-menu-item-sep,.mce-menu-item-sep:hover {    border: 0;    padding: 0;    height: 1px;    margin: 9px 1px;    overflow: hidden;    background: #cfd3d6;    border-bottom: 1px solid #fff;    cursor: default;    filter: none}.mce-menu.mce-rtl {    direction: rtl}.mce-rtl .mce-menu-item {    text-align: right;    direction: rtl;    padding: 6px 12px 6px 15px}.mce-menu-align.mce-rtl .mce-menu-shortcut,.mce-menu-align.mce-rtl .mce-caret {    right: auto;    left: 0}.mce-rtl .mce-menu-item .mce-caret {    margin-left: 6px;    margin-right: 0;    border-right: 4px solid #333;    border-left: 0}.mce-rtl .mce-menu-item.mce-selected .mce-caret,.mce-rtl .mce-menu-item:focus .mce-caret,.mce-rtl .mce-menu-item:hover .mce-caret {    border-left-color: transparent;    border-right-color: #333}.mce-menu {    position: absolute;    left: 0;    top: 0;    filter: progid: DXImageTransform.Microsoft.gradient(enabled false);    background: transparent;    z-index: 1000;    padding: 5px 0 5px 0;    margin: -1px 0 0;    min-width: 160px;    background: #fff;    border: 1px solid #a9b1b7;    border: 1px solid #cfd3d6;    z-index: 1002;    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px;    max-height: 400px;    overflow: auto;    overflow-x: hidden}.mce-menu i {    display: none}.mce-menu-has-icons i {    display: inline-block;    *display: inline}.mce-menu-sub-tr-tl {    margin: -6px 0 0 -1px}.mce-menu-sub-br-bl {    margin: 6px 0 0 -1px}.mce-menu-sub-tl-tr {    margin: -6px 0 0 1px}.mce-menu-sub-bl-br {    margin: 6px 0 0 1px}.mce-listbox button {    text-align: left;    padding-right: 20px;    position: relative}.mce-listbox .mce-caret {    position: absolute;    margin-top: -2px;    right: 8px;    top: 50%}.mce-rtl .mce-listbox .mce-caret {    right: auto;    left: 8px}.mce-rtl .mce-listbox button {    padding-right: 10px;    padding-left: 20px}.mce-container-body .mce-resizehandle {    position: absolute;    right: 0;    bottom: 0;    width: 16px;    height: 16px;    visibility: visible;    cursor: s-resize;    margin: 0}.mce-container-body .mce-resizehandle-both {    cursor: se-resize}i.mce-i-resize {    color: #454545}.mce-selectbox {    background: #fff;    border: 1px solid #c5c5c5}.mce-slider {    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px;    border: 1px solid #aaa;    background: #eee;    width: 100px;    height: 10px;    position: relative;    display: block}.mce-slider.mce-vertical {    width: 10px;    height: 100px}.mce-slider-handle {    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px;    border: 1px solid #bbb;    background: #ddd;    display: block;    width: 13px;    height: 13px;    position: absolute;    top: 0;    left: 0;    margin-left: -1px;    margin-top: -2px}.mce-spacer {    visibility: hidden}.mce-splitbtn .mce-open {    border-left: 1px solid transparent}.mce-splitbtn:hover .mce-open {    border-left-color: #ccc}.mce-splitbtn button {    padding-right: 6px;    padding-left: 6px}.mce-splitbtn .mce-open {    padding-right: 4px;    padding-left: 4px}.mce-splitbtn .mce-open.mce-active {    background-color: #e7e7e7;    outline: 1px solid #ccc}.mce-splitbtn.mce-btn-small .mce-open {    padding: 0 3px 0 3px}.mce-rtl .mce-splitbtn {    direction: rtl;    text-align: right}.mce-rtl .mce-splitbtn button {    padding-right: 4px;    padding-left: 4px}.mce-rtl .mce-splitbtn .mce-open {    border-left: 0}.mce-stack-layout-item {    display: block}.mce-tabs {    display: block;    border-bottom: 1px solid #c5c5c5}.mce-tabs,.mce-tabs+.mce-container-body {    background: #fff}.mce-tab {    display: inline-block;    *display: inline;    *zoom: 1;    border: 1px solid #c5c5c5;    border-width: 0 1px 0 0;    background: #e3e3e3;    padding: 8px;    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);    height: 13px;    cursor: pointer}.mce-tab:hover {    background: #fdfdfd}.mce-tab.mce-active {    background: #fdfdfd;    border-bottom-color: transparent;    margin-bottom: -1px;    height: 14px}.mce-rtl .mce-tabs {    text-align: right;    direction: rtl}.mce-rtl .mce-tab {    border-width: 0 0 0 1px}.mce-textbox {    background: #fff;    border: 1px solid #c5c5c5;    -webkit-border-radius: 3px;    -moz-border-radius: 3px;    border-radius: 3px;    display: inline-block;    -webkit-transition: border linear .2s, box-shadow linear .2s;    transition: border linear .2s, box-shadow linear .2s;    height: 28px;    resize: none;    padding: 0 4px 0 4px;    white-space: pre-wrap;    *white-space: pre;    color: #454545}.mce-textbox:focus,.mce-textbox.mce-focus {    border-color: #59a5e1}.mce-placeholder .mce-textbox {    color: #aaa}.mce-textbox.mce-multiline {    padding: 4px;    height: auto}.mce-textbox.mce-disabled {    color: #b5b5b5}.mce-rtl .mce-textbox {    text-align: right;    direction: rtl}.mce-throbber {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    opacity: .6;    filter: alpha(opacity=60);    zoom: 1;    background: #fff url('img/loader.gif') no-repeat center center}.mce-throbber-inline {    position: static;    height: 50px}@font-face {    font-family: 'tinymce';    src: url('fonts/tinymce.eot');    src: url('fonts/tinymce.eot?#iefix') format('embedded-opentype'), url('fonts/tinymce.woff') format('woff'), url('fonts/tinymce.ttf') format('truetype'), url('fonts/tinymce.svg#tinymce') format('svg');    font-weight: normal;    font-style: normal}@font-face {    font-family: 'tinymce-small';    src: url('fonts/tinymce-small.eot');    src: url('fonts/tinymce-small.eot?#iefix') format('embedded-opentype'), url('fonts/tinymce-small.woff') format('woff'), url('fonts/tinymce-small.ttf') format('truetype'), url('fonts/tinymce-small.svg#tinymce') format('svg');    font-weight: normal;    font-style: normal}.mce-ico {    font-family: 'tinymce', Arial;    font-style: normal;    font-weight: normal;    font-variant: normal;    font-size: 16px;    line-height: 20px;    speak: none;    vertical-align: text-top;    -webkit-font-smoothing: antialiased;    -moz-osx-font-smoothing: grayscale;    display: inline-block;    background: transparent center center;    background-size: cover;    width: 16px;    height: 16px;    color: #333}.mce-btn-small .mce-ico {    font-family: 'tinymce-small', Arial}.mce-i-save:before {    content: "\e000"}.mce-i-newdocument:before {    content: "\e001"}.mce-i-fullpage:before {    content: "\e002"}.mce-i-alignleft:before {    content: "\e003"}.mce-i-aligncenter:before {    content: "\e004"}.mce-i-alignright:before {    content: "\e005"}.mce-i-alignjustify:before {    content: "\e006"}.mce-i-alignnone:before {    content: "\e003"}.mce-i-cut:before {    content: "\e007"}.mce-i-paste:before {    content: "\e008"}.mce-i-searchreplace:before {    content: "\e009"}.mce-i-bullist:before {    content: "\e00a"}.mce-i-numlist:before {    content: "\e00b"}.mce-i-indent:before {    content: "\e00c"}.mce-i-outdent:before {    content: "\e00d"}.mce-i-blockquote:before {    content: "\e00e"}.mce-i-undo:before {    content: "\e00f"}.mce-i-redo:before {    content: "\e010"}.mce-i-link:before {    content: "\e011"}.mce-i-unlink:before {    content: "\e012"}.mce-i-anchor:before {    content: "\e013"}.mce-i-image:before {    content: "\e014"}.mce-i-media:before {    content: "\e015"}.mce-i-help:before {    content: "\e016"}.mce-i-code:before {    content: "\e017"}.mce-i-insertdatetime:before {    content: "\e018"}.mce-i-preview:before {    content: "\e019"}.mce-i-forecolor:before {    content: "\e01a"}.mce-i-backcolor:before {    content: "\e01a"}.mce-i-table:before {    content: "\e01b"}.mce-i-hr:before {    content: "\e01c"}.mce-i-removeformat:before {    content: "\e01d"}.mce-i-subscript:before {    content: "\e01e"}.mce-i-superscript:before {    content: "\e01f"}.mce-i-charmap:before {    content: "\e020"}.mce-i-emoticons:before {    content: "\e021"}.mce-i-print:before {    content: "\e022"}.mce-i-fullscreen:before {    content: "\e023"}.mce-i-spellchecker:before {    content: "\e024"}.mce-i-nonbreaking:before {    content: "\e025"}.mce-i-template:before {    content: "\e026"}.mce-i-pagebreak:before {    content: "\e027"}.mce-i-restoredraft:before {    content: "\e028"}.mce-i-untitled:before {    content: "\e029"}.mce-i-bold:before {    content: "\e02a"}.mce-i-italic:before {    content: "\e02b"}.mce-i-underline:before {    content: "\e02c"}.mce-i-strikethrough:before {    content: "\e02d"}.mce-i-visualchars:before {    content: "\e02e"}.mce-i-visualblocks:before {    content: "\e02e"}.mce-i-ltr:before {    content: "\e02f"}.mce-i-rtl:before {    content: "\e030"}.mce-i-copy:before {    content: "\e031"}.mce-i-resize:before {    content: "\e032"}.mce-i-browse:before {    content: "\e034"}.mce-i-pastetext:before {    content: "\e035"}.mce-i-rotateleft:before {    content: "\eaa8"}.mce-i-rotateright:before {    content: "\eaa9"}.mce-i-crop:before {    content: "\ee78"}.mce-i-editimage:before {    content: "\e914"}.mce-i-options:before {    content: "\ec6a"}.mce-i-flipv:before {    content: "\eaaa"}.mce-i-fliph:before {    content: "\eaac"}.mce-i-zoomin:before {    content: "\eb35"}.mce-i-zoomout:before {    content: "\eb36"}.mce-i-sun:before {    content: "\eccc"}.mce-i-moon:before {    content: "\eccd"}.mce-i-arrowleft:before {    content: "\edc0"}.mce-i-arrowright:before {    content: "\edb8"}.mce-i-drop:before {    content: "\e934"}.mce-i-contrast:before {    content: "\ecd4"}.mce-i-sharpen:before {    content: "\eba7"}.mce-i-palette:before {    content: "\e92a"}.mce-i-resize2:before {    content: "\edf9"}.mce-i-orientation:before {    content: "\e601"}.mce-i-invert:before {    content: "\e602"}.mce-i-gamma:before {    content: "\e600"}.mce-i-remove:before {    content: "\ed6a"}.mce-i-tablerowprops:before {    content: "\e604"}.mce-i-tablecellprops:before {    content: "\e605"}.mce-i-table2:before {    content: "\e606"}.mce-i-tablemergecells:before {    content: "\e607"}.mce-i-tableinsertcolbefore:before {    content: "\e608"}.mce-i-tableinsertcolafter:before {    content: "\e609"}.mce-i-tableinsertrowbefore:before {    content: "\e60a"}.mce-i-tableinsertrowafter:before {    content: "\e60b"}.mce-i-tablesplitcells:before {    content: "\e60d"}.mce-i-tabledelete:before {    content: "\e60e"}.mce-i-tableleftheader:before {    content: "\e62a"}.mce-i-tabletopheader:before {    content: "\e62b"}.mce-i-tabledeleterow:before {    content: "\e800"}.mce-i-tabledeletecol:before {    content: "\e801"}.mce-i-codesample:before {    content: "\e603"}.mce-i-checkbox:before,.mce-i-selected:before {    content: "\e033"}.mce-i-selected {    visibility: hidden}i.mce-i-backcolor {    text-shadow: none;    background: #bbb}
 |