
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_88db6d428eb961e277e921a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971954;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_07c7b6814180718ba4880bbf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_421c45c56691beef26c79961.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_da16c23be20ec30971e7fb2b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d8748678be73a8f63e702c83.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c8288fb3752433b9fce1f081.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_513325aba2963e3c1146f7d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_86c86a027fdd7571a3cc5499.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5c9d8023d09619bee9f21bea.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4e141bcf841132019e9a4d09.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.762207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1b2327a81ccb099b14f38aa0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c049e9e128fce670450109f0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-82.800000px;}
.v5{vertical-align:-79.380000px;}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls2d{letter-spacing:-2.016000px;}
.ls23{letter-spacing:-1.134000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.612000px;}
.ls1b{letter-spacing:-0.414600px;}
.ls26{letter-spacing:-0.305400px;}
.ls2c{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.058464px;}
.ls7{letter-spacing:0.060000px;}
.ls2e{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.100140px;}
.ls15{letter-spacing:0.100224px;}
.ls4{letter-spacing:0.100560px;}
.ls29{letter-spacing:0.106560px;}
.ls2a{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.152400px;}
.ls2f{letter-spacing:0.262080px;}
.ls14{letter-spacing:0.298080px;}
.ls6{letter-spacing:0.299400px;}
.ls2{letter-spacing:0.300000px;}
.ls25{letter-spacing:0.305280px;}
.ls19{letter-spacing:0.305400px;}
.ls10{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.399600px;}
.ls3{letter-spacing:0.400200px;}
.lsd{letter-spacing:0.401760px;}
.ls30{letter-spacing:0.457920px;}
.ls11{letter-spacing:0.479520px;}
.lsf{letter-spacing:0.524880px;}
.lsa{letter-spacing:0.602640px;}
.lsb{letter-spacing:0.615600px;}
.lse{letter-spacing:0.680400px;}
.ls16{letter-spacing:0.797040px;}
.ls12{letter-spacing:0.874800px;}
.lsc{letter-spacing:0.920160px;}
.ls17{letter-spacing:1.075680px;}
.ls21{letter-spacing:2.160000px;}
.ls24{letter-spacing:2.880000px;}
.ls20{letter-spacing:3.600000px;}
.ls2b{letter-spacing:5.040000px;}
.ls1d{letter-spacing:5.760000px;}
.ls1c{letter-spacing:6.480000px;}
.ls1f{letter-spacing:7.200000px;}
.ls1e{letter-spacing:7.920000px;}
.ls28{letter-spacing:14.400000px;}
.ls27{letter-spacing:41.040000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-38.160000px;}
.ws10{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.072000px;}
.wse{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.120160px;}
.ws3{word-spacing:-17.074800px;}
.ws8{word-spacing:-16.865400px;}
.ws2{word-spacing:-16.802640px;}
.wsa{word-spacing:-16.712400px;}
.ws12{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.254600px;}
.ws6{word-spacing:-16.200000px;}
.wsb{word-spacing:-15.948000px;}
.ws5{word-spacing:-10.540224px;}
.ws4{word-spacing:-10.498464px;}
.wsd{word-spacing:-10.440000px;}
.ws1{word-spacing:0.000000px;}
._48{margin-left:-2783.516880px;}
._41{margin-left:-2782.339380px;}
._3f{margin-left:-2780.829540px;}
._c1{margin-left:-2779.551360px;}
._a2{margin-left:-2774.894460px;}
._71{margin-left:-2771.946300px;}
._90{margin-left:-2770.598460px;}
._af{margin-left:-2768.846460px;}
._52{margin-left:-2766.408600px;}
._8b{margin-left:-2765.144760px;}
._a8{margin-left:-2763.714300px;}
._a5{margin-left:-2762.654460px;}
._b2{margin-left:-2757.810300px;}
._80{margin-left:-2754.776760px;}
._69{margin-left:-2753.102460px;}
._77{margin-left:-2750.702460px;}
._2b{margin-left:-2748.600720px;}
._1f{margin-left:-2747.063760px;}
._26{margin-left:-2745.719100px;}
._35{margin-left:-2744.444160px;}
._29{margin-left:-2743.269900px;}
._a7{margin-left:-2741.898300px;}
._7b{margin-left:-2740.242300px;}
._61{margin-left:-2736.086400px;}
._97{margin-left:-2733.055500px;}
._81{margin-left:-2731.962300px;}
._e{margin-left:-2729.921040px;}
._8e{margin-left:-2728.028100px;}
._75{margin-left:-2725.419060px;}
._ae{margin-left:-2723.181540px;}
._73{margin-left:-2720.082300px;}
._b4{margin-left:-2715.104760px;}
._95{margin-left:-2712.126900px;}
._c{margin-left:-2711.003580px;}
._79{margin-left:-2708.750460px;}
._88{margin-left:-2706.662460px;}
._62{margin-left:-2701.406460px;}
._c0{margin-left:-2700.205500px;}
._9d{margin-left:-2698.320480px;}
._85{margin-left:-2695.420920px;}
._92{margin-left:-2690.726460px;}
._a4{margin-left:-2688.860160px;}
._6{margin-left:-2684.451840px;}
._9f{margin-left:-2675.512440px;}
._3{margin-left:-2674.364460px;}
._17{margin-left:-2663.732160px;}
._9e{margin-left:-2662.387260px;}
._a6{margin-left:-2658.396600px;}
._16{margin-left:-2657.126460px;}
._60{margin-left:-2654.343360px;}
._a1{margin-left:-2650.026300px;}
._19{margin-left:-2642.619900px;}
._1b{margin-left:-2640.536640px;}
._8d{margin-left:-2636.822460px;}
._b7{margin-left:-2633.952240px;}
._99{margin-left:-2632.050300px;}
._7e{margin-left:-2630.208000px;}
._7d{margin-left:-2628.036600px;}
._8a{margin-left:-2622.090300px;}
._64{margin-left:-2619.596160px;}
._18{margin-left:-2618.544960px;}
._ac{margin-left:-2616.860160px;}
._84{margin-left:-2613.882300px;}
._66{margin-left:-2612.660160px;}
._94{margin-left:-2609.856000px;}
._86{margin-left:-2601.858300px;}
._72{margin-left:-2599.016760px;}
._89{margin-left:-2592.734460px;}
._6a{margin-left:-2586.524160px;}
._b6{margin-left:-2583.930300px;}
._a0{margin-left:-2582.226300px;}
._9b{margin-left:-2576.520060px;}
._21{margin-left:-2573.118960px;}
._83{margin-left:-2571.912000px;}
._6b{margin-left:-2566.814460px;}
._a9{margin-left:-2562.968760px;}
._b5{margin-left:-2554.055220px;}
._91{margin-left:-2552.268600px;}
._aa{margin-left:-2550.830460px;}
._bc{margin-left:-2543.604480px;}
._7a{margin-left:-2524.856760px;}
._76{margin-left:-2520.896760px;}
._6f{margin-left:-2513.584440px;}
._67{margin-left:-2508.438900px;}
._bb{margin-left:-2492.386560px;}
._b1{margin-left:-2489.421180px;}
._6e{margin-left:-2478.036600px;}
._56{margin-left:-2474.925120px;}
._39{margin-left:-2473.310460px;}
._1a{margin-left:-2468.721600px;}
._7{margin-left:-2466.870360px;}
._4b{margin-left:-2464.194240px;}
._36{margin-left:-2461.597500px;}
._13{margin-left:-2457.849840px;}
._15{margin-left:-2446.656060px;}
._14{margin-left:-2438.401980px;}
._6d{margin-left:-2421.138300px;}
._5{margin-left:-2416.899948px;}
._31{margin-left:-2415.398400px;}
._58{margin-left:-2409.281280px;}
._12{margin-left:-2385.394800px;}
._8{margin-left:-2369.427840px;}
._5e{margin-left:-2295.322560px;}
._c3{margin-left:-2273.610240px;}
._43{margin-left:-2166.379200px;}
._5c{margin-left:-2138.823360px;}
._93{margin-left:-2067.888000px;}
._70{margin-left:-2010.072000px;}
._ab{margin-left:-1978.104000px;}
._63{margin-left:-1972.638720px;}
._4{margin-left:-1946.392860px;}
._4d{margin-left:-1912.426560px;}
._9c{margin-left:-1824.024000px;}
._f{margin-left:-1809.201780px;}
._32{margin-left:-1748.185920px;}
._8c{margin-left:-1711.608780px;}
._3a{margin-left:-1676.712960px;}
._4a{margin-left:-1618.796160px;}
._57{margin-left:-1536.128640px;}
._8f{margin-left:-1520.130300px;}
._b0{margin-left:-1487.740920px;}
._49{margin-left:-1441.785600px;}
._9{margin-left:-1434.899400px;}
._9a{margin-left:-1311.252600px;}
._1c{margin-left:-1298.825280px;}
._87{margin-left:-1287.984000px;}
._3c{margin-left:-1273.720320px;}
._98{margin-left:-1258.104000px;}
._7f{margin-left:-1220.088000px;}
._5b{margin-left:-1216.344960px;}
._74{margin-left:-1184.088000px;}
._82{margin-left:-1160.040000px;}
._b8{margin-left:-1156.080000px;}
._96{margin-left:-1152.245700px;}
._45{margin-left:-1146.594240px;}
._47{margin-left:-1113.540480px;}
._5a{margin-left:-1080.288000px;}
._4f{margin-left:-1053.036960px;}
._a3{margin-left:-1008.048000px;}
._33{margin-left:-911.730240px;}
._ad{margin-left:-899.517060px;}
._4c{margin-left:-846.141120px;}
._5f{margin-left:-779.768640px;}
._5d{margin-left:-761.287680px;}
._ba{margin-left:-752.146560px;}
._54{margin-left:-741.150720px;}
._bf{margin-left:-730.460160px;}
._78{margin-left:-708.096000px;}
._c2{margin-left:-661.927680px;}
._6c{margin-left:-660.072000px;}
._b3{margin-left:-636.096000px;}
._38{margin-left:-625.916160px;}
._22{margin-left:-622.272960px;}
._59{margin-left:-595.886400px;}
._34{margin-left:-590.941440px;}
._be{margin-left:-558.990720px;}
._7c{margin-left:-540.120000px;}
._53{margin-left:-511.165440px;}
._3e{margin-left:-505.667520px;}
._bd{margin-left:-475.539840px;}
._11{margin-left:-465.912000px;}
._46{margin-left:-447.018720px;}
._44{margin-left:-317.664000px;}
._37{margin-left:-281.520000px;}
._c4{margin-left:-234.144000px;}
._3d{margin-left:-232.704000px;}
._10{margin-left:-196.199700px;}
._1{margin-left:-17.405760px;}
._0{margin-left:-1.203840px;}
._2{width:1.366140px;}
._2a{width:2.841720px;}
._28{width:3.924900px;}
._27{width:5.030100px;}
._24{width:6.457260px;}
._b{width:7.480260px;}
._a{width:8.553600px;}
._23{width:10.274880px;}
._40{width:11.592000px;}
._42{width:13.151040px;}
._d{width:15.108480px;}
._20{width:17.631360px;}
._25{width:18.760260px;}
._4e{width:20.136000px;}
._2d{width:21.466560px;}
._2c{width:22.654080px;}
._3b{width:24.243840px;}
._2e{width:25.701120px;}
._2f{width:26.760960px;}
._50{width:28.844160px;}
._51{width:30.945600px;}
._1d{width:38.660160px;}
._1e{width:39.804960px;}
._55{width:40.853760px;}
._30{width:53.003520px;}
._68{width:90.144000px;}
._b9{width:175.104000px;}
._65{width:306.120000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(51,102,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:63.360000px;}
.fs2{font-size:64.800000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:3.960000px;}
.y45{bottom:4.500000px;}
.y2e{bottom:7.402500px;}
.yf1{bottom:14.760000px;}
.yf3{bottom:14.940000px;}
.y2f{bottom:18.000000px;}
.y112{bottom:19.980000px;}
.y114{bottom:22.680000px;}
.y11b{bottom:22.860000px;}
.y116{bottom:23.040000px;}
.y10e{bottom:23.400000px;}
.yee{bottom:25.200000px;}
.y10f{bottom:30.960000px;}
.y2d{bottom:31.102500px;}
.y110{bottom:31.680000px;}
.yf0{bottom:35.460000px;}
.y10c{bottom:38.880000px;}
.y10b{bottom:39.240000px;}
.y111{bottom:43.380000px;}
.yef{bottom:45.900000px;}
.y10d{bottom:54.360000px;}
.yb8{bottom:111.996000px;}
.y84{bottom:120.996000px;}
.ye7{bottom:121.176000px;}
.ya7{bottom:138.996000px;}
.y73{bottom:146.016000px;}
.y83{bottom:158.970000px;}
.ye6{bottom:159.150000px;}
.yc3{bottom:176.610000px;}
.ya6{bottom:176.970000px;}
.y97{bottom:178.770000px;}
.y72{bottom:183.990000px;}
.ye5{bottom:195.690000px;}
.yb7{bottom:196.770000px;}
.y82{bottom:205.770000px;}
.ya5{bottom:214.770000px;}
.y96{bottom:216.750000px;}
.y71{bottom:221.970000px;}
.yc2{bottom:223.770000px;}
.yb6{bottom:234.750000px;}
.y81{bottom:252.750000px;}
.y95{bottom:254.730000px;}
.ye4{bottom:258.510000px;}
.y70{bottom:259.770000px;}
.yc1{bottom:270.750000px;}
.yb5{bottom:272.730000px;}
.ya4{bottom:290.775000px;}
.ye3{bottom:296.535000px;}
.y6f{bottom:297.795000px;}
.y80{bottom:299.775000px;}
.y94{bottom:301.755000px;}
.yc0{bottom:308.775000px;}
.yb4{bottom:310.755000px;}
.ya3{bottom:328.755000px;}
.ye2{bottom:334.155000px;}
.y6e{bottom:335.775000px;}
.y7f{bottom:337.755000px;}
.y2c{bottom:339.831000px;}
.ybf{bottom:346.755000px;}
.y93{bottom:348.735000px;}
.y6d{bottom:373.755000px;}
.y7e{bottom:375.735000px;}
.ye1{bottom:381.135000px;}
.ybe{bottom:384.735000px;}
.yb3{bottom:386.535000px;}
.y2b{bottom:391.890000px;}
.y92{bottom:395.535000px;}
.y2a{bottom:409.710000px;}
.y58{bottom:410.115000px;}
.y6c{bottom:411.735000px;}
.y7d{bottom:413.535000px;}
.ya2{bottom:422.535000px;}
.yb2{bottom:424.515000px;}
.y29{bottom:427.530000px;}
.ye0{bottom:428.295000px;}
.y91{bottom:433.515000px;}
.y28{bottom:445.395000px;}
.y6b{bottom:449.535000px;}
.y7c{bottom:451.515000px;}
.y57{bottom:457.095000px;}
.ybd{bottom:460.515000px;}
.yb1{bottom:462.495000px;}
.y27{bottom:463.215000px;}
.ydf{bottom:466.275000px;}
.ya1{bottom:469.515000px;}
.y90{bottom:471.495000px;}
.y26{bottom:481.215000px;}
.y6a{bottom:487.515000px;}
.y7b{bottom:489.495000px;}
.y56{bottom:495.075000px;}
.ybc{bottom:498.495000px;}
.y25{bottom:499.035000px;}
.y42{bottom:500.160000px;}
.yb0{bottom:500.475000px;}
.yde{bottom:504.255000px;}
.ya0{bottom:507.495000px;}
.y8f{bottom:509.475000px;}
.y24{bottom:516.855000px;}
.y69{bottom:525.495000px;}
.y55{bottom:533.055000px;}
.y23{bottom:534.675000px;}
.y7a{bottom:536.475000px;}
.y41{bottom:538.320000px;}
.yaf{bottom:538.455000px;}
.y9f{bottom:545.475000px;}
.y8e{bottom:547.455000px;}
.ydd{bottom:551.235000px;}
.y22{bottom:552.495000px;}
.y68{bottom:563.505000px;}
.y21{bottom:570.315000px;}
.ybb{bottom:574.485000px;}
.y40{bottom:576.120000px;}
.yae{bottom:576.465000px;}
.y54{bottom:580.065000px;}
.y79{bottom:583.125000px;}
.y9e{bottom:583.485000px;}
.y8d{bottom:585.465000px;}
.y20{bottom:588.135000px;}
.ydc{bottom:589.245000px;}
.y102{bottom:601.305000px;}
.y67{bottom:601.485000px;}
.y1f{bottom:605.955000px;}
.yba{bottom:612.465000px;}
.y3f{bottom:614.280000px;}
.y9d{bottom:621.465000px;}
.y103{bottom:622.005000px;}
.yad{bottom:623.265000px;}
.y1e{bottom:623.775000px;}
.y53{bottom:626.865000px;}
.ydb{bottom:627.225000px;}
.y124{bottom:629.205000px;}
.y78{bottom:630.465000px;}
.y8c{bottom:632.265000px;}
.y66{bottom:639.465000px;}
.y1d{bottom:641.775000px;}
.y100{bottom:643.425000px;}
.ycd{bottom:648.465000px;}
.y3e{bottom:652.080000px;}
.y9c{bottom:659.265000px;}
.y1c{bottom:659.595000px;}
.yac{bottom:661.245000px;}
.y101{bottom:664.125000px;}
.yda{bottom:665.025000px;}
.y123{bottom:668.265000px;}
.y52{bottom:673.845000px;}
.y65{bottom:677.265000px;}
.y1b{bottom:677.445000px;}
.y8b{bottom:678.885000px;}
.yff{bottom:685.545000px;}
.ycc{bottom:686.265000px;}
.y3d{bottom:690.240000px;}
.y10a{bottom:693.285000px;}
.y1a{bottom:695.265000px;}
.y9b{bottom:697.245000px;}
.yb9{bottom:706.245000px;}
.yab{bottom:707.865000px;}
.y51{bottom:711.825000px;}
.yd9{bottom:712.005000px;}
.y19{bottom:713.085000px;}
.y122{bottom:714.885000px;}
.y64{bottom:715.245000px;}
.y11f{bottom:715.605000px;}
.ycb{bottom:724.245000px;}
.y8a{bottom:726.225000px;}
.yfd{bottom:727.665000px;}
.y3c{bottom:728.040000px;}
.y18{bottom:730.905000px;}
.y109{bottom:731.265000px;}
.y9a{bottom:735.225000px;}
.yfe{bottom:748.365000px;}
.y17{bottom:748.725000px;}
.y50{bottom:749.805000px;}
.yd8{bottom:749.985000px;}
.y63{bottom:753.225000px;}
.y11e{bottom:753.945000px;}
.yaa{bottom:754.845000px;}
.yca{bottom:762.225000px;}
.y3b{bottom:765.840000px;}
.y16{bottom:766.545000px;}
.y108{bottom:769.245000px;}
.yfb{bottom:769.965000px;}
.y11d{bottom:772.305000px;}
.y89{bottom:773.205000px;}
.y15{bottom:784.545000px;}
.y4f{bottom:787.785000px;}
.yd7{bottom:787.965000px;}
.yfc{bottom:790.665000px;}
.y62{bottom:791.205000px;}
.yeb{bottom:792.825000px;}
.yc9{bottom:800.205000px;}
.ya9{bottom:802.185000px;}
.y14{bottom:802.365000px;}
.y107{bottom:807.585000px;}
.y11c{bottom:810.285000px;}
.y88{bottom:811.185000px;}
.yf9{bottom:812.085000px;}
.y3a{bottom:813.000000px;}
.y13{bottom:820.185000px;}
.y4e{bottom:825.585000px;}
.yd6{bottom:825.945000px;}
.y61{bottom:829.185000px;}
.yfa{bottom:832.785000px;}
.y12{bottom:838.005000px;}
.yc8{bottom:838.185000px;}
.y106{bottom:845.430000px;}
.y11a{bottom:848.310000px;}
.y87{bottom:849.030000px;}
.yf7{bottom:854.250000px;}
.y11{bottom:855.825000px;}
.y39{bottom:859.800000px;}
.y4d{bottom:863.610000px;}
.yd5{bottom:863.790000px;}
.y60{bottom:867.030000px;}
.y10{bottom:873.645000px;}
.yf8{bottom:874.950000px;}
.y121{bottom:875.670000px;}
.yc7{bottom:876.030000px;}
.y128{bottom:882.000000px;}
.y105{bottom:883.410000px;}
.y119{bottom:886.110000px;}
.y86{bottom:887.010000px;}
.yf{bottom:891.465000px;}
.yf5{bottom:896.370000px;}
.y127{bottom:900.000000px;}
.y4c{bottom:901.590000px;}
.yd4{bottom:901.770000px;}
.y5f{bottom:905.010000px;}
.ye{bottom:909.285000px;}
.yc6{bottom:914.010000px;}
.y38{bottom:914.520000px;}
.yf6{bottom:917.070000px;}
.y104{bottom:921.390000px;}
.y118{bottom:924.090000px;}
.y99{bottom:924.990000px;}
.yd{bottom:927.330000px;}
.y85{bottom:933.990000px;}
.yf2{bottom:938.490000px;}
.y4b{bottom:939.570000px;}
.yd3{bottom:939.750000px;}
.y5e{bottom:942.990000px;}
.yc{bottom:945.150000px;}
.yc5{bottom:951.990000px;}
.y37{bottom:953.760000px;}
.yf4{bottom:959.190000px;}
.y117{bottom:962.070000px;}
.yb{bottom:962.970000px;}
.ya8{bottom:971.970000px;}
.y4a{bottom:977.550000px;}
.yd2{bottom:979.890000px;}
.ya{bottom:980.790000px;}
.y5d{bottom:980.970000px;}
.yed{bottom:983.310000px;}
.yc4{bottom:989.970000px;}
.y9{bottom:998.610000px;}
.ye9{bottom:998.970000px;}
.y36{bottom:999.120000px;}
.y115{bottom:1000.050000px;}
.y98{bottom:1009.950000px;}
.y49{bottom:1015.530000px;}
.y8{bottom:1016.430000px;}
.y5c{bottom:1018.950000px;}
.yd1{bottom:1021.290000px;}
.y77{bottom:1027.950000px;}
.y7{bottom:1034.250000px;}
.y35{bottom:1038.720000px;}
.y113{bottom:1039.470000px;}
.y6{bottom:1052.070000px;}
.y48{bottom:1053.330000px;}
.y5b{bottom:1056.930000px;}
.yd0{bottom:1062.690000px;}
.yec{bottom:1065.570000px;}
.y76{bottom:1065.930000px;}
.y5{bottom:1070.070000px;}
.y34{bottom:1085.520000px;}
.y4{bottom:1087.890000px;}
.y47{bottom:1091.310000px;}
.y5a{bottom:1094.730000px;}
.ycf{bottom:1101.930000px;}
.ye8{bottom:1102.470000px;}
.y120{bottom:1103.370000px;}
.y75{bottom:1103.730000px;}
.y3{bottom:1105.710000px;}
.y2{bottom:1123.530000px;}
.y33{bottom:1123.680000px;}
.y46{bottom:1140.120000px;}
.yea{bottom:1140.480000px;}
.yce{bottom:1141.200000px;}
.y1{bottom:1141.350000px;}
.y59{bottom:1141.380000px;}
.y74{bottom:1141.740000px;}
.y126{bottom:1152.000000px;}
.y125{bottom:1170.000000px;}
.y30{bottom:1175.160000px;}
.y44{bottom:1189.080000px;}
.y31{bottom:1189.200000px;}
.y43{bottom:1193.760000px;}
.h7{height:20.519985px;}
.hc{height:20.700000px;}
.h11{height:20.736000px;}
.h9{height:36.641953px;}
.h18{height:37.800000px;}
.h15{height:37.980000px;}
.h19{height:38.016000px;}
.hf{height:41.400000px;}
.h10{height:41.436000px;}
.h3{height:45.315000px;}
.h2{height:49.641152px;}
.h14{height:52.998047px;}
.h13{height:55.620000px;}
.he{height:62.100000px;}
.h1b{height:62.578125px;}
.h6{height:63.175781px;}
.h17{height:65.010937px;}
.h16{height:66.757500px;}
.h8{height:66.881953px;}
.hb{height:70.664062px;}
.h12{height:71.100000px;}
.h4{height:72.421875px;}
.hd{height:72.562500px;}
.h1c{height:918.000000px;}
.h1a{height:1188.000000px;}
.h5{height:1227.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.ha{height:1263.060000px;}
.w5{width:9.000000px;}
.w7{width:9.180000px;}
.w8{width:18.180000px;}
.w16{width:60.300000px;}
.w14{width:61.380000px;}
.w17{width:61.920000px;}
.w15{width:63.756000px;}
.w13{width:79.200000px;}
.w12{width:79.236000px;}
.w11{width:79.380000px;}
.wd{width:82.656000px;}
.we{width:85.140000px;}
.wf{width:85.176000px;}
.w9{width:93.096000px;}
.wc{width:93.600000px;}
.w10{width:98.856000px;}
.wb{width:127.656000px;}
.w18{width:215.850000px;}
.w19{width:216.030000px;}
.w1a{width:216.075000px;}
.wa{width:265.890000px;}
.w2{width:715.357500px;}
.w4{width:856.500000px;}
.w6{width:892.440000px;}
.w3{width:892.500000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w1b{width:918.000000px;}
.w1c{width:1188.000000px;}
.x0{left:0.000000px;}
.x1e{left:8.100000px;}
.x1c{left:10.800000px;}
.x26{left:12.420000px;}
.x2d{left:13.500000px;}
.x1d{left:15.480000px;}
.x3{left:18.000000px;}
.x19{left:20.880000px;}
.x23{left:24.480000px;}
.x18{left:26.280000px;}
.x14{left:27.540000px;}
.x30{left:28.620000px;}
.x22{left:30.600000px;}
.x20{left:33.300000px;}
.x21{left:37.800000px;}
.x24{left:41.256000px;}
.x1a{left:48.240000px;}
.x1f{left:54.720000px;}
.x34{left:56.925000px;}
.x32{left:59.400000px;}
.xd{left:64.440000px;}
.x12{left:73.620000px;}
.xf{left:82.656000px;}
.x2{left:93.493500px;}
.x35{left:97.410000px;}
.x1{left:100.116000px;}
.x36{left:103.905000px;}
.x16{left:104.940000px;}
.x4{left:109.439925px;}
.x9{left:116.280765px;}
.x6{left:118.562625px;}
.xe{left:127.656000px;}
.x10{left:148.896000px;}
.x13{left:154.650000px;}
.x25{left:156.090000px;}
.xa{left:174.274350px;}
.x8{left:182.566350px;}
.xb{left:194.538150px;}
.x27{left:241.230000px;}
.x15{left:247.755000px;}
.x7{left:300.235800px;}
.x28{left:326.415000px;}
.x31{left:335.415000px;}
.x29{left:425.265000px;}
.xc{left:428.114850px;}
.x2a{left:504.645000px;}
.x17{left:513.645000px;}
.x33{left:551.445000px;}
.x2b{left:583.890000px;}
.x1b{left:641.310000px;}
.x2c{left:663.090000px;}
.x2e{left:724.470000px;}
.x11{left:747.000000px;}
.x5{left:756.000000px;}
.x2f{left:788.220000px;}
@media print{
.v4{vertical-align:-73.600000pt;}
.v5{vertical-align:-70.560000pt;}
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls2d{letter-spacing:-1.792000pt;}
.ls23{letter-spacing:-1.008000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.544000pt;}
.ls1b{letter-spacing:-0.368533pt;}
.ls26{letter-spacing:-0.271467pt;}
.ls2c{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.051968pt;}
.ls7{letter-spacing:0.053333pt;}
.ls2e{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.089013pt;}
.ls15{letter-spacing:0.089088pt;}
.ls4{letter-spacing:0.089387pt;}
.ls29{letter-spacing:0.094720pt;}
.ls2a{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.135467pt;}
.ls2f{letter-spacing:0.232960pt;}
.ls14{letter-spacing:0.264960pt;}
.ls6{letter-spacing:0.266133pt;}
.ls2{letter-spacing:0.266667pt;}
.ls25{letter-spacing:0.271360pt;}
.ls19{letter-spacing:0.271467pt;}
.ls10{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.355200pt;}
.ls3{letter-spacing:0.355733pt;}
.lsd{letter-spacing:0.357120pt;}
.ls30{letter-spacing:0.407040pt;}
.ls11{letter-spacing:0.426240pt;}
.lsf{letter-spacing:0.466560pt;}
.lsa{letter-spacing:0.535680pt;}
.lsb{letter-spacing:0.547200pt;}
.lse{letter-spacing:0.604800pt;}
.ls16{letter-spacing:0.708480pt;}
.ls12{letter-spacing:0.777600pt;}
.lsc{letter-spacing:0.817920pt;}
.ls17{letter-spacing:0.956160pt;}
.ls21{letter-spacing:1.920000pt;}
.ls24{letter-spacing:2.560000pt;}
.ls20{letter-spacing:3.200000pt;}
.ls2b{letter-spacing:4.480000pt;}
.ls1d{letter-spacing:5.120000pt;}
.ls1c{letter-spacing:5.760000pt;}
.ls1f{letter-spacing:6.400000pt;}
.ls1e{letter-spacing:7.040000pt;}
.ls28{letter-spacing:12.800000pt;}
.ls27{letter-spacing:36.480000pt;}
.ws0{word-spacing:-33.920000pt;}
.ws10{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.064000pt;}
.wse{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.217920pt;}
.ws3{word-spacing:-15.177600pt;}
.ws8{word-spacing:-14.991467pt;}
.ws2{word-spacing:-14.935680pt;}
.wsa{word-spacing:-14.855467pt;}
.ws12{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.448533pt;}
.ws6{word-spacing:-14.400000pt;}
.wsb{word-spacing:-14.176000pt;}
.ws5{word-spacing:-9.369088pt;}
.ws4{word-spacing:-9.331968pt;}
.wsd{word-spacing:-9.280000pt;}
.ws1{word-spacing:0.000000pt;}
._48{margin-left:-2474.237227pt;}
._41{margin-left:-2473.190560pt;}
._3f{margin-left:-2471.848480pt;}
._c1{margin-left:-2470.712320pt;}
._a2{margin-left:-2466.572853pt;}
._71{margin-left:-2463.952267pt;}
._90{margin-left:-2462.754187pt;}
._af{margin-left:-2461.196853pt;}
._52{margin-left:-2459.029867pt;}
._8b{margin-left:-2457.906453pt;}
._a8{margin-left:-2456.634933pt;}
._a5{margin-left:-2455.692853pt;}
._b2{margin-left:-2451.386933pt;}
._80{margin-left:-2448.690453pt;}
._69{margin-left:-2447.202187pt;}
._77{margin-left:-2445.068853pt;}
._2b{margin-left:-2443.200640pt;}
._1f{margin-left:-2441.834453pt;}
._26{margin-left:-2440.639200pt;}
._35{margin-left:-2439.505920pt;}
._29{margin-left:-2438.462133pt;}
._a7{margin-left:-2437.242933pt;}
._7b{margin-left:-2435.770933pt;}
._61{margin-left:-2432.076800pt;}
._97{margin-left:-2429.382667pt;}
._81{margin-left:-2428.410933pt;}
._e{margin-left:-2426.596480pt;}
._8e{margin-left:-2424.913867pt;}
._75{margin-left:-2422.594720pt;}
._ae{margin-left:-2420.605813pt;}
._73{margin-left:-2417.850933pt;}
._b4{margin-left:-2413.426453pt;}
._95{margin-left:-2410.779467pt;}
._c{margin-left:-2409.780960pt;}
._79{margin-left:-2407.778187pt;}
._88{margin-left:-2405.922187pt;}
._62{margin-left:-2401.250187pt;}
._c0{margin-left:-2400.182667pt;}
._9d{margin-left:-2398.507093pt;}
._85{margin-left:-2395.929707pt;}
._92{margin-left:-2391.756853pt;}
._a4{margin-left:-2390.097920pt;}
._6{margin-left:-2386.179413pt;}
._9f{margin-left:-2378.233280pt;}
._3{margin-left:-2377.212853pt;}
._17{margin-left:-2367.761920pt;}
._9e{margin-left:-2366.566453pt;}
._a6{margin-left:-2363.019200pt;}
._16{margin-left:-2361.890187pt;}
._60{margin-left:-2359.416320pt;}
._a1{margin-left:-2355.578933pt;}
._19{margin-left:-2348.995467pt;}
._1b{margin-left:-2347.143680pt;}
._8d{margin-left:-2343.842187pt;}
._b7{margin-left:-2341.290880pt;}
._99{margin-left:-2339.600267pt;}
._7e{margin-left:-2337.962667pt;}
._7d{margin-left:-2336.032533pt;}
._8a{margin-left:-2330.746933pt;}
._64{margin-left:-2328.529920pt;}
._18{margin-left:-2327.595520pt;}
._ac{margin-left:-2326.097920pt;}
._84{margin-left:-2323.450933pt;}
._66{margin-left:-2322.364587pt;}
._94{margin-left:-2319.872000pt;}
._86{margin-left:-2312.762933pt;}
._72{margin-left:-2310.237120pt;}
._89{margin-left:-2304.652853pt;}
._6a{margin-left:-2299.132587pt;}
._b6{margin-left:-2296.826933pt;}
._a0{margin-left:-2295.312267pt;}
._9b{margin-left:-2290.240053pt;}
._21{margin-left:-2287.216853pt;}
._83{margin-left:-2286.144000pt;}
._6b{margin-left:-2281.612853pt;}
._a9{margin-left:-2278.194453pt;}
._b5{margin-left:-2270.271307pt;}
._91{margin-left:-2268.683200pt;}
._aa{margin-left:-2267.404853pt;}
._bc{margin-left:-2260.981760pt;}
._7a{margin-left:-2244.317120pt;}
._76{margin-left:-2240.797120pt;}
._6f{margin-left:-2234.297280pt;}
._67{margin-left:-2229.723467pt;}
._bb{margin-left:-2215.454720pt;}
._b1{margin-left:-2212.818827pt;}
._6e{margin-left:-2202.699200pt;}
._56{margin-left:-2199.933440pt;}
._39{margin-left:-2198.498187pt;}
._1a{margin-left:-2194.419200pt;}
._7{margin-left:-2192.773653pt;}
._4b{margin-left:-2190.394880pt;}
._36{margin-left:-2188.086667pt;}
._13{margin-left:-2184.755413pt;}
._15{margin-left:-2174.805387pt;}
._14{margin-left:-2167.468427pt;}
._6d{margin-left:-2152.122933pt;}
._5{margin-left:-2148.355509pt;}
._31{margin-left:-2147.020800pt;}
._58{margin-left:-2141.583360pt;}
._12{margin-left:-2120.350933pt;}
._8{margin-left:-2106.158080pt;}
._5e{margin-left:-2040.286720pt;}
._c3{margin-left:-2020.986880pt;}
._43{margin-left:-1925.670400pt;}
._5c{margin-left:-1901.176320pt;}
._93{margin-left:-1838.122667pt;}
._70{margin-left:-1786.730667pt;}
._ab{margin-left:-1758.314667pt;}
._63{margin-left:-1753.456640pt;}
._4{margin-left:-1730.126987pt;}
._4d{margin-left:-1699.934720pt;}
._9c{margin-left:-1621.354667pt;}
._f{margin-left:-1608.179360pt;}
._32{margin-left:-1553.943040pt;}
._8c{margin-left:-1521.430027pt;}
._3a{margin-left:-1490.411520pt;}
._4a{margin-left:-1438.929920pt;}
._57{margin-left:-1365.447680pt;}
._8f{margin-left:-1351.226933pt;}
._b0{margin-left:-1322.436373pt;}
._49{margin-left:-1281.587200pt;}
._9{margin-left:-1275.466133pt;}
._9a{margin-left:-1165.557867pt;}
._1c{margin-left:-1154.511360pt;}
._87{margin-left:-1144.874667pt;}
._3c{margin-left:-1132.195840pt;}
._98{margin-left:-1118.314667pt;}
._7f{margin-left:-1084.522667pt;}
._5b{margin-left:-1081.195520pt;}
._74{margin-left:-1052.522667pt;}
._82{margin-left:-1031.146667pt;}
._b8{margin-left:-1027.626667pt;}
._96{margin-left:-1024.218400pt;}
._45{margin-left:-1019.194880pt;}
._47{margin-left:-989.813760pt;}
._5a{margin-left:-960.256000pt;}
._4f{margin-left:-936.032853pt;}
._a3{margin-left:-896.042667pt;}
._33{margin-left:-810.426880pt;}
._ad{margin-left:-799.570720pt;}
._4c{margin-left:-752.125440pt;}
._5f{margin-left:-693.127680pt;}
._5d{margin-left:-676.700160pt;}
._ba{margin-left:-668.574720pt;}
._54{margin-left:-658.800640pt;}
._bf{margin-left:-649.297920pt;}
._78{margin-left:-629.418667pt;}
._c2{margin-left:-588.380160pt;}
._6c{margin-left:-586.730667pt;}
._b3{margin-left:-565.418667pt;}
._38{margin-left:-556.369920pt;}
._22{margin-left:-553.131520pt;}
._59{margin-left:-529.676800pt;}
._34{margin-left:-525.281280pt;}
._be{margin-left:-496.880640pt;}
._7c{margin-left:-480.106667pt;}
._53{margin-left:-454.369280pt;}
._3e{margin-left:-449.482240pt;}
._bd{margin-left:-422.702080pt;}
._11{margin-left:-414.144000pt;}
._46{margin-left:-397.349973pt;}
._44{margin-left:-282.368000pt;}
._37{margin-left:-250.240000pt;}
._c4{margin-left:-208.128000pt;}
._3d{margin-left:-206.848000pt;}
._10{margin-left:-174.399733pt;}
._1{margin-left:-15.471787pt;}
._0{margin-left:-1.070080pt;}
._2{width:1.214347pt;}
._2a{width:2.525973pt;}
._28{width:3.488800pt;}
._27{width:4.471200pt;}
._24{width:5.739787pt;}
._b{width:6.649120pt;}
._a{width:7.603200pt;}
._23{width:9.133227pt;}
._40{width:10.304000pt;}
._42{width:11.689813pt;}
._d{width:13.429760pt;}
._20{width:15.672320pt;}
._25{width:16.675787pt;}
._4e{width:17.898667pt;}
._2d{width:19.081387pt;}
._2c{width:20.136960pt;}
._3b{width:21.550080pt;}
._2e{width:22.845440pt;}
._2f{width:23.787520pt;}
._50{width:25.639253pt;}
._51{width:27.507200pt;}
._1d{width:34.364587pt;}
._1e{width:35.382187pt;}
._55{width:36.314453pt;}
._30{width:47.114240pt;}
._68{width:80.128000pt;}
._b9{width:155.648000pt;}
._65{width:272.106667pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:56.320000pt;}
.fs2{font-size:57.600000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:3.520000pt;}
.y45{bottom:4.000000pt;}
.y2e{bottom:6.580000pt;}
.yf1{bottom:13.120000pt;}
.yf3{bottom:13.280000pt;}
.y2f{bottom:16.000000pt;}
.y112{bottom:17.760000pt;}
.y114{bottom:20.160000pt;}
.y11b{bottom:20.320000pt;}
.y116{bottom:20.480000pt;}
.y10e{bottom:20.800000pt;}
.yee{bottom:22.400000pt;}
.y10f{bottom:27.520000pt;}
.y2d{bottom:27.646667pt;}
.y110{bottom:28.160000pt;}
.yf0{bottom:31.520000pt;}
.y10c{bottom:34.560000pt;}
.y10b{bottom:34.880000pt;}
.y111{bottom:38.560000pt;}
.yef{bottom:40.800000pt;}
.y10d{bottom:48.320000pt;}
.yb8{bottom:99.552000pt;}
.y84{bottom:107.552000pt;}
.ye7{bottom:107.712000pt;}
.ya7{bottom:123.552000pt;}
.y73{bottom:129.792000pt;}
.y83{bottom:141.306667pt;}
.ye6{bottom:141.466667pt;}
.yc3{bottom:156.986667pt;}
.ya6{bottom:157.306667pt;}
.y97{bottom:158.906667pt;}
.y72{bottom:163.546667pt;}
.ye5{bottom:173.946667pt;}
.yb7{bottom:174.906667pt;}
.y82{bottom:182.906667pt;}
.ya5{bottom:190.906667pt;}
.y96{bottom:192.666667pt;}
.y71{bottom:197.306667pt;}
.yc2{bottom:198.906667pt;}
.yb6{bottom:208.666667pt;}
.y81{bottom:224.666667pt;}
.y95{bottom:226.426667pt;}
.ye4{bottom:229.786667pt;}
.y70{bottom:230.906667pt;}
.yc1{bottom:240.666667pt;}
.yb5{bottom:242.426667pt;}
.ya4{bottom:258.466667pt;}
.ye3{bottom:263.586667pt;}
.y6f{bottom:264.706667pt;}
.y80{bottom:266.466667pt;}
.y94{bottom:268.226667pt;}
.yc0{bottom:274.466667pt;}
.yb4{bottom:276.226667pt;}
.ya3{bottom:292.226667pt;}
.ye2{bottom:297.026667pt;}
.y6e{bottom:298.466667pt;}
.y7f{bottom:300.226667pt;}
.y2c{bottom:302.072000pt;}
.ybf{bottom:308.226667pt;}
.y93{bottom:309.986667pt;}
.y6d{bottom:332.226667pt;}
.y7e{bottom:333.986667pt;}
.ye1{bottom:338.786667pt;}
.ybe{bottom:341.986667pt;}
.yb3{bottom:343.586667pt;}
.y2b{bottom:348.346667pt;}
.y92{bottom:351.586667pt;}
.y2a{bottom:364.186667pt;}
.y58{bottom:364.546667pt;}
.y6c{bottom:365.986667pt;}
.y7d{bottom:367.586667pt;}
.ya2{bottom:375.586667pt;}
.yb2{bottom:377.346667pt;}
.y29{bottom:380.026667pt;}
.ye0{bottom:380.706667pt;}
.y91{bottom:385.346667pt;}
.y28{bottom:395.906667pt;}
.y6b{bottom:399.586667pt;}
.y7c{bottom:401.346667pt;}
.y57{bottom:406.306667pt;}
.ybd{bottom:409.346667pt;}
.yb1{bottom:411.106667pt;}
.y27{bottom:411.746667pt;}
.ydf{bottom:414.466667pt;}
.ya1{bottom:417.346667pt;}
.y90{bottom:419.106667pt;}
.y26{bottom:427.746667pt;}
.y6a{bottom:433.346667pt;}
.y7b{bottom:435.106667pt;}
.y56{bottom:440.066667pt;}
.ybc{bottom:443.106667pt;}
.y25{bottom:443.586667pt;}
.y42{bottom:444.586667pt;}
.yb0{bottom:444.866667pt;}
.yde{bottom:448.226667pt;}
.ya0{bottom:451.106667pt;}
.y8f{bottom:452.866667pt;}
.y24{bottom:459.426667pt;}
.y69{bottom:467.106667pt;}
.y55{bottom:473.826667pt;}
.y23{bottom:475.266667pt;}
.y7a{bottom:476.866667pt;}
.y41{bottom:478.506667pt;}
.yaf{bottom:478.626667pt;}
.y9f{bottom:484.866667pt;}
.y8e{bottom:486.626667pt;}
.ydd{bottom:489.986667pt;}
.y22{bottom:491.106667pt;}
.y68{bottom:500.893333pt;}
.y21{bottom:506.946667pt;}
.ybb{bottom:510.653333pt;}
.y40{bottom:512.106667pt;}
.yae{bottom:512.413333pt;}
.y54{bottom:515.613333pt;}
.y79{bottom:518.333333pt;}
.y9e{bottom:518.653333pt;}
.y8d{bottom:520.413333pt;}
.y20{bottom:522.786667pt;}
.ydc{bottom:523.773333pt;}
.y102{bottom:534.493333pt;}
.y67{bottom:534.653333pt;}
.y1f{bottom:538.626667pt;}
.yba{bottom:544.413333pt;}
.y3f{bottom:546.026667pt;}
.y9d{bottom:552.413333pt;}
.y103{bottom:552.893333pt;}
.yad{bottom:554.013333pt;}
.y1e{bottom:554.466667pt;}
.y53{bottom:557.213333pt;}
.ydb{bottom:557.533333pt;}
.y124{bottom:559.293333pt;}
.y78{bottom:560.413333pt;}
.y8c{bottom:562.013333pt;}
.y66{bottom:568.413333pt;}
.y1d{bottom:570.466667pt;}
.y100{bottom:571.933333pt;}
.ycd{bottom:576.413333pt;}
.y3e{bottom:579.626667pt;}
.y9c{bottom:586.013333pt;}
.y1c{bottom:586.306667pt;}
.yac{bottom:587.773333pt;}
.y101{bottom:590.333333pt;}
.yda{bottom:591.133333pt;}
.y123{bottom:594.013333pt;}
.y52{bottom:598.973333pt;}
.y65{bottom:602.013333pt;}
.y1b{bottom:602.173333pt;}
.y8b{bottom:603.453333pt;}
.yff{bottom:609.373333pt;}
.ycc{bottom:610.013333pt;}
.y3d{bottom:613.546667pt;}
.y10a{bottom:616.253333pt;}
.y1a{bottom:618.013333pt;}
.y9b{bottom:619.773333pt;}
.yb9{bottom:627.773333pt;}
.yab{bottom:629.213333pt;}
.y51{bottom:632.733333pt;}
.yd9{bottom:632.893333pt;}
.y19{bottom:633.853333pt;}
.y122{bottom:635.453333pt;}
.y64{bottom:635.773333pt;}
.y11f{bottom:636.093333pt;}
.ycb{bottom:643.773333pt;}
.y8a{bottom:645.533333pt;}
.yfd{bottom:646.813333pt;}
.y3c{bottom:647.146667pt;}
.y18{bottom:649.693333pt;}
.y109{bottom:650.013333pt;}
.y9a{bottom:653.533333pt;}
.yfe{bottom:665.213333pt;}
.y17{bottom:665.533333pt;}
.y50{bottom:666.493333pt;}
.yd8{bottom:666.653333pt;}
.y63{bottom:669.533333pt;}
.y11e{bottom:670.173333pt;}
.yaa{bottom:670.973333pt;}
.yca{bottom:677.533333pt;}
.y3b{bottom:680.746667pt;}
.y16{bottom:681.373333pt;}
.y108{bottom:683.773333pt;}
.yfb{bottom:684.413333pt;}
.y11d{bottom:686.493333pt;}
.y89{bottom:687.293333pt;}
.y15{bottom:697.373333pt;}
.y4f{bottom:700.253333pt;}
.yd7{bottom:700.413333pt;}
.yfc{bottom:702.813333pt;}
.y62{bottom:703.293333pt;}
.yeb{bottom:704.733333pt;}
.yc9{bottom:711.293333pt;}
.ya9{bottom:713.053333pt;}
.y14{bottom:713.213333pt;}
.y107{bottom:717.853333pt;}
.y11c{bottom:720.253333pt;}
.y88{bottom:721.053333pt;}
.yf9{bottom:721.853333pt;}
.y3a{bottom:722.666667pt;}
.y13{bottom:729.053333pt;}
.y4e{bottom:733.853333pt;}
.yd6{bottom:734.173333pt;}
.y61{bottom:737.053333pt;}
.yfa{bottom:740.253333pt;}
.y12{bottom:744.893333pt;}
.yc8{bottom:745.053333pt;}
.y106{bottom:751.493333pt;}
.y11a{bottom:754.053333pt;}
.y87{bottom:754.693333pt;}
.yf7{bottom:759.333333pt;}
.y11{bottom:760.733333pt;}
.y39{bottom:764.266667pt;}
.y4d{bottom:767.653333pt;}
.yd5{bottom:767.813333pt;}
.y60{bottom:770.693333pt;}
.y10{bottom:776.573333pt;}
.yf8{bottom:777.733333pt;}
.y121{bottom:778.373333pt;}
.yc7{bottom:778.693333pt;}
.y128{bottom:784.000000pt;}
.y105{bottom:785.253333pt;}
.y119{bottom:787.653333pt;}
.y86{bottom:788.453333pt;}
.yf{bottom:792.413333pt;}
.yf5{bottom:796.773333pt;}
.y127{bottom:800.000000pt;}
.y4c{bottom:801.413333pt;}
.yd4{bottom:801.573333pt;}
.y5f{bottom:804.453333pt;}
.ye{bottom:808.253333pt;}
.yc6{bottom:812.453333pt;}
.y38{bottom:812.906667pt;}
.yf6{bottom:815.173333pt;}
.y104{bottom:819.013333pt;}
.y118{bottom:821.413333pt;}
.y99{bottom:822.213333pt;}
.yd{bottom:824.293333pt;}
.y85{bottom:830.213333pt;}
.yf2{bottom:834.213333pt;}
.y4b{bottom:835.173333pt;}
.yd3{bottom:835.333333pt;}
.y5e{bottom:838.213333pt;}
.yc{bottom:840.133333pt;}
.yc5{bottom:846.213333pt;}
.y37{bottom:847.786667pt;}
.yf4{bottom:852.613333pt;}
.y117{bottom:855.173333pt;}
.yb{bottom:855.973333pt;}
.ya8{bottom:863.973333pt;}
.y4a{bottom:868.933333pt;}
.yd2{bottom:871.013333pt;}
.ya{bottom:871.813333pt;}
.y5d{bottom:871.973333pt;}
.yed{bottom:874.053333pt;}
.yc4{bottom:879.973333pt;}
.y9{bottom:887.653333pt;}
.ye9{bottom:887.973333pt;}
.y36{bottom:888.106667pt;}
.y115{bottom:888.933333pt;}
.y98{bottom:897.733333pt;}
.y49{bottom:902.693333pt;}
.y8{bottom:903.493333pt;}
.y5c{bottom:905.733333pt;}
.yd1{bottom:907.813333pt;}
.y77{bottom:913.733333pt;}
.y7{bottom:919.333333pt;}
.y35{bottom:923.306667pt;}
.y113{bottom:923.973333pt;}
.y6{bottom:935.173333pt;}
.y48{bottom:936.293333pt;}
.y5b{bottom:939.493333pt;}
.yd0{bottom:944.613333pt;}
.yec{bottom:947.173333pt;}
.y76{bottom:947.493333pt;}
.y5{bottom:951.173333pt;}
.y34{bottom:964.906667pt;}
.y4{bottom:967.013333pt;}
.y47{bottom:970.053333pt;}
.y5a{bottom:973.093333pt;}
.ycf{bottom:979.493333pt;}
.ye8{bottom:979.973333pt;}
.y120{bottom:980.773333pt;}
.y75{bottom:981.093333pt;}
.y3{bottom:982.853333pt;}
.y2{bottom:998.693333pt;}
.y33{bottom:998.826667pt;}
.y46{bottom:1013.440000pt;}
.yea{bottom:1013.760000pt;}
.yce{bottom:1014.400000pt;}
.y1{bottom:1014.533333pt;}
.y59{bottom:1014.560000pt;}
.y74{bottom:1014.880000pt;}
.y126{bottom:1024.000000pt;}
.y125{bottom:1040.000000pt;}
.y30{bottom:1044.586667pt;}
.y44{bottom:1056.960000pt;}
.y31{bottom:1057.066667pt;}
.y43{bottom:1061.120000pt;}
.h7{height:18.239987pt;}
.hc{height:18.400000pt;}
.h11{height:18.432000pt;}
.h9{height:32.570625pt;}
.h18{height:33.600000pt;}
.h15{height:33.760000pt;}
.h19{height:33.792000pt;}
.hf{height:36.800000pt;}
.h10{height:36.832000pt;}
.h3{height:40.280000pt;}
.h2{height:44.125469pt;}
.h14{height:47.109375pt;}
.h13{height:49.440000pt;}
.he{height:55.200000pt;}
.h1b{height:55.625000pt;}
.h6{height:56.156250pt;}
.h17{height:57.787500pt;}
.h16{height:59.340000pt;}
.h8{height:59.450625pt;}
.hb{height:62.812500pt;}
.h12{height:63.200000pt;}
.h4{height:64.375000pt;}
.hd{height:64.500000pt;}
.h1c{height:816.000000pt;}
.h1a{height:1056.000000pt;}
.h5{height:1090.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.ha{height:1122.720000pt;}
.w5{width:8.000000pt;}
.w7{width:8.160000pt;}
.w8{width:16.160000pt;}
.w16{width:53.600000pt;}
.w14{width:54.560000pt;}
.w17{width:55.040000pt;}
.w15{width:56.672000pt;}
.w13{width:70.400000pt;}
.w12{width:70.432000pt;}
.w11{width:70.560000pt;}
.wd{width:73.472000pt;}
.we{width:75.680000pt;}
.wf{width:75.712000pt;}
.w9{width:82.752000pt;}
.wc{width:83.200000pt;}
.w10{width:87.872000pt;}
.wb{width:113.472000pt;}
.w18{width:191.866667pt;}
.w19{width:192.026667pt;}
.w1a{width:192.066667pt;}
.wa{width:236.346667pt;}
.w2{width:635.873333pt;}
.w4{width:761.333333pt;}
.w6{width:793.280000pt;}
.w3{width:793.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w1b{width:816.000000pt;}
.w1c{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:7.200000pt;}
.x1c{left:9.600000pt;}
.x26{left:11.040000pt;}
.x2d{left:12.000000pt;}
.x1d{left:13.760000pt;}
.x3{left:16.000000pt;}
.x19{left:18.560000pt;}
.x23{left:21.760000pt;}
.x18{left:23.360000pt;}
.x14{left:24.480000pt;}
.x30{left:25.440000pt;}
.x22{left:27.200000pt;}
.x20{left:29.600000pt;}
.x21{left:33.600000pt;}
.x24{left:36.672000pt;}
.x1a{left:42.880000pt;}
.x1f{left:48.640000pt;}
.x34{left:50.600000pt;}
.x32{left:52.800000pt;}
.xd{left:57.280000pt;}
.x12{left:65.440000pt;}
.xf{left:73.472000pt;}
.x2{left:83.105333pt;}
.x35{left:86.586667pt;}
.x1{left:88.992000pt;}
.x36{left:92.360000pt;}
.x16{left:93.280000pt;}
.x4{left:97.279933pt;}
.x9{left:103.360680pt;}
.x6{left:105.389000pt;}
.xe{left:113.472000pt;}
.x10{left:132.352000pt;}
.x13{left:137.466667pt;}
.x25{left:138.746667pt;}
.xa{left:154.910533pt;}
.x8{left:162.281200pt;}
.xb{left:172.922800pt;}
.x27{left:214.426667pt;}
.x15{left:220.226667pt;}
.x7{left:266.876267pt;}
.x28{left:290.146667pt;}
.x31{left:298.146667pt;}
.x29{left:378.013333pt;}
.xc{left:380.546533pt;}
.x2a{left:448.573333pt;}
.x17{left:456.573333pt;}
.x33{left:490.173333pt;}
.x2b{left:519.013333pt;}
.x1b{left:570.053333pt;}
.x2c{left:589.413333pt;}
.x2e{left:643.973333pt;}
.x11{left:664.000000pt;}
.x5{left:672.000000pt;}
.x2f{left:700.640000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  