
    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_7c3a12f3ad61f1f1d294cfb0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_9d70f6d51c65f458e4b24555.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_dab80553378b6ee5e6343e16.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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6912471985e4fdc4367fac0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_61bec6767451d39c071cb53c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_32506530f9494aa113053cc4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c7459e1f4aa266949f39e910.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d340540da9e5764922e575c4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a526d0bb8e11df4b3530c7f7.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.ls14{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.036000px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.444960px;}
.ls11{letter-spacing:10.026720px;}
.ls7{letter-spacing:11.466720px;}
.ls12{letter-spacing:13.626720px;}
.lsb{letter-spacing:16.506720px;}
.ls10{letter-spacing:17.226720px;}
.ls13{letter-spacing:20.826720px;}
.ls4{letter-spacing:43.146720px;}
.ls6{letter-spacing:46.026720px;}
.ls2{letter-spacing:46.908000px;}
.lsc{letter-spacing:49.626720px;}
.ls8{letter-spacing:55.386720px;}
.lsd{letter-spacing:56.106720px;}
.lsa{letter-spacing:70.506720px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws0{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-2.909520px;}
._3{margin-left:-1.061280px;}
._0{width:1.135440px;}
._6{width:2.325360px;}
._d{width:3.503760px;}
._18{width:4.743600px;}
._8{width:5.833920px;}
._7{width:7.051680px;}
._12{width:8.605440px;}
._a{width:10.099440px;}
._9{width:11.354400px;}
._2{width:13.362960px;}
._2a{width:14.435280px;}
._b{width:15.955920px;}
._16{width:17.091360px;}
._25{width:18.131760px;}
._11{width:19.302480px;}
._22{width:20.493840px;}
._26{width:22.230720px;}
._1e{width:23.629680px;}
._1f{width:24.860160px;}
._e{width:25.974000px;}
._15{width:27.609120px;}
._27{width:28.610640px;}
._14{width:29.760480px;}
._13{width:31.134960px;}
._c{width:33.405840px;}
._17{width:34.470480px;}
._1c{width:35.616960px;}
._1b{width:37.051200px;}
._29{width:38.126880px;}
._28{width:39.202560px;}
._f{width:41.202000px;}
._21{width:42.513840px;}
._1d{width:43.624800px;}
._19{width:44.760240px;}
._1a{width:45.776160px;}
._2b{width:47.034000px;}
._23{width:50.776320px;}
._24{width:52.209840px;}
._20{width:56.916000px;}
._10{width:125.928000px;}
._1{width:342.981120px;}
._4{width:813.330960px;}
.fc6{color:transparent;}
.fc5{color:rgb(85,142,213);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y17e{bottom:-841.425000px;}
.y177{bottom:-837.645000px;}
.y17d{bottom:-827.565000px;}
.y17c{bottom:-813.885000px;}
.y17b{bottom:-800.025000px;}
.y17a{bottom:-786.165000px;}
.y179{bottom:-772.485000px;}
.y178{bottom:-758.625000px;}
.y176{bottom:-744.045000px;}
.y175{bottom:-729.465000px;}
.y174{bottom:-715.785000px;}
.y173{bottom:-701.925000px;}
.y172{bottom:-688.065000px;}
.y171{bottom:-673.665000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.520000px;}
.y18a{bottom:2.700000px;}
.y35{bottom:2.880000px;}
.y5{bottom:8.316000px;}
.yb{bottom:14.040000px;}
.y2c{bottom:16.020000px;}
.y6{bottom:16.236000px;}
.y183{bottom:16.380000px;}
.y16{bottom:16.560000px;}
.y2e{bottom:16.740000px;}
.y34{bottom:18.360000px;}
.y182{bottom:30.240000px;}
.y33{bottom:34.020000px;}
.y2b{bottom:34.560000px;}
.y8{bottom:35.460000px;}
.y181{bottom:43.920000px;}
.y189{bottom:44.100000px;}
.y32{bottom:49.500000px;}
.y2a{bottom:51.660000px;}
.y188{bottom:57.780000px;}
.y4{bottom:58.140000px;}
.y31{bottom:64.980000px;}
.y29{bottom:68.580000px;}
.y187{bottom:71.640000px;}
.y30{bottom:80.460000px;}
.y186{bottom:85.500000px;}
.y28{bottom:85.710000px;}
.y3{bottom:101.196000px;}
.y27{bottom:102.630000px;}
.y36{bottom:108.585000px;}
.y26{bottom:119.730000px;}
.y138{bottom:119.736000px;}
.y117{bottom:120.096000px;}
.yf4{bottom:120.456000px;}
.y74{bottom:121.536000px;}
.ya7{bottom:121.896000px;}
.ycf{bottom:122.616000px;}
.y163{bottom:134.856000px;}
.y3d{bottom:135.756000px;}
.y25{bottom:136.650000px;}
.y137{bottom:137.016000px;}
.y116{bottom:137.376000px;}
.yf3{bottom:137.736000px;}
.y73{bottom:138.996000px;}
.ya6{bottom:139.176000px;}
.yce{bottom:139.716000px;}
.y162{bottom:152.310000px;}
.y3c{bottom:153.030000px;}
.y136{bottom:154.290000px;}
.y115{bottom:154.830000px;}
.yf2{bottom:155.010000px;}
.y72{bottom:156.450000px;}
.ycd{bottom:156.990000px;}
.y16f{bottom:158.430000px;}
.y161{bottom:169.770000px;}
.y3b{bottom:170.130000px;}
.y135{bottom:171.570000px;}
.y114{bottom:172.110000px;}
.yf1{bottom:172.290000px;}
.y71{bottom:173.730000px;}
.ycc{bottom:174.270000px;}
.y16e{bottom:175.710000px;}
.y160{bottom:187.050000px;}
.y3a{bottom:187.410000px;}
.y134{bottom:188.670000px;}
.yf0{bottom:189.390000px;}
.ya5{bottom:191.010000px;}
.y70{bottom:191.370000px;}
.ycb{bottom:191.550000px;}
.y23{bottom:192.825000px;}
.y16d{bottom:192.990000px;}
.y15f{bottom:204.330000px;}
.y39{bottom:204.690000px;}
.y133{bottom:205.950000px;}
.yef{bottom:206.670000px;}
.y113{bottom:206.850000px;}
.ya4{bottom:208.290000px;}
.y6f{bottom:208.830000px;}
.y16c{bottom:210.090000px;}
.y22{bottom:210.105000px;}
.y15e{bottom:221.790000px;}
.y38{bottom:221.970000px;}
.y132{bottom:223.230000px;}
.yee{bottom:223.950000px;}
.y112{bottom:224.130000px;}
.ya3{bottom:225.390000px;}
.y6e{bottom:226.110000px;}
.y16b{bottom:227.370000px;}
.y21{bottom:227.385000px;}
.y37{bottom:238.890000px;}
.y15d{bottom:239.250000px;}
.y131{bottom:240.510000px;}
.yed{bottom:241.230000px;}
.y111{bottom:241.410000px;}
.ya2{bottom:242.670000px;}
.y6d{bottom:243.210000px;}
.y16a{bottom:244.650000px;}
.y20{bottom:244.665000px;}
.y17{bottom:252.210000px;}
.y15c{bottom:256.710000px;}
.y130{bottom:257.790000px;}
.yec{bottom:258.510000px;}
.y110{bottom:258.690000px;}
.ya1{bottom:259.950000px;}
.y6c{bottom:260.490000px;}
.y1f{bottom:261.765000px;}
.y169{bottom:261.930000px;}
.y15b{bottom:273.990000px;}
.yeb{bottom:275.070000px;}
.y12f{bottom:275.250000px;}
.y10f{bottom:276.150000px;}
.ya0{bottom:277.230000px;}
.y6b{bottom:277.770000px;}
.y1e{bottom:279.045000px;}
.y168{bottom:279.210000px;}
.yea{bottom:289.470000px;}
.y15a{bottom:291.450000px;}
.y12e{bottom:292.890000px;}
.y10e{bottom:293.430000px;}
.y9f{bottom:294.510000px;}
.y6a{bottom:295.050000px;}
.y1d{bottom:296.325000px;}
.y167{bottom:296.490000px;}
.ye9{bottom:306.750000px;}
.y159{bottom:308.730000px;}
.y12d{bottom:310.350000px;}
.y10d{bottom:310.890000px;}
.y9e{bottom:311.790000px;}
.yca{bottom:312.330000px;}
.y69{bottom:312.690000px;}
.y166{bottom:313.590000px;}
.y1c{bottom:313.605000px;}
.y185{bottom:323.535000px;}
.ye8{bottom:324.075000px;}
.y158{bottom:326.235000px;}
.y12c{bottom:327.675000px;}
.y10c{bottom:328.215000px;}
.y9d{bottom:328.935000px;}
.yc9{bottom:329.475000px;}
.y68{bottom:330.195000px;}
.y1b{bottom:330.915000px;}
.ye7{bottom:341.355000px;}
.y157{bottom:343.515000px;}
.y12b{bottom:344.775000px;}
.y10b{bottom:345.495000px;}
.y9c{bottom:346.215000px;}
.yc8{bottom:346.755000px;}
.y67{bottom:347.655000px;}
.y1a{bottom:348.195000px;}
.ye6{bottom:358.635000px;}
.y156{bottom:360.795000px;}
.y12a{bottom:362.235000px;}
.y10a{bottom:362.955000px;}
.y9b{bottom:363.495000px;}
.yc7{bottom:364.035000px;}
.y66{bottom:364.935000px;}
.y19{bottom:365.295000px;}
.y165{bottom:365.475000px;}
.y2f{bottom:374.115000px;}
.ye5{bottom:375.735000px;}
.y155{bottom:377.895000px;}
.y129{bottom:379.695000px;}
.y109{bottom:380.235000px;}
.y9a{bottom:380.775000px;}
.yc6{bottom:381.315000px;}
.y65{bottom:382.395000px;}
.y18{bottom:382.575000px;}
.y164{bottom:382.755000px;}
.ye4{bottom:393.015000px;}
.y154{bottom:395.175000px;}
.y128{bottom:396.975000px;}
.y108{bottom:397.515000px;}
.y99{bottom:398.055000px;}
.yc5{bottom:398.595000px;}
.y64{bottom:399.855000px;}
.ye3{bottom:409.575000px;}
.y153{bottom:412.455000px;}
.y127{bottom:414.435000px;}
.y107{bottom:414.795000px;}
.y98{bottom:415.155000px;}
.yc4{bottom:415.875000px;}
.y63{bottom:417.135000px;}
.y184{bottom:420.915000px;}
.ye2{bottom:424.155000px;}
.y152{bottom:429.735000px;}
.y126{bottom:431.895000px;}
.y106{bottom:432.255000px;}
.y97{bottom:432.435000px;}
.yc3{bottom:432.975000px;}
.y62{bottom:434.415000px;}
.y180{bottom:435.495000px;}
.ye1{bottom:441.255000px;}
.y151{bottom:447.015000px;}
.y125{bottom:449.175000px;}
.y105{bottom:449.535000px;}
.y96{bottom:449.715000px;}
.yc2{bottom:450.255000px;}
.y61{bottom:451.695000px;}
.ye0{bottom:458.535000px;}
.y150{bottom:464.475000px;}
.y124{bottom:466.455000px;}
.y95{bottom:466.995000px;}
.yc1{bottom:467.535000px;}
.y2d{bottom:467.895000px;}
.y60{bottom:468.975000px;}
.ydf{bottom:475.815000px;}
.y14f{bottom:481.935000px;}
.y123{bottom:483.915000px;}
.y94{bottom:484.275000px;}
.yc0{bottom:484.815000px;}
.y5f{bottom:486.255000px;}
.y17f{bottom:491.475000px;}
.yde{bottom:493.095000px;}
.y24{bottom:499.395000px;}
.y122{bottom:501.195000px;}
.y93{bottom:501.555000px;}
.y104{bottom:501.735000px;}
.ybf{bottom:502.095000px;}
.y5e{bottom:503.355000px;}
.ydd{bottom:510.375000px;}
.y14e{bottom:516.855000px;}
.y92{bottom:518.655000px;}
.y103{bottom:519.015000px;}
.ybe{bottom:519.375000px;}
.y5d{bottom:520.635000px;}
.ydc{bottom:527.655000px;}
.y14d{bottom:534.135000px;}
.y91{bottom:535.935000px;}
.y102{bottom:536.295000px;}
.ybd{bottom:536.475000px;}
.y5c{bottom:537.915000px;}
.ydb{bottom:544.755000px;}
.y14c{bottom:551.595000px;}
.y90{bottom:553.215000px;}
.y101{bottom:553.575000px;}
.ybc{bottom:553.755000px;}
.y5b{bottom:555.195000px;}
.yda{bottom:561.315000px;}
.y14b{bottom:568.905000px;}
.y8f{bottom:570.525000px;}
.ybb{bottom:571.065000px;}
.y5a{bottom:572.505000px;}
.yd9{bottom:575.925000px;}
.y14a{bottom:586.365000px;}
.y8e{bottom:587.805000px;}
.y121{bottom:587.985000px;}
.yba{bottom:588.345000px;}
.y59{bottom:589.785000px;}
.yd8{bottom:593.205000px;}
.y149{bottom:603.645000px;}
.y8d{bottom:605.085000px;}
.y120{bottom:605.265000px;}
.yb9{bottom:605.625000px;}
.y100{bottom:605.805000px;}
.y58{bottom:606.885000px;}
.yd7{bottom:610.485000px;}
.y148{bottom:621.105000px;}
.y8c{bottom:622.185000px;}
.y11f{bottom:622.545000px;}
.yb8{bottom:622.725000px;}
.yff{bottom:623.085000px;}
.y57{bottom:624.165000px;}
.yd6{bottom:627.585000px;}
.y147{bottom:638.385000px;}
.y8b{bottom:639.465000px;}
.y11e{bottom:639.825000px;}
.yb7{bottom:640.005000px;}
.yfe{bottom:640.365000px;}
.y56{bottom:641.445000px;}
.yd5{bottom:644.865000px;}
.y15{bottom:649.545000px;}
.y146{bottom:656.025000px;}
.y8a{bottom:656.745000px;}
.y11d{bottom:657.105000px;}
.yb6{bottom:657.285000px;}
.yfd{bottom:657.645000px;}
.y55{bottom:658.725000px;}
.yd4{bottom:662.145000px;}
.y145{bottom:673.485000px;}
.y89{bottom:674.025000px;}
.yb5{bottom:674.565000px;}
.yfc{bottom:674.925000px;}
.y54{bottom:676.005000px;}
.yd3{bottom:679.425000px;}
.y144{bottom:690.945000px;}
.y88{bottom:691.305000px;}
.yb4{bottom:691.845000px;}
.yfb{bottom:692.205000px;}
.y53{bottom:693.285000px;}
.yd2{bottom:696.705000px;}
.y14{bottom:697.425000px;}
.y143{bottom:708.225000px;}
.y87{bottom:708.585000px;}
.yb3{bottom:709.125000px;}
.y11c{bottom:709.305000px;}
.yfa{bottom:709.665000px;}
.y52{bottom:710.385000px;}
.yd1{bottom:713.985000px;}
.y13{bottom:717.405000px;}
.y142{bottom:725.505000px;}
.y86{bottom:725.685000px;}
.yb2{bottom:726.225000px;}
.y11b{bottom:726.585000px;}
.yf9{bottom:726.945000px;}
.y51{bottom:727.665000px;}
.yd0{bottom:730.365000px;}
.y141{bottom:742.785000px;}
.y85{bottom:742.965000px;}
.yb1{bottom:743.685000px;}
.y11a{bottom:744.045000px;}
.yf8{bottom:744.405000px;}
.y50{bottom:744.945000px;}
.y12{bottom:746.205000px;}
.y140{bottom:759.885000px;}
.y84{bottom:760.245000px;}
.yb0{bottom:761.145000px;}
.y119{bottom:761.325000px;}
.yf7{bottom:761.685000px;}
.y4f{bottom:762.225000px;}
.y11{bottom:765.285000px;}
.y13f{bottom:777.345000px;}
.y83{bottom:777.525000px;}
.yaf{bottom:778.605000px;}
.yf6{bottom:779.145000px;}
.y4e{bottom:779.505000px;}
.y10{bottom:786.345000px;}
.y82{bottom:794.805000px;}
.yae{bottom:795.885000px;}
.yf5{bottom:796.425000px;}
.y4d{bottom:796.605000px;}
.y81{bottom:812.085000px;}
.yad{bottom:813.525000px;}
.y4c{bottom:813.885000px;}
.yf{bottom:817.485000px;}
.y80{bottom:829.590000px;}
.yac{bottom:831.030000px;}
.y4b{bottom:831.210000px;}
.y7f{bottom:846.870000px;}
.yab{bottom:848.130000px;}
.y118{bottom:848.310000px;}
.ye{bottom:848.490000px;}
.y7e{bottom:864.330000px;}
.yaa{bottom:865.410000px;}
.y4a{bottom:865.770000px;}
.yd{bottom:879.630000px;}
.y13e{bottom:881.610000px;}
.y7d{bottom:881.790000px;}
.ya9{bottom:882.690000px;}
.y49{bottom:883.050000px;}
.y7c{bottom:899.070000px;}
.ya8{bottom:899.970000px;}
.y48{bottom:900.150000px;}
.yc{bottom:908.430000px;}
.y7b{bottom:916.350000px;}
.y47{bottom:917.430000px;}
.ya{bottom:923.730000px;}
.y7a{bottom:933.630000px;}
.y46{bottom:934.710000px;}
.y79{bottom:950.910000px;}
.y13d{bottom:951.090000px;}
.y45{bottom:951.990000px;}
.y78{bottom:968.370000px;}
.y44{bottom:969.270000px;}
.y77{bottom:985.830000px;}
.y43{bottom:986.550000px;}
.y13c{bottom:1003.110000px;}
.y76{bottom:1003.290000px;}
.y42{bottom:1003.650000px;}
.y13b{bottom:1020.390000px;}
.y75{bottom:1020.750000px;}
.y41{bottom:1020.930000px;}
.y13a{bottom:1037.850000px;}
.y40{bottom:1038.210000px;}
.y139{bottom:1055.310000px;}
.y3f{bottom:1055.490000px;}
.y3e{bottom:1072.800000px;}
.y9{bottom:1083.960000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.y170{bottom:1188.000000px;}
.h21{height:-747.285000px;}
.h20{height:-732.885000px;}
.h1f{height:-676.905000px;}
.h1d{height:-662.325000px;}
.h22{height:13.860000px;}
.h3{height:27.576000px;}
.hf{height:30.600000px;}
.h15{height:30.780000px;}
.h5{height:33.683203px;}
.h1e{height:34.036523px;}
.h17{height:37.705078px;}
.h18{height:38.100586px;}
.h6{height:39.336328px;}
.h4{height:41.726953px;}
.he{height:42.164648px;}
.h1a{height:43.506914px;}
.h2{height:45.024258px;}
.h9{height:46.251562px;}
.h7{height:48.224531px;}
.h1c{height:49.255313px;}
.ha{height:49.906406px;}
.h1{height:50.800781px;}
.hc{height:53.224453px;}
.h12{height:53.709961px;}
.h23{height:55.260000px;}
.h13{height:55.291992px;}
.h14{height:59.439023px;}
.h1b{height:65.884219px;}
.hd{height:75.410156px;}
.hb{height:76.201172px;}
.h16{height:93.060000px;}
.h24{height:96.660000px;}
.h19{height:121.176000px;}
.h11{height:149.436000px;}
.h8{height:153.930000px;}
.h10{height:396.615000px;}
.h0{height:1188.000000px;}
.w8{width:-1109.909850px;}
.w7{width:-1038.059850px;}
.w2{width:39.096000px;}
.wa{width:71.136000px;}
.w6{width:220.170000px;}
.wb{width:286.410000px;}
.w9{width:358.275000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.660000px;}
.x4{left:8.460000px;}
.x10{left:20.160000px;}
.x14{left:27.540000px;}
.x12{left:34.245000px;}
.x13{left:36.045000px;}
.x6{left:45.540000px;}
.x2{left:53.999986px;}
.x16{left:57.059986px;}
.x1b{left:59.579986px;}
.x1{left:60.659986px;}
.x17{left:63.899986px;}
.x15{left:65.519986px;}
.x28{left:72.390000px;}
.x2a{left:75.060000px;}
.x1c{left:86.759986px;}
.x1d{left:88.199986px;}
.x23{left:89.639986px;}
.x18{left:90.899986px;}
.x26{left:94.530000px;}
.x5{left:100.836000px;}
.x9{left:106.415986px;}
.x3{left:108.035986px;}
.x27{left:133.410000px;}
.xd{left:140.075986px;}
.x2b{left:146.916000px;}
.xa{left:151.409986px;}
.xc{left:377.174986px;}
.x8{left:459.074986px;}
.xb{left:464.294986px;}
.xe{left:465.374986px;}
.x1e{left:475.634986px;}
.x1a{left:478.334986px;}
.x19{left:479.804986px;}
.x21{left:482.504986px;}
.x24{left:484.124986px;}
.x20{left:505.364986px;}
.x1f{left:506.804986px;}
.x22{left:509.504986px;}
.xf{left:642.705000px;}
.x7{left:811.590000px;}
.x25{left:1038.060000px;}
.x29{left:1109.910000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.395520pt;}
.ls11{letter-spacing:8.912640pt;}
.ls7{letter-spacing:10.192640pt;}
.ls12{letter-spacing:12.112640pt;}
.lsb{letter-spacing:14.672640pt;}
.ls10{letter-spacing:15.312640pt;}
.ls13{letter-spacing:18.512640pt;}
.ls4{letter-spacing:38.352640pt;}
.ls6{letter-spacing:40.912640pt;}
.ls2{letter-spacing:41.696000pt;}
.lsc{letter-spacing:44.112640pt;}
.ls8{letter-spacing:49.232640pt;}
.lsd{letter-spacing:49.872640pt;}
.lsa{letter-spacing:62.672640pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-2.586240pt;}
._3{margin-left:-0.943360pt;}
._0{width:1.009280pt;}
._6{width:2.066987pt;}
._d{width:3.114453pt;}
._18{width:4.216533pt;}
._8{width:5.185707pt;}
._7{width:6.268160pt;}
._12{width:7.649280pt;}
._a{width:8.977280pt;}
._9{width:10.092800pt;}
._2{width:11.878187pt;}
._2a{width:12.831360pt;}
._b{width:14.183040pt;}
._16{width:15.192320pt;}
._25{width:16.117120pt;}
._11{width:17.157760pt;}
._22{width:18.216747pt;}
._26{width:19.760640pt;}
._1e{width:21.004160pt;}
._1f{width:22.097920pt;}
._e{width:23.088000pt;}
._15{width:24.541440pt;}
._27{width:25.431680pt;}
._14{width:26.453760pt;}
._13{width:27.675520pt;}
._c{width:29.694080pt;}
._17{width:30.640427pt;}
._1c{width:31.659520pt;}
._1b{width:32.934400pt;}
._29{width:33.890560pt;}
._28{width:34.846720pt;}
._f{width:36.624000pt;}
._21{width:37.790080pt;}
._1d{width:38.777600pt;}
._19{width:39.786880pt;}
._1a{width:40.689920pt;}
._2b{width:41.808000pt;}
._23{width:45.134507pt;}
._24{width:46.408747pt;}
._20{width:50.592000pt;}
._10{width:111.936000pt;}
._1{width:304.872107pt;}
._4{width:722.960853pt;}
.fs3{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y17e{bottom:-747.933333pt;}
.y177{bottom:-744.573333pt;}
.y17d{bottom:-735.613333pt;}
.y17c{bottom:-723.453333pt;}
.y17b{bottom:-711.133333pt;}
.y17a{bottom:-698.813333pt;}
.y179{bottom:-686.653333pt;}
.y178{bottom:-674.333333pt;}
.y176{bottom:-661.373333pt;}
.y175{bottom:-648.413333pt;}
.y174{bottom:-636.253333pt;}
.y173{bottom:-623.933333pt;}
.y172{bottom:-611.613333pt;}
.y171{bottom:-598.813333pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.240000pt;}
.y18a{bottom:2.400000pt;}
.y35{bottom:2.560000pt;}
.y5{bottom:7.392000pt;}
.yb{bottom:12.480000pt;}
.y2c{bottom:14.240000pt;}
.y6{bottom:14.432000pt;}
.y183{bottom:14.560000pt;}
.y16{bottom:14.720000pt;}
.y2e{bottom:14.880000pt;}
.y34{bottom:16.320000pt;}
.y182{bottom:26.880000pt;}
.y33{bottom:30.240000pt;}
.y2b{bottom:30.720000pt;}
.y8{bottom:31.520000pt;}
.y181{bottom:39.040000pt;}
.y189{bottom:39.200000pt;}
.y32{bottom:44.000000pt;}
.y2a{bottom:45.920000pt;}
.y188{bottom:51.360000pt;}
.y4{bottom:51.680000pt;}
.y31{bottom:57.760000pt;}
.y29{bottom:60.960000pt;}
.y187{bottom:63.680000pt;}
.y30{bottom:71.520000pt;}
.y186{bottom:76.000000pt;}
.y28{bottom:76.186667pt;}
.y3{bottom:89.952000pt;}
.y27{bottom:91.226667pt;}
.y36{bottom:96.520000pt;}
.y26{bottom:106.426667pt;}
.y138{bottom:106.432000pt;}
.y117{bottom:106.752000pt;}
.yf4{bottom:107.072000pt;}
.y74{bottom:108.032000pt;}
.ya7{bottom:108.352000pt;}
.ycf{bottom:108.992000pt;}
.y163{bottom:119.872000pt;}
.y3d{bottom:120.672000pt;}
.y25{bottom:121.466667pt;}
.y137{bottom:121.792000pt;}
.y116{bottom:122.112000pt;}
.yf3{bottom:122.432000pt;}
.y73{bottom:123.552000pt;}
.ya6{bottom:123.712000pt;}
.yce{bottom:124.192000pt;}
.y162{bottom:135.386667pt;}
.y3c{bottom:136.026667pt;}
.y136{bottom:137.146667pt;}
.y115{bottom:137.626667pt;}
.yf2{bottom:137.786667pt;}
.y72{bottom:139.066667pt;}
.ycd{bottom:139.546667pt;}
.y16f{bottom:140.826667pt;}
.y161{bottom:150.906667pt;}
.y3b{bottom:151.226667pt;}
.y135{bottom:152.506667pt;}
.y114{bottom:152.986667pt;}
.yf1{bottom:153.146667pt;}
.y71{bottom:154.426667pt;}
.ycc{bottom:154.906667pt;}
.y16e{bottom:156.186667pt;}
.y160{bottom:166.266667pt;}
.y3a{bottom:166.586667pt;}
.y134{bottom:167.706667pt;}
.yf0{bottom:168.346667pt;}
.ya5{bottom:169.786667pt;}
.y70{bottom:170.106667pt;}
.ycb{bottom:170.266667pt;}
.y23{bottom:171.400000pt;}
.y16d{bottom:171.546667pt;}
.y15f{bottom:181.626667pt;}
.y39{bottom:181.946667pt;}
.y133{bottom:183.066667pt;}
.yef{bottom:183.706667pt;}
.y113{bottom:183.866667pt;}
.ya4{bottom:185.146667pt;}
.y6f{bottom:185.626667pt;}
.y16c{bottom:186.746667pt;}
.y22{bottom:186.760000pt;}
.y15e{bottom:197.146667pt;}
.y38{bottom:197.306667pt;}
.y132{bottom:198.426667pt;}
.yee{bottom:199.066667pt;}
.y112{bottom:199.226667pt;}
.ya3{bottom:200.346667pt;}
.y6e{bottom:200.986667pt;}
.y16b{bottom:202.106667pt;}
.y21{bottom:202.120000pt;}
.y37{bottom:212.346667pt;}
.y15d{bottom:212.666667pt;}
.y131{bottom:213.786667pt;}
.yed{bottom:214.426667pt;}
.y111{bottom:214.586667pt;}
.ya2{bottom:215.706667pt;}
.y6d{bottom:216.186667pt;}
.y16a{bottom:217.466667pt;}
.y20{bottom:217.480000pt;}
.y17{bottom:224.186667pt;}
.y15c{bottom:228.186667pt;}
.y130{bottom:229.146667pt;}
.yec{bottom:229.786667pt;}
.y110{bottom:229.946667pt;}
.ya1{bottom:231.066667pt;}
.y6c{bottom:231.546667pt;}
.y1f{bottom:232.680000pt;}
.y169{bottom:232.826667pt;}
.y15b{bottom:243.546667pt;}
.yeb{bottom:244.506667pt;}
.y12f{bottom:244.666667pt;}
.y10f{bottom:245.466667pt;}
.ya0{bottom:246.426667pt;}
.y6b{bottom:246.906667pt;}
.y1e{bottom:248.040000pt;}
.y168{bottom:248.186667pt;}
.yea{bottom:257.306667pt;}
.y15a{bottom:259.066667pt;}
.y12e{bottom:260.346667pt;}
.y10e{bottom:260.826667pt;}
.y9f{bottom:261.786667pt;}
.y6a{bottom:262.266667pt;}
.y1d{bottom:263.400000pt;}
.y167{bottom:263.546667pt;}
.ye9{bottom:272.666667pt;}
.y159{bottom:274.426667pt;}
.y12d{bottom:275.866667pt;}
.y10d{bottom:276.346667pt;}
.y9e{bottom:277.146667pt;}
.yca{bottom:277.626667pt;}
.y69{bottom:277.946667pt;}
.y166{bottom:278.746667pt;}
.y1c{bottom:278.760000pt;}
.y185{bottom:287.586667pt;}
.ye8{bottom:288.066667pt;}
.y158{bottom:289.986667pt;}
.y12c{bottom:291.266667pt;}
.y10c{bottom:291.746667pt;}
.y9d{bottom:292.386667pt;}
.yc9{bottom:292.866667pt;}
.y68{bottom:293.506667pt;}
.y1b{bottom:294.146667pt;}
.ye7{bottom:303.426667pt;}
.y157{bottom:305.346667pt;}
.y12b{bottom:306.466667pt;}
.y10b{bottom:307.106667pt;}
.y9c{bottom:307.746667pt;}
.yc8{bottom:308.226667pt;}
.y67{bottom:309.026667pt;}
.y1a{bottom:309.506667pt;}
.ye6{bottom:318.786667pt;}
.y156{bottom:320.706667pt;}
.y12a{bottom:321.986667pt;}
.y10a{bottom:322.626667pt;}
.y9b{bottom:323.106667pt;}
.yc7{bottom:323.586667pt;}
.y66{bottom:324.386667pt;}
.y19{bottom:324.706667pt;}
.y165{bottom:324.866667pt;}
.y2f{bottom:332.546667pt;}
.ye5{bottom:333.986667pt;}
.y155{bottom:335.906667pt;}
.y129{bottom:337.506667pt;}
.y109{bottom:337.986667pt;}
.y9a{bottom:338.466667pt;}
.yc6{bottom:338.946667pt;}
.y65{bottom:339.906667pt;}
.y18{bottom:340.066667pt;}
.y164{bottom:340.226667pt;}
.ye4{bottom:349.346667pt;}
.y154{bottom:351.266667pt;}
.y128{bottom:352.866667pt;}
.y108{bottom:353.346667pt;}
.y99{bottom:353.826667pt;}
.yc5{bottom:354.306667pt;}
.y64{bottom:355.426667pt;}
.ye3{bottom:364.066667pt;}
.y153{bottom:366.626667pt;}
.y127{bottom:368.386667pt;}
.y107{bottom:368.706667pt;}
.y98{bottom:369.026667pt;}
.yc4{bottom:369.666667pt;}
.y63{bottom:370.786667pt;}
.y184{bottom:374.146667pt;}
.ye2{bottom:377.026667pt;}
.y152{bottom:381.986667pt;}
.y126{bottom:383.906667pt;}
.y106{bottom:384.226667pt;}
.y97{bottom:384.386667pt;}
.yc3{bottom:384.866667pt;}
.y62{bottom:386.146667pt;}
.y180{bottom:387.106667pt;}
.ye1{bottom:392.226667pt;}
.y151{bottom:397.346667pt;}
.y125{bottom:399.266667pt;}
.y105{bottom:399.586667pt;}
.y96{bottom:399.746667pt;}
.yc2{bottom:400.226667pt;}
.y61{bottom:401.506667pt;}
.ye0{bottom:407.586667pt;}
.y150{bottom:412.866667pt;}
.y124{bottom:414.626667pt;}
.y95{bottom:415.106667pt;}
.yc1{bottom:415.586667pt;}
.y2d{bottom:415.906667pt;}
.y60{bottom:416.866667pt;}
.ydf{bottom:422.946667pt;}
.y14f{bottom:428.386667pt;}
.y123{bottom:430.146667pt;}
.y94{bottom:430.466667pt;}
.yc0{bottom:430.946667pt;}
.y5f{bottom:432.226667pt;}
.y17f{bottom:436.866667pt;}
.yde{bottom:438.306667pt;}
.y24{bottom:443.906667pt;}
.y122{bottom:445.506667pt;}
.y93{bottom:445.826667pt;}
.y104{bottom:445.986667pt;}
.ybf{bottom:446.306667pt;}
.y5e{bottom:447.426667pt;}
.ydd{bottom:453.666667pt;}
.y14e{bottom:459.426667pt;}
.y92{bottom:461.026667pt;}
.y103{bottom:461.346667pt;}
.ybe{bottom:461.666667pt;}
.y5d{bottom:462.786667pt;}
.ydc{bottom:469.026667pt;}
.y14d{bottom:474.786667pt;}
.y91{bottom:476.386667pt;}
.y102{bottom:476.706667pt;}
.ybd{bottom:476.866667pt;}
.y5c{bottom:478.146667pt;}
.ydb{bottom:484.226667pt;}
.y14c{bottom:490.306667pt;}
.y90{bottom:491.746667pt;}
.y101{bottom:492.066667pt;}
.ybc{bottom:492.226667pt;}
.y5b{bottom:493.506667pt;}
.yda{bottom:498.946667pt;}
.y14b{bottom:505.693333pt;}
.y8f{bottom:507.133333pt;}
.ybb{bottom:507.613333pt;}
.y5a{bottom:508.893333pt;}
.yd9{bottom:511.933333pt;}
.y14a{bottom:521.213333pt;}
.y8e{bottom:522.493333pt;}
.y121{bottom:522.653333pt;}
.yba{bottom:522.973333pt;}
.y59{bottom:524.253333pt;}
.yd8{bottom:527.293333pt;}
.y149{bottom:536.573333pt;}
.y8d{bottom:537.853333pt;}
.y120{bottom:538.013333pt;}
.yb9{bottom:538.333333pt;}
.y100{bottom:538.493333pt;}
.y58{bottom:539.453333pt;}
.yd7{bottom:542.653333pt;}
.y148{bottom:552.093333pt;}
.y8c{bottom:553.053333pt;}
.y11f{bottom:553.373333pt;}
.yb8{bottom:553.533333pt;}
.yff{bottom:553.853333pt;}
.y57{bottom:554.813333pt;}
.yd6{bottom:557.853333pt;}
.y147{bottom:567.453333pt;}
.y8b{bottom:568.413333pt;}
.y11e{bottom:568.733333pt;}
.yb7{bottom:568.893333pt;}
.yfe{bottom:569.213333pt;}
.y56{bottom:570.173333pt;}
.yd5{bottom:573.213333pt;}
.y15{bottom:577.373333pt;}
.y146{bottom:583.133333pt;}
.y8a{bottom:583.773333pt;}
.y11d{bottom:584.093333pt;}
.yb6{bottom:584.253333pt;}
.yfd{bottom:584.573333pt;}
.y55{bottom:585.533333pt;}
.yd4{bottom:588.573333pt;}
.y145{bottom:598.653333pt;}
.y89{bottom:599.133333pt;}
.yb5{bottom:599.613333pt;}
.yfc{bottom:599.933333pt;}
.y54{bottom:600.893333pt;}
.yd3{bottom:603.933333pt;}
.y144{bottom:614.173333pt;}
.y88{bottom:614.493333pt;}
.yb4{bottom:614.973333pt;}
.yfb{bottom:615.293333pt;}
.y53{bottom:616.253333pt;}
.yd2{bottom:619.293333pt;}
.y14{bottom:619.933333pt;}
.y143{bottom:629.533333pt;}
.y87{bottom:629.853333pt;}
.yb3{bottom:630.333333pt;}
.y11c{bottom:630.493333pt;}
.yfa{bottom:630.813333pt;}
.y52{bottom:631.453333pt;}
.yd1{bottom:634.653333pt;}
.y13{bottom:637.693333pt;}
.y142{bottom:644.893333pt;}
.y86{bottom:645.053333pt;}
.yb2{bottom:645.533333pt;}
.y11b{bottom:645.853333pt;}
.yf9{bottom:646.173333pt;}
.y51{bottom:646.813333pt;}
.yd0{bottom:649.213333pt;}
.y141{bottom:660.253333pt;}
.y85{bottom:660.413333pt;}
.yb1{bottom:661.053333pt;}
.y11a{bottom:661.373333pt;}
.yf8{bottom:661.693333pt;}
.y50{bottom:662.173333pt;}
.y12{bottom:663.293333pt;}
.y140{bottom:675.453333pt;}
.y84{bottom:675.773333pt;}
.yb0{bottom:676.573333pt;}
.y119{bottom:676.733333pt;}
.yf7{bottom:677.053333pt;}
.y4f{bottom:677.533333pt;}
.y11{bottom:680.253333pt;}
.y13f{bottom:690.973333pt;}
.y83{bottom:691.133333pt;}
.yaf{bottom:692.093333pt;}
.yf6{bottom:692.573333pt;}
.y4e{bottom:692.893333pt;}
.y10{bottom:698.973333pt;}
.y82{bottom:706.493333pt;}
.yae{bottom:707.453333pt;}
.yf5{bottom:707.933333pt;}
.y4d{bottom:708.093333pt;}
.y81{bottom:721.853333pt;}
.yad{bottom:723.133333pt;}
.y4c{bottom:723.453333pt;}
.yf{bottom:726.653333pt;}
.y80{bottom:737.413333pt;}
.yac{bottom:738.693333pt;}
.y4b{bottom:738.853333pt;}
.y7f{bottom:752.773333pt;}
.yab{bottom:753.893333pt;}
.y118{bottom:754.053333pt;}
.ye{bottom:754.213333pt;}
.y7e{bottom:768.293333pt;}
.yaa{bottom:769.253333pt;}
.y4a{bottom:769.573333pt;}
.yd{bottom:781.893333pt;}
.y13e{bottom:783.653333pt;}
.y7d{bottom:783.813333pt;}
.ya9{bottom:784.613333pt;}
.y49{bottom:784.933333pt;}
.y7c{bottom:799.173333pt;}
.ya8{bottom:799.973333pt;}
.y48{bottom:800.133333pt;}
.yc{bottom:807.493333pt;}
.y7b{bottom:814.533333pt;}
.y47{bottom:815.493333pt;}
.ya{bottom:821.093333pt;}
.y7a{bottom:829.893333pt;}
.y46{bottom:830.853333pt;}
.y79{bottom:845.253333pt;}
.y13d{bottom:845.413333pt;}
.y45{bottom:846.213333pt;}
.y78{bottom:860.773333pt;}
.y44{bottom:861.573333pt;}
.y77{bottom:876.293333pt;}
.y43{bottom:876.933333pt;}
.y13c{bottom:891.653333pt;}
.y76{bottom:891.813333pt;}
.y42{bottom:892.133333pt;}
.y13b{bottom:907.013333pt;}
.y75{bottom:907.333333pt;}
.y41{bottom:907.493333pt;}
.y13a{bottom:922.533333pt;}
.y40{bottom:922.853333pt;}
.y139{bottom:938.053333pt;}
.y3f{bottom:938.213333pt;}
.y3e{bottom:953.600000pt;}
.y9{bottom:963.520000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.y170{bottom:1056.000000pt;}
.h21{height:-664.253333pt;}
.h20{height:-651.453333pt;}
.h1f{height:-601.693333pt;}
.h1d{height:-588.733333pt;}
.h22{height:12.320000pt;}
.h3{height:24.512000pt;}
.hf{height:27.200000pt;}
.h15{height:27.360000pt;}
.h5{height:29.940625pt;}
.h1e{height:30.254687pt;}
.h17{height:33.515625pt;}
.h18{height:33.867188pt;}
.h6{height:34.965625pt;}
.h4{height:37.090625pt;}
.he{height:37.479688pt;}
.h1a{height:38.672812pt;}
.h2{height:40.021563pt;}
.h9{height:41.112500pt;}
.h7{height:42.866250pt;}
.h1c{height:43.782500pt;}
.ha{height:44.361250pt;}
.h1{height:45.156250pt;}
.hc{height:47.310625pt;}
.h12{height:47.742188pt;}
.h23{height:49.120000pt;}
.h13{height:49.148438pt;}
.h14{height:52.834688pt;}
.h1b{height:58.563750pt;}
.hd{height:67.031250pt;}
.hb{height:67.734375pt;}
.h16{height:82.720000pt;}
.h24{height:85.920000pt;}
.h19{height:107.712000pt;}
.h11{height:132.832000pt;}
.h8{height:136.826667pt;}
.h10{height:352.546667pt;}
.h0{height:1056.000000pt;}
.w8{width:-986.586533pt;}
.w7{width:-922.719867pt;}
.w2{width:34.752000pt;}
.wa{width:63.232000pt;}
.w6{width:195.706667pt;}
.wb{width:254.586667pt;}
.w9{width:318.466667pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.920000pt;}
.x4{left:7.520000pt;}
.x10{left:17.920000pt;}
.x14{left:24.480000pt;}
.x12{left:30.440000pt;}
.x13{left:32.040000pt;}
.x6{left:40.480000pt;}
.x2{left:47.999988pt;}
.x16{left:50.719988pt;}
.x1b{left:52.959988pt;}
.x1{left:53.919988pt;}
.x17{left:56.799988pt;}
.x15{left:58.239988pt;}
.x28{left:64.346667pt;}
.x2a{left:66.720000pt;}
.x1c{left:77.119988pt;}
.x1d{left:78.399988pt;}
.x23{left:79.679988pt;}
.x18{left:80.799988pt;}
.x26{left:84.026667pt;}
.x5{left:89.632000pt;}
.x9{left:94.591988pt;}
.x3{left:96.031988pt;}
.x27{left:118.586667pt;}
.xd{left:124.511988pt;}
.x2b{left:130.592000pt;}
.xa{left:134.586655pt;}
.xc{left:335.266655pt;}
.x8{left:408.066655pt;}
.xb{left:412.706655pt;}
.xe{left:413.666655pt;}
.x1e{left:422.786655pt;}
.x1a{left:425.186655pt;}
.x19{left:426.493321pt;}
.x21{left:428.893321pt;}
.x24{left:430.333321pt;}
.x20{left:449.213321pt;}
.x1f{left:450.493321pt;}
.x22{left:452.893321pt;}
.xf{left:571.293333pt;}
.x7{left:721.413333pt;}
.x25{left:922.720000pt;}
.x29{left:986.586667pt;}
}




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