
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffd;src:url('chunks/assets/font_24b78af9815ac1b283b8b572.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_941a7cbad2adc21dab1cb069.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.727000;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_0a2fe9af6e05ce8090d91266.woff2')format("woff");}.fff{font-family:fff;line-height:0.046000;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_bd026874bb5c57c08179e639.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.697000;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_419a3f641822acc3317f11fa.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.683000;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:ff12;src:url('chunks/assets/font_b59b67ed5d4c88a45a9395ac.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.932000;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
.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);}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:9.264000px;}
.v5{vertical-align:10.476000px;}
.v6{vertical-align:19.392000px;}
.v4{vertical-align:20.604000px;}
.v3{vertical-align:22.548000px;}
.v1{vertical-align:23.754000px;}
.v2{vertical-align:44.280000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.002700px;}
.ls4{letter-spacing:0.002712px;}
.ls3{letter-spacing:10.046044px;}
.ls8{letter-spacing:19.985412px;}
.ls9{letter-spacing:21.101412px;}
.ls6{letter-spacing:21.587400px;}
.ls7{letter-spacing:21.796884px;}
.ls1{letter-spacing:22.685412px;}
.ls5{letter-spacing:24.071976px;}
.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;}
}
.ws57{word-spacing:-65.454600px;}
.ws4e{word-spacing:-42.637126px;}
.ws85{word-spacing:-22.673473px;}
.ws7a{word-spacing:-21.888018px;}
.ws48{word-spacing:-18.183288px;}
.ws49{word-spacing:-0.047821px;}
.ws95{word-spacing:-0.017567px;}
.ws11{word-spacing:0.000000px;}
.ws4d{word-spacing:0.013091px;}
.wsb{word-spacing:13.509286px;}
.ws4{word-spacing:13.748388px;}
.ws68{word-spacing:14.465467px;}
.ws42{word-spacing:14.727285px;}
.ws75{word-spacing:14.792740px;}
.ws3e{word-spacing:15.381831px;}
.ws5c{word-spacing:15.447286px;}
.ws34{word-spacing:16.167286px;}
.ws81{word-spacing:16.232741px;}
.ws1f{word-spacing:16.429105px;}
.ws7{word-spacing:16.557841px;}
.ws65{word-spacing:16.625468px;}
.ws8{word-spacing:16.737168px;}
.ws6b{word-spacing:16.887287px;}
.ws96{word-spacing:17.280014px;}
.wsa{word-spacing:17.454475px;}
.ws80{word-spacing:17.541833px;}
.ws2d{word-spacing:17.607287px;}
.ws5b{word-spacing:17.738197px;}
.ws4a{word-spacing:17.934560px;}
.ws10{word-spacing:17.992456px;}
.ws90{word-spacing:18.000015px;}
.ws35{word-spacing:18.196379px;}
.ws92{word-spacing:18.261833px;}
.ws1e{word-spacing:18.327288px;}
.ws32{word-spacing:18.392743px;}
.ws2e{word-spacing:18.523652px;}
.ws33{word-spacing:18.589106px;}
.ws64{word-spacing:19.047289px;}
.ws8d{word-spacing:19.309107px;}
.ws67{word-spacing:19.374562px;}
.ws3d{word-spacing:19.636380px;}
.ws22{word-spacing:19.767289px;}
.ws6{word-spacing:19.845499px;}
.ws91{word-spacing:19.898198px;}
.ws25{word-spacing:20.029108px;}
.ws93{word-spacing:20.160017px;}
.ws2b{word-spacing:20.225471px;}
.ws5{word-spacing:20.383480px;}
.ws8b{word-spacing:20.618199px;}
.ws7c{word-spacing:20.683654px;}
.ws69{word-spacing:20.880017px;}
.ws76{word-spacing:20.945472px;}
.ws8e{word-spacing:21.141836px;}
.wsc{word-spacing:21.220338px;}
.ws3f{word-spacing:21.272745px;}
.ws97{word-spacing:21.403654px;}
.ws6a{word-spacing:21.469109px;}
.ws94{word-spacing:21.600018px;}
.ws1b{word-spacing:21.665473px;}
.ws13{word-spacing:21.730927px;}
.ws2c{word-spacing:21.861836px;}
.ws62{word-spacing:21.927291px;}
.ws8a{word-spacing:22.189109px;}
.ws66{word-spacing:22.254564px;}
.ws18{word-spacing:22.385473px;}
.wse{word-spacing:22.475626px;}
.ws79{word-spacing:22.516382px;}
.ws73{word-spacing:22.778201px;}
.ws5e{word-spacing:22.843655px;}
.ws24{word-spacing:23.040019px;}
.ws4f{word-spacing:23.105474px;}
.ws9b{word-spacing:23.170928px;}
.ws3{word-spacing:23.236383px;}
.ws2a{word-spacing:23.301838px;}
.wsd{word-spacing:23.312484px;}
.ws59{word-spacing:23.367292px;}
.ws1{word-spacing:23.384371px;}
.ws1c{word-spacing:23.432747px;}
.ws2{word-spacing:23.456102px;}
.ws89{word-spacing:23.498201px;}
.ws4b{word-spacing:23.629111px;}
.ws7d{word-spacing:23.760020px;}
.ws9a{word-spacing:23.825474px;}
.ws70{word-spacing:24.087293px;}
.ws99{word-spacing:24.218202px;}
.ws8f{word-spacing:24.283657px;}
.ws19{word-spacing:24.414566px;}
.ws4c{word-spacing:24.480020px;}
.ws20{word-spacing:24.545475px;}
.ws29{word-spacing:24.610930px;}
.ws45{word-spacing:24.676384px;}
.ws39{word-spacing:24.807293px;}
.ws1a{word-spacing:24.872748px;}
.ws9{word-spacing:24.926425px;}
.ws2f{word-spacing:24.938203px;}
.ws82{word-spacing:25.069112px;}
.ws58{word-spacing:25.134566px;}
.ws61{word-spacing:25.200021px;}
.ws23{word-spacing:25.330930px;}
.ws36{word-spacing:25.527294px;}
.ws6c{word-spacing:25.592749px;}
.ws17{word-spacing:25.723658px;}
.ws63{word-spacing:25.920022px;}
.ws3a{word-spacing:26.116385px;}
.ws41{word-spacing:26.181840px;}
.ws5d{word-spacing:26.247295px;}
.ws7e{word-spacing:26.312749px;}
.ws9f{word-spacing:26.443658px;}
.ws83{word-spacing:26.509113px;}
.ws28{word-spacing:26.640022px;}
.ws44{word-spacing:26.705477px;}
.ws77{word-spacing:26.827469px;}
.ws21{word-spacing:26.899200px;}
.ws3c{word-spacing:26.901841px;}
.ws88{word-spacing:26.967295px;}
.ws87{word-spacing:27.032750px;}
.ws30{word-spacing:27.229114px;}
.ws15{word-spacing:27.490932px;}
.ws74{word-spacing:27.556387px;}
.wsf{word-spacing:27.556552px;}
.ws27{word-spacing:27.687296px;}
.ws84{word-spacing:27.949114px;}
.ws9c{word-spacing:28.145478px;}
.ws55{word-spacing:28.276387px;}
.ws46{word-spacing:28.341842px;}
.ws72{word-spacing:28.407296px;}
.ws38{word-spacing:28.538206px;}
.ws78{word-spacing:28.603660px;}
.ws98{word-spacing:28.800024px;}
.ws7b{word-spacing:29.061842px;}
.ws7f{word-spacing:29.127297px;}
.ws31{word-spacing:29.389115px;}
.ws6e{word-spacing:29.716388px;}
.ws5a{word-spacing:30.043661px;}
.ws40{word-spacing:30.109116px;}
.ws60{word-spacing:30.370934px;}
.ws26{word-spacing:30.436389px;}
.ws52{word-spacing:30.501844px;}
.ws6f{word-spacing:30.567298px;}
.ws37{word-spacing:30.763662px;}
.ws54{word-spacing:30.960026px;}
.ws53{word-spacing:31.352753px;}
.ws14{word-spacing:31.504255px;}
.ws16{word-spacing:31.549117px;}
.ws47{word-spacing:31.590332px;}
.ws1d{word-spacing:32.072754px;}
.ws86{word-spacing:32.138209px;}
.ws0{word-spacing:32.330521px;}
.ws3b{word-spacing:32.400027px;}
.ws56{word-spacing:32.465482px;}
.ws71{word-spacing:32.661845px;}
.ws6d{word-spacing:33.840028px;}
.ws5f{word-spacing:34.887302px;}
.ws51{word-spacing:35.018211px;}
.ws9d{word-spacing:36.850940px;}
.ws9e{word-spacing:37.178213px;}
.ws12{word-spacing:37.243667px;}
.ws43{word-spacing:80.697600px;}
.ws8c{word-spacing:94.684920px;}
.ws50{word-spacing:269.869316px;}
._4{margin-left:-7.263497px;}
._1{margin-left:-5.881958px;}
._16{margin-left:-4.123640px;}
._0{margin-left:-2.685602px;}
._2{margin-left:-1.116151px;}
._7{width:1.406430px;}
._3{width:2.685602px;}
._19{width:3.798331px;}
._31{width:5.039830px;}
._c{width:14.534070px;}
._8{width:18.047932px;}
._18{width:21.269449px;}
._1e{width:22.714710px;}
._33{width:23.827438px;}
._b{width:24.962316px;}
._34{width:25.987440px;}
._6{width:27.297864px;}
._15{width:28.867442px;}
._5{width:29.912752px;}
._10{width:31.025480px;}
._1b{width:32.203663px;}
._17{width:33.905483px;}
._e{width:35.020175px;}
._1d{width:36.255804px;}
._a{width:37.264148px;}
._14{width:38.947578px;}
._38{width:40.194511px;}
._9{width:41.484266px;}
._37{width:43.797937px;}
._35{width:45.851791px;}
._1a{width:47.061857px;}
._d{width:49.422368px;}
._30{width:51.054588px;}
._28{width:53.869136px;}
._36{width:55.245646px;}
._1c{width:57.536557px;}
._11{width:59.041737px;}
._12{width:60.586634px;}
._32{width:67.483693px;}
._25{width:71.382508px;}
._2e{width:72.727982px;}
._13{width:80.697600px;}
._1f{width:87.357721px;}
._f{width:94.684920px;}
._26{width:98.052955px;}
._21{width:103.212949px;}
._2b{width:113.171003px;}
._2f{width:116.969334px;}
._29{width:151.888519px;}
._2c{width:173.980291px;}
._23{width:190.014704px;}
._2d{width:209.815564px;}
._27{width:227.716553px;}
._2a{width:276.414776px;}
._22{width:317.260410px;}
._24{width:378.196679px;}
._20{width:409.517549px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y28{bottom:63.168000px;}
.yeb{bottom:108.000000px;}
.y4c{bottom:114.795000px;}
.y138{bottom:119.029500px;}
.y27{bottom:126.063000px;}
.yea{bottom:128.323500px;}
.y4b{bottom:135.118500px;}
.y137{bottom:139.354500px;}
.ye9{bottom:148.647000px;}
.y4a{bottom:155.442000px;}
.y136{bottom:159.678000px;}
.y26{bottom:159.835500px;}
.yc5{bottom:161.416500px;}
.y85{bottom:162.918000px;}
.ye8{bottom:168.972000px;}
.y112{bottom:179.241000px;}
.yc4{bottom:181.740000px;}
.y84{bottom:183.243000px;}
.y135{bottom:188.137500px;}
.y49{bottom:189.216000px;}
.ye7{bottom:189.295500px;}
.y25{bottom:193.609500px;}
.yc3{bottom:202.063500px;}
.y83{bottom:203.566500px;}
.ye6{bottom:209.619000px;}
.y111{bottom:210.459000px;}
.ya4{bottom:218.662500px;}
.y48{bottom:222.990000px;}
.y134{bottom:227.118000px;}
.y24{bottom:227.383500px;}
.ye5{bottom:229.942500px;}
.y82{bottom:234.456000px;}
.yc2{bottom:235.837500px;}
.ya3{bottom:238.986000px;}
.y110{bottom:241.678500px;}
.y133{bottom:247.443000px;}
.yc1{bottom:256.161000px;}
.y47{bottom:256.762500px;}
.y23{bottom:261.156000px;}
.ye4{bottom:264.880500px;}
.y132{bottom:267.766500px;}
.ya2{bottom:272.758500px;}
.y10f{bottom:272.896500px;}
.y81{bottom:278.269500px;}
.ye3{bottom:285.205500px;}
.y131{bottom:288.090000px;}
.yc0{bottom:289.935000px;}
.y46{bottom:290.536500px;}
.y22{bottom:294.741000px;}
.y80{bottom:298.593000px;}
.y10e{bottom:304.114500px;}
.ye2{bottom:305.529000px;}
.ya1{bottom:306.532500px;}
.y130{bottom:308.413500px;}
.ybf{bottom:310.258500px;}
.y153{bottom:319.858500px;}
.y45{bottom:321.426000px;}
.y21{bottom:328.671000px;}
.y12f{bottom:328.737000px;}
.y7f{bottom:332.365500px;}
.y10d{bottom:334.708500px;}
.ye1{bottom:336.418500px;}
.y152{bottom:340.183500px;}
.ya0{bottom:340.305000px;}
.ybe{bottom:341.148000px;}
.y20{bottom:348.994500px;}
.y12e{bottom:349.062000px;}
.y10c{bottom:355.032000px;}
.y44{bottom:365.239500px;}
.y7e{bottom:366.139500px;}
.y1f{bottom:369.318000px;}
.y12d{bottom:369.385500px;}
.y151{bottom:373.956000px;}
.y9f{bottom:374.079000px;}
.ybd{bottom:378.270000px;}
.ye0{bottom:379.710000px;}
.y43{bottom:385.563000px;}
.y10b{bottom:385.921500px;}
.y1e{bottom:389.641500px;}
.y12c{bottom:389.709000px;}
.y150{bottom:394.279500px;}
.y9e{bottom:394.402500px;}
.y7d{bottom:399.913500px;}
.ydf{bottom:400.033500px;}
.y1d{bottom:409.965000px;}
.y12b{bottom:410.032500px;}
.y9d{bottom:414.726000px;}
.y42{bottom:419.335500px;}
.yde{bottom:420.358500px;}
.y14f{bottom:428.053500px;}
.y10a{bottom:428.530500px;}
.ybc{bottom:429.822000px;}
.y12a{bottom:430.356000px;}
.y7c{bottom:433.686000px;}
.y9c{bottom:435.051000px;}
.y41{bottom:439.660500px;}
.ydd{bottom:440.682000px;}
.y1c{bottom:446.490000px;}
.y14e{bottom:448.377000px;}
.y109{bottom:448.854000px;}
.ydc{bottom:461.005500px;}
.ybb{bottom:463.596000px;}
.y9b{bottom:465.940500px;}
.y129{bottom:466.881000px;}
.y7b{bottom:467.460000px;}
.y108{bottom:469.177500px;}
.y40{bottom:473.433000px;}
.y14d{bottom:482.151000px;}
.y107{bottom:489.502500px;}
.ydb{bottom:492.013500px;}
.y64{bottom:493.180500px;}
.y3f{bottom:493.756500px;}
.y1b{bottom:497.065500px;}
.yba{bottom:497.368500px;}
.y7a{bottom:501.232500px;}
.y106{bottom:509.826000px;}
.y9a{bottom:512.917500px;}
.y63{bottom:513.505500px;}
.y14c{bottom:515.923500px;}
.y1a{bottom:517.389000px;}
.y128{bottom:518.433000px;}
.y3e{bottom:524.646000px;}
.yda{bottom:524.680500px;}
.y105{bottom:530.149500px;}
.yb9{bottom:531.142500px;}
.y99{bottom:533.242500px;}
.y62{bottom:533.829000px;}
.y79{bottom:535.006500px;}
.y127{bottom:538.756500px;}
.y19{bottom:548.056500px;}
.y14b{bottom:549.697500px;}
.y104{bottom:550.473000px;}
.y98{bottom:553.566000px;}
.yd9{bottom:557.349000px;}
.yb8{bottom:564.915000px;}
.y18{bottom:565.989000px;}
.y61{bottom:567.601500px;}
.y3d{bottom:568.459500px;}
.y78{bottom:568.779000px;}
.y103{bottom:570.796500px;}
.y126{bottom:572.530500px;}
.y97{bottom:573.889500px;}
.y14a{bottom:583.470000px;}
.y17{bottom:583.921500px;}
.yb7{bottom:585.238500px;}
.y60{bottom:587.926500px;}
.y3c{bottom:588.783000px;}
.yd8{bottom:590.016000px;}
.y102{bottom:591.120000px;}
.y16{bottom:601.854000px;}
.y96{bottom:602.422500px;}
.y77{bottom:602.553000px;}
.y149{bottom:603.795000px;}
.y125{bottom:606.303000px;}
.y5f{bottom:608.250000px;}
.y3b{bottom:609.108000px;}
.y101{bottom:611.445000px;}
.yb6{bottom:619.012500px;}
.y15{bottom:619.788000px;}
.yd7{bottom:621.024000px;}
.y76{bottom:622.876500px;}
.y124{bottom:626.626500px;}
.y148{bottom:637.567500px;}
.y14{bottom:637.720500px;}
.yb5{bottom:639.336000px;}
.yd6{bottom:641.347500px;}
.y95{bottom:641.956500px;}
.y5e{bottom:642.022500px;}
.y100{bottom:642.334500px;}
.y3a{bottom:642.880500px;}
.y75{bottom:653.766000px;}
.y13{bottom:655.653000px;}
.yb4{bottom:659.659500px;}
.y123{bottom:660.400500px;}
.y94{bottom:662.280000px;}
.y39{bottom:663.204000px;}
.y147{bottom:671.341500px;}
.yd5{bottom:672.237000px;}
.y12{bottom:673.585500px;}
.y5d{bottom:675.796500px;}
.yb3{bottom:679.984500px;}
.y38{bottom:683.529000px;}
.y93{bottom:684.757500px;}
.yff{bottom:684.943500px;}
.y92{bottom:689.908500px;}
.y11{bottom:691.518000px;}
.y122{bottom:694.174500px;}
.y91{bottom:701.449500px;}
.y146{bottom:705.114000px;}
.yfe{bottom:705.267000px;}
.y74{bottom:706.365000px;}
.yd4{bottom:709.359000px;}
.y10{bottom:709.452000px;}
.y5c{bottom:709.569000px;}
.yb2{bottom:710.874000px;}
.y37{bottom:714.418500px;}
.yfd{bottom:725.590500px;}
.y73{bottom:726.688500px;}
.yf{bottom:727.384500px;}
.y121{bottom:727.947000px;}
.y5b{bottom:729.894000px;}
.y145{bottom:738.888000px;}
.ye{bottom:745.317000px;}
.y90{bottom:745.519500px;}
.yfc{bottom:745.914000px;}
.y72{bottom:747.012000px;}
.y36{bottom:751.540500px;}
.yb1{bottom:754.687500px;}
.y120{bottom:758.836500px;}
.y144{bottom:759.211500px;}
.yd3{bottom:760.389000px;}
.yd{bottom:763.249500px;}
.y5a{bottom:763.666500px;}
.y8f{bottom:765.844500px;}
.yfb{bottom:766.239000px;}
.yd2{bottom:780.714000px;}
.y71{bottom:780.786000px;}
.yc{bottom:781.182000px;}
.yfa{bottom:786.562500px;}
.yb0{bottom:788.460000px;}
.y143{bottom:792.985500px;}
.y8e{bottom:796.732500px;}
.y59{bottom:797.440500px;}
.y70{bottom:801.109500px;}
.yb{bottom:802.243500px;}
.y11f{bottom:802.650000px;}
.y35{bottom:803.092500px;}
.yf9{bottom:806.886000px;}
.y142{bottom:813.309000px;}
.yd1{bottom:813.381000px;}
.y58{bottom:817.764000px;}
.yaf{bottom:822.234000px;}
.y11e{bottom:822.973500px;}
.y34{bottom:823.416000px;}
.ya{bottom:831.895500px;}
.yd0{bottom:833.704500px;}
.y6f{bottom:834.882000px;}
.yf8{bottom:837.775500px;}
.y57{bottom:838.087500px;}
.y8d{bottom:840.547500px;}
.y11d{bottom:843.297000px;}
.y33{bottom:843.739500px;}
.y141{bottom:847.081500px;}
.yae{bottom:856.006500px;}
.y8c{bottom:860.871000px;}
.y11c{bottom:863.622000px;}
.y32{bottom:864.063000px;}
.ycf{bottom:866.371500px;}
.y140{bottom:867.406500px;}
.y6e{bottom:868.656000px;}
.y56{bottom:868.977000px;}
.yf7{bottom:880.384500px;}
.y8b{bottom:881.194500px;}
.y11b{bottom:883.945500px;}
.y31{bottom:884.386500px;}
.yce{bottom:886.695000px;}
.y13f{bottom:887.730000px;}
.y9{bottom:888.345000px;}
.y6d{bottom:888.979500px;}
.yad{bottom:889.780500px;}
.yf6{bottom:900.708000px;}
.y11a{bottom:904.269000px;}
.y30{bottom:904.711500px;}
.yac{bottom:910.104000px;}
.y8a{bottom:914.967000px;}
.ycd{bottom:917.584500px;}
.yf5{bottom:921.033000px;}
.y6c{bottom:922.753500px;}
.y13e{bottom:924.253500px;}
.y119{bottom:924.592500px;}
.y55{bottom:924.756000px;}
.y2f{bottom:925.035000px;}
.y8{bottom:936.660000px;}
.yab{bottom:940.993500px;}
.yf4{bottom:941.356500px;}
.y7{bottom:943.167000px;}
.y118{bottom:944.916000px;}
.y54{bottom:945.079500px;}
.y89{bottom:948.741000px;}
.y6b{bottom:956.526000px;}
.y6{bottom:957.580500px;}
.ycc{bottom:960.877500px;}
.yf3{bottom:961.680000px;}
.y5{bottom:964.089000px;}
.y117{bottom:965.241000px;}
.y53{bottom:965.404500px;}
.y2e{bottom:967.486500px;}
.y13d{bottom:975.805500px;}
.yaa{bottom:978.115500px;}
.ycb{bottom:981.201000px;}
.y88{bottom:982.515000px;}
.y116{bottom:985.564500px;}
.yf2{bottom:989.067000px;}
.y6a{bottom:990.300000px;}
.y3{bottom:994.773000px;}
.y52{bottom:995.808000px;}
.y13c{bottom:996.130500px;}
.y2d{bottom:1001.259000px;}
.y4{bottom:1001.281500px;}
.y115{bottom:1005.888000px;}
.yf1{bottom:1009.390500px;}
.y69{bottom:1010.623500px;}
.yca{bottom:1013.868000px;}
.y87{bottom:1016.287500px;}
.y13b{bottom:1016.454000px;}
.y114{bottom:1026.211500px;}
.yf0{bottom:1029.714000px;}
.y51{bottom:1029.738000px;}
.y68{bottom:1030.947000px;}
.yc9{bottom:1034.191500px;}
.ya9{bottom:1034.658000px;}
.y2c{bottom:1035.033000px;}
.y86{bottom:1036.611000px;}
.y13a{bottom:1036.777500px;}
.y2{bottom:1040.101500px;}
.y113{bottom:1046.535000px;}
.y50{bottom:1050.061500px;}
.y67{bottom:1051.270500px;}
.ya8{bottom:1054.981500px;}
.yef{bottom:1057.101000px;}
.yc8{bottom:1066.860000px;}
.y2b{bottom:1068.805500px;}
.y4f{bottom:1070.385000px;}
.y66{bottom:1071.595500px;}
.y1{bottom:1072.978500px;}
.ya7{bottom:1075.305000px;}
.yee{bottom:1077.424500px;}
.yc7{bottom:1087.183500px;}
.y139{bottom:1092.900000px;}
.yed{bottom:1097.748000px;}
.y4e{bottom:1101.274500px;}
.y2a{bottom:1102.579500px;}
.ya6{bottom:1103.838000px;}
.y65{bottom:1105.179000px;}
.yc6{bottom:1107.507000px;}
.yec{bottom:1118.073000px;}
.ya5{bottom:1128.621000px;}
.y29{bottom:1137.163500px;}
.y4d{bottom:1138.396500px;}
.h4{height:45.429570px;}
.hd{height:46.145493px;}
.he{height:46.865494px;}
.h9{height:49.090950px;}
.hb{height:54.874726px;}
.h8{height:56.080726px;}
.h6{height:56.786820px;}
.h5{height:62.181870px;}
.h3{height:68.144640px;}
.hf{height:68.482950px;}
.hc{height:69.694950px;}
.h7{height:81.773340px;}
.ha{height:93.370950px;}
.h2{height:98.127780px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:108.000000px;}
.x2{left:114.369000px;}
.x6a{left:116.136000px;}
.x63{left:121.561500px;}
.x43{left:128.070000px;}
.x15{left:131.386500px;}
.x14{left:133.404000px;}
.x50{left:141.823500px;}
.x3e{left:143.929500px;}
.xf{left:148.909500px;}
.x16{left:155.977500px;}
.x5c{left:157.561500px;}
.xe{left:171.319500px;}
.x5a{left:174.769500px;}
.x44{left:178.458000px;}
.x74{left:179.512500px;}
.x36{left:183.214500px;}
.x2f{left:185.455500px;}
.x56{left:186.643500px;}
.x60{left:190.714500px;}
.x22{left:196.626000px;}
.x75{left:198.207000px;}
.x1a{left:202.510500px;}
.x11{left:207.436500px;}
.x26{left:209.473500px;}
.x6c{left:211.656000px;}
.x57{left:212.979000px;}
.x7{left:219.736500px;}
.x6d{left:221.002500px;}
.x24{left:224.749500px;}
.x8{left:226.833000px;}
.x28{left:229.713000px;}
.x53{left:231.777000px;}
.x6e{left:233.787000px;}
.xc{left:240.682500px;}
.x62{left:241.791000px;}
.x27{left:245.904000px;}
.x61{left:255.649500px;}
.x17{left:257.350500px;}
.x2e{left:260.764500px;}
.x6f{left:263.025000px;}
.x3{left:266.872500px;}
.x2b{left:268.576500px;}
.x45{left:272.074500px;}
.x18{left:277.486500px;}
.x3d{left:279.544500px;}
.x1{left:281.269500px;}
.x81{left:282.828000px;}
.x2c{left:285.124500px;}
.x4b{left:287.955000px;}
.x2d{left:292.098000px;}
.x9{left:304.507500px;}
.x13{left:308.293500px;}
.x3b{left:310.029000px;}
.xa{left:311.604000px;}
.x65{left:314.719500px;}
.x4c{left:316.579500px;}
.x3a{left:322.048500px;}
.x4f{left:325.771500px;}
.x4a{left:332.353500px;}
.x4e{left:338.340000px;}
.x41{left:344.647500px;}
.x66{left:360.558000px;}
.x4d{left:366.997500px;}
.x54{left:371.262000px;}
.x46{left:376.566000px;}
.x3c{left:378.129000px;}
.x42{left:382.731000px;}
.x55{left:384.850500px;}
.xb{left:388.063500px;}
.x1d{left:394.681500px;}
.x25{left:400.399500px;}
.x33{left:406.204500px;}
.x1b{left:408.339000px;}
.x52{left:410.346000px;}
.x47{left:411.376500px;}
.xd{left:413.587500px;}
.x5b{left:417.609000px;}
.x1c{left:420.669000px;}
.x4{left:421.675500px;}
.x64{left:431.923500px;}
.x5{left:434.623500px;}
.x37{left:435.913500px;}
.x83{left:438.321000px;}
.x19{left:442.389000px;}
.x29{left:450.304500px;}
.x78{left:455.364000px;}
.x34{left:456.633000px;}
.x2a{left:463.398000px;}
.x31{left:471.835500px;}
.x1e{left:478.185000px;}
.x32{left:482.364000px;}
.x58{left:489.822000px;}
.x7b{left:517.971000px;}
.x38{left:533.634000px;}
.x39{left:545.452500px;}
.x23{left:549.150000px;}
.x7e{left:554.595000px;}
.x79{left:555.939000px;}
.x7a{left:565.287000px;}
.x7c{left:572.577000px;}
.x5d{left:582.601500px;}
.x3f{left:594.846000px;}
.x76{left:596.977500px;}
.x51{left:598.108500px;}
.x7d{left:600.618000px;}
.x70{left:608.062500px;}
.x6b{left:611.619000px;}
.x40{left:612.999000px;}
.x6{left:618.943500px;}
.x59{left:639.028500px;}
.x12{left:640.179000px;}
.x48{left:647.275500px;}
.x5e{left:654.975000px;}
.x71{left:662.668500px;}
.x1f{left:666.183000px;}
.x49{left:669.768000px;}
.x67{left:671.269500px;}
.x77{left:684.075000px;}
.x72{left:690.711000px;}
.x20{left:702.472500px;}
.x73{left:709.021500px;}
.x30{left:726.822000px;}
.x7f{left:730.204500px;}
.x5f{left:733.483500px;}
.x21{left:735.396000px;}
.x68{left:740.359500px;}
.x80{left:748.899000px;}
.x35{left:764.121000px;}
.x69{left:768.642000px;}
.x82{left:771.411000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:8.234667pt;}
.v5{vertical-align:9.312000pt;}
.v6{vertical-align:17.237333pt;}
.v4{vertical-align:18.314667pt;}
.v3{vertical-align:20.042667pt;}
.v1{vertical-align:21.114667pt;}
.v2{vertical-align:39.360000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.002400pt;}
.ls4{letter-spacing:0.002411pt;}
.ls3{letter-spacing:8.929817pt;}
.ls8{letter-spacing:17.764811pt;}
.ls9{letter-spacing:18.756811pt;}
.ls6{letter-spacing:19.188800pt;}
.ls7{letter-spacing:19.375008pt;}
.ls1{letter-spacing:20.164811pt;}
.ls5{letter-spacing:21.397312pt;}
.ws57{word-spacing:-58.181867pt;}
.ws4e{word-spacing:-37.899668pt;}
.ws85{word-spacing:-20.154199pt;}
.ws7a{word-spacing:-19.456016pt;}
.ws48{word-spacing:-16.162923pt;}
.ws49{word-spacing:-0.042507pt;}
.ws95{word-spacing:-0.015615pt;}
.ws11{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.011636pt;}
.wsb{word-spacing:12.008254pt;}
.ws4{word-spacing:12.220789pt;}
.ws68{word-spacing:12.858193pt;}
.ws42{word-spacing:13.090920pt;}
.ws75{word-spacing:13.149102pt;}
.ws3e{word-spacing:13.672739pt;}
.ws5c{word-spacing:13.730921pt;}
.ws34{word-spacing:14.370921pt;}
.ws81{word-spacing:14.429103pt;}
.ws1f{word-spacing:14.603649pt;}
.ws7{word-spacing:14.718081pt;}
.ws65{word-spacing:14.778194pt;}
.ws8{word-spacing:14.877483pt;}
.ws6b{word-spacing:15.010922pt;}
.ws96{word-spacing:15.360013pt;}
.wsa{word-spacing:15.515089pt;}
.ws80{word-spacing:15.592740pt;}
.ws2d{word-spacing:15.650922pt;}
.ws5b{word-spacing:15.767286pt;}
.ws4a{word-spacing:15.941831pt;}
.ws10{word-spacing:15.993294pt;}
.ws90{word-spacing:16.000013pt;}
.ws35{word-spacing:16.174559pt;}
.ws92{word-spacing:16.232741pt;}
.ws1e{word-spacing:16.290923pt;}
.ws32{word-spacing:16.349105pt;}
.ws2e{word-spacing:16.465468pt;}
.ws33{word-spacing:16.523650pt;}
.ws64{word-spacing:16.930923pt;}
.ws8d{word-spacing:17.163651pt;}
.ws67{word-spacing:17.221833pt;}
.ws3d{word-spacing:17.454560pt;}
.ws22{word-spacing:17.570924pt;}
.ws6{word-spacing:17.640444pt;}
.ws91{word-spacing:17.687287pt;}
.ws25{word-spacing:17.803651pt;}
.ws93{word-spacing:17.920015pt;}
.ws2b{word-spacing:17.978197pt;}
.ws5{word-spacing:18.118649pt;}
.ws8b{word-spacing:18.327288pt;}
.ws7c{word-spacing:18.385470pt;}
.ws69{word-spacing:18.560015pt;}
.ws76{word-spacing:18.618197pt;}
.ws8e{word-spacing:18.792743pt;}
.wsc{word-spacing:18.862523pt;}
.ws3f{word-spacing:18.909107pt;}
.ws97{word-spacing:19.025470pt;}
.ws6a{word-spacing:19.083652pt;}
.ws94{word-spacing:19.200016pt;}
.ws1b{word-spacing:19.258198pt;}
.ws13{word-spacing:19.316380pt;}
.ws2c{word-spacing:19.432743pt;}
.ws62{word-spacing:19.490925pt;}
.ws8a{word-spacing:19.723653pt;}
.ws66{word-spacing:19.781835pt;}
.ws18{word-spacing:19.898198pt;}
.wse{word-spacing:19.978334pt;}
.ws79{word-spacing:20.014562pt;}
.ws73{word-spacing:20.247290pt;}
.ws5e{word-spacing:20.305471pt;}
.ws24{word-spacing:20.480017pt;}
.ws4f{word-spacing:20.538199pt;}
.ws9b{word-spacing:20.596381pt;}
.ws3{word-spacing:20.654563pt;}
.ws2a{word-spacing:20.712745pt;}
.wsd{word-spacing:20.722208pt;}
.ws59{word-spacing:20.770926pt;}
.ws1{word-spacing:20.786108pt;}
.ws1c{word-spacing:20.829108pt;}
.ws2{word-spacing:20.849869pt;}
.ws89{word-spacing:20.887290pt;}
.ws4b{word-spacing:21.003654pt;}
.ws7d{word-spacing:21.120018pt;}
.ws9a{word-spacing:21.178199pt;}
.ws70{word-spacing:21.410927pt;}
.ws99{word-spacing:21.527291pt;}
.ws8f{word-spacing:21.585473pt;}
.ws19{word-spacing:21.701836pt;}
.ws4c{word-spacing:21.760018pt;}
.ws20{word-spacing:21.818200pt;}
.ws29{word-spacing:21.876382pt;}
.ws45{word-spacing:21.934564pt;}
.ws39{word-spacing:22.050927pt;}
.ws1a{word-spacing:22.109109pt;}
.ws9{word-spacing:22.156822pt;}
.ws2f{word-spacing:22.167291pt;}
.ws82{word-spacing:22.283655pt;}
.ws58{word-spacing:22.341837pt;}
.ws61{word-spacing:22.400019pt;}
.ws23{word-spacing:22.516382pt;}
.ws36{word-spacing:22.690928pt;}
.ws6c{word-spacing:22.749110pt;}
.ws17{word-spacing:22.865474pt;}
.ws63{word-spacing:23.040019pt;}
.ws3a{word-spacing:23.214565pt;}
.ws41{word-spacing:23.272747pt;}
.ws5d{word-spacing:23.330929pt;}
.ws7e{word-spacing:23.389110pt;}
.ws9f{word-spacing:23.505474pt;}
.ws83{word-spacing:23.563656pt;}
.ws28{word-spacing:23.680020pt;}
.ws44{word-spacing:23.738202pt;}
.ws77{word-spacing:23.846639pt;}
.ws21{word-spacing:23.910400pt;}
.ws3c{word-spacing:23.912747pt;}
.ws88{word-spacing:23.970929pt;}
.ws87{word-spacing:24.029111pt;}
.ws30{word-spacing:24.203657pt;}
.ws15{word-spacing:24.436384pt;}
.ws74{word-spacing:24.494566pt;}
.wsf{word-spacing:24.494713pt;}
.ws27{word-spacing:24.610930pt;}
.ws84{word-spacing:24.843657pt;}
.ws9c{word-spacing:25.018203pt;}
.ws55{word-spacing:25.134566pt;}
.ws46{word-spacing:25.192748pt;}
.ws72{word-spacing:25.250930pt;}
.ws38{word-spacing:25.367294pt;}
.ws78{word-spacing:25.425476pt;}
.ws98{word-spacing:25.600021pt;}
.ws7b{word-spacing:25.832749pt;}
.ws7f{word-spacing:25.890931pt;}
.ws31{word-spacing:26.123658pt;}
.ws6e{word-spacing:26.414567pt;}
.ws5a{word-spacing:26.705477pt;}
.ws40{word-spacing:26.763659pt;}
.ws60{word-spacing:26.996386pt;}
.ws26{word-spacing:27.054568pt;}
.ws52{word-spacing:27.112750pt;}
.ws6f{word-spacing:27.170932pt;}
.ws37{word-spacing:27.345477pt;}
.ws54{word-spacing:27.520023pt;}
.ws53{word-spacing:27.869114pt;}
.ws14{word-spacing:28.003782pt;}
.ws16{word-spacing:28.043660pt;}
.ws47{word-spacing:28.080295pt;}
.ws1d{word-spacing:28.509115pt;}
.ws86{word-spacing:28.567297pt;}
.ws0{word-spacing:28.738241pt;}
.ws3b{word-spacing:28.800024pt;}
.ws56{word-spacing:28.858206pt;}
.ws71{word-spacing:29.032751pt;}
.ws6d{word-spacing:30.080025pt;}
.ws5f{word-spacing:31.010935pt;}
.ws51{word-spacing:31.127299pt;}
.ws9d{word-spacing:32.756391pt;}
.ws9e{word-spacing:33.047300pt;}
.ws12{word-spacing:33.105482pt;}
.ws43{word-spacing:71.731200pt;}
.ws8c{word-spacing:84.164373pt;}
.ws50{word-spacing:239.883836pt;}
._4{margin-left:-6.456442pt;}
._1{margin-left:-5.228407pt;}
._16{margin-left:-3.665458pt;}
._0{margin-left:-2.387202pt;}
._2{margin-left:-0.992134pt;}
._7{width:1.250160pt;}
._3{width:2.387202pt;}
._19{width:3.376294pt;}
._31{width:4.479849pt;}
._c{width:12.919173pt;}
._8{width:16.042606pt;}
._18{width:18.906177pt;}
._1e{width:20.190853pt;}
._33{width:21.179945pt;}
._b{width:22.188725pt;}
._34{width:23.099947pt;}
._6{width:24.264768pt;}
._15{width:25.659949pt;}
._5{width:26.589113pt;}
._10{width:27.578205pt;}
._1b{width:28.625478pt;}
._17{width:30.138207pt;}
._e{width:31.129044pt;}
._1d{width:32.227381pt;}
._a{width:33.123687pt;}
._14{width:34.620069pt;}
._38{width:35.728454pt;}
._9{width:36.874903pt;}
._37{width:38.931500pt;}
._35{width:40.757148pt;}
._1a{width:41.832762pt;}
._d{width:43.930994pt;}
._30{width:45.381856pt;}
._28{width:47.883676pt;}
._36{width:49.107241pt;}
._1c{width:51.143606pt;}
._11{width:52.481544pt;}
._12{width:53.854786pt;}
._32{width:59.985505pt;}
._25{width:63.451118pt;}
._2e{width:64.647095pt;}
._13{width:71.731200pt;}
._1f{width:77.651308pt;}
._f{width:84.164373pt;}
._26{width:87.158182pt;}
._21{width:91.744843pt;}
._2b{width:100.596447pt;}
._2f{width:103.972741pt;}
._29{width:135.012017pt;}
._2c{width:154.649147pt;}
._23{width:168.901959pt;}
._2d{width:186.502724pt;}
._27{width:202.414714pt;}
._2a{width:245.702023pt;}
._22{width:282.009253pt;}
._24{width:336.174826pt;}
._20{width:364.015599pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:56.149333pt;}
.yeb{bottom:96.000000pt;}
.y4c{bottom:102.040000pt;}
.y138{bottom:105.804000pt;}
.y27{bottom:112.056000pt;}
.yea{bottom:114.065333pt;}
.y4b{bottom:120.105333pt;}
.y137{bottom:123.870667pt;}
.ye9{bottom:132.130667pt;}
.y4a{bottom:138.170667pt;}
.y136{bottom:141.936000pt;}
.y26{bottom:142.076000pt;}
.yc5{bottom:143.481333pt;}
.y85{bottom:144.816000pt;}
.ye8{bottom:150.197333pt;}
.y112{bottom:159.325333pt;}
.yc4{bottom:161.546667pt;}
.y84{bottom:162.882667pt;}
.y135{bottom:167.233333pt;}
.y49{bottom:168.192000pt;}
.ye7{bottom:168.262667pt;}
.y25{bottom:172.097333pt;}
.yc3{bottom:179.612000pt;}
.y83{bottom:180.948000pt;}
.ye6{bottom:186.328000pt;}
.y111{bottom:187.074667pt;}
.ya4{bottom:194.366667pt;}
.y48{bottom:198.213333pt;}
.y134{bottom:201.882667pt;}
.y24{bottom:202.118667pt;}
.ye5{bottom:204.393333pt;}
.y82{bottom:208.405333pt;}
.yc2{bottom:209.633333pt;}
.ya3{bottom:212.432000pt;}
.y110{bottom:214.825333pt;}
.y133{bottom:219.949333pt;}
.yc1{bottom:227.698667pt;}
.y47{bottom:228.233333pt;}
.y23{bottom:232.138667pt;}
.ye4{bottom:235.449333pt;}
.y132{bottom:238.014667pt;}
.ya2{bottom:242.452000pt;}
.y10f{bottom:242.574667pt;}
.y81{bottom:247.350667pt;}
.ye3{bottom:253.516000pt;}
.y131{bottom:256.080000pt;}
.yc0{bottom:257.720000pt;}
.y46{bottom:258.254667pt;}
.y22{bottom:261.992000pt;}
.y80{bottom:265.416000pt;}
.y10e{bottom:270.324000pt;}
.ye2{bottom:271.581333pt;}
.ya1{bottom:272.473333pt;}
.y130{bottom:274.145333pt;}
.ybf{bottom:275.785333pt;}
.y153{bottom:284.318667pt;}
.y45{bottom:285.712000pt;}
.y21{bottom:292.152000pt;}
.y12f{bottom:292.210667pt;}
.y7f{bottom:295.436000pt;}
.y10d{bottom:297.518667pt;}
.ye1{bottom:299.038667pt;}
.y152{bottom:302.385333pt;}
.ya0{bottom:302.493333pt;}
.ybe{bottom:303.242667pt;}
.y20{bottom:310.217333pt;}
.y12e{bottom:310.277333pt;}
.y10c{bottom:315.584000pt;}
.y44{bottom:324.657333pt;}
.y7e{bottom:325.457333pt;}
.y1f{bottom:328.282667pt;}
.y12d{bottom:328.342667pt;}
.y151{bottom:332.405333pt;}
.y9f{bottom:332.514667pt;}
.ybd{bottom:336.240000pt;}
.ye0{bottom:337.520000pt;}
.y43{bottom:342.722667pt;}
.y10b{bottom:343.041333pt;}
.y1e{bottom:346.348000pt;}
.y12c{bottom:346.408000pt;}
.y150{bottom:350.470667pt;}
.y9e{bottom:350.580000pt;}
.y7d{bottom:355.478667pt;}
.ydf{bottom:355.585333pt;}
.y1d{bottom:364.413333pt;}
.y12b{bottom:364.473333pt;}
.y9d{bottom:368.645333pt;}
.y42{bottom:372.742667pt;}
.yde{bottom:373.652000pt;}
.y14f{bottom:380.492000pt;}
.y10a{bottom:380.916000pt;}
.ybc{bottom:382.064000pt;}
.y12a{bottom:382.538667pt;}
.y7c{bottom:385.498667pt;}
.y9c{bottom:386.712000pt;}
.y41{bottom:390.809333pt;}
.ydd{bottom:391.717333pt;}
.y1c{bottom:396.880000pt;}
.y14e{bottom:398.557333pt;}
.y109{bottom:398.981333pt;}
.ydc{bottom:409.782667pt;}
.ybb{bottom:412.085333pt;}
.y9b{bottom:414.169333pt;}
.y129{bottom:415.005333pt;}
.y7b{bottom:415.520000pt;}
.y108{bottom:417.046667pt;}
.y40{bottom:420.829333pt;}
.y14d{bottom:428.578667pt;}
.y107{bottom:435.113333pt;}
.ydb{bottom:437.345333pt;}
.y64{bottom:438.382667pt;}
.y3f{bottom:438.894667pt;}
.y1b{bottom:441.836000pt;}
.yba{bottom:442.105333pt;}
.y7a{bottom:445.540000pt;}
.y106{bottom:453.178667pt;}
.y9a{bottom:455.926667pt;}
.y63{bottom:456.449333pt;}
.y14c{bottom:458.598667pt;}
.y1a{bottom:459.901333pt;}
.y128{bottom:460.829333pt;}
.y3e{bottom:466.352000pt;}
.yda{bottom:466.382667pt;}
.y105{bottom:471.244000pt;}
.yb9{bottom:472.126667pt;}
.y99{bottom:473.993333pt;}
.y62{bottom:474.514667pt;}
.y79{bottom:475.561333pt;}
.y127{bottom:478.894667pt;}
.y19{bottom:487.161333pt;}
.y14b{bottom:488.620000pt;}
.y104{bottom:489.309333pt;}
.y98{bottom:492.058667pt;}
.yd9{bottom:495.421333pt;}
.yb8{bottom:502.146667pt;}
.y18{bottom:503.101333pt;}
.y61{bottom:504.534667pt;}
.y3d{bottom:505.297333pt;}
.y78{bottom:505.581333pt;}
.y103{bottom:507.374667pt;}
.y126{bottom:508.916000pt;}
.y97{bottom:510.124000pt;}
.y14a{bottom:518.640000pt;}
.y17{bottom:519.041333pt;}
.yb7{bottom:520.212000pt;}
.y60{bottom:522.601333pt;}
.y3c{bottom:523.362667pt;}
.yd8{bottom:524.458667pt;}
.y102{bottom:525.440000pt;}
.y16{bottom:534.981333pt;}
.y96{bottom:535.486667pt;}
.y77{bottom:535.602667pt;}
.y149{bottom:536.706667pt;}
.y125{bottom:538.936000pt;}
.y5f{bottom:540.666667pt;}
.y3b{bottom:541.429333pt;}
.y101{bottom:543.506667pt;}
.yb6{bottom:550.233333pt;}
.y15{bottom:550.922667pt;}
.yd7{bottom:552.021333pt;}
.y76{bottom:553.668000pt;}
.y124{bottom:557.001333pt;}
.y148{bottom:566.726667pt;}
.y14{bottom:566.862667pt;}
.yb5{bottom:568.298667pt;}
.yd6{bottom:570.086667pt;}
.y95{bottom:570.628000pt;}
.y5e{bottom:570.686667pt;}
.y100{bottom:570.964000pt;}
.y3a{bottom:571.449333pt;}
.y75{bottom:581.125333pt;}
.y13{bottom:582.802667pt;}
.yb4{bottom:586.364000pt;}
.y123{bottom:587.022667pt;}
.y94{bottom:588.693333pt;}
.y39{bottom:589.514667pt;}
.y147{bottom:596.748000pt;}
.yd5{bottom:597.544000pt;}
.y12{bottom:598.742667pt;}
.y5d{bottom:600.708000pt;}
.yb3{bottom:604.430667pt;}
.y38{bottom:607.581333pt;}
.y93{bottom:608.673333pt;}
.yff{bottom:608.838667pt;}
.y92{bottom:613.252000pt;}
.y11{bottom:614.682667pt;}
.y122{bottom:617.044000pt;}
.y91{bottom:623.510667pt;}
.y146{bottom:626.768000pt;}
.yfe{bottom:626.904000pt;}
.y74{bottom:627.880000pt;}
.yd4{bottom:630.541333pt;}
.y10{bottom:630.624000pt;}
.y5c{bottom:630.728000pt;}
.yb2{bottom:631.888000pt;}
.y37{bottom:635.038667pt;}
.yfd{bottom:644.969333pt;}
.y73{bottom:645.945333pt;}
.yf{bottom:646.564000pt;}
.y121{bottom:647.064000pt;}
.y5b{bottom:648.794667pt;}
.y145{bottom:656.789333pt;}
.ye{bottom:662.504000pt;}
.y90{bottom:662.684000pt;}
.yfc{bottom:663.034667pt;}
.y72{bottom:664.010667pt;}
.y36{bottom:668.036000pt;}
.yb1{bottom:670.833333pt;}
.y120{bottom:674.521333pt;}
.y144{bottom:674.854667pt;}
.yd3{bottom:675.901333pt;}
.yd{bottom:678.444000pt;}
.y5a{bottom:678.814667pt;}
.y8f{bottom:680.750667pt;}
.yfb{bottom:681.101333pt;}
.yd2{bottom:693.968000pt;}
.y71{bottom:694.032000pt;}
.yc{bottom:694.384000pt;}
.yfa{bottom:699.166667pt;}
.yb0{bottom:700.853333pt;}
.y143{bottom:704.876000pt;}
.y8e{bottom:708.206667pt;}
.y59{bottom:708.836000pt;}
.y70{bottom:712.097333pt;}
.yb{bottom:713.105333pt;}
.y11f{bottom:713.466667pt;}
.y35{bottom:713.860000pt;}
.yf9{bottom:717.232000pt;}
.y142{bottom:722.941333pt;}
.yd1{bottom:723.005333pt;}
.y58{bottom:726.901333pt;}
.yaf{bottom:730.874667pt;}
.y11e{bottom:731.532000pt;}
.y34{bottom:731.925333pt;}
.ya{bottom:739.462667pt;}
.yd0{bottom:741.070667pt;}
.y6f{bottom:742.117333pt;}
.yf8{bottom:744.689333pt;}
.y57{bottom:744.966667pt;}
.y8d{bottom:747.153333pt;}
.y11d{bottom:749.597333pt;}
.y33{bottom:749.990667pt;}
.y141{bottom:752.961333pt;}
.yae{bottom:760.894667pt;}
.y8c{bottom:765.218667pt;}
.y11c{bottom:767.664000pt;}
.y32{bottom:768.056000pt;}
.ycf{bottom:770.108000pt;}
.y140{bottom:771.028000pt;}
.y6e{bottom:772.138667pt;}
.y56{bottom:772.424000pt;}
.yf7{bottom:782.564000pt;}
.y8b{bottom:783.284000pt;}
.y11b{bottom:785.729333pt;}
.y31{bottom:786.121333pt;}
.yce{bottom:788.173333pt;}
.y13f{bottom:789.093333pt;}
.y9{bottom:789.640000pt;}
.y6d{bottom:790.204000pt;}
.yad{bottom:790.916000pt;}
.yf6{bottom:800.629333pt;}
.y11a{bottom:803.794667pt;}
.y30{bottom:804.188000pt;}
.yac{bottom:808.981333pt;}
.y8a{bottom:813.304000pt;}
.ycd{bottom:815.630667pt;}
.yf5{bottom:818.696000pt;}
.y6c{bottom:820.225333pt;}
.y13e{bottom:821.558667pt;}
.y119{bottom:821.860000pt;}
.y55{bottom:822.005333pt;}
.y2f{bottom:822.253333pt;}
.y8{bottom:832.586667pt;}
.yab{bottom:836.438667pt;}
.yf4{bottom:836.761333pt;}
.y7{bottom:838.370667pt;}
.y118{bottom:839.925333pt;}
.y54{bottom:840.070667pt;}
.y89{bottom:843.325333pt;}
.y6b{bottom:850.245333pt;}
.y6{bottom:851.182667pt;}
.ycc{bottom:854.113333pt;}
.yf3{bottom:854.826667pt;}
.y5{bottom:856.968000pt;}
.y117{bottom:857.992000pt;}
.y53{bottom:858.137333pt;}
.y2e{bottom:859.988000pt;}
.y13d{bottom:867.382667pt;}
.yaa{bottom:869.436000pt;}
.ycb{bottom:872.178667pt;}
.y88{bottom:873.346667pt;}
.y116{bottom:876.057333pt;}
.yf2{bottom:879.170667pt;}
.y6a{bottom:880.266667pt;}
.y3{bottom:884.242667pt;}
.y52{bottom:885.162667pt;}
.y13c{bottom:885.449333pt;}
.y2d{bottom:890.008000pt;}
.y4{bottom:890.028000pt;}
.y115{bottom:894.122667pt;}
.yf1{bottom:897.236000pt;}
.y69{bottom:898.332000pt;}
.yca{bottom:901.216000pt;}
.y87{bottom:903.366667pt;}
.y13b{bottom:903.514667pt;}
.y114{bottom:912.188000pt;}
.yf0{bottom:915.301333pt;}
.y51{bottom:915.322667pt;}
.y68{bottom:916.397333pt;}
.yc9{bottom:919.281333pt;}
.ya9{bottom:919.696000pt;}
.y2c{bottom:920.029333pt;}
.y86{bottom:921.432000pt;}
.y13a{bottom:921.580000pt;}
.y2{bottom:924.534667pt;}
.y113{bottom:930.253333pt;}
.y50{bottom:933.388000pt;}
.y67{bottom:934.462667pt;}
.ya8{bottom:937.761333pt;}
.yef{bottom:939.645333pt;}
.yc8{bottom:948.320000pt;}
.y2b{bottom:950.049333pt;}
.y4f{bottom:951.453333pt;}
.y66{bottom:952.529333pt;}
.y1{bottom:953.758667pt;}
.ya7{bottom:955.826667pt;}
.yee{bottom:957.710667pt;}
.yc7{bottom:966.385333pt;}
.y139{bottom:971.466667pt;}
.yed{bottom:975.776000pt;}
.y4e{bottom:978.910667pt;}
.y2a{bottom:980.070667pt;}
.ya6{bottom:981.189333pt;}
.y65{bottom:982.381333pt;}
.yc6{bottom:984.450667pt;}
.yec{bottom:993.842667pt;}
.ya5{bottom:1003.218667pt;}
.y29{bottom:1010.812000pt;}
.y4d{bottom:1011.908000pt;}
.h4{height:40.381840pt;}
.hd{height:41.018216pt;}
.he{height:41.658217pt;}
.h9{height:43.636400pt;}
.hb{height:48.777534pt;}
.h8{height:49.849534pt;}
.h6{height:50.477173pt;}
.h5{height:55.272773pt;}
.h3{height:60.573013pt;}
.hf{height:60.873733pt;}
.hc{height:61.951067pt;}
.h7{height:72.687413pt;}
.ha{height:82.996400pt;}
.h2{height:87.224693pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:96.000000pt;}
.x2{left:101.661333pt;}
.x6a{left:103.232000pt;}
.x63{left:108.054667pt;}
.x43{left:113.840000pt;}
.x15{left:116.788000pt;}
.x14{left:118.581333pt;}
.x50{left:126.065333pt;}
.x3e{left:127.937333pt;}
.xf{left:132.364000pt;}
.x16{left:138.646667pt;}
.x5c{left:140.054667pt;}
.xe{left:152.284000pt;}
.x5a{left:155.350667pt;}
.x44{left:158.629333pt;}
.x74{left:159.566667pt;}
.x36{left:162.857333pt;}
.x2f{left:164.849333pt;}
.x56{left:165.905333pt;}
.x60{left:169.524000pt;}
.x22{left:174.778667pt;}
.x75{left:176.184000pt;}
.x1a{left:180.009333pt;}
.x11{left:184.388000pt;}
.x26{left:186.198667pt;}
.x6c{left:188.138667pt;}
.x57{left:189.314667pt;}
.x7{left:195.321333pt;}
.x6d{left:196.446667pt;}
.x24{left:199.777333pt;}
.x8{left:201.629333pt;}
.x28{left:204.189333pt;}
.x53{left:206.024000pt;}
.x6e{left:207.810667pt;}
.xc{left:213.940000pt;}
.x62{left:214.925333pt;}
.x27{left:218.581333pt;}
.x61{left:227.244000pt;}
.x17{left:228.756000pt;}
.x2e{left:231.790667pt;}
.x6f{left:233.800000pt;}
.x3{left:237.220000pt;}
.x2b{left:238.734667pt;}
.x45{left:241.844000pt;}
.x18{left:246.654667pt;}
.x3d{left:248.484000pt;}
.x1{left:250.017333pt;}
.x81{left:251.402667pt;}
.x2c{left:253.444000pt;}
.x4b{left:255.960000pt;}
.x2d{left:259.642667pt;}
.x9{left:270.673333pt;}
.x13{left:274.038667pt;}
.x3b{left:275.581333pt;}
.xa{left:276.981333pt;}
.x65{left:279.750667pt;}
.x4c{left:281.404000pt;}
.x3a{left:286.265333pt;}
.x4f{left:289.574667pt;}
.x4a{left:295.425333pt;}
.x4e{left:300.746667pt;}
.x41{left:306.353333pt;}
.x66{left:320.496000pt;}
.x4d{left:326.220000pt;}
.x54{left:330.010667pt;}
.x46{left:334.725333pt;}
.x3c{left:336.114667pt;}
.x42{left:340.205333pt;}
.x55{left:342.089333pt;}
.xb{left:344.945333pt;}
.x1d{left:350.828000pt;}
.x25{left:355.910667pt;}
.x33{left:361.070667pt;}
.x1b{left:362.968000pt;}
.x52{left:364.752000pt;}
.x47{left:365.668000pt;}
.xd{left:367.633333pt;}
.x5b{left:371.208000pt;}
.x1c{left:373.928000pt;}
.x4{left:374.822667pt;}
.x64{left:383.932000pt;}
.x5{left:386.332000pt;}
.x37{left:387.478667pt;}
.x83{left:389.618667pt;}
.x19{left:393.234667pt;}
.x29{left:400.270667pt;}
.x78{left:404.768000pt;}
.x34{left:405.896000pt;}
.x2a{left:411.909333pt;}
.x31{left:419.409333pt;}
.x1e{left:425.053333pt;}
.x32{left:428.768000pt;}
.x58{left:435.397333pt;}
.x7b{left:460.418667pt;}
.x38{left:474.341333pt;}
.x39{left:484.846667pt;}
.x23{left:488.133333pt;}
.x7e{left:492.973333pt;}
.x79{left:494.168000pt;}
.x7a{left:502.477333pt;}
.x7c{left:508.957333pt;}
.x5d{left:517.868000pt;}
.x3f{left:528.752000pt;}
.x76{left:530.646667pt;}
.x51{left:531.652000pt;}
.x7d{left:533.882667pt;}
.x70{left:540.500000pt;}
.x6b{left:543.661333pt;}
.x40{left:544.888000pt;}
.x6{left:550.172000pt;}
.x59{left:568.025333pt;}
.x12{left:569.048000pt;}
.x48{left:575.356000pt;}
.x5e{left:582.200000pt;}
.x71{left:589.038667pt;}
.x1f{left:592.162667pt;}
.x49{left:595.349333pt;}
.x67{left:596.684000pt;}
.x77{left:608.066667pt;}
.x72{left:613.965333pt;}
.x20{left:624.420000pt;}
.x73{left:630.241333pt;}
.x30{left:646.064000pt;}
.x7f{left:649.070667pt;}
.x5f{left:651.985333pt;}
.x21{left:653.685333pt;}
.x68{left:658.097333pt;}
.x80{left:665.688000pt;}
.x35{left:679.218667pt;}
.x69{left:683.237333pt;}
.x82{left:685.698667pt;}
}




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