
    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_0e9c3f6615391841c9694c18.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_86555b0d3b0cd41f16dd3329.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_f3e6ea9fa0c78c6cda2c97d4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dd95678699b8c0a96dc40c4f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_857f49f76d88c33341544ba3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f3e5d2435075aa5900d2a47c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049805;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_b9ba6fc9eb2f65c299918760.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_1450f2b0c4b45f18e7913bb4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_25aa1f5c5573a54794af6ad8.woff2')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_d1b010af02c342902612b590.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.ls18{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.774000px;}
.ls19{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.531600px;}
.ls2{letter-spacing:-0.460200px;}
.ls3{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.253200px;}
.ls17{letter-spacing:-0.206400px;}
.ls15{letter-spacing:-0.193800px;}
.ls11{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls14{letter-spacing:-0.027360px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.054720px;}
.ls7{letter-spacing:0.070560px;}
.lsf{letter-spacing:0.106560px;}
.lsa{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206400px;}
.ls12{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.259800px;}
.ls1a{letter-spacing:0.259920px;}
.ls1b{letter-spacing:0.298800px;}
.ls16{letter-spacing:0.319800px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:43.866720px;}
.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;}
}
.ws6{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws9{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.686800px;}
.ws2{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.479800px;}
.ws12{word-spacing:-14.274720px;}
.ws13{word-spacing:-14.192640px;}
.wsf{word-spacing:-13.716000px;}
.ws10{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.700000px;}
.ws11{word-spacing:-9.000000px;}
.ws0{word-spacing:0.000000px;}
._15{margin-left:-4.137120px;}
._14{margin-left:-3.107520px;}
._4{margin-left:-2.049120px;}
._3{margin-left:-1.013040px;}
._0{width:1.135440px;}
._2{width:2.308800px;}
._6{width:3.360000px;}
._a{width:4.770720px;}
._b{width:6.215040px;}
._5{width:7.470000px;}
._f{width:8.485920px;}
._c{width:9.561600px;}
._e{width:10.637280px;}
._d{width:11.712960px;}
._13{width:13.446000px;}
._9{width:16.254720px;}
._12{width:17.569440px;}
._16{width:18.824400px;}
._11{width:20.139120px;}
._10{width:21.513600px;}
._1e{width:22.708800px;}
._1d{width:24.262560px;}
._8{width:25.517520px;}
._7{width:26.593200px;}
._20{width:28.386000px;}
._18{width:29.999520px;}
._23{width:31.553280px;}
._1f{width:33.107040px;}
._19{width:34.481520px;}
._1a{width:35.616960px;}
._1b{width:36.904080px;}
._21{width:38.136240px;}
._17{width:40.397760px;}
._22{width:44.521200px;}
._25{width:45.579600px;}
._24{width:46.792080px;}
._2c{width:49.062960px;}
._28{width:50.497200px;}
._2a{width:52.469280px;}
._27{width:53.724240px;}
._1c{width:58.325760px;}
._2d{width:66.214080px;}
._2e{width:67.289760px;}
._2b{width:78.703920px;}
._26{width:83.006640px;}
._29{width:84.500640px;}
._1{width:482.162160px;}
.fc1{color:transparent;}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:51.120000px;}
.fsa{font-size:54.000000px;}
.fsc{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y14f{bottom:3.060000px;}
.y5e{bottom:3.240000px;}
.yfd{bottom:3.285000px;}
.yfa{bottom:3.960000px;}
.yf4{bottom:4.320000px;}
.y134{bottom:4.860000px;}
.yef{bottom:5.040000px;}
.y136{bottom:5.220000px;}
.yf2{bottom:5.400000px;}
.y12b{bottom:5.940000px;}
.yff{bottom:6.120000px;}
.y12a{bottom:6.300000px;}
.yf6{bottom:6.660000px;}
.y154{bottom:6.705000px;}
.y151{bottom:6.840000px;}
.y131{bottom:7.020000px;}
.y12d{bottom:8.820000px;}
.y128{bottom:9.000000px;}
.y118{bottom:9.540000px;}
.y116{bottom:9.720000px;}
.y119{bottom:10.080000px;}
.y43{bottom:10.260000px;}
.y44{bottom:10.800000px;}
.y14d{bottom:11.340000px;}
.y132{bottom:11.700000px;}
.yea{bottom:11.880000px;}
.y13e{bottom:12.600000px;}
.y144{bottom:12.645000px;}
.y114{bottom:12.960000px;}
.y12e{bottom:13.680000px;}
.y40{bottom:17.490000px;}
.y3e{bottom:18.390000px;}
.y14e{bottom:19.440000px;}
.yeb{bottom:20.520000px;}
.y13f{bottom:20.700000px;}
.y41{bottom:24.330000px;}
.y3f{bottom:30.090000px;}
.y7{bottom:35.925007px;}
.y6{bottom:66.525004px;}
.y10b{bottom:88.560000px;}
.y5{bottom:97.125005px;}
.y101{bottom:101.010000px;}
.yed{bottom:123.525000px;}
.y24{bottom:139.264499px;}
.y5c{bottom:187.410000px;}
.y1b{bottom:196.933500px;}
.y5b{bottom:208.110000px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.y5a{bottom:228.810000px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y54{bottom:240.510000px;}
.y59{bottom:249.510000px;}
.y53{bottom:258.510000px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y58{bottom:270.210000px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.y52{bottom:276.510000px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.y57{bottom:290.910000px;}
.y51{bottom:294.510000px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.y5d{bottom:311.115000px;}
.y56{bottom:311.655000px;}
.y50{bottom:312.555000px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.y4f{bottom:330.555000px;}
.y88{bottom:331.815000px;}
.y87{bottom:332.355000px;}
.y86{bottom:333.435000px;}
.yd2{bottom:334.155000px;}
.y16a{bottom:334.875000px;}
.y113{bottom:336.135000px;}
.ycd{bottom:339.555000px;}
.y12{bottom:348.133500px;}
.y4e{bottom:348.555000px;}
.y85{bottom:351.435000px;}
.y169{bottom:352.875000px;}
.yd1{bottom:354.495000px;}
.y13a{bottom:354.855000px;}
.ycc{bottom:357.555000px;}
.y10a{bottom:360.435000px;}
.ya9{bottom:363.495000px;}
.y4d{bottom:366.555000px;}
.y14b{bottom:366.915000px;}
.y84{bottom:369.435000px;}
.y168{bottom:370.875000px;}
.y139{bottom:372.855000px;}
.ycb{bottom:375.555000px;}
.ye8{bottom:378.435000px;}
.ya8{bottom:381.495000px;}
.y4c{bottom:384.555000px;}
.y11{bottom:386.785499px;}
.y83{bottom:387.435000px;}
.y14a{bottom:388.875000px;}
.y138{bottom:390.855000px;}
.yca{bottom:393.555000px;}
.y112{bottom:398.595000px;}
.ya7{bottom:399.495000px;}
.y4b{bottom:402.555000px;}
.y82{bottom:405.435000px;}
.y167{bottom:406.875000px;}
.y10{bottom:408.044999px;}
.y17c{bottom:408.495000px;}
.y137{bottom:410.655000px;}
.yc9{bottom:411.555000px;}
.y111{bottom:416.595000px;}
.ya6{bottom:417.495000px;}
.y4a{bottom:420.555000px;}
.yb3{bottom:423.435000px;}
.y166{bottom:424.875000px;}
.ye7{bottom:426.495000px;}
.y81{bottom:429.555000px;}
.ya5{bottom:435.495000px;}
.y49{bottom:438.555000px;}
.y135{bottom:438.735000px;}
.y110{bottom:440.355000px;}
.yb2{bottom:441.435000px;}
.y165{bottom:442.875000px;}
.y80{bottom:447.555000px;}
.ye6{bottom:450.435000px;}
.ya4{bottom:453.495000px;}
.y48{bottom:456.555000px;}
.yb1{bottom:459.435000px;}
.y133{bottom:459.795000px;}
.y164{bottom:460.875000px;}
.y10f{bottom:463.935000px;}
.y7f{bottom:465.555000px;}
.y17b{bottom:468.435000px;}
.ya3{bottom:471.495000px;}
.y47{bottom:474.555000px;}
.yb0{bottom:477.435000px;}
.y163{bottom:478.875000px;}
.y130{bottom:479.955000px;}
.y7e{bottom:483.555000px;}
.yf{bottom:484.864502px;}
.y17a{bottom:486.435000px;}
.y10e{bottom:487.695000px;}
.yc4{bottom:489.495000px;}
.ya2{bottom:495.435000px;}
.y162{bottom:496.875000px;}
.ye5{bottom:498.495000px;}
.y46{bottom:498.675000px;}
.y7d{bottom:501.555000px;}
.ye{bottom:502.864502px;}
.y12f{bottom:504.255000px;}
.y179{bottom:504.435000px;}
.yc3{bottom:507.495000px;}
.y10d{bottom:511.455000px;}
.ya1{bottom:513.435000px;}
.y161{bottom:514.875000px;}
.y45{bottom:516.315000px;}
.y7c{bottom:519.555000px;}
.yd{bottom:520.864502px;}
.ye4{bottom:522.435000px;}
.yc2{bottom:525.495000px;}
.y178{bottom:528.555000px;}
.y42{bottom:530.175000px;}
.y10c{bottom:530.895000px;}
.ya0{bottom:531.435000px;}
.y12c{bottom:532.515000px;}
.y7b{bottom:537.555000px;}
.y160{bottom:538.815000px;}
.yc{bottom:538.864499px;}
.yc1{bottom:543.495000px;}
.ye3{bottom:546.555000px;}
.y100{bottom:548.895000px;}
.y11e{bottom:549.255000px;}
.y9f{bottom:549.435000px;}
.y3d{bottom:552.315000px;}
.y7a{bottom:555.555000px;}
.yb{bottom:556.864499px;}
.y129{bottom:560.625000px;}
.yc0{bottom:561.525000px;}
.y177{bottom:564.585000px;}
.y15f{bottom:566.025000px;}
.y11d{bottom:567.105000px;}
.y9e{bottom:567.465000px;}
.ye2{bottom:570.525000px;}
.y109{bottom:572.685000px;}
.y79{bottom:573.585000px;}
.ybf{bottom:579.525000px;}
.y127{bottom:582.945000px;}
.y15e{bottom:584.025000px;}
.y11c{bottom:584.925000px;}
.y9d{bottom:585.465000px;}
.y176{bottom:588.525000px;}
.y3c{bottom:591.225000px;}
.y78{bottom:591.585000px;}
.ye1{bottom:594.465000px;}
.y108{bottom:596.445000px;}
.yd0{bottom:597.525000px;}
.y15d{bottom:602.025000px;}
.y9c{bottom:603.465000px;}
.y175{bottom:606.525000px;}
.y3b{bottom:608.505000px;}
.y77{bottom:609.585000px;}
.ye0{bottom:612.465000px;}
.ycf{bottom:615.525000px;}
.y11b{bottom:615.705000px;}
.y107{bottom:620.025000px;}
.y126{bottom:620.745000px;}
.y9b{bottom:621.465000px;}
.y3a{bottom:625.785000px;}
.y76{bottom:627.585000px;}
.ydf{bottom:630.465000px;}
.yce{bottom:633.525000px;}
.y15c{bottom:638.025000px;}
.y9a{bottom:639.465000px;}
.y39{bottom:642.885000px;}
.y106{bottom:643.785000px;}
.y125{bottom:644.685000px;}
.ya{bottom:645.510000px;}
.y75{bottom:645.585000px;}
.y11a{bottom:646.485000px;}
.yde{bottom:648.465000px;}
.yc8{bottom:651.525000px;}
.y99{bottom:657.465000px;}
.y38{bottom:660.165000px;}
.y124{bottom:662.685000px;}
.y74{bottom:663.585000px;}
.y15b{bottom:665.025000px;}
.ydd{bottom:666.465000px;}
.y9{bottom:666.771000px;}
.y105{bottom:667.545000px;}
.yc7{bottom:669.525000px;}
.y174{bottom:672.585000px;}
.y98{bottom:675.465000px;}
.y117{bottom:677.265000px;}
.y37{bottom:677.445000px;}
.y123{bottom:680.685000px;}
.y73{bottom:681.585000px;}
.y15a{bottom:683.025000px;}
.ydc{bottom:684.465000px;}
.yc6{bottom:687.525000px;}
.y149{bottom:688.785000px;}
.y173{bottom:690.585000px;}
.y104{bottom:691.125000px;}
.y97{bottom:693.465000px;}
.y36{bottom:694.725000px;}
.y122{bottom:698.685000px;}
.y72{bottom:699.585000px;}
.y159{bottom:701.025000px;}
.ydb{bottom:702.465000px;}
.yc5{bottom:705.525000px;}
.y148{bottom:706.785000px;}
.y115{bottom:707.865000px;}
.y172{bottom:708.585000px;}
.y96{bottom:711.465000px;}
.y35{bottom:712.005000px;}
.y103{bottom:714.885000px;}
.y121{bottom:716.685000px;}
.yaf{bottom:717.585000px;}
.y158{bottom:719.025000px;}
.y71{bottom:723.525000px;}
.y147{bottom:724.785000px;}
.y8{bottom:726.298500px;}
.yda{bottom:726.585000px;}
.y34{bottom:729.105000px;}
.y95{bottom:729.465000px;}
.y171{bottom:732.525000px;}
.yae{bottom:735.585000px;}
.y157{bottom:737.025000px;}
.y102{bottom:738.645000px;}
.y70{bottom:741.525000px;}
.y146{bottom:742.785000px;}
.y120{bottom:743.685000px;}
.y33{bottom:746.385000px;}
.y94{bottom:747.465000px;}
.yd9{bottom:750.525000px;}
.y4{bottom:752.599495px;}
.yd8{bottom:753.585000px;}
.y6f{bottom:759.525000px;}
.yec{bottom:762.225000px;}
.y11f{bottom:762.585000px;}
.y32{bottom:763.665000px;}
.y156{bottom:764.025000px;}
.y93{bottom:765.465000px;}
.y145{bottom:767.085000px;}
.yd7{bottom:771.585000px;}
.y170{bottom:774.465000px;}
.y6e{bottom:777.525000px;}
.y31{bottom:780.945000px;}
.y92{bottom:783.465000px;}
.y155{bottom:783.645000px;}
.yfe{bottom:785.985000px;}
.yd6{bottom:789.585000px;}
.y16f{bottom:792.465000px;}
.y6d{bottom:795.525000px;}
.y30{bottom:798.225000px;}
.y91{bottom:801.465000px;}
.y143{bottom:803.085000px;}
.yd5{bottom:807.585000px;}
.y153{bottom:808.125000px;}
.yfc{bottom:808.305000px;}
.y16e{bottom:810.465000px;}
.y6c{bottom:813.570000px;}
.y2f{bottom:815.550000px;}
.ybe{bottom:819.510000px;}
.y90{bottom:825.630000px;}
.yfb{bottom:826.530000px;}
.y6b{bottom:831.570000px;}
.y152{bottom:832.470000px;}
.y2e{bottom:832.650000px;}
.y16d{bottom:834.630000px;}
.ybd{bottom:837.510000px;}
.y142{bottom:839.310000px;}
.y8f{bottom:843.630000px;}
.yf9{bottom:844.530000px;}
.y6a{bottom:849.570000px;}
.y2d{bottom:849.930000px;}
.y16c{bottom:852.630000px;}
.ybc{bottom:855.510000px;}
.y150{bottom:856.950000px;}
.y8e{bottom:861.630000px;}
.yf8{bottom:864.150000px;}
.y69{bottom:867.570000px;}
.y2c{bottom:869.190000px;}
.y16b{bottom:870.630000px;}
.ybb{bottom:873.510000px;}
.y141{bottom:875.490000px;}
.y3{bottom:879.369000px;}
.y8d{bottom:879.630000px;}
.y14c{bottom:881.430000px;}
.y68{bottom:885.570000px;}
.yf7{bottom:888.990000px;}
.yba{bottom:891.510000px;}
.y2b{bottom:896.910000px;}
.y8c{bottom:897.630000px;}
.y67{bottom:903.570000px;}
.yb9{bottom:909.510000px;}
.y140{bottom:911.670000px;}
.yf5{bottom:913.830000px;}
.y8b{bottom:915.630000px;}
.yad{bottom:921.570000px;}
.y2a{bottom:924.450000px;}
.y66{bottom:927.510000px;}
.y8a{bottom:933.630000px;}
.yf3{bottom:938.670000px;}
.yac{bottom:939.570000px;}
.y2{bottom:945.126001px;}
.yb8{bottom:945.510000px;}
.y13d{bottom:947.850000px;}
.y65{bottom:951.630000px;}
.y29{bottom:951.990000px;}
.yab{bottom:957.570000px;}
.yf1{bottom:958.830000px;}
.yb7{bottom:963.510000px;}
.y1{bottom:966.726000px;}
.y64{bottom:969.630000px;}
.yaa{bottom:975.570000px;}
.y28{bottom:979.710000px;}
.yf0{bottom:981.150000px;}
.yb6{bottom:981.510000px;}
.y89{bottom:987.630000px;}
.y63{bottom:993.570000px;}
.yee{bottom:999.150000px;}
.yb5{bottom:999.510000px;}
.yd4{bottom:1005.630000px;}
.y62{bottom:1011.570000px;}
.y13c{bottom:1020.570000px;}
.ye9{bottom:1020.750000px;}
.yb4{bottom:1023.630000px;}
.y61{bottom:1029.570000px;}
.y27{bottom:1031.550000px;}
.y13b{bottom:1038.570000px;}
.yd3{bottom:1041.630000px;}
.y60{bottom:1047.570000px;}
.y26{bottom:1048.650000px;}
.y5f{bottom:1065.600000px;}
.y25{bottom:1065.960000px;}
.y55{bottom:1119.960000px;}
.h27{height:17.100000px;}
.h15{height:17.280000px;}
.h20{height:17.496000px;}
.h26{height:18.720000px;}
.h1f{height:18.900000px;}
.h1c{height:19.440000px;}
.h31{height:20.160000px;}
.h1a{height:20.880000px;}
.h1b{height:21.600000px;}
.h11{height:22.140000px;}
.h23{height:22.860000px;}
.h21{height:23.040000px;}
.h24{height:23.076000px;}
.h2f{height:23.580000px;}
.h3a{height:23.616000px;}
.h39{height:23.760000px;}
.h1d{height:23.940000px;}
.h1e{height:24.120000px;}
.h2e{height:27.360000px;}
.h2c{height:27.540000px;}
.h2b{height:29.880000px;}
.h29{height:30.060000px;}
.h7{height:32.130000px;}
.h38{height:32.760000px;}
.h18{height:34.380000px;}
.h28{height:34.560000px;}
.h32{height:35.280000px;}
.h34{height:35.460000px;}
.h36{height:35.496000px;}
.he{height:35.676000px;}
.h3b{height:44.518359px;}
.h6{height:45.900000px;}
.h10{height:47.344922px;}
.h3{height:48.195000px;}
.hf{height:48.616875px;}
.h13{height:49.838906px;}
.h12{height:50.171484px;}
.h2a{height:52.998047px;}
.h30{height:53.332031px;}
.h2d{height:54.421875px;}
.h2{height:55.080000px;}
.h35{height:55.824609px;}
.h33{height:57.324375px;}
.h17{height:58.621992px;}
.h9{height:58.651172px;}
.ha{height:60.226875px;}
.h16{height:61.423863px;}
.hb{height:67.565039px;}
.h14{height:70.664062px;}
.h37{height:72.562500px;}
.h5{height:78.030000px;}
.hd{height:93.983203px;}
.hc{height:96.508125px;}
.h4{height:119.055004px;}
.h25{height:187.740000px;}
.h22{height:212.610000px;}
.h19{height:257.790000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:22.716000px;}
.w1e{width:38.160000px;}
.w1b{width:39.240000px;}
.w1c{width:39.780000px;}
.w12{width:39.960000px;}
.w1d{width:41.436000px;}
.w17{width:42.156000px;}
.w16{width:42.840000px;}
.w18{width:44.100000px;}
.w21{width:44.856000px;}
.w20{width:46.440000px;}
.w1f{width:46.620000px;}
.w1a{width:48.420000px;}
.w28{width:50.220000px;}
.w29{width:51.120000px;}
.w15{width:51.300000px;}
.w25{width:53.280000px;}
.w14{width:58.860000px;}
.w11{width:59.400000px;}
.w2a{width:63.756000px;}
.we{width:66.600000px;}
.wd{width:66.636000px;}
.w26{width:66.816000px;}
.wb{width:68.580000px;}
.w19{width:71.136000px;}
.wa{width:71.676000px;}
.wc{width:73.440000px;}
.w13{width:73.476000px;}
.w24{width:80.316000px;}
.w22{width:82.836000px;}
.w23{width:84.060000px;}
.wf{width:90.396000px;}
.w10{width:120.816000px;}
.w27{width:127.440000px;}
.w5{width:130.716000px;}
.w6{width:133.200000px;}
.w8{width:134.676000px;}
.w7{width:141.516000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x25{left:10.080000px;}
.x20{left:11.520000px;}
.x31{left:13.320000px;}
.x53{left:14.400000px;}
.x22{left:16.380000px;}
.x2d{left:17.640000px;}
.x45{left:18.945000px;}
.x2e{left:20.520000px;}
.x24{left:21.600000px;}
.x2b{left:23.790000px;}
.x29{left:25.380000px;}
.x2a{left:26.505000px;}
.x4b{left:27.540000px;}
.x4c{left:29.565000px;}
.x4a{left:32.625000px;}
.x38{left:34.020000px;}
.x2c{left:35.640000px;}
.x2f{left:39.960000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x5{left:216.029986px;}
.x6{left:218.549986px;}
.x4f{left:236.010000px;}
.x18{left:243.569986px;}
.x3c{left:254.910000px;}
.x7{left:258.329986px;}
.x3b{left:262.109986px;}
.x10{left:264.449986px;}
.x1c{left:270.029986px;}
.x8{left:273.269986px;}
.xc{left:292.754986px;}
.x4e{left:315.254986px;}
.x50{left:319.575000px;}
.x3d{left:326.775000px;}
.x21{left:337.755000px;}
.x19{left:345.314986px;}
.x14{left:346.755000px;}
.x3a{left:355.214986px;}
.x46{left:357.555000px;}
.x1f{left:366.374986px;}
.xb{left:371.594986px;}
.x3e{left:375.915000px;}
.x13{left:380.594986px;}
.x9{left:381.674986px;}
.xd{left:383.114986px;}
.x1e{left:385.994986px;}
.x11{left:392.294986px;}
.x30{left:398.235000px;}
.xe{left:401.114986px;}
.x23{left:407.055000px;}
.x3f{left:415.875000px;}
.xf{left:419.294986px;}
.x12{left:431.534986px;}
.x56{left:435.674986px;}
.x32{left:439.095000px;}
.x47{left:442.335000px;}
.x51{left:447.915000px;}
.x1b{left:452.414986px;}
.x3{left:454.959000px;}
.x40{left:456.375000px;}
.x1a{left:474.735000px;}
.x16{left:479.955000px;}
.x26{left:481.395000px;}
.xa{left:486.104986px;}
.x41{left:498.525000px;}
.x33{left:513.285000px;}
.x52{left:522.105000px;}
.x48{left:523.365000px;}
.x42{left:537.405000px;}
.x27{left:548.925000px;}
.x54{left:569.445000px;}
.x34{left:572.865000px;}
.x43{left:577.905000px;}
.x28{left:616.425000px;}
.x55{left:620.385000px;}
.x17{left:621.465000px;}
.x35{left:624.885000px;}
.x49{left:631.365000px;}
.x36{left:668.625000px;}
.x44{left:672.405000px;}
.x37{left:711.510000px;}
.x39{left:748.229986px;}
.x4d{left:752.729986px;}
.x1d{left:760.649986px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.688000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.472533pt;}
.ls2{letter-spacing:-0.409067pt;}
.ls3{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.225067pt;}
.ls17{letter-spacing:-0.183467pt;}
.ls15{letter-spacing:-0.172267pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls14{letter-spacing:-0.024320pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.048640pt;}
.ls7{letter-spacing:0.062720pt;}
.lsf{letter-spacing:0.094720pt;}
.lsa{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183467pt;}
.ls12{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls1a{letter-spacing:0.231040pt;}
.ls1b{letter-spacing:0.265600pt;}
.ls16{letter-spacing:0.284267pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:38.992640pt;}
.ws6{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.wsd{word-spacing:-13.054933pt;}
.ws2{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.870933pt;}
.ws12{word-spacing:-12.688640pt;}
.ws13{word-spacing:-12.615680pt;}
.wsf{word-spacing:-12.192000pt;}
.ws10{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.400000pt;}
.ws11{word-spacing:-8.000000pt;}
.ws0{word-spacing:0.000000pt;}
._15{margin-left:-3.677440pt;}
._14{margin-left:-2.762240pt;}
._4{margin-left:-1.821440pt;}
._3{margin-left:-0.900480pt;}
._0{width:1.009280pt;}
._2{width:2.052267pt;}
._6{width:2.986667pt;}
._a{width:4.240640pt;}
._b{width:5.524480pt;}
._5{width:6.640000pt;}
._f{width:7.543040pt;}
._c{width:8.499200pt;}
._e{width:9.455360pt;}
._d{width:10.411520pt;}
._13{width:11.952000pt;}
._9{width:14.448640pt;}
._12{width:15.617280pt;}
._16{width:16.732800pt;}
._11{width:17.901440pt;}
._10{width:19.123200pt;}
._1e{width:20.185600pt;}
._1d{width:21.566720pt;}
._8{width:22.682240pt;}
._7{width:23.638400pt;}
._20{width:25.232000pt;}
._18{width:26.666240pt;}
._23{width:28.047360pt;}
._1f{width:29.428480pt;}
._19{width:30.650240pt;}
._1a{width:31.659520pt;}
._1b{width:32.803627pt;}
._21{width:33.898880pt;}
._17{width:35.909120pt;}
._22{width:39.574400pt;}
._25{width:40.515200pt;}
._24{width:41.592960pt;}
._2c{width:43.611520pt;}
._28{width:44.886400pt;}
._2a{width:46.639360pt;}
._27{width:47.754880pt;}
._1c{width:51.845120pt;}
._2d{width:58.856960pt;}
._2e{width:59.813120pt;}
._2b{width:69.959040pt;}
._26{width:73.783680pt;}
._29{width:75.111680pt;}
._1{width:428.588587pt;}
.fsb{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:45.440000pt;}
.fsa{font-size:48.000000pt;}
.fsc{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y14f{bottom:2.720000pt;}
.y5e{bottom:2.880000pt;}
.yfd{bottom:2.920000pt;}
.yfa{bottom:3.520000pt;}
.yf4{bottom:3.840000pt;}
.y134{bottom:4.320000pt;}
.yef{bottom:4.480000pt;}
.y136{bottom:4.640000pt;}
.yf2{bottom:4.800000pt;}
.y12b{bottom:5.280000pt;}
.yff{bottom:5.440000pt;}
.y12a{bottom:5.600000pt;}
.yf6{bottom:5.920000pt;}
.y154{bottom:5.960000pt;}
.y151{bottom:6.080000pt;}
.y131{bottom:6.240000pt;}
.y12d{bottom:7.840000pt;}
.y128{bottom:8.000000pt;}
.y118{bottom:8.480000pt;}
.y116{bottom:8.640000pt;}
.y119{bottom:8.960000pt;}
.y43{bottom:9.120000pt;}
.y44{bottom:9.600000pt;}
.y14d{bottom:10.080000pt;}
.y132{bottom:10.400000pt;}
.yea{bottom:10.560000pt;}
.y13e{bottom:11.200000pt;}
.y144{bottom:11.240000pt;}
.y114{bottom:11.520000pt;}
.y12e{bottom:12.160000pt;}
.y40{bottom:15.546667pt;}
.y3e{bottom:16.346667pt;}
.y14e{bottom:17.280000pt;}
.yeb{bottom:18.240000pt;}
.y13f{bottom:18.400000pt;}
.y41{bottom:21.626667pt;}
.y3f{bottom:26.746667pt;}
.y7{bottom:31.933340pt;}
.y6{bottom:59.133337pt;}
.y10b{bottom:78.720000pt;}
.y5{bottom:86.333337pt;}
.y101{bottom:89.786667pt;}
.yed{bottom:109.800000pt;}
.y24{bottom:123.790666pt;}
.y5c{bottom:166.586667pt;}
.y1b{bottom:175.052000pt;}
.y5b{bottom:184.986667pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.y5a{bottom:203.386667pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y54{bottom:213.786667pt;}
.y59{bottom:221.786667pt;}
.y53{bottom:229.786667pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y58{bottom:240.186667pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.y52{bottom:245.786667pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.y57{bottom:258.586667pt;}
.y51{bottom:261.786667pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.y5d{bottom:276.546667pt;}
.y56{bottom:277.026667pt;}
.y50{bottom:277.826667pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.y4f{bottom:293.826667pt;}
.y88{bottom:294.946667pt;}
.y87{bottom:295.426667pt;}
.y86{bottom:296.386667pt;}
.yd2{bottom:297.026667pt;}
.y16a{bottom:297.666667pt;}
.y113{bottom:298.786667pt;}
.ycd{bottom:301.826667pt;}
.y12{bottom:309.452000pt;}
.y4e{bottom:309.826667pt;}
.y85{bottom:312.386667pt;}
.y169{bottom:313.666667pt;}
.yd1{bottom:315.106667pt;}
.y13a{bottom:315.426667pt;}
.ycc{bottom:317.826667pt;}
.y10a{bottom:320.386667pt;}
.ya9{bottom:323.106667pt;}
.y4d{bottom:325.826667pt;}
.y14b{bottom:326.146667pt;}
.y84{bottom:328.386667pt;}
.y168{bottom:329.666667pt;}
.y139{bottom:331.426667pt;}
.ycb{bottom:333.826667pt;}
.ye8{bottom:336.386667pt;}
.ya8{bottom:339.106667pt;}
.y4c{bottom:341.826667pt;}
.y11{bottom:343.809333pt;}
.y83{bottom:344.386667pt;}
.y14a{bottom:345.666667pt;}
.y138{bottom:347.426667pt;}
.yca{bottom:349.826667pt;}
.y112{bottom:354.306667pt;}
.ya7{bottom:355.106667pt;}
.y4b{bottom:357.826667pt;}
.y82{bottom:360.386667pt;}
.y167{bottom:361.666667pt;}
.y10{bottom:362.706666pt;}
.y17c{bottom:363.106667pt;}
.y137{bottom:365.026667pt;}
.yc9{bottom:365.826667pt;}
.y111{bottom:370.306667pt;}
.ya6{bottom:371.106667pt;}
.y4a{bottom:373.826667pt;}
.yb3{bottom:376.386667pt;}
.y166{bottom:377.666667pt;}
.ye7{bottom:379.106667pt;}
.y81{bottom:381.826667pt;}
.ya5{bottom:387.106667pt;}
.y49{bottom:389.826667pt;}
.y135{bottom:389.986667pt;}
.y110{bottom:391.426667pt;}
.yb2{bottom:392.386667pt;}
.y165{bottom:393.666667pt;}
.y80{bottom:397.826667pt;}
.ye6{bottom:400.386667pt;}
.ya4{bottom:403.106667pt;}
.y48{bottom:405.826667pt;}
.yb1{bottom:408.386667pt;}
.y133{bottom:408.706667pt;}
.y164{bottom:409.666667pt;}
.y10f{bottom:412.386667pt;}
.y7f{bottom:413.826667pt;}
.y17b{bottom:416.386667pt;}
.ya3{bottom:419.106667pt;}
.y47{bottom:421.826667pt;}
.yb0{bottom:424.386667pt;}
.y163{bottom:425.666667pt;}
.y130{bottom:426.626667pt;}
.y7e{bottom:429.826667pt;}
.yf{bottom:430.990669pt;}
.y17a{bottom:432.386667pt;}
.y10e{bottom:433.506667pt;}
.yc4{bottom:435.106667pt;}
.ya2{bottom:440.386667pt;}
.y162{bottom:441.666667pt;}
.ye5{bottom:443.106667pt;}
.y46{bottom:443.266667pt;}
.y7d{bottom:445.826667pt;}
.ye{bottom:446.990669pt;}
.y12f{bottom:448.226667pt;}
.y179{bottom:448.386667pt;}
.yc3{bottom:451.106667pt;}
.y10d{bottom:454.626667pt;}
.ya1{bottom:456.386667pt;}
.y161{bottom:457.666667pt;}
.y45{bottom:458.946667pt;}
.y7c{bottom:461.826667pt;}
.yd{bottom:462.990669pt;}
.ye4{bottom:464.386667pt;}
.yc2{bottom:467.106667pt;}
.y178{bottom:469.826667pt;}
.y42{bottom:471.266667pt;}
.y10c{bottom:471.906667pt;}
.ya0{bottom:472.386667pt;}
.y12c{bottom:473.346667pt;}
.y7b{bottom:477.826667pt;}
.y160{bottom:478.946667pt;}
.yc{bottom:478.990666pt;}
.yc1{bottom:483.106667pt;}
.ye3{bottom:485.826667pt;}
.y100{bottom:487.906667pt;}
.y11e{bottom:488.226667pt;}
.y9f{bottom:488.386667pt;}
.y3d{bottom:490.946667pt;}
.y7a{bottom:493.826667pt;}
.yb{bottom:494.990666pt;}
.y129{bottom:498.333333pt;}
.yc0{bottom:499.133333pt;}
.y177{bottom:501.853333pt;}
.y15f{bottom:503.133333pt;}
.y11d{bottom:504.093333pt;}
.y9e{bottom:504.413333pt;}
.ye2{bottom:507.133333pt;}
.y109{bottom:509.053333pt;}
.y79{bottom:509.853333pt;}
.ybf{bottom:515.133333pt;}
.y127{bottom:518.173333pt;}
.y15e{bottom:519.133333pt;}
.y11c{bottom:519.933333pt;}
.y9d{bottom:520.413333pt;}
.y176{bottom:523.133333pt;}
.y3c{bottom:525.533333pt;}
.y78{bottom:525.853333pt;}
.ye1{bottom:528.413333pt;}
.y108{bottom:530.173333pt;}
.yd0{bottom:531.133333pt;}
.y15d{bottom:535.133333pt;}
.y9c{bottom:536.413333pt;}
.y175{bottom:539.133333pt;}
.y3b{bottom:540.893333pt;}
.y77{bottom:541.853333pt;}
.ye0{bottom:544.413333pt;}
.ycf{bottom:547.133333pt;}
.y11b{bottom:547.293333pt;}
.y107{bottom:551.133333pt;}
.y126{bottom:551.773333pt;}
.y9b{bottom:552.413333pt;}
.y3a{bottom:556.253333pt;}
.y76{bottom:557.853333pt;}
.ydf{bottom:560.413333pt;}
.yce{bottom:563.133333pt;}
.y15c{bottom:567.133333pt;}
.y9a{bottom:568.413333pt;}
.y39{bottom:571.453333pt;}
.y106{bottom:572.253333pt;}
.y125{bottom:573.053333pt;}
.ya{bottom:573.786667pt;}
.y75{bottom:573.853333pt;}
.y11a{bottom:574.653333pt;}
.yde{bottom:576.413333pt;}
.yc8{bottom:579.133333pt;}
.y99{bottom:584.413333pt;}
.y38{bottom:586.813333pt;}
.y124{bottom:589.053333pt;}
.y74{bottom:589.853333pt;}
.y15b{bottom:591.133333pt;}
.ydd{bottom:592.413333pt;}
.y9{bottom:592.685334pt;}
.y105{bottom:593.373333pt;}
.yc7{bottom:595.133333pt;}
.y174{bottom:597.853333pt;}
.y98{bottom:600.413333pt;}
.y117{bottom:602.013333pt;}
.y37{bottom:602.173333pt;}
.y123{bottom:605.053333pt;}
.y73{bottom:605.853333pt;}
.y15a{bottom:607.133333pt;}
.ydc{bottom:608.413333pt;}
.yc6{bottom:611.133333pt;}
.y149{bottom:612.253333pt;}
.y173{bottom:613.853333pt;}
.y104{bottom:614.333333pt;}
.y97{bottom:616.413333pt;}
.y36{bottom:617.533333pt;}
.y122{bottom:621.053333pt;}
.y72{bottom:621.853333pt;}
.y159{bottom:623.133333pt;}
.ydb{bottom:624.413333pt;}
.yc5{bottom:627.133333pt;}
.y148{bottom:628.253333pt;}
.y115{bottom:629.213333pt;}
.y172{bottom:629.853333pt;}
.y96{bottom:632.413333pt;}
.y35{bottom:632.893333pt;}
.y103{bottom:635.453333pt;}
.y121{bottom:637.053333pt;}
.yaf{bottom:637.853333pt;}
.y158{bottom:639.133333pt;}
.y71{bottom:643.133333pt;}
.y147{bottom:644.253333pt;}
.y8{bottom:645.598667pt;}
.yda{bottom:645.853333pt;}
.y34{bottom:648.093333pt;}
.y95{bottom:648.413333pt;}
.y171{bottom:651.133333pt;}
.yae{bottom:653.853333pt;}
.y157{bottom:655.133333pt;}
.y102{bottom:656.573333pt;}
.y70{bottom:659.133333pt;}
.y146{bottom:660.253333pt;}
.y120{bottom:661.053333pt;}
.y33{bottom:663.453333pt;}
.y94{bottom:664.413333pt;}
.yd9{bottom:667.133333pt;}
.y4{bottom:668.977329pt;}
.yd8{bottom:669.853333pt;}
.y6f{bottom:675.133333pt;}
.yec{bottom:677.533333pt;}
.y11f{bottom:677.853333pt;}
.y32{bottom:678.813333pt;}
.y156{bottom:679.133333pt;}
.y93{bottom:680.413333pt;}
.y145{bottom:681.853333pt;}
.yd7{bottom:685.853333pt;}
.y170{bottom:688.413333pt;}
.y6e{bottom:691.133333pt;}
.y31{bottom:694.173333pt;}
.y92{bottom:696.413333pt;}
.y155{bottom:696.573333pt;}
.yfe{bottom:698.653333pt;}
.yd6{bottom:701.853333pt;}
.y16f{bottom:704.413333pt;}
.y6d{bottom:707.133333pt;}
.y30{bottom:709.533333pt;}
.y91{bottom:712.413333pt;}
.y143{bottom:713.853333pt;}
.yd5{bottom:717.853333pt;}
.y153{bottom:718.333333pt;}
.yfc{bottom:718.493333pt;}
.y16e{bottom:720.413333pt;}
.y6c{bottom:723.173333pt;}
.y2f{bottom:724.933333pt;}
.ybe{bottom:728.453333pt;}
.y90{bottom:733.893333pt;}
.yfb{bottom:734.693333pt;}
.y6b{bottom:739.173333pt;}
.y152{bottom:739.973333pt;}
.y2e{bottom:740.133333pt;}
.y16d{bottom:741.893333pt;}
.ybd{bottom:744.453333pt;}
.y142{bottom:746.053333pt;}
.y8f{bottom:749.893333pt;}
.yf9{bottom:750.693333pt;}
.y6a{bottom:755.173333pt;}
.y2d{bottom:755.493333pt;}
.y16c{bottom:757.893333pt;}
.ybc{bottom:760.453333pt;}
.y150{bottom:761.733333pt;}
.y8e{bottom:765.893333pt;}
.yf8{bottom:768.133333pt;}
.y69{bottom:771.173333pt;}
.y2c{bottom:772.613333pt;}
.y16b{bottom:773.893333pt;}
.ybb{bottom:776.453333pt;}
.y141{bottom:778.213333pt;}
.y3{bottom:781.661334pt;}
.y8d{bottom:781.893333pt;}
.y14c{bottom:783.493333pt;}
.y68{bottom:787.173333pt;}
.yf7{bottom:790.213333pt;}
.yba{bottom:792.453333pt;}
.y2b{bottom:797.253333pt;}
.y8c{bottom:797.893333pt;}
.y67{bottom:803.173333pt;}
.yb9{bottom:808.453333pt;}
.y140{bottom:810.373333pt;}
.yf5{bottom:812.293333pt;}
.y8b{bottom:813.893333pt;}
.yad{bottom:819.173333pt;}
.y2a{bottom:821.733333pt;}
.y66{bottom:824.453333pt;}
.y8a{bottom:829.893333pt;}
.yf3{bottom:834.373333pt;}
.yac{bottom:835.173333pt;}
.y2{bottom:840.112001pt;}
.yb8{bottom:840.453333pt;}
.y13d{bottom:842.533333pt;}
.y65{bottom:845.893333pt;}
.y29{bottom:846.213333pt;}
.yab{bottom:851.173333pt;}
.yf1{bottom:852.293333pt;}
.yb7{bottom:856.453333pt;}
.y1{bottom:859.312000pt;}
.y64{bottom:861.893333pt;}
.yaa{bottom:867.173333pt;}
.y28{bottom:870.853333pt;}
.yf0{bottom:872.133333pt;}
.yb6{bottom:872.453333pt;}
.y89{bottom:877.893333pt;}
.y63{bottom:883.173333pt;}
.yee{bottom:888.133333pt;}
.yb5{bottom:888.453333pt;}
.yd4{bottom:893.893333pt;}
.y62{bottom:899.173333pt;}
.y13c{bottom:907.173333pt;}
.ye9{bottom:907.333333pt;}
.yb4{bottom:909.893333pt;}
.y61{bottom:915.173333pt;}
.y27{bottom:916.933333pt;}
.y13b{bottom:923.173333pt;}
.yd3{bottom:925.893333pt;}
.y60{bottom:931.173333pt;}
.y26{bottom:932.133333pt;}
.y5f{bottom:947.200000pt;}
.y25{bottom:947.520000pt;}
.y55{bottom:995.520000pt;}
.h27{height:15.200000pt;}
.h15{height:15.360000pt;}
.h20{height:15.552000pt;}
.h26{height:16.640000pt;}
.h1f{height:16.800000pt;}
.h1c{height:17.280000pt;}
.h31{height:17.920000pt;}
.h1a{height:18.560000pt;}
.h1b{height:19.200000pt;}
.h11{height:19.680000pt;}
.h23{height:20.320000pt;}
.h21{height:20.480000pt;}
.h24{height:20.512000pt;}
.h2f{height:20.960000pt;}
.h3a{height:20.992000pt;}
.h39{height:21.120000pt;}
.h1d{height:21.280000pt;}
.h1e{height:21.440000pt;}
.h2e{height:24.320000pt;}
.h2c{height:24.480000pt;}
.h2b{height:26.560000pt;}
.h29{height:26.720000pt;}
.h7{height:28.560000pt;}
.h38{height:29.120000pt;}
.h18{height:30.560000pt;}
.h28{height:30.720000pt;}
.h32{height:31.360000pt;}
.h34{height:31.520000pt;}
.h36{height:31.552000pt;}
.he{height:31.712000pt;}
.h3b{height:39.571875pt;}
.h6{height:40.800000pt;}
.h10{height:42.084375pt;}
.h3{height:42.840000pt;}
.hf{height:43.215000pt;}
.h13{height:44.301250pt;}
.h12{height:44.596875pt;}
.h2a{height:47.109375pt;}
.h30{height:47.406250pt;}
.h2d{height:48.375000pt;}
.h2{height:48.960000pt;}
.h35{height:49.621875pt;}
.h33{height:50.955000pt;}
.h17{height:52.108438pt;}
.h9{height:52.134375pt;}
.ha{height:53.535000pt;}
.h16{height:54.598989pt;}
.hb{height:60.057813pt;}
.h14{height:62.812500pt;}
.h37{height:64.500000pt;}
.h5{height:69.360000pt;}
.hd{height:83.540625pt;}
.hc{height:85.785000pt;}
.h4{height:105.826671pt;}
.h25{height:166.880000pt;}
.h22{height:188.986667pt;}
.h19{height:229.146667pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:20.192000pt;}
.w1e{width:33.920000pt;}
.w1b{width:34.880000pt;}
.w1c{width:35.360000pt;}
.w12{width:35.520000pt;}
.w1d{width:36.832000pt;}
.w17{width:37.472000pt;}
.w16{width:38.080000pt;}
.w18{width:39.200000pt;}
.w21{width:39.872000pt;}
.w20{width:41.280000pt;}
.w1f{width:41.440000pt;}
.w1a{width:43.040000pt;}
.w28{width:44.640000pt;}
.w29{width:45.440000pt;}
.w15{width:45.600000pt;}
.w25{width:47.360000pt;}
.w14{width:52.320000pt;}
.w11{width:52.800000pt;}
.w2a{width:56.672000pt;}
.we{width:59.200000pt;}
.wd{width:59.232000pt;}
.w26{width:59.392000pt;}
.wb{width:60.960000pt;}
.w19{width:63.232000pt;}
.wa{width:63.712000pt;}
.wc{width:65.280000pt;}
.w13{width:65.312000pt;}
.w24{width:71.392000pt;}
.w22{width:73.632000pt;}
.w23{width:74.720000pt;}
.wf{width:80.352000pt;}
.w10{width:107.392000pt;}
.w27{width:113.280000pt;}
.w5{width:116.192000pt;}
.w6{width:118.400000pt;}
.w8{width:119.712000pt;}
.w7{width:125.792000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x25{left:8.960000pt;}
.x20{left:10.240000pt;}
.x31{left:11.840000pt;}
.x53{left:12.800000pt;}
.x22{left:14.560000pt;}
.x2d{left:15.680000pt;}
.x45{left:16.840000pt;}
.x2e{left:18.240000pt;}
.x24{left:19.200000pt;}
.x2b{left:21.146667pt;}
.x29{left:22.560000pt;}
.x2a{left:23.560000pt;}
.x4b{left:24.480000pt;}
.x4c{left:26.280000pt;}
.x4a{left:29.000000pt;}
.x38{left:30.240000pt;}
.x2c{left:31.680000pt;}
.x2f{left:35.520000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x5{left:192.026655pt;}
.x6{left:194.266655pt;}
.x4f{left:209.786667pt;}
.x18{left:216.506655pt;}
.x3c{left:226.586667pt;}
.x7{left:229.626655pt;}
.x3b{left:232.986655pt;}
.x10{left:235.066655pt;}
.x1c{left:240.026655pt;}
.x8{left:242.906655pt;}
.xc{left:260.226655pt;}
.x4e{left:280.226655pt;}
.x50{left:284.066667pt;}
.x3d{left:290.466667pt;}
.x21{left:300.226667pt;}
.x19{left:306.946655pt;}
.x14{left:308.226667pt;}
.x3a{left:315.746655pt;}
.x46{left:317.826667pt;}
.x1f{left:325.666655pt;}
.xb{left:330.306655pt;}
.x3e{left:334.146667pt;}
.x13{left:338.306655pt;}
.x9{left:339.266655pt;}
.xd{left:340.546655pt;}
.x1e{left:343.106655pt;}
.x11{left:348.706655pt;}
.x30{left:353.986667pt;}
.xe{left:356.546655pt;}
.x23{left:361.826667pt;}
.x3f{left:369.666667pt;}
.xf{left:372.706655pt;}
.x12{left:383.586655pt;}
.x56{left:387.266655pt;}
.x32{left:390.306667pt;}
.x47{left:393.186667pt;}
.x51{left:398.146667pt;}
.x1b{left:402.146655pt;}
.x3{left:404.408000pt;}
.x40{left:405.666667pt;}
.x1a{left:421.986667pt;}
.x16{left:426.626667pt;}
.x26{left:427.906667pt;}
.xa{left:432.093321pt;}
.x41{left:443.133333pt;}
.x33{left:456.253333pt;}
.x52{left:464.093333pt;}
.x48{left:465.213333pt;}
.x42{left:477.693333pt;}
.x27{left:487.933333pt;}
.x54{left:506.173333pt;}
.x34{left:509.213333pt;}
.x43{left:513.693333pt;}
.x28{left:547.933333pt;}
.x55{left:551.453333pt;}
.x17{left:552.413333pt;}
.x35{left:555.453333pt;}
.x49{left:561.213333pt;}
.x36{left:594.333333pt;}
.x44{left:597.693333pt;}
.x37{left:632.453333pt;}
.x39{left:665.093321pt;}
.x4d{left:669.093321pt;}
.x1d{left:676.133321pt;}
}




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