
    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_52751b4db9cf3bc25bf3cd81.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.965000;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_af8d8fccf44b60e088cad60f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119000;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_718b5b97e480bb6f4bd833d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_54710a286640d827f08cadb7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_54af26acc1ddb90b5cd15d40.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.746094;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_9fc53065c87a11d13e53515e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_af3b7e209172b7901b7055a0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.687500;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_80132d4c0693dc62a42e8040.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.872559;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_99c55f263093b1c42ec0bdcd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.732000;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_3018e3b20a199ceb6ce699d5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5465906101427cfb0c644d98.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677000;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);}
.v6{vertical-align:-63.985052px;}
.v8{vertical-align:-40.500001px;}
.v3{vertical-align:-33.749992px;}
.v7{vertical-align:-31.500001px;}
.v4{vertical-align:-29.250001px;}
.v1{vertical-align:-27.000001px;}
.v9{vertical-align:-3.929940px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:28.721350px;}
.v5{vertical-align:31.500001px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.032904px;}
.lsd{letter-spacing:0.034828px;}
.lsc{letter-spacing:0.036883px;}
.ls7{letter-spacing:0.058550px;}
.lsf{letter-spacing:0.058577px;}
.ls1{letter-spacing:0.749999px;}
.ls5{letter-spacing:0.750002px;}
.lse{letter-spacing:1.500003px;}
.ls9{letter-spacing:44.785359px;}
.ls6{letter-spacing:107.972021px;}
.lsb{letter-spacing:107.986185px;}
.ls3{letter-spacing:108.000003px;}
.ls8{letter-spacing:108.005910px;}
.ls2{letter-spacing:109.500007px;}
.ls4{letter-spacing:960.194512px;}
.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;}
}
.ws19{word-spacing:-41.940001px;}
.ws1e{word-spacing:-31.602000px;}
.ws18{word-spacing:-24.930001px;}
.wsa{word-spacing:-24.732001px;}
.ws9{word-spacing:-23.268000px;}
.wsb{word-spacing:-23.052000px;}
.ws4{word-spacing:-21.984001px;}
.ws17{word-spacing:-21.330001px;}
.ws6{word-spacing:-20.610001px;}
.wse{word-spacing:-20.205911px;}
.ws1{word-spacing:-19.908000px;}
.wsf{word-spacing:-19.268084px;}
.ws5{word-spacing:-19.236000px;}
.wsc{word-spacing:-18.984000px;}
.ws1b{word-spacing:-17.628001px;}
.ws16{word-spacing:-16.272001px;}
.ws2{word-spacing:-15.229336px;}
.ws7{word-spacing:-13.740001px;}
.ws11{word-spacing:-13.296001px;}
.ws13{word-spacing:-12.824001px;}
.wsd{word-spacing:-12.488083px;}
.ws1a{word-spacing:-11.752001px;}
.ws10{word-spacing:-10.848001px;}
.ws1c{word-spacing:-0.084000px;}
.ws12{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:938.933733px;}
.ws3{word-spacing:1198.233350px;}
.ws15{word-spacing:1336.714603px;}
.ws14{word-spacing:1934.439618px;}
.ws1d{word-spacing:2082.340759px;}
._1{margin-left:-28.416002px;}
._7{margin-left:-8.748000px;}
._2{margin-left:-7.680000px;}
._11{margin-left:-6.174000px;}
._9{margin-left:-5.094000px;}
._10{margin-left:-3.948000px;}
._8{margin-left:-2.592000px;}
._3{margin-left:-1.134000px;}
._5{width:1.620000px;}
._4{width:3.150000px;}
._6{width:4.374000px;}
._15{width:6.384000px;}
._0{width:11.136001px;}
._b{width:20.928001px;}
._c{width:23.232001px;}
._d{width:32.640002px;}
._e{width:35.991369px;}
._14{width:50.967153px;}
._13{width:53.982900px;}
._f{width:77.991378px;}
._1c{width:107.973568px;}
._1b{width:122.687895px;}
._1a{width:131.310004px;}
._19{width:198.809529px;}
._18{width:302.220010px;}
._17{width:322.264935px;}
._a{width:570.265210px;}
._12{width:783.002747px;}
._16{width:1324.572437px;}
.fc12{color:rgb(74,134,232);}
.fc11{color:rgb(147,196,125);}
.fcf{color:rgb(148,33,146);}
.fce{color:rgb(0,249,0);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc4{color:rgb(0,176,80);}
.fc10{color:rgb(4,51,255);}
.fc7{color:rgb(89,89,89);}
.fc1{color:rgb(135,110,255);}
.fc3{color:rgb(255,0,0);}
.fc8{color:transparent;}
.fc6{color:rgb(3,101,192);}
.fcd{color:rgb(255,147,0);}
.fca{color:rgb(61,133,198);}
.fc5{color:rgb(255,38,0);}
.fcb{color:rgb(11,83,148);}
.fc9{color:rgb(31,56,100);}
.fcc{color:rgb(204,0,0);}
.fs12{font-size:25.951201px;}
.fs14{font-size:35.364603px;}
.fs5{font-size:36.000001px;}
.fs15{font-size:39.293997px;}
.fsc{font-size:44.581803px;}
.fs8{font-size:48.000004px;}
.fse{font-size:52.000006px;}
.fs13{font-size:54.000002px;}
.fs19{font-size:55.257005px;}
.fs10{font-size:56.000003px;}
.fsb{font-size:60.000005px;}
.fsa{font-size:64.258801px;}
.fs3{font-size:72.000002px;}
.fs1c{font-size:72.000006px;}
.fsd{font-size:78.000005px;}
.fs6{font-size:84.000000px;}
.fs1a{font-size:85.257007px;}
.fs18{font-size:87.000006px;}
.fs17{font-size:89.637006px;}
.fs2{font-size:90.000003px;}
.fs9{font-size:96.000006px;}
.fs11{font-size:102.000000px;}
.fsf{font-size:108.000003px;}
.fs1{font-size:126.000004px;}
.fs7{font-size:138.000001px;}
.fs4{font-size:162.000005px;}
.fs1b{font-size:167.999999px;}
.fs16{font-size:180.000006px;}
.fs0{font-size:384.000024px;}
.y0{bottom:0.000000px;}
.y20{bottom:12.435564px;}
.y17{bottom:13.540166px;}
.y42{bottom:19.008544px;}
.y144{bottom:19.770304px;}
.yd3{bottom:21.401092px;}
.y134{bottom:23.128688px;}
.y4b{bottom:24.548607px;}
.y145{bottom:26.248452px;}
.ya3{bottom:27.940385px;}
.y176{bottom:32.863572px;}
.yb9{bottom:34.944304px;}
.y15d{bottom:35.517586px;}
.y8{bottom:39.255957px;}
.y51{bottom:41.165881px;}
.y1f{bottom:41.235563px;}
.yaf{bottom:42.169218px;}
.y153{bottom:45.036830px;}
.y123{bottom:45.160839px;}
.yf7{bottom:47.309254px;}
.y16{bottom:50.740160px;}
.yd2{bottom:51.641116px;}
.y60{bottom:52.711531px;}
.y5b{bottom:53.037894px;}
.y8b{bottom:58.253366px;}
.y41{bottom:59.208530px;}
.y175{bottom:59.863572px;}
.yb8{bottom:60.144305px;}
.yc5{bottom:64.017636px;}
.y37{bottom:65.534270px;}
.y50{bottom:66.365875px;}
.y6{bottom:68.987829px;}
.y122{bottom:69.910840px;}
.yc1{bottom:74.747268px;}
.y151{bottom:76.381408px;}
.y66{bottom:78.347672px;}
.ya2{bottom:78.919937px;}
.ya1{bottom:81.428383px;}
.yd1{bottom:81.881094px;}
.y165{bottom:82.575816px;}
.y8a{bottom:83.453389px;}
.yb7{bottom:85.344304px;}
.y159{bottom:85.624611px;}
.y146{bottom:85.983913px;}
.y174{bottom:86.863573px;}
.ybb{bottom:87.923380px;}
.y15{bottom:87.940131px;}
.yae{bottom:89.564496px;}
.y36{bottom:90.734260px;}
.y4f{bottom:91.565873px;}
.yc6{bottom:91.854658px;}
.y12e{bottom:92.585897px;}
.y28{bottom:99.098376px;}
.y40{bottom:99.408539px;}
.y2b{bottom:100.298639px;}
.yeb{bottom:100.988133px;}
.y5f{bottom:106.531521px;}
.ya0{bottom:106.628384px;}
.y164{bottom:107.775810px;}
.yd0{bottom:112.121095px;}
.y158{bottom:112.624606px;}
.yb6{bottom:113.064303px;}
.y173{bottom:113.863574px;}
.yea{bottom:115.388130px;}
.y12d{bottom:115.985904px;}
.y89{bottom:116.153371px;}
.ye8{bottom:119.036914px;}
.yad{bottom:120.164497px;}
.y65{bottom:122.327669px;}
.y5{bottom:122.750872px;}
.y27{bottom:124.298371px;}
.y14{bottom:125.140125px;}
.y2a{bottom:129.098631px;}
.ye9{bottom:129.788130px;}
.y35{bottom:130.934262px;}
.y103{bottom:131.501640px;}
.y9f{bottom:131.828374px;}
.y163{bottom:132.975808px;}
.ye7{bottom:133.436911px;}
.y143{bottom:134.086006px;}
.y150{bottom:136.927459px;}
.y12c{bottom:139.385910px;}
.y3f{bottom:139.608539px;}
.y157{bottom:139.624607px;}
.y172{bottom:140.863575px;}
.y88{bottom:141.353406px;}
.ycf{bottom:142.361096px;}
.y7c{bottom:143.281639px;}
.ye6{bottom:147.836910px;}
.y10d{bottom:150.061294px;}
.yac{bottom:150.764498px;}
.y64{bottom:151.307670px;}
.y34{bottom:156.134260px;}
.y9e{bottom:157.028369px;}
.y29{bottom:157.898629px;}
.y142{bottom:159.286004px;}
.y5e{bottom:160.351518px;}
.y14f{bottom:162.127454px;}
.y13{bottom:162.340096px;}
.y12b{bottom:162.785911px;}
.y156{bottom:166.624608px;}
.y133{bottom:167.474832px;}
.y171{bottom:167.863576px;}
.y7b{bottom:168.481673px;}
.yce{bottom:172.601109px;}
.y87{bottom:174.053388px;}
.y26{bottom:174.698372px;}
.y61{bottom:179.156945px;}
.y3e{bottom:179.808536px;}
.y160{bottom:181.384614px;}
.y9d{bottom:182.228375px;}
.yb3{bottom:182.837757px;}
.ye5{bottom:184.610855px;}
.y12a{bottom:186.185916px;}
.y4e{bottom:186.760843px;}
.y5d{bottom:187.261517px;}
.y14e{bottom:187.327460px;}
.y155{bottom:193.624609px;}
.y170{bottom:194.863580px;}
.y63{bottom:195.287665px;}
.y16e{bottom:196.074201px;}
.y93{bottom:197.307628px;}
.ye4{bottom:199.235856px;}
.y12{bottom:199.540101px;}
.y25{bottom:199.898370px;}
.yab{bottom:201.164499px;}
.y7a{bottom:201.181644px;}
.y33{bottom:201.782833px;}
.ycd{bottom:202.841110px;}
.y86{bottom:206.753370px;}
.y9c{bottom:207.428369px;}
.y15f{bottom:210.184606px;}
.y152{bottom:211.381412px;}
.y4d{bottom:211.960837px;}
.y14d{bottom:212.527454px;}
.y140{bottom:212.559074px;}
.ye3{bottom:213.860855px;}
.y10e{bottom:214.384116px;}
.y138{bottom:216.954331px;}
.y10f{bottom:220.750278px;}
.y154{bottom:220.984604px;}
.y16f{bottom:221.863579px;}
.y92{bottom:222.507618px;}
.y129{bottom:222.905914px;}
.y16d{bottom:223.074201px;}
.y62{bottom:224.267660px;}
.y3d{bottom:225.457075px;}
.y79{bottom:226.381679px;}
.yb2{bottom:226.984351px;}
.yaa{bottom:231.764512px;}
.y85{bottom:231.953382px;}
.y9b{bottom:232.628368px;}
.ycc{bottom:233.081122px;}
.y104{bottom:235.020118px;}
.y11{bottom:236.740094px;}
.y4c{bottom:237.160835px;}
.y14c{bottom:237.727453px;}
.y13f{bottom:237.759068px;}
.y15e{bottom:238.984604px;}
.y137{bottom:242.154337px;}
.y5c{bottom:244.829283px;}
.y4a{bottom:245.633255px;}
.yf1{bottom:246.626509px;}
.y4{bottom:247.172118px;}
.y91{bottom:247.707618px;}
.y16c{bottom:250.074202px;}
.y24{bottom:252.810598px;}
.yf3{bottom:253.758500px;}
.yba{bottom:256.887038px;}
.yf6{bottom:257.011391px;}
.y78{bottom:259.081673px;}
.yf0{bottom:261.026506px;}
.y13e{bottom:262.959066px;}
.ycb{bottom:263.321111px;}
.y84{bottom:264.653376px;}
.y136{bottom:267.354331px;}
.yf2{bottom:268.158499px;}
.y3{bottom:268.772119px;}
.y90{bottom:272.907608px;}
.y10{bottom:273.940099px;}
.y10c{bottom:274.713880px;}
.yef{bottom:275.426506px;}
.y23{bottom:281.610597px;}
.ya9{bottom:282.164513px;}
.y77{bottom:284.281673px;}
.yee{bottom:284.673387px;}
.y32{bottom:287.473405px;}
.y135{bottom:292.554330px;}
.yca{bottom:293.561107px;}
.y102{bottom:294.527622px;}
.y45{bottom:294.548616px;}
.y83{bottom:297.353381px;}
.y8f{bottom:298.107603px;}
.yf5{bottom:298.201644px;}
.yed{bottom:299.298390px;}
.y16b{bottom:304.074204px;}
.yf{bottom:311.140104px;}
.y13d{bottom:312.423572px;}
.y14b{bottom:312.424258px;}
.y31{bottom:312.673412px;}
.y162{bottom:312.700034px;}
.ya8{bottom:312.764514px;}
.yf4{bottom:312.826644px;}
.yec{bottom:313.923390px;}
.y70{bottom:316.338174px;}
.y76{bottom:316.981678px;}
.yc0{bottom:317.747276px;}
.y101{bottom:319.727612px;}
.y82{bottom:322.553370px;}
.y8e{bottom:323.307610px;}
.y3c{bottom:323.527941px;}
.yc9{bottom:323.801104px;}
.y11d{bottom:327.097577px;}
.y115{bottom:327.830391px;}
.ybf{bottom:330.259594px;}
.y10b{bottom:330.527624px;}
.y16a{bottom:331.074205px;}
.y2{bottom:335.300112px;}
.y13c{bottom:337.623566px;}
.y14a{bottom:337.624252px;}
.y30{bottom:337.873406px;}
.y161{bottom:337.900032px;}
.y6f{bottom:341.538174px;}
.yb1{bottom:341.817042px;}
.y21{bottom:342.124869px;}
.yc4{bottom:343.017645px;}
.ya7{bottom:343.364515px;}
.yc3{bottom:344.748424px;}
.y100{bottom:344.927613px;}
.yb5{bottom:345.144803px;}
.ye{bottom:348.340098px;}
.y8d{bottom:348.507604px;}
.y3b{bottom:348.727930px;}
.y75{bottom:349.681672px;}
.y120{bottom:351.840942px;}
.y11c{bottom:354.097578px;}
.y114{bottom:354.830392px;}
.y57{bottom:355.131881px;}
.y81{bottom:355.253375px;}
.y10a{bottom:355.727613px;}
.yc8{bottom:356.201105px;}
.y169{bottom:358.074206px;}
.y128{bottom:358.985895px;}
.y5a{bottom:360.538912px;}
.ye2{bottom:362.457210px;}
.y13b{bottom:362.823564px;}
.y149{bottom:362.824251px;}
.y2f{bottom:363.073404px;}
.y1e{bottom:363.744530px;}
.yff{bottom:370.127602px;}
.y132{bottom:370.819719px;}
.y22{bottom:370.924867px;}
.ydd{bottom:373.585982px;}
.y8c{bottom:373.707602px;}
.y9a{bottom:374.781239px;}
.y80{bottom:380.453376px;}
.y109{bottom:380.927614px;}
.y74{bottom:382.381677px;}
.y127{bottom:382.385901px;}
.y59{bottom:383.938909px;}
.y168{bottom:385.074210px;}
.yd{bottom:385.540098px;}
.y15c{bottom:386.500043px;}
.y3a{bottom:388.927933px;}
.y1{bottom:390.938708px;}
.y6e{bottom:391.938159px;}
.y56{bottom:392.031882px;}
.ye1{bottom:393.149736px;}
.ya6{bottom:393.764517px;}
.y48{bottom:394.813977px;}
.y1d{bottom:395.182557px;}
.yfe{bottom:395.327598px;}
.y131{bottom:396.019726px;}
.y19{bottom:398.057956px;}
.ydc{bottom:398.785977px;}
.y11b{bottom:399.097580px;}
.y113{bottom:399.830393px;}
.y99{bottom:399.981240px;}
.y6a{bottom:400.124417px;}
.yd7{bottom:402.863039px;}
.y126{bottom:405.785902px;}
.y108{bottom:406.127604px;}
.y43{bottom:406.804001px;}
.y58{bottom:407.338909px;}
.y15b{bottom:411.700037px;}
.y148{bottom:411.700498px;}
.y167{bottom:412.074209px;}
.y7f{bottom:413.153381px;}
.y39{bottom:414.127931px;}
.y2e{bottom:414.739717px;}
.y73{bottom:415.081681px;}
.y1c{bottom:416.782558px;}
.y6d{bottom:417.138154px;}
.y130{bottom:421.219720px;}
.ybe{bottom:422.627006px;}
.yc{bottom:422.740099px;}
.y13a{bottom:422.950487px;}
.ye0{bottom:423.842259px;}
.ydb{bottom:423.985967px;}
.ya5{bottom:424.364512px;}
.y98{bottom:425.181230px;}
.y11a{bottom:426.097580px;}
.y112{bottom:426.830394px;}
.yd6{bottom:428.063035px;}
.y55{bottom:428.931888px;}
.y69{bottom:429.104418px;}
.y125{bottom:429.185907px;}
.y107{bottom:431.327599px;}
.yb0{bottom:434.731483px;}
.y15a{bottom:436.900036px;}
.y147{bottom:436.900497px;}
.y1b{bottom:441.973903px;}
.y6c{bottom:442.338155px;}
.y11e{bottom:442.539564px;}
.y2d{bottom:443.539716px;}
.y12f{bottom:446.419718px;}
.ybd{bottom:447.827002px;}
.y139{bottom:448.150486px;}
.yfd{bottom:448.247596px;}
.yda{bottom:449.185972px;}
.y97{bottom:450.381225px;}
.y7e{bottom:450.593377px;}
.y11f{bottom:452.435430px;}
.y72{bottom:452.521678px;}
.y119{bottom:453.097581px;}
.yd5{bottom:453.263029px;}
.y111{bottom:453.830395px;}
.ydf{bottom:454.534773px;}
.ya4{bottom:454.964510px;}
.y141{bottom:460.770318px;}
.yb{bottom:461.101422px;}
.y54{bottom:465.831892px;}
.y124{bottom:465.905905px;}
.y106{bottom:466.247596px;}
.y166{bottom:470.054522px;}
.y68{bottom:470.084411px;}
.y38{bottom:470.302544px;}
.y1a{bottom:470.771894px;}
.yb4{bottom:470.934917px;}
.y96{bottom:475.581231px;}
.y46{bottom:475.813968px;}
.y117{bottom:476.739568px;}
.y6b{bottom:479.778156px;}
.ybc{bottom:480.527003px;}
.y7d{bottom:482.993383px;}
.y2c{bottom:483.542467px;}
.y71{bottom:484.921684px;}
.yde{bottom:485.436454px;}
.ya{bottom:486.301416px;}
.yd9{bottom:487.378910px;}
.yfa{bottom:493.037951px;}
.yfc{bottom:493.043858px;}
.yd4{bottom:493.943019px;}
.y105{bottom:495.047595px;}
.y121{bottom:498.097045px;}
.y118{bottom:498.097584px;}
.y110{bottom:498.830398px;}
.y95{bottom:500.781225px;}
.y53{bottom:502.731893px;}
.y116{bottom:503.739567px;}
.y49{bottom:507.790745px;}
.y47{bottom:507.791432px;}
.y44{bottom:510.547379px;}
.y67{bottom:511.064407px;}
.y9{bottom:511.501415px;}
.yf9{bottom:511.667952px;}
.yfb{bottom:511.673858px;}
.y94{bottom:525.981224px;}
.yd8{bottom:546.471293px;}
.y18{bottom:548.160750px;}
.yc7{bottom:550.900276px;}
.y7{bottom:553.442374px;}
.yf8{bottom:553.780279px;}
.y52{bottom:555.543563px;}
.yc2{bottom:567.404636px;}
.h1b{height:19.463401px;}
.h1e{height:25.391785px;}
.h7{height:27.000001px;}
.h20{height:28.213090px;}
.h27{height:33.375002px;}
.h28{height:34.453127px;}
.h2a{height:38.759767px;}
.h1c{height:38.772001px;}
.hf{height:41.505659px;}
.he{height:44.688003px;}
.hc{height:49.929088px;}
.h17{height:51.679689px;}
.h12{height:52.901371px;}
.h5{height:55.944002px;}
.h11{height:55.986332px;}
.h2d{height:60.292969px;}
.h30{height:62.578127px;}
.h2f{height:64.599611px;}
.h22{height:65.184000px;}
.h26{height:66.159438px;}
.h4{height:67.032002px;}
.h1f{height:67.500002px;}
.h24{height:67.599004px;}
.h23{height:69.647954px;}
.h2e{height:69.930002px;}
.h15{height:70.921875px;}
.h10{height:72.618005px;}
.h16{height:73.212891px;}
.h2b{height:74.592005px;}
.h2c{height:77.519534px;}
.h8{height:78.204000px;}
.h19{height:79.254000px;}
.h25{height:79.374274px;}
.h14{height:83.636003px;}
.h3{height:83.790003px;}
.h1a{height:87.609378px;}
.hb{height:89.376006px;}
.ha{height:89.384034px;}
.h18{height:94.962000px;}
.h1d{height:95.808992px;}
.h13{height:100.548003px;}
.h2{height:117.306004px;}
.hd{height:118.097356px;}
.h9{height:128.478001px;}
.h6{height:150.822005px;}
.h29{height:156.407999px;}
.h21{height:167.580005px;}
.h1{height:298.368019px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x44{left:9.843662px;}
.x30{left:16.378938px;}
.x4{left:17.594012px;}
.x6d{left:21.439118px;}
.x6a{left:23.158752px;}
.x28{left:24.369095px;}
.x26{left:27.362572px;}
.x25{left:29.425815px;}
.x2e{left:30.701934px;}
.x73{left:37.712600px;}
.x1{left:39.234331px;}
.x15{left:43.733359px;}
.x83{left:44.811026px;}
.x7b{left:47.667023px;}
.x3c{left:50.625011px;}
.x19{left:52.210355px;}
.x4a{left:54.085362px;}
.x2{left:60.232475px;}
.x6b{left:61.363719px;}
.x5{left:63.191052px;}
.x48{left:64.220286px;}
.x46{left:67.582009px;}
.xd{left:68.910196px;}
.x2f{left:70.378939px;}
.x81{left:71.828963px;}
.xa{left:74.810279px;}
.x60{left:79.773516px;}
.x7a{left:81.101926px;}
.x40{left:82.889305px;}
.x6c{left:84.876194px;}
.x3d{left:86.167326px;}
.x41{left:88.081619px;}
.x7f{left:89.258875px;}
.x10{left:91.316928px;}
.x75{left:97.733271px;}
.x7d{left:106.591814px;}
.x1b{left:108.445757px;}
.x82{left:110.666355px;}
.x80{left:113.173237px;}
.x7e{left:122.173238px;}
.x22{left:125.708769px;}
.xb{left:132.841101px;}
.x1a{left:133.962113px;}
.x3f{left:138.634407px;}
.xe{left:144.294318px;}
.x49{left:156.674921px;}
.xf{left:166.383500px;}
.x69{left:179.608236px;}
.x47{left:223.309687px;}
.x55{left:228.712991px;}
.x45{left:261.395766px;}
.x74{left:283.399642px;}
.x70{left:285.038390px;}
.x4d{left:294.886378px;}
.x5c{left:305.672837px;}
.x5d{left:307.640485px;}
.x3e{left:323.000560px;}
.x4e{left:326.393347px;}
.x78{left:337.023564px;}
.x4f{left:339.250803px;}
.x72{left:353.887253px;}
.x54{left:364.395419px;}
.x3a{left:367.909116px;}
.x34{left:372.218637px;}
.x31{left:373.681878px;}
.x6e{left:380.028567px;}
.x32{left:384.184843px;}
.x33{left:386.541633px;}
.x16{left:407.946894px;}
.x2d{left:432.097439px;}
.x17{left:434.946895px;}
.x1c{left:444.684412px;}
.x68{left:454.031486px;}
.x1d{left:466.964565px;}
.x1e{left:486.445853px;}
.x6f{left:488.028571px;}
.x56{left:514.570201px;}
.x5a{left:520.151563px;}
.x11{left:521.252600px;}
.xc{left:523.037919px;}
.x12{left:524.755074px;}
.x7{left:543.499345px;}
.x6{left:544.937317px;}
.x8{left:546.563740px;}
.x29{left:547.875018px;}
.x2a{left:558.482174px;}
.x5b{left:559.865784px;}
.x2b{left:585.000019px;}
.x13{left:592.732369px;}
.x14{left:597.156544px;}
.x4b{left:603.464152px;}
.x4c{left:613.583453px;}
.x53{left:650.734108px;}
.x57{left:654.370760px;}
.x50{left:664.820549px;}
.x51{left:672.082030px;}
.x59{left:675.155384px;}
.x62{left:676.615095px;}
.x64{left:683.290543px;}
.x52{left:684.939487px;}
.x58{left:693.364519px;}
.x7c{left:711.434048px;}
.x65{left:722.967548px;}
.x71{left:730.582673px;}
.x38{left:741.183042px;}
.x23{left:745.343574px;}
.x9{left:747.550093px;}
.x24{left:754.195862px;}
.x35{left:755.326214px;}
.x63{left:756.347919px;}
.x39{left:761.176262px;}
.x27{left:766.909712px;}
.x2c{left:770.598628px;}
.x5e{left:772.919071px;}
.x3b{left:780.959657px;}
.x37{left:784.553144px;}
.x5f{left:785.967550px;}
.x20{left:816.218464px;}
.x21{left:819.445864px;}
.x79{left:824.870085px;}
.x61{left:829.582677px;}
.x36{left:849.015933px;}
.x66{left:877.107336px;}
.x43{left:889.653291px;}
.x77{left:892.196804px;}
.x42{left:904.809741px;}
.x76{left:906.735292px;}
.x1f{left:912.684404px;}
.x67{left:988.831719px;}
.x18{left:1030.790053px;}
.x3{left:1035.777847px;}
@media print{
.v6{vertical-align:-56.875602pt;}
.v8{vertical-align:-36.000001pt;}
.v3{vertical-align:-29.999993pt;}
.v7{vertical-align:-28.000001pt;}
.v4{vertical-align:-26.000001pt;}
.v1{vertical-align:-24.000001pt;}
.v9{vertical-align:-3.493280pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:25.530089pt;}
.v5{vertical-align:28.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.029248pt;}
.lsd{letter-spacing:0.030959pt;}
.lsc{letter-spacing:0.032785pt;}
.ls7{letter-spacing:0.052044pt;}
.lsf{letter-spacing:0.052068pt;}
.ls1{letter-spacing:0.666666pt;}
.ls5{letter-spacing:0.666668pt;}
.lse{letter-spacing:1.333336pt;}
.ls9{letter-spacing:39.809208pt;}
.ls6{letter-spacing:95.975130pt;}
.lsb{letter-spacing:95.987720pt;}
.ls3{letter-spacing:96.000003pt;}
.ls8{letter-spacing:96.005253pt;}
.ls2{letter-spacing:97.333339pt;}
.ls4{letter-spacing:853.506233pt;}
.ws19{word-spacing:-37.280001pt;}
.ws1e{word-spacing:-28.090667pt;}
.ws18{word-spacing:-22.160001pt;}
.wsa{word-spacing:-21.984001pt;}
.ws9{word-spacing:-20.682667pt;}
.wsb{word-spacing:-20.490667pt;}
.ws4{word-spacing:-19.541335pt;}
.ws17{word-spacing:-18.960001pt;}
.ws6{word-spacing:-18.320001pt;}
.wse{word-spacing:-17.960810pt;}
.ws1{word-spacing:-17.696000pt;}
.wsf{word-spacing:-17.127185pt;}
.ws5{word-spacing:-17.098667pt;}
.wsc{word-spacing:-16.874667pt;}
.ws1b{word-spacing:-15.669334pt;}
.ws16{word-spacing:-14.464001pt;}
.ws2{word-spacing:-13.537187pt;}
.ws7{word-spacing:-12.213334pt;}
.ws11{word-spacing:-11.818667pt;}
.ws13{word-spacing:-11.399112pt;}
.wsd{word-spacing:-11.100518pt;}
.ws1a{word-spacing:-10.446223pt;}
.ws10{word-spacing:-9.642667pt;}
.ws1c{word-spacing:-0.074667pt;}
.ws12{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:834.607763pt;}
.ws3{word-spacing:1065.096311pt;}
.ws15{word-spacing:1188.190758pt;}
.ws14{word-spacing:1719.501883pt;}
.ws1d{word-spacing:1850.969563pt;}
._1{margin-left:-25.258668pt;}
._7{margin-left:-7.776000pt;}
._2{margin-left:-6.826667pt;}
._11{margin-left:-5.488000pt;}
._9{margin-left:-4.528000pt;}
._10{margin-left:-3.509333pt;}
._8{margin-left:-2.304000pt;}
._3{margin-left:-1.008000pt;}
._5{width:1.440000pt;}
._4{width:2.800000pt;}
._6{width:3.888000pt;}
._15{width:5.674667pt;}
._0{width:9.898667pt;}
._b{width:18.602668pt;}
._c{width:20.650668pt;}
._d{width:29.013335pt;}
._e{width:31.992328pt;}
._14{width:45.304136pt;}
._13{width:47.984800pt;}
._f{width:69.325669pt;}
._1c{width:95.976505pt;}
._1b{width:109.055906pt;}
._1a{width:116.720004pt;}
._19{width:176.719582pt;}
._18{width:268.640009pt;}
._17{width:286.457720pt;}
._a{width:506.902409pt;}
._12{width:696.002442pt;}
._16{width:1177.397722pt;}
.fs12{font-size:23.067734pt;}
.fs14{font-size:31.435203pt;}
.fs5{font-size:32.000001pt;}
.fs15{font-size:34.927997pt;}
.fsc{font-size:39.628269pt;}
.fs8{font-size:42.666670pt;}
.fse{font-size:46.222228pt;}
.fs13{font-size:48.000002pt;}
.fs19{font-size:49.117338pt;}
.fs10{font-size:49.777780pt;}
.fsb{font-size:53.333338pt;}
.fsa{font-size:57.118934pt;}
.fs3{font-size:64.000002pt;}
.fs1c{font-size:64.000005pt;}
.fsd{font-size:69.333338pt;}
.fs6{font-size:74.666666pt;}
.fs1a{font-size:75.784006pt;}
.fs18{font-size:77.333338pt;}
.fs17{font-size:79.677339pt;}
.fs2{font-size:80.000003pt;}
.fs9{font-size:85.333339pt;}
.fs11{font-size:90.666667pt;}
.fsf{font-size:96.000003pt;}
.fs1{font-size:112.000004pt;}
.fs7{font-size:122.666668pt;}
.fs4{font-size:144.000005pt;}
.fs1b{font-size:149.333333pt;}
.fs16{font-size:160.000005pt;}
.fs0{font-size:341.333355pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:11.053835pt;}
.y17{bottom:12.035703pt;}
.y42{bottom:16.896483pt;}
.y144{bottom:17.573603pt;}
.yd3{bottom:19.023193pt;}
.y134{bottom:20.558833pt;}
.y4b{bottom:21.820984pt;}
.y145{bottom:23.331957pt;}
.ya3{bottom:24.835898pt;}
.y176{bottom:29.212064pt;}
.yb9{bottom:31.061604pt;}
.y15d{bottom:31.571188pt;}
.y8{bottom:34.894184pt;}
.y51{bottom:36.591894pt;}
.y1f{bottom:36.653834pt;}
.yaf{bottom:37.483749pt;}
.y153{bottom:40.032738pt;}
.y123{bottom:40.142968pt;}
.yf7{bottom:42.052670pt;}
.y16{bottom:45.102364pt;}
.yd2{bottom:45.903214pt;}
.y60{bottom:46.854694pt;}
.y5b{bottom:47.144794pt;}
.y8b{bottom:51.780769pt;}
.y41{bottom:52.629804pt;}
.y175{bottom:53.212064pt;}
.yb8{bottom:53.461604pt;}
.yc5{bottom:56.904566pt;}
.y37{bottom:58.252685pt;}
.y50{bottom:58.991889pt;}
.y6{bottom:61.322515pt;}
.y122{bottom:62.142969pt;}
.yc1{bottom:66.442016pt;}
.y151{bottom:67.894585pt;}
.y66{bottom:69.642375pt;}
.ya2{bottom:70.151055pt;}
.ya1{bottom:72.380785pt;}
.yd1{bottom:72.783195pt;}
.y165{bottom:73.400725pt;}
.y8a{bottom:74.180790pt;}
.yb7{bottom:75.861603pt;}
.y159{bottom:76.110765pt;}
.y146{bottom:76.430145pt;}
.y174{bottom:77.212065pt;}
.ybb{bottom:78.154116pt;}
.y15{bottom:78.169005pt;}
.yae{bottom:79.612885pt;}
.y36{bottom:80.652675pt;}
.y4f{bottom:81.391887pt;}
.yc6{bottom:81.648585pt;}
.y12e{bottom:82.298575pt;}
.y28{bottom:88.087446pt;}
.y40{bottom:88.363146pt;}
.y2b{bottom:89.154346pt;}
.yeb{bottom:89.767230pt;}
.y5f{bottom:94.694686pt;}
.ya0{bottom:94.780786pt;}
.y164{bottom:95.800720pt;}
.yd0{bottom:99.663196pt;}
.y158{bottom:100.110761pt;}
.yb6{bottom:100.501603pt;}
.y173{bottom:101.212066pt;}
.yea{bottom:102.567227pt;}
.y12d{bottom:103.098581pt;}
.y89{bottom:103.247441pt;}
.ye8{bottom:105.810590pt;}
.yad{bottom:106.812886pt;}
.y65{bottom:108.735706pt;}
.y5{bottom:109.111886pt;}
.y27{bottom:110.487441pt;}
.y14{bottom:111.235666pt;}
.y2a{bottom:114.754338pt;}
.ye9{bottom:115.367226pt;}
.y35{bottom:116.386010pt;}
.y103{bottom:116.890346pt;}
.y9f{bottom:117.180776pt;}
.y163{bottom:118.200719pt;}
.ye7{bottom:118.610588pt;}
.y143{bottom:119.187561pt;}
.y150{bottom:121.713297pt;}
.y12c{bottom:123.898587pt;}
.y3f{bottom:124.096479pt;}
.y157{bottom:124.110762pt;}
.y172{bottom:125.212067pt;}
.y88{bottom:125.647472pt;}
.ycf{bottom:126.543197pt;}
.y7c{bottom:127.361457pt;}
.ye6{bottom:131.410587pt;}
.y10d{bottom:133.387817pt;}
.yac{bottom:134.012887pt;}
.y64{bottom:134.495707pt;}
.y34{bottom:138.786009pt;}
.y9e{bottom:139.580772pt;}
.y29{bottom:140.354337pt;}
.y142{bottom:141.587559pt;}
.y5e{bottom:142.534682pt;}
.y14f{bottom:144.113292pt;}
.y13{bottom:144.302307pt;}
.y12b{bottom:144.698587pt;}
.y156{bottom:148.110762pt;}
.y133{bottom:148.866517pt;}
.y171{bottom:149.212067pt;}
.y7b{bottom:149.761488pt;}
.yce{bottom:153.423208pt;}
.y87{bottom:154.714123pt;}
.y26{bottom:155.287442pt;}
.y61{bottom:159.250618pt;}
.y3e{bottom:159.829810pt;}
.y160{bottom:161.230768pt;}
.y9d{bottom:161.980778pt;}
.yb3{bottom:162.522451pt;}
.ye5{bottom:164.098538pt;}
.y12a{bottom:165.498592pt;}
.y4e{bottom:166.009638pt;}
.y5d{bottom:166.454682pt;}
.y14e{bottom:166.513298pt;}
.y155{bottom:172.110763pt;}
.y170{bottom:173.212071pt;}
.y63{bottom:173.589035pt;}
.y16e{bottom:174.288178pt;}
.y93{bottom:175.384558pt;}
.ye4{bottom:177.098538pt;}
.y12{bottom:177.368978pt;}
.y25{bottom:177.687440pt;}
.yab{bottom:178.812888pt;}
.y7a{bottom:178.828128pt;}
.y33{bottom:179.362518pt;}
.ycd{bottom:180.303208pt;}
.y86{bottom:183.780774pt;}
.y9c{bottom:184.380773pt;}
.y15f{bottom:186.830761pt;}
.y152{bottom:187.894589pt;}
.y4d{bottom:188.409633pt;}
.y14d{bottom:188.913293pt;}
.y140{bottom:188.941399pt;}
.ye3{bottom:190.098538pt;}
.y10e{bottom:190.563659pt;}
.y138{bottom:192.848294pt;}
.y10f{bottom:196.222469pt;}
.y154{bottom:196.430759pt;}
.y16f{bottom:197.212070pt;}
.y92{bottom:197.784549pt;}
.y129{bottom:198.138590pt;}
.y16d{bottom:198.288179pt;}
.y62{bottom:199.349031pt;}
.y3d{bottom:200.406289pt;}
.y79{bottom:201.228159pt;}
.yb2{bottom:201.763867pt;}
.yaa{bottom:206.012899pt;}
.y85{bottom:206.180784pt;}
.y9b{bottom:206.780771pt;}
.ycc{bottom:207.183219pt;}
.y104{bottom:208.906771pt;}
.y11{bottom:210.435639pt;}
.y4c{bottom:210.809631pt;}
.y14c{bottom:211.313291pt;}
.y13f{bottom:211.341393pt;}
.y15e{bottom:212.430760pt;}
.y137{bottom:215.248300pt;}
.y5c{bottom:217.626030pt;}
.y4a{bottom:218.340671pt;}
.yf1{bottom:219.223564pt;}
.y4{bottom:219.708550pt;}
.y91{bottom:220.184550pt;}
.y16c{bottom:222.288180pt;}
.y24{bottom:224.720532pt;}
.yf3{bottom:225.563111pt;}
.yba{bottom:228.344034pt;}
.yf6{bottom:228.454570pt;}
.y78{bottom:230.294820pt;}
.yf0{bottom:232.023561pt;}
.y13e{bottom:233.741392pt;}
.ycb{bottom:234.063210pt;}
.y84{bottom:235.247445pt;}
.y136{bottom:237.648294pt;}
.yf2{bottom:238.363110pt;}
.y3{bottom:238.908550pt;}
.y90{bottom:242.584540pt;}
.y10{bottom:243.502311pt;}
.y10c{bottom:244.190116pt;}
.yef{bottom:244.823561pt;}
.y23{bottom:250.320531pt;}
.ya9{bottom:250.812901pt;}
.y77{bottom:252.694821pt;}
.yee{bottom:253.043011pt;}
.y32{bottom:255.531916pt;}
.y135{bottom:260.048293pt;}
.yca{bottom:260.943206pt;}
.y102{bottom:261.802331pt;}
.y45{bottom:261.820992pt;}
.y83{bottom:264.314116pt;}
.y8f{bottom:264.984536pt;}
.yf5{bottom:265.068128pt;}
.yed{bottom:266.043013pt;}
.y16b{bottom:270.288181pt;}
.yf{bottom:276.568982pt;}
.y13d{bottom:277.709842pt;}
.y14b{bottom:277.710452pt;}
.y31{bottom:277.931922pt;}
.y162{bottom:277.955586pt;}
.ya8{bottom:278.012902pt;}
.yf4{bottom:278.068128pt;}
.yec{bottom:279.043014pt;}
.y70{bottom:281.189488pt;}
.y76{bottom:281.761492pt;}
.yc0{bottom:282.442023pt;}
.y101{bottom:284.202322pt;}
.y82{bottom:286.714107pt;}
.y8e{bottom:287.384542pt;}
.y3c{bottom:287.580392pt;}
.yc9{bottom:287.823204pt;}
.y11d{bottom:290.753402pt;}
.y115{bottom:291.404792pt;}
.ybf{bottom:293.564083pt;}
.y10b{bottom:293.802332pt;}
.y16a{bottom:294.288182pt;}
.y2{bottom:298.044544pt;}
.y13c{bottom:300.109836pt;}
.y14a{bottom:300.110446pt;}
.y30{bottom:300.331916pt;}
.y161{bottom:300.355584pt;}
.y6f{bottom:303.589488pt;}
.yb1{bottom:303.837370pt;}
.y21{bottom:304.110994pt;}
.yc4{bottom:304.904573pt;}
.ya7{bottom:305.212902pt;}
.yc3{bottom:306.443044pt;}
.y100{bottom:306.602323pt;}
.yb5{bottom:306.795381pt;}
.ye{bottom:309.635643pt;}
.y8d{bottom:309.784537pt;}
.y3b{bottom:309.980383pt;}
.y75{bottom:310.828153pt;}
.y120{bottom:312.747504pt;}
.y11c{bottom:314.753403pt;}
.y114{bottom:315.404793pt;}
.y57{bottom:315.672783pt;}
.y81{bottom:315.780778pt;}
.y10a{bottom:316.202323pt;}
.yc8{bottom:316.623205pt;}
.y169{bottom:318.288183pt;}
.y128{bottom:319.098573pt;}
.y5a{bottom:320.479033pt;}
.ye2{bottom:322.184187pt;}
.y13b{bottom:322.509835pt;}
.y149{bottom:322.510445pt;}
.y2f{bottom:322.731915pt;}
.y1e{bottom:323.328471pt;}
.yff{bottom:329.002313pt;}
.y132{bottom:329.617528pt;}
.y22{bottom:329.710993pt;}
.ydd{bottom:332.076428pt;}
.y8c{bottom:332.184535pt;}
.y9a{bottom:333.138879pt;}
.y80{bottom:338.180779pt;}
.y109{bottom:338.602324pt;}
.y74{bottom:339.894824pt;}
.y127{bottom:339.898579pt;}
.y59{bottom:341.279031pt;}
.y168{bottom:342.288187pt;}
.yd{bottom:342.702310pt;}
.y15c{bottom:343.555594pt;}
.y3a{bottom:345.713718pt;}
.y1{bottom:347.501074pt;}
.y6e{bottom:348.389475pt;}
.y56{bottom:348.472784pt;}
.ye1{bottom:349.466432pt;}
.ya6{bottom:350.012904pt;}
.y48{bottom:350.945757pt;}
.y1d{bottom:351.273384pt;}
.yfe{bottom:351.402309pt;}
.y131{bottom:352.017534pt;}
.y19{bottom:353.829294pt;}
.ydc{bottom:354.476424pt;}
.y11b{bottom:354.753404pt;}
.y113{bottom:355.404794pt;}
.y99{bottom:355.538880pt;}
.y6a{bottom:355.666148pt;}
.yd7{bottom:358.100479pt;}
.y126{bottom:360.698579pt;}
.y108{bottom:361.002314pt;}
.y43{bottom:361.603556pt;}
.y58{bottom:362.079030pt;}
.y15b{bottom:365.955588pt;}
.y148{bottom:365.955998pt;}
.y167{bottom:366.288185pt;}
.y7f{bottom:367.247449pt;}
.y39{bottom:368.113716pt;}
.y2e{bottom:368.657527pt;}
.y73{bottom:368.961495pt;}
.y1c{bottom:370.473385pt;}
.y6d{bottom:370.789471pt;}
.y130{bottom:374.417529pt;}
.ybe{bottom:375.668450pt;}
.yc{bottom:375.768977pt;}
.y13a{bottom:375.955989pt;}
.ye0{bottom:376.748675pt;}
.ydb{bottom:376.876415pt;}
.ya5{bottom:377.212900pt;}
.y98{bottom:377.938871pt;}
.y11a{bottom:378.753405pt;}
.y112{bottom:379.404795pt;}
.yd6{bottom:380.500476pt;}
.y55{bottom:381.272789pt;}
.y69{bottom:381.426149pt;}
.y125{bottom:381.498584pt;}
.y107{bottom:383.402310pt;}
.yb0{bottom:386.427985pt;}
.y15a{bottom:388.355587pt;}
.y147{bottom:388.355997pt;}
.y1b{bottom:392.865691pt;}
.y6c{bottom:393.189471pt;}
.y11e{bottom:393.368501pt;}
.y2d{bottom:394.257525pt;}
.y12f{bottom:396.817527pt;}
.ybd{bottom:398.068446pt;}
.y139{bottom:398.355987pt;}
.yfd{bottom:398.442307pt;}
.yda{bottom:399.276419pt;}
.y97{bottom:400.338867pt;}
.y7e{bottom:400.527447pt;}
.y11f{bottom:402.164827pt;}
.y72{bottom:402.241492pt;}
.y119{bottom:402.753406pt;}
.yd5{bottom:402.900471pt;}
.y111{bottom:403.404796pt;}
.ydf{bottom:404.030910pt;}
.ya4{bottom:404.412898pt;}
.y141{bottom:409.573616pt;}
.yb{bottom:409.867931pt;}
.y54{bottom:414.072793pt;}
.y124{bottom:414.138582pt;}
.y106{bottom:414.442308pt;}
.y166{bottom:417.826242pt;}
.y68{bottom:417.852810pt;}
.y38{bottom:418.046706pt;}
.y1a{bottom:418.463906pt;}
.yb4{bottom:418.608815pt;}
.y96{bottom:422.738872pt;}
.y46{bottom:422.945749pt;}
.y117{bottom:423.768505pt;}
.y6b{bottom:426.469472pt;}
.ybc{bottom:427.135113pt;}
.y7d{bottom:429.327451pt;}
.y2c{bottom:429.815526pt;}
.y71{bottom:431.041497pt;}
.yde{bottom:431.499071pt;}
.ya{bottom:432.267926pt;}
.yd9{bottom:433.225698pt;}
.yfa{bottom:438.255957pt;}
.yfc{bottom:438.261207pt;}
.yd4{bottom:439.060462pt;}
.y105{bottom:440.042307pt;}
.y121{bottom:442.752929pt;}
.y118{bottom:442.753408pt;}
.y110{bottom:443.404798pt;}
.y95{bottom:445.138867pt;}
.y53{bottom:446.872794pt;}
.y116{bottom:447.768504pt;}
.y49{bottom:451.369551pt;}
.y47{bottom:451.370162pt;}
.y44{bottom:453.819892pt;}
.y67{bottom:454.279473pt;}
.y9{bottom:454.667924pt;}
.yf9{bottom:454.815957pt;}
.yfb{bottom:454.821207pt;}
.y94{bottom:467.538866pt;}
.yd8{bottom:485.752260pt;}
.y18{bottom:487.254000pt;}
.yc7{bottom:489.689134pt;}
.y7{bottom:491.948776pt;}
.yf8{bottom:492.249136pt;}
.y52{bottom:493.816501pt;}
.yc2{bottom:504.359677pt;}
.h1b{height:17.300801pt;}
.h1e{height:22.570475pt;}
.h7{height:24.000001pt;}
.h20{height:25.078302pt;}
.h27{height:29.666669pt;}
.h28{height:30.625002pt;}
.h2a{height:34.453126pt;}
.h1c{height:34.464001pt;}
.hf{height:36.893919pt;}
.he{height:39.722669pt;}
.hc{height:44.381412pt;}
.h17{height:45.937501pt;}
.h12{height:47.023441pt;}
.h5{height:49.728002pt;}
.h11{height:49.765629pt;}
.h2d{height:53.593750pt;}
.h30{height:55.625002pt;}
.h2f{height:57.421877pt;}
.h22{height:57.941333pt;}
.h26{height:58.808389pt;}
.h4{height:59.584002pt;}
.h1f{height:60.000002pt;}
.h24{height:60.088004pt;}
.h23{height:61.909292pt;}
.h2e{height:62.160002pt;}
.h15{height:63.041667pt;}
.h10{height:64.549338pt;}
.h16{height:65.078125pt;}
.h2b{height:66.304004pt;}
.h2c{height:68.906252pt;}
.h8{height:69.514666pt;}
.h19{height:70.448000pt;}
.h25{height:70.554910pt;}
.h14{height:74.343114pt;}
.h3{height:74.480002pt;}
.h1a{height:77.875002pt;}
.hb{height:79.445338pt;}
.ha{height:79.452474pt;}
.h18{height:84.410667pt;}
.h1d{height:85.163549pt;}
.h13{height:89.376003pt;}
.h2{height:104.272003pt;}
.hd{height:104.975427pt;}
.h9{height:114.202668pt;}
.h6{height:134.064004pt;}
.h29{height:139.029333pt;}
.h21{height:148.960005pt;}
.h1{height:265.216017pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x44{left:8.749921pt;}
.x30{left:14.559056pt;}
.x4{left:15.639122pt;}
.x6d{left:19.056994pt;}
.x6a{left:20.585558pt;}
.x28{left:21.661418pt;}
.x26{left:24.322286pt;}
.x25{left:26.156280pt;}
.x2e{left:27.290608pt;}
.x73{left:33.522311pt;}
.x1{left:34.874961pt;}
.x15{left:38.874097pt;}
.x83{left:39.832023pt;}
.x7b{left:42.370687pt;}
.x3c{left:45.000009pt;}
.x19{left:46.409204pt;}
.x4a{left:48.075878pt;}
.x2{left:53.539978pt;}
.x6b{left:54.545528pt;}
.x5{left:56.169824pt;}
.x48{left:57.084698pt;}
.x46{left:60.072897pt;}
.xd{left:61.253508pt;}
.x2f{left:62.559057pt;}
.x81{left:63.847967pt;}
.xa{left:66.498026pt;}
.x60{left:70.909792pt;}
.x7a{left:72.090601pt;}
.x40{left:73.679382pt;}
.x6c{left:75.445505pt;}
.x3d{left:76.593178pt;}
.x41{left:78.294773pt;}
.x7f{left:79.341223pt;}
.x10{left:81.170603pt;}
.x75{left:86.874019pt;}
.x7d{left:94.748279pt;}
.x1b{left:96.396228pt;}
.x82{left:98.370093pt;}
.x80{left:100.598433pt;}
.x7e{left:108.598433pt;}
.x22{left:111.741128pt;}
.xb{left:118.080979pt;}
.x1a{left:119.077434pt;}
.x3f{left:123.230584pt;}
.xe{left:128.261616pt;}
.x49{left:139.266596pt;}
.xf{left:147.896445pt;}
.x69{left:159.651765pt;}
.x47{left:198.497499pt;}
.x55{left:203.300437pt;}
.x45{left:232.351792pt;}
.x74{left:251.910793pt;}
.x70{left:253.367458pt;}
.x4d{left:262.121225pt;}
.x5c{left:271.709189pt;}
.x5d{left:273.458209pt;}
.x3e{left:287.111609pt;}
.x4e{left:290.127419pt;}
.x78{left:299.576502pt;}
.x4f{left:301.556270pt;}
.x72{left:314.566447pt;}
.x54{left:323.907039pt;}
.x3a{left:327.030325pt;}
.x34{left:330.861011pt;}
.x31{left:332.161670pt;}
.x6e{left:337.803171pt;}
.x32{left:341.497638pt;}
.x33{left:343.592563pt;}
.x16{left:362.619462pt;}
.x2d{left:384.086612pt;}
.x17{left:386.619462pt;}
.x1c{left:395.275033pt;}
.x68{left:403.583543pt;}
.x1d{left:415.079613pt;}
.x1e{left:432.396314pt;}
.x6f{left:433.803174pt;}
.x56{left:457.395735pt;}
.x5a{left:462.356945pt;}
.x11{left:463.335645pt;}
.xc{left:464.922595pt;}
.x12{left:466.448955pt;}
.x7{left:483.110528pt;}
.x6{left:484.388727pt;}
.x8{left:485.834436pt;}
.x29{left:487.000016pt;}
.x2a{left:496.428599pt;}
.x5b{left:497.658475pt;}
.x2b{left:520.000017pt;}
.x13{left:526.873217pt;}
.x14{left:530.805817pt;}
.x4b{left:536.412579pt;}
.x4c{left:545.407513pt;}
.x53{left:578.430319pt;}
.x57{left:581.662898pt;}
.x50{left:590.951599pt;}
.x51{left:597.406249pt;}
.x59{left:600.138119pt;}
.x62{left:601.435640pt;}
.x64{left:607.369371pt;}
.x52{left:608.835099pt;}
.x58{left:616.324017pt;}
.x7c{left:632.385820pt;}
.x65{left:642.637821pt;}
.x71{left:649.406821pt;}
.x38{left:658.829371pt;}
.x23{left:662.527621pt;}
.x9{left:664.488971pt;}
.x24{left:670.396321pt;}
.x35{left:671.401079pt;}
.x63{left:672.309262pt;}
.x39{left:676.601122pt;}
.x27{left:681.697522pt;}
.x2c{left:684.976558pt;}
.x5e{left:687.039174pt;}
.x3b{left:694.186362pt;}
.x37{left:697.380572pt;}
.x5f{left:698.637822pt;}
.x20{left:725.527523pt;}
.x21{left:728.396323pt;}
.x79{left:733.217853pt;}
.x61{left:737.406824pt;}
.x36{left:754.680829pt;}
.x66{left:779.650965pt;}
.x43{left:790.802925pt;}
.x77{left:793.063825pt;}
.x42{left:804.275326pt;}
.x76{left:805.986926pt;}
.x1f{left:811.275026pt;}
.x67{left:878.961528pt;}
.x18{left:916.257825pt;}
.x3{left:920.691419pt;}
}




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