
    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_4045f0506c553601fa25954f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.979980;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_c8e3e975f9511de4cf548cc4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_39d2dfd4277bbff9149ea32d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_c9aa629d6bd78bc8b485a587.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979980;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_a8679e5b1f6659b91cd0baab.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_b5df382e99b0578b7c55370a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_ed21e1c80231b923e3e177a0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_4d32daa350c7ccc4b44f6b9b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.724609;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_bc5e81fe591259e540b941a6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_db061fb9094f0391c5e8fd55.woff')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_88bb19261298f711089bcfde.woff')format("woff");}.ffb{font-family:ffb;line-height:0.979980;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_85b0928d0c68198e8e34188b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.980957;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_13891fcbc271bf1e27b702b6.woff')format("woff");}.ffd{font-family:ffd;line-height:1.172852;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_69039d3e401bb144850c89c7.woff')format("woff");}.ffe{font-family:ffe;line-height:0.941406;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:fff;src:url('chunks/assets/font_03e7477f2dc5a6ea7e4ba88e.woff')format("woff");}.fff{font-family:fff;line-height:1.004883;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:ff10;src:url('chunks/assets/font_fe5ed7a67145de625151c663.woff')format("woff");}.ff10{font-family:ff10;line-height:1.127930;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:ff11;src:url('chunks/assets/font_0df0c630143b499d473cc1fc.woff')format("woff");}.ff11{font-family:ff11;line-height:0.751465;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;}
