
    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_bdd0940ef7896969826d24ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_12eddca3e9e8e3e21d19face.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_46e18eda9939468055ab4cd7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_09bab472149852c8e2838166.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_24ba6c5b0486ee7dac53c2c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_b6b9ba14f50fc3e60ba36ab4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.lsc{letter-spacing:-1.410000px;}
.ls7{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.480000px;}
.lsd{letter-spacing:-0.208800px;}
.ls18{letter-spacing:-0.120000px;}
.ls2{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.060000px;}
.ls8{letter-spacing:0.078000px;}
.ls16{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.384000px;}
.ls13{letter-spacing:0.420000px;}
.ls0{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.660000px;}
.ls10{letter-spacing:9.180000px;}
.ls11{letter-spacing:11.400000px;}
.ls14{letter-spacing:12.600000px;}
.ls17{letter-spacing:15.000000px;}
.ls12{letter-spacing:15.720000px;}
.ls9{letter-spacing:45.720000px;}
.lse{letter-spacing:63.720000px;}
.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;}
}
.ws9{word-spacing:-60.000000px;}
.ws1{word-spacing:-18.384000px;}
.wsb{word-spacing:-15.420000px;}
.wsa{word-spacing:-15.240000px;}
.ws0{word-spacing:-15.204000px;}
.ws3{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.880000px;}
.ws5{word-spacing:-12.900000px;}
.ws6{word-spacing:-11.136000px;}
.ws2{word-spacing:-9.900000px;}
.ws8{word-spacing:-9.691200px;}
.ws7{word-spacing:-8.490000px;}
.ws4{word-spacing:0.000000px;}
._1e{margin-left:-2.478000px;}
._1{margin-left:-1.338000px;}
._0{width:1.122000px;}
._7{width:2.664000px;}
._6{width:3.744000px;}
._8{width:5.076000px;}
._9{width:6.900000px;}
._a{width:7.920000px;}
._12{width:9.480000px;}
._d{width:10.716000px;}
._15{width:11.760000px;}
._11{width:12.762000px;}
._f{width:13.956000px;}
._e{width:16.020000px;}
._14{width:17.100000px;}
._17{width:18.324000px;}
._16{width:19.860000px;}
._1d{width:21.204000px;}
._13{width:22.260000px;}
._18{width:23.700000px;}
._10{width:24.720000px;}
._b{width:26.280000px;}
._c{width:27.498000px;}
._19{width:31.278000px;}
._1a{width:32.454000px;}
._1b{width:33.540000px;}
._1c{width:34.962000px;}
._20{width:38.310000px;}
._21{width:39.708000px;}
._2{width:43.800000px;}
._1f{width:48.606000px;}
._4{width:336.180000px;}
._3{width:1162.530000px;}
._5{width:1184.820000px;}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:6.000000px;}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs9{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y143{bottom:3.285000px;}
.y163{bottom:3.300000px;}
.y149{bottom:3.585000px;}
.y13b{bottom:3.600000px;}
.y147{bottom:3.615000px;}
.y170{bottom:3.645000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y141{bottom:6.300000px;}
.y3d{bottom:11.685000px;}
.y5{bottom:12.337500px;}
.y16a{bottom:20.385000px;}
.y168{bottom:20.400000px;}
.y165{bottom:20.700000px;}
.y16c{bottom:20.715000px;}
.y16f{bottom:20.745000px;}
.y3c{bottom:31.230000px;}
.y3b{bottom:45.630000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3a{bottom:63.030000px;}
.y3f{bottom:74.137500px;}
.y39{bottom:80.130000px;}
.y3{bottom:81.337500px;}
.y38{bottom:97.530000px;}
.y74{bottom:111.937500px;}
.y37{bottom:114.630000px;}
.y131{bottom:116.737500px;}
.yf9{bottom:118.837500px;}
.yda{bottom:120.337500px;}
.y1f3{bottom:123.337500px;}
.y29{bottom:125.137500px;}
.y73{bottom:129.037500px;}
.y36{bottom:132.030000px;}
.y19c{bottom:133.837500px;}
.y130{bottom:136.837500px;}
.yf8{bottom:137.137500px;}
.yd9{bottom:137.437500px;}
.y1f2{bottom:140.437500px;}
.y1ca{bottom:141.037500px;}
.y28{bottom:142.237500px;}
.ya4{bottom:145.237500px;}
.y72{bottom:146.437500px;}
.y35{bottom:149.130000px;}
.y167{bottom:152.130000px;}
.y12f{bottom:154.245000px;}
.yf7{bottom:154.545000px;}
.yd8{bottom:154.830000px;}
.y1f1{bottom:157.830000px;}
.y1c9{bottom:158.430000px;}
.y27{bottom:159.645000px;}
.ya3{bottom:162.330000px;}
.y19b{bottom:162.930000px;}
.y71{bottom:163.545000px;}
.y34{bottom:166.530000px;}
.y12e{bottom:171.330000px;}
.yd7{bottom:171.930000px;}
.yf6{bottom:172.230000px;}
.y1f0{bottom:174.930000px;}
.y1c8{bottom:175.530000px;}
.ya2{bottom:179.775000px;}
.y19a{bottom:180.375000px;}
.y70{bottom:180.975000px;}
.y33{bottom:183.660000px;}
.y166{bottom:187.275000px;}
.y26{bottom:188.475000px;}
.y12d{bottom:188.775000px;}
.yd6{bottom:189.375000px;}
.yf5{bottom:191.775000px;}
.y1ef{bottom:192.375000px;}
.y1c7{bottom:192.975000px;}
.ya1{bottom:196.875000px;}
.y199{bottom:197.775000px;}
.y6f{bottom:198.075000px;}
.y32{bottom:201.060000px;}
.y25{bottom:206.175000px;}
.y12c{bottom:206.475000px;}
.yd5{bottom:207.075000px;}
.y1ee{bottom:209.475000px;}
.y1c6{bottom:210.075000px;}
.ya0{bottom:214.275000px;}
.y198{bottom:214.875000px;}
.y6e{bottom:215.475000px;}
.y31{bottom:218.160000px;}
.y164{bottom:222.375000px;}
.y24{bottom:223.275000px;}
.yf4{bottom:223.575000px;}
.y12b{bottom:225.975000px;}
.yd4{bottom:226.575000px;}
.y1ed{bottom:226.875000px;}
.y1c5{bottom:227.475000px;}
.y9f{bottom:231.375000px;}
.y197{bottom:232.275000px;}
.y6d{bottom:232.575000px;}
.y30{bottom:235.575000px;}
.y12a{bottom:240.375000px;}
.yf3{bottom:240.675000px;}
.yd3{bottom:240.975000px;}
.y1ec{bottom:243.975000px;}
.y1c4{bottom:244.575000px;}
.y9e{bottom:249.075000px;}
.y196{bottom:249.375000px;}
.y6c{bottom:249.975000px;}
.y23{bottom:252.375000px;}
.y2f{bottom:252.675000px;}
.yf2{bottom:257.775000px;}
.yd2{bottom:258.375000px;}
.y1eb{bottom:261.375000px;}
.y1c3{bottom:261.975000px;}
.y195{bottom:266.775000px;}
.y6b{bottom:267.075000px;}
.y22{bottom:269.775000px;}
.y2e{bottom:270.075000px;}
.y129{bottom:274.875000px;}
.yd1{bottom:275.475000px;}
.yf1{bottom:276.075000px;}
.y162{bottom:277.275000px;}
.y1ea{bottom:278.475000px;}
.y1c2{bottom:279.075000px;}
.y9d{bottom:281.175000px;}
.y6a{bottom:284.475000px;}
.y2d{bottom:287.160000px;}
.y21{bottom:287.175000px;}
.y161{bottom:287.775000px;}
.y128{bottom:292.275000px;}
.yd0{bottom:293.775000px;}
.yf0{bottom:294.375000px;}
.y194{bottom:295.575000px;}
.y1e9{bottom:295.875000px;}
.y1c1{bottom:296.475000px;}
.y9c{bottom:298.575000px;}
.y69{bottom:301.575000px;}
.y20{bottom:304.275000px;}
.y2c{bottom:304.575000px;}
.y160{bottom:305.175000px;}
.y127{bottom:309.375000px;}
.ycf{bottom:312.075000px;}
.yef{bottom:312.675000px;}
.y1e8{bottom:312.975000px;}
.y193{bottom:313.275000px;}
.y1c0{bottom:313.575000px;}
.y9b{bottom:315.975000px;}
.y68{bottom:319.275000px;}
.y1f{bottom:321.675000px;}
.y2b{bottom:322.275000px;}
.y126{bottom:327.075000px;}
.yce{bottom:329.775000px;}
.y192{bottom:330.375000px;}
.yee{bottom:330.975000px;}
.y1e{bottom:338.775000px;}
.y15f{bottom:339.675000px;}
.y9a{bottom:344.775000px;}
.y125{bottom:346.620000px;}
.y1e7{bottom:347.505000px;}
.y191{bottom:347.820000px;}
.y1bf{bottom:348.105000px;}
.ycd{bottom:349.320000px;}
.yed{bottom:349.620000px;}
.y67{bottom:351.405000px;}
.y1d{bottom:356.220000px;}
.y15e{bottom:356.820000px;}
.y124{bottom:361.320000px;}
.y99{bottom:362.520000px;}
.ycc{bottom:364.005000px;}
.y190{bottom:364.905000px;}
.y1be{bottom:365.520000px;}
.yec{bottom:366.705000px;}
.y66{bottom:368.820000px;}
.y1c{bottom:373.320000px;}
.y15d{bottom:374.205000px;}
.y123{bottom:378.405000px;}
.ycb{bottom:381.120000px;}
.y1e6{bottom:382.020000px;}
.y18f{bottom:382.320000px;}
.y1bd{bottom:382.620000px;}
.yeb{bottom:384.405000px;}
.y65{bottom:386.220000px;}
.y1b{bottom:391.005000px;}
.y98{bottom:391.320000px;}
.y122{bottom:395.820000px;}
.yca{bottom:398.505000px;}
.y18e{bottom:399.420000px;}
.y1bc{bottom:400.005000px;}
.y64{bottom:403.320000px;}
.yea{bottom:403.905000px;}
.y15c{bottom:408.705000px;}
.y97{bottom:409.005000px;}
.y1a{bottom:411.705000px;}
.y121{bottom:412.920000px;}
.yc9{bottom:416.220000px;}
.y1e5{bottom:416.505000px;}
.y18d{bottom:416.820000px;}
.y1bb{bottom:417.120000px;}
.ye9{bottom:418.620000px;}
.y63{bottom:420.705000px;}
.y15b{bottom:425.820000px;}
.y96{bottom:426.705000px;}
.y120{bottom:430.320000px;}
.y18c{bottom:433.920000px;}
.y1ba{bottom:434.505000px;}
.yc8{bottom:435.705000px;}
.y15a{bottom:443.220000px;}
.y11f{bottom:448.005000px;}
.y62{bottom:449.505000px;}
.yc7{bottom:450.120000px;}
.y1e4{bottom:451.005000px;}
.y18b{bottom:451.620000px;}
.ye8{bottom:453.120000px;}
.y95{bottom:458.505000px;}
.y159{bottom:460.320000px;}
.y61{bottom:467.205000px;}
.yc6{bottom:467.505000px;}
.y1e3{bottom:468.420000px;}
.y11e{bottom:468.705000px;}
.y1b9{bottom:469.005000px;}
.ye7{bottom:470.220000px;}
.y94{bottom:476.205000px;}
.y158{bottom:477.705000px;}
.y18a{bottom:483.720000px;}
.y60{bottom:484.320000px;}
.yc5{bottom:484.620000px;}
.y1e2{bottom:485.505000px;}
.y1b8{bottom:486.120000px;}
.y11d{bottom:488.205000px;}
.ye6{bottom:488.505000px;}
.y157{bottom:494.820000px;}
.y2a{bottom:498.720000px;}
.y189{bottom:501.120000px;}
.y5f{bottom:501.720000px;}
.yc4{bottom:502.320000px;}
.y11c{bottom:502.605000px;}
.y1e1{bottom:502.920000px;}
.y1b7{bottom:503.505000px;}
.y93{bottom:505.020000px;}
.ye5{bottom:506.820000px;}
.y156{bottom:512.220000px;}
.y188{bottom:518.550000px;}
.y5e{bottom:518.850000px;}
.y11b{bottom:520.050000px;}
.y1b6{bottom:520.650000px;}
.yc3{bottom:521.850000px;}
.y92{bottom:522.750000px;}
.ye4{bottom:525.150000px;}
.y155{bottom:529.350000px;}
.y187{bottom:535.650000px;}
.y5d{bottom:536.550000px;}
.y11a{bottom:537.150000px;}
.y1e0{bottom:537.450000px;}
.y1b5{bottom:538.050000px;}
.y91{bottom:539.850000px;}
.ye3{bottom:543.750000px;}
.y154{bottom:547.050000px;}
.yc2{bottom:553.650000px;}
.y119{bottom:554.550000px;}
.y1b4{bottom:555.150000px;}
.y90{bottom:557.250000px;}
.ye2{bottom:561.450000px;}
.y186{bottom:564.750000px;}
.y153{bottom:566.550000px;}
.y5c{bottom:568.650000px;}
.yc1{bottom:571.050000px;}
.y118{bottom:571.650000px;}
.y1df{bottom:571.950000px;}
.y1b3{bottom:572.550000px;}
.ye1{bottom:578.250000px;}
.y152{bottom:581.250000px;}
.y185{bottom:582.150000px;}
.y5b{bottom:586.050000px;}
.yc0{bottom:588.750000px;}
.y1de{bottom:589.050000px;}
.y1b2{bottom:589.650000px;}
.y117{bottom:589.950000px;}
.y151{bottom:595.650000px;}
.y184{bottom:599.550000px;}
.y5a{bottom:603.450000px;}
.y8f{bottom:603.750000px;}
.y1f4{bottom:606.150000px;}
.y1dd{bottom:606.450000px;}
.y1b1{bottom:607.050000px;}
.ybf{bottom:608.250000px;}
.y150{bottom:613.650000px;}
.y59{bottom:620.550000px;}
.y8e{bottom:620.850000px;}
.ybe{bottom:622.650000px;}
.y1dc{bottom:623.550000px;}
.y1b0{bottom:624.150000px;}
.y116{bottom:625.350000px;}
.y183{bottom:628.350000px;}
.y14f{bottom:631.650000px;}
.y58{bottom:637.950000px;}
.y8d{bottom:638.250000px;}
.ybd{bottom:640.050000px;}
.y1db{bottom:640.950000px;}
.y1af{bottom:641.550000px;}
.y115{bottom:643.650000px;}
.y182{bottom:646.050000px;}
.y14e{bottom:649.650000px;}
.ybc{bottom:657.150000px;}
.y1da{bottom:658.050000px;}
.y1ae{bottom:658.650000px;}
.y114{bottom:662.250000px;}
.y181{bottom:663.150000px;}
.y57{bottom:666.750000px;}
.y8c{bottom:667.050000px;}
.y14d{bottom:667.650000px;}
.ybb{bottom:674.550000px;}
.y1d9{bottom:675.450000px;}
.y1ad{bottom:676.050000px;}
.y113{bottom:679.950000px;}
.y180{bottom:680.550000px;}
.y56{bottom:684.480000px;}
.y8b{bottom:684.780000px;}
.y14c{bottom:685.695000px;}
.yba{bottom:691.695000px;}
.y1d8{bottom:692.595000px;}
.y1ac{bottom:693.195000px;}
.y17f{bottom:698.280000px;}
.y112{bottom:699.495000px;}
.y55{bottom:701.580000px;}
.y8a{bottom:701.880000px;}
.y14b{bottom:703.695000px;}
.yb9{bottom:709.380000px;}
.y1d7{bottom:709.980000px;}
.y1ab{bottom:710.595000px;}
.y111{bottom:713.895000px;}
.y17e{bottom:718.380000px;}
.y54{bottom:718.995000px;}
.y89{bottom:719.280000px;}
.y14a{bottom:721.695000px;}
.y1d6{bottom:727.080000px;}
.y1aa{bottom:727.695000px;}
.yb8{bottom:728.880000px;}
.y110{bottom:731.280000px;}
.y17d{bottom:735.795000px;}
.y53{bottom:736.095000px;}
.y148{bottom:739.695000px;}
.yb7{bottom:743.595000px;}
.y1d5{bottom:744.495000px;}
.y1a9{bottom:745.095000px;}
.y88{bottom:748.095000px;}
.y10f{bottom:748.380000px;}
.y17c{bottom:752.895000px;}
.y146{bottom:757.680000px;}
.yb6{bottom:760.695000px;}
.y1d4{bottom:761.595000px;}
.y1a8{bottom:762.195000px;}
.y52{bottom:765.195000px;}
.y10e{bottom:765.480000px;}
.y87{bottom:765.780000px;}
.y17b{bottom:770.295000px;}
.y145{bottom:775.695000px;}
.yb5{bottom:777.195000px;}
.y1d3{bottom:778.980000px;}
.y1a7{bottom:779.580000px;}
.y51{bottom:782.580000px;}
.y86{bottom:782.880000px;}
.y10d{bottom:784.080000px;}
.y17a{bottom:787.380000px;}
.yb4{bottom:791.580000px;}
.y1d2{bottom:796.080000px;}
.y1a6{bottom:796.695000px;}
.y144{bottom:797.580000px;}
.y50{bottom:799.995000px;}
.y85{bottom:800.295000px;}
.y10c{bottom:801.195000px;}
.y179{bottom:804.795000px;}
.yb3{bottom:809.880000px;}
.y1d1{bottom:813.495000px;}
.y1a5{bottom:814.080000px;}
.y142{bottom:815.295000px;}
.y4f{bottom:817.080000px;}
.y84{bottom:817.980000px;}
.y10b{bottom:818.295000px;}
.y178{bottom:821.895000px;}
.yb2{bottom:828.195000px;}
.y1d0{bottom:830.580000px;}
.y1a4{bottom:831.795000px;}
.y140{bottom:833.280000px;}
.y10a{bottom:836.880000px;}
.y177{bottom:839.295000px;}
.y4e{bottom:846.195000px;}
.yb1{bottom:846.795000px;}
.y1cf{bottom:847.995000px;}
.y83{bottom:852.825000px;}
.y13f{bottom:854.025000px;}
.y109{bottom:854.625000px;}
.y176{bottom:856.425000px;}
.y4d{bottom:863.625000px;}
.yb0{bottom:865.125000px;}
.y1a3{bottom:866.625000px;}
.y19{bottom:870.525000px;}
.y13e{bottom:872.025000px;}
.y175{bottom:873.825000px;}
.y108{bottom:874.725000px;}
.y4c{bottom:881.025000px;}
.y1ce{bottom:882.525000px;}
.yaf{bottom:882.825000px;}
.y1a2{bottom:884.325000px;}
.y82{bottom:887.625000px;}
.y13d{bottom:890.025000px;}
.y18{bottom:890.925000px;}
.y107{bottom:892.125000px;}
.y4b{bottom:898.125000px;}
.y1cd{bottom:899.625000px;}
.y1a1{bottom:901.425000px;}
.yae{bottom:902.325000px;}
.y13c{bottom:908.025000px;}
.y174{bottom:908.625000px;}
.y106{bottom:909.225000px;}
.y17{bottom:910.725000px;}
.y4a{bottom:915.525000px;}
.y81{bottom:916.725000px;}
.yad{bottom:917.025000px;}
.y1a0{bottom:918.825000px;}
.y13a{bottom:926.025000px;}
.y105{bottom:926.625000px;}
.y173{bottom:929.025000px;}
.y16{bottom:929.325000px;}
.y80{bottom:934.125000px;}
.y19f{bottom:935.925000px;}
.y172{bottom:943.425000px;}
.y49{bottom:944.325000px;}
.y104{bottom:944.925000px;}
.y7f{bottom:951.525000px;}
.y15{bottom:953.325000px;}
.y139{bottom:955.425000px;}
.y48{bottom:962.025000px;}
.y103{bottom:963.225000px;}
.y14{bottom:964.725000px;}
.y7e{bottom:968.025000px;}
.y1cc{bottom:968.625000px;}
.yac{bottom:969.225000px;}
.y19e{bottom:970.425000px;}
.y138{bottom:976.125000px;}
.y171{bottom:978.825000px;}
.y13{bottom:979.125000px;}
.y102{bottom:981.525000px;}
.y7d{bottom:982.425000px;}
.y1cb{bottom:986.025000px;}
.y19d{bottom:987.825000px;}
.yab{bottom:988.725000px;}
.y47{bottom:990.825000px;}
.y137{bottom:996.525000px;}
.y101{bottom:998.925000px;}
.y12{bottom:999.825000px;}
.yaa{bottom:1003.125000px;}
.y46{bottom:1008.525000px;}
.y136{bottom:1013.625000px;}
.y16e{bottom:1013.925000px;}
.y100{bottom:1016.670000px;}
.y7c{bottom:1016.955000px;}
.y11{bottom:1020.570000px;}
.y45{bottom:1025.670000px;}
.y135{bottom:1031.070000px;}
.y7b{bottom:1034.370000px;}
.yff{bottom:1036.170000px;}
.ya9{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.y44{bottom:1043.070000px;}
.ye0{bottom:1046.670000px;}
.y134{bottom:1048.170000px;}
.y16d{bottom:1049.370000px;}
.yfe{bottom:1050.570000px;}
.y7a{bottom:1050.870000px;}
.ydf{bottom:1051.455000px;}
.ya8{bottom:1055.070000px;}
.yc{bottom:1062.570000px;}
.y79{bottom:1065.255000px;}
.y133{bottom:1066.455000px;}
.yfd{bottom:1067.955000px;}
.yb{bottom:1068.255000px;}
.yde{bottom:1068.870000px;}
.y43{bottom:1071.870000px;}
.ya7{bottom:1072.170000px;}
.y78{bottom:1082.670000px;}
.ya{bottom:1083.570000px;}
.y16b{bottom:1084.455000px;}
.y132{bottom:1084.755000px;}
.yfc{bottom:1085.070000px;}
.ydd{bottom:1085.955000px;}
.y42{bottom:1089.570000px;}
.ya6{bottom:1089.870000px;}
.y9{bottom:1097.955000px;}
.y77{bottom:1099.755000px;}
.ydc{bottom:1103.370000px;}
.y41{bottom:1106.670000px;}
.ya5{bottom:1109.370000px;}
.y8{bottom:1115.670000px;}
.y76{bottom:1117.455000px;}
.y169{bottom:1119.870000px;}
.ydb{bottom:1120.455000px;}
.yfb{bottom:1121.670000px;}
.y40{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y75{bottom:1138.170000px;}
.yfa{bottom:1139.955000px;}
.y6{bottom:1141.170000px;}
.y3e{bottom:1196.400000px;}
.h16{height:4.189453px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h19{height:17.085000px;}
.h1d{height:17.100000px;}
.h1a{height:17.385000px;}
.h17{height:17.400000px;}
.h1b{height:17.437500px;}
.h18{height:20.137500px;}
.h1c{height:20.947266px;}
.ha{height:21.000000px;}
.hc{height:27.650391px;}
.h15{height:33.515625px;}
.h7{height:33.867188px;}
.h20{height:34.200000px;}
.h1f{height:34.237500px;}
.h21{height:34.485000px;}
.h1e{height:34.500000px;}
.h22{height:34.537500px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hd{height:38.100586px;}
.h12{height:38.953125px;}
.hf{height:41.894531px;}
.h4{height:42.333984px;}
.h14{height:43.681641px;}
.h13{height:44.507812px;}
.hb{height:49.250391px;}
.he{height:49.453125px;}
.h6{height:50.800781px;}
.h11{height:58.429688px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h10{height:339.075000px;}
.h0{height:1263.000000px;}
.we{width:39.000000px;}
.w12{width:50.100000px;}
.w10{width:60.900000px;}
.w11{width:60.937500px;}
.w13{width:71.737500px;}
.w4{width:72.300000px;}
.wc{width:83.737500px;}
.w9{width:93.937500px;}
.w3{width:108.000000px;}
.wd{width:114.937500px;}
.wa{width:127.537500px;}
.w8{width:134.437500px;}
.wb{width:156.330000px;}
.w6{width:247.875000px;}
.wf{width:328.620000px;}
.w5{width:483.450000px;}
.w7{width:728.925000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.800000px;}
.x2{left:10.799998px;}
.x1f{left:12.000000px;}
.xf{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.x1{left:81.037487px;}
.xe{left:84.037500px;}
.x11{left:108.037487px;}
.xd{left:111.330000px;}
.x19{left:120.937500px;}
.x12{left:135.037487px;}
.x9{left:153.629987px;}
.x15{left:216.375000px;}
.x17{left:238.575000px;}
.xb{left:241.582500px;}
.x16{left:310.920000px;}
.x18{left:323.220000px;}
.x6{left:446.249987px;}
.x1a{left:450.450000px;}
.x1b{left:512.250000px;}
.xc{left:564.495000px;}
.x1c{left:573.780000px;}
.x10{left:592.979987px;}
.x8{left:616.379987px;}
.x1d{left:635.595000px;}
.x7{left:648.194987px;}
.x5{left:697.124987px;}
.x1e{left:748.425000px;}
.x13{left:797.669987px;}
.xa{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.lsc{letter-spacing:-1.253333pt;}
.ls7{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.426667pt;}
.lsd{letter-spacing:-0.185600pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.053333pt;}
.ls8{letter-spacing:0.069333pt;}
.ls16{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.341333pt;}
.ls13{letter-spacing:0.373333pt;}
.ls0{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.586667pt;}
.ls10{letter-spacing:8.160000pt;}
.ls11{letter-spacing:10.133333pt;}
.ls14{letter-spacing:11.200000pt;}
.ls17{letter-spacing:13.333333pt;}
.ls12{letter-spacing:13.973333pt;}
.ls9{letter-spacing:40.640000pt;}
.lse{letter-spacing:56.640000pt;}
.ws9{word-spacing:-53.333333pt;}
.ws1{word-spacing:-16.341333pt;}
.wsb{word-spacing:-13.706667pt;}
.wsa{word-spacing:-13.546667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws3{word-spacing:-13.333333pt;}
.wsc{word-spacing:-13.226667pt;}
.ws5{word-spacing:-11.466667pt;}
.ws6{word-spacing:-9.898667pt;}
.ws2{word-spacing:-8.800000pt;}
.ws8{word-spacing:-8.614400pt;}
.ws7{word-spacing:-7.546667pt;}
.ws4{word-spacing:0.000000pt;}
._1e{margin-left:-2.202667pt;}
._1{margin-left:-1.189333pt;}
._0{width:0.997333pt;}
._7{width:2.368000pt;}
._6{width:3.328000pt;}
._8{width:4.512000pt;}
._9{width:6.133333pt;}
._a{width:7.040000pt;}
._12{width:8.426667pt;}
._d{width:9.525333pt;}
._15{width:10.453333pt;}
._11{width:11.344000pt;}
._f{width:12.405333pt;}
._e{width:14.240000pt;}
._14{width:15.200000pt;}
._17{width:16.288000pt;}
._16{width:17.653333pt;}
._1d{width:18.848000pt;}
._13{width:19.786667pt;}
._18{width:21.066667pt;}
._10{width:21.973333pt;}
._b{width:23.360000pt;}
._c{width:24.442667pt;}
._19{width:27.802667pt;}
._1a{width:28.848000pt;}
._1b{width:29.813333pt;}
._1c{width:31.077333pt;}
._20{width:34.053333pt;}
._21{width:35.296000pt;}
._2{width:38.933333pt;}
._1f{width:43.205333pt;}
._4{width:298.826667pt;}
._3{width:1033.360000pt;}
._5{width:1053.173333pt;}
.fs8{font-size:5.333333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs9{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y143{bottom:2.920000pt;}
.y163{bottom:2.933333pt;}
.y149{bottom:3.186667pt;}
.y13b{bottom:3.200000pt;}
.y147{bottom:3.213333pt;}
.y170{bottom:3.240000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y141{bottom:5.600000pt;}
.y3d{bottom:10.386667pt;}
.y5{bottom:10.966667pt;}
.y16a{bottom:18.120000pt;}
.y168{bottom:18.133333pt;}
.y165{bottom:18.400000pt;}
.y16c{bottom:18.413333pt;}
.y16f{bottom:18.440000pt;}
.y3c{bottom:27.760000pt;}
.y3b{bottom:40.560000pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3a{bottom:56.026667pt;}
.y3f{bottom:65.900000pt;}
.y39{bottom:71.226667pt;}
.y3{bottom:72.300000pt;}
.y38{bottom:86.693333pt;}
.y74{bottom:99.500000pt;}
.y37{bottom:101.893333pt;}
.y131{bottom:103.766667pt;}
.yf9{bottom:105.633333pt;}
.yda{bottom:106.966667pt;}
.y1f3{bottom:109.633333pt;}
.y29{bottom:111.233333pt;}
.y73{bottom:114.700000pt;}
.y36{bottom:117.360000pt;}
.y19c{bottom:118.966667pt;}
.y130{bottom:121.633333pt;}
.yf8{bottom:121.900000pt;}
.yd9{bottom:122.166667pt;}
.y1f2{bottom:124.833333pt;}
.y1ca{bottom:125.366667pt;}
.y28{bottom:126.433333pt;}
.ya4{bottom:129.100000pt;}
.y72{bottom:130.166667pt;}
.y35{bottom:132.560000pt;}
.y167{bottom:135.226667pt;}
.y12f{bottom:137.106667pt;}
.yf7{bottom:137.373333pt;}
.yd8{bottom:137.626667pt;}
.y1f1{bottom:140.293333pt;}
.y1c9{bottom:140.826667pt;}
.y27{bottom:141.906667pt;}
.ya3{bottom:144.293333pt;}
.y19b{bottom:144.826667pt;}
.y71{bottom:145.373333pt;}
.y34{bottom:148.026667pt;}
.y12e{bottom:152.293333pt;}
.yd7{bottom:152.826667pt;}
.yf6{bottom:153.093333pt;}
.y1f0{bottom:155.493333pt;}
.y1c8{bottom:156.026667pt;}
.ya2{bottom:159.800000pt;}
.y19a{bottom:160.333333pt;}
.y70{bottom:160.866667pt;}
.y33{bottom:163.253333pt;}
.y166{bottom:166.466667pt;}
.y26{bottom:167.533333pt;}
.y12d{bottom:167.800000pt;}
.yd6{bottom:168.333333pt;}
.yf5{bottom:170.466667pt;}
.y1ef{bottom:171.000000pt;}
.y1c7{bottom:171.533333pt;}
.ya1{bottom:175.000000pt;}
.y199{bottom:175.800000pt;}
.y6f{bottom:176.066667pt;}
.y32{bottom:178.720000pt;}
.y25{bottom:183.266667pt;}
.y12c{bottom:183.533333pt;}
.yd5{bottom:184.066667pt;}
.y1ee{bottom:186.200000pt;}
.y1c6{bottom:186.733333pt;}
.ya0{bottom:190.466667pt;}
.y198{bottom:191.000000pt;}
.y6e{bottom:191.533333pt;}
.y31{bottom:193.920000pt;}
.y164{bottom:197.666667pt;}
.y24{bottom:198.466667pt;}
.yf4{bottom:198.733333pt;}
.y12b{bottom:200.866667pt;}
.yd4{bottom:201.400000pt;}
.y1ed{bottom:201.666667pt;}
.y1c5{bottom:202.200000pt;}
.y9f{bottom:205.666667pt;}
.y197{bottom:206.466667pt;}
.y6d{bottom:206.733333pt;}
.y30{bottom:209.400000pt;}
.y12a{bottom:213.666667pt;}
.yf3{bottom:213.933333pt;}
.yd3{bottom:214.200000pt;}
.y1ec{bottom:216.866667pt;}
.y1c4{bottom:217.400000pt;}
.y9e{bottom:221.400000pt;}
.y196{bottom:221.666667pt;}
.y6c{bottom:222.200000pt;}
.y23{bottom:224.333333pt;}
.y2f{bottom:224.600000pt;}
.yf2{bottom:229.133333pt;}
.yd2{bottom:229.666667pt;}
.y1eb{bottom:232.333333pt;}
.y1c3{bottom:232.866667pt;}
.y195{bottom:237.133333pt;}
.y6b{bottom:237.400000pt;}
.y22{bottom:239.800000pt;}
.y2e{bottom:240.066667pt;}
.y129{bottom:244.333333pt;}
.yd1{bottom:244.866667pt;}
.yf1{bottom:245.400000pt;}
.y162{bottom:246.466667pt;}
.y1ea{bottom:247.533333pt;}
.y1c2{bottom:248.066667pt;}
.y9d{bottom:249.933333pt;}
.y6a{bottom:252.866667pt;}
.y2d{bottom:255.253333pt;}
.y21{bottom:255.266667pt;}
.y161{bottom:255.800000pt;}
.y128{bottom:259.800000pt;}
.yd0{bottom:261.133333pt;}
.yf0{bottom:261.666667pt;}
.y194{bottom:262.733333pt;}
.y1e9{bottom:263.000000pt;}
.y1c1{bottom:263.533333pt;}
.y9c{bottom:265.400000pt;}
.y69{bottom:268.066667pt;}
.y20{bottom:270.466667pt;}
.y2c{bottom:270.733333pt;}
.y160{bottom:271.266667pt;}
.y127{bottom:275.000000pt;}
.ycf{bottom:277.400000pt;}
.yef{bottom:277.933333pt;}
.y1e8{bottom:278.200000pt;}
.y193{bottom:278.466667pt;}
.y1c0{bottom:278.733333pt;}
.y9b{bottom:280.866667pt;}
.y68{bottom:283.800000pt;}
.y1f{bottom:285.933333pt;}
.y2b{bottom:286.466667pt;}
.y126{bottom:290.733333pt;}
.yce{bottom:293.133333pt;}
.y192{bottom:293.666667pt;}
.yee{bottom:294.200000pt;}
.y1e{bottom:301.133333pt;}
.y15f{bottom:301.933333pt;}
.y9a{bottom:306.466667pt;}
.y125{bottom:308.106667pt;}
.y1e7{bottom:308.893333pt;}
.y191{bottom:309.173333pt;}
.y1bf{bottom:309.426667pt;}
.ycd{bottom:310.506667pt;}
.yed{bottom:310.773333pt;}
.y67{bottom:312.360000pt;}
.y1d{bottom:316.640000pt;}
.y15e{bottom:317.173333pt;}
.y124{bottom:321.173333pt;}
.y99{bottom:322.240000pt;}
.ycc{bottom:323.560000pt;}
.y190{bottom:324.360000pt;}
.y1be{bottom:324.906667pt;}
.yec{bottom:325.960000pt;}
.y66{bottom:327.840000pt;}
.y1c{bottom:331.840000pt;}
.y15d{bottom:332.626667pt;}
.y123{bottom:336.360000pt;}
.ycb{bottom:338.773333pt;}
.y1e6{bottom:339.573333pt;}
.y18f{bottom:339.840000pt;}
.y1bd{bottom:340.106667pt;}
.yeb{bottom:341.693333pt;}
.y65{bottom:343.306667pt;}
.y1b{bottom:347.560000pt;}
.y98{bottom:347.840000pt;}
.y122{bottom:351.840000pt;}
.yca{bottom:354.226667pt;}
.y18e{bottom:355.040000pt;}
.y1bc{bottom:355.560000pt;}
.y64{bottom:358.506667pt;}
.yea{bottom:359.026667pt;}
.y15c{bottom:363.293333pt;}
.y97{bottom:363.560000pt;}
.y1a{bottom:365.960000pt;}
.y121{bottom:367.040000pt;}
.yc9{bottom:369.973333pt;}
.y1e5{bottom:370.226667pt;}
.y18d{bottom:370.506667pt;}
.y1bb{bottom:370.773333pt;}
.ye9{bottom:372.106667pt;}
.y63{bottom:373.960000pt;}
.y15b{bottom:378.506667pt;}
.y96{bottom:379.293333pt;}
.y120{bottom:382.506667pt;}
.y18c{bottom:385.706667pt;}
.y1ba{bottom:386.226667pt;}
.yc8{bottom:387.293333pt;}
.y15a{bottom:393.973333pt;}
.y11f{bottom:398.226667pt;}
.y62{bottom:399.560000pt;}
.yc7{bottom:400.106667pt;}
.y1e4{bottom:400.893333pt;}
.y18b{bottom:401.440000pt;}
.ye8{bottom:402.773333pt;}
.y95{bottom:407.560000pt;}
.y159{bottom:409.173333pt;}
.y61{bottom:415.293333pt;}
.yc6{bottom:415.560000pt;}
.y1e3{bottom:416.373333pt;}
.y11e{bottom:416.626667pt;}
.y1b9{bottom:416.893333pt;}
.ye7{bottom:417.973333pt;}
.y94{bottom:423.293333pt;}
.y158{bottom:424.626667pt;}
.y18a{bottom:429.973333pt;}
.y60{bottom:430.506667pt;}
.yc5{bottom:430.773333pt;}
.y1e2{bottom:431.560000pt;}
.y1b8{bottom:432.106667pt;}
.y11d{bottom:433.960000pt;}
.ye6{bottom:434.226667pt;}
.y157{bottom:439.840000pt;}
.y2a{bottom:443.306667pt;}
.y189{bottom:445.440000pt;}
.y5f{bottom:445.973333pt;}
.yc4{bottom:446.506667pt;}
.y11c{bottom:446.760000pt;}
.y1e1{bottom:447.040000pt;}
.y1b7{bottom:447.560000pt;}
.y93{bottom:448.906667pt;}
.ye5{bottom:450.506667pt;}
.y156{bottom:455.306667pt;}
.y188{bottom:460.933333pt;}
.y5e{bottom:461.200000pt;}
.y11b{bottom:462.266667pt;}
.y1b6{bottom:462.800000pt;}
.yc3{bottom:463.866667pt;}
.y92{bottom:464.666667pt;}
.ye4{bottom:466.800000pt;}
.y155{bottom:470.533333pt;}
.y187{bottom:476.133333pt;}
.y5d{bottom:476.933333pt;}
.y11a{bottom:477.466667pt;}
.y1e0{bottom:477.733333pt;}
.y1b5{bottom:478.266667pt;}
.y91{bottom:479.866667pt;}
.ye3{bottom:483.333333pt;}
.y154{bottom:486.266667pt;}
.yc2{bottom:492.133333pt;}
.y119{bottom:492.933333pt;}
.y1b4{bottom:493.466667pt;}
.y90{bottom:495.333333pt;}
.ye2{bottom:499.066667pt;}
.y186{bottom:502.000000pt;}
.y153{bottom:503.600000pt;}
.y5c{bottom:505.466667pt;}
.yc1{bottom:507.600000pt;}
.y118{bottom:508.133333pt;}
.y1df{bottom:508.400000pt;}
.y1b3{bottom:508.933333pt;}
.ye1{bottom:514.000000pt;}
.y152{bottom:516.666667pt;}
.y185{bottom:517.466667pt;}
.y5b{bottom:520.933333pt;}
.yc0{bottom:523.333333pt;}
.y1de{bottom:523.600000pt;}
.y1b2{bottom:524.133333pt;}
.y117{bottom:524.400000pt;}
.y151{bottom:529.466667pt;}
.y184{bottom:532.933333pt;}
.y5a{bottom:536.400000pt;}
.y8f{bottom:536.666667pt;}
.y1f4{bottom:538.800000pt;}
.y1dd{bottom:539.066667pt;}
.y1b1{bottom:539.600000pt;}
.ybf{bottom:540.666667pt;}
.y150{bottom:545.466667pt;}
.y59{bottom:551.600000pt;}
.y8e{bottom:551.866667pt;}
.ybe{bottom:553.466667pt;}
.y1dc{bottom:554.266667pt;}
.y1b0{bottom:554.800000pt;}
.y116{bottom:555.866667pt;}
.y183{bottom:558.533333pt;}
.y14f{bottom:561.466667pt;}
.y58{bottom:567.066667pt;}
.y8d{bottom:567.333333pt;}
.ybd{bottom:568.933333pt;}
.y1db{bottom:569.733333pt;}
.y1af{bottom:570.266667pt;}
.y115{bottom:572.133333pt;}
.y182{bottom:574.266667pt;}
.y14e{bottom:577.466667pt;}
.ybc{bottom:584.133333pt;}
.y1da{bottom:584.933333pt;}
.y1ae{bottom:585.466667pt;}
.y114{bottom:588.666667pt;}
.y181{bottom:589.466667pt;}
.y57{bottom:592.666667pt;}
.y8c{bottom:592.933333pt;}
.y14d{bottom:593.466667pt;}
.ybb{bottom:599.600000pt;}
.y1d9{bottom:600.400000pt;}
.y1ad{bottom:600.933333pt;}
.y113{bottom:604.400000pt;}
.y180{bottom:604.933333pt;}
.y56{bottom:608.426667pt;}
.y8b{bottom:608.693333pt;}
.y14c{bottom:609.506667pt;}
.yba{bottom:614.840000pt;}
.y1d8{bottom:615.640000pt;}
.y1ac{bottom:616.173333pt;}
.y17f{bottom:620.693333pt;}
.y112{bottom:621.773333pt;}
.y55{bottom:623.626667pt;}
.y8a{bottom:623.893333pt;}
.y14b{bottom:625.506667pt;}
.yb9{bottom:630.560000pt;}
.y1d7{bottom:631.093333pt;}
.y1ab{bottom:631.640000pt;}
.y111{bottom:634.573333pt;}
.y17e{bottom:638.560000pt;}
.y54{bottom:639.106667pt;}
.y89{bottom:639.360000pt;}
.y14a{bottom:641.506667pt;}
.y1d6{bottom:646.293333pt;}
.y1aa{bottom:646.840000pt;}
.yb8{bottom:647.893333pt;}
.y110{bottom:650.026667pt;}
.y17d{bottom:654.040000pt;}
.y53{bottom:654.306667pt;}
.y148{bottom:657.506667pt;}
.yb7{bottom:660.973333pt;}
.y1d5{bottom:661.773333pt;}
.y1a9{bottom:662.306667pt;}
.y88{bottom:664.973333pt;}
.y10f{bottom:665.226667pt;}
.y17c{bottom:669.240000pt;}
.y146{bottom:673.493333pt;}
.yb6{bottom:676.173333pt;}
.y1d4{bottom:676.973333pt;}
.y1a8{bottom:677.506667pt;}
.y52{bottom:680.173333pt;}
.y10e{bottom:680.426667pt;}
.y87{bottom:680.693333pt;}
.y17b{bottom:684.706667pt;}
.y145{bottom:689.506667pt;}
.yb5{bottom:690.840000pt;}
.y1d3{bottom:692.426667pt;}
.y1a7{bottom:692.960000pt;}
.y51{bottom:695.626667pt;}
.y86{bottom:695.893333pt;}
.y10d{bottom:696.960000pt;}
.y17a{bottom:699.893333pt;}
.yb4{bottom:703.626667pt;}
.y1d2{bottom:707.626667pt;}
.y1a6{bottom:708.173333pt;}
.y144{bottom:708.960000pt;}
.y50{bottom:711.106667pt;}
.y85{bottom:711.373333pt;}
.y10c{bottom:712.173333pt;}
.y179{bottom:715.373333pt;}
.yb3{bottom:719.893333pt;}
.y1d1{bottom:723.106667pt;}
.y1a5{bottom:723.626667pt;}
.y142{bottom:724.706667pt;}
.y4f{bottom:726.293333pt;}
.y84{bottom:727.093333pt;}
.y10b{bottom:727.373333pt;}
.y178{bottom:730.573333pt;}
.yb2{bottom:736.173333pt;}
.y1d0{bottom:738.293333pt;}
.y1a4{bottom:739.373333pt;}
.y140{bottom:740.693333pt;}
.y10a{bottom:743.893333pt;}
.y177{bottom:746.040000pt;}
.y4e{bottom:752.173333pt;}
.yb1{bottom:752.706667pt;}
.y1cf{bottom:753.773333pt;}
.y83{bottom:758.066667pt;}
.y13f{bottom:759.133333pt;}
.y109{bottom:759.666667pt;}
.y176{bottom:761.266667pt;}
.y4d{bottom:767.666667pt;}
.yb0{bottom:769.000000pt;}
.y1a3{bottom:770.333333pt;}
.y19{bottom:773.800000pt;}
.y13e{bottom:775.133333pt;}
.y175{bottom:776.733333pt;}
.y108{bottom:777.533333pt;}
.y4c{bottom:783.133333pt;}
.y1ce{bottom:784.466667pt;}
.yaf{bottom:784.733333pt;}
.y1a2{bottom:786.066667pt;}
.y82{bottom:789.000000pt;}
.y13d{bottom:791.133333pt;}
.y18{bottom:791.933333pt;}
.y107{bottom:793.000000pt;}
.y4b{bottom:798.333333pt;}
.y1cd{bottom:799.666667pt;}
.y1a1{bottom:801.266667pt;}
.yae{bottom:802.066667pt;}
.y13c{bottom:807.133333pt;}
.y174{bottom:807.666667pt;}
.y106{bottom:808.200000pt;}
.y17{bottom:809.533333pt;}
.y4a{bottom:813.800000pt;}
.y81{bottom:814.866667pt;}
.yad{bottom:815.133333pt;}
.y1a0{bottom:816.733333pt;}
.y13a{bottom:823.133333pt;}
.y105{bottom:823.666667pt;}
.y173{bottom:825.800000pt;}
.y16{bottom:826.066667pt;}
.y80{bottom:830.333333pt;}
.y19f{bottom:831.933333pt;}
.y172{bottom:838.600000pt;}
.y49{bottom:839.400000pt;}
.y104{bottom:839.933333pt;}
.y7f{bottom:845.800000pt;}
.y15{bottom:847.400000pt;}
.y139{bottom:849.266667pt;}
.y48{bottom:855.133333pt;}
.y103{bottom:856.200000pt;}
.y14{bottom:857.533333pt;}
.y7e{bottom:860.466667pt;}
.y1cc{bottom:861.000000pt;}
.yac{bottom:861.533333pt;}
.y19e{bottom:862.600000pt;}
.y138{bottom:867.666667pt;}
.y171{bottom:870.066667pt;}
.y13{bottom:870.333333pt;}
.y102{bottom:872.466667pt;}
.y7d{bottom:873.266667pt;}
.y1cb{bottom:876.466667pt;}
.y19d{bottom:878.066667pt;}
.yab{bottom:878.866667pt;}
.y47{bottom:880.733333pt;}
.y137{bottom:885.800000pt;}
.y101{bottom:887.933333pt;}
.y12{bottom:888.733333pt;}
.yaa{bottom:891.666667pt;}
.y46{bottom:896.466667pt;}
.y136{bottom:901.000000pt;}
.y16e{bottom:901.266667pt;}
.y100{bottom:903.706667pt;}
.y7c{bottom:903.960000pt;}
.y11{bottom:907.173333pt;}
.y45{bottom:911.706667pt;}
.y135{bottom:916.506667pt;}
.y7b{bottom:919.440000pt;}
.yff{bottom:921.040000pt;}
.ya9{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.y44{bottom:927.173333pt;}
.ye0{bottom:930.373333pt;}
.y134{bottom:931.706667pt;}
.y16d{bottom:932.773333pt;}
.yfe{bottom:933.840000pt;}
.y7a{bottom:934.106667pt;}
.ydf{bottom:934.626667pt;}
.ya8{bottom:937.840000pt;}
.yc{bottom:944.506667pt;}
.y79{bottom:946.893333pt;}
.y133{bottom:947.960000pt;}
.yfd{bottom:949.293333pt;}
.yb{bottom:949.560000pt;}
.yde{bottom:950.106667pt;}
.y43{bottom:952.773333pt;}
.ya7{bottom:953.040000pt;}
.y78{bottom:962.373333pt;}
.ya{bottom:963.173333pt;}
.y16b{bottom:963.960000pt;}
.y132{bottom:964.226667pt;}
.yfc{bottom:964.506667pt;}
.ydd{bottom:965.293333pt;}
.y42{bottom:968.506667pt;}
.ya6{bottom:968.773333pt;}
.y9{bottom:975.960000pt;}
.y77{bottom:977.560000pt;}
.ydc{bottom:980.773333pt;}
.y41{bottom:983.706667pt;}
.ya5{bottom:986.106667pt;}
.y8{bottom:991.706667pt;}
.y76{bottom:993.293333pt;}
.y169{bottom:995.440000pt;}
.ydb{bottom:995.960000pt;}
.yfb{bottom:997.040000pt;}
.y40{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y75{bottom:1011.706667pt;}
.yfa{bottom:1013.293333pt;}
.y6{bottom:1014.373333pt;}
.y3e{bottom:1063.466667pt;}
.h16{height:3.723958pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h19{height:15.186667pt;}
.h1d{height:15.200000pt;}
.h1a{height:15.453333pt;}
.h17{height:15.466667pt;}
.h1b{height:15.500000pt;}
.h18{height:17.900000pt;}
.h1c{height:18.619792pt;}
.ha{height:18.666667pt;}
.hc{height:24.578125pt;}
.h15{height:29.791667pt;}
.h7{height:30.104167pt;}
.h20{height:30.400000pt;}
.h1f{height:30.433333pt;}
.h21{height:30.653333pt;}
.h1e{height:30.666667pt;}
.h22{height:30.700000pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hd{height:33.867188pt;}
.h12{height:34.625000pt;}
.hf{height:37.239583pt;}
.h4{height:37.630208pt;}
.h14{height:38.828125pt;}
.h13{height:39.562500pt;}
.hb{height:43.778125pt;}
.he{height:43.958333pt;}
.h6{height:45.156250pt;}
.h11{height:51.937500pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h10{height:301.400000pt;}
.h0{height:1122.666667pt;}
.we{width:34.666667pt;}
.w12{width:44.533333pt;}
.w10{width:54.133333pt;}
.w11{width:54.166667pt;}
.w13{width:63.766667pt;}
.w4{width:64.266667pt;}
.wc{width:74.433333pt;}
.w9{width:83.500000pt;}
.w3{width:96.000000pt;}
.wd{width:102.166667pt;}
.wa{width:113.366667pt;}
.w8{width:119.500000pt;}
.wb{width:138.960000pt;}
.w6{width:220.333333pt;}
.wf{width:292.106667pt;}
.w5{width:429.733333pt;}
.w7{width:647.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.933333pt;}
.x2{left:9.599999pt;}
.x1f{left:10.666667pt;}
.xf{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.x1{left:72.033322pt;}
.xe{left:74.700000pt;}
.x11{left:96.033322pt;}
.xd{left:98.960000pt;}
.x19{left:107.500000pt;}
.x12{left:120.033322pt;}
.x9{left:136.559988pt;}
.x15{left:192.333333pt;}
.x17{left:212.066667pt;}
.xb{left:214.740000pt;}
.x16{left:276.373333pt;}
.x18{left:287.306667pt;}
.x6{left:396.666655pt;}
.x1a{left:400.400000pt;}
.x1b{left:455.333333pt;}
.xc{left:501.773333pt;}
.x1c{left:510.026667pt;}
.x10{left:527.093322pt;}
.x8{left:547.893322pt;}
.x1d{left:564.973333pt;}
.x7{left:576.173322pt;}
.x5{left:619.666655pt;}
.x1e{left:665.266667pt;}
.x13{left:709.039988pt;}
.xa{left:722.106655pt;}
}




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