
    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_0d8b42110cb17a8360688fe1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4b6985af7b783f36ec3e1764.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9e9829e7a560cd3ae0b4d018.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_89713aac231f1a02aba13854.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0c9b4208969756d02c16be17.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_137523996e9b1e888da2e028.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1fe9c28b2f1483a51821b93f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_616f4e5da019cab9fc0e6c0c.woff2')format("woff");}.ff8{font-family:ff8;line-height:3.860840;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_a020d599c8ca1d119ac79701.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-68.400000px;}
.v9{vertical-align:-40.560000px;}
.vb{vertical-align:-14.160000px;}
.v5{vertical-align:-7.920000px;}
.v3{vertical-align:-2.160000px;}
.v8{vertical-align:-1.140000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.160000px;}
.v4{vertical-align:14.400000px;}
.va{vertical-align:19.320000px;}
.v7{vertical-align:20.880000px;}
.vc{vertical-align:25.920000px;}
.v6{vertical-align:39.900000px;}
.vd{vertical-align:47.100000px;}
.ve{vertical-align:49.260000px;}
.ls11{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.328800px;}
.ls7{letter-spacing:-0.277200px;}
.lsf{letter-spacing:-0.091200px;}
.ls6{letter-spacing:-0.058320px;}
.lsb{letter-spacing:-0.036000px;}
.lse{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012960px;}
.lsd{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.166200px;}
.ls9{letter-spacing:0.175800px;}
.ls5{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.298800px;}
.ls12{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.399600px;}
.ls2{letter-spacing:1732.794240px;}
.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;}
}
.ws1d{word-spacing:-16.613280px;}
.ws0{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.246600px;}
.ws4{word-spacing:-15.238800px;}
.ws18{word-spacing:-15.174000px;}
.ws1b{word-spacing:-15.012000px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.447440px;}
.ws8{word-spacing:-13.323000px;}
.ws6{word-spacing:-13.160160px;}
.ws9{word-spacing:-13.147200px;}
.ws5{word-spacing:-12.870000px;}
.ws7{word-spacing:-12.818400px;}
.ws15{word-spacing:-12.204000px;}
.wsa{word-spacing:-10.902240px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:16.237680px;}
.wsf{word-spacing:20.291760px;}
.wsd{word-spacing:21.997680px;}
.wsc{word-spacing:22.057680px;}
.wsb{word-spacing:22.177680px;}
.ws14{word-spacing:28.057680px;}
.ws13{word-spacing:33.217680px;}
.ws11{word-spacing:71.531760px;}
.ws10{word-spacing:77.171760px;}
.ws12{word-spacing:90.277680px;}
.ws1a{word-spacing:95.664000px;}
.ws19{word-spacing:125.790000px;}
.ws17{word-spacing:125.850000px;}
.ws1c{word-spacing:141.834000px;}
._e{margin-left:-5.856480px;}
._b{margin-left:-3.894720px;}
._7{margin-left:-2.830560px;}
._6{margin-left:-1.673280px;}
._1{width:1.075680px;}
._2{width:2.308800px;}
._a{width:3.316560px;}
._5{width:4.422240px;}
._4{width:5.677200px;}
._9{width:7.410240px;}
._8{width:8.784720px;}
._f{width:10.278720px;}
._15{width:11.712960px;}
._c{width:13.027680px;}
._10{width:16.559280px;}
._11{width:17.569440px;}
._12{width:19.063440px;}
._17{width:20.198880px;}
._13{width:21.334320px;}
._16{width:22.947840px;}
._14{width:24.023520px;}
._18{width:66.751920px;}
._3{width:430.020000px;}
._d{width:849.216000px;}
._0{width:1732.050240px;}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs3{font-size:48.384000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:54.144000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:3.240000px;}
.y13d{bottom:8.565000px;}
.y172{bottom:8.790000px;}
.yb6{bottom:11.880000px;}
.y3c{bottom:20.340000px;}
.yb5{bottom:20.520000px;}
.y13b{bottom:25.560000px;}
.y16f{bottom:43.170000px;}
.y133{bottom:57.705000px;}
.y167{bottom:59.250000px;}
.y11b{bottom:65.850000px;}
.y134{bottom:78.915000px;}
.y168{bottom:86.430000px;}
.yea{bottom:90.900000px;}
.y170{bottom:93.165000px;}
.yab{bottom:95.220000px;}
.y11c{bottom:95.610000px;}
.y77{bottom:97.740000px;}
.y135{bottom:100.110000px;}
.y163{bottom:100.770000px;}
.y13c{bottom:101.190000px;}
.y12f{bottom:101.595000px;}
.ye9{bottom:108.180000px;}
.yaa{bottom:112.860000px;}
.y169{bottom:113.610000px;}
.y171{bottom:114.585000px;}
.y76{bottom:115.020000px;}
.y128{bottom:115.590000px;}
.y123{bottom:116.280000px;}
.y11f{bottom:117.075000px;}
.y121{bottom:120.165000px;}
.y136{bottom:121.320000px;}
.y130{bottom:121.575000px;}
.y12c{bottom:121.830000px;}
.y11a{bottom:125.025000px;}
.ye8{bottom:125.460000px;}
.y132{bottom:129.240000px;}
.ya9{bottom:130.500000px;}
.y75{bottom:132.300000px;}
.y126{bottom:134.790000px;}
.y16a{bottom:140.835000px;}
.y137{bottom:142.530000px;}
.ye7{bottom:142.776000px;}
.y11d{bottom:143.490000px;}
.y129{bottom:145.410000px;}
.y122{bottom:145.725000px;}
.ya8{bottom:147.996000px;}
.y124{bottom:149.115000px;}
.y12e{bottom:149.475000px;}
.y74{bottom:149.616000px;}
.y118{bottom:151.770000px;}
.y120{bottom:153.870000px;}
.y12b{bottom:156.090000px;}
.y131{bottom:156.525000px;}
.y12d{bottom:159.375000px;}
.ye6{bottom:160.050000px;}
.y166{bottom:161.745000px;}
.y138{bottom:163.725000px;}
.y11e{bottom:165.210000px;}
.ya7{bottom:165.450000px;}
.y73{bottom:167.070000px;}
.y16b{bottom:168.015000px;}
.y164{bottom:168.735000px;}
.y117{bottom:169.050000px;}
.y127{bottom:171.795000px;}
.ye5{bottom:177.330000px;}
.y162{bottom:180.105000px;}
.y125{bottom:180.720000px;}
.ya6{bottom:182.730000px;}
.y72{bottom:184.530000px;}
.y139{bottom:184.935000px;}
.y116{bottom:186.330000px;}
.ye4{bottom:192.090000px;}
.y16c{bottom:195.195000px;}
.y12a{bottom:196.050000px;}
.ya5{bottom:200.010000px;}
.y71{bottom:202.170000px;}
.y115{bottom:203.430000px;}
.y13a{bottom:206.130000px;}
.ye3{bottom:210.090000px;}
.ya4{bottom:217.290000px;}
.y70{bottom:219.630000px;}
.y114{bottom:220.710000px;}
.y16d{bottom:222.405000px;}
.ye2{bottom:227.910000px;}
.y37{bottom:229.530000px;}
.y165{bottom:229.785000px;}
.ya3{bottom:234.390000px;}
.y6f{bottom:236.910000px;}
.y113{bottom:237.990000px;}
.ye1{bottom:245.910000px;}
.y36{bottom:246.630000px;}
.y16e{bottom:249.585000px;}
.ya2{bottom:251.670000px;}
.y6e{bottom:254.010000px;}
.y112{bottom:255.270000px;}
.y35{bottom:263.910000px;}
.ye0{bottom:267.150000px;}
.ya1{bottom:268.950000px;}
.y6d{bottom:271.290000px;}
.y111{bottom:272.550000px;}
.y34{bottom:281.190000px;}
.ydf{bottom:284.430000px;}
.ya0{bottom:286.230000px;}
.y6c{bottom:288.570000px;}
.y110{bottom:289.830000px;}
.y33{bottom:298.470000px;}
.yde{bottom:301.710000px;}
.y9f{bottom:303.510000px;}
.y6b{bottom:305.850000px;}
.y10f{bottom:306.930000px;}
.y32{bottom:315.750000px;}
.ydd{bottom:318.990000px;}
.y9e{bottom:320.790000px;}
.y6a{bottom:323.130000px;}
.y10e{bottom:324.210000px;}
.y160{bottom:329.250000px;}
.y31{bottom:332.850000px;}
.ydc{bottom:336.270000px;}
.y9d{bottom:337.890000px;}
.y69{bottom:340.230000px;}
.y10d{bottom:341.490000px;}
.y15f{bottom:346.530000px;}
.y30{bottom:350.130000px;}
.ydb{bottom:353.550000px;}
.y9c{bottom:355.170000px;}
.y68{bottom:357.510000px;}
.y10c{bottom:358.770000px;}
.y15e{bottom:363.810000px;}
.y2f{bottom:367.410000px;}
.yda{bottom:370.650000px;}
.y9b{bottom:372.450000px;}
.y67{bottom:374.790000px;}
.y10b{bottom:376.050000px;}
.y15d{bottom:381.090000px;}
.y2e{bottom:384.690000px;}
.yd9{bottom:387.975000px;}
.y9a{bottom:389.775000px;}
.y66{bottom:392.115000px;}
.y10a{bottom:393.375000px;}
.y15c{bottom:398.235000px;}
.y2d{bottom:402.015000px;}
.yd8{bottom:405.255000px;}
.y99{bottom:407.055000px;}
.y65{bottom:409.395000px;}
.y109{bottom:410.475000px;}
.y15b{bottom:415.515000px;}
.y2c{bottom:419.295000px;}
.yd7{bottom:422.535000px;}
.y98{bottom:424.335000px;}
.y64{bottom:426.675000px;}
.y108{bottom:427.755000px;}
.y15a{bottom:432.795000px;}
.y2b{bottom:436.395000px;}
.yd6{bottom:439.815000px;}
.y97{bottom:441.435000px;}
.y63{bottom:443.775000px;}
.y107{bottom:445.035000px;}
.y159{bottom:450.075000px;}
.y2a{bottom:453.675000px;}
.yd5{bottom:454.575000px;}
.y96{bottom:458.715000px;}
.y106{bottom:459.795000px;}
.y62{bottom:461.055000px;}
.y158{bottom:467.355000px;}
.y29{bottom:470.955000px;}
.yd4{bottom:472.575000px;}
.y95{bottom:475.995000px;}
.y105{bottom:477.795000px;}
.y61{bottom:478.335000px;}
.y157{bottom:484.635000px;}
.y28{bottom:488.235000px;}
.yd3{bottom:490.575000px;}
.y94{bottom:493.275000px;}
.y60{bottom:495.615000px;}
.y104{bottom:495.795000px;}
.y156{bottom:501.735000px;}
.y27{bottom:505.515000px;}
.yd2{bottom:508.575000px;}
.y93{bottom:510.555000px;}
.y5f{bottom:512.895000px;}
.y103{bottom:513.795000px;}
.y155{bottom:519.015000px;}
.y26{bottom:522.795000px;}
.yd1{bottom:526.575000px;}
.y92{bottom:527.655000px;}
.y5e{bottom:530.175000px;}
.y102{bottom:531.795000px;}
.y154{bottom:536.295000px;}
.y25{bottom:539.895000px;}
.yd0{bottom:544.575000px;}
.y91{bottom:544.935000px;}
.y5d{bottom:547.275000px;}
.y101{bottom:549.795000px;}
.y153{bottom:553.575000px;}
.y24{bottom:557.175000px;}
.y90{bottom:562.215000px;}
.ycf{bottom:562.575000px;}
.y5c{bottom:564.555000px;}
.y100{bottom:567.795000px;}
.y152{bottom:568.335000px;}
.y23{bottom:574.455000px;}
.y8f{bottom:579.495000px;}
.y5b{bottom:581.835000px;}
.yce{bottom:583.815000px;}
.y151{bottom:586.335000px;}
.yff{bottom:589.035000px;}
.y22{bottom:591.735000px;}
.y8e{bottom:596.775000px;}
.y5a{bottom:599.115000px;}
.ycd{bottom:600.915000px;}
.y150{bottom:604.335000px;}
.yfe{bottom:606.315000px;}
.y21{bottom:609.015000px;}
.y8d{bottom:614.055000px;}
.y59{bottom:616.395000px;}
.ycc{bottom:618.195000px;}
.y14f{bottom:622.335000px;}
.yfd{bottom:623.595000px;}
.y20{bottom:626.295000px;}
.y8c{bottom:631.335000px;}
.y58{bottom:633.675000px;}
.yca{bottom:635.475000px;}
.y14e{bottom:640.365000px;}
.yfc{bottom:640.725000px;}
.y1f{bottom:643.425000px;}
.y8b{bottom:649.005000px;}
.y57{bottom:650.805000px;}
.ycb{bottom:652.785000px;}
.yfb{bottom:658.005000px;}
.y14d{bottom:658.365000px;}
.y1e{bottom:660.705000px;}
.y8a{bottom:666.645000px;}
.y56{bottom:668.085000px;}
.yc9{bottom:670.065000px;}
.yfa{bottom:675.285000px;}
.y1d{bottom:677.985000px;}
.y14c{bottom:679.605000px;}
.y89{bottom:683.925000px;}
.y55{bottom:685.365000px;}
.yc8{bottom:687.345000px;}
.yf9{bottom:692.565000px;}
.y1c{bottom:695.265000px;}
.y14b{bottom:696.885000px;}
.y88{bottom:701.205000px;}
.y54{bottom:702.645000px;}
.yc7{bottom:704.445000px;}
.yf8{bottom:709.845000px;}
.y1b{bottom:712.545000px;}
.y14a{bottom:713.985000px;}
.y87{bottom:718.485000px;}
.y53{bottom:719.925000px;}
.yc6{bottom:721.725000px;}
.yf7{bottom:727.125000px;}
.y1a{bottom:729.645000px;}
.y149{bottom:731.265000px;}
.y86{bottom:735.765000px;}
.y52{bottom:737.025000px;}
.yc5{bottom:739.005000px;}
.yf6{bottom:744.225000px;}
.y19{bottom:746.925000px;}
.y148{bottom:748.545000px;}
.y85{bottom:753.045000px;}
.y51{bottom:754.305000px;}
.yc4{bottom:756.285000px;}
.yf5{bottom:761.505000px;}
.y18{bottom:764.205000px;}
.y147{bottom:765.825000px;}
.y84{bottom:770.325000px;}
.y50{bottom:771.585000px;}
.yc3{bottom:773.565000px;}
.yf4{bottom:778.785000px;}
.y17{bottom:781.485000px;}
.y146{bottom:783.105000px;}
.y83{bottom:787.425000px;}
.y4f{bottom:788.865000px;}
.yc2{bottom:790.845000px;}
.yf3{bottom:796.065000px;}
.y16{bottom:798.765000px;}
.y145{bottom:800.385000px;}
.y82{bottom:804.705000px;}
.y4e{bottom:806.145000px;}
.yc1{bottom:807.945000px;}
.yf2{bottom:813.345000px;}
.y15{bottom:816.045000px;}
.y144{bottom:817.485000px;}
.y81{bottom:821.985000px;}
.y4d{bottom:823.425000px;}
.yc0{bottom:825.225000px;}
.yf1{bottom:830.445000px;}
.y14{bottom:833.145000px;}
.y143{bottom:834.765000px;}
.y80{bottom:839.265000px;}
.y4c{bottom:840.525000px;}
.ybf{bottom:842.505000px;}
.yf0{bottom:847.725000px;}
.y13{bottom:850.425000px;}
.y142{bottom:852.045000px;}
.y7f{bottom:856.545000px;}
.y4b{bottom:857.805000px;}
.ybe{bottom:859.785000px;}
.yef{bottom:861.765000px;}
.y119{bottom:862.020000px;}
.y12{bottom:867.705000px;}
.y141{bottom:869.325000px;}
.y7e{bottom:873.825000px;}
.y4a{bottom:875.085000px;}
.ybd{bottom:877.065000px;}
.y11{bottom:884.985000px;}
.y140{bottom:886.605000px;}
.y7d{bottom:890.925000px;}
.y49{bottom:892.410000px;}
.ybc{bottom:894.390000px;}
.y10{bottom:902.310000px;}
.y13f{bottom:903.930000px;}
.y7c{bottom:908.250000px;}
.y48{bottom:909.690000px;}
.ybb{bottom:911.490000px;}
.y13e{bottom:917.790000px;}
.y161{bottom:918.000000px;}
.yf{bottom:919.590000px;}
.y7b{bottom:925.710000px;}
.y47{bottom:926.970000px;}
.yba{bottom:928.770000px;}
.ye{bottom:936.690000px;}
.y7a{bottom:943.350000px;}
.y46{bottom:944.070000px;}
.yb9{bottom:946.050000px;}
.yd{bottom:953.970000px;}
.y79{bottom:960.810000px;}
.y45{bottom:961.350000px;}
.yb8{bottom:963.330000px;}
.yc{bottom:971.250000px;}
.y78{bottom:978.450000px;}
.y44{bottom:978.630000px;}
.yb7{bottom:980.610000px;}
.yb{bottom:988.530000px;}
.y43{bottom:995.910000px;}
.ya{bottom:1005.810000px;}
.yb4{bottom:1012.470000px;}
.y42{bottom:1013.190000px;}
.y9{bottom:1023.090000px;}
.y41{bottom:1027.950000px;}
.y8{bottom:1040.190000px;}
.y40{bottom:1045.950000px;}
.yb3{bottom:1047.750000px;}
.y7{bottom:1057.470000px;}
.y3f{bottom:1063.950000px;}
.yb2{bottom:1065.750000px;}
.y6{bottom:1074.750000px;}
.y3e{bottom:1081.950000px;}
.yb1{bottom:1083.750000px;}
.yee{bottom:1088.070000px;}
.y5{bottom:1092.030000px;}
.y3d{bottom:1099.950000px;}
.yb0{bottom:1104.990000px;}
.yed{bottom:1105.350000px;}
.y3b{bottom:1117.950000px;}
.yaf{bottom:1122.270000px;}
.yec{bottom:1122.630000px;}
.y4{bottom:1126.410000px;}
.yad{bottom:1139.550000px;}
.yeb{bottom:1139.910000px;}
.y3{bottom:1143.690000px;}
.y39{bottom:1153.080000px;}
.yac{bottom:1156.860000px;}
.yae{bottom:1157.220000px;}
.y2{bottom:1163.880000px;}
.y38{bottom:1174.320000px;}
.y1{bottom:1195.560000px;}
.ha{height:17.100000px;}
.h7{height:17.280000px;}
.h8{height:34.416000px;}
.hd{height:34.560000px;}
.hf{height:47.980898px;}
.h12{height:48.124125px;}
.h9{height:53.573906px;}
.h17{height:53.709961px;}
.h18{height:53.853188px;}
.h1b{height:56.320312px;}
.h5{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.h1d{height:62.327813px;}
.h10{height:62.380898px;}
.h14{height:67.300898px;}
.h13{height:68.860898px;}
.h15{height:73.900898px;}
.h1c{height:75.340312px;}
.h3{height:81.949219px;}
.h11{height:87.880898px;}
.h16{height:95.080898px;}
.h1a{height:105.580313px;}
.hb{height:136.765195px;}
.hc{height:138.925195px;}
.he{height:222.840000px;}
.h19{height:270.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1b{width:61.596000px;}
.w16{width:71.280000px;}
.w18{width:71.460000px;}
.w1e{width:72.540000px;}
.w1f{width:76.680000px;}
.w1d{width:77.256000px;}
.w1c{width:77.400000px;}
.w17{width:81.576000px;}
.w13{width:92.016000px;}
.w12{width:100.080000px;}
.w14{width:102.240000px;}
.wf{width:124.416000px;}
.w10{width:133.560000px;}
.w8{width:143.640000px;}
.we{width:143.676000px;}
.w6{width:148.500000px;}
.wa{width:168.690000px;}
.wb{width:169.020000px;}
.wc{width:169.050000px;}
.w9{width:169.950000px;}
.w5{width:170.130000px;}
.w7{width:214.455000px;}
.wd{width:275.070000px;}
.w15{width:287.490000px;}
.w1a{width:309.630000px;}
.w3{width:319.350000px;}
.w4{width:358.815000px;}
.w11{width:382.395000px;}
.w19{width:665.820000px;}
.w20{width:669.240000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.x80{left:9.900000px;}
.x47{left:11.160000px;}
.x82{left:13.680000px;}
.x49{left:14.940000px;}
.x48{left:16.380000px;}
.x81{left:18.000000px;}
.x42{left:20.520000px;}
.x46{left:21.600000px;}
.x7d{left:23.580000px;}
.x44{left:25.740000px;}
.x5e{left:28.332000px;}
.x30{left:30.420000px;}
.x3a{left:32.805000px;}
.x36{left:34.920000px;}
.x39{left:36.000000px;}
.x3b{left:37.980000px;}
.x1d{left:43.560000px;}
.x1b{left:46.080000px;}
.x20{left:47.340000px;}
.x1e{left:49.860000px;}
.x32{left:53.640000px;}
.x5f{left:56.370000px;}
.x8c{left:57.810000px;}
.x21{left:59.394000px;}
.x33{left:62.490000px;}
.x2b{left:63.720000px;}
.x8b{left:65.340000px;}
.x2c{left:66.780000px;}
.x29{left:69.300000px;}
.x2d{left:70.740000px;}
.x1f{left:71.820000px;}
.x60{left:74.160000px;}
.x8a{left:80.355000px;}
.x22{left:81.570000px;}
.x61{left:91.980000px;}
.x4c{left:104.370000px;}
.x1{left:106.415987px;}
.x4b{left:109.470000px;}
.x85{left:111.780000px;}
.x4a{left:113.400000px;}
.x86{left:117.000000px;}
.x8d{left:119.055000px;}
.x16{left:127.655987px;}
.x4d{left:132.120000px;}
.x12{left:136.115987px;}
.x62{left:145.365000px;}
.x18{left:152.130000px;}
.x23{left:160.409987px;}
.x63{left:163.185000px;}
.x4e{left:167.685000px;}
.x64{left:180.975000px;}
.x4f{left:186.915000px;}
.x28{left:191.729987px;}
.x65{left:198.750000px;}
.x50{left:213.270000px;}
.x4{left:217.469987px;}
.x51{left:222.510000px;}
.x66{left:234.360000px;}
.x52{left:245.310000px;}
.x84{left:248.429987px;}
.x3f{left:252.039000px;}
.x87{left:255.390000px;}
.x67{left:269.970000px;}
.x7b{left:274.179000px;}
.x1a{left:277.995000px;}
.x83{left:285.914987px;}
.x68{left:287.790000px;}
.x53{left:290.850000px;}
.x7a{left:298.514987px;}
.x2{left:302.474987px;}
.x69{left:305.565000px;}
.x54{left:311.505000px;}
.x55{left:322.200000px;}
.x6a{left:323.355000px;}
.x78{left:329.325000px;}
.x8e{left:337.035000px;}
.x6b{left:341.175000px;}
.x34{left:346.929000px;}
.x6c{left:358.950000px;}
.x6d{left:376.770000px;}
.x2e{left:382.935000px;}
.x88{left:393.765000px;}
.x40{left:395.355000px;}
.x56{left:396.975000px;}
.x6e{left:412.350000px;}
.x57{left:414.750000px;}
.x7c{left:417.495000px;}
.x17{left:427.215000px;}
.x6f{left:430.170000px;}
.x58{left:442.515000px;}
.x15{left:446.504987px;}
.x70{left:447.945000px;}
.x13{left:457.304987px;}
.x25{left:460.004987px;}
.x3{left:461.444987px;}
.x71{left:465.765000px;}
.x3d{left:478.904987px;}
.x27{left:483.404987px;}
.x14{left:487.004987px;}
.x41{left:488.085000px;}
.x35{left:490.245000px;}
.x3c{left:500.144987px;}
.x72{left:501.375000px;}
.x24{left:507.704987px;}
.x59{left:515.160000px;}
.x73{left:519.150000px;}
.x2f{left:527.325000px;}
.x8{left:531.284987px;}
.x74{left:536.940000px;}
.x10{left:537.944987px;}
.xb{left:540.104987px;}
.xe{left:548.024987px;}
.x75{left:554.760000px;}
.x7e{left:557.925000px;}
.x43{left:560.265000px;}
.x7{left:565.844987px;}
.x26{left:568.004987px;}
.xc{left:573.404987px;}
.xf{left:576.284987px;}
.x37{left:591.045000px;}
.x5a{left:592.770000px;}
.x89{left:601.350000px;}
.x5c{left:605.550000px;}
.x5b{left:607.680000px;}
.x2a{left:616.965000px;}
.x76{left:625.965000px;}
.xa{left:629.609987px;}
.x6{left:635.549987px;}
.x5d{left:637.665000px;}
.x1c{left:642.390000px;}
.x77{left:643.755000px;}
.x5{left:649.589987px;}
.x31{left:652.470000px;}
.xd{left:661.289987px;}
.x9{left:671.369987px;}
.x38{left:683.790000px;}
.x7f{left:709.350000px;}
.x45{left:714.750000px;}
.x3e{left:779.549987px;}
.x79{left:781.169987px;}
.x11{left:786.749987px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v9{vertical-align:-36.053333pt;}
.vb{vertical-align:-12.586667pt;}
.v5{vertical-align:-7.040000pt;}
.v3{vertical-align:-1.920000pt;}
.v8{vertical-align:-1.013333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.920000pt;}
.v4{vertical-align:12.800000pt;}
.va{vertical-align:17.173333pt;}
.v7{vertical-align:18.560000pt;}
.vc{vertical-align:23.040000pt;}
.v6{vertical-align:35.466667pt;}
.vd{vertical-align:41.866667pt;}
.ve{vertical-align:43.786667pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.292267pt;}
.ls7{letter-spacing:-0.246400pt;}
.lsf{letter-spacing:-0.081067pt;}
.ls6{letter-spacing:-0.051840pt;}
.lsb{letter-spacing:-0.032000pt;}
.lse{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.011520pt;}
.lsd{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.147733pt;}
.ls9{letter-spacing:0.156267pt;}
.ls5{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.265600pt;}
.ls12{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.355200pt;}
.ls2{letter-spacing:1540.261547pt;}
.ws1d{word-spacing:-14.767360pt;}
.ws0{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.552533pt;}
.ws4{word-spacing:-13.545600pt;}
.ws18{word-spacing:-13.488000pt;}
.ws1b{word-spacing:-13.344000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:-11.953280pt;}
.ws8{word-spacing:-11.842667pt;}
.ws6{word-spacing:-11.697920pt;}
.ws9{word-spacing:-11.686400pt;}
.ws5{word-spacing:-11.440000pt;}
.ws7{word-spacing:-11.394133pt;}
.ws15{word-spacing:-10.848000pt;}
.wsa{word-spacing:-9.690880pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:14.433493pt;}
.wsf{word-spacing:18.037120pt;}
.wsd{word-spacing:19.553493pt;}
.wsc{word-spacing:19.606827pt;}
.wsb{word-spacing:19.713493pt;}
.ws14{word-spacing:24.940160pt;}
.ws13{word-spacing:29.526827pt;}
.ws11{word-spacing:63.583787pt;}
.ws10{word-spacing:68.597120pt;}
.ws12{word-spacing:80.246827pt;}
.ws1a{word-spacing:85.034667pt;}
.ws19{word-spacing:111.813333pt;}
.ws17{word-spacing:111.866667pt;}
.ws1c{word-spacing:126.074667pt;}
._e{margin-left:-5.205760pt;}
._b{margin-left:-3.461973pt;}
._7{margin-left:-2.516053pt;}
._6{margin-left:-1.487360pt;}
._1{width:0.956160pt;}
._2{width:2.052267pt;}
._a{width:2.948053pt;}
._5{width:3.930880pt;}
._4{width:5.046400pt;}
._9{width:6.586880pt;}
._8{width:7.808640pt;}
._f{width:9.136640pt;}
._15{width:10.411520pt;}
._c{width:11.580160pt;}
._10{width:14.719360pt;}
._11{width:15.617280pt;}
._12{width:16.945280pt;}
._17{width:17.954560pt;}
._13{width:18.963840pt;}
._16{width:20.398080pt;}
._14{width:21.354240pt;}
._18{width:59.335040pt;}
._3{width:382.240000pt;}
._d{width:754.858667pt;}
._0{width:1539.600213pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:43.008000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:48.128000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:2.880000pt;}
.y13d{bottom:7.613333pt;}
.y172{bottom:7.813333pt;}
.yb6{bottom:10.560000pt;}
.y3c{bottom:18.080000pt;}
.yb5{bottom:18.240000pt;}
.y13b{bottom:22.720000pt;}
.y16f{bottom:38.373333pt;}
.y133{bottom:51.293333pt;}
.y167{bottom:52.666667pt;}
.y11b{bottom:58.533333pt;}
.y134{bottom:70.146667pt;}
.y168{bottom:76.826667pt;}
.yea{bottom:80.800000pt;}
.y170{bottom:82.813333pt;}
.yab{bottom:84.640000pt;}
.y11c{bottom:84.986667pt;}
.y77{bottom:86.880000pt;}
.y135{bottom:88.986667pt;}
.y163{bottom:89.573333pt;}
.y13c{bottom:89.946667pt;}
.y12f{bottom:90.306667pt;}
.ye9{bottom:96.160000pt;}
.yaa{bottom:100.320000pt;}
.y169{bottom:100.986667pt;}
.y171{bottom:101.853333pt;}
.y76{bottom:102.240000pt;}
.y128{bottom:102.746667pt;}
.y123{bottom:103.360000pt;}
.y11f{bottom:104.066667pt;}
.y121{bottom:106.813333pt;}
.y136{bottom:107.840000pt;}
.y130{bottom:108.066667pt;}
.y12c{bottom:108.293333pt;}
.y11a{bottom:111.133333pt;}
.ye8{bottom:111.520000pt;}
.y132{bottom:114.880000pt;}
.ya9{bottom:116.000000pt;}
.y75{bottom:117.600000pt;}
.y126{bottom:119.813333pt;}
.y16a{bottom:125.186667pt;}
.y137{bottom:126.693333pt;}
.ye7{bottom:126.912000pt;}
.y11d{bottom:127.546667pt;}
.y129{bottom:129.253333pt;}
.y122{bottom:129.533333pt;}
.ya8{bottom:131.552000pt;}
.y124{bottom:132.546667pt;}
.y12e{bottom:132.866667pt;}
.y74{bottom:132.992000pt;}
.y118{bottom:134.906667pt;}
.y120{bottom:136.773333pt;}
.y12b{bottom:138.746667pt;}
.y131{bottom:139.133333pt;}
.y12d{bottom:141.666667pt;}
.ye6{bottom:142.266667pt;}
.y166{bottom:143.773333pt;}
.y138{bottom:145.533333pt;}
.y11e{bottom:146.853333pt;}
.ya7{bottom:147.066667pt;}
.y73{bottom:148.506667pt;}
.y16b{bottom:149.346667pt;}
.y164{bottom:149.986667pt;}
.y117{bottom:150.266667pt;}
.y127{bottom:152.706667pt;}
.ye5{bottom:157.626667pt;}
.y162{bottom:160.093333pt;}
.y125{bottom:160.640000pt;}
.ya6{bottom:162.426667pt;}
.y72{bottom:164.026667pt;}
.y139{bottom:164.386667pt;}
.y116{bottom:165.626667pt;}
.ye4{bottom:170.746667pt;}
.y16c{bottom:173.506667pt;}
.y12a{bottom:174.266667pt;}
.ya5{bottom:177.786667pt;}
.y71{bottom:179.706667pt;}
.y115{bottom:180.826667pt;}
.y13a{bottom:183.226667pt;}
.ye3{bottom:186.746667pt;}
.ya4{bottom:193.146667pt;}
.y70{bottom:195.226667pt;}
.y114{bottom:196.186667pt;}
.y16d{bottom:197.693333pt;}
.ye2{bottom:202.586667pt;}
.y37{bottom:204.026667pt;}
.y165{bottom:204.253333pt;}
.ya3{bottom:208.346667pt;}
.y6f{bottom:210.586667pt;}
.y113{bottom:211.546667pt;}
.ye1{bottom:218.586667pt;}
.y36{bottom:219.226667pt;}
.y16e{bottom:221.853333pt;}
.ya2{bottom:223.706667pt;}
.y6e{bottom:225.786667pt;}
.y112{bottom:226.906667pt;}
.y35{bottom:234.586667pt;}
.ye0{bottom:237.466667pt;}
.ya1{bottom:239.066667pt;}
.y6d{bottom:241.146667pt;}
.y111{bottom:242.266667pt;}
.y34{bottom:249.946667pt;}
.ydf{bottom:252.826667pt;}
.ya0{bottom:254.426667pt;}
.y6c{bottom:256.506667pt;}
.y110{bottom:257.626667pt;}
.y33{bottom:265.306667pt;}
.yde{bottom:268.186667pt;}
.y9f{bottom:269.786667pt;}
.y6b{bottom:271.866667pt;}
.y10f{bottom:272.826667pt;}
.y32{bottom:280.666667pt;}
.ydd{bottom:283.546667pt;}
.y9e{bottom:285.146667pt;}
.y6a{bottom:287.226667pt;}
.y10e{bottom:288.186667pt;}
.y160{bottom:292.666667pt;}
.y31{bottom:295.866667pt;}
.ydc{bottom:298.906667pt;}
.y9d{bottom:300.346667pt;}
.y69{bottom:302.426667pt;}
.y10d{bottom:303.546667pt;}
.y15f{bottom:308.026667pt;}
.y30{bottom:311.226667pt;}
.ydb{bottom:314.266667pt;}
.y9c{bottom:315.706667pt;}
.y68{bottom:317.786667pt;}
.y10c{bottom:318.906667pt;}
.y15e{bottom:323.386667pt;}
.y2f{bottom:326.586667pt;}
.yda{bottom:329.466667pt;}
.y9b{bottom:331.066667pt;}
.y67{bottom:333.146667pt;}
.y10b{bottom:334.266667pt;}
.y15d{bottom:338.746667pt;}
.y2e{bottom:341.946667pt;}
.yd9{bottom:344.866667pt;}
.y9a{bottom:346.466667pt;}
.y66{bottom:348.546667pt;}
.y10a{bottom:349.666667pt;}
.y15c{bottom:353.986667pt;}
.y2d{bottom:357.346667pt;}
.yd8{bottom:360.226667pt;}
.y99{bottom:361.826667pt;}
.y65{bottom:363.906667pt;}
.y109{bottom:364.866667pt;}
.y15b{bottom:369.346667pt;}
.y2c{bottom:372.706667pt;}
.yd7{bottom:375.586667pt;}
.y98{bottom:377.186667pt;}
.y64{bottom:379.266667pt;}
.y108{bottom:380.226667pt;}
.y15a{bottom:384.706667pt;}
.y2b{bottom:387.906667pt;}
.yd6{bottom:390.946667pt;}
.y97{bottom:392.386667pt;}
.y63{bottom:394.466667pt;}
.y107{bottom:395.586667pt;}
.y159{bottom:400.066667pt;}
.y2a{bottom:403.266667pt;}
.yd5{bottom:404.066667pt;}
.y96{bottom:407.746667pt;}
.y106{bottom:408.706667pt;}
.y62{bottom:409.826667pt;}
.y158{bottom:415.426667pt;}
.y29{bottom:418.626667pt;}
.yd4{bottom:420.066667pt;}
.y95{bottom:423.106667pt;}
.y105{bottom:424.706667pt;}
.y61{bottom:425.186667pt;}
.y157{bottom:430.786667pt;}
.y28{bottom:433.986667pt;}
.yd3{bottom:436.066667pt;}
.y94{bottom:438.466667pt;}
.y60{bottom:440.546667pt;}
.y104{bottom:440.706667pt;}
.y156{bottom:445.986667pt;}
.y27{bottom:449.346667pt;}
.yd2{bottom:452.066667pt;}
.y93{bottom:453.826667pt;}
.y5f{bottom:455.906667pt;}
.y103{bottom:456.706667pt;}
.y155{bottom:461.346667pt;}
.y26{bottom:464.706667pt;}
.yd1{bottom:468.066667pt;}
.y92{bottom:469.026667pt;}
.y5e{bottom:471.266667pt;}
.y102{bottom:472.706667pt;}
.y154{bottom:476.706667pt;}
.y25{bottom:479.906667pt;}
.yd0{bottom:484.066667pt;}
.y91{bottom:484.386667pt;}
.y5d{bottom:486.466667pt;}
.y101{bottom:488.706667pt;}
.y153{bottom:492.066667pt;}
.y24{bottom:495.266667pt;}
.y90{bottom:499.746667pt;}
.ycf{bottom:500.066667pt;}
.y5c{bottom:501.826667pt;}
.y100{bottom:504.706667pt;}
.y152{bottom:505.186667pt;}
.y23{bottom:510.626667pt;}
.y8f{bottom:515.106667pt;}
.y5b{bottom:517.186667pt;}
.yce{bottom:518.946667pt;}
.y151{bottom:521.186667pt;}
.yff{bottom:523.586667pt;}
.y22{bottom:525.986667pt;}
.y8e{bottom:530.466667pt;}
.y5a{bottom:532.546667pt;}
.ycd{bottom:534.146667pt;}
.y150{bottom:537.186667pt;}
.yfe{bottom:538.946667pt;}
.y21{bottom:541.346667pt;}
.y8d{bottom:545.826667pt;}
.y59{bottom:547.906667pt;}
.ycc{bottom:549.506667pt;}
.y14f{bottom:553.186667pt;}
.yfd{bottom:554.306667pt;}
.y20{bottom:556.706667pt;}
.y8c{bottom:561.186667pt;}
.y58{bottom:563.266667pt;}
.yca{bottom:564.866667pt;}
.y14e{bottom:569.213333pt;}
.yfc{bottom:569.533333pt;}
.y1f{bottom:571.933333pt;}
.y8b{bottom:576.893333pt;}
.y57{bottom:578.493333pt;}
.ycb{bottom:580.253333pt;}
.yfb{bottom:584.893333pt;}
.y14d{bottom:585.213333pt;}
.y1e{bottom:587.293333pt;}
.y8a{bottom:592.573333pt;}
.y56{bottom:593.853333pt;}
.yc9{bottom:595.613333pt;}
.yfa{bottom:600.253333pt;}
.y1d{bottom:602.653333pt;}
.y14c{bottom:604.093333pt;}
.y89{bottom:607.933333pt;}
.y55{bottom:609.213333pt;}
.yc8{bottom:610.973333pt;}
.yf9{bottom:615.613333pt;}
.y1c{bottom:618.013333pt;}
.y14b{bottom:619.453333pt;}
.y88{bottom:623.293333pt;}
.y54{bottom:624.573333pt;}
.yc7{bottom:626.173333pt;}
.yf8{bottom:630.973333pt;}
.y1b{bottom:633.373333pt;}
.y14a{bottom:634.653333pt;}
.y87{bottom:638.653333pt;}
.y53{bottom:639.933333pt;}
.yc6{bottom:641.533333pt;}
.yf7{bottom:646.333333pt;}
.y1a{bottom:648.573333pt;}
.y149{bottom:650.013333pt;}
.y86{bottom:654.013333pt;}
.y52{bottom:655.133333pt;}
.yc5{bottom:656.893333pt;}
.yf6{bottom:661.533333pt;}
.y19{bottom:663.933333pt;}
.y148{bottom:665.373333pt;}
.y85{bottom:669.373333pt;}
.y51{bottom:670.493333pt;}
.yc4{bottom:672.253333pt;}
.yf5{bottom:676.893333pt;}
.y18{bottom:679.293333pt;}
.y147{bottom:680.733333pt;}
.y84{bottom:684.733333pt;}
.y50{bottom:685.853333pt;}
.yc3{bottom:687.613333pt;}
.yf4{bottom:692.253333pt;}
.y17{bottom:694.653333pt;}
.y146{bottom:696.093333pt;}
.y83{bottom:699.933333pt;}
.y4f{bottom:701.213333pt;}
.yc2{bottom:702.973333pt;}
.yf3{bottom:707.613333pt;}
.y16{bottom:710.013333pt;}
.y145{bottom:711.453333pt;}
.y82{bottom:715.293333pt;}
.y4e{bottom:716.573333pt;}
.yc1{bottom:718.173333pt;}
.yf2{bottom:722.973333pt;}
.y15{bottom:725.373333pt;}
.y144{bottom:726.653333pt;}
.y81{bottom:730.653333pt;}
.y4d{bottom:731.933333pt;}
.yc0{bottom:733.533333pt;}
.yf1{bottom:738.173333pt;}
.y14{bottom:740.573333pt;}
.y143{bottom:742.013333pt;}
.y80{bottom:746.013333pt;}
.y4c{bottom:747.133333pt;}
.ybf{bottom:748.893333pt;}
.yf0{bottom:753.533333pt;}
.y13{bottom:755.933333pt;}
.y142{bottom:757.373333pt;}
.y7f{bottom:761.373333pt;}
.y4b{bottom:762.493333pt;}
.ybe{bottom:764.253333pt;}
.yef{bottom:766.013333pt;}
.y119{bottom:766.240000pt;}
.y12{bottom:771.293333pt;}
.y141{bottom:772.733333pt;}
.y7e{bottom:776.733333pt;}
.y4a{bottom:777.853333pt;}
.ybd{bottom:779.613333pt;}
.y11{bottom:786.653333pt;}
.y140{bottom:788.093333pt;}
.y7d{bottom:791.933333pt;}
.y49{bottom:793.253333pt;}
.ybc{bottom:795.013333pt;}
.y10{bottom:802.053333pt;}
.y13f{bottom:803.493333pt;}
.y7c{bottom:807.333333pt;}
.y48{bottom:808.613333pt;}
.ybb{bottom:810.213333pt;}
.y13e{bottom:815.813333pt;}
.y161{bottom:816.000000pt;}
.yf{bottom:817.413333pt;}
.y7b{bottom:822.853333pt;}
.y47{bottom:823.973333pt;}
.yba{bottom:825.573333pt;}
.ye{bottom:832.613333pt;}
.y7a{bottom:838.533333pt;}
.y46{bottom:839.173333pt;}
.yb9{bottom:840.933333pt;}
.yd{bottom:847.973333pt;}
.y79{bottom:854.053333pt;}
.y45{bottom:854.533333pt;}
.yb8{bottom:856.293333pt;}
.yc{bottom:863.333333pt;}
.y78{bottom:869.733333pt;}
.y44{bottom:869.893333pt;}
.yb7{bottom:871.653333pt;}
.yb{bottom:878.693333pt;}
.y43{bottom:885.253333pt;}
.ya{bottom:894.053333pt;}
.yb4{bottom:899.973333pt;}
.y42{bottom:900.613333pt;}
.y9{bottom:909.413333pt;}
.y41{bottom:913.733333pt;}
.y8{bottom:924.613333pt;}
.y40{bottom:929.733333pt;}
.yb3{bottom:931.333333pt;}
.y7{bottom:939.973333pt;}
.y3f{bottom:945.733333pt;}
.yb2{bottom:947.333333pt;}
.y6{bottom:955.333333pt;}
.y3e{bottom:961.733333pt;}
.yb1{bottom:963.333333pt;}
.yee{bottom:967.173333pt;}
.y5{bottom:970.693333pt;}
.y3d{bottom:977.733333pt;}
.yb0{bottom:982.213333pt;}
.yed{bottom:982.533333pt;}
.y3b{bottom:993.733333pt;}
.yaf{bottom:997.573333pt;}
.yec{bottom:997.893333pt;}
.y4{bottom:1001.253333pt;}
.yad{bottom:1012.933333pt;}
.yeb{bottom:1013.253333pt;}
.y3{bottom:1016.613333pt;}
.y39{bottom:1024.960000pt;}
.yac{bottom:1028.320000pt;}
.yae{bottom:1028.640000pt;}
.y2{bottom:1034.560000pt;}
.y38{bottom:1043.840000pt;}
.y1{bottom:1062.720000pt;}
.ha{height:15.200000pt;}
.h7{height:15.360000pt;}
.h8{height:30.592000pt;}
.hd{height:30.720000pt;}
.hf{height:42.649687pt;}
.h12{height:42.777000pt;}
.h9{height:47.621250pt;}
.h17{height:47.742188pt;}
.h18{height:47.869500pt;}
.h1b{height:50.062500pt;}
.h5{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.h1d{height:55.402500pt;}
.h10{height:55.449687pt;}
.h14{height:59.823021pt;}
.h13{height:61.209688pt;}
.h15{height:65.689688pt;}
.h1c{height:66.969167pt;}
.h3{height:72.843750pt;}
.h11{height:78.116354pt;}
.h16{height:84.516354pt;}
.h1a{height:93.849167pt;}
.hb{height:121.569062pt;}
.hc{height:123.489062pt;}
.he{height:198.080000pt;}
.h19{height:240.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1b{width:54.752000pt;}
.w16{width:63.360000pt;}
.w18{width:63.520000pt;}
.w1e{width:64.480000pt;}
.w1f{width:68.160000pt;}
.w1d{width:68.672000pt;}
.w1c{width:68.800000pt;}
.w17{width:72.512000pt;}
.w13{width:81.792000pt;}
.w12{width:88.960000pt;}
.w14{width:90.880000pt;}
.wf{width:110.592000pt;}
.w10{width:118.720000pt;}
.w8{width:127.680000pt;}
.we{width:127.712000pt;}
.w6{width:132.000000pt;}
.wa{width:149.946667pt;}
.wb{width:150.240000pt;}
.wc{width:150.266667pt;}
.w9{width:151.066667pt;}
.w5{width:151.226667pt;}
.w7{width:190.626667pt;}
.wd{width:244.506667pt;}
.w15{width:255.546667pt;}
.w1a{width:275.226667pt;}
.w3{width:283.866667pt;}
.w4{width:318.946667pt;}
.w11{width:339.906667pt;}
.w19{width:591.840000pt;}
.w20{width:594.880000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.x80{left:8.800000pt;}
.x47{left:9.920000pt;}
.x82{left:12.160000pt;}
.x49{left:13.280000pt;}
.x48{left:14.560000pt;}
.x81{left:16.000000pt;}
.x42{left:18.240000pt;}
.x46{left:19.200000pt;}
.x7d{left:20.960000pt;}
.x44{left:22.880000pt;}
.x5e{left:25.184000pt;}
.x30{left:27.040000pt;}
.x3a{left:29.160000pt;}
.x36{left:31.040000pt;}
.x39{left:32.000000pt;}
.x3b{left:33.760000pt;}
.x1d{left:38.720000pt;}
.x1b{left:40.960000pt;}
.x20{left:42.080000pt;}
.x1e{left:44.320000pt;}
.x32{left:47.680000pt;}
.x5f{left:50.106667pt;}
.x8c{left:51.386667pt;}
.x21{left:52.794667pt;}
.x33{left:55.546667pt;}
.x2b{left:56.640000pt;}
.x8b{left:58.080000pt;}
.x2c{left:59.360000pt;}
.x29{left:61.600000pt;}
.x2d{left:62.880000pt;}
.x1f{left:63.840000pt;}
.x60{left:65.920000pt;}
.x8a{left:71.426667pt;}
.x22{left:72.506667pt;}
.x61{left:81.760000pt;}
.x4c{left:92.773333pt;}
.x1{left:94.591988pt;}
.x4b{left:97.306667pt;}
.x85{left:99.360000pt;}
.x4a{left:100.800000pt;}
.x86{left:104.000000pt;}
.x8d{left:105.826667pt;}
.x16{left:113.471988pt;}
.x4d{left:117.440000pt;}
.x12{left:120.991988pt;}
.x62{left:129.213333pt;}
.x18{left:135.226667pt;}
.x23{left:142.586655pt;}
.x63{left:145.053333pt;}
.x4e{left:149.053333pt;}
.x64{left:160.866667pt;}
.x4f{left:166.146667pt;}
.x28{left:170.426655pt;}
.x65{left:176.666667pt;}
.x50{left:189.573333pt;}
.x4{left:193.306655pt;}
.x51{left:197.786667pt;}
.x66{left:208.320000pt;}
.x52{left:218.053333pt;}
.x84{left:220.826655pt;}
.x3f{left:224.034667pt;}
.x87{left:227.013333pt;}
.x67{left:239.973333pt;}
.x7b{left:243.714667pt;}
.x1a{left:247.106667pt;}
.x83{left:254.146655pt;}
.x68{left:255.813333pt;}
.x53{left:258.533333pt;}
.x7a{left:265.346655pt;}
.x2{left:268.866655pt;}
.x69{left:271.613333pt;}
.x54{left:276.893333pt;}
.x55{left:286.400000pt;}
.x6a{left:287.426667pt;}
.x78{left:292.733333pt;}
.x8e{left:299.586667pt;}
.x6b{left:303.266667pt;}
.x34{left:308.381333pt;}
.x6c{left:319.066667pt;}
.x6d{left:334.906667pt;}
.x2e{left:340.386667pt;}
.x88{left:350.013333pt;}
.x40{left:351.426667pt;}
.x56{left:352.866667pt;}
.x6e{left:366.533333pt;}
.x57{left:368.666667pt;}
.x7c{left:371.106667pt;}
.x17{left:379.746667pt;}
.x6f{left:382.373333pt;}
.x58{left:393.346667pt;}
.x15{left:396.893322pt;}
.x70{left:398.173333pt;}
.x13{left:406.493322pt;}
.x25{left:408.893322pt;}
.x3{left:410.173322pt;}
.x71{left:414.013333pt;}
.x3d{left:425.693322pt;}
.x27{left:429.693322pt;}
.x14{left:432.893322pt;}
.x41{left:433.853333pt;}
.x35{left:435.773333pt;}
.x3c{left:444.573322pt;}
.x72{left:445.666667pt;}
.x24{left:451.293322pt;}
.x59{left:457.920000pt;}
.x73{left:461.466667pt;}
.x2f{left:468.733333pt;}
.x8{left:472.253322pt;}
.x74{left:477.280000pt;}
.x10{left:478.173322pt;}
.xb{left:480.093322pt;}
.xe{left:487.133322pt;}
.x75{left:493.120000pt;}
.x7e{left:495.933333pt;}
.x43{left:498.013333pt;}
.x7{left:502.973322pt;}
.x26{left:504.893322pt;}
.xc{left:509.693322pt;}
.xf{left:512.253322pt;}
.x37{left:525.373333pt;}
.x5a{left:526.906667pt;}
.x89{left:534.533333pt;}
.x5c{left:538.266667pt;}
.x5b{left:540.160000pt;}
.x2a{left:548.413333pt;}
.x76{left:556.413333pt;}
.xa{left:559.653322pt;}
.x6{left:564.933322pt;}
.x5d{left:566.813333pt;}
.x1c{left:571.013333pt;}
.x77{left:572.226667pt;}
.x5{left:577.413322pt;}
.x31{left:579.973333pt;}
.xd{left:587.813322pt;}
.x9{left:596.773322pt;}
.x38{left:607.813333pt;}
.x7f{left:630.533333pt;}
.x45{left:635.333333pt;}
.x3e{left:692.933322pt;}
.x79{left:694.373322pt;}
.x11{left:699.333322pt;}
}




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