
    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_300916da9baf804545c62a92.woff')format("woff");}.ff1{font-family:ff1;line-height:0.751465;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_2ee5f6dcec0fdbd85577d5a4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.057617;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_efbaac48fb85ca826d47a71b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_942d9b115a4254f26be03030.woff')format("woff");}.ff4{font-family:ff4;line-height:0.927734;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_54524855a82ff7d27caccfd3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.912109;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_33f6a7bb2e9759b00bcdbbca.woff')format("woff");}.ff6{font-family:ff6;line-height:0.957520;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_7a7447bf8380dc503b4480b2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.957520;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_7fd3e92ce507e9e510ee28b0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_c89004a65fa4041fab889de9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.008301;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_8ede1458824d27c109149058.woff')format("woff");}.ffa{font-family:ffa;line-height:1.008301;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_e6d7bc7e244852fbb4b6d463.woff')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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4b632d8173d3881844e59d63.woff')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_011bddaf0a29e601d0c514be.woff')format("woff");}.ffd{font-family:ffd;line-height:0.912109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2e1bc96f84756b64cbee0117.woff')format("woff");}.ffe{font-family:ffe;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4f3be47942b8fb5e411b3787.woff')format("woff");}.fff{font-family:fff;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.739746;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:-11.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.880000px;}
.v1{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.377400px;}
.lsb{letter-spacing:-0.306000px;}
.lse{letter-spacing:-0.270000px;}
.ls19{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.139800px;}
.ls13{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.013320px;}
.ls15{letter-spacing:-0.000003px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.047520px;}
.ls12{letter-spacing:0.048000px;}
.ls1a{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.083400px;}
.ls8{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.125280px;}
.ls6{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.206400px;}
.ls5{letter-spacing:7.344000px;}
.ls4{letter-spacing:7.380000px;}
.ls1{letter-spacing:10.728000px;}
.ls0{letter-spacing:10.800000px;}
.ls11{letter-spacing:11.580000px;}
.ls2{letter-spacing:14.040000px;}
.ls17{letter-spacing:16.406640px;}
.ls16{letter-spacing:46.286640px;}
.ls14{letter-spacing:1893.570000px;}
.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;}
}
.ws5{word-spacing:-60.120000px;}
.wsb{word-spacing:-37.800000px;}
.wsa{word-spacing:-37.799997px;}
.ws9{word-spacing:-36.072000px;}
.ws8{word-spacing:-36.000000px;}
.ws0{word-spacing:-15.236400px;}
.ws7{word-spacing:-15.210000px;}
.wse{word-spacing:-15.120000px;}
.ws10{word-spacing:-15.083280px;}
.ws1{word-spacing:-15.030000px;}
.wsc{word-spacing:-15.016680px;}
.wsd{word-spacing:-14.850000px;}
.wsf{word-spacing:-14.760000px;}
.ws2{word-spacing:-9.803400px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:-0.060120px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-13.551000px;}
._18{margin-left:-12.386983px;}
._16{margin-left:-10.721820px;}
._15{margin-left:-9.582000px;}
._19{margin-left:-3.470983px;}
._e{margin-left:-2.340960px;}
._2{margin-left:-1.234320px;}
._0{width:1.080000px;}
._a{width:2.224440px;}
._1{width:3.648000px;}
._5{width:5.004000px;}
._6{width:6.252000px;}
._7{width:8.146320px;}
._f{width:9.171960px;}
._13{width:10.336920px;}
._3{width:11.356920px;}
._4{width:12.499080px;}
._c{width:14.007960px;}
._14{width:16.144080px;}
._b{width:17.194320px;}
._1c{width:18.219240px;}
._10{width:19.358640px;}
._11{width:20.370360px;}
._9{width:22.785480px;}
._8{width:23.900160px;}
._d{width:25.490880px;}
._1d{width:29.759400px;}
._1e{width:31.142160px;}
._1a{width:35.742000px;}
._1b{width:36.973800px;}
._20{width:41.189160px;}
._1f{width:42.336960px;}
._12{width:1480.876080px;}
.fc9{color:rgb(37,118,147);}
.fc8{color:rgb(0,16,128);}
.fc6{color:rgb(151,35,180);}
.fc7{color:rgb(0,0,255);}
.fc5{color:rgb(0,128,0);}
.fc4{color:rgb(163,21,21);}
.fc3{color:rgb(106,82,33);}
.fc2{color:rgb(17,102,68);}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs6{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs7{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y6{bottom:66.600000px;}
.y36{bottom:82.170000px;}
.y5{bottom:92.700000px;}
.y35{bottom:108.180000px;}
.y4{bottom:112.950000px;}
.y34{bottom:128.430000px;}
.y3{bottom:134.190000px;}
.y33{bottom:149.670000px;}
.y30{bottom:154.440000px;}
.y13f{bottom:169.290000px;}
.y2f{bottom:174.690000px;}
.yb0{bottom:175.320000px;}
.y107{bottom:175.860000px;}
.y15e{bottom:179.460000px;}
.y12e{bottom:181.260000px;}
.y95{bottom:188.640000px;}
.y13e{bottom:189.540000px;}
.yd2{bottom:190.530000px;}
.y187{bottom:192.510000px;}
.y5e{bottom:193.320000px;}
.y2e{bottom:194.940000px;}
.yaf{bottom:195.570000px;}
.yed{bottom:196.920000px;}
.y77{bottom:197.640000px;}
.y106{bottom:200.340000px;}
.y15d{bottom:203.940000px;}
.y12d{bottom:205.740000px;}
.y13d{bottom:209.790000px;}
.y94{bottom:213.060000px;}
.yd1{bottom:214.950000px;}
.y2d{bottom:215.220000px;}
.yae{bottom:215.850000px;}
.y186{bottom:216.930000px;}
.yec{bottom:224.850000px;}
.y15c{bottom:228.360000px;}
.y13c{bottom:230.070000px;}
.y12c{bottom:230.160000px;}
.y5d{bottom:231.600000px;}
.y2c{bottom:235.470000px;}
.y76{bottom:235.920000px;}
.yad{bottom:236.010000px;}
.y93{bottom:237.540000px;}
.y185{bottom:242.220000px;}
.yd0{bottom:244.740000px;}
.y105{bottom:249.240000px;}
.y13b{bottom:250.320000px;}
.y15b{bottom:252.840000px;}
.y12b{bottom:254.640000px;}
.y2b{bottom:255.720000px;}
.yac{bottom:256.260000px;}
.y92{bottom:262.020000px;}
.y184{bottom:266.700000px;}
.y5c{bottom:269.760000px;}
.y13a{bottom:270.480000px;}
.y104{bottom:273.720000px;}
.y75{bottom:274.080000px;}
.yab{bottom:276.510000px;}
.y15a{bottom:277.320000px;}
.y12a{bottom:279.120000px;}
.ycf{bottom:286.050000px;}
.y91{bottom:286.410000px;}
.y139{bottom:290.730000px;}
.y183{bottom:291.090000px;}
.y2a{bottom:293.880000px;}
.y103{bottom:298.200000px;}
.y159{bottom:301.710000px;}
.y129{bottom:303.510000px;}
.ye1{bottom:303.690000px;}
.y5b{bottom:308.010000px;}
.yce{bottom:309.270000px;}
.y90{bottom:310.890000px;}
.y138{bottom:310.980000px;}
.y74{bottom:312.330000px;}
.y182{bottom:313.500000px;}
.y29{bottom:314.130000px;}
.yaa{bottom:314.760000px;}
.y102{bottom:322.590000px;}
.y158{bottom:326.190000px;}
.y128{bottom:327.990000px;}
.ye0{bottom:328.170000px;}
.y5a{bottom:328.260000px;}
.y137{bottom:331.230000px;}
.ycd{bottom:332.580000px;}
.y181{bottom:333.750000px;}
.y28{bottom:334.380000px;}
.y8f{bottom:335.370000px;}
.y101{bottom:347.070000px;}
.y59{bottom:348.510000px;}
.y73{bottom:350.580000px;}
.y157{bottom:350.670000px;}
.y136{bottom:351.480000px;}
.y127{bottom:352.470000px;}
.ydf{bottom:352.650000px;}
.y180{bottom:354.000000px;}
.y27{bottom:354.630000px;}
.ycc{bottom:355.890000px;}
.y8e{bottom:359.760000px;}
.y100{bottom:371.550000px;}
.y135{bottom:371.730000px;}
.y17f{bottom:374.250000px;}
.y26{bottom:374.880000px;}
.y156{bottom:375.060000px;}
.y126{bottom:376.860000px;}
.yde{bottom:377.040000px;}
.ycb{bottom:379.110000px;}
.y8d{bottom:384.240000px;}
.y58{bottom:386.760000px;}
.y72{bottom:388.830000px;}
.y134{bottom:391.890000px;}
.y17e{bottom:394.500000px;}
.y25{bottom:395.130000px;}
.yff{bottom:395.940000px;}
.y155{bottom:399.540000px;}
.y125{bottom:401.340000px;}
.ydd{bottom:401.520000px;}
.yca{bottom:402.420000px;}
.y8c{bottom:408.720000px;}
.y133{bottom:412.140000px;}
.y17d{bottom:414.750000px;}
.yfe{bottom:420.420000px;}
.y154{bottom:424.020000px;}
.y57{bottom:425.010000px;}
.yc9{bottom:425.640000px;}
.y124{bottom:425.820000px;}
.ydc{bottom:426.000000px;}
.y71{bottom:427.080000px;}
.y132{bottom:432.390000px;}
.y8b{bottom:433.110000px;}
.y24{bottom:433.290000px;}
.y17c{bottom:435.000000px;}
.yfd{bottom:444.900000px;}
.y56{bottom:445.260000px;}
.y153{bottom:448.410000px;}
.yc8{bottom:448.950000px;}
.y123{bottom:450.210000px;}
.ydb{bottom:450.390000px;}
.y131{bottom:452.640000px;}
.y17b{bottom:455.160000px;}
.y8a{bottom:457.590000px;}
.y70{bottom:465.330000px;}
.y55{bottom:465.510000px;}
.y23{bottom:471.540000px;}
.yc7{bottom:472.260000px;}
.y152{bottom:472.890000px;}
.y122{bottom:474.690000px;}
.yfc{bottom:474.780000px;}
.yda{bottom:474.870000px;}
.y17a{bottom:475.410000px;}
.y130{bottom:481.890000px;}
.y89{bottom:482.070000px;}
.y54{bottom:485.670000px;}
.y22{bottom:494.400000px;}
.yc6{bottom:495.480000px;}
.y151{bottom:497.370000px;}
.y179{bottom:497.730000px;}
.y121{bottom:499.170000px;}
.yd9{bottom:499.350000px;}
.y6f{bottom:503.490000px;}
.y53{bottom:505.920000px;}
.y88{bottom:506.460000px;}
.yfb{bottom:508.620000px;}
.y21{bottom:514.650000px;}
.yc5{bottom:518.790000px;}
.y150{bottom:521.760000px;}
.y178{bottom:522.120000px;}
.y12f{bottom:522.390000px;}
.y120{bottom:523.560000px;}
.yd8{bottom:523.740000px;}
.y52{bottom:526.170000px;}
.y87{bottom:530.940000px;}
.y20{bottom:534.900000px;}
.y6e{bottom:541.740000px;}
.yc4{bottom:542.010000px;}
.y14f{bottom:546.240000px;}
.y51{bottom:546.420000px;}
.y177{bottom:546.600000px;}
.y11f{bottom:548.040000px;}
.yd7{bottom:548.220000px;}
.y86{bottom:555.420000px;}
.yc3{bottom:565.320000px;}
.y50{bottom:566.670000px;}
.y14e{bottom:570.720000px;}
.y176{bottom:571.080000px;}
.y11e{bottom:572.520000px;}
.yd6{bottom:572.700000px;}
.y1f{bottom:573.150000px;}
.yeb{bottom:575.130000px;}
.y85{bottom:579.810000px;}
.y6d{bottom:579.990000px;}
.y4f{bottom:586.920000px;}
.yc2{bottom:588.540000px;}
.y1e{bottom:593.400000px;}
.y14d{bottom:595.110000px;}
.y175{bottom:595.470000px;}
.y11d{bottom:596.910000px;}
.yd5{bottom:597.090000px;}
.yea{bottom:599.520000px;}
.y84{bottom:604.290000px;}
.y4e{bottom:607.170000px;}
.yc1{bottom:611.850000px;}
.y1d{bottom:613.650000px;}
.y6c{bottom:618.240000px;}
.y14c{bottom:619.590000px;}
.y174{bottom:619.950000px;}
.y11c{bottom:621.390000px;}
.yd4{bottom:621.570000px;}
.ye9{bottom:624.000000px;}
.y4d{bottom:627.330000px;}
.y83{bottom:628.770000px;}
.y1c{bottom:633.930000px;}
.yc0{bottom:635.190000px;}
.y14b{bottom:644.100000px;}
.y173{bottom:644.460000px;}
.y11b{bottom:645.900000px;}
.yd3{bottom:646.080000px;}
.y4c{bottom:647.610000px;}
.ye8{bottom:648.510000px;}
.y82{bottom:653.190000px;}
.y1b{bottom:654.090000px;}
.y6b{bottom:656.520000px;}
.ybf{bottom:658.410000px;}
.y4b{bottom:667.860000px;}
.y14a{bottom:668.490000px;}
.y172{bottom:668.850000px;}
.y11a{bottom:670.290000px;}
.ya9{bottom:670.470000px;}
.ye7{bottom:672.900000px;}
.y1a{bottom:674.340000px;}
.y81{bottom:677.670000px;}
.ybe{bottom:681.720000px;}
.y4a{bottom:688.110000px;}
.y149{bottom:692.970000px;}
.y171{bottom:693.330000px;}
.y19{bottom:694.590000px;}
.y6a{bottom:694.770000px;}
.ya8{bottom:694.950000px;}
.ye6{bottom:697.380000px;}
.y80{bottom:702.150000px;}
.ybd{bottom:704.940000px;}
.y49{bottom:708.360000px;}
.y18{bottom:714.840000px;}
.y148{bottom:717.360000px;}
.y170{bottom:717.810000px;}
.y119{bottom:719.250000px;}
.ya7{bottom:719.430000px;}
.ye5{bottom:721.860000px;}
.y7f{bottom:726.540000px;}
.ybc{bottom:728.250000px;}
.y48{bottom:728.610000px;}
.y69{bottom:733.020000px;}
.y17{bottom:735.090000px;}
.y16f{bottom:742.200000px;}
.y118{bottom:743.640000px;}
.ya6{bottom:743.820000px;}
.y47{bottom:748.770000px;}
.y7e{bottom:751.020000px;}
.ybb{bottom:751.560000px;}
.ye4{bottom:751.740000px;}
.y16{bottom:755.340000px;}
.y16e{bottom:766.680000px;}
.y117{bottom:768.120000px;}
.ya5{bottom:768.300000px;}
.y46{bottom:769.020000px;}
.y68{bottom:771.180000px;}
.yba{bottom:774.780000px;}
.y7d{bottom:775.500000px;}
.y15{bottom:775.590000px;}
.y147{bottom:787.020000px;}
.ye3{bottom:789.990000px;}
.y16d{bottom:791.160000px;}
.y116{bottom:792.600000px;}
.ya4{bottom:792.780000px;}
.y14{bottom:795.750000px;}
.yb9{bottom:798.090000px;}
.y45{bottom:798.270000px;}
.y7c{bottom:799.890000px;}
.y67{bottom:809.430000px;}
.yfa{bottom:812.220000px;}
.y16c{bottom:815.550000px;}
.y13{bottom:816.000000px;}
.y146{bottom:816.270000px;}
.y115{bottom:816.990000px;}
.ya3{bottom:817.170000px;}
.yb8{bottom:821.310000px;}
.ye2{bottom:823.740000px;}
.y7b{bottom:829.680000px;}
.y12{bottom:836.250000px;}
.y44{bottom:836.520000px;}
.yf9{bottom:836.700000px;}
.y16b{bottom:840.030000px;}
.y114{bottom:841.470000px;}
.ya2{bottom:841.650000px;}
.yb7{bottom:844.620000px;}
.y145{bottom:845.520000px;}
.y66{bottom:847.680000px;}
.y43{bottom:856.770000px;}
.yf8{bottom:861.180000px;}
.y16a{bottom:864.510000px;}
.y144{bottom:865.770000px;}
.y113{bottom:865.950000px;}
.ya1{bottom:866.130000px;}
.yb6{bottom:867.840000px;}
.y7a{bottom:867.930000px;}
.y11{bottom:875.670000px;}
.y42{bottom:877.020000px;}
.yf7{bottom:885.570000px;}
.y65{bottom:885.930000px;}
.y143{bottom:886.020000px;}
.y169{bottom:888.900000px;}
.y112{bottom:890.340000px;}
.ya0{bottom:890.520000px;}
.yb5{bottom:891.150000px;}
.y41{bottom:897.270000px;}
.y10{bottom:898.980000px;}
.y79{bottom:906.180000px;}
.y142{bottom:906.270000px;}
.yf6{bottom:910.050000px;}
.y168{bottom:913.380000px;}
.yb4{bottom:914.460000px;}
.y111{bottom:914.820000px;}
.y9f{bottom:915.000000px;}
.y40{bottom:917.430000px;}
.yf{bottom:918.780000px;}
.y64{bottom:924.180000px;}
.y141{bottom:926.430000px;}
.yf5{bottom:934.530000px;}
.yb3{bottom:937.680000px;}
.y167{bottom:937.860000px;}
.y110{bottom:939.300000px;}
.y9e{bottom:939.480000px;}
.y78{bottom:944.430000px;}
.ye{bottom:947.310000px;}
.y3f{bottom:955.680000px;}
.yf4{bottom:958.920000px;}
.y166{bottom:962.250000px;}
.y63{bottom:962.430000px;}
.y10f{bottom:963.690000px;}
.y9d{bottom:963.870000px;}
.yd{bottom:969.810000px;}
.y3e{bottom:975.930000px;}
.y62{bottom:982.680000px;}
.yf3{bottom:983.400000px;}
.y165{bottom:986.730000px;}
.y10e{bottom:988.170000px;}
.y9c{bottom:988.350000px;}
.yc{bottom:990.690000px;}
.y140{bottom:993.930000px;}
.y3d{bottom:996.180000px;}
.yf2{bottom:1007.790000px;}
.yb{bottom:1008.870000px;}
.y164{bottom:1011.210000px;}
.y10d{bottom:1012.650000px;}
.y9b{bottom:1012.830000px;}
.yb2{bottom:1014.180000px;}
.y3c{bottom:1016.430000px;}
.y61{bottom:1020.840000px;}
.ya{bottom:1030.470000px;}
.yf1{bottom:1032.270000px;}
.yb1{bottom:1034.430000px;}
.y163{bottom:1035.600000px;}
.y10c{bottom:1037.040000px;}
.y9a{bottom:1037.220000px;}
.y3b{bottom:1054.710000px;}
.yf0{bottom:1056.780000px;}
.y60{bottom:1059.120000px;}
.y162{bottom:1060.110000px;}
.y9{bottom:1061.370000px;}
.y10b{bottom:1061.550000px;}
.y99{bottom:1061.730000px;}
.y3a{bottom:1074.960000px;}
.yef{bottom:1081.170000px;}
.y161{bottom:1084.590000px;}
.y10a{bottom:1086.030000px;}
.y98{bottom:1086.210000px;}
.y8{bottom:1088.370000px;}
.y39{bottom:1095.120000px;}
.y5f{bottom:1097.370000px;}
.yee{bottom:1105.650000px;}
.y160{bottom:1108.980000px;}
.y109{bottom:1110.420000px;}
.y97{bottom:1110.600000px;}
.y7{bottom:1113.570000px;}
.y38{bottom:1115.370000px;}
.y15f{bottom:1132.920000px;}
.y108{bottom:1134.900000px;}
.y96{bottom:1135.080000px;}
.y37{bottom:1135.620000px;}
.y2{bottom:1151.370000px;}
.y32{bottom:1154.970000px;}
.y1{bottom:1172.160000px;}
.y31{bottom:1173.780000px;}
.ha{height:25.614141px;}
.h11{height:34.811191px;}
.hb{height:37.494141px;}
.h7{height:37.705078px;}
.h13{height:40.774746px;}
.h4{height:41.159180px;}
.h9{height:41.451328px;}
.h14{height:42.728027px;}
.hf{height:43.710293px;}
.h15{height:43.769004px;}
.he{height:43.886426px;}
.h8{height:44.062559px;}
.h5{height:46.645840px;}
.hc{height:49.992188px;}
.hd{height:50.273438px;}
.h12{height:50.667539px;}
.h2{height:52.769531px;}
.h10{height:54.878906px;}
.h3{height:55.863281px;}
.h6{height:65.096895px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:114.839987px;}
.x8{left:123.299987px;}
.xf{left:135.089987px;}
.x10{left:141.839987px;}
.xa{left:146.699987px;}
.x4{left:148.799987px;}
.x7{left:150.329987px;}
.x11{left:168.869987px;}
.xc{left:177.869987px;}
.x1{left:248.789987px;}
.x5{left:254.549987px;}
.x9{left:325.919987px;}
.x6{left:330.509987px;}
.x2{left:620.339987px;}
.xd{left:653.009987px;}
.xb{left:776.069987px;}
.xe{left:840.959987px;}
@media print{
.v2{vertical-align:-10.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.560000pt;}
.v1{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.335467pt;}
.lsb{letter-spacing:-0.272000pt;}
.lse{letter-spacing:-0.240000pt;}
.ls19{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.124267pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.011840pt;}
.ls15{letter-spacing:-0.000003pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.042240pt;}
.ls12{letter-spacing:0.042667pt;}
.ls1a{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.074133pt;}
.ls8{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.111360pt;}
.ls6{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.183467pt;}
.ls5{letter-spacing:6.528000pt;}
.ls4{letter-spacing:6.560000pt;}
.ls1{letter-spacing:9.536000pt;}
.ls0{letter-spacing:9.600000pt;}
.ls11{letter-spacing:10.293333pt;}
.ls2{letter-spacing:12.480000pt;}
.ls17{letter-spacing:14.583680pt;}
.ls16{letter-spacing:41.143680pt;}
.ls14{letter-spacing:1683.173333pt;}
.ws5{word-spacing:-53.440000pt;}
.wsb{word-spacing:-33.600000pt;}
.wsa{word-spacing:-33.599997pt;}
.ws9{word-spacing:-32.064000pt;}
.ws8{word-spacing:-32.000000pt;}
.ws0{word-spacing:-13.543467pt;}
.ws7{word-spacing:-13.520000pt;}
.wse{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.407360pt;}
.ws1{word-spacing:-13.360000pt;}
.wsc{word-spacing:-13.348160pt;}
.wsd{word-spacing:-13.200000pt;}
.wsf{word-spacing:-13.120000pt;}
.ws2{word-spacing:-8.714133pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:-0.053440pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-12.045333pt;}
._18{margin-left:-11.010651pt;}
._16{margin-left:-9.530506pt;}
._15{margin-left:-8.517333pt;}
._19{margin-left:-3.085318pt;}
._e{margin-left:-2.080853pt;}
._2{margin-left:-1.097173pt;}
._0{width:0.960000pt;}
._a{width:1.977280pt;}
._1{width:3.242667pt;}
._5{width:4.448000pt;}
._6{width:5.557333pt;}
._7{width:7.241173pt;}
._f{width:8.152853pt;}
._13{width:9.188373pt;}
._3{width:10.095040pt;}
._4{width:11.110293pt;}
._c{width:12.451520pt;}
._14{width:14.350293pt;}
._b{width:15.283840pt;}
._1c{width:16.194880pt;}
._10{width:17.207680pt;}
._11{width:18.106987pt;}
._9{width:20.253760pt;}
._8{width:21.244587pt;}
._d{width:22.658560pt;}
._1d{width:26.452800pt;}
._1e{width:27.681920pt;}
._1a{width:31.770667pt;}
._1b{width:32.865600pt;}
._20{width:36.612587pt;}
._1f{width:37.632853pt;}
._12{width:1316.334293pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs7{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:59.200000pt;}
.y36{bottom:73.040000pt;}
.y5{bottom:82.400000pt;}
.y35{bottom:96.160000pt;}
.y4{bottom:100.400000pt;}
.y34{bottom:114.160000pt;}
.y3{bottom:119.280000pt;}
.y33{bottom:133.040000pt;}
.y30{bottom:137.280000pt;}
.y13f{bottom:150.480000pt;}
.y2f{bottom:155.280000pt;}
.yb0{bottom:155.840000pt;}
.y107{bottom:156.320000pt;}
.y15e{bottom:159.520000pt;}
.y12e{bottom:161.120000pt;}
.y95{bottom:167.680000pt;}
.y13e{bottom:168.480000pt;}
.yd2{bottom:169.360000pt;}
.y187{bottom:171.120000pt;}
.y5e{bottom:171.840000pt;}
.y2e{bottom:173.280000pt;}
.yaf{bottom:173.840000pt;}
.yed{bottom:175.040000pt;}
.y77{bottom:175.680000pt;}
.y106{bottom:178.080000pt;}
.y15d{bottom:181.280000pt;}
.y12d{bottom:182.880000pt;}
.y13d{bottom:186.480000pt;}
.y94{bottom:189.386667pt;}
.yd1{bottom:191.066667pt;}
.y2d{bottom:191.306667pt;}
.yae{bottom:191.866667pt;}
.y186{bottom:192.826667pt;}
.yec{bottom:199.866667pt;}
.y15c{bottom:202.986667pt;}
.y13c{bottom:204.506667pt;}
.y12c{bottom:204.586667pt;}
.y5d{bottom:205.866667pt;}
.y2c{bottom:209.306667pt;}
.y76{bottom:209.706667pt;}
.yad{bottom:209.786667pt;}
.y93{bottom:211.146667pt;}
.y185{bottom:215.306667pt;}
.yd0{bottom:217.546667pt;}
.y105{bottom:221.546667pt;}
.y13b{bottom:222.506667pt;}
.y15b{bottom:224.746667pt;}
.y12b{bottom:226.346667pt;}
.y2b{bottom:227.306667pt;}
.yac{bottom:227.786667pt;}
.y92{bottom:232.906667pt;}
.y184{bottom:237.066667pt;}
.y5c{bottom:239.786667pt;}
.y13a{bottom:240.426667pt;}
.y104{bottom:243.306667pt;}
.y75{bottom:243.626667pt;}
.yab{bottom:245.786667pt;}
.y15a{bottom:246.506667pt;}
.y12a{bottom:248.106667pt;}
.ycf{bottom:254.266667pt;}
.y91{bottom:254.586667pt;}
.y139{bottom:258.426667pt;}
.y183{bottom:258.746667pt;}
.y2a{bottom:261.226667pt;}
.y103{bottom:265.066667pt;}
.y159{bottom:268.186667pt;}
.y129{bottom:269.786667pt;}
.ye1{bottom:269.946667pt;}
.y5b{bottom:273.786667pt;}
.yce{bottom:274.906667pt;}
.y90{bottom:276.346667pt;}
.y138{bottom:276.426667pt;}
.y74{bottom:277.626667pt;}
.y182{bottom:278.666667pt;}
.y29{bottom:279.226667pt;}
.yaa{bottom:279.786667pt;}
.y102{bottom:286.746667pt;}
.y158{bottom:289.946667pt;}
.y128{bottom:291.546667pt;}
.ye0{bottom:291.706667pt;}
.y5a{bottom:291.786667pt;}
.y137{bottom:294.426667pt;}
.ycd{bottom:295.626667pt;}
.y181{bottom:296.666667pt;}
.y28{bottom:297.226667pt;}
.y8f{bottom:298.106667pt;}
.y101{bottom:308.506667pt;}
.y59{bottom:309.786667pt;}
.y73{bottom:311.626667pt;}
.y157{bottom:311.706667pt;}
.y136{bottom:312.426667pt;}
.y127{bottom:313.306667pt;}
.ydf{bottom:313.466667pt;}
.y180{bottom:314.666667pt;}
.y27{bottom:315.226667pt;}
.ycc{bottom:316.346667pt;}
.y8e{bottom:319.786667pt;}
.y100{bottom:330.266667pt;}
.y135{bottom:330.426667pt;}
.y17f{bottom:332.666667pt;}
.y26{bottom:333.226667pt;}
.y156{bottom:333.386667pt;}
.y126{bottom:334.986667pt;}
.yde{bottom:335.146667pt;}
.ycb{bottom:336.986667pt;}
.y8d{bottom:341.546667pt;}
.y58{bottom:343.786667pt;}
.y72{bottom:345.626667pt;}
.y134{bottom:348.346667pt;}
.y17e{bottom:350.666667pt;}
.y25{bottom:351.226667pt;}
.yff{bottom:351.946667pt;}
.y155{bottom:355.146667pt;}
.y125{bottom:356.746667pt;}
.ydd{bottom:356.906667pt;}
.yca{bottom:357.706667pt;}
.y8c{bottom:363.306667pt;}
.y133{bottom:366.346667pt;}
.y17d{bottom:368.666667pt;}
.yfe{bottom:373.706667pt;}
.y154{bottom:376.906667pt;}
.y57{bottom:377.786667pt;}
.yc9{bottom:378.346667pt;}
.y124{bottom:378.506667pt;}
.ydc{bottom:378.666667pt;}
.y71{bottom:379.626667pt;}
.y132{bottom:384.346667pt;}
.y8b{bottom:384.986667pt;}
.y24{bottom:385.146667pt;}
.y17c{bottom:386.666667pt;}
.yfd{bottom:395.466667pt;}
.y56{bottom:395.786667pt;}
.y153{bottom:398.586667pt;}
.yc8{bottom:399.066667pt;}
.y123{bottom:400.186667pt;}
.ydb{bottom:400.346667pt;}
.y131{bottom:402.346667pt;}
.y17b{bottom:404.586667pt;}
.y8a{bottom:406.746667pt;}
.y70{bottom:413.626667pt;}
.y55{bottom:413.786667pt;}
.y23{bottom:419.146667pt;}
.yc7{bottom:419.786667pt;}
.y152{bottom:420.346667pt;}
.y122{bottom:421.946667pt;}
.yfc{bottom:422.026667pt;}
.yda{bottom:422.106667pt;}
.y17a{bottom:422.586667pt;}
.y130{bottom:428.346667pt;}
.y89{bottom:428.506667pt;}
.y54{bottom:431.706667pt;}
.y22{bottom:439.466667pt;}
.yc6{bottom:440.426667pt;}
.y151{bottom:442.106667pt;}
.y179{bottom:442.426667pt;}
.y121{bottom:443.706667pt;}
.yd9{bottom:443.866667pt;}
.y6f{bottom:447.546667pt;}
.y53{bottom:449.706667pt;}
.y88{bottom:450.186667pt;}
.yfb{bottom:452.106667pt;}
.y21{bottom:457.466667pt;}
.yc5{bottom:461.146667pt;}
.y150{bottom:463.786667pt;}
.y178{bottom:464.106667pt;}
.y12f{bottom:464.346667pt;}
.y120{bottom:465.386667pt;}
.yd8{bottom:465.546667pt;}
.y52{bottom:467.706667pt;}
.y87{bottom:471.946667pt;}
.y20{bottom:475.466667pt;}
.y6e{bottom:481.546667pt;}
.yc4{bottom:481.786667pt;}
.y14f{bottom:485.546667pt;}
.y51{bottom:485.706667pt;}
.y177{bottom:485.866667pt;}
.y11f{bottom:487.146667pt;}
.yd7{bottom:487.306667pt;}
.y86{bottom:493.706667pt;}
.yc3{bottom:502.506667pt;}
.y50{bottom:503.706667pt;}
.y14e{bottom:507.306667pt;}
.y176{bottom:507.626667pt;}
.y11e{bottom:508.906667pt;}
.yd6{bottom:509.066667pt;}
.y1f{bottom:509.466667pt;}
.yeb{bottom:511.226667pt;}
.y85{bottom:515.386667pt;}
.y6d{bottom:515.546667pt;}
.y4f{bottom:521.706667pt;}
.yc2{bottom:523.146667pt;}
.y1e{bottom:527.466667pt;}
.y14d{bottom:528.986667pt;}
.y175{bottom:529.306667pt;}
.y11d{bottom:530.586667pt;}
.yd5{bottom:530.746667pt;}
.yea{bottom:532.906667pt;}
.y84{bottom:537.146667pt;}
.y4e{bottom:539.706667pt;}
.yc1{bottom:543.866667pt;}
.y1d{bottom:545.466667pt;}
.y6c{bottom:549.546667pt;}
.y14c{bottom:550.746667pt;}
.y174{bottom:551.066667pt;}
.y11c{bottom:552.346667pt;}
.yd4{bottom:552.506667pt;}
.ye9{bottom:554.666667pt;}
.y4d{bottom:557.626667pt;}
.y83{bottom:558.906667pt;}
.y1c{bottom:563.493333pt;}
.yc0{bottom:564.613333pt;}
.y14b{bottom:572.533333pt;}
.y173{bottom:572.853333pt;}
.y11b{bottom:574.133333pt;}
.yd3{bottom:574.293333pt;}
.y4c{bottom:575.653333pt;}
.ye8{bottom:576.453333pt;}
.y82{bottom:580.613333pt;}
.y1b{bottom:581.413333pt;}
.y6b{bottom:583.573333pt;}
.ybf{bottom:585.253333pt;}
.y4b{bottom:593.653333pt;}
.y14a{bottom:594.213333pt;}
.y172{bottom:594.533333pt;}
.y11a{bottom:595.813333pt;}
.ya9{bottom:595.973333pt;}
.ye7{bottom:598.133333pt;}
.y1a{bottom:599.413333pt;}
.y81{bottom:602.373333pt;}
.ybe{bottom:605.973333pt;}
.y4a{bottom:611.653333pt;}
.y149{bottom:615.973333pt;}
.y171{bottom:616.293333pt;}
.y19{bottom:617.413333pt;}
.y6a{bottom:617.573333pt;}
.ya8{bottom:617.733333pt;}
.ye6{bottom:619.893333pt;}
.y80{bottom:624.133333pt;}
.ybd{bottom:626.613333pt;}
.y49{bottom:629.653333pt;}
.y18{bottom:635.413333pt;}
.y148{bottom:637.653333pt;}
.y170{bottom:638.053333pt;}
.y119{bottom:639.333333pt;}
.ya7{bottom:639.493333pt;}
.ye5{bottom:641.653333pt;}
.y7f{bottom:645.813333pt;}
.ybc{bottom:647.333333pt;}
.y48{bottom:647.653333pt;}
.y69{bottom:651.573333pt;}
.y17{bottom:653.413333pt;}
.y16f{bottom:659.733333pt;}
.y118{bottom:661.013333pt;}
.ya6{bottom:661.173333pt;}
.y47{bottom:665.573333pt;}
.y7e{bottom:667.573333pt;}
.ybb{bottom:668.053333pt;}
.ye4{bottom:668.213333pt;}
.y16{bottom:671.413333pt;}
.y16e{bottom:681.493333pt;}
.y117{bottom:682.773333pt;}
.ya5{bottom:682.933333pt;}
.y46{bottom:683.573333pt;}
.y68{bottom:685.493333pt;}
.yba{bottom:688.693333pt;}
.y7d{bottom:689.333333pt;}
.y15{bottom:689.413333pt;}
.y147{bottom:699.573333pt;}
.ye3{bottom:702.213333pt;}
.y16d{bottom:703.253333pt;}
.y116{bottom:704.533333pt;}
.ya4{bottom:704.693333pt;}
.y14{bottom:707.333333pt;}
.yb9{bottom:709.413333pt;}
.y45{bottom:709.573333pt;}
.y7c{bottom:711.013333pt;}
.y67{bottom:719.493333pt;}
.yfa{bottom:721.973333pt;}
.y16c{bottom:724.933333pt;}
.y13{bottom:725.333333pt;}
.y146{bottom:725.573333pt;}
.y115{bottom:726.213333pt;}
.ya3{bottom:726.373333pt;}
.yb8{bottom:730.053333pt;}
.ye2{bottom:732.213333pt;}
.y7b{bottom:737.493333pt;}
.y12{bottom:743.333333pt;}
.y44{bottom:743.573333pt;}
.yf9{bottom:743.733333pt;}
.y16b{bottom:746.693333pt;}
.y114{bottom:747.973333pt;}
.ya2{bottom:748.133333pt;}
.yb7{bottom:750.773333pt;}
.y145{bottom:751.573333pt;}
.y66{bottom:753.493333pt;}
.y43{bottom:761.573333pt;}
.yf8{bottom:765.493333pt;}
.y16a{bottom:768.453333pt;}
.y144{bottom:769.573333pt;}
.y113{bottom:769.733333pt;}
.ya1{bottom:769.893333pt;}
.yb6{bottom:771.413333pt;}
.y7a{bottom:771.493333pt;}
.y11{bottom:778.373333pt;}
.y42{bottom:779.573333pt;}
.yf7{bottom:787.173333pt;}
.y65{bottom:787.493333pt;}
.y143{bottom:787.573333pt;}
.y169{bottom:790.133333pt;}
.y112{bottom:791.413333pt;}
.ya0{bottom:791.573333pt;}
.yb5{bottom:792.133333pt;}
.y41{bottom:797.573333pt;}
.y10{bottom:799.093333pt;}
.y79{bottom:805.493333pt;}
.y142{bottom:805.573333pt;}
.yf6{bottom:808.933333pt;}
.y168{bottom:811.893333pt;}
.yb4{bottom:812.853333pt;}
.y111{bottom:813.173333pt;}
.y9f{bottom:813.333333pt;}
.y40{bottom:815.493333pt;}
.yf{bottom:816.693333pt;}
.y64{bottom:821.493333pt;}
.y141{bottom:823.493333pt;}
.yf5{bottom:830.693333pt;}
.yb3{bottom:833.493333pt;}
.y167{bottom:833.653333pt;}
.y110{bottom:834.933333pt;}
.y9e{bottom:835.093333pt;}
.y78{bottom:839.493333pt;}
.ye{bottom:842.053333pt;}
.y3f{bottom:849.493333pt;}
.yf4{bottom:852.373333pt;}
.y166{bottom:855.333333pt;}
.y63{bottom:855.493333pt;}
.y10f{bottom:856.613333pt;}
.y9d{bottom:856.773333pt;}
.yd{bottom:862.053333pt;}
.y3e{bottom:867.493333pt;}
.y62{bottom:873.493333pt;}
.yf3{bottom:874.133333pt;}
.y165{bottom:877.093333pt;}
.y10e{bottom:878.373333pt;}
.y9c{bottom:878.533333pt;}
.yc{bottom:880.613333pt;}
.y140{bottom:883.493333pt;}
.y3d{bottom:885.493333pt;}
.yf2{bottom:895.813333pt;}
.yb{bottom:896.773333pt;}
.y164{bottom:898.853333pt;}
.y10d{bottom:900.133333pt;}
.y9b{bottom:900.293333pt;}
.yb2{bottom:901.493333pt;}
.y3c{bottom:903.493333pt;}
.y61{bottom:907.413333pt;}
.ya{bottom:915.973333pt;}
.yf1{bottom:917.573333pt;}
.yb1{bottom:919.493333pt;}
.y163{bottom:920.533333pt;}
.y10c{bottom:921.813333pt;}
.y9a{bottom:921.973333pt;}
.y3b{bottom:937.520000pt;}
.yf0{bottom:939.360000pt;}
.y60{bottom:941.440000pt;}
.y162{bottom:942.320000pt;}
.y9{bottom:943.440000pt;}
.y10b{bottom:943.600000pt;}
.y99{bottom:943.760000pt;}
.y3a{bottom:955.520000pt;}
.yef{bottom:961.040000pt;}
.y161{bottom:964.080000pt;}
.y10a{bottom:965.360000pt;}
.y98{bottom:965.520000pt;}
.y8{bottom:967.440000pt;}
.y39{bottom:973.440000pt;}
.y5f{bottom:975.440000pt;}
.yee{bottom:982.800000pt;}
.y160{bottom:985.760000pt;}
.y109{bottom:987.040000pt;}
.y97{bottom:987.200000pt;}
.y7{bottom:989.840000pt;}
.y38{bottom:991.440000pt;}
.y15f{bottom:1007.040000pt;}
.y108{bottom:1008.800000pt;}
.y96{bottom:1008.960000pt;}
.y37{bottom:1009.440000pt;}
.y2{bottom:1023.440000pt;}
.y32{bottom:1026.640000pt;}
.y1{bottom:1041.920000pt;}
.y31{bottom:1043.360000pt;}
.ha{height:22.768125pt;}
.h11{height:30.943281pt;}
.hb{height:33.328125pt;}
.h7{height:33.515625pt;}
.h13{height:36.244219pt;}
.h4{height:36.585938pt;}
.h9{height:36.845625pt;}
.h14{height:37.980469pt;}
.hf{height:38.853594pt;}
.h15{height:38.905781pt;}
.he{height:39.010156pt;}
.h8{height:39.166719pt;}
.h5{height:41.462969pt;}
.hc{height:44.437500pt;}
.hd{height:44.687500pt;}
.h12{height:45.037812pt;}
.h2{height:46.906250pt;}
.h10{height:48.781250pt;}
.h3{height:49.656250pt;}
.h6{height:57.863906pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:102.079988pt;}
.x8{left:109.599988pt;}
.xf{left:120.079988pt;}
.x10{left:126.079988pt;}
.xa{left:130.399988pt;}
.x4{left:132.266655pt;}
.x7{left:133.626655pt;}
.x11{left:150.106655pt;}
.xc{left:158.106655pt;}
.x1{left:221.146655pt;}
.x5{left:226.266655pt;}
.x9{left:289.706655pt;}
.x6{left:293.786655pt;}
.x2{left:551.413322pt;}
.xd{left:580.453322pt;}
.xb{left:689.839988pt;}
.xe{left:747.519988pt;}
}




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