
    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_46e8c4c2cdc0e6a68fb162e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.862793;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_723ee1b2c372dd2f428176cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.870605;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_71aaf3f3871e6f3b0c7425a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_62a29c9319c3910bf5ffdd4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966000;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_97b4c23ae1a228916c12d28a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.980000;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_58cac61626f44dc892a39b1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_ab375305f5478fd679ec33a2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_c6fb39c01f29773b1b31fe5e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_c9fa8ddd644ae4a12f3e3549.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.870605;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_54c25868a9393c68ccd62bd8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_ff25cb830606b34caccdeb98.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.862793;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_13c5e01fcda744f53ea3310d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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_c946b3a0218c98082f75756e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.942000;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_cdc7172817a3fa60759ea393.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.932000;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:-42.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:28.800000px;}
.ls11{letter-spacing:-2.280000px;}
.ls1c{letter-spacing:-1.620000px;}
.lsf{letter-spacing:-1.140000px;}
.ls1{letter-spacing:-0.780000px;}
.ls1a{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.480000px;}
.ls14{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.840000px;}
.lsd{letter-spacing:0.900000px;}
.lse{letter-spacing:0.906000px;}
.ls8{letter-spacing:1.098000px;}
.ls9{letter-spacing:1.116000px;}
.lsa{letter-spacing:1.980000px;}
.lsc{letter-spacing:2.088000px;}
.ls7{letter-spacing:2.280000px;}
.ls4{letter-spacing:2.400000px;}
.ls5{letter-spacing:3.060000px;}
.ls15{letter-spacing:3.480000px;}
.ls17{letter-spacing:3.714000px;}
.ls16{letter-spacing:3.720000px;}
.ls1b{letter-spacing:5.820000px;}
.ls3{letter-spacing:6.360000px;}
.ls19{letter-spacing:9.186000px;}
.ls12{letter-spacing:377.088000px;}
.ls13{letter-spacing:420.432000px;}
.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;}
}
.ws25{word-spacing:-430.128000px;}
.ws2{word-spacing:-14.916000px;}
.ws2e{word-spacing:-14.100000px;}
.ws0{word-spacing:-13.560000px;}
.ws3{word-spacing:-13.080000px;}
.wsc{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.204000px;}
.ws49{word-spacing:-11.940000px;}
.ws2a{word-spacing:-10.848000px;}
.ws26{word-spacing:-10.176000px;}
.ws1c{word-spacing:-8.736000px;}
.ws1f{word-spacing:-8.304000px;}
.ws29{word-spacing:-7.905480px;}
.ws35{word-spacing:-3.240000px;}
.ws18{word-spacing:-2.280000px;}
.ws4b{word-spacing:-2.100000px;}
.ws4c{word-spacing:-1.860000px;}
.ws46{word-spacing:-1.740000px;}
.ws44{word-spacing:-1.680000px;}
.ws6{word-spacing:-1.260000px;}
.ws43{word-spacing:-1.080000px;}
.ws39{word-spacing:-1.020000px;}
.wsd{word-spacing:-0.960000px;}
.ws11{word-spacing:-0.780000px;}
.ws3a{word-spacing:-0.720000px;}
.ws50{word-spacing:-0.600000px;}
.wse{word-spacing:-0.540000px;}
.ws32{word-spacing:-0.480000px;}
.ws41{word-spacing:-0.180000px;}
.ws4{word-spacing:0.000000px;}
.ws1b{word-spacing:0.120000px;}
.ws8{word-spacing:0.240000px;}
.wsb{word-spacing:0.300000px;}
.ws28{word-spacing:0.480000px;}
.ws1a{word-spacing:0.540000px;}
.ws48{word-spacing:0.600000px;}
.ws7{word-spacing:0.780000px;}
.ws15{word-spacing:0.900000px;}
.ws4f{word-spacing:0.960000px;}
.wsf{word-spacing:1.140000px;}
.ws10{word-spacing:1.440000px;}
.ws13{word-spacing:1.560000px;}
.ws31{word-spacing:1.800000px;}
.ws37{word-spacing:1.860000px;}
.ws2f{word-spacing:1.920000px;}
.ws14{word-spacing:2.040000px;}
.ws45{word-spacing:2.160000px;}
.ws19{word-spacing:2.280000px;}
.ws16{word-spacing:2.580000px;}
.ws9{word-spacing:2.640000px;}
.ws36{word-spacing:3.120000px;}
.ws3c{word-spacing:3.180000px;}
.ws38{word-spacing:3.300000px;}
.ws51{word-spacing:3.360000px;}
.ws2b{word-spacing:3.480000px;}
.ws12{word-spacing:3.600000px;}
.ws2c{word-spacing:3.720000px;}
.ws3f{word-spacing:3.840000px;}
.ws33{word-spacing:3.960000px;}
.ws4d{word-spacing:4.080000px;}
.ws17{word-spacing:4.380000px;}
.ws40{word-spacing:4.560000px;}
.ws47{word-spacing:4.680000px;}
.ws42{word-spacing:4.980000px;}
.ws4e{word-spacing:5.340000px;}
.ws4a{word-spacing:5.760000px;}
.ws52{word-spacing:5.820000px;}
.ws3b{word-spacing:5.880000px;}
.ws3e{word-spacing:6.060000px;}
.wsa{word-spacing:6.360000px;}
.ws2d{word-spacing:7.296000px;}
.ws34{word-spacing:7.320000px;}
.ws30{word-spacing:7.980000px;}
.ws3d{word-spacing:9.180000px;}
.ws5{word-spacing:11.340000px;}
.ws1e{word-spacing:175.680000px;}
.ws21{word-spacing:323.616000px;}
.ws24{word-spacing:366.912000px;}
.ws23{word-spacing:367.392000px;}
.ws22{word-spacing:410.736000px;}
.ws1d{word-spacing:465.456000px;}
.ws20{word-spacing:564.864000px;}
.ws27{word-spacing:608.160000px;}
._22{margin-left:-43.344000px;}
._24{margin-left:-12.976200px;}
._4{margin-left:-7.069200px;}
._6{margin-left:-5.848200px;}
._2{margin-left:-4.503600px;}
._3{margin-left:-2.774400px;}
._1{margin-left:-1.377000px;}
._7{width:1.338000px;}
._9{width:2.393400px;}
._8{width:3.678000px;}
._a{width:5.484000px;}
._e{width:6.893400px;}
._d{width:7.992000px;}
._c{width:9.051000px;}
._5{width:11.038800px;}
._19{width:180.720000px;}
._17{width:201.648000px;}
._12{width:210.480000px;}
._16{width:223.638000px;}
._18{width:245.040000px;}
._11{width:262.704000px;}
._14{width:302.481000px;}
._23{width:308.507400px;}
._13{width:315.072000px;}
._15{width:336.048000px;}
._1b{width:377.376000px;}
._1a{width:415.008000px;}
._1d{width:416.544000px;}
._1f{width:420.432000px;}
._1e{width:425.046000px;}
._21{width:459.840000px;}
._1c{width:541.761000px;}
._20{width:585.057000px;}
._10{width:911.424000px;}
._f{width:1123.902000px;}
._b{width:1151.334000px;}
._0{width:1354.698000px;}
.fc5{color:rgb(4,6,6);}
.fc4{color:rgb(112,109,110);}
.fc3{color:rgb(210,32,39);}
.fc2{color:rgb(217,25,32);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(145,143,143);}
.fs8{font-size:34.980000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.150600px;}
.y33{bottom:46.851450px;}
.y111{bottom:82.155150px;}
.yed{bottom:87.980850px;}
.y27{bottom:89.560050px;}
.y69{bottom:91.806000px;}
.y110{bottom:96.555150px;}
.yaf{bottom:102.614100px;}
.y170{bottom:102.970350px;}
.y26{bottom:107.560050px;}
.yec{bottom:108.980850px;}
.y68{bottom:109.806000px;}
.y140{bottom:113.773500px;}
.y16f{bottom:120.970350px;}
.y9c{bottom:122.912850px;}
.y25{bottom:125.560050px;}
.y67{bottom:127.806000px;}
.yeb{bottom:129.980850px;}
.y13f{bottom:131.773500px;}
.y16e{bottom:138.970350px;}
.y9b{bottom:140.912850px;}
.y24{bottom:143.560050px;}
.y66{bottom:145.806000px;}
.y13e{bottom:149.773500px;}
.yea{bottom:150.980850px;}
.y23{bottom:161.560050px;}
.y65{bottom:163.806000px;}
.y16d{bottom:165.475350px;}
.y9a{bottom:167.417850px;}
.ye9{bottom:171.980850px;}
.y13d{bottom:176.278500px;}
.y22{bottom:179.560050px;}
.y64{bottom:181.806000px;}
.y16c{bottom:183.475350px;}
.y99{bottom:185.417850px;}
.ye8{bottom:192.980850px;}
.y13c{bottom:194.278500px;}
.y21{bottom:197.560050px;}
.y63{bottom:199.806000px;}
.y16b{bottom:201.475350px;}
.y98{bottom:203.417850px;}
.y13b{bottom:212.278500px;}
.ye7{bottom:213.980850px;}
.y20{bottom:215.560050px;}
.y16a{bottom:219.475350px;}
.y97{bottom:221.417850px;}
.y62{bottom:226.311000px;}
.y1f{bottom:233.560050px;}
.ye6{bottom:234.980850px;}
.y13a{bottom:238.783500px;}
.y96{bottom:243.669750px;}
.y61{bottom:244.311000px;}
.y169{bottom:245.980350px;}
.y1e{bottom:251.560050px;}
.ye5{bottom:255.980850px;}
.y139{bottom:256.783500px;}
.y60{bottom:262.311000px;}
.y168{bottom:263.980350px;}
.y1d{bottom:269.560050px;}
.y95{bottom:273.790350px;}
.y138{bottom:274.783500px;}
.ye4{bottom:276.980850px;}
.y5f{bottom:280.311000px;}
.y167{bottom:281.980350px;}
.y1c{bottom:287.560050px;}
.y94{bottom:291.790350px;}
.ye3{bottom:297.980850px;}
.y5e{bottom:298.311000px;}
.y137{bottom:301.288500px;}
.y1b{bottom:305.560050px;}
.y166{bottom:308.485350px;}
.y5d{bottom:316.311000px;}
.y93{bottom:318.295350px;}
.ye2{bottom:318.980850px;}
.y136{bottom:319.288500px;}
.y1a{bottom:323.560050px;}
.y165{bottom:326.485350px;}
.y5c{bottom:334.311000px;}
.y92{bottom:336.295350px;}
.y135{bottom:337.288500px;}
.ye1{bottom:339.980850px;}
.y164{bottom:344.485350px;}
.y19{bottom:345.812100px;}
.y5b{bottom:352.311000px;}
.y91{bottom:358.540350px;}
.ye0{bottom:360.980850px;}
.y163{bottom:362.485350px;}
.y134{bottom:363.793500px;}
.y5a{bottom:370.311000px;}
.y90{bottom:376.540350px;}
.yae{bottom:380.624550px;}
.y133{bottom:381.793500px;}
.ydf{bottom:381.980850px;}
.y31{bottom:387.504450px;}
.y162{bottom:388.990350px;}
.y59{bottom:392.562900px;}
.y10f{bottom:395.179500px;}
.yad{bottom:398.624550px;}
.y8f{bottom:398.785350px;}
.y132{bottom:399.793500px;}
.yde{bottom:402.980850px;}
.y30{bottom:403.704450px;}
.y161{bottom:406.990350px;}
.y10e{bottom:413.179500px;}
.yac{bottom:416.624550px;}
.y8e{bottom:416.785350px;}
.y2f{bottom:419.904450px;}
.ydd{bottom:423.980850px;}
.y160{bottom:424.990350px;}
.y131{bottom:426.298500px;}
.y10d{bottom:431.179500px;}
.yab{bottom:434.624550px;}
.y2e{bottom:436.104450px;}
.y8d{bottom:439.030350px;}
.y38{bottom:441.125100px;}
.y15f{bottom:442.990350px;}
.y130{bottom:444.298500px;}
.ydc{bottom:444.980850px;}
.y10c{bottom:449.179500px;}
.y2d{bottom:452.304450px;}
.yaa{bottom:452.624550px;}
.y8c{bottom:457.030350px;}
.y37{bottom:459.125100px;}
.ydb{bottom:465.980850px;}
.y2c{bottom:468.504450px;}
.y15e{bottom:469.495350px;}
.ya9{bottom:470.624550px;}
.y12f{bottom:470.803500px;}
.y8b{bottom:475.030350px;}
.y10b{bottom:475.684500px;}
.y36{bottom:477.125100px;}
.yda{bottom:486.980850px;}
.y15d{bottom:487.495350px;}
.ya8{bottom:488.624550px;}
.y12e{bottom:488.803500px;}
.y8a{bottom:493.030350px;}
.y2b{bottom:493.209450px;}
.y10a{bottom:493.684500px;}
.y35{bottom:495.125100px;}
.y15c{bottom:505.495350px;}
.ya7{bottom:506.624550px;}
.y12d{bottom:506.803500px;}
.yd9{bottom:507.980850px;}
.y2a{bottom:509.409450px;}
.y89{bottom:511.030350px;}
.y109{bottom:511.684500px;}
.y34{bottom:517.370100px;}
.yd8{bottom:522.380850px;}
.ya6{bottom:524.624550px;}
.y12c{bottom:524.803500px;}
.y88{bottom:529.030350px;}
.y108{bottom:529.684500px;}
.y15b{bottom:532.000350px;}
.y18{bottom:540.658050px;}
.y87{bottom:547.030350px;}
.y107{bottom:547.684500px;}
.yd7{bottom:548.004150px;}
.y15a{bottom:550.000350px;}
.ya5{bottom:551.129550px;}
.y12b{bottom:551.308500px;}
.y17{bottom:556.858050px;}
.y58{bottom:564.877650px;}
.y86{bottom:565.030350px;}
.y106{bottom:565.684500px;}
.y159{bottom:568.000350px;}
.ya4{bottom:569.129550px;}
.y12a{bottom:569.308500px;}
.y16{bottom:573.058050px;}
.y57{bottom:582.877650px;}
.y85{bottom:583.030350px;}
.yba{bottom:583.359450px;}
.y105{bottom:583.684500px;}
.y176{bottom:586.000350px;}
.ya3{bottom:587.129550px;}
.y129{bottom:587.308500px;}
.y15{bottom:589.258050px;}
.y158{bottom:594.505350px;}
.y84{bottom:601.030350px;}
.yb9{bottom:601.359450px;}
.y104{bottom:601.684500px;}
.y56{bottom:605.129550px;}
.y14{bottom:605.458050px;}
.y157{bottom:612.505350px;}
.y128{bottom:613.813500px;}
.y83{bottom:619.030350px;}
.yb8{bottom:619.359450px;}
.y103{bottom:619.684500px;}
.y13{bottom:621.658050px;}
.ya2{bottom:623.129550px;}
.y156{bottom:630.505350px;}
.y127{bottom:631.813500px;}
.y55{bottom:633.433650px;}
.y82{bottom:637.030350px;}
.yb7{bottom:637.359450px;}
.y102{bottom:637.684500px;}
.ya1{bottom:641.129550px;}
.y12{bottom:646.363050px;}
.y175{bottom:648.505350px;}
.y126{bottom:649.813500px;}
.y54{bottom:651.433650px;}
.yb6{bottom:655.359450px;}
.y101{bottom:655.684500px;}
.y155{bottom:657.010350px;}
.y11{bottom:662.563050px;}
.ya0{bottom:663.381600px;}
.y81{bottom:663.535350px;}
.y53{bottom:669.433650px;}
.yb5{bottom:673.359450px;}
.y100{bottom:673.684500px;}
.y154{bottom:675.010350px;}
.y125{bottom:676.318500px;}
.y80{bottom:681.535350px;}
.y9f{bottom:687.433500px;}
.y52{bottom:687.433650px;}
.y153{bottom:693.010350px;}
.y124{bottom:694.318500px;}
.y10{bottom:695.182650px;}
.yb4{bottom:695.611350px;}
.y7f{bottom:699.535350px;}
.yff{bottom:700.189500px;}
.y51{bottom:705.433650px;}
.yf{bottom:709.582650px;}
.y174{bottom:711.010350px;}
.y123{bottom:712.318500px;}
.y7e{bottom:717.535350px;}
.yfe{bottom:718.189500px;}
.y152{bottom:719.515350px;}
.y50{bottom:723.433650px;}
.yb3{bottom:723.915300px;}
.y7d{bottom:735.535350px;}
.yfd{bottom:736.189500px;}
.y151{bottom:737.515350px;}
.ye{bottom:738.445050px;}
.y122{bottom:738.823500px;}
.y4f{bottom:741.433650px;}
.yb2{bottom:741.915300px;}
.y7c{bottom:753.535350px;}
.yfc{bottom:754.189500px;}
.y150{bottom:755.515350px;}
.y121{bottom:756.823500px;}
.y4e{bottom:759.433650px;}
.yb1{bottom:759.915300px;}
.yd{bottom:760.690050px;}
.y7b{bottom:771.535350px;}
.yfb{bottom:772.189500px;}
.y173{bottom:773.515350px;}
.y120{bottom:774.823500px;}
.y4d{bottom:777.433650px;}
.yb0{bottom:777.915300px;}
.yc{bottom:778.690050px;}
.y14f{bottom:782.020350px;}
.y7a{bottom:789.535350px;}
.yfa{bottom:790.189500px;}
.y11f{bottom:792.823500px;}
.y4c{bottom:795.433650px;}
.yb{bottom:796.690050px;}
.y14e{bottom:800.020350px;}
.y79{bottom:807.535350px;}
.yf9{bottom:808.189500px;}
.y4b{bottom:813.433650px;}
.y14d{bottom:818.020350px;}
.yd5{bottom:818.424150px;}
.ya{bottom:818.935050px;}
.y11e{bottom:819.328500px;}
.y78{bottom:825.535350px;}
.yd4{bottom:825.624150px;}
.yf8{bottom:826.189500px;}
.y4a{bottom:831.433650px;}
.yd6{bottom:832.824150px;}
.y14c{bottom:836.020350px;}
.y9{bottom:836.935050px;}
.y11d{bottom:837.328500px;}
.y77{bottom:843.535350px;}
.yf7{bottom:844.189500px;}
.y49{bottom:849.433650px;}
.yd2{bottom:853.824150px;}
.y11c{bottom:855.328500px;}
.yd1{bottom:861.024150px;}
.yf6{bottom:862.189500px;}
.y14b{bottom:862.525350px;}
.y48{bottom:867.433650px;}
.yd3{bottom:868.224150px;}
.y76{bottom:870.040350px;}
.y29{bottom:872.596800px;}
.yf5{bottom:880.189500px;}
.y14a{bottom:880.525350px;}
.y11b{bottom:881.833500px;}
.y47{bottom:885.433650px;}
.y75{bottom:888.040350px;}
.y28{bottom:888.796800px;}
.ycf{bottom:889.224150px;}
.yce{bottom:896.424150px;}
.yf4{bottom:898.189500px;}
.y149{bottom:898.525350px;}
.y11a{bottom:899.833500px;}
.y46{bottom:903.433650px;}
.yd0{bottom:903.624150px;}
.y74{bottom:906.040350px;}
.yf3{bottom:916.189500px;}
.y172{bottom:916.525350px;}
.y119{bottom:917.833500px;}
.y45{bottom:921.433650px;}
.y73{bottom:924.040350px;}
.ycc{bottom:924.624150px;}
.y148{bottom:925.030350px;}
.y8{bottom:927.283650px;}
.ycb{bottom:931.824150px;}
.yf2{bottom:934.189500px;}
.y118{bottom:935.833500px;}
.ycd{bottom:939.024150px;}
.y44{bottom:939.433650px;}
.y72{bottom:942.040350px;}
.y147{bottom:943.030350px;}
.y117{bottom:953.833500px;}
.yf1{bottom:956.441400px;}
.y43{bottom:957.433650px;}
.yc9{bottom:960.024150px;}
.y71{bottom:960.040350px;}
.y146{bottom:961.030350px;}
.y7{bottom:963.435150px;}
.yc8{bottom:967.224150px;}
.yca{bottom:974.424150px;}
.y116{bottom:976.085550px;}
.y70{bottom:978.040350px;}
.y171{bottom:979.030350px;}
.y42{bottom:979.685550px;}
.yf0{bottom:986.545350px;}
.y145{bottom:987.535350px;}
.y6{bottom:990.439650px;}
.yc6{bottom:995.424150px;}
.y6f{bottom:996.040350px;}
.yc5{bottom:1002.624150px;}
.yef{bottom:1004.545350px;}
.y144{bottom:1005.535350px;}
.y115{bottom:1006.189500px;}
.y41{bottom:1007.989500px;}
.yc7{bottom:1009.824150px;}
.y6e{bottom:1014.040350px;}
.yee{bottom:1022.545350px;}
.y143{bottom:1023.535350px;}
.y114{bottom:1024.189500px;}
.y40{bottom:1025.989500px;}
.y5{bottom:1030.159650px;}
.yc3{bottom:1030.824150px;}
.y6d{bottom:1032.040350px;}
.yc2{bottom:1038.024150px;}
.y9e{bottom:1040.545350px;}
.y142{bottom:1041.535350px;}
.y113{bottom:1042.189500px;}
.yc4{bottom:1045.224150px;}
.y3f{bottom:1048.241400px;}
.y6c{bottom:1050.040350px;}
.y9d{bottom:1058.545350px;}
.y112{bottom:1064.441400px;}
.yc0{bottom:1066.224150px;}
.y4{bottom:1067.671650px;}
.y6b{bottom:1068.040350px;}
.ybf{bottom:1073.424150px;}
.y3e{bottom:1076.545350px;}
.yc1{bottom:1080.624150px;}
.y6a{bottom:1086.040350px;}
.y3d{bottom:1094.545350px;}
.ybe{bottom:1101.624150px;}
.y141{bottom:1104.040350px;}
.y3{bottom:1105.183650px;}
.y3c{bottom:1112.545350px;}
.ybd{bottom:1116.024150px;}
.y3b{bottom:1130.545350px;}
.ybc{bottom:1140.096150px;}
.y2{bottom:1142.695650px;}
.y3a{bottom:1148.545350px;}
.y39{bottom:1166.545350px;}
.ybb{bottom:1168.795350px;}
.y32{bottom:1218.693900px;}
.h10{height:34.080000px;}
.h9{height:34.453125px;}
.h11{height:34.608000px;}
.hc{height:36.966797px;}
.he{height:37.415039px;}
.hb{height:38.759766px;}
.h8{height:41.572266px;}
.h6{height:43.066406px;}
.h13{height:44.216631px;}
.h2{height:44.534180px;}
.hf{height:45.246094px;}
.h7{height:49.482422px;}
.hd{height:54.430664px;}
.ha{height:59.378906px;}
.h12{height:63.408000px;}
.h5{height:64.327148px;}
.h4{height:80.070000px;}
.h3{height:113.040000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:83.622000px;}
.x1{left:85.039350px;}
.x34{left:90.704100px;}
.xf{left:91.795350px;}
.x10{left:97.327350px;}
.x8{left:98.545350px;}
.x2{left:106.316700px;}
.xb{left:121.872300px;}
.xd{left:128.584350px;}
.x3{left:130.365450px;}
.xe{left:186.967350px;}
.x7{left:211.166400px;}
.x12{left:226.531350px;}
.x4{left:231.421950px;}
.x11{left:232.795350px;}
.x2a{left:264.044100px;}
.x2b{left:296.624100px;}
.x14{left:306.955350px;}
.x13{left:310.627350px;}
.x2c{left:385.340100px;}
.x16{left:400.111350px;}
.xa{left:402.260850px;}
.x2d{left:403.616100px;}
.x15{left:414.967350px;}
.x1e{left:422.407350px;}
.x35{left:450.708600px;}
.x2e{left:495.884100px;}
.x17{left:497.827350px;}
.x2f{left:511.412100px;}
.x20{left:513.715350px;}
.x1f{left:522.043350px;}
.x9{left:575.816850px;}
.x18{left:578.611350px;}
.x19{left:581.683350px;}
.x22{left:591.427350px;}
.x27{left:599.767350px;}
.x21{left:602.827350px;}
.x30{left:612.680100px;}
.x31{left:618.128100px;}
.x6{left:642.907800px;}
.x5{left:656.467800px;}
.x1a{left:658.039350px;}
.x1b{left:663.487350px;}
.x28{left:666.067350px;}
.x24{left:669.139350px;}
.x23{left:680.539350px;}
.x33{left:723.644100px;}
.x32{left:732.164100px;}
.x1d{left:739.231350px;}
.x1c{left:747.751350px;}
.x26{left:753.007350px;}
.x29{left:761.335350px;}
.x25{left:764.407350px;}
@media print{
.v2{vertical-align:-37.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:25.600000pt;}
.ls11{letter-spacing:-2.026667pt;}
.ls1c{letter-spacing:-1.440000pt;}
.lsf{letter-spacing:-1.013333pt;}
.ls1{letter-spacing:-0.693333pt;}
.ls1a{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.426667pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.746667pt;}
.lsd{letter-spacing:0.800000pt;}
.lse{letter-spacing:0.805333pt;}
.ls8{letter-spacing:0.976000pt;}
.ls9{letter-spacing:0.992000pt;}
.lsa{letter-spacing:1.760000pt;}
.lsc{letter-spacing:1.856000pt;}
.ls7{letter-spacing:2.026667pt;}
.ls4{letter-spacing:2.133333pt;}
.ls5{letter-spacing:2.720000pt;}
.ls15{letter-spacing:3.093333pt;}
.ls17{letter-spacing:3.301333pt;}
.ls16{letter-spacing:3.306667pt;}
.ls1b{letter-spacing:5.173333pt;}
.ls3{letter-spacing:5.653333pt;}
.ls19{letter-spacing:8.165333pt;}
.ls12{letter-spacing:335.189333pt;}
.ls13{letter-spacing:373.717333pt;}
.ws25{word-spacing:-382.336000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws2e{word-spacing:-12.533333pt;}
.ws0{word-spacing:-12.053333pt;}
.ws3{word-spacing:-11.626667pt;}
.wsc{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.848000pt;}
.ws49{word-spacing:-10.613333pt;}
.ws2a{word-spacing:-9.642667pt;}
.ws26{word-spacing:-9.045333pt;}
.ws1c{word-spacing:-7.765333pt;}
.ws1f{word-spacing:-7.381333pt;}
.ws29{word-spacing:-7.027093pt;}
.ws35{word-spacing:-2.880000pt;}
.ws18{word-spacing:-2.026667pt;}
.ws4b{word-spacing:-1.866667pt;}
.ws4c{word-spacing:-1.653333pt;}
.ws46{word-spacing:-1.546667pt;}
.ws44{word-spacing:-1.493333pt;}
.ws6{word-spacing:-1.120000pt;}
.ws43{word-spacing:-0.960000pt;}
.ws39{word-spacing:-0.906667pt;}
.wsd{word-spacing:-0.853333pt;}
.ws11{word-spacing:-0.693333pt;}
.ws3a{word-spacing:-0.640000pt;}
.ws50{word-spacing:-0.533333pt;}
.wse{word-spacing:-0.480000pt;}
.ws32{word-spacing:-0.426667pt;}
.ws41{word-spacing:-0.160000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.106667pt;}
.ws8{word-spacing:0.213333pt;}
.wsb{word-spacing:0.266667pt;}
.ws28{word-spacing:0.426667pt;}
.ws1a{word-spacing:0.480000pt;}
.ws48{word-spacing:0.533333pt;}
.ws7{word-spacing:0.693333pt;}
.ws15{word-spacing:0.800000pt;}
.ws4f{word-spacing:0.853333pt;}
.wsf{word-spacing:1.013333pt;}
.ws10{word-spacing:1.280000pt;}
.ws13{word-spacing:1.386667pt;}
.ws31{word-spacing:1.600000pt;}
.ws37{word-spacing:1.653333pt;}
.ws2f{word-spacing:1.706667pt;}
.ws14{word-spacing:1.813333pt;}
.ws45{word-spacing:1.920000pt;}
.ws19{word-spacing:2.026667pt;}
.ws16{word-spacing:2.293333pt;}
.ws9{word-spacing:2.346667pt;}
.ws36{word-spacing:2.773333pt;}
.ws3c{word-spacing:2.826667pt;}
.ws38{word-spacing:2.933333pt;}
.ws51{word-spacing:2.986667pt;}
.ws2b{word-spacing:3.093333pt;}
.ws12{word-spacing:3.200000pt;}
.ws2c{word-spacing:3.306667pt;}
.ws3f{word-spacing:3.413333pt;}
.ws33{word-spacing:3.520000pt;}
.ws4d{word-spacing:3.626667pt;}
.ws17{word-spacing:3.893333pt;}
.ws40{word-spacing:4.053333pt;}
.ws47{word-spacing:4.160000pt;}
.ws42{word-spacing:4.426667pt;}
.ws4e{word-spacing:4.746667pt;}
.ws4a{word-spacing:5.120000pt;}
.ws52{word-spacing:5.173333pt;}
.ws3b{word-spacing:5.226667pt;}
.ws3e{word-spacing:5.386667pt;}
.wsa{word-spacing:5.653333pt;}
.ws2d{word-spacing:6.485333pt;}
.ws34{word-spacing:6.506667pt;}
.ws30{word-spacing:7.093333pt;}
.ws3d{word-spacing:8.160000pt;}
.ws5{word-spacing:10.080000pt;}
.ws1e{word-spacing:156.160000pt;}
.ws21{word-spacing:287.658667pt;}
.ws24{word-spacing:326.144000pt;}
.ws23{word-spacing:326.570667pt;}
.ws22{word-spacing:365.098667pt;}
.ws1d{word-spacing:413.738667pt;}
.ws20{word-spacing:502.101333pt;}
.ws27{word-spacing:540.586667pt;}
._22{margin-left:-38.528000pt;}
._24{margin-left:-11.534400pt;}
._4{margin-left:-6.283733pt;}
._6{margin-left:-5.198400pt;}
._2{margin-left:-4.003200pt;}
._3{margin-left:-2.466133pt;}
._1{margin-left:-1.224000pt;}
._7{width:1.189333pt;}
._9{width:2.127467pt;}
._8{width:3.269333pt;}
._a{width:4.874667pt;}
._e{width:6.127467pt;}
._d{width:7.104000pt;}
._c{width:8.045333pt;}
._5{width:9.812267pt;}
._19{width:160.640000pt;}
._17{width:179.242667pt;}
._12{width:187.093333pt;}
._16{width:198.789333pt;}
._18{width:217.813333pt;}
._11{width:233.514667pt;}
._14{width:268.872000pt;}
._23{width:274.228800pt;}
._13{width:280.064000pt;}
._15{width:298.709333pt;}
._1b{width:335.445333pt;}
._1a{width:368.896000pt;}
._1d{width:370.261333pt;}
._1f{width:373.717333pt;}
._1e{width:377.818667pt;}
._21{width:408.746667pt;}
._1c{width:481.565333pt;}
._20{width:520.050667pt;}
._10{width:810.154667pt;}
._f{width:999.024000pt;}
._b{width:1023.408000pt;}
._0{width:1204.176000pt;}
.fs8{font-size:31.093333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.133867pt;}
.y33{bottom:41.645733pt;}
.y111{bottom:73.026800pt;}
.yed{bottom:78.205200pt;}
.y27{bottom:79.608933pt;}
.y69{bottom:81.605333pt;}
.y110{bottom:85.826800pt;}
.yaf{bottom:91.212533pt;}
.y170{bottom:91.529200pt;}
.y26{bottom:95.608933pt;}
.yec{bottom:96.871867pt;}
.y68{bottom:97.605333pt;}
.y140{bottom:101.132000pt;}
.y16f{bottom:107.529200pt;}
.y9c{bottom:109.255867pt;}
.y25{bottom:111.608933pt;}
.y67{bottom:113.605333pt;}
.yeb{bottom:115.538533pt;}
.y13f{bottom:117.132000pt;}
.y16e{bottom:123.529200pt;}
.y9b{bottom:125.255867pt;}
.y24{bottom:127.608933pt;}
.y66{bottom:129.605333pt;}
.y13e{bottom:133.132000pt;}
.yea{bottom:134.205200pt;}
.y23{bottom:143.608933pt;}
.y65{bottom:145.605333pt;}
.y16d{bottom:147.089200pt;}
.y9a{bottom:148.815867pt;}
.ye9{bottom:152.871867pt;}
.y13d{bottom:156.692000pt;}
.y22{bottom:159.608933pt;}
.y64{bottom:161.605333pt;}
.y16c{bottom:163.089200pt;}
.y99{bottom:164.815867pt;}
.ye8{bottom:171.538533pt;}
.y13c{bottom:172.692000pt;}
.y21{bottom:175.608933pt;}
.y63{bottom:177.605333pt;}
.y16b{bottom:179.089200pt;}
.y98{bottom:180.815867pt;}
.y13b{bottom:188.692000pt;}
.ye7{bottom:190.205200pt;}
.y20{bottom:191.608933pt;}
.y16a{bottom:195.089200pt;}
.y97{bottom:196.815867pt;}
.y62{bottom:201.165333pt;}
.y1f{bottom:207.608933pt;}
.ye6{bottom:208.871867pt;}
.y13a{bottom:212.252000pt;}
.y96{bottom:216.595333pt;}
.y61{bottom:217.165333pt;}
.y169{bottom:218.649200pt;}
.y1e{bottom:223.608933pt;}
.ye5{bottom:227.538533pt;}
.y139{bottom:228.252000pt;}
.y60{bottom:233.165333pt;}
.y168{bottom:234.649200pt;}
.y1d{bottom:239.608933pt;}
.y95{bottom:243.369200pt;}
.y138{bottom:244.252000pt;}
.ye4{bottom:246.205200pt;}
.y5f{bottom:249.165333pt;}
.y167{bottom:250.649200pt;}
.y1c{bottom:255.608933pt;}
.y94{bottom:259.369200pt;}
.ye3{bottom:264.871867pt;}
.y5e{bottom:265.165333pt;}
.y137{bottom:267.812000pt;}
.y1b{bottom:271.608933pt;}
.y166{bottom:274.209200pt;}
.y5d{bottom:281.165333pt;}
.y93{bottom:282.929200pt;}
.ye2{bottom:283.538533pt;}
.y136{bottom:283.812000pt;}
.y1a{bottom:287.608933pt;}
.y165{bottom:290.209200pt;}
.y5c{bottom:297.165333pt;}
.y92{bottom:298.929200pt;}
.y135{bottom:299.812000pt;}
.ye1{bottom:302.205200pt;}
.y164{bottom:306.209200pt;}
.y19{bottom:307.388533pt;}
.y5b{bottom:313.165333pt;}
.y91{bottom:318.702533pt;}
.ye0{bottom:320.871867pt;}
.y163{bottom:322.209200pt;}
.y134{bottom:323.372000pt;}
.y5a{bottom:329.165333pt;}
.y90{bottom:334.702533pt;}
.yae{bottom:338.332933pt;}
.y133{bottom:339.372000pt;}
.ydf{bottom:339.538533pt;}
.y31{bottom:344.448400pt;}
.y162{bottom:345.769200pt;}
.y59{bottom:348.944800pt;}
.y10f{bottom:351.270667pt;}
.yad{bottom:354.332933pt;}
.y8f{bottom:354.475867pt;}
.y132{bottom:355.372000pt;}
.yde{bottom:358.205200pt;}
.y30{bottom:358.848400pt;}
.y161{bottom:361.769200pt;}
.y10e{bottom:367.270667pt;}
.yac{bottom:370.332933pt;}
.y8e{bottom:370.475867pt;}
.y2f{bottom:373.248400pt;}
.ydd{bottom:376.871867pt;}
.y160{bottom:377.769200pt;}
.y131{bottom:378.932000pt;}
.y10d{bottom:383.270667pt;}
.yab{bottom:386.332933pt;}
.y2e{bottom:387.648400pt;}
.y8d{bottom:390.249200pt;}
.y38{bottom:392.111200pt;}
.y15f{bottom:393.769200pt;}
.y130{bottom:394.932000pt;}
.ydc{bottom:395.538533pt;}
.y10c{bottom:399.270667pt;}
.y2d{bottom:402.048400pt;}
.yaa{bottom:402.332933pt;}
.y8c{bottom:406.249200pt;}
.y37{bottom:408.111200pt;}
.ydb{bottom:414.205200pt;}
.y2c{bottom:416.448400pt;}
.y15e{bottom:417.329200pt;}
.ya9{bottom:418.332933pt;}
.y12f{bottom:418.492000pt;}
.y8b{bottom:422.249200pt;}
.y10b{bottom:422.830667pt;}
.y36{bottom:424.111200pt;}
.yda{bottom:432.871867pt;}
.y15d{bottom:433.329200pt;}
.ya8{bottom:434.332933pt;}
.y12e{bottom:434.492000pt;}
.y8a{bottom:438.249200pt;}
.y2b{bottom:438.408400pt;}
.y10a{bottom:438.830667pt;}
.y35{bottom:440.111200pt;}
.y15c{bottom:449.329200pt;}
.ya7{bottom:450.332933pt;}
.y12d{bottom:450.492000pt;}
.yd9{bottom:451.538533pt;}
.y2a{bottom:452.808400pt;}
.y89{bottom:454.249200pt;}
.y109{bottom:454.830667pt;}
.y34{bottom:459.884533pt;}
.yd8{bottom:464.338533pt;}
.ya6{bottom:466.332933pt;}
.y12c{bottom:466.492000pt;}
.y88{bottom:470.249200pt;}
.y108{bottom:470.830667pt;}
.y15b{bottom:472.889200pt;}
.y18{bottom:480.584933pt;}
.y87{bottom:486.249200pt;}
.y107{bottom:486.830667pt;}
.yd7{bottom:487.114800pt;}
.y15a{bottom:488.889200pt;}
.ya5{bottom:489.892933pt;}
.y12b{bottom:490.052000pt;}
.y17{bottom:494.984933pt;}
.y58{bottom:502.113467pt;}
.y86{bottom:502.249200pt;}
.y106{bottom:502.830667pt;}
.y159{bottom:504.889200pt;}
.ya4{bottom:505.892933pt;}
.y12a{bottom:506.052000pt;}
.y16{bottom:509.384933pt;}
.y57{bottom:518.113467pt;}
.y85{bottom:518.249200pt;}
.yba{bottom:518.541733pt;}
.y105{bottom:518.830667pt;}
.y176{bottom:520.889200pt;}
.ya3{bottom:521.892933pt;}
.y129{bottom:522.052000pt;}
.y15{bottom:523.784933pt;}
.y158{bottom:528.449200pt;}
.y84{bottom:534.249200pt;}
.yb9{bottom:534.541733pt;}
.y104{bottom:534.830667pt;}
.y56{bottom:537.892933pt;}
.y14{bottom:538.184933pt;}
.y157{bottom:544.449200pt;}
.y128{bottom:545.612000pt;}
.y83{bottom:550.249200pt;}
.yb8{bottom:550.541733pt;}
.y103{bottom:550.830667pt;}
.y13{bottom:552.584933pt;}
.ya2{bottom:553.892933pt;}
.y156{bottom:560.449200pt;}
.y127{bottom:561.612000pt;}
.y55{bottom:563.052133pt;}
.y82{bottom:566.249200pt;}
.yb7{bottom:566.541733pt;}
.y102{bottom:566.830667pt;}
.ya1{bottom:569.892933pt;}
.y12{bottom:574.544933pt;}
.y175{bottom:576.449200pt;}
.y126{bottom:577.612000pt;}
.y54{bottom:579.052133pt;}
.yb6{bottom:582.541733pt;}
.y101{bottom:582.830667pt;}
.y155{bottom:584.009200pt;}
.y11{bottom:588.944933pt;}
.ya0{bottom:589.672533pt;}
.y81{bottom:589.809200pt;}
.y53{bottom:595.052133pt;}
.yb5{bottom:598.541733pt;}
.y100{bottom:598.830667pt;}
.y154{bottom:600.009200pt;}
.y125{bottom:601.172000pt;}
.y80{bottom:605.809200pt;}
.y9f{bottom:611.052000pt;}
.y52{bottom:611.052133pt;}
.y153{bottom:616.009200pt;}
.y124{bottom:617.172000pt;}
.y10{bottom:617.940133pt;}
.yb4{bottom:618.321200pt;}
.y7f{bottom:621.809200pt;}
.yff{bottom:622.390667pt;}
.y51{bottom:627.052133pt;}
.yf{bottom:630.740133pt;}
.y174{bottom:632.009200pt;}
.y123{bottom:633.172000pt;}
.y7e{bottom:637.809200pt;}
.yfe{bottom:638.390667pt;}
.y152{bottom:639.569200pt;}
.y50{bottom:643.052133pt;}
.yb3{bottom:643.480267pt;}
.y7d{bottom:653.809200pt;}
.yfd{bottom:654.390667pt;}
.y151{bottom:655.569200pt;}
.ye{bottom:656.395600pt;}
.y122{bottom:656.732000pt;}
.y4f{bottom:659.052133pt;}
.yb2{bottom:659.480267pt;}
.y7c{bottom:669.809200pt;}
.yfc{bottom:670.390667pt;}
.y150{bottom:671.569200pt;}
.y121{bottom:672.732000pt;}
.y4e{bottom:675.052133pt;}
.yb1{bottom:675.480267pt;}
.yd{bottom:676.168933pt;}
.y7b{bottom:685.809200pt;}
.yfb{bottom:686.390667pt;}
.y173{bottom:687.569200pt;}
.y120{bottom:688.732000pt;}
.y4d{bottom:691.052133pt;}
.yb0{bottom:691.480267pt;}
.yc{bottom:692.168933pt;}
.y14f{bottom:695.129200pt;}
.y7a{bottom:701.809200pt;}
.yfa{bottom:702.390667pt;}
.y11f{bottom:704.732000pt;}
.y4c{bottom:707.052133pt;}
.yb{bottom:708.168933pt;}
.y14e{bottom:711.129200pt;}
.y79{bottom:717.809200pt;}
.yf9{bottom:718.390667pt;}
.y4b{bottom:723.052133pt;}
.y14d{bottom:727.129200pt;}
.yd5{bottom:727.488133pt;}
.ya{bottom:727.942267pt;}
.y11e{bottom:728.292000pt;}
.y78{bottom:733.809200pt;}
.yd4{bottom:733.888133pt;}
.yf8{bottom:734.390667pt;}
.y4a{bottom:739.052133pt;}
.yd6{bottom:740.288133pt;}
.y14c{bottom:743.129200pt;}
.y9{bottom:743.942267pt;}
.y11d{bottom:744.292000pt;}
.y77{bottom:749.809200pt;}
.yf7{bottom:750.390667pt;}
.y49{bottom:755.052133pt;}
.yd2{bottom:758.954800pt;}
.y11c{bottom:760.292000pt;}
.yd1{bottom:765.354800pt;}
.yf6{bottom:766.390667pt;}
.y14b{bottom:766.689200pt;}
.y48{bottom:771.052133pt;}
.yd3{bottom:771.754800pt;}
.y76{bottom:773.369200pt;}
.y29{bottom:775.641600pt;}
.yf5{bottom:782.390667pt;}
.y14a{bottom:782.689200pt;}
.y11b{bottom:783.852000pt;}
.y47{bottom:787.052133pt;}
.y75{bottom:789.369200pt;}
.y28{bottom:790.041600pt;}
.ycf{bottom:790.421467pt;}
.yce{bottom:796.821467pt;}
.yf4{bottom:798.390667pt;}
.y149{bottom:798.689200pt;}
.y11a{bottom:799.852000pt;}
.y46{bottom:803.052133pt;}
.yd0{bottom:803.221467pt;}
.y74{bottom:805.369200pt;}
.yf3{bottom:814.390667pt;}
.y172{bottom:814.689200pt;}
.y119{bottom:815.852000pt;}
.y45{bottom:819.052133pt;}
.y73{bottom:821.369200pt;}
.ycc{bottom:821.888133pt;}
.y148{bottom:822.249200pt;}
.y8{bottom:824.252133pt;}
.ycb{bottom:828.288133pt;}
.yf2{bottom:830.390667pt;}
.y118{bottom:831.852000pt;}
.ycd{bottom:834.688133pt;}
.y44{bottom:835.052133pt;}
.y72{bottom:837.369200pt;}
.y147{bottom:838.249200pt;}
.y117{bottom:847.852000pt;}
.yf1{bottom:850.170133pt;}
.y43{bottom:851.052133pt;}
.yc9{bottom:853.354800pt;}
.y71{bottom:853.369200pt;}
.y146{bottom:854.249200pt;}
.y7{bottom:856.386800pt;}
.yc8{bottom:859.754800pt;}
.yca{bottom:866.154800pt;}
.y116{bottom:867.631600pt;}
.y70{bottom:869.369200pt;}
.y171{bottom:870.249200pt;}
.y42{bottom:870.831600pt;}
.yf0{bottom:876.929200pt;}
.y145{bottom:877.809200pt;}
.y6{bottom:880.390800pt;}
.yc6{bottom:884.821467pt;}
.y6f{bottom:885.369200pt;}
.yc5{bottom:891.221467pt;}
.yef{bottom:892.929200pt;}
.y144{bottom:893.809200pt;}
.y115{bottom:894.390667pt;}
.y41{bottom:895.990667pt;}
.yc7{bottom:897.621467pt;}
.y6e{bottom:901.369200pt;}
.yee{bottom:908.929200pt;}
.y143{bottom:909.809200pt;}
.y114{bottom:910.390667pt;}
.y40{bottom:911.990667pt;}
.y5{bottom:915.697467pt;}
.yc3{bottom:916.288133pt;}
.y6d{bottom:917.369200pt;}
.yc2{bottom:922.688133pt;}
.y9e{bottom:924.929200pt;}
.y142{bottom:925.809200pt;}
.y113{bottom:926.390667pt;}
.yc4{bottom:929.088133pt;}
.y3f{bottom:931.770133pt;}
.y6c{bottom:933.369200pt;}
.y9d{bottom:940.929200pt;}
.y112{bottom:946.170133pt;}
.yc0{bottom:947.754800pt;}
.y4{bottom:949.041467pt;}
.y6b{bottom:949.369200pt;}
.ybf{bottom:954.154800pt;}
.y3e{bottom:956.929200pt;}
.yc1{bottom:960.554800pt;}
.y6a{bottom:965.369200pt;}
.y3d{bottom:972.929200pt;}
.ybe{bottom:979.221467pt;}
.y141{bottom:981.369200pt;}
.y3{bottom:982.385467pt;}
.y3c{bottom:988.929200pt;}
.ybd{bottom:992.021467pt;}
.y3b{bottom:1004.929200pt;}
.ybc{bottom:1013.418800pt;}
.y2{bottom:1015.729467pt;}
.y3a{bottom:1020.929200pt;}
.y39{bottom:1036.929200pt;}
.ybb{bottom:1038.929200pt;}
.y32{bottom:1083.283467pt;}
.h10{height:30.293333pt;}
.h9{height:30.625000pt;}
.h11{height:30.762667pt;}
.hc{height:32.859375pt;}
.he{height:33.257812pt;}
.hb{height:34.453125pt;}
.h8{height:36.953125pt;}
.h6{height:38.281250pt;}
.h13{height:39.303672pt;}
.h2{height:39.585938pt;}
.hf{height:40.218750pt;}
.h7{height:43.984375pt;}
.hd{height:48.382812pt;}
.ha{height:52.781250pt;}
.h12{height:56.362667pt;}
.h5{height:57.179688pt;}
.h4{height:71.173333pt;}
.h3{height:100.480000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:74.330667pt;}
.x1{left:75.590533pt;}
.x34{left:80.625867pt;}
.xf{left:81.595867pt;}
.x10{left:86.513200pt;}
.x8{left:87.595867pt;}
.x2{left:94.503733pt;}
.xb{left:108.330933pt;}
.xd{left:114.297200pt;}
.x3{left:115.880400pt;}
.xe{left:166.193200pt;}
.x7{left:187.703467pt;}
.x12{left:201.361200pt;}
.x4{left:205.708400pt;}
.x11{left:206.929200pt;}
.x2a{left:234.705867pt;}
.x2b{left:263.665867pt;}
.x14{left:272.849200pt;}
.x13{left:276.113200pt;}
.x2c{left:342.524533pt;}
.x16{left:355.654533pt;}
.xa{left:357.565200pt;}
.x2d{left:358.769867pt;}
.x15{left:368.859867pt;}
.x1e{left:375.473200pt;}
.x35{left:400.629867pt;}
.x2e{left:440.785867pt;}
.x17{left:442.513200pt;}
.x2f{left:454.588533pt;}
.x20{left:456.635867pt;}
.x1f{left:464.038533pt;}
.x9{left:511.837200pt;}
.x18{left:514.321200pt;}
.x19{left:517.051867pt;}
.x22{left:525.713200pt;}
.x27{left:533.126533pt;}
.x21{left:535.846533pt;}
.x30{left:544.604533pt;}
.x31{left:549.447200pt;}
.x6{left:571.473600pt;}
.x5{left:583.526933pt;}
.x1a{left:584.923867pt;}
.x1b{left:589.766533pt;}
.x28{left:592.059867pt;}
.x24{left:594.790533pt;}
.x23{left:604.923867pt;}
.x33{left:643.239200pt;}
.x32{left:650.812533pt;}
.x1d{left:657.094533pt;}
.x1c{left:664.667867pt;}
.x26{left:669.339867pt;}
.x29{left:676.742533pt;}
.x25{left:679.473200pt;}
}




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