
    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_9fb22c49b2ccd46ef3b71141.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_3a89517ed012f338e534a07d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a8913e60031541d68f0ca92f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_998573fe0ddc26f994217ae2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.747559;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_427f02f775db4fef2f5f586e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-1.260000px;}
.ls18{letter-spacing:-0.774000px;}
.ls12{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.460200px;}
.ls19{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.012960px;}
.ls13{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106800px;}
.ls1e{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.306600px;}
.ls1d{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.978000px;}
.ls0{letter-spacing:5.940000px;}
.ls1b{letter-spacing:16.506720px;}
.ls1{letter-spacing:22.986720px;}
.ls1a{letter-spacing:25.308000px;}
.ls15{letter-spacing:41.706720px;}
.ls14{letter-spacing:44.586720px;}
.ls2{letter-spacing:46.026720px;}
.ls3{letter-spacing:49.626720px;}
.ls16{letter-spacing:51.066720px;}
.lsc{letter-spacing:56.106720px;}
.lsd{letter-spacing:91.386720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.ws6{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.680200px;}
.ws11{word-spacing:-14.166000px;}
.wse{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.824000px;}
.wsf{word-spacing:-13.608000px;}
.wsd{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.ws12{word-spacing:-9.732960px;}
.ws2{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-2006.834400px;}
._28{margin-left:-1846.157040px;}
._2{margin-left:-1629.524160px;}
._3{margin-left:-1171.100160px;}
._4{margin-left:-1166.086080px;}
._29{margin-left:-1133.069760px;}
._5{margin-left:-523.450560px;}
._2a{margin-left:-171.164160px;}
._15{margin-left:-4.184880px;}
._9{margin-left:-3.097920px;}
._0{margin-left:-1.347840px;}
._6{width:1.006320px;}
._7{width:2.520240px;}
._a{width:3.558000px;}
._d{width:4.670880px;}
._8{width:6.185760px;}
._e{width:7.564560px;}
._f{width:8.716560px;}
._13{width:9.750480px;}
._c{width:11.294640px;}
._b{width:12.549600px;}
._20{width:13.923600px;}
._12{width:16.673040px;}
._35{width:17.710320px;}
._17{width:18.834000px;}
._21{width:20.258640px;}
._24{width:22.163520px;}
._14{width:23.605200px;}
._16{width:24.690480px;}
._25{width:26.269440px;}
._2f{width:27.387360px;}
._2c{width:28.451760px;}
._2b{width:29.853120px;}
._32{width:30.863760px;}
._31{width:32.299920px;}
._33{width:33.345360px;}
._1b{width:34.605360px;}
._1a{width:35.925360px;}
._23{width:37.580160px;}
._19{width:38.784240px;}
._18{width:39.859920px;}
._1d{width:41.832000px;}
._1c{width:42.907680px;}
._2e{width:44.008560px;}
._2d{width:45.348240px;}
._22{width:46.443120px;}
._1f{width:47.568960px;}
._1e{width:49.182480px;}
._34{width:50.258160px;}
._30{width:51.821520px;}
._3a{width:53.160720px;}
._39{width:54.321840px;}
._11{width:55.765680px;}
._10{width:57.020640px;}
._3b{width:58.299360px;}
._48{width:59.530560px;}
._44{width:60.656400px;}
._38{width:63.594240px;}
._45{width:66.871440px;}
._3d{width:68.633280px;}
._49{width:72.214800px;}
._47{width:73.325520px;}
._46{width:74.460960px;}
._37{width:77.518560px;}
._36{width:78.630720px;}
._3c{width:89.341200px;}
._27{width:90.897360px;}
._26{width:92.686560px;}
._42{width:100.406400px;}
._4a{width:110.505840px;}
._40{width:120.372480px;}
._43{width:130.276800px;}
._3f{width:163.225440px;}
._3e{width:182.507040px;}
._41{width:257.983920px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y99{bottom:5.760000px;}
.y7{bottom:5.940000px;}
.y9b{bottom:10.980000px;}
.y9{bottom:11.160000px;}
.y9a{bottom:11.700000px;}
.y8{bottom:11.880000px;}
.ye9{bottom:19.800000px;}
.yf0{bottom:22.350000px;}
.ye3{bottom:25.560000px;}
.y10f{bottom:25.590000px;}
.ydd{bottom:25.740000px;}
.ya{bottom:39.600000px;}
.yef{bottom:42.150000px;}
.ye2{bottom:45.360000px;}
.yf9{bottom:45.405000px;}
.yf3{bottom:45.540000px;}
.y10e{bottom:45.570000px;}
.y6{bottom:55.260000px;}
.ye8{bottom:59.400000px;}
.y9c{bottom:61.380000px;}
.yee{bottom:62.130000px;}
.ye1{bottom:65.340000px;}
.y10d{bottom:65.370000px;}
.yf8{bottom:65.385000px;}
.y98{bottom:77.040000px;}
.ye7{bottom:79.200000px;}
.yed{bottom:81.930000px;}
.y3a{bottom:82.800000px;}
.ye0{bottom:85.140000px;}
.yf7{bottom:85.185000px;}
.y13c{bottom:89.640000px;}
.y72{bottom:92.700000px;}
.y16c{bottom:94.680000px;}
.y97{bottom:96.120000px;}
.ye6{bottom:99.000000px;}
.yec{bottom:101.730000px;}
.y39{bottom:102.600000px;}
.ydf{bottom:104.940000px;}
.yf6{bottom:104.985000px;}
.y113{bottom:105.120000px;}
.y13b{bottom:109.620000px;}
.y71{bottom:112.500000px;}
.ydb{bottom:114.300000px;}
.y16b{bottom:114.480000px;}
.y101{bottom:115.740000px;}
.y96{bottom:115.920000px;}
.yad{bottom:118.440000px;}
.ye5{bottom:119.025000px;}
.yeb{bottom:121.530000px;}
.y38{bottom:122.400000px;}
.yfc{bottom:124.740000px;}
.yf5{bottom:124.785000px;}
.yf2{bottom:124.920000px;}
.y13a{bottom:129.420000px;}
.y70{bottom:132.300000px;}
.yda{bottom:134.280000px;}
.y100{bottom:135.540000px;}
.y95{bottom:135.900000px;}
.yac{bottom:138.240000px;}
.y10c{bottom:139.500000px;}
.y37{bottom:142.200000px;}
.yc6{bottom:143.280000px;}
.yfb{bottom:144.720000px;}
.yb1{bottom:147.240000px;}
.y139{bottom:149.220000px;}
.y6f{bottom:152.310000px;}
.yd9{bottom:154.110000px;}
.y16a{bottom:154.290000px;}
.yff{bottom:155.370000px;}
.y94{bottom:155.730000px;}
.yab{bottom:158.070000px;}
.y36{bottom:162.210000px;}
.yc5{bottom:163.110000px;}
.yb0{bottom:167.070000px;}
.y138{bottom:169.050000px;}
.y6e{bottom:172.110000px;}
.yd8{bottom:173.910000px;}
.y169{bottom:174.090000px;}
.yfe{bottom:175.350000px;}
.y93{bottom:175.530000px;}
.yaa{bottom:177.870000px;}
.y35{bottom:182.010000px;}
.yc4{bottom:182.910000px;}
.yaf{bottom:186.870000px;}
.y137{bottom:188.850000px;}
.y6d{bottom:191.910000px;}
.yd7{bottom:193.710000px;}
.y168{bottom:193.890000px;}
.yfd{bottom:195.150000px;}
.y92{bottom:195.330000px;}
.ya9{bottom:197.670000px;}
.y34{bottom:201.810000px;}
.yc3{bottom:202.710000px;}
.yae{bottom:206.670000px;}
.y136{bottom:208.830000px;}
.yfa{bottom:209.910000px;}
.y6c{bottom:211.710000px;}
.yd6{bottom:213.510000px;}
.y167{bottom:213.690000px;}
.y91{bottom:215.130000px;}
.y10b{bottom:219.630000px;}
.y33{bottom:221.610000px;}
.yc2{bottom:222.510000px;}
.ya8{bottom:226.650000px;}
.y135{bottom:228.630000px;}
.y6b{bottom:231.510000px;}
.yd5{bottom:233.490000px;}
.y90{bottom:235.110000px;}
.y32{bottom:241.410000px;}
.yc1{bottom:242.490000px;}
.ya7{bottom:246.450000px;}
.y134{bottom:248.430000px;}
.y6a{bottom:251.490000px;}
.yd4{bottom:253.290000px;}
.y166{bottom:253.470000px;}
.y8f{bottom:254.910000px;}
.y31{bottom:261.390000px;}
.yc0{bottom:262.290000px;}
.ya6{bottom:266.250000px;}
.y133{bottom:268.230000px;}
.y69{bottom:271.290000px;}
.yd3{bottom:273.090000px;}
.y165{bottom:273.270000px;}
.y8e{bottom:274.710000px;}
.y30{bottom:281.190000px;}
.ybf{bottom:282.090000px;}
.y10a{bottom:285.690000px;}
.ya5{bottom:286.050000px;}
.y132{bottom:288.030000px;}
.y68{bottom:291.090000px;}
.yd2{bottom:292.890000px;}
.y164{bottom:293.070000px;}
.y8d{bottom:294.510000px;}
.y2f{bottom:300.990000px;}
.ybe{bottom:301.890000px;}
.y109{bottom:305.490000px;}
.ya4{bottom:305.850000px;}
.y131{bottom:308.010000px;}
.y67{bottom:310.890000px;}
.yd1{bottom:312.690000px;}
.y163{bottom:312.870000px;}
.y8c{bottom:314.310000px;}
.y2e{bottom:320.790000px;}
.ybd{bottom:321.690000px;}
.y108{bottom:325.290000px;}
.ya3{bottom:325.830000px;}
.y130{bottom:327.810000px;}
.y66{bottom:330.690000px;}
.yd0{bottom:332.670000px;}
.y8b{bottom:334.290000px;}
.y2d{bottom:340.590000px;}
.ybc{bottom:341.670000px;}
.y107{bottom:345.270000px;}
.ya2{bottom:345.630000px;}
.y12f{bottom:347.610000px;}
.y65{bottom:350.670000px;}
.y162{bottom:352.650000px;}
.y8a{bottom:354.090000px;}
.y2c{bottom:360.570000px;}
.ybb{bottom:361.470000px;}
.y106{bottom:365.070000px;}
.ya1{bottom:365.430000px;}
.y12e{bottom:367.410000px;}
.yf4{bottom:369.390000px;}
.y64{bottom:370.470000px;}
.y161{bottom:372.450000px;}
.y89{bottom:373.890000px;}
.y2b{bottom:380.370000px;}
.yba{bottom:381.270000px;}
.y105{bottom:384.870000px;}
.ya0{bottom:385.230000px;}
.y12d{bottom:387.210000px;}
.y63{bottom:390.270000px;}
.y160{bottom:392.250000px;}
.y88{bottom:393.690000px;}
.y2a{bottom:400.170000px;}
.yb9{bottom:401.115000px;}
.y104{bottom:404.715000px;}
.y9f{bottom:405.075000px;}
.y12c{bottom:407.235000px;}
.y62{bottom:410.115000px;}
.y15f{bottom:412.095000px;}
.y87{bottom:413.535000px;}
.y29{bottom:420.015000px;}
.yb8{bottom:420.915000px;}
.y103{bottom:424.515000px;}
.y9e{bottom:425.055000px;}
.y12b{bottom:427.035000px;}
.y61{bottom:429.915000px;}
.y15e{bottom:431.895000px;}
.y86{bottom:433.515000px;}
.y28{bottom:439.815000px;}
.yb7{bottom:440.895000px;}
.y102{bottom:441.075000px;}
.y9d{bottom:441.615000px;}
.y12a{bottom:446.835000px;}
.y60{bottom:449.895000px;}
.y15d{bottom:451.875000px;}
.y85{bottom:453.315000px;}
.y27{bottom:459.795000px;}
.yb6{bottom:460.695000px;}
.y129{bottom:466.635000px;}
.y5f{bottom:469.695000px;}
.y15c{bottom:471.675000px;}
.y84{bottom:473.115000px;}
.y26{bottom:479.595000px;}
.yb5{bottom:480.495000px;}
.y128{bottom:486.435000px;}
.y5e{bottom:489.495000px;}
.y15b{bottom:491.475000px;}
.y83{bottom:492.915000px;}
.y25{bottom:499.395000px;}
.yb4{bottom:500.295000px;}
.y127{bottom:506.415000px;}
.yf1{bottom:508.935000px;}
.y5d{bottom:509.295000px;}
.y15a{bottom:511.275000px;}
.y82{bottom:512.715000px;}
.y24{bottom:519.195000px;}
.yb3{bottom:520.095000px;}
.y126{bottom:526.215000px;}
.y5c{bottom:529.095000px;}
.y159{bottom:531.075000px;}
.y81{bottom:532.695000px;}
.y23{bottom:538.995000px;}
.yb2{bottom:540.075000px;}
.y125{bottom:546.015000px;}
.y5b{bottom:549.075000px;}
.y158{bottom:551.055000px;}
.y80{bottom:552.495000px;}
.y22{bottom:558.975000px;}
.ycf{bottom:559.875000px;}
.y124{bottom:565.815000px;}
.y5a{bottom:568.875000px;}
.y157{bottom:570.855000px;}
.y7f{bottom:572.295000px;}
.y21{bottom:578.775000px;}
.yce{bottom:579.675000px;}
.y123{bottom:585.615000px;}
.y59{bottom:588.675000px;}
.y156{bottom:590.655000px;}
.y7e{bottom:592.095000px;}
.y20{bottom:598.575000px;}
.ycd{bottom:599.475000px;}
.y122{bottom:605.595000px;}
.y58{bottom:608.475000px;}
.y155{bottom:610.455000px;}
.y7d{bottom:611.895000px;}
.ycc{bottom:619.275000px;}
.y1f{bottom:620.715000px;}
.y121{bottom:625.395000px;}
.y57{bottom:628.275000px;}
.y154{bottom:630.255000px;}
.y7c{bottom:631.875000px;}
.ycb{bottom:639.255000px;}
.y1e{bottom:640.515000px;}
.y120{bottom:645.195000px;}
.y56{bottom:648.255000px;}
.yea{bottom:648.615000px;}
.y153{bottom:650.265000px;}
.y7b{bottom:651.705000px;}
.yca{bottom:659.085000px;}
.y1d{bottom:660.345000px;}
.y11f{bottom:665.025000px;}
.y55{bottom:668.085000px;}
.y152{bottom:670.065000px;}
.y7a{bottom:671.505000px;}
.yc9{bottom:678.885000px;}
.y1c{bottom:680.145000px;}
.y11e{bottom:684.825000px;}
.y54{bottom:687.885000px;}
.y151{bottom:689.865000px;}
.y79{bottom:691.305000px;}
.yc8{bottom:698.685000px;}
.y1b{bottom:700.125000px;}
.y11d{bottom:704.805000px;}
.y53{bottom:707.685000px;}
.y150{bottom:709.665000px;}
.y78{bottom:711.105000px;}
.yc7{bottom:718.485000px;}
.y1a{bottom:719.925000px;}
.y11c{bottom:724.605000px;}
.y52{bottom:727.485000px;}
.y14f{bottom:729.465000px;}
.y77{bottom:731.085000px;}
.y19{bottom:739.725000px;}
.y11b{bottom:744.405000px;}
.y51{bottom:747.465000px;}
.y14e{bottom:749.445000px;}
.y76{bottom:750.885000px;}
.y18{bottom:759.525000px;}
.y11a{bottom:764.205000px;}
.y50{bottom:767.265000px;}
.y14d{bottom:769.245000px;}
.y75{bottom:770.685000px;}
.y17{bottom:779.325000px;}
.y119{bottom:784.005000px;}
.ye4{bottom:784.905000px;}
.y4f{bottom:787.065000px;}
.y14c{bottom:789.045000px;}
.y74{bottom:790.485000px;}
.y16{bottom:799.305000px;}
.y118{bottom:803.985000px;}
.y4e{bottom:806.865000px;}
.y73{bottom:807.225000px;}
.y14b{bottom:808.845000px;}
.y15{bottom:819.105000px;}
.y117{bottom:823.785000px;}
.y4d{bottom:826.665000px;}
.y14a{bottom:828.645000px;}
.y14{bottom:838.905000px;}
.y116{bottom:843.585000px;}
.y4c{bottom:846.645000px;}
.y149{bottom:848.625000px;}
.y13{bottom:858.705000px;}
.y115{bottom:863.385000px;}
.y4b{bottom:866.445000px;}
.y148{bottom:868.425000px;}
.y12{bottom:878.505000px;}
.y114{bottom:883.185000px;}
.y4a{bottom:886.245000px;}
.y147{bottom:888.225000px;}
.y112{bottom:897.990000px;}
.y11{bottom:898.350000px;}
.y49{bottom:906.090000px;}
.y146{bottom:908.070000px;}
.yde{bottom:918.690000px;}
.y10{bottom:920.490000px;}
.y48{bottom:925.890000px;}
.y145{bottom:927.870000px;}
.yf{bottom:945.510000px;}
.y47{bottom:945.870000px;}
.y144{bottom:947.850000px;}
.ye{bottom:965.490000px;}
.y46{bottom:965.670000px;}
.y143{bottom:967.650000px;}
.yd{bottom:980.610000px;}
.y45{bottom:985.470000px;}
.y142{bottom:987.450000px;}
.yc{bottom:1001.850000px;}
.y44{bottom:1005.270000px;}
.y141{bottom:1007.250000px;}
.y111{bottom:1017.870000px;}
.y43{bottom:1025.070000px;}
.yb{bottom:1025.250000px;}
.y140{bottom:1027.050000px;}
.ydc{bottom:1038.390000px;}
.y42{bottom:1045.050000px;}
.y13f{bottom:1047.030000px;}
.y5{bottom:1053.510000px;}
.y41{bottom:1064.850000px;}
.y13e{bottom:1066.830000px;}
.y40{bottom:1084.650000px;}
.y4{bottom:1085.910000px;}
.y13d{bottom:1086.090000px;}
.y110{bottom:1097.970000px;}
.y3f{bottom:1104.450000px;}
.y3{bottom:1116.870000px;}
.y3e{bottom:1124.250000px;}
.y3d{bottom:1144.230000px;}
.y2{bottom:1147.680000px;}
.y3c{bottom:1164.060000px;}
.y1{bottom:1180.260000px;}
.y3b{bottom:1193.400000px;}
.h10{height:21.240000px;}
.h5{height:21.420000px;}
.h8{height:27.432422px;}
.h7{height:29.464453px;}
.hd{height:32.425313px;}
.h11{height:39.780000px;}
.hb{height:42.164648px;}
.he{height:43.506914px;}
.h1c{height:45.035156px;}
.h3{height:46.736719px;}
.h4{height:49.838906px;}
.hc{height:53.224453px;}
.h1d{height:53.305313px;}
.h6{height:55.243125px;}
.h2{height:59.436914px;}
.h18{height:59.580000px;}
.hf{height:60.046875px;}
.h9{height:65.884219px;}
.ha{height:67.565039px;}
.h1a{height:79.380000px;}
.h19{height:79.416000px;}
.h12{height:118.980000px;}
.h1b{height:119.160000px;}
.h13{height:133.056000px;}
.h14{height:135.576000px;}
.h16{height:138.816000px;}
.h15{height:138.960000px;}
.h17{height:158.760000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:57.816000px;}
.wb{width:66.816000px;}
.w7{width:79.740000px;}
.w5{width:100.620000px;}
.w9{width:107.280000px;}
.w8{width:120.816000px;}
.wa{width:154.650000px;}
.wc{width:167.580000px;}
.w6{width:593.385000px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1d{left:34.740000px;}
.x1f{left:48.239987px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x20{left:75.239987px;}
.x13{left:80.999987px;}
.x22{left:96.336000px;}
.x1b{left:99.216000px;}
.x9{left:103.895987px;}
.x12{left:108.035987px;}
.x19{left:111.275987px;}
.x4{left:120.636000px;}
.x23{left:176.790000px;}
.x1c{left:200.550000px;}
.xd{left:215.129987px;}
.xb{left:218.369987px;}
.xc{left:219.449987px;}
.x21{left:240.869987px;}
.x8{left:277.599000px;}
.x24{left:298.335000px;}
.x1e{left:324.074987px;}
.x1a{left:390.854987px;}
.x7{left:406.149000px;}
.x6{left:413.529000px;}
.x5{left:427.029000px;}
.xa{left:446.504987px;}
.x11{left:461.229000px;}
.xe{left:473.504987px;}
.x16{left:484.304987px;}
.x15{left:488.444987px;}
.x14{left:492.584987px;}
.xf{left:500.504987px;}
.x10{left:527.504987px;}
.x25{left:561.705000px;}
.x26{left:629.250000px;}
.x17{left:714.929987px;}
.x18{left:754.889987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-1.120000pt;}
.ls18{letter-spacing:-0.688000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls19{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.011520pt;}
.ls13{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094933pt;}
.ls1e{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.272533pt;}
.ls1d{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.869333pt;}
.ls0{letter-spacing:5.280000pt;}
.ls1b{letter-spacing:14.672640pt;}
.ls1{letter-spacing:20.432640pt;}
.ls1a{letter-spacing:22.496000pt;}
.ls15{letter-spacing:37.072640pt;}
.ls14{letter-spacing:39.632640pt;}
.ls2{letter-spacing:40.912640pt;}
.ls3{letter-spacing:44.112640pt;}
.ls16{letter-spacing:45.392640pt;}
.lsc{letter-spacing:49.872640pt;}
.lsd{letter-spacing:81.232640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.ws6{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.049067pt;}
.ws11{word-spacing:-12.592000pt;}
.wse{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.288000pt;}
.wsf{word-spacing:-12.096000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws12{word-spacing:-8.651520pt;}
.ws2{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-1783.852800pt;}
._28{margin-left:-1641.028480pt;}
._2{margin-left:-1448.465920pt;}
._3{margin-left:-1040.977920pt;}
._4{margin-left:-1036.520960pt;}
._29{margin-left:-1007.173120pt;}
._5{margin-left:-465.289387pt;}
._2a{margin-left:-152.145920pt;}
._15{margin-left:-3.719893pt;}
._9{margin-left:-2.753707pt;}
._0{margin-left:-1.198080pt;}
._6{width:0.894507pt;}
._7{width:2.240213pt;}
._a{width:3.162667pt;}
._d{width:4.151893pt;}
._8{width:5.498453pt;}
._e{width:6.724053pt;}
._f{width:7.748053pt;}
._13{width:8.667093pt;}
._c{width:10.039680pt;}
._b{width:11.155200pt;}
._20{width:12.376533pt;}
._12{width:14.820480pt;}
._35{width:15.742507pt;}
._17{width:16.741333pt;}
._21{width:18.007680pt;}
._24{width:19.700907pt;}
._14{width:20.982400pt;}
._16{width:21.947093pt;}
._25{width:23.350613pt;}
._2f{width:24.344320pt;}
._2c{width:25.290453pt;}
._2b{width:26.536107pt;}
._32{width:27.434453pt;}
._31{width:28.711040pt;}
._33{width:29.640320pt;}
._1b{width:30.760320pt;}
._1a{width:31.933653pt;}
._23{width:33.404587pt;}
._19{width:34.474880pt;}
._18{width:35.431040pt;}
._1d{width:37.184000pt;}
._1c{width:38.140160pt;}
._2e{width:39.118720pt;}
._2d{width:40.309547pt;}
._22{width:41.282773pt;}
._1f{width:42.283520pt;}
._1e{width:43.717760pt;}
._34{width:44.673920pt;}
._30{width:46.063573pt;}
._3a{width:47.253973pt;}
._39{width:48.286080pt;}
._11{width:49.569493pt;}
._10{width:50.685013pt;}
._3b{width:51.821653pt;}
._48{width:52.916053pt;}
._44{width:53.916800pt;}
._38{width:56.528213pt;}
._45{width:59.441280pt;}
._3d{width:61.007360pt;}
._49{width:64.190933pt;}
._47{width:65.178240pt;}
._46{width:66.187520pt;}
._37{width:68.905387pt;}
._36{width:69.893973pt;}
._3c{width:79.414400pt;}
._27{width:80.797653pt;}
._26{width:82.388053pt;}
._42{width:89.250133pt;}
._4a{width:98.227413pt;}
._40{width:106.997760pt;}
._43{width:115.801600pt;}
._3f{width:145.089280pt;}
._3e{width:162.228480pt;}
._41{width:229.319040pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:5.120000pt;}
.y7{bottom:5.280000pt;}
.y9b{bottom:9.760000pt;}
.y9{bottom:9.920000pt;}
.y9a{bottom:10.400000pt;}
.y8{bottom:10.560000pt;}
.ye9{bottom:17.600000pt;}
.yf0{bottom:19.866667pt;}
.ye3{bottom:22.720000pt;}
.y10f{bottom:22.746667pt;}
.ydd{bottom:22.880000pt;}
.ya{bottom:35.200000pt;}
.yef{bottom:37.466667pt;}
.ye2{bottom:40.320000pt;}
.yf9{bottom:40.360000pt;}
.yf3{bottom:40.480000pt;}
.y10e{bottom:40.506667pt;}
.y6{bottom:49.120000pt;}
.ye8{bottom:52.800000pt;}
.y9c{bottom:54.560000pt;}
.yee{bottom:55.226667pt;}
.ye1{bottom:58.080000pt;}
.y10d{bottom:58.106667pt;}
.yf8{bottom:58.120000pt;}
.y98{bottom:68.480000pt;}
.ye7{bottom:70.400000pt;}
.yed{bottom:72.826667pt;}
.y3a{bottom:73.600000pt;}
.ye0{bottom:75.680000pt;}
.yf7{bottom:75.720000pt;}
.y13c{bottom:79.680000pt;}
.y72{bottom:82.400000pt;}
.y16c{bottom:84.160000pt;}
.y97{bottom:85.440000pt;}
.ye6{bottom:88.000000pt;}
.yec{bottom:90.426667pt;}
.y39{bottom:91.200000pt;}
.ydf{bottom:93.280000pt;}
.yf6{bottom:93.320000pt;}
.y113{bottom:93.440000pt;}
.y13b{bottom:97.440000pt;}
.y71{bottom:100.000000pt;}
.ydb{bottom:101.600000pt;}
.y16b{bottom:101.760000pt;}
.y101{bottom:102.880000pt;}
.y96{bottom:103.040000pt;}
.yad{bottom:105.280000pt;}
.ye5{bottom:105.800000pt;}
.yeb{bottom:108.026667pt;}
.y38{bottom:108.800000pt;}
.yfc{bottom:110.880000pt;}
.yf5{bottom:110.920000pt;}
.yf2{bottom:111.040000pt;}
.y13a{bottom:115.040000pt;}
.y70{bottom:117.600000pt;}
.yda{bottom:119.360000pt;}
.y100{bottom:120.480000pt;}
.y95{bottom:120.800000pt;}
.yac{bottom:122.880000pt;}
.y10c{bottom:124.000000pt;}
.y37{bottom:126.400000pt;}
.yc6{bottom:127.360000pt;}
.yfb{bottom:128.640000pt;}
.yb1{bottom:130.880000pt;}
.y139{bottom:132.640000pt;}
.y6f{bottom:135.386667pt;}
.yd9{bottom:136.986667pt;}
.y16a{bottom:137.146667pt;}
.yff{bottom:138.106667pt;}
.y94{bottom:138.426667pt;}
.yab{bottom:140.506667pt;}
.y36{bottom:144.186667pt;}
.yc5{bottom:144.986667pt;}
.yb0{bottom:148.506667pt;}
.y138{bottom:150.266667pt;}
.y6e{bottom:152.986667pt;}
.yd8{bottom:154.586667pt;}
.y169{bottom:154.746667pt;}
.yfe{bottom:155.866667pt;}
.y93{bottom:156.026667pt;}
.yaa{bottom:158.106667pt;}
.y35{bottom:161.786667pt;}
.yc4{bottom:162.586667pt;}
.yaf{bottom:166.106667pt;}
.y137{bottom:167.866667pt;}
.y6d{bottom:170.586667pt;}
.yd7{bottom:172.186667pt;}
.y168{bottom:172.346667pt;}
.yfd{bottom:173.466667pt;}
.y92{bottom:173.626667pt;}
.ya9{bottom:175.706667pt;}
.y34{bottom:179.386667pt;}
.yc3{bottom:180.186667pt;}
.yae{bottom:183.706667pt;}
.y136{bottom:185.626667pt;}
.yfa{bottom:186.586667pt;}
.y6c{bottom:188.186667pt;}
.yd6{bottom:189.786667pt;}
.y167{bottom:189.946667pt;}
.y91{bottom:191.226667pt;}
.y10b{bottom:195.226667pt;}
.y33{bottom:196.986667pt;}
.yc2{bottom:197.786667pt;}
.ya8{bottom:201.466667pt;}
.y135{bottom:203.226667pt;}
.y6b{bottom:205.786667pt;}
.yd5{bottom:207.546667pt;}
.y90{bottom:208.986667pt;}
.y32{bottom:214.586667pt;}
.yc1{bottom:215.546667pt;}
.ya7{bottom:219.066667pt;}
.y134{bottom:220.826667pt;}
.y6a{bottom:223.546667pt;}
.yd4{bottom:225.146667pt;}
.y166{bottom:225.306667pt;}
.y8f{bottom:226.586667pt;}
.y31{bottom:232.346667pt;}
.yc0{bottom:233.146667pt;}
.ya6{bottom:236.666667pt;}
.y133{bottom:238.426667pt;}
.y69{bottom:241.146667pt;}
.yd3{bottom:242.746667pt;}
.y165{bottom:242.906667pt;}
.y8e{bottom:244.186667pt;}
.y30{bottom:249.946667pt;}
.ybf{bottom:250.746667pt;}
.y10a{bottom:253.946667pt;}
.ya5{bottom:254.266667pt;}
.y132{bottom:256.026667pt;}
.y68{bottom:258.746667pt;}
.yd2{bottom:260.346667pt;}
.y164{bottom:260.506667pt;}
.y8d{bottom:261.786667pt;}
.y2f{bottom:267.546667pt;}
.ybe{bottom:268.346667pt;}
.y109{bottom:271.546667pt;}
.ya4{bottom:271.866667pt;}
.y131{bottom:273.786667pt;}
.y67{bottom:276.346667pt;}
.yd1{bottom:277.946667pt;}
.y163{bottom:278.106667pt;}
.y8c{bottom:279.386667pt;}
.y2e{bottom:285.146667pt;}
.ybd{bottom:285.946667pt;}
.y108{bottom:289.146667pt;}
.ya3{bottom:289.626667pt;}
.y130{bottom:291.386667pt;}
.y66{bottom:293.946667pt;}
.yd0{bottom:295.706667pt;}
.y8b{bottom:297.146667pt;}
.y2d{bottom:302.746667pt;}
.ybc{bottom:303.706667pt;}
.y107{bottom:306.906667pt;}
.ya2{bottom:307.226667pt;}
.y12f{bottom:308.986667pt;}
.y65{bottom:311.706667pt;}
.y162{bottom:313.466667pt;}
.y8a{bottom:314.746667pt;}
.y2c{bottom:320.506667pt;}
.ybb{bottom:321.306667pt;}
.y106{bottom:324.506667pt;}
.ya1{bottom:324.826667pt;}
.y12e{bottom:326.586667pt;}
.yf4{bottom:328.346667pt;}
.y64{bottom:329.306667pt;}
.y161{bottom:331.066667pt;}
.y89{bottom:332.346667pt;}
.y2b{bottom:338.106667pt;}
.yba{bottom:338.906667pt;}
.y105{bottom:342.106667pt;}
.ya0{bottom:342.426667pt;}
.y12d{bottom:344.186667pt;}
.y63{bottom:346.906667pt;}
.y160{bottom:348.666667pt;}
.y88{bottom:349.946667pt;}
.y2a{bottom:355.706667pt;}
.yb9{bottom:356.546667pt;}
.y104{bottom:359.746667pt;}
.y9f{bottom:360.066667pt;}
.y12c{bottom:361.986667pt;}
.y62{bottom:364.546667pt;}
.y15f{bottom:366.306667pt;}
.y87{bottom:367.586667pt;}
.y29{bottom:373.346667pt;}
.yb8{bottom:374.146667pt;}
.y103{bottom:377.346667pt;}
.y9e{bottom:377.826667pt;}
.y12b{bottom:379.586667pt;}
.y61{bottom:382.146667pt;}
.y15e{bottom:383.906667pt;}
.y86{bottom:385.346667pt;}
.y28{bottom:390.946667pt;}
.yb7{bottom:391.906667pt;}
.y102{bottom:392.066667pt;}
.y9d{bottom:392.546667pt;}
.y12a{bottom:397.186667pt;}
.y60{bottom:399.906667pt;}
.y15d{bottom:401.666667pt;}
.y85{bottom:402.946667pt;}
.y27{bottom:408.706667pt;}
.yb6{bottom:409.506667pt;}
.y129{bottom:414.786667pt;}
.y5f{bottom:417.506667pt;}
.y15c{bottom:419.266667pt;}
.y84{bottom:420.546667pt;}
.y26{bottom:426.306667pt;}
.yb5{bottom:427.106667pt;}
.y128{bottom:432.386667pt;}
.y5e{bottom:435.106667pt;}
.y15b{bottom:436.866667pt;}
.y83{bottom:438.146667pt;}
.y25{bottom:443.906667pt;}
.yb4{bottom:444.706667pt;}
.y127{bottom:450.146667pt;}
.yf1{bottom:452.386667pt;}
.y5d{bottom:452.706667pt;}
.y15a{bottom:454.466667pt;}
.y82{bottom:455.746667pt;}
.y24{bottom:461.506667pt;}
.yb3{bottom:462.306667pt;}
.y126{bottom:467.746667pt;}
.y5c{bottom:470.306667pt;}
.y159{bottom:472.066667pt;}
.y81{bottom:473.506667pt;}
.y23{bottom:479.106667pt;}
.yb2{bottom:480.066667pt;}
.y125{bottom:485.346667pt;}
.y5b{bottom:488.066667pt;}
.y158{bottom:489.826667pt;}
.y80{bottom:491.106667pt;}
.y22{bottom:496.866667pt;}
.ycf{bottom:497.666667pt;}
.y124{bottom:502.946667pt;}
.y5a{bottom:505.666667pt;}
.y157{bottom:507.426667pt;}
.y7f{bottom:508.706667pt;}
.y21{bottom:514.466667pt;}
.yce{bottom:515.266667pt;}
.y123{bottom:520.546667pt;}
.y59{bottom:523.266667pt;}
.y156{bottom:525.026667pt;}
.y7e{bottom:526.306667pt;}
.y20{bottom:532.066667pt;}
.ycd{bottom:532.866667pt;}
.y122{bottom:538.306667pt;}
.y58{bottom:540.866667pt;}
.y155{bottom:542.626667pt;}
.y7d{bottom:543.906667pt;}
.ycc{bottom:550.466667pt;}
.y1f{bottom:551.746667pt;}
.y121{bottom:555.906667pt;}
.y57{bottom:558.466667pt;}
.y154{bottom:560.226667pt;}
.y7c{bottom:561.666667pt;}
.ycb{bottom:568.226667pt;}
.y1e{bottom:569.346667pt;}
.y120{bottom:573.506667pt;}
.y56{bottom:576.226667pt;}
.yea{bottom:576.546667pt;}
.y153{bottom:578.013333pt;}
.y7b{bottom:579.293333pt;}
.yca{bottom:585.853333pt;}
.y1d{bottom:586.973333pt;}
.y11f{bottom:591.133333pt;}
.y55{bottom:593.853333pt;}
.y152{bottom:595.613333pt;}
.y7a{bottom:596.893333pt;}
.yc9{bottom:603.453333pt;}
.y1c{bottom:604.573333pt;}
.y11e{bottom:608.733333pt;}
.y54{bottom:611.453333pt;}
.y151{bottom:613.213333pt;}
.y79{bottom:614.493333pt;}
.yc8{bottom:621.053333pt;}
.y1b{bottom:622.333333pt;}
.y11d{bottom:626.493333pt;}
.y53{bottom:629.053333pt;}
.y150{bottom:630.813333pt;}
.y78{bottom:632.093333pt;}
.yc7{bottom:638.653333pt;}
.y1a{bottom:639.933333pt;}
.y11c{bottom:644.093333pt;}
.y52{bottom:646.653333pt;}
.y14f{bottom:648.413333pt;}
.y77{bottom:649.853333pt;}
.y19{bottom:657.533333pt;}
.y11b{bottom:661.693333pt;}
.y51{bottom:664.413333pt;}
.y14e{bottom:666.173333pt;}
.y76{bottom:667.453333pt;}
.y18{bottom:675.133333pt;}
.y11a{bottom:679.293333pt;}
.y50{bottom:682.013333pt;}
.y14d{bottom:683.773333pt;}
.y75{bottom:685.053333pt;}
.y17{bottom:692.733333pt;}
.y119{bottom:696.893333pt;}
.ye4{bottom:697.693333pt;}
.y4f{bottom:699.613333pt;}
.y14c{bottom:701.373333pt;}
.y74{bottom:702.653333pt;}
.y16{bottom:710.493333pt;}
.y118{bottom:714.653333pt;}
.y4e{bottom:717.213333pt;}
.y73{bottom:717.533333pt;}
.y14b{bottom:718.973333pt;}
.y15{bottom:728.093333pt;}
.y117{bottom:732.253333pt;}
.y4d{bottom:734.813333pt;}
.y14a{bottom:736.573333pt;}
.y14{bottom:745.693333pt;}
.y116{bottom:749.853333pt;}
.y4c{bottom:752.573333pt;}
.y149{bottom:754.333333pt;}
.y13{bottom:763.293333pt;}
.y115{bottom:767.453333pt;}
.y4b{bottom:770.173333pt;}
.y148{bottom:771.933333pt;}
.y12{bottom:780.893333pt;}
.y114{bottom:785.053333pt;}
.y4a{bottom:787.773333pt;}
.y147{bottom:789.533333pt;}
.y112{bottom:798.213333pt;}
.y11{bottom:798.533333pt;}
.y49{bottom:805.413333pt;}
.y146{bottom:807.173333pt;}
.yde{bottom:816.613333pt;}
.y10{bottom:818.213333pt;}
.y48{bottom:823.013333pt;}
.y145{bottom:824.773333pt;}
.yf{bottom:840.453333pt;}
.y47{bottom:840.773333pt;}
.y144{bottom:842.533333pt;}
.ye{bottom:858.213333pt;}
.y46{bottom:858.373333pt;}
.y143{bottom:860.133333pt;}
.yd{bottom:871.653333pt;}
.y45{bottom:875.973333pt;}
.y142{bottom:877.733333pt;}
.yc{bottom:890.533333pt;}
.y44{bottom:893.573333pt;}
.y141{bottom:895.333333pt;}
.y111{bottom:904.773333pt;}
.y43{bottom:911.173333pt;}
.yb{bottom:911.333333pt;}
.y140{bottom:912.933333pt;}
.ydc{bottom:923.013333pt;}
.y42{bottom:928.933333pt;}
.y13f{bottom:930.693333pt;}
.y5{bottom:936.453333pt;}
.y41{bottom:946.533333pt;}
.y13e{bottom:948.293333pt;}
.y40{bottom:964.133333pt;}
.y4{bottom:965.253333pt;}
.y13d{bottom:965.413333pt;}
.y110{bottom:975.973333pt;}
.y3f{bottom:981.733333pt;}
.y3{bottom:992.773333pt;}
.y3e{bottom:999.333333pt;}
.y3d{bottom:1017.093333pt;}
.y2{bottom:1020.160000pt;}
.y3c{bottom:1034.720000pt;}
.y1{bottom:1049.120000pt;}
.y3b{bottom:1060.800000pt;}
.h10{height:18.880000pt;}
.h5{height:19.040000pt;}
.h8{height:24.384375pt;}
.h7{height:26.190625pt;}
.hd{height:28.822500pt;}
.h11{height:35.360000pt;}
.hb{height:37.479688pt;}
.he{height:38.672812pt;}
.h1c{height:40.031250pt;}
.h3{height:41.543750pt;}
.h4{height:44.301250pt;}
.hc{height:47.310625pt;}
.h1d{height:47.382500pt;}
.h6{height:49.105000pt;}
.h2{height:52.832812pt;}
.h18{height:52.960000pt;}
.hf{height:53.375000pt;}
.h9{height:58.563750pt;}
.ha{height:60.057813pt;}
.h1a{height:70.560000pt;}
.h19{height:70.592000pt;}
.h12{height:105.760000pt;}
.h1b{height:105.920000pt;}
.h13{height:118.272000pt;}
.h14{height:120.512000pt;}
.h16{height:123.392000pt;}
.h15{height:123.520000pt;}
.h17{height:141.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:51.392000pt;}
.wb{width:59.392000pt;}
.w7{width:70.880000pt;}
.w5{width:89.440000pt;}
.w9{width:95.360000pt;}
.w8{width:107.392000pt;}
.wa{width:137.466667pt;}
.wc{width:148.960000pt;}
.w6{width:527.453333pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1d{left:30.880000pt;}
.x1f{left:42.879988pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x20{left:66.879988pt;}
.x13{left:71.999988pt;}
.x22{left:85.632000pt;}
.x1b{left:88.192000pt;}
.x9{left:92.351988pt;}
.x12{left:96.031988pt;}
.x19{left:98.911988pt;}
.x4{left:107.232000pt;}
.x23{left:157.146667pt;}
.x1c{left:178.266667pt;}
.xd{left:191.226655pt;}
.xb{left:194.106655pt;}
.xc{left:195.066655pt;}
.x21{left:214.106655pt;}
.x8{left:246.754667pt;}
.x24{left:265.186667pt;}
.x1e{left:288.066655pt;}
.x1a{left:347.426655pt;}
.x7{left:361.021333pt;}
.x6{left:367.581333pt;}
.x5{left:379.581333pt;}
.xa{left:396.893322pt;}
.x11{left:409.981333pt;}
.xe{left:420.893322pt;}
.x16{left:430.493322pt;}
.x15{left:434.173322pt;}
.x14{left:437.853322pt;}
.xf{left:444.893322pt;}
.x10{left:468.893322pt;}
.x25{left:499.293333pt;}
.x26{left:559.333333pt;}
.x17{left:635.493322pt;}
.x18{left:671.013322pt;}
}




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