
    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_321848ab0384496d7df6cb8f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3d7f8e4f0247ca598077bf59.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4febc72ab1c98edf821a3044.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_362b278ecc0f03237cfa45a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6f5479b88a159b6b6d35d77f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2566a5e48a588743215f90ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2b58b4b3ee06570fd0659953.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-1.260000px;}
.ls12{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.531600px;}
.ls3{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.342600px;}
.lsd{letter-spacing:-0.220800px;}
.lse{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.070560px;}
.lsc{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.612000px;}
.ls15{letter-spacing:0.900000px;}
.ls8{letter-spacing:43.866720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-59.760000px;}
.ws10{word-spacing:-15.552000px;}
.ws9{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wse{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.733600px;}
.ws2{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.479800px;}
.ws3{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.780000px;}
.ws6{word-spacing:-12.437400px;}
.ws5{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.060000px;}
.ws0{word-spacing:0.000000px;}
._d{margin-left:-3.585600px;}
._a{margin-left:-2.151360px;}
._3{margin-left:-1.026000px;}
._0{width:1.135440px;}
._2{width:2.333280px;}
._4{width:3.478080px;}
._7{width:5.139360px;}
._5{width:6.215040px;}
._9{width:7.321680px;}
._8{width:8.546400px;}
._e{width:9.680400px;}
._f{width:11.457360px;}
._6{width:12.609360px;}
._10{width:13.744800px;}
._c{width:16.912080px;}
._b{width:18.226800px;}
._11{width:19.601280px;}
._13{width:21.214800px;}
._15{width:22.350240px;}
._14{width:23.904000px;}
._12{width:25.398000px;}
._19{width:27.011520px;}
._1a{width:28.266480px;}
._1f{width:29.304720px;}
._1d{width:30.537360px;}
._1c{width:31.792320px;}
._16{width:33.704640px;}
._17{width:34.840080px;}
._1b{width:36.095040px;}
._1e{width:37.110960px;}
._22{width:47.270160px;}
._18{width:48.428640px;}
._21{width:49.619280px;}
._20{width:130.456080px;}
._1{width:482.162160px;}
.fc1{color:transparent;}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y131{bottom:2.880000px;}
.y5d{bottom:3.240000px;}
.yf1{bottom:3.960000px;}
.yf3{bottom:5.040000px;}
.y10b{bottom:5.580000px;}
.y10e{bottom:5.760000px;}
.y14f{bottom:5.790000px;}
.y113{bottom:5.940000px;}
.y10d{bottom:6.660000px;}
.y117{bottom:6.705000px;}
.y3f{bottom:10.080000px;}
.y40{bottom:10.620000px;}
.yf5{bottom:11.160000px;}
.yf9{bottom:11.700000px;}
.y172{bottom:11.880000px;}
.yf7{bottom:12.420000px;}
.y3c{bottom:17.460000px;}
.y3a{bottom:18.360000px;}
.y134{bottom:20.520000px;}
.y138{bottom:20.565000px;}
.yf0{bottom:21.960000px;}
.y3d{bottom:24.300000px;}
.y10a{bottom:24.480000px;}
.y3b{bottom:30.060000px;}
.y130{bottom:33.840000px;}
.y133{bottom:37.800000px;}
.y108{bottom:42.480000px;}
.y109{bottom:43.200000px;}
.y6{bottom:50.595005px;}
.y5{bottom:75.795004px;}
.y4{bottom:100.995005px;}
.y23{bottom:139.264499px;}
.y5b{bottom:187.410000px;}
.y1a{bottom:196.933500px;}
.y5a{bottom:208.110000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y59{bottom:228.810000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y52{bottom:237.450000px;}
.y58{bottom:249.510000px;}
.y51{bottom:255.450000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y57{bottom:270.210000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y50{bottom:279.390000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y56{bottom:290.910000px;}
.y4f{bottom:303.510000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y7b{bottom:311.115000px;}
.y55{bottom:311.655000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y4e{bottom:327.495000px;}
.y5c{bottom:331.815000px;}
.y54{bottom:332.355000px;}
.y1ab{bottom:333.435000px;}
.ydb{bottom:335.775000px;}
.y188{bottom:336.495000px;}
.yb7{bottom:339.555000px;}
.y94{bottom:345.495000px;}
.y14d{bottom:347.475000px;}
.y11{bottom:348.133500px;}
.y4d{bottom:351.435000px;}
.yda{bottom:353.775000px;}
.y106{bottom:354.135000px;}
.y12e{bottom:355.755000px;}
.y96{bottom:357.555000px;}
.y187{bottom:360.435000px;}
.y93{bottom:363.495000px;}
.ye1{bottom:367.635000px;}
.y14c{bottom:367.995000px;}
.y4c{bottom:369.435000px;}
.y1a9{bottom:369.795000px;}
.yd9{bottom:371.775000px;}
.yb6{bottom:375.555000px;}
.y105{bottom:378.075000px;}
.y12d{bottom:379.695000px;}
.y92{bottom:381.495000px;}
.y170{bottom:382.035000px;}
.y186{bottom:384.555000px;}
.ye0{bottom:384.915000px;}
.y10{bottom:386.785499px;}
.y4b{bottom:387.435000px;}
.y1a8{bottom:387.795000px;}
.y14b{bottom:388.695000px;}
.yd8{bottom:389.775000px;}
.yb5{bottom:393.555000px;}
.y91{bottom:399.495000px;}
.y16f{bottom:400.035000px;}
.ydf{bottom:402.195000px;}
.y12c{bottom:403.635000px;}
.y4a{bottom:405.435000px;}
.y1a7{bottom:405.795000px;}
.yd7{bottom:407.775000px;}
.yf{bottom:408.044999px;}
.y185{bottom:408.495000px;}
.y14a{bottom:409.215000px;}
.yb4{bottom:411.555000px;}
.y90{bottom:417.495000px;}
.y16e{bottom:418.035000px;}
.yde{bottom:419.475000px;}
.y49{bottom:423.435000px;}
.y1a6{bottom:423.795000px;}
.yd6{bottom:425.775000px;}
.y104{bottom:426.135000px;}
.y184{bottom:426.495000px;}
.y12b{bottom:427.755000px;}
.yb3{bottom:429.555000px;}
.y149{bottom:429.735000px;}
.y8f{bottom:435.495000px;}
.y16d{bottom:436.035000px;}
.ydd{bottom:436.575000px;}
.y48{bottom:441.435000px;}
.y1a5{bottom:441.795000px;}
.yd5{bottom:443.775000px;}
.y183{bottom:444.495000px;}
.yb2{bottom:447.555000px;}
.y103{bottom:450.075000px;}
.y148{bottom:450.435000px;}
.y12a{bottom:451.695000px;}
.y8e{bottom:453.495000px;}
.y16c{bottom:454.035000px;}
.y47{bottom:459.435000px;}
.ydc{bottom:459.795000px;}
.yd4{bottom:461.775000px;}
.y182{bottom:462.495000px;}
.yb1{bottom:465.555000px;}
.y129{bottom:469.695000px;}
.y147{bottom:470.955000px;}
.y8d{bottom:471.495000px;}
.y16b{bottom:472.035000px;}
.y102{bottom:474.195000px;}
.y46{bottom:477.435000px;}
.yd3{bottom:479.775000px;}
.y181{bottom:480.495000px;}
.yb0{bottom:483.555000px;}
.y1a4{bottom:483.915000px;}
.ye{bottom:484.864502px;}
.y128{bottom:487.695000px;}
.yba{bottom:489.495000px;}
.y146{bottom:491.475000px;}
.y45{bottom:495.435000px;}
.y16a{bottom:496.155000px;}
.yd2{bottom:497.775000px;}
.y101{bottom:498.135000px;}
.y180{bottom:498.495000px;}
.yaf{bottom:501.555000px;}
.y1a3{bottom:501.915000px;}
.yd{bottom:502.864502px;}
.y127{bottom:505.695000px;}
.yb9{bottom:507.495000px;}
.y145{bottom:512.175000px;}
.y44{bottom:513.435000px;}
.y169{bottom:514.155000px;}
.yd1{bottom:515.775000px;}
.y100{bottom:516.135000px;}
.y17f{bottom:516.495000px;}
.ybd{bottom:519.555000px;}
.y1a2{bottom:519.915000px;}
.yc{bottom:520.864502px;}
.y126{bottom:523.695000px;}
.yae{bottom:525.495000px;}
.y43{bottom:531.435000px;}
.y144{bottom:532.695000px;}
.yd0{bottom:533.775000px;}
.yff{bottom:534.135000px;}
.y17e{bottom:534.495000px;}
.ybc{bottom:537.555000px;}
.y168{bottom:538.095000px;}
.yb{bottom:538.864499px;}
.y125{bottom:541.695000px;}
.yad{bottom:543.495000px;}
.y1a1{bottom:543.855000px;}
.y79{bottom:549.435000px;}
.ycf{bottom:551.775000px;}
.yfe{bottom:552.135000px;}
.y17d{bottom:552.495000px;}
.y143{bottom:553.395000px;}
.y42{bottom:555.555000px;}
.ya{bottom:556.864499px;}
.y124{bottom:559.695000px;}
.yac{bottom:561.525000px;}
.y1a0{bottom:561.885000px;}
.y167{bottom:565.305000px;}
.y78{bottom:567.465000px;}
.yce{bottom:569.805000px;}
.yfd{bottom:570.165000px;}
.y17c{bottom:570.525000px;}
.y41{bottom:573.225000px;}
.ybb{bottom:573.585000px;}
.y142{bottom:573.945000px;}
.y123{bottom:577.725000px;}
.yab{bottom:579.525000px;}
.y19f{bottom:579.885000px;}
.y77{bottom:585.465000px;}
.y166{bottom:585.825000px;}
.y3e{bottom:587.265000px;}
.ycd{bottom:587.805000px;}
.yfc{bottom:588.165000px;}
.y17b{bottom:588.525000px;}
.y1ae{bottom:591.585000px;}
.y141{bottom:594.465000px;}
.y122{bottom:595.725000px;}
.yaa{bottom:597.525000px;}
.y19e{bottom:597.885000px;}
.y76{bottom:603.465000px;}
.yfb{bottom:604.545000px;}
.ycc{bottom:605.805000px;}
.y165{bottom:606.525000px;}
.y39{bottom:609.225000px;}
.y1aa{bottom:609.585000px;}
.y121{bottom:613.725000px;}
.yfa{bottom:613.905000px;}
.y140{bottom:615.165000px;}
.ya9{bottom:615.525000px;}
.y75{bottom:621.465000px;}
.y19d{bottom:621.825000px;}
.y17a{bottom:624.525000px;}
.y164{bottom:627.045000px;}
.y1ad{bottom:627.585000px;}
.ycb{bottom:629.745000px;}
.y120{bottom:631.725000px;}
.ya8{bottom:633.525000px;}
.y13f{bottom:635.685000px;}
.y74{bottom:639.465000px;}
.yf8{bottom:640.905000px;}
.y179{bottom:642.525000px;}
.y9{bottom:645.510000px;}
.y1ac{bottom:645.585000px;}
.y19c{bottom:645.945000px;}
.y163{bottom:647.565000px;}
.y38{bottom:648.105000px;}
.y11f{bottom:649.725000px;}
.ya7{bottom:651.525000px;}
.yca{bottom:653.685000px;}
.y13e{bottom:656.205000px;}
.y73{bottom:657.465000px;}
.y178{bottom:660.525000px;}
.yb8{bottom:663.585000px;}
.y19b{bottom:663.945000px;}
.y37{bottom:665.385000px;}
.y11e{bottom:666.465000px;}
.y8{bottom:666.771000px;}
.yf6{bottom:667.905000px;}
.y162{bottom:668.265000px;}
.ya6{bottom:669.525000px;}
.y72{bottom:675.465000px;}
.y177{bottom:676.725000px;}
.y11d{bottom:676.905000px;}
.yc9{bottom:677.805000px;}
.y95{bottom:681.585000px;}
.y19a{bottom:681.945000px;}
.y36{bottom:682.665000px;}
.y176{bottom:684.645000px;}
.ya5{bottom:687.525000px;}
.y161{bottom:688.785000px;}
.y8c{bottom:693.465000px;}
.yf4{bottom:695.445000px;}
.yc8{bottom:695.805000px;}
.y13d{bottom:697.425000px;}
.y11c{bottom:698.325000px;}
.y35{bottom:699.585000px;}
.y199{bottom:699.945000px;}
.yc3{bottom:705.525000px;}
.y160{bottom:709.305000px;}
.y175{bottom:711.285000px;}
.y8b{bottom:711.465000px;}
.yc7{bottom:713.805000px;}
.y34{bottom:715.425000px;}
.y71{bottom:717.585000px;}
.y198{bottom:717.945000px;}
.y13c{bottom:718.125000px;}
.y11b{bottom:719.745000px;}
.yf2{bottom:721.905000px;}
.yc2{bottom:723.525000px;}
.y7{bottom:726.298500px;}
.y8a{bottom:729.465000px;}
.y15f{bottom:730.005000px;}
.yc6{bottom:731.805000px;}
.y33{bottom:732.705000px;}
.y70{bottom:735.585000px;}
.y197{bottom:735.945000px;}
.y11a{bottom:741.165000px;}
.yc1{bottom:741.525000px;}
.yef{bottom:742.065000px;}
.y89{bottom:747.465000px;}
.y13b{bottom:748.185000px;}
.y32{bottom:749.805000px;}
.y15e{bottom:750.525000px;}
.y3{bottom:752.599495px;}
.y6f{bottom:753.585000px;}
.y196{bottom:753.945000px;}
.yc0{bottom:759.525000px;}
.y119{bottom:762.765000px;}
.ya4{bottom:765.465000px;}
.y31{bottom:766.905000px;}
.y15d{bottom:771.225000px;}
.y6e{bottom:771.585000px;}
.y195{bottom:771.945000px;}
.y13a{bottom:772.305000px;}
.yc5{bottom:773.745000px;}
.ybf{bottom:777.525000px;}
.y30{bottom:782.745000px;}
.ya3{bottom:783.465000px;}
.y118{bottom:784.185000px;}
.yee{bottom:788.865000px;}
.y6d{bottom:789.585000px;}
.y194{bottom:789.945000px;}
.y15c{bottom:791.745000px;}
.y139{bottom:793.545000px;}
.yc4{bottom:794.085000px;}
.ybe{bottom:795.525000px;}
.y137{bottom:797.865000px;}
.y2f{bottom:799.845000px;}
.ya2{bottom:801.465000px;}
.y116{bottom:805.605000px;}
.y88{bottom:807.585000px;}
.y193{bottom:807.945000px;}
.y15b{bottom:812.310000px;}
.yed{bottom:812.490000px;}
.y6c{bottom:813.570000px;}
.y2e{bottom:817.170000px;}
.ya1{bottom:819.510000px;}
.y87{bottom:825.630000px;}
.y192{bottom:825.990000px;}
.y115{bottom:827.070000px;}
.yec{bottom:829.770000px;}
.y6b{bottom:831.570000px;}
.y15a{bottom:833.010000px;}
.y136{bottom:833.190000px;}
.y2d{bottom:834.090000px;}
.ya0{bottom:837.510000px;}
.y86{bottom:843.630000px;}
.y191{bottom:843.990000px;}
.yeb{bottom:847.050000px;}
.y114{bottom:848.490000px;}
.y6a{bottom:849.570000px;}
.y2c{bottom:849.930000px;}
.y159{bottom:853.530000px;}
.y9f{bottom:855.510000px;}
.y85{bottom:861.630000px;}
.y190{bottom:861.990000px;}
.yea{bottom:864.150000px;}
.y69{bottom:867.570000px;}
.y2b{bottom:869.190000px;}
.y112{bottom:869.910000px;}
.y9e{bottom:873.510000px;}
.y158{bottom:874.050000px;}
.y2{bottom:879.369000px;}
.y84{bottom:879.630000px;}
.y18f{bottom:879.990000px;}
.ye9{bottom:881.430000px;}
.y68{bottom:885.570000px;}
.y9d{bottom:891.510000px;}
.y157{bottom:894.750000px;}
.y2a{bottom:896.910000px;}
.y83{bottom:897.630000px;}
.y18e{bottom:897.990000px;}
.ye8{bottom:898.710000px;}
.y67{bottom:903.570000px;}
.y9c{bottom:909.510000px;}
.y111{bottom:912.930000px;}
.y156{bottom:915.270000px;}
.y82{bottom:915.630000px;}
.ye7{bottom:915.990000px;}
.y135{bottom:920.850000px;}
.y66{bottom:921.570000px;}
.y29{bottom:924.450000px;}
.y9b{bottom:927.510000px;}
.ye6{bottom:933.270000px;}
.y81{bottom:933.630000px;}
.y18d{bottom:933.990000px;}
.y110{bottom:934.350000px;}
.y155{bottom:935.790000px;}
.y65{bottom:939.570000px;}
.y9a{bottom:945.510000px;}
.ye5{bottom:950.550000px;}
.y80{bottom:951.630000px;}
.y28{bottom:951.990000px;}
.y174{bottom:955.050000px;}
.y10f{bottom:955.770000px;}
.y132{bottom:956.130000px;}
.y154{bottom:956.490000px;}
.y64{bottom:957.570000px;}
.y173{bottom:960.810000px;}
.y99{bottom:963.510000px;}
.y1{bottom:966.726000px;}
.y18c{bottom:968.190000px;}
.y7f{bottom:969.630000px;}
.ye4{bottom:973.770000px;}
.y63{bottom:975.570000px;}
.y18b{bottom:976.110000px;}
.y153{bottom:977.010000px;}
.y10c{bottom:977.190000px;}
.y27{bottom:979.710000px;}
.y98{bottom:981.510000px;}
.y171{bottom:987.270000px;}
.y7e{bottom:987.630000px;}
.y62{bottom:993.570000px;}
.ye3{bottom:996.990000px;}
.y152{bottom:997.710000px;}
.y107{bottom:998.610000px;}
.y18a{bottom:1002.750000px;}
.y7d{bottom:1005.630000px;}
.y12f{bottom:1008.690000px;}
.y61{bottom:1011.570000px;}
.ye2{bottom:1014.270000px;}
.y151{bottom:1018.230000px;}
.y7c{bottom:1023.630000px;}
.y189{bottom:1029.390000px;}
.y60{bottom:1029.570000px;}
.y26{bottom:1031.550000px;}
.y150{bottom:1038.750000px;}
.y97{bottom:1041.630000px;}
.y5f{bottom:1047.570000px;}
.y25{bottom:1048.650000px;}
.y14e{bottom:1059.450000px;}
.y5e{bottom:1065.600000px;}
.y24{bottom:1065.960000px;}
.y53{bottom:1119.960000px;}
.y7a{bottom:1120.680000px;}
.h14{height:17.280000px;}
.h19{height:19.440000px;}
.h27{height:19.800000px;}
.h29{height:19.836000px;}
.h28{height:19.980000px;}
.h1f{height:20.700000px;}
.h20{height:20.736000px;}
.h11{height:21.960000px;}
.h1a{height:25.560000px;}
.h2b{height:25.740000px;}
.h2a{height:25.920000px;}
.h1c{height:26.100000px;}
.h1b{height:26.820000px;}
.h7{height:32.130000px;}
.h24{height:34.560000px;}
.h26{height:34.596000px;}
.he{height:35.640000px;}
.h18{height:36.360000px;}
.h6{height:45.900000px;}
.h21{height:46.440000px;}
.h10{height:47.344922px;}
.h3{height:48.195000px;}
.hf{height:48.616875px;}
.h12{height:50.171484px;}
.h25{height:51.660000px;}
.h23{height:51.840000px;}
.h2c{height:52.435898px;}
.hd{height:52.998047px;}
.h22{height:54.421875px;}
.h2{height:55.080000px;}
.h15{height:55.824609px;}
.h1e{height:56.520000px;}
.h1d{height:57.324375px;}
.h16{height:58.621992px;}
.h9{height:58.651172px;}
.ha{height:60.226875px;}
.h17{height:61.423863px;}
.h5{height:64.260000px;}
.h13{height:70.664062px;}
.hc{height:93.983203px;}
.hb{height:96.508125px;}
.h4{height:119.055004px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:22.716000px;}
.w19{width:68.796000px;}
.w13{width:71.676000px;}
.w1b{width:73.440000px;}
.we{width:75.456000px;}
.w17{width:77.040000px;}
.w1a{width:79.776000px;}
.w1d{width:80.100000px;}
.w1c{width:80.136000px;}
.w21{width:80.280000px;}
.w11{width:80.460000px;}
.w15{width:80.640000px;}
.w20{width:82.476000px;}
.wf{width:84.600000px;}
.wc{width:87.120000px;}
.w24{width:93.636000px;}
.wb{width:93.816000px;}
.w18{width:94.860000px;}
.w16{width:94.896000px;}
.w12{width:97.740000px;}
.w14{width:99.936000px;}
.w10{width:100.296000px;}
.w1e{width:106.596000px;}
.w26{width:120.636000px;}
.w1f{width:125.820000px;}
.w23{width:127.476000px;}
.w5{width:130.716000px;}
.w6{width:133.200000px;}
.wd{width:134.316000px;}
.w8{width:134.676000px;}
.w7{width:141.516000px;}
.w22{width:147.276000px;}
.w25{width:174.270000px;}
.wa{width:201.450000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x24{left:9.180000px;}
.x30{left:10.440000px;}
.x21{left:12.240000px;}
.x2e{left:14.940000px;}
.x51{left:16.380000px;}
.x4e{left:17.490000px;}
.x38{left:18.765000px;}
.x4b{left:19.800000px;}
.x2d{left:21.600000px;}
.x36{left:23.220000px;}
.x33{left:24.660000px;}
.x42{left:25.785000px;}
.x22{left:27.180000px;}
.x27{left:29.880000px;}
.x37{left:31.860000px;}
.x35{left:33.840000px;}
.x26{left:35.460000px;}
.x43{left:37.620000px;}
.x3b{left:40.140000px;}
.x39{left:42.300000px;}
.x45{left:44.820000px;}
.x52{left:45.900000px;}
.x44{left:47.340000px;}
.x3a{left:48.780000px;}
.x28{left:50.220000px;}
.x29{left:54.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x5{left:216.029986px;}
.x53{left:223.410000px;}
.x8{left:225.029986px;}
.xc{left:226.829986px;}
.x2b{left:228.990000px;}
.xf{left:230.249986px;}
.x12{left:237.809986px;}
.x4d{left:240.150000px;}
.x1c{left:243.029986px;}
.x46{left:250.410000px;}
.x7{left:254.909986px;}
.x6{left:264.449986px;}
.x1b{left:266.069986px;}
.x1d{left:270.029986px;}
.x2c{left:305.175000px;}
.x9{left:310.754986px;}
.x3c{left:320.114986px;}
.x4c{left:323.354986px;}
.x3d{left:326.775000px;}
.x47{left:331.095000px;}
.x11{left:340.814986px;}
.x19{left:345.314986px;}
.x14{left:346.755000px;}
.x20{left:348.734986px;}
.x58{left:362.594986px;}
.x13{left:363.674986px;}
.x10{left:368.174986px;}
.x54{left:371.595000px;}
.x1f{left:378.434986px;}
.x2a{left:386.354986px;}
.xd{left:389.594986px;}
.x2f{left:390.675000px;}
.x59{left:398.595000px;}
.x48{left:405.255000px;}
.xe{left:406.874986px;}
.x3e{left:408.315000px;}
.x18{left:417.314986px;}
.xb{left:428.114986px;}
.x5d{left:435.674986px;}
.x3{left:454.959000px;}
.x1a{left:474.735000px;}
.x16{left:479.955000px;}
.xa{left:486.104986px;}
.x31{left:491.685000px;}
.x55{left:499.785000px;}
.x3f{left:504.105000px;}
.x5a{left:520.125000px;}
.x23{left:523.365000px;}
.x4f{left:557.205000px;}
.x49{left:560.625000px;}
.x32{left:572.865000px;}
.x56{left:574.125000px;}
.x40{left:581.865000px;}
.x5b{left:594.285000px;}
.x25{left:611.205000px;}
.x17{left:621.465000px;}
.x50{left:638.205000px;}
.x4a{left:641.625000px;}
.x57{left:655.125000px;}
.x5c{left:668.625000px;}
.x34{left:671.505000px;}
.x41{left:677.445000px;}
.x1e{left:760.649986px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-1.120000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.472533pt;}
.ls3{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.304533pt;}
.lsd{letter-spacing:-0.196267pt;}
.lse{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.062720pt;}
.lsc{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.544000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls8{letter-spacing:38.992640pt;}
.wsf{word-spacing:-53.120000pt;}
.ws10{word-spacing:-13.824000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.185067pt;}
.wsd{word-spacing:-13.096533pt;}
.ws2{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.870933pt;}
.ws3{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.360000pt;}
.ws6{word-spacing:-11.055467pt;}
.ws5{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws0{word-spacing:0.000000pt;}
._d{margin-left:-3.187200pt;}
._a{margin-left:-1.912320pt;}
._3{margin-left:-0.912000pt;}
._0{width:1.009280pt;}
._2{width:2.074027pt;}
._4{width:3.091627pt;}
._7{width:4.568320pt;}
._5{width:5.524480pt;}
._9{width:6.508160pt;}
._8{width:7.596800pt;}
._e{width:8.604800pt;}
._f{width:10.184320pt;}
._6{width:11.208320pt;}
._10{width:12.217600pt;}
._c{width:15.032960pt;}
._b{width:16.201600pt;}
._11{width:17.423360pt;}
._13{width:18.857600pt;}
._15{width:19.866880pt;}
._14{width:21.248000pt;}
._12{width:22.576000pt;}
._19{width:24.010240pt;}
._1a{width:25.125760pt;}
._1f{width:26.048640pt;}
._1d{width:27.144320pt;}
._1c{width:28.259840pt;}
._16{width:29.959680pt;}
._17{width:30.968960pt;}
._1b{width:32.084480pt;}
._1e{width:32.987520pt;}
._22{width:42.017920pt;}
._18{width:43.047680pt;}
._21{width:44.106027pt;}
._20{width:115.960960pt;}
._1{width:428.588587pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y131{bottom:2.560000pt;}
.y5d{bottom:2.880000pt;}
.yf1{bottom:3.520000pt;}
.yf3{bottom:4.480000pt;}
.y10b{bottom:4.960000pt;}
.y10e{bottom:5.120000pt;}
.y14f{bottom:5.146667pt;}
.y113{bottom:5.280000pt;}
.y10d{bottom:5.920000pt;}
.y117{bottom:5.960000pt;}
.y3f{bottom:8.960000pt;}
.y40{bottom:9.440000pt;}
.yf5{bottom:9.920000pt;}
.yf9{bottom:10.400000pt;}
.y172{bottom:10.560000pt;}
.yf7{bottom:11.040000pt;}
.y3c{bottom:15.520000pt;}
.y3a{bottom:16.320000pt;}
.y134{bottom:18.240000pt;}
.y138{bottom:18.280000pt;}
.yf0{bottom:19.520000pt;}
.y3d{bottom:21.600000pt;}
.y10a{bottom:21.760000pt;}
.y3b{bottom:26.720000pt;}
.y130{bottom:30.080000pt;}
.y133{bottom:33.600000pt;}
.y108{bottom:37.760000pt;}
.y109{bottom:38.400000pt;}
.y6{bottom:44.973338pt;}
.y5{bottom:67.373337pt;}
.y4{bottom:89.773337pt;}
.y23{bottom:123.790666pt;}
.y5b{bottom:166.586667pt;}
.y1a{bottom:175.052000pt;}
.y5a{bottom:184.986667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y59{bottom:203.386667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y52{bottom:211.066667pt;}
.y58{bottom:221.786667pt;}
.y51{bottom:227.066667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y57{bottom:240.186667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y50{bottom:248.346667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y56{bottom:258.586667pt;}
.y4f{bottom:269.786667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y7b{bottom:276.546667pt;}
.y55{bottom:277.026667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y4e{bottom:291.106667pt;}
.y5c{bottom:294.946667pt;}
.y54{bottom:295.426667pt;}
.y1ab{bottom:296.386667pt;}
.ydb{bottom:298.466667pt;}
.y188{bottom:299.106667pt;}
.yb7{bottom:301.826667pt;}
.y94{bottom:307.106667pt;}
.y14d{bottom:308.866667pt;}
.y11{bottom:309.452000pt;}
.y4d{bottom:312.386667pt;}
.yda{bottom:314.466667pt;}
.y106{bottom:314.786667pt;}
.y12e{bottom:316.226667pt;}
.y96{bottom:317.826667pt;}
.y187{bottom:320.386667pt;}
.y93{bottom:323.106667pt;}
.ye1{bottom:326.786667pt;}
.y14c{bottom:327.106667pt;}
.y4c{bottom:328.386667pt;}
.y1a9{bottom:328.706667pt;}
.yd9{bottom:330.466667pt;}
.yb6{bottom:333.826667pt;}
.y105{bottom:336.066667pt;}
.y12d{bottom:337.506667pt;}
.y92{bottom:339.106667pt;}
.y170{bottom:339.586667pt;}
.y186{bottom:341.826667pt;}
.ye0{bottom:342.146667pt;}
.y10{bottom:343.809333pt;}
.y4b{bottom:344.386667pt;}
.y1a8{bottom:344.706667pt;}
.y14b{bottom:345.506667pt;}
.yd8{bottom:346.466667pt;}
.yb5{bottom:349.826667pt;}
.y91{bottom:355.106667pt;}
.y16f{bottom:355.586667pt;}
.ydf{bottom:357.506667pt;}
.y12c{bottom:358.786667pt;}
.y4a{bottom:360.386667pt;}
.y1a7{bottom:360.706667pt;}
.yd7{bottom:362.466667pt;}
.yf{bottom:362.706666pt;}
.y185{bottom:363.106667pt;}
.y14a{bottom:363.746667pt;}
.yb4{bottom:365.826667pt;}
.y90{bottom:371.106667pt;}
.y16e{bottom:371.586667pt;}
.yde{bottom:372.866667pt;}
.y49{bottom:376.386667pt;}
.y1a6{bottom:376.706667pt;}
.yd6{bottom:378.466667pt;}
.y104{bottom:378.786667pt;}
.y184{bottom:379.106667pt;}
.y12b{bottom:380.226667pt;}
.yb3{bottom:381.826667pt;}
.y149{bottom:381.986667pt;}
.y8f{bottom:387.106667pt;}
.y16d{bottom:387.586667pt;}
.ydd{bottom:388.066667pt;}
.y48{bottom:392.386667pt;}
.y1a5{bottom:392.706667pt;}
.yd5{bottom:394.466667pt;}
.y183{bottom:395.106667pt;}
.yb2{bottom:397.826667pt;}
.y103{bottom:400.066667pt;}
.y148{bottom:400.386667pt;}
.y12a{bottom:401.506667pt;}
.y8e{bottom:403.106667pt;}
.y16c{bottom:403.586667pt;}
.y47{bottom:408.386667pt;}
.ydc{bottom:408.706667pt;}
.yd4{bottom:410.466667pt;}
.y182{bottom:411.106667pt;}
.yb1{bottom:413.826667pt;}
.y129{bottom:417.506667pt;}
.y147{bottom:418.626667pt;}
.y8d{bottom:419.106667pt;}
.y16b{bottom:419.586667pt;}
.y102{bottom:421.506667pt;}
.y46{bottom:424.386667pt;}
.yd3{bottom:426.466667pt;}
.y181{bottom:427.106667pt;}
.yb0{bottom:429.826667pt;}
.y1a4{bottom:430.146667pt;}
.ye{bottom:430.990669pt;}
.y128{bottom:433.506667pt;}
.yba{bottom:435.106667pt;}
.y146{bottom:436.866667pt;}
.y45{bottom:440.386667pt;}
.y16a{bottom:441.026667pt;}
.yd2{bottom:442.466667pt;}
.y101{bottom:442.786667pt;}
.y180{bottom:443.106667pt;}
.yaf{bottom:445.826667pt;}
.y1a3{bottom:446.146667pt;}
.yd{bottom:446.990669pt;}
.y127{bottom:449.506667pt;}
.yb9{bottom:451.106667pt;}
.y145{bottom:455.266667pt;}
.y44{bottom:456.386667pt;}
.y169{bottom:457.026667pt;}
.yd1{bottom:458.466667pt;}
.y100{bottom:458.786667pt;}
.y17f{bottom:459.106667pt;}
.ybd{bottom:461.826667pt;}
.y1a2{bottom:462.146667pt;}
.yc{bottom:462.990669pt;}
.y126{bottom:465.506667pt;}
.yae{bottom:467.106667pt;}
.y43{bottom:472.386667pt;}
.y144{bottom:473.506667pt;}
.yd0{bottom:474.466667pt;}
.yff{bottom:474.786667pt;}
.y17e{bottom:475.106667pt;}
.ybc{bottom:477.826667pt;}
.y168{bottom:478.306667pt;}
.yb{bottom:478.990666pt;}
.y125{bottom:481.506667pt;}
.yad{bottom:483.106667pt;}
.y1a1{bottom:483.426667pt;}
.y79{bottom:488.386667pt;}
.ycf{bottom:490.466667pt;}
.yfe{bottom:490.786667pt;}
.y17d{bottom:491.106667pt;}
.y143{bottom:491.906667pt;}
.y42{bottom:493.826667pt;}
.ya{bottom:494.990666pt;}
.y124{bottom:497.506667pt;}
.yac{bottom:499.133333pt;}
.y1a0{bottom:499.453333pt;}
.y167{bottom:502.493333pt;}
.y78{bottom:504.413333pt;}
.yce{bottom:506.493333pt;}
.yfd{bottom:506.813333pt;}
.y17c{bottom:507.133333pt;}
.y41{bottom:509.533333pt;}
.ybb{bottom:509.853333pt;}
.y142{bottom:510.173333pt;}
.y123{bottom:513.533333pt;}
.yab{bottom:515.133333pt;}
.y19f{bottom:515.453333pt;}
.y77{bottom:520.413333pt;}
.y166{bottom:520.733333pt;}
.y3e{bottom:522.013333pt;}
.ycd{bottom:522.493333pt;}
.yfc{bottom:522.813333pt;}
.y17b{bottom:523.133333pt;}
.y1ae{bottom:525.853333pt;}
.y141{bottom:528.413333pt;}
.y122{bottom:529.533333pt;}
.yaa{bottom:531.133333pt;}
.y19e{bottom:531.453333pt;}
.y76{bottom:536.413333pt;}
.yfb{bottom:537.373333pt;}
.ycc{bottom:538.493333pt;}
.y165{bottom:539.133333pt;}
.y39{bottom:541.533333pt;}
.y1aa{bottom:541.853333pt;}
.y121{bottom:545.533333pt;}
.yfa{bottom:545.693333pt;}
.y140{bottom:546.813333pt;}
.ya9{bottom:547.133333pt;}
.y75{bottom:552.413333pt;}
.y19d{bottom:552.733333pt;}
.y17a{bottom:555.133333pt;}
.y164{bottom:557.373333pt;}
.y1ad{bottom:557.853333pt;}
.ycb{bottom:559.773333pt;}
.y120{bottom:561.533333pt;}
.ya8{bottom:563.133333pt;}
.y13f{bottom:565.053333pt;}
.y74{bottom:568.413333pt;}
.yf8{bottom:569.693333pt;}
.y179{bottom:571.133333pt;}
.y9{bottom:573.786667pt;}
.y1ac{bottom:573.853333pt;}
.y19c{bottom:574.173333pt;}
.y163{bottom:575.613333pt;}
.y38{bottom:576.093333pt;}
.y11f{bottom:577.533333pt;}
.ya7{bottom:579.133333pt;}
.yca{bottom:581.053333pt;}
.y13e{bottom:583.293333pt;}
.y73{bottom:584.413333pt;}
.y178{bottom:587.133333pt;}
.yb8{bottom:589.853333pt;}
.y19b{bottom:590.173333pt;}
.y37{bottom:591.453333pt;}
.y11e{bottom:592.413333pt;}
.y8{bottom:592.685334pt;}
.yf6{bottom:593.693333pt;}
.y162{bottom:594.013333pt;}
.ya6{bottom:595.133333pt;}
.y72{bottom:600.413333pt;}
.y177{bottom:601.533333pt;}
.y11d{bottom:601.693333pt;}
.yc9{bottom:602.493333pt;}
.y95{bottom:605.853333pt;}
.y19a{bottom:606.173333pt;}
.y36{bottom:606.813333pt;}
.y176{bottom:608.573333pt;}
.ya5{bottom:611.133333pt;}
.y161{bottom:612.253333pt;}
.y8c{bottom:616.413333pt;}
.yf4{bottom:618.173333pt;}
.yc8{bottom:618.493333pt;}
.y13d{bottom:619.933333pt;}
.y11c{bottom:620.733333pt;}
.y35{bottom:621.853333pt;}
.y199{bottom:622.173333pt;}
.yc3{bottom:627.133333pt;}
.y160{bottom:630.493333pt;}
.y175{bottom:632.253333pt;}
.y8b{bottom:632.413333pt;}
.yc7{bottom:634.493333pt;}
.y34{bottom:635.933333pt;}
.y71{bottom:637.853333pt;}
.y198{bottom:638.173333pt;}
.y13c{bottom:638.333333pt;}
.y11b{bottom:639.773333pt;}
.yf2{bottom:641.693333pt;}
.yc2{bottom:643.133333pt;}
.y7{bottom:645.598667pt;}
.y8a{bottom:648.413333pt;}
.y15f{bottom:648.893333pt;}
.yc6{bottom:650.493333pt;}
.y33{bottom:651.293333pt;}
.y70{bottom:653.853333pt;}
.y197{bottom:654.173333pt;}
.y11a{bottom:658.813333pt;}
.yc1{bottom:659.133333pt;}
.yef{bottom:659.613333pt;}
.y89{bottom:664.413333pt;}
.y13b{bottom:665.053333pt;}
.y32{bottom:666.493333pt;}
.y15e{bottom:667.133333pt;}
.y3{bottom:668.977329pt;}
.y6f{bottom:669.853333pt;}
.y196{bottom:670.173333pt;}
.yc0{bottom:675.133333pt;}
.y119{bottom:678.013333pt;}
.ya4{bottom:680.413333pt;}
.y31{bottom:681.693333pt;}
.y15d{bottom:685.533333pt;}
.y6e{bottom:685.853333pt;}
.y195{bottom:686.173333pt;}
.y13a{bottom:686.493333pt;}
.yc5{bottom:687.773333pt;}
.ybf{bottom:691.133333pt;}
.y30{bottom:695.773333pt;}
.ya3{bottom:696.413333pt;}
.y118{bottom:697.053333pt;}
.yee{bottom:701.213333pt;}
.y6d{bottom:701.853333pt;}
.y194{bottom:702.173333pt;}
.y15c{bottom:703.773333pt;}
.y139{bottom:705.373333pt;}
.yc4{bottom:705.853333pt;}
.ybe{bottom:707.133333pt;}
.y137{bottom:709.213333pt;}
.y2f{bottom:710.973333pt;}
.ya2{bottom:712.413333pt;}
.y116{bottom:716.093333pt;}
.y88{bottom:717.853333pt;}
.y193{bottom:718.173333pt;}
.y15b{bottom:722.053333pt;}
.yed{bottom:722.213333pt;}
.y6c{bottom:723.173333pt;}
.y2e{bottom:726.373333pt;}
.ya1{bottom:728.453333pt;}
.y87{bottom:733.893333pt;}
.y192{bottom:734.213333pt;}
.y115{bottom:735.173333pt;}
.yec{bottom:737.573333pt;}
.y6b{bottom:739.173333pt;}
.y15a{bottom:740.453333pt;}
.y136{bottom:740.613333pt;}
.y2d{bottom:741.413333pt;}
.ya0{bottom:744.453333pt;}
.y86{bottom:749.893333pt;}
.y191{bottom:750.213333pt;}
.yeb{bottom:752.933333pt;}
.y114{bottom:754.213333pt;}
.y6a{bottom:755.173333pt;}
.y2c{bottom:755.493333pt;}
.y159{bottom:758.693333pt;}
.y9f{bottom:760.453333pt;}
.y85{bottom:765.893333pt;}
.y190{bottom:766.213333pt;}
.yea{bottom:768.133333pt;}
.y69{bottom:771.173333pt;}
.y2b{bottom:772.613333pt;}
.y112{bottom:773.253333pt;}
.y9e{bottom:776.453333pt;}
.y158{bottom:776.933333pt;}
.y2{bottom:781.661334pt;}
.y84{bottom:781.893333pt;}
.y18f{bottom:782.213333pt;}
.ye9{bottom:783.493333pt;}
.y68{bottom:787.173333pt;}
.y9d{bottom:792.453333pt;}
.y157{bottom:795.333333pt;}
.y2a{bottom:797.253333pt;}
.y83{bottom:797.893333pt;}
.y18e{bottom:798.213333pt;}
.ye8{bottom:798.853333pt;}
.y67{bottom:803.173333pt;}
.y9c{bottom:808.453333pt;}
.y111{bottom:811.493333pt;}
.y156{bottom:813.573333pt;}
.y82{bottom:813.893333pt;}
.ye7{bottom:814.213333pt;}
.y135{bottom:818.533333pt;}
.y66{bottom:819.173333pt;}
.y29{bottom:821.733333pt;}
.y9b{bottom:824.453333pt;}
.ye6{bottom:829.573333pt;}
.y81{bottom:829.893333pt;}
.y18d{bottom:830.213333pt;}
.y110{bottom:830.533333pt;}
.y155{bottom:831.813333pt;}
.y65{bottom:835.173333pt;}
.y9a{bottom:840.453333pt;}
.ye5{bottom:844.933333pt;}
.y80{bottom:845.893333pt;}
.y28{bottom:846.213333pt;}
.y174{bottom:848.933333pt;}
.y10f{bottom:849.573333pt;}
.y132{bottom:849.893333pt;}
.y154{bottom:850.213333pt;}
.y64{bottom:851.173333pt;}
.y173{bottom:854.053333pt;}
.y99{bottom:856.453333pt;}
.y1{bottom:859.312000pt;}
.y18c{bottom:860.613333pt;}
.y7f{bottom:861.893333pt;}
.ye4{bottom:865.573333pt;}
.y63{bottom:867.173333pt;}
.y18b{bottom:867.653333pt;}
.y153{bottom:868.453333pt;}
.y10c{bottom:868.613333pt;}
.y27{bottom:870.853333pt;}
.y98{bottom:872.453333pt;}
.y171{bottom:877.573333pt;}
.y7e{bottom:877.893333pt;}
.y62{bottom:883.173333pt;}
.ye3{bottom:886.213333pt;}
.y152{bottom:886.853333pt;}
.y107{bottom:887.653333pt;}
.y18a{bottom:891.333333pt;}
.y7d{bottom:893.893333pt;}
.y12f{bottom:896.613333pt;}
.y61{bottom:899.173333pt;}
.ye2{bottom:901.573333pt;}
.y151{bottom:905.093333pt;}
.y7c{bottom:909.893333pt;}
.y189{bottom:915.013333pt;}
.y60{bottom:915.173333pt;}
.y26{bottom:916.933333pt;}
.y150{bottom:923.333333pt;}
.y97{bottom:925.893333pt;}
.y5f{bottom:931.173333pt;}
.y25{bottom:932.133333pt;}
.y14e{bottom:941.733333pt;}
.y5e{bottom:947.200000pt;}
.y24{bottom:947.520000pt;}
.y53{bottom:995.520000pt;}
.y7a{bottom:996.160000pt;}
.h14{height:15.360000pt;}
.h19{height:17.280000pt;}
.h27{height:17.600000pt;}
.h29{height:17.632000pt;}
.h28{height:17.760000pt;}
.h1f{height:18.400000pt;}
.h20{height:18.432000pt;}
.h11{height:19.520000pt;}
.h1a{height:22.720000pt;}
.h2b{height:22.880000pt;}
.h2a{height:23.040000pt;}
.h1c{height:23.200000pt;}
.h1b{height:23.840000pt;}
.h7{height:28.560000pt;}
.h24{height:30.720000pt;}
.h26{height:30.752000pt;}
.he{height:31.680000pt;}
.h18{height:32.320000pt;}
.h6{height:40.800000pt;}
.h21{height:41.280000pt;}
.h10{height:42.084375pt;}
.h3{height:42.840000pt;}
.hf{height:43.215000pt;}
.h12{height:44.596875pt;}
.h25{height:45.920000pt;}
.h23{height:46.080000pt;}
.h2c{height:46.609688pt;}
.hd{height:47.109375pt;}
.h22{height:48.375000pt;}
.h2{height:48.960000pt;}
.h15{height:49.621875pt;}
.h1e{height:50.240000pt;}
.h1d{height:50.955000pt;}
.h16{height:52.108438pt;}
.h9{height:52.134375pt;}
.ha{height:53.535000pt;}
.h17{height:54.598989pt;}
.h5{height:57.120000pt;}
.h13{height:62.812500pt;}
.hc{height:83.540625pt;}
.hb{height:85.785000pt;}
.h4{height:105.826671pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:20.192000pt;}
.w19{width:61.152000pt;}
.w13{width:63.712000pt;}
.w1b{width:65.280000pt;}
.we{width:67.072000pt;}
.w17{width:68.480000pt;}
.w1a{width:70.912000pt;}
.w1d{width:71.200000pt;}
.w1c{width:71.232000pt;}
.w21{width:71.360000pt;}
.w11{width:71.520000pt;}
.w15{width:71.680000pt;}
.w20{width:73.312000pt;}
.wf{width:75.200000pt;}
.wc{width:77.440000pt;}
.w24{width:83.232000pt;}
.wb{width:83.392000pt;}
.w18{width:84.320000pt;}
.w16{width:84.352000pt;}
.w12{width:86.880000pt;}
.w14{width:88.832000pt;}
.w10{width:89.152000pt;}
.w1e{width:94.752000pt;}
.w26{width:107.232000pt;}
.w1f{width:111.840000pt;}
.w23{width:113.312000pt;}
.w5{width:116.192000pt;}
.w6{width:118.400000pt;}
.wd{width:119.392000pt;}
.w8{width:119.712000pt;}
.w7{width:125.792000pt;}
.w22{width:130.912000pt;}
.w25{width:154.906667pt;}
.wa{width:179.066667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x24{left:8.160000pt;}
.x30{left:9.280000pt;}
.x21{left:10.880000pt;}
.x2e{left:13.280000pt;}
.x51{left:14.560000pt;}
.x4e{left:15.546667pt;}
.x38{left:16.680000pt;}
.x4b{left:17.600000pt;}
.x2d{left:19.200000pt;}
.x36{left:20.640000pt;}
.x33{left:21.920000pt;}
.x42{left:22.920000pt;}
.x22{left:24.160000pt;}
.x27{left:26.560000pt;}
.x37{left:28.320000pt;}
.x35{left:30.080000pt;}
.x26{left:31.520000pt;}
.x43{left:33.440000pt;}
.x3b{left:35.680000pt;}
.x39{left:37.600000pt;}
.x45{left:39.840000pt;}
.x52{left:40.800000pt;}
.x44{left:42.080000pt;}
.x3a{left:43.360000pt;}
.x28{left:44.640000pt;}
.x29{left:48.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x5{left:192.026655pt;}
.x53{left:198.586667pt;}
.x8{left:200.026655pt;}
.xc{left:201.626655pt;}
.x2b{left:203.546667pt;}
.xf{left:204.666655pt;}
.x12{left:211.386655pt;}
.x4d{left:213.466667pt;}
.x1c{left:216.026655pt;}
.x46{left:222.586667pt;}
.x7{left:226.586655pt;}
.x6{left:235.066655pt;}
.x1b{left:236.506655pt;}
.x1d{left:240.026655pt;}
.x2c{left:271.266667pt;}
.x9{left:276.226655pt;}
.x3c{left:284.546655pt;}
.x4c{left:287.426655pt;}
.x3d{left:290.466667pt;}
.x47{left:294.306667pt;}
.x11{left:302.946655pt;}
.x19{left:306.946655pt;}
.x14{left:308.226667pt;}
.x20{left:309.986655pt;}
.x58{left:322.306655pt;}
.x13{left:323.266655pt;}
.x10{left:327.266655pt;}
.x54{left:330.306667pt;}
.x1f{left:336.386655pt;}
.x2a{left:343.426655pt;}
.xd{left:346.306655pt;}
.x2f{left:347.266667pt;}
.x59{left:354.306667pt;}
.x48{left:360.226667pt;}
.xe{left:361.666655pt;}
.x3e{left:362.946667pt;}
.x18{left:370.946655pt;}
.xb{left:380.546655pt;}
.x5d{left:387.266655pt;}
.x3{left:404.408000pt;}
.x1a{left:421.986667pt;}
.x16{left:426.626667pt;}
.xa{left:432.093321pt;}
.x31{left:437.053333pt;}
.x55{left:444.253333pt;}
.x3f{left:448.093333pt;}
.x5a{left:462.333333pt;}
.x23{left:465.213333pt;}
.x4f{left:495.293333pt;}
.x49{left:498.333333pt;}
.x32{left:509.213333pt;}
.x56{left:510.333333pt;}
.x40{left:517.213333pt;}
.x5b{left:528.253333pt;}
.x25{left:543.293333pt;}
.x17{left:552.413333pt;}
.x50{left:567.293333pt;}
.x4a{left:570.333333pt;}
.x57{left:582.333333pt;}
.x5c{left:594.333333pt;}
.x34{left:596.893333pt;}
.x41{left:602.173333pt;}
.x1e{left:676.133321pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  