
    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_1a34094022ca17722872be98.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d26d09bdeee6dd9a22e5b988.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_13383eec0ed3e80171c3c6a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_919e5c6b128d9d6d476bc9c1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_561cb2ff5021fa7f7293bd69.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115234;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_9e99ceed841a0fdb15313a78.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_14d289b59db16bb77e1a10d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_80acb68c13974cf9bbb114ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6ab2f6d8dc162f8b501233c6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104492;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_2bee13a20f4f63f0579f61e6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.111816;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_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.853027;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);}
.v2{vertical-align:-72.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.000000px;}
.ls10{letter-spacing:-1.500000px;}
.ls20{letter-spacing:-0.888000px;}
.ls19{letter-spacing:-0.696000px;}
.lsf{letter-spacing:-0.522000px;}
.ls1c{letter-spacing:-0.468000px;}
.ls1f{letter-spacing:-0.444000px;}
.ls17{letter-spacing:-0.348000px;}
.ls7{letter-spacing:-0.336000px;}
.ls8{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.096000px;}
.lsb{letter-spacing:-0.024000px;}
.lsa{letter-spacing:-0.018000px;}
.lsc{letter-spacing:-0.012000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.006000px;}
.ls3{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.018000px;}
.ls21{letter-spacing:0.084000px;}
.ls18{letter-spacing:0.174000px;}
.ls1a{letter-spacing:0.258000px;}
.ls1{letter-spacing:0.312000px;}
.ls14{letter-spacing:0.348000px;}
.ls11{letter-spacing:0.522000px;}
.ls1e{letter-spacing:0.612000px;}
.ls12{letter-spacing:0.672000px;}
.lsd{letter-spacing:0.804000px;}
.ls0{letter-spacing:1.152000px;}
.ls4{letter-spacing:1.488000px;}
.ls1b{letter-spacing:1.584000px;}
.lse{letter-spacing:7.152000px;}
.ls13{letter-spacing:8.652000px;}
.ls16{letter-spacing:8.832000px;}
.ls15{letter-spacing:16.152000px;}
.ls1d{letter-spacing:355.830000px;}
.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;}
}
.ws8{word-spacing:-53.988000px;}
.wsd{word-spacing:-19.152000px;}
.wse{word-spacing:-18.870000px;}
.wsf{word-spacing:-18.696000px;}
.ws10{word-spacing:-18.522000px;}
.wsb{word-spacing:-18.348000px;}
.wsc{word-spacing:-16.848000px;}
.ws9{word-spacing:-15.030000px;}
.ws6{word-spacing:-15.024000px;}
.ws2{word-spacing:-15.012000px;}
.ws3{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.988000px;}
.ws5{word-spacing:-13.656000px;}
.ws4{word-spacing:-13.344000px;}
.ws11{word-spacing:-12.570000px;}
.ws12{word-spacing:-11.844000px;}
.ws14{word-spacing:-11.556000px;}
.ws15{word-spacing:-11.028000px;}
.ws16{word-spacing:-10.944000px;}
.ws0{word-spacing:-10.632000px;}
.ws1{word-spacing:-10.512000px;}
.ws13{word-spacing:-10.500000px;}
.wsa{word-spacing:0.000000px;}
._23{margin-left:-3.318000px;}
._2{margin-left:-2.076000px;}
._1{margin-left:-1.008000px;}
._0{width:1.404000px;}
._6{width:2.592000px;}
._7{width:3.750000px;}
._9{width:5.430000px;}
._11{width:6.462000px;}
._b{width:7.506000px;}
._a{width:9.018000px;}
._c{width:10.422000px;}
._1c{width:11.490000px;}
._3{width:12.552000px;}
._d{width:13.806000px;}
._e{width:15.348000px;}
._8{width:16.416000px;}
._22{width:18.084000px;}
._4{width:19.500000px;}
._5{width:21.432000px;}
._17{width:22.566000px;}
._14{width:24.174000px;}
._15{width:25.242000px;}
._12{width:26.382000px;}
._13{width:28.164000px;}
._10{width:29.298000px;}
._19{width:30.330000px;}
._f{width:31.350000px;}
._1d{width:32.742000px;}
._18{width:33.912000px;}
._1a{width:37.152000px;}
._20{width:39.468000px;}
._24{width:40.620000px;}
._1b{width:43.092000px;}
._21{width:45.342000px;}
._16{width:72.672000px;}
._1f{width:115.410000px;}
._1e{width:126.660000px;}
.fc5{color:transparent;}
.fc4{color:rgb(32,33,34);}
.fc2{color:rgb(0,128,0);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fs5{font-size:36.000000px;}
.fs6{font-size:39.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.625000px;}
.yb{bottom:3.000000px;}
.ycb{bottom:3.045000px;}
.y2{bottom:3.375000px;}
.y9{bottom:4.125000px;}
.y7{bottom:4.500000px;}
.ye8{bottom:8.625000px;}
.yf2{bottom:9.795000px;}
.ye{bottom:10.125000px;}
.ycd{bottom:15.000000px;}
.ycf{bottom:15.375000px;}
.yca{bottom:15.420000px;}
.y10{bottom:18.375000px;}
.ye7{bottom:24.000000px;}
.yec{bottom:24.405000px;}
.yea{bottom:25.125000px;}
.yf1{bottom:25.155000px;}
.yee{bottom:25.500000px;}
.ye6{bottom:36.375000px;}
.yc2{bottom:110.662500px;}
.y3a{bottom:111.787500px;}
.y15f{bottom:116.287500px;}
.y10f{bottom:118.162500px;}
.y8c{bottom:118.912500px;}
.ye2{bottom:119.662500px;}
.y69{bottom:123.037500px;}
.y178{bottom:123.412500px;}
.y15e{bottom:130.162500px;}
.y39{bottom:130.537500px;}
.y10e{bottom:137.287500px;}
.y177{bottom:137.662500px;}
.y8b{bottom:138.037500px;}
.ye1{bottom:138.787500px;}
.y68{bottom:142.162500px;}
.yc1{bottom:150.795000px;}
.y176{bottom:151.170000px;}
.y10d{bottom:156.045000px;}
.y8a{bottom:156.795000px;}
.ye0{bottom:157.920000px;}
.y67{bottom:160.920000px;}
.y15d{bottom:164.295000px;}
.y175{bottom:164.670000px;}
.yc0{bottom:169.920000px;}
.y38{bottom:170.670000px;}
.y130{bottom:171.045000px;}
.y10c{bottom:175.200000px;}
.ya9{bottom:175.950000px;}
.ydf{bottom:176.700000px;}
.y15c{bottom:178.200000px;}
.y66{bottom:180.075000px;}
.y127{bottom:184.200000px;}
.y12f{bottom:184.575000px;}
.y37{bottom:189.825000px;}
.y10b{bottom:193.950000px;}
.ya8{bottom:195.075000px;}
.yde{bottom:195.825000px;}
.y89{bottom:196.950000px;}
.y126{bottom:197.700000px;}
.y65{bottom:198.825000px;}
.y36{bottom:208.575000px;}
.ybf{bottom:209.700000px;}
.y15b{bottom:212.700000px;}
.y10a{bottom:213.075000px;}
.ya7{bottom:213.825000px;}
.ydd{bottom:214.575000px;}
.y88{bottom:216.075000px;}
.y64{bottom:217.950000px;}
.y12e{bottom:218.700000px;}
.y15a{bottom:226.575000px;}
.y35{bottom:227.700000px;}
.ybe{bottom:228.825000px;}
.y125{bottom:231.825000px;}
.y109{bottom:232.200000px;}
.y12d{bottom:232.575000px;}
.ydc{bottom:233.700000px;}
.y87{bottom:234.825000px;}
.y63{bottom:237.075000px;}
.y159{bottom:240.075000px;}
.y124{bottom:245.700000px;}
.y34{bottom:246.450000px;}
.y174{bottom:247.200000px;}
.ybd{bottom:247.950000px;}
.y108{bottom:250.950000px;}
.ydb{bottom:252.825000px;}
.ya6{bottom:253.575000px;}
.y86{bottom:253.950000px;}
.y62{bottom:255.825000px;}
.y123{bottom:259.200000px;}
.y12c{bottom:259.950000px;}
.y173{bottom:261.075000px;}
.y33{bottom:265.575000px;}
.y107{bottom:270.075000px;}
.yda{bottom:271.575000px;}
.y85{bottom:272.700000px;}
.y122{bottom:273.450000px;}
.y158{bottom:274.200000px;}
.y172{bottom:274.575000px;}
.y61{bottom:274.950000px;}
.y32{bottom:284.700000px;}
.ybc{bottom:287.700000px;}
.y157{bottom:288.450000px;}
.y84{bottom:291.825000px;}
.y60{bottom:293.700000px;}
.y31{bottom:303.495000px;}
.ybb{bottom:306.870000px;}
.y121{bottom:307.605000px;}
.y171{bottom:309.120000px;}
.y106{bottom:309.870000px;}
.y83{bottom:310.980000px;}
.y5f{bottom:312.870000px;}
.y120{bottom:321.870000px;}
.y156{bottom:322.620000px;}
.y170{bottom:322.995000px;}
.yba{bottom:325.620000px;}
.y105{bottom:328.995000px;}
.yd9{bottom:330.855000px;}
.ya5{bottom:331.995000px;}
.y11f{bottom:335.370000px;}
.y155{bottom:336.495000px;}
.y30{bottom:343.245000px;}
.yb9{bottom:344.730000px;}
.y104{bottom:348.105000px;}
.y154{bottom:349.995000px;}
.y82{bottom:350.745000px;}
.y5e{bottom:352.620000px;}
.yb8{bottom:363.870000px;}
.y103{bottom:366.870000px;}
.y11e{bottom:369.495000px;}
.y81{bottom:369.870000px;}
.y16f{bottom:370.620000px;}
.y5d{bottom:371.730000px;}
.yd8{bottom:376.995000px;}
.yb7{bottom:382.620000px;}
.y2f{bottom:383.370000px;}
.y153{bottom:384.120000px;}
.y16e{bottom:384.495000px;}
.y102{bottom:385.995000px;}
.ya4{bottom:388.605000px;}
.y5c{bottom:390.870000px;}
.y11d{bottom:397.245000px;}
.y152{bottom:398.355000px;}
.yd7{bottom:404.370000px;}
.y101{bottom:404.745000px;}
.ya3{bottom:407.745000px;}
.y5b{bottom:409.620000px;}
.y12b{bottom:410.745000px;}
.y151{bottom:411.870000px;}
.yd6{bottom:419.745000px;}
.yb6{bottom:422.370000px;}
.y2e{bottom:422.745000px;}
.y100{bottom:423.870000px;}
.ya2{bottom:426.870000px;}
.y5a{bottom:428.745000px;}
.y11c{bottom:431.400000px;}
.yd5{bottom:434.775000px;}
.yff{bottom:443.025000px;}
.y12a{bottom:444.900000px;}
.y11b{bottom:445.275000px;}
.ya1{bottom:445.650000px;}
.y150{bottom:446.025000px;}
.y59{bottom:447.900000px;}
.yd4{bottom:450.150000px;}
.y11a{bottom:458.775000px;}
.y2d{bottom:459.525000px;}
.y14f{bottom:459.900000px;}
.yb5{bottom:462.525000px;}
.ya0{bottom:464.775000px;}
.yd3{bottom:465.525000px;}
.y58{bottom:466.650000px;}
.y14e{bottom:473.775000px;}
.y2c{bottom:474.900000px;}
.y129{bottom:479.400000px;}
.yd2{bottom:480.900000px;}
.yfe{bottom:482.775000px;}
.y9f{bottom:483.525000px;}
.y57{bottom:485.775000px;}
.y2b{bottom:490.650000px;}
.y119{bottom:492.900000px;}
.y128{bottom:493.275000px;}
.yd1{bottom:495.900000px;}
.yfd{bottom:501.900000px;}
.y9e{bottom:502.650000px;}
.y56{bottom:504.525000px;}
.y2a{bottom:506.025000px;}
.y118{bottom:507.150000px;}
.y14d{bottom:507.900000px;}
.yd0{bottom:511.275000px;}
.yfc{bottom:520.650000px;}
.y29{bottom:521.400000px;}
.yb4{bottom:521.775000px;}
.y80{bottom:523.650000px;}
.yce{bottom:526.650000px;}
.y14c{bottom:535.275000px;}
.y28{bottom:537.150000px;}
.yfb{bottom:539.775000px;}
.yb3{bottom:540.525000px;}
.ycc{bottom:542.025000px;}
.y9d{bottom:542.400000px;}
.y7f{bottom:542.775000px;}
.y55{bottom:545.025000px;}
.y14b{bottom:549.150000px;}
.y27{bottom:552.525000px;}
.yc9{bottom:557.775000px;}
.yfa{bottom:558.900000px;}
.yb2{bottom:559.650000px;}
.y7e{bottom:561.570000px;}
.y14a{bottom:562.695000px;}
.y26{bottom:567.945000px;}
.y16d{bottom:569.820000px;}
.yc8{bottom:577.320000px;}
.yf9{bottom:577.695000px;}
.yb1{bottom:578.445000px;}
.y117{bottom:580.320000px;}
.y9c{bottom:582.570000px;}
.y25{bottom:583.695000px;}
.y54{bottom:584.445000px;}
.yf8{bottom:596.820000px;}
.y16c{bottom:597.195000px;}
.yb0{bottom:597.570000px;}
.y24{bottom:599.070000px;}
.y116{bottom:599.445000px;}
.y7d{bottom:601.320000px;}
.y53{bottom:603.570000px;}
.y149{bottom:610.695000px;}
.y23{bottom:614.820000px;}
.yf7{bottom:615.570000px;}
.yaf{bottom:616.320000px;}
.y115{bottom:618.570000px;}
.y7c{bottom:620.445000px;}
.y9b{bottom:622.320000px;}
.y52{bottom:622.695000px;}
.y148{bottom:624.570000px;}
.y22{bottom:630.195000px;}
.y16b{bottom:631.320000px;}
.yae{bottom:635.445000px;}
.y114{bottom:637.320000px;}
.y7b{bottom:639.570000px;}
.y51{bottom:641.445000px;}
.y16a{bottom:645.570000px;}
.yf6{bottom:655.695000px;}
.yc7{bottom:656.445000px;}
.y7a{bottom:658.320000px;}
.y147{bottom:658.695000px;}
.y169{bottom:659.070000px;}
.y50{bottom:660.570000px;}
.y21{bottom:666.570000px;}
.y146{bottom:672.570000px;}
.yf5{bottom:674.820000px;}
.yad{bottom:675.195000px;}
.yc6{bottom:675.570000px;}
.y79{bottom:677.445000px;}
.y4f{bottom:679.320000px;}
.y145{bottom:686.070000px;}
.y168{bottom:693.225000px;}
.yf4{bottom:693.600000px;}
.yc5{bottom:694.350000px;}
.y78{bottom:696.600000px;}
.y4e{bottom:698.475000px;}
.y20{bottom:703.350000px;}
.y167{bottom:707.100000px;}
.y77{bottom:715.350000px;}
.y4d{bottom:717.600000px;}
.y144{bottom:720.225000px;}
.y166{bottom:720.600000px;}
.yf3{bottom:733.350000px;}
.yc4{bottom:734.100000px;}
.y76{bottom:734.475000px;}
.y4c{bottom:736.350000px;}
.y1f{bottom:739.725000px;}
.y75{bottom:753.225000px;}
.y1e{bottom:755.475000px;}
.y9a{bottom:757.350000px;}
.y143{bottom:768.600000px;}
.y1d{bottom:770.850000px;}
.y74{bottom:772.350000px;}
.y4b{bottom:774.225000px;}
.y99{bottom:776.475000px;}
.y142{bottom:782.475000px;}
.y1c{bottom:786.225000px;}
.yac{bottom:791.475000px;}
.y4a{bottom:793.350000px;}
.y98{bottom:795.225000px;}
.y141{bottom:795.975000px;}
.y1b{bottom:801.975000px;}
.y140{bottom:809.850000px;}
.yab{bottom:810.225000px;}
.y73{bottom:812.100000px;}
.y49{bottom:812.475000px;}
.y97{bottom:814.350000px;}
.yf0{bottom:815.475000px;}
.y1a{bottom:817.380000px;}
.yaa{bottom:829.380000px;}
.y165{bottom:830.520000px;}
.y48{bottom:831.255000px;}
.y19{bottom:833.130000px;}
.y96{bottom:833.505000px;}
.y13f{bottom:844.005000px;}
.y164{bottom:844.380000px;}
.y18{bottom:848.505000px;}
.y47{bottom:850.380000px;}
.y95{bottom:852.270000px;}
.yef{bottom:853.005000px;}
.y13e{bottom:857.880000px;}
.y17{bottom:863.880000px;}
.y46{bottom:869.145000px;}
.y113{bottom:871.005000px;}
.y94{bottom:871.380000px;}
.y16{bottom:879.630000px;}
.y13d{bottom:885.255000px;}
.y72{bottom:888.255000px;}
.yed{bottom:889.380000px;}
.y93{bottom:890.130000px;}
.y15{bottom:895.005000px;}
.y71{bottom:907.380000px;}
.y45{bottom:909.255000px;}
.y14{bottom:910.755000px;}
.y13c{bottom:919.380000px;}
.y13{bottom:926.130000px;}
.yeb{bottom:926.895000px;}
.yc3{bottom:928.005000px;}
.y92{bottom:928.380000px;}
.y112{bottom:930.255000px;}
.y13b{bottom:933.255000px;}
.y12{bottom:941.880000px;}
.y163{bottom:946.800000px;}
.y70{bottom:947.175000px;}
.y44{bottom:949.050000px;}
.y111{bottom:949.425000px;}
.y162{bottom:960.300000px;}
.ye9{bottom:963.675000px;}
.y6f{bottom:966.300000px;}
.y13a{bottom:967.425000px;}
.y43{bottom:968.175000px;}
.y11{bottom:975.300000px;}
.y139{bottom:981.300000px;}
.y6e{bottom:985.050000px;}
.y42{bottom:987.300000px;}
.yf{bottom:991.050000px;}
.y161{bottom:994.800000px;}
.y138{bottom:995.175000px;}
.ye5{bottom:1001.925000px;}
.y6d{bottom:1004.175000px;}
.y41{bottom:1006.050000px;}
.y91{bottom:1007.925000px;}
.y137{bottom:1008.675000px;}
.yd{bottom:1022.175000px;}
.y6c{bottom:1023.300000px;}
.y40{bottom:1025.175000px;}
.y90{bottom:1027.050000px;}
.y6b{bottom:1042.050000px;}
.y136{bottom:1042.800000px;}
.y3f{bottom:1044.300000px;}
.y8f{bottom:1046.175000px;}
.yc{bottom:1052.925000px;}
.y160{bottom:1056.300000px;}
.y135{bottom:1056.675000px;}
.ye4{bottom:1060.050000px;}
.y3e{bottom:1063.050000px;}
.y110{bottom:1064.925000px;}
.y8e{bottom:1065.300000px;}
.ya{bottom:1068.300000px;}
.y134{bottom:1070.550000px;}
.y6a{bottom:1081.830000px;}
.y8{bottom:1084.080000px;}
.y5{bottom:1099.455000px;}
.ye3{bottom:1101.705000px;}
.y3d{bottom:1102.830000px;}
.y8d{bottom:1103.205000px;}
.y17a{bottom:1104.705000px;}
.y133{bottom:1118.205000px;}
.y179{bottom:1118.580000px;}
.y3c{bottom:1121.955000px;}
.y132{bottom:1132.080000px;}
.y4{bottom:1139.955000px;}
.y3b{bottom:1141.080000px;}
.y131{bottom:1145.955000px;}
.y3{bottom:1183.830000px;}
.y1{bottom:1195.080000px;}
.h1{height:14.662500px;}
.h11{height:15.000000px;}
.h12{height:15.037500px;}
.h4{height:15.375000px;}
.hf{height:15.412500px;}
.ha{height:15.750000px;}
.h7{height:15.787500px;}
.h8{height:30.750000px;}
.h9{height:31.125000px;}
.h13{height:35.153320px;}
.h14{height:36.375000px;}
.h16{height:36.772500px;}
.h15{height:37.500000px;}
.h17{height:37.537500px;}
.h19{height:43.265625px;}
.h2{height:47.742188px;}
.hb{height:48.410156px;}
.h10{height:48.673828px;}
.h6{height:50.062500px;}
.h5{height:56.320312px;}
.h18{height:62.578125px;}
.he{height:67.837600px;}
.hd{height:68.835938px;}
.hc{height:74.004654px;}
.h3{height:75.093750px;}
.h0{height:1263.000000px;}
.w6{width:15.750000px;}
.wa{width:31.912500px;}
.w3{width:40.162500px;}
.w14{width:46.912500px;}
.w12{width:51.037500px;}
.w10{width:52.875000px;}
.w13{width:57.750000px;}
.wd{width:59.250000px;}
.we{width:59.662500px;}
.wf{width:63.037500px;}
.w11{width:63.412500px;}
.w1a{width:64.162500px;}
.w19{width:74.287500px;}
.w1c{width:74.625000px;}
.w1b{width:84.787500px;}
.w17{width:117.075000px;}
.w18{width:127.537500px;}
.w7{width:143.700000px;}
.w1d{width:166.575000px;}
.w16{width:166.950000px;}
.wb{width:170.325000px;}
.w15{width:199.995000px;}
.wc{width:200.370000px;}
.w9{width:435.945000px;}
.w5{width:478.725000px;}
.w2{width:614.505000px;}
.w8{width:638.175000px;}
.w4{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.250000px;}
.x8{left:14.985000px;}
.x1d{left:24.000000px;}
.x1c{left:28.860000px;}
.xb{left:30.780000px;}
.x21{left:32.662500px;}
.x1f{left:34.110000px;}
.x16{left:36.030000px;}
.x17{left:41.280000px;}
.x19{left:43.875000px;}
.x1a{left:46.125000px;}
.x20{left:49.162500px;}
.x22{left:112.582500px;}
.x1{left:118.912500px;}
.x6{left:127.537487px;}
.x2{left:240.487500px;}
.x15{left:286.620000px;}
.xd{left:320.025000px;}
.xe{left:379.275000px;}
.x18{left:403.695000px;}
.xf{left:438.945000px;}
.x23{left:473.069987px;}
.x10{left:501.975000px;}
.x1b{left:531.225000px;}
.x11{left:554.850000px;}
.xa{left:563.475000px;}
.xc{left:595.395000px;}
.x7{left:606.270000px;}
.x12{left:618.270000px;}
.x9{left:622.020000px;}
.x13{left:669.300000px;}
.x14{left:727.050000px;}
.x3{left:734.175000px;}
.x1e{left:754.470000px;}
.x5{left:765.719987px;}
@media print{
.v2{vertical-align:-64.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.333333pt;}
.ls10{letter-spacing:-1.333333pt;}
.ls20{letter-spacing:-0.789333pt;}
.ls19{letter-spacing:-0.618667pt;}
.lsf{letter-spacing:-0.464000pt;}
.ls1c{letter-spacing:-0.416000pt;}
.ls1f{letter-spacing:-0.394667pt;}
.ls17{letter-spacing:-0.309333pt;}
.ls7{letter-spacing:-0.298667pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.085333pt;}
.lsb{letter-spacing:-0.021333pt;}
.lsa{letter-spacing:-0.016000pt;}
.lsc{letter-spacing:-0.010667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.005333pt;}
.ls3{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.016000pt;}
.ls21{letter-spacing:0.074667pt;}
.ls18{letter-spacing:0.154667pt;}
.ls1a{letter-spacing:0.229333pt;}
.ls1{letter-spacing:0.277333pt;}
.ls14{letter-spacing:0.309333pt;}
.ls11{letter-spacing:0.464000pt;}
.ls1e{letter-spacing:0.544000pt;}
.ls12{letter-spacing:0.597333pt;}
.lsd{letter-spacing:0.714667pt;}
.ls0{letter-spacing:1.024000pt;}
.ls4{letter-spacing:1.322667pt;}
.ls1b{letter-spacing:1.408000pt;}
.lse{letter-spacing:6.357333pt;}
.ls13{letter-spacing:7.690667pt;}
.ls16{letter-spacing:7.850667pt;}
.ls15{letter-spacing:14.357333pt;}
.ls1d{letter-spacing:316.293333pt;}
.ws8{word-spacing:-47.989333pt;}
.wsd{word-spacing:-17.024000pt;}
.wse{word-spacing:-16.773333pt;}
.wsf{word-spacing:-16.618667pt;}
.ws10{word-spacing:-16.464000pt;}
.wsb{word-spacing:-16.309333pt;}
.wsc{word-spacing:-14.976000pt;}
.ws9{word-spacing:-13.360000pt;}
.ws6{word-spacing:-13.354667pt;}
.ws2{word-spacing:-13.344000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws7{word-spacing:-13.322667pt;}
.ws5{word-spacing:-12.138667pt;}
.ws4{word-spacing:-11.861333pt;}
.ws11{word-spacing:-11.173333pt;}
.ws12{word-spacing:-10.528000pt;}
.ws14{word-spacing:-10.272000pt;}
.ws15{word-spacing:-9.802667pt;}
.ws16{word-spacing:-9.728000pt;}
.ws0{word-spacing:-9.450667pt;}
.ws1{word-spacing:-9.344000pt;}
.ws13{word-spacing:-9.333333pt;}
.wsa{word-spacing:0.000000pt;}
._23{margin-left:-2.949333pt;}
._2{margin-left:-1.845333pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.248000pt;}
._6{width:2.304000pt;}
._7{width:3.333333pt;}
._9{width:4.826667pt;}
._11{width:5.744000pt;}
._b{width:6.672000pt;}
._a{width:8.016000pt;}
._c{width:9.264000pt;}
._1c{width:10.213333pt;}
._3{width:11.157333pt;}
._d{width:12.272000pt;}
._e{width:13.642667pt;}
._8{width:14.592000pt;}
._22{width:16.074667pt;}
._4{width:17.333333pt;}
._5{width:19.050667pt;}
._17{width:20.058667pt;}
._14{width:21.488000pt;}
._15{width:22.437333pt;}
._12{width:23.450667pt;}
._13{width:25.034667pt;}
._10{width:26.042667pt;}
._19{width:26.960000pt;}
._f{width:27.866667pt;}
._1d{width:29.104000pt;}
._18{width:30.144000pt;}
._1a{width:33.024000pt;}
._20{width:35.082667pt;}
._24{width:36.106667pt;}
._1b{width:38.304000pt;}
._21{width:40.304000pt;}
._16{width:64.597333pt;}
._1f{width:102.586667pt;}
._1e{width:112.586667pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.666667pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.333333pt;}
.yb{bottom:2.666667pt;}
.ycb{bottom:2.706667pt;}
.y2{bottom:3.000000pt;}
.y9{bottom:3.666667pt;}
.y7{bottom:4.000000pt;}
.ye8{bottom:7.666667pt;}
.yf2{bottom:8.706667pt;}
.ye{bottom:9.000000pt;}
.ycd{bottom:13.333333pt;}
.ycf{bottom:13.666667pt;}
.yca{bottom:13.706667pt;}
.y10{bottom:16.333333pt;}
.ye7{bottom:21.333333pt;}
.yec{bottom:21.693333pt;}
.yea{bottom:22.333333pt;}
.yf1{bottom:22.360000pt;}
.yee{bottom:22.666667pt;}
.ye6{bottom:32.333333pt;}
.yc2{bottom:98.366667pt;}
.y3a{bottom:99.366667pt;}
.y15f{bottom:103.366667pt;}
.y10f{bottom:105.033333pt;}
.y8c{bottom:105.700000pt;}
.ye2{bottom:106.366667pt;}
.y69{bottom:109.366667pt;}
.y178{bottom:109.700000pt;}
.y15e{bottom:115.700000pt;}
.y39{bottom:116.033333pt;}
.y10e{bottom:122.033333pt;}
.y177{bottom:122.366667pt;}
.y8b{bottom:122.700000pt;}
.ye1{bottom:123.366667pt;}
.y68{bottom:126.366667pt;}
.yc1{bottom:134.040000pt;}
.y176{bottom:134.373333pt;}
.y10d{bottom:138.706667pt;}
.y8a{bottom:139.373333pt;}
.ye0{bottom:140.373333pt;}
.y67{bottom:143.040000pt;}
.y15d{bottom:146.040000pt;}
.y175{bottom:146.373333pt;}
.yc0{bottom:151.040000pt;}
.y38{bottom:151.706667pt;}
.y130{bottom:152.040000pt;}
.y10c{bottom:155.733333pt;}
.ya9{bottom:156.400000pt;}
.ydf{bottom:157.066667pt;}
.y15c{bottom:158.400000pt;}
.y66{bottom:160.066667pt;}
.y127{bottom:163.733333pt;}
.y12f{bottom:164.066667pt;}
.y37{bottom:168.733333pt;}
.y10b{bottom:172.400000pt;}
.ya8{bottom:173.400000pt;}
.yde{bottom:174.066667pt;}
.y89{bottom:175.066667pt;}
.y126{bottom:175.733333pt;}
.y65{bottom:176.733333pt;}
.y36{bottom:185.400000pt;}
.ybf{bottom:186.400000pt;}
.y15b{bottom:189.066667pt;}
.y10a{bottom:189.400000pt;}
.ya7{bottom:190.066667pt;}
.ydd{bottom:190.733333pt;}
.y88{bottom:192.066667pt;}
.y64{bottom:193.733333pt;}
.y12e{bottom:194.400000pt;}
.y15a{bottom:201.400000pt;}
.y35{bottom:202.400000pt;}
.ybe{bottom:203.400000pt;}
.y125{bottom:206.066667pt;}
.y109{bottom:206.400000pt;}
.y12d{bottom:206.733333pt;}
.ydc{bottom:207.733333pt;}
.y87{bottom:208.733333pt;}
.y63{bottom:210.733333pt;}
.y159{bottom:213.400000pt;}
.y124{bottom:218.400000pt;}
.y34{bottom:219.066667pt;}
.y174{bottom:219.733333pt;}
.ybd{bottom:220.400000pt;}
.y108{bottom:223.066667pt;}
.ydb{bottom:224.733333pt;}
.ya6{bottom:225.400000pt;}
.y86{bottom:225.733333pt;}
.y62{bottom:227.400000pt;}
.y123{bottom:230.400000pt;}
.y12c{bottom:231.066667pt;}
.y173{bottom:232.066667pt;}
.y33{bottom:236.066667pt;}
.y107{bottom:240.066667pt;}
.yda{bottom:241.400000pt;}
.y85{bottom:242.400000pt;}
.y122{bottom:243.066667pt;}
.y158{bottom:243.733333pt;}
.y172{bottom:244.066667pt;}
.y61{bottom:244.400000pt;}
.y32{bottom:253.066667pt;}
.ybc{bottom:255.733333pt;}
.y157{bottom:256.400000pt;}
.y84{bottom:259.400000pt;}
.y60{bottom:261.066667pt;}
.y31{bottom:269.773333pt;}
.ybb{bottom:272.773333pt;}
.y121{bottom:273.426667pt;}
.y171{bottom:274.773333pt;}
.y106{bottom:275.440000pt;}
.y83{bottom:276.426667pt;}
.y5f{bottom:278.106667pt;}
.y120{bottom:286.106667pt;}
.y156{bottom:286.773333pt;}
.y170{bottom:287.106667pt;}
.yba{bottom:289.440000pt;}
.y105{bottom:292.440000pt;}
.yd9{bottom:294.093333pt;}
.ya5{bottom:295.106667pt;}
.y11f{bottom:298.106667pt;}
.y155{bottom:299.106667pt;}
.y30{bottom:305.106667pt;}
.yb9{bottom:306.426667pt;}
.y104{bottom:309.426667pt;}
.y154{bottom:311.106667pt;}
.y82{bottom:311.773333pt;}
.y5e{bottom:313.440000pt;}
.yb8{bottom:323.440000pt;}
.y103{bottom:326.106667pt;}
.y11e{bottom:328.440000pt;}
.y81{bottom:328.773333pt;}
.y16f{bottom:329.440000pt;}
.y5d{bottom:330.426667pt;}
.yd8{bottom:335.106667pt;}
.yb7{bottom:340.106667pt;}
.y2f{bottom:340.773333pt;}
.y153{bottom:341.440000pt;}
.y16e{bottom:341.773333pt;}
.y102{bottom:343.106667pt;}
.ya4{bottom:345.426667pt;}
.y5c{bottom:347.440000pt;}
.y11d{bottom:353.106667pt;}
.y152{bottom:354.093333pt;}
.yd7{bottom:359.440000pt;}
.y101{bottom:359.773333pt;}
.ya3{bottom:362.440000pt;}
.y5b{bottom:364.106667pt;}
.y12b{bottom:365.106667pt;}
.y151{bottom:366.106667pt;}
.yd6{bottom:373.106667pt;}
.yb6{bottom:375.440000pt;}
.y2e{bottom:375.773333pt;}
.y100{bottom:376.773333pt;}
.ya2{bottom:379.440000pt;}
.y5a{bottom:381.106667pt;}
.y11c{bottom:383.466667pt;}
.yd5{bottom:386.466667pt;}
.yff{bottom:393.800000pt;}
.y12a{bottom:395.466667pt;}
.y11b{bottom:395.800000pt;}
.ya1{bottom:396.133333pt;}
.y150{bottom:396.466667pt;}
.y59{bottom:398.133333pt;}
.yd4{bottom:400.133333pt;}
.y11a{bottom:407.800000pt;}
.y2d{bottom:408.466667pt;}
.y14f{bottom:408.800000pt;}
.yb5{bottom:411.133333pt;}
.ya0{bottom:413.133333pt;}
.yd3{bottom:413.800000pt;}
.y58{bottom:414.800000pt;}
.y14e{bottom:421.133333pt;}
.y2c{bottom:422.133333pt;}
.y129{bottom:426.133333pt;}
.yd2{bottom:427.466667pt;}
.yfe{bottom:429.133333pt;}
.y9f{bottom:429.800000pt;}
.y57{bottom:431.800000pt;}
.y2b{bottom:436.133333pt;}
.y119{bottom:438.133333pt;}
.y128{bottom:438.466667pt;}
.yd1{bottom:440.800000pt;}
.yfd{bottom:446.133333pt;}
.y9e{bottom:446.800000pt;}
.y56{bottom:448.466667pt;}
.y2a{bottom:449.800000pt;}
.y118{bottom:450.800000pt;}
.y14d{bottom:451.466667pt;}
.yd0{bottom:454.466667pt;}
.yfc{bottom:462.800000pt;}
.y29{bottom:463.466667pt;}
.yb4{bottom:463.800000pt;}
.y80{bottom:465.466667pt;}
.yce{bottom:468.133333pt;}
.y14c{bottom:475.800000pt;}
.y28{bottom:477.466667pt;}
.yfb{bottom:479.800000pt;}
.yb3{bottom:480.466667pt;}
.ycc{bottom:481.800000pt;}
.y9d{bottom:482.133333pt;}
.y7f{bottom:482.466667pt;}
.y55{bottom:484.466667pt;}
.y14b{bottom:488.133333pt;}
.y27{bottom:491.133333pt;}
.yc9{bottom:495.800000pt;}
.yfa{bottom:496.800000pt;}
.yb2{bottom:497.466667pt;}
.y7e{bottom:499.173333pt;}
.y14a{bottom:500.173333pt;}
.y26{bottom:504.840000pt;}
.y16d{bottom:506.506667pt;}
.yc8{bottom:513.173333pt;}
.yf9{bottom:513.506667pt;}
.yb1{bottom:514.173333pt;}
.y117{bottom:515.840000pt;}
.y9c{bottom:517.840000pt;}
.y25{bottom:518.840000pt;}
.y54{bottom:519.506667pt;}
.yf8{bottom:530.506667pt;}
.y16c{bottom:530.840000pt;}
.yb0{bottom:531.173333pt;}
.y24{bottom:532.506667pt;}
.y116{bottom:532.840000pt;}
.y7d{bottom:534.506667pt;}
.y53{bottom:536.506667pt;}
.y149{bottom:542.840000pt;}
.y23{bottom:546.506667pt;}
.yf7{bottom:547.173333pt;}
.yaf{bottom:547.840000pt;}
.y115{bottom:549.840000pt;}
.y7c{bottom:551.506667pt;}
.y9b{bottom:553.173333pt;}
.y52{bottom:553.506667pt;}
.y148{bottom:555.173333pt;}
.y22{bottom:560.173333pt;}
.y16b{bottom:561.173333pt;}
.yae{bottom:564.840000pt;}
.y114{bottom:566.506667pt;}
.y7b{bottom:568.506667pt;}
.y51{bottom:570.173333pt;}
.y16a{bottom:573.840000pt;}
.yf6{bottom:582.840000pt;}
.yc7{bottom:583.506667pt;}
.y7a{bottom:585.173333pt;}
.y147{bottom:585.506667pt;}
.y169{bottom:585.840000pt;}
.y50{bottom:587.173333pt;}
.y21{bottom:592.506667pt;}
.y146{bottom:597.840000pt;}
.yf5{bottom:599.840000pt;}
.yad{bottom:600.173333pt;}
.yc6{bottom:600.506667pt;}
.y79{bottom:602.173333pt;}
.y4f{bottom:603.840000pt;}
.y145{bottom:609.840000pt;}
.y168{bottom:616.200000pt;}
.yf4{bottom:616.533333pt;}
.yc5{bottom:617.200000pt;}
.y78{bottom:619.200000pt;}
.y4e{bottom:620.866667pt;}
.y20{bottom:625.200000pt;}
.y167{bottom:628.533333pt;}
.y77{bottom:635.866667pt;}
.y4d{bottom:637.866667pt;}
.y144{bottom:640.200000pt;}
.y166{bottom:640.533333pt;}
.yf3{bottom:651.866667pt;}
.yc4{bottom:652.533333pt;}
.y76{bottom:652.866667pt;}
.y4c{bottom:654.533333pt;}
.y1f{bottom:657.533333pt;}
.y75{bottom:669.533333pt;}
.y1e{bottom:671.533333pt;}
.y9a{bottom:673.200000pt;}
.y143{bottom:683.200000pt;}
.y1d{bottom:685.200000pt;}
.y74{bottom:686.533333pt;}
.y4b{bottom:688.200000pt;}
.y99{bottom:690.200000pt;}
.y142{bottom:695.533333pt;}
.y1c{bottom:698.866667pt;}
.yac{bottom:703.533333pt;}
.y4a{bottom:705.200000pt;}
.y98{bottom:706.866667pt;}
.y141{bottom:707.533333pt;}
.y1b{bottom:712.866667pt;}
.y140{bottom:719.866667pt;}
.yab{bottom:720.200000pt;}
.y73{bottom:721.866667pt;}
.y49{bottom:722.200000pt;}
.y97{bottom:723.866667pt;}
.yf0{bottom:724.866667pt;}
.y1a{bottom:726.560000pt;}
.yaa{bottom:737.226667pt;}
.y165{bottom:738.240000pt;}
.y48{bottom:738.893333pt;}
.y19{bottom:740.560000pt;}
.y96{bottom:740.893333pt;}
.y13f{bottom:750.226667pt;}
.y164{bottom:750.560000pt;}
.y18{bottom:754.226667pt;}
.y47{bottom:755.893333pt;}
.y95{bottom:757.573333pt;}
.yef{bottom:758.226667pt;}
.y13e{bottom:762.560000pt;}
.y17{bottom:767.893333pt;}
.y46{bottom:772.573333pt;}
.y113{bottom:774.226667pt;}
.y94{bottom:774.560000pt;}
.y16{bottom:781.893333pt;}
.y13d{bottom:786.893333pt;}
.y72{bottom:789.560000pt;}
.yed{bottom:790.560000pt;}
.y93{bottom:791.226667pt;}
.y15{bottom:795.560000pt;}
.y71{bottom:806.560000pt;}
.y45{bottom:808.226667pt;}
.y14{bottom:809.560000pt;}
.y13c{bottom:817.226667pt;}
.y13{bottom:823.226667pt;}
.yeb{bottom:823.906667pt;}
.yc3{bottom:824.893333pt;}
.y92{bottom:825.226667pt;}
.y112{bottom:826.893333pt;}
.y13b{bottom:829.560000pt;}
.y12{bottom:837.226667pt;}
.y163{bottom:841.600000pt;}
.y70{bottom:841.933333pt;}
.y44{bottom:843.600000pt;}
.y111{bottom:843.933333pt;}
.y162{bottom:853.600000pt;}
.ye9{bottom:856.600000pt;}
.y6f{bottom:858.933333pt;}
.y13a{bottom:859.933333pt;}
.y43{bottom:860.600000pt;}
.y11{bottom:866.933333pt;}
.y139{bottom:872.266667pt;}
.y6e{bottom:875.600000pt;}
.y42{bottom:877.600000pt;}
.yf{bottom:880.933333pt;}
.y161{bottom:884.266667pt;}
.y138{bottom:884.600000pt;}
.ye5{bottom:890.600000pt;}
.y6d{bottom:892.600000pt;}
.y41{bottom:894.266667pt;}
.y91{bottom:895.933333pt;}
.y137{bottom:896.600000pt;}
.yd{bottom:908.600000pt;}
.y6c{bottom:909.600000pt;}
.y40{bottom:911.266667pt;}
.y90{bottom:912.933333pt;}
.y6b{bottom:926.266667pt;}
.y136{bottom:926.933333pt;}
.y3f{bottom:928.266667pt;}
.y8f{bottom:929.933333pt;}
.yc{bottom:935.933333pt;}
.y160{bottom:938.933333pt;}
.y135{bottom:939.266667pt;}
.ye4{bottom:942.266667pt;}
.y3e{bottom:944.933333pt;}
.y110{bottom:946.600000pt;}
.y8e{bottom:946.933333pt;}
.ya{bottom:949.600000pt;}
.y134{bottom:951.600000pt;}
.y6a{bottom:961.626667pt;}
.y8{bottom:963.626667pt;}
.y5{bottom:977.293333pt;}
.ye3{bottom:979.293333pt;}
.y3d{bottom:980.293333pt;}
.y8d{bottom:980.626667pt;}
.y17a{bottom:981.960000pt;}
.y133{bottom:993.960000pt;}
.y179{bottom:994.293333pt;}
.y3c{bottom:997.293333pt;}
.y132{bottom:1006.293333pt;}
.y4{bottom:1013.293333pt;}
.y3b{bottom:1014.293333pt;}
.y131{bottom:1018.626667pt;}
.y3{bottom:1052.293333pt;}
.y1{bottom:1062.293333pt;}
.h1{height:13.033333pt;}
.h11{height:13.333333pt;}
.h12{height:13.366667pt;}
.h4{height:13.666667pt;}
.hf{height:13.700000pt;}
.ha{height:14.000000pt;}
.h7{height:14.033333pt;}
.h8{height:27.333333pt;}
.h9{height:27.666667pt;}
.h13{height:31.247396pt;}
.h14{height:32.333333pt;}
.h16{height:32.686667pt;}
.h15{height:33.333333pt;}
.h17{height:33.366667pt;}
.h19{height:38.458333pt;}
.h2{height:42.437500pt;}
.hb{height:43.031250pt;}
.h10{height:43.265625pt;}
.h6{height:44.500000pt;}
.h5{height:50.062500pt;}
.h18{height:55.625000pt;}
.he{height:60.300089pt;}
.hd{height:61.187500pt;}
.hc{height:65.781915pt;}
.h3{height:66.750000pt;}
.h0{height:1122.666667pt;}
.w6{width:14.000000pt;}
.wa{width:28.366667pt;}
.w3{width:35.700000pt;}
.w14{width:41.700000pt;}
.w12{width:45.366667pt;}
.w10{width:47.000000pt;}
.w13{width:51.333333pt;}
.wd{width:52.666667pt;}
.we{width:53.033333pt;}
.wf{width:56.033333pt;}
.w11{width:56.366667pt;}
.w1a{width:57.033333pt;}
.w19{width:66.033333pt;}
.w1c{width:66.333333pt;}
.w1b{width:75.366667pt;}
.w17{width:104.066667pt;}
.w18{width:113.366667pt;}
.w7{width:127.733333pt;}
.w1d{width:148.066667pt;}
.w16{width:148.400000pt;}
.wb{width:151.400000pt;}
.w15{width:177.773333pt;}
.wc{width:178.106667pt;}
.w9{width:387.506667pt;}
.w5{width:425.533333pt;}
.w2{width:546.226667pt;}
.w8{width:567.266667pt;}
.w4{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.333333pt;}
.x8{left:13.320000pt;}
.x1d{left:21.333333pt;}
.x1c{left:25.653333pt;}
.xb{left:27.360000pt;}
.x21{left:29.033333pt;}
.x1f{left:30.320000pt;}
.x16{left:32.026667pt;}
.x17{left:36.693333pt;}
.x19{left:39.000000pt;}
.x1a{left:41.000000pt;}
.x20{left:43.700000pt;}
.x22{left:100.073333pt;}
.x1{left:105.700000pt;}
.x6{left:113.366655pt;}
.x2{left:213.766667pt;}
.x15{left:254.773333pt;}
.xd{left:284.466667pt;}
.xe{left:337.133333pt;}
.x18{left:358.840000pt;}
.xf{left:390.173333pt;}
.x23{left:420.506655pt;}
.x10{left:446.200000pt;}
.x1b{left:472.200000pt;}
.x11{left:493.200000pt;}
.xa{left:500.866667pt;}
.xc{left:529.240000pt;}
.x7{left:538.906667pt;}
.x12{left:549.573333pt;}
.x9{left:552.906667pt;}
.x13{left:594.933333pt;}
.x14{left:646.266667pt;}
.x3{left:652.600000pt;}
.x1e{left:670.640000pt;}
.x5{left:680.639988pt;}
}




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