
    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_066eb848f67b1ac3b32ef619.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_1b21ad4d96edbc8d77dc85d0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_176e65ee5d6017523f2432e8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_fc848135d3646587dbaa136a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_b0b15e2014e9299aee880581.woff')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_09b697e214d6f00b085ba08a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_1c0db0e6318206ac443f12b0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_f9e916cdf14ee6e522686c3c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_a07afe1b1823860ac453566f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.737793;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_50aacfce4bcccb405e0a4b3b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_17bbfb3f72a322b1797cf915.woff')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_863fa374908edd152982e486.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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_554f0d7cbb2042e59e6ff353.woff')format("woff");}.fff{font-family:fff;line-height:1.432129;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_936d27a4ff566e171f415909.woff')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ea7cd953e414a57660191fe2.woff')format("woff");}.ff11{font-family:ff11;line-height:1.402354;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v1{vertical-align:-108.000000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls11{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.223800px;}
.lsc{letter-spacing:-0.150600px;}
.ls10{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.144720px;}
.ls2{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.181200px;}
.ls15{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.493920px;}
.lse{letter-spacing:0.666720px;}
.lsf{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.900000px;}
.ls16{letter-spacing:1.080000px;}
.ls14{letter-spacing:1.440000px;}
.ls3{letter-spacing:47.700000px;}
.ls0{letter-spacing:64.421280px;}
.ls1{letter-spacing:72.000000px;}
.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;}
}
.ws10{word-spacing:-18.000000px;}
.wse{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.020000px;}
.ws11{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.238800px;}
.ws2{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993280px;}
.wsd{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.500000px;}
.ws5{word-spacing:-12.241200px;}
.ws6{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.700000px;}
.ws4{word-spacing:-11.340000px;}
.ws3{word-spacing:-10.980000px;}
.ws7{word-spacing:-10.950480px;}
.wsb{word-spacing:-10.440000px;}
.wsa{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.wsc{word-spacing:0.000000px;}
.ws0{word-spacing:60.840000px;}
._5{margin-left:-59.580000px;}
._17{margin-left:-4.276080px;}
._12{margin-left:-2.450160px;}
._2{margin-left:-1.324800px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._b{width:4.063680px;}
._14{width:5.552640px;}
._c{width:6.812640px;}
._22{width:8.414400px;}
._13{width:9.582000px;}
._11{width:10.848240px;}
._d{width:12.848400px;}
._e{width:13.870800px;}
._a{width:16.623360px;}
._9{width:18.167040px;}
._15{width:19.980000px;}
._16{width:21.172800px;}
._2c{width:22.212720px;}
._21{width:23.246640px;}
._2b{width:24.761520px;}
._30{width:26.326080px;}
._18{width:27.341280px;}
._8{width:28.804320px;}
._7{width:30.298320px;}
._25{width:31.613040px;}
._29{width:33.258240px;}
._2a{width:34.509600px;}
._2d{width:35.915760px;}
._24{width:37.404480px;}
._23{width:38.664720px;}
._1d{width:40.016640px;}
._1e{width:41.205120px;}
._37{width:42.462480px;}
._1c{width:43.462800px;}
._1b{width:45.295920px;}
._34{width:46.602000px;}
._26{width:47.748240px;}
._33{width:48.943440px;}
._38{width:50.377680px;}
._31{width:51.996960px;}
._1f{width:53.703360px;}
._1a{width:55.267200px;}
._35{width:56.396160px;}
._32{width:60.357600px;}
._3a{width:61.882320px;}
._3c{width:63.986640px;}
._3{width:65.496000px;}
._28{width:67.230000px;}
._39{width:69.799680px;}
._2f{width:70.851600px;}
._27{width:71.992800px;}
._36{width:74.939040px;}
._2e{width:80.005680px;}
._f{width:83.245680px;}
._10{width:84.651840px;}
._19{width:86.371920px;}
._3d{width:103.384800px;}
._3b{width:140.556720px;}
._4{width:199.620000px;}
._20{width:285.870000px;}
._6{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs10{font-size:6.000000px;}
.fsd{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fsf{font-size:62.991941px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y44{bottom:-247.710000px;}
.y43{bottom:-213.870000px;}
.y42{bottom:-180.210000px;}
.y41{bottom:-146.550000px;}
.y7e{bottom:-143.310000px;}
.y40{bottom:-112.710000px;}
.y7d{bottom:-109.650000px;}
.y3f{bottom:-79.020000px;}
.y7c{bottom:-75.945000px;}
.y3e{bottom:-45.180000px;}
.y7b{bottom:-42.105000px;}
.y47{bottom:-27.180000px;}
.y80{bottom:-17.922750px;}
.y3d{bottom:-11.520000px;}
.y7a{bottom:-8.445000px;}
.y0{bottom:0.000000px;}
.y164{bottom:1.837500px;}
.y2{bottom:3.960000px;}
.y46{bottom:5.040000px;}
.y6e{bottom:5.220000px;}
.y70{bottom:5.580000px;}
.y3c{bottom:6.840000px;}
.y67{bottom:8.985000px;}
.y5{bottom:12.600000px;}
.y6d{bottom:18.360000px;}
.y3b{bottom:20.700000px;}
.y6{bottom:21.960000px;}
.y3{bottom:23.220000px;}
.y4{bottom:24.660000px;}
.y66{bottom:25.005000px;}
.y79{bottom:25.395000px;}
.y6c{bottom:31.320000px;}
.y3a{bottom:34.740000px;}
.y65{bottom:40.305000px;}
.y6b{bottom:44.280000px;}
.y82{bottom:46.980000px;}
.y39{bottom:47.520000px;}
.y64{bottom:52.725000px;}
.y78{bottom:56.355000px;}
.y1{bottom:57.420000px;}
.y7f{bottom:63.780000px;}
.y77{bottom:69.315000px;}
.y6a{bottom:70.380000px;}
.y63{bottom:70.545000px;}
.y76{bottom:82.455000px;}
.y69{bottom:87.300000px;}
.y62{bottom:88.410000px;}
.y75{bottom:95.415000px;}
.y139{bottom:98.460000px;}
.y125{bottom:99.360000px;}
.y141{bottom:101.520000px;}
.yb4{bottom:103.680000px;}
.y61{bottom:103.710000px;}
.y163{bottom:105.480000px;}
.yc4{bottom:106.560000px;}
.y74{bottom:108.375000px;}
.ye4{bottom:115.560000px;}
.y60{bottom:116.310000px;}
.y138{bottom:118.260000px;}
.y124{bottom:119.160000px;}
.y140{bottom:121.320000px;}
.y73{bottom:121.515000px;}
.yb3{bottom:123.480000px;}
.y162{bottom:125.460000px;}
.yc3{bottom:126.360000px;}
.y37{bottom:130.680000px;}
.y72{bottom:133.755000px;}
.y5f{bottom:134.130000px;}
.ye3{bottom:135.360000px;}
.y137{bottom:138.060000px;}
.y123{bottom:139.140000px;}
.y13f{bottom:141.120000px;}
.yb2{bottom:143.280000px;}
.y161{bottom:145.260000px;}
.yc2{bottom:146.340000px;}
.y36{bottom:150.660000px;}
.y5e{bottom:151.950000px;}
.yed{bottom:155.160000px;}
.ye2{bottom:156.060000px;}
.y136{bottom:157.860000px;}
.y122{bottom:158.940000px;}
.y13e{bottom:161.100000px;}
.yb1{bottom:163.110000px;}
.yc1{bottom:166.170000px;}
.y5d{bottom:169.770000px;}
.y35{bottom:170.490000px;}
.yec{bottom:174.990000px;}
.ye1{bottom:175.890000px;}
.y135{bottom:177.690000px;}
.y121{bottom:178.770000px;}
.y13d{bottom:180.930000px;}
.yb0{bottom:183.090000px;}
.yc0{bottom:185.970000px;}
.y5c{bottom:187.590000px;}
.ye0{bottom:189.030000px;}
.y34{bottom:190.290000px;}
.yeb{bottom:194.970000px;}
.y134{bottom:197.670000px;}
.y120{bottom:198.570000px;}
.y13c{bottom:200.730000px;}
.yaf{bottom:202.890000px;}
.y160{bottom:203.790000px;}
.y5b{bottom:205.410000px;}
.ybf{bottom:205.770000px;}
.ydf{bottom:208.830000px;}
.y33{bottom:210.090000px;}
.y10e{bottom:214.590000px;}
.yea{bottom:214.770000px;}
.y133{bottom:217.470000px;}
.y11f{bottom:218.370000px;}
.y13b{bottom:220.530000px;}
.yae{bottom:222.690000px;}
.y5a{bottom:223.410000px;}
.y15f{bottom:223.590000px;}
.ybe{bottom:226.470000px;}
.yde{bottom:228.630000px;}
.y32{bottom:229.890000px;}
.y10d{bottom:234.390000px;}
.ye9{bottom:234.570000px;}
.y59{bottom:236.730000px;}
.y132{bottom:237.270000px;}
.y11e{bottom:238.350000px;}
.y13a{bottom:241.230000px;}
.yad{bottom:242.490000px;}
.y15e{bottom:243.390000px;}
.y58{bottom:245.550000px;}
.ybd{bottom:246.270000px;}
.ydd{bottom:248.430000px;}
.y31{bottom:249.690000px;}
.y10c{bottom:254.190000px;}
.ye8{bottom:255.270000px;}
.y131{bottom:257.070000px;}
.y11d{bottom:258.150000px;}
.ybc{bottom:259.410000px;}
.yac{bottom:262.290000px;}
.y57{bottom:263.370000px;}
.y15d{bottom:264.270000px;}
.ydc{bottom:268.230000px;}
.y30{bottom:269.670000px;}
.y10b{bottom:274.170000px;}
.ye7{bottom:275.070000px;}
.y130{bottom:276.870000px;}
.y11c{bottom:277.950000px;}
.ybb{bottom:279.210000px;}
.y56{bottom:281.190000px;}
.yab{bottom:282.270000px;}
.ydb{bottom:288.210000px;}
.y2f{bottom:290.370000px;}
.y10a{bottom:293.970000px;}
.y12f{bottom:296.850000px;}
.y11b{bottom:297.750000px;}
.y55{bottom:299.010000px;}
.yaa{bottom:302.070000px;}
.y15c{bottom:305.130000px;}
.y2e{bottom:307.650000px;}
.yda{bottom:308.010000px;}
.y48{bottom:311.625000px;}
.y109{bottom:313.770000px;}
.y2d{bottom:316.110000px;}
.y12e{bottom:316.650000px;}
.y54{bottom:316.860000px;}
.y11a{bottom:317.550000px;}
.yba{bottom:318.810000px;}
.ya9{bottom:321.870000px;}
.y15b{bottom:324.930000px;}
.yd9{bottom:327.810000px;}
.y108{bottom:333.570000px;}
.y2c{bottom:334.470000px;}
.y53{bottom:334.860000px;}
.y12d{bottom:336.450000px;}
.y119{bottom:337.530000px;}
.yb9{bottom:338.790000px;}
.ya8{bottom:341.670000px;}
.y15a{bottom:344.730000px;}
.y2b{bottom:345.810000px;}
.yd8{bottom:347.610000px;}
.y52{bottom:352.680000px;}
.y107{bottom:353.370000px;}
.y12c{bottom:356.250000px;}
.y118{bottom:357.330000px;}
.yb8{bottom:358.590000px;}
.ya7{bottom:361.470000px;}
.y159{bottom:364.530000px;}
.yd7{bottom:367.410000px;}
.y2a{bottom:369.750000px;}
.y51{bottom:370.500000px;}
.y106{bottom:373.350000px;}
.y12b{bottom:376.050000px;}
.y117{bottom:377.130000px;}
.yb7{bottom:378.390000px;}
.ya6{bottom:381.450000px;}
.y158{bottom:385.410000px;}
.yd6{bottom:387.390000px;}
.y50{bottom:388.320000px;}
.y105{bottom:393.195000px;}
.y29{bottom:393.555000px;}
.y12a{bottom:396.075000px;}
.y116{bottom:396.975000px;}
.yb6{bottom:399.135000px;}
.ya5{bottom:401.295000px;}
.y4f{bottom:406.140000px;}
.yd5{bottom:407.235000px;}
.y104{bottom:412.995000px;}
.y129{bottom:415.875000px;}
.y115{bottom:416.775000px;}
.y28{bottom:417.315000px;}
.y4e{bottom:419.460000px;}
.yb5{bottom:420.015000px;}
.ya4{bottom:421.095000px;}
.y157{bottom:426.315000px;}
.yd4{bottom:427.035000px;}
.y4d{bottom:428.460000px;}
.y103{bottom:432.795000px;}
.y128{bottom:435.675000px;}
.y114{bottom:436.755000px;}
.ya3{bottom:440.895000px;}
.y27{bottom:441.075000px;}
.y156{bottom:446.115000px;}
.y4c{bottom:446.280000px;}
.yd3{bottom:446.835000px;}
.y102{bottom:452.595000px;}
.y127{bottom:455.475000px;}
.y113{bottom:456.555000px;}
.ya2{bottom:460.695000px;}
.y4b{bottom:464.100000px;}
.y26{bottom:465.015000px;}
.y155{bottom:465.915000px;}
.yd2{bottom:466.635000px;}
.y71{bottom:473.100000px;}
.y126{bottom:473.295000px;}
.y101{bottom:473.475000px;}
.y112{bottom:475.095000px;}
.ya1{bottom:480.675000px;}
.y4a{bottom:481.920000px;}
.y154{bottom:485.715000px;}
.y25{bottom:485.895000px;}
.yd1{bottom:486.615000px;}
.ye6{bottom:487.515000px;}
.y111{bottom:492.915000px;}
.y49{bottom:499.740000px;}
.ya0{bottom:500.475000px;}
.y24{bottom:505.695000px;}
.yd0{bottom:506.415000px;}
.y153{bottom:506.595000px;}
.ye5{bottom:507.315000px;}
.y100{bottom:514.335000px;}
.y23{bottom:519.375000px;}
.y9f{bottom:520.275000px;}
.ycf{bottom:526.215000px;}
.y22{bottom:528.015000px;}
.yff{bottom:534.135000px;}
.y110{bottom:537.555000px;}
.y9e{bottom:540.075000px;}
.yce{bottom:546.015000px;}
.y152{bottom:547.455000px;}
.y21{bottom:551.415000px;}
.yfe{bottom:553.935000px;}
.y9d{bottom:559.875000px;}
.y10f{bottom:563.115000px;}
.ycd{bottom:565.815000px;}
.y151{bottom:568.155000px;}
.yfd{bottom:573.735000px;}
.y20{bottom:574.635000px;}
.y9c{bottom:579.855000px;}
.ycc{bottom:585.795000px;}
.yfc{bottom:593.715000px;}
.y1f{bottom:598.035000px;}
.y9b{bottom:599.655000px;}
.ycb{bottom:605.595000px;}
.y150{bottom:609.015000px;}
.yfb{bottom:614.415000px;}
.y9a{bottom:619.455000px;}
.yca{bottom:625.425000px;}
.y68{bottom:627.225000px;}
.y14f{bottom:629.025000px;}
.yfa{bottom:634.245000px;}
.y99{bottom:639.285000px;}
.yc9{bottom:645.225000px;}
.yf9{bottom:647.205000px;}
.y14e{bottom:649.725000px;}
.y1e{bottom:652.785000px;}
.y98{bottom:659.085000px;}
.yc8{bottom:665.025000px;}
.yf8{bottom:667.005000px;}
.y1d{bottom:668.265000px;}
.y97{bottom:679.065000px;}
.y1c{bottom:683.925000px;}
.yc7{bottom:685.005000px;}
.yf7{bottom:686.985000px;}
.y14d{bottom:690.585000px;}
.y96{bottom:698.865000px;}
.y1b{bottom:699.405000px;}
.yc6{bottom:705.705000px;}
.yf6{bottom:706.785000px;}
.y14c{bottom:711.285000px;}
.y1a{bottom:714.885000px;}
.y95{bottom:718.665000px;}
.yc5{bottom:725.505000px;}
.y19{bottom:726.045000px;}
.yf5{bottom:726.585000px;}
.y38{bottom:734.685000px;}
.y14b{bottom:735.045000px;}
.y94{bottom:738.465000px;}
.y18{bottom:739.725000px;}
.yf4{bottom:746.385000px;}
.y17{bottom:752.685000px;}
.y93{bottom:758.265000px;}
.y16{bottom:765.465000px;}
.yf3{bottom:766.185000px;}
.y14a{bottom:776.085000px;}
.y92{bottom:778.245000px;}
.y15{bottom:778.425000px;}
.yf2{bottom:786.165000px;}
.y14{bottom:792.285000px;}
.y149{bottom:795.885000px;}
.y91{bottom:798.045000px;}
.y13{bottom:805.065000px;}
.yf1{bottom:805.965000px;}
.y148{bottom:815.685000px;}
.y90{bottom:817.845000px;}
.yf0{bottom:825.765000px;}
.y12{bottom:831.885000px;}
.y147{bottom:835.485000px;}
.y8f{bottom:837.645000px;}
.y11{bottom:843.045000px;}
.yef{bottom:845.925000px;}
.y146{bottom:855.330000px;}
.y8e{bottom:857.490000px;}
.yee{bottom:864.330000px;}
.y10{bottom:867.390000px;}
.y145{bottom:875.310000px;}
.y8d{bottom:877.470000px;}
.yf{bottom:887.010000px;}
.y144{bottom:895.110000px;}
.y8c{bottom:897.270000px;}
.ye{bottom:906.270000px;}
.y143{bottom:914.910000px;}
.yd{bottom:916.710000px;}
.y8b{bottom:917.070000px;}
.y142{bottom:935.610000px;}
.yc{bottom:936.150000px;}
.y8a{bottom:936.870000px;}
.yb{bottom:947.670000px;}
.y89{bottom:956.670000px;}
.ya{bottom:965.130000px;}
.y88{bottom:976.650000px;}
.y9{bottom:986.730000px;}
.y87{bottom:996.450000px;}
.y8{bottom:1008.690000px;}
.y86{bottom:1016.250000px;}
.y85{bottom:1036.050000px;}
.y84{bottom:1055.850000px;}
.y7{bottom:1063.230000px;}
.y83{bottom:1075.650000px;}
.y6f{bottom:1096.200000px;}
.y81{bottom:1123.200000px;}
.y45{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h18{height:5.805000px;}
.h32{height:6.257812px;}
.h2{height:13.500000px;}
.h1c{height:16.920000px;}
.h17{height:18.140625px;}
.h24{height:22.140000px;}
.h16{height:23.319141px;}
.h27{height:29.158594px;}
.h2e{height:29.664141px;}
.h20{height:29.678906px;}
.hc{height:30.616875px;}
.h10{height:30.963516px;}
.h2f{height:31.081955px;}
.h4{height:34.200000px;}
.h22{height:36.281250px;}
.h14{height:39.503370px;}
.h5{height:40.985156px;}
.h31{height:41.726953px;}
.h23{height:42.086250px;}
.h2a{height:43.737568px;}
.h12{height:44.518359px;}
.hb{height:45.116367px;}
.h1a{height:45.714375px;}
.h13{height:46.622932px;}
.he{height:47.344922px;}
.hd{height:48.616875px;}
.h15{height:52.998047px;}
.h1d{height:54.421875px;}
.h11{height:55.291992px;}
.h1f{height:55.503491px;}
.h19{height:57.780000px;}
.h29{height:58.621992px;}
.h3{height:58.651172px;}
.h2c{height:60.226875px;}
.h2b{height:61.423863px;}
.h30{height:64.978594px;}
.ha{height:65.010937px;}
.h1b{height:65.884219px;}
.hf{height:67.824844px;}
.h2d{height:70.628906px;}
.h9{height:72.562500px;}
.h25{height:74.953125px;}
.h28{height:75.093750px;}
.h7{height:87.695156px;}
.h21{height:95.400000px;}
.h8{height:96.508125px;}
.h26{height:144.720000px;}
.h1e{height:511.995000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w3{width:82.071000px;}
.w5{width:154.470000px;}
.wa{width:180.390000px;}
.w8{width:182.550000px;}
.w7{width:532.920000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:4.252500px;}
.x2{left:8.091000px;}
.x11{left:10.791000px;}
.x17{left:21.255000px;}
.xc{left:33.660000px;}
.x3{left:73.965000px;}
.x14{left:80.505000px;}
.x12{left:81.765000px;}
.x10{left:93.105000px;}
.x16{left:94.905000px;}
.x1{left:108.045000px;}
.x9{left:110.196000px;}
.x1d{left:120.996000px;}
.xb{left:127.296000px;}
.x1c{left:128.376000px;}
.xd{left:132.696000px;}
.x5{left:180.570000px;}
.x4{left:190.125000px;}
.x19{left:249.735000px;}
.x7{left:295.815000px;}
.x13{left:303.555000px;}
.x15{left:310.350000px;}
.x1a{left:355.575000px;}
.x1b{left:359.355000px;}
.xa{left:371.775000px;}
.x6{left:443.085000px;}
.x8{left:459.105000px;}
.xe{left:489.165000px;}
.xf{left:490.785000px;}
.x18{left:620.253000px;}
.x1e{left:766.800000px;}
@media print{
.v1{vertical-align:-96.000000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls11{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.198933pt;}
.lsc{letter-spacing:-0.133867pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.128640pt;}
.ls2{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.161067pt;}
.ls15{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.439040pt;}
.lse{letter-spacing:0.592640pt;}
.lsf{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls14{letter-spacing:1.280000pt;}
.ls3{letter-spacing:42.400000pt;}
.ls0{letter-spacing:57.263360pt;}
.ls1{letter-spacing:64.000000pt;}
.ws10{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.240000pt;}
.ws11{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.545600pt;}
.ws2{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327360pt;}
.wsd{word-spacing:-13.280000pt;}
.ws14{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws5{word-spacing:-10.881067pt;}
.ws6{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.400000pt;}
.ws4{word-spacing:-10.080000pt;}
.ws3{word-spacing:-9.760000pt;}
.ws7{word-spacing:-9.733760pt;}
.wsb{word-spacing:-9.280000pt;}
.wsa{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.wsc{word-spacing:0.000000pt;}
.ws0{word-spacing:54.080000pt;}
._5{margin-left:-52.960000pt;}
._17{margin-left:-3.800960pt;}
._12{margin-left:-2.177920pt;}
._2{margin-left:-1.177600pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._b{width:3.612160pt;}
._14{width:4.935680pt;}
._c{width:6.055680pt;}
._22{width:7.479467pt;}
._13{width:8.517333pt;}
._11{width:9.642880pt;}
._d{width:11.420800pt;}
._e{width:12.329600pt;}
._a{width:14.776320pt;}
._9{width:16.148480pt;}
._15{width:17.760000pt;}
._16{width:18.820267pt;}
._2c{width:19.744640pt;}
._21{width:20.663680pt;}
._2b{width:22.010240pt;}
._30{width:23.400960pt;}
._18{width:24.303360pt;}
._8{width:25.603840pt;}
._7{width:26.931840pt;}
._25{width:28.100480pt;}
._29{width:29.562880pt;}
._2a{width:30.675200pt;}
._2d{width:31.925120pt;}
._24{width:33.248427pt;}
._23{width:34.368640pt;}
._1d{width:35.570347pt;}
._1e{width:36.626773pt;}
._37{width:37.744427pt;}
._1c{width:38.633600pt;}
._1b{width:40.263040pt;}
._34{width:41.424000pt;}
._26{width:42.442880pt;}
._33{width:43.505280pt;}
._38{width:44.780160pt;}
._31{width:46.219520pt;}
._1f{width:47.736320pt;}
._1a{width:49.126400pt;}
._35{width:50.129920pt;}
._32{width:53.651200pt;}
._3a{width:55.006507pt;}
._3c{width:56.877013pt;}
._3{width:58.218667pt;}
._28{width:59.760000pt;}
._39{width:62.044160pt;}
._2f{width:62.979200pt;}
._27{width:63.993600pt;}
._36{width:66.612480pt;}
._2e{width:71.116160pt;}
._f{width:73.996160pt;}
._10{width:75.246080pt;}
._19{width:76.775040pt;}
._3d{width:91.897600pt;}
._3b{width:124.939307pt;}
._4{width:177.440000pt;}
._20{width:254.106667pt;}
._6{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs10{font-size:5.333333pt;}
.fsd{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fsf{font-size:55.992837pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y44{bottom:-220.186667pt;}
.y43{bottom:-190.106667pt;}
.y42{bottom:-160.186667pt;}
.y41{bottom:-130.266667pt;}
.y7e{bottom:-127.386667pt;}
.y40{bottom:-100.186667pt;}
.y7d{bottom:-97.466667pt;}
.y3f{bottom:-70.240000pt;}
.y7c{bottom:-67.506667pt;}
.y3e{bottom:-40.160000pt;}
.y7b{bottom:-37.426667pt;}
.y47{bottom:-24.160000pt;}
.y80{bottom:-15.931333pt;}
.y3d{bottom:-10.240000pt;}
.y7a{bottom:-7.506667pt;}
.y0{bottom:0.000000pt;}
.y164{bottom:1.633333pt;}
.y2{bottom:3.520000pt;}
.y46{bottom:4.480000pt;}
.y6e{bottom:4.640000pt;}
.y70{bottom:4.960000pt;}
.y3c{bottom:6.080000pt;}
.y67{bottom:7.986667pt;}
.y5{bottom:11.200000pt;}
.y6d{bottom:16.320000pt;}
.y3b{bottom:18.400000pt;}
.y6{bottom:19.520000pt;}
.y3{bottom:20.640000pt;}
.y4{bottom:21.920000pt;}
.y66{bottom:22.226667pt;}
.y79{bottom:22.573333pt;}
.y6c{bottom:27.840000pt;}
.y3a{bottom:30.880000pt;}
.y65{bottom:35.826667pt;}
.y6b{bottom:39.360000pt;}
.y82{bottom:41.760000pt;}
.y39{bottom:42.240000pt;}
.y64{bottom:46.866667pt;}
.y78{bottom:50.093333pt;}
.y1{bottom:51.040000pt;}
.y7f{bottom:56.693333pt;}
.y77{bottom:61.613333pt;}
.y6a{bottom:62.560000pt;}
.y63{bottom:62.706667pt;}
.y76{bottom:73.293333pt;}
.y69{bottom:77.600000pt;}
.y62{bottom:78.586667pt;}
.y75{bottom:84.813333pt;}
.y139{bottom:87.520000pt;}
.y125{bottom:88.320000pt;}
.y141{bottom:90.240000pt;}
.yb4{bottom:92.160000pt;}
.y61{bottom:92.186667pt;}
.y163{bottom:93.760000pt;}
.yc4{bottom:94.720000pt;}
.y74{bottom:96.333333pt;}
.ye4{bottom:102.720000pt;}
.y60{bottom:103.386667pt;}
.y138{bottom:105.120000pt;}
.y124{bottom:105.920000pt;}
.y140{bottom:107.840000pt;}
.y73{bottom:108.013333pt;}
.yb3{bottom:109.760000pt;}
.y162{bottom:111.520000pt;}
.yc3{bottom:112.320000pt;}
.y37{bottom:116.160000pt;}
.y72{bottom:118.893333pt;}
.y5f{bottom:119.226667pt;}
.ye3{bottom:120.320000pt;}
.y137{bottom:122.720000pt;}
.y123{bottom:123.680000pt;}
.y13f{bottom:125.440000pt;}
.yb2{bottom:127.360000pt;}
.y161{bottom:129.120000pt;}
.yc2{bottom:130.080000pt;}
.y36{bottom:133.920000pt;}
.y5e{bottom:135.066667pt;}
.yed{bottom:137.920000pt;}
.ye2{bottom:138.720000pt;}
.y136{bottom:140.320000pt;}
.y122{bottom:141.280000pt;}
.y13e{bottom:143.200000pt;}
.yb1{bottom:144.986667pt;}
.yc1{bottom:147.706667pt;}
.y5d{bottom:150.906667pt;}
.y35{bottom:151.546667pt;}
.yec{bottom:155.546667pt;}
.ye1{bottom:156.346667pt;}
.y135{bottom:157.946667pt;}
.y121{bottom:158.906667pt;}
.y13d{bottom:160.826667pt;}
.yb0{bottom:162.746667pt;}
.yc0{bottom:165.306667pt;}
.y5c{bottom:166.746667pt;}
.ye0{bottom:168.026667pt;}
.y34{bottom:169.146667pt;}
.yeb{bottom:173.306667pt;}
.y134{bottom:175.706667pt;}
.y120{bottom:176.506667pt;}
.y13c{bottom:178.426667pt;}
.yaf{bottom:180.346667pt;}
.y160{bottom:181.146667pt;}
.y5b{bottom:182.586667pt;}
.ybf{bottom:182.906667pt;}
.ydf{bottom:185.626667pt;}
.y33{bottom:186.746667pt;}
.y10e{bottom:190.746667pt;}
.yea{bottom:190.906667pt;}
.y133{bottom:193.306667pt;}
.y11f{bottom:194.106667pt;}
.y13b{bottom:196.026667pt;}
.yae{bottom:197.946667pt;}
.y5a{bottom:198.586667pt;}
.y15f{bottom:198.746667pt;}
.ybe{bottom:201.306667pt;}
.yde{bottom:203.226667pt;}
.y32{bottom:204.346667pt;}
.y10d{bottom:208.346667pt;}
.ye9{bottom:208.506667pt;}
.y59{bottom:210.426667pt;}
.y132{bottom:210.906667pt;}
.y11e{bottom:211.866667pt;}
.y13a{bottom:214.426667pt;}
.yad{bottom:215.546667pt;}
.y15e{bottom:216.346667pt;}
.y58{bottom:218.266667pt;}
.ybd{bottom:218.906667pt;}
.ydd{bottom:220.826667pt;}
.y31{bottom:221.946667pt;}
.y10c{bottom:225.946667pt;}
.ye8{bottom:226.906667pt;}
.y131{bottom:228.506667pt;}
.y11d{bottom:229.466667pt;}
.ybc{bottom:230.586667pt;}
.yac{bottom:233.146667pt;}
.y57{bottom:234.106667pt;}
.y15d{bottom:234.906667pt;}
.ydc{bottom:238.426667pt;}
.y30{bottom:239.706667pt;}
.y10b{bottom:243.706667pt;}
.ye7{bottom:244.506667pt;}
.y130{bottom:246.106667pt;}
.y11c{bottom:247.066667pt;}
.ybb{bottom:248.186667pt;}
.y56{bottom:249.946667pt;}
.yab{bottom:250.906667pt;}
.ydb{bottom:256.186667pt;}
.y2f{bottom:258.106667pt;}
.y10a{bottom:261.306667pt;}
.y12f{bottom:263.866667pt;}
.y11b{bottom:264.666667pt;}
.y55{bottom:265.786667pt;}
.yaa{bottom:268.506667pt;}
.y15c{bottom:271.226667pt;}
.y2e{bottom:273.466667pt;}
.yda{bottom:273.786667pt;}
.y48{bottom:277.000000pt;}
.y109{bottom:278.906667pt;}
.y2d{bottom:280.986667pt;}
.y12e{bottom:281.466667pt;}
.y54{bottom:281.653333pt;}
.y11a{bottom:282.266667pt;}
.yba{bottom:283.386667pt;}
.ya9{bottom:286.106667pt;}
.y15b{bottom:288.826667pt;}
.yd9{bottom:291.386667pt;}
.y108{bottom:296.506667pt;}
.y2c{bottom:297.306667pt;}
.y53{bottom:297.653333pt;}
.y12d{bottom:299.066667pt;}
.y119{bottom:300.026667pt;}
.yb9{bottom:301.146667pt;}
.ya8{bottom:303.706667pt;}
.y15a{bottom:306.426667pt;}
.y2b{bottom:307.386667pt;}
.yd8{bottom:308.986667pt;}
.y52{bottom:313.493333pt;}
.y107{bottom:314.106667pt;}
.y12c{bottom:316.666667pt;}
.y118{bottom:317.626667pt;}
.yb8{bottom:318.746667pt;}
.ya7{bottom:321.306667pt;}
.y159{bottom:324.026667pt;}
.yd7{bottom:326.586667pt;}
.y2a{bottom:328.666667pt;}
.y51{bottom:329.333333pt;}
.y106{bottom:331.866667pt;}
.y12b{bottom:334.266667pt;}
.y117{bottom:335.226667pt;}
.yb7{bottom:336.346667pt;}
.ya6{bottom:339.066667pt;}
.y158{bottom:342.586667pt;}
.yd6{bottom:344.346667pt;}
.y50{bottom:345.173333pt;}
.y105{bottom:349.506667pt;}
.y29{bottom:349.826667pt;}
.y12a{bottom:352.066667pt;}
.y116{bottom:352.866667pt;}
.yb6{bottom:354.786667pt;}
.ya5{bottom:356.706667pt;}
.y4f{bottom:361.013333pt;}
.yd5{bottom:361.986667pt;}
.y104{bottom:367.106667pt;}
.y129{bottom:369.666667pt;}
.y115{bottom:370.466667pt;}
.y28{bottom:370.946667pt;}
.y4e{bottom:372.853333pt;}
.yb5{bottom:373.346667pt;}
.ya4{bottom:374.306667pt;}
.y157{bottom:378.946667pt;}
.yd4{bottom:379.586667pt;}
.y4d{bottom:380.853333pt;}
.y103{bottom:384.706667pt;}
.y128{bottom:387.266667pt;}
.y114{bottom:388.226667pt;}
.ya3{bottom:391.906667pt;}
.y27{bottom:392.066667pt;}
.y156{bottom:396.546667pt;}
.y4c{bottom:396.693333pt;}
.yd3{bottom:397.186667pt;}
.y102{bottom:402.306667pt;}
.y127{bottom:404.866667pt;}
.y113{bottom:405.826667pt;}
.ya2{bottom:409.506667pt;}
.y4b{bottom:412.533333pt;}
.y26{bottom:413.346667pt;}
.y155{bottom:414.146667pt;}
.yd2{bottom:414.786667pt;}
.y71{bottom:420.533333pt;}
.y126{bottom:420.706667pt;}
.y101{bottom:420.866667pt;}
.y112{bottom:422.306667pt;}
.ya1{bottom:427.266667pt;}
.y4a{bottom:428.373333pt;}
.y154{bottom:431.746667pt;}
.y25{bottom:431.906667pt;}
.yd1{bottom:432.546667pt;}
.ye6{bottom:433.346667pt;}
.y111{bottom:438.146667pt;}
.y49{bottom:444.213333pt;}
.ya0{bottom:444.866667pt;}
.y24{bottom:449.506667pt;}
.yd0{bottom:450.146667pt;}
.y153{bottom:450.306667pt;}
.ye5{bottom:450.946667pt;}
.y100{bottom:457.186667pt;}
.y23{bottom:461.666667pt;}
.y9f{bottom:462.466667pt;}
.ycf{bottom:467.746667pt;}
.y22{bottom:469.346667pt;}
.yff{bottom:474.786667pt;}
.y110{bottom:477.826667pt;}
.y9e{bottom:480.066667pt;}
.yce{bottom:485.346667pt;}
.y152{bottom:486.626667pt;}
.y21{bottom:490.146667pt;}
.yfe{bottom:492.386667pt;}
.y9d{bottom:497.666667pt;}
.y10f{bottom:500.546667pt;}
.ycd{bottom:502.946667pt;}
.y151{bottom:505.026667pt;}
.yfd{bottom:509.986667pt;}
.y20{bottom:510.786667pt;}
.y9c{bottom:515.426667pt;}
.ycc{bottom:520.706667pt;}
.yfc{bottom:527.746667pt;}
.y1f{bottom:531.586667pt;}
.y9b{bottom:533.026667pt;}
.ycb{bottom:538.306667pt;}
.y150{bottom:541.346667pt;}
.yfb{bottom:546.146667pt;}
.y9a{bottom:550.626667pt;}
.yca{bottom:555.933333pt;}
.y68{bottom:557.533333pt;}
.y14f{bottom:559.133333pt;}
.yfa{bottom:563.773333pt;}
.y99{bottom:568.253333pt;}
.yc9{bottom:573.533333pt;}
.yf9{bottom:575.293333pt;}
.y14e{bottom:577.533333pt;}
.y1e{bottom:580.253333pt;}
.y98{bottom:585.853333pt;}
.yc8{bottom:591.133333pt;}
.yf8{bottom:592.893333pt;}
.y1d{bottom:594.013333pt;}
.y97{bottom:603.613333pt;}
.y1c{bottom:607.933333pt;}
.yc7{bottom:608.893333pt;}
.yf7{bottom:610.653333pt;}
.y14d{bottom:613.853333pt;}
.y96{bottom:621.213333pt;}
.y1b{bottom:621.693333pt;}
.yc6{bottom:627.293333pt;}
.yf6{bottom:628.253333pt;}
.y14c{bottom:632.253333pt;}
.y1a{bottom:635.453333pt;}
.y95{bottom:638.813333pt;}
.yc5{bottom:644.893333pt;}
.y19{bottom:645.373333pt;}
.yf5{bottom:645.853333pt;}
.y38{bottom:653.053333pt;}
.y14b{bottom:653.373333pt;}
.y94{bottom:656.413333pt;}
.y18{bottom:657.533333pt;}
.yf4{bottom:663.453333pt;}
.y17{bottom:669.053333pt;}
.y93{bottom:674.013333pt;}
.y16{bottom:680.413333pt;}
.yf3{bottom:681.053333pt;}
.y14a{bottom:689.853333pt;}
.y92{bottom:691.773333pt;}
.y15{bottom:691.933333pt;}
.yf2{bottom:698.813333pt;}
.y14{bottom:704.253333pt;}
.y149{bottom:707.453333pt;}
.y91{bottom:709.373333pt;}
.y13{bottom:715.613333pt;}
.yf1{bottom:716.413333pt;}
.y148{bottom:725.053333pt;}
.y90{bottom:726.973333pt;}
.yf0{bottom:734.013333pt;}
.y12{bottom:739.453333pt;}
.y147{bottom:742.653333pt;}
.y8f{bottom:744.573333pt;}
.y11{bottom:749.373333pt;}
.yef{bottom:751.933333pt;}
.y146{bottom:760.293333pt;}
.y8e{bottom:762.213333pt;}
.yee{bottom:768.293333pt;}
.y10{bottom:771.013333pt;}
.y145{bottom:778.053333pt;}
.y8d{bottom:779.973333pt;}
.yf{bottom:788.453333pt;}
.y144{bottom:795.653333pt;}
.y8c{bottom:797.573333pt;}
.ye{bottom:805.573333pt;}
.y143{bottom:813.253333pt;}
.yd{bottom:814.853333pt;}
.y8b{bottom:815.173333pt;}
.y142{bottom:831.653333pt;}
.yc{bottom:832.133333pt;}
.y8a{bottom:832.773333pt;}
.yb{bottom:842.373333pt;}
.y89{bottom:850.373333pt;}
.ya{bottom:857.893333pt;}
.y88{bottom:868.133333pt;}
.y9{bottom:877.093333pt;}
.y87{bottom:885.733333pt;}
.y8{bottom:896.613333pt;}
.y86{bottom:903.333333pt;}
.y85{bottom:920.933333pt;}
.y84{bottom:938.533333pt;}
.y7{bottom:945.093333pt;}
.y83{bottom:956.133333pt;}
.y6f{bottom:974.400000pt;}
.y81{bottom:998.400000pt;}
.y45{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h18{height:5.160000pt;}
.h32{height:5.562500pt;}
.h2{height:12.000000pt;}
.h1c{height:15.040000pt;}
.h17{height:16.125000pt;}
.h24{height:19.680000pt;}
.h16{height:20.728125pt;}
.h27{height:25.918750pt;}
.h2e{height:26.368125pt;}
.h20{height:26.381250pt;}
.hc{height:27.215000pt;}
.h10{height:27.523125pt;}
.h2f{height:27.628404pt;}
.h4{height:30.400000pt;}
.h22{height:32.250000pt;}
.h14{height:35.114107pt;}
.h5{height:36.431250pt;}
.h31{height:37.090625pt;}
.h23{height:37.410000pt;}
.h2a{height:38.877839pt;}
.h12{height:39.571875pt;}
.hb{height:40.103437pt;}
.h1a{height:40.635000pt;}
.h13{height:41.442606pt;}
.he{height:42.084375pt;}
.hd{height:43.215000pt;}
.h15{height:47.109375pt;}
.h1d{height:48.375000pt;}
.h11{height:49.148438pt;}
.h1f{height:49.336436pt;}
.h19{height:51.360000pt;}
.h29{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2c{height:53.535000pt;}
.h2b{height:54.598989pt;}
.h30{height:57.758750pt;}
.ha{height:57.787500pt;}
.h1b{height:58.563750pt;}
.hf{height:60.288750pt;}
.h2d{height:62.781250pt;}
.h9{height:64.500000pt;}
.h25{height:66.625000pt;}
.h28{height:66.750000pt;}
.h7{height:77.951250pt;}
.h21{height:84.800000pt;}
.h8{height:85.785000pt;}
.h26{height:128.640000pt;}
.h1e{height:455.106667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w3{width:72.952000pt;}
.w5{width:137.306667pt;}
.wa{width:160.346667pt;}
.w8{width:162.266667pt;}
.w7{width:473.706667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:3.780000pt;}
.x2{left:7.192000pt;}
.x11{left:9.592000pt;}
.x17{left:18.893333pt;}
.xc{left:29.920000pt;}
.x3{left:65.746667pt;}
.x14{left:71.560000pt;}
.x12{left:72.680000pt;}
.x10{left:82.760000pt;}
.x16{left:84.360000pt;}
.x1{left:96.040000pt;}
.x9{left:97.952000pt;}
.x1d{left:107.552000pt;}
.xb{left:113.152000pt;}
.x1c{left:114.112000pt;}
.xd{left:117.952000pt;}
.x5{left:160.506667pt;}
.x4{left:169.000000pt;}
.x19{left:221.986667pt;}
.x7{left:262.946667pt;}
.x13{left:269.826667pt;}
.x15{left:275.866667pt;}
.x1a{left:316.066667pt;}
.x1b{left:319.426667pt;}
.xa{left:330.466667pt;}
.x6{left:393.853333pt;}
.x8{left:408.093333pt;}
.xe{left:434.813333pt;}
.xf{left:436.253333pt;}
.x18{left:551.336000pt;}
.x1e{left:681.600000pt;}
}




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