
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9fe87122665ffda8668c7603.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_38093e71e2dfb08f3e625403.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_59c517336c79b347652981a6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_cb421b5fc42b4b549f1fb273.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ab244ae28bcc9e577bb1c63c.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fc23f4b063783321309a4949.woff')format("woff");}.ffa{font-family:ffa;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e1b4fe9ac8a32d1d3ee59a7e.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9e212d91ec294d7cddd44eee.woff')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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:ffd;src:url('chunks/assets/font_01c151e2e388be95cfa73d3a.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a340f53b8d72fed1e2009b58.woff')format("woff");}.ffe{font-family:ffe;line-height:0.966797;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;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,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);}
.m2{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;}
.ls9{letter-spacing:-0.021300px;}
.ls8{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018720px;}
.ls4{letter-spacing:0.037440px;}
.ls5{letter-spacing:0.101400px;}
.lsa{letter-spacing:0.181200px;}
.ls3{letter-spacing:0.273600px;}
.ls2{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.417600px;}
.ls10{letter-spacing:0.468000px;}
.ls7{letter-spacing:27.397440px;}
.lse{letter-spacing:101.793600px;}
.lsb{letter-spacing:101.844000px;}
.lsd{letter-spacing:101.937600px;}
.lsc{letter-spacing:101.988000px;}
.ls1{letter-spacing:133.560000px;}
.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;}
}
.ws12{word-spacing:-73.498752px;}
.ws15{word-spacing:-43.434720px;}
.ws3{word-spacing:-26.661312px;}
.ws14{word-spacing:-26.640000px;}
.ws2{word-spacing:-26.621280px;}
.ws13{word-spacing:-26.602560px;}
.ws1{word-spacing:-13.327602px;}
.ws10{word-spacing:-3.934080px;}
.ws6{word-spacing:-1.083600px;}
.ws11{word-spacing:-1.064400px;}
.ws8{word-spacing:-0.222432px;}
.ws9{word-spacing:-0.072216px;}
.ws0{word-spacing:0.000000px;}
.ws16{word-spacing:0.058320px;}
.ws7{word-spacing:0.340992px;}
.wsb{word-spacing:0.472320px;}
.ws4{word-spacing:0.661680px;}
.wsc{word-spacing:0.680400px;}
.ws5{word-spacing:0.682560px;}
.wsa{word-spacing:0.780480px;}
.wsf{word-spacing:1.308240px;}
.wse{word-spacing:2.310720px;}
.wsd{word-spacing:2.912640px;}
._b{margin-left:-19.828800px;}
._d{margin-left:-12.515267px;}
._7{margin-left:-8.528223px;}
._a{margin-left:-7.246497px;}
._3{margin-left:-6.075268px;}
._5{margin-left:-5.012208px;}
._0{margin-left:-3.402103px;}
._6{margin-left:-2.134916px;}
._1{margin-left:-1.053905px;}
._2{width:1.133488px;}
._4{width:2.997302px;}
._e{width:4.687076px;}
._8{width:28.532400px;}
._9{width:29.585120px;}
._c{width:39.578197px;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(226,0,122);}
.fc3{color:rgb(31,162,46);}
.fc2{color:rgb(46,163,242);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.969997px;}
.fs0{font-size:80.999997px;}
.fs2{font-size:83.492885px;}
.fs7{font-size:95.760000px;}
.fs8{font-size:95.904000px;}
.fsb{font-size:131.760000px;}
.fsc{font-size:144.000000px;}
.fs9{font-size:156.240000px;}
.fsa{font-size:156.384000px;}
.fs5{font-size:180.000000px;}
.fs3{font-size:216.000000px;}
.fs4{font-size:216.144000px;}
.fsd{font-size:264.240000px;}
.fs6{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.250000px;}
.yf8{bottom:19.404000px;}
.ye2{bottom:20.520000px;}
.y17{bottom:22.005022px;}
.y14{bottom:26.697671px;}
.y36{bottom:30.744000px;}
.y1{bottom:42.219849px;}
.yf7{bottom:48.204000px;}
.ye1{bottom:49.356000px;}
.y13{bottom:50.997670px;}
.y35{bottom:59.544000px;}
.y83{bottom:71.748000px;}
.y12{bottom:75.297669px;}
.yf6{bottom:77.004000px;}
.ye0{bottom:78.156000px;}
.y12e{bottom:84.132000px;}
.y34{bottom:88.344000px;}
.y58{bottom:90.324000px;}
.y47{bottom:93.888000px;}
.y11{bottom:99.597668px;}
.y82{bottom:100.548000px;}
.yae{bottom:104.616000px;}
.ybd{bottom:106.452000px;}
.ydf{bottom:106.956000px;}
.y12d{bottom:112.932000px;}
.y33{bottom:117.144000px;}
.ycc{bottom:117.756000px;}
.y57{bottom:119.160000px;}
.y67{bottom:120.060000px;}
.y23{bottom:122.328000px;}
.y46{bottom:122.688000px;}
.y81{bottom:129.348000px;}
.yad{bottom:133.416000px;}
.yf5{bottom:134.640000px;}
.ybc{bottom:135.252000px;}
.y12c{bottom:141.732000px;}
.y10{bottom:143.135166px;}
.y32{bottom:145.944000px;}
.ycb{bottom:146.556000px;}
.y107{bottom:146.988000px;}
.y56{bottom:147.960000px;}
.y66{bottom:148.896000px;}
.y45{bottom:151.530000px;}
.y9b{bottom:152.460000px;}
.yac{bottom:162.210000px;}
.yf4{bottom:163.440000px;}
.ybb{bottom:164.055000px;}
.yde{bottom:164.550000px;}
.yf{bottom:167.435165px;}
.yca{bottom:175.350000px;}
.y106{bottom:175.785000px;}
.y65{bottom:177.690000px;}
.y114{bottom:177.915000px;}
.y44{bottom:180.330000px;}
.y72{bottom:180.930000px;}
.y9a{bottom:181.260000px;}
.y80{bottom:186.990000px;}
.ye{bottom:191.735164px;}
.yf3{bottom:192.240000px;}
.yba{bottom:192.885000px;}
.ydd{bottom:193.350000px;}
.y13a{bottom:198.645000px;}
.y12b{bottom:199.335000px;}
.y31{bottom:203.580000px;}
.yc9{bottom:204.150000px;}
.y105{bottom:204.585000px;}
.y55{bottom:205.560000px;}
.y113{bottom:206.715000px;}
.y43{bottom:209.130000px;}
.y99{bottom:210.060000px;}
.y7f{bottom:215.790000px;}
.yd{bottom:216.035163px;}
.yab{bottom:219.855000px;}
.yf2{bottom:221.040000px;}
.yb9{bottom:221.685000px;}
.ydc{bottom:222.195000px;}
.y139{bottom:227.445000px;}
.y12a{bottom:228.165000px;}
.y30{bottom:232.380000px;}
.y54{bottom:234.360000px;}
.y64{bottom:235.290000px;}
.y112{bottom:235.515000px;}
.y71{bottom:237.810000px;}
.y98{bottom:238.860000px;}
.yc{bottom:240.335162px;}
.y7e{bottom:244.590000px;}
.yaa{bottom:248.655000px;}
.ydb{bottom:250.995000px;}
.y138{bottom:256.245000px;}
.y129{bottom:256.965000px;}
.y42{bottom:257.865000px;}
.y2f{bottom:261.180000px;}
.yc8{bottom:261.750000px;}
.y104{bottom:262.185000px;}
.y53{bottom:263.160000px;}
.y63{bottom:264.090000px;}
.y111{bottom:264.315000px;}
.y11f{bottom:266.295000px;}
.y70{bottom:266.610000px;}
.y97{bottom:267.690000px;}
.ya9{bottom:277.455000px;}
.yf1{bottom:278.670000px;}
.yb8{bottom:279.285000px;}
.yda{bottom:279.795000px;}
.yb{bottom:283.872660px;}
.y128{bottom:285.765000px;}
.y2e{bottom:289.980000px;}
.yc7{bottom:290.595000px;}
.y103{bottom:290.985000px;}
.y52{bottom:291.990000px;}
.y11e{bottom:295.095000px;}
.y6f{bottom:295.455000px;}
.y7d{bottom:302.190000px;}
.yf0{bottom:307.470000px;}
.yb7{bottom:308.085000px;}
.ya{bottom:308.172659px;}
.yd9{bottom:308.595000px;}
.y85{bottom:310.755000px;}
.y137{bottom:313.890000px;}
.y127{bottom:314.565000px;}
.yc6{bottom:319.395000px;}
.y102{bottom:319.830000px;}
.y62{bottom:321.735000px;}
.y110{bottom:321.945000px;}
.y11d{bottom:323.895000px;}
.y96{bottom:325.290000px;}
.y7c{bottom:330.990000px;}
.y9{bottom:332.472658px;}
.ya8{bottom:335.055000px;}
.yef{bottom:336.270000px;}
.yb6{bottom:336.930000px;}
.yd8{bottom:337.395000px;}
.y136{bottom:342.690000px;}
.y2d{bottom:347.610000px;}
.ye3{bottom:348.555000px;}
.y101{bottom:348.630000px;}
.y51{bottom:349.590000px;}
.y61{bottom:350.535000px;}
.y10f{bottom:350.745000px;}
.y11c{bottom:352.695000px;}
.y6e{bottom:353.055000px;}
.y95{bottom:354.090000px;}
.y8{bottom:356.772657px;}
.ya7{bottom:363.885000px;}
.yb5{bottom:365.730000px;}
.y135{bottom:371.490000px;}
.y126{bottom:372.165000px;}
.y22{bottom:373.065000px;}
.y84{bottom:375.915000px;}
.y2c{bottom:376.410000px;}
.yc5{bottom:376.995000px;}
.y50{bottom:378.390000px;}
.y10e{bottom:379.545000px;}
.y7{bottom:381.072656px;}
.y11b{bottom:381.495000px;}
.y6d{bottom:381.855000px;}
.y94{bottom:382.890000px;}
.y41{bottom:384.450000px;}
.y7b{bottom:384.840000px;}
.y8d{bottom:388.335000px;}
.ya6{bottom:392.685000px;}
.yee{bottom:393.870000px;}
.yb4{bottom:394.530000px;}
.yd7{bottom:395.025000px;}
.y134{bottom:400.290000px;}
.y125{bottom:401.010000px;}
.y2b{bottom:405.210000px;}
.yc4{bottom:405.795000px;}
.y100{bottom:406.230000px;}
.y4f{bottom:407.190000px;}
.y60{bottom:408.135000px;}
.y11a{bottom:410.325000px;}
.y93{bottom:411.690000px;}
.y40{bottom:413.280000px;}
.y7a{bottom:413.640000px;}
.y8c{bottom:417.135000px;}
.ya5{bottom:421.485000px;}
.yed{bottom:422.715000px;}
.yb3{bottom:423.330000px;}
.yd6{bottom:423.825000px;}
.y6{bottom:424.610154px;}
.y2a{bottom:434.010000px;}
.yc3{bottom:434.625000px;}
.yff{bottom:435.030000px;}
.y4e{bottom:435.990000px;}
.y5f{bottom:436.935000px;}
.y10d{bottom:437.145000px;}
.y21{bottom:437.910000px;}
.y6c{bottom:439.455000px;}
.y3f{bottom:442.080000px;}
.y79{bottom:442.440000px;}
.y8b{bottom:445.935000px;}
.y24{bottom:446.835000px;}
.y5{bottom:448.910153px;}
.ya4{bottom:450.285000px;}
.yb2{bottom:452.130000px;}
.yd5{bottom:452.625000px;}
.y133{bottom:457.920000px;}
.y124{bottom:458.610000px;}
.yfe{bottom:463.830000px;}
.y10c{bottom:465.945000px;}
.y119{bottom:467.925000px;}
.y6b{bottom:468.285000px;}
.y92{bottom:469.335000px;}
.y3e{bottom:470.880000px;}
.y78{bottom:471.240000px;}
.y4{bottom:473.210152px;}
.yec{bottom:480.315000px;}
.yd4{bottom:481.425000px;}
.y132{bottom:486.720000px;}
.y123{bottom:487.410000px;}
.y29{bottom:491.655000px;}
.yc2{bottom:492.225000px;}
.y4d{bottom:493.635000px;}
.y5e{bottom:494.565000px;}
.y10b{bottom:494.790000px;}
.y118{bottom:496.725000px;}
.y3{bottom:497.510151px;}
.y91{bottom:498.135000px;}
.y20{bottom:502.710000px;}
.y8a{bottom:503.535000px;}
.ya3{bottom:507.930000px;}
.yeb{bottom:509.115000px;}
.yb1{bottom:509.760000px;}
.yd3{bottom:510.225000px;}
.y131{bottom:515.520000px;}
.y28{bottom:520.455000px;}
.yc1{bottom:521.025000px;}
.yfd{bottom:521.460000px;}
.y2{bottom:521.810150px;}
.y4c{bottom:522.435000px;}
.y5d{bottom:523.365000px;}
.y10a{bottom:523.590000px;}
.y117{bottom:525.525000px;}
.y6a{bottom:525.885000px;}
.y90{bottom:526.935000px;}
.y3d{bottom:528.480000px;}
.y77{bottom:528.870000px;}
.y89{bottom:532.335000px;}
.ya2{bottom:536.730000px;}
.yea{bottom:537.915000px;}
.yb0{bottom:538.560000px;}
.yd2{bottom:539.070000px;}
.y130{bottom:544.320000px;}
.y122{bottom:545.010000px;}
.y27{bottom:549.255000px;}
.yc0{bottom:549.825000px;}
.yfc{bottom:550.260000px;}
.y4b{bottom:551.235000px;}
.y5c{bottom:552.165000px;}
.y109{bottom:552.390000px;}
.y116{bottom:554.325000px;}
.y69{bottom:554.685000px;}
.y8f{bottom:555.735000px;}
.y3c{bottom:557.280000px;}
.y76{bottom:557.670000px;}
.y88{bottom:561.165000px;}
.ya1{bottom:565.530000px;}
.ye9{bottom:566.715000px;}
.y13b{bottom:567.210000px;}
.yaf{bottom:567.360000px;}
.y1f{bottom:567.540000px;}
.y12f{bottom:573.120000px;}
.y121{bottom:573.840000px;}
.y26{bottom:578.055000px;}
.ybf{bottom:578.625000px;}
.yfb{bottom:579.060000px;}
.y4a{bottom:580.035000px;}
.y8e{bottom:584.535000px;}
.y3b{bottom:586.110000px;}
.y75{bottom:586.470000px;}
.y87{bottom:589.965000px;}
.ya0{bottom:594.330000px;}
.ye8{bottom:595.545000px;}
.yd1{bottom:596.670000px;}
.y120{bottom:602.640000px;}
.y25{bottom:606.855000px;}
.y49{bottom:608.865000px;}
.y3a{bottom:614.910000px;}
.y9f{bottom:623.130000px;}
.ye7{bottom:624.345000px;}
.yd0{bottom:625.470000px;}
.y1e{bottom:632.340000px;}
.y39{bottom:643.710000px;}
.y68{bottom:647.460000px;}
.y9e{bottom:651.930000px;}
.ye6{bottom:653.145000px;}
.ycf{bottom:654.270000px;}
.y74{bottom:654.405000px;}
.y5b{bottom:659.625000px;}
.y115{bottom:659.910000px;}
.y86{bottom:662.010000px;}
.y38{bottom:672.510000px;}
.y9c{bottom:680.220000px;}
.ye5{bottom:681.945000px;}
.yce{bottom:683.070000px;}
.y59{bottom:699.045000px;}
.ye4{bottom:710.745000px;}
.ybe{bottom:720.750000px;}
.yfa{bottom:722.190000px;}
.y108{bottom:725.070000px;}
.y9d{bottom:726.945000px;}
.y37{bottom:739.335000px;}
.y73{bottom:742.680000px;}
.y5a{bottom:745.125000px;}
.ycd{bottom:745.170000px;}
.y48{bottom:764.790000px;}
.yf9{bottom:772.050000px;}
.y1d{bottom:998.697270px;}
.y1c{bottom:1043.247269px;}
.y1b{bottom:1087.797267px;}
.y1a{bottom:1111.084766px;}
.y19{bottom:1135.384765px;}
.y18{bottom:1159.684764px;}
.y15{bottom:1226.879972px;}
.h4{height:13.499999px;}
.h5{height:34.923470px;}
.h3{height:76.949997px;}
.h6{height:79.318241px;}
.hc{height:99.874688px;}
.hd{height:100.024875px;}
.h13{height:117.485156px;}
.h10{height:137.421562px;}
.h11{height:150.187500px;}
.he{height:162.953438px;}
.hf{height:163.103625px;}
.ha{height:187.734375px;}
.h12{height:221.167969px;}
.h8{height:225.281250px;}
.h9{height:225.431438px;}
.h14{height:275.594063px;}
.hb{height:275.744250px;}
.h7{height:810.000000px;}
.h2{height:1177.910123px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w6{width:60.749997px;}
.w3{width:138.374994px;}
.w4{width:753.749969px;}
.w2{width:807.820274px;}
.w5{width:831.374965px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.w8{width:1079.999984px;}
.w7{width:1080.000000px;}
.x0{left:0.000000px;}
.x42{left:8.718750px;}
.x54{left:30.239984px;}
.x61{left:34.271984px;}
.x3e{left:35.999999px;}
.x55{left:37.043984px;}
.x62{left:38.879984px;}
.x2{left:40.405076px;}
.x1{left:42.749998px;}
.x4e{left:43.991984px;}
.x58{left:45.359984px;}
.x40{left:46.898436px;}
.x39{left:49.477067px;}
.x5{left:51.907061px;}
.x4f{left:55.871984px;}
.x5d{left:56.915984px;}
.x6{left:60.979052px;}
.x2d{left:65.555556px;}
.x23{left:73.432805px;}
.x2e{left:74.627547px;}
.x50{left:79.811984px;}
.x24{left:82.504796px;}
.x57{left:83.915984px;}
.x52{left:88.487984px;}
.x3b{left:90.787023px;}
.x5e{left:93.527984px;}
.x16{left:95.586278px;}
.x59{left:99.359984px;}
.x17{left:104.759525px;}
.x5c{left:106.055984px;}
.x60{left:124.847984px;}
.x3f{left:138.374994px;}
.x4b{left:140.318457px;}
.x4c{left:149.390448px;}
.x25{left:172.151443px;}
.x2f{left:173.771433px;}
.x26{left:181.223434px;}
.x30{left:182.843424px;}
.x5f{left:188.924984px;}
.x31{left:200.744401px;}
.x32{left:209.816392px;}
.x35{left:213.279140px;}
.x3{left:217.713910px;}
.x36{left:222.351131px;}
.x4{left:226.785901px;}
.x1e{left:236.769058px;}
.xf{left:245.901843px;}
.x5a{left:252.464984px;}
.x10{left:254.973834px;}
.x5b{left:262.544984px;}
.x4d{left:278.200189px;}
.x53{left:286.844984px;}
.x37{left:307.502306px;}
.x49{left:311.957269px;}
.x38{left:316.574297px;}
.x4a{left:321.029260px;}
.x13{left:338.768310px;}
.x18{left:341.157795px;}
.x14{left:347.840270px;}
.x19{left:350.229786px;}
.x3a{left:356.203529px;}
.x63{left:368.279984px;}
.x56{left:374.909984px;}
.x51{left:387.329984px;}
.xa{left:403.528699px;}
.x33{left:446.822152px;}
.x34{left:455.995399px;}
.x3c{left:474.929099px;}
.x7{left:479.667653px;}
.x3d{left:484.001090px;}
.x27{left:485.297089px;}
.x8{left:488.739613px;}
.x9{left:493.324789px;}
.x28{left:494.369049px;}
.x11{left:503.623313px;}
.x47{left:508.969404px;}
.x12{left:513.140776px;}
.x48{left:518.486867px;}
.x1f{left:558.845038px;}
.x20{left:567.917060px;}
.x1a{left:573.121325px;}
.x15{left:578.872255px;}
.x1b{left:582.193285px;}
.xb{left:587.783221px;}
.x29{left:592.318223px;}
.x21{left:594.687500px;}
.xc{left:596.956468px;}
.x2a{left:601.491470px;}
.x22{left:603.759460px;}
.xd{left:619.636430px;}
.x2b{left:621.680660px;}
.xe{left:629.153923px;}
.x2c{left:630.752682px;}
.x45{left:643.246959px;}
.x46{left:652.318919px;}
.x43{left:663.091871px;}
.x44{left:672.163893px;}
.x1c{left:677.732643px;}
.x1d{left:686.804665px;}
.x41{left:831.374965px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.018933pt;}
.ls8{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016640pt;}
.ls4{letter-spacing:0.033280pt;}
.ls5{letter-spacing:0.090133pt;}
.lsa{letter-spacing:0.161067pt;}
.ls3{letter-spacing:0.243200pt;}
.ls2{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.371200pt;}
.ls10{letter-spacing:0.416000pt;}
.ls7{letter-spacing:24.353280pt;}
.lse{letter-spacing:90.483200pt;}
.lsb{letter-spacing:90.528000pt;}
.lsd{letter-spacing:90.611200pt;}
.lsc{letter-spacing:90.656000pt;}
.ls1{letter-spacing:118.720000pt;}
.ws12{word-spacing:-65.332224pt;}
.ws15{word-spacing:-38.608640pt;}
.ws3{word-spacing:-23.698944pt;}
.ws14{word-spacing:-23.680000pt;}
.ws2{word-spacing:-23.663360pt;}
.ws13{word-spacing:-23.646720pt;}
.ws1{word-spacing:-11.846757pt;}
.ws10{word-spacing:-3.496960pt;}
.ws6{word-spacing:-0.963200pt;}
.ws11{word-spacing:-0.946133pt;}
.ws8{word-spacing:-0.197717pt;}
.ws9{word-spacing:-0.064192pt;}
.ws0{word-spacing:0.000000pt;}
.ws16{word-spacing:0.051840pt;}
.ws7{word-spacing:0.303104pt;}
.wsb{word-spacing:0.419840pt;}
.ws4{word-spacing:0.588160pt;}
.wsc{word-spacing:0.604800pt;}
.ws5{word-spacing:0.606720pt;}
.wsa{word-spacing:0.693760pt;}
.wsf{word-spacing:1.162880pt;}
.wse{word-spacing:2.053973pt;}
.wsd{word-spacing:2.589013pt;}
._b{margin-left:-17.625600pt;}
._d{margin-left:-11.124682pt;}
._7{margin-left:-7.580642pt;}
._a{margin-left:-6.441331pt;}
._3{margin-left:-5.400238pt;}
._5{margin-left:-4.455296pt;}
._0{margin-left:-3.024092pt;}
._6{margin-left:-1.897703pt;}
._1{margin-left:-0.936805pt;}
._2{width:1.007545pt;}
._4{width:2.664268pt;}
._e{width:4.166290pt;}
._8{width:25.362133pt;}
._9{width:26.297884pt;}
._c{width:35.180619pt;}
.fs1{font-size:42.639997pt;}
.fs0{font-size:71.999997pt;}
.fs2{font-size:74.215898pt;}
.fs7{font-size:85.120000pt;}
.fs8{font-size:85.248000pt;}
.fsb{font-size:117.120000pt;}
.fsc{font-size:128.000000pt;}
.fs9{font-size:138.880000pt;}
.fsa{font-size:139.008000pt;}
.fs5{font-size:160.000000pt;}
.fs3{font-size:192.000000pt;}
.fs4{font-size:192.128000pt;}
.fsd{font-size:234.880000pt;}
.fs6{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.000000pt;}
.yf8{bottom:17.248000pt;}
.ye2{bottom:18.240000pt;}
.y17{bottom:19.560019pt;}
.y14{bottom:23.731263pt;}
.y36{bottom:27.328000pt;}
.y1{bottom:37.528755pt;}
.yf7{bottom:42.848000pt;}
.ye1{bottom:43.872000pt;}
.y13{bottom:45.331262pt;}
.y35{bottom:52.928000pt;}
.y83{bottom:63.776000pt;}
.y12{bottom:66.931261pt;}
.yf6{bottom:68.448000pt;}
.ye0{bottom:69.472000pt;}
.y12e{bottom:74.784000pt;}
.y34{bottom:78.528000pt;}
.y58{bottom:80.288000pt;}
.y47{bottom:83.456000pt;}
.y11{bottom:88.531260pt;}
.y82{bottom:89.376000pt;}
.yae{bottom:92.992000pt;}
.ybd{bottom:94.624000pt;}
.ydf{bottom:95.072000pt;}
.y12d{bottom:100.384000pt;}
.y33{bottom:104.128000pt;}
.ycc{bottom:104.672000pt;}
.y57{bottom:105.920000pt;}
.y67{bottom:106.720000pt;}
.y23{bottom:108.736000pt;}
.y46{bottom:109.056000pt;}
.y81{bottom:114.976000pt;}
.yad{bottom:118.592000pt;}
.yf5{bottom:119.680000pt;}
.ybc{bottom:120.224000pt;}
.y12c{bottom:125.984000pt;}
.y10{bottom:127.231259pt;}
.y32{bottom:129.728000pt;}
.ycb{bottom:130.272000pt;}
.y107{bottom:130.656000pt;}
.y56{bottom:131.520000pt;}
.y66{bottom:132.352000pt;}
.y45{bottom:134.693333pt;}
.y9b{bottom:135.520000pt;}
.yac{bottom:144.186667pt;}
.yf4{bottom:145.280000pt;}
.ybb{bottom:145.826667pt;}
.yde{bottom:146.266667pt;}
.yf{bottom:148.831258pt;}
.yca{bottom:155.866667pt;}
.y106{bottom:156.253333pt;}
.y65{bottom:157.946667pt;}
.y114{bottom:158.146667pt;}
.y44{bottom:160.293333pt;}
.y72{bottom:160.826667pt;}
.y9a{bottom:161.120000pt;}
.y80{bottom:166.213333pt;}
.ye{bottom:170.431257pt;}
.yf3{bottom:170.880000pt;}
.yba{bottom:171.453333pt;}
.ydd{bottom:171.866667pt;}
.y13a{bottom:176.573333pt;}
.y12b{bottom:177.186667pt;}
.y31{bottom:180.960000pt;}
.yc9{bottom:181.466667pt;}
.y105{bottom:181.853333pt;}
.y55{bottom:182.720000pt;}
.y113{bottom:183.746667pt;}
.y43{bottom:185.893333pt;}
.y99{bottom:186.720000pt;}
.y7f{bottom:191.813333pt;}
.yd{bottom:192.031256pt;}
.yab{bottom:195.426667pt;}
.yf2{bottom:196.480000pt;}
.yb9{bottom:197.053333pt;}
.ydc{bottom:197.506667pt;}
.y139{bottom:202.173333pt;}
.y12a{bottom:202.813333pt;}
.y30{bottom:206.560000pt;}
.y54{bottom:208.320000pt;}
.y64{bottom:209.146667pt;}
.y112{bottom:209.346667pt;}
.y71{bottom:211.386667pt;}
.y98{bottom:212.320000pt;}
.yc{bottom:213.631255pt;}
.y7e{bottom:217.413333pt;}
.yaa{bottom:221.026667pt;}
.ydb{bottom:223.106667pt;}
.y138{bottom:227.773333pt;}
.y129{bottom:228.413333pt;}
.y42{bottom:229.213333pt;}
.y2f{bottom:232.160000pt;}
.yc8{bottom:232.666667pt;}
.y104{bottom:233.053333pt;}
.y53{bottom:233.920000pt;}
.y63{bottom:234.746667pt;}
.y111{bottom:234.946667pt;}
.y11f{bottom:236.706667pt;}
.y70{bottom:236.986667pt;}
.y97{bottom:237.946667pt;}
.ya9{bottom:246.626667pt;}
.yf1{bottom:247.706667pt;}
.yb8{bottom:248.253333pt;}
.yda{bottom:248.706667pt;}
.yb{bottom:252.331253pt;}
.y128{bottom:254.013333pt;}
.y2e{bottom:257.760000pt;}
.yc7{bottom:258.306667pt;}
.y103{bottom:258.653333pt;}
.y52{bottom:259.546667pt;}
.y11e{bottom:262.306667pt;}
.y6f{bottom:262.626667pt;}
.y7d{bottom:268.613333pt;}
.yf0{bottom:273.306667pt;}
.yb7{bottom:273.853333pt;}
.ya{bottom:273.931253pt;}
.yd9{bottom:274.306667pt;}
.y85{bottom:276.226667pt;}
.y137{bottom:279.013333pt;}
.y127{bottom:279.613333pt;}
.yc6{bottom:283.906667pt;}
.y102{bottom:284.293333pt;}
.y62{bottom:285.986667pt;}
.y110{bottom:286.173333pt;}
.y11d{bottom:287.906667pt;}
.y96{bottom:289.146667pt;}
.y7c{bottom:294.213333pt;}
.y9{bottom:295.531252pt;}
.ya8{bottom:297.826667pt;}
.yef{bottom:298.906667pt;}
.yb6{bottom:299.493333pt;}
.yd8{bottom:299.906667pt;}
.y136{bottom:304.613333pt;}
.y2d{bottom:308.986667pt;}
.ye3{bottom:309.826667pt;}
.y101{bottom:309.893333pt;}
.y51{bottom:310.746667pt;}
.y61{bottom:311.586667pt;}
.y10f{bottom:311.773333pt;}
.y11c{bottom:313.506667pt;}
.y6e{bottom:313.826667pt;}
.y95{bottom:314.746667pt;}
.y8{bottom:317.131251pt;}
.ya7{bottom:323.453333pt;}
.yb5{bottom:325.093333pt;}
.y135{bottom:330.213333pt;}
.y126{bottom:330.813333pt;}
.y22{bottom:331.613333pt;}
.y84{bottom:334.146667pt;}
.y2c{bottom:334.586667pt;}
.yc5{bottom:335.106667pt;}
.y50{bottom:336.346667pt;}
.y10e{bottom:337.373333pt;}
.y7{bottom:338.731250pt;}
.y11b{bottom:339.106667pt;}
.y6d{bottom:339.426667pt;}
.y94{bottom:340.346667pt;}
.y41{bottom:341.733333pt;}
.y7b{bottom:342.080000pt;}
.y8d{bottom:345.186667pt;}
.ya6{bottom:349.053333pt;}
.yee{bottom:350.106667pt;}
.yb4{bottom:350.693333pt;}
.yd7{bottom:351.133333pt;}
.y134{bottom:355.813333pt;}
.y125{bottom:356.453333pt;}
.y2b{bottom:360.186667pt;}
.yc4{bottom:360.706667pt;}
.y100{bottom:361.093333pt;}
.y4f{bottom:361.946667pt;}
.y60{bottom:362.786667pt;}
.y11a{bottom:364.733333pt;}
.y93{bottom:365.946667pt;}
.y40{bottom:367.360000pt;}
.y7a{bottom:367.680000pt;}
.y8c{bottom:370.786667pt;}
.ya5{bottom:374.653333pt;}
.yed{bottom:375.746667pt;}
.yb3{bottom:376.293333pt;}
.yd6{bottom:376.733333pt;}
.y6{bottom:377.431248pt;}
.y2a{bottom:385.786667pt;}
.yc3{bottom:386.333333pt;}
.yff{bottom:386.693333pt;}
.y4e{bottom:387.546667pt;}
.y5f{bottom:388.386667pt;}
.y10d{bottom:388.573333pt;}
.y21{bottom:389.253333pt;}
.y6c{bottom:390.626667pt;}
.y3f{bottom:392.960000pt;}
.y79{bottom:393.280000pt;}
.y8b{bottom:396.386667pt;}
.y24{bottom:397.186667pt;}
.y5{bottom:399.031247pt;}
.ya4{bottom:400.253333pt;}
.yb2{bottom:401.893333pt;}
.yd5{bottom:402.333333pt;}
.y133{bottom:407.040000pt;}
.y124{bottom:407.653333pt;}
.yfe{bottom:412.293333pt;}
.y10c{bottom:414.173333pt;}
.y119{bottom:415.933333pt;}
.y6b{bottom:416.253333pt;}
.y92{bottom:417.186667pt;}
.y3e{bottom:418.560000pt;}
.y78{bottom:418.880000pt;}
.y4{bottom:420.631246pt;}
.yec{bottom:426.946667pt;}
.yd4{bottom:427.933333pt;}
.y132{bottom:432.640000pt;}
.y123{bottom:433.253333pt;}
.y29{bottom:437.026667pt;}
.yc2{bottom:437.533333pt;}
.y4d{bottom:438.786667pt;}
.y5e{bottom:439.613333pt;}
.y10b{bottom:439.813333pt;}
.y118{bottom:441.533333pt;}
.y3{bottom:442.231246pt;}
.y91{bottom:442.786667pt;}
.y20{bottom:446.853333pt;}
.y8a{bottom:447.586667pt;}
.ya3{bottom:451.493333pt;}
.yeb{bottom:452.546667pt;}
.yb1{bottom:453.120000pt;}
.yd3{bottom:453.533333pt;}
.y131{bottom:458.240000pt;}
.y28{bottom:462.626667pt;}
.yc1{bottom:463.133333pt;}
.yfd{bottom:463.520000pt;}
.y2{bottom:463.831245pt;}
.y4c{bottom:464.386667pt;}
.y5d{bottom:465.213333pt;}
.y10a{bottom:465.413333pt;}
.y117{bottom:467.133333pt;}
.y6a{bottom:467.453333pt;}
.y90{bottom:468.386667pt;}
.y3d{bottom:469.760000pt;}
.y77{bottom:470.106667pt;}
.y89{bottom:473.186667pt;}
.ya2{bottom:477.093333pt;}
.yea{bottom:478.146667pt;}
.yb0{bottom:478.720000pt;}
.yd2{bottom:479.173333pt;}
.y130{bottom:483.840000pt;}
.y122{bottom:484.453333pt;}
.y27{bottom:488.226667pt;}
.yc0{bottom:488.733333pt;}
.yfc{bottom:489.120000pt;}
.y4b{bottom:489.986667pt;}
.y5c{bottom:490.813333pt;}
.y109{bottom:491.013333pt;}
.y116{bottom:492.733333pt;}
.y69{bottom:493.053333pt;}
.y8f{bottom:493.986667pt;}
.y3c{bottom:495.360000pt;}
.y76{bottom:495.706667pt;}
.y88{bottom:498.813333pt;}
.ya1{bottom:502.693333pt;}
.ye9{bottom:503.746667pt;}
.y13b{bottom:504.186667pt;}
.yaf{bottom:504.320000pt;}
.y1f{bottom:504.480000pt;}
.y12f{bottom:509.440000pt;}
.y121{bottom:510.080000pt;}
.y26{bottom:513.826667pt;}
.ybf{bottom:514.333333pt;}
.yfb{bottom:514.720000pt;}
.y4a{bottom:515.586667pt;}
.y8e{bottom:519.586667pt;}
.y3b{bottom:520.986667pt;}
.y75{bottom:521.306667pt;}
.y87{bottom:524.413333pt;}
.ya0{bottom:528.293333pt;}
.ye8{bottom:529.373333pt;}
.yd1{bottom:530.373333pt;}
.y120{bottom:535.680000pt;}
.y25{bottom:539.426667pt;}
.y49{bottom:541.213333pt;}
.y3a{bottom:546.586667pt;}
.y9f{bottom:553.893333pt;}
.ye7{bottom:554.973333pt;}
.yd0{bottom:555.973333pt;}
.y1e{bottom:562.080000pt;}
.y39{bottom:572.186667pt;}
.y68{bottom:575.520000pt;}
.y9e{bottom:579.493333pt;}
.ye6{bottom:580.573333pt;}
.ycf{bottom:581.573333pt;}
.y74{bottom:581.693333pt;}
.y5b{bottom:586.333333pt;}
.y115{bottom:586.586667pt;}
.y86{bottom:588.453333pt;}
.y38{bottom:597.786667pt;}
.y9c{bottom:604.640000pt;}
.ye5{bottom:606.173333pt;}
.yce{bottom:607.173333pt;}
.y59{bottom:621.373333pt;}
.ye4{bottom:631.773333pt;}
.ybe{bottom:640.666667pt;}
.yfa{bottom:641.946667pt;}
.y108{bottom:644.506667pt;}
.y9d{bottom:646.173333pt;}
.y37{bottom:657.186667pt;}
.y73{bottom:660.160000pt;}
.y5a{bottom:662.333333pt;}
.ycd{bottom:662.373333pt;}
.y48{bottom:679.813333pt;}
.yf9{bottom:686.266667pt;}
.y1d{bottom:887.730907pt;}
.y1c{bottom:927.330905pt;}
.y1b{bottom:966.930904pt;}
.y1a{bottom:987.630903pt;}
.y19{bottom:1009.230902pt;}
.y18{bottom:1030.830901pt;}
.y15{bottom:1090.559975pt;}
.h4{height:12.000000pt;}
.h5{height:31.043084pt;}
.h3{height:68.399997pt;}
.h6{height:70.505103pt;}
.hc{height:88.777500pt;}
.hd{height:88.911000pt;}
.h13{height:104.431250pt;}
.h10{height:122.152500pt;}
.h11{height:133.500000pt;}
.he{height:144.847500pt;}
.hf{height:144.981000pt;}
.ha{height:166.875000pt;}
.h12{height:196.593750pt;}
.h8{height:200.250000pt;}
.h9{height:200.383500pt;}
.h14{height:244.972500pt;}
.hb{height:245.106000pt;}
.h7{height:720.000000pt;}
.h2{height:1047.031220pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w6{width:53.999998pt;}
.w3{width:122.999995pt;}
.w4{width:669.999972pt;}
.w2{width:718.062466pt;}
.w5{width:738.999969pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.w8{width:959.999986pt;}
.w7{width:960.000000pt;}
.x0{left:0.000000pt;}
.x42{left:7.750000pt;}
.x54{left:26.879986pt;}
.x61{left:30.463986pt;}
.x3e{left:31.999999pt;}
.x55{left:32.927986pt;}
.x62{left:34.559986pt;}
.x2{left:35.915624pt;}
.x1{left:37.999998pt;}
.x4e{left:39.103986pt;}
.x58{left:40.319986pt;}
.x40{left:41.687498pt;}
.x39{left:43.979616pt;}
.x5{left:46.139610pt;}
.x4f{left:49.663986pt;}
.x5d{left:50.591986pt;}
.x6{left:54.203602pt;}
.x2d{left:58.271605pt;}
.x23{left:65.273604pt;}
.x2e{left:66.335597pt;}
.x50{left:70.943986pt;}
.x24{left:73.337596pt;}
.x57{left:74.591986pt;}
.x52{left:78.655986pt;}
.x3b{left:80.699576pt;}
.x5e{left:83.135986pt;}
.x16{left:84.965580pt;}
.x59{left:88.319986pt;}
.x17{left:93.119578pt;}
.x5c{left:94.271986pt;}
.x60{left:110.975986pt;}
.x3f{left:122.999995pt;}
.x4b{left:124.727517pt;}
.x4c{left:132.791509pt;}
.x25{left:153.023505pt;}
.x2f{left:154.463496pt;}
.x26{left:161.087497pt;}
.x30{left:162.527488pt;}
.x5f{left:167.933319pt;}
.x31{left:178.439467pt;}
.x32{left:186.503459pt;}
.x35{left:189.581458pt;}
.x3{left:193.523475pt;}
.x36{left:197.645450pt;}
.x4{left:201.587467pt;}
.x1e{left:210.461385pt;}
.xf{left:218.579416pt;}
.x5a{left:224.413319pt;}
.x10{left:226.643408pt;}
.x5b{left:233.373319pt;}
.x4d{left:247.289057pt;}
.x53{left:254.973319pt;}
.x37{left:273.335383pt;}
.x49{left:277.295350pt;}
.x38{left:281.399375pt;}
.x4a{left:285.359342pt;}
.x13{left:301.127386pt;}
.x18{left:303.251373pt;}
.x14{left:309.191351pt;}
.x19{left:311.315365pt;}
.x3a{left:316.625360pt;}
.x63{left:327.359986pt;}
.x56{left:333.253319pt;}
.x51{left:344.293319pt;}
.xa{left:358.692177pt;}
.x33{left:397.175246pt;}
.x34{left:405.329244pt;}
.x3c{left:422.159199pt;}
.x7{left:426.371247pt;}
.x3d{left:430.223191pt;}
.x27{left:431.375190pt;}
.x8{left:434.435212pt;}
.x9{left:438.510924pt;}
.x28{left:439.439155pt;}
.x11{left:447.665167pt;}
.x47{left:452.417248pt;}
.x12{left:456.125134pt;}
.x48{left:460.877215pt;}
.x1f{left:496.751145pt;}
.x20{left:504.815165pt;}
.x1a{left:509.441178pt;}
.x15{left:514.553116pt;}
.x1b{left:517.505142pt;}
.xb{left:522.473974pt;}
.x29{left:526.505087pt;}
.x21{left:528.611111pt;}
.xc{left:530.627972pt;}
.x2a{left:534.659085pt;}
.x22{left:536.675076pt;}
.xd{left:550.787938pt;}
.x2b{left:552.605031pt;}
.xe{left:559.247932pt;}
.x2c{left:560.669051pt;}
.x45{left:571.775075pt;}
.x46{left:579.839039pt;}
.x43{left:589.414997pt;}
.x44{left:597.479016pt;}
.x1c{left:602.429016pt;}
.x1d{left:610.493035pt;}
.x41{left:738.999969pt;}
}




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