
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_921174595d0db15db264353d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.073242;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_c55d23b1975da9b7505b4ff2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ea9bcfb8d230ec5b46119046.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2c14fb1a6e8d2e98fc771d59.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_772a7ecf6830971426d856e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_6471e87128c536bad13e4307.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_ab53c83c34cf4e03c33fa82e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-0.460200px;}
.ls11{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.208200px;}
.lsa{letter-spacing:-0.206400px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.666000px;}
.lsd{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.756000px;}
.ls1{letter-spacing:1.512000px;}
.lsb{letter-spacing:6.426720px;}
.ls19{letter-spacing:11.466720px;}
.ls2{letter-spacing:11.700000px;}
.ls17{letter-spacing:22.986720px;}
.lse{letter-spacing:26.586720px;}
.ls3{letter-spacing:30.186720px;}
.ls18{letter-spacing:41.706720px;}
.lsf{letter-spacing:53.226720px;}
.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;}
}
.ws0{word-spacing:-16.254600px;}
.ws7{word-spacing:-15.606000px;}
.ws8{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.479800px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-2785.423440px;}
._9{margin-left:-1575.624240px;}
._6{margin-left:-1402.905600px;}
._8{margin-left:-993.965760px;}
._d{margin-left:-688.104720px;}
._18{margin-left:-661.860000px;}
._e{margin-left:-659.954160px;}
._19{margin-left:-645.400800px;}
._a{margin-left:-571.401360px;}
._15{margin-left:-538.679640px;}
._1c{margin-left:-490.134240px;}
._1b{margin-left:-475.320000px;}
._16{margin-left:-428.114160px;}
._f{margin-left:-215.280000px;}
._13{margin-left:-174.240000px;}
._14{margin-left:-159.687360px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-144.000000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._2a{margin-left:-12.986640px;}
._7{margin-left:-8.213760px;}
._2d{margin-left:-6.293040px;}
._4{margin-left:-5.071200px;}
._1f{margin-left:-3.695040px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.673360px;}
._23{width:3.884400px;}
._24{width:4.933440px;}
._25{width:6.067440px;}
._27{width:7.115760px;}
._26{width:8.799120px;}
._22{width:9.925200px;}
._20{width:11.354400px;}
._21{width:12.522240px;}
._28{width:13.744800px;}
._29{width:16.026720px;}
._33{width:17.569440px;}
._31{width:18.704880px;}
._2e{width:19.720800px;}
._32{width:21.872160px;}
._2c{width:26.105760px;}
._1d{width:27.291600px;}
._1e{width:28.414080px;}
._34{width:30.537360px;}
._30{width:31.732560px;}
._2f{width:44.043120px;}
._2b{width:130.037760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd1{bottom:3.240000px;}
.ya1{bottom:3.420000px;}
.yb5{bottom:3.600000px;}
.ya6{bottom:3.780000px;}
.ybf{bottom:3.960000px;}
.y147{bottom:4.140000px;}
.yb2{bottom:4.500000px;}
.y163{bottom:5.940000px;}
.y168{bottom:6.120000px;}
.y164{bottom:6.300000px;}
.y169{bottom:6.480000px;}
.ya7{bottom:6.660000px;}
.ya4{bottom:7.020000px;}
.y16a{bottom:9.000000px;}
.y165{bottom:9.180000px;}
.y16b{bottom:9.360000px;}
.ya8{bottom:9.540000px;}
.y15a{bottom:11.520000px;}
.y14c{bottom:11.700000px;}
.y15b{bottom:11.880000px;}
.y125{bottom:12.060000px;}
.y143{bottom:12.105000px;}
.ycf{bottom:12.240000px;}
.y12a{bottom:12.420000px;}
.yc3{bottom:12.960000px;}
.yb9{bottom:13.500000px;}
.y10c{bottom:20.520000px;}
.y112{bottom:20.565000px;}
.y10a{bottom:20.700000px;}
.y160{bottom:20.730000px;}
.y144{bottom:20.745000px;}
.ybe{bottom:20.880000px;}
.y111{bottom:20.925000px;}
.y109{bottom:21.060000px;}
.y15f{bottom:21.090000px;}
.yb1{bottom:21.240000px;}
.y146{bottom:21.420000px;}
.y153{bottom:21.450000px;}
.yab{bottom:22.140000px;}
.ya3{bottom:23.940000px;}
.y16f{bottom:26.640000px;}
.y124{bottom:29.340000px;}
.yc2{bottom:29.880000px;}
.yb8{bottom:30.270000px;}
.y126{bottom:37.980000px;}
.y158{bottom:38.160000px;}
.y14a{bottom:38.340000px;}
.y15e{bottom:38.370000px;}
.yb0{bottom:38.520000px;}
.yaa{bottom:39.060000px;}
.yb7{bottom:47.550000px;}
.yc7{bottom:57.240000px;}
.y6{bottom:60.660000px;}
.y35{bottom:86.400000px;}
.y6b{bottom:87.660000px;}
.y15c{bottom:87.840000px;}
.y9f{bottom:93.060000px;}
.y107{bottom:94.140000px;}
.y120{bottom:97.920000px;}
.y157{bottom:105.840000px;}
.y34{bottom:106.380000px;}
.y6a{bottom:107.640000px;}
.y197{bottom:110.340000px;}
.y9e{bottom:112.860000px;}
.y106{bottom:113.940000px;}
.y11f{bottom:117.720000px;}
.y33{bottom:126.180000px;}
.y69{bottom:127.440000px;}
.y196{bottom:130.320000px;}
.y9d{bottom:132.300000px;}
.y105{bottom:133.740000px;}
.y11e{bottom:137.700000px;}
.y159{bottom:140.220000px;}
.y32{bottom:145.980000px;}
.y68{bottom:147.240000px;}
.y195{bottom:150.300000px;}
.y9c{bottom:152.280000px;}
.y104{bottom:153.720000px;}
.y11d{bottom:157.500000px;}
.y155{bottom:158.220000px;}
.y31{bottom:165.780000px;}
.y67{bottom:167.040000px;}
.y194{bottom:170.280000px;}
.y9b{bottom:172.080000px;}
.y103{bottom:173.520000px;}
.y156{bottom:176.220000px;}
.y11c{bottom:177.300000px;}
.y30{bottom:185.580000px;}
.y66{bottom:186.840000px;}
.y193{bottom:190.260000px;}
.y9a{bottom:191.880000px;}
.y102{bottom:193.320000px;}
.y152{bottom:194.220000px;}
.y11b{bottom:197.100000px;}
.y2f{bottom:205.410000px;}
.y65{bottom:206.850000px;}
.y192{bottom:210.270000px;}
.y99{bottom:211.710000px;}
.y154{bottom:212.250000px;}
.y101{bottom:213.150000px;}
.y11a{bottom:216.930000px;}
.y2e{bottom:225.390000px;}
.y64{bottom:226.650000px;}
.y150{bottom:230.250000px;}
.y119{bottom:231.330000px;}
.y98{bottom:231.510000px;}
.y100{bottom:232.950000px;}
.y2d{bottom:245.190000px;}
.y63{bottom:246.450000px;}
.y151{bottom:248.250000px;}
.y118{bottom:249.330000px;}
.y191{bottom:250.230000px;}
.y97{bottom:251.490000px;}
.yff{bottom:252.930000px;}
.y2c{bottom:264.990000px;}
.y62{bottom:266.250000px;}
.y117{bottom:267.330000px;}
.y190{bottom:270.210000px;}
.y96{bottom:271.650000px;}
.yfe{bottom:272.730000px;}
.y14f{bottom:284.250000px;}
.y2b{bottom:284.790000px;}
.y61{bottom:286.050000px;}
.y18f{bottom:290.190000px;}
.y95{bottom:291.450000px;}
.yfd{bottom:292.530000px;}
.y14d{bottom:302.250000px;}
.y116{bottom:302.610000px;}
.y2a{bottom:304.590000px;}
.y60{bottom:306.030000px;}
.y18e{bottom:310.170000px;}
.y94{bottom:311.250000px;}
.yfc{bottom:312.330000px;}
.y14e{bottom:320.250000px;}
.y29{bottom:324.570000px;}
.y5f{bottom:325.830000px;}
.y18d{bottom:330.150000px;}
.y93{bottom:331.050000px;}
.yfb{bottom:332.130000px;}
.y115{bottom:337.890000px;}
.y149{bottom:338.250000px;}
.y28{bottom:344.370000px;}
.y5e{bottom:345.630000px;}
.y18c{bottom:350.130000px;}
.y92{bottom:351.030000px;}
.yfa{bottom:352.110000px;}
.y27{bottom:364.170000px;}
.y5d{bottom:365.430000px;}
.y18b{bottom:370.110000px;}
.y91{bottom:370.830000px;}
.yf9{bottom:371.910000px;}
.y14b{bottom:372.810000px;}
.y114{bottom:373.170000px;}
.y26{bottom:383.970000px;}
.y5c{bottom:385.230000px;}
.y18a{bottom:390.090000px;}
.y90{bottom:390.630000px;}
.y145{bottom:390.810000px;}
.y113{bottom:391.170000px;}
.yf8{bottom:391.710000px;}
.y25{bottom:403.770000px;}
.y5b{bottom:405.210000px;}
.yf7{bottom:406.110000px;}
.y148{bottom:408.810000px;}
.y189{bottom:410.070000px;}
.y8f{bottom:410.430000px;}
.y24{bottom:423.750000px;}
.yf6{bottom:424.110000px;}
.y5a{bottom:425.010000px;}
.y110{bottom:426.450000px;}
.y142{bottom:426.810000px;}
.y188{bottom:430.050000px;}
.y8e{bottom:430.230000px;}
.yc6{bottom:438.915000px;}
.yf5{bottom:442.155000px;}
.y23{bottom:443.595000px;}
.y59{bottom:444.855000px;}
.y187{bottom:450.075000px;}
.y8d{bottom:450.255000px;}
.ycd{bottom:456.915000px;}
.yf4{bottom:460.155000px;}
.y10f{bottom:461.775000px;}
.y22{bottom:463.035000px;}
.y58{bottom:464.655000px;}
.y141{bottom:467.895000px;}
.y8c{bottom:470.055000px;}
.ycc{bottom:474.915000px;}
.yf3{bottom:478.155000px;}
.y10e{bottom:479.775000px;}
.y21{bottom:482.835000px;}
.y57{bottom:484.455000px;}
.y140{bottom:487.695000px;}
.y8b{bottom:489.855000px;}
.y186{bottom:490.035000px;}
.ycb{bottom:492.915000px;}
.yf2{bottom:496.155000px;}
.y10d{bottom:497.775000px;}
.y56{bottom:504.075000px;}
.y20{bottom:505.335000px;}
.y13f{bottom:507.855000px;}
.y8a{bottom:509.655000px;}
.y185{bottom:510.015000px;}
.yca{bottom:510.915000px;}
.yf1{bottom:514.155000px;}
.y10b{bottom:515.775000px;}
.y55{bottom:523.875000px;}
.y13e{bottom:527.835000px;}
.yc9{bottom:528.915000px;}
.y89{bottom:529.455000px;}
.y184{bottom:529.995000px;}
.yf0{bottom:532.155000px;}
.y1f{bottom:534.135000px;}
.y54{bottom:544.035000px;}
.yc8{bottom:546.915000px;}
.y13d{bottom:547.635000px;}
.y88{bottom:549.435000px;}
.y183{bottom:549.975000px;}
.yef{bottom:550.155000px;}
.y108{bottom:550.875000px;}
.y1e{bottom:553.935000px;}
.y53{bottom:563.835000px;}
.yc1{bottom:564.915000px;}
.y13c{bottom:567.435000px;}
.yee{bottom:568.155000px;}
.y87{bottom:569.235000px;}
.y182{bottom:569.955000px;}
.y1d{bottom:573.915000px;}
.yc5{bottom:582.915000px;}
.y52{bottom:583.635000px;}
.yed{bottom:586.155000px;}
.y13b{bottom:587.235000px;}
.y86{bottom:589.035000px;}
.y181{bottom:589.395000px;}
.y1c{bottom:593.715000px;}
.yc4{bottom:600.915000px;}
.y51{bottom:603.255000px;}
.y13a{bottom:607.035000px;}
.y85{bottom:608.835000px;}
.y180{bottom:609.195000px;}
.yec{bottom:609.915000px;}
.y1b{bottom:613.515000px;}
.ybd{bottom:618.915000px;}
.y139{bottom:627.015000px;}
.y84{bottom:628.635000px;}
.y17f{bottom:629.355000px;}
.yeb{bottom:630.255000px;}
.y50{bottom:632.415000px;}
.y1a{bottom:633.315000px;}
.yc0{bottom:636.915000px;}
.y1ad{bottom:644.835000px;}
.y138{bottom:646.815000px;}
.y83{bottom:648.615000px;}
.y17e{bottom:649.155000px;}
.yea{bottom:650.055000px;}
.y4f{bottom:652.215000px;}
.y19{bottom:653.115000px;}
.yb6{bottom:654.915000px;}
.y1ac{bottom:664.995000px;}
.y137{bottom:666.615000px;}
.y82{bottom:668.415000px;}
.y17d{bottom:668.955000px;}
.ye9{bottom:669.855000px;}
.y4e{bottom:672.015000px;}
.ybc{bottom:672.945000px;}
.y18{bottom:673.125000px;}
.y1ab{bottom:685.005000px;}
.y136{bottom:686.445000px;}
.y81{bottom:688.245000px;}
.y17c{bottom:688.965000px;}
.ye8{bottom:689.685000px;}
.ybb{bottom:690.945000px;}
.y4d{bottom:691.845000px;}
.y17{bottom:692.925000px;}
.y1aa{bottom:704.985000px;}
.y135{bottom:706.245000px;}
.y80{bottom:708.045000px;}
.y17b{bottom:708.765000px;}
.yba{bottom:708.945000px;}
.ye7{bottom:709.485000px;}
.y4c{bottom:711.825000px;}
.y16{bottom:712.725000px;}
.y1a9{bottom:724.965000px;}
.y134{bottom:726.225000px;}
.yaf{bottom:726.945000px;}
.y7f{bottom:727.845000px;}
.y17a{bottom:728.565000px;}
.ye6{bottom:729.465000px;}
.y4b{bottom:731.625000px;}
.y15{bottom:732.525000px;}
.y133{bottom:740.625000px;}
.yb4{bottom:744.945000px;}
.y7e{bottom:747.825000px;}
.y179{bottom:748.365000px;}
.ye5{bottom:749.265000px;}
.y4a{bottom:751.425000px;}
.y14{bottom:752.325000px;}
.y132{bottom:758.625000px;}
.yb3{bottom:762.765000px;}
.y1a8{bottom:764.925000px;}
.y7d{bottom:767.625000px;}
.y178{bottom:768.165000px;}
.ye4{bottom:769.065000px;}
.y49{bottom:771.225000px;}
.y13{bottom:772.305000px;}
.ya9{bottom:780.765000px;}
.y1a7{bottom:784.905000px;}
.y7c{bottom:787.425000px;}
.y177{bottom:788.145000px;}
.ye3{bottom:788.865000px;}
.y48{bottom:791.025000px;}
.y12{bottom:792.105000px;}
.y131{bottom:793.905000px;}
.yae{bottom:798.765000px;}
.y1a6{bottom:804.885000px;}
.y7b{bottom:807.225000px;}
.y176{bottom:807.945000px;}
.ye2{bottom:808.665000px;}
.y47{bottom:811.005000px;}
.y11{bottom:811.905000px;}
.yad{bottom:816.765000px;}
.y1a5{bottom:824.865000px;}
.y7a{bottom:827.025000px;}
.y175{bottom:827.745000px;}
.ye1{bottom:828.645000px;}
.y130{bottom:829.905000px;}
.y46{bottom:830.805000px;}
.y10{bottom:831.705000px;}
.yac{bottom:834.765000px;}
.y1a4{bottom:844.845000px;}
.y79{bottom:847.005000px;}
.y174{bottom:847.545000px;}
.y12f{bottom:847.905000px;}
.ye0{bottom:848.445000px;}
.y45{bottom:850.605000px;}
.yf{bottom:851.685000px;}
.ya2{bottom:852.765000px;}
.y1a3{bottom:864.825000px;}
.y78{bottom:866.445000px;}
.y173{bottom:866.985000px;}
.ydf{bottom:868.245000px;}
.y44{bottom:870.045000px;}
.ye{bottom:873.645000px;}
.ya5{bottom:876.525000px;}
.y12e{bottom:883.005000px;}
.y1a2{bottom:884.805000px;}
.y77{bottom:886.605000px;}
.y172{bottom:886.965000px;}
.yde{bottom:888.045000px;}
.ya0{bottom:894.525000px;}
.yd{bottom:898.665000px;}
.y43{bottom:899.205000px;}
.y12d{bottom:901.005000px;}
.y1a1{bottom:904.785000px;}
.y76{bottom:906.405000px;}
.y171{bottom:906.765000px;}
.ydd{bottom:907.845000px;}
.yc{bottom:918.510000px;}
.y12c{bottom:919.050000px;}
.y42{bottom:919.230000px;}
.y16e{bottom:921.570000px;}
.y1a0{bottom:924.810000px;}
.y75{bottom:925.890000px;}
.ydc{bottom:927.870000px;}
.y12b{bottom:937.050000px;}
.yb{bottom:938.490000px;}
.y41{bottom:938.670000px;}
.ydb{bottom:942.270000px;}
.y170{bottom:944.790000px;}
.y74{bottom:946.230000px;}
.ya{bottom:953.430000px;}
.y129{bottom:955.050000px;}
.yda{bottom:960.270000px;}
.y19f{bottom:964.770000px;}
.y73{bottom:966.030000px;}
.y40{bottom:967.830000px;}
.y16c{bottom:968.010000px;}
.y9{bottom:974.490000px;}
.yd9{bottom:978.270000px;}
.y19e{bottom:984.750000px;}
.y72{bottom:985.830000px;}
.y3f{bottom:987.630000px;}
.y128{bottom:990.330000px;}
.yd8{bottom:996.270000px;}
.y16d{bottom:997.350000px;}
.y8{bottom:997.890000px;}
.y19d{bottom:1004.730000px;}
.y71{bottom:1005.630000px;}
.y3e{bottom:1007.070000px;}
.y127{bottom:1008.330000px;}
.yd7{bottom:1014.270000px;}
.y166{bottom:1020.570000px;}
.y19c{bottom:1024.710000px;}
.y70{bottom:1025.430000px;}
.y123{bottom:1026.330000px;}
.y7{bottom:1029.750000px;}
.yd6{bottom:1032.270000px;}
.y3d{bottom:1036.410000px;}
.y19b{bottom:1044.690000px;}
.y6f{bottom:1045.410000px;}
.y167{bottom:1049.730000px;}
.yd5{bottom:1050.270000px;}
.y3c{bottom:1056.210000px;}
.y19a{bottom:1064.670000px;}
.y6e{bottom:1065.210000px;}
.yd4{bottom:1068.270000px;}
.y5{bottom:1068.630000px;}
.y161{bottom:1072.950000px;}
.y3b{bottom:1075.650000px;}
.y122{bottom:1084.650000px;}
.y6d{bottom:1085.010000px;}
.yd3{bottom:1086.270000px;}
.y4{bottom:1099.410000px;}
.y162{bottom:1102.290000px;}
.yd2{bottom:1104.270000px;}
.y199{bottom:1104.630000px;}
.y3a{bottom:1104.810000px;}
.yce{bottom:1122.270000px;}
.y39{bottom:1124.610000px;}
.y15d{bottom:1125.510000px;}
.y3{bottom:1130.370000px;}
.yd0{bottom:1140.270000px;}
.y38{bottom:1144.230000px;}
.y6c{bottom:1144.590000px;}
.y2{bottom:1161.180000px;}
.y37{bottom:1164.060000px;}
.y121{bottom:1164.420000px;}
.y198{bottom:1164.600000px;}
.y1{bottom:1192.140000px;}
.y36{bottom:1193.580000px;}
.h12{height:17.100000px;}
.h17{height:17.136000px;}
.he{height:17.280000px;}
.hc{height:17.316000px;}
.h25{height:22.500000px;}
.hf{height:23.040000px;}
.h27{height:28.440000px;}
.h26{height:28.620000px;}
.h23{height:33.660000px;}
.h20{height:33.840000px;}
.h19{height:34.380000px;}
.h1a{height:34.416000px;}
.h18{height:34.560000px;}
.h1d{height:34.596000px;}
.h14{height:35.100000px;}
.h16{height:35.136000px;}
.h1e{height:35.280000px;}
.h21{height:35.316000px;}
.h7{height:38.158594px;}
.hd{height:41.040000px;}
.h28{height:45.720000px;}
.h1c{height:51.239531px;}
.h22{height:51.660000px;}
.h1b{height:51.840000px;}
.h24{height:51.876000px;}
.ha{height:52.435898px;}
.h11{height:53.100000px;}
.h9{height:58.651172px;}
.h1f{height:59.038594px;}
.h8{height:59.614102px;}
.h5{height:60.226875px;}
.h29{height:61.423863px;}
.hb{height:62.211094px;}
.h3{height:65.010937px;}
.h6{height:66.757500px;}
.h13{height:71.136000px;}
.h10{height:71.280000px;}
.h2{height:72.562500px;}
.h4{height:96.508125px;}
.h15{height:125.100000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w22{width:31.140000px;}
.w14{width:41.436000px;}
.w6{width:72.036000px;}
.w5{width:72.180000px;}
.w20{width:72.216000px;}
.w1f{width:80.460000px;}
.w1c{width:84.240000px;}
.w16{width:84.456000px;}
.w1d{width:95.076000px;}
.w1a{width:103.536000px;}
.w19{width:106.596000px;}
.wa{width:112.176000px;}
.wd{width:134.496000px;}
.w3{width:144.936000px;}
.w13{width:146.376000px;}
.w1e{width:151.410000px;}
.w17{width:152.490000px;}
.w9{width:154.290000px;}
.we{width:155.520000px;}
.wb{width:157.170000px;}
.w11{width:159.330000px;}
.w4{width:186.510000px;}
.wc{width:205.050000px;}
.wf{width:220.755000px;}
.w12{width:247.170000px;}
.w21{width:264.855000px;}
.w8{width:270.075000px;}
.w1b{width:296.715000px;}
.w7{width:357.735000px;}
.w10{width:394.275000px;}
.w15{width:488.415000px;}
.w18{width:572.145000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:54.179987px;}
.x11{left:58.680000px;}
.x15{left:62.100000px;}
.x3{left:75.239987px;}
.x20{left:80.999987px;}
.x16{left:104.256000px;}
.x21{left:108.035987px;}
.xd{left:125.496000px;}
.x5{left:207.570000px;}
.x12{left:280.155000px;}
.x1f{left:320.295000px;}
.xe{left:331.275000px;}
.x1b{left:352.155000px;}
.x7{left:353.415000px;}
.xa{left:413.175000px;}
.x1c{left:437.115000px;}
.xf{left:466.485000px;}
.xc{left:526.065000px;}
.x14{left:528.045000px;}
.x1d{left:532.905000px;}
.x8{left:540.645000px;}
.x17{left:593.385000px;}
.x9{left:613.545000px;}
.x10{left:622.725000px;}
.x19{left:627.585000px;}
.x13{left:675.150000px;}
.x18{left:678.570000px;}
.xb{left:684.150000px;}
.x1a{left:734.910000px;}
.x1e{left:766.230000px;}
.x2{left:804.209987px;}
.x4{left:839.159987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-0.409067pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.185067pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.592000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.672000pt;}
.ls1{letter-spacing:1.344000pt;}
.lsb{letter-spacing:5.712640pt;}
.ls19{letter-spacing:10.192640pt;}
.ls2{letter-spacing:10.400000pt;}
.ls17{letter-spacing:20.432640pt;}
.lse{letter-spacing:23.632640pt;}
.ls3{letter-spacing:26.832640pt;}
.ls18{letter-spacing:37.072640pt;}
.lsf{letter-spacing:47.312640pt;}
.ws0{word-spacing:-14.448533pt;}
.ws7{word-spacing:-13.872000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.096533pt;}
.wsc{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.870933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-2475.931947pt;}
._9{margin-left:-1400.554880pt;}
._6{margin-left:-1247.027200pt;}
._8{margin-left:-883.525120pt;}
._d{margin-left:-611.648640pt;}
._18{margin-left:-588.320000pt;}
._e{margin-left:-586.625920pt;}
._19{margin-left:-573.689600pt;}
._a{margin-left:-507.912320pt;}
._15{margin-left:-478.826347pt;}
._1c{margin-left:-435.674880pt;}
._1b{margin-left:-422.506667pt;}
._16{margin-left:-380.545920pt;}
._f{margin-left:-191.360000pt;}
._13{margin-left:-154.880000pt;}
._14{margin-left:-141.944320pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-128.000000pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._2a{margin-left:-11.543680pt;}
._7{margin-left:-7.301120pt;}
._2d{margin-left:-5.593813pt;}
._4{margin-left:-4.507733pt;}
._1f{margin-left:-3.284480pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.376320pt;}
._23{width:3.452800pt;}
._24{width:4.385280pt;}
._25{width:5.393280pt;}
._27{width:6.325120pt;}
._26{width:7.821440pt;}
._22{width:8.822400pt;}
._20{width:10.092800pt;}
._21{width:11.130880pt;}
._28{width:12.217600pt;}
._29{width:14.245973pt;}
._33{width:15.617280pt;}
._31{width:16.626560pt;}
._2e{width:17.529600pt;}
._32{width:19.441920pt;}
._2c{width:23.205120pt;}
._1d{width:24.259200pt;}
._1e{width:25.256960pt;}
._34{width:27.144320pt;}
._30{width:28.206720pt;}
._2f{width:39.149440pt;}
._2b{width:115.589120pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:2.880000pt;}
.ya1{bottom:3.040000pt;}
.yb5{bottom:3.200000pt;}
.ya6{bottom:3.360000pt;}
.ybf{bottom:3.520000pt;}
.y147{bottom:3.680000pt;}
.yb2{bottom:4.000000pt;}
.y163{bottom:5.280000pt;}
.y168{bottom:5.440000pt;}
.y164{bottom:5.600000pt;}
.y169{bottom:5.760000pt;}
.ya7{bottom:5.920000pt;}
.ya4{bottom:6.240000pt;}
.y16a{bottom:8.000000pt;}
.y165{bottom:8.160000pt;}
.y16b{bottom:8.320000pt;}
.ya8{bottom:8.480000pt;}
.y15a{bottom:10.240000pt;}
.y14c{bottom:10.400000pt;}
.y15b{bottom:10.560000pt;}
.y125{bottom:10.720000pt;}
.y143{bottom:10.760000pt;}
.ycf{bottom:10.880000pt;}
.y12a{bottom:11.040000pt;}
.yc3{bottom:11.520000pt;}
.yb9{bottom:12.000000pt;}
.y10c{bottom:18.240000pt;}
.y112{bottom:18.280000pt;}
.y10a{bottom:18.400000pt;}
.y160{bottom:18.426667pt;}
.y144{bottom:18.440000pt;}
.ybe{bottom:18.560000pt;}
.y111{bottom:18.600000pt;}
.y109{bottom:18.720000pt;}
.y15f{bottom:18.746667pt;}
.yb1{bottom:18.880000pt;}
.y146{bottom:19.040000pt;}
.y153{bottom:19.066667pt;}
.yab{bottom:19.680000pt;}
.ya3{bottom:21.280000pt;}
.y16f{bottom:23.680000pt;}
.y124{bottom:26.080000pt;}
.yc2{bottom:26.560000pt;}
.yb8{bottom:26.906667pt;}
.y126{bottom:33.760000pt;}
.y158{bottom:33.920000pt;}
.y14a{bottom:34.080000pt;}
.y15e{bottom:34.106667pt;}
.yb0{bottom:34.240000pt;}
.yaa{bottom:34.720000pt;}
.yb7{bottom:42.266667pt;}
.yc7{bottom:50.880000pt;}
.y6{bottom:53.920000pt;}
.y35{bottom:76.800000pt;}
.y6b{bottom:77.920000pt;}
.y15c{bottom:78.080000pt;}
.y9f{bottom:82.720000pt;}
.y107{bottom:83.680000pt;}
.y120{bottom:87.040000pt;}
.y157{bottom:94.080000pt;}
.y34{bottom:94.560000pt;}
.y6a{bottom:95.680000pt;}
.y197{bottom:98.080000pt;}
.y9e{bottom:100.320000pt;}
.y106{bottom:101.280000pt;}
.y11f{bottom:104.640000pt;}
.y33{bottom:112.160000pt;}
.y69{bottom:113.280000pt;}
.y196{bottom:115.840000pt;}
.y9d{bottom:117.600000pt;}
.y105{bottom:118.880000pt;}
.y11e{bottom:122.400000pt;}
.y159{bottom:124.640000pt;}
.y32{bottom:129.760000pt;}
.y68{bottom:130.880000pt;}
.y195{bottom:133.600000pt;}
.y9c{bottom:135.360000pt;}
.y104{bottom:136.640000pt;}
.y11d{bottom:140.000000pt;}
.y155{bottom:140.640000pt;}
.y31{bottom:147.360000pt;}
.y67{bottom:148.480000pt;}
.y194{bottom:151.360000pt;}
.y9b{bottom:152.960000pt;}
.y103{bottom:154.240000pt;}
.y156{bottom:156.640000pt;}
.y11c{bottom:157.600000pt;}
.y30{bottom:164.960000pt;}
.y66{bottom:166.080000pt;}
.y193{bottom:169.120000pt;}
.y9a{bottom:170.560000pt;}
.y102{bottom:171.840000pt;}
.y152{bottom:172.640000pt;}
.y11b{bottom:175.200000pt;}
.y2f{bottom:182.586667pt;}
.y65{bottom:183.866667pt;}
.y192{bottom:186.906667pt;}
.y99{bottom:188.186667pt;}
.y154{bottom:188.666667pt;}
.y101{bottom:189.466667pt;}
.y11a{bottom:192.826667pt;}
.y2e{bottom:200.346667pt;}
.y64{bottom:201.466667pt;}
.y150{bottom:204.666667pt;}
.y119{bottom:205.626667pt;}
.y98{bottom:205.786667pt;}
.y100{bottom:207.066667pt;}
.y2d{bottom:217.946667pt;}
.y63{bottom:219.066667pt;}
.y151{bottom:220.666667pt;}
.y118{bottom:221.626667pt;}
.y191{bottom:222.426667pt;}
.y97{bottom:223.546667pt;}
.yff{bottom:224.826667pt;}
.y2c{bottom:235.546667pt;}
.y62{bottom:236.666667pt;}
.y117{bottom:237.626667pt;}
.y190{bottom:240.186667pt;}
.y96{bottom:241.466667pt;}
.yfe{bottom:242.426667pt;}
.y14f{bottom:252.666667pt;}
.y2b{bottom:253.146667pt;}
.y61{bottom:254.266667pt;}
.y18f{bottom:257.946667pt;}
.y95{bottom:259.066667pt;}
.yfd{bottom:260.026667pt;}
.y14d{bottom:268.666667pt;}
.y116{bottom:268.986667pt;}
.y2a{bottom:270.746667pt;}
.y60{bottom:272.026667pt;}
.y18e{bottom:275.706667pt;}
.y94{bottom:276.666667pt;}
.yfc{bottom:277.626667pt;}
.y14e{bottom:284.666667pt;}
.y29{bottom:288.506667pt;}
.y5f{bottom:289.626667pt;}
.y18d{bottom:293.466667pt;}
.y93{bottom:294.266667pt;}
.yfb{bottom:295.226667pt;}
.y115{bottom:300.346667pt;}
.y149{bottom:300.666667pt;}
.y28{bottom:306.106667pt;}
.y5e{bottom:307.226667pt;}
.y18c{bottom:311.226667pt;}
.y92{bottom:312.026667pt;}
.yfa{bottom:312.986667pt;}
.y27{bottom:323.706667pt;}
.y5d{bottom:324.826667pt;}
.y18b{bottom:328.986667pt;}
.y91{bottom:329.626667pt;}
.yf9{bottom:330.586667pt;}
.y14b{bottom:331.386667pt;}
.y114{bottom:331.706667pt;}
.y26{bottom:341.306667pt;}
.y5c{bottom:342.426667pt;}
.y18a{bottom:346.746667pt;}
.y90{bottom:347.226667pt;}
.y145{bottom:347.386667pt;}
.y113{bottom:347.706667pt;}
.yf8{bottom:348.186667pt;}
.y25{bottom:358.906667pt;}
.y5b{bottom:360.186667pt;}
.yf7{bottom:360.986667pt;}
.y148{bottom:363.386667pt;}
.y189{bottom:364.506667pt;}
.y8f{bottom:364.826667pt;}
.y24{bottom:376.666667pt;}
.yf6{bottom:376.986667pt;}
.y5a{bottom:377.786667pt;}
.y110{bottom:379.066667pt;}
.y142{bottom:379.386667pt;}
.y188{bottom:382.266667pt;}
.y8e{bottom:382.426667pt;}
.yc6{bottom:390.146667pt;}
.yf5{bottom:393.026667pt;}
.y23{bottom:394.306667pt;}
.y59{bottom:395.426667pt;}
.y187{bottom:400.066667pt;}
.y8d{bottom:400.226667pt;}
.ycd{bottom:406.146667pt;}
.yf4{bottom:409.026667pt;}
.y10f{bottom:410.466667pt;}
.y22{bottom:411.586667pt;}
.y58{bottom:413.026667pt;}
.y141{bottom:415.906667pt;}
.y8c{bottom:417.826667pt;}
.ycc{bottom:422.146667pt;}
.yf3{bottom:425.026667pt;}
.y10e{bottom:426.466667pt;}
.y21{bottom:429.186667pt;}
.y57{bottom:430.626667pt;}
.y140{bottom:433.506667pt;}
.y8b{bottom:435.426667pt;}
.y186{bottom:435.586667pt;}
.ycb{bottom:438.146667pt;}
.yf2{bottom:441.026667pt;}
.y10d{bottom:442.466667pt;}
.y56{bottom:448.066667pt;}
.y20{bottom:449.186667pt;}
.y13f{bottom:451.426667pt;}
.y8a{bottom:453.026667pt;}
.y185{bottom:453.346667pt;}
.yca{bottom:454.146667pt;}
.yf1{bottom:457.026667pt;}
.y10b{bottom:458.466667pt;}
.y55{bottom:465.666667pt;}
.y13e{bottom:469.186667pt;}
.yc9{bottom:470.146667pt;}
.y89{bottom:470.626667pt;}
.y184{bottom:471.106667pt;}
.yf0{bottom:473.026667pt;}
.y1f{bottom:474.786667pt;}
.y54{bottom:483.586667pt;}
.yc8{bottom:486.146667pt;}
.y13d{bottom:486.786667pt;}
.y88{bottom:488.386667pt;}
.y183{bottom:488.866667pt;}
.yef{bottom:489.026667pt;}
.y108{bottom:489.666667pt;}
.y1e{bottom:492.386667pt;}
.y53{bottom:501.186667pt;}
.yc1{bottom:502.146667pt;}
.y13c{bottom:504.386667pt;}
.yee{bottom:505.026667pt;}
.y87{bottom:505.986667pt;}
.y182{bottom:506.626667pt;}
.y1d{bottom:510.146667pt;}
.yc5{bottom:518.146667pt;}
.y52{bottom:518.786667pt;}
.yed{bottom:521.026667pt;}
.y13b{bottom:521.986667pt;}
.y86{bottom:523.586667pt;}
.y181{bottom:523.906667pt;}
.y1c{bottom:527.746667pt;}
.yc4{bottom:534.146667pt;}
.y51{bottom:536.226667pt;}
.y13a{bottom:539.586667pt;}
.y85{bottom:541.186667pt;}
.y180{bottom:541.506667pt;}
.yec{bottom:542.146667pt;}
.y1b{bottom:545.346667pt;}
.ybd{bottom:550.146667pt;}
.y139{bottom:557.346667pt;}
.y84{bottom:558.786667pt;}
.y17f{bottom:559.426667pt;}
.yeb{bottom:560.226667pt;}
.y50{bottom:562.146667pt;}
.y1a{bottom:562.946667pt;}
.yc0{bottom:566.146667pt;}
.y1ad{bottom:573.186667pt;}
.y138{bottom:574.946667pt;}
.y83{bottom:576.546667pt;}
.y17e{bottom:577.026667pt;}
.yea{bottom:577.826667pt;}
.y4f{bottom:579.746667pt;}
.y19{bottom:580.546667pt;}
.yb6{bottom:582.146667pt;}
.y1ac{bottom:591.106667pt;}
.y137{bottom:592.546667pt;}
.y82{bottom:594.146667pt;}
.y17d{bottom:594.626667pt;}
.ye9{bottom:595.426667pt;}
.y4e{bottom:597.346667pt;}
.ybc{bottom:598.173333pt;}
.y18{bottom:598.333333pt;}
.y1ab{bottom:608.893333pt;}
.y136{bottom:610.173333pt;}
.y81{bottom:611.773333pt;}
.y17c{bottom:612.413333pt;}
.ye8{bottom:613.053333pt;}
.ybb{bottom:614.173333pt;}
.y4d{bottom:614.973333pt;}
.y17{bottom:615.933333pt;}
.y1aa{bottom:626.653333pt;}
.y135{bottom:627.773333pt;}
.y80{bottom:629.373333pt;}
.y17b{bottom:630.013333pt;}
.yba{bottom:630.173333pt;}
.ye7{bottom:630.653333pt;}
.y4c{bottom:632.733333pt;}
.y16{bottom:633.533333pt;}
.y1a9{bottom:644.413333pt;}
.y134{bottom:645.533333pt;}
.yaf{bottom:646.173333pt;}
.y7f{bottom:646.973333pt;}
.y17a{bottom:647.613333pt;}
.ye6{bottom:648.413333pt;}
.y4b{bottom:650.333333pt;}
.y15{bottom:651.133333pt;}
.y133{bottom:658.333333pt;}
.yb4{bottom:662.173333pt;}
.y7e{bottom:664.733333pt;}
.y179{bottom:665.213333pt;}
.ye5{bottom:666.013333pt;}
.y4a{bottom:667.933333pt;}
.y14{bottom:668.733333pt;}
.y132{bottom:674.333333pt;}
.yb3{bottom:678.013333pt;}
.y1a8{bottom:679.933333pt;}
.y7d{bottom:682.333333pt;}
.y178{bottom:682.813333pt;}
.ye4{bottom:683.613333pt;}
.y49{bottom:685.533333pt;}
.y13{bottom:686.493333pt;}
.ya9{bottom:694.013333pt;}
.y1a7{bottom:697.693333pt;}
.y7c{bottom:699.933333pt;}
.y177{bottom:700.573333pt;}
.ye3{bottom:701.213333pt;}
.y48{bottom:703.133333pt;}
.y12{bottom:704.093333pt;}
.y131{bottom:705.693333pt;}
.yae{bottom:710.013333pt;}
.y1a6{bottom:715.453333pt;}
.y7b{bottom:717.533333pt;}
.y176{bottom:718.173333pt;}
.ye2{bottom:718.813333pt;}
.y47{bottom:720.893333pt;}
.y11{bottom:721.693333pt;}
.yad{bottom:726.013333pt;}
.y1a5{bottom:733.213333pt;}
.y7a{bottom:735.133333pt;}
.y175{bottom:735.773333pt;}
.ye1{bottom:736.573333pt;}
.y130{bottom:737.693333pt;}
.y46{bottom:738.493333pt;}
.y10{bottom:739.293333pt;}
.yac{bottom:742.013333pt;}
.y1a4{bottom:750.973333pt;}
.y79{bottom:752.893333pt;}
.y174{bottom:753.373333pt;}
.y12f{bottom:753.693333pt;}
.ye0{bottom:754.173333pt;}
.y45{bottom:756.093333pt;}
.yf{bottom:757.053333pt;}
.ya2{bottom:758.013333pt;}
.y1a3{bottom:768.733333pt;}
.y78{bottom:770.173333pt;}
.y173{bottom:770.653333pt;}
.ydf{bottom:771.773333pt;}
.y44{bottom:773.373333pt;}
.ye{bottom:776.573333pt;}
.ya5{bottom:779.133333pt;}
.y12e{bottom:784.893333pt;}
.y1a2{bottom:786.493333pt;}
.y77{bottom:788.093333pt;}
.y172{bottom:788.413333pt;}
.yde{bottom:789.373333pt;}
.ya0{bottom:795.133333pt;}
.yd{bottom:798.813333pt;}
.y43{bottom:799.293333pt;}
.y12d{bottom:800.893333pt;}
.y1a1{bottom:804.253333pt;}
.y76{bottom:805.693333pt;}
.y171{bottom:806.013333pt;}
.ydd{bottom:806.973333pt;}
.yc{bottom:816.453333pt;}
.y12c{bottom:816.933333pt;}
.y42{bottom:817.093333pt;}
.y16e{bottom:819.173333pt;}
.y1a0{bottom:822.053333pt;}
.y75{bottom:823.013333pt;}
.ydc{bottom:824.773333pt;}
.y12b{bottom:832.933333pt;}
.yb{bottom:834.213333pt;}
.y41{bottom:834.373333pt;}
.ydb{bottom:837.573333pt;}
.y170{bottom:839.813333pt;}
.y74{bottom:841.093333pt;}
.ya{bottom:847.493333pt;}
.y129{bottom:848.933333pt;}
.yda{bottom:853.573333pt;}
.y19f{bottom:857.573333pt;}
.y73{bottom:858.693333pt;}
.y40{bottom:860.293333pt;}
.y16c{bottom:860.453333pt;}
.y9{bottom:866.213333pt;}
.yd9{bottom:869.573333pt;}
.y19e{bottom:875.333333pt;}
.y72{bottom:876.293333pt;}
.y3f{bottom:877.893333pt;}
.y128{bottom:880.293333pt;}
.yd8{bottom:885.573333pt;}
.y16d{bottom:886.533333pt;}
.y8{bottom:887.013333pt;}
.y19d{bottom:893.093333pt;}
.y71{bottom:893.893333pt;}
.y3e{bottom:895.173333pt;}
.y127{bottom:896.293333pt;}
.yd7{bottom:901.573333pt;}
.y166{bottom:907.173333pt;}
.y19c{bottom:910.853333pt;}
.y70{bottom:911.493333pt;}
.y123{bottom:912.293333pt;}
.y7{bottom:915.333333pt;}
.yd6{bottom:917.573333pt;}
.y3d{bottom:921.253333pt;}
.y19b{bottom:928.613333pt;}
.y6f{bottom:929.253333pt;}
.y167{bottom:933.093333pt;}
.yd5{bottom:933.573333pt;}
.y3c{bottom:938.853333pt;}
.y19a{bottom:946.373333pt;}
.y6e{bottom:946.853333pt;}
.yd4{bottom:949.573333pt;}
.y5{bottom:949.893333pt;}
.y161{bottom:953.733333pt;}
.y3b{bottom:956.133333pt;}
.y122{bottom:964.133333pt;}
.y6d{bottom:964.453333pt;}
.yd3{bottom:965.573333pt;}
.y4{bottom:977.253333pt;}
.y162{bottom:979.813333pt;}
.yd2{bottom:981.573333pt;}
.y199{bottom:981.893333pt;}
.y3a{bottom:982.053333pt;}
.yce{bottom:997.573333pt;}
.y39{bottom:999.653333pt;}
.y15d{bottom:1000.453333pt;}
.y3{bottom:1004.773333pt;}
.yd0{bottom:1013.573333pt;}
.y38{bottom:1017.093333pt;}
.y6c{bottom:1017.413333pt;}
.y2{bottom:1032.160000pt;}
.y37{bottom:1034.720000pt;}
.y121{bottom:1035.040000pt;}
.y198{bottom:1035.200000pt;}
.y1{bottom:1059.680000pt;}
.y36{bottom:1060.960000pt;}
.h12{height:15.200000pt;}
.h17{height:15.232000pt;}
.he{height:15.360000pt;}
.hc{height:15.392000pt;}
.h25{height:20.000000pt;}
.hf{height:20.480000pt;}
.h27{height:25.280000pt;}
.h26{height:25.440000pt;}
.h23{height:29.920000pt;}
.h20{height:30.080000pt;}
.h19{height:30.560000pt;}
.h1a{height:30.592000pt;}
.h18{height:30.720000pt;}
.h1d{height:30.752000pt;}
.h14{height:31.200000pt;}
.h16{height:31.232000pt;}
.h1e{height:31.360000pt;}
.h21{height:31.392000pt;}
.h7{height:33.918750pt;}
.hd{height:36.480000pt;}
.h28{height:40.640000pt;}
.h1c{height:45.546250pt;}
.h22{height:45.920000pt;}
.h1b{height:46.080000pt;}
.h24{height:46.112000pt;}
.ha{height:46.609688pt;}
.h11{height:47.200000pt;}
.h9{height:52.134375pt;}
.h1f{height:52.478750pt;}
.h8{height:52.990313pt;}
.h5{height:53.535000pt;}
.h29{height:54.598989pt;}
.hb{height:55.298750pt;}
.h3{height:57.787500pt;}
.h6{height:59.340000pt;}
.h13{height:63.232000pt;}
.h10{height:63.360000pt;}
.h2{height:64.500000pt;}
.h4{height:85.785000pt;}
.h15{height:111.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w22{width:27.680000pt;}
.w14{width:36.832000pt;}
.w6{width:64.032000pt;}
.w5{width:64.160000pt;}
.w20{width:64.192000pt;}
.w1f{width:71.520000pt;}
.w1c{width:74.880000pt;}
.w16{width:75.072000pt;}
.w1d{width:84.512000pt;}
.w1a{width:92.032000pt;}
.w19{width:94.752000pt;}
.wa{width:99.712000pt;}
.wd{width:119.552000pt;}
.w3{width:128.832000pt;}
.w13{width:130.112000pt;}
.w1e{width:134.586667pt;}
.w17{width:135.546667pt;}
.w9{width:137.146667pt;}
.we{width:138.240000pt;}
.wb{width:139.706667pt;}
.w11{width:141.626667pt;}
.w4{width:165.786667pt;}
.wc{width:182.266667pt;}
.wf{width:196.226667pt;}
.w12{width:219.706667pt;}
.w21{width:235.426667pt;}
.w8{width:240.066667pt;}
.w1b{width:263.746667pt;}
.w7{width:317.986667pt;}
.w10{width:350.466667pt;}
.w15{width:434.146667pt;}
.w18{width:508.573333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:48.159988pt;}
.x11{left:52.160000pt;}
.x15{left:55.200000pt;}
.x3{left:66.879988pt;}
.x20{left:71.999988pt;}
.x16{left:92.672000pt;}
.x21{left:96.031988pt;}
.xd{left:111.552000pt;}
.x5{left:184.506667pt;}
.x12{left:249.026667pt;}
.x1f{left:284.706667pt;}
.xe{left:294.466667pt;}
.x1b{left:313.026667pt;}
.x7{left:314.146667pt;}
.xa{left:367.266667pt;}
.x1c{left:388.546667pt;}
.xf{left:414.653333pt;}
.xc{left:467.613333pt;}
.x14{left:469.373333pt;}
.x1d{left:473.693333pt;}
.x8{left:480.573333pt;}
.x17{left:527.453333pt;}
.x9{left:545.373333pt;}
.x10{left:553.533333pt;}
.x19{left:557.853333pt;}
.x13{left:600.133333pt;}
.x18{left:603.173333pt;}
.xb{left:608.133333pt;}
.x1a{left:653.253333pt;}
.x1e{left:681.093333pt;}
.x2{left:714.853322pt;}
.x4{left:745.919988pt;}
}




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