
    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_da454d4b27d3f0682ade056a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_28535862046c1c9a7f7d90de.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f6913aa698cac671ef57a810.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_b0472df0d462fd184b86cc5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.115234;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;}
.v1{vertical-align:73.560000px;}
.ls7{letter-spacing:-0.840000px;}
.ls5{letter-spacing:-0.756000px;}
.ls8{letter-spacing:-0.732000px;}
.ls15{letter-spacing:-0.702000px;}
.ls9{letter-spacing:-0.445200px;}
.ls1e{letter-spacing:-0.378600px;}
.ls1c{letter-spacing:-0.350400px;}
.ls1b{letter-spacing:-0.341400px;}
.ls1{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.223800px;}
.ls1a{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.124200px;}
.ls6{letter-spacing:-0.117600px;}
.ls2{letter-spacing:-0.037440px;}
.lsa{letter-spacing:-0.028080px;}
.ls16{letter-spacing:-0.013260px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018720px;}
.ls4{letter-spacing:0.028080px;}
.ls17{letter-spacing:0.106800px;}
.ls1d{letter-spacing:0.341400px;}
.ls14{letter-spacing:0.360000px;}
.lse{letter-spacing:18.106560px;}
.lsd{letter-spacing:20.986560px;}
.ls10{letter-spacing:22.346496px;}
.ls11{letter-spacing:22.426560px;}
.lsf{letter-spacing:22.922496px;}
.lsc{letter-spacing:23.002560px;}
.ls12{letter-spacing:23.011920px;}
.ls13{letter-spacing:23.146560px;}
.lsb{letter-spacing:132.516000px;}
.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;}
}
.ws1{word-spacing:-40.032000px;}
.ws0{word-spacing:-39.744000px;}
.ws3f{word-spacing:-23.458752px;}
.ws27{word-spacing:-23.437440px;}
.ws2{word-spacing:-23.418720px;}
.ws22{word-spacing:-23.390640px;}
.ws54{word-spacing:-23.334552px;}
.ws6c{word-spacing:-23.077320px;}
.ws48{word-spacing:-23.013552px;}
.ws3a{word-spacing:-3.066720px;}
.ws1e{word-spacing:-3.042000px;}
.ws77{word-spacing:-2.977920px;}
.ws4f{word-spacing:-2.793120px;}
.ws79{word-spacing:-2.736000px;}
.ws78{word-spacing:-2.724000px;}
.ws3d{word-spacing:-2.679840px;}
.ws44{word-spacing:-2.648448px;}
.ws66{word-spacing:-2.599920px;}
.ws56{word-spacing:-2.430720px;}
.ws26{word-spacing:-2.408400px;}
.ws40{word-spacing:-2.396400px;}
.ws59{word-spacing:-2.394000px;}
.ws20{word-spacing:-2.388960px;}
.ws24{word-spacing:-2.380320px;}
.ws46{word-spacing:-2.378880px;}
.ws41{word-spacing:-2.299200px;}
.ws51{word-spacing:-2.291040px;}
.ws1c{word-spacing:-2.228880px;}
.ws3e{word-spacing:-2.209200px;}
.ws42{word-spacing:-2.174400px;}
.ws4a{word-spacing:-2.164320px;}
.ws49{word-spacing:-2.012640px;}
.ws5b{word-spacing:-1.968480px;}
.ws37{word-spacing:-1.965600px;}
.ws53{word-spacing:-1.884240px;}
.ws3b{word-spacing:-1.856160px;}
.ws34{word-spacing:-1.781280px;}
.ws35{word-spacing:-1.736160px;}
.ws58{word-spacing:-1.731120px;}
.ws23{word-spacing:-1.263840px;}
.ws4b{word-spacing:-1.173600px;}
.ws4e{word-spacing:-1.112400px;}
.ws21{word-spacing:-1.061280px;}
.ws33{word-spacing:-1.040640px;}
.ws4c{word-spacing:-1.019520px;}
.ws63{word-spacing:-0.995760px;}
.ws43{word-spacing:-0.941280px;}
.ws36{word-spacing:-0.832320px;}
.ws4d{word-spacing:-0.825120px;}
.ws52{word-spacing:-0.594000px;}
.ws45{word-spacing:-0.509724px;}
.ws25{word-spacing:-0.453600px;}
.ws1d{word-spacing:-0.341280px;}
.ws39{word-spacing:-0.303840px;}
.ws47{word-spacing:-0.300960px;}
.ws1f{word-spacing:-0.221280px;}
.wsf{word-spacing:-0.207360px;}
.ws60{word-spacing:-0.066240px;}
.ws38{word-spacing:-0.051120px;}
.ws3{word-spacing:0.000000px;}
.ws5c{word-spacing:0.144000px;}
.ws50{word-spacing:0.166800px;}
.ws55{word-spacing:0.223272px;}
.ws3c{word-spacing:0.281520px;}
.ws5a{word-spacing:0.288000px;}
.ws5d{word-spacing:0.369360px;}
.ws61{word-spacing:0.378720px;}
.ws5e{word-spacing:0.464400px;}
.ws62{word-spacing:0.996120px;}
.ws5f{word-spacing:2.428560px;}
.ws2d{word-spacing:6.783840px;}
.ws2b{word-spacing:7.554720px;}
.ws2a{word-spacing:7.578720px;}
.ws29{word-spacing:7.624560px;}
.ws2c{word-spacing:8.168400px;}
.ws2e{word-spacing:8.359680px;}
.ws28{word-spacing:8.442720px;}
.ws30{word-spacing:8.527680px;}
.ws19{word-spacing:8.645088px;}
.ws31{word-spacing:8.858160px;}
.ws2f{word-spacing:9.014400px;}
.ws16{word-spacing:9.545472px;}
.ws18{word-spacing:9.672192px;}
.ws1b{word-spacing:9.712704px;}
.ws17{word-spacing:9.779040px;}
.ws1a{word-spacing:9.779136px;}
.ws10{word-spacing:9.818496px;}
.ws32{word-spacing:9.854400px;}
.ws11{word-spacing:9.923040px;}
.ws12{word-spacing:10.011456px;}
.ws15{word-spacing:10.427472px;}
.ws14{word-spacing:11.906496px;}
.ws13{word-spacing:11.946240px;}
.ws69{word-spacing:13.300920px;}
.ws67{word-spacing:14.064480px;}
.ws6d{word-spacing:14.137920px;}
.ws68{word-spacing:14.684400px;}
.ws6a{word-spacing:14.794320px;}
.ws6b{word-spacing:15.460920px;}
.ws73{word-spacing:15.821280px;}
.wsc{word-spacing:20.631360px;}
.wsb{word-spacing:21.146400px;}
.wse{word-spacing:21.147120px;}
.ws8{word-spacing:21.236400px;}
.ws9{word-spacing:21.258720px;}
.ws7{word-spacing:21.314880px;}
.wsa{word-spacing:21.618000px;}
.wsd{word-spacing:22.694400px;}
.ws6{word-spacing:24.516240px;}
.ws64{word-spacing:28.383840px;}
.ws65{word-spacing:30.535200px;}
.ws76{word-spacing:42.757200px;}
.ws75{word-spacing:42.914880px;}
.ws74{word-spacing:43.162560px;}
.ws6e{word-spacing:47.407680px;}
.ws6f{word-spacing:47.516400px;}
.ws70{word-spacing:47.898720px;}
.ws72{word-spacing:48.637440px;}
.ws71{word-spacing:49.228560px;}
.ws57{word-spacing:87.499440px;}
.ws5{word-spacing:160.597440px;}
.ws4{word-spacing:194.581440px;}
._a{margin-left:-10.040832px;}
._e{margin-left:-6.989760px;}
._2{margin-left:-5.040000px;}
._3{margin-left:-4.032000px;}
._4{margin-left:-2.384640px;}
._0{margin-left:-1.013040px;}
._1{width:1.640160px;}
._c{width:2.709360px;}
._d{width:3.954240px;}
._9{width:18.094320px;}
._5{width:21.391680px;}
._8{width:23.094240px;}
._7{width:25.065600px;}
._11{width:37.008000px;}
._10{width:41.152320px;}
._6{width:45.757440px;}
._f{width:54.406800px;}
._b{width:658.439040px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,153,153);}
.fc2{color:rgb(171,33,122);}
.fc1{color:rgb(0,0,102);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:84.384000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:144.000000px;}
.fs6{font-size:144.144000px;}
.fs5{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y56{bottom:12.816000px;}
.y39{bottom:15.300000px;}
.y3{bottom:16.812000px;}
.y8d{bottom:17.424000px;}
.y5c{bottom:23.940000px;}
.y2{bottom:31.212000px;}
.y55{bottom:38.016000px;}
.y8c{bottom:42.624000px;}
.y1{bottom:45.612000px;}
.y72{bottom:53.388000px;}
.ye0{bottom:55.476000px;}
.y37{bottom:61.956000px;}
.y54{bottom:63.216000px;}
.y8b{bottom:67.824000px;}
.y71{bottom:78.588000px;}
.yc9{bottom:79.632000px;}
.ydf{bottom:80.676000px;}
.y36{bottom:87.156000px;}
.y53{bottom:88.416000px;}
.y8a{bottom:93.024000px;}
.y19{bottom:96.984000px;}
.y7{bottom:102.888000px;}
.y70{bottom:103.788000px;}
.yc8{bottom:104.832000px;}
.yde{bottom:105.876000px;}
.y2f{bottom:106.632000px;}
.yb5{bottom:110.664000px;}
.y35{bottom:112.356000px;}
.y52{bottom:113.616000px;}
.y40{bottom:113.796000px;}
.y89{bottom:118.224000px;}
.y18{bottom:122.184000px;}
.yd8{bottom:126.684000px;}
.y6f{bottom:128.988000px;}
.yc7{bottom:130.068000px;}
.ydd{bottom:131.076000px;}
.y2e{bottom:134.352000px;}
.yb4{bottom:135.864000px;}
.y34{bottom:137.592000px;}
.y51{bottom:138.816000px;}
.y3f{bottom:138.996000px;}
.y88{bottom:143.460000px;}
.y17{bottom:147.384000px;}
.yd7{bottom:151.920000px;}
.y6e{bottom:154.230000px;}
.ya8{bottom:154.695000px;}
.yaa{bottom:154.800000px;}
.yc6{bottom:155.265000px;}
.ydc{bottom:156.270000px;}
.yf7{bottom:159.810000px;}
.yb3{bottom:161.070000px;}
.y2d{bottom:162.075000px;}
.y33{bottom:162.795000px;}
.y50{bottom:164.055000px;}
.y3e{bottom:164.190000px;}
.y87{bottom:168.660000px;}
.y83{bottom:171.870000px;}
.y16{bottom:172.590000px;}
.yd6{bottom:177.120000px;}
.y6d{bottom:179.430000px;}
.ya7{bottom:179.895000px;}
.ya9{bottom:180.000000px;}
.yc5{bottom:180.465000px;}
.ydb{bottom:181.515000px;}
.yf6{bottom:185.040000px;}
.yb2{bottom:186.270000px;}
.y4a{bottom:187.770000px;}
.y32{bottom:187.995000px;}
.y4f{bottom:189.255000px;}
.y2c{bottom:189.795000px;}
.y99{bottom:191.670000px;}
.y86{bottom:193.860000px;}
.y38{bottom:194.040000px;}
.y82{bottom:197.100000px;}
.y15{bottom:197.790000px;}
.yd5{bottom:202.320000px;}
.yb9{bottom:202.680000px;}
.y6c{bottom:204.630000px;}
.ya6{bottom:205.125000px;}
.yc4{bottom:205.665000px;}
.yda{bottom:206.715000px;}
.yf5{bottom:210.240000px;}
.yb1{bottom:211.500000px;}
.y49{bottom:212.970000px;}
.y98{bottom:216.870000px;}
.y2b{bottom:217.545000px;}
.y85{bottom:219.060000px;}
.yeb{bottom:219.165000px;}
.yf1{bottom:222.300000px;}
.y14{bottom:223.020000px;}
.yd4{bottom:227.520000px;}
.yb8{bottom:227.880000px;}
.y6b{bottom:229.830000px;}
.ya5{bottom:230.325000px;}
.yc3{bottom:230.865000px;}
.yd9{bottom:231.915000px;}
.yf4{bottom:235.440000px;}
.yb0{bottom:236.700000px;}
.y1e{bottom:237.060000px;}
.y48{bottom:238.170000px;}
.y97{bottom:242.070000px;}
.y84{bottom:244.260000px;}
.yea{bottom:244.365000px;}
.y2a{bottom:245.265000px;}
.yf0{bottom:247.500000px;}
.y13{bottom:248.220000px;}
.yd3{bottom:252.720000px;}
.yb7{bottom:253.110000px;}
.y6a{bottom:255.030000px;}
.ya4{bottom:255.525000px;}
.yc2{bottom:256.065000px;}
.yf3{bottom:260.640000px;}
.yaf{bottom:261.900000px;}
.y96{bottom:267.270000px;}
.ye9{bottom:269.610000px;}
.yef{bottom:272.700000px;}
.y29{bottom:272.985000px;}
.y12{bottom:273.420000px;}
.y6{bottom:276.945000px;}
.yd2{bottom:277.920000px;}
.y69{bottom:280.230000px;}
.ya3{bottom:280.725000px;}
.yc1{bottom:281.310000px;}
.yf2{bottom:285.840000px;}
.yae{bottom:287.100000px;}
.y95{bottom:292.500000px;}
.ye8{bottom:294.810000px;}
.y11{bottom:298.620000px;}
.y28{bottom:300.705000px;}
.yd1{bottom:303.150000px;}
.y68{bottom:305.460000px;}
.ya2{bottom:305.925000px;}
.yc0{bottom:306.510000px;}
.yad{bottom:312.300000px;}
.y1d{bottom:312.660000px;}
.y3c{bottom:316.260000px;}
.y94{bottom:317.700000px;}
.ye7{bottom:320.010000px;}
.y81{bottom:323.670000px;}
.y10{bottom:323.820000px;}
.yd0{bottom:328.350000px;}
.y27{bottom:328.425000px;}
.y67{bottom:330.660000px;}
.ya1{bottom:331.125000px;}
.ybf{bottom:331.710000px;}
.yac{bottom:337.500000px;}
.y3b{bottom:341.460000px;}
.y93{bottom:342.900000px;}
.ye6{bottom:345.210000px;}
.y1c{bottom:345.450000px;}
.y80{bottom:348.870000px;}
.yf{bottom:349.020000px;}
.y4e{bottom:352.110000px;}
.ycf{bottom:353.550000px;}
.y66{bottom:355.860000px;}
.y26{bottom:356.190000px;}
.ya0{bottom:356.370000px;}
.ybe{bottom:356.910000px;}
.y3a{bottom:366.660000px;}
.y92{bottom:368.100000px;}
.y7f{bottom:374.070000px;}
.ye{bottom:374.250000px;}
.y4d{bottom:377.310000px;}
.y1b{bottom:378.210000px;}
.yce{bottom:378.750000px;}
.y65{bottom:381.060000px;}
.y9f{bottom:381.570000px;}
.ybd{bottom:382.110000px;}
.y25{bottom:383.910000px;}
.y91{bottom:393.300000px;}
.y78{bottom:396.075000px;}
.y7e{bottom:399.315000px;}
.yd{bottom:399.450000px;}
.y4c{bottom:402.510000px;}
.ycd{bottom:403.950000px;}
.y64{bottom:406.260000px;}
.y9e{bottom:406.770000px;}
.ybc{bottom:407.340000px;}
.y5b{bottom:407.415000px;}
.y24{bottom:411.630000px;}
.y1a{bottom:412.230000px;}
.y47{bottom:412.275000px;}
.y90{bottom:418.530000px;}
.y7c{bottom:419.370000px;}
.y5{bottom:420.990000px;}
.y77{bottom:421.275000px;}
.y7d{bottom:424.515000px;}
.yc{bottom:424.650000px;}
.ycc{bottom:429.150000px;}
.y63{bottom:431.490000px;}
.y9d{bottom:431.970000px;}
.ybb{bottom:432.540000px;}
.y5a{bottom:432.615000px;}
.y46{bottom:437.475000px;}
.y8f{bottom:443.730000px;}
.y7b{bottom:444.570000px;}
.y76{bottom:446.475000px;}
.yb{bottom:449.850000px;}
.ycb{bottom:454.395000px;}
.y62{bottom:456.690000px;}
.y9c{bottom:457.170000px;}
.yba{bottom:457.740000px;}
.y59{bottom:457.815000px;}
.y42{bottom:459.570000px;}
.y45{bottom:462.675000px;}
.y4{bottom:464.190000px;}
.y23{bottom:467.070000px;}
.y8e{bottom:468.930000px;}
.y7a{bottom:469.770000px;}
.y75{bottom:471.675000px;}
.ya{bottom:475.050000px;}
.yee{bottom:479.985000px;}
.y61{bottom:481.890000px;}
.y9b{bottom:482.370000px;}
.y41{bottom:484.770000px;}
.y79{bottom:494.970000px;}
.y74{bottom:496.905000px;}
.y9{bottom:500.250000px;}
.ye5{bottom:504.360000px;}
.yed{bottom:505.185000px;}
.y60{bottom:507.090000px;}
.y9a{bottom:507.600000px;}
.y3d{bottom:516.810000px;}
.y22{bottom:522.540000px;}
.ye4{bottom:529.560000px;}
.yec{bottom:530.385000px;}
.y5f{bottom:532.290000px;}
.y5e{bottom:539.100000px;}
.y21{bottom:545.220000px;}
.y44{bottom:547.815000px;}
.ye3{bottom:554.760000px;}
.yb6{bottom:555.150000px;}
.y73{bottom:555.990000px;}
.y8{bottom:556.275000px;}
.y1f{bottom:562.605000px;}
.y5d{bottom:564.300000px;}
.y58{bottom:566.850000px;}
.y43{bottom:573.015000px;}
.ye2{bottom:573.045000px;}
.y30{bottom:593.205000px;}
.y4b{bottom:599.190000px;}
.y31{bottom:601.455000px;}
.yab{bottom:604.260000px;}
.yca{bottom:608.010000px;}
.y57{bottom:610.095000px;}
.ye1{bottom:616.245000px;}
.y20{bottom:669.420000px;}
.h1{height:50.312812px;}
.h6{height:75.519844px;}
.h9{height:76.219102px;}
.h4{height:87.859687px;}
.h5{height:88.009875px;}
.h3{height:99.874688px;}
.hb{height:129.093750px;}
.h2{height:150.187500px;}
.h8{height:150.337688px;}
.ha{height:161.419688px;}
.h7{height:275.594063px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1c{left:1.439984px;}
.x3b{left:10.799984px;}
.x18{left:16.199984px;}
.x6b{left:20.879984px;}
.x69{left:22.499984px;}
.x3d{left:24.659984px;}
.x3e{left:31.319984px;}
.x5{left:34.811984px;}
.x3f{left:39.599984px;}
.x29{left:41.363984px;}
.x28{left:42.623984px;}
.x55{left:45.035984px;}
.x24{left:46.043984px;}
.x6a{left:55.799984px;}
.x6c{left:57.599984px;}
.x40{left:68.579984px;}
.x9{left:72.971984px;}
.x7{left:74.555984px;}
.xe{left:109.475984px;}
.xa{left:110.951984px;}
.xd{left:115.055984px;}
.x61{left:130.931984px;}
.x6f{left:134.891984px;}
.x8{left:144.431984px;}
.x2e{left:147.131984px;}
.x6e{left:150.554984px;}
.x4a{left:160.379984px;}
.x2d{left:164.954984px;}
.x70{left:166.034984px;}
.x17{left:175.169984px;}
.x4{left:177.404984px;}
.x19{left:224.789984px;}
.x25{left:226.544984px;}
.x10{left:235.259984px;}
.x27{left:244.004984px;}
.x52{left:249.374984px;}
.x26{left:255.344984px;}
.x2c{left:263.804984px;}
.x1a{left:272.669984px;}
.x71{left:297.284984px;}
.x3a{left:307.469984px;}
.xb{left:312.734984px;}
.x1b{left:320.219984px;}
.x7c{left:343.049984px;}
.x6d{left:355.859984px;}
.x7b{left:357.089984px;}
.xf{left:363.749984px;}
.x3{left:367.169984px;}
.x6{left:398.624984px;}
.x78{left:408.599984px;}
.x79{left:432.749984px;}
.x23{left:443.774984px;}
.x2{left:461.129984px;}
.x7a{left:485.309984px;}
.xc{left:521.429984px;}
.x1d{left:524.309984px;}
.x20{left:525.989984px;}
.x7d{left:541.799984px;}
.x1e{left:543.569984px;}
.x53{left:566.174984px;}
.x54{left:572.399984px;}
.x1f{left:584.609984px;}
.x56{left:588.389984px;}
.x3c{left:594.179984px;}
.x57{left:599.009984px;}
.x1{left:610.529984px;}
.x39{left:634.709984px;}
.x31{left:672.089984px;}
.x21{left:679.469984px;}
.x35{left:682.814984px;}
.x32{left:684.509984px;}
.x48{left:685.514984px;}
.x30{left:686.669984px;}
.x45{left:687.854984px;}
.x44{left:690.014984px;}
.x37{left:692.714984px;}
.x47{left:695.054984px;}
.x4b{left:697.349984px;}
.x4d{left:698.429984px;}
.x42{left:700.274984px;}
.x33{left:702.149984px;}
.x36{left:708.194984px;}
.x43{left:712.334984px;}
.x46{left:715.214984px;}
.x2a{left:718.379984px;}
.x4c{left:719.849984px;}
.x41{left:726.734984px;}
.x4e{left:731.009984px;}
.x34{left:733.109984px;}
.x38{left:736.994984px;}
.x7f{left:742.319984px;}
.x7e{left:749.519984px;}
.x80{left:769.859984px;}
.x50{left:771.329984px;}
.x51{left:800.849984px;}
.x73{left:808.709984px;}
.x4f{left:811.469984px;}
.x77{left:813.389984px;}
.x72{left:817.169984px;}
.x76{left:818.609984px;}
.x74{left:819.869984px;}
.x49{left:822.344984px;}
.x22{left:826.379984px;}
.x2f{left:833.474984px;}
.x75{left:836.249984px;}
.x2b{left:838.979984px;}
.x81{left:853.589984px;}
.x58{left:856.259984px;}
.x64{left:864.149984px;}
.x5e{left:867.059984px;}
.x5a{left:868.319984px;}
.x59{left:869.579984px;}
.x5f{left:870.659984px;}
.x12{left:871.739984px;}
.x5d{left:872.999984px;}
.x11{left:876.239984px;}
.x65{left:878.729984px;}
.x62{left:880.349984px;}
.x13{left:881.459984px;}
.x66{left:882.689984px;}
.x15{left:886.859984px;}
.x5b{left:889.199984px;}
.x67{left:893.669984px;}
.x60{left:897.299984px;}
.x63{left:901.589984px;}
.x14{left:905.399984px;}
.x5c{left:907.199984px;}
.x68{left:920.669984px;}
.x16{left:937.619984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:65.386667pt;}
.ls7{letter-spacing:-0.746667pt;}
.ls5{letter-spacing:-0.672000pt;}
.ls8{letter-spacing:-0.650667pt;}
.ls15{letter-spacing:-0.624000pt;}
.ls9{letter-spacing:-0.395733pt;}
.ls1e{letter-spacing:-0.336533pt;}
.ls1c{letter-spacing:-0.311467pt;}
.ls1b{letter-spacing:-0.303467pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.198933pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.110400pt;}
.ls6{letter-spacing:-0.104533pt;}
.ls2{letter-spacing:-0.033280pt;}
.lsa{letter-spacing:-0.024960pt;}
.ls16{letter-spacing:-0.011787pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016640pt;}
.ls4{letter-spacing:0.024960pt;}
.ls17{letter-spacing:0.094933pt;}
.ls1d{letter-spacing:0.303467pt;}
.ls14{letter-spacing:0.320000pt;}
.lse{letter-spacing:16.094720pt;}
.lsd{letter-spacing:18.654720pt;}
.ls10{letter-spacing:19.863552pt;}
.ls11{letter-spacing:19.934720pt;}
.lsf{letter-spacing:20.375552pt;}
.lsc{letter-spacing:20.446720pt;}
.ls12{letter-spacing:20.455040pt;}
.ls13{letter-spacing:20.574720pt;}
.lsb{letter-spacing:117.792000pt;}
.ws1{word-spacing:-35.584000pt;}
.ws0{word-spacing:-35.328000pt;}
.ws3f{word-spacing:-20.852224pt;}
.ws27{word-spacing:-20.833280pt;}
.ws2{word-spacing:-20.816640pt;}
.ws22{word-spacing:-20.791680pt;}
.ws54{word-spacing:-20.741824pt;}
.ws6c{word-spacing:-20.513173pt;}
.ws48{word-spacing:-20.456491pt;}
.ws3a{word-spacing:-2.725973pt;}
.ws1e{word-spacing:-2.704000pt;}
.ws77{word-spacing:-2.647040pt;}
.ws4f{word-spacing:-2.482773pt;}
.ws79{word-spacing:-2.432000pt;}
.ws78{word-spacing:-2.421333pt;}
.ws3d{word-spacing:-2.382080pt;}
.ws44{word-spacing:-2.354176pt;}
.ws66{word-spacing:-2.311040pt;}
.ws56{word-spacing:-2.160640pt;}
.ws26{word-spacing:-2.140800pt;}
.ws40{word-spacing:-2.130133pt;}
.ws59{word-spacing:-2.128000pt;}
.ws20{word-spacing:-2.123520pt;}
.ws24{word-spacing:-2.115840pt;}
.ws46{word-spacing:-2.114560pt;}
.ws41{word-spacing:-2.043733pt;}
.ws51{word-spacing:-2.036480pt;}
.ws1c{word-spacing:-1.981227pt;}
.ws3e{word-spacing:-1.963733pt;}
.ws42{word-spacing:-1.932800pt;}
.ws4a{word-spacing:-1.923840pt;}
.ws49{word-spacing:-1.789013pt;}
.ws5b{word-spacing:-1.749760pt;}
.ws37{word-spacing:-1.747200pt;}
.ws53{word-spacing:-1.674880pt;}
.ws3b{word-spacing:-1.649920pt;}
.ws34{word-spacing:-1.583360pt;}
.ws35{word-spacing:-1.543253pt;}
.ws58{word-spacing:-1.538773pt;}
.ws23{word-spacing:-1.123413pt;}
.ws4b{word-spacing:-1.043200pt;}
.ws4e{word-spacing:-0.988800pt;}
.ws21{word-spacing:-0.943360pt;}
.ws33{word-spacing:-0.925013pt;}
.ws4c{word-spacing:-0.906240pt;}
.ws63{word-spacing:-0.885120pt;}
.ws43{word-spacing:-0.836693pt;}
.ws36{word-spacing:-0.739840pt;}
.ws4d{word-spacing:-0.733440pt;}
.ws52{word-spacing:-0.528000pt;}
.ws45{word-spacing:-0.453088pt;}
.ws25{word-spacing:-0.403200pt;}
.ws1d{word-spacing:-0.303360pt;}
.ws39{word-spacing:-0.270080pt;}
.ws47{word-spacing:-0.267520pt;}
.ws1f{word-spacing:-0.196693pt;}
.wsf{word-spacing:-0.184320pt;}
.ws60{word-spacing:-0.058880pt;}
.ws38{word-spacing:-0.045440pt;}
.ws3{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.128000pt;}
.ws50{word-spacing:0.148267pt;}
.ws55{word-spacing:0.198464pt;}
.ws3c{word-spacing:0.250240pt;}
.ws5a{word-spacing:0.256000pt;}
.ws5d{word-spacing:0.328320pt;}
.ws61{word-spacing:0.336640pt;}
.ws5e{word-spacing:0.412800pt;}
.ws62{word-spacing:0.885440pt;}
.ws5f{word-spacing:2.158720pt;}
.ws2d{word-spacing:6.030080pt;}
.ws2b{word-spacing:6.715307pt;}
.ws2a{word-spacing:6.736640pt;}
.ws29{word-spacing:6.777387pt;}
.ws2c{word-spacing:7.260800pt;}
.ws2e{word-spacing:7.430827pt;}
.ws28{word-spacing:7.504640pt;}
.ws30{word-spacing:7.580160pt;}
.ws19{word-spacing:7.684523pt;}
.ws31{word-spacing:7.873920pt;}
.ws2f{word-spacing:8.012800pt;}
.ws16{word-spacing:8.484864pt;}
.ws18{word-spacing:8.597504pt;}
.ws1b{word-spacing:8.633515pt;}
.ws17{word-spacing:8.692480pt;}
.ws1a{word-spacing:8.692565pt;}
.ws10{word-spacing:8.727552pt;}
.ws32{word-spacing:8.759467pt;}
.ws11{word-spacing:8.820480pt;}
.ws12{word-spacing:8.899072pt;}
.ws15{word-spacing:9.268864pt;}
.ws14{word-spacing:10.583552pt;}
.ws13{word-spacing:10.618880pt;}
.ws69{word-spacing:11.823040pt;}
.ws67{word-spacing:12.501760pt;}
.ws6d{word-spacing:12.567040pt;}
.ws68{word-spacing:13.052800pt;}
.ws6a{word-spacing:13.150507pt;}
.ws6b{word-spacing:13.743040pt;}
.ws73{word-spacing:14.063360pt;}
.wsc{word-spacing:18.338987pt;}
.wsb{word-spacing:18.796800pt;}
.wse{word-spacing:18.797440pt;}
.ws8{word-spacing:18.876800pt;}
.ws9{word-spacing:18.896640pt;}
.ws7{word-spacing:18.946560pt;}
.wsa{word-spacing:19.216000pt;}
.wsd{word-spacing:20.172800pt;}
.ws6{word-spacing:21.792213pt;}
.ws64{word-spacing:25.230080pt;}
.ws65{word-spacing:27.142400pt;}
.ws76{word-spacing:38.006400pt;}
.ws75{word-spacing:38.146560pt;}
.ws74{word-spacing:38.366720pt;}
.ws6e{word-spacing:42.140160pt;}
.ws6f{word-spacing:42.236800pt;}
.ws70{word-spacing:42.576640pt;}
.ws72{word-spacing:43.233280pt;}
.ws71{word-spacing:43.758720pt;}
.ws57{word-spacing:77.777280pt;}
.ws5{word-spacing:142.753280pt;}
.ws4{word-spacing:172.961280pt;}
._a{margin-left:-8.925184pt;}
._e{margin-left:-6.213120pt;}
._2{margin-left:-4.480000pt;}
._3{margin-left:-3.584000pt;}
._4{margin-left:-2.119680pt;}
._0{margin-left:-0.900480pt;}
._1{width:1.457920pt;}
._c{width:2.408320pt;}
._d{width:3.514880pt;}
._9{width:16.083840pt;}
._5{width:19.014827pt;}
._8{width:20.528213pt;}
._7{width:22.280533pt;}
._11{width:32.896000pt;}
._10{width:36.579840pt;}
._6{width:40.673280pt;}
._f{width:48.361600pt;}
._b{width:585.279147pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:75.008000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:128.000000pt;}
.fs6{font-size:128.128000pt;}
.fs5{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:11.392000pt;}
.y39{bottom:13.600000pt;}
.y3{bottom:14.944000pt;}
.y8d{bottom:15.488000pt;}
.y5c{bottom:21.280000pt;}
.y2{bottom:27.744000pt;}
.y55{bottom:33.792000pt;}
.y8c{bottom:37.888000pt;}
.y1{bottom:40.544000pt;}
.y72{bottom:47.456000pt;}
.ye0{bottom:49.312000pt;}
.y37{bottom:55.072000pt;}
.y54{bottom:56.192000pt;}
.y8b{bottom:60.288000pt;}
.y71{bottom:69.856000pt;}
.yc9{bottom:70.784000pt;}
.ydf{bottom:71.712000pt;}
.y36{bottom:77.472000pt;}
.y53{bottom:78.592000pt;}
.y8a{bottom:82.688000pt;}
.y19{bottom:86.208000pt;}
.y7{bottom:91.456000pt;}
.y70{bottom:92.256000pt;}
.yc8{bottom:93.184000pt;}
.yde{bottom:94.112000pt;}
.y2f{bottom:94.784000pt;}
.yb5{bottom:98.368000pt;}
.y35{bottom:99.872000pt;}
.y52{bottom:100.992000pt;}
.y40{bottom:101.152000pt;}
.y89{bottom:105.088000pt;}
.y18{bottom:108.608000pt;}
.yd8{bottom:112.608000pt;}
.y6f{bottom:114.656000pt;}
.yc7{bottom:115.616000pt;}
.ydd{bottom:116.512000pt;}
.y2e{bottom:119.424000pt;}
.yb4{bottom:120.768000pt;}
.y34{bottom:122.304000pt;}
.y51{bottom:123.392000pt;}
.y3f{bottom:123.552000pt;}
.y88{bottom:127.520000pt;}
.y17{bottom:131.008000pt;}
.yd7{bottom:135.040000pt;}
.y6e{bottom:137.093333pt;}
.ya8{bottom:137.506667pt;}
.yaa{bottom:137.600000pt;}
.yc6{bottom:138.013333pt;}
.ydc{bottom:138.906667pt;}
.yf7{bottom:142.053333pt;}
.yb3{bottom:143.173333pt;}
.y2d{bottom:144.066667pt;}
.y33{bottom:144.706667pt;}
.y50{bottom:145.826667pt;}
.y3e{bottom:145.946667pt;}
.y87{bottom:149.920000pt;}
.y83{bottom:152.773333pt;}
.y16{bottom:153.413333pt;}
.yd6{bottom:157.440000pt;}
.y6d{bottom:159.493333pt;}
.ya7{bottom:159.906667pt;}
.ya9{bottom:160.000000pt;}
.yc5{bottom:160.413333pt;}
.ydb{bottom:161.346667pt;}
.yf6{bottom:164.480000pt;}
.yb2{bottom:165.573333pt;}
.y4a{bottom:166.906667pt;}
.y32{bottom:167.106667pt;}
.y4f{bottom:168.226667pt;}
.y2c{bottom:168.706667pt;}
.y99{bottom:170.373333pt;}
.y86{bottom:172.320000pt;}
.y38{bottom:172.480000pt;}
.y82{bottom:175.200000pt;}
.y15{bottom:175.813333pt;}
.yd5{bottom:179.840000pt;}
.yb9{bottom:180.160000pt;}
.y6c{bottom:181.893333pt;}
.ya6{bottom:182.333333pt;}
.yc4{bottom:182.813333pt;}
.yda{bottom:183.746667pt;}
.yf5{bottom:186.880000pt;}
.yb1{bottom:188.000000pt;}
.y49{bottom:189.306667pt;}
.y98{bottom:192.773333pt;}
.y2b{bottom:193.373333pt;}
.y85{bottom:194.720000pt;}
.yeb{bottom:194.813333pt;}
.yf1{bottom:197.600000pt;}
.y14{bottom:198.240000pt;}
.yd4{bottom:202.240000pt;}
.yb8{bottom:202.560000pt;}
.y6b{bottom:204.293333pt;}
.ya5{bottom:204.733333pt;}
.yc3{bottom:205.213333pt;}
.yd9{bottom:206.146667pt;}
.yf4{bottom:209.280000pt;}
.yb0{bottom:210.400000pt;}
.y1e{bottom:210.720000pt;}
.y48{bottom:211.706667pt;}
.y97{bottom:215.173333pt;}
.y84{bottom:217.120000pt;}
.yea{bottom:217.213333pt;}
.y2a{bottom:218.013333pt;}
.yf0{bottom:220.000000pt;}
.y13{bottom:220.640000pt;}
.yd3{bottom:224.640000pt;}
.yb7{bottom:224.986667pt;}
.y6a{bottom:226.693333pt;}
.ya4{bottom:227.133333pt;}
.yc2{bottom:227.613333pt;}
.yf3{bottom:231.680000pt;}
.yaf{bottom:232.800000pt;}
.y96{bottom:237.573333pt;}
.ye9{bottom:239.653333pt;}
.yef{bottom:242.400000pt;}
.y29{bottom:242.653333pt;}
.y12{bottom:243.040000pt;}
.y6{bottom:246.173333pt;}
.yd2{bottom:247.040000pt;}
.y69{bottom:249.093333pt;}
.ya3{bottom:249.533333pt;}
.yc1{bottom:250.053333pt;}
.yf2{bottom:254.080000pt;}
.yae{bottom:255.200000pt;}
.y95{bottom:260.000000pt;}
.ye8{bottom:262.053333pt;}
.y11{bottom:265.440000pt;}
.y28{bottom:267.293333pt;}
.yd1{bottom:269.466667pt;}
.y68{bottom:271.520000pt;}
.ya2{bottom:271.933333pt;}
.yc0{bottom:272.453333pt;}
.yad{bottom:277.600000pt;}
.y1d{bottom:277.920000pt;}
.y3c{bottom:281.120000pt;}
.y94{bottom:282.400000pt;}
.ye7{bottom:284.453333pt;}
.y81{bottom:287.706667pt;}
.y10{bottom:287.840000pt;}
.yd0{bottom:291.866667pt;}
.y27{bottom:291.933333pt;}
.y67{bottom:293.920000pt;}
.ya1{bottom:294.333333pt;}
.ybf{bottom:294.853333pt;}
.yac{bottom:300.000000pt;}
.y3b{bottom:303.520000pt;}
.y93{bottom:304.800000pt;}
.ye6{bottom:306.853333pt;}
.y1c{bottom:307.066667pt;}
.y80{bottom:310.106667pt;}
.yf{bottom:310.240000pt;}
.y4e{bottom:312.986667pt;}
.ycf{bottom:314.266667pt;}
.y66{bottom:316.320000pt;}
.y26{bottom:316.613333pt;}
.ya0{bottom:316.773333pt;}
.ybe{bottom:317.253333pt;}
.y3a{bottom:325.920000pt;}
.y92{bottom:327.200000pt;}
.y7f{bottom:332.506667pt;}
.ye{bottom:332.666667pt;}
.y4d{bottom:335.386667pt;}
.y1b{bottom:336.186667pt;}
.yce{bottom:336.666667pt;}
.y65{bottom:338.720000pt;}
.y9f{bottom:339.173333pt;}
.ybd{bottom:339.653333pt;}
.y25{bottom:341.253333pt;}
.y91{bottom:349.600000pt;}
.y78{bottom:352.066667pt;}
.y7e{bottom:354.946667pt;}
.yd{bottom:355.066667pt;}
.y4c{bottom:357.786667pt;}
.ycd{bottom:359.066667pt;}
.y64{bottom:361.120000pt;}
.y9e{bottom:361.573333pt;}
.ybc{bottom:362.080000pt;}
.y5b{bottom:362.146667pt;}
.y24{bottom:365.893333pt;}
.y1a{bottom:366.426667pt;}
.y47{bottom:366.466667pt;}
.y90{bottom:372.026667pt;}
.y7c{bottom:372.773333pt;}
.y5{bottom:374.213333pt;}
.y77{bottom:374.466667pt;}
.y7d{bottom:377.346667pt;}
.yc{bottom:377.466667pt;}
.ycc{bottom:381.466667pt;}
.y63{bottom:383.546667pt;}
.y9d{bottom:383.973333pt;}
.ybb{bottom:384.480000pt;}
.y5a{bottom:384.546667pt;}
.y46{bottom:388.866667pt;}
.y8f{bottom:394.426667pt;}
.y7b{bottom:395.173333pt;}
.y76{bottom:396.866667pt;}
.yb{bottom:399.866667pt;}
.ycb{bottom:403.906667pt;}
.y62{bottom:405.946667pt;}
.y9c{bottom:406.373333pt;}
.yba{bottom:406.880000pt;}
.y59{bottom:406.946667pt;}
.y42{bottom:408.506667pt;}
.y45{bottom:411.266667pt;}
.y4{bottom:412.613333pt;}
.y23{bottom:415.173333pt;}
.y8e{bottom:416.826667pt;}
.y7a{bottom:417.573333pt;}
.y75{bottom:419.266667pt;}
.ya{bottom:422.266667pt;}
.yee{bottom:426.653333pt;}
.y61{bottom:428.346667pt;}
.y9b{bottom:428.773333pt;}
.y41{bottom:430.906667pt;}
.y79{bottom:439.973333pt;}
.y74{bottom:441.693333pt;}
.y9{bottom:444.666667pt;}
.ye5{bottom:448.320000pt;}
.yed{bottom:449.053333pt;}
.y60{bottom:450.746667pt;}
.y9a{bottom:451.200000pt;}
.y3d{bottom:459.386667pt;}
.y22{bottom:464.480000pt;}
.ye4{bottom:470.720000pt;}
.yec{bottom:471.453333pt;}
.y5f{bottom:473.146667pt;}
.y5e{bottom:479.200000pt;}
.y21{bottom:484.640000pt;}
.y44{bottom:486.946667pt;}
.ye3{bottom:493.120000pt;}
.yb6{bottom:493.466667pt;}
.y73{bottom:494.213333pt;}
.y8{bottom:494.466667pt;}
.y1f{bottom:500.093333pt;}
.y5d{bottom:501.600000pt;}
.y58{bottom:503.866667pt;}
.y43{bottom:509.346667pt;}
.ye2{bottom:509.373333pt;}
.y30{bottom:527.293333pt;}
.y4b{bottom:532.613333pt;}
.y31{bottom:534.626667pt;}
.yab{bottom:537.120000pt;}
.yca{bottom:540.453333pt;}
.y57{bottom:542.306667pt;}
.ye1{bottom:547.773333pt;}
.y20{bottom:595.040000pt;}
.h1{height:44.722500pt;}
.h6{height:67.128750pt;}
.h9{height:67.750312pt;}
.h4{height:78.097500pt;}
.h5{height:78.231000pt;}
.h3{height:88.777500pt;}
.hb{height:114.750000pt;}
.h2{height:133.500000pt;}
.h8{height:133.633500pt;}
.ha{height:143.484167pt;}
.h7{height:244.972500pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:1.279986pt;}
.x3b{left:9.599986pt;}
.x18{left:14.399986pt;}
.x6b{left:18.559986pt;}
.x69{left:19.999986pt;}
.x3d{left:21.919986pt;}
.x3e{left:27.839986pt;}
.x5{left:30.943986pt;}
.x3f{left:35.199986pt;}
.x29{left:36.767986pt;}
.x28{left:37.887986pt;}
.x55{left:40.031986pt;}
.x24{left:40.927986pt;}
.x6a{left:49.599986pt;}
.x6c{left:51.199986pt;}
.x40{left:60.959986pt;}
.x9{left:64.863986pt;}
.x7{left:66.271986pt;}
.xe{left:97.311986pt;}
.xa{left:98.623986pt;}
.xd{left:102.271986pt;}
.x61{left:116.383986pt;}
.x6f{left:119.903986pt;}
.x8{left:128.383986pt;}
.x2e{left:130.783986pt;}
.x6e{left:133.826652pt;}
.x4a{left:142.559986pt;}
.x2d{left:146.626652pt;}
.x70{left:147.586652pt;}
.x17{left:155.706652pt;}
.x4{left:157.693319pt;}
.x19{left:199.813319pt;}
.x25{left:201.373319pt;}
.x10{left:209.119986pt;}
.x27{left:216.893319pt;}
.x52{left:221.666652pt;}
.x26{left:226.973319pt;}
.x2c{left:234.493319pt;}
.x1a{left:242.373319pt;}
.x71{left:264.253319pt;}
.x3a{left:273.306652pt;}
.xb{left:277.986652pt;}
.x1b{left:284.639986pt;}
.x7c{left:304.933319pt;}
.x6d{left:316.319986pt;}
.x7b{left:317.413319pt;}
.xf{left:323.333319pt;}
.x3{left:326.373319pt;}
.x6{left:354.333319pt;}
.x78{left:363.199986pt;}
.x79{left:384.666652pt;}
.x23{left:394.466652pt;}
.x2{left:409.893319pt;}
.x7a{left:431.386652pt;}
.xc{left:463.493319pt;}
.x1d{left:466.053319pt;}
.x20{left:467.546652pt;}
.x7d{left:481.599986pt;}
.x1e{left:483.173319pt;}
.x53{left:503.266652pt;}
.x54{left:508.799986pt;}
.x1f{left:519.653319pt;}
.x56{left:523.013319pt;}
.x3c{left:528.159986pt;}
.x57{left:532.453319pt;}
.x1{left:542.693319pt;}
.x39{left:564.186652pt;}
.x31{left:597.413319pt;}
.x21{left:603.973319pt;}
.x35{left:606.946652pt;}
.x32{left:608.453319pt;}
.x48{left:609.346652pt;}
.x30{left:610.373319pt;}
.x45{left:611.426652pt;}
.x44{left:613.346652pt;}
.x37{left:615.746652pt;}
.x47{left:617.826652pt;}
.x4b{left:619.866652pt;}
.x4d{left:620.826652pt;}
.x42{left:622.466652pt;}
.x33{left:624.133319pt;}
.x36{left:629.506652pt;}
.x43{left:633.186652pt;}
.x46{left:635.746652pt;}
.x2a{left:638.559986pt;}
.x4c{left:639.866652pt;}
.x41{left:645.986652pt;}
.x4e{left:649.786652pt;}
.x34{left:651.653319pt;}
.x38{left:655.106652pt;}
.x7f{left:659.839986pt;}
.x7e{left:666.239986pt;}
.x80{left:684.319986pt;}
.x50{left:685.626652pt;}
.x51{left:711.866652pt;}
.x73{left:718.853319pt;}
.x4f{left:721.306652pt;}
.x77{left:723.013319pt;}
.x72{left:726.373319pt;}
.x76{left:727.653319pt;}
.x74{left:728.773319pt;}
.x49{left:730.973319pt;}
.x22{left:734.559986pt;}
.x2f{left:740.866652pt;}
.x75{left:743.333319pt;}
.x2b{left:745.759986pt;}
.x81{left:758.746652pt;}
.x58{left:761.119986pt;}
.x64{left:768.133319pt;}
.x5e{left:770.719986pt;}
.x5a{left:771.839986pt;}
.x59{left:772.959986pt;}
.x5f{left:773.919986pt;}
.x12{left:774.879986pt;}
.x5d{left:775.999986pt;}
.x11{left:778.879986pt;}
.x65{left:781.093319pt;}
.x62{left:782.533319pt;}
.x13{left:783.519986pt;}
.x66{left:784.613319pt;}
.x15{left:788.319986pt;}
.x5b{left:790.399986pt;}
.x67{left:794.373319pt;}
.x60{left:797.599986pt;}
.x63{left:801.413319pt;}
.x14{left:804.799986pt;}
.x5c{left:806.399986pt;}
.x68{left:818.373319pt;}
.x16{left:833.439986pt;}
}




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