
    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_4711e4eb9ae016c6d8a11952.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934000;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_2ad72ca5f32741a99498f6cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.915000;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_b73976e646ffc70347d216fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926000;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_42a2a2a7610ebedada3adaa4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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_8e14812c0ca306399086427f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_c45dce1a76fde367224acb4e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938000;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_9434d91ae63784b3c365eb86.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.741000;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_995c6a49cf76aa751f577348.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.865000;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_c45dda2a00b1247e9d3ef1f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.889000;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_b00a69af30479e6166d52b0d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.452000;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;}
.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);}
.v9{vertical-align:-45.820380px;}
.vb{vertical-align:-36.655140px;}
.v2{vertical-align:-32.617560px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:13.042200px;}
.v1{vertical-align:14.496660px;}
.v8{vertical-align:19.020000px;}
.v7{vertical-align:28.884000px;}
.v3{vertical-align:32.617560px;}
.vc{vertical-align:36.655140px;}
.v5{vertical-align:37.721280px;}
.va{vertical-align:45.820380px;}
.v6{vertical-align:54.523800px;}
.ls1c{letter-spacing:-15.960000px;}
.ls1a{letter-spacing:-8.400000px;}
.ls1b{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000414px;}
.ls13{letter-spacing:2.707200px;}
.ls17{letter-spacing:8.146391px;}
.ls18{letter-spacing:8.146731px;}
.ls4{letter-spacing:21.786450px;}
.lsd{letter-spacing:28.990631px;}
.ls3{letter-spacing:28.990691px;}
.ls1{letter-spacing:32.211823px;}
.ls10{letter-spacing:32.585543px;}
.ls16{letter-spacing:32.585602px;}
.ls19{letter-spacing:32.585700px;}
.ls11{letter-spacing:32.585880px;}
.ls2{letter-spacing:36.238320px;}
.lsc{letter-spacing:36.238349px;}
.ls0{letter-spacing:40.264785px;}
.lse{letter-spacing:40.732096px;}
.ls15{letter-spacing:42.084889px;}
.lsf{letter-spacing:44.274465px;}
.ls14{letter-spacing:49.353000px;}
.ls9{letter-spacing:50.915068px;}
.lsb{letter-spacing:50.915070px;}
.ls8{letter-spacing:50.915082px;}
.lsa{letter-spacing:50.915089px;}
.ls7{letter-spacing:987.704400px;}
.ls6{letter-spacing:1034.606400px;}
.ls5{letter-spacing:1142.821800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-108.360000px;}
.ws1{word-spacing:-100.800000px;}
.ws2{word-spacing:-68.388000px;}
.ws3{word-spacing:-66.720000px;}
.ws4{word-spacing:-50.040000px;}
.ws10{word-spacing:-41.700000px;}
.ws1a{word-spacing:-29.395200px;}
.ws20{word-spacing:-26.688000px;}
.wsb{word-spacing:-0.183294px;}
.ws15{word-spacing:-0.146636px;}
.ws6{word-spacing:-0.130458px;}
.ws1b{word-spacing:-0.104111px;}
.ws9{word-spacing:-0.092625px;}
.ws21{word-spacing:0.000000px;}
.ws8{word-spacing:21.656067px;}
.wsa{word-spacing:23.367015px;}
.ws14{word-spacing:24.341240px;}
.ws1f{word-spacing:24.341524px;}
.ws19{word-spacing:24.341614px;}
.ws18{word-spacing:24.383869px;}
.ws7{word-spacing:28.860192px;}
.ws13{word-spacing:28.860237px;}
.wse{word-spacing:30.426591px;}
.ws12{word-spacing:30.426816px;}
.ws11{word-spacing:30.426831px;}
.wsd{word-spacing:30.426921px;}
.wsf{word-spacing:30.426936px;}
.ws5{word-spacing:32.066887px;}
.ws17{word-spacing:32.438943px;}
.ws1e{word-spacing:32.439035px;}
.ws16{word-spacing:32.439050px;}
.ws1d{word-spacing:40.627954px;}
.ws1c{word-spacing:49.672669px;}
.wsc{word-spacing:50.784961px;}
._a{margin-left:-16.560000px;}
._1{margin-left:-11.760000px;}
._0{margin-left:-8.400000px;}
._9{margin-left:-6.440111px;}
._3{margin-left:-5.292000px;}
._e{margin-left:-4.200000px;}
._4{margin-left:-2.952000px;}
._f{margin-left:-1.542918px;}
._11{width:2.030400px;}
._12{width:3.312000px;}
._6{width:5.218995px;}
._13{width:6.317416px;}
._2{width:7.560000px;}
._18{width:16.115547px;}
._14{width:23.769600px;}
._7{width:36.946676px;}
._5{width:40.264783px;}
._10{width:50.030400px;}
._19{width:64.569318px;}
._16{width:101.178480px;}
._8{width:162.857400px;}
._d{width:706.701600px;}
._17{width:800.274000px;}
._c{width:824.172000px;}
._b{width:884.314200px;}
._15{width:1266.655800px;}
.fc7{color:rgb(255,71,57);}
.fc6{color:rgb(251,222,37);}
.fc4{color:rgb(0,224,140);}
.fc1{color:rgb(30,136,255);}
.fc5{color:rgb(169,169,169);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(66,134,247);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:92.625120px;}
.fs11{font-size:96.000000px;}
.fs10{font-size:104.111220px;}
.fs14{font-size:117.308400px;}
.fs5{font-size:120.000000px;}
.fsd{font-size:130.139040px;}
.fs7{font-size:130.457940px;}
.fs12{font-size:144.000000px;}
.fs6{font-size:144.953280px;}
.fsf{font-size:146.635500px;}
.fsb{font-size:150.000000px;}
.fs4{font-size:180.000000px;}
.fsc{font-size:183.294420px;}
.fsa{font-size:184.500000px;}
.fs13{font-size:186.000000px;}
.fs3{font-size:240.000000px;}
.fs2{font-size:246.000000px;}
.fse{font-size:282.000000px;}
.fs9{font-size:293.271000px;}
.fs1{font-size:294.000000px;}
.fs0{font-size:420.000000px;}
.y0{bottom:0.000000px;}
.yb1{bottom:0.322665px;}
.y1c{bottom:0.323910px;}
.y45{bottom:0.456360px;}
.ya8{bottom:0.503700px;}
.yac{bottom:0.504000px;}
.y17{bottom:0.507225px;}
.yaa{bottom:0.513210px;}
.y4c{bottom:0.513960px;}
.y2f{bottom:0.641700px;}
.y1f{bottom:0.805920px;}
.y2a{bottom:0.824700px;}
.y67{bottom:6.488610px;}
.y19{bottom:8.154360px;}
.y4e{bottom:9.164460px;}
.y32{bottom:9.392700px;}
.y69{bottom:9.425010px;}
.yb5{bottom:12.888000px;}
.y1b{bottom:13.954860px;}
.y28{bottom:14.026200px;}
.yaf{bottom:14.305500px;}
.yc1{bottom:14.307000px;}
.y26{bottom:18.125700px;}
.y77{bottom:19.959300px;}
.y7{bottom:24.165000px;}
.y8a{bottom:24.165105px;}
.y85{bottom:24.165150px;}
.y7b{bottom:24.480000px;}
.y93{bottom:24.480120px;}
.y66{bottom:26.092365px;}
.y80{bottom:32.220135px;}
.y7d{bottom:32.220150px;}
.y75{bottom:32.640150px;}
.yb9{bottom:37.561500px;}
.y86{bottom:53.402655px;}
.y24{bottom:59.019000px;}
.y84{bottom:72.895650px;}
.y8d{bottom:72.925500px;}
.y89{bottom:72.925545px;}
.y8f{bottom:72.925650px;}
.y7a{bottom:74.530650px;}
.y92{bottom:74.560650px;}
.y90{bottom:83.146200px;}
.y95{bottom:114.130920px;}
.y7f{bottom:120.438165px;}
.y83{bottom:121.626150px;}
.y88{bottom:123.006045px;}
.y8c{bottom:123.006150px;}
.y79{bottom:123.291150px;}
.y91{bottom:124.641150px;}
.y57{bottom:132.613170px;}
.y6e{bottom:148.600200px;}
.y56{bottom:156.982800px;}
.y82{bottom:170.386650px;}
.y87{bottom:173.086545px;}
.y55{bottom:181.352400px;}
.y6d{bottom:189.343950px;}
.y54{bottom:205.668000px;}
.y23{bottom:230.001000px;}
.y6c{bottom:230.087550px;}
.y6b{bottom:270.696300px;}
.y6a{bottom:311.305200px;}
.y81{bottom:322.962600px;}
.y8e{bottom:346.652850px;}
.y64{bottom:371.219100px;}
.y7e{bottom:382.340850px;}
.y22{bottom:409.188000px;}
.y63{bottom:411.827850px;}
.y68{bottom:444.784050px;}
.y62{bottom:454.209000px;}
.y61{bottom:494.817750px;}
.y65{bottom:528.937950px;}
.y60{bottom:535.426500px;}
.y5f{bottom:576.035400px;}
.y78{bottom:608.173800px;}
.y8b{bottom:613.198050px;}
.y5e{bottom:616.644150px;}
.y94{bottom:644.071800px;}
.y7c{bottom:645.109650px;}
.y5d{bottom:657.252900px;}
.y20{bottom:719.168400px;}
.y76{bottom:824.339250px;}
.y74{bottom:900.402450px;}
.ya6{bottom:949.021200px;}
.y73{bottom:970.032900px;}
.ya5{bottom:989.629950px;}
.y72{bottom:1010.776500px;}
.yad{bottom:1030.491600px;}
.ya4{bottom:1030.995600px;}
.y71{bottom:1051.520250px;}
.y53{bottom:1070.641050px;}
.ya3{bottom:1079.990850px;}
.y70{bottom:1092.279000px;}
.y52{bottom:1095.010800px;}
.y51{bottom:1119.326250px;}
.ya2{bottom:1120.599600px;}
.y6f{bottom:1132.737750px;}
.ya1{bottom:1161.208350px;}
.ya0{bottom:1201.817100px;}
.y9f{bottom:1242.425850px;}
.y9e{bottom:1283.169600px;}
.y9d{bottom:1323.778350px;}
.yab{bottom:1364.640150px;}
.y9c{bottom:1365.144150px;}
.y9b{bottom:1459.139250px;}
.ya9{bottom:1499.234850px;}
.y9a{bottom:1499.748000px;}
.y99{bottom:1540.357500px;}
.y98{bottom:1580.965500px;}
.ybb{bottom:1589.475000px;}
.ybd{bottom:1593.909000px;}
.ybc{bottom:1603.458000px;}
.y97{bottom:1621.575000px;}
.yb8{bottom:1636.201500px;}
.ya7{bottom:1662.436500px;}
.y96{bottom:1662.940500px;}
.yba{bottom:1673.440500px;}
.yae{bottom:1744.513500px;}
.yc0{bottom:1750.369500px;}
.yb0{bottom:1758.496500px;}
.yc2{bottom:1764.354000px;}
.ybe{bottom:2077.669500px;}
.ybf{bottom:2114.908500px;}
.yb4{bottom:2596.393500px;}
.yb2{bottom:2634.412500px;}
.yb6{bottom:2634.733500px;}
.yb3{bottom:2648.395500px;}
.yb7{bottom:2648.716500px;}
.y1e{bottom:2710.846500px;}
.y1d{bottom:2711.652000px;}
.y4d{bottom:2869.684500px;}
.y4a{bottom:2878.849500px;}
.y49{bottom:2919.457500px;}
.y50{bottom:2939.058000px;}
.y48{bottom:2960.067000px;}
.y4f{bottom:2979.517500px;}
.y4b{bottom:3000.162000px;}
.y47{bottom:3000.675000px;}
.y46{bottom:3041.284500px;}
.yd{bottom:3155.500500px;}
.y1a{bottom:3171.418500px;}
.yc{bottom:3187.984500px;}
.y44{bottom:3219.151500px;}
.yb{bottom:3220.468500px;}
.y15{bottom:3224.650500px;}
.y21{bottom:3235.690500px;}
.y3f{bottom:3236.376000px;}
.ya{bottom:3252.952500px;}
.y18{bottom:3253.153500px;}
.y3e{bottom:3276.985500px;}
.y9{bottom:3285.436500px;}
.y29{bottom:3298.639500px;}
.y3d{bottom:3317.593500px;}
.y16{bottom:3344.437500px;}
.y3c{bottom:3358.338000px;}
.y14{bottom:3390.127500px;}
.y3b{bottom:3398.946000px;}
.y13{bottom:3438.858000px;}
.y3a{bottom:3439.555500px;}
.y42{bottom:3439.638000px;}
.y27{bottom:3458.886000px;}
.y39{bottom:3480.163500px;}
.y41{bottom:3480.246000px;}
.y12{bottom:3487.588500px;}
.y40{bottom:3520.701000px;}
.y38{bottom:3520.773000px;}
.y11{bottom:3536.319000px;}
.y37{bottom:3561.381000px;}
.y10{bottom:3585.049500px;}
.y36{bottom:3601.990500px;}
.yf{bottom:3633.780000px;}
.y25{bottom:3636.022500px;}
.y35{bottom:3642.598500px;}
.ye{bottom:3682.510500px;}
.y34{bottom:3683.208000px;}
.y33{bottom:3723.813000px;}
.y31{bottom:3826.152000px;}
.y8{bottom:3828.156000px;}
.y2d{bottom:3835.545000px;}
.y30{bottom:3875.926500px;}
.y2e{bottom:3889.311000px;}
.y2c{bottom:3889.951500px;}
.y6{bottom:3906.520500px;}
.y2b{bottom:3939.883500px;}
.y43{bottom:4001.440500px;}
.y5{bottom:4035.663000px;}
.y5c{bottom:4164.651000px;}
.y5b{bottom:4233.214500px;}
.y5a{bottom:4291.005000px;}
.y59{bottom:4348.794000px;}
.y58{bottom:4406.515500px;}
.y4{bottom:4499.532000px;}
.y3{bottom:4603.648500px;}
.y2{bottom:4765.305000px;}
.y1{bottom:4880.317500px;}
.h3b{height:13.255851px;}
.h37{height:20.712270px;}
.h20{height:22.503990px;}
.h9{height:25.004445px;}
.h39{height:25.551240px;}
.h22{height:25.734540px;}
.hb{height:30.429315px;}
.h1b{height:32.168160px;}
.h1a{height:32.351460px;}
.h10{height:33.139620px;}
.h2c{height:37.647195px;}
.hd{height:39.038565px;}
.h24{height:40.323300px;}
.h1c{height:40.370595px;}
.h2d{height:40.583580px;}
.h3d{height:41.529960px;}
.h19{height:45.002895px;}
.h17{height:49.468860px;}
.h3a{height:50.115555px;}
.h3c{height:51.733004px;}
.h2f{height:66.843630px;}
.h27{height:69.984000px;}
.h28{height:70.176000px;}
.h3e{height:73.371315px;}
.h6{height:80.549835px;}
.h38{height:80.832839px;}
.h8{height:87.720000px;}
.h23{height:100.885224px;}
.he{height:101.447363px;}
.hc{height:102.797263px;}
.h21{height:102.803263px;}
.h29{height:102.816000px;}
.h2a{height:104.976000px;}
.h26{height:108.000000px;}
.h32{height:108.899775px;}
.h1d{height:109.350000px;}
.h2e{height:109.499910px;}
.h1e{height:109.650000px;}
.ha{height:114.224517px;}
.h25{height:125.883399px;}
.h18{height:126.106561px;}
.h11{height:129.332511px;}
.h7{height:131.220000px;}
.h31{height:131.580000px;}
.h16{height:134.500500px;}
.h2b{height:135.966000px;}
.h15{height:138.234000px;}
.hf{height:143.626573px;}
.h14{height:146.430000px;}
.h5{height:174.960000px;}
.h12{height:175.440000px;}
.h4{height:179.826000px;}
.h35{height:180.846000px;}
.h30{height:181.131150px;}
.h36{height:182.481150px;}
.h1f{height:205.578000px;}
.h3{height:214.914000px;}
.h33{height:228.226500px;}
.h34{height:230.926500px;}
.h2{height:302.400000px;}
.h1{height:306.180000px;}
.h13{height:476.532150px;}
.h0{height:5055.000000px;}
.w1d{width:15.308745px;}
.w1a{width:23.919915px;}
.w5{width:38.271870px;}
.w1f{width:64.855995px;}
.w21{width:65.743995px;}
.w19{width:69.119775px;}
.w16{width:86.939775px;}
.w14{width:141.393630px;}
.wc{width:160.876500px;}
.we{width:166.936350px;}
.w20{width:168.583950px;}
.wd{width:174.161400px;}
.w1b{width:187.282650px;}
.wb{width:189.488100px;}
.w2{width:193.512600px;}
.wa{width:208.670550px;}
.w13{width:211.556100px;}
.w3{width:212.146800px;}
.w9{width:232.855200px;}
.w8{width:243.412200px;}
.w4{width:262.021800px;}
.w7{width:270.076500px;}
.w24{width:282.183300px;}
.w25{width:284.697750px;}
.w1{width:304.799850px;}
.w11{width:314.135250px;}
.w22{width:320.828550px;}
.w18{width:379.976400px;}
.w17{width:379.976550px;}
.w10{width:400.336500px;}
.wf{width:447.824100px;}
.w15{width:473.895150px;}
.w1c{width:557.084550px;}
.w26{width:575.421600px;}
.w6{width:623.499150px;}
.w1e{width:630.092550px;}
.w23{width:737.651400px;}
.w12{width:1392.000000px;}
.w0{width:3576.000000px;}
.x16{left:-1.980000px;}
.x0{left:0.000000px;}
.x55{left:7.449000px;}
.x2f{left:9.438026px;}
.x3b{left:10.921800px;}
.x5{left:13.274910px;}
.x48{left:14.512650px;}
.x39{left:17.880000px;}
.x4e{left:20.788500px;}
.x47{left:25.627650px;}
.x4b{left:27.921000px;}
.x4a{left:32.871000px;}
.x4d{left:36.403500px;}
.x40{left:41.310150px;}
.x46{left:42.570150px;}
.x3f{left:48.082650px;}
.x1{left:56.988885px;}
.x5d{left:61.978500px;}
.x17{left:65.995665px;}
.x4{left:70.208550px;}
.x2{left:71.787000px;}
.x44{left:79.965150px;}
.x41{left:85.307715px;}
.x3e{left:87.390150px;}
.x5f{left:96.985500px;}
.x43{left:98.977650px;}
.x42{left:101.970150px;}
.x18{left:117.258780px;}
.x4c{left:137.451000px;}
.x13{left:146.877525px;}
.x45{left:174.802650px;}
.x3d{left:202.045500px;}
.x3a{left:267.886950px;}
.x38{left:286.191300px;}
.x19{left:395.874450px;}
.x2a{left:410.043300px;}
.x1c{left:459.987750px;}
.x29{left:471.963300px;}
.x3{left:572.426250px;}
.x2c{left:747.759450px;}
.x1d{left:806.041050px;}
.x2b{left:846.159300px;}
.x1a{left:1000.977750px;}
.x4f{left:1444.614000px;}
.x1b{left:1511.271000px;}
.x49{left:1560.316500px;}
.x1e{left:1577.355000px;}
.x1f{left:1579.192500px;}
.x20{left:1601.542500px;}
.x3c{left:1604.158500px;}
.x21{left:2056.113000px;}
.xc{left:2119.689000px;}
.xd{left:2131.794000px;}
.xb{left:2136.384000px;}
.xa{left:2143.876500px;}
.x8{left:2154.451500px;}
.x62{left:2158.024500px;}
.x9{left:2161.381500px;}
.x64{left:2167.495500px;}
.xe{left:2176.839000px;}
.x23{left:2186.646000px;}
.x26{left:2198.587500px;}
.x50{left:2252.686500px;}
.x14{left:2254.944000px;}
.x6{left:2281.476000px;}
.x5a{left:2285.613000px;}
.x51{left:2291.067000px;}
.x63{left:2353.413000px;}
.x24{left:2363.508750px;}
.x7{left:2371.816500px;}
.x53{left:2378.311500px;}
.x5b{left:2472.727500px;}
.x65{left:2542.914000px;}
.x52{left:2557.636500px;}
.x12{left:2590.842000px;}
.x11{left:2618.467500px;}
.x25{left:2636.935800px;}
.x5c{left:2740.194000px;}
.x57{left:2793.900000px;}
.x58{left:2819.037000px;}
.x5e{left:2825.692500px;}
.x54{left:2830.525500px;}
.x2d{left:2882.265000px;}
.x60{left:2940.364500px;}
.x15{left:2955.984000px;}
.xf{left:2960.133000px;}
.x27{left:2990.769000px;}
.x34{left:3000.007500px;}
.x36{left:3009.777000px;}
.x35{left:3018.832500px;}
.x37{left:3020.182500px;}
.x59{left:3025.269000px;}
.x30{left:3031.335000px;}
.x28{left:3038.356500px;}
.x31{left:3078.276000px;}
.x32{left:3090.444000px;}
.x61{left:3143.890500px;}
.x33{left:3173.094000px;}
.x56{left:3205.942500px;}
.x22{left:3245.821500px;}
.x10{left:3258.255000px;}
.x2e{left:3283.444650px;}
@media print{
.v9{vertical-align:-40.729227pt;}
.vb{vertical-align:-32.582347pt;}
.v2{vertical-align:-28.993387pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.593067pt;}
.v1{vertical-align:12.885920pt;}
.v8{vertical-align:16.906667pt;}
.v7{vertical-align:25.674667pt;}
.v3{vertical-align:28.993387pt;}
.vc{vertical-align:32.582347pt;}
.v5{vertical-align:33.530027pt;}
.va{vertical-align:40.729227pt;}
.v6{vertical-align:48.465600pt;}
.ls1c{letter-spacing:-14.186667pt;}
.ls1a{letter-spacing:-7.466667pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000368pt;}
.ls13{letter-spacing:2.406400pt;}
.ls17{letter-spacing:7.241236pt;}
.ls18{letter-spacing:7.241539pt;}
.ls4{letter-spacing:19.365733pt;}
.lsd{letter-spacing:25.769450pt;}
.ls3{letter-spacing:25.769503pt;}
.ls1{letter-spacing:28.632732pt;}
.ls10{letter-spacing:28.964927pt;}
.ls16{letter-spacing:28.964980pt;}
.ls19{letter-spacing:28.965067pt;}
.ls11{letter-spacing:28.965227pt;}
.ls2{letter-spacing:32.211840pt;}
.lsc{letter-spacing:32.211866pt;}
.ls0{letter-spacing:35.790920pt;}
.lse{letter-spacing:36.206308pt;}
.ls15{letter-spacing:37.408791pt;}
.lsf{letter-spacing:39.355080pt;}
.ls14{letter-spacing:43.869333pt;}
.ls9{letter-spacing:45.257838pt;}
.lsb{letter-spacing:45.257840pt;}
.ls8{letter-spacing:45.257851pt;}
.lsa{letter-spacing:45.257857pt;}
.ls7{letter-spacing:877.959467pt;}
.ls6{letter-spacing:919.650133pt;}
.ls5{letter-spacing:1015.841600pt;}
.ws0{word-spacing:-96.320000pt;}
.ws1{word-spacing:-89.600000pt;}
.ws2{word-spacing:-60.789333pt;}
.ws3{word-spacing:-59.306667pt;}
.ws4{word-spacing:-44.480000pt;}
.ws10{word-spacing:-37.066667pt;}
.ws1a{word-spacing:-26.129067pt;}
.ws20{word-spacing:-23.722667pt;}
.wsb{word-spacing:-0.162928pt;}
.ws15{word-spacing:-0.130343pt;}
.ws6{word-spacing:-0.115963pt;}
.ws1b{word-spacing:-0.092543pt;}
.ws9{word-spacing:-0.082333pt;}
.ws21{word-spacing:0.000000pt;}
.ws8{word-spacing:19.249837pt;}
.wsa{word-spacing:20.770680pt;}
.ws14{word-spacing:21.636657pt;}
.ws1f{word-spacing:21.636911pt;}
.ws19{word-spacing:21.636991pt;}
.ws18{word-spacing:21.674550pt;}
.ws7{word-spacing:25.653504pt;}
.ws13{word-spacing:25.653544pt;}
.wse{word-spacing:27.045858pt;}
.ws12{word-spacing:27.046058pt;}
.ws11{word-spacing:27.046072pt;}
.wsd{word-spacing:27.046152pt;}
.wsf{word-spacing:27.046165pt;}
.ws5{word-spacing:28.503899pt;}
.ws17{word-spacing:28.834616pt;}
.ws1e{word-spacing:28.834697pt;}
.ws16{word-spacing:28.834711pt;}
.ws1d{word-spacing:36.113737pt;}
.ws1c{word-spacing:44.153483pt;}
.wsc{word-spacing:45.142188pt;}
._a{margin-left:-14.720000pt;}
._1{margin-left:-10.453333pt;}
._0{margin-left:-7.466667pt;}
._9{margin-left:-5.724543pt;}
._3{margin-left:-4.704000pt;}
._e{margin-left:-3.733333pt;}
._4{margin-left:-2.624000pt;}
._f{margin-left:-1.371483pt;}
._11{width:1.804800pt;}
._12{width:2.944000pt;}
._6{width:4.639106pt;}
._13{width:5.615481pt;}
._2{width:6.720000pt;}
._18{width:14.324931pt;}
._14{width:21.128533pt;}
._7{width:32.841490pt;}
._5{width:35.790918pt;}
._10{width:44.471467pt;}
._19{width:57.394949pt;}
._16{width:89.936427pt;}
._8{width:144.762133pt;}
._d{width:628.179200pt;}
._17{width:711.354667pt;}
._c{width:732.597333pt;}
._b{width:786.057067pt;}
._15{width:1125.916267pt;}
.fs8{font-size:82.333440pt;}
.fs11{font-size:85.333333pt;}
.fs10{font-size:92.543307pt;}
.fs14{font-size:104.274133pt;}
.fs5{font-size:106.666667pt;}
.fsd{font-size:115.679147pt;}
.fs7{font-size:115.962613pt;}
.fs12{font-size:128.000000pt;}
.fs6{font-size:128.847360pt;}
.fsf{font-size:130.342667pt;}
.fsb{font-size:133.333333pt;}
.fs4{font-size:160.000000pt;}
.fsc{font-size:162.928373pt;}
.fsa{font-size:164.000000pt;}
.fs13{font-size:165.333333pt;}
.fs3{font-size:213.333333pt;}
.fs2{font-size:218.666667pt;}
.fse{font-size:250.666667pt;}
.fs9{font-size:260.685333pt;}
.fs1{font-size:261.333333pt;}
.fs0{font-size:373.333333pt;}
.y0{bottom:0.000000pt;}
.yb1{bottom:0.286813pt;}
.y1c{bottom:0.287920pt;}
.y45{bottom:0.405653pt;}
.ya8{bottom:0.447733pt;}
.yac{bottom:0.448000pt;}
.y17{bottom:0.450867pt;}
.yaa{bottom:0.456187pt;}
.y4c{bottom:0.456853pt;}
.y2f{bottom:0.570400pt;}
.y1f{bottom:0.716373pt;}
.y2a{bottom:0.733067pt;}
.y67{bottom:5.767653pt;}
.y19{bottom:7.248320pt;}
.y4e{bottom:8.146187pt;}
.y32{bottom:8.349067pt;}
.y69{bottom:8.377787pt;}
.yb5{bottom:11.456000pt;}
.y1b{bottom:12.404320pt;}
.y28{bottom:12.467733pt;}
.yaf{bottom:12.716000pt;}
.yc1{bottom:12.717333pt;}
.y26{bottom:16.111733pt;}
.y77{bottom:17.741600pt;}
.y7{bottom:21.480000pt;}
.y8a{bottom:21.480093pt;}
.y85{bottom:21.480133pt;}
.y7b{bottom:21.760000pt;}
.y93{bottom:21.760107pt;}
.y66{bottom:23.193213pt;}
.y80{bottom:28.640120pt;}
.y7d{bottom:28.640133pt;}
.y75{bottom:29.013467pt;}
.yb9{bottom:33.388000pt;}
.y86{bottom:47.469027pt;}
.y24{bottom:52.461333pt;}
.y84{bottom:64.796133pt;}
.y8d{bottom:64.822667pt;}
.y89{bottom:64.822707pt;}
.y8f{bottom:64.822800pt;}
.y7a{bottom:66.249467pt;}
.y92{bottom:66.276133pt;}
.y90{bottom:73.907733pt;}
.y95{bottom:101.449707pt;}
.y7f{bottom:107.056147pt;}
.y83{bottom:108.112133pt;}
.y88{bottom:109.338707pt;}
.y8c{bottom:109.338800pt;}
.y79{bottom:109.592133pt;}
.y91{bottom:110.792133pt;}
.y57{bottom:117.878373pt;}
.y6e{bottom:132.089067pt;}
.y56{bottom:139.540267pt;}
.y82{bottom:151.454800pt;}
.y87{bottom:153.854707pt;}
.y55{bottom:161.202133pt;}
.y6d{bottom:168.305733pt;}
.y54{bottom:182.816000pt;}
.y23{bottom:204.445333pt;}
.y6c{bottom:204.522267pt;}
.y6b{bottom:240.618933pt;}
.y6a{bottom:276.715733pt;}
.y81{bottom:287.077867pt;}
.y8e{bottom:308.135867pt;}
.y64{bottom:329.972533pt;}
.y7e{bottom:339.858533pt;}
.y22{bottom:363.722667pt;}
.y63{bottom:366.069200pt;}
.y68{bottom:395.363600pt;}
.y62{bottom:403.741333pt;}
.y61{bottom:439.838000pt;}
.y65{bottom:470.167067pt;}
.y60{bottom:475.934667pt;}
.y5f{bottom:512.031467pt;}
.y78{bottom:540.598933pt;}
.y8b{bottom:545.064933pt;}
.y5e{bottom:548.128133pt;}
.y94{bottom:572.508267pt;}
.y7c{bottom:573.430800pt;}
.y5d{bottom:584.224800pt;}
.y20{bottom:639.260800pt;}
.y76{bottom:732.746000pt;}
.y74{bottom:800.357733pt;}
.ya6{bottom:843.574400pt;}
.y73{bottom:862.251467pt;}
.ya5{bottom:879.671067pt;}
.y72{bottom:898.468000pt;}
.yad{bottom:915.992533pt;}
.ya4{bottom:916.440533pt;}
.y71{bottom:934.684667pt;}
.y53{bottom:951.680933pt;}
.ya3{bottom:959.991867pt;}
.y70{bottom:970.914667pt;}
.y52{bottom:973.342933pt;}
.y51{bottom:994.956667pt;}
.ya2{bottom:996.088533pt;}
.y6f{bottom:1006.878000pt;}
.ya1{bottom:1032.185200pt;}
.ya0{bottom:1068.281867pt;}
.y9f{bottom:1104.378533pt;}
.y9e{bottom:1140.595200pt;}
.y9d{bottom:1176.691867pt;}
.yab{bottom:1213.013467pt;}
.y9c{bottom:1213.461467pt;}
.y9b{bottom:1297.012667pt;}
.ya9{bottom:1332.653200pt;}
.y9a{bottom:1333.109333pt;}
.y99{bottom:1369.206667pt;}
.y98{bottom:1405.302667pt;}
.ybb{bottom:1412.866667pt;}
.ybd{bottom:1416.808000pt;}
.ybc{bottom:1425.296000pt;}
.y97{bottom:1441.400000pt;}
.yb8{bottom:1454.401333pt;}
.ya7{bottom:1477.721333pt;}
.y96{bottom:1478.169333pt;}
.yba{bottom:1487.502667pt;}
.yae{bottom:1550.678667pt;}
.yc0{bottom:1555.884000pt;}
.yb0{bottom:1563.108000pt;}
.yc2{bottom:1568.314667pt;}
.ybe{bottom:1846.817333pt;}
.ybf{bottom:1879.918667pt;}
.yb4{bottom:2307.905333pt;}
.yb2{bottom:2341.700000pt;}
.yb6{bottom:2341.985333pt;}
.yb3{bottom:2354.129333pt;}
.yb7{bottom:2354.414667pt;}
.y1e{bottom:2409.641333pt;}
.y1d{bottom:2410.357333pt;}
.y4d{bottom:2550.830667pt;}
.y4a{bottom:2558.977333pt;}
.y49{bottom:2595.073333pt;}
.y50{bottom:2612.496000pt;}
.y48{bottom:2631.170667pt;}
.y4f{bottom:2648.460000pt;}
.y4b{bottom:2666.810667pt;}
.y47{bottom:2667.266667pt;}
.y46{bottom:2703.364000pt;}
.yd{bottom:2804.889333pt;}
.y1a{bottom:2819.038667pt;}
.yc{bottom:2833.764000pt;}
.y44{bottom:2861.468000pt;}
.yb{bottom:2862.638667pt;}
.y15{bottom:2866.356000pt;}
.y21{bottom:2876.169333pt;}
.y3f{bottom:2876.778667pt;}
.ya{bottom:2891.513333pt;}
.y18{bottom:2891.692000pt;}
.y3e{bottom:2912.876000pt;}
.y9{bottom:2920.388000pt;}
.y29{bottom:2932.124000pt;}
.y3d{bottom:2948.972000pt;}
.y16{bottom:2972.833333pt;}
.y3c{bottom:2985.189333pt;}
.y14{bottom:3013.446667pt;}
.y3b{bottom:3021.285333pt;}
.y13{bottom:3056.762667pt;}
.y3a{bottom:3057.382667pt;}
.y42{bottom:3057.456000pt;}
.y27{bottom:3074.565333pt;}
.y39{bottom:3093.478667pt;}
.y41{bottom:3093.552000pt;}
.y12{bottom:3100.078667pt;}
.y40{bottom:3129.512000pt;}
.y38{bottom:3129.576000pt;}
.y11{bottom:3143.394667pt;}
.y37{bottom:3165.672000pt;}
.y10{bottom:3186.710667pt;}
.y36{bottom:3201.769333pt;}
.yf{bottom:3230.026667pt;}
.y25{bottom:3232.020000pt;}
.y35{bottom:3237.865333pt;}
.ye{bottom:3273.342667pt;}
.y34{bottom:3273.962667pt;}
.y33{bottom:3310.056000pt;}
.y31{bottom:3401.024000pt;}
.y8{bottom:3402.805333pt;}
.y2d{bottom:3409.373333pt;}
.y30{bottom:3445.268000pt;}
.y2e{bottom:3457.165333pt;}
.y2c{bottom:3457.734667pt;}
.y6{bottom:3472.462667pt;}
.y2b{bottom:3502.118667pt;}
.y43{bottom:3556.836000pt;}
.y5{bottom:3587.256000pt;}
.y5c{bottom:3701.912000pt;}
.y5b{bottom:3762.857333pt;}
.y5a{bottom:3814.226667pt;}
.y59{bottom:3865.594667pt;}
.y58{bottom:3916.902667pt;}
.y4{bottom:3999.584000pt;}
.y3{bottom:4092.132000pt;}
.y2{bottom:4235.826667pt;}
.y1{bottom:4338.060000pt;}
.h3b{height:11.782979pt;}
.h37{height:18.410907pt;}
.h20{height:20.003547pt;}
.h9{height:22.226173pt;}
.h39{height:22.712213pt;}
.h22{height:22.875147pt;}
.hb{height:27.048280pt;}
.h1b{height:28.593920pt;}
.h1a{height:28.756853pt;}
.h10{height:29.457440pt;}
.h2c{height:33.464173pt;}
.hd{height:34.700947pt;}
.h24{height:35.842933pt;}
.h1c{height:35.884973pt;}
.h2d{height:36.074293pt;}
.h3d{height:36.915520pt;}
.h19{height:40.002573pt;}
.h17{height:43.972320pt;}
.h3a{height:44.547160pt;}
.h3c{height:45.984893pt;}
.h2f{height:59.416560pt;}
.h27{height:62.208000pt;}
.h28{height:62.378667pt;}
.h3e{height:65.218947pt;}
.h6{height:71.599853pt;}
.h38{height:71.851413pt;}
.h8{height:77.973333pt;}
.h23{height:89.675755pt;}
.he{height:90.175433pt;}
.hc{height:91.375345pt;}
.h21{height:91.380678pt;}
.h29{height:91.392000pt;}
.h2a{height:93.312000pt;}
.h26{height:96.000000pt;}
.h32{height:96.799800pt;}
.h1d{height:97.200000pt;}
.h2e{height:97.333253pt;}
.h1e{height:97.466667pt;}
.ha{height:101.532904pt;}
.h25{height:111.896355pt;}
.h18{height:112.094721pt;}
.h11{height:114.962232pt;}
.h7{height:116.640000pt;}
.h31{height:116.960000pt;}
.h16{height:119.556000pt;}
.h2b{height:120.858667pt;}
.h15{height:122.874667pt;}
.hf{height:127.668065pt;}
.h14{height:130.160000pt;}
.h5{height:155.520000pt;}
.h12{height:155.946667pt;}
.h4{height:159.845333pt;}
.h35{height:160.752000pt;}
.h30{height:161.005467pt;}
.h36{height:162.205467pt;}
.h1f{height:182.736000pt;}
.h3{height:191.034667pt;}
.h33{height:202.868000pt;}
.h34{height:205.268000pt;}
.h2{height:268.800000pt;}
.h1{height:272.160000pt;}
.h13{height:423.584133pt;}
.h0{height:4493.333333pt;}
.w1d{width:13.607773pt;}
.w1a{width:21.262147pt;}
.w5{width:34.019440pt;}
.w1f{width:57.649773pt;}
.w21{width:58.439107pt;}
.w19{width:61.439800pt;}
.w16{width:77.279800pt;}
.w14{width:125.683227pt;}
.wc{width:143.001333pt;}
.we{width:148.387867pt;}
.w20{width:149.852400pt;}
.wd{width:154.810133pt;}
.w1b{width:166.473467pt;}
.wb{width:168.433867pt;}
.w2{width:172.011200pt;}
.wa{width:185.484933pt;}
.w13{width:188.049867pt;}
.w3{width:188.574933pt;}
.w9{width:206.982400pt;}
.w8{width:216.366400pt;}
.w4{width:232.908267pt;}
.w7{width:240.068000pt;}
.w24{width:250.829600pt;}
.w25{width:253.064667pt;}
.w1{width:270.933200pt;}
.w11{width:279.231333pt;}
.w22{width:285.180933pt;}
.w18{width:337.756800pt;}
.w17{width:337.756933pt;}
.w10{width:355.854667pt;}
.wf{width:398.065867pt;}
.w15{width:421.240133pt;}
.w1c{width:495.186267pt;}
.w26{width:511.485867pt;}
.w6{width:554.221467pt;}
.w1e{width:560.082267pt;}
.w23{width:655.690133pt;}
.w12{width:1237.333333pt;}
.w0{width:3178.666667pt;}
.x16{left:-1.760000pt;}
.x0{left:0.000000pt;}
.x55{left:6.621333pt;}
.x2f{left:8.389356pt;}
.x3b{left:9.708267pt;}
.x5{left:11.799920pt;}
.x48{left:12.900133pt;}
.x39{left:15.893333pt;}
.x4e{left:18.478667pt;}
.x47{left:22.780133pt;}
.x4b{left:24.818667pt;}
.x4a{left:29.218667pt;}
.x4d{left:32.358667pt;}
.x40{left:36.720133pt;}
.x46{left:37.840133pt;}
.x3f{left:42.740133pt;}
.x1{left:50.656787pt;}
.x5d{left:55.092000pt;}
.x17{left:58.662813pt;}
.x4{left:62.407600pt;}
.x2{left:63.810667pt;}
.x44{left:71.080133pt;}
.x41{left:75.829080pt;}
.x3e{left:77.680133pt;}
.x5f{left:86.209333pt;}
.x43{left:87.980133pt;}
.x42{left:90.640133pt;}
.x18{left:104.230027pt;}
.x4c{left:122.178667pt;}
.x13{left:130.557800pt;}
.x45{left:155.380133pt;}
.x3d{left:179.596000pt;}
.x3a{left:238.121733pt;}
.x38{left:254.392267pt;}
.x19{left:351.888400pt;}
.x2a{left:364.482933pt;}
.x1c{left:408.878000pt;}
.x29{left:419.522933pt;}
.x3{left:508.823333pt;}
.x2c{left:664.675067pt;}
.x1d{left:716.480933pt;}
.x2b{left:752.141600pt;}
.x1a{left:889.758000pt;}
.x4f{left:1284.101333pt;}
.x1b{left:1343.352000pt;}
.x49{left:1386.948000pt;}
.x1e{left:1402.093333pt;}
.x1f{left:1403.726667pt;}
.x20{left:1423.593333pt;}
.x3c{left:1425.918667pt;}
.x21{left:1827.656000pt;}
.xc{left:1884.168000pt;}
.xd{left:1894.928000pt;}
.xb{left:1899.008000pt;}
.xa{left:1905.668000pt;}
.x8{left:1915.068000pt;}
.x62{left:1918.244000pt;}
.x9{left:1921.228000pt;}
.x64{left:1926.662667pt;}
.xe{left:1934.968000pt;}
.x23{left:1943.685333pt;}
.x26{left:1954.300000pt;}
.x50{left:2002.388000pt;}
.x14{left:2004.394667pt;}
.x6{left:2027.978667pt;}
.x5a{left:2031.656000pt;}
.x51{left:2036.504000pt;}
.x63{left:2091.922667pt;}
.x24{left:2100.896667pt;}
.x7{left:2108.281333pt;}
.x53{left:2114.054667pt;}
.x5b{left:2197.980000pt;}
.x65{left:2260.368000pt;}
.x52{left:2273.454667pt;}
.x12{left:2302.970667pt;}
.x11{left:2327.526667pt;}
.x25{left:2343.942933pt;}
.x5c{left:2435.728000pt;}
.x57{left:2483.466667pt;}
.x58{left:2505.810667pt;}
.x5e{left:2511.726667pt;}
.x54{left:2516.022667pt;}
.x2d{left:2562.013333pt;}
.x60{left:2613.657333pt;}
.x15{left:2627.541333pt;}
.xf{left:2631.229333pt;}
.x27{left:2658.461333pt;}
.x34{left:2666.673333pt;}
.x36{left:2675.357333pt;}
.x35{left:2683.406667pt;}
.x37{left:2684.606667pt;}
.x59{left:2689.128000pt;}
.x30{left:2694.520000pt;}
.x28{left:2700.761333pt;}
.x31{left:2736.245333pt;}
.x32{left:2747.061333pt;}
.x61{left:2794.569333pt;}
.x33{left:2820.528000pt;}
.x56{left:2849.726667pt;}
.x22{left:2885.174667pt;}
.x10{left:2896.226667pt;}
.x2e{left:2918.617467pt;}
}




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