
    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_5fcdde69283fb2a1be3b857d.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_39fb991acee9d76bedfd3e39.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_54303efaea0935bb1ef9869d.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_d65ed1de4dc3aa34fdbb5fe3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104492;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_3e998d582392badde63716c5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_516655b47115e8cf9e5571eb.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v4{vertical-align:-100.800000px;}
.v3{vertical-align:-33.120000px;}
.v8{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:35.280000px;}
.v9{vertical-align:50.400000px;}
.v6{vertical-align:53.880000px;}
.v1{vertical-align:81.060000px;}
.v7{vertical-align:86.400000px;}
.v2{vertical-align:113.580000px;}
.ls17{letter-spacing:-6.480000px;}
.ls18{letter-spacing:-0.756000px;}
.ls1a{letter-spacing:-0.750000px;}
.lsd{letter-spacing:-0.438600px;}
.ls1f{letter-spacing:-0.378600px;}
.ls1{letter-spacing:-0.367800px;}
.lse{letter-spacing:-0.350400px;}
.ls16{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.197400px;}
.lsb{letter-spacing:-0.124200px;}
.ls1d{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.037440px;}
.ls1e{letter-spacing:-0.036000px;}
.ls7{letter-spacing:-0.028080px;}
.ls20{letter-spacing:-0.025920px;}
.ls10{letter-spacing:-0.018720px;}
.ls21{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.008640px;}
.lsc{letter-spacing:0.017280px;}
.ls15{letter-spacing:0.018720px;}
.ls4{letter-spacing:0.101400px;}
.ls2{letter-spacing:0.134400px;}
.ls3{letter-spacing:0.181200px;}
.ls1b{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.341400px;}
.ls9{letter-spacing:31.301280px;}
.ls1c{letter-spacing:62.405280px;}
.ls6{letter-spacing:107.260128px;}
.ls5{letter-spacing:107.308080px;}
.ls14{letter-spacing:107.428080px;}
.ls26{letter-spacing:408.673248px;}
.ls23{letter-spacing:408.685248px;}
.ls24{letter-spacing:408.701280px;}
.ls25{letter-spacing:408.713280px;}
.ls22{letter-spacing:408.725280px;}
.ls13{letter-spacing:733.776000px;}
.ls12{letter-spacing:773.262720px;}
.ls8{letter-spacing:1536.804000px;}
.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;}
}
.ws1a{word-spacing:-29.988000px;}
.ws19{word-spacing:-29.952000px;}
.ws12{word-spacing:-29.808000px;}
.ws0{word-spacing:-29.696232px;}
.wsa{word-spacing:-26.661312px;}
.ws9{word-spacing:-26.621280px;}
.wsd{word-spacing:-23.760120px;}
.ws5{word-spacing:-23.458752px;}
.ws16{word-spacing:-23.437440px;}
.ws6{word-spacing:-23.418720px;}
.ws10{word-spacing:-23.400000px;}
.ws4{word-spacing:-23.390640px;}
.wse{word-spacing:-23.381280px;}
.ws8{word-spacing:-23.334552px;}
.ws15{word-spacing:-23.221320px;}
.wsc{word-spacing:-23.068320px;}
.wsb{word-spacing:-23.020152px;}
.ws17{word-spacing:-22.668720px;}
.ws14{word-spacing:-22.662720px;}
.ws11{word-spacing:-21.625920px;}
.ws1b{word-spacing:-21.617280px;}
.ws18{word-spacing:-20.232000px;}
.ws7{word-spacing:-20.016000px;}
.ws13{word-spacing:-16.938720px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:68.437440px;}
.ws2{word-spacing:69.083280px;}
.ws3{word-spacing:69.162552px;}
._1c{margin-left:-10.844160px;}
._6{margin-left:-9.576720px;}
._1d{margin-left:-8.519760px;}
._2{margin-left:-7.272000px;}
._11{margin-left:-5.166000px;}
._4{margin-left:-3.958560px;}
._1{margin-left:-2.301120px;}
._0{margin-left:-1.081440px;}
._3{width:1.077120px;}
._5{width:2.682240px;}
._b{width:6.454080px;}
._d{width:12.354480px;}
._c{width:14.079600px;}
._a{width:17.650800px;}
._9{width:18.673920px;}
._10{width:26.308800px;}
._f{width:38.595600px;}
._e{width:39.990240px;}
._17{width:57.384000px;}
._20{width:59.896080px;}
._12{width:96.635520px;}
._13{width:97.936560px;}
._1e{width:107.260128px;}
._21{width:282.563040px;}
._15{width:355.467120px;}
._1f{width:408.725280px;}
._14{width:469.929120px;}
._19{width:473.769120px;}
._16{width:508.887120px;}
._18{width:592.536000px;}
._8{width:906.859440px;}
._7{width:977.106480px;}
._1b{width:1230.613680px;}
._1a{width:2694.846720px;}
.fc1{color:rgb(255,134,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsf{font-size:72.144000px;}
.fsc{font-size:77.760000px;}
.fse{font-size:77.904000px;}
.fs6{font-size:84.240000px;}
.fs7{font-size:84.384000px;}
.fsa{font-size:95.760000px;}
.fsb{font-size:95.904000px;}
.fs9{font-size:108.000000px;}
.fs0{font-size:108.144000px;}
.fs4{font-size:131.760000px;}
.fs5{font-size:131.904000px;}
.fs8{font-size:174.240000px;}
.fs2{font-size:185.760000px;}
.fs3{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:34.920000px;}
.y1{bottom:37.548000px;}
.y17{bottom:111.132000px;}
.y3d{bottom:114.480000px;}
.y56{bottom:118.980000px;}
.y119{bottom:127.764000px;}
.y1f{bottom:129.564000px;}
.y75{bottom:132.372000px;}
.yc5{bottom:134.784000px;}
.y16{bottom:136.332000px;}
.yfb{bottom:138.780000px;}
.y8e{bottom:139.536000px;}
.y94{bottom:140.220000px;}
.yac{bottom:142.344000px;}
.y118{bottom:152.970000px;}
.y1e{bottom:154.770000px;}
.y7e{bottom:155.160000px;}
.y95{bottom:155.190000px;}
.y4c{bottom:155.445000px;}
.y55{bottom:156.810000px;}
.y74{bottom:157.575000px;}
.y36{bottom:157.680000px;}
.y8d{bottom:159.330000px;}
.ye9{bottom:159.585000px;}
.yc4{bottom:159.990000px;}
.y15{bottom:161.535000px;}
.yab{bottom:163.950000px;}
.yfa{bottom:164.010000px;}
.yd1{bottom:166.320000px;}
.ydd{bottom:168.660000px;}
.y7d{bottom:168.840000px;}
.yb0{bottom:177.150000px;}
.y49{bottom:178.125000px;}
.y117{bottom:178.170000px;}
.y8c{bottom:179.130000px;}
.y1d{bottom:179.970000px;}
.y73{bottom:182.775000px;}
.y4b{bottom:184.245000px;}
.ye8{bottom:184.785000px;}
.yc3{bottom:185.190000px;}
.y14{bottom:186.735000px;}
.yd0{bottom:187.950000px;}
.ydc{bottom:193.860000px;}
.y54{bottom:194.610000px;}
.y106{bottom:194.835000px;}
.y8b{bottom:198.930000px;}
.y12c{bottom:200.595000px;}
.y116{bottom:203.370000px;}
.y47{bottom:206.925000px;}
.y72{bottom:207.975000px;}
.y35{bottom:208.080000px;}
.ye7{bottom:209.985000px;}
.yc2{bottom:210.390000px;}
.y13{bottom:211.935000px;}
.y4a{bottom:213.045000px;}
.y9c{bottom:216.540000px;}
.y8a{bottom:218.730000px;}
.ydb{bottom:219.090000px;}
.yb{bottom:219.930000px;}
.y105{bottom:220.035000px;}
.y65{bottom:222.990000px;}
.yf5{bottom:227.595000px;}
.y115{bottom:228.570000px;}
.y19{bottom:232.275000px;}
.y53{bottom:232.410000px;}
.y71{bottom:233.175000px;}
.y34{bottom:233.280000px;}
.ye6{bottom:235.230000px;}
.yc1{bottom:235.620000px;}
.y12{bottom:237.135000px;}
.y9b{bottom:238.140000px;}
.y12b{bottom:239.505000px;}
.y9f{bottom:239.610000px;}
.y48{bottom:241.845000px;}
.yda{bottom:244.290000px;}
.y104{bottom:245.235000px;}
.y64{bottom:248.190000px;}
.yf4{bottom:252.795000px;}
.yaa{bottom:253.590000px;}
.y114{bottom:253.770000px;}
.y70{bottom:258.405000px;}
.y33{bottom:258.510000px;}
.ye5{bottom:260.430000px;}
.yc0{bottom:260.820000px;}
.y89{bottom:260.925000px;}
.y11{bottom:262.335000px;}
.y41{bottom:264.450000px;}
.y126{bottom:267.225000px;}
.ya{bottom:267.450000px;}
.yd9{bottom:269.490000px;}
.y52{bottom:270.210000px;}
.y103{bottom:270.435000px;}
.y9a{bottom:270.570000px;}
.y63{bottom:273.390000px;}
.y96{bottom:273.810000px;}
.y9e{bottom:277.410000px;}
.yf3{bottom:277.995000px;}
.ya9{bottom:278.790000px;}
.y113{bottom:279.000000px;}
.y12a{bottom:279.825000px;}
.y88{bottom:282.525000px;}
.y6f{bottom:283.605000px;}
.y32{bottom:283.710000px;}
.ybf{bottom:286.020000px;}
.y10{bottom:287.565000px;}
.y45{bottom:289.185000px;}
.yd5{bottom:291.060000px;}
.y125{bottom:292.425000px;}
.y40{bottom:293.250000px;}
.yd8{bottom:294.690000px;}
.y93{bottom:295.410000px;}
.y102{bottom:295.635000px;}
.y62{bottom:298.590000px;}
.y7f{bottom:302.400000px;}
.yf2{bottom:303.195000px;}
.y3b{bottom:303.810000px;}
.ya8{bottom:303.990000px;}
.y112{bottom:304.200000px;}
.yb3{bottom:306.615000px;}
.y51{bottom:308.010000px;}
.y6e{bottom:308.805000px;}
.y31{bottom:308.910000px;}
.ybe{bottom:311.220000px;}
.yf{bottom:312.765000px;}
.yd4{bottom:314.460000px;}
.y9{bottom:314.970000px;}
.y9d{bottom:315.210000px;}
.y87{bottom:315.720000px;}
.y124{bottom:317.625000px;}
.yd7{bottom:319.890000px;}
.y101{bottom:320.835000px;}
.y3e{bottom:322.050000px;}
.y61{bottom:323.820000px;}
.y7c{bottom:324.000000px;}
.y129{bottom:327.345000px;}
.y99{bottom:328.035000px;}
.yf1{bottom:328.395000px;}
.ya7{bottom:329.190000px;}
.y111{bottom:329.400000px;}
.yb2{bottom:331.815000px;}
.y6d{bottom:334.005000px;}
.y30{bottom:334.110000px;}
.y86{bottom:335.520000px;}
.y3a{bottom:336.210000px;}
.ybd{bottom:336.420000px;}
.yd3{bottom:337.860000px;}
.ye{bottom:337.965000px;}
.y123{bottom:342.825000px;}
.yd6{bottom:345.090000px;}
.y50{bottom:345.855000px;}
.y100{bottom:346.035000px;}
.y60{bottom:349.020000px;}
.y98{bottom:349.635000px;}
.y44{bottom:350.100000px;}
.ya6{bottom:354.390000px;}
.y110{bottom:354.600000px;}
.y85{bottom:355.320000px;}
.ye3{bottom:356.295000px;}
.yb1{bottom:357.015000px;}
.y1c{bottom:358.125000px;}
.y6c{bottom:359.205000px;}
.y2f{bottom:359.310000px;}
.yd2{bottom:361.260000px;}
.ybc{bottom:361.620000px;}
.y8{bottom:362.520000px;}
.y122{bottom:368.025000px;}
.y7b{bottom:368.100000px;}
.y23{bottom:368.745000px;}
.y24{bottom:370.830000px;}
.yff{bottom:371.265000px;}
.y5f{bottom:374.220000px;}
.y128{bottom:374.865000px;}
.y84{bottom:375.120000px;}
.y42{bottom:378.930000px;}
.ya5{bottom:379.590000px;}
.y10f{bottom:379.800000px;}
.ye2{bottom:381.495000px;}
.y97{bottom:382.035000px;}
.y1b{bottom:383.325000px;}
.y4f{bottom:383.655000px;}
.y6b{bottom:384.405000px;}
.y2e{bottom:384.510000px;}
.ybb{bottom:386.820000px;}
.y121{bottom:393.270000px;}
.y7a{bottom:393.300000px;}
.y83{bottom:394.920000px;}
.yfe{bottom:396.465000px;}
.y5e{bottom:399.420000px;}
.ya4{bottom:404.820000px;}
.y10e{bottom:405.000000px;}
.ye1{bottom:406.695000px;}
.y43{bottom:407.730000px;}
.y7{bottom:410.040000px;}
.yba{bottom:412.050000px;}
.y82{bottom:414.720000px;}
.y2d{bottom:418.035000px;}
.y120{bottom:418.470000px;}
.y79{bottom:418.500000px;}
.y4e{bottom:421.455000px;}
.yfd{bottom:421.665000px;}
.y127{bottom:422.430000px;}
.yd{bottom:422.640000px;}
.yf0{bottom:422.925000px;}
.y5d{bottom:424.620000px;}
.y10d{bottom:430.200000px;}
.ye0{bottom:431.895000px;}
.y3f{bottom:436.530000px;}
.yaf{bottom:437.115000px;}
.yb9{bottom:437.250000px;}
.y2c{bottom:439.635000px;}
.y11f{bottom:443.670000px;}
.y78{bottom:443.730000px;}
.yfc{bottom:446.865000px;}
.yc{bottom:447.840000px;}
.yef{bottom:448.125000px;}
.y5c{bottom:449.820000px;}
.y10c{bottom:455.430000px;}
.ydf{bottom:457.095000px;}
.y4d{bottom:459.255000px;}
.yb8{bottom:462.450000px;}
.y81{bottom:464.910000px;}
.yce{bottom:465.945000px;}
.y11e{bottom:468.870000px;}
.y77{bottom:468.930000px;}
.y18{bottom:470.085000px;}
.yee{bottom:473.325000px;}
.yf9{bottom:480.525000px;}
.y10b{bottom:480.630000px;}
.yde{bottom:482.325000px;}
.y3c{bottom:483.870000px;}
.yc9{bottom:485.250000px;}
.y80{bottom:486.510000px;}
.yb7{bottom:487.650000px;}
.ycd{bottom:491.145000px;}
.y11d{bottom:494.070000px;}
.y76{bottom:494.130000px;}
.y92{bottom:498.420000px;}
.yed{bottom:498.525000px;}
.yf8{bottom:505.725000px;}
.y10a{bottom:505.830000px;}
.y5{bottom:506.085000px;}
.yc8{bottom:508.650000px;}
.ya2{bottom:510.015000px;}
.yb6{bottom:512.850000px;}
.y22{bottom:513.540000px;}
.ycc{bottom:516.345000px;}
.ycf{bottom:516.450000px;}
.y6{bottom:519.195000px;}
.y11c{bottom:519.270000px;}
.y91{bottom:523.620000px;}
.yec{bottom:523.725000px;}
.yf7{bottom:530.925000px;}
.y109{bottom:531.030000px;}
.y67{bottom:531.465000px;}
.yc7{bottom:532.080000px;}
.y26{bottom:532.905000px;}
.y59{bottom:534.570000px;}
.ya3{bottom:535.110000px;}
.y21{bottom:535.140000px;}
.ya1{bottom:535.215000px;}
.y20{bottom:536.505000px;}
.y6a{bottom:538.050000px;}
.y69{bottom:541.005000px;}
.ycb{bottom:541.545000px;}
.y29{bottom:542.520000px;}
.ye4{bottom:542.850000px;}
.y11b{bottom:544.500000px;}
.y5b{bottom:544.935000px;}
.yeb{bottom:548.970000px;}
.y2b{bottom:550.545000px;}
.y28{bottom:551.955000px;}
.yc6{bottom:555.480000px;}
.yf6{bottom:556.125000px;}
.y108{bottom:556.230000px;}
.y58{bottom:557.970000px;}
.y25{bottom:558.105000px;}
.ya0{bottom:560.415000px;}
.y1a{bottom:560.700000px;}
.y8f{bottom:561.420000px;}
.yb5{bottom:563.295000px;}
.y68{bottom:564.405000px;}
.yca{bottom:566.745000px;}
.y38{bottom:567.900000px;}
.y66{bottom:569.265000px;}
.y11a{bottom:569.700000px;}
.y5a{bottom:570.135000px;}
.yae{bottom:571.065000px;}
.y90{bottom:574.050000px;}
.yea{bottom:574.170000px;}
.y2a{bottom:575.745000px;}
.y39{bottom:575.820000px;}
.y27{bottom:577.155000px;}
.y57{bottom:581.370000px;}
.y107{bottom:581.430000px;}
.yb4{bottom:588.495000px;}
.y37{bottom:593.100000px;}
.yad{bottom:596.265000px;}
.y4{bottom:675.870000px;}
.y3{bottom:697.470000px;}
.y2{bottom:719.070000px;}
.h17{height:69.086250px;}
.h2{height:75.093750px;}
.h1e{height:75.243937px;}
.h1c{height:75.314180px;}
.h1a{height:75.519844px;}
.h13{height:81.101250px;}
.h1d{height:81.251437px;}
.h7{height:87.859687px;}
.h8{height:88.009875px;}
.he{height:99.874688px;}
.h10{height:100.024875px;}
.h19{height:103.280625px;}
.hc{height:112.640625px;}
.h1{height:112.790813px;}
.h5{height:137.421562px;}
.h6{height:137.571750px;}
.h1b{height:138.259688px;}
.ha{height:156.153750px;}
.h16{height:161.493750px;}
.h14{height:177.169875px;}
.h9{height:181.726875px;}
.h3{height:193.741875px;}
.h4{height:200.500313px;}
.hb{height:201.439687px;}
.h15{height:302.400000px;}
.h11{height:403.200000px;}
.h18{height:531.900000px;}
.hd{height:604.800000px;}
.h12{height:610.920000px;}
.hf{height:805.680000px;}
.h0{height:810.000000px;}
.w6{width:106.380000px;}
.w3{width:106.560000px;}
.w4{width:270.180000px;}
.w5{width:286.740000px;}
.w2{width:317.520000px;}
.w1{width:348.300000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1{left:10.800000px;}
.x2{left:16.416000px;}
.x14{left:39.168000px;}
.xc{left:43.416000px;}
.x52{left:47.520000px;}
.x75{left:49.572000px;}
.x51{left:59.040000px;}
.x5{left:61.236000px;}
.x6d{left:63.432000px;}
.x6c{left:65.952000px;}
.x36{left:70.740000px;}
.x3c{left:72.504000px;}
.x53{left:75.420000px;}
.x7d{left:77.004000px;}
.x15{left:79.416000px;}
.x50{left:82.296000px;}
.x6e{left:84.672000px;}
.x3a{left:93.780000px;}
.x44{left:95.004000px;}
.x16{left:96.156000px;}
.x69{left:98.172000px;}
.x3{left:99.468000px;}
.x5e{left:103.824000px;}
.x60{left:106.668000px;}
.x43{left:109.044000px;}
.x5f{left:112.428000px;}
.x71{left:113.724000px;}
.x61{left:114.768000px;}
.x62{left:120.528000px;}
.xd{left:122.364000px;}
.x7{left:123.372000px;}
.x42{left:126.360000px;}
.x6a{left:134.028000px;}
.x4f{left:145.836000px;}
.x28{left:148.212000px;}
.x72{left:150.990000px;}
.x27{left:152.535000px;}
.x70{left:155.415000px;}
.x63{left:157.785000px;}
.x55{left:164.730000px;}
.x6{left:166.215000px;}
.x6f{left:176.115000px;}
.xb{left:178.125000px;}
.x65{left:190.290000px;}
.x57{left:195.945000px;}
.x4e{left:199.470000px;}
.x64{left:210.990000px;}
.x73{left:213.630000px;}
.x54{left:215.205000px;}
.x66{left:234.285000px;}
.x67{left:255.705000px;}
.x1b{left:298.830000px;}
.x6b{left:303.840000px;}
.x1a{left:314.490000px;}
.x5d{left:341.565000px;}
.x5b{left:354.345000px;}
.x2a{left:358.920000px;}
.x37{left:368.250000px;}
.x46{left:369.900000px;}
.x3d{left:372.960000px;}
.x5c{left:378.105000px;}
.x45{left:381.570000px;}
.x3e{left:386.100000px;}
.x38{left:392.550000px;}
.x39{left:393.990000px;}
.x47{left:399.570000px;}
.xf{left:402.480000px;}
.x56{left:406.230000px;}
.x17{left:427.860000px;}
.x4{left:437.070000px;}
.x77{left:440.205000px;}
.x74{left:453.135000px;}
.x2b{left:457.740000px;}
.x26{left:474.300000px;}
.x4d{left:476.460000px;}
.x4a{left:487.290000px;}
.x7c{left:490.425000px;}
.x24{left:491.550000px;}
.x78{left:492.840000px;}
.x25{left:495.330000px;}
.x41{left:508.890000px;}
.x31{left:513.570000px;}
.x48{left:514.650000px;}
.x32{left:525.810000px;}
.x4b{left:528.150000px;}
.x29{left:541.725000px;}
.x4c{left:551.550000px;}
.x30{left:555.225000px;}
.x8{left:562.680000px;}
.x49{left:569.235000px;}
.x9{left:583.020000px;}
.x7f{left:613.980000px;}
.x68{left:624.135000px;}
.x13{left:625.650000px;}
.x2c{left:635.070000px;}
.x3b{left:639.510000px;}
.xe{left:688.215000px;}
.x2d{left:707.220000px;}
.xa{left:727.050000px;}
.x40{left:746.355000px;}
.x19{left:758.415000px;}
.x7a{left:766.620000px;}
.x79{left:772.560000px;}
.x18{left:776.415000px;}
.x20{left:783.255000px;}
.x1c{left:784.875000px;}
.x21{left:787.395000px;}
.x22{left:791.355000px;}
.x1d{left:793.155000px;}
.x2f{left:800.925000px;}
.x5a{left:802.515000px;}
.x7b{left:807.300000px;}
.x1f{left:810.975000px;}
.x59{left:812.775000px;}
.x1e{left:814.035000px;}
.x58{left:821.595000px;}
.x76{left:828.690000px;}
.x35{left:851.685000px;}
.x11{left:863.790000px;}
.x10{left:869.730000px;}
.x2e{left:875.445000px;}
.x3f{left:895.860000px;}
.x23{left:903.675000px;}
.x12{left:923.010000px;}
.x34{left:928.905000px;}
.x33{left:983.445000px;}
.x7e{left:1069.275000px;}
@media print{
.v4{vertical-align:-89.600000pt;}
.v3{vertical-align:-29.440000pt;}
.v8{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:31.360000pt;}
.v9{vertical-align:44.800000pt;}
.v6{vertical-align:47.893333pt;}
.v1{vertical-align:72.053333pt;}
.v7{vertical-align:76.800000pt;}
.v2{vertical-align:100.960000pt;}
.ls17{letter-spacing:-5.760000pt;}
.ls18{letter-spacing:-0.672000pt;}
.ls1a{letter-spacing:-0.666667pt;}
.lsd{letter-spacing:-0.389867pt;}
.ls1f{letter-spacing:-0.336533pt;}
.ls1{letter-spacing:-0.326933pt;}
.lse{letter-spacing:-0.311467pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.175467pt;}
.lsb{letter-spacing:-0.110400pt;}
.ls1d{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.033280pt;}
.ls1e{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:-0.024960pt;}
.ls20{letter-spacing:-0.023040pt;}
.ls10{letter-spacing:-0.016640pt;}
.ls21{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.007680pt;}
.lsc{letter-spacing:0.015360pt;}
.ls15{letter-spacing:0.016640pt;}
.ls4{letter-spacing:0.090133pt;}
.ls2{letter-spacing:0.119467pt;}
.ls3{letter-spacing:0.161067pt;}
.ls1b{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.303467pt;}
.ls9{letter-spacing:27.823360pt;}
.ls1c{letter-spacing:55.471360pt;}
.ls6{letter-spacing:95.342336pt;}
.ls5{letter-spacing:95.384960pt;}
.ls14{letter-spacing:95.491627pt;}
.ls26{letter-spacing:363.265109pt;}
.ls23{letter-spacing:363.275776pt;}
.ls24{letter-spacing:363.290027pt;}
.ls25{letter-spacing:363.300693pt;}
.ls22{letter-spacing:363.311360pt;}
.ls13{letter-spacing:652.245333pt;}
.ls12{letter-spacing:687.344640pt;}
.ls8{letter-spacing:1366.048000pt;}
.ws1a{word-spacing:-26.656000pt;}
.ws19{word-spacing:-26.624000pt;}
.ws12{word-spacing:-26.496000pt;}
.ws0{word-spacing:-26.396651pt;}
.wsa{word-spacing:-23.698944pt;}
.ws9{word-spacing:-23.663360pt;}
.wsd{word-spacing:-21.120107pt;}
.ws5{word-spacing:-20.852224pt;}
.ws16{word-spacing:-20.833280pt;}
.ws6{word-spacing:-20.816640pt;}
.ws10{word-spacing:-20.800000pt;}
.ws4{word-spacing:-20.791680pt;}
.wse{word-spacing:-20.783360pt;}
.ws8{word-spacing:-20.741824pt;}
.ws15{word-spacing:-20.641173pt;}
.wsc{word-spacing:-20.505173pt;}
.wsb{word-spacing:-20.462357pt;}
.ws17{word-spacing:-20.149973pt;}
.ws14{word-spacing:-20.144640pt;}
.ws11{word-spacing:-19.223040pt;}
.ws1b{word-spacing:-19.215360pt;}
.ws18{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.792000pt;}
.ws13{word-spacing:-15.056640pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:60.833280pt;}
.ws2{word-spacing:61.407360pt;}
.ws3{word-spacing:61.477824pt;}
._1c{margin-left:-9.639253pt;}
._6{margin-left:-8.512640pt;}
._1d{margin-left:-7.573120pt;}
._2{margin-left:-6.464000pt;}
._11{margin-left:-4.592000pt;}
._4{margin-left:-3.518720pt;}
._1{margin-left:-2.045440pt;}
._0{margin-left:-0.961280pt;}
._3{width:0.957440pt;}
._5{width:2.384213pt;}
._b{width:5.736960pt;}
._d{width:10.981760pt;}
._c{width:12.515200pt;}
._a{width:15.689600pt;}
._9{width:16.599040pt;}
._10{width:23.385600pt;}
._f{width:34.307200pt;}
._e{width:35.546880pt;}
._17{width:51.008000pt;}
._20{width:53.240960pt;}
._12{width:85.898240pt;}
._13{width:87.054720pt;}
._1e{width:95.342336pt;}
._21{width:251.167147pt;}
._15{width:315.970773pt;}
._1f{width:363.311360pt;}
._14{width:417.714773pt;}
._19{width:421.128107pt;}
._16{width:452.344107pt;}
._18{width:526.698667pt;}
._8{width:806.097280pt;}
._7{width:868.539093pt;}
._1b{width:1093.878827pt;}
._1a{width:2395.419307pt;}
.fsd{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsf{font-size:64.128000pt;}
.fsc{font-size:69.120000pt;}
.fse{font-size:69.248000pt;}
.fs6{font-size:74.880000pt;}
.fs7{font-size:75.008000pt;}
.fsa{font-size:85.120000pt;}
.fsb{font-size:85.248000pt;}
.fs9{font-size:96.000000pt;}
.fs0{font-size:96.128000pt;}
.fs4{font-size:117.120000pt;}
.fs5{font-size:117.248000pt;}
.fs8{font-size:154.880000pt;}
.fs2{font-size:165.120000pt;}
.fs3{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:31.040000pt;}
.y1{bottom:33.376000pt;}
.y17{bottom:98.784000pt;}
.y3d{bottom:101.760000pt;}
.y56{bottom:105.760000pt;}
.y119{bottom:113.568000pt;}
.y1f{bottom:115.168000pt;}
.y75{bottom:117.664000pt;}
.yc5{bottom:119.808000pt;}
.y16{bottom:121.184000pt;}
.yfb{bottom:123.360000pt;}
.y8e{bottom:124.032000pt;}
.y94{bottom:124.640000pt;}
.yac{bottom:126.528000pt;}
.y118{bottom:135.973333pt;}
.y1e{bottom:137.573333pt;}
.y7e{bottom:137.920000pt;}
.y95{bottom:137.946667pt;}
.y4c{bottom:138.173333pt;}
.y55{bottom:139.386667pt;}
.y74{bottom:140.066667pt;}
.y36{bottom:140.160000pt;}
.y8d{bottom:141.626667pt;}
.ye9{bottom:141.853333pt;}
.yc4{bottom:142.213333pt;}
.y15{bottom:143.586667pt;}
.yab{bottom:145.733333pt;}
.yfa{bottom:145.786667pt;}
.yd1{bottom:147.840000pt;}
.ydd{bottom:149.920000pt;}
.y7d{bottom:150.080000pt;}
.yb0{bottom:157.466667pt;}
.y49{bottom:158.333333pt;}
.y117{bottom:158.373333pt;}
.y8c{bottom:159.226667pt;}
.y1d{bottom:159.973333pt;}
.y73{bottom:162.466667pt;}
.y4b{bottom:163.773333pt;}
.ye8{bottom:164.253333pt;}
.yc3{bottom:164.613333pt;}
.y14{bottom:165.986667pt;}
.yd0{bottom:167.066667pt;}
.ydc{bottom:172.320000pt;}
.y54{bottom:172.986667pt;}
.y106{bottom:173.186667pt;}
.y8b{bottom:176.826667pt;}
.y12c{bottom:178.306667pt;}
.y116{bottom:180.773333pt;}
.y47{bottom:183.933333pt;}
.y72{bottom:184.866667pt;}
.y35{bottom:184.960000pt;}
.ye7{bottom:186.653333pt;}
.yc2{bottom:187.013333pt;}
.y13{bottom:188.386667pt;}
.y4a{bottom:189.373333pt;}
.y9c{bottom:192.480000pt;}
.y8a{bottom:194.426667pt;}
.ydb{bottom:194.746667pt;}
.yb{bottom:195.493333pt;}
.y105{bottom:195.586667pt;}
.y65{bottom:198.213333pt;}
.yf5{bottom:202.306667pt;}
.y115{bottom:203.173333pt;}
.y19{bottom:206.466667pt;}
.y53{bottom:206.586667pt;}
.y71{bottom:207.266667pt;}
.y34{bottom:207.360000pt;}
.ye6{bottom:209.093333pt;}
.yc1{bottom:209.440000pt;}
.y12{bottom:210.786667pt;}
.y9b{bottom:211.680000pt;}
.y12b{bottom:212.893333pt;}
.y9f{bottom:212.986667pt;}
.y48{bottom:214.973333pt;}
.yda{bottom:217.146667pt;}
.y104{bottom:217.986667pt;}
.y64{bottom:220.613333pt;}
.yf4{bottom:224.706667pt;}
.yaa{bottom:225.413333pt;}
.y114{bottom:225.573333pt;}
.y70{bottom:229.693333pt;}
.y33{bottom:229.786667pt;}
.ye5{bottom:231.493333pt;}
.yc0{bottom:231.840000pt;}
.y89{bottom:231.933333pt;}
.y11{bottom:233.186667pt;}
.y41{bottom:235.066667pt;}
.y126{bottom:237.533333pt;}
.ya{bottom:237.733333pt;}
.yd9{bottom:239.546667pt;}
.y52{bottom:240.186667pt;}
.y103{bottom:240.386667pt;}
.y9a{bottom:240.506667pt;}
.y63{bottom:243.013333pt;}
.y96{bottom:243.386667pt;}
.y9e{bottom:246.586667pt;}
.yf3{bottom:247.106667pt;}
.ya9{bottom:247.813333pt;}
.y113{bottom:248.000000pt;}
.y12a{bottom:248.733333pt;}
.y88{bottom:251.133333pt;}
.y6f{bottom:252.093333pt;}
.y32{bottom:252.186667pt;}
.ybf{bottom:254.240000pt;}
.y10{bottom:255.613333pt;}
.y45{bottom:257.053333pt;}
.yd5{bottom:258.720000pt;}
.y125{bottom:259.933333pt;}
.y40{bottom:260.666667pt;}
.yd8{bottom:261.946667pt;}
.y93{bottom:262.586667pt;}
.y102{bottom:262.786667pt;}
.y62{bottom:265.413333pt;}
.y7f{bottom:268.800000pt;}
.yf2{bottom:269.506667pt;}
.y3b{bottom:270.053333pt;}
.ya8{bottom:270.213333pt;}
.y112{bottom:270.400000pt;}
.yb3{bottom:272.546667pt;}
.y51{bottom:273.786667pt;}
.y6e{bottom:274.493333pt;}
.y31{bottom:274.586667pt;}
.ybe{bottom:276.640000pt;}
.yf{bottom:278.013333pt;}
.yd4{bottom:279.520000pt;}
.y9{bottom:279.973333pt;}
.y9d{bottom:280.186667pt;}
.y87{bottom:280.640000pt;}
.y124{bottom:282.333333pt;}
.yd7{bottom:284.346667pt;}
.y101{bottom:285.186667pt;}
.y3e{bottom:286.266667pt;}
.y61{bottom:287.840000pt;}
.y7c{bottom:288.000000pt;}
.y129{bottom:290.973333pt;}
.y99{bottom:291.586667pt;}
.yf1{bottom:291.906667pt;}
.ya7{bottom:292.613333pt;}
.y111{bottom:292.800000pt;}
.yb2{bottom:294.946667pt;}
.y6d{bottom:296.893333pt;}
.y30{bottom:296.986667pt;}
.y86{bottom:298.240000pt;}
.y3a{bottom:298.853333pt;}
.ybd{bottom:299.040000pt;}
.yd3{bottom:300.320000pt;}
.ye{bottom:300.413333pt;}
.y123{bottom:304.733333pt;}
.yd6{bottom:306.746667pt;}
.y50{bottom:307.426667pt;}
.y100{bottom:307.586667pt;}
.y60{bottom:310.240000pt;}
.y98{bottom:310.786667pt;}
.y44{bottom:311.200000pt;}
.ya6{bottom:315.013333pt;}
.y110{bottom:315.200000pt;}
.y85{bottom:315.840000pt;}
.ye3{bottom:316.706667pt;}
.yb1{bottom:317.346667pt;}
.y1c{bottom:318.333333pt;}
.y6c{bottom:319.293333pt;}
.y2f{bottom:319.386667pt;}
.yd2{bottom:321.120000pt;}
.ybc{bottom:321.440000pt;}
.y8{bottom:322.240000pt;}
.y122{bottom:327.133333pt;}
.y7b{bottom:327.200000pt;}
.y23{bottom:327.773333pt;}
.y24{bottom:329.626667pt;}
.yff{bottom:330.013333pt;}
.y5f{bottom:332.640000pt;}
.y128{bottom:333.213333pt;}
.y84{bottom:333.440000pt;}
.y42{bottom:336.826667pt;}
.ya5{bottom:337.413333pt;}
.y10f{bottom:337.600000pt;}
.ye2{bottom:339.106667pt;}
.y97{bottom:339.586667pt;}
.y1b{bottom:340.733333pt;}
.y4f{bottom:341.026667pt;}
.y6b{bottom:341.693333pt;}
.y2e{bottom:341.786667pt;}
.ybb{bottom:343.840000pt;}
.y121{bottom:349.573333pt;}
.y7a{bottom:349.600000pt;}
.y83{bottom:351.040000pt;}
.yfe{bottom:352.413333pt;}
.y5e{bottom:355.040000pt;}
.ya4{bottom:359.840000pt;}
.y10e{bottom:360.000000pt;}
.ye1{bottom:361.506667pt;}
.y43{bottom:362.426667pt;}
.y7{bottom:364.480000pt;}
.yba{bottom:366.266667pt;}
.y82{bottom:368.640000pt;}
.y2d{bottom:371.586667pt;}
.y120{bottom:371.973333pt;}
.y79{bottom:372.000000pt;}
.y4e{bottom:374.626667pt;}
.yfd{bottom:374.813333pt;}
.y127{bottom:375.493333pt;}
.yd{bottom:375.680000pt;}
.yf0{bottom:375.933333pt;}
.y5d{bottom:377.440000pt;}
.y10d{bottom:382.400000pt;}
.ye0{bottom:383.906667pt;}
.y3f{bottom:388.026667pt;}
.yaf{bottom:388.546667pt;}
.yb9{bottom:388.666667pt;}
.y2c{bottom:390.786667pt;}
.y11f{bottom:394.373333pt;}
.y78{bottom:394.426667pt;}
.yfc{bottom:397.213333pt;}
.yc{bottom:398.080000pt;}
.yef{bottom:398.333333pt;}
.y5c{bottom:399.840000pt;}
.y10c{bottom:404.826667pt;}
.ydf{bottom:406.306667pt;}
.y4d{bottom:408.226667pt;}
.yb8{bottom:411.066667pt;}
.y81{bottom:413.253333pt;}
.yce{bottom:414.173333pt;}
.y11e{bottom:416.773333pt;}
.y77{bottom:416.826667pt;}
.y18{bottom:417.853333pt;}
.yee{bottom:420.733333pt;}
.yf9{bottom:427.133333pt;}
.y10b{bottom:427.226667pt;}
.yde{bottom:428.733333pt;}
.y3c{bottom:430.106667pt;}
.yc9{bottom:431.333333pt;}
.y80{bottom:432.453333pt;}
.yb7{bottom:433.466667pt;}
.ycd{bottom:436.573333pt;}
.y11d{bottom:439.173333pt;}
.y76{bottom:439.226667pt;}
.y92{bottom:443.040000pt;}
.yed{bottom:443.133333pt;}
.yf8{bottom:449.533333pt;}
.y10a{bottom:449.626667pt;}
.y5{bottom:449.853333pt;}
.yc8{bottom:452.133333pt;}
.ya2{bottom:453.346667pt;}
.yb6{bottom:455.866667pt;}
.y22{bottom:456.480000pt;}
.ycc{bottom:458.973333pt;}
.ycf{bottom:459.066667pt;}
.y6{bottom:461.506667pt;}
.y11c{bottom:461.573333pt;}
.y91{bottom:465.440000pt;}
.yec{bottom:465.533333pt;}
.yf7{bottom:471.933333pt;}
.y109{bottom:472.026667pt;}
.y67{bottom:472.413333pt;}
.yc7{bottom:472.960000pt;}
.y26{bottom:473.693333pt;}
.y59{bottom:475.173333pt;}
.ya3{bottom:475.653333pt;}
.y21{bottom:475.680000pt;}
.ya1{bottom:475.746667pt;}
.y20{bottom:476.893333pt;}
.y6a{bottom:478.266667pt;}
.y69{bottom:480.893333pt;}
.ycb{bottom:481.373333pt;}
.y29{bottom:482.240000pt;}
.ye4{bottom:482.533333pt;}
.y11b{bottom:484.000000pt;}
.y5b{bottom:484.386667pt;}
.yeb{bottom:487.973333pt;}
.y2b{bottom:489.373333pt;}
.y28{bottom:490.626667pt;}
.yc6{bottom:493.760000pt;}
.yf6{bottom:494.333333pt;}
.y108{bottom:494.426667pt;}
.y58{bottom:495.973333pt;}
.y25{bottom:496.093333pt;}
.ya0{bottom:498.146667pt;}
.y1a{bottom:498.400000pt;}
.y8f{bottom:499.040000pt;}
.yb5{bottom:500.706667pt;}
.y68{bottom:501.693333pt;}
.yca{bottom:503.773333pt;}
.y38{bottom:504.800000pt;}
.y66{bottom:506.013333pt;}
.y11a{bottom:506.400000pt;}
.y5a{bottom:506.786667pt;}
.yae{bottom:507.613333pt;}
.y90{bottom:510.266667pt;}
.yea{bottom:510.373333pt;}
.y2a{bottom:511.773333pt;}
.y39{bottom:511.840000pt;}
.y27{bottom:513.026667pt;}
.y57{bottom:516.773333pt;}
.y107{bottom:516.826667pt;}
.yb4{bottom:523.106667pt;}
.y37{bottom:527.200000pt;}
.yad{bottom:530.013333pt;}
.y4{bottom:600.773333pt;}
.y3{bottom:619.973333pt;}
.y2{bottom:639.173333pt;}
.h17{height:61.410000pt;}
.h2{height:66.750000pt;}
.h1e{height:66.883500pt;}
.h1c{height:66.945937pt;}
.h1a{height:67.128750pt;}
.h13{height:72.090000pt;}
.h1d{height:72.223500pt;}
.h7{height:78.097500pt;}
.h8{height:78.231000pt;}
.he{height:88.777500pt;}
.h10{height:88.911000pt;}
.h19{height:91.805000pt;}
.hc{height:100.125000pt;}
.h1{height:100.258500pt;}
.h5{height:122.152500pt;}
.h6{height:122.286000pt;}
.h1b{height:122.897500pt;}
.ha{height:138.803333pt;}
.h16{height:143.550000pt;}
.h14{height:157.484333pt;}
.h9{height:161.535000pt;}
.h3{height:172.215000pt;}
.h4{height:178.222500pt;}
.hb{height:179.057500pt;}
.h15{height:268.800000pt;}
.h11{height:358.400000pt;}
.h18{height:472.800000pt;}
.hd{height:537.600000pt;}
.h12{height:543.040000pt;}
.hf{height:716.160000pt;}
.h0{height:720.000000pt;}
.w6{width:94.560000pt;}
.w3{width:94.720000pt;}
.w4{width:240.160000pt;}
.w5{width:254.880000pt;}
.w2{width:282.240000pt;}
.w1{width:309.600000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1{left:9.600000pt;}
.x2{left:14.592000pt;}
.x14{left:34.816000pt;}
.xc{left:38.592000pt;}
.x52{left:42.240000pt;}
.x75{left:44.064000pt;}
.x51{left:52.480000pt;}
.x5{left:54.432000pt;}
.x6d{left:56.384000pt;}
.x6c{left:58.624000pt;}
.x36{left:62.880000pt;}
.x3c{left:64.448000pt;}
.x53{left:67.040000pt;}
.x7d{left:68.448000pt;}
.x15{left:70.592000pt;}
.x50{left:73.152000pt;}
.x6e{left:75.264000pt;}
.x3a{left:83.360000pt;}
.x44{left:84.448000pt;}
.x16{left:85.472000pt;}
.x69{left:87.264000pt;}
.x3{left:88.416000pt;}
.x5e{left:92.288000pt;}
.x60{left:94.816000pt;}
.x43{left:96.928000pt;}
.x5f{left:99.936000pt;}
.x71{left:101.088000pt;}
.x61{left:102.016000pt;}
.x62{left:107.136000pt;}
.xd{left:108.768000pt;}
.x7{left:109.664000pt;}
.x42{left:112.320000pt;}
.x6a{left:119.136000pt;}
.x4f{left:129.632000pt;}
.x28{left:131.744000pt;}
.x72{left:134.213333pt;}
.x27{left:135.586667pt;}
.x70{left:138.146667pt;}
.x63{left:140.253333pt;}
.x55{left:146.426667pt;}
.x6{left:147.746667pt;}
.x6f{left:156.546667pt;}
.xb{left:158.333333pt;}
.x65{left:169.146667pt;}
.x57{left:174.173333pt;}
.x4e{left:177.306667pt;}
.x64{left:187.546667pt;}
.x73{left:189.893333pt;}
.x54{left:191.293333pt;}
.x66{left:208.253333pt;}
.x67{left:227.293333pt;}
.x1b{left:265.626667pt;}
.x6b{left:270.080000pt;}
.x1a{left:279.546667pt;}
.x5d{left:303.613333pt;}
.x5b{left:314.973333pt;}
.x2a{left:319.040000pt;}
.x37{left:327.333333pt;}
.x46{left:328.800000pt;}
.x3d{left:331.520000pt;}
.x5c{left:336.093333pt;}
.x45{left:339.173333pt;}
.x3e{left:343.200000pt;}
.x38{left:348.933333pt;}
.x39{left:350.213333pt;}
.x47{left:355.173333pt;}
.xf{left:357.760000pt;}
.x56{left:361.093333pt;}
.x17{left:380.320000pt;}
.x4{left:388.506667pt;}
.x77{left:391.293333pt;}
.x74{left:402.786667pt;}
.x2b{left:406.880000pt;}
.x26{left:421.600000pt;}
.x4d{left:423.520000pt;}
.x4a{left:433.146667pt;}
.x7c{left:435.933333pt;}
.x24{left:436.933333pt;}
.x78{left:438.080000pt;}
.x25{left:440.293333pt;}
.x41{left:452.346667pt;}
.x31{left:456.506667pt;}
.x48{left:457.466667pt;}
.x32{left:467.386667pt;}
.x4b{left:469.466667pt;}
.x29{left:481.533333pt;}
.x4c{left:490.266667pt;}
.x30{left:493.533333pt;}
.x8{left:500.160000pt;}
.x49{left:505.986667pt;}
.x9{left:518.240000pt;}
.x7f{left:545.760000pt;}
.x68{left:554.786667pt;}
.x13{left:556.133333pt;}
.x2c{left:564.506667pt;}
.x3b{left:568.453333pt;}
.xe{left:611.746667pt;}
.x2d{left:628.640000pt;}
.xa{left:646.266667pt;}
.x40{left:663.426667pt;}
.x19{left:674.146667pt;}
.x7a{left:681.440000pt;}
.x79{left:686.720000pt;}
.x18{left:690.146667pt;}
.x20{left:696.226667pt;}
.x1c{left:697.666667pt;}
.x21{left:699.906667pt;}
.x22{left:703.426667pt;}
.x1d{left:705.026667pt;}
.x2f{left:711.933333pt;}
.x5a{left:713.346667pt;}
.x7b{left:717.600000pt;}
.x1f{left:720.866667pt;}
.x59{left:722.466667pt;}
.x1e{left:723.586667pt;}
.x58{left:730.306667pt;}
.x76{left:736.613333pt;}
.x35{left:757.053333pt;}
.x11{left:767.813333pt;}
.x10{left:773.093333pt;}
.x2e{left:778.173333pt;}
.x3f{left:796.320000pt;}
.x23{left:803.266667pt;}
.x12{left:820.453333pt;}
.x34{left:825.693333pt;}
.x33{left:874.173333pt;}
.x7e{left:950.466667pt;}
}




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