.m5{transform:matrix(0.000000,-0.249902,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249902,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249902,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249744,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249744,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249744,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,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);}
.m4{transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-73.296000px;}
.ve{vertical-align:-55.440000px;}
.vf{vertical-align:-43.920000px;}
.v8{vertical-align:-41.040000px;}
.v3{vertical-align:-35.280000px;}
.v2{vertical-align:-32.400000px;}
.v5{vertical-align:-29.520000px;}
.v9{vertical-align:-26.640000px;}
.v4{vertical-align:-23.040000px;}
.vd{vertical-align:-21.600000px;}
.v16{vertical-align:-20.160008px;}
.v12{vertical-align:-17.280007px;}
.va{vertical-align:-14.544000px;}
.v14{vertical-align:-12.960000px;}
.v6{vertical-align:-8.208000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:7.920000px;}
.v10{vertical-align:11.520000px;}
.v11{vertical-align:15.120000px;}
.v13{vertical-align:17.279993px;}
.v1{vertical-align:32.400000px;}
.vb{vertical-align:51.120000px;}
.vc{vertical-align:55.620000px;}
.ls2{letter-spacing:-10.680000px;}
.ls20{letter-spacing:-6.060000px;}
.ls9{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.208200px;}
.lsb{letter-spacing:-0.189600px;}
.ls1d{letter-spacing:-0.186600px;}
.ls1e{letter-spacing:-0.109200px;}
.ls1c{letter-spacing:-0.106800px;}
.ls27{letter-spacing:-0.079800px;}
.lsc{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.055440px;}
.ls25{letter-spacing:-0.028080px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.024250px;}
.ls16{letter-spacing:0.024265px;}
.ls23{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.041880px;}
.ls12{letter-spacing:0.090600px;}
.ls3{letter-spacing:0.108000px;}
.ls24{letter-spacing:0.115800px;}
.ls11{letter-spacing:0.122400px;}
.ls19{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.148080px;}
.ls13{letter-spacing:0.169920px;}
.ls0{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.252000px;}
.ls4{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.631440px;}
.ls28{letter-spacing:17.738497px;}
.ls26{letter-spacing:17.818561px;}
.ls1b{letter-spacing:18.538561px;}
.ls14{letter-spacing:21.186720px;}
.ls10{letter-spacing:21.511440px;}
.ls22{letter-spacing:22.775041px;}
.ls18{letter-spacing:26.640000px;}
.ls17{letter-spacing:36.662400px;}
.lse{letter-spacing:46.080000px;}
.ls2a{letter-spacing:111.480768px;}
.ls29{letter-spacing:111.546720px;}
.lsf{letter-spacing:1299.235440px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-120.240000px;}
.ws2{word-spacing:-108.000000px;}
.ws1b{word-spacing:-90.000000px;}
.wsb{word-spacing:-84.240000px;}
.ws15{word-spacing:-66.653280px;}
.ws49{word-spacing:-60.048000px;}
.ws6{word-spacing:-53.442720px;}
.ws1c{word-spacing:-46.759680px;}
.ws1d{word-spacing:-46.637280px;}
.ws13{word-spacing:-41.601312px;}
.ws5{word-spacing:-40.320000px;}
.ws7{word-spacing:-40.072032px;}
.ws4{word-spacing:-40.032000px;}
.ws4a{word-spacing:-33.606720px;}
.ws14{word-spacing:-30.024000px;}
.ws32{word-spacing:-27.252000px;}
.ws30{word-spacing:-27.000000px;}
.wsc{word-spacing:-26.661312px;}
.ws8{word-spacing:-26.621280px;}
.wsd{word-spacing:-24.408000px;}
.ws12{word-spacing:-23.940000px;}
.ws29{word-spacing:-23.760000px;}
.ws42{word-spacing:-23.534520px;}
.ws17{word-spacing:-23.418720px;}
.ws3f{word-spacing:-23.390640px;}
.ws1f{word-spacing:-21.641760px;}
.ws1{word-spacing:-20.056032px;}
.ws0{word-spacing:-20.016000px;}
.ws25{word-spacing:-19.942440px;}
.ws24{word-spacing:-19.070784px;}
.ws31{word-spacing:-17.455680px;}
.ws2f{word-spacing:-17.424000px;}
.ws40{word-spacing:-16.653312px;}
.ws34{word-spacing:-16.613280px;}
.ws1e{word-spacing:-15.621120px;}
.ws35{word-spacing:-15.052032px;}
.ws38{word-spacing:-15.012000px;}
.wsa{word-spacing:-14.970240px;}
.ws2e{word-spacing:-14.256000px;}
.ws20{word-spacing:-13.505760px;}
.ws37{word-spacing:-1.098000px;}
.ws39{word-spacing:-0.864000px;}
.wsf{word-spacing:-0.756000px;}
.ws9{word-spacing:-0.648000px;}
.ws10{word-spacing:-0.120240px;}
.wse{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws21{word-spacing:0.231600px;}
.ws45{word-spacing:0.524448px;}
.ws23{word-spacing:0.529200px;}
.ws3b{word-spacing:5.448000px;}
.ws2c{word-spacing:6.624000px;}
.ws2b{word-spacing:15.919200px;}
.ws2d{word-spacing:28.368000px;}
.ws28{word-spacing:32.027684px;}
.ws3a{word-spacing:32.301600px;}
.ws27{word-spacing:38.977658px;}
.ws1a{word-spacing:42.930000px;}
.ws2a{word-spacing:48.816000px;}
.ws19{word-spacing:62.370000px;}
.ws16{word-spacing:70.643760px;}
.ws36{word-spacing:140.628720px;}
.ws33{word-spacing:142.068720px;}
.ws43{word-spacing:159.655680px;}
.ws44{word-spacing:162.220704px;}
.ws47{word-spacing:164.253792px;}
.ws41{word-spacing:185.275680px;}
.ws3e{word-spacing:188.973792px;}
.ws3c{word-spacing:306.780000px;}
.ws48{word-spacing:363.295680px;}
.ws18{word-spacing:721.167840px;}
.ws26{word-spacing:1040.369760px;}
.ws22{word-spacing:1337.777280px;}
.ws46{word-spacing:1843.638960px;}
.ws3d{word-spacing:2235.042960px;}
._19{margin-left:-443.268000px;}
._34{margin-left:-34.544400px;}
._c{margin-left:-24.881520px;}
._35{margin-left:-23.052960px;}
._10{margin-left:-20.970000px;}
._e{margin-left:-18.221760px;}
._14{margin-left:-17.029440px;}
._8{margin-left:-15.552000px;}
._7{margin-left:-14.016000px;}
._21{margin-left:-12.758640px;}
._2{margin-left:-11.640000px;}
._0{margin-left:-10.464000px;}
._33{margin-left:-9.435696px;}
._6{margin-left:-8.352000px;}
._3{margin-left:-6.912000px;}
._f{margin-left:-5.598720px;}
._d{margin-left:-4.203840px;}
._5{margin-left:-2.484000px;}
._4{margin-left:-1.020000px;}
._1{width:1.404000px;}
._9{width:3.000000px;}
._b{width:4.801440px;}
._1b{width:6.101760px;}
._a{width:8.748000px;}
._1d{width:10.040400px;}
._28{width:17.700240px;}
._18{width:20.359200px;}
._17{width:23.018400px;}
._13{width:25.908048px;}
._12{width:28.056000px;}
._16{width:31.031520px;}
._1a{width:40.910400px;}
._31{width:48.531504px;}
._32{width:51.203760px;}
._22{width:77.950560px;}
._2f{width:103.704000px;}
._26{width:158.172000px;}
._1c{width:165.885984px;}
._2d{width:193.199520px;}
._30{width:198.125952px;}
._2e{width:204.053376px;}
._23{width:207.660000px;}
._27{width:218.220000px;}
._2a{width:223.192992px;}
._2b{width:243.673440px;}
._29{width:247.493376px;}
._1e{width:282.033600px;}
._25{width:293.226000px;}
._24{width:332.268000px;}
._20{width:368.652000px;}
._1f{width:389.604000px;}
._11{width:1114.236240px;}
._2c{width:1440.420000px;}
._15{width:4678.765440px;}
.fc9{color:rgb(54,102,88);}
.fc8{color:rgb(131,105,103);}
.fc7{color:rgb(0,32,96);}
.fcb{color:rgb(46,129,81);}
.fc6{color:transparent;}
.fc5{color:rgb(81,43,16);}
.fc4{color:rgb(40,77,66);}
.fca{color:rgb(140,182,74);}
.fc3{color:rgb(61,61,61);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(38,38,38);}
.fs30{font-size:36.000000px;}
.fs26{font-size:37.317590px;}
.fs29{font-size:37.341211px;}
.fs1f{font-size:40.320000px;}
.fs1c{font-size:48.240000px;}
.fs1d{font-size:48.384000px;}
.fs28{font-size:49.753333px;}
.fs2a{font-size:49.784824px;}
.fs27{font-size:49.804311px;}
.fs2f{font-size:54.000000px;}
.fs2e{font-size:54.144000px;}
.fs32{font-size:56.160000px;}
.fs25{font-size:59.040000px;}
.fs1e{font-size:59.760000px;}
.fs20{font-size:59.904000px;}
.fsf{font-size:64.080000px;}
.fs2c{font-size:64.800000px;}
.fsd{font-size:66.240000px;}
.fse{font-size:66.384000px;}
.fs1b{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:72.144000px;}
.fs2b{font-size:79.200000px;}
.fs2d{font-size:79.344000px;}
.fs13{font-size:79.920000px;}
.fs10{font-size:84.240000px;}
.fs21{font-size:84.384000px;}
.fs24{font-size:87.840000px;}
.fs18{font-size:90.000000px;}
.fs31{font-size:90.144000px;}
.fsc{font-size:95.760000px;}
.fs11{font-size:95.904000px;}
.fs0{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.fs34{font-size:110.160000px;}
.fs35{font-size:110.304000px;}
.fs19{font-size:112.320000px;}
.fs12{font-size:120.240000px;}
.fs36{font-size:120.384000px;}
.fsa{font-size:144.000000px;}
.fs9{font-size:144.144000px;}
.fs17{font-size:149.760000px;}
.fs14{font-size:149.904000px;}
.fs15{font-size:156.240000px;}
.fs16{font-size:156.384000px;}
.fs6{font-size:167.760000px;}
.fs7{font-size:167.904000px;}
.fs22{font-size:180.000000px;}
.fs23{font-size:180.144000px;}
.fs8{font-size:192.240000px;}
.fsb{font-size:192.384000px;}
.fs1a{font-size:210.240000px;}
.fs33{font-size:216.000000px;}
.fs4{font-size:239.760000px;}
.fs5{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:2.453330px;}
.yb7{bottom:3.139264px;}
.y146{bottom:4.860000px;}
.y1af{bottom:5.790000px;}
.y19e{bottom:6.045000px;}
.yd0{bottom:7.452000px;}
.y156{bottom:8.640000px;}
.y18d{bottom:9.540000px;}
.y13e{bottom:10.365000px;}
.y5a{bottom:10.620000px;}
.y99{bottom:11.016000px;}
.y9e{bottom:14.363299px;}
.yac{bottom:14.372374px;}
.yfa{bottom:14.580000px;}
.y1a{bottom:15.516000px;}
.ydf{bottom:16.305000px;}
.y17e{bottom:16.950000px;}
.ya9{bottom:17.473273px;}
.yb6{bottom:17.484314px;}
.y7{bottom:17.820000px;}
.y73{bottom:19.152000px;}
.y9f{bottom:22.542391px;}
.yad{bottom:22.556642px;}
.y164{bottom:23.184000px;}
.y1ad{bottom:23.505000px;}
.y153{bottom:23.976000px;}
.y12d{bottom:24.690000px;}
.yec{bottom:25.596000px;}
.y134{bottom:28.476000px;}
.y27{bottom:28.512000px;}
.y5b{bottom:30.060000px;}
.y90{bottom:30.456000px;}
.y19c{bottom:30.750000px;}
.y13c{bottom:31.755000px;}
.y18b{bottom:31.965000px;}
.y4e{bottom:33.336000px;}
.ya0{bottom:34.763099px;}
.yce{bottom:34.812000px;}
.yae{bottom:36.309428px;}
.y5d{bottom:38.376000px;}
.y98{bottom:39.816000px;}
.y1a5{bottom:41.400000px;}
.y17c{bottom:41.655000px;}
.yf8{bottom:41.970000px;}
.ye1{bottom:43.488000px;}
.ya1{bottom:46.983807px;}
.ydd{bottom:47.010000px;}
.y44{bottom:47.016000px;}
.y10e{bottom:47.448000px;}
.y136{bottom:47.850000px;}
.y8f{bottom:48.456000px;}
.y194{bottom:48.600000px;}
.y12b{bottom:49.605000px;}
.y182{bottom:49.830000px;}
.yaf{bottom:50.062213px;}
.y162{bottom:50.580000px;}
.y151{bottom:51.372000px;}
.yc8{bottom:52.704000px;}
.y89{bottom:56.304000px;}
.y26{bottom:57.312000px;}
.y11c{bottom:58.530000px;}
.ya2{bottom:59.204514px;}
.y174{bottom:59.550000px;}
.yf2{bottom:59.865000px;}
.y133{bottom:61.056000px;}
.yb0{bottom:63.814999px;}
.ydc{bottom:64.260000px;}
.y8e{bottom:66.456000px;}
.ye2{bottom:66.600000px;}
.y6{bottom:67.032000px;}
.y77{bottom:67.644000px;}
.y173{bottom:68.325000px;}
.y15a{bottom:68.472000px;}
.y14a{bottom:69.228000px;}
.y121{bottom:69.270000px;}
.y5e{bottom:70.056000px;}
.ya3{bottom:71.425222px;}
.y88{bottom:74.304000px;}
.y10d{bottom:74.448000px;}
.y43{bottom:75.816000px;}
.y111{bottom:76.425000px;}
.y1a6{bottom:76.605000px;}
.yb1{bottom:77.568821px;}
.y13d{bottom:77.580000px;}
.y4d{bottom:78.336000px;}
.y183{bottom:78.405000px;}
.y12{bottom:79.668000px;}
.yd4{bottom:82.155000px;}
.ycf{bottom:82.728000px;}
.ya4{bottom:83.614841px;}
.y195{bottom:84.165000px;}
.y8d{bottom:84.456000px;}
.y25{bottom:86.508000px;}
.y9c{bottom:87.012000px;}
.ye3{bottom:89.712000px;}
.y137{bottom:89.850000px;}
.yb2{bottom:91.321607px;}
.y87{bottom:92.304000px;}
.yc9{bottom:92.700000px;}
.y132{bottom:93.456000px;}
.y175{bottom:93.780000px;}
.y16{bottom:94.068000px;}
.yc7{bottom:94.248000px;}
.yed{bottom:94.428000px;}
.ya5{bottom:95.835548px;}
.y122{bottom:98.100000px;}
.y112{bottom:99.540000px;}
.y5{bottom:100.332000px;}
.y10c{bottom:101.448000px;}
.y19{bottom:101.484000px;}
.y8c{bottom:102.456000px;}
.y42{bottom:104.616000px;}
.yb3{bottom:105.074392px;}
.yf3{bottom:106.740000px;}
.y184{bottom:106.995000px;}
.yf9{bottom:107.070000px;}
.y15b{bottom:107.208000px;}
.ya6{bottom:108.056256px;}
.y1a7{bottom:111.855000px;}
.ye4{bottom:112.824000px;}
.y1ae{bottom:112.890000px;}
.yd5{bottom:113.655000px;}
.y14b{bottom:114.912000px;}
.y17d{bottom:114.945000px;}
.y24{bottom:115.488000px;}
.y18c{bottom:118.470000px;}
.yb4{bottom:118.827178px;}
.y196{bottom:119.730000px;}
.yde{bottom:120.030000px;}
.ya7{bottom:120.276964px;}
.y8b{bottom:120.456000px;}
.y113{bottom:122.655000px;}
.y11{bottom:122.868000px;}
.y4c{bottom:123.372000px;}
.y19d{bottom:125.850000px;}
.y123{bottom:126.900000px;}
.y11d{bottom:127.365000px;}
.y176{bottom:128.010000px;}
.y10b{bottom:128.484000px;}
.y72{bottom:129.348000px;}
.y172{bottom:129.495000px;}
.y138{bottom:131.865000px;}
.y149{bottom:132.300000px;}
.ya8{bottom:132.497671px;}
.yb5{bottom:132.581519px;}
.yca{bottom:132.696000px;}
.y12c{bottom:134.100000px;}
.y163{bottom:134.928000px;}
.y185{bottom:135.570000px;}
.ye5{bottom:135.900000px;}
.y15{bottom:137.268000px;}
.y152{bottom:137.880000px;}
.y8a{bottom:138.456000px;}
.y4{bottom:140.832000px;}
.y40{bottom:140.868000px;}
.y31{bottom:141.840000px;}
.y23{bottom:144.288000px;}
.y18{bottom:144.720000px;}
.yd6{bottom:145.155000px;}
.y114{bottom:145.725000px;}
.y15c{bottom:145.980000px;}
.y159{bottom:146.085000px;}
.y1a8{bottom:147.090000px;}
.y5f{bottom:147.384000px;}
.yf4{bottom:153.645000px;}
.y197{bottom:155.265000px;}
.y10a{bottom:155.490000px;}
.y124{bottom:155.730000px;}
.y5c{bottom:157.575000px;}
.y131{bottom:158.250000px;}
.ye6{bottom:159.015000px;}
.y14c{bottom:160.590000px;}
.y71{bottom:161.745000px;}
.y177{bottom:162.255000px;}
.y63{bottom:162.510000px;}
.y186{bottom:164.160000px;}
.y78{bottom:165.060000px;}
.y10{bottom:166.110000px;}
.y4b{bottom:168.375000px;}
.y115{bottom:168.840000px;}
.ycb{bottom:172.725000px;}
.y69{bottom:173.265000px;}
.y139{bottom:173.880000px;}
.yc5{bottom:174.165000px;}
.y9d{bottom:176.163003px;}
.yd7{bottom:176.655000px;}
.yab{bottom:180.123329px;}
.ye7{bottom:182.130000px;}
.y3{bottom:182.265000px;}
.y1a9{bottom:182.310000px;}
.y109{bottom:182.490000px;}
.y125{bottom:184.530000px;}
.y15d{bottom:184.710000px;}
.yc6{bottom:188.070000px;}
.y62{bottom:189.510000px;}
.y130{bottom:190.695000px;}
.y198{bottom:190.830000px;}
.y116{bottom:191.955000px;}
.y187{bottom:192.750000px;}
.y70{bottom:194.190000px;}
.y178{bottom:196.485000px;}
.y193{bottom:197.640000px;}
.y28{bottom:199.590000px;}
.yf5{bottom:200.550000px;}
.y1a4{bottom:203.400000px;}
.y16f{bottom:204.120000px;}
.ye8{bottom:205.230000px;}
.y14d{bottom:206.280000px;}
.y58{bottom:206.925000px;}
.yd8{bottom:208.155000px;}
.y108{bottom:209.490000px;}
.y1bd{bottom:210.450000px;}
.y3f{bottom:211.065000px;}
.yc4{bottom:212.370000px;}
.ycc{bottom:212.730000px;}
.y14{bottom:212.970000px;}
.y126{bottom:213.375000px;}
.y117{bottom:215.070000px;}
.y13a{bottom:215.895000px;}
.y76{bottom:215.970000px;}
.y61{bottom:216.510000px;}
.y1aa{bottom:217.545000px;}
.y188{bottom:221.295000px;}
.y12f{bottom:223.095000px;}
.y15e{bottom:223.485000px;}
.y2{bottom:224.430000px;}
.y1bf{bottom:224.460000px;}
.y199{bottom:226.410000px;}
.ye9{bottom:228.345000px;}
.y179{bottom:230.760000px;}
.yf{bottom:235.695000px;}
.y1b2{bottom:235.980000px;}
.y107{bottom:236.490000px;}
.y2e{bottom:237.810000px;}
.y1a2{bottom:237.930000px;}
.y118{bottom:238.170000px;}
.y57{bottom:239.325000px;}
.yd9{bottom:239.655000px;}
.yef{bottom:241.995000px;}
.y127{bottom:242.175000px;}
.y181{bottom:243.465000px;}
.y60{bottom:243.510000px;}
.y75{bottom:243.825000px;}
.y1bc{bottom:246.450000px;}
.yf6{bottom:247.470000px;}
.y189{bottom:249.870000px;}
.y1b1{bottom:251.130000px;}
.yea{bottom:251.460000px;}
.y14e{bottom:252.000000px;}
.ycd{bottom:252.720000px;}
.y1ab{bottom:252.795000px;}
.y1a1{bottom:254.730000px;}
.y1b8{bottom:256.140000px;}
.y1{bottom:256.830000px;}
.y13b{bottom:257.910000px;}
.y6f{bottom:258.990000px;}
.yee{bottom:260.490000px;}
.y119{bottom:261.285000px;}
.y19a{bottom:261.930000px;}
.y3e{bottom:262.185000px;}
.y15f{bottom:262.230000px;}
.y110{bottom:263.700000px;}
.y120{bottom:264.060000px;}
.y17{bottom:264.210000px;}
.y4a{bottom:264.930000px;}
.y17a{bottom:264.990000px;}
.y180{bottom:265.215000px;}
.y171{bottom:266.220000px;}
.y1b0{bottom:266.295000px;}
.yc3{bottom:268.485000px;}
.y2d{bottom:270.210000px;}
.y13{bottom:270.570000px;}
.y128{bottom:271.005000px;}
.yda{bottom:271.155000px;}
.yff{bottom:271.260000px;}
.y1a0{bottom:271.590000px;}
.y56{bottom:271.770000px;}
.yeb{bottom:274.575000px;}
.y11f{bottom:274.935000px;}
.y18a{bottom:278.460000px;}
.y170{bottom:281.880000px;}
.y142{bottom:282.030000px;}
.y1be{bottom:282.090000px;}
.y1bb{bottom:282.495000px;}
.y93{bottom:283.710000px;}
.y22{bottom:284.115000px;}
.y11a{bottom:284.400000px;}
.y68{bottom:284.550000px;}
.y17f{bottom:286.995000px;}
.yfe{bottom:287.460000px;}
.y18e{bottom:287.640000px;}
.y1ac{bottom:288.000000px;}
.y19f{bottom:288.390000px;}
.y1b7{bottom:288.720000px;}
.yd1{bottom:289.155000px;}
.y6e{bottom:291.390000px;}
.y11e{bottom:293.430000px;}
.y135{bottom:293.940000px;}
.yf7{bottom:294.375000px;}
.y19b{bottom:297.510000px;}
.y85{bottom:297.570000px;}
.y14f{bottom:297.690000px;}
.y17b{bottom:299.235000px;}
.y141{bottom:299.415000px;}
.y92{bottom:299.730000px;}
.y129{bottom:299.805000px;}
.y160{bottom:300.990000px;}
.yc2{bottom:301.065000px;}
.y2c{bottom:302.250000px;}
.ydb{bottom:302.655000px;}
.y55{bottom:304.170000px;}
.y11b{bottom:307.515000px;}
.y166{bottom:308.445000px;}
.y158{bottom:309.315000px;}
.y12e{bottom:310.395000px;}
.y155{bottom:310.530000px;}
.y3d{bottom:310.710000px;}
.y49{bottom:311.730000px;}
.y84{bottom:311.970000px;}
.y148{bottom:312.405000px;}
.yfc{bottom:315.690000px;}
.y140{bottom:316.770000px;}
.y67{bottom:316.950000px;}
.yf1{bottom:318.600000px;}
.y1b6{bottom:321.120000px;}
.y157{bottom:324.975000px;}
.y37{bottom:325.470000px;}
.y83{bottom:326.415000px;}
.y165{bottom:326.490000px;}
.y154{bottom:327.210000px;}
.y147{bottom:328.110000px;}
.y12a{bottom:328.605000px;}
.ya{bottom:332.025000px;}
.y13f{bottom:334.155000px;}
.y1ba{bottom:334.695000px;}
.ybf{bottom:334.905000px;}
.y54{bottom:336.570000px;}
.y21{bottom:336.780000px;}
.yd3{bottom:337.320000px;}
.y91{bottom:338.430000px;}
.yfb{bottom:339.690000px;}
.y161{bottom:339.765000px;}
.y82{bottom:340.815000px;}
.y150{bottom:343.365000px;}
.yc0{bottom:345.885000px;}
.yc1{bottom:348.765000px;}
.ye{bottom:349.350000px;}
.y66{bottom:349.380000px;}
.y1b5{bottom:353.520000px;}
.y81{bottom:355.215000px;}
.y6d{bottom:356.220000px;}
.y36{bottom:357.915000px;}
.y48{bottom:358.560000px;}
.y145{bottom:366.225000px;}
.y3a{bottom:368.025000px;}
.y53{bottom:368.970000px;}
.y1c2{bottom:369.105000px;}
.y80{bottom:369.615000px;}
.y1b9{bottom:370.695000px;}
.y86{bottom:379.335000px;}
.y65{bottom:381.780000px;}
.y7f{bottom:384.015000px;}
.y1b4{bottom:385.920000px;}
.y6c{bottom:388.620000px;}
.y35{bottom:390.315000px;}
.y3c{bottom:397.830000px;}
.y7e{bottom:398.415000px;}
.yd{bottom:399.750000px;}
.y1c1{bottom:401.505000px;}
.yf0{bottom:401.970000px;}
.y9{bottom:404.070000px;}
.y101{bottom:404.205000px;}
.y47{bottom:405.360000px;}
.y30{bottom:407.370000px;}
.y7d{bottom:412.815000px;}
.ybd{bottom:418.350000px;}
.y6b{bottom:421.020000px;}
.ybc{bottom:421.230000px;}
.y34{bottom:422.715000px;}
.ybe{bottom:432.030000px;}
.y7a{bottom:432.105000px;}
.y1c0{bottom:433.905000px;}
.y2f{bottom:439.950000px;}
.y7c{bottom:440.280000px;}
.y167{bottom:447.555000px;}
.yc{bottom:450.150000px;}
.y1b3{bottom:450.750000px;}
.y46{bottom:452.160000px;}
.y6a{bottom:453.420000px;}
.y59{bottom:454.710000px;}
.y33{bottom:455.115000px;}
.y79{bottom:460.905000px;}
.y7b{bottom:469.080000px;}
.y38{bottom:469.950000px;}
.y39{bottom:470.490000px;}
.y8{bottom:476.070000px;}
.y32{bottom:487.515000px;}
.y41{bottom:489.165000px;}
.y3b{bottom:491.295000px;}
.y97{bottom:496.365000px;}
.y106{bottom:506.550000px;}
.y192{bottom:511.125000px;}
.y16e{bottom:518.790000px;}
.y96{bottom:521.565000px;}
.ybb{bottom:522.540000px;}
.y18f{bottom:524.235000px;}
.y64{bottom:531.570000px;}
.y143{bottom:531.645000px;}
.y105{bottom:533.550000px;}
.y16c{bottom:537.690000px;}
.y95{bottom:546.765000px;}
.y51{bottom:549.825000px;}
.yba{bottom:555.120000px;}
.y104{bottom:560.550000px;}
.y94{bottom:571.965000px;}
.y20{bottom:582.945000px;}
.yb9{bottom:587.550000px;}
.y169{bottom:590.040000px;}
.y16b{bottom:591.690000px;}
.y50{bottom:593.025000px;}
.y2b{bottom:598.935000px;}
.y144{bottom:609.045000px;}
.y168{bottom:618.840000px;}
.yb8{bottom:619.950000px;}
.y191{bottom:620.565000px;}
.yb{bottom:622.770000px;}
.yd2{bottom:625.830000px;}
.y1f{bottom:626.145000px;}
.y1c{bottom:630.255000px;}
.yfd{bottom:634.500000px;}
.y103{bottom:634.755000px;}
.y4f{bottom:636.225000px;}
.y2a{bottom:642.135000px;}
.y16a{bottom:645.735000px;}
.y74{bottom:648.465000px;}
.y52{bottom:651.960000px;}
.y1a3{bottom:653.010000px;}
.y102{bottom:657.255000px;}
.y100{bottom:659.445000px;}
.y1b{bottom:673.455000px;}
.y190{bottom:674.565000px;}
.y29{bottom:685.365000px;}
.y10f{bottom:686.265000px;}
.y1e{bottom:690.195000px;}
.y9b{bottom:703.080000px;}
.y45{bottom:711.645000px;}
.y1d{bottom:747.795000px;}
.y9a{bottom:757.080000px;}
.ye0{bottom:768.240000px;}
.y16d{bottom:769.470000px;}
.h30{height:27.277555px;}
.h34{height:27.294820px;}
.h32{height:36.367548px;}
.h35{height:36.390567px;}
.h31{height:36.404811px;}
.h4a{height:39.471680px;}
.h44{height:39.576937px;}
.h40{height:43.681992px;}
.h41{height:43.787250px;}
.h53{height:44.936719px;}
.h4f{height:48.418594px;}
.h50{height:48.523852px;}
.h24{height:49.394180px;}
.h25{height:49.541625px;}
.h47{height:52.628906px;}
.h51{height:52.734164px;}
.h3{height:54.000000px;}
.h2{height:54.108000px;}
.h3b{height:55.054688px;}
.h26{height:61.189805px;}
.h27{height:61.337250px;}
.h42{height:61.575820px;}
.h43{height:61.681078px;}
.h12{height:63.180000px;}
.h4b{height:65.126953px;}
.h4c{height:65.231156px;}
.h39{height:67.289062px;}
.h3d{height:67.411406px;}
.h1f{height:67.500000px;}
.he{height:67.824844px;}
.hf{height:67.972289px;}
.h22{height:68.748750px;}
.h18{height:70.510781px;}
.h45{height:71.613281px;}
.h11{height:71.820000px;}
.h21{height:76.963359px;}
.h36{height:78.152344px;}
.h37{height:78.256547px;}
.h5e{height:78.943359px;}
.h3c{height:79.154297px;}
.h13{height:79.523438px;}
.h16{height:79.629469px;}
.h4{height:81.000000px;}
.h1e{height:81.108000px;}
.h5{height:81.210938px;}
.h3a{height:82.409062px;}
.h28{height:83.787539px;}
.h2b{height:83.930766px;}
.h1{height:86.400000px;}
.h3e{height:86.800781px;}
.h2e{height:88.088203px;}
.h4d{height:90.180000px;}
.h5d{height:90.288000px;}
.h38{height:91.757812px;}
.h23{height:95.245664px;}
.h10{height:98.051133px;}
.h54{height:103.165664px;}
.hc{height:108.000000px;}
.hb{height:108.108000px;}
.h19{height:110.378531px;}
.h14{height:110.583984px;}
.h15{height:110.731430px;}
.h1c{height:112.320000px;}
.h1d{height:112.428000px;}
.h1a{height:117.180000px;}
.h1b{height:117.288000px;}
.h17{height:119.594180px;}
.h8{height:125.820000px;}
.h9{height:125.928000px;}
.h2c{height:135.000000px;}
.h2d{height:135.108000px;}
.h58{height:135.351562px;}
.h59{height:135.459844px;}
.ha{height:144.180000px;}
.hd{height:144.288000px;}
.h29{height:149.171133px;}
.h2f{height:153.071997px;}
.h33{height:153.176671px;}
.h2a{height:153.671133px;}
.h20{height:157.680000px;}
.h5c{height:162.000000px;}
.h6{height:179.820000px;}
.h7{height:179.928000px;}
.h48{height:298.620000px;}
.h5b{height:308.340000px;}
.h57{height:319.140000px;}
.h46{height:324.000000px;}
.h5a{height:327.780000px;}
.h3f{height:331.560000px;}
.h52{height:357.120000px;}
.h56{height:361.260000px;}
.h55{height:365.040000px;}
.h49{height:375.660000px;}
.h4e{height:379.440000px;}
.h0{height:810.000000px;}
.w2{width:200.202767px;}
.w8{width:396.900000px;}
.w3{width:408.780000px;}
.w6{width:408.960000px;}
.w4{width:412.380000px;}
.wc{width:447.480000px;}
.wd{width:451.980000px;}
.we{width:476.640000px;}
.wb{width:486.900000px;}
.w7{width:494.820000px;}
.w5{width:523.440000px;}
.wa{width:534.240000px;}
.w9{width:534.420000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x59{left:17.897307px;}
.x45{left:20.159979px;}
.x58{left:21.819608px;}
.x69{left:24.048000px;}
.x57{left:27.017377px;}
.x81{left:28.950000px;}
.x1{left:31.391979px;}
.x3a{left:33.803979px;}
.x89{left:34.950000px;}
.x56{left:36.354779px;}
.x1b{left:39.959979px;}
.x80{left:41.505000px;}
.x9b{left:42.510000px;}
.x36{left:44.135979px;}
.x33{left:46.043979px;}
.x50{left:48.743979px;}
.x68{left:50.184000px;}
.x2f{left:51.623979px;}
.x34{left:53.063979px;}
.x15{left:54.395979px;}
.x32{left:57.023979px;}
.x7c{left:58.530000px;}
.x6c{left:60.810000px;}
.x8f{left:63.690000px;}
.x5{left:65.159979px;}
.xa1{left:67.320000px;}
.x24{left:68.759979px;}
.x1e{left:70.559979px;}
.x7{left:71.603979px;}
.x39{left:72.719979px;}
.x31{left:77.723979px;}
.x2{left:79.451979px;}
.x90{left:80.790000px;}
.x6d{left:83.625000px;}
.x6e{left:86.970000px;}
.x67{left:88.200000px;}
.x74{left:89.250000px;}
.x9c{left:90.330000px;}
.xa2{left:92.160000px;}
.x9e{left:93.210000px;}
.x8b{left:101.490000px;}
.x4{left:104.219979px;}
.x7a{left:109.151979px;}
.x35{left:111.635979px;}
.xa4{left:115.665000px;}
.x71{left:120.060000px;}
.x17{left:121.355979px;}
.x1c{left:122.759979px;}
.x38{left:130.319979px;}
.x16{left:132.155979px;}
.x1d{left:133.919979px;}
.x43{left:135.251979px;}
.x7e{left:136.800000px;}
.x37{left:145.259979px;}
.x73{left:146.985000px;}
.x85{left:159.914979px;}
.x6f{left:162.360000px;}
.x82{left:165.270000px;}
.x30{left:169.379979px;}
.xb{left:177.329979px;}
.x18{left:178.949979px;}
.x75{left:183.494979px;}
.x3b{left:185.609979px;}
.xa{left:188.489979px;}
.x6{left:189.569979px;}
.x9d{left:191.310000px;}
.x9{left:197.489979px;}
.x8a{left:200.265000px;}
.x1f{left:202.169979px;}
.x4c{left:206.024979px;}
.xa3{left:207.105000px;}
.x7d{left:209.010000px;}
.x54{left:217.514979px;}
.x95{left:221.429979px;}
.x8{left:224.819979px;}
.x55{left:243.930000px;}
.x25{left:259.889979px;}
.x41{left:270.149979px;}
.x97{left:281.670000px;}
.x98{left:298.230000px;}
.x3e{left:316.079979px;}
.x91{left:318.134979px;}
.x53{left:339.119979px;}
.x99{left:343.185000px;}
.x9a{left:347.685000px;}
.x49{left:352.289979px;}
.x8c{left:356.685000px;}
.x78{left:370.289979px;}
.x77{left:371.444979px;}
.x87{left:375.660000px;}
.x8e{left:381.990000px;}
.x8d{left:384.585000px;}
.x88{left:403.560000px;}
.x94{left:406.829979px;}
.x19{left:410.549979px;}
.x42{left:443.909979px;}
.x1a{left:469.799979px;}
.x46{left:471.779979px;}
.x70{left:474.300000px;}
.x51{left:478.514979px;}
.x3f{left:496.079979px;}
.x20{left:498.749979px;}
.x14{left:501.989979px;}
.x6b{left:513.720000px;}
.x47{left:516.629979px;}
.x7f{left:522.540000px;}
.x4e{left:535.604979px;}
.x29{left:541.154979px;}
.xc{left:542.234979px;}
.x5a{left:564.930000px;}
.x2d{left:577.334979px;}
.xa0{left:593.564979px;}
.x76{left:601.229979px;}
.xe{left:613.259979px;}
.xd{left:620.024979px;}
.x48{left:628.379979px;}
.x52{left:634.604979px;}
.x21{left:648.464979px;}
.x72{left:651.569979px;}
.x2a{left:655.529979px;}
.xf{left:670.859979px;}
.x96{left:674.640000px;}
.x9f{left:679.109979px;}
.x28{left:703.694979px;}
.x3c{left:710.969979px;}
.x6a{left:714.494979px;}
.x4b{left:716.969979px;}
.x26{left:736.949979px;}
.x86{left:746.460000px;}
.x22{left:760.424979px;}
.x83{left:785.234979px;}
.x23{left:795.164979px;}
.x4a{left:805.574979px;}
.x92{left:836.279979px;}
.x2c{left:837.794979px;}
.x2b{left:839.414979px;}
.xa7{left:849.749979px;}
.xa6{left:864.869979px;}
.x44{left:865.949979px;}
.x62{left:886.289979px;}
.x5c{left:889.529979px;}
.xa8{left:901.439979px;}
.x7b{left:905.760000px;}
.x65{left:952.559979px;}
.x10{left:961.919979px;}
.x5e{left:964.469979px;}
.x63{left:979.019979px;}
.x3d{left:982.949979px;}
.x40{left:995.429979px;}
.x79{left:997.229979px;}
.x66{left:1018.904979px;}
.x27{left:1033.994979px;}
.x11{left:1037.699979px;}
.xa5{left:1039.499979px;}
.x93{left:1040.729979px;}
.x5b{left:1044.359979px;}
.x5d{left:1049.249979px;}
.x84{left:1058.399979px;}
.x12{left:1060.559979px;}
.x4d{left:1073.129979px;}
.x5f{left:1075.349979px;}
.x64{left:1106.279979px;}
.x3{left:1207.229979px;}
.x2e{left:1211.294979px;}
.x60{left:1234.874979px;}
.x61{left:1266.374979px;}
.x4f{left:1297.979979px;}
.x13{left:1396.229979px;}
@media print{
.v7{vertical-align:-65.152000pt;}
.ve{vertical-align:-49.280000pt;}
.vf{vertical-align:-39.040000pt;}
.v8{vertical-align:-36.480000pt;}
.v3{vertical-align:-31.360000pt;}
.v2{vertical-align:-28.800000pt;}
.v5{vertical-align:-26.240000pt;}
.v9{vertical-align:-23.680000pt;}
.v4{vertical-align:-20.480000pt;}
.vd{vertical-align:-19.200000pt;}
.v16{vertical-align:-17.920007pt;}
.v12{vertical-align:-15.360006pt;}
.va{vertical-align:-12.928000pt;}
.v14{vertical-align:-11.520000pt;}
.v6{vertical-align:-7.296000pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:7.040000pt;}
.v10{vertical-align:10.240000pt;}
.v11{vertical-align:13.440000pt;}
.v13{vertical-align:15.359994pt;}
.v1{vertical-align:28.800000pt;}
.vb{vertical-align:45.440000pt;}
.vc{vertical-align:49.440000pt;}
.ls2{letter-spacing:-9.493333pt;}
.ls20{letter-spacing:-5.386667pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.185067pt;}
.lsb{letter-spacing:-0.168533pt;}
.ls1d{letter-spacing:-0.165867pt;}
.ls1e{letter-spacing:-0.097067pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls27{letter-spacing:-0.070933pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.049280pt;}
.ls25{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.021555pt;}
.ls16{letter-spacing:0.021569pt;}
.ls23{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.037227pt;}
.ls12{letter-spacing:0.080533pt;}
.ls3{letter-spacing:0.096000pt;}
.ls24{letter-spacing:0.102933pt;}
.ls11{letter-spacing:0.108800pt;}
.ls19{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.131627pt;}
.ls13{letter-spacing:0.151040pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.224000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.561280pt;}
.ls28{letter-spacing:15.767553pt;}
.ls26{letter-spacing:15.838721pt;}
.ls1b{letter-spacing:16.478721pt;}
.ls14{letter-spacing:18.832640pt;}
.ls10{letter-spacing:19.121280pt;}
.ls22{letter-spacing:20.244481pt;}
.ls18{letter-spacing:23.680000pt;}
.ls17{letter-spacing:32.588800pt;}
.lse{letter-spacing:40.960000pt;}
.ls2a{letter-spacing:99.094016pt;}
.ls29{letter-spacing:99.152640pt;}
.lsf{letter-spacing:1154.875947pt;}
.ws11{word-spacing:-106.880000pt;}
.ws2{word-spacing:-96.000000pt;}
.ws1b{word-spacing:-80.000000pt;}
.wsb{word-spacing:-74.880000pt;}
.ws15{word-spacing:-59.247360pt;}
.ws49{word-spacing:-53.376000pt;}
.ws6{word-spacing:-47.504640pt;}
.ws1c{word-spacing:-41.564160pt;}
.ws1d{word-spacing:-41.455360pt;}
.ws13{word-spacing:-36.978944pt;}
.ws5{word-spacing:-35.840000pt;}
.ws7{word-spacing:-35.619584pt;}
.ws4{word-spacing:-35.584000pt;}
.ws4a{word-spacing:-29.872640pt;}
.ws14{word-spacing:-26.688000pt;}
.ws32{word-spacing:-24.224000pt;}
.ws30{word-spacing:-24.000000pt;}
.wsc{word-spacing:-23.698944pt;}
.ws8{word-spacing:-23.663360pt;}
.wsd{word-spacing:-21.696000pt;}
.ws12{word-spacing:-21.280000pt;}
.ws29{word-spacing:-21.120000pt;}
.ws42{word-spacing:-20.919573pt;}
.ws17{word-spacing:-20.816640pt;}
.ws3f{word-spacing:-20.791680pt;}
.ws1f{word-spacing:-19.237120pt;}
.ws1{word-spacing:-17.827584pt;}
.ws0{word-spacing:-17.792000pt;}
.ws25{word-spacing:-17.726613pt;}
.ws24{word-spacing:-16.951808pt;}
.ws31{word-spacing:-15.516160pt;}
.ws2f{word-spacing:-15.488000pt;}
.ws40{word-spacing:-14.802944pt;}
.ws34{word-spacing:-14.767360pt;}
.ws1e{word-spacing:-13.885440pt;}
.ws35{word-spacing:-13.379584pt;}
.ws38{word-spacing:-13.344000pt;}
.wsa{word-spacing:-13.306880pt;}
.ws2e{word-spacing:-12.672000pt;}
.ws20{word-spacing:-12.005120pt;}
.ws37{word-spacing:-0.976000pt;}
.ws39{word-spacing:-0.768000pt;}
.wsf{word-spacing:-0.672000pt;}
.ws9{word-spacing:-0.576000pt;}
.ws10{word-spacing:-0.106880pt;}
.wse{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws21{word-spacing:0.205867pt;}
.ws45{word-spacing:0.466176pt;}
.ws23{word-spacing:0.470400pt;}
.ws3b{word-spacing:4.842667pt;}
.ws2c{word-spacing:5.888000pt;}
.ws2b{word-spacing:14.150400pt;}
.ws2d{word-spacing:25.216000pt;}
.ws28{word-spacing:28.469052pt;}
.ws3a{word-spacing:28.712533pt;}
.ws27{word-spacing:34.646807pt;}
.ws1a{word-spacing:38.160000pt;}
.ws2a{word-spacing:43.392000pt;}
.ws19{word-spacing:55.440000pt;}
.ws16{word-spacing:62.794453pt;}
.ws36{word-spacing:125.003307pt;}
.ws33{word-spacing:126.283307pt;}
.ws43{word-spacing:141.916160pt;}
.ws44{word-spacing:144.196181pt;}
.ws47{word-spacing:146.003371pt;}
.ws41{word-spacing:164.689493pt;}
.ws3e{word-spacing:167.976704pt;}
.ws3c{word-spacing:272.693333pt;}
.ws48{word-spacing:322.929493pt;}
.ws18{word-spacing:641.038080pt;}
.ws26{word-spacing:924.773120pt;}
.ws22{word-spacing:1189.135360pt;}
.ws46{word-spacing:1638.790187pt;}
.ws3d{word-spacing:1986.704853pt;}
._19{margin-left:-394.016000pt;}
._34{margin-left:-30.706133pt;}
._c{margin-left:-22.116907pt;}
._35{margin-left:-20.491520pt;}
._10{margin-left:-18.640000pt;}
._e{margin-left:-16.197120pt;}
._14{margin-left:-15.137280pt;}
._8{margin-left:-13.824000pt;}
._7{margin-left:-12.458667pt;}
._21{margin-left:-11.341013pt;}
._2{margin-left:-10.346667pt;}
._0{margin-left:-9.301333pt;}
._33{margin-left:-8.387285pt;}
._6{margin-left:-7.424000pt;}
._3{margin-left:-6.144000pt;}
._f{margin-left:-4.976640pt;}
._d{margin-left:-3.736747pt;}
._5{margin-left:-2.208000pt;}
._4{margin-left:-0.906667pt;}
._1{width:1.248000pt;}
._9{width:2.666667pt;}
._b{width:4.267947pt;}
._1b{width:5.423787pt;}
._a{width:7.776000pt;}
._1d{width:8.924800pt;}
._28{width:15.733547pt;}
._18{width:18.097067pt;}
._17{width:20.460800pt;}
._13{width:23.029376pt;}
._12{width:24.938667pt;}
._16{width:27.583573pt;}
._1a{width:36.364800pt;}
._31{width:43.139115pt;}
._32{width:45.514453pt;}
._22{width:69.289387pt;}
._2f{width:92.181333pt;}
._26{width:140.597333pt;}
._1c{width:147.454208pt;}
._2d{width:171.732907pt;}
._30{width:176.111957pt;}
._2e{width:181.380779pt;}
._23{width:184.586667pt;}
._27{width:193.973333pt;}
._2a{width:198.393771pt;}
._2b{width:216.598613pt;}
._29{width:219.994112pt;}
._1e{width:250.696533pt;}
._25{width:260.645333pt;}
._24{width:295.349333pt;}
._20{width:327.690667pt;}
._1f{width:346.314667pt;}
._11{width:990.432213pt;}
._2c{width:1280.373333pt;}
._15{width:4158.902613pt;}
.fs30{font-size:32.000000pt;}
.fs26{font-size:33.171191pt;}
.fs29{font-size:33.192187pt;}
.fs1f{font-size:35.840000pt;}
.fs1c{font-size:42.880000pt;}
.fs1d{font-size:43.008000pt;}
.fs28{font-size:44.225185pt;}
.fs2a{font-size:44.253177pt;}
.fs27{font-size:44.270498pt;}
.fs2f{font-size:48.000000pt;}
.fs2e{font-size:48.128000pt;}
.fs32{font-size:49.920000pt;}
.fs25{font-size:52.480000pt;}
.fs1e{font-size:53.120000pt;}
.fs20{font-size:53.248000pt;}
.fsf{font-size:56.960000pt;}
.fs2c{font-size:57.600000pt;}
.fsd{font-size:58.880000pt;}
.fse{font-size:59.008000pt;}
.fs1b{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:64.128000pt;}
.fs2b{font-size:70.400000pt;}
.fs2d{font-size:70.528000pt;}
.fs13{font-size:71.040000pt;}
.fs10{font-size:74.880000pt;}
.fs21{font-size:75.008000pt;}
.fs24{font-size:78.080000pt;}
.fs18{font-size:80.000000pt;}
.fs31{font-size:80.128000pt;}
.fsc{font-size:85.120000pt;}
.fs11{font-size:85.248000pt;}
.fs0{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.fs34{font-size:97.920000pt;}
.fs35{font-size:98.048000pt;}
.fs19{font-size:99.840000pt;}
.fs12{font-size:106.880000pt;}
.fs36{font-size:107.008000pt;}
.fsa{font-size:128.000000pt;}
.fs9{font-size:128.128000pt;}
.fs17{font-size:133.120000pt;}
.fs14{font-size:133.248000pt;}
.fs15{font-size:138.880000pt;}
.fs16{font-size:139.008000pt;}
.fs6{font-size:149.120000pt;}
.fs7{font-size:149.248000pt;}
.fs22{font-size:160.000000pt;}
.fs23{font-size:160.128000pt;}
.fs8{font-size:170.880000pt;}
.fsb{font-size:171.008000pt;}
.fs1a{font-size:186.880000pt;}
.fs33{font-size:192.000000pt;}
.fs4{font-size:213.120000pt;}
.fs5{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:2.180737pt;}
.yb7{bottom:2.790457pt;}
.y146{bottom:4.320000pt;}
.y1af{bottom:5.146667pt;}
.y19e{bottom:5.373333pt;}
.yd0{bottom:6.624000pt;}
.y156{bottom:7.680000pt;}
.y18d{bottom:8.480000pt;}
.y13e{bottom:9.213333pt;}
.y5a{bottom:9.440000pt;}
.y99{bottom:9.792000pt;}
.y9e{bottom:12.767377pt;}
.yac{bottom:12.775443pt;}
.yfa{bottom:12.960000pt;}
.y1a{bottom:13.792000pt;}
.ydf{bottom:14.493333pt;}
.y17e{bottom:15.066667pt;}
.ya9{bottom:15.531798pt;}
.yb6{bottom:15.541613pt;}
.y7{bottom:15.840000pt;}
.y73{bottom:17.024000pt;}
.y9f{bottom:20.037681pt;}
.yad{bottom:20.050349pt;}
.y164{bottom:20.608000pt;}
.y1ad{bottom:20.893333pt;}
.y153{bottom:21.312000pt;}
.y12d{bottom:21.946667pt;}
.yec{bottom:22.752000pt;}
.y134{bottom:25.312000pt;}
.y27{bottom:25.344000pt;}
.y5b{bottom:26.720000pt;}
.y90{bottom:27.072000pt;}
.y19c{bottom:27.333333pt;}
.y13c{bottom:28.226667pt;}
.y18b{bottom:28.413333pt;}
.y4e{bottom:29.632000pt;}
.ya0{bottom:30.900532pt;}
.yce{bottom:30.944000pt;}
.yae{bottom:32.275047pt;}
.y5d{bottom:34.112000pt;}
.y98{bottom:35.392000pt;}
.y1a5{bottom:36.800000pt;}
.y17c{bottom:37.026667pt;}
.yf8{bottom:37.306667pt;}
.ye1{bottom:38.656000pt;}
.ya1{bottom:41.763384pt;}
.ydd{bottom:41.786667pt;}
.y44{bottom:41.792000pt;}
.y10e{bottom:42.176000pt;}
.y136{bottom:42.533333pt;}
.y8f{bottom:43.072000pt;}
.y194{bottom:43.200000pt;}
.y12b{bottom:44.093333pt;}
.y182{bottom:44.293333pt;}
.yaf{bottom:44.499745pt;}
.y162{bottom:44.960000pt;}
.y151{bottom:45.664000pt;}
.yc8{bottom:46.848000pt;}
.y89{bottom:50.048000pt;}
.y26{bottom:50.944000pt;}
.y11c{bottom:52.026667pt;}
.ya2{bottom:52.626235pt;}
.y174{bottom:52.933333pt;}
.yf2{bottom:53.213333pt;}
.y133{bottom:54.272000pt;}
.yb0{bottom:56.724443pt;}
.ydc{bottom:57.120000pt;}
.y8e{bottom:59.072000pt;}
.ye2{bottom:59.200000pt;}
.y6{bottom:59.584000pt;}
.y77{bottom:60.128000pt;}
.y173{bottom:60.733333pt;}
.y15a{bottom:60.864000pt;}
.y14a{bottom:61.536000pt;}
.y121{bottom:61.573333pt;}
.y5e{bottom:62.272000pt;}
.ya3{bottom:63.489086pt;}
.y88{bottom:66.048000pt;}
.y10d{bottom:66.176000pt;}
.y43{bottom:67.392000pt;}
.y111{bottom:67.933333pt;}
.y1a6{bottom:68.093333pt;}
.yb1{bottom:68.950063pt;}
.y13d{bottom:68.960000pt;}
.y4d{bottom:69.632000pt;}
.y183{bottom:69.693333pt;}
.y12{bottom:70.816000pt;}
.yd4{bottom:73.026667pt;}
.ycf{bottom:73.536000pt;}
.ya4{bottom:74.324303pt;}
.y195{bottom:74.813333pt;}
.y8d{bottom:75.072000pt;}
.y25{bottom:76.896000pt;}
.y9c{bottom:77.344000pt;}
.ye3{bottom:79.744000pt;}
.y137{bottom:79.866667pt;}
.yb2{bottom:81.174761pt;}
.y87{bottom:82.048000pt;}
.yc9{bottom:82.400000pt;}
.y132{bottom:83.072000pt;}
.y175{bottom:83.360000pt;}
.y16{bottom:83.616000pt;}
.yc7{bottom:83.776000pt;}
.yed{bottom:83.936000pt;}
.ya5{bottom:85.187154pt;}
.y122{bottom:87.200000pt;}
.y112{bottom:88.480000pt;}
.y5{bottom:89.184000pt;}
.y10c{bottom:90.176000pt;}
.y19{bottom:90.208000pt;}
.y8c{bottom:91.072000pt;}
.y42{bottom:92.992000pt;}
.yb3{bottom:93.399460pt;}
.yf3{bottom:94.880000pt;}
.y184{bottom:95.106667pt;}
.yf9{bottom:95.173333pt;}
.y15b{bottom:95.296000pt;}
.ya6{bottom:96.050005pt;}
.y1a7{bottom:99.426667pt;}
.ye4{bottom:100.288000pt;}
.y1ae{bottom:100.346667pt;}
.yd5{bottom:101.026667pt;}
.y14b{bottom:102.144000pt;}
.y17d{bottom:102.173333pt;}
.y24{bottom:102.656000pt;}
.y18c{bottom:105.306667pt;}
.yb4{bottom:105.624158pt;}
.y196{bottom:106.426667pt;}
.yde{bottom:106.693333pt;}
.ya7{bottom:106.912857pt;}
.y8b{bottom:107.072000pt;}
.y113{bottom:109.026667pt;}
.y11{bottom:109.216000pt;}
.y4c{bottom:109.664000pt;}
.y19d{bottom:111.866667pt;}
.y123{bottom:112.800000pt;}
.y11d{bottom:113.213333pt;}
.y176{bottom:113.786667pt;}
.y10b{bottom:114.208000pt;}
.y72{bottom:114.976000pt;}
.y172{bottom:115.106667pt;}
.y138{bottom:117.213333pt;}
.y149{bottom:117.600000pt;}
.ya8{bottom:117.775708pt;}
.yb5{bottom:117.850239pt;}
.yca{bottom:117.952000pt;}
.y12c{bottom:119.200000pt;}
.y163{bottom:119.936000pt;}
.y185{bottom:120.506667pt;}
.ye5{bottom:120.800000pt;}
.y15{bottom:122.016000pt;}
.y152{bottom:122.560000pt;}
.y8a{bottom:123.072000pt;}
.y4{bottom:125.184000pt;}
.y40{bottom:125.216000pt;}
.y31{bottom:126.080000pt;}
.y23{bottom:128.256000pt;}
.y18{bottom:128.640000pt;}
.yd6{bottom:129.026667pt;}
.y114{bottom:129.533333pt;}
.y15c{bottom:129.760000pt;}
.y159{bottom:129.853333pt;}
.y1a8{bottom:130.746667pt;}
.y5f{bottom:131.008000pt;}
.yf4{bottom:136.573333pt;}
.y197{bottom:138.013333pt;}
.y10a{bottom:138.213333pt;}
.y124{bottom:138.426667pt;}
.y5c{bottom:140.066667pt;}
.y131{bottom:140.666667pt;}
.ye6{bottom:141.346667pt;}
.y14c{bottom:142.746667pt;}
.y71{bottom:143.773333pt;}
.y177{bottom:144.226667pt;}
.y63{bottom:144.453333pt;}
.y186{bottom:145.920000pt;}
.y78{bottom:146.720000pt;}
.y10{bottom:147.653333pt;}
.y4b{bottom:149.666667pt;}
.y115{bottom:150.080000pt;}
.ycb{bottom:153.533333pt;}
.y69{bottom:154.013333pt;}
.y139{bottom:154.560000pt;}
.yc5{bottom:154.813333pt;}
.y9d{bottom:156.589336pt;}
.yd7{bottom:157.026667pt;}
.yab{bottom:160.109626pt;}
.ye7{bottom:161.893333pt;}
.y3{bottom:162.013333pt;}
.y1a9{bottom:162.053333pt;}
.y109{bottom:162.213333pt;}
.y125{bottom:164.026667pt;}
.y15d{bottom:164.186667pt;}
.yc6{bottom:167.173333pt;}
.y62{bottom:168.453333pt;}
.y130{bottom:169.506667pt;}
.y198{bottom:169.626667pt;}
.y116{bottom:170.626667pt;}
.y187{bottom:171.333333pt;}
.y70{bottom:172.613333pt;}
.y178{bottom:174.653333pt;}
.y193{bottom:175.680000pt;}
.y28{bottom:177.413333pt;}
.yf5{bottom:178.266667pt;}
.y1a4{bottom:180.800000pt;}
.y16f{bottom:181.440000pt;}
.ye8{bottom:182.426667pt;}
.y14d{bottom:183.360000pt;}
.y58{bottom:183.933333pt;}
.yd8{bottom:185.026667pt;}
.y108{bottom:186.213333pt;}
.y1bd{bottom:187.066667pt;}
.y3f{bottom:187.613333pt;}
.yc4{bottom:188.773333pt;}
.ycc{bottom:189.093333pt;}
.y14{bottom:189.306667pt;}
.y126{bottom:189.666667pt;}
.y117{bottom:191.173333pt;}
.y13a{bottom:191.906667pt;}
.y76{bottom:191.973333pt;}
.y61{bottom:192.453333pt;}
.y1aa{bottom:193.373333pt;}
.y188{bottom:196.706667pt;}
.y12f{bottom:198.306667pt;}
.y15e{bottom:198.653333pt;}
.y2{bottom:199.493333pt;}
.y1bf{bottom:199.520000pt;}
.y199{bottom:201.253333pt;}
.ye9{bottom:202.973333pt;}
.y179{bottom:205.120000pt;}
.yf{bottom:209.506667pt;}
.y1b2{bottom:209.760000pt;}
.y107{bottom:210.213333pt;}
.y2e{bottom:211.386667pt;}
.y1a2{bottom:211.493333pt;}
.y118{bottom:211.706667pt;}
.y57{bottom:212.733333pt;}
.yd9{bottom:213.026667pt;}
.yef{bottom:215.106667pt;}
.y127{bottom:215.266667pt;}
.y181{bottom:216.413333pt;}
.y60{bottom:216.453333pt;}
.y75{bottom:216.733333pt;}
.y1bc{bottom:219.066667pt;}
.yf6{bottom:219.973333pt;}
.y189{bottom:222.106667pt;}
.y1b1{bottom:223.226667pt;}
.yea{bottom:223.520000pt;}
.y14e{bottom:224.000000pt;}
.ycd{bottom:224.640000pt;}
.y1ab{bottom:224.706667pt;}
.y1a1{bottom:226.426667pt;}
.y1b8{bottom:227.680000pt;}
.y1{bottom:228.293333pt;}
.y13b{bottom:229.253333pt;}
.y6f{bottom:230.213333pt;}
.yee{bottom:231.546667pt;}
.y119{bottom:232.253333pt;}
.y19a{bottom:232.826667pt;}
.y3e{bottom:233.053333pt;}
.y15f{bottom:233.093333pt;}
.y110{bottom:234.400000pt;}
.y120{bottom:234.720000pt;}
.y17{bottom:234.853333pt;}
.y4a{bottom:235.493333pt;}
.y17a{bottom:235.546667pt;}
.y180{bottom:235.746667pt;}
.y171{bottom:236.640000pt;}
.y1b0{bottom:236.706667pt;}
.yc3{bottom:238.653333pt;}
.y2d{bottom:240.186667pt;}
.y13{bottom:240.506667pt;}
.y128{bottom:240.893333pt;}
.yda{bottom:241.026667pt;}
.yff{bottom:241.120000pt;}
.y1a0{bottom:241.413333pt;}
.y56{bottom:241.573333pt;}
.yeb{bottom:244.066667pt;}
.y11f{bottom:244.386667pt;}
.y18a{bottom:247.520000pt;}
.y170{bottom:250.560000pt;}
.y142{bottom:250.693333pt;}
.y1be{bottom:250.746667pt;}
.y1bb{bottom:251.106667pt;}
.y93{bottom:252.186667pt;}
.y22{bottom:252.546667pt;}
.y11a{bottom:252.800000pt;}
.y68{bottom:252.933333pt;}
.y17f{bottom:255.106667pt;}
.yfe{bottom:255.520000pt;}
.y18e{bottom:255.680000pt;}
.y1ac{bottom:256.000000pt;}
.y19f{bottom:256.346667pt;}
.y1b7{bottom:256.640000pt;}
.yd1{bottom:257.026667pt;}
.y6e{bottom:259.013333pt;}
.y11e{bottom:260.826667pt;}
.y135{bottom:261.280000pt;}
.yf7{bottom:261.666667pt;}
.y19b{bottom:264.453333pt;}
.y85{bottom:264.506667pt;}
.y14f{bottom:264.613333pt;}
.y17b{bottom:265.986667pt;}
.y141{bottom:266.146667pt;}
.y92{bottom:266.426667pt;}
.y129{bottom:266.493333pt;}
.y160{bottom:267.546667pt;}
.yc2{bottom:267.613333pt;}
.y2c{bottom:268.666667pt;}
.ydb{bottom:269.026667pt;}
.y55{bottom:270.373333pt;}
.y11b{bottom:273.346667pt;}
.y166{bottom:274.173333pt;}
.y158{bottom:274.946667pt;}
.y12e{bottom:275.906667pt;}
.y155{bottom:276.026667pt;}
.y3d{bottom:276.186667pt;}
.y49{bottom:277.093333pt;}
.y84{bottom:277.306667pt;}
.y148{bottom:277.693333pt;}
.yfc{bottom:280.613333pt;}
.y140{bottom:281.573333pt;}
.y67{bottom:281.733333pt;}
.yf1{bottom:283.200000pt;}
.y1b6{bottom:285.440000pt;}
.y157{bottom:288.866667pt;}
.y37{bottom:289.306667pt;}
.y83{bottom:290.146667pt;}
.y165{bottom:290.213333pt;}
.y154{bottom:290.853333pt;}
.y147{bottom:291.653333pt;}
.y12a{bottom:292.093333pt;}
.ya{bottom:295.133333pt;}
.y13f{bottom:297.026667pt;}
.y1ba{bottom:297.506667pt;}
.ybf{bottom:297.693333pt;}
.y54{bottom:299.173333pt;}
.y21{bottom:299.360000pt;}
.yd3{bottom:299.840000pt;}
.y91{bottom:300.826667pt;}
.yfb{bottom:301.946667pt;}
.y161{bottom:302.013333pt;}
.y82{bottom:302.946667pt;}
.y150{bottom:305.213333pt;}
.yc0{bottom:307.453333pt;}
.yc1{bottom:310.013333pt;}
.ye{bottom:310.533333pt;}
.y66{bottom:310.560000pt;}
.y1b5{bottom:314.240000pt;}
.y81{bottom:315.746667pt;}
.y6d{bottom:316.640000pt;}
.y36{bottom:318.146667pt;}
.y48{bottom:318.720000pt;}
.y145{bottom:325.533333pt;}
.y3a{bottom:327.133333pt;}
.y53{bottom:327.973333pt;}
.y1c2{bottom:328.093333pt;}
.y80{bottom:328.546667pt;}
.y1b9{bottom:329.506667pt;}
.y86{bottom:337.186667pt;}
.y65{bottom:339.360000pt;}
.y7f{bottom:341.346667pt;}
.y1b4{bottom:343.040000pt;}
.y6c{bottom:345.440000pt;}
.y35{bottom:346.946667pt;}
.y3c{bottom:353.626667pt;}
.y7e{bottom:354.146667pt;}
.yd{bottom:355.333333pt;}
.y1c1{bottom:356.893333pt;}
.yf0{bottom:357.306667pt;}
.y9{bottom:359.173333pt;}
.y101{bottom:359.293333pt;}
.y47{bottom:360.320000pt;}
.y30{bottom:362.106667pt;}
.y7d{bottom:366.946667pt;}
.ybd{bottom:371.866667pt;}
.y6b{bottom:374.240000pt;}
.ybc{bottom:374.426667pt;}
.y34{bottom:375.746667pt;}
.ybe{bottom:384.026667pt;}
.y7a{bottom:384.093333pt;}
.y1c0{bottom:385.693333pt;}
.y2f{bottom:391.066667pt;}
.y7c{bottom:391.360000pt;}
.y167{bottom:397.826667pt;}
.yc{bottom:400.133333pt;}
.y1b3{bottom:400.666667pt;}
.y46{bottom:401.920000pt;}
.y6a{bottom:403.040000pt;}
.y59{bottom:404.186667pt;}
.y33{bottom:404.546667pt;}
.y79{bottom:409.693333pt;}
.y7b{bottom:416.960000pt;}
.y38{bottom:417.733333pt;}
.y39{bottom:418.213333pt;}
.y8{bottom:423.173333pt;}
.y32{bottom:433.346667pt;}
.y41{bottom:434.813333pt;}
.y3b{bottom:436.706667pt;}
.y97{bottom:441.213333pt;}
.y106{bottom:450.266667pt;}
.y192{bottom:454.333333pt;}
.y16e{bottom:461.146667pt;}
.y96{bottom:463.613333pt;}
.ybb{bottom:464.480000pt;}
.y18f{bottom:465.986667pt;}
.y64{bottom:472.506667pt;}
.y143{bottom:472.573333pt;}
.y105{bottom:474.266667pt;}
.y16c{bottom:477.946667pt;}
.y95{bottom:486.013333pt;}
.y51{bottom:488.733333pt;}
.yba{bottom:493.440000pt;}
.y104{bottom:498.266667pt;}
.y94{bottom:508.413333pt;}
.y20{bottom:518.173333pt;}
.yb9{bottom:522.266667pt;}
.y169{bottom:524.480000pt;}
.y16b{bottom:525.946667pt;}
.y50{bottom:527.133333pt;}
.y2b{bottom:532.386667pt;}
.y144{bottom:541.373333pt;}
.y168{bottom:550.080000pt;}
.yb8{bottom:551.066667pt;}
.y191{bottom:551.613333pt;}
.yb{bottom:553.573333pt;}
.yd2{bottom:556.293333pt;}
.y1f{bottom:556.573333pt;}
.y1c{bottom:560.226667pt;}
.yfd{bottom:564.000000pt;}
.y103{bottom:564.226667pt;}
.y4f{bottom:565.533333pt;}
.y2a{bottom:570.786667pt;}
.y16a{bottom:573.986667pt;}
.y74{bottom:576.413333pt;}
.y52{bottom:579.520000pt;}
.y1a3{bottom:580.453333pt;}
.y102{bottom:584.226667pt;}
.y100{bottom:586.173333pt;}
.y1b{bottom:598.626667pt;}
.y190{bottom:599.613333pt;}
.y29{bottom:609.213333pt;}
.y10f{bottom:610.013333pt;}
.y1e{bottom:613.506667pt;}
.y9b{bottom:624.960000pt;}
.y45{bottom:632.573333pt;}
.y1d{bottom:664.706667pt;}
.y9a{bottom:672.960000pt;}
.ye0{bottom:682.880000pt;}
.y16d{bottom:683.973333pt;}
.h30{height:24.246716pt;}
.h34{height:24.262063pt;}
.h32{height:32.326710pt;}
.h35{height:32.347171pt;}
.h31{height:32.359832pt;}
.h4a{height:35.085938pt;}
.h44{height:35.179500pt;}
.h40{height:38.828437pt;}
.h41{height:38.922000pt;}
.h53{height:39.943750pt;}
.h4f{height:43.038750pt;}
.h50{height:43.132312pt;}
.h24{height:43.905937pt;}
.h25{height:44.037000pt;}
.h47{height:46.781250pt;}
.h51{height:46.874812pt;}
.h3{height:48.000000pt;}
.h2{height:48.096000pt;}
.h3b{height:48.937500pt;}
.h26{height:54.390938pt;}
.h27{height:54.522000pt;}
.h42{height:54.734063pt;}
.h43{height:54.827625pt;}
.h12{height:56.160000pt;}
.h4b{height:57.890625pt;}
.h4c{height:57.983250pt;}
.h39{height:59.812500pt;}
.h3d{height:59.921250pt;}
.h1f{height:60.000000pt;}
.he{height:60.288750pt;}
.hf{height:60.419812pt;}
.h22{height:61.110000pt;}
.h18{height:62.676250pt;}
.h45{height:63.656250pt;}
.h11{height:63.840000pt;}
.h21{height:68.411875pt;}
.h36{height:69.468750pt;}
.h37{height:69.561375pt;}
.h5e{height:70.171875pt;}
.h3c{height:70.359375pt;}
.h13{height:70.687500pt;}
.h16{height:70.781750pt;}
.h4{height:72.000000pt;}
.h1e{height:72.096000pt;}
.h5{height:72.187500pt;}
.h3a{height:73.252500pt;}
.h28{height:74.477812pt;}
.h2b{height:74.605125pt;}
.h1{height:76.800000pt;}
.h3e{height:77.156250pt;}
.h2e{height:78.300625pt;}
.h4d{height:80.160000pt;}
.h5d{height:80.256000pt;}
.h38{height:81.562500pt;}
.h23{height:84.662813pt;}
.h10{height:87.156562pt;}
.h54{height:91.702812pt;}
.hc{height:96.000000pt;}
.hb{height:96.096000pt;}
.h19{height:98.114250pt;}
.h14{height:98.296875pt;}
.h15{height:98.427937pt;}
.h1c{height:99.840000pt;}
.h1d{height:99.936000pt;}
.h1a{height:104.160000pt;}
.h1b{height:104.256000pt;}
.h17{height:106.305937pt;}
.h8{height:111.840000pt;}
.h9{height:111.936000pt;}
.h2c{height:120.000000pt;}
.h2d{height:120.096000pt;}
.h58{height:120.312500pt;}
.h59{height:120.408750pt;}
.ha{height:128.160000pt;}
.hd{height:128.256000pt;}
.h29{height:132.596562pt;}
.h2f{height:136.063997pt;}
.h33{height:136.157041pt;}
.h2a{height:136.596563pt;}
.h20{height:140.160000pt;}
.h5c{height:144.000000pt;}
.h6{height:159.840000pt;}
.h7{height:159.936000pt;}
.h48{height:265.440000pt;}
.h5b{height:274.080000pt;}
.h57{height:283.680000pt;}
.h46{height:288.000000pt;}
.h5a{height:291.360000pt;}
.h3f{height:294.720000pt;}
.h52{height:317.440000pt;}
.h56{height:321.120000pt;}
.h55{height:324.480000pt;}
.h49{height:333.920000pt;}
.h4e{height:337.280000pt;}
.h0{height:720.000000pt;}
.w2{width:177.958015pt;}
.w8{width:352.800000pt;}
.w3{width:363.360000pt;}
.w6{width:363.520000pt;}
.w4{width:366.560000pt;}
.wc{width:397.760000pt;}
.wd{width:401.760000pt;}
.we{width:423.680000pt;}
.wb{width:432.800000pt;}
.w7{width:439.840000pt;}
.w5{width:465.280000pt;}
.wa{width:474.880000pt;}
.w9{width:475.040000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x59{left:15.908718pt;}
.x45{left:17.919981pt;}
.x58{left:19.395207pt;}
.x69{left:21.376000pt;}
.x57{left:24.015446pt;}
.x81{left:25.733333pt;}
.x1{left:27.903981pt;}
.x3a{left:30.047981pt;}
.x89{left:31.066667pt;}
.x56{left:32.315359pt;}
.x1b{left:35.519981pt;}
.x80{left:36.893333pt;}
.x9b{left:37.786667pt;}
.x36{left:39.231981pt;}
.x33{left:40.927981pt;}
.x50{left:43.327981pt;}
.x68{left:44.608000pt;}
.x2f{left:45.887981pt;}
.x34{left:47.167981pt;}
.x15{left:48.351981pt;}
.x32{left:50.687981pt;}
.x7c{left:52.026667pt;}
.x6c{left:54.053333pt;}
.x8f{left:56.613333pt;}
.x5{left:57.919981pt;}
.xa1{left:59.840000pt;}
.x24{left:61.119981pt;}
.x1e{left:62.719981pt;}
.x7{left:63.647981pt;}
.x39{left:64.639981pt;}
.x31{left:69.087981pt;}
.x2{left:70.623981pt;}
.x90{left:71.813333pt;}
.x6d{left:74.333333pt;}
.x6e{left:77.306667pt;}
.x67{left:78.400000pt;}
.x74{left:79.333333pt;}
.x9c{left:80.293333pt;}
.xa2{left:81.920000pt;}
.x9e{left:82.853333pt;}
.x8b{left:90.213333pt;}
.x4{left:92.639981pt;}
.x7a{left:97.023981pt;}
.x35{left:99.231981pt;}
.xa4{left:102.813333pt;}
.x71{left:106.720000pt;}
.x17{left:107.871981pt;}
.x1c{left:109.119981pt;}
.x38{left:115.839981pt;}
.x16{left:117.471981pt;}
.x1d{left:119.039981pt;}
.x43{left:120.223981pt;}
.x7e{left:121.600000pt;}
.x37{left:129.119981pt;}
.x73{left:130.653333pt;}
.x85{left:142.146648pt;}
.x6f{left:144.320000pt;}
.x82{left:146.906667pt;}
.x30{left:150.559981pt;}
.xb{left:157.626648pt;}
.x18{left:159.066648pt;}
.x75{left:163.106648pt;}
.x3b{left:164.986648pt;}
.xa{left:167.546648pt;}
.x6{left:168.506648pt;}
.x9d{left:170.053333pt;}
.x9{left:175.546648pt;}
.x8a{left:178.013333pt;}
.x1f{left:179.706648pt;}
.x4c{left:183.133314pt;}
.xa3{left:184.093333pt;}
.x7d{left:185.786667pt;}
.x54{left:193.346648pt;}
.x95{left:196.826648pt;}
.x8{left:199.839981pt;}
.x55{left:216.826667pt;}
.x25{left:231.013314pt;}
.x41{left:240.133314pt;}
.x97{left:250.373333pt;}
.x98{left:265.093333pt;}
.x3e{left:280.959981pt;}
.x91{left:282.786648pt;}
.x53{left:301.439981pt;}
.x99{left:305.053333pt;}
.x9a{left:309.053333pt;}
.x49{left:313.146648pt;}
.x8c{left:317.053333pt;}
.x78{left:329.146648pt;}
.x77{left:330.173314pt;}
.x87{left:333.920000pt;}
.x8e{left:339.546667pt;}
.x8d{left:341.853333pt;}
.x88{left:358.720000pt;}
.x94{left:361.626648pt;}
.x19{left:364.933314pt;}
.x42{left:394.586648pt;}
.x1a{left:417.599981pt;}
.x46{left:419.359981pt;}
.x70{left:421.600000pt;}
.x51{left:425.346648pt;}
.x3f{left:440.959981pt;}
.x20{left:443.333314pt;}
.x14{left:446.213314pt;}
.x6b{left:456.640000pt;}
.x47{left:459.226648pt;}
.x7f{left:464.480000pt;}
.x4e{left:476.093314pt;}
.x29{left:481.026648pt;}
.xc{left:481.986648pt;}
.x5a{left:502.160000pt;}
.x2d{left:513.186648pt;}
.xa0{left:527.613314pt;}
.x76{left:534.426648pt;}
.xe{left:545.119981pt;}
.xd{left:551.133314pt;}
.x48{left:558.559981pt;}
.x52{left:564.093314pt;}
.x21{left:576.413314pt;}
.x72{left:579.173314pt;}
.x2a{left:582.693314pt;}
.xf{left:596.319981pt;}
.x96{left:599.680000pt;}
.x9f{left:603.653314pt;}
.x28{left:625.506648pt;}
.x3c{left:631.973314pt;}
.x6a{left:635.106648pt;}
.x4b{left:637.306648pt;}
.x26{left:655.066648pt;}
.x86{left:663.520000pt;}
.x22{left:675.933314pt;}
.x83{left:697.986648pt;}
.x23{left:706.813314pt;}
.x4a{left:716.066648pt;}
.x92{left:743.359981pt;}
.x2c{left:744.706648pt;}
.x2b{left:746.146648pt;}
.xa7{left:755.333314pt;}
.xa6{left:768.773314pt;}
.x44{left:769.733314pt;}
.x62{left:787.813314pt;}
.x5c{left:790.693314pt;}
.xa8{left:801.279981pt;}
.x7b{left:805.120000pt;}
.x65{left:846.719981pt;}
.x10{left:855.039981pt;}
.x5e{left:857.306648pt;}
.x63{left:870.239981pt;}
.x3d{left:873.733314pt;}
.x40{left:884.826648pt;}
.x79{left:886.426648pt;}
.x66{left:905.693314pt;}
.x27{left:919.106648pt;}
.x11{left:922.399981pt;}
.xa5{left:923.999981pt;}
.x93{left:925.093314pt;}
.x5b{left:928.319981pt;}
.x5d{left:932.666648pt;}
.x84{left:940.799981pt;}
.x12{left:942.719981pt;}
.x4d{left:953.893314pt;}
.x5f{left:955.866648pt;}
.x64{left:983.359981pt;}
.x3{left:1073.093314pt;}
.x2e{left:1076.706648pt;}
.x60{left:1097.666648pt;}
.x61{left:1125.666648pt;}
.x4f{left:1153.759981pt;}
.x13{left:1241.093314pt;}
}




    .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; }
  