
    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_a77cd2a028e4c74beefce7bd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767090;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_bfbf2f0be28bb0cd676df85a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937500;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_b7bbb2a91f4c04c27eba7eb7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fea03dd027282a1eb1a379c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.853027;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_1683730a5241a8e2b6a2387d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.022461;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_0ab675bb0a516e2ad24ecc2a.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_86cdaf1f7aa9cb5561def746.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_410861458c7587c6794d7c71.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b3fd29dec1b021732270db79.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m3{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,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);}
.m2{transform:matrix(0.557029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557029,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);}
.v4{vertical-align:-30.240000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.ls10{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.152400px;}
.ls15{letter-spacing:-0.018000px;}
.ls14{letter-spacing:-0.005716px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.152400px;}
.lsd{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:3.185280px;}
.ls17{letter-spacing:13.680000px;}
.ls9{letter-spacing:24.785280px;}
.ls8{letter-spacing:32.705280px;}
.ls12{letter-spacing:33.425280px;}
.ls3{letter-spacing:36.281280px;}
.ls7{letter-spacing:36.305280px;}
.ls6{letter-spacing:37.025280px;}
.ls11{letter-spacing:39.905280px;}
.lse{letter-spacing:43.505280px;}
.lsb{letter-spacing:44.225280px;}
.ls13{letter-spacing:72.150528px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-16.865400px;}
.ws7{word-spacing:-16.822200px;}
.ws3{word-spacing:-16.712400px;}
.ws5{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.407600px;}
.ws8{word-spacing:-16.254600px;}
.ws9{word-spacing:-15.840000px;}
.wse{word-spacing:-12.186000px;}
.wsd{word-spacing:-11.227527px;}
.ws4{word-spacing:-10.440000px;}
.ws0{word-spacing:-9.720000px;}
.wsc{word-spacing:-7.751033px;}
.wsb{word-spacing:-3.875516px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:63.942207px;}
._10{margin-left:-13.524000px;}
._14{margin-left:-2.294880px;}
._0{margin-left:-1.202400px;}
._6{width:1.298400px;}
._e{width:2.635200px;}
._f{width:4.608000px;}
._b{width:6.319200px;}
._4{width:7.632000px;}
._5{width:8.760000px;}
._1{width:10.656000px;}
._8{width:11.728800px;}
._7{width:12.744000px;}
._c{width:14.040000px;}
._d{width:15.840000px;}
._11{width:17.686080px;}
._2{width:19.584000px;}
._3{width:20.736000px;}
._16{width:21.884160px;}
._15{width:23.184000px;}
._9{width:24.840000px;}
._a{width:26.064000px;}
._1a{width:28.064160px;}
._18{width:31.861440px;}
._17{width:32.921280px;}
._19{width:34.080000px;}
._12{width:72.599040px;}
._13{width:73.602720px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:17.148302px;}
.fs9{font-size:34.296604px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fsc{font-size:49.679321px;}
.fsa{font-size:53.999262px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsb{font-size:107.998525px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y76{bottom:3.600000px;}
.y5d{bottom:3.780000px;}
.y5f{bottom:3.960000px;}
.y62{bottom:4.140000px;}
.y111{bottom:4.218673px;}
.y13c{bottom:5.795921px;}
.y142{bottom:11.639841px;}
.y86{bottom:22.860000px;}
.y79{bottom:23.040000px;}
.y104{bottom:25.676915px;}
.y112{bottom:25.916991px;}
.y116{bottom:28.108925px;}
.y118{bottom:28.123215px;}
.y11a{bottom:28.132742px;}
.y11c{bottom:28.142269px;}
.y11e{bottom:28.156559px;}
.y114{bottom:28.157988px;}
.y120{bottom:28.166086px;}
.y122{bottom:28.180376px;}
.y8a{bottom:33.120000px;}
.y78{bottom:41.940000px;}
.y3{bottom:56.736000px;}
.y105{bottom:72.810452px;}
.y106{bottom:88.691685px;}
.ydf{bottom:115.776000px;}
.y7c{bottom:116.136000px;}
.ye6{bottom:116.856000px;}
.y16f{bottom:118.836000px;}
.y107{bottom:122.426206px;}
.yb8{bottom:122.616000px;}
.y140{bottom:127.513258px;}
.y13b{bottom:130.678515px;}
.yde{bottom:134.856000px;}
.ye5{bottom:135.936000px;}
.y2a{bottom:136.656000px;}
.y129{bottom:137.376000px;}
.y155{bottom:137.736000px;}
.y16e{bottom:137.916000px;}
.y139{bottom:140.692078px;}
.y13e{bottom:140.752077px;}
.yb7{bottom:141.696000px;}
.y57{bottom:143.496000px;}
.y124{bottom:151.667204px;}
.ydd{bottom:153.750000px;}
.y108{bottom:154.679304px;}
.y85{bottom:154.830000px;}
.y56{bottom:155.010000px;}
.y10a{bottom:155.831860px;}
.y10c{bottom:155.839958px;}
.y10e{bottom:155.854248px;}
.y110{bottom:155.863775px;}
.y154{bottom:156.630000px;}
.y16d{bottom:156.810000px;}
.yb6{bottom:160.590000px;}
.y6b{bottom:161.820000px;}
.y100{bottom:165.450000px;}
.y29{bottom:169.230000px;}
.y128{bottom:170.310000px;}
.ydc{bottom:172.830000px;}
.ye4{bottom:173.730000px;}
.y84{bottom:174.450000px;}
.y153{bottom:175.710000px;}
.y17e{bottom:175.890000px;}
.yb5{bottom:179.490000px;}
.yff{bottom:184.530000px;}
.y18b{bottom:187.410000px;}
.ydb{bottom:191.730000px;}
.ye3{bottom:192.810000px;}
.y16c{bottom:193.890000px;}
.y83{bottom:194.250000px;}
.y55{bottom:198.570000px;}
.y7d{bottom:198.759000px;}
.y28{bottom:198.930000px;}
.yfe{bottom:203.430000px;}
.y18a{bottom:206.310000px;}
.ye2{bottom:211.710000px;}
.y152{bottom:212.250000px;}
.y17d{bottom:212.430000px;}
.y16b{bottom:212.790000px;}
.y82{bottom:213.870000px;}
.yb4{bottom:217.470000px;}
.y54{bottom:217.650000px;}
.yfd{bottom:222.510000px;}
.ye1{bottom:230.790000px;}
.yda{bottom:231.690000px;}
.y81{bottom:233.670000px;}
.yb3{bottom:236.550000px;}
.y148{bottom:237.090000px;}
.y27{bottom:238.890000px;}
.yfc{bottom:241.410000px;}
.y189{bottom:243.390000px;}
.y151{bottom:249.330000px;}
.ye0{bottom:249.690000px;}
.y80{bottom:253.290000px;}
.y53{bottom:254.550000px;}
.yb2{bottom:255.450000px;}
.y26{bottom:257.790000px;}
.yd9{bottom:268.590000px;}
.y16a{bottom:268.770000px;}
.y7f{bottom:273.135000px;}
.y52{bottom:273.495000px;}
.y147{bottom:274.035000px;}
.yb1{bottom:274.395000px;}
.y25{bottom:276.735000px;}
.yfb{bottom:278.355000px;}
.y188{bottom:280.335000px;}
.y150{bottom:286.635000px;}
.y17c{bottom:286.815000px;}
.yd8{bottom:287.715000px;}
.y51{bottom:292.575000px;}
.y7e{bottom:292.935000px;}
.y146{bottom:293.115000px;}
.yb0{bottom:293.475000px;}
.y24{bottom:295.815000px;}
.yfa{bottom:297.435000px;}
.y169{bottom:301.935000px;}
.yd7{bottom:306.615000px;}
.y50{bottom:311.475000px;}
.y145{bottom:312.015000px;}
.yaf{bottom:312.375000px;}
.yf9{bottom:316.335000px;}
.y187{bottom:317.415000px;}
.y14f{bottom:319.575000px;}
.y17b{bottom:319.935000px;}
.yd6{bottom:325.695000px;}
.y4f{bottom:330.555000px;}
.yae{bottom:331.455000px;}
.y164{bottom:334.335000px;}
.yf8{bottom:335.415000px;}
.y23{bottom:343.515000px;}
.yd5{bottom:344.595000px;}
.y144{bottom:348.915000px;}
.y4e{bottom:349.455000px;}
.yad{bottom:350.355000px;}
.y163{bottom:353.415000px;}
.y186{bottom:354.315000px;}
.yd4{bottom:363.495000px;}
.y179{bottom:367.095000px;}
.y4d{bottom:368.355000px;}
.yac{bottom:369.255000px;}
.y7b{bottom:372.315000px;}
.y185{bottom:373.395000px;}
.y143{bottom:381.855000px;}
.yd3{bottom:382.575000px;}
.y22{bottom:382.935000px;}
.y4c{bottom:387.435000px;}
.yab{bottom:388.335000px;}
.y13a{bottom:388.505606px;}
.yf7{bottom:391.395000px;}
.yd2{bottom:401.475000px;}
.y178{bottom:404.535000px;}
.y4b{bottom:406.335000px;}
.yaa{bottom:407.235000px;}
.y7a{bottom:409.395000px;}
.yf6{bottom:410.295000px;}
.yd1{bottom:420.555000px;}
.y21{bottom:421.635000px;}
.y177{bottom:423.435000px;}
.y4a{bottom:425.415000px;}
.ya9{bottom:426.315000px;}
.y138{bottom:427.205378px;}
.y162{bottom:428.295000px;}
.yf5{bottom:429.195000px;}
.yd0{bottom:439.455000px;}
.y20{bottom:442.335000px;}
.y176{bottom:442.515000px;}
.y77{bottom:443.055000px;}
.y49{bottom:444.315000px;}
.ya8{bottom:445.215000px;}
.y161{bottom:447.195000px;}
.ycf{bottom:458.355000px;}
.y175{bottom:461.415000px;}
.y1f{bottom:463.035000px;}
.y48{bottom:463.395000px;}
.ya7{bottom:464.295000px;}
.yf4{bottom:466.275000px;}
.yce{bottom:477.435000px;}
.y13d{bottom:480.304652px;}
.y47{bottom:482.295000px;}
.ya6{bottom:483.195000px;}
.y1e{bottom:483.735000px;}
.y160{bottom:484.275000px;}
.yf3{bottom:485.175000px;}
.ycd{bottom:496.335000px;}
.y174{bottom:498.315000px;}
.y75{bottom:500.655000px;}
.y46{bottom:501.195000px;}
.ya5{bottom:502.095000px;}
.y15f{bottom:503.175000px;}
.y1d{bottom:504.435000px;}
.ycc{bottom:515.415000px;}
.y127{bottom:516.315000px;}
.y45{bottom:520.275000px;}
.ya4{bottom:521.175000px;}
.yf2{bottom:522.255000px;}
.y1c{bottom:525.135000px;}
.ycb{bottom:534.315000px;}
.y13f{bottom:535.377900px;}
.y173{bottom:535.395000px;}
.ya3{bottom:540.075000px;}
.yf1{bottom:541.155000px;}
.y74{bottom:542.415000px;}
.y1b{bottom:545.835000px;}
.y126{bottom:553.215000px;}
.yca{bottom:553.395000px;}
.y44{bottom:557.205000px;}
.ya2{bottom:559.185000px;}
.yf0{bottom:560.085000px;}
.y1a{bottom:566.565000px;}
.y172{bottom:568.545000px;}
.yc9{bottom:572.325000px;}
.y6a{bottom:576.105000px;}
.y43{bottom:576.285000px;}
.ya1{bottom:578.085000px;}
.yef{bottom:579.165000px;}
.y19{bottom:587.265000px;}
.yc8{bottom:591.225000px;}
.y42{bottom:595.185000px;}
.y73{bottom:595.905000px;}
.ya0{bottom:596.985000px;}
.y15e{bottom:597.165000px;}
.y18{bottom:607.965000px;}
.yc7{bottom:610.305000px;}
.y141{bottom:611.876855px;}
.y41{bottom:614.085000px;}
.y184{bottom:614.805000px;}
.y72{bottom:615.525000px;}
.y9f{bottom:616.065000px;}
.y125{bottom:628.305000px;}
.y17{bottom:628.665000px;}
.yc6{bottom:629.205000px;}
.y40{bottom:633.165000px;}
.y9e{bottom:634.965000px;}
.yee{bottom:635.145000px;}
.y71{bottom:635.325000px;}
.yc5{bottom:648.285000px;}
.y168{bottom:649.185000px;}
.y16{bottom:649.365000px;}
.y183{bottom:652.065000px;}
.y9d{bottom:654.045000px;}
.y70{bottom:655.125000px;}
.y102{bottom:661.245000px;}
.y103{bottom:663.504584px;}
.yc4{bottom:667.185000px;}
.y15{bottom:670.065000px;}
.y182{bottom:671.145000px;}
.y15d{bottom:672.045000px;}
.y9c{bottom:672.945000px;}
.y6f{bottom:674.745000px;}
.yc3{bottom:686.085000px;}
.y167{bottom:686.265000px;}
.y3f{bottom:689.145000px;}
.y181{bottom:690.045000px;}
.y14{bottom:690.765000px;}
.y15c{bottom:690.945000px;}
.y9b{bottom:691.845000px;}
.y113{bottom:693.514303px;}
.y6e{bottom:694.545000px;}
.y109{bottom:696.086548px;}
.y14e{bottom:704.085000px;}
.y17a{bottom:704.265000px;}
.yc2{bottom:705.165000px;}
.y180{bottom:708.945000px;}
.yed{bottom:710.025000px;}
.y9a{bottom:710.925000px;}
.y6d{bottom:714.165000px;}
.y14d{bottom:723.165000px;}
.yc1{bottom:724.065000px;}
.y115{bottom:725.811701px;}
.y3e{bottom:726.045000px;}
.y10b{bottom:726.840599px;}
.y137{bottom:728.025000px;}
.yec{bottom:728.925000px;}
.y13{bottom:729.465000px;}
.y99{bottom:729.825000px;}
.y6c{bottom:733.965000px;}
.y14c{bottom:742.065000px;}
.yc0{bottom:743.145000px;}
.y3d{bottom:744.945000px;}
.y17f{bottom:746.025000px;}
.y15b{bottom:746.925000px;}
.yeb{bottom:748.005000px;}
.y98{bottom:748.905000px;}
.y12{bottom:749.985000px;}
.y69{bottom:753.585000px;}
.y117{bottom:758.050509px;}
.y10d{bottom:759.079407px;}
.y14b{bottom:760.965000px;}
.y166{bottom:761.145000px;}
.ybf{bottom:762.045000px;}
.y3c{bottom:764.025000px;}
.y136{bottom:764.925000px;}
.y15a{bottom:766.005000px;}
.y97{bottom:767.805000px;}
.y11{bottom:770.685000px;}
.ybe{bottom:780.945000px;}
.y3b{bottom:782.925000px;}
.y135{bottom:784.005000px;}
.yea{bottom:784.545000px;}
.y159{bottom:784.905000px;}
.y96{bottom:786.705000px;}
.y119{bottom:790.289316px;}
.y10{bottom:791.385000px;}
.y10f{bottom:792.804401px;}
.y68{bottom:794.985000px;}
.y14a{bottom:798.045000px;}
.ybd{bottom:800.025000px;}
.y3a{bottom:802.005000px;}
.y134{bottom:802.905000px;}
.y95{bottom:805.785000px;}
.yf{bottom:812.085000px;}
.ybc{bottom:818.925000px;}
.y39{bottom:820.905000px;}
.y123{bottom:821.327743px;}
.ye9{bottom:821.445000px;}
.y133{bottom:821.805000px;}
.y11b{bottom:822.528124px;}
.y94{bottom:824.685000px;}
.y67{bottom:829.185000px;}
.y149{bottom:830.985000px;}
.y165{bottom:831.165000px;}
.ye{bottom:832.785000px;}
.ybb{bottom:838.005000px;}
.y132{bottom:840.930000px;}
.y93{bottom:843.810000px;}
.y66{bottom:848.850000px;}
.yd{bottom:853.530000px;}
.y11d{bottom:854.766932px;}
.yba{bottom:856.950000px;}
.y38{bottom:857.490000px;}
.ye8{bottom:858.930000px;}
.y131{bottom:859.830000px;}
.y92{bottom:862.710000px;}
.y65{bottom:868.650000px;}
.yc{bottom:874.230000px;}
.yb9{bottom:875.850000px;}
.y158{bottom:877.830000px;}
.y91{bottom:881.610000px;}
.y11f{bottom:887.005740px;}
.y64{bottom:888.270000px;}
.yb{bottom:894.930000px;}
.ye7{bottom:895.830000px;}
.y130{bottom:896.910000px;}
.y90{bottom:900.690000px;}
.y63{bottom:908.070000px;}
.y37{bottom:913.830000px;}
.ya{bottom:915.630000px;}
.y12f{bottom:915.810000px;}
.y121{bottom:919.244547px;}
.y8f{bottom:919.590000px;}
.y61{bottom:927.690000px;}
.y36{bottom:932.910000px;}
.y12e{bottom:934.710000px;}
.y9{bottom:936.330000px;}
.y60{bottom:947.490000px;}
.y35{bottom:951.810000px;}
.y171{bottom:952.710000px;}
.y12d{bottom:953.790000px;}
.y8{bottom:957.030000px;}
.y8e{bottom:959.550000px;}
.y5e{bottom:967.290000px;}
.y34{bottom:970.710000px;}
.y170{bottom:971.790000px;}
.y12c{bottom:972.690000px;}
.y5c{bottom:986.910000px;}
.y33{bottom:989.790000px;}
.y101{bottom:990.690000px;}
.y12b{bottom:991.770000px;}
.y7{bottom:995.370000px;}
.y8d{bottom:996.630000px;}
.y32{bottom:1008.690000px;}
.y157{bottom:1009.770000px;}
.y5b{bottom:1010.670000px;}
.y8c{bottom:1015.530000px;}
.y31{bottom:1027.770000px;}
.y156{bottom:1028.670000px;}
.y6{bottom:1034.430000px;}
.y30{bottom:1046.670000px;}
.y5a{bottom:1047.750000px;}
.y8b{bottom:1052.610000px;}
.y2f{bottom:1065.750000px;}
.y59{bottom:1066.650000px;}
.y89{bottom:1068.270000px;}
.y5{bottom:1076.550000px;}
.y2e{bottom:1084.650000px;}
.y58{bottom:1085.550000px;}
.y2d{bottom:1103.550000px;}
.y12a{bottom:1104.630000px;}
.y4{bottom:1110.930000px;}
.y88{bottom:1117.050000px;}
.y2c{bottom:1122.660000px;}
.y87{bottom:1136.880000px;}
.y2b{bottom:1141.560000px;}
.y2{bottom:1191.780000px;}
.y1{bottom:1212.300000px;}
.h1b{height:13.020317px;}
.h12{height:18.900000px;}
.h13{height:18.936000px;}
.h11{height:19.080000px;}
.h29{height:21.059712px;}
.h2c{height:23.399680px;}
.h25{height:25.923410px;}
.h22{height:30.009528px;}
.h1a{height:30.523978px;}
.h23{height:32.238808px;}
.h2{height:36.462656px;}
.h17{height:36.900000px;}
.h2d{height:37.720383px;}
.h18{height:37.800000px;}
.hc{height:38.158594px;}
.h27{height:41.000416px;}
.h4{height:41.000977px;}
.h19{height:48.060000px;}
.h3{height:54.421875px;}
.hb{height:54.667969px;}
.h15{height:56.880000px;}
.hd{height:58.651172px;}
.h6{height:60.679688px;}
.h9{height:63.210938px;}
.ha{height:65.010937px;}
.he{height:66.757500px;}
.hf{height:68.084282px;}
.h7{height:70.664062px;}
.h10{height:71.225156px;}
.h1c{height:77.624647px;}
.h8{height:80.464922px;}
.h2b{height:81.631697px;}
.h1d{height:93.515407px;}
.h5{height:118.008984px;}
.h1e{height:127.240401px;}
.h28{height:145.798008px;}
.h2a{height:155.517875px;}
.h26{height:155.877870px;}
.h1f{height:159.479209px;}
.h24{height:160.565268px;}
.h20{height:160.622429px;}
.h14{height:176.760000px;}
.h16{height:213.690000px;}
.h21{height:321.244857px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:21.269345px;}
.wb{width:21.396707px;}
.w16{width:39.778802px;}
.w14{width:39.864102px;}
.w17{width:39.958797px;}
.w1c{width:42.478721px;}
.wf{width:56.803161px;}
.w12{width:83.676406px;}
.w19{width:85.497425px;}
.we{width:93.610591px;}
.wd{width:95.775734px;}
.w15{width:107.110894px;}
.w1b{width:116.996477px;}
.w13{width:122.139533px;}
.w10{width:140.224845px;}
.w1a{width:158.755219px;}
.w11{width:179.706863px;}
.w6{width:180.030000px;}
.w2{width:181.650000px;}
.w8{width:229.350000px;}
.w4{width:276.330000px;}
.w18{width:339.469778px;}
.w5{width:352.875000px;}
.w9{width:398.775000px;}
.w3{width:454.935000px;}
.w7{width:456.555000px;}
.wc{width:532.370437px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:6.092118px;}
.xb{left:7.740000px;}
.x2a{left:11.791538px;}
.x33{left:16.451505px;}
.x6{left:106.416000px;}
.xd{left:131.616000px;}
.x7{left:133.416000px;}
.xa{left:138.636000px;}
.x1f{left:148.142925px;}
.x25{left:149.161815px;}
.x4{left:155.190000px;}
.x11{left:159.510000px;}
.x20{left:181.341334px;}
.x8{left:187.410000px;}
.x24{left:188.643833px;}
.x27{left:206.729145px;}
.x14{left:212.790000px;}
.x34{left:213.898390px;}
.x21{left:233.092944px;}
.x22{left:235.258087px;}
.x31{left:238.017664px;}
.x13{left:241.590000px;}
.x3b{left:243.750000px;}
.x26{left:245.192272px;}
.x12{left:246.270000px;}
.x32{left:260.336992px;}
.x2e{left:269.670000px;}
.x23{left:272.065517px;}
.x3d{left:281.550000px;}
.x38{left:282.990000px;}
.x28{left:286.839433px;}
.x35{left:313.255398px;}
.xf{left:319.395000px;}
.xc{left:321.015000px;}
.x2c{left:327.135000px;}
.x3c{left:329.835000px;}
.x2f{left:349.074320px;}
.x29{left:360.709015px;}
.x10{left:362.235000px;}
.x9{left:364.755000px;}
.x1d{left:384.143504px;}
.x19{left:387.072815px;}
.x5{left:400.755000px;}
.xe{left:408.675000px;}
.x1b{left:428.592614px;}
.x18{left:453.682800px;}
.x30{left:462.830894px;}
.x1e{left:483.485355px;}
.x36{left:486.050195px;}
.x1a{left:545.637694px;}
.x1c{left:582.827207px;}
.x37{left:617.086249px;}
.x17{left:627.658402px;}
.x15{left:649.819277px;}
.x2b{left:685.365000px;}
.x2d{left:699.585000px;}
.x3a{left:701.025000px;}
.x39{left:773.070000px;}
.x3{left:779.910000px;}
.x2{left:840.030000px;}
.x1{left:850.830000px;}
@media print{
.v4{vertical-align:-26.880000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.135467pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls14{letter-spacing:-0.005081pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.135467pt;}
.lsd{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:2.831360pt;}
.ls17{letter-spacing:12.160000pt;}
.ls9{letter-spacing:22.031360pt;}
.ls8{letter-spacing:29.071360pt;}
.ls12{letter-spacing:29.711360pt;}
.ls3{letter-spacing:32.250027pt;}
.ls7{letter-spacing:32.271360pt;}
.ls6{letter-spacing:32.911360pt;}
.ls11{letter-spacing:35.471360pt;}
.lse{letter-spacing:38.671360pt;}
.lsb{letter-spacing:39.311360pt;}
.ls13{letter-spacing:64.133803pt;}
.ws6{word-spacing:-14.991467pt;}
.ws7{word-spacing:-14.953067pt;}
.ws3{word-spacing:-14.855467pt;}
.ws5{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.584533pt;}
.ws8{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.080000pt;}
.wse{word-spacing:-10.832000pt;}
.wsd{word-spacing:-9.980024pt;}
.ws4{word-spacing:-9.280000pt;}
.ws0{word-spacing:-8.640000pt;}
.wsc{word-spacing:-6.889807pt;}
.wsb{word-spacing:-3.444903pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:56.837518pt;}
._10{margin-left:-12.021333pt;}
._14{margin-left:-2.039893pt;}
._0{margin-left:-1.068800pt;}
._6{width:1.154133pt;}
._e{width:2.342400pt;}
._f{width:4.096000pt;}
._b{width:5.617067pt;}
._4{width:6.784000pt;}
._5{width:7.786667pt;}
._1{width:9.472000pt;}
._8{width:10.425600pt;}
._7{width:11.328000pt;}
._c{width:12.480000pt;}
._d{width:14.080000pt;}
._11{width:15.720960pt;}
._2{width:17.408000pt;}
._3{width:18.432000pt;}
._16{width:19.452587pt;}
._15{width:20.608000pt;}
._9{width:22.080000pt;}
._a{width:23.168000pt;}
._1a{width:24.945920pt;}
._18{width:28.321280pt;}
._17{width:29.263360pt;}
._19{width:30.293333pt;}
._12{width:64.532480pt;}
._13{width:65.424640pt;}
.fs8{font-size:15.242935pt;}
.fs9{font-size:30.485870pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fsc{font-size:44.159397pt;}
.fsa{font-size:47.999344pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsb{font-size:95.998688pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:3.200000pt;}
.y5d{bottom:3.360000pt;}
.y5f{bottom:3.520000pt;}
.y62{bottom:3.680000pt;}
.y111{bottom:3.749931pt;}
.y13c{bottom:5.151930pt;}
.y142{bottom:10.346525pt;}
.y86{bottom:20.320000pt;}
.y79{bottom:20.480000pt;}
.y104{bottom:22.823924pt;}
.y112{bottom:23.037325pt;}
.y116{bottom:24.985711pt;}
.y118{bottom:24.998414pt;}
.y11a{bottom:25.006882pt;}
.y11c{bottom:25.015350pt;}
.y11e{bottom:25.028053pt;}
.y114{bottom:25.029323pt;}
.y120{bottom:25.036521pt;}
.y122{bottom:25.049223pt;}
.y8a{bottom:29.440000pt;}
.y78{bottom:37.280000pt;}
.y3{bottom:50.432000pt;}
.y105{bottom:64.720402pt;}
.y106{bottom:78.837053pt;}
.ydf{bottom:102.912000pt;}
.y7c{bottom:103.232000pt;}
.ye6{bottom:103.872000pt;}
.y16f{bottom:105.632000pt;}
.y107{bottom:108.823294pt;}
.yb8{bottom:108.992000pt;}
.y140{bottom:113.345118pt;}
.y13b{bottom:116.158680pt;}
.yde{bottom:119.872000pt;}
.ye5{bottom:120.832000pt;}
.y2a{bottom:121.472000pt;}
.y129{bottom:122.112000pt;}
.y155{bottom:122.432000pt;}
.y16e{bottom:122.592000pt;}
.y139{bottom:125.059625pt;}
.y13e{bottom:125.112957pt;}
.yb7{bottom:125.952000pt;}
.y57{bottom:127.552000pt;}
.y124{bottom:134.815293pt;}
.ydd{bottom:136.666667pt;}
.y108{bottom:137.492714pt;}
.y85{bottom:137.626667pt;}
.y56{bottom:137.786667pt;}
.y10a{bottom:138.517209pt;}
.y10c{bottom:138.524407pt;}
.y10e{bottom:138.537109pt;}
.y110{bottom:138.545578pt;}
.y154{bottom:139.226667pt;}
.y16d{bottom:139.386667pt;}
.yb6{bottom:142.746667pt;}
.y6b{bottom:143.840000pt;}
.y100{bottom:147.066667pt;}
.y29{bottom:150.426667pt;}
.y128{bottom:151.386667pt;}
.ydc{bottom:153.626667pt;}
.ye4{bottom:154.426667pt;}
.y84{bottom:155.066667pt;}
.y153{bottom:156.186667pt;}
.y17e{bottom:156.346667pt;}
.yb5{bottom:159.546667pt;}
.yff{bottom:164.026667pt;}
.y18b{bottom:166.586667pt;}
.ydb{bottom:170.426667pt;}
.ye3{bottom:171.386667pt;}
.y16c{bottom:172.346667pt;}
.y83{bottom:172.666667pt;}
.y55{bottom:176.506667pt;}
.y7d{bottom:176.674667pt;}
.y28{bottom:176.826667pt;}
.yfe{bottom:180.826667pt;}
.y18a{bottom:183.386667pt;}
.ye2{bottom:188.186667pt;}
.y152{bottom:188.666667pt;}
.y17d{bottom:188.826667pt;}
.y16b{bottom:189.146667pt;}
.y82{bottom:190.106667pt;}
.yb4{bottom:193.306667pt;}
.y54{bottom:193.466667pt;}
.yfd{bottom:197.786667pt;}
.ye1{bottom:205.146667pt;}
.yda{bottom:205.946667pt;}
.y81{bottom:207.706667pt;}
.yb3{bottom:210.266667pt;}
.y148{bottom:210.746667pt;}
.y27{bottom:212.346667pt;}
.yfc{bottom:214.586667pt;}
.y189{bottom:216.346667pt;}
.y151{bottom:221.626667pt;}
.ye0{bottom:221.946667pt;}
.y80{bottom:225.146667pt;}
.y53{bottom:226.266667pt;}
.yb2{bottom:227.066667pt;}
.y26{bottom:229.146667pt;}
.yd9{bottom:238.746667pt;}
.y16a{bottom:238.906667pt;}
.y7f{bottom:242.786667pt;}
.y52{bottom:243.106667pt;}
.y147{bottom:243.586667pt;}
.yb1{bottom:243.906667pt;}
.y25{bottom:245.986667pt;}
.yfb{bottom:247.426667pt;}
.y188{bottom:249.186667pt;}
.y150{bottom:254.786667pt;}
.y17c{bottom:254.946667pt;}
.yd8{bottom:255.746667pt;}
.y51{bottom:260.066667pt;}
.y7e{bottom:260.386667pt;}
.y146{bottom:260.546667pt;}
.yb0{bottom:260.866667pt;}
.y24{bottom:262.946667pt;}
.yfa{bottom:264.386667pt;}
.y169{bottom:268.386667pt;}
.yd7{bottom:272.546667pt;}
.y50{bottom:276.866667pt;}
.y145{bottom:277.346667pt;}
.yaf{bottom:277.666667pt;}
.yf9{bottom:281.186667pt;}
.y187{bottom:282.146667pt;}
.y14f{bottom:284.066667pt;}
.y17b{bottom:284.386667pt;}
.yd6{bottom:289.506667pt;}
.y4f{bottom:293.826667pt;}
.yae{bottom:294.626667pt;}
.y164{bottom:297.186667pt;}
.yf8{bottom:298.146667pt;}
.y23{bottom:305.346667pt;}
.yd5{bottom:306.306667pt;}
.y144{bottom:310.146667pt;}
.y4e{bottom:310.626667pt;}
.yad{bottom:311.426667pt;}
.y163{bottom:314.146667pt;}
.y186{bottom:314.946667pt;}
.yd4{bottom:323.106667pt;}
.y179{bottom:326.306667pt;}
.y4d{bottom:327.426667pt;}
.yac{bottom:328.226667pt;}
.y7b{bottom:330.946667pt;}
.y185{bottom:331.906667pt;}
.y143{bottom:339.426667pt;}
.yd3{bottom:340.066667pt;}
.y22{bottom:340.386667pt;}
.y4c{bottom:344.386667pt;}
.yab{bottom:345.186667pt;}
.y13a{bottom:345.338317pt;}
.yf7{bottom:347.906667pt;}
.yd2{bottom:356.866667pt;}
.y178{bottom:359.586667pt;}
.y4b{bottom:361.186667pt;}
.yaa{bottom:361.986667pt;}
.y7a{bottom:363.906667pt;}
.yf6{bottom:364.706667pt;}
.yd1{bottom:373.826667pt;}
.y21{bottom:374.786667pt;}
.y177{bottom:376.386667pt;}
.y4a{bottom:378.146667pt;}
.ya9{bottom:378.946667pt;}
.y138{bottom:379.738114pt;}
.y162{bottom:380.706667pt;}
.yf5{bottom:381.506667pt;}
.yd0{bottom:390.626667pt;}
.y20{bottom:393.186667pt;}
.y176{bottom:393.346667pt;}
.y77{bottom:393.826667pt;}
.y49{bottom:394.946667pt;}
.ya8{bottom:395.746667pt;}
.y161{bottom:397.506667pt;}
.ycf{bottom:407.426667pt;}
.y175{bottom:410.146667pt;}
.y1f{bottom:411.586667pt;}
.y48{bottom:411.906667pt;}
.ya7{bottom:412.706667pt;}
.yf4{bottom:414.466667pt;}
.yce{bottom:424.386667pt;}
.y13d{bottom:426.937469pt;}
.y47{bottom:428.706667pt;}
.ya6{bottom:429.506667pt;}
.y1e{bottom:429.986667pt;}
.y160{bottom:430.466667pt;}
.yf3{bottom:431.266667pt;}
.ycd{bottom:441.186667pt;}
.y174{bottom:442.946667pt;}
.y75{bottom:445.026667pt;}
.y46{bottom:445.506667pt;}
.ya5{bottom:446.306667pt;}
.y15f{bottom:447.266667pt;}
.y1d{bottom:448.386667pt;}
.ycc{bottom:458.146667pt;}
.y127{bottom:458.946667pt;}
.y45{bottom:462.466667pt;}
.ya4{bottom:463.266667pt;}
.yf2{bottom:464.226667pt;}
.y1c{bottom:466.786667pt;}
.ycb{bottom:474.946667pt;}
.y13f{bottom:475.891467pt;}
.y173{bottom:475.906667pt;}
.ya3{bottom:480.066667pt;}
.yf1{bottom:481.026667pt;}
.y74{bottom:482.146667pt;}
.y1b{bottom:485.186667pt;}
.y126{bottom:491.746667pt;}
.yca{bottom:491.906667pt;}
.y44{bottom:495.293333pt;}
.ya2{bottom:497.053333pt;}
.yf0{bottom:497.853333pt;}
.y1a{bottom:503.613333pt;}
.y172{bottom:505.373333pt;}
.yc9{bottom:508.733333pt;}
.y6a{bottom:512.093333pt;}
.y43{bottom:512.253333pt;}
.ya1{bottom:513.853333pt;}
.yef{bottom:514.813333pt;}
.y19{bottom:522.013333pt;}
.yc8{bottom:525.533333pt;}
.y42{bottom:529.053333pt;}
.y73{bottom:529.693333pt;}
.ya0{bottom:530.653333pt;}
.y15e{bottom:530.813333pt;}
.y18{bottom:540.413333pt;}
.yc7{bottom:542.493333pt;}
.y141{bottom:543.890538pt;}
.y41{bottom:545.853333pt;}
.y184{bottom:546.493333pt;}
.y72{bottom:547.133333pt;}
.y9f{bottom:547.613333pt;}
.y125{bottom:558.493333pt;}
.y17{bottom:558.813333pt;}
.yc6{bottom:559.293333pt;}
.y40{bottom:562.813333pt;}
.y9e{bottom:564.413333pt;}
.yee{bottom:564.573333pt;}
.y71{bottom:564.733333pt;}
.yc5{bottom:576.253333pt;}
.y168{bottom:577.053333pt;}
.y16{bottom:577.213333pt;}
.y183{bottom:579.613333pt;}
.y9d{bottom:581.373333pt;}
.y70{bottom:582.333333pt;}
.y102{bottom:587.773333pt;}
.y103{bottom:589.781853pt;}
.yc4{bottom:593.053333pt;}
.y15{bottom:595.613333pt;}
.y182{bottom:596.573333pt;}
.y15d{bottom:597.373333pt;}
.y9c{bottom:598.173333pt;}
.y6f{bottom:599.773333pt;}
.yc3{bottom:609.853333pt;}
.y167{bottom:610.013333pt;}
.y3f{bottom:612.573333pt;}
.y181{bottom:613.373333pt;}
.y14{bottom:614.013333pt;}
.y15c{bottom:614.173333pt;}
.y9b{bottom:614.973333pt;}
.y113{bottom:616.457158pt;}
.y6e{bottom:617.373333pt;}
.y109{bottom:618.743599pt;}
.y14e{bottom:625.853333pt;}
.y17a{bottom:626.013333pt;}
.yc2{bottom:626.813333pt;}
.y180{bottom:630.173333pt;}
.yed{bottom:631.133333pt;}
.y9a{bottom:631.933333pt;}
.y6d{bottom:634.813333pt;}
.y14d{bottom:642.813333pt;}
.yc1{bottom:643.613333pt;}
.y115{bottom:645.165956pt;}
.y3e{bottom:645.373333pt;}
.y10b{bottom:646.080532pt;}
.y137{bottom:647.133333pt;}
.yec{bottom:647.933333pt;}
.y13{bottom:648.413333pt;}
.y99{bottom:648.733333pt;}
.y6c{bottom:652.413333pt;}
.y14c{bottom:659.613333pt;}
.yc0{bottom:660.573333pt;}
.y3d{bottom:662.173333pt;}
.y17f{bottom:663.133333pt;}
.y15b{bottom:663.933333pt;}
.yeb{bottom:664.893333pt;}
.y98{bottom:665.693333pt;}
.y12{bottom:666.653333pt;}
.y69{bottom:669.853333pt;}
.y117{bottom:673.822674pt;}
.y10d{bottom:674.737250pt;}
.y14b{bottom:676.413333pt;}
.y166{bottom:676.573333pt;}
.ybf{bottom:677.373333pt;}
.y3c{bottom:679.133333pt;}
.y136{bottom:679.933333pt;}
.y15a{bottom:680.893333pt;}
.y97{bottom:682.493333pt;}
.y11{bottom:685.053333pt;}
.ybe{bottom:694.173333pt;}
.y3b{bottom:695.933333pt;}
.y135{bottom:696.893333pt;}
.yea{bottom:697.373333pt;}
.y159{bottom:697.693333pt;}
.y96{bottom:699.293333pt;}
.y119{bottom:702.479392pt;}
.y10{bottom:703.453333pt;}
.y10f{bottom:704.715023pt;}
.y68{bottom:706.653333pt;}
.y14a{bottom:709.373333pt;}
.ybd{bottom:711.133333pt;}
.y3a{bottom:712.893333pt;}
.y134{bottom:713.693333pt;}
.y95{bottom:716.253333pt;}
.yf{bottom:721.853333pt;}
.ybc{bottom:727.933333pt;}
.y39{bottom:729.693333pt;}
.y123{bottom:730.069105pt;}
.ye9{bottom:730.173333pt;}
.y133{bottom:730.493333pt;}
.y11b{bottom:731.136110pt;}
.y94{bottom:733.053333pt;}
.y67{bottom:737.053333pt;}
.y149{bottom:738.653333pt;}
.y165{bottom:738.813333pt;}
.ye{bottom:740.253333pt;}
.ybb{bottom:744.893333pt;}
.y132{bottom:747.493333pt;}
.y93{bottom:750.053333pt;}
.y66{bottom:754.533333pt;}
.yd{bottom:758.693333pt;}
.y11d{bottom:759.792828pt;}
.yba{bottom:761.733333pt;}
.y38{bottom:762.213333pt;}
.ye8{bottom:763.493333pt;}
.y131{bottom:764.293333pt;}
.y92{bottom:766.853333pt;}
.y65{bottom:772.133333pt;}
.yc{bottom:777.093333pt;}
.yb9{bottom:778.533333pt;}
.y158{bottom:780.293333pt;}
.y91{bottom:783.653333pt;}
.y11f{bottom:788.449546pt;}
.y64{bottom:789.573333pt;}
.yb{bottom:795.493333pt;}
.ye7{bottom:796.293333pt;}
.y130{bottom:797.253333pt;}
.y90{bottom:800.613333pt;}
.y63{bottom:807.173333pt;}
.y37{bottom:812.293333pt;}
.ya{bottom:813.893333pt;}
.y12f{bottom:814.053333pt;}
.y121{bottom:817.106264pt;}
.y8f{bottom:817.413333pt;}
.y61{bottom:824.613333pt;}
.y36{bottom:829.253333pt;}
.y12e{bottom:830.853333pt;}
.y9{bottom:832.293333pt;}
.y60{bottom:842.213333pt;}
.y35{bottom:846.053333pt;}
.y171{bottom:846.853333pt;}
.y12d{bottom:847.813333pt;}
.y8{bottom:850.693333pt;}
.y8e{bottom:852.933333pt;}
.y5e{bottom:859.813333pt;}
.y34{bottom:862.853333pt;}
.y170{bottom:863.813333pt;}
.y12c{bottom:864.613333pt;}
.y5c{bottom:877.253333pt;}
.y33{bottom:879.813333pt;}
.y101{bottom:880.613333pt;}
.y12b{bottom:881.573333pt;}
.y7{bottom:884.773333pt;}
.y8d{bottom:885.893333pt;}
.y32{bottom:896.613333pt;}
.y157{bottom:897.573333pt;}
.y5b{bottom:898.373333pt;}
.y8c{bottom:902.693333pt;}
.y31{bottom:913.573333pt;}
.y156{bottom:914.373333pt;}
.y6{bottom:919.493333pt;}
.y30{bottom:930.373333pt;}
.y5a{bottom:931.333333pt;}
.y8b{bottom:935.653333pt;}
.y2f{bottom:947.333333pt;}
.y59{bottom:948.133333pt;}
.y89{bottom:949.573333pt;}
.y5{bottom:956.933333pt;}
.y2e{bottom:964.133333pt;}
.y58{bottom:964.933333pt;}
.y2d{bottom:980.933333pt;}
.y12a{bottom:981.893333pt;}
.y4{bottom:987.493333pt;}
.y88{bottom:992.933333pt;}
.y2c{bottom:997.920000pt;}
.y87{bottom:1010.560000pt;}
.y2b{bottom:1014.720000pt;}
.y2{bottom:1059.360000pt;}
.y1{bottom:1077.600000pt;}
.h1b{height:11.573615pt;}
.h12{height:16.800000pt;}
.h13{height:16.832000pt;}
.h11{height:16.960000pt;}
.h29{height:18.719744pt;}
.h2c{height:20.799716pt;}
.h25{height:23.043031pt;}
.h22{height:26.675136pt;}
.h1a{height:27.132424pt;}
.h23{height:28.656718pt;}
.h2{height:32.411250pt;}
.h17{height:32.800000pt;}
.h2d{height:33.529229pt;}
.h18{height:33.600000pt;}
.hc{height:33.918750pt;}
.h27{height:36.444815pt;}
.h4{height:36.445312pt;}
.h19{height:42.720000pt;}
.h3{height:48.375000pt;}
.hb{height:48.593750pt;}
.h15{height:50.560000pt;}
.hd{height:52.134375pt;}
.h6{height:53.937500pt;}
.h9{height:56.187500pt;}
.ha{height:57.787500pt;}
.he{height:59.340000pt;}
.hf{height:60.519362pt;}
.h7{height:62.812500pt;}
.h10{height:63.311250pt;}
.h1c{height:68.999686pt;}
.h8{height:71.524375pt;}
.h2b{height:72.561509pt;}
.h1d{height:83.124806pt;}
.h5{height:104.896875pt;}
.h1e{height:113.102578pt;}
.h28{height:129.598229pt;}
.h2a{height:138.238111pt;}
.h26{height:138.558107pt;}
.h1f{height:141.759296pt;}
.h24{height:142.724682pt;}
.h20{height:142.775492pt;}
.h14{height:157.120000pt;}
.h16{height:189.946667pt;}
.h21{height:285.550984pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:18.906085pt;}
.wb{width:19.019295pt;}
.w16{width:35.358935pt;}
.w14{width:35.434757pt;}
.w17{width:35.518930pt;}
.w1c{width:37.758863pt;}
.wf{width:50.491699pt;}
.w12{width:74.379028pt;}
.w19{width:75.997711pt;}
.we{width:83.209414pt;}
.wd{width:85.133986pt;}
.w15{width:95.209684pt;}
.w1b{width:103.996868pt;}
.w13{width:108.568474pt;}
.w10{width:124.644307pt;}
.w1a{width:141.115751pt;}
.w11{width:159.739434pt;}
.w6{width:160.026667pt;}
.w2{width:161.466667pt;}
.w8{width:203.866667pt;}
.w4{width:245.626667pt;}
.w18{width:301.750913pt;}
.w5{width:313.666667pt;}
.w9{width:354.466667pt;}
.w3{width:404.386667pt;}
.w7{width:405.826667pt;}
.wc{width:473.218167pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:5.415216pt;}
.xb{left:6.880000pt;}
.x2a{left:10.481367pt;}
.x33{left:14.623560pt;}
.x6{left:94.592000pt;}
.xd{left:116.992000pt;}
.x7{left:118.592000pt;}
.xa{left:123.232000pt;}
.x1f{left:131.682600pt;}
.x25{left:132.588280pt;}
.x4{left:137.946667pt;}
.x11{left:141.786667pt;}
.x20{left:161.192297pt;}
.x8{left:166.586667pt;}
.x24{left:167.683407pt;}
.x27{left:183.759240pt;}
.x14{left:189.146667pt;}
.x34{left:190.131902pt;}
.x21{left:207.193728pt;}
.x22{left:209.118300pt;}
.x31{left:211.571257pt;}
.x13{left:214.746667pt;}
.x3b{left:216.666667pt;}
.x26{left:217.948686pt;}
.x12{left:218.906667pt;}
.x32{left:231.410659pt;}
.x2e{left:239.706667pt;}
.x23{left:241.836015pt;}
.x3d{left:250.266667pt;}
.x38{left:251.546667pt;}
.x28{left:254.968385pt;}
.x35{left:278.449243pt;}
.xf{left:283.906667pt;}
.xc{left:285.346667pt;}
.x2c{left:290.786667pt;}
.x3c{left:293.186667pt;}
.x2f{left:310.288284pt;}
.x29{left:320.630236pt;}
.x10{left:321.986667pt;}
.x9{left:324.226667pt;}
.x1d{left:341.460892pt;}
.x19{left:344.064724pt;}
.x5{left:356.226667pt;}
.xe{left:363.266667pt;}
.x1b{left:380.971213pt;}
.x18{left:403.273600pt;}
.x30{left:411.405239pt;}
.x1e{left:429.764760pt;}
.x36{left:432.044618pt;}
.x1a{left:485.011283pt;}
.x1c{left:518.068629pt;}
.x37{left:548.521110pt;}
.x17{left:557.918580pt;}
.x15{left:577.617135pt;}
.x2b{left:609.213333pt;}
.x2d{left:621.853333pt;}
.x3a{left:623.133333pt;}
.x39{left:687.173333pt;}
.x3{left:693.253333pt;}
.x2{left:746.693333pt;}
.x1{left:756.293333pt;}
}




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