
    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_01cb495bf85cd8a78a4656d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_8fd2e6a48680546dea32edea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_6db118b94fd832e719034b06.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.167000;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_119b49aceb3d884f651395ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.187000;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_84e68206a7f5fabae5453fbb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.168000;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_d8d81a287f9bfc9cc1560aca.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.187000;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_055ade335cf88916c71dac77.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.166000;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_d3bba6f5e884decfce92634e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.198000;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_6429d59cb56fb0c15dc02b1d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.208000;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_465cb0ef4017bf209576f643.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.208000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c38587bbe8a5d56fbd6dd712.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_490398160822cd9caa51a511.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.063000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b92672d6a1491abbd21de964.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_271462917b7ce860599da977.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_99125a0a7f1df5724ca48c34.woff2')format("woff");}.ff10{font-family:ff10;line-height:4.296875;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls12{letter-spacing:-0.888000px;}
.ls26{letter-spacing:-0.553200px;}
.lse{letter-spacing:-0.510600px;}
.ls1b{letter-spacing:-0.492000px;}
.ls4{letter-spacing:-0.286800px;}
.ls7{letter-spacing:-0.285000px;}
.ls1a{letter-spacing:-0.226200px;}
.ls11{letter-spacing:-0.216600px;}
.lsa{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.215400px;}
.ls10{letter-spacing:-0.198000px;}
.ls6{letter-spacing:-0.184800px;}
.ls1e{letter-spacing:-0.179400px;}
.lsb{letter-spacing:-0.115200px;}
.ls19{letter-spacing:-0.036600px;}
.ls0{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.004320px;}
.ls25{letter-spacing:0.004800px;}
.ls28{letter-spacing:0.056400px;}
.ls23{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.072576px;}
.ls2{letter-spacing:0.117360px;}
.ls8{letter-spacing:0.159600px;}
.ls1d{letter-spacing:0.166800px;}
.ls5{letter-spacing:0.192600px;}
.ls15{letter-spacing:0.228000px;}
.ls18{letter-spacing:0.315600px;}
.ls9{letter-spacing:0.338400px;}
.ls21{letter-spacing:0.368400px;}
.ls22{letter-spacing:0.468000px;}
.ls27{letter-spacing:0.604800px;}
.ls3{letter-spacing:9.648000px;}
.ls17{letter-spacing:40.986720px;}
.ls1c{letter-spacing:64.920000px;}
.ls16{letter-spacing:64.944000px;}
.lsd{letter-spacing:115.320000px;}
.lsf{letter-spacing:115.344000px;}
.ls20{letter-spacing:849.185760px;}
.ls1f{letter-spacing:849.264000px;}
.ls14{letter-spacing:849.305760px;}
.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;}
}
.ws13{word-spacing:-48.240000px;}
.ws10{word-spacing:-11.952000px;}
.ws8{word-spacing:-10.800000px;}
.wse{word-spacing:-10.602000px;}
.ws18{word-spacing:-10.016400px;}
.ws11{word-spacing:-9.963600px;}
.ws16{word-spacing:-9.814800px;}
.ws6{word-spacing:-9.807600px;}
.ws2{word-spacing:-9.749376px;}
.ws19{word-spacing:-9.704400px;}
.ws3{word-spacing:-9.676800px;}
.ws7{word-spacing:-9.648000px;}
.ws12{word-spacing:-9.611400px;}
.wsa{word-spacing:-9.532800px;}
.ws17{word-spacing:-9.468600px;}
.ws4{word-spacing:-9.463200px;}
.ws15{word-spacing:-9.432600px;}
.wsf{word-spacing:-9.431400px;}
.ws14{word-spacing:-9.421800px;}
.ws1{word-spacing:-9.390000px;}
.ws5{word-spacing:-9.363000px;}
.ws9{word-spacing:-6.624000px;}
.wsd{word-spacing:-0.402000px;}
.wsc{word-spacing:-0.072000px;}
.wsb{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
._17{margin-left:-4.149798px;}
._8{margin-left:-2.942399px;}
._0{margin-left:-1.109424px;}
._1{width:1.067905px;}
._9{width:2.121072px;}
._10{width:3.176687px;}
._3{width:4.200240px;}
._7{width:5.359966px;}
._6{width:6.795984px;}
._a{width:7.857219px;}
._13{width:10.882466px;}
._2{width:11.886910px;}
._12{width:13.506428px;}
._11{width:14.665346px;}
._f{width:15.677904px;}
._4{width:16.845840px;}
._16{width:17.993375px;}
._b{width:19.006126px;}
._1f{width:20.213573px;}
._1c{width:21.611375px;}
._1e{width:22.866001px;}
._20{width:23.878752px;}
._1b{width:25.058256px;}
._c{width:26.194320px;}
._5{width:27.641375px;}
._1d{width:29.040625px;}
._19{width:30.439778px;}
._18{width:31.645247px;}
._1a{width:33.200978px;}
._24{width:34.829184px;}
._23{width:36.083472px;}
._d{width:103.902047px;}
._22{width:155.815345px;}
._21{width:185.338369px;}
._e{width:217.154544px;}
._15{width:501.270095px;}
._14{width:582.636000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:33.120000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.240000px;}
.fs6{font-size:48.384000px;}
.fs8{font-size:50.400000px;}
.fsa{font-size:54.000000px;}
.fsd{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:130.320000px;}
.y0{bottom:0.000000px;}
.y13f{bottom:7.740000px;}
.y14e{bottom:7.770000px;}
.y2b{bottom:8.280000px;}
.y26{bottom:11.952000px;}
.y142{bottom:17.640000px;}
.y25{bottom:26.352000px;}
.y145{bottom:27.225000px;}
.y141{bottom:27.360000px;}
.y14d{bottom:27.390000px;}
.y14b{bottom:27.570000px;}
.y24{bottom:40.752000px;}
.y147{bottom:46.845000px;}
.y144{bottom:47.025000px;}
.y14c{bottom:47.190000px;}
.y5{bottom:66.525004px;}
.y146{bottom:66.645000px;}
.y4{bottom:97.125005px;}
.y23{bottom:139.264499px;}
.yb7{bottom:173.730000px;}
.y157{bottom:174.270000px;}
.y196{bottom:175.710000px;}
.y16f{bottom:176.610000px;}
.y69{bottom:178.050000px;}
.yca{bottom:178.230000px;}
.y15f{bottom:181.650000px;}
.y1c4{bottom:183.270000px;}
.y1b1{bottom:183.450000px;}
.yfe{bottom:184.170000px;}
.ya7{bottom:184.710000px;}
.y17b{bottom:185.430000px;}
.y134{bottom:187.950000px;}
.yf7{bottom:190.830000px;}
.ye5{bottom:191.730000px;}
.y8a{bottom:192.630000px;}
.yb6{bottom:193.350000px;}
.y156{bottom:193.890000px;}
.y16e{bottom:196.230000px;}
.y1a{bottom:196.933500px;}
.y68{bottom:197.670000px;}
.y1b0{bottom:198.390000px;}
.y15e{bottom:201.270000px;}
.yfd{bottom:203.790000px;}
.ya6{bottom:204.330000px;}
.y17a{bottom:205.050000px;}
.y133{bottom:207.570000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y42{bottom:210.270000px;}
.yf6{bottom:210.450000px;}
.ye4{bottom:211.350000px;}
.yb5{bottom:212.970000px;}
.y155{bottom:213.510000px;}
.y16d{bottom:215.895000px;}
.y67{bottom:217.335000px;}
.y89{bottom:218.235000px;}
.y15d{bottom:220.935000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.yfc{bottom:223.455000px;}
.ya5{bottom:223.995000px;}
.y179{bottom:224.715000px;}
.y132{bottom:227.235000px;}
.y114{bottom:228.855000px;}
.yf5{bottom:230.115000px;}
.ye3{bottom:231.015000px;}
.y1af{bottom:231.555000px;}
.y112{bottom:232.635000px;}
.y154{bottom:232.995000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y66{bottom:236.955000px;}
.y88{bottom:237.855000px;}
.yb4{bottom:238.035000px;}
.y195{bottom:239.115000px;}
.y15c{bottom:240.555000px;}
.yfb{bottom:243.075000px;}
.ya4{bottom:243.615000px;}
.y178{bottom:244.335000px;}
.y1ae{bottom:246.675000px;}
.y131{bottom:246.855000px;}
.yf4{bottom:249.735000px;}
.ye2{bottom:250.635000px;}
.y111{bottom:252.255000px;}
.y153{bottom:252.615000px;}
.y12c{bottom:252.975000px;}
.y194{bottom:254.235000px;}
.y5d{bottom:256.575000px;}
.y87{bottom:257.475000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y15b{bottom:260.175000px;}
.y1ad{bottom:261.795000px;}
.yfa{bottom:262.695000px;}
.ya3{bottom:263.235000px;}
.y177{bottom:263.955000px;}
.y130{bottom:266.475000px;}
.yf3{bottom:269.175000px;}
.ye1{bottom:270.255000px;}
.y110{bottom:271.875000px;}
.y152{bottom:272.235000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y65{bottom:276.015000px;}
.yc9{bottom:276.195000px;}
.y1c3{bottom:276.915000px;}
.y86{bottom:277.095000px;}
.yb3{bottom:278.535000px;}
.y1d3{bottom:279.795000px;}
.y5c{bottom:282.135000px;}
.yf9{bottom:282.315000px;}
.ya2{bottom:282.855000px;}
.y176{bottom:283.575000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y193{bottom:287.355000px;}
.yf2{bottom:288.795000px;}
.y123{bottom:289.875000px;}
.y75{bottom:290.055000px;}
.y10f{bottom:291.495000px;}
.y151{bottom:291.855000px;}
.y1ac{bottom:294.735000px;}
.y1d2{bottom:294.915000px;}
.ye0{bottom:295.275000px;}
.y64{bottom:295.815000px;}
.y15a{bottom:296.175000px;}
.y85{bottom:296.715000px;}
.yb2{bottom:298.155000px;}
.y5b{bottom:301.755000px;}
.ya1{bottom:302.475000px;}
.y12f{bottom:302.655000px;}
.y16c{bottom:303.195000px;}
.y12b{bottom:304.095000px;}
.yf1{bottom:308.415000px;}
.y122{bottom:309.495000px;}
.y74{bottom:309.675000px;}
.y1ab{bottom:309.855000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y10e{bottom:311.115000px;}
.y150{bottom:311.475000px;}
.y41{bottom:312.735000px;}
.y159{bottom:315.795000px;}
.y84{bottom:316.335000px;}
.y192{bottom:317.415000px;}
.yb1{bottom:317.595000px;}
.yc8{bottom:320.835000px;}
.y5a{bottom:321.375000px;}
.y12e{bottom:322.095000px;}
.y16b{bottom:322.815000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.yea{bottom:323.715000px;}
.y13c{bottom:324.075000px;}
.y1c2{bottom:324.975000px;}
.y1d1{bottom:327.855000px;}
.ya0{bottom:328.035000px;}
.y175{bottom:328.755000px;}
.y121{bottom:329.115000px;}
.y73{bottom:329.295000px;}
.y12a{bottom:329.835000px;}
.y10d{bottom:330.735000px;}
.y14f{bottom:331.275000px;}
.y40{bottom:332.355000px;}
.y191{bottom:332.535000px;}
.ydf{bottom:335.595000px;}
.y83{bottom:335.955000px;}
.yb0{bottom:337.215000px;}
.y158{bottom:338.115000px;}
.y1c1{bottom:340.095000px;}
.y59{bottom:340.995000px;}
.y16a{bottom:342.255000px;}
.y1aa{bottom:342.975000px;}
.y12d{bottom:344.415000px;}
.yf8{bottom:346.395000px;}
.y9f{bottom:347.655000px;}
.y11{bottom:348.133500px;}
.y174{bottom:348.375000px;}
.y120{bottom:348.735000px;}
.y72{bottom:348.915000px;}
.y10c{bottom:350.355000px;}
.y3f{bottom:351.795000px;}
.yde{bottom:355.215000px;}
.y129{bottom:355.395000px;}
.y82{bottom:355.575000px;}
.yaf{bottom:356.835000px;}
.y1a9{bottom:358.095000px;}
.y63{bottom:360.615000px;}
.yc7{bottom:361.335000px;}
.y13b{bottom:361.695000px;}
.y169{bottom:361.875000px;}
.y190{bottom:365.655000px;}
.y58{bottom:366.555000px;}
.y9e{bottom:367.275000px;}
.y173{bottom:367.995000px;}
.y71{bottom:368.535000px;}
.y3e{bottom:371.415000px;}
.y1a8{bottom:373.215000px;}
.y11f{bottom:374.295000px;}
.ydd{bottom:374.835000px;}
.y81{bottom:375.015000px;}
.y10b{bottom:375.195000px;}
.y1d0{bottom:376.095000px;}
.y18f{bottom:380.775000px;}
.yc6{bottom:380.955000px;}
.y13a{bottom:381.135000px;}
.y168{bottom:381.495000px;}
.yae{bottom:382.575000px;}
.y57{bottom:386.175000px;}
.y10{bottom:386.785499px;}
.y9d{bottom:386.895000px;}
.y172{bottom:387.615000px;}
.y70{bottom:388.155000px;}
.y1c6{bottom:388.335000px;}
.y3d{bottom:391.215000px;}
.y11e{bottom:393.915000px;}
.ydc{bottom:394.455000px;}
.y80{bottom:394.635000px;}
.y18e{bottom:395.895000px;}
.yc5{bottom:400.575000px;}
.y167{bottom:401.115000px;}
.y1c0{bottom:403.275000px;}
.y139{bottom:403.635000px;}
.y17e{bottom:404.355000px;}
.y56{bottom:405.795000px;}
.y1a7{bottom:406.155000px;}
.y1cf{bottom:406.335000px;}
.y9c{bottom:406.515000px;}
.y6f{bottom:407.775000px;}
.yf{bottom:408.044999px;}
.y14a{bottom:409.215000px;}
.y11d{bottom:413.565000px;}
.ydb{bottom:414.105000px;}
.y7f{bottom:414.285000px;}
.y10a{bottom:415.725000px;}
.y3c{bottom:416.805000px;}
.y1bf{bottom:418.425000px;}
.yc4{bottom:420.225000px;}
.y166{bottom:420.765000px;}
.y1a6{bottom:421.305000px;}
.y171{bottom:423.645000px;}
.y17d{bottom:424.005000px;}
.y55{bottom:425.445000px;}
.y9b{bottom:426.165000px;}
.y6e{bottom:427.425000px;}
.y18d{bottom:428.865000px;}
.y11c{bottom:433.185000px;}
.yda{bottom:433.725000px;}
.y7e{bottom:433.905000px;}
.y109{bottom:435.345000px;}
.y3b{bottom:436.425000px;}
.y1ce{bottom:439.305000px;}
.yc3{bottom:439.845000px;}
.y165{bottom:440.385000px;}
.y17c{bottom:443.625000px;}
.y18c{bottom:443.985000px;}
.y54{bottom:445.065000px;}
.y9a{bottom:445.785000px;}
.y170{bottom:445.965000px;}
.y6d{bottom:447.045000px;}
.yf0{bottom:451.185000px;}
.y1be{bottom:451.545000px;}
.y11b{bottom:452.805000px;}
.yd9{bottom:453.345000px;}
.y7d{bottom:453.525000px;}
.y1cd{bottom:454.425000px;}
.y108{bottom:454.965000px;}
.y3a{bottom:455.865000px;}
.yc2{bottom:459.465000px;}
.y164{bottom:460.005000px;}
.y53{bottom:464.685000px;}
.y99{bottom:465.405000px;}
.y1bd{bottom:466.665000px;}
.ye{bottom:466.864502px;}
.y1a5{bottom:469.545000px;}
.yd8{bottom:472.965000px;}
.y7c{bottom:473.145000px;}
.y107{bottom:474.585000px;}
.y39{bottom:475.485000px;}
.y18b{bottom:477.105000px;}
.y11a{bottom:478.365000px;}
.yc1{bottom:479.085000px;}
.y163{bottom:479.625000px;}
.y1bc{bottom:481.785000px;}
.y149{bottom:482.685000px;}
.y6c{bottom:483.045000px;}
.y52{bottom:484.305000px;}
.y1a4{bottom:484.665000px;}
.yd{bottom:484.864502px;}
.y98{bottom:485.025000px;}
.yef{bottom:491.685000px;}
.y18a{bottom:492.225000px;}
.yd7{bottom:492.585000px;}
.y7b{bottom:492.765000px;}
.y106{bottom:494.205000px;}
.y38{bottom:495.105000px;}
.y119{bottom:497.985000px;}
.yc0{bottom:498.525000px;}
.y1a3{bottom:499.785000px;}
.y1cc{bottom:502.665000px;}
.yc{bottom:502.864502px;}
.y51{bottom:503.925000px;}
.y97{bottom:504.645000px;}
.y162{bottom:505.185000px;}
.y6b{bottom:505.365000px;}
.y189{bottom:507.345000px;}
.yee{bottom:511.305000px;}
.yd6{bottom:512.205000px;}
.y105{bottom:513.825000px;}
.y1bb{bottom:514.725000px;}
.y37{bottom:514.905000px;}
.y2a{bottom:515.880000px;}
.y118{bottom:517.605000px;}
.y7a{bottom:517.785000px;}
.y128{bottom:518.145000px;}
.yb{bottom:520.864502px;}
.y50{bottom:523.365000px;}
.ybf{bottom:523.545000px;}
.y96{bottom:524.265000px;}
.y161{bottom:524.805000px;}
.y1ba{bottom:529.845000px;}
.yed{bottom:530.925000px;}
.yd5{bottom:531.825000px;}
.y1a2{bottom:532.725000px;}
.y104{bottom:533.445000px;}
.y148{bottom:536.505000px;}
.y117{bottom:537.225000px;}
.y127{bottom:537.765000px;}
.ya{bottom:538.864499px;}
.y188{bottom:540.285000px;}
.y36{bottom:540.465000px;}
.y4f{bottom:542.985000px;}
.yad{bottom:543.885000px;}
.y160{bottom:544.425000px;}
.y1a1{bottom:547.845000px;}
.y95{bottom:549.105000px;}
.yec{bottom:550.545000px;}
.yd4{bottom:551.445000px;}
.y103{bottom:553.065000px;}
.y29{bottom:554.940000px;}
.y187{bottom:555.405000px;}
.y116{bottom:556.845000px;}
.y9{bottom:556.864499px;}
.y126{bottom:557.565000px;}
.y79{bottom:558.285000px;}
.y35{bottom:560.085000px;}
.y4e{bottom:562.605000px;}
.y1b9{bottom:562.965000px;}
.yac{bottom:563.505000px;}
.ybe{bottom:564.045000px;}
.y1cb{bottom:565.845000px;}
.y113{bottom:568.725000px;}
.yeb{bottom:569.985000px;}
.y186{bottom:570.525000px;}
.yd3{bottom:571.065000px;}
.y102{bottom:572.685000px;}
.y78{bottom:577.905000px;}
.y1b8{bottom:578.085000px;}
.y34{bottom:579.705000px;}
.y1a0{bottom:580.965000px;}
.y115{bottom:581.685000px;}
.y62{bottom:582.225000px;}
.y4d{bottom:582.405000px;}
.yab{bottom:583.125000px;}
.ybd{bottom:583.665000px;}
.y94{bottom:589.605000px;}
.y143{bottom:590.325000px;}
.yd2{bottom:590.685000px;}
.y1b7{bottom:593.205000px;}
.y28{bottom:594.000000px;}
.y19f{bottom:596.085000px;}
.y138{bottom:597.345000px;}
.y77{bottom:597.525000px;}
.y61{bottom:601.845000px;}
.yaa{bottom:602.565000px;}
.ybc{bottom:603.285000px;}
.y185{bottom:603.645000px;}
.y33{bottom:605.265000px;}
.y4c{bottom:608.010000px;}
.y93{bottom:609.270000px;}
.yd1{bottom:610.350000px;}
.y1c8{bottom:611.070000px;}
.y19e{bottom:611.250000px;}
.y184{bottom:618.810000px;}
.y60{bottom:621.510000px;}
.ya9{bottom:622.230000px;}
.ybb{bottom:622.950000px;}
.y76{bottom:623.130000px;}
.y32{bottom:624.930000px;}
.y1b6{bottom:626.190000px;}
.y8{bottom:626.610001px;}
.y4b{bottom:627.450000px;}
.y92{bottom:628.890000px;}
.y1ca{bottom:629.070000px;}
.yd0{bottom:629.970000px;}
.y183{bottom:633.750000px;}
.y101{bottom:638.070000px;}
.y5f{bottom:641.130000px;}
.y1b5{bottom:641.310000px;}
.ye9{bottom:641.850000px;}
.yba{bottom:642.570000px;}
.y19d{bottom:644.190000px;}
.y31{bottom:644.550000px;}
.y7{bottom:645.510000px;}
.y4a{bottom:647.070000px;}
.ya8{bottom:647.250000px;}
.y91{bottom:648.510000px;}
.ycf{bottom:649.590000px;}
.y27{bottom:653.610000px;}
.y100{bottom:657.690000px;}
.y19c{bottom:659.310000px;}
.ye8{bottom:661.470000px;}
.yb9{bottom:662.190000px;}
.y49{bottom:666.690000px;}
.y6{bottom:666.771000px;}
.y182{bottom:666.870000px;}
.y90{bottom:668.130000px;}
.yce{bottom:669.030000px;}
.y30{bottom:669.745500px;}
.y19b{bottom:674.430000px;}
.ye7{bottom:681.090000px;}
.yb8{bottom:681.810000px;}
.y181{bottom:681.990000px;}
.y140{bottom:683.250000px;}
.yff{bottom:683.430000px;}
.y48{bottom:686.310000px;}
.y8f{bottom:687.750000px;}
.y1b4{bottom:689.550000px;}
.y2f{bottom:692.245500px;}
.y1c9{bottom:692.430000px;}
.ycd{bottom:694.050000px;}
.y180{bottom:697.110000px;}
.y125{bottom:700.710000px;}
.y137{bottom:701.430000px;}
.y1c7{bottom:704.670000px;}
.y47{bottom:705.930000px;}
.ye6{bottom:706.110000px;}
.y8e{bottom:707.370000px;}
.y19a{bottom:707.550000px;}
.y136{bottom:721.050000px;}
.y1b3{bottom:722.490000px;}
.y199{bottom:722.670000px;}
.y46{bottom:725.550000px;}
.y124{bottom:725.730000px;}
.y8d{bottom:726.990000px;}
.y17f{bottom:730.050000px;}
.ycc{bottom:734.550000px;}
.y13e{bottom:737.070000px;}
.y198{bottom:737.610000px;}
.y135{bottom:740.670000px;}
.y2e{bottom:743.730000px;}
.y45{bottom:745.170000px;}
.y8c{bottom:746.610000px;}
.y3{bottom:752.599495px;}
.y1b2{bottom:752.730000px;}
.ycb{bottom:754.170000px;}
.y1c5{bottom:755.610000px;}
.y8b{bottom:766.230000px;}
.y197{bottom:770.730000px;}
.y2d{bottom:773.970000px;}
.y44{bottom:779.910000px;}
.y13d{bottom:784.410000px;}
.y6a{bottom:785.850000px;}
.y5e{bottom:820.440000px;}
.y43{bottom:826.560000px;}
.y2c{bottom:866.085000px;}
.y2{bottom:879.369000px;}
.y1{bottom:966.726000px;}
.h1a{height:25.560000px;}
.h7{height:32.130000px;}
.ha{height:42.161760px;}
.hb{height:42.287616px;}
.h14{height:43.753680px;}
.h13{height:44.139600px;}
.h1b{height:45.180000px;}
.he{height:45.763200px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h12{height:48.978000px;}
.h17{height:49.410000px;}
.h18{height:53.007120px;}
.h2{height:55.080000px;}
.h16{height:63.864000px;}
.h1d{height:65.016000px;}
.hc{height:65.376000px;}
.h15{height:65.884219px;}
.h5{height:78.030000px;}
.h1c{height:84.456000px;}
.h11{height:84.939120px;}
.hd{height:112.466160px;}
.h19{height:117.420117px;}
.h4{height:119.055004px;}
.h9{height:892.500000px;}
.h8{height:892.800000px;}
.hf{height:892.980000px;}
.h10{height:893.250000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:148.896000px;}
.w7{width:297.795000px;}
.w4{width:629.250000px;}
.w3{width:629.280000px;}
.w5{width:629.460000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:53.676000px;}
.x15{left:60.156000px;}
.xb{left:63.936000px;}
.x11{left:65.736000px;}
.x9{left:71.172000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:126.396000px;}
.x17{left:132.336000px;}
.x13{left:147.096000px;}
.xc{left:163.650000px;}
.x1a{left:168.870000px;}
.x19{left:171.255000px;}
.x4{left:203.484001px;}
.x16{left:209.055000px;}
.xa{left:222.015000px;}
.x12{left:247.395000px;}
.xf{left:253.695000px;}
.x18{left:304.665000px;}
.x6{left:317.235000px;}
.x14{left:324.105000px;}
.x7{left:373.425000px;}
.x5{left:434.085000px;}
.x3{left:454.959000px;}
.x10{left:503.250000px;}
.xe{left:565.380000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls12{letter-spacing:-0.789333pt;}
.ls26{letter-spacing:-0.491733pt;}
.lse{letter-spacing:-0.453867pt;}
.ls1b{letter-spacing:-0.437333pt;}
.ls4{letter-spacing:-0.254933pt;}
.ls7{letter-spacing:-0.253333pt;}
.ls1a{letter-spacing:-0.201067pt;}
.ls11{letter-spacing:-0.192533pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.191467pt;}
.ls10{letter-spacing:-0.176000pt;}
.ls6{letter-spacing:-0.164267pt;}
.ls1e{letter-spacing:-0.159467pt;}
.lsb{letter-spacing:-0.102400pt;}
.ls19{letter-spacing:-0.032533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.003840pt;}
.ls25{letter-spacing:0.004267pt;}
.ls28{letter-spacing:0.050133pt;}
.ls23{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.064512pt;}
.ls2{letter-spacing:0.104320pt;}
.ls8{letter-spacing:0.141867pt;}
.ls1d{letter-spacing:0.148267pt;}
.ls5{letter-spacing:0.171200pt;}
.ls15{letter-spacing:0.202667pt;}
.ls18{letter-spacing:0.280533pt;}
.ls9{letter-spacing:0.300800pt;}
.ls21{letter-spacing:0.327467pt;}
.ls22{letter-spacing:0.416000pt;}
.ls27{letter-spacing:0.537600pt;}
.ls3{letter-spacing:8.576000pt;}
.ls17{letter-spacing:36.432640pt;}
.ls1c{letter-spacing:57.706667pt;}
.ls16{letter-spacing:57.728000pt;}
.lsd{letter-spacing:102.506667pt;}
.lsf{letter-spacing:102.528000pt;}
.ls20{letter-spacing:754.831787pt;}
.ls1f{letter-spacing:754.901333pt;}
.ls14{letter-spacing:754.938453pt;}
.ws13{word-spacing:-42.880000pt;}
.ws10{word-spacing:-10.624000pt;}
.ws8{word-spacing:-9.600000pt;}
.wse{word-spacing:-9.424000pt;}
.ws18{word-spacing:-8.903467pt;}
.ws11{word-spacing:-8.856533pt;}
.ws16{word-spacing:-8.724267pt;}
.ws6{word-spacing:-8.717867pt;}
.ws2{word-spacing:-8.666112pt;}
.ws19{word-spacing:-8.626133pt;}
.ws3{word-spacing:-8.601600pt;}
.ws7{word-spacing:-8.576000pt;}
.ws12{word-spacing:-8.543467pt;}
.wsa{word-spacing:-8.473600pt;}
.ws17{word-spacing:-8.416533pt;}
.ws4{word-spacing:-8.411733pt;}
.ws15{word-spacing:-8.384533pt;}
.wsf{word-spacing:-8.383467pt;}
.ws14{word-spacing:-8.374933pt;}
.ws1{word-spacing:-8.346667pt;}
.ws5{word-spacing:-8.322667pt;}
.ws9{word-spacing:-5.888000pt;}
.wsd{word-spacing:-0.357333pt;}
.wsc{word-spacing:-0.064000pt;}
.wsb{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
._17{margin-left:-3.688709pt;}
._8{margin-left:-2.615466pt;}
._0{margin-left:-0.986154pt;}
._1{width:0.949249pt;}
._9{width:1.885397pt;}
._10{width:2.823722pt;}
._3{width:3.733547pt;}
._7{width:4.764414pt;}
._6{width:6.040874pt;}
._a{width:6.984195pt;}
._13{width:9.673303pt;}
._2{width:10.566143pt;}
._12{width:12.005714pt;}
._11{width:13.035863pt;}
._f{width:13.935914pt;}
._4{width:14.974080pt;}
._16{width:15.994111pt;}
._b{width:16.894334pt;}
._1f{width:17.967620pt;}
._1c{width:19.210111pt;}
._1e{width:20.325334pt;}
._20{width:21.225557pt;}
._1b{width:22.274006pt;}
._c{width:23.283840pt;}
._5{width:24.570111pt;}
._1d{width:25.813889pt;}
._19{width:27.057580pt;}
._18{width:28.129108pt;}
._1a{width:29.511980pt;}
._24{width:30.959274pt;}
._23{width:32.074197pt;}
._d{width:92.357375pt;}
._22{width:138.502529pt;}
._21{width:164.745217pt;}
._e{width:193.026261pt;}
._15{width:445.573418pt;}
._14{width:517.898667pt;}
.fsb{font-size:29.440000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:43.008000pt;}
.fs8{font-size:44.800000pt;}
.fsa{font-size:48.000000pt;}
.fsd{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:115.840000pt;}
.y0{bottom:0.000000pt;}
.y13f{bottom:6.880000pt;}
.y14e{bottom:6.906667pt;}
.y2b{bottom:7.360000pt;}
.y26{bottom:10.624000pt;}
.y142{bottom:15.680000pt;}
.y25{bottom:23.424000pt;}
.y145{bottom:24.200000pt;}
.y141{bottom:24.320000pt;}
.y14d{bottom:24.346667pt;}
.y14b{bottom:24.506667pt;}
.y24{bottom:36.224000pt;}
.y147{bottom:41.640000pt;}
.y144{bottom:41.800000pt;}
.y14c{bottom:41.946667pt;}
.y5{bottom:59.133337pt;}
.y146{bottom:59.240000pt;}
.y4{bottom:86.333337pt;}
.y23{bottom:123.790666pt;}
.yb7{bottom:154.426667pt;}
.y157{bottom:154.906667pt;}
.y196{bottom:156.186667pt;}
.y16f{bottom:156.986667pt;}
.y69{bottom:158.266667pt;}
.yca{bottom:158.426667pt;}
.y15f{bottom:161.466667pt;}
.y1c4{bottom:162.906667pt;}
.y1b1{bottom:163.066667pt;}
.yfe{bottom:163.706667pt;}
.ya7{bottom:164.186667pt;}
.y17b{bottom:164.826667pt;}
.y134{bottom:167.066667pt;}
.yf7{bottom:169.626667pt;}
.ye5{bottom:170.426667pt;}
.y8a{bottom:171.226667pt;}
.yb6{bottom:171.866667pt;}
.y156{bottom:172.346667pt;}
.y16e{bottom:174.426667pt;}
.y1a{bottom:175.052000pt;}
.y68{bottom:175.706667pt;}
.y1b0{bottom:176.346667pt;}
.y15e{bottom:178.906667pt;}
.yfd{bottom:181.146667pt;}
.ya6{bottom:181.626667pt;}
.y17a{bottom:182.266667pt;}
.y133{bottom:184.506667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y42{bottom:186.906667pt;}
.yf6{bottom:187.066667pt;}
.ye4{bottom:187.866667pt;}
.yb5{bottom:189.306667pt;}
.y155{bottom:189.786667pt;}
.y16d{bottom:191.906667pt;}
.y67{bottom:193.186667pt;}
.y89{bottom:193.986667pt;}
.y15d{bottom:196.386667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.yfc{bottom:198.626667pt;}
.ya5{bottom:199.106667pt;}
.y179{bottom:199.746667pt;}
.y132{bottom:201.986667pt;}
.y114{bottom:203.426667pt;}
.yf5{bottom:204.546667pt;}
.ye3{bottom:205.346667pt;}
.y1af{bottom:205.826667pt;}
.y112{bottom:206.786667pt;}
.y154{bottom:207.106667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y66{bottom:210.626667pt;}
.y88{bottom:211.426667pt;}
.yb4{bottom:211.586667pt;}
.y195{bottom:212.546667pt;}
.y15c{bottom:213.826667pt;}
.yfb{bottom:216.066667pt;}
.ya4{bottom:216.546667pt;}
.y178{bottom:217.186667pt;}
.y1ae{bottom:219.266667pt;}
.y131{bottom:219.426667pt;}
.yf4{bottom:221.986667pt;}
.ye2{bottom:222.786667pt;}
.y111{bottom:224.226667pt;}
.y153{bottom:224.546667pt;}
.y12c{bottom:224.866667pt;}
.y194{bottom:225.986667pt;}
.y5d{bottom:228.066667pt;}
.y87{bottom:228.866667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y15b{bottom:231.266667pt;}
.y1ad{bottom:232.706667pt;}
.yfa{bottom:233.506667pt;}
.ya3{bottom:233.986667pt;}
.y177{bottom:234.626667pt;}
.y130{bottom:236.866667pt;}
.yf3{bottom:239.266667pt;}
.ye1{bottom:240.226667pt;}
.y110{bottom:241.666667pt;}
.y152{bottom:241.986667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y65{bottom:245.346667pt;}
.yc9{bottom:245.506667pt;}
.y1c3{bottom:246.146667pt;}
.y86{bottom:246.306667pt;}
.yb3{bottom:247.586667pt;}
.y1d3{bottom:248.706667pt;}
.y5c{bottom:250.786667pt;}
.yf9{bottom:250.946667pt;}
.ya2{bottom:251.426667pt;}
.y176{bottom:252.066667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y193{bottom:255.426667pt;}
.yf2{bottom:256.706667pt;}
.y123{bottom:257.666667pt;}
.y75{bottom:257.826667pt;}
.y10f{bottom:259.106667pt;}
.y151{bottom:259.426667pt;}
.y1ac{bottom:261.986667pt;}
.y1d2{bottom:262.146667pt;}
.ye0{bottom:262.466667pt;}
.y64{bottom:262.946667pt;}
.y15a{bottom:263.266667pt;}
.y85{bottom:263.746667pt;}
.yb2{bottom:265.026667pt;}
.y5b{bottom:268.226667pt;}
.ya1{bottom:268.866667pt;}
.y12f{bottom:269.026667pt;}
.y16c{bottom:269.506667pt;}
.y12b{bottom:270.306667pt;}
.yf1{bottom:274.146667pt;}
.y122{bottom:275.106667pt;}
.y74{bottom:275.266667pt;}
.y1ab{bottom:275.426667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y10e{bottom:276.546667pt;}
.y150{bottom:276.866667pt;}
.y41{bottom:277.986667pt;}
.y159{bottom:280.706667pt;}
.y84{bottom:281.186667pt;}
.y192{bottom:282.146667pt;}
.yb1{bottom:282.306667pt;}
.yc8{bottom:285.186667pt;}
.y5a{bottom:285.666667pt;}
.y12e{bottom:286.306667pt;}
.y16b{bottom:286.946667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.yea{bottom:287.746667pt;}
.y13c{bottom:288.066667pt;}
.y1c2{bottom:288.866667pt;}
.y1d1{bottom:291.426667pt;}
.ya0{bottom:291.586667pt;}
.y175{bottom:292.226667pt;}
.y121{bottom:292.546667pt;}
.y73{bottom:292.706667pt;}
.y12a{bottom:293.186667pt;}
.y10d{bottom:293.986667pt;}
.y14f{bottom:294.466667pt;}
.y40{bottom:295.426667pt;}
.y191{bottom:295.586667pt;}
.ydf{bottom:298.306667pt;}
.y83{bottom:298.626667pt;}
.yb0{bottom:299.746667pt;}
.y158{bottom:300.546667pt;}
.y1c1{bottom:302.306667pt;}
.y59{bottom:303.106667pt;}
.y16a{bottom:304.226667pt;}
.y1aa{bottom:304.866667pt;}
.y12d{bottom:306.146667pt;}
.yf8{bottom:307.906667pt;}
.y9f{bottom:309.026667pt;}
.y11{bottom:309.452000pt;}
.y174{bottom:309.666667pt;}
.y120{bottom:309.986667pt;}
.y72{bottom:310.146667pt;}
.y10c{bottom:311.426667pt;}
.y3f{bottom:312.706667pt;}
.yde{bottom:315.746667pt;}
.y129{bottom:315.906667pt;}
.y82{bottom:316.066667pt;}
.yaf{bottom:317.186667pt;}
.y1a9{bottom:318.306667pt;}
.y63{bottom:320.546667pt;}
.yc7{bottom:321.186667pt;}
.y13b{bottom:321.506667pt;}
.y169{bottom:321.666667pt;}
.y190{bottom:325.026667pt;}
.y58{bottom:325.826667pt;}
.y9e{bottom:326.466667pt;}
.y173{bottom:327.106667pt;}
.y71{bottom:327.586667pt;}
.y3e{bottom:330.146667pt;}
.y1a8{bottom:331.746667pt;}
.y11f{bottom:332.706667pt;}
.ydd{bottom:333.186667pt;}
.y81{bottom:333.346667pt;}
.y10b{bottom:333.506667pt;}
.y1d0{bottom:334.306667pt;}
.y18f{bottom:338.466667pt;}
.yc6{bottom:338.626667pt;}
.y13a{bottom:338.786667pt;}
.y168{bottom:339.106667pt;}
.yae{bottom:340.066667pt;}
.y57{bottom:343.266667pt;}
.y10{bottom:343.809333pt;}
.y9d{bottom:343.906667pt;}
.y172{bottom:344.546667pt;}
.y70{bottom:345.026667pt;}
.y1c6{bottom:345.186667pt;}
.y3d{bottom:347.746667pt;}
.y11e{bottom:350.146667pt;}
.ydc{bottom:350.626667pt;}
.y80{bottom:350.786667pt;}
.y18e{bottom:351.906667pt;}
.yc5{bottom:356.066667pt;}
.y167{bottom:356.546667pt;}
.y1c0{bottom:358.466667pt;}
.y139{bottom:358.786667pt;}
.y17e{bottom:359.426667pt;}
.y56{bottom:360.706667pt;}
.y1a7{bottom:361.026667pt;}
.y1cf{bottom:361.186667pt;}
.y9c{bottom:361.346667pt;}
.y6f{bottom:362.466667pt;}
.yf{bottom:362.706666pt;}
.y14a{bottom:363.746667pt;}
.y11d{bottom:367.613333pt;}
.ydb{bottom:368.093333pt;}
.y7f{bottom:368.253333pt;}
.y10a{bottom:369.533333pt;}
.y3c{bottom:370.493333pt;}
.y1bf{bottom:371.933333pt;}
.yc4{bottom:373.533333pt;}
.y166{bottom:374.013333pt;}
.y1a6{bottom:374.493333pt;}
.y171{bottom:376.573333pt;}
.y17d{bottom:376.893333pt;}
.y55{bottom:378.173333pt;}
.y9b{bottom:378.813333pt;}
.y6e{bottom:379.933333pt;}
.y18d{bottom:381.213333pt;}
.y11c{bottom:385.053333pt;}
.yda{bottom:385.533333pt;}
.y7e{bottom:385.693333pt;}
.y109{bottom:386.973333pt;}
.y3b{bottom:387.933333pt;}
.y1ce{bottom:390.493333pt;}
.yc3{bottom:390.973333pt;}
.y165{bottom:391.453333pt;}
.y17c{bottom:394.333333pt;}
.y18c{bottom:394.653333pt;}
.y54{bottom:395.613333pt;}
.y9a{bottom:396.253333pt;}
.y170{bottom:396.413333pt;}
.y6d{bottom:397.373333pt;}
.yf0{bottom:401.053333pt;}
.y1be{bottom:401.373333pt;}
.y11b{bottom:402.493333pt;}
.yd9{bottom:402.973333pt;}
.y7d{bottom:403.133333pt;}
.y1cd{bottom:403.933333pt;}
.y108{bottom:404.413333pt;}
.y3a{bottom:405.213333pt;}
.yc2{bottom:408.413333pt;}
.y164{bottom:408.893333pt;}
.y53{bottom:413.053333pt;}
.y99{bottom:413.693333pt;}
.y1bd{bottom:414.813333pt;}
.ye{bottom:414.990669pt;}
.y1a5{bottom:417.373333pt;}
.yd8{bottom:420.413333pt;}
.y7c{bottom:420.573333pt;}
.y107{bottom:421.853333pt;}
.y39{bottom:422.653333pt;}
.y18b{bottom:424.093333pt;}
.y11a{bottom:425.213333pt;}
.yc1{bottom:425.853333pt;}
.y163{bottom:426.333333pt;}
.y1bc{bottom:428.253333pt;}
.y149{bottom:429.053333pt;}
.y6c{bottom:429.373333pt;}
.y52{bottom:430.493333pt;}
.y1a4{bottom:430.813333pt;}
.yd{bottom:430.990669pt;}
.y98{bottom:431.133333pt;}
.yef{bottom:437.053333pt;}
.y18a{bottom:437.533333pt;}
.yd7{bottom:437.853333pt;}
.y7b{bottom:438.013333pt;}
.y106{bottom:439.293333pt;}
.y38{bottom:440.093333pt;}
.y119{bottom:442.653333pt;}
.yc0{bottom:443.133333pt;}
.y1a3{bottom:444.253333pt;}
.y1cc{bottom:446.813333pt;}
.yc{bottom:446.990669pt;}
.y51{bottom:447.933333pt;}
.y97{bottom:448.573333pt;}
.y162{bottom:449.053333pt;}
.y6b{bottom:449.213333pt;}
.y189{bottom:450.973333pt;}
.yee{bottom:454.493333pt;}
.yd6{bottom:455.293333pt;}
.y105{bottom:456.733333pt;}
.y1bb{bottom:457.533333pt;}
.y37{bottom:457.693333pt;}
.y2a{bottom:458.560000pt;}
.y118{bottom:460.093333pt;}
.y7a{bottom:460.253333pt;}
.y128{bottom:460.573333pt;}
.yb{bottom:462.990669pt;}
.y50{bottom:465.213333pt;}
.ybf{bottom:465.373333pt;}
.y96{bottom:466.013333pt;}
.y161{bottom:466.493333pt;}
.y1ba{bottom:470.973333pt;}
.yed{bottom:471.933333pt;}
.yd5{bottom:472.733333pt;}
.y1a2{bottom:473.533333pt;}
.y104{bottom:474.173333pt;}
.y148{bottom:476.893333pt;}
.y117{bottom:477.533333pt;}
.y127{bottom:478.013333pt;}
.ya{bottom:478.990666pt;}
.y188{bottom:480.253333pt;}
.y36{bottom:480.413333pt;}
.y4f{bottom:482.653333pt;}
.yad{bottom:483.453333pt;}
.y160{bottom:483.933333pt;}
.y1a1{bottom:486.973333pt;}
.y95{bottom:488.093333pt;}
.yec{bottom:489.373333pt;}
.yd4{bottom:490.173333pt;}
.y103{bottom:491.613333pt;}
.y29{bottom:493.280000pt;}
.y187{bottom:493.693333pt;}
.y116{bottom:494.973333pt;}
.y9{bottom:494.990666pt;}
.y126{bottom:495.613333pt;}
.y79{bottom:496.253333pt;}
.y35{bottom:497.853333pt;}
.y4e{bottom:500.093333pt;}
.y1b9{bottom:500.413333pt;}
.yac{bottom:500.893333pt;}
.ybe{bottom:501.373333pt;}
.y1cb{bottom:502.973333pt;}
.y113{bottom:505.533333pt;}
.yeb{bottom:506.653333pt;}
.y186{bottom:507.133333pt;}
.yd3{bottom:507.613333pt;}
.y102{bottom:509.053333pt;}
.y78{bottom:513.693333pt;}
.y1b8{bottom:513.853333pt;}
.y34{bottom:515.293333pt;}
.y1a0{bottom:516.413333pt;}
.y115{bottom:517.053333pt;}
.y62{bottom:517.533333pt;}
.y4d{bottom:517.693333pt;}
.yab{bottom:518.333333pt;}
.ybd{bottom:518.813333pt;}
.y94{bottom:524.093333pt;}
.y143{bottom:524.733333pt;}
.yd2{bottom:525.053333pt;}
.y1b7{bottom:527.293333pt;}
.y28{bottom:528.000000pt;}
.y19f{bottom:529.853333pt;}
.y138{bottom:530.973333pt;}
.y77{bottom:531.133333pt;}
.y61{bottom:534.973333pt;}
.yaa{bottom:535.613333pt;}
.ybc{bottom:536.253333pt;}
.y185{bottom:536.573333pt;}
.y33{bottom:538.013333pt;}
.y4c{bottom:540.453333pt;}
.y93{bottom:541.573333pt;}
.yd1{bottom:542.533333pt;}
.y1c8{bottom:543.173333pt;}
.y19e{bottom:543.333333pt;}
.y184{bottom:550.053333pt;}
.y60{bottom:552.453333pt;}
.ya9{bottom:553.093333pt;}
.ybb{bottom:553.733333pt;}
.y76{bottom:553.893333pt;}
.y32{bottom:555.493333pt;}
.y1b6{bottom:556.613333pt;}
.y8{bottom:556.986668pt;}
.y4b{bottom:557.733333pt;}
.y92{bottom:559.013333pt;}
.y1ca{bottom:559.173333pt;}
.yd0{bottom:559.973333pt;}
.y183{bottom:563.333333pt;}
.y101{bottom:567.173333pt;}
.y5f{bottom:569.893333pt;}
.y1b5{bottom:570.053333pt;}
.ye9{bottom:570.533333pt;}
.yba{bottom:571.173333pt;}
.y19d{bottom:572.613333pt;}
.y31{bottom:572.933333pt;}
.y7{bottom:573.786667pt;}
.y4a{bottom:575.173333pt;}
.ya8{bottom:575.333333pt;}
.y91{bottom:576.453333pt;}
.ycf{bottom:577.413333pt;}
.y27{bottom:580.986667pt;}
.y100{bottom:584.613333pt;}
.y19c{bottom:586.053333pt;}
.ye8{bottom:587.973333pt;}
.yb9{bottom:588.613333pt;}
.y49{bottom:592.613333pt;}
.y6{bottom:592.685334pt;}
.y182{bottom:592.773333pt;}
.y90{bottom:593.893333pt;}
.yce{bottom:594.693333pt;}
.y30{bottom:595.329333pt;}
.y19b{bottom:599.493333pt;}
.ye7{bottom:605.413333pt;}
.yb8{bottom:606.053333pt;}
.y181{bottom:606.213333pt;}
.y140{bottom:607.333333pt;}
.yff{bottom:607.493333pt;}
.y48{bottom:610.053333pt;}
.y8f{bottom:611.333333pt;}
.y1b4{bottom:612.933333pt;}
.y2f{bottom:615.329333pt;}
.y1c9{bottom:615.493333pt;}
.ycd{bottom:616.933333pt;}
.y180{bottom:619.653333pt;}
.y125{bottom:622.853333pt;}
.y137{bottom:623.493333pt;}
.y1c7{bottom:626.373333pt;}
.y47{bottom:627.493333pt;}
.ye6{bottom:627.653333pt;}
.y8e{bottom:628.773333pt;}
.y19a{bottom:628.933333pt;}
.y136{bottom:640.933333pt;}
.y1b3{bottom:642.213333pt;}
.y199{bottom:642.373333pt;}
.y46{bottom:644.933333pt;}
.y124{bottom:645.093333pt;}
.y8d{bottom:646.213333pt;}
.y17f{bottom:648.933333pt;}
.ycc{bottom:652.933333pt;}
.y13e{bottom:655.173333pt;}
.y198{bottom:655.653333pt;}
.y135{bottom:658.373333pt;}
.y2e{bottom:661.093333pt;}
.y45{bottom:662.373333pt;}
.y8c{bottom:663.653333pt;}
.y3{bottom:668.977329pt;}
.y1b2{bottom:669.093333pt;}
.ycb{bottom:670.373333pt;}
.y1c5{bottom:671.653333pt;}
.y8b{bottom:681.093333pt;}
.y197{bottom:685.093333pt;}
.y2d{bottom:687.973333pt;}
.y44{bottom:693.253333pt;}
.y13d{bottom:697.253333pt;}
.y6a{bottom:698.533333pt;}
.y5e{bottom:729.280000pt;}
.y43{bottom:734.720000pt;}
.y2c{bottom:769.853333pt;}
.y2{bottom:781.661334pt;}
.y1{bottom:859.312000pt;}
.h1a{height:22.720000pt;}
.h7{height:28.560000pt;}
.ha{height:37.477120pt;}
.hb{height:37.588992pt;}
.h14{height:38.892160pt;}
.h13{height:39.235200pt;}
.h1b{height:40.160000pt;}
.he{height:40.678400pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h12{height:43.536000pt;}
.h17{height:43.920000pt;}
.h18{height:47.117440pt;}
.h2{height:48.960000pt;}
.h16{height:56.768000pt;}
.h1d{height:57.792000pt;}
.hc{height:58.112000pt;}
.h15{height:58.563750pt;}
.h5{height:69.360000pt;}
.h1c{height:75.072000pt;}
.h11{height:75.501440pt;}
.hd{height:99.969920pt;}
.h19{height:104.373437pt;}
.h4{height:105.826671pt;}
.h9{height:793.333333pt;}
.h8{height:793.600000pt;}
.hf{height:793.760000pt;}
.h10{height:794.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:132.352000pt;}
.w7{width:264.706667pt;}
.w4{width:559.333333pt;}
.w3{width:559.360000pt;}
.w5{width:559.520000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:47.712000pt;}
.x15{left:53.472000pt;}
.xb{left:56.832000pt;}
.x11{left:58.432000pt;}
.x9{left:63.264000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:112.352000pt;}
.x17{left:117.632000pt;}
.x13{left:130.752000pt;}
.xc{left:145.466667pt;}
.x1a{left:150.106667pt;}
.x19{left:152.226667pt;}
.x4{left:180.874667pt;}
.x16{left:185.826667pt;}
.xa{left:197.346667pt;}
.x12{left:219.906667pt;}
.xf{left:225.506667pt;}
.x18{left:270.813333pt;}
.x6{left:281.986667pt;}
.x14{left:288.093333pt;}
.x7{left:331.933333pt;}
.x5{left:385.853333pt;}
.x3{left:404.408000pt;}
.x10{left:447.333333pt;}
.xe{left:502.560000pt;}
}




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