
    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_9cb53fca151a4d7cd69d15d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7eacf9229685eaffac7726b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cbd121a571e7bb5240233d1c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.929199;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_982d83a28877496b82418ea3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_2face87ad82189544a33a35b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_61081c25e27555c1a96bf591.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b4efe17b0c5430aa46aa69d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1e18da0883fe7b3813520d76.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4543021bb3af73de2908e341.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.346232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346232,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-23.760000px;}
.v5{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.305400px;}
.ls2{letter-spacing:-0.109200px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.109200px;}
.lsb{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.305400px;}
.ls8{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.568869px;}
.ls6{letter-spacing:0.720000px;}
.ls7{letter-spacing:3.600000px;}
.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:-44.123786px;}
.ws4{word-spacing:-43.759127px;}
.ws0{word-spacing:-18.305520px;}
.wse{word-spacing:-16.865400px;}
.wsf{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.254600px;}
.wsa{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.300000px;}
.wsc{word-spacing:-14.940000px;}
.ws8{word-spacing:-11.508650px;}
.ws7{word-spacing:-11.030946px;}
.ws5{word-spacing:-10.939782px;}
.ws1{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._10{margin-left:-5.539227px;}
._e{margin-left:-4.246484px;}
._f{margin-left:-2.860062px;}
._0{margin-left:-1.045440px;}
._1{width:1.932720px;}
._4{width:3.761280px;}
._7{width:5.431680px;}
._6{width:6.609600px;}
._8{width:7.669440px;}
._a{width:8.677440px;}
._b{width:10.068480px;}
._c{width:11.393280px;}
._11{width:12.461760px;}
._5{width:13.645440px;}
._9{width:15.220800px;}
._d{width:18.216000px;}
._13{width:19.408320px;}
._14{width:20.531280px;}
._3{width:22.029120px;}
._2{width:23.978880px;}
._15{width:25.237440px;}
._16{width:26.852880px;}
._12{width:28.218240px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:43.759127px;}
.fs6{font-size:44.123786px;}
.fs4{font-size:49.229017px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:87.120000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:3.240000px;}
.ye4{bottom:3.276000px;}
.y69{bottom:3.600000px;}
.y64{bottom:3.780000px;}
.ybc{bottom:3.960000px;}
.y65{bottom:4.320000px;}
.yb6{bottom:4.500000px;}
.yff{bottom:4.680000px;}
.y6b{bottom:4.860000px;}
.y72{bottom:5.040000px;}
.y70{bottom:5.220000px;}
.y6c{bottom:5.400000px;}
.y115{bottom:5.580000px;}
.y113{bottom:5.940000px;}
.y6{bottom:6.660000px;}
.y10d{bottom:7.200000px;}
.ydc{bottom:7.380000px;}
.y78{bottom:8.100000px;}
.yee{bottom:9.900000px;}
.y60{bottom:10.800000px;}
.ycc{bottom:11.880000px;}
.ybe{bottom:12.780000px;}
.y100{bottom:13.140000px;}
.y106{bottom:13.320000px;}
.y62{bottom:14.220000px;}
.y110{bottom:15.300000px;}
.yd1{bottom:20.340000px;}
.yb2{bottom:20.520000px;}
.yc0{bottom:21.600000px;}
.yb0{bottom:22.320000px;}
.y99{bottom:22.500000px;}
.yf4{bottom:22.680000px;}
.y9b{bottom:23.400000px;}
.yfe{bottom:23.580000px;}
.y111{bottom:24.840000px;}
.y67{bottom:26.454000px;}
.y117{bottom:27.000000px;}
.y6e{bottom:27.540000px;}
.yce{bottom:29.340000px;}
.yca{bottom:29.520000px;}
.yfc{bottom:33.480000px;}
.y10f{bottom:34.380000px;}
.yd0{bottom:37.620000px;}
.yaf{bottom:39.600000px;}
.y75{bottom:42.300000px;}
.y4{bottom:42.660000px;}
.y112{bottom:43.920000px;}
.y116{bottom:45.900000px;}
.y3a{bottom:63.360000px;}
.ye3{bottom:67.500000px;}
.ya8{bottom:69.120000px;}
.y6d{bottom:70.056000px;}
.y140{bottom:71.316000px;}
.y4f{bottom:74.652614px;}
.y10b{bottom:77.976000px;}
.y39{bottom:82.476000px;}
.ye2{bottom:85.356000px;}
.y4e{bottom:87.871517px;}
.ya7{bottom:88.236000px;}
.y13f{bottom:90.396000px;}
.y102{bottom:91.074000px;}
.y71{bottom:92.016000px;}
.y10a{bottom:96.876000px;}
.y4d{bottom:100.634595px;}
.y38{bottom:101.376000px;}
.ye1{bottom:103.356000px;}
.ya6{bottom:107.136000px;}
.y4c{bottom:113.853498px;}
.y6f{bottom:114.516000px;}
.y13e{bottom:118.296000px;}
.ye0{bottom:121.356000px;}
.y109{bottom:121.896000px;}
.ya5{bottom:126.216000px;}
.y4b{bottom:127.163566px;}
.y37{bottom:129.096000px;}
.y66{bottom:137.376000px;}
.ydf{bottom:139.356000px;}
.y49{bottom:140.017809px;}
.y4a{bottom:140.382469px;}
.y101{bottom:142.236000px;}
.ya4{bottom:145.116000px;}
.y36{bottom:148.356000px;}
.yde{bottom:157.350000px;}
.y6a{bottom:160.770000px;}
.y108{bottom:161.850000px;}
.ya3{bottom:164.190000px;}
.y13d{bottom:165.090000px;}
.y35{bottom:167.250000px;}
.ydd{bottom:179.490000px;}
.y68{bottom:182.910000px;}
.ya2{bottom:183.090000px;}
.y13c{bottom:193.170000px;}
.y34{bottom:195.150000px;}
.y107{bottom:200.550000px;}
.y61{bottom:202.710000px;}
.ya1{bottom:210.810000px;}
.y13b{bottom:212.250000px;}
.y33{bottom:214.230000px;}
.ydb{bottom:214.770000px;}
.y63{bottom:223.770000px;}
.ya0{bottom:230.070000px;}
.y32{bottom:233.130000px;}
.y50{bottom:238.020020px;}
.y105{bottom:239.250000px;}
.y13a{bottom:240.150000px;}
.y5f{bottom:243.570000px;}
.y9f{bottom:248.970000px;}
.yda{bottom:249.510000px;}
.y31{bottom:252.210000px;}
.y9e{bottom:268.050000px;}
.yd9{bottom:268.590000px;}
.y30{bottom:271.110000px;}
.y48{bottom:277.038574px;}
.y104{bottom:277.950000px;}
.y5e{bottom:281.190000px;}
.y139{bottom:287.130000px;}
.y2f{bottom:290.190000px;}
.y47{bottom:291.624950px;}
.y9a{bottom:293.070000px;}
.yd8{bottom:296.310000px;}
.y5d{bottom:308.910000px;}
.y2e{bottom:309.090000px;}
.y9d{bottom:312.690000px;}
.y138{bottom:315.030000px;}
.y103{bottom:316.650000px;}
.yd7{bottom:324.390000px;}
.y2d{bottom:327.990000px;}
.y5c{bottom:328.170000px;}
.y9c{bottom:332.490000px;}
.y137{bottom:334.110000px;}
.yfb{bottom:337.035000px;}
.yd6{bottom:343.515000px;}
.y2c{bottom:347.115000px;}
.y98{bottom:352.335000px;}
.y136{bottom:353.235000px;}
.yd5{bottom:362.595000px;}
.y2b{bottom:366.015000px;}
.y135{bottom:372.135000px;}
.y5b{bottom:374.835000px;}
.yfd{bottom:375.735000px;}
.yd4{bottom:381.495000px;}
.y2a{bottom:385.095000px;}
.y97{bottom:391.035000px;}
.yd3{bottom:400.395000px;}
.y5a{bottom:402.915000px;}
.y29{bottom:403.995000px;}
.y134{bottom:410.115000px;}
.yfa{bottom:416.415000px;}
.y59{bottom:421.995000px;}
.y28{bottom:422.895000px;}
.y96{bottom:423.255000px;}
.yd2{bottom:425.595000px;}
.y133{bottom:429.015000px;}
.y58{bottom:441.075000px;}
.ycd{bottom:443.595000px;}
.y132{bottom:448.095000px;}
.yf9{bottom:450.075000px;}
.y27{bottom:450.795000px;}
.y95{bottom:451.155000px;}
.y57{bottom:459.975000px;}
.y131{bottom:466.995000px;}
.yf8{bottom:469.335000px;}
.y26{bottom:469.875000px;}
.y56{bottom:478.875000px;}
.y94{bottom:479.055000px;}
.y130{bottom:485.895000px;}
.yf7{bottom:488.235000px;}
.y25{bottom:488.955000px;}
.ycf{bottom:495.975000px;}
.y55{bottom:497.955000px;}
.y93{bottom:498.315000px;}
.y12f{bottom:504.975000px;}
.yf6{bottom:507.315000px;}
.y24{bottom:507.855000px;}
.yc9{bottom:513.975000px;}
.y54{bottom:516.855000px;}
.y92{bottom:517.215000px;}
.y12e{bottom:523.875000px;}
.yf5{bottom:526.215000px;}
.y23{bottom:526.755000px;}
.y53{bottom:535.935000px;}
.y91{bottom:536.295000px;}
.y12d{bottom:542.955000px;}
.y22{bottom:545.835000px;}
.ycb{bottom:549.255000px;}
.yf3{bottom:551.235000px;}
.y90{bottom:555.195000px;}
.y12c{bottom:561.855000px;}
.y52{bottom:563.655000px;}
.y21{bottom:564.735000px;}
.y8f{bottom:574.095000px;}
.y51{bottom:579.135000px;}
.y46{bottom:579.165000px;}
.y12b{bottom:580.755000px;}
.y20{bottom:583.815000px;}
.yc8{bottom:584.535000px;}
.yf2{bottom:589.935000px;}
.y8e{bottom:593.175000px;}
.y12a{bottom:608.685000px;}
.yef{bottom:609.765000px;}
.y8d{bottom:612.105000px;}
.yc7{bottom:614.985000px;}
.y1f{bottom:620.565000px;}
.y129{bottom:627.765000px;}
.yf1{bottom:629.385000px;}
.y8c{bottom:631.185000px;}
.yc6{bottom:634.245000px;}
.y1e{bottom:639.825000px;}
.y128{bottom:646.845000px;}
.yf0{bottom:649.185000px;}
.y8b{bottom:650.085000px;}
.yc5{bottom:653.145000px;}
.y127{bottom:665.745000px;}
.y1d{bottom:667.545000px;}
.yed{bottom:668.805000px;}
.y8a{bottom:668.985000px;}
.yc4{bottom:672.045000px;}
.y126{bottom:684.825000px;}
.y1c{bottom:686.625000px;}
.y89{bottom:696.885000px;}
.yc3{bottom:697.245000px;}
.yec{bottom:701.025000px;}
.y125{bottom:703.725000px;}
.y1b{bottom:705.705000px;}
.y88{bottom:715.965000px;}
.yc2{bottom:716.865000px;}
.y124{bottom:722.625000px;}
.y1a{bottom:724.605000px;}
.yeb{bottom:733.245000px;}
.y87{bottom:735.045000px;}
.ybf{bottom:735.585000px;}
.y123{bottom:741.705000px;}
.yea{bottom:752.325000px;}
.y19{bottom:752.505000px;}
.yc1{bottom:753.585000px;}
.y86{bottom:753.945000px;}
.y122{bottom:760.605000px;}
.ye9{bottom:771.405000px;}
.y18{bottom:771.585000px;}
.y85{bottom:772.845000px;}
.y121{bottom:779.685000px;}
.y14c{bottom:782.205000px;}
.ybd{bottom:790.305000px;}
.y17{bottom:790.485000px;}
.y84{bottom:791.925000px;}
.y119{bottom:796.425000px;}
.y120{bottom:807.405000px;}
.y16{bottom:809.565000px;}
.y14b{bottom:810.285000px;}
.y83{bottom:810.825000px;}
.y118{bottom:819.645000px;}
.y11f{bottom:826.485000px;}
.ybb{bottom:827.205000px;}
.y15{bottom:828.465000px;}
.y14a{bottom:838.365000px;}
.y82{bottom:838.725000px;}
.y11e{bottom:845.565000px;}
.y14{bottom:847.545000px;}
.y81{bottom:857.805000px;}
.yba{bottom:858.345000px;}
.y11d{bottom:864.465000px;}
.y149{bottom:866.265000px;}
.y13{bottom:875.310000px;}
.y80{bottom:876.750000px;}
.yb9{bottom:877.650000px;}
.y10e{bottom:880.350000px;}
.y11c{bottom:883.590000px;}
.y148{bottom:885.390000px;}
.y12{bottom:894.390000px;}
.y7f{bottom:895.830000px;}
.yb8{bottom:896.550000px;}
.y11b{bottom:902.490000px;}
.y147{bottom:913.290000px;}
.y11{bottom:913.470000px;}
.y7e{bottom:914.730000px;}
.y114{bottom:919.050000px;}
.y45{bottom:921.210000px;}
.y11a{bottom:921.390000px;}
.yb7{bottom:921.570000px;}
.y10{bottom:932.370000px;}
.y7d{bottom:933.810000px;}
.y44{bottom:940.470000px;}
.yb5{bottom:940.650000px;}
.y10c{bottom:942.450000px;}
.yf{bottom:951.450000px;}
.y7c{bottom:952.710000px;}
.y43{bottom:959.370000px;}
.yb4{bottom:959.910000px;}
.ye{bottom:970.350000px;}
.y7b{bottom:971.790000px;}
.yae{bottom:978.090000px;}
.ye8{bottom:978.270000px;}
.y146{bottom:979.170000px;}
.y42{bottom:987.270000px;}
.yd{bottom:989.250000px;}
.y7a{bottom:990.690000px;}
.ye7{bottom:997.350000px;}
.y145{bottom:998.250000px;}
.y41{bottom:1006.350000px;}
.yc{bottom:1008.330000px;}
.y79{bottom:1009.590000px;}
.yb1{bottom:1013.370000px;}
.ye6{bottom:1016.250000px;}
.y40{bottom:1025.250000px;}
.y144{bottom:1026.150000px;}
.yad{bottom:1032.450000px;}
.y74{bottom:1034.610000px;}
.ye5{bottom:1044.150000px;}
.y3f{bottom:1044.330000px;}
.y143{bottom:1045.230000px;}
.yb{bottom:1050.990000px;}
.y3e{bottom:1063.230000px;}
.yac{bottom:1064.130000px;}
.ya{bottom:1070.250000px;}
.y142{bottom:1073.130000px;}
.y3d{bottom:1082.310000px;}
.y77{bottom:1085.730000px;}
.y9{bottom:1089.150000px;}
.yab{bottom:1092.030000px;}
.y141{bottom:1092.210000px;}
.y3c{bottom:1101.210000px;}
.y76{bottom:1108.770000px;}
.yaa{bottom:1111.290000px;}
.y8{bottom:1120.110000px;}
.y3b{bottom:1120.290000px;}
.y73{bottom:1131.450000px;}
.ya9{bottom:1139.040000px;}
.y7{bottom:1139.220000px;}
.y3{bottom:1159.020000px;}
.y2{bottom:1178.640000px;}
.y5{bottom:1181.700000px;}
.y1{bottom:1200.060000px;}
.h34{height:17.100000px;}
.h36{height:17.136000px;}
.h30{height:17.280000px;}
.h2a{height:17.460000px;}
.h2d{height:18.000000px;}
.h25{height:18.360000px;}
.h2c{height:18.540000px;}
.h17{height:18.900000px;}
.h24{height:18.936000px;}
.h14{height:19.080000px;}
.h3b{height:19.116000px;}
.h41{height:19.620000px;}
.h15{height:20.160000px;}
.h3d{height:20.520000px;}
.h1d{height:21.240000px;}
.h43{height:21.276000px;}
.h18{height:21.420000px;}
.h1c{height:21.780000px;}
.h1b{height:22.140000px;}
.h20{height:22.320000px;}
.h1e{height:22.356000px;}
.h19{height:22.500000px;}
.h5{height:23.580000px;}
.h21{height:27.900000px;}
.h9{height:29.158594px;}
.h8{height:29.464453px;}
.h11{height:30.554468px;}
.he{height:30.874970px;}
.h38{height:31.500000px;}
.hf{height:31.857841px;}
.h10{height:32.123323px;}
.h12{height:33.120000px;}
.h29{height:34.560000px;}
.hd{height:34.734341px;}
.h2e{height:36.000000px;}
.h22{height:37.800000px;}
.h3c{height:37.980000px;}
.h3f{height:39.960000px;}
.h13{height:40.140000px;}
.h28{height:41.726953px;}
.h35{height:42.164648px;}
.hb{height:46.251562px;}
.h7{height:46.736719px;}
.h2b{height:48.027656px;}
.h4{height:48.224531px;}
.h26{height:48.312422px;}
.h33{height:51.660000px;}
.h6{height:52.417969px;}
.h3a{height:52.918594px;}
.h37{height:53.224453px;}
.h27{height:53.640000px;}
.h2f{height:54.000000px;}
.ha{height:54.596250px;}
.h39{height:58.320000px;}
.h23{height:58.356000px;}
.h42{height:61.200000px;}
.h2{height:61.468945px;}
.h16{height:64.440000px;}
.h3{height:65.884219px;}
.h1a{height:66.600000px;}
.h32{height:69.660000px;}
.h31{height:69.840000px;}
.h3e{height:78.660000px;}
.h1f{height:95.940000px;}
.h40{height:194.040000px;}
.hc{height:329.549526px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4f{width:20.556000px;}
.w32{width:32.940000px;}
.w5b{width:36.000000px;}
.w13{width:38.880000px;}
.w1c{width:39.060000px;}
.w52{width:40.320000px;}
.w5a{width:41.760000px;}
.w2c{width:46.080000px;}
.w4d{width:47.196000px;}
.w31{width:49.860000px;}
.w14{width:50.580000px;}
.w47{width:50.940000px;}
.w46{width:50.976000px;}
.w53{width:52.560000px;}
.w4c{width:54.720000px;}
.w4e{width:56.520000px;}
.w4b{width:58.860000px;}
.w2f{width:59.940000px;}
.w30{width:59.976000px;}
.w2e{width:60.156000px;}
.w15{width:60.840000px;}
.w40{width:61.020000px;}
.w25{width:61.740000px;}
.w4a{width:61.956000px;}
.w54{width:64.800000px;}
.w1b{width:67.140000px;}
.w2b{width:70.020000px;}
.w1a{width:70.416000px;}
.wd{width:70.920000px;}
.wf{width:70.956000px;}
.w55{width:73.620000px;}
.w58{width:73.656000px;}
.w59{width:73.800000px;}
.w1d{width:74.196000px;}
.w19{width:74.520000px;}
.w57{width:76.680000px;}
.w5c{width:76.716000px;}
.w16{width:77.796000px;}
.w17{width:83.160000px;}
.w39{width:83.340000px;}
.w38{width:83.376000px;}
.w3f{width:84.420000px;}
.w3d{width:84.456000px;}
.w23{width:85.536000px;}
.w24{width:85.680000px;}
.w21{width:85.716000px;}
.w33{width:86.400000px;}
.w50{width:93.060000px;}
.w37{width:93.780000px;}
.we{width:98.100000px;}
.wc{width:103.536000px;}
.w36{width:104.256000px;}
.w45{width:104.400000px;}
.w41{width:106.236000px;}
.w26{width:107.676000px;}
.w49{width:108.180000px;}
.w10{width:109.980000px;}
.w2a{width:110.556000px;}
.w43{width:114.516000px;}
.w35{width:115.380000px;}
.w3e{width:116.460000px;}
.w22{width:118.260000px;}
.w28{width:120.060000px;}
.w29{width:120.816000px;}
.w3c{width:123.120000px;}
.w44{width:124.596000px;}
.w20{width:124.740000px;}
.w8{width:134.460000px;}
.w11{width:141.696000px;}
.w7{width:142.776000px;}
.w3{width:151.020000px;}
.w9{width:153.030000px;}
.w48{width:162.210000px;}
.w3b{width:167.970000px;}
.w1f{width:170.310000px;}
.w2d{width:171.210000px;}
.w6{width:185.070000px;}
.wb{width:252.390000px;}
.w5{width:288.210000px;}
.w18{width:304.455000px;}
.w56{width:304.815000px;}
.w4{width:608.558037px;}
.w27{width:642.345000px;}
.w34{width:661.785000px;}
.w3a{width:664.845000px;}
.wa{width:670.785000px;}
.w1e{width:674.025000px;}
.w12{width:695.085000px;}
.w51{width:701.745000px;}
.w42{width:720.150000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:1.980000px;}
.x40{left:3.780000px;}
.x2e{left:5.220000px;}
.x7b{left:6.345000px;}
.x44{left:7.380000px;}
.x47{left:9.360000px;}
.x5e{left:10.980000px;}
.x25{left:12.600000px;}
.x43{left:14.220000px;}
.x33{left:15.480000px;}
.x4{left:16.920000px;}
.x3e{left:18.180000px;}
.x4a{left:19.305000px;}
.x35{left:21.060000px;}
.x31{left:22.320000px;}
.x4b{left:23.985000px;}
.x2a{left:25.560000px;}
.x16{left:26.820000px;}
.x2c{left:28.620000px;}
.x24{left:30.054000px;}
.x34{left:31.320000px;}
.x18{left:32.400000px;}
.x66{left:33.834000px;}
.x36{left:35.505000px;}
.x23{left:37.125000px;}
.x55{left:38.520000px;}
.x64{left:39.600000px;}
.xa{left:41.033469px;}
.x19{left:42.834000px;}
.x1e{left:45.585000px;}
.x22{left:47.205000px;}
.x37{left:48.960000px;}
.x1d{left:52.245000px;}
.xe{left:53.659154px;}
.x63{left:55.260000px;}
.x1c{left:56.925000px;}
.x21{left:58.545000px;}
.x1b{left:59.625000px;}
.x20{left:61.065000px;}
.xf{left:63.128418px;}
.x50{left:65.514000px;}
.x1{left:75.599987px;}
.x8{left:80.459987px;}
.xd{left:83.329515px;}
.x71{left:87.120000px;}
.x1f{left:88.410000px;}
.x5{left:90.395987px;}
.x81{left:95.250000px;}
.x7c{left:96.336000px;}
.x38{left:99.756000px;}
.x7a{left:108.576000px;}
.x4e{left:110.196000px;}
.x26{left:111.816000px;}
.x6d{left:114.876000px;}
.x65{left:116.316000px;}
.x14{left:124.374000px;}
.x28{left:126.174000px;}
.x13{left:129.276000px;}
.x7e{left:137.376000px;}
.x3b{left:139.536000px;}
.x9{left:142.815009px;}
.x62{left:159.690000px;}
.x57{left:172.830000px;}
.x70{left:176.610000px;}
.x59{left:177.699000px;}
.x4c{left:188.499000px;}
.x3c{left:190.830000px;}
.xb{left:199.612077px;}
.x73{left:202.350000px;}
.x58{left:216.579000px;}
.x88{left:217.659000px;}
.x6{left:219.449987px;}
.x32{left:222.510000px;}
.x4d{left:226.479000px;}
.x67{left:232.410000px;}
.x11{left:239.249987px;}
.x5a{left:246.810000px;}
.x3d{left:252.570000px;}
.x12{left:254.009987px;}
.x7f{left:256.170000px;}
.x1a{left:264.450000px;}
.x51{left:281.415000px;}
.x6f{left:283.575000px;}
.x7d{left:288.579000px;}
.x39{left:290.739000px;}
.x6e{left:299.559000px;}
.x27{left:305.139000px;}
.x4f{left:307.119000px;}
.x7{left:313.094987px;}
.x72{left:315.795000px;}
.x74{left:327.675000px;}
.x3f{left:331.275000px;}
.x87{left:333.399000px;}
.x68{left:337.395000px;}
.x80{left:341.355000px;}
.x29{left:365.115000px;}
.x5b{left:368.355000px;}
.x52{left:406.875000px;}
.x41{left:415.155000px;}
.x15{left:418.215000px;}
.xc{left:421.697884px;}
.x69{left:432.075000px;}
.x2b{left:469.365000px;}
.x5c{left:479.625000px;}
.x75{left:484.485000px;}
.x45{left:486.285000px;}
.x83{left:490.065000px;}
.x53{left:493.305000px;}
.x6a{left:516.165000px;}
.x76{left:536.145000px;}
.x2d{left:541.005000px;}
.x5d{left:550.365000px;}
.x46{left:554.145000px;}
.x84{left:564.585000px;}
.x48{left:593.925000px;}
.x77{left:595.725000px;}
.x5f{left:597.165000px;}
.x17{left:604.005000px;}
.x85{left:607.065000px;}
.x6b{left:610.665000px;}
.x54{left:612.285000px;}
.x2f{left:640.005000px;}
.x86{left:643.785000px;}
.x49{left:645.405000px;}
.x78{left:651.165000px;}
.x60{left:657.870000px;}
.x3{left:673.530000px;}
.x6c{left:694.770000px;}
.x56{left:698.550000px;}
.x30{left:711.690000px;}
.x61{left:718.530000px;}
.x42{left:720.330000px;}
.x82{left:721.410000px;}
.x10{left:751.469987px;}
.x79{left:756.330000px;}
.x2{left:791.249987px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v5{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls2{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.097067pt;}
.lsb{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.271467pt;}
.ls8{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.505661pt;}
.ls6{letter-spacing:0.640000pt;}
.ls7{letter-spacing:3.200000pt;}
.ws6{word-spacing:-39.221143pt;}
.ws4{word-spacing:-38.897001pt;}
.ws0{word-spacing:-16.271573pt;}
.wse{word-spacing:-14.991467pt;}
.wsf{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.448533pt;}
.wsa{word-spacing:-14.080000pt;}
.wsd{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.280000pt;}
.ws8{word-spacing:-10.229911pt;}
.ws7{word-spacing:-9.805286pt;}
.ws5{word-spacing:-9.724250pt;}
.ws1{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._10{margin-left:-4.923757pt;}
._e{margin-left:-3.774652pt;}
._f{margin-left:-2.542277pt;}
._0{margin-left:-0.929280pt;}
._1{width:1.717973pt;}
._4{width:3.343360pt;}
._7{width:4.828160pt;}
._6{width:5.875200pt;}
._8{width:6.817280pt;}
._a{width:7.713280pt;}
._b{width:8.949760pt;}
._c{width:10.127360pt;}
._11{width:11.077120pt;}
._5{width:12.129280pt;}
._9{width:13.529600pt;}
._d{width:16.192000pt;}
._13{width:17.251840pt;}
._14{width:18.250027pt;}
._3{width:19.581440pt;}
._2{width:21.314560pt;}
._15{width:22.433280pt;}
._16{width:23.869227pt;}
._12{width:25.082880pt;}
.fs8{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:38.897001pt;}
.fs6{font-size:39.221143pt;}
.fs4{font-size:43.759127pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:77.440000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:2.880000pt;}
.ye4{bottom:2.912000pt;}
.y69{bottom:3.200000pt;}
.y64{bottom:3.360000pt;}
.ybc{bottom:3.520000pt;}
.y65{bottom:3.840000pt;}
.yb6{bottom:4.000000pt;}
.yff{bottom:4.160000pt;}
.y6b{bottom:4.320000pt;}
.y72{bottom:4.480000pt;}
.y70{bottom:4.640000pt;}
.y6c{bottom:4.800000pt;}
.y115{bottom:4.960000pt;}
.y113{bottom:5.280000pt;}
.y6{bottom:5.920000pt;}
.y10d{bottom:6.400000pt;}
.ydc{bottom:6.560000pt;}
.y78{bottom:7.200000pt;}
.yee{bottom:8.800000pt;}
.y60{bottom:9.600000pt;}
.ycc{bottom:10.560000pt;}
.ybe{bottom:11.360000pt;}
.y100{bottom:11.680000pt;}
.y106{bottom:11.840000pt;}
.y62{bottom:12.640000pt;}
.y110{bottom:13.600000pt;}
.yd1{bottom:18.080000pt;}
.yb2{bottom:18.240000pt;}
.yc0{bottom:19.200000pt;}
.yb0{bottom:19.840000pt;}
.y99{bottom:20.000000pt;}
.yf4{bottom:20.160000pt;}
.y9b{bottom:20.800000pt;}
.yfe{bottom:20.960000pt;}
.y111{bottom:22.080000pt;}
.y67{bottom:23.514667pt;}
.y117{bottom:24.000000pt;}
.y6e{bottom:24.480000pt;}
.yce{bottom:26.080000pt;}
.yca{bottom:26.240000pt;}
.yfc{bottom:29.760000pt;}
.y10f{bottom:30.560000pt;}
.yd0{bottom:33.440000pt;}
.yaf{bottom:35.200000pt;}
.y75{bottom:37.600000pt;}
.y4{bottom:37.920000pt;}
.y112{bottom:39.040000pt;}
.y116{bottom:40.800000pt;}
.y3a{bottom:56.320000pt;}
.ye3{bottom:60.000000pt;}
.ya8{bottom:61.440000pt;}
.y6d{bottom:62.272000pt;}
.y140{bottom:63.392000pt;}
.y4f{bottom:66.357879pt;}
.y10b{bottom:69.312000pt;}
.y39{bottom:73.312000pt;}
.ye2{bottom:75.872000pt;}
.y4e{bottom:78.108015pt;}
.ya7{bottom:78.432000pt;}
.y13f{bottom:80.352000pt;}
.y102{bottom:80.954667pt;}
.y71{bottom:81.792000pt;}
.y10a{bottom:86.112000pt;}
.y4d{bottom:89.452974pt;}
.y38{bottom:90.112000pt;}
.ye1{bottom:91.872000pt;}
.ya6{bottom:95.232000pt;}
.y4c{bottom:101.203110pt;}
.y6f{bottom:101.792000pt;}
.y13e{bottom:105.152000pt;}
.ye0{bottom:107.872000pt;}
.y109{bottom:108.352000pt;}
.ya5{bottom:112.192000pt;}
.y4b{bottom:113.034281pt;}
.y37{bottom:114.752000pt;}
.y66{bottom:122.112000pt;}
.ydf{bottom:123.872000pt;}
.y49{bottom:124.460275pt;}
.y4a{bottom:124.784417pt;}
.y101{bottom:126.432000pt;}
.ya4{bottom:128.992000pt;}
.y36{bottom:131.872000pt;}
.yde{bottom:139.866667pt;}
.y6a{bottom:142.906667pt;}
.y108{bottom:143.866667pt;}
.ya3{bottom:145.946667pt;}
.y13d{bottom:146.746667pt;}
.y35{bottom:148.666667pt;}
.ydd{bottom:159.546667pt;}
.y68{bottom:162.586667pt;}
.ya2{bottom:162.746667pt;}
.y13c{bottom:171.706667pt;}
.y34{bottom:173.466667pt;}
.y107{bottom:178.266667pt;}
.y61{bottom:180.186667pt;}
.ya1{bottom:187.386667pt;}
.y13b{bottom:188.666667pt;}
.y33{bottom:190.426667pt;}
.ydb{bottom:190.906667pt;}
.y63{bottom:198.906667pt;}
.ya0{bottom:204.506667pt;}
.y32{bottom:207.226667pt;}
.y50{bottom:211.573351pt;}
.y105{bottom:212.666667pt;}
.y13a{bottom:213.466667pt;}
.y5f{bottom:216.506667pt;}
.y9f{bottom:221.306667pt;}
.yda{bottom:221.786667pt;}
.y31{bottom:224.186667pt;}
.y9e{bottom:238.266667pt;}
.yd9{bottom:238.746667pt;}
.y30{bottom:240.986667pt;}
.y48{bottom:246.256510pt;}
.y104{bottom:247.066667pt;}
.y5e{bottom:249.946667pt;}
.y139{bottom:255.226667pt;}
.y2f{bottom:257.946667pt;}
.y47{bottom:259.222178pt;}
.y9a{bottom:260.506667pt;}
.yd8{bottom:263.386667pt;}
.y5d{bottom:274.586667pt;}
.y2e{bottom:274.746667pt;}
.y9d{bottom:277.946667pt;}
.y138{bottom:280.026667pt;}
.y103{bottom:281.466667pt;}
.yd7{bottom:288.346667pt;}
.y2d{bottom:291.546667pt;}
.y5c{bottom:291.706667pt;}
.y9c{bottom:295.546667pt;}
.y137{bottom:296.986667pt;}
.yfb{bottom:299.586667pt;}
.yd6{bottom:305.346667pt;}
.y2c{bottom:308.546667pt;}
.y98{bottom:313.186667pt;}
.y136{bottom:313.986667pt;}
.yd5{bottom:322.306667pt;}
.y2b{bottom:325.346667pt;}
.y135{bottom:330.786667pt;}
.y5b{bottom:333.186667pt;}
.yfd{bottom:333.986667pt;}
.yd4{bottom:339.106667pt;}
.y2a{bottom:342.306667pt;}
.y97{bottom:347.586667pt;}
.yd3{bottom:355.906667pt;}
.y5a{bottom:358.146667pt;}
.y29{bottom:359.106667pt;}
.y134{bottom:364.546667pt;}
.yfa{bottom:370.146667pt;}
.y59{bottom:375.106667pt;}
.y28{bottom:375.906667pt;}
.y96{bottom:376.226667pt;}
.yd2{bottom:378.306667pt;}
.y133{bottom:381.346667pt;}
.y58{bottom:392.066667pt;}
.ycd{bottom:394.306667pt;}
.y132{bottom:398.306667pt;}
.yf9{bottom:400.066667pt;}
.y27{bottom:400.706667pt;}
.y95{bottom:401.026667pt;}
.y57{bottom:408.866667pt;}
.y131{bottom:415.106667pt;}
.yf8{bottom:417.186667pt;}
.y26{bottom:417.666667pt;}
.y56{bottom:425.666667pt;}
.y94{bottom:425.826667pt;}
.y130{bottom:431.906667pt;}
.yf7{bottom:433.986667pt;}
.y25{bottom:434.626667pt;}
.ycf{bottom:440.866667pt;}
.y55{bottom:442.626667pt;}
.y93{bottom:442.946667pt;}
.y12f{bottom:448.866667pt;}
.yf6{bottom:450.946667pt;}
.y24{bottom:451.426667pt;}
.yc9{bottom:456.866667pt;}
.y54{bottom:459.426667pt;}
.y92{bottom:459.746667pt;}
.y12e{bottom:465.666667pt;}
.yf5{bottom:467.746667pt;}
.y23{bottom:468.226667pt;}
.y53{bottom:476.386667pt;}
.y91{bottom:476.706667pt;}
.y12d{bottom:482.626667pt;}
.y22{bottom:485.186667pt;}
.ycb{bottom:488.226667pt;}
.yf3{bottom:489.986667pt;}
.y90{bottom:493.506667pt;}
.y12c{bottom:499.426667pt;}
.y52{bottom:501.026667pt;}
.y21{bottom:501.986667pt;}
.y8f{bottom:510.306667pt;}
.y51{bottom:514.786667pt;}
.y46{bottom:514.813333pt;}
.y12b{bottom:516.226667pt;}
.y20{bottom:518.946667pt;}
.yc8{bottom:519.586667pt;}
.yf2{bottom:524.386667pt;}
.y8e{bottom:527.266667pt;}
.y12a{bottom:541.053333pt;}
.yef{bottom:542.013333pt;}
.y8d{bottom:544.093333pt;}
.yc7{bottom:546.653333pt;}
.y1f{bottom:551.613333pt;}
.y129{bottom:558.013333pt;}
.yf1{bottom:559.453333pt;}
.y8c{bottom:561.053333pt;}
.yc6{bottom:563.773333pt;}
.y1e{bottom:568.733333pt;}
.y128{bottom:574.973333pt;}
.yf0{bottom:577.053333pt;}
.y8b{bottom:577.853333pt;}
.yc5{bottom:580.573333pt;}
.y127{bottom:591.773333pt;}
.y1d{bottom:593.373333pt;}
.yed{bottom:594.493333pt;}
.y8a{bottom:594.653333pt;}
.yc4{bottom:597.373333pt;}
.y126{bottom:608.733333pt;}
.y1c{bottom:610.333333pt;}
.y89{bottom:619.453333pt;}
.yc3{bottom:619.773333pt;}
.yec{bottom:623.133333pt;}
.y125{bottom:625.533333pt;}
.y1b{bottom:627.293333pt;}
.y88{bottom:636.413333pt;}
.yc2{bottom:637.213333pt;}
.y124{bottom:642.333333pt;}
.y1a{bottom:644.093333pt;}
.yeb{bottom:651.773333pt;}
.y87{bottom:653.373333pt;}
.ybf{bottom:653.853333pt;}
.y123{bottom:659.293333pt;}
.yea{bottom:668.733333pt;}
.y19{bottom:668.893333pt;}
.yc1{bottom:669.853333pt;}
.y86{bottom:670.173333pt;}
.y122{bottom:676.093333pt;}
.ye9{bottom:685.693333pt;}
.y18{bottom:685.853333pt;}
.y85{bottom:686.973333pt;}
.y121{bottom:693.053333pt;}
.y14c{bottom:695.293333pt;}
.ybd{bottom:702.493333pt;}
.y17{bottom:702.653333pt;}
.y84{bottom:703.933333pt;}
.y119{bottom:707.933333pt;}
.y120{bottom:717.693333pt;}
.y16{bottom:719.613333pt;}
.y14b{bottom:720.253333pt;}
.y83{bottom:720.733333pt;}
.y118{bottom:728.573333pt;}
.y11f{bottom:734.653333pt;}
.ybb{bottom:735.293333pt;}
.y15{bottom:736.413333pt;}
.y14a{bottom:745.213333pt;}
.y82{bottom:745.533333pt;}
.y11e{bottom:751.613333pt;}
.y14{bottom:753.373333pt;}
.y81{bottom:762.493333pt;}
.yba{bottom:762.973333pt;}
.y11d{bottom:768.413333pt;}
.y149{bottom:770.013333pt;}
.y13{bottom:778.053333pt;}
.y80{bottom:779.333333pt;}
.yb9{bottom:780.133333pt;}
.y10e{bottom:782.533333pt;}
.y11c{bottom:785.413333pt;}
.y148{bottom:787.013333pt;}
.y12{bottom:795.013333pt;}
.y7f{bottom:796.293333pt;}
.yb8{bottom:796.933333pt;}
.y11b{bottom:802.213333pt;}
.y147{bottom:811.813333pt;}
.y11{bottom:811.973333pt;}
.y7e{bottom:813.093333pt;}
.y114{bottom:816.933333pt;}
.y45{bottom:818.853333pt;}
.y11a{bottom:819.013333pt;}
.yb7{bottom:819.173333pt;}
.y10{bottom:828.773333pt;}
.y7d{bottom:830.053333pt;}
.y44{bottom:835.973333pt;}
.yb5{bottom:836.133333pt;}
.y10c{bottom:837.733333pt;}
.yf{bottom:845.733333pt;}
.y7c{bottom:846.853333pt;}
.y43{bottom:852.773333pt;}
.yb4{bottom:853.253333pt;}
.ye{bottom:862.533333pt;}
.y7b{bottom:863.813333pt;}
.yae{bottom:869.413333pt;}
.ye8{bottom:869.573333pt;}
.y146{bottom:870.373333pt;}
.y42{bottom:877.573333pt;}
.yd{bottom:879.333333pt;}
.y7a{bottom:880.613333pt;}
.ye7{bottom:886.533333pt;}
.y145{bottom:887.333333pt;}
.y41{bottom:894.533333pt;}
.yc{bottom:896.293333pt;}
.y79{bottom:897.413333pt;}
.yb1{bottom:900.773333pt;}
.ye6{bottom:903.333333pt;}
.y40{bottom:911.333333pt;}
.y144{bottom:912.133333pt;}
.yad{bottom:917.733333pt;}
.y74{bottom:919.653333pt;}
.ye5{bottom:928.133333pt;}
.y3f{bottom:928.293333pt;}
.y143{bottom:929.093333pt;}
.yb{bottom:934.213333pt;}
.y3e{bottom:945.093333pt;}
.yac{bottom:945.893333pt;}
.ya{bottom:951.333333pt;}
.y142{bottom:953.893333pt;}
.y3d{bottom:962.053333pt;}
.y77{bottom:965.093333pt;}
.y9{bottom:968.133333pt;}
.yab{bottom:970.693333pt;}
.y141{bottom:970.853333pt;}
.y3c{bottom:978.853333pt;}
.y76{bottom:985.573333pt;}
.yaa{bottom:987.813333pt;}
.y8{bottom:995.653333pt;}
.y3b{bottom:995.813333pt;}
.y73{bottom:1005.733333pt;}
.ya9{bottom:1012.480000pt;}
.y7{bottom:1012.640000pt;}
.y3{bottom:1030.240000pt;}
.y2{bottom:1047.680000pt;}
.y5{bottom:1050.400000pt;}
.y1{bottom:1066.720000pt;}
.h34{height:15.200000pt;}
.h36{height:15.232000pt;}
.h30{height:15.360000pt;}
.h2a{height:15.520000pt;}
.h2d{height:16.000000pt;}
.h25{height:16.320000pt;}
.h2c{height:16.480000pt;}
.h17{height:16.800000pt;}
.h24{height:16.832000pt;}
.h14{height:16.960000pt;}
.h3b{height:16.992000pt;}
.h41{height:17.440000pt;}
.h15{height:17.920000pt;}
.h3d{height:18.240000pt;}
.h1d{height:18.880000pt;}
.h43{height:18.912000pt;}
.h18{height:19.040000pt;}
.h1c{height:19.360000pt;}
.h1b{height:19.680000pt;}
.h20{height:19.840000pt;}
.h1e{height:19.872000pt;}
.h19{height:20.000000pt;}
.h5{height:20.960000pt;}
.h21{height:24.800000pt;}
.h9{height:25.918750pt;}
.h8{height:26.190625pt;}
.h11{height:27.159527pt;}
.he{height:27.444417pt;}
.h38{height:28.000000pt;}
.hf{height:28.318081pt;}
.h10{height:28.554065pt;}
.h12{height:29.440000pt;}
.h29{height:30.720000pt;}
.hd{height:30.874970pt;}
.h2e{height:32.000000pt;}
.h22{height:33.600000pt;}
.h3c{height:33.760000pt;}
.h3f{height:35.520000pt;}
.h13{height:35.680000pt;}
.h28{height:37.090625pt;}
.h35{height:37.479688pt;}
.hb{height:41.112500pt;}
.h7{height:41.543750pt;}
.h2b{height:42.691250pt;}
.h4{height:42.866250pt;}
.h26{height:42.944375pt;}
.h33{height:45.920000pt;}
.h6{height:46.593750pt;}
.h3a{height:47.038750pt;}
.h37{height:47.310625pt;}
.h27{height:47.680000pt;}
.h2f{height:48.000000pt;}
.ha{height:48.530000pt;}
.h39{height:51.840000pt;}
.h23{height:51.872000pt;}
.h42{height:54.400000pt;}
.h2{height:54.639063pt;}
.h16{height:57.280000pt;}
.h3{height:58.563750pt;}
.h1a{height:59.200000pt;}
.h32{height:61.920000pt;}
.h31{height:62.080000pt;}
.h3e{height:69.920000pt;}
.h1f{height:85.280000pt;}
.h40{height:172.480000pt;}
.hc{height:292.932912pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4f{width:18.272000pt;}
.w32{width:29.280000pt;}
.w5b{width:32.000000pt;}
.w13{width:34.560000pt;}
.w1c{width:34.720000pt;}
.w52{width:35.840000pt;}
.w5a{width:37.120000pt;}
.w2c{width:40.960000pt;}
.w4d{width:41.952000pt;}
.w31{width:44.320000pt;}
.w14{width:44.960000pt;}
.w47{width:45.280000pt;}
.w46{width:45.312000pt;}
.w53{width:46.720000pt;}
.w4c{width:48.640000pt;}
.w4e{width:50.240000pt;}
.w4b{width:52.320000pt;}
.w2f{width:53.280000pt;}
.w30{width:53.312000pt;}
.w2e{width:53.472000pt;}
.w15{width:54.080000pt;}
.w40{width:54.240000pt;}
.w25{width:54.880000pt;}
.w4a{width:55.072000pt;}
.w54{width:57.600000pt;}
.w1b{width:59.680000pt;}
.w2b{width:62.240000pt;}
.w1a{width:62.592000pt;}
.wd{width:63.040000pt;}
.wf{width:63.072000pt;}
.w55{width:65.440000pt;}
.w58{width:65.472000pt;}
.w59{width:65.600000pt;}
.w1d{width:65.952000pt;}
.w19{width:66.240000pt;}
.w57{width:68.160000pt;}
.w5c{width:68.192000pt;}
.w16{width:69.152000pt;}
.w17{width:73.920000pt;}
.w39{width:74.080000pt;}
.w38{width:74.112000pt;}
.w3f{width:75.040000pt;}
.w3d{width:75.072000pt;}
.w23{width:76.032000pt;}
.w24{width:76.160000pt;}
.w21{width:76.192000pt;}
.w33{width:76.800000pt;}
.w50{width:82.720000pt;}
.w37{width:83.360000pt;}
.we{width:87.200000pt;}
.wc{width:92.032000pt;}
.w36{width:92.672000pt;}
.w45{width:92.800000pt;}
.w41{width:94.432000pt;}
.w26{width:95.712000pt;}
.w49{width:96.160000pt;}
.w10{width:97.760000pt;}
.w2a{width:98.272000pt;}
.w43{width:101.792000pt;}
.w35{width:102.560000pt;}
.w3e{width:103.520000pt;}
.w22{width:105.120000pt;}
.w28{width:106.720000pt;}
.w29{width:107.392000pt;}
.w3c{width:109.440000pt;}
.w44{width:110.752000pt;}
.w20{width:110.880000pt;}
.w8{width:119.520000pt;}
.w11{width:125.952000pt;}
.w7{width:126.912000pt;}
.w3{width:134.240000pt;}
.w9{width:136.026667pt;}
.w48{width:144.186667pt;}
.w3b{width:149.306667pt;}
.w1f{width:151.386667pt;}
.w2d{width:152.186667pt;}
.w6{width:164.506667pt;}
.wb{width:224.346667pt;}
.w5{width:256.186667pt;}
.w18{width:270.626667pt;}
.w56{width:270.946667pt;}
.w4{width:540.940477pt;}
.w27{width:570.973333pt;}
.w34{width:588.253333pt;}
.w3a{width:590.973333pt;}
.wa{width:596.253333pt;}
.w1e{width:599.133333pt;}
.w12{width:617.853333pt;}
.w51{width:623.773333pt;}
.w42{width:640.133333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:1.760000pt;}
.x40{left:3.360000pt;}
.x2e{left:4.640000pt;}
.x7b{left:5.640000pt;}
.x44{left:6.560000pt;}
.x47{left:8.320000pt;}
.x5e{left:9.760000pt;}
.x25{left:11.200000pt;}
.x43{left:12.640000pt;}
.x33{left:13.760000pt;}
.x4{left:15.040000pt;}
.x3e{left:16.160000pt;}
.x4a{left:17.160000pt;}
.x35{left:18.720000pt;}
.x31{left:19.840000pt;}
.x4b{left:21.320000pt;}
.x2a{left:22.720000pt;}
.x16{left:23.840000pt;}
.x2c{left:25.440000pt;}
.x24{left:26.714667pt;}
.x34{left:27.840000pt;}
.x18{left:28.800000pt;}
.x66{left:30.074667pt;}
.x36{left:31.560000pt;}
.x23{left:33.000000pt;}
.x55{left:34.240000pt;}
.x64{left:35.200000pt;}
.xa{left:36.474194pt;}
.x19{left:38.074667pt;}
.x1e{left:40.520000pt;}
.x22{left:41.960000pt;}
.x37{left:43.520000pt;}
.x1d{left:46.440000pt;}
.xe{left:47.697026pt;}
.x63{left:49.120000pt;}
.x1c{left:50.600000pt;}
.x21{left:52.040000pt;}
.x1b{left:53.000000pt;}
.x20{left:54.280000pt;}
.xf{left:56.114149pt;}
.x50{left:58.234667pt;}
.x1{left:67.199988pt;}
.x8{left:71.519988pt;}
.xd{left:74.070680pt;}
.x71{left:77.440000pt;}
.x1f{left:78.586667pt;}
.x5{left:80.351988pt;}
.x81{left:84.666667pt;}
.x7c{left:85.632000pt;}
.x38{left:88.672000pt;}
.x7a{left:96.512000pt;}
.x4e{left:97.952000pt;}
.x26{left:99.392000pt;}
.x6d{left:102.112000pt;}
.x65{left:103.392000pt;}
.x14{left:110.554667pt;}
.x28{left:112.154667pt;}
.x13{left:114.912000pt;}
.x7e{left:122.112000pt;}
.x3b{left:124.032000pt;}
.x9{left:126.946675pt;}
.x62{left:141.946667pt;}
.x57{left:153.626667pt;}
.x70{left:156.986667pt;}
.x59{left:157.954667pt;}
.x4c{left:167.554667pt;}
.x3c{left:169.626667pt;}
.xb{left:177.432958pt;}
.x73{left:179.866667pt;}
.x58{left:192.514667pt;}
.x88{left:193.474667pt;}
.x6{left:195.066655pt;}
.x32{left:197.786667pt;}
.x4d{left:201.314667pt;}
.x67{left:206.586667pt;}
.x11{left:212.666655pt;}
.x5a{left:219.386667pt;}
.x3d{left:224.506667pt;}
.x12{left:225.786655pt;}
.x7f{left:227.706667pt;}
.x1a{left:235.066667pt;}
.x51{left:250.146667pt;}
.x6f{left:252.066667pt;}
.x7d{left:256.514667pt;}
.x39{left:258.434667pt;}
.x6e{left:266.274667pt;}
.x27{left:271.234667pt;}
.x4f{left:272.994667pt;}
.x7{left:278.306655pt;}
.x72{left:280.706667pt;}
.x74{left:291.266667pt;}
.x3f{left:294.466667pt;}
.x87{left:296.354667pt;}
.x68{left:299.906667pt;}
.x80{left:303.426667pt;}
.x29{left:324.546667pt;}
.x5b{left:327.426667pt;}
.x52{left:361.666667pt;}
.x41{left:369.026667pt;}
.x15{left:371.746667pt;}
.xc{left:374.842563pt;}
.x69{left:384.066667pt;}
.x2b{left:417.213333pt;}
.x5c{left:426.333333pt;}
.x75{left:430.653333pt;}
.x45{left:432.253333pt;}
.x83{left:435.613333pt;}
.x53{left:438.493333pt;}
.x6a{left:458.813333pt;}
.x76{left:476.573333pt;}
.x2d{left:480.893333pt;}
.x5d{left:489.213333pt;}
.x46{left:492.573333pt;}
.x84{left:501.853333pt;}
.x48{left:527.933333pt;}
.x77{left:529.533333pt;}
.x5f{left:530.813333pt;}
.x17{left:536.893333pt;}
.x85{left:539.613333pt;}
.x6b{left:542.813333pt;}
.x54{left:544.253333pt;}
.x2f{left:568.893333pt;}
.x86{left:572.253333pt;}
.x49{left:573.693333pt;}
.x78{left:578.813333pt;}
.x60{left:584.773333pt;}
.x3{left:598.693333pt;}
.x6c{left:617.573333pt;}
.x56{left:620.933333pt;}
.x30{left:632.613333pt;}
.x61{left:638.693333pt;}
.x42{left:640.293333pt;}
.x82{left:641.253333pt;}
.x10{left:667.973322pt;}
.x79{left:672.293333pt;}
.x2{left:703.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; }
  