
    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_d47f9c09a6685f48ea03f12f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_582c3e076b70dc82b94e323c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_3d1a698551a8a9f352325857.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_21876c308e691821c0b11a26.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_9d7e3bde960399533a9ec4a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_d3ba641c6994cbab62a53830.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_3253ac043b12dae800bf6f04.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.073242;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_f7aeb4e2df32a13fd26ff6dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_90ddeeea094fecf68441f894.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.513600px;}
.ls7{letter-spacing:-0.291000px;}
.ls14{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.131040px;}
.ls13{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.214800px;}
.lsd{letter-spacing:0.218400px;}
.ls5{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.287400px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.540000px;}
.ls6{letter-spacing:5.940000px;}
.lse{letter-spacing:11.700000px;}
.lsc{letter-spacing:13.860000px;}
.ls4{letter-spacing:68.556000px;}
.ls3{letter-spacing:627.456000px;}
.ls2{letter-spacing:1170.156000px;}
.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;}
}
.ws7{word-spacing:-16.740000px;}
.ws6{word-spacing:-16.667400px;}
.ws3{word-spacing:-16.642080px;}
.ws9{word-spacing:-16.598400px;}
.ws5{word-spacing:-16.594800px;}
.ws8{word-spacing:-16.511040px;}
.ws2{word-spacing:-16.380000px;}
.ws4{word-spacing:-16.089000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.426400px;}
.ws0{word-spacing:0.000000px;}
._10{margin-left:-5.116080px;}
._3{margin-left:-4.108080px;}
._2{margin-left:-3.018480px;}
._32{margin-left:-2.016000px;}
._0{margin-left:-1.015920px;}
._1{width:1.015920px;}
._a{width:2.031120px;}
._1a{width:3.112560px;}
._18{width:4.187520px;}
._17{width:5.640480px;}
._e{width:7.238880px;}
._d{width:8.256240px;}
._11{width:9.468000px;}
._c{width:10.857840px;}
._b{width:11.880480px;}
._5{width:12.940560px;}
._6{width:14.479200px;}
._3b{width:16.308960px;}
._27{width:17.436000px;}
._2b{width:18.459120px;}
._1c{width:19.656000px;}
._1b{width:21.620160px;}
._13{width:22.703040px;}
._14{width:23.798640px;}
._8{width:25.030080px;}
._7{width:26.535600px;}
._28{width:27.546240px;}
._26{width:28.991040px;}
._9{width:30.368880px;}
._2c{width:31.384080px;}
._19{width:32.408640px;}
._16{width:33.460560px;}
._15{width:34.529040px;}
._12{width:35.589840px;}
._4{width:36.724320px;}
._2f{width:38.460960px;}
._2e{width:39.803760px;}
._25{width:41.507280px;}
._2d{width:42.784560px;}
._1f{width:43.939200px;}
._1e{width:45.339840px;}
._20{width:47.010960px;}
._1d{width:50.515920px;}
._3a{width:54.822000px;}
._29{width:60.091440px;}
._2a{width:61.209840px;}
._22{width:62.249520px;}
._21{width:63.457200px;}
._24{width:64.883280px;}
._23{width:66.274560px;}
._37{width:67.540080px;}
._f{width:68.556000px;}
._33{width:72.596160px;}
._31{width:75.381840px;}
._30{width:76.397040px;}
._38{width:100.300080px;}
._36{width:130.681920px;}
._39{width:173.499600px;}
._35{width:196.122000px;}
._34{width:992.841360px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:65.520000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:97.125005px;}
.y1c{bottom:139.264499px;}
.y50{bottom:173.010000px;}
.y52{bottom:173.550000px;}
.y4f{bottom:190.650000px;}
.y51{bottom:191.190000px;}
.y13{bottom:196.933500px;}
.y131{bottom:205.410000px;}
.y4e{bottom:208.290000px;}
.y1b{bottom:209.518500px;}
.y12{bottom:209.533503px;}
.y85{bottom:209.550000px;}
.ya4{bottom:219.990000px;}
.y1a{bottom:222.118502px;}
.y11{bottom:222.133505px;}
.y4d{bottom:225.930000px;}
.y84{bottom:227.190000px;}
.y19{bottom:234.718504px;}
.y10{bottom:234.733496px;}
.y130{bottom:237.450000px;}
.ya3{bottom:237.630000px;}
.y4c{bottom:243.210000px;}
.yc4{bottom:244.470000px;}
.y83{bottom:244.830000px;}
.y12f{bottom:251.490000px;}
.ya2{bottom:254.910000px;}
.ycb{bottom:255.270000px;}
.y18{bottom:259.918497px;}
.yf{bottom:259.933500px;}
.y4b{bottom:261.210000px;}
.y82{bottom:262.470000px;}
.y17{bottom:272.518500px;}
.ye{bottom:272.533503px;}
.yd5{bottom:272.550000px;}
.ya1{bottom:272.955000px;}
.y4a{bottom:278.895000px;}
.y81{bottom:280.155000px;}
.y12e{bottom:283.575000px;}
.y16{bottom:285.118502px;}
.yd{bottom:285.133499px;}
.yd4{bottom:290.235000px;}
.ya0{bottom:290.595000px;}
.y49{bottom:296.535000px;}
.y12d{bottom:297.615000px;}
.y80{bottom:297.795000px;}
.y9f{bottom:308.235000px;}
.y15{bottom:310.318501px;}
.yc{bottom:310.333501px;}
.y12c{bottom:311.655000px;}
.y48{bottom:314.175000px;}
.y7f{bottom:315.435000px;}
.y14{bottom:322.918500px;}
.yb{bottom:322.933500px;}
.yea{bottom:325.695000px;}
.y9e{bottom:325.875000px;}
.y47{bottom:331.815000px;}
.yd1{bottom:332.715000px;}
.y7e{bottom:333.075000px;}
.yd3{bottom:343.155000px;}
.y9d{bottom:343.515000px;}
.y12b{bottom:343.695000px;}
.ya{bottom:348.133500px;}
.y46{bottom:349.095000px;}
.y7d{bottom:350.355000px;}
.yc3{bottom:350.715000px;}
.y12a{bottom:357.735000px;}
.yec{bottom:360.795000px;}
.y9c{bottom:361.155000px;}
.y45{bottom:367.095000px;}
.y7c{bottom:368.355000px;}
.y129{bottom:371.775000px;}
.yca{bottom:378.435000px;}
.y9b{bottom:378.795000px;}
.y44{bottom:384.735000px;}
.y150{bottom:385.815000px;}
.y7b{bottom:385.995000px;}
.y9{bottom:386.785499px;}
.yc9{bottom:396.075000px;}
.y9a{bottom:396.435000px;}
.y14f{bottom:399.855000px;}
.y43{bottom:402.015000px;}
.y7a{bottom:403.635000px;}
.y128{bottom:403.815000px;}
.y8{bottom:408.044999px;}
.yd0{bottom:409.935000px;}
.y99{bottom:413.715000px;}
.y14e{bottom:413.895000px;}
.yc8{bottom:414.075000px;}
.y127{bottom:417.855000px;}
.y42{bottom:419.655000px;}
.y79{bottom:421.275000px;}
.y14d{bottom:427.935000px;}
.y98{bottom:431.355000px;}
.yc7{bottom:431.715000px;}
.y41{bottom:437.655000px;}
.ye6{bottom:438.555000px;}
.y78{bottom:438.915000px;}
.y14c{bottom:441.975000px;}
.y97{bottom:449.355000px;}
.y126{bottom:449.895000px;}
.y40{bottom:455.295000px;}
.y77{bottom:456.555000px;}
.y125{bottom:463.935000px;}
.y96{bottom:466.995000px;}
.y3f{bottom:472.935000px;}
.y14b{bottom:474.015000px;}
.y76{bottom:474.195000px;}
.y124{bottom:477.975000px;}
.y95{bottom:484.635000px;}
.y3e{bottom:490.215000px;}
.yc2{bottom:491.475000px;}
.y75{bottom:491.835000px;}
.y94{bottom:502.275000px;}
.y14a{bottom:506.055000px;}
.y3d{bottom:508.215000px;}
.y74{bottom:509.475000px;}
.y123{bottom:510.015000px;}
.y93{bottom:519.915000px;}
.y102{bottom:520.095000px;}
.y7{bottom:520.864502px;}
.y122{bottom:524.055000px;}
.y3c{bottom:525.855000px;}
.y73{bottom:527.115000px;}
.y101{bottom:534.135000px;}
.ycf{bottom:537.195000px;}
.y92{bottom:537.555000px;}
.y121{bottom:538.095000px;}
.y6{bottom:538.864499px;}
.y3b{bottom:543.135000px;}
.y72{bottom:544.395000px;}
.yc1{bottom:544.755000px;}
.y100{bottom:548.175000px;}
.y120{bottom:552.135000px;}
.yce{bottom:554.835000px;}
.y91{bottom:555.195000px;}
.y5{bottom:556.864499px;}
.y3a{bottom:561.165000px;}
.y71{bottom:562.065000px;}
.yff{bottom:562.245000px;}
.yc0{bottom:562.425000px;}
.y11f{bottom:566.205000px;}
.yc6{bottom:572.505000px;}
.y90{bottom:572.865000px;}
.yfe{bottom:576.285000px;}
.y39{bottom:578.805000px;}
.y70{bottom:580.065000px;}
.y11e{bottom:580.245000px;}
.yc5{bottom:590.145000px;}
.yfd{bottom:590.325000px;}
.y8f{bottom:590.505000px;}
.y11d{bottom:594.285000px;}
.y38{bottom:596.445000px;}
.ybf{bottom:597.705000px;}
.y6f{bottom:604.005000px;}
.yfc{bottom:604.365000px;}
.ye9{bottom:607.785000px;}
.y8e{bottom:608.145000px;}
.y149{bottom:608.325000px;}
.y37{bottom:614.085000px;}
.ybe{bottom:615.345000px;}
.yfb{bottom:618.405000px;}
.y148{bottom:622.365000px;}
.y6e{bottom:625.425000px;}
.y8d{bottom:625.785000px;}
.y11c{bottom:626.325000px;}
.y36{bottom:631.725000px;}
.yfa{bottom:632.445000px;}
.ybd{bottom:632.985000px;}
.y147{bottom:636.405000px;}
.y11b{bottom:640.365000px;}
.y6d{bottom:643.065000px;}
.y8c{bottom:643.425000px;}
.yf9{bottom:646.485000px;}
.y35{bottom:649.365000px;}
.ybc{bottom:650.265000px;}
.y146{bottom:650.445000px;}
.ye5{bottom:650.625000px;}
.yf8{bottom:660.525000px;}
.y6c{bottom:661.065000px;}
.y145{bottom:664.485000px;}
.y34{bottom:666.645000px;}
.ybb{bottom:667.905000px;}
.ye4{bottom:668.265000px;}
.y11a{bottom:672.405000px;}
.yf7{bottom:674.565000px;}
.y144{bottom:678.525000px;}
.y6b{bottom:678.705000px;}
.y33{bottom:684.285000px;}
.yba{bottom:685.905000px;}
.y119{bottom:686.445000px;}
.yf6{bottom:688.605000px;}
.y6a{bottom:696.345000px;}
.y32{bottom:702.285000px;}
.yf5{bottom:702.645000px;}
.yb9{bottom:703.545000px;}
.y143{bottom:710.565000px;}
.y69{bottom:713.985000px;}
.yf4{bottom:716.685000px;}
.y118{bottom:718.485000px;}
.y31{bottom:719.925000px;}
.yb8{bottom:720.825000px;}
.ye3{bottom:721.185000px;}
.yf3{bottom:730.725000px;}
.y8b{bottom:731.265000px;}
.y68{bottom:731.625000px;}
.y117{bottom:732.525000px;}
.y30{bottom:737.565000px;}
.yb7{bottom:738.465000px;}
.ye2{bottom:738.825000px;}
.y142{bottom:742.605000px;}
.yf2{bottom:744.765000px;}
.y116{bottom:746.565000px;}
.ye8{bottom:748.905000px;}
.y67{bottom:749.265000px;}
.y3{bottom:752.599495px;}
.y2f{bottom:755.205000px;}
.yb6{bottom:756.465000px;}
.y141{bottom:756.645000px;}
.yf1{bottom:758.805000px;}
.y115{bottom:760.605000px;}
.yd8{bottom:766.545000px;}
.y66{bottom:766.905000px;}
.y140{bottom:770.685000px;}
.y2e{bottom:772.845000px;}
.yb5{bottom:774.105000px;}
.y65{bottom:784.185000px;}
.y8a{bottom:784.545000px;}
.y2d{bottom:790.485000px;}
.yb4{bottom:791.745000px;}
.y114{bottom:792.645000px;}
.yf0{bottom:794.985000px;}
.yd7{bottom:801.825000px;}
.y64{bottom:802.185000px;}
.y13f{bottom:802.725000px;}
.y113{bottom:806.685000px;}
.y2c{bottom:808.125000px;}
.yb3{bottom:809.025000px;}
.ye1{bottom:809.385000px;}
.y13e{bottom:816.765000px;}
.y63{bottom:819.825000px;}
.yef{bottom:822.705000px;}
.y2b{bottom:825.765000px;}
.yb2{bottom:826.665000px;}
.ye0{bottom:827.025000px;}
.y13d{bottom:830.805000px;}
.y62{bottom:837.105000px;}
.y89{bottom:837.465000px;}
.y112{bottom:838.770000px;}
.yee{bottom:842.370000px;}
.y2a{bottom:843.450000px;}
.yb1{bottom:844.710000px;}
.y111{bottom:852.810000px;}
.yeb{bottom:854.790000px;}
.y61{bottom:855.150000px;}
.yed{bottom:856.410000px;}
.y29{bottom:861.090000px;}
.yb0{bottom:862.350000px;}
.y13c{bottom:862.890000px;}
.y110{bottom:866.850000px;}
.yd2{bottom:872.430000px;}
.y60{bottom:872.790000px;}
.y28{bottom:878.730000px;}
.y2{bottom:879.369000px;}
.yaf{bottom:879.990000px;}
.y5f{bottom:890.430000px;}
.y13b{bottom:894.930000px;}
.y27{bottom:896.370000px;}
.yae{bottom:897.630000px;}
.y10f{bottom:898.890000px;}
.y5e{bottom:908.070000px;}
.y13a{bottom:908.970000px;}
.y10e{bottom:912.930000px;}
.y26{bottom:914.010000px;}
.yad{bottom:915.270000px;}
.y5d{bottom:925.710000px;}
.y10d{bottom:926.970000px;}
.y25{bottom:931.650000px;}
.yac{bottom:932.550000px;}
.ydf{bottom:932.910000px;}
.y139{bottom:941.010000px;}
.yd6{bottom:942.990000px;}
.y5c{bottom:943.350000px;}
.y24{bottom:948.930000px;}
.yab{bottom:950.190000px;}
.yde{bottom:950.550000px;}
.y138{bottom:955.050000px;}
.y10c{bottom:959.010000px;}
.ye7{bottom:960.630000px;}
.y5b{bottom:960.990000px;}
.y1{bottom:966.726000px;}
.yaa{bottom:967.830000px;}
.ydd{bottom:968.190000px;}
.y137{bottom:969.090000px;}
.y23{bottom:971.430000px;}
.y10b{bottom:973.050000px;}
.y5a{bottom:978.270000px;}
.y88{bottom:978.630000px;}
.y136{bottom:983.130000px;}
.ydc{bottom:985.470000px;}
.ya9{bottom:985.830000px;}
.y10a{bottom:987.090000px;}
.y22{bottom:995.370000px;}
.y59{bottom:996.270000px;}
.y109{bottom:1001.130000px;}
.ya8{bottom:1003.470000px;}
.ycd{bottom:1013.550000px;}
.y58{bottom:1013.910000px;}
.y135{bottom:1015.170000px;}
.y21{bottom:1018.410000px;}
.ydb{bottom:1020.750000px;}
.ya7{bottom:1021.110000px;}
.y134{bottom:1029.210000px;}
.y57{bottom:1031.190000px;}
.y87{bottom:1031.550000px;}
.y108{bottom:1033.170000px;}
.yda{bottom:1038.750000px;}
.y20{bottom:1040.910000px;}
.y133{bottom:1043.250000px;}
.ya6{bottom:1045.050000px;}
.y107{bottom:1047.210000px;}
.ycc{bottom:1048.830000px;}
.y56{bottom:1049.190000px;}
.y132{bottom:1057.290000px;}
.y106{bottom:1061.250000px;}
.yd9{bottom:1062.690000px;}
.ya5{bottom:1066.470000px;}
.y55{bottom:1066.830000px;}
.y105{bottom:1075.290000px;}
.y54{bottom:1084.110000px;}
.y86{bottom:1084.470000px;}
.y1f{bottom:1086.090000px;}
.y104{bottom:1089.330000px;}
.y53{bottom:1102.110000px;}
.y103{bottom:1103.370000px;}
.y1e{bottom:1103.730000px;}
.y1d{bottom:1121.370000px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hf{height:54.642656px;}
.h2{height:55.080000px;}
.h9{height:58.651172px;}
.h10{height:60.226875px;}
.hd{height:64.304297px;}
.he{height:66.031875px;}
.h5{height:78.030000px;}
.hc{height:81.929531px;}
.ha{height:81.970312px;}
.h4{height:119.055004px;}
.hb{height:145.125000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:148.896000px;}
.x8{left:170.130000px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.x7{left:729.150000px;}
.x6{left:736.710000px;}
@media print{
.v1{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.456533pt;}
.ls7{letter-spacing:-0.258667pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.116480pt;}
.ls13{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.190933pt;}
.lsd{letter-spacing:0.194133pt;}
.ls5{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.255467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.480000pt;}
.ls6{letter-spacing:5.280000pt;}
.lse{letter-spacing:10.400000pt;}
.lsc{letter-spacing:12.320000pt;}
.ls4{letter-spacing:60.938667pt;}
.ls3{letter-spacing:557.738667pt;}
.ls2{letter-spacing:1040.138667pt;}
.ws7{word-spacing:-14.880000pt;}
.ws6{word-spacing:-14.815467pt;}
.ws3{word-spacing:-14.792960pt;}
.ws9{word-spacing:-14.754133pt;}
.ws5{word-spacing:-14.750933pt;}
.ws8{word-spacing:-14.676480pt;}
.ws2{word-spacing:-14.560000pt;}
.ws4{word-spacing:-14.301333pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.185067pt;}
.wsc{word-spacing:-12.823467pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-4.547627pt;}
._3{margin-left:-3.651627pt;}
._2{margin-left:-2.683093pt;}
._32{margin-left:-1.792000pt;}
._0{margin-left:-0.903040pt;}
._1{width:0.903040pt;}
._a{width:1.805440pt;}
._1a{width:2.766720pt;}
._18{width:3.722240pt;}
._17{width:5.013760pt;}
._e{width:6.434560pt;}
._d{width:7.338880pt;}
._11{width:8.416000pt;}
._c{width:9.651413pt;}
._b{width:10.560427pt;}
._5{width:11.502720pt;}
._6{width:12.870400pt;}
._3b{width:14.496853pt;}
._27{width:15.498667pt;}
._2b{width:16.408107pt;}
._1c{width:17.472000pt;}
._1b{width:19.217920pt;}
._13{width:20.180480pt;}
._14{width:21.154347pt;}
._8{width:22.248960pt;}
._7{width:23.587200pt;}
._28{width:24.485547pt;}
._26{width:25.769813pt;}
._9{width:26.994560pt;}
._2c{width:27.896960pt;}
._19{width:28.807680pt;}
._16{width:29.742720pt;}
._15{width:30.692480pt;}
._12{width:31.635413pt;}
._4{width:32.643840pt;}
._2f{width:34.187520pt;}
._2e{width:35.381120pt;}
._25{width:36.895360pt;}
._2d{width:38.030720pt;}
._1f{width:39.057067pt;}
._1e{width:40.302080pt;}
._20{width:41.787520pt;}
._1d{width:44.903040pt;}
._3a{width:48.730667pt;}
._29{width:53.414613pt;}
._2a{width:54.408747pt;}
._22{width:55.332907pt;}
._21{width:56.406400pt;}
._24{width:57.674027pt;}
._23{width:58.910720pt;}
._37{width:60.035627pt;}
._f{width:60.938667pt;}
._33{width:64.529920pt;}
._31{width:67.006080pt;}
._30{width:67.908480pt;}
._38{width:89.155627pt;}
._36{width:116.161707pt;}
._39{width:154.221867pt;}
._35{width:174.330667pt;}
._34{width:882.525653pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.240000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:86.333337pt;}
.y1c{bottom:123.790666pt;}
.y50{bottom:153.786667pt;}
.y52{bottom:154.266667pt;}
.y4f{bottom:169.466667pt;}
.y51{bottom:169.946667pt;}
.y13{bottom:175.052000pt;}
.y131{bottom:182.586667pt;}
.y4e{bottom:185.146667pt;}
.y1b{bottom:186.238666pt;}
.y12{bottom:186.252002pt;}
.y85{bottom:186.266667pt;}
.ya4{bottom:195.546667pt;}
.y1a{bottom:197.438668pt;}
.y11{bottom:197.452004pt;}
.y4d{bottom:200.826667pt;}
.y84{bottom:201.946667pt;}
.y19{bottom:208.638670pt;}
.y10{bottom:208.651996pt;}
.y130{bottom:211.066667pt;}
.ya3{bottom:211.226667pt;}
.y4c{bottom:216.186667pt;}
.yc4{bottom:217.306667pt;}
.y83{bottom:217.626667pt;}
.y12f{bottom:223.546667pt;}
.ya2{bottom:226.586667pt;}
.ycb{bottom:226.906667pt;}
.y18{bottom:231.038664pt;}
.yf{bottom:231.052000pt;}
.y4b{bottom:232.186667pt;}
.y82{bottom:233.306667pt;}
.y17{bottom:242.238666pt;}
.ye{bottom:242.252002pt;}
.yd5{bottom:242.266667pt;}
.ya1{bottom:242.626667pt;}
.y4a{bottom:247.906667pt;}
.y81{bottom:249.026667pt;}
.y12e{bottom:252.066667pt;}
.y16{bottom:253.438668pt;}
.yd{bottom:253.451999pt;}
.yd4{bottom:257.986667pt;}
.ya0{bottom:258.306667pt;}
.y49{bottom:263.586667pt;}
.y12d{bottom:264.546667pt;}
.y80{bottom:264.706667pt;}
.y9f{bottom:273.986667pt;}
.y15{bottom:275.838667pt;}
.yc{bottom:275.852001pt;}
.y12c{bottom:277.026667pt;}
.y48{bottom:279.266667pt;}
.y7f{bottom:280.386667pt;}
.y14{bottom:287.038667pt;}
.yb{bottom:287.052000pt;}
.yea{bottom:289.506667pt;}
.y9e{bottom:289.666667pt;}
.y47{bottom:294.946667pt;}
.yd1{bottom:295.746667pt;}
.y7e{bottom:296.066667pt;}
.yd3{bottom:305.026667pt;}
.y9d{bottom:305.346667pt;}
.y12b{bottom:305.506667pt;}
.ya{bottom:309.452000pt;}
.y46{bottom:310.306667pt;}
.y7d{bottom:311.426667pt;}
.yc3{bottom:311.746667pt;}
.y12a{bottom:317.986667pt;}
.yec{bottom:320.706667pt;}
.y9c{bottom:321.026667pt;}
.y45{bottom:326.306667pt;}
.y7c{bottom:327.426667pt;}
.y129{bottom:330.466667pt;}
.yca{bottom:336.386667pt;}
.y9b{bottom:336.706667pt;}
.y44{bottom:341.986667pt;}
.y150{bottom:342.946667pt;}
.y7b{bottom:343.106667pt;}
.y9{bottom:343.809333pt;}
.yc9{bottom:352.066667pt;}
.y9a{bottom:352.386667pt;}
.y14f{bottom:355.426667pt;}
.y43{bottom:357.346667pt;}
.y7a{bottom:358.786667pt;}
.y128{bottom:358.946667pt;}
.y8{bottom:362.706666pt;}
.yd0{bottom:364.386667pt;}
.y99{bottom:367.746667pt;}
.y14e{bottom:367.906667pt;}
.yc8{bottom:368.066667pt;}
.y127{bottom:371.426667pt;}
.y42{bottom:373.026667pt;}
.y79{bottom:374.466667pt;}
.y14d{bottom:380.386667pt;}
.y98{bottom:383.426667pt;}
.yc7{bottom:383.746667pt;}
.y41{bottom:389.026667pt;}
.ye6{bottom:389.826667pt;}
.y78{bottom:390.146667pt;}
.y14c{bottom:392.866667pt;}
.y97{bottom:399.426667pt;}
.y126{bottom:399.906667pt;}
.y40{bottom:404.706667pt;}
.y77{bottom:405.826667pt;}
.y125{bottom:412.386667pt;}
.y96{bottom:415.106667pt;}
.y3f{bottom:420.386667pt;}
.y14b{bottom:421.346667pt;}
.y76{bottom:421.506667pt;}
.y124{bottom:424.866667pt;}
.y95{bottom:430.786667pt;}
.y3e{bottom:435.746667pt;}
.yc2{bottom:436.866667pt;}
.y75{bottom:437.186667pt;}
.y94{bottom:446.466667pt;}
.y14a{bottom:449.826667pt;}
.y3d{bottom:451.746667pt;}
.y74{bottom:452.866667pt;}
.y123{bottom:453.346667pt;}
.y93{bottom:462.146667pt;}
.y102{bottom:462.306667pt;}
.y7{bottom:462.990669pt;}
.y122{bottom:465.826667pt;}
.y3c{bottom:467.426667pt;}
.y73{bottom:468.546667pt;}
.y101{bottom:474.786667pt;}
.ycf{bottom:477.506667pt;}
.y92{bottom:477.826667pt;}
.y121{bottom:478.306667pt;}
.y6{bottom:478.990666pt;}
.y3b{bottom:482.786667pt;}
.y72{bottom:483.906667pt;}
.yc1{bottom:484.226667pt;}
.y100{bottom:487.266667pt;}
.y120{bottom:490.786667pt;}
.yce{bottom:493.186667pt;}
.y91{bottom:493.506667pt;}
.y5{bottom:494.990666pt;}
.y3a{bottom:498.813333pt;}
.y71{bottom:499.613333pt;}
.yff{bottom:499.773333pt;}
.yc0{bottom:499.933333pt;}
.y11f{bottom:503.293333pt;}
.yc6{bottom:508.893333pt;}
.y90{bottom:509.213333pt;}
.yfe{bottom:512.253333pt;}
.y39{bottom:514.493333pt;}
.y70{bottom:515.613333pt;}
.y11e{bottom:515.773333pt;}
.yc5{bottom:524.573333pt;}
.yfd{bottom:524.733333pt;}
.y8f{bottom:524.893333pt;}
.y11d{bottom:528.253333pt;}
.y38{bottom:530.173333pt;}
.ybf{bottom:531.293333pt;}
.y6f{bottom:536.893333pt;}
.yfc{bottom:537.213333pt;}
.ye9{bottom:540.253333pt;}
.y8e{bottom:540.573333pt;}
.y149{bottom:540.733333pt;}
.y37{bottom:545.853333pt;}
.ybe{bottom:546.973333pt;}
.yfb{bottom:549.693333pt;}
.y148{bottom:553.213333pt;}
.y6e{bottom:555.933333pt;}
.y8d{bottom:556.253333pt;}
.y11c{bottom:556.733333pt;}
.y36{bottom:561.533333pt;}
.yfa{bottom:562.173333pt;}
.ybd{bottom:562.653333pt;}
.y147{bottom:565.693333pt;}
.y11b{bottom:569.213333pt;}
.y6d{bottom:571.613333pt;}
.y8c{bottom:571.933333pt;}
.yf9{bottom:574.653333pt;}
.y35{bottom:577.213333pt;}
.ybc{bottom:578.013333pt;}
.y146{bottom:578.173333pt;}
.ye5{bottom:578.333333pt;}
.yf8{bottom:587.133333pt;}
.y6c{bottom:587.613333pt;}
.y145{bottom:590.653333pt;}
.y34{bottom:592.573333pt;}
.ybb{bottom:593.693333pt;}
.ye4{bottom:594.013333pt;}
.y11a{bottom:597.693333pt;}
.yf7{bottom:599.613333pt;}
.y144{bottom:603.133333pt;}
.y6b{bottom:603.293333pt;}
.y33{bottom:608.253333pt;}
.yba{bottom:609.693333pt;}
.y119{bottom:610.173333pt;}
.yf6{bottom:612.093333pt;}
.y6a{bottom:618.973333pt;}
.y32{bottom:624.253333pt;}
.yf5{bottom:624.573333pt;}
.yb9{bottom:625.373333pt;}
.y143{bottom:631.613333pt;}
.y69{bottom:634.653333pt;}
.yf4{bottom:637.053333pt;}
.y118{bottom:638.653333pt;}
.y31{bottom:639.933333pt;}
.yb8{bottom:640.733333pt;}
.ye3{bottom:641.053333pt;}
.yf3{bottom:649.533333pt;}
.y8b{bottom:650.013333pt;}
.y68{bottom:650.333333pt;}
.y117{bottom:651.133333pt;}
.y30{bottom:655.613333pt;}
.yb7{bottom:656.413333pt;}
.ye2{bottom:656.733333pt;}
.y142{bottom:660.093333pt;}
.yf2{bottom:662.013333pt;}
.y116{bottom:663.613333pt;}
.ye8{bottom:665.693333pt;}
.y67{bottom:666.013333pt;}
.y3{bottom:668.977329pt;}
.y2f{bottom:671.293333pt;}
.yb6{bottom:672.413333pt;}
.y141{bottom:672.573333pt;}
.yf1{bottom:674.493333pt;}
.y115{bottom:676.093333pt;}
.yd8{bottom:681.373333pt;}
.y66{bottom:681.693333pt;}
.y140{bottom:685.053333pt;}
.y2e{bottom:686.973333pt;}
.yb5{bottom:688.093333pt;}
.y65{bottom:697.053333pt;}
.y8a{bottom:697.373333pt;}
.y2d{bottom:702.653333pt;}
.yb4{bottom:703.773333pt;}
.y114{bottom:704.573333pt;}
.yf0{bottom:706.653333pt;}
.yd7{bottom:712.733333pt;}
.y64{bottom:713.053333pt;}
.y13f{bottom:713.533333pt;}
.y113{bottom:717.053333pt;}
.y2c{bottom:718.333333pt;}
.yb3{bottom:719.133333pt;}
.ye1{bottom:719.453333pt;}
.y13e{bottom:726.013333pt;}
.y63{bottom:728.733333pt;}
.yef{bottom:731.293333pt;}
.y2b{bottom:734.013333pt;}
.yb2{bottom:734.813333pt;}
.ye0{bottom:735.133333pt;}
.y13d{bottom:738.493333pt;}
.y62{bottom:744.093333pt;}
.y89{bottom:744.413333pt;}
.y112{bottom:745.573333pt;}
.yee{bottom:748.773333pt;}
.y2a{bottom:749.733333pt;}
.yb1{bottom:750.853333pt;}
.y111{bottom:758.053333pt;}
.yeb{bottom:759.813333pt;}
.y61{bottom:760.133333pt;}
.yed{bottom:761.253333pt;}
.y29{bottom:765.413333pt;}
.yb0{bottom:766.533333pt;}
.y13c{bottom:767.013333pt;}
.y110{bottom:770.533333pt;}
.yd2{bottom:775.493333pt;}
.y60{bottom:775.813333pt;}
.y28{bottom:781.093333pt;}
.y2{bottom:781.661334pt;}
.yaf{bottom:782.213333pt;}
.y5f{bottom:791.493333pt;}
.y13b{bottom:795.493333pt;}
.y27{bottom:796.773333pt;}
.yae{bottom:797.893333pt;}
.y10f{bottom:799.013333pt;}
.y5e{bottom:807.173333pt;}
.y13a{bottom:807.973333pt;}
.y10e{bottom:811.493333pt;}
.y26{bottom:812.453333pt;}
.yad{bottom:813.573333pt;}
.y5d{bottom:822.853333pt;}
.y10d{bottom:823.973333pt;}
.y25{bottom:828.133333pt;}
.yac{bottom:828.933333pt;}
.ydf{bottom:829.253333pt;}
.y139{bottom:836.453333pt;}
.yd6{bottom:838.213333pt;}
.y5c{bottom:838.533333pt;}
.y24{bottom:843.493333pt;}
.yab{bottom:844.613333pt;}
.yde{bottom:844.933333pt;}
.y138{bottom:848.933333pt;}
.y10c{bottom:852.453333pt;}
.ye7{bottom:853.893333pt;}
.y5b{bottom:854.213333pt;}
.y1{bottom:859.312000pt;}
.yaa{bottom:860.293333pt;}
.ydd{bottom:860.613333pt;}
.y137{bottom:861.413333pt;}
.y23{bottom:863.493333pt;}
.y10b{bottom:864.933333pt;}
.y5a{bottom:869.573333pt;}
.y88{bottom:869.893333pt;}
.y136{bottom:873.893333pt;}
.ydc{bottom:875.973333pt;}
.ya9{bottom:876.293333pt;}
.y10a{bottom:877.413333pt;}
.y22{bottom:884.773333pt;}
.y59{bottom:885.573333pt;}
.y109{bottom:889.893333pt;}
.ya8{bottom:891.973333pt;}
.ycd{bottom:900.933333pt;}
.y58{bottom:901.253333pt;}
.y135{bottom:902.373333pt;}
.y21{bottom:905.253333pt;}
.ydb{bottom:907.333333pt;}
.ya7{bottom:907.653333pt;}
.y134{bottom:914.853333pt;}
.y57{bottom:916.613333pt;}
.y87{bottom:916.933333pt;}
.y108{bottom:918.373333pt;}
.yda{bottom:923.333333pt;}
.y20{bottom:925.253333pt;}
.y133{bottom:927.333333pt;}
.ya6{bottom:928.933333pt;}
.y107{bottom:930.853333pt;}
.ycc{bottom:932.293333pt;}
.y56{bottom:932.613333pt;}
.y132{bottom:939.813333pt;}
.y106{bottom:943.333333pt;}
.yd9{bottom:944.613333pt;}
.ya5{bottom:947.973333pt;}
.y55{bottom:948.293333pt;}
.y105{bottom:955.813333pt;}
.y54{bottom:963.653333pt;}
.y86{bottom:963.973333pt;}
.y1f{bottom:965.413333pt;}
.y104{bottom:968.293333pt;}
.y53{bottom:979.653333pt;}
.y103{bottom:980.773333pt;}
.y1e{bottom:981.093333pt;}
.y1d{bottom:996.773333pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hf{height:48.571250pt;}
.h2{height:48.960000pt;}
.h9{height:52.134375pt;}
.h10{height:53.535000pt;}
.hd{height:57.159375pt;}
.he{height:58.695000pt;}
.h5{height:69.360000pt;}
.hc{height:72.826250pt;}
.ha{height:72.862500pt;}
.h4{height:105.826671pt;}
.hb{height:129.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:132.352000pt;}
.x8{left:151.226667pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.x7{left:648.133333pt;}
.x6{left:654.853333pt;}
}




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