
    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_fbe2df44f2373ce02deb67f2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ce3c7b2c40d1f71f33ecd2a8.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f46f202d2173d42fc419edb3.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fa75ed6b78503cc7bffc2e7a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_f37ec9667258ebf21534502d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.058105;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_607f281592b38a33396003c6.woff')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_d99abed53a06fe42bfdefc9c.woff')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_d49a8aa2e5f7f7cb598ae3f3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_cafce5fdf6e1330216e61c0d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.880371;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v4{vertical-align:-91.440000px;}
.v1{vertical-align:-83.520000px;}
.v2{vertical-align:-9.360001px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.ls1e{letter-spacing:-1.008000px;}
.ls42{letter-spacing:-0.936000px;}
.ls2d{letter-spacing:-0.720000px;}
.ls43{letter-spacing:-0.576000px;}
.ls41{letter-spacing:-0.504000px;}
.ls3b{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.360000px;}
.ls3c{letter-spacing:-0.305400px;}
.ls3a{letter-spacing:-0.262200px;}
.ls1d{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.169800px;}
.ls31{letter-spacing:-0.158400px;}
.ls27{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.072000px;}
.ls2e{letter-spacing:0.109200px;}
.ls1b{letter-spacing:0.120000px;}
.ls30{letter-spacing:0.123600px;}
.ls2{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls32{letter-spacing:0.262200px;}
.ls2b{letter-spacing:0.305280px;}
.ls23{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.396000px;}
.ls6{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.720000px;}
.ls1f{letter-spacing:1.440000px;}
.ls20{letter-spacing:1.560000px;}
.ls25{letter-spacing:2.160000px;}
.lsa{letter-spacing:2.880000px;}
.lsd{letter-spacing:3.600000px;}
.ls28{letter-spacing:4.320000px;}
.ls22{letter-spacing:5.040000px;}
.ls24{letter-spacing:5.760000px;}
.lsb{letter-spacing:6.480000px;}
.ls11{letter-spacing:7.200000px;}
.ls18{letter-spacing:7.920000px;}
.ls3f{letter-spacing:10.080000px;}
.ls36{letter-spacing:10.800000px;}
.ls16{letter-spacing:11.520000px;}
.lsc{letter-spacing:12.240000px;}
.ls21{letter-spacing:13.680000px;}
.ls14{letter-spacing:14.400000px;}
.ls37{letter-spacing:15.840000px;}
.ls2a{letter-spacing:16.560000px;}
.lsf{letter-spacing:18.000000px;}
.ls34{letter-spacing:18.720000px;}
.ls12{letter-spacing:19.440000px;}
.ls33{letter-spacing:20.160000px;}
.ls26{letter-spacing:23.760000px;}
.ls2c{letter-spacing:24.480000px;}
.ls39{letter-spacing:25.200000px;}
.ls44{letter-spacing:25.920000px;}
.ls38{letter-spacing:26.640000px;}
.ls1a{letter-spacing:27.360000px;}
.ls15{letter-spacing:28.080000px;}
.ls17{letter-spacing:33.816000px;}
.ls3e{letter-spacing:34.560000px;}
.ls10{letter-spacing:38.340000px;}
.ls29{letter-spacing:39.600000px;}
.ls5{letter-spacing:42.480000px;}
.lse{letter-spacing:45.540000px;}
.ls35{letter-spacing:61.176000px;}
.ls19{letter-spacing:294.480000px;}
.ls40{letter-spacing:1174.476000px;}
.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;}
}
.ws5{word-spacing:-18.504000px;}
.ws8{word-spacing:-18.360000px;}
.wsa{word-spacing:-18.216000px;}
.ws19{word-spacing:-18.144000px;}
.ws17{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws16{word-spacing:-17.496000px;}
.ws18{word-spacing:-17.064000px;}
.ws14{word-spacing:-16.822200px;}
.wse{word-spacing:-16.683600px;}
.wsb{word-spacing:-16.669200px;}
.wsc{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.488000px;}
.wsf{word-spacing:-16.401600px;}
.wsd{word-spacing:-16.390200px;}
.ws11{word-spacing:-16.297800px;}
.ws13{word-spacing:-16.254600px;}
.ws12{word-spacing:-16.102200px;}
.ws2{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws10{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._33{margin-left:-10.486560px;}
._21{margin-left:-8.446560px;}
._2{margin-left:-7.056000px;}
._17{margin-left:-5.935200px;}
._5{margin-left:-4.484640px;}
._4{margin-left:-2.844000px;}
._3{margin-left:-1.080000px;}
._0{width:1.208640px;}
._f{width:2.278560px;}
._11{width:3.471360px;}
._10{width:4.608000px;}
._15{width:5.904000px;}
._16{width:7.119360px;}
._1e{width:8.144640px;}
._e{width:9.972000px;}
._d{width:10.980000px;}
._12{width:12.600000px;}
._13{width:13.608000px;}
._14{width:14.703360px;}
._a{width:16.416000px;}
._1c{width:19.419360px;}
._24{width:20.677920px;}
._2a{width:21.764160px;}
._28{width:22.887360px;}
._1a{width:24.279360px;}
._19{width:26.249280px;}
._8{width:27.843360px;}
._9{width:28.964640px;}
._c{width:30.543360px;}
._b{width:31.824000px;}
._26{width:32.847360px;}
._25{width:33.912000px;}
._2c{width:34.920000px;}
._18{width:36.576000px;}
._23{width:37.719360px;}
._22{width:39.075360px;}
._1d{width:40.476000px;}
._7{width:41.784000px;}
._6{width:42.888000px;}
._1b{width:43.947360px;}
._1f{width:45.442080px;}
._2b{width:46.501920px;}
._32{width:50.148000px;}
._31{width:54.375360px;}
._2f{width:55.512000px;}
._2e{width:57.096000px;}
._2d{width:60.768000px;}
._29{width:61.920000px;}
._30{width:64.080000px;}
._27{width:81.123360px;}
._20{width:84.312000px;}
._36{width:97.392000px;}
._37{width:99.303360px;}
._34{width:116.928000px;}
._35{width:118.380000px;}
._1{width:1083.154560px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs3{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y105{bottom:1.980000px;}
.y106{bottom:3.960000px;}
.y9{bottom:4.500000px;}
.y110{bottom:5.940000px;}
.y9f{bottom:6.120000px;}
.yd1{bottom:6.300000px;}
.y9c{bottom:6.480000px;}
.y9b{bottom:6.660000px;}
.y3{bottom:7.740000px;}
.y109{bottom:8.460000px;}
.y108{bottom:9.900000px;}
.y13e{bottom:10.080000px;}
.y115{bottom:10.800000px;}
.y112{bottom:15.300000px;}
.y104{bottom:21.420000px;}
.y107{bottom:22.680000px;}
.y10f{bottom:24.840000px;}
.y8{bottom:25.200000px;}
.y114{bottom:25.380000px;}
.y2{bottom:26.820000px;}
.y9e{bottom:27.000000px;}
.yd5{bottom:27.180000px;}
.ycf{bottom:28.440000px;}
.y99{bottom:28.620000px;}
.y5{bottom:29.016000px;}
.y113{bottom:29.160000px;}
.y13d{bottom:30.780000px;}
.y117{bottom:31.320000px;}
.y111{bottom:34.380000px;}
.ya2{bottom:37.440000px;}
.ycd{bottom:38.160000px;}
.y10b{bottom:40.500000px;}
.y10e{bottom:43.740000px;}
.y103{bottom:45.000000px;}
.y10a{bottom:46.980000px;}
.y10c{bottom:47.340000px;}
.y97{bottom:48.420000px;}
.y68{bottom:90.036000px;}
.y91{bottom:90.576000px;}
.y38{bottom:95.616000px;}
.y13b{bottom:101.556000px;}
.y76{bottom:101.916000px;}
.ycb{bottom:103.356000px;}
.ye3{bottom:105.696000px;}
.y90{bottom:107.676000px;}
.yfc{bottom:109.296000px;}
.y67{bottom:112.896000px;}
.y8f{bottom:117.756000px;}
.y37{bottom:118.296000px;}
.yb9{bottom:118.656000px;}
.yd4{bottom:119.016000px;}
.y13a{bottom:124.236000px;}
.y75{bottom:124.776000px;}
.ye2{bottom:128.556000px;}
.yfb{bottom:132.156000px;}
.y138{bottom:133.776000px;}
.y66{bottom:135.576000px;}
.yb8{bottom:137.556000px;}
.y36{bottom:141.156000px;}
.y139{bottom:147.096000px;}
.y74{bottom:147.456000px;}
.ye1{bottom:151.230000px;}
.yfa{bottom:154.830000px;}
.y65{bottom:155.370000px;}
.y137{bottom:156.450000px;}
.yb7{bottom:158.610000px;}
.yb2{bottom:161.130000px;}
.yd7{bottom:163.110000px;}
.y35{bottom:163.830000px;}
.y64{bottom:169.770000px;}
.y73{bottom:170.310000px;}
.ye0{bottom:174.090000px;}
.yb6{bottom:175.530000px;}
.yf9{bottom:177.690000px;}
.y136{bottom:179.310000px;}
.yb1{bottom:183.990000px;}
.yd6{bottom:185.250000px;}
.y34{bottom:186.690000px;}
.y63{bottom:192.630000px;}
.y72{bottom:192.990000px;}
.ydf{bottom:196.770000px;}
.yf8{bottom:200.370000px;}
.y135{bottom:201.990000px;}
.yb0{bottom:206.670000px;}
.ycc{bottom:207.210000px;}
.y33{bottom:209.370000px;}
.y62{bottom:215.310000px;}
.y71{bottom:215.850000px;}
.yde{bottom:219.450000px;}
.yf7{bottom:223.230000px;}
.y134{bottom:224.850000px;}
.yd3{bottom:229.350000px;}
.yaf{bottom:229.530000px;}
.y32{bottom:232.230000px;}
.y61{bottom:238.170000px;}
.y70{bottom:238.530000px;}
.ydd{bottom:241.950000px;}
.yf6{bottom:245.910000px;}
.y133{bottom:247.530000px;}
.yd2{bottom:251.310000px;}
.yae{bottom:252.210000px;}
.y31{bottom:254.910000px;}
.y60{bottom:260.850000px;}
.y6f{bottom:261.390000px;}
.ydc{bottom:262.830000px;}
.yf5{bottom:268.950000px;}
.y132{bottom:270.390000px;}
.yce{bottom:273.495000px;}
.yad{bottom:275.115000px;}
.y30{bottom:277.815000px;}
.y5f{bottom:283.755000px;}
.y6e{bottom:284.115000px;}
.yf4{bottom:292.035000px;}
.y131{bottom:293.115000px;}
.yd0{bottom:295.455000px;}
.yac{bottom:297.795000px;}
.y2f{bottom:300.495000px;}
.y5e{bottom:306.435000px;}
.y6d{bottom:306.975000px;}
.yf3{bottom:314.715000px;}
.y130{bottom:315.975000px;}
.yca{bottom:319.935000px;}
.yab{bottom:320.655000px;}
.y2e{bottom:323.355000px;}
.y5d{bottom:329.115000px;}
.y6c{bottom:329.655000px;}
.yc9{bottom:331.995000px;}
.yf2{bottom:337.575000px;}
.y12f{bottom:338.655000px;}
.yaa{bottom:343.335000px;}
.y2d{bottom:346.035000px;}
.yc8{bottom:350.895000px;}
.y5c{bottom:351.975000px;}
.yf1{bottom:360.615000px;}
.y12e{bottom:361.515000px;}
.ya9{bottom:366.195000px;}
.y2c{bottom:368.895000px;}
.yc7{bottom:369.255000px;}
.y6b{bottom:373.035000px;}
.y5b{bottom:374.655000px;}
.yf0{bottom:383.475000px;}
.yc6{bottom:383.655000px;}
.y12d{bottom:384.195000px;}
.ya8{bottom:388.875000px;}
.y2b{bottom:391.575000px;}
.y6a{bottom:393.915000px;}
.y5a{bottom:397.515000px;}
.yef{bottom:406.335000px;}
.yc5{bottom:406.515000px;}
.y12c{bottom:407.055000px;}
.y69{bottom:408.855000px;}
.ya7{bottom:411.735000px;}
.y2a{bottom:414.435000px;}
.y59{bottom:420.195000px;}
.yee{bottom:429.015000px;}
.yc4{bottom:429.195000px;}
.y12b{bottom:429.735000px;}
.ya6{bottom:434.415000px;}
.y29{bottom:437.115000px;}
.y58{bottom:443.055000px;}
.ya1{bottom:451.515000px;}
.yed{bottom:451.875000px;}
.yc3{bottom:452.055000px;}
.y12a{bottom:452.595000px;}
.y28{bottom:459.975000px;}
.y57{bottom:465.735000px;}
.ya5{bottom:473.655000px;}
.yec{bottom:474.555000px;}
.yc2{bottom:474.735000px;}
.y129{bottom:475.275000px;}
.y27{bottom:482.655000px;}
.y56{bottom:488.595000px;}
.ya4{bottom:495.615000px;}
.yeb{bottom:497.415000px;}
.yc1{bottom:497.595000px;}
.y128{bottom:498.135000px;}
.y26{bottom:505.515000px;}
.y55{bottom:511.275000px;}
.yea{bottom:520.095000px;}
.yc0{bottom:520.275000px;}
.y127{bottom:520.815000px;}
.y25{bottom:528.195000px;}
.y54{bottom:534.135000px;}
.ya3{bottom:538.095000px;}
.ye9{bottom:542.955000px;}
.ybf{bottom:543.135000px;}
.y126{bottom:543.675000px;}
.y24{bottom:551.055000px;}
.y8e{bottom:553.395000px;}
.y53{bottom:556.845000px;}
.y96{bottom:560.265000px;}
.ybe{bottom:565.665000px;}
.y125{bottom:566.385000px;}
.y8d{bottom:567.825000px;}
.y23{bottom:573.765000px;}
.y52{bottom:579.705000px;}
.ya0{bottom:582.225000px;}
.ybd{bottom:586.365000px;}
.ye8{bottom:588.525000px;}
.y124{bottom:589.245000px;}
.y8c{bottom:590.685000px;}
.y22{bottom:596.625000px;}
.y51{bottom:602.385000px;}
.y9d{bottom:604.365000px;}
.ybc{bottom:607.245000px;}
.ye7{bottom:611.025000px;}
.y123{bottom:611.925000px;}
.y8b{bottom:613.365000px;}
.y149{bottom:613.545000px;}
.y21{bottom:619.305000px;}
.ybb{bottom:624.165000px;}
.y50{bottom:625.245000px;}
.ye6{bottom:631.725000px;}
.y122{bottom:634.605000px;}
.y8a{bottom:636.225000px;}
.yb5{bottom:640.185000px;}
.y20{bottom:642.165000px;}
.y98{bottom:646.845000px;}
.y4f{bottom:647.925000px;}
.ye5{bottom:652.605000px;}
.y121{bottom:657.465000px;}
.y89{bottom:658.905000px;}
.y148{bottom:659.085000px;}
.yb4{bottom:660.705000px;}
.y1f{bottom:664.845000px;}
.y9a{bottom:668.805000px;}
.ye4{bottom:669.525000px;}
.y4e{bottom:670.785000px;}
.y147{bottom:679.965000px;}
.y120{bottom:680.145000px;}
.y88{bottom:681.765000px;}
.y1e{bottom:687.705000px;}
.y4d{bottom:693.465000px;}
.y95{bottom:694.185000px;}
.yb3{bottom:698.505000px;}
.y146{bottom:702.465000px;}
.y11f{bottom:702.645000px;}
.ydb{bottom:703.005000px;}
.y87{bottom:704.445000px;}
.y94{bottom:708.405000px;}
.y1d{bottom:710.385000px;}
.y4c{bottom:716.325000px;}
.y11b{bottom:718.305000px;}
.y145{bottom:723.345000px;}
.yda{bottom:723.885000px;}
.y86{bottom:727.305000px;}
.y93{bottom:729.285000px;}
.y1c{bottom:733.245000px;}
.y4b{bottom:739.005000px;}
.y11e{bottom:740.265000px;}
.y144{bottom:744.045000px;}
.yd9{bottom:744.765000px;}
.y92{bottom:747.285000px;}
.y85{bottom:749.985000px;}
.y1b{bottom:754.125000px;}
.yd8{bottom:761.685000px;}
.y4a{bottom:761.865000px;}
.y11d{bottom:762.405000px;}
.y143{bottom:764.745000px;}
.y84{bottom:772.845000px;}
.y1a{bottom:774.825000px;}
.y11c{bottom:784.365000px;}
.y49{bottom:784.545000px;}
.y142{bottom:785.445000px;}
.y19{bottom:795.525000px;}
.y116{bottom:806.505000px;}
.y48{bottom:807.405000px;}
.y141{bottom:808.125000px;}
.y18{bottom:816.225000px;}
.y83{bottom:818.385000px;}
.y11a{bottom:828.465000px;}
.y47{bottom:830.085000px;}
.y140{bottom:830.805000px;}
.y17{bottom:836.925000px;}
.y82{bottom:841.110000px;}
.y119{bottom:850.650000px;}
.y13f{bottom:851.730000px;}
.y46{bottom:852.990000px;}
.y16{bottom:857.310000px;}
.y81{bottom:863.970000px;}
.y13c{bottom:867.930000px;}
.y118{bottom:872.610000px;}
.y45{bottom:875.670000px;}
.y15{bottom:878.010000px;}
.y80{bottom:886.650000px;}
.y102{bottom:894.750000px;}
.y44{bottom:898.530000px;}
.y14{bottom:898.710000px;}
.y7f{bottom:909.330000px;}
.y13{bottom:919.410000px;}
.y43{bottom:921.210000px;}
.y7e{bottom:929.130000px;}
.y12{bottom:940.470000px;}
.y7d{bottom:943.530000px;}
.y42{bottom:944.070000px;}
.y10d{bottom:957.030000px;}
.y11{bottom:961.170000px;}
.y7c{bottom:966.390000px;}
.y41{bottom:966.750000px;}
.y10{bottom:981.870000px;}
.y7b{bottom:989.070000px;}
.y40{bottom:989.610000px;}
.yf{bottom:1002.570000px;}
.y7a{bottom:1011.930000px;}
.y3f{bottom:1012.290000px;}
.y101{bottom:1020.570000px;}
.ye{bottom:1022.910000px;}
.y100{bottom:1032.810000px;}
.y79{bottom:1034.610000px;}
.y3e{bottom:1035.150000px;}
.yba{bottom:1036.770000px;}
.yd{bottom:1043.610000px;}
.yff{bottom:1051.710000px;}
.y78{bottom:1057.470000px;}
.y3d{bottom:1057.830000px;}
.yc{bottom:1064.310000px;}
.yfe{bottom:1070.610000px;}
.y77{bottom:1080.510000px;}
.y3c{bottom:1080.690000px;}
.yb{bottom:1085.010000px;}
.yfd{bottom:1088.970000px;}
.y3b{bottom:1103.370000px;}
.ya{bottom:1106.070000px;}
.y7{bottom:1122.300000px;}
.y3a{bottom:1126.260000px;}
.y39{bottom:1148.940000px;}
.y6{bottom:1164.060000px;}
.y4{bottom:1171.800000px;}
.y1{bottom:1191.420000px;}
.h6{height:5.653125px;}
.h17{height:21.225000px;}
.h12{height:21.240000px;}
.h22{height:21.262500px;}
.h18{height:21.405000px;}
.h10{height:21.420000px;}
.h15{height:21.450000px;}
.h1a{height:21.456000px;}
.hb{height:35.332031px;}
.h7{height:41.400000px;}
.h16{height:41.745000px;}
.h13{height:41.760000px;}
.h2{height:42.660000px;}
.hf{height:43.380000px;}
.h1d{height:45.992812px;}
.h24{height:46.965000px;}
.ha{height:50.027344px;}
.h3{height:58.621992px;}
.h4{height:58.651172px;}
.h1e{height:60.465000px;}
.h1f{height:61.545000px;}
.h11{height:64.978594px;}
.hd{height:65.010937px;}
.h9{height:70.628906px;}
.h5{height:70.664062px;}
.h20{height:71.204766px;}
.h8{height:72.562500px;}
.hc{height:82.676953px;}
.h23{height:87.300000px;}
.h21{height:87.322500px;}
.h1b{height:87.480000px;}
.h14{height:108.030000px;}
.h19{height:109.656000px;}
.h1c{height:122.745000px;}
.he{height:129.960000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:29.374500px;}
.w15{width:36.034500px;}
.wf{width:36.036000px;}
.w1e{width:50.025000px;}
.wa{width:53.265000px;}
.w8{width:53.280000px;}
.wb{width:54.525000px;}
.w11{width:54.540000px;}
.w1a{width:55.980000px;}
.w17{width:56.145000px;}
.w13{width:56.340000px;}
.wd{width:56.505000px;}
.w9{width:58.536000px;}
.wc{width:58.701000px;}
.w12{width:58.896000px;}
.w14{width:66.600000px;}
.w16{width:67.129500px;}
.w19{width:67.140000px;}
.w18{width:67.161000px;}
.w1b{width:67.176000px;}
.w1f{width:67.305000px;}
.w20{width:67.341000px;}
.w21{width:70.185000px;}
.we{width:93.945000px;}
.w1c{width:134.625000px;}
.w1d{width:137.541000px;}
.w23{width:244.290000px;}
.w22{width:246.493500px;}
.w24{width:248.235000px;}
.w3{width:260.655000px;}
.w7{width:280.819500px;}
.w10{width:301.350000px;}
.w5{width:369.435000px;}
.w4{width:369.613500px;}
.w2{width:453.883500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.918500px;}
.x6{left:9.885000px;}
.x25{left:11.520000px;}
.x2d{left:12.765000px;}
.x2c{left:14.760000px;}
.x3c{left:16.200000px;}
.x2f{left:17.820000px;}
.x4f{left:18.885000px;}
.x22{left:23.434500px;}
.x2{left:27.934500px;}
.x46{left:29.505000px;}
.x50{left:30.585000px;}
.x2e{left:32.580000px;}
.x4a{left:33.840000px;}
.x30{left:36.540000px;}
.x42{left:39.403500px;}
.x54{left:40.860000px;}
.x44{left:43.545000px;}
.x4d{left:45.345000px;}
.x47{left:48.990000px;}
.xc{left:50.250000px;}
.x58{left:65.865000px;}
.xa{left:77.041500px;}
.x5{left:79.185000px;}
.x19{left:84.960000px;}
.x1{left:87.661500px;}
.x14{left:99.216000px;}
.x5a{left:104.436000px;}
.x23{left:106.426500px;}
.x35{left:113.076000px;}
.x10{left:121.176000px;}
.x7{left:127.476000px;}
.x3{left:138.988500px;}
.x59{left:144.930000px;}
.x8{left:153.570000px;}
.xd{left:156.090000px;}
.x17{left:160.770000px;}
.x40{left:163.470000px;}
.x11{left:173.010000px;}
.x12{left:174.450000px;}
.x43{left:180.225000px;}
.x16{left:184.170000px;}
.x15{left:195.330000px;}
.x18{left:205.230000px;}
.x13{left:215.490000px;}
.xe{left:229.530000px;}
.x45{left:236.385000px;}
.x21{left:271.470000px;}
.xf{left:292.755000px;}
.x48{left:303.555000px;}
.x41{left:314.175000px;}
.x56{left:323.535000px;}
.x1a{left:334.515000px;}
.x1d{left:364.395000px;}
.x49{left:370.695000px;}
.x24{left:387.255000px;}
.x36{left:414.435000px;}
.x4b{left:426.675000px;}
.x55{left:437.295000px;}
.x26{left:440.535000px;}
.x9{left:446.475000px;}
.x1c{left:467.715000px;}
.x4c{left:493.860000px;}
.x27{left:499.080000px;}
.x37{left:526.245000px;}
.x4{left:544.800000px;}
.x28{left:552.360000px;}
.x52{left:561.180000px;}
.x57{left:567.840000px;}
.x38{left:579.525000px;}
.x29{left:606.900000px;}
.x4e{left:628.500000px;}
.x39{left:634.065000px;}
.x2a{left:665.610000px;}
.x1e{left:685.050000px;}
.x3a{left:692.970000px;}
.x53{left:695.850000px;}
.x3f{left:713.670000px;}
.x2b{left:722.130000px;}
.x1b{left:724.470000px;}
.x34{left:732.390000px;}
.x20{left:736.530000px;}
.x3b{left:749.490000px;}
.x32{left:753.090000px;}
.x31{left:759.210000px;}
.x51{left:766.050000px;}
.x3d{left:781.710000px;}
.x3e{left:786.930000px;}
.x33{left:805.290000px;}
.x1f{left:807.990000px;}
@media print{
.v4{vertical-align:-81.280000pt;}
.v1{vertical-align:-74.240000pt;}
.v2{vertical-align:-8.320001pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.ls1e{letter-spacing:-0.896000pt;}
.ls42{letter-spacing:-0.832000pt;}
.ls2d{letter-spacing:-0.640000pt;}
.ls43{letter-spacing:-0.512000pt;}
.ls41{letter-spacing:-0.448000pt;}
.ls3b{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls3c{letter-spacing:-0.271467pt;}
.ls3a{letter-spacing:-0.233067pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.150933pt;}
.ls31{letter-spacing:-0.140800pt;}
.ls27{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.064000pt;}
.ls2e{letter-spacing:0.097067pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls30{letter-spacing:0.109867pt;}
.ls2{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls32{letter-spacing:0.233067pt;}
.ls2b{letter-spacing:0.271360pt;}
.ls23{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.352000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:1.280000pt;}
.ls20{letter-spacing:1.386667pt;}
.ls25{letter-spacing:1.920000pt;}
.lsa{letter-spacing:2.560000pt;}
.lsd{letter-spacing:3.200000pt;}
.ls28{letter-spacing:3.840000pt;}
.ls22{letter-spacing:4.480000pt;}
.ls24{letter-spacing:5.120000pt;}
.lsb{letter-spacing:5.760000pt;}
.ls11{letter-spacing:6.400000pt;}
.ls18{letter-spacing:7.040000pt;}
.ls3f{letter-spacing:8.960000pt;}
.ls36{letter-spacing:9.600000pt;}
.ls16{letter-spacing:10.240000pt;}
.lsc{letter-spacing:10.880000pt;}
.ls21{letter-spacing:12.160000pt;}
.ls14{letter-spacing:12.800000pt;}
.ls37{letter-spacing:14.080000pt;}
.ls2a{letter-spacing:14.720000pt;}
.lsf{letter-spacing:16.000000pt;}
.ls34{letter-spacing:16.640000pt;}
.ls12{letter-spacing:17.280000pt;}
.ls33{letter-spacing:17.920000pt;}
.ls26{letter-spacing:21.120000pt;}
.ls2c{letter-spacing:21.760000pt;}
.ls39{letter-spacing:22.400000pt;}
.ls44{letter-spacing:23.040000pt;}
.ls38{letter-spacing:23.680000pt;}
.ls1a{letter-spacing:24.320000pt;}
.ls15{letter-spacing:24.960000pt;}
.ls17{letter-spacing:30.058667pt;}
.ls3e{letter-spacing:30.720000pt;}
.ls10{letter-spacing:34.080000pt;}
.ls29{letter-spacing:35.200000pt;}
.ls5{letter-spacing:37.760000pt;}
.lse{letter-spacing:40.480000pt;}
.ls35{letter-spacing:54.378667pt;}
.ls19{letter-spacing:261.760000pt;}
.ls40{letter-spacing:1043.978667pt;}
.ws5{word-spacing:-16.448000pt;}
.ws8{word-spacing:-16.320000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws19{word-spacing:-16.128000pt;}
.ws17{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws16{word-spacing:-15.552000pt;}
.ws18{word-spacing:-15.168000pt;}
.ws14{word-spacing:-14.953067pt;}
.wse{word-spacing:-14.829867pt;}
.wsb{word-spacing:-14.817067pt;}
.wsc{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.656000pt;}
.wsf{word-spacing:-14.579200pt;}
.wsd{word-spacing:-14.569067pt;}
.ws11{word-spacing:-14.486933pt;}
.ws13{word-spacing:-14.448533pt;}
.ws12{word-spacing:-14.313067pt;}
.ws2{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws10{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._33{margin-left:-9.321387pt;}
._21{margin-left:-7.508053pt;}
._2{margin-left:-6.272000pt;}
._17{margin-left:-5.275733pt;}
._5{margin-left:-3.986347pt;}
._4{margin-left:-2.528000pt;}
._3{margin-left:-0.960000pt;}
._0{width:1.074347pt;}
._f{width:2.025387pt;}
._11{width:3.085653pt;}
._10{width:4.096000pt;}
._15{width:5.248000pt;}
._16{width:6.328320pt;}
._1e{width:7.239680pt;}
._e{width:8.864000pt;}
._d{width:9.760000pt;}
._12{width:11.200000pt;}
._13{width:12.096000pt;}
._14{width:13.069653pt;}
._a{width:14.592000pt;}
._1c{width:17.261653pt;}
._24{width:18.380373pt;}
._2a{width:19.345920pt;}
._28{width:20.344320pt;}
._1a{width:21.581653pt;}
._19{width:23.332693pt;}
._8{width:24.749653pt;}
._9{width:25.746347pt;}
._c{width:27.149653pt;}
._b{width:28.288000pt;}
._26{width:29.197653pt;}
._25{width:30.144000pt;}
._2c{width:31.040000pt;}
._18{width:32.512000pt;}
._23{width:33.528320pt;}
._22{width:34.733653pt;}
._1d{width:35.978667pt;}
._7{width:37.141333pt;}
._6{width:38.122667pt;}
._1b{width:39.064320pt;}
._1f{width:40.392960pt;}
._2b{width:41.335040pt;}
._32{width:44.576000pt;}
._31{width:48.333653pt;}
._2f{width:49.344000pt;}
._2e{width:50.752000pt;}
._2d{width:54.016000pt;}
._29{width:55.040000pt;}
._30{width:56.960000pt;}
._27{width:72.109653pt;}
._20{width:74.944000pt;}
._36{width:86.570667pt;}
._37{width:88.269653pt;}
._34{width:103.936000pt;}
._35{width:105.226667pt;}
._1{width:962.804053pt;}
.fs2{font-size:5.120000pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y105{bottom:1.760000pt;}
.y106{bottom:3.520000pt;}
.y9{bottom:4.000000pt;}
.y110{bottom:5.280000pt;}
.y9f{bottom:5.440000pt;}
.yd1{bottom:5.600000pt;}
.y9c{bottom:5.760000pt;}
.y9b{bottom:5.920000pt;}
.y3{bottom:6.880000pt;}
.y109{bottom:7.520000pt;}
.y108{bottom:8.800000pt;}
.y13e{bottom:8.960000pt;}
.y115{bottom:9.600000pt;}
.y112{bottom:13.600000pt;}
.y104{bottom:19.040000pt;}
.y107{bottom:20.160000pt;}
.y10f{bottom:22.080000pt;}
.y8{bottom:22.400000pt;}
.y114{bottom:22.560000pt;}
.y2{bottom:23.840000pt;}
.y9e{bottom:24.000000pt;}
.yd5{bottom:24.160000pt;}
.ycf{bottom:25.280000pt;}
.y99{bottom:25.440000pt;}
.y5{bottom:25.792000pt;}
.y113{bottom:25.920000pt;}
.y13d{bottom:27.360000pt;}
.y117{bottom:27.840000pt;}
.y111{bottom:30.560000pt;}
.ya2{bottom:33.280000pt;}
.ycd{bottom:33.920000pt;}
.y10b{bottom:36.000000pt;}
.y10e{bottom:38.880000pt;}
.y103{bottom:40.000000pt;}
.y10a{bottom:41.760000pt;}
.y10c{bottom:42.080000pt;}
.y97{bottom:43.040000pt;}
.y68{bottom:80.032000pt;}
.y91{bottom:80.512000pt;}
.y38{bottom:84.992000pt;}
.y13b{bottom:90.272000pt;}
.y76{bottom:90.592000pt;}
.ycb{bottom:91.872000pt;}
.ye3{bottom:93.952000pt;}
.y90{bottom:95.712000pt;}
.yfc{bottom:97.152000pt;}
.y67{bottom:100.352000pt;}
.y8f{bottom:104.672000pt;}
.y37{bottom:105.152000pt;}
.yb9{bottom:105.472000pt;}
.yd4{bottom:105.792000pt;}
.y13a{bottom:110.432000pt;}
.y75{bottom:110.912000pt;}
.ye2{bottom:114.272000pt;}
.yfb{bottom:117.472000pt;}
.y138{bottom:118.912000pt;}
.y66{bottom:120.512000pt;}
.yb8{bottom:122.272000pt;}
.y36{bottom:125.472000pt;}
.y139{bottom:130.752000pt;}
.y74{bottom:131.072000pt;}
.ye1{bottom:134.426667pt;}
.yfa{bottom:137.626667pt;}
.y65{bottom:138.106667pt;}
.y137{bottom:139.066667pt;}
.yb7{bottom:140.986667pt;}
.yb2{bottom:143.226667pt;}
.yd7{bottom:144.986667pt;}
.y35{bottom:145.626667pt;}
.y64{bottom:150.906667pt;}
.y73{bottom:151.386667pt;}
.ye0{bottom:154.746667pt;}
.yb6{bottom:156.026667pt;}
.yf9{bottom:157.946667pt;}
.y136{bottom:159.386667pt;}
.yb1{bottom:163.546667pt;}
.yd6{bottom:164.666667pt;}
.y34{bottom:165.946667pt;}
.y63{bottom:171.226667pt;}
.y72{bottom:171.546667pt;}
.ydf{bottom:174.906667pt;}
.yf8{bottom:178.106667pt;}
.y135{bottom:179.546667pt;}
.yb0{bottom:183.706667pt;}
.ycc{bottom:184.186667pt;}
.y33{bottom:186.106667pt;}
.y62{bottom:191.386667pt;}
.y71{bottom:191.866667pt;}
.yde{bottom:195.066667pt;}
.yf7{bottom:198.426667pt;}
.y134{bottom:199.866667pt;}
.yd3{bottom:203.866667pt;}
.yaf{bottom:204.026667pt;}
.y32{bottom:206.426667pt;}
.y61{bottom:211.706667pt;}
.y70{bottom:212.026667pt;}
.ydd{bottom:215.066667pt;}
.yf6{bottom:218.586667pt;}
.y133{bottom:220.026667pt;}
.yd2{bottom:223.386667pt;}
.yae{bottom:224.186667pt;}
.y31{bottom:226.586667pt;}
.y60{bottom:231.866667pt;}
.y6f{bottom:232.346667pt;}
.ydc{bottom:233.626667pt;}
.yf5{bottom:239.066667pt;}
.y132{bottom:240.346667pt;}
.yce{bottom:243.106667pt;}
.yad{bottom:244.546667pt;}
.y30{bottom:246.946667pt;}
.y5f{bottom:252.226667pt;}
.y6e{bottom:252.546667pt;}
.yf4{bottom:259.586667pt;}
.y131{bottom:260.546667pt;}
.yd0{bottom:262.626667pt;}
.yac{bottom:264.706667pt;}
.y2f{bottom:267.106667pt;}
.y5e{bottom:272.386667pt;}
.y6d{bottom:272.866667pt;}
.yf3{bottom:279.746667pt;}
.y130{bottom:280.866667pt;}
.yca{bottom:284.386667pt;}
.yab{bottom:285.026667pt;}
.y2e{bottom:287.426667pt;}
.y5d{bottom:292.546667pt;}
.y6c{bottom:293.026667pt;}
.yc9{bottom:295.106667pt;}
.yf2{bottom:300.066667pt;}
.y12f{bottom:301.026667pt;}
.yaa{bottom:305.186667pt;}
.y2d{bottom:307.586667pt;}
.yc8{bottom:311.906667pt;}
.y5c{bottom:312.866667pt;}
.yf1{bottom:320.546667pt;}
.y12e{bottom:321.346667pt;}
.ya9{bottom:325.506667pt;}
.y2c{bottom:327.906667pt;}
.yc7{bottom:328.226667pt;}
.y6b{bottom:331.586667pt;}
.y5b{bottom:333.026667pt;}
.yf0{bottom:340.866667pt;}
.yc6{bottom:341.026667pt;}
.y12d{bottom:341.506667pt;}
.ya8{bottom:345.666667pt;}
.y2b{bottom:348.066667pt;}
.y6a{bottom:350.146667pt;}
.y5a{bottom:353.346667pt;}
.yef{bottom:361.186667pt;}
.yc5{bottom:361.346667pt;}
.y12c{bottom:361.826667pt;}
.y69{bottom:363.426667pt;}
.ya7{bottom:365.986667pt;}
.y2a{bottom:368.386667pt;}
.y59{bottom:373.506667pt;}
.yee{bottom:381.346667pt;}
.yc4{bottom:381.506667pt;}
.y12b{bottom:381.986667pt;}
.ya6{bottom:386.146667pt;}
.y29{bottom:388.546667pt;}
.y58{bottom:393.826667pt;}
.ya1{bottom:401.346667pt;}
.yed{bottom:401.666667pt;}
.yc3{bottom:401.826667pt;}
.y12a{bottom:402.306667pt;}
.y28{bottom:408.866667pt;}
.y57{bottom:413.986667pt;}
.ya5{bottom:421.026667pt;}
.yec{bottom:421.826667pt;}
.yc2{bottom:421.986667pt;}
.y129{bottom:422.466667pt;}
.y27{bottom:429.026667pt;}
.y56{bottom:434.306667pt;}
.ya4{bottom:440.546667pt;}
.yeb{bottom:442.146667pt;}
.yc1{bottom:442.306667pt;}
.y128{bottom:442.786667pt;}
.y26{bottom:449.346667pt;}
.y55{bottom:454.466667pt;}
.yea{bottom:462.306667pt;}
.yc0{bottom:462.466667pt;}
.y127{bottom:462.946667pt;}
.y25{bottom:469.506667pt;}
.y54{bottom:474.786667pt;}
.ya3{bottom:478.306667pt;}
.ye9{bottom:482.626667pt;}
.ybf{bottom:482.786667pt;}
.y126{bottom:483.266667pt;}
.y24{bottom:489.826667pt;}
.y8e{bottom:491.906667pt;}
.y53{bottom:494.973333pt;}
.y96{bottom:498.013333pt;}
.ybe{bottom:502.813333pt;}
.y125{bottom:503.453333pt;}
.y8d{bottom:504.733333pt;}
.y23{bottom:510.013333pt;}
.y52{bottom:515.293333pt;}
.ya0{bottom:517.533333pt;}
.ybd{bottom:521.213333pt;}
.ye8{bottom:523.133333pt;}
.y124{bottom:523.773333pt;}
.y8c{bottom:525.053333pt;}
.y22{bottom:530.333333pt;}
.y51{bottom:535.453333pt;}
.y9d{bottom:537.213333pt;}
.ybc{bottom:539.773333pt;}
.ye7{bottom:543.133333pt;}
.y123{bottom:543.933333pt;}
.y8b{bottom:545.213333pt;}
.y149{bottom:545.373333pt;}
.y21{bottom:550.493333pt;}
.ybb{bottom:554.813333pt;}
.y50{bottom:555.773333pt;}
.ye6{bottom:561.533333pt;}
.y122{bottom:564.093333pt;}
.y8a{bottom:565.533333pt;}
.yb5{bottom:569.053333pt;}
.y20{bottom:570.813333pt;}
.y98{bottom:574.973333pt;}
.y4f{bottom:575.933333pt;}
.ye5{bottom:580.093333pt;}
.y121{bottom:584.413333pt;}
.y89{bottom:585.693333pt;}
.y148{bottom:585.853333pt;}
.yb4{bottom:587.293333pt;}
.y1f{bottom:590.973333pt;}
.y9a{bottom:594.493333pt;}
.ye4{bottom:595.133333pt;}
.y4e{bottom:596.253333pt;}
.y147{bottom:604.413333pt;}
.y120{bottom:604.573333pt;}
.y88{bottom:606.013333pt;}
.y1e{bottom:611.293333pt;}
.y4d{bottom:616.413333pt;}
.y95{bottom:617.053333pt;}
.yb3{bottom:620.893333pt;}
.y146{bottom:624.413333pt;}
.y11f{bottom:624.573333pt;}
.ydb{bottom:624.893333pt;}
.y87{bottom:626.173333pt;}
.y94{bottom:629.693333pt;}
.y1d{bottom:631.453333pt;}
.y4c{bottom:636.733333pt;}
.y11b{bottom:638.493333pt;}
.y145{bottom:642.973333pt;}
.yda{bottom:643.453333pt;}
.y86{bottom:646.493333pt;}
.y93{bottom:648.253333pt;}
.y1c{bottom:651.773333pt;}
.y4b{bottom:656.893333pt;}
.y11e{bottom:658.013333pt;}
.y144{bottom:661.373333pt;}
.yd9{bottom:662.013333pt;}
.y92{bottom:664.253333pt;}
.y85{bottom:666.653333pt;}
.y1b{bottom:670.333333pt;}
.yd8{bottom:677.053333pt;}
.y4a{bottom:677.213333pt;}
.y11d{bottom:677.693333pt;}
.y143{bottom:679.773333pt;}
.y84{bottom:686.973333pt;}
.y1a{bottom:688.733333pt;}
.y11c{bottom:697.213333pt;}
.y49{bottom:697.373333pt;}
.y142{bottom:698.173333pt;}
.y19{bottom:707.133333pt;}
.y116{bottom:716.893333pt;}
.y48{bottom:717.693333pt;}
.y141{bottom:718.333333pt;}
.y18{bottom:725.533333pt;}
.y83{bottom:727.453333pt;}
.y11a{bottom:736.413333pt;}
.y47{bottom:737.853333pt;}
.y140{bottom:738.493333pt;}
.y17{bottom:743.933333pt;}
.y82{bottom:747.653333pt;}
.y119{bottom:756.133333pt;}
.y13f{bottom:757.093333pt;}
.y46{bottom:758.213333pt;}
.y16{bottom:762.053333pt;}
.y81{bottom:767.973333pt;}
.y13c{bottom:771.493333pt;}
.y118{bottom:775.653333pt;}
.y45{bottom:778.373333pt;}
.y15{bottom:780.453333pt;}
.y80{bottom:788.133333pt;}
.y102{bottom:795.333333pt;}
.y44{bottom:798.693333pt;}
.y14{bottom:798.853333pt;}
.y7f{bottom:808.293333pt;}
.y13{bottom:817.253333pt;}
.y43{bottom:818.853333pt;}
.y7e{bottom:825.893333pt;}
.y12{bottom:835.973333pt;}
.y7d{bottom:838.693333pt;}
.y42{bottom:839.173333pt;}
.y10d{bottom:850.693333pt;}
.y11{bottom:854.373333pt;}
.y7c{bottom:859.013333pt;}
.y41{bottom:859.333333pt;}
.y10{bottom:872.773333pt;}
.y7b{bottom:879.173333pt;}
.y40{bottom:879.653333pt;}
.yf{bottom:891.173333pt;}
.y7a{bottom:899.493333pt;}
.y3f{bottom:899.813333pt;}
.y101{bottom:907.173333pt;}
.ye{bottom:909.253333pt;}
.y100{bottom:918.053333pt;}
.y79{bottom:919.653333pt;}
.y3e{bottom:920.133333pt;}
.yba{bottom:921.573333pt;}
.yd{bottom:927.653333pt;}
.yff{bottom:934.853333pt;}
.y78{bottom:939.973333pt;}
.y3d{bottom:940.293333pt;}
.yc{bottom:946.053333pt;}
.yfe{bottom:951.653333pt;}
.y77{bottom:960.453333pt;}
.y3c{bottom:960.613333pt;}
.yb{bottom:964.453333pt;}
.yfd{bottom:967.973333pt;}
.y3b{bottom:980.773333pt;}
.ya{bottom:983.173333pt;}
.y7{bottom:997.600000pt;}
.y3a{bottom:1001.120000pt;}
.y39{bottom:1021.280000pt;}
.y6{bottom:1034.720000pt;}
.y4{bottom:1041.600000pt;}
.y1{bottom:1059.040000pt;}
.h6{height:5.025000pt;}
.h17{height:18.866667pt;}
.h12{height:18.880000pt;}
.h22{height:18.900000pt;}
.h18{height:19.026667pt;}
.h10{height:19.040000pt;}
.h15{height:19.066667pt;}
.h1a{height:19.072000pt;}
.hb{height:31.406250pt;}
.h7{height:36.800000pt;}
.h16{height:37.106667pt;}
.h13{height:37.120000pt;}
.h2{height:37.920000pt;}
.hf{height:38.560000pt;}
.h1d{height:40.882500pt;}
.h24{height:41.746667pt;}
.ha{height:44.468750pt;}
.h3{height:52.108438pt;}
.h4{height:52.134375pt;}
.h1e{height:53.746667pt;}
.h1f{height:54.706667pt;}
.h11{height:57.758750pt;}
.hd{height:57.787500pt;}
.h9{height:62.781250pt;}
.h5{height:62.812500pt;}
.h20{height:63.293125pt;}
.h8{height:64.500000pt;}
.hc{height:73.490625pt;}
.h23{height:77.600000pt;}
.h21{height:77.620000pt;}
.h1b{height:77.760000pt;}
.h14{height:96.026667pt;}
.h19{height:97.472000pt;}
.h1c{height:109.106667pt;}
.he{height:115.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:26.110667pt;}
.w15{width:32.030667pt;}
.wf{width:32.032000pt;}
.w1e{width:44.466667pt;}
.wa{width:47.346667pt;}
.w8{width:47.360000pt;}
.wb{width:48.466667pt;}
.w11{width:48.480000pt;}
.w1a{width:49.760000pt;}
.w17{width:49.906667pt;}
.w13{width:50.080000pt;}
.wd{width:50.226667pt;}
.w9{width:52.032000pt;}
.wc{width:52.178667pt;}
.w12{width:52.352000pt;}
.w14{width:59.200000pt;}
.w16{width:59.670667pt;}
.w19{width:59.680000pt;}
.w18{width:59.698667pt;}
.w1b{width:59.712000pt;}
.w1f{width:59.826667pt;}
.w20{width:59.858667pt;}
.w21{width:62.386667pt;}
.we{width:83.506667pt;}
.w1c{width:119.666667pt;}
.w1d{width:122.258667pt;}
.w23{width:217.146667pt;}
.w22{width:219.105333pt;}
.w24{width:220.653333pt;}
.w3{width:231.693333pt;}
.w7{width:249.617333pt;}
.w10{width:267.866667pt;}
.w5{width:328.386667pt;}
.w4{width:328.545333pt;}
.w2{width:403.452000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.038667pt;}
.x6{left:8.786667pt;}
.x25{left:10.240000pt;}
.x2d{left:11.346667pt;}
.x2c{left:13.120000pt;}
.x3c{left:14.400000pt;}
.x2f{left:15.840000pt;}
.x4f{left:16.786667pt;}
.x22{left:20.830667pt;}
.x2{left:24.830667pt;}
.x46{left:26.226667pt;}
.x50{left:27.186667pt;}
.x2e{left:28.960000pt;}
.x4a{left:30.080000pt;}
.x30{left:32.480000pt;}
.x42{left:35.025333pt;}
.x54{left:36.320000pt;}
.x44{left:38.706667pt;}
.x4d{left:40.306667pt;}
.x47{left:43.546667pt;}
.xc{left:44.666667pt;}
.x58{left:58.546667pt;}
.xa{left:68.481333pt;}
.x5{left:70.386667pt;}
.x19{left:75.520000pt;}
.x1{left:77.921333pt;}
.x14{left:88.192000pt;}
.x5a{left:92.832000pt;}
.x23{left:94.601333pt;}
.x35{left:100.512000pt;}
.x10{left:107.712000pt;}
.x7{left:113.312000pt;}
.x3{left:123.545333pt;}
.x59{left:128.826667pt;}
.x8{left:136.506667pt;}
.xd{left:138.746667pt;}
.x17{left:142.906667pt;}
.x40{left:145.306667pt;}
.x11{left:153.786667pt;}
.x12{left:155.066667pt;}
.x43{left:160.200000pt;}
.x16{left:163.706667pt;}
.x15{left:173.626667pt;}
.x18{left:182.426667pt;}
.x13{left:191.546667pt;}
.xe{left:204.026667pt;}
.x45{left:210.120000pt;}
.x21{left:241.306667pt;}
.xf{left:260.226667pt;}
.x48{left:269.826667pt;}
.x41{left:279.266667pt;}
.x56{left:287.586667pt;}
.x1a{left:297.346667pt;}
.x1d{left:323.906667pt;}
.x49{left:329.506667pt;}
.x24{left:344.226667pt;}
.x36{left:368.386667pt;}
.x4b{left:379.266667pt;}
.x55{left:388.706667pt;}
.x26{left:391.586667pt;}
.x9{left:396.866667pt;}
.x1c{left:415.746667pt;}
.x4c{left:438.986667pt;}
.x27{left:443.626667pt;}
.x37{left:467.773333pt;}
.x4{left:484.266667pt;}
.x28{left:490.986667pt;}
.x52{left:498.826667pt;}
.x57{left:504.746667pt;}
.x38{left:515.133333pt;}
.x29{left:539.466667pt;}
.x4e{left:558.666667pt;}
.x39{left:563.613333pt;}
.x2a{left:591.653333pt;}
.x1e{left:608.933333pt;}
.x3a{left:615.973333pt;}
.x53{left:618.533333pt;}
.x3f{left:634.373333pt;}
.x2b{left:641.893333pt;}
.x1b{left:643.973333pt;}
.x34{left:651.013333pt;}
.x20{left:654.693333pt;}
.x3b{left:666.213333pt;}
.x32{left:669.413333pt;}
.x31{left:674.853333pt;}
.x51{left:680.933333pt;}
.x3d{left:694.853333pt;}
.x3e{left:699.493333pt;}
.x33{left:715.813333pt;}
.x1f{left:718.213333pt;}
}




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