
    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_b1f43f6ff605a9184637fdfc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.727539;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_1154d8bf100da2d8508962ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.731445;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_c2b950ec7cdc8ea68fff91d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_8dd0db4f989b1dfb46b21d5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_e563b7fc14beba946d1d9eab.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_591daf4e6a0b488ff6875d01.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_7f488d27d3d36409798f4296.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_c1b72275e87e847cc0e7b7e9.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_aa84268239f1656298afd6dd.woff2')format("woff");}.ff9{font-family:ff9;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.460200px;}
.ls15{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.864000px;}
.lsf{letter-spacing:2.880000px;}
.lsd{letter-spacing:6.480000px;}
.lsc{letter-spacing:17.280000px;}
.ls13{letter-spacing:28.224000px;}
.ls11{letter-spacing:33.984000px;}
.ls14{letter-spacing:54.864000px;}
.ls12{letter-spacing:68.508000px;}
.lsb{letter-spacing:846.120000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.wsb{word-spacing:-54.000000px;}
.wsf{word-spacing:-18.864000px;}
.ws0{word-spacing:-18.305520px;}
.ws7{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.216000px;}
.wse{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.199800px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.479800px;}
.ws8{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.363200px;}
._2{width:1.543440px;}
._6{width:2.748000px;}
._b{width:4.074000px;}
._a{width:5.275920px;}
._f{width:6.882720px;}
._4{width:8.675520px;}
._5{width:9.800640px;}
._10{width:10.946400px;}
._14{width:11.952000px;}
._12{width:13.320000px;}
._13{width:14.328000px;}
._16{width:15.840000px;}
._11{width:16.848000px;}
._3{width:19.240320px;}
._1{width:20.796480px;}
._17{width:22.343040px;}
._15{width:23.688000px;}
._8{width:25.416000px;}
._7{width:27.072000px;}
._1a{width:28.080000px;}
._1c{width:29.272560px;}
._d{width:30.600000px;}
._e{width:31.608000px;}
._20{width:32.656560px;}
._1b{width:33.912000px;}
._1e{width:35.563200px;}
._1f{width:37.084800px;}
._1d{width:38.232000px;}
._18{width:57.504000px;}
._19{width:58.848000px;}
._21{width:106.632000px;}
._22{width:116.779200px;}
._23{width:118.156800px;}
._c{width:847.560000px;}
._9{width:2060.772000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.ya{bottom:-12.960000px;}
.y0{bottom:0.000000px;}
.y102{bottom:2.880000px;}
.y9{bottom:5.760000px;}
.y10d{bottom:19.260000px;}
.y101{bottom:19.440000px;}
.y8{bottom:23.040000px;}
.y5{bottom:30.816000px;}
.y10c{bottom:35.820000px;}
.y100{bottom:36.000000px;}
.y7{bottom:40.320000px;}
.yff{bottom:52.380000px;}
.y12d{bottom:52.425000px;}
.y6{bottom:57.600000px;}
.y4{bottom:60.156000px;}
.yfb{bottom:67.680000px;}
.y10b{bottom:68.760000px;}
.yfe{bottom:68.940000px;}
.y12c{bottom:68.985000px;}
.y106{bottom:69.480000px;}
.y10a{bottom:85.320000px;}
.y12b{bottom:85.365000px;}
.yfd{bottom:85.500000px;}
.yfa{bottom:98.820000px;}
.y105{bottom:100.620000px;}
.y109{bottom:101.700000px;}
.yfc{bottom:101.880000px;}
.y12a{bottom:101.925000px;}
.y111{bottom:102.600000px;}
.y118{bottom:104.580000px;}
.y123{bottom:104.625000px;}
.y175{bottom:112.536000px;}
.y19b{bottom:113.436000px;}
.y93{bottom:113.616000px;}
.y108{bottom:118.260000px;}
.y129{bottom:118.305000px;}
.y11e{bottom:118.470000px;}
.y185{bottom:123.876000px;}
.y1d1{bottom:129.996000px;}
.y55{bottom:130.716000px;}
.y104{bottom:131.580000px;}
.y110{bottom:133.560000px;}
.y1f3{bottom:134.316000px;}
.ya8{bottom:134.676000px;}
.y107{bottom:134.820000px;}
.y11d{bottom:134.850000px;}
.y128{bottom:134.865000px;}
.y117{bottom:135.570000px;}
.y122{bottom:135.585000px;}
.y174{bottom:143.676000px;}
.y92{bottom:144.576000px;}
.ycb{bottom:145.296000px;}
.y1b1{bottom:147.636000px;}
.y80{bottom:147.816000px;}
.y113{bottom:151.200000px;}
.y11c{bottom:151.410000px;}
.y127{bottom:151.425000px;}
.y184{bottom:154.830000px;}
.y130{bottom:161.310000px;}
.y54{bottom:161.670000px;}
.y10f{bottom:164.700000px;}
.y1d0{bottom:165.630000px;}
.ya7{bottom:165.810000px;}
.y116{bottom:166.710000px;}
.y121{bottom:166.725000px;}
.y112{bottom:167.760000px;}
.y126{bottom:167.805000px;}
.y11b{bottom:167.970000px;}
.y1f2{bottom:169.950000px;}
.y173{bottom:174.630000px;}
.y19a{bottom:175.530000px;}
.y91{bottom:175.710000px;}
.y7f{bottom:178.770000px;}
.y207{bottom:181.470000px;}
.y11a{bottom:184.350000px;}
.y125{bottom:184.365000px;}
.y183{bottom:185.970000px;}
.y1cf{bottom:186.330000px;}
.y12f{bottom:187.050000px;}
.ybb{bottom:188.130000px;}
.y1f1{bottom:190.650000px;}
.yca{bottom:191.730000px;}
.y53{bottom:192.810000px;}
.y162{bottom:194.430000px;}
.y115{bottom:197.670000px;}
.y120{bottom:197.685000px;}
.y119{bottom:200.910000px;}
.y124{bottom:200.925000px;}
.yf8{bottom:205.770000px;}
.y90{bottom:206.670000px;}
.y1b0{bottom:209.730000px;}
.y7e{bottom:209.910000px;}
.y1f0{bottom:211.350000px;}
.ya6{bottom:214.770000px;}
.y12e{bottom:215.490000px;}
.y6c{bottom:216.930000px;}
.y206{bottom:217.110000px;}
.yba{bottom:219.090000px;}
.y1ce{bottom:222.150000px;}
.y52{bottom:223.770000px;}
.y148{bottom:225.570000px;}
.y1ef{bottom:232.050000px;}
.y11f{bottom:232.950000px;}
.y172{bottom:236.730000px;}
.yf7{bottom:236.910000px;}
.yc9{bottom:238.170000px;}
.y7d{bottom:240.870000px;}
.y1cd{bottom:242.850000px;}
.ya5{bottom:245.910000px;}
.y199{bottom:246.630000px;}
.y6b{bottom:248.070000px;}
.yb9{bottom:250.230000px;}
.y205{bottom:252.750000px;}
.y51{bottom:254.910000px;}
.y8f{bottom:255.810000px;}
.y147{bottom:256.530000px;}
.yf6{bottom:267.870000px;}
.y1af{bottom:271.830000px;}
.y204{bottom:273.495000px;}
.y171{bottom:275.655000px;}
.ya4{bottom:276.915000px;}
.y1cc{bottom:278.535000px;}
.y6a{bottom:279.075000px;}
.yb8{bottom:281.235000px;}
.yc8{bottom:284.835000px;}
.y50{bottom:285.915000px;}
.y8e{bottom:286.815000px;}
.y146{bottom:287.535000px;}
.y161{bottom:287.715000px;}
.y1ee{bottom:288.615000px;}
.y7c{bottom:290.055000px;}
.yf5{bottom:299.055000px;}
.y1cb{bottom:299.235000px;}
.y1ae{bottom:303.015000px;}
.y198{bottom:304.815000px;}
.ye5{bottom:305.355000px;}
.ya3{bottom:308.055000px;}
.y1ed{bottom:309.135000px;}
.y69{bottom:310.215000px;}
.yb7{bottom:312.195000px;}
.y4f{bottom:317.055000px;}
.y8d{bottom:317.955000px;}
.y145{bottom:318.675000px;}
.y1ca{bottom:319.935000px;}
.y7b{bottom:321.015000px;}
.y170{bottom:321.735000px;}
.ye4{bottom:329.115000px;}
.y203{bottom:329.835000px;}
.yc7{bottom:330.015000px;}
.y1ad{bottom:333.975000px;}
.y197{bottom:335.775000px;}
.ya2{bottom:339.015000px;}
.y68{bottom:341.175000px;}
.yb6{bottom:343.335000px;}
.y1ec{bottom:344.955000px;}
.y144{bottom:349.635000px;}
.y160{bottom:349.815000px;}
.y16f{bottom:350.355000px;}
.y202{bottom:350.535000px;}
.y7a{bottom:352.155000px;}
.ye3{bottom:353.055000px;}
.y1c9{bottom:355.575000px;}
.yf4{bottom:357.015000px;}
.y1ac{bottom:365.115000px;}
.y1eb{bottom:365.655000px;}
.y4e{bottom:366.015000px;}
.y8c{bottom:366.915000px;}
.ya1{bottom:370.155000px;}
.yc6{bottom:372.315000px;}
.yb5{bottom:374.295000px;}
.y16e{bottom:374.655000px;}
.y1c8{bottom:376.275000px;}
.ye2{bottom:376.815000px;}
.y15f{bottom:380.775000px;}
.y79{bottom:383.115000px;}
.y201{bottom:386.355000px;}
.yf3{bottom:388.155000px;}
.y67{bottom:390.135000px;}
.y1ab{bottom:396.075000px;}
.y4d{bottom:397.155000px;}
.y196{bottom:397.875000px;}
.y8b{bottom:398.055000px;}
.ye1{bottom:400.575000px;}
.ya0{bottom:401.115000px;}
.y1ea{bottom:401.295000px;}
.y143{bottom:401.835000px;}
.yb4{bottom:405.435000px;}
.y200{bottom:407.055000px;}
.y182{bottom:411.195000px;}
.y15e{bottom:411.915000px;}
.y1c7{bottom:412.095000px;}
.y78{bottom:414.255000px;}
.yf2{bottom:419.115000px;}
.y66{bottom:421.275000px;}
.y1e9{bottom:421.995000px;}
.ye0{bottom:424.335000px;}
.y1aa{bottom:427.215000px;}
.y4c{bottom:428.115000px;}
.y8a{bottom:429.015000px;}
.y9f{bottom:432.255000px;}
.y1c6{bottom:432.795000px;}
.yb3{bottom:436.395000px;}
.y1ff{bottom:442.695000px;}
.y15d{bottom:442.875000px;}
.y77{bottom:445.215000px;}
.y114{bottom:448.095000px;}
.ydf{bottom:448.275000px;}
.yf1{bottom:450.255000px;}
.y65{bottom:452.235000px;}
.y1c5{bottom:453.495000px;}
.y142{bottom:453.675000px;}
.y181{bottom:454.575000px;}
.y1e8{bottom:457.635000px;}
.y1a9{bottom:458.175000px;}
.y4b{bottom:459.255000px;}
.y195{bottom:459.975000px;}
.y9e{bottom:463.215000px;}
.y1fe{bottom:463.395000px;}
.yde{bottom:472.035000px;}
.y89{bottom:478.155000px;}
.y1e7{bottom:478.335000px;}
.y180{bottom:478.875000px;}
.yf0{bottom:481.215000px;}
.y15c{bottom:481.755000px;}
.y28{bottom:483.015000px;}
.y64{bottom:483.375000px;}
.yb2{bottom:485.535000px;}
.y141{bottom:486.075000px;}
.y1a8{bottom:489.135000px;}
.y4a{bottom:490.215000px;}
.y194{bottom:491.115000px;}
.y76{bottom:494.355000px;}
.ydd{bottom:495.795000px;}
.y1fd{bottom:499.035000px;}
.y27{bottom:504.795000px;}
.y88{bottom:509.115000px;}
.y1c4{bottom:509.835000px;}
.y9d{bottom:512.355000px;}
.y1e6{bottom:514.155000px;}
.yb1{bottom:516.495000px;}
.y140{bottom:517.035000px;}
.y1a7{bottom:520.275000px;}
.y49{bottom:521.355000px;}
.y193{bottom:522.075000px;}
.y75{bottom:525.315000px;}
.y26{bottom:527.295000px;}
.y15b{bottom:527.655000px;}
.y1c3{bottom:530.535000px;}
.y63{bottom:532.335000px;}
.y1e5{bottom:534.855000px;}
.y87{bottom:540.255000px;}
.y25{bottom:542.235000px;}
.y9c{bottom:543.315000px;}
.ydc{bottom:546.555000px;}
.yb0{bottom:547.635000px;}
.y13f{bottom:549.615000px;}
.y1a6{bottom:551.235000px;}
.y192{bottom:553.215000px;}
.y1fc{bottom:555.555000px;}
.y74{bottom:556.485000px;}
.y15a{bottom:558.825000px;}
.y24{bottom:564.765000px;}
.y1c2{bottom:566.205000px;}
.y48{bottom:570.345000px;}
.ydb{bottom:570.525000px;}
.y9b{bottom:574.485000px;}
.y1fb{bottom:576.285000px;}
.yaf{bottom:578.625000px;}
.y23{bottom:579.705000px;}
.y13e{bottom:580.605000px;}
.y1a5{bottom:582.405000px;}
.y191{bottom:584.205000px;}
.y1c1{bottom:586.905000px;}
.y62{bottom:587.445000px;}
.y86{bottom:589.245000px;}
.y159{bottom:589.785000px;}
.y1e4{bottom:591.225000px;}
.y16d{bottom:591.585000px;}
.yda{bottom:594.285000px;}
.y47{bottom:601.485000px;}
.y22{bottom:602.205000px;}
.y9a{bottom:605.445000px;}
.y1c0{bottom:607.605000px;}
.yae{bottom:609.765000px;}
.y13d{bottom:611.565000px;}
.y1fa{bottom:611.925000px;}
.y1a4{bottom:613.365000px;}
.y21{bottom:614.805000px;}
.y190{bottom:615.345000px;}
.yd9{bottom:618.045000px;}
.y73{bottom:618.585000px;}
.y85{bottom:620.385000px;}
.y158{bottom:620.925000px;}
.y16c{bottom:622.545000px;}
.y1e3{bottom:626.865000px;}
.y46{bottom:632.445000px;}
.y1f9{bottom:632.625000px;}
.y61{bottom:636.585000px;}
.y20{bottom:636.945000px;}
.yad{bottom:640.725000px;}
.y1bf{bottom:643.425000px;}
.y1a3{bottom:644.505000px;}
.y18f{bottom:646.305000px;}
.y1e2{bottom:647.565000px;}
.y72{bottom:649.545000px;}
.y84{bottom:651.345000px;}
.y157{bottom:651.885000px;}
.y16b{bottom:653.505000px;}
.yc5{bottom:654.585000px;}
.y13c{bottom:656.025000px;}
.y10e{bottom:663.405000px;}
.y1f{bottom:663.585000px;}
.y1be{bottom:664.125000px;}
.y60{bottom:667.545000px;}
.y1f8{bottom:668.265000px;}
.yd8{bottom:668.805000px;}
.y17f{bottom:671.145000px;}
.yac{bottom:671.865000px;}
.y20f{bottom:674.205000px;}
.y1a2{bottom:675.465000px;}
.y18e{bottom:677.445000px;}
.y71{bottom:680.685000px;}
.y156{bottom:683.025000px;}
.y1e1{bottom:683.385000px;}
.y16a{bottom:684.645000px;}
.y99{bottom:685.545000px;}
.y13b{bottom:686.985000px;}
.y1e{bottom:691.845000px;}
.yd7{bottom:692.745000px;}
.y45{bottom:694.545000px;}
.y83{bottom:697.965000px;}
.y5f{bottom:698.685000px;}
.y1bd{bottom:699.765000px;}
.y17e{bottom:702.105000px;}
.yc4{bottom:703.545000px;}
.y1e0{bottom:704.085000px;}
.y1a1{bottom:706.605000px;}
.y18d{bottom:708.405000px;}
.y1d{bottom:712.185000px;}
.y155{bottom:713.985000px;}
.y169{bottom:715.605000px;}
.yd6{bottom:716.505000px;}
.y98{bottom:716.685000px;}
.y13a{bottom:717.945000px;}
.y70{bottom:720.645000px;}
.yab{bottom:720.825000px;}
.y82{bottom:723.885000px;}
.y1df{bottom:724.785000px;}
.y44{bottom:725.685000px;}
.y1c{bottom:729.465000px;}
.y5e{bottom:729.645000px;}
.y17d{bottom:733.245000px;}
.yc3{bottom:734.685000px;}
.y1bc{bottom:735.405000px;}
.y1a0{bottom:737.565000px;}
.y18c{bottom:739.545000px;}
.y20e{bottom:739.725000px;}
.y154{bottom:745.125000px;}
.y1de{bottom:745.485000px;}
.y1b{bottom:746.745000px;}
.y97{bottom:747.645000px;}
.y139{bottom:750.345000px;}
.y6f{bottom:751.785000px;}
.y1bb{bottom:756.105000px;}
.y43{bottom:756.645000px;}
.y1f7{bottom:760.425000px;}
.yef{bottom:760.785000px;}
.y1a{bottom:763.845000px;}
.y17c{bottom:764.205000px;}
.yc2{bottom:765.645000px;}
.y81{bottom:766.185000px;}
.yd5{bottom:767.265000px;}
.yaa{bottom:767.445000px;}
.y19f{bottom:768.705000px;}
.y18b{bottom:770.505000px;}
.y38{bottom:772.125000px;}
.y153{bottom:776.085000px;}
.y1ba{bottom:776.805000px;}
.y168{bottom:777.705000px;}
.y5d{bottom:778.785000px;}
.y1dd{bottom:781.125000px;}
.y19{bottom:781.305000px;}
.y138{bottom:781.485000px;}
.y42{bottom:787.785000px;}
.yd4{bottom:791.025000px;}
.yee{bottom:791.745000px;}
.y17b{bottom:795.345000px;}
.y37{bottom:795.885000px;}
.y20d{bottom:796.065000px;}
.yc1{bottom:796.785000px;}
.y19e{bottom:799.665000px;}
.y18a{bottom:801.645000px;}
.y1dc{bottom:801.825000px;}
.y18{bottom:804.345000px;}
.y152{bottom:807.225000px;}
.y167{bottom:808.845000px;}
.y5c{bottom:809.745000px;}
.ya9{bottom:809.925000px;}
.y137{bottom:812.445000px;}
.y1b9{bottom:812.625000px;}
.yd3{bottom:814.785000px;}
.y1f6{bottom:816.765000px;}
.y41{bottom:818.745000px;}
.y36{bottom:819.645000px;}
.yed{bottom:822.885000px;}
.y17a{bottom:826.305000px;}
.yc0{bottom:827.745000px;}
.y19d{bottom:830.805000px;}
.y17{bottom:835.485000px;}
.y1db{bottom:837.465000px;}
.y151{bottom:838.185000px;}
.yd2{bottom:838.770000px;}
.y166{bottom:839.850000px;}
.y5b{bottom:840.930000px;}
.y35{bottom:843.450000px;}
.y103{bottom:845.610000px;}
.y189{bottom:847.590000px;}
.y1b8{bottom:848.310000px;}
.y40{bottom:849.930000px;}
.yec{bottom:853.890000px;}
.y16{bottom:855.870000px;}
.y179{bottom:857.490000px;}
.y1da{bottom:858.210000px;}
.y96{bottom:858.930000px;}
.y19c{bottom:861.810000px;}
.yd1{bottom:862.530000px;}
.y136{bottom:865.950000px;}
.y34{bottom:867.390000px;}
.y150{bottom:869.370000px;}
.y5a{bottom:871.890000px;}
.y15{bottom:873.150000px;}
.y20c{bottom:873.330000px;}
.y165{bottom:878.730000px;}
.y1d9{bottom:878.910000px;}
.y1b7{bottom:883.950000px;}
.yeb{bottom:885.030000px;}
.yd0{bottom:886.290000px;}
.y95{bottom:889.890000px;}
.y14{bottom:890.430000px;}
.y33{bottom:891.150000px;}
.y188{bottom:893.670000px;}
.y1f5{bottom:894.030000px;}
.y178{bottom:896.370000px;}
.y135{bottom:896.910000px;}
.y3f{bottom:898.890000px;}
.y6e{bottom:903.030000px;}
.y1b6{bottom:904.650000px;}
.y13{bottom:907.710000px;}
.ybf{bottom:907.890000px;}
.y14f{bottom:909.330000px;}
.y1d8{bottom:914.730000px;}
.yea{bottom:915.990000px;}
.y59{bottom:921.030000px;}
.y187{bottom:922.290000px;}
.y12{bottom:924.810000px;}
.y1b5{bottom:925.350000px;}
.y134{bottom:928.050000px;}
.y3e{bottom:930.030000px;}
.y1d7{bottom:935.430000px;}
.ycf{bottom:937.050000px;}
.ybe{bottom:939.030000px;}
.y177{bottom:939.930000px;}
.y32{bottom:940.110000px;}
.y11{bottom:942.270000px;}
.y1b4{bottom:945.870000px;}
.y186{bottom:946.590000px;}
.ye9{bottom:947.130000px;}
.y20b{bottom:950.370000px;}
.y58{bottom:951.990000px;}
.y164{bottom:953.430000px;}
.y1d6{bottom:956.130000px;}
.y133{bottom:959.010000px;}
.y3d{bottom:960.990000px;}
.y31{bottom:962.250000px;}
.y176{bottom:964.230000px;}
.y1b3{bottom:965.130000px;}
.y10{bottom:965.310000px;}
.y14e{bottom:967.470000px;}
.ybd{bottom:969.990000px;}
.y1f4{bottom:971.070000px;}
.y163{bottom:977.730000px;}
.ye8{bottom:978.090000px;}
.y30{bottom:982.590000px;}
.y57{bottom:983.130000px;}
.y1d5{bottom:991.770000px;}
.y3c{bottom:992.130000px;}
.yf9{bottom:994.650000px;}
.yf{bottom:998.070000px;}
.y14d{bottom:998.430000px;}
.y2f{bottom:999.870000px;}
.ybc{bottom:1001.130000px;}
.y1b2{bottom:1005.090000px;}
.y20a{bottom:1006.710000px;}
.y132{bottom:1011.030000px;}
.yce{bottom:1011.750000px;}
.y1d4{bottom:1012.470000px;}
.y6d{bottom:1014.090000px;}
.y2e{bottom:1017.150000px;}
.y3b{bottom:1023.090000px;}
.y209{bottom:1027.410000px;}
.y14c{bottom:1029.390000px;}
.ye{bottom:1032.090000px;}
.y2d{bottom:1034.430000px;}
.ye7{bottom:1036.230000px;}
.y94{bottom:1045.230000px;}
.y1d3{bottom:1048.110000px;}
.y2c{bottom:1051.710000px;}
.y3a{bottom:1054.230000px;}
.y14b{bottom:1061.790000px;}
.yd{bottom:1063.230000px;}
.ye6{bottom:1067.190000px;}
.y1d2{bottom:1068.810000px;}
.ycd{bottom:1069.710000px;}
.y2b{bottom:1074.930000px;}
.y208{bottom:1083.930000px;}
.y39{bottom:1085.190000px;}
.yc{bottom:1085.730000px;}
.y14a{bottom:1092.930000px;}
.y56{bottom:1094.190000px;}
.y2a{bottom:1104.630000px;}
.yb{bottom:1116.870000px;}
.y149{bottom:1123.920000px;}
.y131{bottom:1125.180000px;}
.y29{bottom:1125.360000px;}
.ycc{bottom:1126.620000px;}
.y3{bottom:1145.700000px;}
.y2{bottom:1228.500000px;}
.y1{bottom:1247.400000px;}
.hd{height:26.995781px;}
.he{height:41.493516px;}
.h2{height:47.415937px;}
.h3{height:47.610000px;}
.h10{height:48.410156px;}
.h9{height:48.796875px;}
.h6{height:53.573906px;}
.h4{height:58.833281px;}
.h7{height:59.383125px;}
.hc{height:63.949219px;}
.hb{height:64.546875px;}
.h5{height:71.640000px;}
.ha{height:75.519844px;}
.h8{height:95.923828px;}
.hf{height:115.560000px;}
.h11{height:148.320000px;}
.h12{height:181.470000px;}
.h13{height:214.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:149.796000px;}
.w5{width:603.285000px;}
.w3{width:777.570000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x5{left:13.140000px;}
.x14{left:34.740000px;}
.x12{left:46.116000px;}
.x4{left:63.720000px;}
.x1{left:65.519987px;}
.x10{left:69.660000px;}
.x25{left:71.819987px;}
.x8{left:82.979987px;}
.x28{left:92.519987px;}
.xb{left:93.959987px;}
.x17{left:106.055987px;}
.x3{left:113.075987px;}
.x6{left:119.555987px;}
.x19{left:133.055987px;}
.xd{left:134.675987px;}
.xf{left:146.555987px;}
.x18{left:160.049987px;}
.x23{left:166.889987px;}
.x1b{left:173.549987px;}
.x1f{left:183.809987px;}
.x1a{left:187.049987px;}
.x27{left:192.629987px;}
.x1c{left:200.549987px;}
.x13{left:220.170000px;}
.x1d{left:227.549987px;}
.x21{left:249.869987px;}
.x16{left:285.914987px;}
.x9{left:422.174987px;}
.xe{left:446.474987px;}
.x15{left:466.814987px;}
.x20{left:562.424987px;}
.x26{left:577.004987px;}
.x24{left:578.084987px;}
.x1e{left:595.004987px;}
.xc{left:618.044987px;}
.x22{left:627.584987px;}
.x7{left:629.204987px;}
.xa{left:665.204987px;}
.x2{left:800.069987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.768000pt;}
.lsf{letter-spacing:2.560000pt;}
.lsd{letter-spacing:5.760000pt;}
.lsc{letter-spacing:15.360000pt;}
.ls13{letter-spacing:25.088000pt;}
.ls11{letter-spacing:30.208000pt;}
.ls14{letter-spacing:48.768000pt;}
.ls12{letter-spacing:60.896000pt;}
.lsb{letter-spacing:752.106667pt;}
.wsc{word-spacing:-64.000000pt;}
.wsb{word-spacing:-48.000000pt;}
.wsf{word-spacing:-16.768000pt;}
.ws0{word-spacing:-16.271573pt;}
.ws7{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.192000pt;}
.wse{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.870933pt;}
.ws8{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-1.211733pt;}
._2{width:1.371947pt;}
._6{width:2.442667pt;}
._b{width:3.621333pt;}
._a{width:4.689707pt;}
._f{width:6.117973pt;}
._4{width:7.711573pt;}
._5{width:8.711680pt;}
._10{width:9.730133pt;}
._14{width:10.624000pt;}
._12{width:11.840000pt;}
._13{width:12.736000pt;}
._16{width:14.080000pt;}
._11{width:14.976000pt;}
._3{width:17.102507pt;}
._1{width:18.485760pt;}
._17{width:19.860480pt;}
._15{width:21.056000pt;}
._8{width:22.592000pt;}
._7{width:24.064000pt;}
._1a{width:24.960000pt;}
._1c{width:26.020053pt;}
._d{width:27.200000pt;}
._e{width:28.096000pt;}
._20{width:29.028053pt;}
._1b{width:30.144000pt;}
._1e{width:31.611733pt;}
._1f{width:32.964267pt;}
._1d{width:33.984000pt;}
._18{width:51.114667pt;}
._19{width:52.309333pt;}
._21{width:94.784000pt;}
._22{width:103.803733pt;}
._23{width:105.028267pt;}
._c{width:753.386667pt;}
._9{width:1831.797333pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.ya{bottom:-11.520000pt;}
.y0{bottom:0.000000pt;}
.y102{bottom:2.560000pt;}
.y9{bottom:5.120000pt;}
.y10d{bottom:17.120000pt;}
.y101{bottom:17.280000pt;}
.y8{bottom:20.480000pt;}
.y5{bottom:27.392000pt;}
.y10c{bottom:31.840000pt;}
.y100{bottom:32.000000pt;}
.y7{bottom:35.840000pt;}
.yff{bottom:46.560000pt;}
.y12d{bottom:46.600000pt;}
.y6{bottom:51.200000pt;}
.y4{bottom:53.472000pt;}
.yfb{bottom:60.160000pt;}
.y10b{bottom:61.120000pt;}
.yfe{bottom:61.280000pt;}
.y12c{bottom:61.320000pt;}
.y106{bottom:61.760000pt;}
.y10a{bottom:75.840000pt;}
.y12b{bottom:75.880000pt;}
.yfd{bottom:76.000000pt;}
.yfa{bottom:87.840000pt;}
.y105{bottom:89.440000pt;}
.y109{bottom:90.400000pt;}
.yfc{bottom:90.560000pt;}
.y12a{bottom:90.600000pt;}
.y111{bottom:91.200000pt;}
.y118{bottom:92.960000pt;}
.y123{bottom:93.000000pt;}
.y175{bottom:100.032000pt;}
.y19b{bottom:100.832000pt;}
.y93{bottom:100.992000pt;}
.y108{bottom:105.120000pt;}
.y129{bottom:105.160000pt;}
.y11e{bottom:105.306667pt;}
.y185{bottom:110.112000pt;}
.y1d1{bottom:115.552000pt;}
.y55{bottom:116.192000pt;}
.y104{bottom:116.960000pt;}
.y110{bottom:118.720000pt;}
.y1f3{bottom:119.392000pt;}
.ya8{bottom:119.712000pt;}
.y107{bottom:119.840000pt;}
.y11d{bottom:119.866667pt;}
.y128{bottom:119.880000pt;}
.y117{bottom:120.506667pt;}
.y122{bottom:120.520000pt;}
.y174{bottom:127.712000pt;}
.y92{bottom:128.512000pt;}
.ycb{bottom:129.152000pt;}
.y1b1{bottom:131.232000pt;}
.y80{bottom:131.392000pt;}
.y113{bottom:134.400000pt;}
.y11c{bottom:134.586667pt;}
.y127{bottom:134.600000pt;}
.y184{bottom:137.626667pt;}
.y130{bottom:143.386667pt;}
.y54{bottom:143.706667pt;}
.y10f{bottom:146.400000pt;}
.y1d0{bottom:147.226667pt;}
.ya7{bottom:147.386667pt;}
.y116{bottom:148.186667pt;}
.y121{bottom:148.200000pt;}
.y112{bottom:149.120000pt;}
.y126{bottom:149.160000pt;}
.y11b{bottom:149.306667pt;}
.y1f2{bottom:151.066667pt;}
.y173{bottom:155.226667pt;}
.y19a{bottom:156.026667pt;}
.y91{bottom:156.186667pt;}
.y7f{bottom:158.906667pt;}
.y207{bottom:161.306667pt;}
.y11a{bottom:163.866667pt;}
.y125{bottom:163.880000pt;}
.y183{bottom:165.306667pt;}
.y1cf{bottom:165.626667pt;}
.y12f{bottom:166.266667pt;}
.ybb{bottom:167.226667pt;}
.y1f1{bottom:169.466667pt;}
.yca{bottom:170.426667pt;}
.y53{bottom:171.386667pt;}
.y162{bottom:172.826667pt;}
.y115{bottom:175.706667pt;}
.y120{bottom:175.720000pt;}
.y119{bottom:178.586667pt;}
.y124{bottom:178.600000pt;}
.yf8{bottom:182.906667pt;}
.y90{bottom:183.706667pt;}
.y1b0{bottom:186.426667pt;}
.y7e{bottom:186.586667pt;}
.y1f0{bottom:187.866667pt;}
.ya6{bottom:190.906667pt;}
.y12e{bottom:191.546667pt;}
.y6c{bottom:192.826667pt;}
.y206{bottom:192.986667pt;}
.yba{bottom:194.746667pt;}
.y1ce{bottom:197.466667pt;}
.y52{bottom:198.906667pt;}
.y148{bottom:200.506667pt;}
.y1ef{bottom:206.266667pt;}
.y11f{bottom:207.066667pt;}
.y172{bottom:210.426667pt;}
.yf7{bottom:210.586667pt;}
.yc9{bottom:211.706667pt;}
.y7d{bottom:214.106667pt;}
.y1cd{bottom:215.866667pt;}
.ya5{bottom:218.586667pt;}
.y199{bottom:219.226667pt;}
.y6b{bottom:220.506667pt;}
.yb9{bottom:222.426667pt;}
.y205{bottom:224.666667pt;}
.y51{bottom:226.586667pt;}
.y8f{bottom:227.386667pt;}
.y147{bottom:228.026667pt;}
.yf6{bottom:238.106667pt;}
.y1af{bottom:241.626667pt;}
.y204{bottom:243.106667pt;}
.y171{bottom:245.026667pt;}
.ya4{bottom:246.146667pt;}
.y1cc{bottom:247.586667pt;}
.y6a{bottom:248.066667pt;}
.yb8{bottom:249.986667pt;}
.yc8{bottom:253.186667pt;}
.y50{bottom:254.146667pt;}
.y8e{bottom:254.946667pt;}
.y146{bottom:255.586667pt;}
.y161{bottom:255.746667pt;}
.y1ee{bottom:256.546667pt;}
.y7c{bottom:257.826667pt;}
.yf5{bottom:265.826667pt;}
.y1cb{bottom:265.986667pt;}
.y1ae{bottom:269.346667pt;}
.y198{bottom:270.946667pt;}
.ye5{bottom:271.426667pt;}
.ya3{bottom:273.826667pt;}
.y1ed{bottom:274.786667pt;}
.y69{bottom:275.746667pt;}
.yb7{bottom:277.506667pt;}
.y4f{bottom:281.826667pt;}
.y8d{bottom:282.626667pt;}
.y145{bottom:283.266667pt;}
.y1ca{bottom:284.386667pt;}
.y7b{bottom:285.346667pt;}
.y170{bottom:285.986667pt;}
.ye4{bottom:292.546667pt;}
.y203{bottom:293.186667pt;}
.yc7{bottom:293.346667pt;}
.y1ad{bottom:296.866667pt;}
.y197{bottom:298.466667pt;}
.ya2{bottom:301.346667pt;}
.y68{bottom:303.266667pt;}
.yb6{bottom:305.186667pt;}
.y1ec{bottom:306.626667pt;}
.y144{bottom:310.786667pt;}
.y160{bottom:310.946667pt;}
.y16f{bottom:311.426667pt;}
.y202{bottom:311.586667pt;}
.y7a{bottom:313.026667pt;}
.ye3{bottom:313.826667pt;}
.y1c9{bottom:316.066667pt;}
.yf4{bottom:317.346667pt;}
.y1ac{bottom:324.546667pt;}
.y1eb{bottom:325.026667pt;}
.y4e{bottom:325.346667pt;}
.y8c{bottom:326.146667pt;}
.ya1{bottom:329.026667pt;}
.yc6{bottom:330.946667pt;}
.yb5{bottom:332.706667pt;}
.y16e{bottom:333.026667pt;}
.y1c8{bottom:334.466667pt;}
.ye2{bottom:334.946667pt;}
.y15f{bottom:338.466667pt;}
.y79{bottom:340.546667pt;}
.y201{bottom:343.426667pt;}
.yf3{bottom:345.026667pt;}
.y67{bottom:346.786667pt;}
.y1ab{bottom:352.066667pt;}
.y4d{bottom:353.026667pt;}
.y196{bottom:353.666667pt;}
.y8b{bottom:353.826667pt;}
.ye1{bottom:356.066667pt;}
.ya0{bottom:356.546667pt;}
.y1ea{bottom:356.706667pt;}
.y143{bottom:357.186667pt;}
.yb4{bottom:360.386667pt;}
.y200{bottom:361.826667pt;}
.y182{bottom:365.506667pt;}
.y15e{bottom:366.146667pt;}
.y1c7{bottom:366.306667pt;}
.y78{bottom:368.226667pt;}
.yf2{bottom:372.546667pt;}
.y66{bottom:374.466667pt;}
.y1e9{bottom:375.106667pt;}
.ye0{bottom:377.186667pt;}
.y1aa{bottom:379.746667pt;}
.y4c{bottom:380.546667pt;}
.y8a{bottom:381.346667pt;}
.y9f{bottom:384.226667pt;}
.y1c6{bottom:384.706667pt;}
.yb3{bottom:387.906667pt;}
.y1ff{bottom:393.506667pt;}
.y15d{bottom:393.666667pt;}
.y77{bottom:395.746667pt;}
.y114{bottom:398.306667pt;}
.ydf{bottom:398.466667pt;}
.yf1{bottom:400.226667pt;}
.y65{bottom:401.986667pt;}
.y1c5{bottom:403.106667pt;}
.y142{bottom:403.266667pt;}
.y181{bottom:404.066667pt;}
.y1e8{bottom:406.786667pt;}
.y1a9{bottom:407.266667pt;}
.y4b{bottom:408.226667pt;}
.y195{bottom:408.866667pt;}
.y9e{bottom:411.746667pt;}
.y1fe{bottom:411.906667pt;}
.yde{bottom:419.586667pt;}
.y89{bottom:425.026667pt;}
.y1e7{bottom:425.186667pt;}
.y180{bottom:425.666667pt;}
.yf0{bottom:427.746667pt;}
.y15c{bottom:428.226667pt;}
.y28{bottom:429.346667pt;}
.y64{bottom:429.666667pt;}
.yb2{bottom:431.586667pt;}
.y141{bottom:432.066667pt;}
.y1a8{bottom:434.786667pt;}
.y4a{bottom:435.746667pt;}
.y194{bottom:436.546667pt;}
.y76{bottom:439.426667pt;}
.ydd{bottom:440.706667pt;}
.y1fd{bottom:443.586667pt;}
.y27{bottom:448.706667pt;}
.y88{bottom:452.546667pt;}
.y1c4{bottom:453.186667pt;}
.y9d{bottom:455.426667pt;}
.y1e6{bottom:457.026667pt;}
.yb1{bottom:459.106667pt;}
.y140{bottom:459.586667pt;}
.y1a7{bottom:462.466667pt;}
.y49{bottom:463.426667pt;}
.y193{bottom:464.066667pt;}
.y75{bottom:466.946667pt;}
.y26{bottom:468.706667pt;}
.y15b{bottom:469.026667pt;}
.y1c3{bottom:471.586667pt;}
.y63{bottom:473.186667pt;}
.y1e5{bottom:475.426667pt;}
.y87{bottom:480.226667pt;}
.y25{bottom:481.986667pt;}
.y9c{bottom:482.946667pt;}
.ydc{bottom:485.826667pt;}
.yb0{bottom:486.786667pt;}
.y13f{bottom:488.546667pt;}
.y1a6{bottom:489.986667pt;}
.y192{bottom:491.746667pt;}
.y1fc{bottom:493.826667pt;}
.y74{bottom:494.653333pt;}
.y15a{bottom:496.733333pt;}
.y24{bottom:502.013333pt;}
.y1c2{bottom:503.293333pt;}
.y48{bottom:506.973333pt;}
.ydb{bottom:507.133333pt;}
.y9b{bottom:510.653333pt;}
.y1fb{bottom:512.253333pt;}
.yaf{bottom:514.333333pt;}
.y23{bottom:515.293333pt;}
.y13e{bottom:516.093333pt;}
.y1a5{bottom:517.693333pt;}
.y191{bottom:519.293333pt;}
.y1c1{bottom:521.693333pt;}
.y62{bottom:522.173333pt;}
.y86{bottom:523.773333pt;}
.y159{bottom:524.253333pt;}
.y1e4{bottom:525.533333pt;}
.y16d{bottom:525.853333pt;}
.yda{bottom:528.253333pt;}
.y47{bottom:534.653333pt;}
.y22{bottom:535.293333pt;}
.y9a{bottom:538.173333pt;}
.y1c0{bottom:540.093333pt;}
.yae{bottom:542.013333pt;}
.y13d{bottom:543.613333pt;}
.y1fa{bottom:543.933333pt;}
.y1a4{bottom:545.213333pt;}
.y21{bottom:546.493333pt;}
.y190{bottom:546.973333pt;}
.yd9{bottom:549.373333pt;}
.y73{bottom:549.853333pt;}
.y85{bottom:551.453333pt;}
.y158{bottom:551.933333pt;}
.y16c{bottom:553.373333pt;}
.y1e3{bottom:557.213333pt;}
.y46{bottom:562.173333pt;}
.y1f9{bottom:562.333333pt;}
.y61{bottom:565.853333pt;}
.y20{bottom:566.173333pt;}
.yad{bottom:569.533333pt;}
.y1bf{bottom:571.933333pt;}
.y1a3{bottom:572.893333pt;}
.y18f{bottom:574.493333pt;}
.y1e2{bottom:575.613333pt;}
.y72{bottom:577.373333pt;}
.y84{bottom:578.973333pt;}
.y157{bottom:579.453333pt;}
.y16b{bottom:580.893333pt;}
.yc5{bottom:581.853333pt;}
.y13c{bottom:583.133333pt;}
.y10e{bottom:589.693333pt;}
.y1f{bottom:589.853333pt;}
.y1be{bottom:590.333333pt;}
.y60{bottom:593.373333pt;}
.y1f8{bottom:594.013333pt;}
.yd8{bottom:594.493333pt;}
.y17f{bottom:596.573333pt;}
.yac{bottom:597.213333pt;}
.y20f{bottom:599.293333pt;}
.y1a2{bottom:600.413333pt;}
.y18e{bottom:602.173333pt;}
.y71{bottom:605.053333pt;}
.y156{bottom:607.133333pt;}
.y1e1{bottom:607.453333pt;}
.y16a{bottom:608.573333pt;}
.y99{bottom:609.373333pt;}
.y13b{bottom:610.653333pt;}
.y1e{bottom:614.973333pt;}
.yd7{bottom:615.773333pt;}
.y45{bottom:617.373333pt;}
.y83{bottom:620.413333pt;}
.y5f{bottom:621.053333pt;}
.y1bd{bottom:622.013333pt;}
.y17e{bottom:624.093333pt;}
.yc4{bottom:625.373333pt;}
.y1e0{bottom:625.853333pt;}
.y1a1{bottom:628.093333pt;}
.y18d{bottom:629.693333pt;}
.y1d{bottom:633.053333pt;}
.y155{bottom:634.653333pt;}
.y169{bottom:636.093333pt;}
.yd6{bottom:636.893333pt;}
.y98{bottom:637.053333pt;}
.y13a{bottom:638.173333pt;}
.y70{bottom:640.573333pt;}
.yab{bottom:640.733333pt;}
.y82{bottom:643.453333pt;}
.y1df{bottom:644.253333pt;}
.y44{bottom:645.053333pt;}
.y1c{bottom:648.413333pt;}
.y5e{bottom:648.573333pt;}
.y17d{bottom:651.773333pt;}
.yc3{bottom:653.053333pt;}
.y1bc{bottom:653.693333pt;}
.y1a0{bottom:655.613333pt;}
.y18c{bottom:657.373333pt;}
.y20e{bottom:657.533333pt;}
.y154{bottom:662.333333pt;}
.y1de{bottom:662.653333pt;}
.y1b{bottom:663.773333pt;}
.y97{bottom:664.573333pt;}
.y139{bottom:666.973333pt;}
.y6f{bottom:668.253333pt;}
.y1bb{bottom:672.093333pt;}
.y43{bottom:672.573333pt;}
.y1f7{bottom:675.933333pt;}
.yef{bottom:676.253333pt;}
.y1a{bottom:678.973333pt;}
.y17c{bottom:679.293333pt;}
.yc2{bottom:680.573333pt;}
.y81{bottom:681.053333pt;}
.yd5{bottom:682.013333pt;}
.yaa{bottom:682.173333pt;}
.y19f{bottom:683.293333pt;}
.y18b{bottom:684.893333pt;}
.y38{bottom:686.333333pt;}
.y153{bottom:689.853333pt;}
.y1ba{bottom:690.493333pt;}
.y168{bottom:691.293333pt;}
.y5d{bottom:692.253333pt;}
.y1dd{bottom:694.333333pt;}
.y19{bottom:694.493333pt;}
.y138{bottom:694.653333pt;}
.y42{bottom:700.253333pt;}
.yd4{bottom:703.133333pt;}
.yee{bottom:703.773333pt;}
.y17b{bottom:706.973333pt;}
.y37{bottom:707.453333pt;}
.y20d{bottom:707.613333pt;}
.yc1{bottom:708.253333pt;}
.y19e{bottom:710.813333pt;}
.y18a{bottom:712.573333pt;}
.y1dc{bottom:712.733333pt;}
.y18{bottom:714.973333pt;}
.y152{bottom:717.533333pt;}
.y167{bottom:718.973333pt;}
.y5c{bottom:719.773333pt;}
.ya9{bottom:719.933333pt;}
.y137{bottom:722.173333pt;}
.y1b9{bottom:722.333333pt;}
.yd3{bottom:724.253333pt;}
.y1f6{bottom:726.013333pt;}
.y41{bottom:727.773333pt;}
.y36{bottom:728.573333pt;}
.yed{bottom:731.453333pt;}
.y17a{bottom:734.493333pt;}
.yc0{bottom:735.773333pt;}
.y19d{bottom:738.493333pt;}
.y17{bottom:742.653333pt;}
.y1db{bottom:744.413333pt;}
.y151{bottom:745.053333pt;}
.yd2{bottom:745.573333pt;}
.y166{bottom:746.533333pt;}
.y5b{bottom:747.493333pt;}
.y35{bottom:749.733333pt;}
.y103{bottom:751.653333pt;}
.y189{bottom:753.413333pt;}
.y1b8{bottom:754.053333pt;}
.y40{bottom:755.493333pt;}
.yec{bottom:759.013333pt;}
.y16{bottom:760.773333pt;}
.y179{bottom:762.213333pt;}
.y1da{bottom:762.853333pt;}
.y96{bottom:763.493333pt;}
.y19c{bottom:766.053333pt;}
.yd1{bottom:766.693333pt;}
.y136{bottom:769.733333pt;}
.y34{bottom:771.013333pt;}
.y150{bottom:772.773333pt;}
.y5a{bottom:775.013333pt;}
.y15{bottom:776.133333pt;}
.y20c{bottom:776.293333pt;}
.y165{bottom:781.093333pt;}
.y1d9{bottom:781.253333pt;}
.y1b7{bottom:785.733333pt;}
.yeb{bottom:786.693333pt;}
.yd0{bottom:787.813333pt;}
.y95{bottom:791.013333pt;}
.y14{bottom:791.493333pt;}
.y33{bottom:792.133333pt;}
.y188{bottom:794.373333pt;}
.y1f5{bottom:794.693333pt;}
.y178{bottom:796.773333pt;}
.y135{bottom:797.253333pt;}
.y3f{bottom:799.013333pt;}
.y6e{bottom:802.693333pt;}
.y1b6{bottom:804.133333pt;}
.y13{bottom:806.853333pt;}
.ybf{bottom:807.013333pt;}
.y14f{bottom:808.293333pt;}
.y1d8{bottom:813.093333pt;}
.yea{bottom:814.213333pt;}
.y59{bottom:818.693333pt;}
.y187{bottom:819.813333pt;}
.y12{bottom:822.053333pt;}
.y1b5{bottom:822.533333pt;}
.y134{bottom:824.933333pt;}
.y3e{bottom:826.693333pt;}
.y1d7{bottom:831.493333pt;}
.ycf{bottom:832.933333pt;}
.ybe{bottom:834.693333pt;}
.y177{bottom:835.493333pt;}
.y32{bottom:835.653333pt;}
.y11{bottom:837.573333pt;}
.y1b4{bottom:840.773333pt;}
.y186{bottom:841.413333pt;}
.ye9{bottom:841.893333pt;}
.y20b{bottom:844.773333pt;}
.y58{bottom:846.213333pt;}
.y164{bottom:847.493333pt;}
.y1d6{bottom:849.893333pt;}
.y133{bottom:852.453333pt;}
.y3d{bottom:854.213333pt;}
.y31{bottom:855.333333pt;}
.y176{bottom:857.093333pt;}
.y1b3{bottom:857.893333pt;}
.y10{bottom:858.053333pt;}
.y14e{bottom:859.973333pt;}
.ybd{bottom:862.213333pt;}
.y1f4{bottom:863.173333pt;}
.y163{bottom:869.093333pt;}
.ye8{bottom:869.413333pt;}
.y30{bottom:873.413333pt;}
.y57{bottom:873.893333pt;}
.y1d5{bottom:881.573333pt;}
.y3c{bottom:881.893333pt;}
.yf9{bottom:884.133333pt;}
.yf{bottom:887.173333pt;}
.y14d{bottom:887.493333pt;}
.y2f{bottom:888.773333pt;}
.ybc{bottom:889.893333pt;}
.y1b2{bottom:893.413333pt;}
.y20a{bottom:894.853333pt;}
.y132{bottom:898.693333pt;}
.yce{bottom:899.333333pt;}
.y1d4{bottom:899.973333pt;}
.y6d{bottom:901.413333pt;}
.y2e{bottom:904.133333pt;}
.y3b{bottom:909.413333pt;}
.y209{bottom:913.253333pt;}
.y14c{bottom:915.013333pt;}
.ye{bottom:917.413333pt;}
.y2d{bottom:919.493333pt;}
.ye7{bottom:921.093333pt;}
.y94{bottom:929.093333pt;}
.y1d3{bottom:931.653333pt;}
.y2c{bottom:934.853333pt;}
.y3a{bottom:937.093333pt;}
.y14b{bottom:943.813333pt;}
.yd{bottom:945.093333pt;}
.ye6{bottom:948.613333pt;}
.y1d2{bottom:950.053333pt;}
.ycd{bottom:950.853333pt;}
.y2b{bottom:955.493333pt;}
.y208{bottom:963.493333pt;}
.y39{bottom:964.613333pt;}
.yc{bottom:965.093333pt;}
.y14a{bottom:971.493333pt;}
.y56{bottom:972.613333pt;}
.y2a{bottom:981.893333pt;}
.yb{bottom:992.773333pt;}
.y149{bottom:999.040000pt;}
.y131{bottom:1000.160000pt;}
.y29{bottom:1000.320000pt;}
.ycc{bottom:1001.440000pt;}
.y3{bottom:1018.400000pt;}
.y2{bottom:1092.000000pt;}
.y1{bottom:1108.800000pt;}
.hd{height:23.996250pt;}
.he{height:36.883125pt;}
.h2{height:42.147500pt;}
.h3{height:42.320000pt;}
.h10{height:43.031250pt;}
.h9{height:43.375000pt;}
.h6{height:47.621250pt;}
.h4{height:52.296250pt;}
.h7{height:52.785000pt;}
.hc{height:56.843750pt;}
.hb{height:57.375000pt;}
.h5{height:63.680000pt;}
.ha{height:67.128750pt;}
.h8{height:85.265625pt;}
.hf{height:102.720000pt;}
.h11{height:131.840000pt;}
.h12{height:161.306667pt;}
.h13{height:190.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:133.152000pt;}
.w5{width:536.253333pt;}
.w3{width:691.173333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x5{left:11.680000pt;}
.x14{left:30.880000pt;}
.x12{left:40.992000pt;}
.x4{left:56.640000pt;}
.x1{left:58.239988pt;}
.x10{left:61.920000pt;}
.x25{left:63.839988pt;}
.x8{left:73.759988pt;}
.x28{left:82.239988pt;}
.xb{left:83.519988pt;}
.x17{left:94.271988pt;}
.x3{left:100.511988pt;}
.x6{left:106.271988pt;}
.x19{left:118.271988pt;}
.xd{left:119.711988pt;}
.xf{left:130.271988pt;}
.x18{left:142.266655pt;}
.x23{left:148.346655pt;}
.x1b{left:154.266655pt;}
.x1f{left:163.386655pt;}
.x1a{left:166.266655pt;}
.x27{left:171.226655pt;}
.x1c{left:178.266655pt;}
.x13{left:195.706667pt;}
.x1d{left:202.266655pt;}
.x21{left:222.106655pt;}
.x16{left:254.146655pt;}
.x9{left:375.266655pt;}
.xe{left:396.866655pt;}
.x15{left:414.946655pt;}
.x20{left:499.933322pt;}
.x26{left:512.893322pt;}
.x24{left:513.853322pt;}
.x1e{left:528.893322pt;}
.xc{left:549.373322pt;}
.x22{left:557.853322pt;}
.x7{left:559.293322pt;}
.xa{left:591.293322pt;}
.x2{left:711.173322pt;}
}




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