
    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_7a62d7a968c3e1c4e1befe72.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937988;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_90f6dbd1f15bf855f9a7ded1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b3efc506ec75f4b7e391ccc4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_f24a9f58b5d028c5206c987e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_532bef1f079ad79e33e19898.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.072266;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_304689f9eda0ae774bb9eb17.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.072266;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_96e0140dcdc312f13ae23211.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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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(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);}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.460200px;}
.ls41{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.330000px;}
.ls1e{letter-spacing:-0.300000px;}
.ls11{letter-spacing:-0.298800px;}
.ls15{letter-spacing:-0.259800px;}
.ls2b{letter-spacing:-0.195000px;}
.ls10{letter-spacing:-0.126600px;}
.ls1d{letter-spacing:-0.100200px;}
.ls3e{letter-spacing:-0.053280px;}
.lsd{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.ls16{letter-spacing:0.053280px;}
.ls40{letter-spacing:0.106800px;}
.ls31{letter-spacing:0.118800px;}
.ls0{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.259920px;}
.ls20{letter-spacing:0.283680px;}
.ls3c{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.439920px;}
.ls21{letter-spacing:0.900000px;}
.ls8{letter-spacing:0.979920px;}
.ls2f{letter-spacing:1.620000px;}
.ls1c{letter-spacing:2.340000px;}
.ls32{letter-spacing:3.060000px;}
.ls9{letter-spacing:3.780000px;}
.ls3{letter-spacing:5.220000px;}
.ls17{letter-spacing:5.940000px;}
.lsb{letter-spacing:8.100000px;}
.ls37{letter-spacing:10.980000px;}
.ls1{letter-spacing:11.700000px;}
.ls30{letter-spacing:17.460000px;}
.ls2a{letter-spacing:18.180000px;}
.ls38{letter-spacing:19.620000px;}
.ls35{letter-spacing:22.986720px;}
.ls4{letter-spacing:28.980000px;}
.lsa{letter-spacing:29.700000px;}
.ls2c{letter-spacing:30.420000px;}
.ls2d{letter-spacing:31.860000px;}
.ls13{letter-spacing:32.580000px;}
.ls2e{letter-spacing:34.020000px;}
.ls29{letter-spacing:36.180000px;}
.ls3f{letter-spacing:36.642720px;}
.ls3d{letter-spacing:36.666720px;}
.ls18{letter-spacing:39.180000px;}
.ls19{letter-spacing:43.500000px;}
.ls22{letter-spacing:48.420000px;}
.ls3a{letter-spacing:49.140000px;}
.ls26{letter-spacing:61.380000px;}
.ls1a{letter-spacing:63.660000px;}
.ls27{letter-spacing:65.700000px;}
.ls3b{letter-spacing:66.186720px;}
.ls23{letter-spacing:77.220000px;}
.ls33{letter-spacing:81.660000px;}
.ls6{letter-spacing:85.860000px;}
.ls34{letter-spacing:91.800000px;}
.ls39{letter-spacing:106.740000px;}
.ls1f{letter-spacing:106.860000px;}
.ls14{letter-spacing:109.620000px;}
.ls36{letter-spacing:119.100000px;}
.ls25{letter-spacing:130.500000px;}
.ls28{letter-spacing:134.820000px;}
.ls5{letter-spacing:202.680000px;}
.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;}
}
.ws4{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199920px;}
.ws3{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.058800px;}
.ws7{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.839800px;}
.wsb{word-spacing:-14.745000px;}
.ws6{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.640000px;}
.wsf{word-spacing:-14.580000px;}
.ws0{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.105360px;}
.ws5{word-spacing:0.000000px;}
._7a{margin-left:-4.240560px;}
._23{margin-left:-3.228240px;}
._0{margin-left:-1.373280px;}
._1{width:1.314720px;}
._5{width:2.868480px;}
._3{width:4.422240px;}
._d{width:5.569680px;}
._1d{width:6.788640px;}
._b{width:7.888320px;}
._c{width:9.442080px;}
._7{width:10.635600px;}
._6{width:11.998560px;}
._2d{width:13.499520px;}
._10{width:16.194960px;}
._2a{width:17.210880px;}
._9{width:18.286560px;}
._1b{width:19.362240px;}
._4c{width:21.155040px;}
._38{width:22.529520px;}
._1e{width:23.531760px;}
._4{width:24.740640px;}
._25{width:25.995600px;}
._34{width:27.574560px;}
._11{width:29.581200px;}
._29{width:30.716640px;}
._26{width:31.971600px;}
._15{width:33.585120px;}
._8{width:35.079120px;}
._20{width:36.274320px;}
._2b{width:37.469520px;}
._37{width:38.604960px;}
._46{width:40.338000px;}
._31{width:41.652720px;}
._70{width:42.768000px;}
._e{width:43.804080px;}
._f{width:45.059040px;}
._3a{width:46.373760px;}
._19{width:47.449440px;}
._14{width:48.943440px;}
._13{width:49.959360px;}
._1c{width:51.871680px;}
._6d{width:53.365680px;}
._24{width:55.218240px;}
._62{width:56.293920px;}
._17{width:57.309840px;}
._a{width:59.102640px;}
._5b{width:61.672320px;}
._48{width:63.639360px;}
._73{width:64.660320px;}
._45{width:66.073440px;}
._66{width:67.110480px;}
._2e{width:68.664240px;}
._79{width:69.799680px;}
._16{width:70.994880px;}
._35{width:72.548640px;}
._51{width:73.863360px;}
._3b{width:74.939040px;}
._53{width:77.269680px;}
._52{width:78.464880px;}
._3d{width:79.839360px;}
._2{width:81.034560px;}
._4f{width:82.588320px;}
._1a{width:84.918960px;}
._5c{width:86.267520px;}
._63{width:88.982640px;}
._21{width:90.655920px;}
._22{width:92.030400px;}
._2f{width:96.094080px;}
._59{width:97.706400px;}
._58{width:98.723520px;}
._7b{width:101.909760px;}
._67{width:103.584480px;}
._33{width:104.618160px;}
._6f{width:105.655680px;}
._5d{width:106.971120px;}
._30{width:109.526640px;}
._7e{width:111.273120px;}
._64{width:112.289040px;}
._65{width:113.424480px;}
._5f{width:115.695360px;}
._27{width:116.950320px;}
._28{width:118.265040px;}
._75{width:119.878560px;}
._50{width:120.954240px;}
._40{width:123.053040px;}
._49{width:124.061760px;}
._6c{width:127.288800px;}
._36{width:130.037760px;}
._2c{width:133.922160px;}
._7c{width:137.268720px;}
._1f{width:138.808800px;}
._6e{width:140.137200px;}
._61{width:141.750720px;}
._60{width:143.244720px;}
._74{width:145.515600px;}
._69{width:146.797920px;}
._4b{width:151.192800px;}
._3f{width:163.025280px;}
._32{width:169.236960px;}
._56{width:172.825920px;}
._77{width:179.638560px;}
._78{width:180.740640px;}
._5e{width:182.208240px;}
._71{width:184.598640px;}
._55{width:189.293520px;}
._12{width:195.295680px;}
._7d{width:198.522000px;}
._18{width:202.668960px;}
._3c{width:204.618240px;}
._42{width:205.693920px;}
._43{width:206.948880px;}
._54{width:211.490640px;}
._4e{width:220.275360px;}
._39{width:261.270720px;}
._72{width:273.939840px;}
._41{width:312.541680px;}
._5a{width:324.854400px;}
._57{width:333.872640px;}
._76{width:343.739520px;}
._4a{width:348.274800px;}
._68{width:351.149760px;}
._44{width:364.879440px;}
._6b{width:370.631520px;}
._6a{width:372.185280px;}
._4d{width:423.877680px;}
._47{width:431.347680px;}
._3e{width:519.075360px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(16,16,16);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:3.240000px;}
.ye1{bottom:3.285000px;}
.ycf{bottom:11.880000px;}
.y73{bottom:12.060000px;}
.yd6{bottom:12.240000px;}
.y3c{bottom:20.340000px;}
.y39{bottom:20.520000px;}
.ye0{bottom:20.565000px;}
.yb3{bottom:20.700000px;}
.ybd{bottom:22.140000px;}
.y78{bottom:25.020000px;}
.y96{bottom:27.540000px;}
.yce{bottom:29.160000px;}
.y8b{bottom:29.340000px;}
.y72{bottom:29.385000px;}
.ya1{bottom:30.240000px;}
.y67{bottom:33.480000px;}
.y6a{bottom:33.660000px;}
.y44{bottom:37.620000px;}
.y10b{bottom:37.650000px;}
.y42{bottom:37.800000px;}
.yc4{bottom:37.830000px;}
.y47{bottom:37.845000px;}
.yc6{bottom:37.980000px;}
.yb9{bottom:38.010000px;}
.ybc{bottom:39.420000px;}
.ycc{bottom:42.120000px;}
.y77{bottom:42.300000px;}
.yab{bottom:42.330000px;}
.y95{bottom:44.820000px;}
.yb1{bottom:46.620000px;}
.y7e{bottom:46.650000px;}
.y71{bottom:46.665000px;}
.ya0{bottom:47.340000px;}
.y66{bottom:50.760000px;}
.y69{bottom:50.970000px;}
.y49{bottom:54.900000px;}
.y10a{bottom:54.930000px;}
.yfd{bottom:54.945000px;}
.y41{bottom:55.080000px;}
.yc3{bottom:55.110000px;}
.y46{bottom:55.125000px;}
.yb8{bottom:55.290000px;}
.y4{bottom:56.880000px;}
.y76{bottom:59.400000px;}
.yca{bottom:59.445000px;}
.y9a{bottom:59.580000px;}
.yaa{bottom:59.610000px;}
.y94{bottom:62.100000px;}
.y7d{bottom:63.750000px;}
.yb0{bottom:63.900000px;}
.y8a{bottom:63.930000px;}
.y70{bottom:63.945000px;}
.y9f{bottom:64.620000px;}
.ya7{bottom:68.220000px;}
.y53{bottom:72.180000px;}
.y5b{bottom:72.210000px;}
.yfc{bottom:72.225000px;}
.y40{bottom:72.360000px;}
.yc2{bottom:72.390000px;}
.y8f{bottom:72.405000px;}
.yb7{bottom:72.570000px;}
.y75{bottom:76.680000px;}
.y99{bottom:76.710000px;}
.yc9{bottom:76.725000px;}
.ya9{bottom:76.890000px;}
.y93{bottom:79.380000px;}
.y7c{bottom:81.030000px;}
.yaf{bottom:81.180000px;}
.y89{bottom:81.210000px;}
.y6f{bottom:81.225000px;}
.y9e{bottom:81.900000px;}
.ya6{bottom:85.500000px;}
.y52{bottom:89.460000px;}
.y5a{bottom:89.490000px;}
.ydf{bottom:89.505000px;}
.y86{bottom:89.640000px;}
.y138{bottom:90.360000px;}
.y15a{bottom:91.260000px;}
.y5c{bottom:93.960000px;}
.y98{bottom:93.990000px;}
.yc8{bottom:94.005000px;}
.yd1{bottom:94.170000px;}
.y92{bottom:96.660000px;}
.yae{bottom:98.280000px;}
.y7b{bottom:98.310000px;}
.y6e{bottom:98.325000px;}
.y88{bottom:98.490000px;}
.yd5{bottom:98.505000px;}
.y9d{bottom:99.180000px;}
.y3d{bottom:101.520000px;}
.ya5{bottom:102.780000px;}
.y17e{bottom:103.140000px;}
.y137{bottom:104.400000px;}
.y103{bottom:106.200000px;}
.y51{bottom:106.740000px;}
.yc1{bottom:106.770000px;}
.yde{bottom:106.785000px;}
.y159{bottom:108.540000px;}
.y91{bottom:113.760000px;}
.yba{bottom:115.380000px;}
.yad{bottom:115.560000px;}
.y7a{bottom:115.590000px;}
.y6d{bottom:115.605000px;}
.yd4{bottom:115.785000px;}
.y9c{bottom:116.460000px;}
.ya4{bottom:120.105000px;}
.y17d{bottom:120.420000px;}
.y64{bottom:123.840000px;}
.y57{bottom:124.020000px;}
.y50{bottom:124.050000px;}
.yda{bottom:124.065000px;}
.y158{bottom:125.640000px;}
.y97{bottom:128.880000px;}
.y3b{bottom:136.800000px;}
.ya3{bottom:137.385000px;}
.y17c{bottom:137.700000px;}
.y8d{bottom:141.120000px;}
.y4f{bottom:141.150000px;}
.y63{bottom:141.165000px;}
.yfa{bottom:141.300000px;}
.ydc{bottom:141.330000px;}
.y85{bottom:141.345000px;}
.y157{bottom:142.920000px;}
.y59{bottom:146.520000px;}
.yd0{bottom:149.580000px;}
.y17b{bottom:154.980000px;}
.y79{bottom:157.140000px;}
.y4e{bottom:158.430000px;}
.y62{bottom:158.445000px;}
.yf9{bottom:158.580000px;}
.ydb{bottom:158.610000px;}
.y84{bottom:158.625000px;}
.y156{bottom:160.200000px;}
.yec{bottom:167.220000px;}
.y38{bottom:171.900000px;}
.y17a{bottom:172.260000px;}
.yf8{bottom:175.680000px;}
.y4d{bottom:175.710000px;}
.y61{bottom:175.725000px;}
.ye9{bottom:175.890000px;}
.y83{bottom:175.905000px;}
.y155{bottom:177.480000px;}
.yb6{bottom:185.040000px;}
.y179{bottom:189.540000px;}
.yf7{bottom:192.960000px;}
.y4c{bottom:192.990000px;}
.y60{bottom:193.005000px;}
.ye8{bottom:193.170000px;}
.y82{bottom:193.185000px;}
.y154{bottom:194.760000px;}
.yf2{bottom:201.810000px;}
.y178{bottom:206.670000px;}
.yf6{bottom:210.240000px;}
.ye7{bottom:210.270000px;}
.y5f{bottom:210.285000px;}
.y37{bottom:210.450000px;}
.y153{bottom:211.890000px;}
.y177{bottom:223.950000px;}
.ye6{bottom:227.550000px;}
.yf5{bottom:227.565000px;}
.y36{bottom:227.730000px;}
.y152{bottom:229.170000px;}
.y90{bottom:237.630000px;}
.y176{bottom:241.230000px;}
.y130{bottom:241.590000px;}
.ye5{bottom:244.830000px;}
.yf4{bottom:244.845000px;}
.y35{bottom:245.010000px;}
.y151{bottom:246.450000px;}
.y58{bottom:250.770000px;}
.ycd{bottom:258.510000px;}
.y12f{bottom:258.870000px;}
.ye4{bottom:262.110000px;}
.yf3{bottom:262.125000px;}
.y34{bottom:262.290000px;}
.y150{bottom:263.730000px;}
.yb5{bottom:272.370000px;}
.y175{bottom:275.790000px;}
.y12e{bottom:276.150000px;}
.y126{bottom:279.210000px;}
.y33{bottom:279.570000px;}
.y14f{bottom:281.010000px;}
.y56{bottom:286.050000px;}
.y74{bottom:287.490000px;}
.y174{bottom:293.070000px;}
.y12d{bottom:293.250000px;}
.y125{bottom:296.490000px;}
.y32{bottom:296.670000px;}
.y102{bottom:296.850000px;}
.yeb{bottom:297.570000px;}
.y14e{bottom:298.290000px;}
.y11c{bottom:299.370000px;}
.ycb{bottom:302.430000px;}
.y12c{bottom:307.290000px;}
.yd9{bottom:310.170000px;}
.y124{bottom:313.770000px;}
.y31{bottom:313.950000px;}
.y14d{bottom:315.390000px;}
.y11b{bottom:316.470000px;}
.y173{bottom:327.450000px;}
.y123{bottom:327.810000px;}
.y30{bottom:331.230000px;}
.y14c{bottom:332.670000px;}
.y11a{bottom:333.750000px;}
.yea{bottom:341.490000px;}
.y172{bottom:344.730000px;}
.y2f{bottom:348.510000px;}
.y14b{bottom:349.950000px;}
.y119{bottom:351.030000px;}
.yb4{bottom:359.490000px;}
.y171{bottom:362.010000px;}
.y2e{bottom:365.790000px;}
.y8e{bottom:366.150000px;}
.y14a{bottom:367.230000px;}
.y118{bottom:368.310000px;}
.y170{bottom:379.290000px;}
.y2d{bottom:383.070000px;}
.y149{bottom:384.510000px;}
.y117{bottom:385.590000px;}
.y6c{bottom:396.210000px;}
.y16f{bottom:396.570000px;}
.y2c{bottom:400.170000px;}
.y148{bottom:401.790000px;}
.y116{bottom:402.690000px;}
.yc7{bottom:411.150000px;}
.y16e{bottom:413.670000px;}
.y2b{bottom:417.450000px;}
.y147{bottom:418.890000px;}
.y115{bottom:419.970000px;}
.y55{bottom:424.875000px;}
.yb2{bottom:425.055000px;}
.y16d{bottom:430.995000px;}
.y2a{bottom:434.775000px;}
.y146{bottom:436.215000px;}
.y114{bottom:437.295000px;}
.y16c{bottom:448.275000px;}
.y29{bottom:452.055000px;}
.y8c{bottom:453.315000px;}
.y145{bottom:453.495000px;}
.y113{bottom:454.575000px;}
.y54{bottom:459.975000px;}
.y16b{bottom:465.555000px;}
.y28{bottom:469.335000px;}
.y144{bottom:470.775000px;}
.y112{bottom:471.855000px;}
.yf1{bottom:478.695000px;}
.y136{bottom:481.935000px;}
.y16a{bottom:482.835000px;}
.y27{bottom:486.435000px;}
.y101{bottom:487.335000px;}
.y143{bottom:488.055000px;}
.y111{bottom:489.135000px;}
.y135{bottom:499.215000px;}
.y169{bottom:499.935000px;}
.y26{bottom:503.715000px;}
.y142{bottom:505.155000px;}
.y110{bottom:506.235000px;}
.yac{bottom:512.175000px;}
.ye3{bottom:514.695000px;}
.y134{bottom:516.495000px;}
.y168{bottom:517.215000px;}
.yc5{bottom:519.915000px;}
.y25{bottom:520.995000px;}
.y141{bottom:522.435000px;}
.y10f{bottom:523.515000px;}
.y6b{bottom:526.575000px;}
.y4b{bottom:529.815000px;}
.y133{bottom:533.775000px;}
.y167{bottom:534.495000px;}
.yd8{bottom:535.215000px;}
.y24{bottom:538.275000px;}
.y140{bottom:539.715000px;}
.y100{bottom:539.895000px;}
.y10e{bottom:540.795000px;}
.y132{bottom:551.055000px;}
.y166{bottom:551.775000px;}
.y23{bottom:555.555000px;}
.y13f{bottom:556.995000px;}
.y10d{bottom:558.075000px;}
.y131{bottom:564.915000px;}
.y165{bottom:569.055000px;}
.y22{bottom:572.835000px;}
.y13e{bottom:574.275000px;}
.y10c{bottom:575.355000px;}
.y164{bottom:586.335000px;}
.y21{bottom:589.935000px;}
.y13d{bottom:591.555000px;}
.y68{bottom:592.095000px;}
.yf0{bottom:600.195000px;}
.y163{bottom:603.435000px;}
.yc0{bottom:607.035000px;}
.y20{bottom:607.215000px;}
.y109{bottom:607.395000px;}
.y13c{bottom:608.655000px;}
.y87{bottom:609.195000px;}
.y162{bottom:620.715000px;}
.y1f{bottom:624.495000px;}
.y13b{bottom:625.935000px;}
.y161{bottom:637.995000px;}
.y1e{bottom:641.775000px;}
.ya8{bottom:642.495000px;}
.y13a{bottom:643.245000px;}
.y160{bottom:655.305000px;}
.yd7{bottom:656.745000px;}
.y139{bottom:657.285000px;}
.y65{bottom:657.825000px;}
.y1d{bottom:659.085000px;}
.yff{bottom:661.425000px;}
.y12b{bottom:670.605000px;}
.y15f{bottom:672.585000px;}
.y1c{bottom:676.365000px;}
.yef{bottom:687.345000px;}
.y12a{bottom:687.885000px;}
.y15e{bottom:689.865000px;}
.y1b{bottom:693.465000px;}
.y108{bottom:694.365000px;}
.y122{bottom:704.985000px;}
.y129{bottom:705.165000px;}
.yfe{bottom:705.345000px;}
.y15d{bottom:706.965000px;}
.y1a{bottom:710.745000px;}
.y121{bottom:722.265000px;}
.y128{bottom:722.445000px;}
.y5e{bottom:723.345000px;}
.y15c{bottom:724.245000px;}
.y19{bottom:728.025000px;}
.y4a{bottom:737.565000px;}
.y81{bottom:739.545000px;}
.y188{bottom:741.525000px;}
.y15b{bottom:741.705000px;}
.y18{bottom:745.305000px;}
.ybf{bottom:745.845000px;}
.y107{bottom:746.925000px;}
.ya2{bottom:751.245000px;}
.y127{bottom:753.585000px;}
.y120{bottom:756.825000px;}
.y187{bottom:758.805000px;}
.y17{bottom:762.585000px;}
.y48{bottom:772.845000px;}
.y11f{bottom:774.105000px;}
.y186{bottom:776.085000px;}
.y16{bottom:779.865000px;}
.y11e{bottom:791.385000px;}
.ye2{bottom:791.565000px;}
.y185{bottom:793.185000px;}
.yd3{bottom:795.345000px;}
.y15{bottom:796.965000px;}
.y11d{bottom:805.245000px;}
.yfb{bottom:809.565000px;}
.y184{bottom:810.465000px;}
.y14{bottom:814.245000px;}
.y106{bottom:816.585000px;}
.y183{bottom:827.745000px;}
.y13{bottom:831.525000px;}
.y45{bottom:842.505000px;}
.yee{bottom:843.225000px;}
.y182{bottom:845.025000px;}
.y12{bottom:848.805000px;}
.y105{bottom:860.505000px;}
.ydd{bottom:861.225000px;}
.y181{bottom:862.305000px;}
.y11{bottom:866.130000px;}
.ybe{bottom:876.210000px;}
.y180{bottom:879.630000px;}
.y10{bottom:883.230000px;}
.y17f{bottom:896.910000px;}
.yf{bottom:900.510000px;}
.y9b{bottom:903.390000px;}
.y43{bottom:912.390000px;}
.ye{bottom:917.790000px;}
.yd2{bottom:925.890000px;}
.yed{bottom:930.390000px;}
.yd{bottom:935.070000px;}
.y80{bottom:947.490000px;}
.y5d{bottom:948.390000px;}
.yc{bottom:952.350000px;}
.y3f{bottom:964.770000px;}
.yb{bottom:969.630000px;}
.ybb{bottom:980.430000px;}
.y104{bottom:982.050000px;}
.ya{bottom:986.730000px;}
.y9{bottom:1004.010000px;}
.y8{bottom:1021.290000px;}
.y7f{bottom:1034.610000px;}
.y7{bottom:1038.570000px;}
.y3e{bottom:1051.890000px;}
.y6{bottom:1055.850000px;}
.y5{bottom:1073.130000px;}
.y3{bottom:1091.520000px;}
.y2{bottom:1109.700000px;}
.y1{bottom:1123.560000px;}
.h8{height:34.380000px;}
.h9{height:34.416000px;}
.he{height:34.560000px;}
.h7{height:34.596000px;}
.h1{height:39.760312px;}
.h25{height:43.200000px;}
.h5{height:51.181172px;}
.hb{height:51.660000px;}
.h19{height:51.696000px;}
.h13{height:51.840000px;}
.h6{height:52.669336px;}
.h22{height:53.460000px;}
.h15{height:64.800000px;}
.h16{height:64.836000px;}
.h3{height:65.884219px;}
.hd{height:68.940000px;}
.hc{height:68.976000px;}
.h10{height:69.120000px;}
.h4{height:74.244727px;}
.h2{height:83.787539px;}
.ha{height:86.220000px;}
.h2c{height:86.256000px;}
.h1a{height:86.400000px;}
.h1c{height:86.436000px;}
.h23{height:103.500000px;}
.h12{height:103.536000px;}
.h18{height:108.000000px;}
.h1e{height:108.036000px;}
.h2d{height:120.600000px;}
.h27{height:120.636000px;}
.h31{height:120.816000px;}
.h1d{height:127.800000px;}
.h21{height:129.600000px;}
.h17{height:129.636000px;}
.h1f{height:130.500000px;}
.h26{height:137.880000px;}
.h11{height:137.916000px;}
.h24{height:138.096000px;}
.h20{height:151.230000px;}
.h1b{height:155.160000px;}
.h2b{height:172.470000px;}
.h29{height:172.650000px;}
.h2f{height:189.750000px;}
.h30{height:189.930000px;}
.hf{height:207.030000px;}
.h14{height:224.130000px;}
.h28{height:224.310000px;}
.h2e{height:275.970000px;}
.h2a{height:276.150000px;}
.h0{height:1188.000000px;}
.w2{width:40.680000px;}
.w7{width:52.020000px;}
.w6{width:113.436000px;}
.wb{width:126.756000px;}
.wa{width:126.900000px;}
.w8{width:134.676000px;}
.w3{width:141.696000px;}
.w5{width:150.840000px;}
.w4{width:293.475000px;}
.w9{width:299.955000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x1{left:127.655986px;}
.x3{left:129.815986px;}
.x2{left:140.435986px;}
.x7{left:154.829986px;}
.xe{left:169.770000px;}
.x6{left:172.649986px;}
.x9{left:180.749986px;}
.xc{left:223.409986px;}
.x4{left:224.849986px;}
.x8{left:243.929986px;}
.x5{left:308.414986px;}
.xf{left:312.375000px;}
.x12{left:316.515000px;}
.xa{left:514.004986px;}
.xb{left:567.104986px;}
.x10{left:606.570000px;}
.x13{left:617.190000px;}
.x14{left:744.810000px;}
.x11{left:758.130000px;}
.x16{left:827.639986px;}
.x15{left:875.699986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.409067pt;}
.ls41{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.293333pt;}
.ls1e{letter-spacing:-0.266667pt;}
.ls11{letter-spacing:-0.265600pt;}
.ls15{letter-spacing:-0.230933pt;}
.ls2b{letter-spacing:-0.173333pt;}
.ls10{letter-spacing:-0.112533pt;}
.ls1d{letter-spacing:-0.089067pt;}
.ls3e{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.ls16{letter-spacing:0.047360pt;}
.ls40{letter-spacing:0.094933pt;}
.ls31{letter-spacing:0.105600pt;}
.ls0{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.231040pt;}
.ls20{letter-spacing:0.252160pt;}
.ls3c{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.391040pt;}
.ls21{letter-spacing:0.800000pt;}
.ls8{letter-spacing:0.871040pt;}
.ls2f{letter-spacing:1.440000pt;}
.ls1c{letter-spacing:2.080000pt;}
.ls32{letter-spacing:2.720000pt;}
.ls9{letter-spacing:3.360000pt;}
.ls3{letter-spacing:4.640000pt;}
.ls17{letter-spacing:5.280000pt;}
.lsb{letter-spacing:7.200000pt;}
.ls37{letter-spacing:9.760000pt;}
.ls1{letter-spacing:10.400000pt;}
.ls30{letter-spacing:15.520000pt;}
.ls2a{letter-spacing:16.160000pt;}
.ls38{letter-spacing:17.440000pt;}
.ls35{letter-spacing:20.432640pt;}
.ls4{letter-spacing:25.760000pt;}
.lsa{letter-spacing:26.400000pt;}
.ls2c{letter-spacing:27.040000pt;}
.ls2d{letter-spacing:28.320000pt;}
.ls13{letter-spacing:28.960000pt;}
.ls2e{letter-spacing:30.240000pt;}
.ls29{letter-spacing:32.160000pt;}
.ls3f{letter-spacing:32.571307pt;}
.ls3d{letter-spacing:32.592640pt;}
.ls18{letter-spacing:34.826667pt;}
.ls19{letter-spacing:38.666667pt;}
.ls22{letter-spacing:43.040000pt;}
.ls3a{letter-spacing:43.680000pt;}
.ls26{letter-spacing:54.560000pt;}
.ls1a{letter-spacing:56.586667pt;}
.ls27{letter-spacing:58.400000pt;}
.ls3b{letter-spacing:58.832640pt;}
.ls23{letter-spacing:68.640000pt;}
.ls33{letter-spacing:72.586667pt;}
.ls6{letter-spacing:76.320000pt;}
.ls34{letter-spacing:81.600000pt;}
.ls39{letter-spacing:94.880000pt;}
.ls1f{letter-spacing:94.986667pt;}
.ls14{letter-spacing:97.440000pt;}
.ls36{letter-spacing:105.866667pt;}
.ls25{letter-spacing:116.000000pt;}
.ls28{letter-spacing:119.840000pt;}
.ls5{letter-spacing:180.160000pt;}
.ws4{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.511040pt;}
.ws3{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.385600pt;}
.ws7{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.190933pt;}
.wsb{word-spacing:-13.106667pt;}
.ws6{word-spacing:-13.049067pt;}
.ws9{word-spacing:-13.013333pt;}
.wsf{word-spacing:-12.960000pt;}
.ws0{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.760320pt;}
.ws5{word-spacing:0.000000pt;}
._7a{margin-left:-3.769387pt;}
._23{margin-left:-2.869547pt;}
._0{margin-left:-1.220693pt;}
._1{width:1.168640pt;}
._5{width:2.549760pt;}
._3{width:3.930880pt;}
._d{width:4.950827pt;}
._1d{width:6.034347pt;}
._b{width:7.011840pt;}
._c{width:8.392960pt;}
._7{width:9.453867pt;}
._6{width:10.665387pt;}
._2d{width:11.999573pt;}
._10{width:14.395520pt;}
._2a{width:15.298560pt;}
._9{width:16.254720pt;}
._1b{width:17.210880pt;}
._4c{width:18.804480pt;}
._38{width:20.026240pt;}
._1e{width:20.917120pt;}
._4{width:21.991680pt;}
._25{width:23.107200pt;}
._34{width:24.510720pt;}
._11{width:26.294400pt;}
._29{width:27.303680pt;}
._26{width:28.419200pt;}
._15{width:29.853440pt;}
._8{width:31.181440pt;}
._20{width:32.243840pt;}
._2b{width:33.306240pt;}
._37{width:34.315520pt;}
._46{width:35.856000pt;}
._31{width:37.024640pt;}
._70{width:38.016000pt;}
._e{width:38.936960pt;}
._f{width:40.052480pt;}
._3a{width:41.221120pt;}
._19{width:42.177280pt;}
._14{width:43.505280pt;}
._13{width:44.408320pt;}
._1c{width:46.108160pt;}
._6d{width:47.436160pt;}
._24{width:49.082880pt;}
._62{width:50.039040pt;}
._17{width:50.942080pt;}
._a{width:52.535680pt;}
._5b{width:54.819840pt;}
._48{width:56.568320pt;}
._73{width:57.475840pt;}
._45{width:58.731947pt;}
._66{width:59.653760pt;}
._2e{width:61.034880pt;}
._79{width:62.044160pt;}
._16{width:63.106560pt;}
._35{width:64.487680pt;}
._51{width:65.656320pt;}
._3b{width:66.612480pt;}
._53{width:68.684160pt;}
._52{width:69.746560pt;}
._3d{width:70.968320pt;}
._2{width:72.030720pt;}
._4f{width:73.411840pt;}
._1a{width:75.483520pt;}
._5c{width:76.682240pt;}
._63{width:79.095680pt;}
._21{width:80.583040pt;}
._22{width:81.804800pt;}
._2f{width:85.416960pt;}
._59{width:86.850133pt;}
._58{width:87.754240pt;}
._7b{width:90.586453pt;}
._67{width:92.075093pt;}
._33{width:92.993920pt;}
._6f{width:93.916160pt;}
._5d{width:95.085440pt;}
._30{width:97.357013pt;}
._7e{width:98.909440pt;}
._64{width:99.812480pt;}
._65{width:100.821760pt;}
._5f{width:102.840320pt;}
._27{width:103.955840pt;}
._28{width:105.124480pt;}
._75{width:106.558720pt;}
._50{width:107.514880pt;}
._40{width:109.380480pt;}
._49{width:110.277120pt;}
._6c{width:113.145600pt;}
._36{width:115.589120pt;}
._2c{width:119.041920pt;}
._7c{width:122.016640pt;}
._1f{width:123.385600pt;}
._6e{width:124.566400pt;}
._61{width:126.000640pt;}
._60{width:127.328640pt;}
._74{width:129.347200pt;}
._69{width:130.487040pt;}
._4b{width:134.393600pt;}
._3f{width:144.911360pt;}
._32{width:150.432853pt;}
._56{width:153.623040pt;}
._77{width:159.678720pt;}
._78{width:160.658347pt;}
._5e{width:161.962880pt;}
._71{width:164.087680pt;}
._55{width:168.260907pt;}
._12{width:173.596160pt;}
._7d{width:176.464000pt;}
._18{width:180.150187pt;}
._3c{width:181.882880pt;}
._42{width:182.839040pt;}
._43{width:183.954560pt;}
._54{width:187.991680pt;}
._4e{width:195.800320pt;}
._39{width:232.240640pt;}
._72{width:243.502080pt;}
._41{width:277.814827pt;}
._5a{width:288.759467pt;}
._57{width:296.775680pt;}
._76{width:305.546240pt;}
._4a{width:309.577600pt;}
._68{width:312.133120pt;}
._44{width:324.337280pt;}
._6b{width:329.450240pt;}
._6a{width:330.831360pt;}
._4d{width:376.780160pt;}
._47{width:383.420160pt;}
._3e{width:461.400320pt;}
.fs0{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:2.880000pt;}
.ye1{bottom:2.920000pt;}
.ycf{bottom:10.560000pt;}
.y73{bottom:10.720000pt;}
.yd6{bottom:10.880000pt;}
.y3c{bottom:18.080000pt;}
.y39{bottom:18.240000pt;}
.ye0{bottom:18.280000pt;}
.yb3{bottom:18.400000pt;}
.ybd{bottom:19.680000pt;}
.y78{bottom:22.240000pt;}
.y96{bottom:24.480000pt;}
.yce{bottom:25.920000pt;}
.y8b{bottom:26.080000pt;}
.y72{bottom:26.120000pt;}
.ya1{bottom:26.880000pt;}
.y67{bottom:29.760000pt;}
.y6a{bottom:29.920000pt;}
.y44{bottom:33.440000pt;}
.y10b{bottom:33.466667pt;}
.y42{bottom:33.600000pt;}
.yc4{bottom:33.626667pt;}
.y47{bottom:33.640000pt;}
.yc6{bottom:33.760000pt;}
.yb9{bottom:33.786667pt;}
.ybc{bottom:35.040000pt;}
.ycc{bottom:37.440000pt;}
.y77{bottom:37.600000pt;}
.yab{bottom:37.626667pt;}
.y95{bottom:39.840000pt;}
.yb1{bottom:41.440000pt;}
.y7e{bottom:41.466667pt;}
.y71{bottom:41.480000pt;}
.ya0{bottom:42.080000pt;}
.y66{bottom:45.120000pt;}
.y69{bottom:45.306667pt;}
.y49{bottom:48.800000pt;}
.y10a{bottom:48.826667pt;}
.yfd{bottom:48.840000pt;}
.y41{bottom:48.960000pt;}
.yc3{bottom:48.986667pt;}
.y46{bottom:49.000000pt;}
.yb8{bottom:49.146667pt;}
.y4{bottom:50.560000pt;}
.y76{bottom:52.800000pt;}
.yca{bottom:52.840000pt;}
.y9a{bottom:52.960000pt;}
.yaa{bottom:52.986667pt;}
.y94{bottom:55.200000pt;}
.y7d{bottom:56.666667pt;}
.yb0{bottom:56.800000pt;}
.y8a{bottom:56.826667pt;}
.y70{bottom:56.840000pt;}
.y9f{bottom:57.440000pt;}
.ya7{bottom:60.640000pt;}
.y53{bottom:64.160000pt;}
.y5b{bottom:64.186667pt;}
.yfc{bottom:64.200000pt;}
.y40{bottom:64.320000pt;}
.yc2{bottom:64.346667pt;}
.y8f{bottom:64.360000pt;}
.yb7{bottom:64.506667pt;}
.y75{bottom:68.160000pt;}
.y99{bottom:68.186667pt;}
.yc9{bottom:68.200000pt;}
.ya9{bottom:68.346667pt;}
.y93{bottom:70.560000pt;}
.y7c{bottom:72.026667pt;}
.yaf{bottom:72.160000pt;}
.y89{bottom:72.186667pt;}
.y6f{bottom:72.200000pt;}
.y9e{bottom:72.800000pt;}
.ya6{bottom:76.000000pt;}
.y52{bottom:79.520000pt;}
.y5a{bottom:79.546667pt;}
.ydf{bottom:79.560000pt;}
.y86{bottom:79.680000pt;}
.y138{bottom:80.320000pt;}
.y15a{bottom:81.120000pt;}
.y5c{bottom:83.520000pt;}
.y98{bottom:83.546667pt;}
.yc8{bottom:83.560000pt;}
.yd1{bottom:83.706667pt;}
.y92{bottom:85.920000pt;}
.yae{bottom:87.360000pt;}
.y7b{bottom:87.386667pt;}
.y6e{bottom:87.400000pt;}
.y88{bottom:87.546667pt;}
.yd5{bottom:87.560000pt;}
.y9d{bottom:88.160000pt;}
.y3d{bottom:90.240000pt;}
.ya5{bottom:91.360000pt;}
.y17e{bottom:91.680000pt;}
.y137{bottom:92.800000pt;}
.y103{bottom:94.400000pt;}
.y51{bottom:94.880000pt;}
.yc1{bottom:94.906667pt;}
.yde{bottom:94.920000pt;}
.y159{bottom:96.480000pt;}
.y91{bottom:101.120000pt;}
.yba{bottom:102.560000pt;}
.yad{bottom:102.720000pt;}
.y7a{bottom:102.746667pt;}
.y6d{bottom:102.760000pt;}
.yd4{bottom:102.920000pt;}
.y9c{bottom:103.520000pt;}
.ya4{bottom:106.760000pt;}
.y17d{bottom:107.040000pt;}
.y64{bottom:110.080000pt;}
.y57{bottom:110.240000pt;}
.y50{bottom:110.266667pt;}
.yda{bottom:110.280000pt;}
.y158{bottom:111.680000pt;}
.y97{bottom:114.560000pt;}
.y3b{bottom:121.600000pt;}
.ya3{bottom:122.120000pt;}
.y17c{bottom:122.400000pt;}
.y8d{bottom:125.440000pt;}
.y4f{bottom:125.466667pt;}
.y63{bottom:125.480000pt;}
.yfa{bottom:125.600000pt;}
.ydc{bottom:125.626667pt;}
.y85{bottom:125.640000pt;}
.y157{bottom:127.040000pt;}
.y59{bottom:130.240000pt;}
.yd0{bottom:132.960000pt;}
.y17b{bottom:137.760000pt;}
.y79{bottom:139.680000pt;}
.y4e{bottom:140.826667pt;}
.y62{bottom:140.840000pt;}
.yf9{bottom:140.960000pt;}
.ydb{bottom:140.986667pt;}
.y84{bottom:141.000000pt;}
.y156{bottom:142.400000pt;}
.yec{bottom:148.640000pt;}
.y38{bottom:152.800000pt;}
.y17a{bottom:153.120000pt;}
.yf8{bottom:156.160000pt;}
.y4d{bottom:156.186667pt;}
.y61{bottom:156.200000pt;}
.ye9{bottom:156.346667pt;}
.y83{bottom:156.360000pt;}
.y155{bottom:157.760000pt;}
.yb6{bottom:164.480000pt;}
.y179{bottom:168.480000pt;}
.yf7{bottom:171.520000pt;}
.y4c{bottom:171.546667pt;}
.y60{bottom:171.560000pt;}
.ye8{bottom:171.706667pt;}
.y82{bottom:171.720000pt;}
.y154{bottom:173.120000pt;}
.yf2{bottom:179.386667pt;}
.y178{bottom:183.706667pt;}
.yf6{bottom:186.880000pt;}
.ye7{bottom:186.906667pt;}
.y5f{bottom:186.920000pt;}
.y37{bottom:187.066667pt;}
.y153{bottom:188.346667pt;}
.y177{bottom:199.066667pt;}
.ye6{bottom:202.266667pt;}
.yf5{bottom:202.280000pt;}
.y36{bottom:202.426667pt;}
.y152{bottom:203.706667pt;}
.y90{bottom:211.226667pt;}
.y176{bottom:214.426667pt;}
.y130{bottom:214.746667pt;}
.ye5{bottom:217.626667pt;}
.yf4{bottom:217.640000pt;}
.y35{bottom:217.786667pt;}
.y151{bottom:219.066667pt;}
.y58{bottom:222.906667pt;}
.ycd{bottom:229.786667pt;}
.y12f{bottom:230.106667pt;}
.ye4{bottom:232.986667pt;}
.yf3{bottom:233.000000pt;}
.y34{bottom:233.146667pt;}
.y150{bottom:234.426667pt;}
.yb5{bottom:242.106667pt;}
.y175{bottom:245.146667pt;}
.y12e{bottom:245.466667pt;}
.y126{bottom:248.186667pt;}
.y33{bottom:248.506667pt;}
.y14f{bottom:249.786667pt;}
.y56{bottom:254.266667pt;}
.y74{bottom:255.546667pt;}
.y174{bottom:260.506667pt;}
.y12d{bottom:260.666667pt;}
.y125{bottom:263.546667pt;}
.y32{bottom:263.706667pt;}
.y102{bottom:263.866667pt;}
.yeb{bottom:264.506667pt;}
.y14e{bottom:265.146667pt;}
.y11c{bottom:266.106667pt;}
.ycb{bottom:268.826667pt;}
.y12c{bottom:273.146667pt;}
.yd9{bottom:275.706667pt;}
.y124{bottom:278.906667pt;}
.y31{bottom:279.066667pt;}
.y14d{bottom:280.346667pt;}
.y11b{bottom:281.306667pt;}
.y173{bottom:291.066667pt;}
.y123{bottom:291.386667pt;}
.y30{bottom:294.426667pt;}
.y14c{bottom:295.706667pt;}
.y11a{bottom:296.666667pt;}
.yea{bottom:303.546667pt;}
.y172{bottom:306.426667pt;}
.y2f{bottom:309.786667pt;}
.y14b{bottom:311.066667pt;}
.y119{bottom:312.026667pt;}
.yb4{bottom:319.546667pt;}
.y171{bottom:321.786667pt;}
.y2e{bottom:325.146667pt;}
.y8e{bottom:325.466667pt;}
.y14a{bottom:326.426667pt;}
.y118{bottom:327.386667pt;}
.y170{bottom:337.146667pt;}
.y2d{bottom:340.506667pt;}
.y149{bottom:341.786667pt;}
.y117{bottom:342.746667pt;}
.y6c{bottom:352.186667pt;}
.y16f{bottom:352.506667pt;}
.y2c{bottom:355.706667pt;}
.y148{bottom:357.146667pt;}
.y116{bottom:357.946667pt;}
.yc7{bottom:365.466667pt;}
.y16e{bottom:367.706667pt;}
.y2b{bottom:371.066667pt;}
.y147{bottom:372.346667pt;}
.y115{bottom:373.306667pt;}
.y55{bottom:377.666667pt;}
.yb2{bottom:377.826667pt;}
.y16d{bottom:383.106667pt;}
.y2a{bottom:386.466667pt;}
.y146{bottom:387.746667pt;}
.y114{bottom:388.706667pt;}
.y16c{bottom:398.466667pt;}
.y29{bottom:401.826667pt;}
.y8c{bottom:402.946667pt;}
.y145{bottom:403.106667pt;}
.y113{bottom:404.066667pt;}
.y54{bottom:408.866667pt;}
.y16b{bottom:413.826667pt;}
.y28{bottom:417.186667pt;}
.y144{bottom:418.466667pt;}
.y112{bottom:419.426667pt;}
.yf1{bottom:425.506667pt;}
.y136{bottom:428.386667pt;}
.y16a{bottom:429.186667pt;}
.y27{bottom:432.386667pt;}
.y101{bottom:433.186667pt;}
.y143{bottom:433.826667pt;}
.y111{bottom:434.786667pt;}
.y135{bottom:443.746667pt;}
.y169{bottom:444.386667pt;}
.y26{bottom:447.746667pt;}
.y142{bottom:449.026667pt;}
.y110{bottom:449.986667pt;}
.yac{bottom:455.266667pt;}
.ye3{bottom:457.506667pt;}
.y134{bottom:459.106667pt;}
.y168{bottom:459.746667pt;}
.yc5{bottom:462.146667pt;}
.y25{bottom:463.106667pt;}
.y141{bottom:464.386667pt;}
.y10f{bottom:465.346667pt;}
.y6b{bottom:468.066667pt;}
.y4b{bottom:470.946667pt;}
.y133{bottom:474.466667pt;}
.y167{bottom:475.106667pt;}
.yd8{bottom:475.746667pt;}
.y24{bottom:478.466667pt;}
.y140{bottom:479.746667pt;}
.y100{bottom:479.906667pt;}
.y10e{bottom:480.706667pt;}
.y132{bottom:489.826667pt;}
.y166{bottom:490.466667pt;}
.y23{bottom:493.826667pt;}
.y13f{bottom:495.106667pt;}
.y10d{bottom:496.066667pt;}
.y131{bottom:502.146667pt;}
.y165{bottom:505.826667pt;}
.y22{bottom:509.186667pt;}
.y13e{bottom:510.466667pt;}
.y10c{bottom:511.426667pt;}
.y164{bottom:521.186667pt;}
.y21{bottom:524.386667pt;}
.y13d{bottom:525.826667pt;}
.y68{bottom:526.306667pt;}
.yf0{bottom:533.506667pt;}
.y163{bottom:536.386667pt;}
.yc0{bottom:539.586667pt;}
.y20{bottom:539.746667pt;}
.y109{bottom:539.906667pt;}
.y13c{bottom:541.026667pt;}
.y87{bottom:541.506667pt;}
.y162{bottom:551.746667pt;}
.y1f{bottom:555.106667pt;}
.y13b{bottom:556.386667pt;}
.y161{bottom:567.106667pt;}
.y1e{bottom:570.466667pt;}
.ya8{bottom:571.106667pt;}
.y13a{bottom:571.773333pt;}
.y160{bottom:582.493333pt;}
.yd7{bottom:583.773333pt;}
.y139{bottom:584.253333pt;}
.y65{bottom:584.733333pt;}
.y1d{bottom:585.853333pt;}
.yff{bottom:587.933333pt;}
.y12b{bottom:596.093333pt;}
.y15f{bottom:597.853333pt;}
.y1c{bottom:601.213333pt;}
.yef{bottom:610.973333pt;}
.y12a{bottom:611.453333pt;}
.y15e{bottom:613.213333pt;}
.y1b{bottom:616.413333pt;}
.y108{bottom:617.213333pt;}
.y122{bottom:626.653333pt;}
.y129{bottom:626.813333pt;}
.yfe{bottom:626.973333pt;}
.y15d{bottom:628.413333pt;}
.y1a{bottom:631.773333pt;}
.y121{bottom:642.013333pt;}
.y128{bottom:642.173333pt;}
.y5e{bottom:642.973333pt;}
.y15c{bottom:643.773333pt;}
.y19{bottom:647.133333pt;}
.y4a{bottom:655.613333pt;}
.y81{bottom:657.373333pt;}
.y188{bottom:659.133333pt;}
.y15b{bottom:659.293333pt;}
.y18{bottom:662.493333pt;}
.ybf{bottom:662.973333pt;}
.y107{bottom:663.933333pt;}
.ya2{bottom:667.773333pt;}
.y127{bottom:669.853333pt;}
.y120{bottom:672.733333pt;}
.y187{bottom:674.493333pt;}
.y17{bottom:677.853333pt;}
.y48{bottom:686.973333pt;}
.y11f{bottom:688.093333pt;}
.y186{bottom:689.853333pt;}
.y16{bottom:693.213333pt;}
.y11e{bottom:703.453333pt;}
.ye2{bottom:703.613333pt;}
.y185{bottom:705.053333pt;}
.yd3{bottom:706.973333pt;}
.y15{bottom:708.413333pt;}
.y11d{bottom:715.773333pt;}
.yfb{bottom:719.613333pt;}
.y184{bottom:720.413333pt;}
.y14{bottom:723.773333pt;}
.y106{bottom:725.853333pt;}
.y183{bottom:735.773333pt;}
.y13{bottom:739.133333pt;}
.y45{bottom:748.893333pt;}
.yee{bottom:749.533333pt;}
.y182{bottom:751.133333pt;}
.y12{bottom:754.493333pt;}
.y105{bottom:764.893333pt;}
.ydd{bottom:765.533333pt;}
.y181{bottom:766.493333pt;}
.y11{bottom:769.893333pt;}
.ybe{bottom:778.853333pt;}
.y180{bottom:781.893333pt;}
.y10{bottom:785.093333pt;}
.y17f{bottom:797.253333pt;}
.yf{bottom:800.453333pt;}
.y9b{bottom:803.013333pt;}
.y43{bottom:811.013333pt;}
.ye{bottom:815.813333pt;}
.yd2{bottom:823.013333pt;}
.yed{bottom:827.013333pt;}
.yd{bottom:831.173333pt;}
.y80{bottom:842.213333pt;}
.y5d{bottom:843.013333pt;}
.yc{bottom:846.533333pt;}
.y3f{bottom:857.573333pt;}
.yb{bottom:861.893333pt;}
.ybb{bottom:871.493333pt;}
.y104{bottom:872.933333pt;}
.ya{bottom:877.093333pt;}
.y9{bottom:892.453333pt;}
.y8{bottom:907.813333pt;}
.y7f{bottom:919.653333pt;}
.y7{bottom:923.173333pt;}
.y3e{bottom:935.013333pt;}
.y6{bottom:938.533333pt;}
.y5{bottom:953.893333pt;}
.y3{bottom:970.240000pt;}
.y2{bottom:986.400000pt;}
.y1{bottom:998.720000pt;}
.h8{height:30.560000pt;}
.h9{height:30.592000pt;}
.he{height:30.720000pt;}
.h7{height:30.752000pt;}
.h1{height:35.342500pt;}
.h25{height:38.400000pt;}
.h5{height:45.494375pt;}
.hb{height:45.920000pt;}
.h19{height:45.952000pt;}
.h13{height:46.080000pt;}
.h6{height:46.817187pt;}
.h22{height:47.520000pt;}
.h15{height:57.600000pt;}
.h16{height:57.632000pt;}
.h3{height:58.563750pt;}
.hd{height:61.280000pt;}
.hc{height:61.312000pt;}
.h10{height:61.440000pt;}
.h4{height:65.995312pt;}
.h2{height:74.477812pt;}
.ha{height:76.640000pt;}
.h2c{height:76.672000pt;}
.h1a{height:76.800000pt;}
.h1c{height:76.832000pt;}
.h23{height:92.000000pt;}
.h12{height:92.032000pt;}
.h18{height:96.000000pt;}
.h1e{height:96.032000pt;}
.h2d{height:107.200000pt;}
.h27{height:107.232000pt;}
.h31{height:107.392000pt;}
.h1d{height:113.600000pt;}
.h21{height:115.200000pt;}
.h17{height:115.232000pt;}
.h1f{height:116.000000pt;}
.h26{height:122.560000pt;}
.h11{height:122.592000pt;}
.h24{height:122.752000pt;}
.h20{height:134.426667pt;}
.h1b{height:137.920000pt;}
.h2b{height:153.306667pt;}
.h29{height:153.466667pt;}
.h2f{height:168.666667pt;}
.h30{height:168.826667pt;}
.hf{height:184.026667pt;}
.h14{height:199.226667pt;}
.h28{height:199.386667pt;}
.h2e{height:245.306667pt;}
.h2a{height:245.466667pt;}
.h0{height:1056.000000pt;}
.w2{width:36.160000pt;}
.w7{width:46.240000pt;}
.w6{width:100.832000pt;}
.wb{width:112.672000pt;}
.wa{width:112.800000pt;}
.w8{width:119.712000pt;}
.w3{width:125.952000pt;}
.w5{width:134.080000pt;}
.w4{width:260.866667pt;}
.w9{width:266.626667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x1{left:113.471988pt;}
.x3{left:115.391988pt;}
.x2{left:124.831988pt;}
.x7{left:137.626655pt;}
.xe{left:150.906667pt;}
.x6{left:153.466655pt;}
.x9{left:160.666655pt;}
.xc{left:198.586655pt;}
.x4{left:199.866655pt;}
.x8{left:216.826655pt;}
.x5{left:274.146655pt;}
.xf{left:277.666667pt;}
.x12{left:281.346667pt;}
.xa{left:456.893321pt;}
.xb{left:504.093321pt;}
.x10{left:539.173333pt;}
.x13{left:548.613333pt;}
.x14{left:662.053333pt;}
.x11{left:673.893333pt;}
.x16{left:735.679988pt;}
.x15{left:778.399988pt;}
}




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