
    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_9cf36289b7e4c39624ed5e33.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_86a7bd27f01e7948449272b3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_873512a33c137fec1e43876f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_eb67ccfcbb6fc5f84fc6e507.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f21be6f8e82b422129183cda.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172363;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_c172e1b6199628b3b624564f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_a01c8a412ffa3daab633063b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_69a43222d99222f08cdceb10.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064453;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_970cf94d588b31a6553dd9c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v2{vertical-align:-75.600000px;}
.v3{vertical-align:-67.680000px;}
.v1{vertical-align:-66.240000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-2.772000px;}
.ls13{letter-spacing:-2.160000px;}
.ls10{letter-spacing:-1.956000px;}
.ls2c{letter-spacing:-1.260000px;}
.ls29{letter-spacing:-1.080000px;}
.ls15{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.244800px;}
.ls2a{letter-spacing:-0.053280px;}
.lse{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.053280px;}
.ls20{letter-spacing:0.153360px;}
.ls1e{letter-spacing:0.156000px;}
.ls2{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls26{letter-spacing:0.298800px;}
.ls16{letter-spacing:0.300000px;}
.ls24{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.382800px;}
.ls19{letter-spacing:0.439920px;}
.ls2b{letter-spacing:0.460200px;}
.ls1c{letter-spacing:0.480000px;}
.ls2e{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.666720px;}
.ls8{letter-spacing:0.720000px;}
.ls25{letter-spacing:0.900000px;}
.lsd{letter-spacing:1.440000px;}
.ls1d{letter-spacing:3.546720px;}
.lsb{letter-spacing:4.320000px;}
.ls21{letter-spacing:6.660000px;}
.ls23{letter-spacing:6.780000px;}
.ls22{letter-spacing:7.380000px;}
.ls27{letter-spacing:8.100000px;}
.lsc{letter-spacing:17.280000px;}
.ls31{letter-spacing:18.180000px;}
.ls9{letter-spacing:19.440000px;}
.ls1a{letter-spacing:21.780000px;}
.ls6{letter-spacing:22.500000px;}
.lsa{letter-spacing:28.800000px;}
.ls5{letter-spacing:30.396000px;}
.ls7{letter-spacing:45.540000px;}
.ls11{letter-spacing:79.505280px;}
.ls2d{letter-spacing:128.340000px;}
.ls2f{letter-spacing:157.860000px;}
.ls4{letter-spacing:835.536000px;}
.ls30{letter-spacing:1238.736000px;}
.ls28{letter-spacing:1293.600000px;}
.ls18{letter-spacing:1423.020000px;}
.ls1{letter-spacing:2149.656000px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws4{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.315200px;}
.wsd{word-spacing:-15.400200px;}
.ws0{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.240000px;}
.ws1{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.604000px;}
.ws2{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.400000px;}
.wsc{word-spacing:-13.860000px;}
.wse{word-spacing:-13.500000px;}
.ws6{word-spacing:0.000000px;}
._7{margin-left:-3.884400px;}
._5{margin-left:-2.270880px;}
._4{margin-left:-1.075680px;}
._0{width:1.015920px;}
._3{width:2.587440px;}
._f{width:3.732480px;}
._8{width:5.736960px;}
._6{width:7.171200px;}
._10{width:8.364960px;}
._14{width:9.444240px;}
._a{width:10.458000px;}
._9{width:11.712960px;}
._b{width:13.027680px;}
._11{width:14.126400px;}
._15{width:15.546240px;}
._3c{width:17.115120px;}
._16{width:18.215280px;}
._1{width:19.549200px;}
._2{width:20.592960px;}
._c{width:21.991680px;}
._d{width:23.217600px;}
._38{width:24.361440px;}
._18{width:25.812000px;}
._17{width:27.151200px;}
._12{width:28.308960px;}
._13{width:29.657280px;}
._35{width:30.670080px;}
._2a{width:31.971600px;}
._19{width:33.611040px;}
._1a{width:34.983360px;}
._36{width:36.195840px;}
._2b{width:37.469520px;}
._37{width:38.636640px;}
._29{width:39.810240px;}
._1c{width:40.894560px;}
._1b{width:42.521760px;}
._1d{width:43.863840px;}
._e{width:46.015200px;}
._2d{width:47.270160px;}
._2c{width:48.286080px;}
._34{width:52.276320px;}
._28{width:53.784000px;}
._31{width:56.054880px;}
._26{width:59.829600px;}
._3d{width:66.751920px;}
._2f{width:68.186160px;}
._3b{width:74.210400px;}
._27{width:89.520480px;}
._21{width:95.735520px;}
._1f{width:97.349040px;}
._2e{width:100.098000px;}
._1e{width:104.101920px;}
._39{width:105.463920px;}
._3a{width:106.948080px;}
._22{width:119.998080px;}
._23{width:121.014000px;}
._24{width:129.081600px;}
._32{width:152.627040px;}
._20{width:162.786240px;}
._33{width:189.259920px;}
._30{width:193.502880px;}
._25{width:384.137280px;}
._3e{width:2427.817200px;}
.fc2{color:rgb(128,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y67{bottom:3.420000px;}
.y6{bottom:3.600000px;}
.y6b{bottom:3.780000px;}
.y6e{bottom:20.880000px;}
.y6a{bottom:21.060000px;}
.y6d{bottom:38.160000px;}
.y69{bottom:38.340000px;}
.y7d{bottom:38.385000px;}
.y4{bottom:56.700000px;}
.y76{bottom:92.196000px;}
.ya4{bottom:94.176000px;}
.y10d{bottom:100.296000px;}
.y3f{bottom:105.516000px;}
.yd5{bottom:109.476000px;}
.y75{bottom:111.276000px;}
.ya3{bottom:113.076000px;}
.y10c{bottom:115.776000px;}
.y3e{bottom:120.996000px;}
.yd4{bottom:126.576000px;}
.y74{bottom:130.176000px;}
.y10b{bottom:131.436000px;}
.ya2{bottom:131.976000px;}
.y3d{bottom:136.476000px;}
.yd3{bottom:143.856000px;}
.y10a{bottom:147.636000px;}
.y73{bottom:148.176000px;}
.ya1{bottom:151.050000px;}
.y3c{bottom:152.850000px;}
.yd2{bottom:161.130000px;}
.y72{bottom:162.750000px;}
.y109{bottom:166.530000px;}
.ya0{bottom:169.950000px;}
.y3b{bottom:171.750000px;}
.y71{bottom:176.970000px;}
.yd1{bottom:178.410000px;}
.y108{bottom:185.610000px;}
.y9f{bottom:189.030000px;}
.y3a{bottom:190.830000px;}
.yd0{bottom:195.690000px;}
.y107{bottom:204.510000px;}
.y9e{bottom:207.930000px;}
.y39{bottom:209.730000px;}
.ycf{bottom:212.970000px;}
.y106{bottom:223.590000px;}
.y9d{bottom:226.830000px;}
.y38{bottom:228.630000px;}
.y70{bottom:229.350000px;}
.yce{bottom:230.070000px;}
.y105{bottom:242.490000px;}
.y9c{bottom:245.910000px;}
.ycd{bottom:247.350000px;}
.y37{bottom:247.710000px;}
.y104{bottom:261.390000px;}
.ycc{bottom:264.630000px;}
.y9b{bottom:264.810000px;}
.y36{bottom:266.610000px;}
.y103{bottom:280.470000px;}
.y6f{bottom:281.910000px;}
.y9a{bottom:283.890000px;}
.y35{bottom:285.690000px;}
.ycb{bottom:299.190000px;}
.y102{bottom:299.370000px;}
.y99{bottom:302.790000px;}
.y34{bottom:304.590000px;}
.yca{bottom:316.290000px;}
.y101{bottom:318.450000px;}
.y98{bottom:321.690000px;}
.y33{bottom:323.490000px;}
.yc9{bottom:333.615000px;}
.y6c{bottom:334.515000px;}
.y100{bottom:337.395000px;}
.y97{bottom:340.815000px;}
.y32{bottom:342.615000px;}
.yc8{bottom:350.895000px;}
.yff{bottom:356.295000px;}
.y96{bottom:359.715000px;}
.y31{bottom:361.515000px;}
.yc7{bottom:368.175000px;}
.yfe{bottom:374.295000px;}
.y95{bottom:378.795000px;}
.y30{bottom:380.595000px;}
.yc6{bottom:385.455000px;}
.y68{bottom:386.895000px;}
.yfd{bottom:388.875000px;}
.y94{bottom:397.695000px;}
.y2f{bottom:399.495000px;}
.yc5{bottom:402.735000px;}
.yfc{bottom:406.155000px;}
.y93{bottom:416.595000px;}
.y2e{bottom:418.395000px;}
.yc4{bottom:419.835000px;}
.yfb{bottom:423.435000px;}
.y92{bottom:435.675000px;}
.yc3{bottom:437.115000px;}
.y2d{bottom:437.475000px;}
.y66{bottom:439.455000px;}
.yfa{bottom:440.535000px;}
.y91{bottom:454.575000px;}
.y2c{bottom:456.375000px;}
.yf9{bottom:457.815000px;}
.y65{bottom:460.875000px;}
.yc2{bottom:470.955000px;}
.y90{bottom:473.655000px;}
.yf8{bottom:475.095000px;}
.y2b{bottom:475.455000px;}
.y64{bottom:478.695000px;}
.yc1{bottom:485.535000px;}
.yf7{bottom:492.375000px;}
.y8f{bottom:492.555000px;}
.y2a{bottom:494.355000px;}
.y63{bottom:497.775000px;}
.yc0{bottom:502.635000px;}
.y8e{bottom:511.455000px;}
.y29{bottom:513.255000px;}
.y62{bottom:516.675000px;}
.ybf{bottom:519.915000px;}
.yf6{bottom:526.035000px;}
.y8d{bottom:530.535000px;}
.y28{bottom:532.335000px;}
.y61{bottom:535.575000px;}
.ybe{bottom:537.195000px;}
.yf5{bottom:540.615000px;}
.y8c{bottom:549.435000px;}
.y27{bottom:551.235000px;}
.ybd{bottom:554.475000px;}
.y60{bottom:554.655000px;}
.yf4{bottom:557.895000px;}
.y8b{bottom:568.515000px;}
.y26{bottom:570.315000px;}
.ybc{bottom:571.755000px;}
.y5f{bottom:573.555000px;}
.yf3{bottom:575.175000px;}
.y8a{bottom:587.415000px;}
.ybb{bottom:589.035000px;}
.y25{bottom:589.215000px;}
.yf2{bottom:592.455000px;}
.y5e{bottom:592.635000px;}
.yba{bottom:606.165000px;}
.y89{bottom:606.525000px;}
.y24{bottom:608.325000px;}
.yf1{bottom:609.765000px;}
.y5d{bottom:611.565000px;}
.yb9{bottom:623.445000px;}
.y88{bottom:625.425000px;}
.y23{bottom:627.225000px;}
.y5c{bottom:630.645000px;}
.yb8{bottom:640.725000px;}
.yf0{bottom:643.425000px;}
.y87{bottom:644.325000px;}
.y22{bottom:646.125000px;}
.y5b{bottom:649.545000px;}
.yef{bottom:657.645000px;}
.yb7{bottom:658.005000px;}
.y86{bottom:663.405000px;}
.y21{bottom:664.125000px;}
.y5a{bottom:668.445000px;}
.yee{bottom:674.925000px;}
.yb6{bottom:675.285000px;}
.y20{bottom:678.705000px;}
.y85{bottom:682.305000px;}
.y59{bottom:687.525000px;}
.yed{bottom:691.665000px;}
.yb5{bottom:692.385000px;}
.y1f{bottom:695.985000px;}
.y84{bottom:701.385000px;}
.yec{bottom:706.245000px;}
.y58{bottom:706.425000px;}
.yb4{bottom:709.665000px;}
.y1e{bottom:713.085000px;}
.y83{bottom:720.285000px;}
.yeb{bottom:723.525000px;}
.y57{bottom:725.505000px;}
.yb3{bottom:726.945000px;}
.y1d{bottom:730.365000px;}
.y82{bottom:739.185000px;}
.yea{bottom:740.805000px;}
.yb2{bottom:744.225000px;}
.y56{bottom:744.405000px;}
.y1c{bottom:747.645000px;}
.y81{bottom:758.265000px;}
.yb1{bottom:761.505000px;}
.y55{bottom:763.305000px;}
.y1b{bottom:764.925000px;}
.ye9{bottom:775.185000px;}
.y80{bottom:776.085000px;}
.yb0{bottom:778.785000px;}
.y1a{bottom:782.205000px;}
.y54{bottom:782.385000px;}
.y7f{bottom:790.665000px;}
.ye8{bottom:792.465000px;}
.yaf{bottom:795.885000px;}
.y19{bottom:799.485000px;}
.y53{bottom:801.285000px;}
.y7e{bottom:804.885000px;}
.ye7{bottom:809.745000px;}
.yae{bottom:813.165000px;}
.y18{bottom:816.585000px;}
.y52{bottom:820.365000px;}
.ye6{bottom:827.025000px;}
.yad{bottom:830.085000px;}
.y51{bottom:839.265000px;}
.y7c{bottom:840.165000px;}
.ye5{bottom:844.305000px;}
.yac{bottom:847.005000px;}
.y17{bottom:850.425000px;}
.y50{bottom:858.165000px;}
.ye4{bottom:861.585000px;}
.yab{bottom:861.765000px;}
.y16{bottom:865.050000px;}
.y4f{bottom:877.290000px;}
.ye3{bottom:878.730000px;}
.yaa{bottom:880.890000px;}
.y15{bottom:882.330000px;}
.y7b{bottom:892.770000px;}
.ye2{bottom:896.010000px;}
.y4e{bottom:896.190000px;}
.y14{bottom:899.430000px;}
.ya9{bottom:899.790000px;}
.ye1{bottom:913.290000px;}
.y4d{bottom:915.270000px;}
.y13{bottom:916.710000px;}
.ya8{bottom:918.690000px;}
.ye0{bottom:930.570000px;}
.y12{bottom:933.990000px;}
.y4c{bottom:934.350000px;}
.ya7{bottom:937.770000px;}
.y7a{bottom:945.330000px;}
.ydf{bottom:947.850000px;}
.y4b{bottom:954.510000px;}
.ya6{bottom:956.670000px;}
.yde{bottom:965.130000px;}
.y11{bottom:967.830000px;}
.y4a{bottom:974.670000px;}
.ya5{bottom:975.750000px;}
.y10{bottom:981.870000px;}
.ydd{bottom:982.230000px;}
.y49{bottom:994.650000px;}
.y79{bottom:997.710000px;}
.yf{bottom:999.150000px;}
.ydc{bottom:999.510000px;}
.y48{bottom:1013.550000px;}
.ye{bottom:1016.430000px;}
.ydb{bottom:1016.790000px;}
.y47{bottom:1032.630000px;}
.yd{bottom:1033.350000px;}
.yc{bottom:1047.750000px;}
.y78{bottom:1050.270000px;}
.yda{bottom:1050.450000px;}
.y46{bottom:1051.530000px;}
.yb{bottom:1065.030000px;}
.y45{bottom:1070.610000px;}
.y77{bottom:1071.690000px;}
.y44{bottom:1089.510000px;}
.yd9{bottom:1098.690000px;}
.ya{bottom:1098.870000px;}
.y43{bottom:1108.410000px;}
.yd8{bottom:1113.090000px;}
.y9{bottom:1113.450000px;}
.y42{bottom:1127.490000px;}
.yd7{bottom:1130.220000px;}
.y8{bottom:1130.580000px;}
.y41{bottom:1146.420000px;}
.yd6{bottom:1147.500000px;}
.y7{bottom:1147.860000px;}
.y3{bottom:1164.240000px;}
.y2{bottom:1179.000000px;}
.y5{bottom:1189.260000px;}
.y40{bottom:1192.320000px;}
.y1{bottom:1196.280000px;}
.h4{height:17.280000px;}
.h13{height:34.560000px;}
.h5{height:47.344922px;}
.h14{height:48.616875px;}
.h3{height:49.583118px;}
.h11{height:51.660000px;}
.h10{height:51.840000px;}
.h12{height:51.876000px;}
.hc{height:52.998047px;}
.h8{height:53.252930px;}
.h9{height:58.621992px;}
.h2{height:58.651172px;}
.hb{height:59.027344px;}
.h7{height:60.226875px;}
.hd{height:61.423863px;}
.hf{height:64.978594px;}
.ha{height:65.010937px;}
.h6{height:65.884219px;}
.he{height:68.084282px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:22.500000px;}
.w3{width:24.300000px;}
.w8{width:137.700000px;}
.w5{width:143.316000px;}
.w6{width:248.070000px;}
.w9{width:272.415000px;}
.wa{width:326.730000px;}
.w7{width:345.495000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x15{left:50.220000px;}
.x12{left:56.160000px;}
.x10{left:63.900000px;}
.x1b{left:90.719987px;}
.x17{left:98.676000px;}
.x1{left:106.415987px;}
.x6{left:130.715987px;}
.x3{left:148.895987px;}
.x23{left:154.109987px;}
.x1c{left:183.449987px;}
.x14{left:200.190000px;}
.x18{left:237.090000px;}
.x1d{left:260.669987px;}
.xd{left:262.109987px;}
.x1a{left:313.094987px;}
.x7{left:317.774987px;}
.xe{left:441.254987px;}
.x25{left:447.734987px;}
.x16{left:448.995000px;}
.x9{left:451.514987px;}
.x1e{left:488.984987px;}
.x19{left:510.225000px;}
.x1f{left:526.604987px;}
.x8{left:549.284987px;}
.xa{left:593.924987px;}
.x24{left:607.424987px;}
.x22{left:621.644987px;}
.x20{left:650.444987px;}
.x4{left:654.944987px;}
.x21{left:658.544987px;}
.xc{left:660.884987px;}
.x5{left:665.429987px;}
.x26{left:694.949987px;}
.x11{left:717.269987px;}
.xf{left:786.749987px;}
.xb{left:810.149987px;}
.x2{left:819.150000px;}
@media print{
.v2{vertical-align:-67.200000pt;}
.v3{vertical-align:-60.160000pt;}
.v1{vertical-align:-58.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-2.464000pt;}
.ls13{letter-spacing:-1.920000pt;}
.ls10{letter-spacing:-1.738667pt;}
.ls2c{letter-spacing:-1.120000pt;}
.ls29{letter-spacing:-0.960000pt;}
.ls15{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.217600pt;}
.ls2a{letter-spacing:-0.047360pt;}
.lse{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.047360pt;}
.ls20{letter-spacing:0.136320pt;}
.ls1e{letter-spacing:0.138667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls26{letter-spacing:0.265600pt;}
.ls16{letter-spacing:0.266667pt;}
.ls24{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.340267pt;}
.ls19{letter-spacing:0.391040pt;}
.ls2b{letter-spacing:0.409067pt;}
.ls1c{letter-spacing:0.426667pt;}
.ls2e{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.592640pt;}
.ls8{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.800000pt;}
.lsd{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:3.152640pt;}
.lsb{letter-spacing:3.840000pt;}
.ls21{letter-spacing:5.920000pt;}
.ls23{letter-spacing:6.026667pt;}
.ls22{letter-spacing:6.560000pt;}
.ls27{letter-spacing:7.200000pt;}
.lsc{letter-spacing:15.360000pt;}
.ls31{letter-spacing:16.160000pt;}
.ls9{letter-spacing:17.280000pt;}
.ls1a{letter-spacing:19.360000pt;}
.ls6{letter-spacing:20.000000pt;}
.lsa{letter-spacing:25.600000pt;}
.ls5{letter-spacing:27.018667pt;}
.ls7{letter-spacing:40.480000pt;}
.ls11{letter-spacing:70.671360pt;}
.ls2d{letter-spacing:114.080000pt;}
.ls2f{letter-spacing:140.320000pt;}
.ls4{letter-spacing:742.698667pt;}
.ls30{letter-spacing:1101.098667pt;}
.ls28{letter-spacing:1149.866667pt;}
.ls18{letter-spacing:1264.906667pt;}
.ls1{letter-spacing:1910.805333pt;}
.ws8{word-spacing:-58.880000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.502400pt;}
.wsd{word-spacing:-13.689067pt;}
.ws0{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.546667pt;}
.ws1{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.981333pt;}
.ws2{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.800000pt;}
.wsc{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.000000pt;}
.ws6{word-spacing:0.000000pt;}
._7{margin-left:-3.452800pt;}
._5{margin-left:-2.018560pt;}
._4{margin-left:-0.956160pt;}
._0{width:0.903040pt;}
._3{width:2.299947pt;}
._f{width:3.317760pt;}
._8{width:5.099520pt;}
._6{width:6.374400pt;}
._10{width:7.435520pt;}
._14{width:8.394880pt;}
._a{width:9.296000pt;}
._9{width:10.411520pt;}
._b{width:11.580160pt;}
._11{width:12.556800pt;}
._15{width:13.818880pt;}
._3c{width:15.213440pt;}
._16{width:16.191360pt;}
._1{width:17.377067pt;}
._2{width:18.304853pt;}
._c{width:19.548160pt;}
._d{width:20.637867pt;}
._38{width:21.654613pt;}
._18{width:22.944000pt;}
._17{width:24.134400pt;}
._12{width:25.163520pt;}
._13{width:26.362027pt;}
._35{width:27.262293pt;}
._2a{width:28.419200pt;}
._19{width:29.876480pt;}
._1a{width:31.096320pt;}
._36{width:32.174080pt;}
._2b{width:33.306240pt;}
._37{width:34.343680pt;}
._29{width:35.386880pt;}
._1c{width:36.350720pt;}
._1b{width:37.797120pt;}
._1d{width:38.990080pt;}
._e{width:40.902400pt;}
._2d{width:42.017920pt;}
._2c{width:42.920960pt;}
._34{width:46.467840pt;}
._28{width:47.808000pt;}
._31{width:49.826560pt;}
._26{width:53.181867pt;}
._3d{width:59.335040pt;}
._2f{width:60.609920pt;}
._3b{width:65.964800pt;}
._27{width:79.573760pt;}
._21{width:85.098240pt;}
._1f{width:86.532480pt;}
._2e{width:88.976000pt;}
._1e{width:92.535040pt;}
._39{width:93.745707pt;}
._3a{width:95.064960pt;}
._22{width:106.664960pt;}
._23{width:107.568000pt;}
._24{width:114.739200pt;}
._32{width:135.668480pt;}
._20{width:144.698880pt;}
._33{width:168.231040pt;}
._30{width:172.002560pt;}
._25{width:341.455360pt;}
._3e{width:2158.059733pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:3.040000pt;}
.y6{bottom:3.200000pt;}
.y6b{bottom:3.360000pt;}
.y6e{bottom:18.560000pt;}
.y6a{bottom:18.720000pt;}
.y6d{bottom:33.920000pt;}
.y69{bottom:34.080000pt;}
.y7d{bottom:34.120000pt;}
.y4{bottom:50.400000pt;}
.y76{bottom:81.952000pt;}
.ya4{bottom:83.712000pt;}
.y10d{bottom:89.152000pt;}
.y3f{bottom:93.792000pt;}
.yd5{bottom:97.312000pt;}
.y75{bottom:98.912000pt;}
.ya3{bottom:100.512000pt;}
.y10c{bottom:102.912000pt;}
.y3e{bottom:107.552000pt;}
.yd4{bottom:112.512000pt;}
.y74{bottom:115.712000pt;}
.y10b{bottom:116.832000pt;}
.ya2{bottom:117.312000pt;}
.y3d{bottom:121.312000pt;}
.yd3{bottom:127.872000pt;}
.y10a{bottom:131.232000pt;}
.y73{bottom:131.712000pt;}
.ya1{bottom:134.266667pt;}
.y3c{bottom:135.866667pt;}
.yd2{bottom:143.226667pt;}
.y72{bottom:144.666667pt;}
.y109{bottom:148.026667pt;}
.ya0{bottom:151.066667pt;}
.y3b{bottom:152.666667pt;}
.y71{bottom:157.306667pt;}
.yd1{bottom:158.586667pt;}
.y108{bottom:164.986667pt;}
.y9f{bottom:168.026667pt;}
.y3a{bottom:169.626667pt;}
.yd0{bottom:173.946667pt;}
.y107{bottom:181.786667pt;}
.y9e{bottom:184.826667pt;}
.y39{bottom:186.426667pt;}
.ycf{bottom:189.306667pt;}
.y106{bottom:198.746667pt;}
.y9d{bottom:201.626667pt;}
.y38{bottom:203.226667pt;}
.y70{bottom:203.866667pt;}
.yce{bottom:204.506667pt;}
.y105{bottom:215.546667pt;}
.y9c{bottom:218.586667pt;}
.ycd{bottom:219.866667pt;}
.y37{bottom:220.186667pt;}
.y104{bottom:232.346667pt;}
.ycc{bottom:235.226667pt;}
.y9b{bottom:235.386667pt;}
.y36{bottom:236.986667pt;}
.y103{bottom:249.306667pt;}
.y6f{bottom:250.586667pt;}
.y9a{bottom:252.346667pt;}
.y35{bottom:253.946667pt;}
.ycb{bottom:265.946667pt;}
.y102{bottom:266.106667pt;}
.y99{bottom:269.146667pt;}
.y34{bottom:270.746667pt;}
.yca{bottom:281.146667pt;}
.y101{bottom:283.066667pt;}
.y98{bottom:285.946667pt;}
.y33{bottom:287.546667pt;}
.yc9{bottom:296.546667pt;}
.y6c{bottom:297.346667pt;}
.y100{bottom:299.906667pt;}
.y97{bottom:302.946667pt;}
.y32{bottom:304.546667pt;}
.yc8{bottom:311.906667pt;}
.yff{bottom:316.706667pt;}
.y96{bottom:319.746667pt;}
.y31{bottom:321.346667pt;}
.yc7{bottom:327.266667pt;}
.yfe{bottom:332.706667pt;}
.y95{bottom:336.706667pt;}
.y30{bottom:338.306667pt;}
.yc6{bottom:342.626667pt;}
.y68{bottom:343.906667pt;}
.yfd{bottom:345.666667pt;}
.y94{bottom:353.506667pt;}
.y2f{bottom:355.106667pt;}
.yc5{bottom:357.986667pt;}
.yfc{bottom:361.026667pt;}
.y93{bottom:370.306667pt;}
.y2e{bottom:371.906667pt;}
.yc4{bottom:373.186667pt;}
.yfb{bottom:376.386667pt;}
.y92{bottom:387.266667pt;}
.yc3{bottom:388.546667pt;}
.y2d{bottom:388.866667pt;}
.y66{bottom:390.626667pt;}
.yfa{bottom:391.586667pt;}
.y91{bottom:404.066667pt;}
.y2c{bottom:405.666667pt;}
.yf9{bottom:406.946667pt;}
.y65{bottom:409.666667pt;}
.yc2{bottom:418.626667pt;}
.y90{bottom:421.026667pt;}
.yf8{bottom:422.306667pt;}
.y2b{bottom:422.626667pt;}
.y64{bottom:425.506667pt;}
.yc1{bottom:431.586667pt;}
.yf7{bottom:437.666667pt;}
.y8f{bottom:437.826667pt;}
.y2a{bottom:439.426667pt;}
.y63{bottom:442.466667pt;}
.yc0{bottom:446.786667pt;}
.y8e{bottom:454.626667pt;}
.y29{bottom:456.226667pt;}
.y62{bottom:459.266667pt;}
.ybf{bottom:462.146667pt;}
.yf6{bottom:467.586667pt;}
.y8d{bottom:471.586667pt;}
.y28{bottom:473.186667pt;}
.y61{bottom:476.066667pt;}
.ybe{bottom:477.506667pt;}
.yf5{bottom:480.546667pt;}
.y8c{bottom:488.386667pt;}
.y27{bottom:489.986667pt;}
.ybd{bottom:492.866667pt;}
.y60{bottom:493.026667pt;}
.yf4{bottom:495.906667pt;}
.y8b{bottom:505.346667pt;}
.y26{bottom:506.946667pt;}
.ybc{bottom:508.226667pt;}
.y5f{bottom:509.826667pt;}
.yf3{bottom:511.266667pt;}
.y8a{bottom:522.146667pt;}
.ybb{bottom:523.586667pt;}
.y25{bottom:523.746667pt;}
.yf2{bottom:526.626667pt;}
.y5e{bottom:526.786667pt;}
.yba{bottom:538.813333pt;}
.y89{bottom:539.133333pt;}
.y24{bottom:540.733333pt;}
.yf1{bottom:542.013333pt;}
.y5d{bottom:543.613333pt;}
.yb9{bottom:554.173333pt;}
.y88{bottom:555.933333pt;}
.y23{bottom:557.533333pt;}
.y5c{bottom:560.573333pt;}
.yb8{bottom:569.533333pt;}
.yf0{bottom:571.933333pt;}
.y87{bottom:572.733333pt;}
.y22{bottom:574.333333pt;}
.y5b{bottom:577.373333pt;}
.yef{bottom:584.573333pt;}
.yb7{bottom:584.893333pt;}
.y86{bottom:589.693333pt;}
.y21{bottom:590.333333pt;}
.y5a{bottom:594.173333pt;}
.yee{bottom:599.933333pt;}
.yb6{bottom:600.253333pt;}
.y20{bottom:603.293333pt;}
.y85{bottom:606.493333pt;}
.y59{bottom:611.133333pt;}
.yed{bottom:614.813333pt;}
.yb5{bottom:615.453333pt;}
.y1f{bottom:618.653333pt;}
.y84{bottom:623.453333pt;}
.yec{bottom:627.773333pt;}
.y58{bottom:627.933333pt;}
.yb4{bottom:630.813333pt;}
.y1e{bottom:633.853333pt;}
.y83{bottom:640.253333pt;}
.yeb{bottom:643.133333pt;}
.y57{bottom:644.893333pt;}
.yb3{bottom:646.173333pt;}
.y1d{bottom:649.213333pt;}
.y82{bottom:657.053333pt;}
.yea{bottom:658.493333pt;}
.yb2{bottom:661.533333pt;}
.y56{bottom:661.693333pt;}
.y1c{bottom:664.573333pt;}
.y81{bottom:674.013333pt;}
.yb1{bottom:676.893333pt;}
.y55{bottom:678.493333pt;}
.y1b{bottom:679.933333pt;}
.ye9{bottom:689.053333pt;}
.y80{bottom:689.853333pt;}
.yb0{bottom:692.253333pt;}
.y1a{bottom:695.293333pt;}
.y54{bottom:695.453333pt;}
.y7f{bottom:702.813333pt;}
.ye8{bottom:704.413333pt;}
.yaf{bottom:707.453333pt;}
.y19{bottom:710.653333pt;}
.y53{bottom:712.253333pt;}
.y7e{bottom:715.453333pt;}
.ye7{bottom:719.773333pt;}
.yae{bottom:722.813333pt;}
.y18{bottom:725.853333pt;}
.y52{bottom:729.213333pt;}
.ye6{bottom:735.133333pt;}
.yad{bottom:737.853333pt;}
.y51{bottom:746.013333pt;}
.y7c{bottom:746.813333pt;}
.ye5{bottom:750.493333pt;}
.yac{bottom:752.893333pt;}
.y17{bottom:755.933333pt;}
.y50{bottom:762.813333pt;}
.ye4{bottom:765.853333pt;}
.yab{bottom:766.013333pt;}
.y16{bottom:768.933333pt;}
.y4f{bottom:779.813333pt;}
.ye3{bottom:781.093333pt;}
.yaa{bottom:783.013333pt;}
.y15{bottom:784.293333pt;}
.y7b{bottom:793.573333pt;}
.ye2{bottom:796.453333pt;}
.y4e{bottom:796.613333pt;}
.y14{bottom:799.493333pt;}
.ya9{bottom:799.813333pt;}
.ye1{bottom:811.813333pt;}
.y4d{bottom:813.573333pt;}
.y13{bottom:814.853333pt;}
.ya8{bottom:816.613333pt;}
.ye0{bottom:827.173333pt;}
.y12{bottom:830.213333pt;}
.y4c{bottom:830.533333pt;}
.ya7{bottom:833.573333pt;}
.y7a{bottom:840.293333pt;}
.ydf{bottom:842.533333pt;}
.y4b{bottom:848.453333pt;}
.ya6{bottom:850.373333pt;}
.yde{bottom:857.893333pt;}
.y11{bottom:860.293333pt;}
.y4a{bottom:866.373333pt;}
.ya5{bottom:867.333333pt;}
.y10{bottom:872.773333pt;}
.ydd{bottom:873.093333pt;}
.y49{bottom:884.133333pt;}
.y79{bottom:886.853333pt;}
.yf{bottom:888.133333pt;}
.ydc{bottom:888.453333pt;}
.y48{bottom:900.933333pt;}
.ye{bottom:903.493333pt;}
.ydb{bottom:903.813333pt;}
.y47{bottom:917.893333pt;}
.yd{bottom:918.533333pt;}
.yc{bottom:931.333333pt;}
.y78{bottom:933.573333pt;}
.yda{bottom:933.733333pt;}
.y46{bottom:934.693333pt;}
.yb{bottom:946.693333pt;}
.y45{bottom:951.653333pt;}
.y77{bottom:952.613333pt;}
.y44{bottom:968.453333pt;}
.yd9{bottom:976.613333pt;}
.ya{bottom:976.773333pt;}
.y43{bottom:985.253333pt;}
.yd8{bottom:989.413333pt;}
.y9{bottom:989.733333pt;}
.y42{bottom:1002.213333pt;}
.yd7{bottom:1004.640000pt;}
.y8{bottom:1004.960000pt;}
.y41{bottom:1019.040000pt;}
.yd6{bottom:1020.000000pt;}
.y7{bottom:1020.320000pt;}
.y3{bottom:1034.880000pt;}
.y2{bottom:1048.000000pt;}
.y5{bottom:1057.120000pt;}
.y40{bottom:1059.840000pt;}
.y1{bottom:1063.360000pt;}
.h4{height:15.360000pt;}
.h13{height:30.720000pt;}
.h5{height:42.084375pt;}
.h14{height:43.215000pt;}
.h3{height:44.073883pt;}
.h11{height:45.920000pt;}
.h10{height:46.080000pt;}
.h12{height:46.112000pt;}
.hc{height:47.109375pt;}
.h8{height:47.335938pt;}
.h9{height:52.108438pt;}
.h2{height:52.134375pt;}
.hb{height:52.468750pt;}
.h7{height:53.535000pt;}
.hd{height:54.598989pt;}
.hf{height:57.758750pt;}
.ha{height:57.787500pt;}
.h6{height:58.563750pt;}
.he{height:60.519362pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:20.000000pt;}
.w3{width:21.600000pt;}
.w8{width:122.400000pt;}
.w5{width:127.392000pt;}
.w6{width:220.506667pt;}
.w9{width:242.146667pt;}
.wa{width:290.426667pt;}
.w7{width:307.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x15{left:44.640000pt;}
.x12{left:49.920000pt;}
.x10{left:56.800000pt;}
.x1b{left:80.639988pt;}
.x17{left:87.712000pt;}
.x1{left:94.591988pt;}
.x6{left:116.191988pt;}
.x3{left:132.351988pt;}
.x23{left:136.986655pt;}
.x1c{left:163.066655pt;}
.x14{left:177.946667pt;}
.x18{left:210.746667pt;}
.x1d{left:231.706655pt;}
.xd{left:232.986655pt;}
.x1a{left:278.306655pt;}
.x7{left:282.466655pt;}
.xe{left:392.226655pt;}
.x25{left:397.986655pt;}
.x16{left:399.106667pt;}
.x9{left:401.346655pt;}
.x1e{left:434.653322pt;}
.x19{left:453.533333pt;}
.x1f{left:468.093322pt;}
.x8{left:488.253322pt;}
.xa{left:527.933322pt;}
.x24{left:539.933322pt;}
.x22{left:552.573322pt;}
.x20{left:578.173322pt;}
.x4{left:582.173322pt;}
.x21{left:585.373322pt;}
.xc{left:587.453322pt;}
.x5{left:591.493322pt;}
.x26{left:617.733322pt;}
.x11{left:637.573322pt;}
.xf{left:699.333322pt;}
.xb{left:720.133322pt;}
.x2{left:728.133333pt;}
}




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