
    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_4bd31d7a8d8b036b002629bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156738;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_4edb36566fb82cf3e96d6296.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711914;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_e44dfc1ebdfcb8150d49aa37.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_c6380639640745b35c849d95.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.125000;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_24884d2640d055da1c5adf1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972656;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_015dd8b5055b5ca703a33056.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_dd12db38898d81207f180671.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948242;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_7eb2ce9f900196f002501f33.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.156738;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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);}
.v2{vertical-align:-75.600000px;}
.v3{vertical-align:-69.840000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-1.134000px;}
.ls8{letter-spacing:-0.828000px;}
.ls26{letter-spacing:-0.774000px;}
.ls1a{letter-spacing:-0.414600px;}
.ls4{letter-spacing:-0.305400px;}
.ls22{letter-spacing:-0.259800px;}
.ls27{letter-spacing:-0.181200px;}
.ls29{letter-spacing:-0.178800px;}
.ls7{letter-spacing:-0.152400px;}
.ls3{letter-spacing:-0.109200px;}
.ls1{letter-spacing:-0.106800px;}
.ls23{letter-spacing:-0.100200px;}
.ls6{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.010560px;}
.ls1c{letter-spacing:0.053280px;}
.ls28{letter-spacing:0.090600px;}
.ls0{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.262200px;}
.lse{letter-spacing:0.305400px;}
.ls1e{letter-spacing:0.612000px;}
.ls24{letter-spacing:0.613440px;}
.ls1f{letter-spacing:0.666000px;}
.ls25{letter-spacing:0.666720px;}
.ls21{letter-spacing:0.979920px;}
.ls17{letter-spacing:1.745280px;}
.ls20{letter-spacing:2.286720px;}
.ls12{letter-spacing:4.625280px;}
.ls16{letter-spacing:5.345280px;}
.ls15{letter-spacing:8.225280px;}
.lsb{letter-spacing:11.105280px;}
.ls11{letter-spacing:11.825280px;}
.lsf{letter-spacing:29.825280px;}
.ls18{letter-spacing:30.545280px;}
.ls5{letter-spacing:34.841280px;}
.ls1d{letter-spacing:35.946720px;}
.ls13{letter-spacing:48.545280px;}
.lsd{letter-spacing:59.345280px;}
.ls1b{letter-spacing:60.065280px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.ws1{word-spacing:-20.016000px;}
.wse{word-spacing:-18.676920px;}
.wsc{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.305520px;}
.ws8{word-spacing:-18.262320px;}
.ws5{word-spacing:-18.109320px;}
.ws9{word-spacing:-17.586720px;}
.ws10{word-spacing:-17.225280px;}
.ws3{word-spacing:-16.613280px;}
.ws7{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.513080px;}
.ws0{word-spacing:-16.506480px;}
.ws11{word-spacing:-16.353480px;}
.ws2{word-spacing:-15.812640px;}
.ws13{word-spacing:-15.785280px;}
.wsf{word-spacing:-13.410720px;}
.ws14{word-spacing:-13.229520px;}
.wsd{word-spacing:-11.609280px;}
.wsa{word-spacing:-10.169280px;}
.ws6{word-spacing:0.000000px;}
._1d{margin-left:-6.231600px;}
._e{margin-left:-5.035680px;}
._c{margin-left:-3.466080px;}
._b{margin-left:-2.330640px;}
._1{margin-left:-1.080000px;}
._0{width:1.284000px;}
._2{width:2.631120px;}
._8{width:3.678720px;}
._5{width:4.688640px;}
._10{width:6.359040px;}
._9{width:7.649280px;}
._a{width:9.172560px;}
._1b{width:10.987920px;}
._16{width:12.016080px;}
._3{width:13.326480px;}
._4{width:14.432880px;}
._15{width:15.537600px;}
._13{width:17.170560px;}
._24{width:18.224880px;}
._f{width:19.711440px;}
._22{width:20.735760px;}
._25{width:22.123440px;}
._11{width:23.485680px;}
._12{width:24.563040px;}
._18{width:26.164800px;}
._19{width:27.397440px;}
._6{width:29.342160px;}
._7{width:30.778080px;}
._1c{width:32.635680px;}
._d{width:34.535520px;}
._17{width:36.564480px;}
._1e{width:37.598400px;}
._2d{width:39.859920px;}
._14{width:41.473440px;}
._20{width:42.658560px;}
._21{width:43.712880px;}
._46{width:45.075600px;}
._23{width:46.169280px;}
._26{width:47.904000px;}
._44{width:50.974560px;}
._43{width:52.838400px;}
._2c{width:55.244160px;}
._1f{width:59.114880px;}
._2b{width:61.934400px;}
._27{width:64.353600px;}
._3e{width:66.453120px;}
._28{width:71.559360px;}
._29{width:72.705600px;}
._1a{width:74.056320px;}
._42{width:83.882880px;}
._41{width:85.228320px;}
._35{width:107.328960px;}
._33{width:129.440160px;}
._32{width:131.023200px;}
._3b{width:139.898160px;}
._40{width:148.836720px;}
._3f{width:149.963280px;}
._2e{width:177.759840px;}
._2a{width:190.361280px;}
._38{width:204.922080px;}
._39{width:205.958640px;}
._37{width:222.269520px;}
._34{width:238.799040px;}
._4a{width:250.161840px;}
._49{width:251.436960px;}
._3d{width:257.190000px;}
._31{width:259.030560px;}
._30{width:260.493840px;}
._3a{width:328.042080px;}
._47{width:384.625680px;}
._2f{width:455.178480px;}
._3c{width:485.002080px;}
._48{width:599.602800px;}
._45{width:616.424400px;}
._36{width:1336.532400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y195{bottom:2.520000px;}
.y1a2{bottom:2.550000px;}
.y133{bottom:3.240000px;}
.y3{bottom:3.420000px;}
.y157{bottom:3.600000px;}
.y193{bottom:9.360000px;}
.y19d{bottom:9.540000px;}
.y158{bottom:12.960000px;}
.y1ab{bottom:16.194000px;}
.y18f{bottom:16.200000px;}
.y197{bottom:16.380000px;}
.y1a1{bottom:16.410000px;}
.y132{bottom:20.520000px;}
.y2{bottom:22.500000px;}
.y192{bottom:23.220000px;}
.y1aa{bottom:30.054000px;}
.y18e{bottom:30.060000px;}
.y1a0{bottom:30.090000px;}
.y1b5{bottom:30.240000px;}
.y1bf{bottom:30.285000px;}
.y18b{bottom:36.900000px;}
.y1b0{bottom:37.080000px;}
.y131{bottom:37.800000px;}
.y1{bottom:41.040000px;}
.y156{bottom:41.580000px;}
.y18d{bottom:43.920000px;}
.y191{bottom:50.760000px;}
.y18c{bottom:57.600000px;}
.y190{bottom:64.620000px;}
.y194{bottom:71.460000px;}
.y2a{bottom:109.476000px;}
.y1ac{bottom:110.916000px;}
.y103{bottom:112.896000px;}
.yb2{bottom:113.076000px;}
.ye1{bottom:114.696000px;}
.y189{bottom:116.676000px;}
.y76{bottom:116.856000px;}
.y12e{bottom:119.736000px;}
.y154{bottom:120.096000px;}
.y95{bottom:122.076000px;}
.yc9{bottom:125.496000px;}
.y29{bottom:126.576000px;}
.y171{bottom:128.376000px;}
.y177{bottom:130.356000px;}
.y102{bottom:131.796000px;}
.yb1{bottom:131.976000px;}
.ye0{bottom:133.776000px;}
.y50{bottom:134.136000px;}
.ye9{bottom:135.576000px;}
.y75{bottom:135.756000px;}
.y12d{bottom:138.816000px;}
.y153{bottom:138.996000px;}
.y1a9{bottom:139.356000px;}
.y1c1{bottom:140.076000px;}
.y94{bottom:140.976000px;}
.y28{bottom:143.856000px;}
.yc8{bottom:144.396000px;}
.y125{bottom:145.296000px;}
.y170{bottom:147.456000px;}
.y176{bottom:147.636000px;}
.y27{bottom:148.356000px;}
.yb0{bottom:150.870000px;}
.y188{bottom:151.050000px;}
.ydf{bottom:152.670000px;}
.ye8{bottom:152.850000px;}
.y4f{bottom:153.030000px;}
.y74{bottom:154.830000px;}
.y1c0{bottom:155.010000px;}
.y12c{bottom:157.710000px;}
.y152{bottom:158.070000px;}
.y93{bottom:159.870000px;}
.y26{bottom:161.850000px;}
.yc7{bottom:163.290000px;}
.y124{bottom:164.190000px;}
.y175{bottom:164.910000px;}
.y16f{bottom:166.350000px;}
.y187{bottom:168.330000px;}
.y101{bottom:169.770000px;}
.ye7{bottom:170.130000px;}
.yde{bottom:171.570000px;}
.y4e{bottom:172.110000px;}
.y73{bottom:173.730000px;}
.y12b{bottom:176.790000px;}
.y151{bottom:176.970000px;}
.y92{bottom:178.950000px;}
.y1a8{bottom:181.470000px;}
.yc6{bottom:182.190000px;}
.y123{bottom:183.270000px;}
.y16e{bottom:185.430000px;}
.y186{bottom:185.610000px;}
.ye6{bottom:187.230000px;}
.y100{bottom:188.850000px;}
.y25{bottom:189.930000px;}
.ydd{bottom:190.650000px;}
.y4d{bottom:191.010000px;}
.y72{bottom:192.810000px;}
.y12a{bottom:195.690000px;}
.y150{bottom:196.050000px;}
.yaf{bottom:197.310000px;}
.y91{bottom:197.850000px;}
.y174{bottom:199.290000px;}
.y122{bottom:202.170000px;}
.yc5{bottom:202.350000px;}
.y185{bottom:202.890000px;}
.y16d{bottom:204.330000px;}
.ye5{bottom:204.510000px;}
.yff{bottom:207.750000px;}
.y24{bottom:208.830000px;}
.ydc{bottom:209.550000px;}
.y4c{bottom:209.910000px;}
.y1be{bottom:211.530000px;}
.y71{bottom:211.710000px;}
.yae{bottom:213.510000px;}
.y129{bottom:214.590000px;}
.y14f{bottom:214.950000px;}
.y173{bottom:216.570000px;}
.y90{bottom:216.930000px;}
.y184{bottom:219.990000px;}
.y121{bottom:221.250000px;}
.ye4{bottom:221.790000px;}
.yc4{bottom:222.510000px;}
.y16c{bottom:223.410000px;}
.yfe{bottom:226.650000px;}
.y23{bottom:227.910000px;}
.ydb{bottom:228.630000px;}
.y4b{bottom:228.990000px;}
.y70{bottom:230.610000px;}
.yad{bottom:232.455000px;}
.y128{bottom:233.535000px;}
.y172{bottom:234.435000px;}
.y14e{bottom:234.975000px;}
.y8f{bottom:235.875000px;}
.y183{bottom:237.315000px;}
.y1a7{bottom:237.495000px;}
.ye3{bottom:239.115000px;}
.y120{bottom:240.195000px;}
.yc3{bottom:241.455000px;}
.y16b{bottom:242.355000px;}
.yfd{bottom:245.775000px;}
.y22{bottom:246.855000px;}
.yda{bottom:247.575000px;}
.y4a{bottom:247.935000px;}
.y6f{bottom:249.735000px;}
.yac{bottom:251.355000px;}
.y127{bottom:253.695000px;}
.y1bd{bottom:253.875000px;}
.y182{bottom:254.595000px;}
.y8e{bottom:254.955000px;}
.y14d{bottom:255.135000px;}
.ye2{bottom:256.395000px;}
.y11f{bottom:258.915000px;}
.y16a{bottom:261.255000px;}
.yc2{bottom:261.615000px;}
.yfc{bottom:264.675000px;}
.y21{bottom:265.755000px;}
.yd9{bottom:266.655000px;}
.y49{bottom:267.015000px;}
.y6e{bottom:268.635000px;}
.yab{bottom:270.435000px;}
.y181{bottom:271.875000px;}
.y126{bottom:272.595000px;}
.y8d{bottom:273.855000px;}
.y14c{bottom:274.215000px;}
.y11e{bottom:276.195000px;}
.y1a6{bottom:279.615000px;}
.y169{bottom:280.335000px;}
.yc1{bottom:280.515000px;}
.yfb{bottom:283.755000px;}
.y20{bottom:284.835000px;}
.yd8{bottom:285.555000px;}
.y48{bottom:285.915000px;}
.y6d{bottom:287.715000px;}
.y180{bottom:289.155000px;}
.yaa{bottom:289.335000px;}
.y8c{bottom:292.755000px;}
.y14b{bottom:293.115000px;}
.y11d{bottom:293.475000px;}
.y1bc{bottom:295.995000px;}
.y168{bottom:299.235000px;}
.yc0{bottom:300.675000px;}
.yfa{bottom:302.655000px;}
.y1f{bottom:303.735000px;}
.yd7{bottom:304.275000px;}
.y47{bottom:304.815000px;}
.y17f{bottom:306.435000px;}
.y6c{bottom:306.615000px;}
.ya9{bottom:308.415000px;}
.y11c{bottom:310.575000px;}
.y8b{bottom:311.835000px;}
.y14a{bottom:312.015000px;}
.y167{bottom:318.315000px;}
.ybf{bottom:320.835000px;}
.yd6{bottom:321.555000px;}
.y1e{bottom:322.815000px;}
.y17e{bottom:323.535000px;}
.y46{bottom:323.895000px;}
.y6b{bottom:325.515000px;}
.ya8{bottom:327.315000px;}
.y11b{bottom:327.855000px;}
.y8a{bottom:330.735000px;}
.y149{bottom:331.095000px;}
.y1a5{bottom:335.595000px;}
.y166{bottom:337.215000px;}
.y1bb{bottom:338.115000px;}
.yd5{bottom:338.835000px;}
.ybe{bottom:339.735000px;}
.y17d{bottom:340.815000px;}
.y1d{bottom:341.715000px;}
.y45{bottom:342.795000px;}
.y6a{bottom:344.595000px;}
.y11a{bottom:345.135000px;}
.ya7{bottom:346.215000px;}
.y89{bottom:349.815000px;}
.y148{bottom:349.995000px;}
.yd4{bottom:355.935000px;}
.y165{bottom:356.115000px;}
.y17c{bottom:358.095000px;}
.ybd{bottom:359.715000px;}
.y1c{bottom:360.615000px;}
.y44{bottom:361.875000px;}
.y119{bottom:362.415000px;}
.y69{bottom:363.495000px;}
.ya6{bottom:365.295000px;}
.y88{bottom:368.715000px;}
.y147{bottom:369.075000px;}
.yd3{bottom:373.215000px;}
.y164{bottom:375.195000px;}
.y17b{bottom:375.375000px;}
.y1a4{bottom:377.715000px;}
.y1b{bottom:379.695000px;}
.ybc{bottom:379.875000px;}
.y1ba{bottom:380.235000px;}
.y43{bottom:380.595000px;}
.y68{bottom:382.575000px;}
.ya5{bottom:383.655000px;}
.y87{bottom:387.615000px;}
.y146{bottom:387.975000px;}
.yd2{bottom:390.495000px;}
.y17a{bottom:392.655000px;}
.y163{bottom:394.095000px;}
.y42{bottom:397.695000px;}
.y1a{bottom:398.595000px;}
.ybb{bottom:398.775000px;}
.y118{bottom:398.955000px;}
.ya4{bottom:399.495000px;}
.y67{bottom:401.475000px;}
.y1a3{bottom:405.975000px;}
.y86{bottom:406.695000px;}
.y145{bottom:406.875000px;}
.yd1{bottom:407.775000px;}
.y1b9{bottom:408.675000px;}
.y179{bottom:409.935000px;}
.y162{bottom:413.175000px;}
.y41{bottom:414.975000px;}
.ya3{bottom:416.775000px;}
.yf9{bottom:417.495000px;}
.y117{bottom:417.855000px;}
.yba{bottom:418.935000px;}
.y66{bottom:420.375000px;}
.y19f{bottom:420.555000px;}
.y1b8{bottom:423.105000px;}
.yd0{bottom:425.085000px;}
.y85{bottom:425.625000px;}
.y144{bottom:425.985000px;}
.y178{bottom:427.065000px;}
.y161{bottom:432.105000px;}
.y40{bottom:432.285000px;}
.ya2{bottom:434.085000px;}
.y116{bottom:436.785000px;}
.yf8{bottom:437.685000px;}
.yb9{bottom:439.125000px;}
.y65{bottom:439.485000px;}
.ycf{bottom:442.365000px;}
.y19{bottom:444.345000px;}
.y84{bottom:444.705000px;}
.y143{bottom:444.885000px;}
.y3f{bottom:449.565000px;}
.y160{bottom:451.005000px;}
.ya1{bottom:451.365000px;}
.yf7{bottom:456.765000px;}
.y115{bottom:456.945000px;}
.yb8{bottom:458.025000px;}
.y64{bottom:458.385000px;}
.yce{bottom:459.465000px;}
.y18{bottom:461.625000px;}
.y19e{bottom:462.705000px;}
.y83{bottom:463.605000px;}
.y142{bottom:463.965000px;}
.y1b7{bottom:465.405000px;}
.y3e{bottom:466.845000px;}
.ya0{bottom:468.465000px;}
.y15f{bottom:470.085000px;}
.yf6{bottom:475.665000px;}
.ycd{bottom:476.745000px;}
.y114{bottom:476.925000px;}
.y63{bottom:477.465000px;}
.yb7{bottom:478.005000px;}
.y17{bottom:478.905000px;}
.y82{bottom:482.505000px;}
.y141{bottom:482.865000px;}
.y3d{bottom:484.125000px;}
.y9f{bottom:485.745000px;}
.y15e{bottom:488.985000px;}
.ycc{bottom:494.025000px;}
.yf5{bottom:494.565000px;}
.y16{bottom:496.185000px;}
.y62{bottom:496.365000px;}
.y113{bottom:497.085000px;}
.yb6{bottom:498.165000px;}
.y3c{bottom:501.225000px;}
.y81{bottom:501.585000px;}
.y140{bottom:501.765000px;}
.y9e{bottom:503.025000px;}
.y19c{bottom:504.825000px;}
.y1b6{bottom:507.525000px;}
.y15d{bottom:508.065000px;}
.ycb{bottom:511.485000px;}
.y15{bottom:513.285000px;}
.yf4{bottom:513.645000px;}
.y61{bottom:515.265000px;}
.y112{bottom:515.985000px;}
.yb5{bottom:517.065000px;}
.y3b{bottom:518.505000px;}
.y9d{bottom:520.305000px;}
.y80{bottom:520.485000px;}
.y13f{bottom:520.845000px;}
.y15c{bottom:524.265000px;}
.y14{bottom:530.565000px;}
.yf3{bottom:532.545000px;}
.y19b{bottom:533.265000px;}
.y60{bottom:534.345000px;}
.y3a{bottom:535.785000px;}
.y111{bottom:536.145000px;}
.yb4{bottom:537.225000px;}
.y9c{bottom:537.585000px;}
.y7f{bottom:539.565000px;}
.y13e{bottom:539.745000px;}
.y13{bottom:547.845000px;}
.yca{bottom:549.465000px;}
.yf2{bottom:551.625000px;}
.y39{bottom:553.065000px;}
.y5f{bottom:553.245000px;}
.y9b{bottom:555.045000px;}
.yb3{bottom:557.205000px;}
.y7e{bottom:558.465000px;}
.y13d{bottom:558.825000px;}
.y15b{bottom:562.965000px;}
.y12{bottom:565.125000px;}
.y38{bottom:570.525000px;}
.y5e{bottom:571.785000px;}
.y9a{bottom:573.945000px;}
.y110{bottom:575.205000px;}
.y19a{bottom:575.385000px;}
.y7d{bottom:577.365000px;}
.y13c{bottom:577.725000px;}
.y1b4{bottom:577.905000px;}
.y11{bottom:582.405000px;}
.y15a{bottom:582.585000px;}
.y5d{bottom:587.805000px;}
.y37{bottom:589.245000px;}
.yf1{bottom:589.605000px;}
.y99{bottom:593.025000px;}
.y10f{bottom:594.105000px;}
.y7c{bottom:596.445000px;}
.y13b{bottom:596.805000px;}
.y10{bottom:599.685000px;}
.y36{bottom:606.525000px;}
.y5c{bottom:606.705000px;}
.yf0{bottom:608.325000px;}
.y98{bottom:611.970000px;}
.y10e{bottom:613.230000px;}
.y7b{bottom:615.390000px;}
.y13a{bottom:615.750000px;}
.yf{bottom:616.830000px;}
.y199{bottom:617.550000px;}
.y1b3{bottom:620.070000px;}
.y159{bottom:621.330000px;}
.y35{bottom:623.850000px;}
.yef{bottom:625.470000px;}
.y5b{bottom:625.830000px;}
.y97{bottom:630.870000px;}
.y10d{bottom:632.130000px;}
.ye{bottom:634.110000px;}
.y7a{bottom:634.470000px;}
.y139{bottom:634.650000px;}
.y34{bottom:641.130000px;}
.yee{bottom:642.750000px;}
.y5a{bottom:644.730000px;}
.y198{bottom:645.990000px;}
.y1b2{bottom:648.510000px;}
.y96{bottom:649.950000px;}
.y10c{bottom:651.210000px;}
.yd{bottom:651.390000px;}
.y79{bottom:653.370000px;}
.y138{bottom:653.730000px;}
.y33{bottom:658.230000px;}
.yed{bottom:660.030000px;}
.y59{bottom:663.810000px;}
.yc{bottom:668.670000px;}
.y137{bottom:669.930000px;}
.y10b{bottom:670.110000px;}
.y78{bottom:672.270000px;}
.y196{bottom:674.250000px;}
.y32{bottom:675.510000px;}
.y1b1{bottom:676.770000px;}
.yec{bottom:677.310000px;}
.y58{bottom:682.710000px;}
.yb{bottom:685.950000px;}
.y136{bottom:687.930000px;}
.y10a{bottom:689.190000px;}
.y77{bottom:691.350000px;}
.y31{bottom:692.790000px;}
.yeb{bottom:694.590000px;}
.y155{bottom:698.730000px;}
.y57{bottom:701.610000px;}
.y18a{bottom:702.690000px;}
.ya{bottom:703.230000px;}
.y1af{bottom:705.210000px;}
.y135{bottom:705.930000px;}
.y109{bottom:708.090000px;}
.y30{bottom:710.250000px;}
.yea{bottom:711.690000px;}
.y56{bottom:720.330000px;}
.y9{bottom:720.870000px;}
.y134{bottom:723.930000px;}
.y108{bottom:726.990000px;}
.y2f{bottom:729.330000px;}
.y55{bottom:737.610000px;}
.y8{bottom:741.570000px;}
.y130{bottom:741.930000px;}
.y107{bottom:746.070000px;}
.y2e{bottom:748.230000px;}
.y54{bottom:754.890000px;}
.y7{bottom:762.270000px;}
.y106{bottom:764.970000px;}
.y1ae{bottom:766.950000px;}
.y2d{bottom:767.310000px;}
.y53{bottom:772.170000px;}
.y5{bottom:782.970000px;}
.y105{bottom:785.130000px;}
.y2c{bottom:786.210000px;}
.y1ad{bottom:786.750000px;}
.y6{bottom:788.910000px;}
.y52{bottom:789.450000px;}
.y4{bottom:803.700000px;}
.y104{bottom:804.060000px;}
.y2b{bottom:805.140000px;}
.y12f{bottom:806.580000px;}
.y51{bottom:806.760000px;}
.h21{height:13.716000px;}
.h1d{height:13.860000px;}
.h12{height:17.280000px;}
.h16{height:18.900000px;}
.h19{height:27.540000px;}
.h1c{height:27.720000px;}
.hc{height:34.874297px;}
.h14{height:37.980000px;}
.h15{height:38.016000px;}
.h1b{height:41.400000px;}
.h1a{height:41.436000px;}
.h18{height:43.269961px;}
.h5{height:43.905937px;}
.h8{height:44.090508px;}
.h7{height:45.549492px;}
.h3{height:46.251562px;}
.hd{height:48.436523px;}
.hf{height:48.871406px;}
.hb{height:50.273438px;}
.h11{height:51.660000px;}
.h2{height:53.603086px;}
.h10{height:54.390938px;}
.h1e{height:55.080000px;}
.h1f{height:55.116000px;}
.h20{height:55.260000px;}
.h13{height:57.060000px;}
.ha{height:59.415469px;}
.h9{height:60.288750px;}
.he{height:61.217578px;}
.h6{height:64.582031px;}
.h4{height:65.531250px;}
.h17{height:82.800000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.wc{width:50.760000px;}
.w12{width:57.996000px;}
.wa{width:60.840000px;}
.wb{width:60.876000px;}
.w10{width:62.136000px;}
.w13{width:64.800000px;}
.wf{width:68.940000px;}
.wd{width:70.920000px;}
.w9{width:71.136000px;}
.w11{width:85.860000px;}
.w8{width:88.956000px;}
.we{width:92.916000px;}
.w4{width:95.940000px;}
.w6{width:102.060000px;}
.w7{width:363.525000px;}
.w5{width:369.645000px;}
.w1{width:629.250000px;}
.w3{width:629.279981px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x17{left:7.740000px;}
.x23{left:9.180000px;}
.x20{left:10.440000px;}
.x2a{left:12.780000px;}
.x1f{left:14.034000px;}
.x2f{left:15.300000px;}
.x2c{left:17.145000px;}
.x30{left:18.765000px;}
.x35{left:19.980000px;}
.x28{left:22.320000px;}
.x26{left:24.120000px;}
.x25{left:25.380000px;}
.x2e{left:27.000000px;}
.x1d{left:30.816000px;}
.x21{left:32.394000px;}
.x1c{left:49.500000px;}
.x33{left:65.700000px;}
.x2{left:80.855991px;}
.xc{left:86.255991px;}
.x14{left:96.335991px;}
.x10{left:97.955991px;}
.xe{left:102.095991px;}
.x1a{left:106.415991px;}
.x1b{left:107.675991px;}
.x13{left:112.895991px;}
.x3{left:114.155991px;}
.x11{left:120.455991px;}
.x9{left:123.335991px;}
.x12{left:134.855991px;}
.x1e{left:139.176000px;}
.xd{left:144.755991px;}
.xf{left:150.329991px;}
.x34{left:159.330000px;}
.xa{left:165.989991px;}
.x16{left:167.249991px;}
.x15{left:177.329991px;}
.x18{left:184.350000px;}
.x19{left:188.849991px;}
.x22{left:211.035000px;}
.x36{left:220.935000px;}
.x32{left:230.114991px;}
.x4{left:238.934991px;}
.x8{left:263.234991px;}
.x24{left:272.595000px;}
.x37{left:290.595000px;}
.xb{left:296.894991px;}
.x1{left:302.294991px;}
.x7{left:314.714991px;}
.x27{left:334.185000px;}
.x38{left:353.445000px;}
.x5{left:384.044981px;}
.x29{left:385.845000px;}
.x6{left:390.704991px;}
.x39{left:440.025000px;}
.x2b{left:457.485000px;}
.x3a{left:498.930000px;}
.x2d{left:519.090000px;}
.x31{left:548.789991px;}
@media print{
.v2{vertical-align:-67.200000pt;}
.v3{vertical-align:-62.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-1.008000pt;}
.ls8{letter-spacing:-0.736000pt;}
.ls26{letter-spacing:-0.688000pt;}
.ls1a{letter-spacing:-0.368533pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls22{letter-spacing:-0.230933pt;}
.ls27{letter-spacing:-0.161067pt;}
.ls29{letter-spacing:-0.158933pt;}
.ls7{letter-spacing:-0.135467pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:-0.094933pt;}
.ls23{letter-spacing:-0.089067pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.009387pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls28{letter-spacing:0.080533pt;}
.ls0{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.233067pt;}
.lse{letter-spacing:0.271467pt;}
.ls1e{letter-spacing:0.544000pt;}
.ls24{letter-spacing:0.545280pt;}
.ls1f{letter-spacing:0.592000pt;}
.ls25{letter-spacing:0.592640pt;}
.ls21{letter-spacing:0.871040pt;}
.ls17{letter-spacing:1.551360pt;}
.ls20{letter-spacing:2.032640pt;}
.ls12{letter-spacing:4.111360pt;}
.ls16{letter-spacing:4.751360pt;}
.ls15{letter-spacing:7.311360pt;}
.lsb{letter-spacing:9.871360pt;}
.ls11{letter-spacing:10.511360pt;}
.lsf{letter-spacing:26.511360pt;}
.ls18{letter-spacing:27.151360pt;}
.ls5{letter-spacing:30.970027pt;}
.ls1d{letter-spacing:31.952640pt;}
.ls13{letter-spacing:43.151360pt;}
.lsd{letter-spacing:52.751360pt;}
.ls1b{letter-spacing:53.391360pt;}
.wsb{word-spacing:-58.880000pt;}
.ws1{word-spacing:-17.792000pt;}
.wse{word-spacing:-16.601707pt;}
.wsc{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.271573pt;}
.ws8{word-spacing:-16.233173pt;}
.ws5{word-spacing:-16.097173pt;}
.ws9{word-spacing:-15.632640pt;}
.ws10{word-spacing:-15.311360pt;}
.ws3{word-spacing:-14.767360pt;}
.ws7{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.678293pt;}
.ws0{word-spacing:-14.672427pt;}
.ws11{word-spacing:-14.536427pt;}
.ws2{word-spacing:-14.055680pt;}
.ws13{word-spacing:-14.031360pt;}
.wsf{word-spacing:-11.920640pt;}
.ws14{word-spacing:-11.759573pt;}
.wsd{word-spacing:-10.319360pt;}
.wsa{word-spacing:-9.039360pt;}
.ws6{word-spacing:0.000000pt;}
._1d{margin-left:-5.539200pt;}
._e{margin-left:-4.476160pt;}
._c{margin-left:-3.080960pt;}
._b{margin-left:-2.071680pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.141333pt;}
._2{width:2.338773pt;}
._8{width:3.269973pt;}
._5{width:4.167680pt;}
._10{width:5.652480pt;}
._9{width:6.799360pt;}
._a{width:8.153387pt;}
._1b{width:9.767040pt;}
._16{width:10.680960pt;}
._3{width:11.845760pt;}
._4{width:12.829227pt;}
._15{width:13.811200pt;}
._13{width:15.262720pt;}
._24{width:16.199893pt;}
._f{width:17.521280pt;}
._22{width:18.431787pt;}
._25{width:19.665280pt;}
._11{width:20.876160pt;}
._12{width:21.833813pt;}
._18{width:23.257600pt;}
._19{width:24.353280pt;}
._6{width:26.081920pt;}
._7{width:27.358293pt;}
._1c{width:29.009493pt;}
._d{width:30.698240pt;}
._17{width:32.501760pt;}
._1e{width:33.420800pt;}
._2d{width:35.431040pt;}
._14{width:36.865280pt;}
._20{width:37.918720pt;}
._21{width:38.855893pt;}
._46{width:40.067200pt;}
._23{width:41.039360pt;}
._26{width:42.581333pt;}
._44{width:45.310720pt;}
._43{width:46.967467pt;}
._2c{width:49.105920pt;}
._1f{width:52.546560pt;}
._2b{width:55.052800pt;}
._27{width:57.203200pt;}
._3e{width:59.069440pt;}
._28{width:63.608320pt;}
._29{width:64.627200pt;}
._1a{width:65.827840pt;}
._42{width:74.562560pt;}
._41{width:75.758507pt;}
._35{width:95.403520pt;}
._33{width:115.057920pt;}
._32{width:116.465067pt;}
._3b{width:124.353920pt;}
._40{width:132.299307pt;}
._3f{width:133.300693pt;}
._2e{width:158.008747pt;}
._2a{width:169.210027pt;}
._38{width:182.152960pt;}
._39{width:183.074347pt;}
._37{width:197.572907pt;}
._34{width:212.265813pt;}
._4a{width:222.366080pt;}
._49{width:223.499520pt;}
._3d{width:228.613333pt;}
._31{width:230.249387pt;}
._30{width:231.550080pt;}
._3a{width:291.592960pt;}
._47{width:341.889493pt;}
._2f{width:404.603093pt;}
._3c{width:431.112960pt;}
._48{width:532.980267pt;}
._45{width:547.932800pt;}
._36{width:1188.028800pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y195{bottom:2.240000pt;}
.y1a2{bottom:2.266667pt;}
.y133{bottom:2.880000pt;}
.y3{bottom:3.040000pt;}
.y157{bottom:3.200000pt;}
.y193{bottom:8.320000pt;}
.y19d{bottom:8.480000pt;}
.y158{bottom:11.520000pt;}
.y1ab{bottom:14.394667pt;}
.y18f{bottom:14.400000pt;}
.y197{bottom:14.560000pt;}
.y1a1{bottom:14.586667pt;}
.y132{bottom:18.240000pt;}
.y2{bottom:20.000000pt;}
.y192{bottom:20.640000pt;}
.y1aa{bottom:26.714667pt;}
.y18e{bottom:26.720000pt;}
.y1a0{bottom:26.746667pt;}
.y1b5{bottom:26.880000pt;}
.y1bf{bottom:26.920000pt;}
.y18b{bottom:32.800000pt;}
.y1b0{bottom:32.960000pt;}
.y131{bottom:33.600000pt;}
.y1{bottom:36.480000pt;}
.y156{bottom:36.960000pt;}
.y18d{bottom:39.040000pt;}
.y191{bottom:45.120000pt;}
.y18c{bottom:51.200000pt;}
.y190{bottom:57.440000pt;}
.y194{bottom:63.520000pt;}
.y2a{bottom:97.312000pt;}
.y1ac{bottom:98.592000pt;}
.y103{bottom:100.352000pt;}
.yb2{bottom:100.512000pt;}
.ye1{bottom:101.952000pt;}
.y189{bottom:103.712000pt;}
.y76{bottom:103.872000pt;}
.y12e{bottom:106.432000pt;}
.y154{bottom:106.752000pt;}
.y95{bottom:108.512000pt;}
.yc9{bottom:111.552000pt;}
.y29{bottom:112.512000pt;}
.y171{bottom:114.112000pt;}
.y177{bottom:115.872000pt;}
.y102{bottom:117.152000pt;}
.yb1{bottom:117.312000pt;}
.ye0{bottom:118.912000pt;}
.y50{bottom:119.232000pt;}
.ye9{bottom:120.512000pt;}
.y75{bottom:120.672000pt;}
.y12d{bottom:123.392000pt;}
.y153{bottom:123.552000pt;}
.y1a9{bottom:123.872000pt;}
.y1c1{bottom:124.512000pt;}
.y94{bottom:125.312000pt;}
.y28{bottom:127.872000pt;}
.yc8{bottom:128.352000pt;}
.y125{bottom:129.152000pt;}
.y170{bottom:131.072000pt;}
.y176{bottom:131.232000pt;}
.y27{bottom:131.872000pt;}
.yb0{bottom:134.106667pt;}
.y188{bottom:134.266667pt;}
.ydf{bottom:135.706667pt;}
.ye8{bottom:135.866667pt;}
.y4f{bottom:136.026667pt;}
.y74{bottom:137.626667pt;}
.y1c0{bottom:137.786667pt;}
.y12c{bottom:140.186667pt;}
.y152{bottom:140.506667pt;}
.y93{bottom:142.106667pt;}
.y26{bottom:143.866667pt;}
.yc7{bottom:145.146667pt;}
.y124{bottom:145.946667pt;}
.y175{bottom:146.586667pt;}
.y16f{bottom:147.866667pt;}
.y187{bottom:149.626667pt;}
.y101{bottom:150.906667pt;}
.ye7{bottom:151.226667pt;}
.yde{bottom:152.506667pt;}
.y4e{bottom:152.986667pt;}
.y73{bottom:154.426667pt;}
.y12b{bottom:157.146667pt;}
.y151{bottom:157.306667pt;}
.y92{bottom:159.066667pt;}
.y1a8{bottom:161.306667pt;}
.yc6{bottom:161.946667pt;}
.y123{bottom:162.906667pt;}
.y16e{bottom:164.826667pt;}
.y186{bottom:164.986667pt;}
.ye6{bottom:166.426667pt;}
.y100{bottom:167.866667pt;}
.y25{bottom:168.826667pt;}
.ydd{bottom:169.466667pt;}
.y4d{bottom:169.786667pt;}
.y72{bottom:171.386667pt;}
.y12a{bottom:173.946667pt;}
.y150{bottom:174.266667pt;}
.yaf{bottom:175.386667pt;}
.y91{bottom:175.866667pt;}
.y174{bottom:177.146667pt;}
.y122{bottom:179.706667pt;}
.yc5{bottom:179.866667pt;}
.y185{bottom:180.346667pt;}
.y16d{bottom:181.626667pt;}
.ye5{bottom:181.786667pt;}
.yff{bottom:184.666667pt;}
.y24{bottom:185.626667pt;}
.ydc{bottom:186.266667pt;}
.y4c{bottom:186.586667pt;}
.y1be{bottom:188.026667pt;}
.y71{bottom:188.186667pt;}
.yae{bottom:189.786667pt;}
.y129{bottom:190.746667pt;}
.y14f{bottom:191.066667pt;}
.y173{bottom:192.506667pt;}
.y90{bottom:192.826667pt;}
.y184{bottom:195.546667pt;}
.y121{bottom:196.666667pt;}
.ye4{bottom:197.146667pt;}
.yc4{bottom:197.786667pt;}
.y16c{bottom:198.586667pt;}
.yfe{bottom:201.466667pt;}
.y23{bottom:202.586667pt;}
.ydb{bottom:203.226667pt;}
.y4b{bottom:203.546667pt;}
.y70{bottom:204.986667pt;}
.yad{bottom:206.626667pt;}
.y128{bottom:207.586667pt;}
.y172{bottom:208.386667pt;}
.y14e{bottom:208.866667pt;}
.y8f{bottom:209.666667pt;}
.y183{bottom:210.946667pt;}
.y1a7{bottom:211.106667pt;}
.ye3{bottom:212.546667pt;}
.y120{bottom:213.506667pt;}
.yc3{bottom:214.626667pt;}
.y16b{bottom:215.426667pt;}
.yfd{bottom:218.466667pt;}
.y22{bottom:219.426667pt;}
.yda{bottom:220.066667pt;}
.y4a{bottom:220.386667pt;}
.y6f{bottom:221.986667pt;}
.yac{bottom:223.426667pt;}
.y127{bottom:225.506667pt;}
.y1bd{bottom:225.666667pt;}
.y182{bottom:226.306667pt;}
.y8e{bottom:226.626667pt;}
.y14d{bottom:226.786667pt;}
.ye2{bottom:227.906667pt;}
.y11f{bottom:230.146667pt;}
.y16a{bottom:232.226667pt;}
.yc2{bottom:232.546667pt;}
.yfc{bottom:235.266667pt;}
.y21{bottom:236.226667pt;}
.yd9{bottom:237.026667pt;}
.y49{bottom:237.346667pt;}
.y6e{bottom:238.786667pt;}
.yab{bottom:240.386667pt;}
.y181{bottom:241.666667pt;}
.y126{bottom:242.306667pt;}
.y8d{bottom:243.426667pt;}
.y14c{bottom:243.746667pt;}
.y11e{bottom:245.506667pt;}
.y1a6{bottom:248.546667pt;}
.y169{bottom:249.186667pt;}
.yc1{bottom:249.346667pt;}
.yfb{bottom:252.226667pt;}
.y20{bottom:253.186667pt;}
.yd8{bottom:253.826667pt;}
.y48{bottom:254.146667pt;}
.y6d{bottom:255.746667pt;}
.y180{bottom:257.026667pt;}
.yaa{bottom:257.186667pt;}
.y8c{bottom:260.226667pt;}
.y14b{bottom:260.546667pt;}
.y11d{bottom:260.866667pt;}
.y1bc{bottom:263.106667pt;}
.y168{bottom:265.986667pt;}
.yc0{bottom:267.266667pt;}
.yfa{bottom:269.026667pt;}
.y1f{bottom:269.986667pt;}
.yd7{bottom:270.466667pt;}
.y47{bottom:270.946667pt;}
.y17f{bottom:272.386667pt;}
.y6c{bottom:272.546667pt;}
.ya9{bottom:274.146667pt;}
.y11c{bottom:276.066667pt;}
.y8b{bottom:277.186667pt;}
.y14a{bottom:277.346667pt;}
.y167{bottom:282.946667pt;}
.ybf{bottom:285.186667pt;}
.yd6{bottom:285.826667pt;}
.y1e{bottom:286.946667pt;}
.y17e{bottom:287.586667pt;}
.y46{bottom:287.906667pt;}
.y6b{bottom:289.346667pt;}
.ya8{bottom:290.946667pt;}
.y11b{bottom:291.426667pt;}
.y8a{bottom:293.986667pt;}
.y149{bottom:294.306667pt;}
.y1a5{bottom:298.306667pt;}
.y166{bottom:299.746667pt;}
.y1bb{bottom:300.546667pt;}
.yd5{bottom:301.186667pt;}
.ybe{bottom:301.986667pt;}
.y17d{bottom:302.946667pt;}
.y1d{bottom:303.746667pt;}
.y45{bottom:304.706667pt;}
.y6a{bottom:306.306667pt;}
.y11a{bottom:306.786667pt;}
.ya7{bottom:307.746667pt;}
.y89{bottom:310.946667pt;}
.y148{bottom:311.106667pt;}
.yd4{bottom:316.386667pt;}
.y165{bottom:316.546667pt;}
.y17c{bottom:318.306667pt;}
.ybd{bottom:319.746667pt;}
.y1c{bottom:320.546667pt;}
.y44{bottom:321.666667pt;}
.y119{bottom:322.146667pt;}
.y69{bottom:323.106667pt;}
.ya6{bottom:324.706667pt;}
.y88{bottom:327.746667pt;}
.y147{bottom:328.066667pt;}
.yd3{bottom:331.746667pt;}
.y164{bottom:333.506667pt;}
.y17b{bottom:333.666667pt;}
.y1a4{bottom:335.746667pt;}
.y1b{bottom:337.506667pt;}
.ybc{bottom:337.666667pt;}
.y1ba{bottom:337.986667pt;}
.y43{bottom:338.306667pt;}
.y68{bottom:340.066667pt;}
.ya5{bottom:341.026667pt;}
.y87{bottom:344.546667pt;}
.y146{bottom:344.866667pt;}
.yd2{bottom:347.106667pt;}
.y17a{bottom:349.026667pt;}
.y163{bottom:350.306667pt;}
.y42{bottom:353.506667pt;}
.y1a{bottom:354.306667pt;}
.ybb{bottom:354.466667pt;}
.y118{bottom:354.626667pt;}
.ya4{bottom:355.106667pt;}
.y67{bottom:356.866667pt;}
.y1a3{bottom:360.866667pt;}
.y86{bottom:361.506667pt;}
.y145{bottom:361.666667pt;}
.yd1{bottom:362.466667pt;}
.y1b9{bottom:363.266667pt;}
.y179{bottom:364.386667pt;}
.y162{bottom:367.266667pt;}
.y41{bottom:368.866667pt;}
.ya3{bottom:370.466667pt;}
.yf9{bottom:371.106667pt;}
.y117{bottom:371.426667pt;}
.yba{bottom:372.386667pt;}
.y66{bottom:373.666667pt;}
.y19f{bottom:373.826667pt;}
.y1b8{bottom:376.093333pt;}
.yd0{bottom:377.853333pt;}
.y85{bottom:378.333333pt;}
.y144{bottom:378.653333pt;}
.y178{bottom:379.613333pt;}
.y161{bottom:384.093333pt;}
.y40{bottom:384.253333pt;}
.ya2{bottom:385.853333pt;}
.y116{bottom:388.253333pt;}
.yf8{bottom:389.053333pt;}
.yb9{bottom:390.333333pt;}
.y65{bottom:390.653333pt;}
.ycf{bottom:393.213333pt;}
.y19{bottom:394.973333pt;}
.y84{bottom:395.293333pt;}
.y143{bottom:395.453333pt;}
.y3f{bottom:399.613333pt;}
.y160{bottom:400.893333pt;}
.ya1{bottom:401.213333pt;}
.yf7{bottom:406.013333pt;}
.y115{bottom:406.173333pt;}
.yb8{bottom:407.133333pt;}
.y64{bottom:407.453333pt;}
.yce{bottom:408.413333pt;}
.y18{bottom:410.333333pt;}
.y19e{bottom:411.293333pt;}
.y83{bottom:412.093333pt;}
.y142{bottom:412.413333pt;}
.y1b7{bottom:413.693333pt;}
.y3e{bottom:414.973333pt;}
.ya0{bottom:416.413333pt;}
.y15f{bottom:417.853333pt;}
.yf6{bottom:422.813333pt;}
.ycd{bottom:423.773333pt;}
.y114{bottom:423.933333pt;}
.y63{bottom:424.413333pt;}
.yb7{bottom:424.893333pt;}
.y17{bottom:425.693333pt;}
.y82{bottom:428.893333pt;}
.y141{bottom:429.213333pt;}
.y3d{bottom:430.333333pt;}
.y9f{bottom:431.773333pt;}
.y15e{bottom:434.653333pt;}
.ycc{bottom:439.133333pt;}
.yf5{bottom:439.613333pt;}
.y16{bottom:441.053333pt;}
.y62{bottom:441.213333pt;}
.y113{bottom:441.853333pt;}
.yb6{bottom:442.813333pt;}
.y3c{bottom:445.533333pt;}
.y81{bottom:445.853333pt;}
.y140{bottom:446.013333pt;}
.y9e{bottom:447.133333pt;}
.y19c{bottom:448.733333pt;}
.y1b6{bottom:451.133333pt;}
.y15d{bottom:451.613333pt;}
.ycb{bottom:454.653333pt;}
.y15{bottom:456.253333pt;}
.yf4{bottom:456.573333pt;}
.y61{bottom:458.013333pt;}
.y112{bottom:458.653333pt;}
.yb5{bottom:459.613333pt;}
.y3b{bottom:460.893333pt;}
.y9d{bottom:462.493333pt;}
.y80{bottom:462.653333pt;}
.y13f{bottom:462.973333pt;}
.y15c{bottom:466.013333pt;}
.y14{bottom:471.613333pt;}
.yf3{bottom:473.373333pt;}
.y19b{bottom:474.013333pt;}
.y60{bottom:474.973333pt;}
.y3a{bottom:476.253333pt;}
.y111{bottom:476.573333pt;}
.yb4{bottom:477.533333pt;}
.y9c{bottom:477.853333pt;}
.y7f{bottom:479.613333pt;}
.y13e{bottom:479.773333pt;}
.y13{bottom:486.973333pt;}
.yca{bottom:488.413333pt;}
.yf2{bottom:490.333333pt;}
.y39{bottom:491.613333pt;}
.y5f{bottom:491.773333pt;}
.y9b{bottom:493.373333pt;}
.yb3{bottom:495.293333pt;}
.y7e{bottom:496.413333pt;}
.y13d{bottom:496.733333pt;}
.y15b{bottom:500.413333pt;}
.y12{bottom:502.333333pt;}
.y38{bottom:507.133333pt;}
.y5e{bottom:508.253333pt;}
.y9a{bottom:510.173333pt;}
.y110{bottom:511.293333pt;}
.y19a{bottom:511.453333pt;}
.y7d{bottom:513.213333pt;}
.y13c{bottom:513.533333pt;}
.y1b4{bottom:513.693333pt;}
.y11{bottom:517.693333pt;}
.y15a{bottom:517.853333pt;}
.y5d{bottom:522.493333pt;}
.y37{bottom:523.773333pt;}
.yf1{bottom:524.093333pt;}
.y99{bottom:527.133333pt;}
.y10f{bottom:528.093333pt;}
.y7c{bottom:530.173333pt;}
.y13b{bottom:530.493333pt;}
.y10{bottom:533.053333pt;}
.y36{bottom:539.133333pt;}
.y5c{bottom:539.293333pt;}
.yf0{bottom:540.733333pt;}
.y98{bottom:543.973333pt;}
.y10e{bottom:545.093333pt;}
.y7b{bottom:547.013333pt;}
.y13a{bottom:547.333333pt;}
.yf{bottom:548.293333pt;}
.y199{bottom:548.933333pt;}
.y1b3{bottom:551.173333pt;}
.y159{bottom:552.293333pt;}
.y35{bottom:554.533333pt;}
.yef{bottom:555.973333pt;}
.y5b{bottom:556.293333pt;}
.y97{bottom:560.773333pt;}
.y10d{bottom:561.893333pt;}
.ye{bottom:563.653333pt;}
.y7a{bottom:563.973333pt;}
.y139{bottom:564.133333pt;}
.y34{bottom:569.893333pt;}
.yee{bottom:571.333333pt;}
.y5a{bottom:573.093333pt;}
.y198{bottom:574.213333pt;}
.y1b2{bottom:576.453333pt;}
.y96{bottom:577.733333pt;}
.y10c{bottom:578.853333pt;}
.yd{bottom:579.013333pt;}
.y79{bottom:580.773333pt;}
.y138{bottom:581.093333pt;}
.y33{bottom:585.093333pt;}
.yed{bottom:586.693333pt;}
.y59{bottom:590.053333pt;}
.yc{bottom:594.373333pt;}
.y137{bottom:595.493333pt;}
.y10b{bottom:595.653333pt;}
.y78{bottom:597.573333pt;}
.y196{bottom:599.333333pt;}
.y32{bottom:600.453333pt;}
.y1b1{bottom:601.573333pt;}
.yec{bottom:602.053333pt;}
.y58{bottom:606.853333pt;}
.yb{bottom:609.733333pt;}
.y136{bottom:611.493333pt;}
.y10a{bottom:612.613333pt;}
.y77{bottom:614.533333pt;}
.y31{bottom:615.813333pt;}
.yeb{bottom:617.413333pt;}
.y155{bottom:621.093333pt;}
.y57{bottom:623.653333pt;}
.y18a{bottom:624.613333pt;}
.ya{bottom:625.093333pt;}
.y1af{bottom:626.853333pt;}
.y135{bottom:627.493333pt;}
.y109{bottom:629.413333pt;}
.y30{bottom:631.333333pt;}
.yea{bottom:632.613333pt;}
.y56{bottom:640.293333pt;}
.y9{bottom:640.773333pt;}
.y134{bottom:643.493333pt;}
.y108{bottom:646.213333pt;}
.y2f{bottom:648.293333pt;}
.y55{bottom:655.653333pt;}
.y8{bottom:659.173333pt;}
.y130{bottom:659.493333pt;}
.y107{bottom:663.173333pt;}
.y2e{bottom:665.093333pt;}
.y54{bottom:671.013333pt;}
.y7{bottom:677.573333pt;}
.y106{bottom:679.973333pt;}
.y1ae{bottom:681.733333pt;}
.y2d{bottom:682.053333pt;}
.y53{bottom:686.373333pt;}
.y5{bottom:695.973333pt;}
.y105{bottom:697.893333pt;}
.y2c{bottom:698.853333pt;}
.y1ad{bottom:699.333333pt;}
.y6{bottom:701.253333pt;}
.y52{bottom:701.733333pt;}
.y4{bottom:714.400000pt;}
.y104{bottom:714.720000pt;}
.y2b{bottom:715.680000pt;}
.y12f{bottom:716.960000pt;}
.y51{bottom:717.120000pt;}
.h21{height:12.192000pt;}
.h1d{height:12.320000pt;}
.h12{height:15.360000pt;}
.h16{height:16.800000pt;}
.h19{height:24.480000pt;}
.h1c{height:24.640000pt;}
.hc{height:30.999375pt;}
.h14{height:33.760000pt;}
.h15{height:33.792000pt;}
.h1b{height:36.800000pt;}
.h1a{height:36.832000pt;}
.h18{height:38.462187pt;}
.h5{height:39.027500pt;}
.h8{height:39.191562pt;}
.h7{height:40.488438pt;}
.h3{height:41.112500pt;}
.hd{height:43.054688pt;}
.hf{height:43.441250pt;}
.hb{height:44.687500pt;}
.h11{height:45.920000pt;}
.h2{height:47.647188pt;}
.h10{height:48.347500pt;}
.h1e{height:48.960000pt;}
.h1f{height:48.992000pt;}
.h20{height:49.120000pt;}
.h13{height:50.720000pt;}
.ha{height:52.813750pt;}
.h9{height:53.590000pt;}
.he{height:54.415625pt;}
.h6{height:57.406250pt;}
.h4{height:58.250000pt;}
.h17{height:73.600000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.wc{width:45.120000pt;}
.w12{width:51.552000pt;}
.wa{width:54.080000pt;}
.wb{width:54.112000pt;}
.w10{width:55.232000pt;}
.w13{width:57.600000pt;}
.wf{width:61.280000pt;}
.wd{width:63.040000pt;}
.w9{width:63.232000pt;}
.w11{width:76.320000pt;}
.w8{width:79.072000pt;}
.we{width:82.592000pt;}
.w4{width:85.280000pt;}
.w6{width:90.720000pt;}
.w7{width:323.133333pt;}
.w5{width:328.573333pt;}
.w1{width:559.333333pt;}
.w3{width:559.359983pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x17{left:6.880000pt;}
.x23{left:8.160000pt;}
.x20{left:9.280000pt;}
.x2a{left:11.360000pt;}
.x1f{left:12.474667pt;}
.x2f{left:13.600000pt;}
.x2c{left:15.240000pt;}
.x30{left:16.680000pt;}
.x35{left:17.760000pt;}
.x28{left:19.840000pt;}
.x26{left:21.440000pt;}
.x25{left:22.560000pt;}
.x2e{left:24.000000pt;}
.x1d{left:27.392000pt;}
.x21{left:28.794667pt;}
.x1c{left:44.000000pt;}
.x33{left:58.400000pt;}
.x2{left:71.871992pt;}
.xc{left:76.671992pt;}
.x14{left:85.631992pt;}
.x10{left:87.071992pt;}
.xe{left:90.751992pt;}
.x1a{left:94.591992pt;}
.x1b{left:95.711992pt;}
.x13{left:100.351992pt;}
.x3{left:101.471992pt;}
.x11{left:107.071992pt;}
.x9{left:109.631992pt;}
.x12{left:119.871992pt;}
.x1e{left:123.712000pt;}
.xd{left:128.671992pt;}
.xf{left:133.626658pt;}
.x34{left:141.626667pt;}
.xa{left:147.546658pt;}
.x16{left:148.666658pt;}
.x15{left:157.626658pt;}
.x18{left:163.866667pt;}
.x19{left:167.866658pt;}
.x22{left:187.586667pt;}
.x36{left:196.386667pt;}
.x32{left:204.546658pt;}
.x4{left:212.386658pt;}
.x8{left:233.986658pt;}
.x24{left:242.306667pt;}
.x37{left:258.306667pt;}
.xb{left:263.906658pt;}
.x1{left:268.706658pt;}
.x7{left:279.746658pt;}
.x27{left:297.053333pt;}
.x38{left:314.173333pt;}
.x5{left:341.373317pt;}
.x29{left:342.973333pt;}
.x6{left:347.293325pt;}
.x39{left:391.133333pt;}
.x2b{left:406.653333pt;}
.x3a{left:443.493333pt;}
.x2d{left:461.413333pt;}
.x31{left:487.813325pt;}
}




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