
    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_34acab329f80ad0e7aae28d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_bcea95f18793631c52935108.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_262d83d13e1b976eb9bb4a09.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.206055;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_57ace7921f16e8f9e57102f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898438;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_0aa701eaf8c4ca10e5ee8020.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006348;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_ca5c03bbe9e324f8bfbfdd0a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.206055;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_0aa701eaf8c4ca10e5ee8020.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_41619d1c3167036830272ebe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.206055;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_63f0de457d3d051eee860662.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_0b17c10869baa89c8e97b866.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.995117;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:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls3{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.ls7{letter-spacing:1.468800px;}
.ls8{letter-spacing:1.801800px;}
.ls1{letter-spacing:2.188200px;}
.ls9{letter-spacing:6.314400px;}
.lsa{letter-spacing:6.905400px;}
.ls4{letter-spacing:11.794200px;}
.ls5{letter-spacing:12.212400px;}
.ls6{letter-spacing:122.562600px;}
.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;}
}
.ws3a{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.750000px;}
.ws17{word-spacing:-13.500000px;}
.ws71{word-spacing:-12.960000px;}
.ws0{word-spacing:-7.870500px;}
.ws1a{word-spacing:-2.772000px;}
.ws5b{word-spacing:-2.700000px;}
.ws26{word-spacing:-2.376000px;}
.ws4e{word-spacing:-2.079000px;}
.ws1c{word-spacing:-1.890000px;}
.ws2d{word-spacing:-1.782000px;}
.ws19{word-spacing:-1.512000px;}
.ws2b{word-spacing:-1.458000px;}
.ws58{word-spacing:-1.404000px;}
.ws6{word-spacing:-1.350000px;}
.ws3{word-spacing:-1.296000px;}
.ws60{word-spacing:-1.188000px;}
.ws11{word-spacing:-1.071000px;}
.ws2e{word-spacing:-0.972000px;}
.ws54{word-spacing:-0.945000px;}
.ws21{word-spacing:-0.882000px;}
.ws55{word-spacing:-0.819000px;}
.ws5a{word-spacing:-0.693000px;}
.ws20{word-spacing:-0.630000px;}
.ws22{word-spacing:-0.567000px;}
.ws45{word-spacing:-0.540000px;}
.ws52{word-spacing:-0.504000px;}
.ws2f{word-spacing:-0.432000px;}
.ws79{word-spacing:-0.270000px;}
.ws40{word-spacing:-0.189000px;}
.ws18{word-spacing:-0.126000px;}
.ws2c{word-spacing:-0.108000px;}
.ws32{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws67{word-spacing:0.054000px;}
.ws49{word-spacing:0.063000px;}
.ws5d{word-spacing:0.108000px;}
.ws56{word-spacing:0.126000px;}
.ws9{word-spacing:0.216000px;}
.ws6e{word-spacing:0.270000px;}
.ws7d{word-spacing:0.540000px;}
.ws50{word-spacing:0.567000px;}
.ws5c{word-spacing:0.594000px;}
.ws41{word-spacing:0.693000px;}
.ws4a{word-spacing:0.882000px;}
.ws1b{word-spacing:0.945000px;}
.ws6d{word-spacing:0.972000px;}
.ws30{word-spacing:1.080000px;}
.ws31{word-spacing:1.188000px;}
.ws25{word-spacing:1.260000px;}
.ws69{word-spacing:1.296000px;}
.ws64{word-spacing:1.350000px;}
.ws3d{word-spacing:1.386000px;}
.wsa{word-spacing:1.404000px;}
.ws59{word-spacing:1.458000px;}
.ws37{word-spacing:1.512000px;}
.ws46{word-spacing:1.566000px;}
.ws1e{word-spacing:1.701000px;}
.ws34{word-spacing:1.728000px;}
.ws74{word-spacing:1.782000px;}
.ws23{word-spacing:1.827000px;}
.ws7{word-spacing:1.836000px;}
.ws1f{word-spacing:1.890000px;}
.ws43{word-spacing:1.944000px;}
.ws7c{word-spacing:1.998000px;}
.ws1d{word-spacing:2.016000px;}
.ws4d{word-spacing:2.079000px;}
.ws39{word-spacing:2.214000px;}
.ws8{word-spacing:2.268000px;}
.ws2a{word-spacing:2.322000px;}
.ws4{word-spacing:2.376000px;}
.ws5f{word-spacing:2.430000px;}
.ws70{word-spacing:2.484000px;}
.ws7e{word-spacing:2.538000px;}
.ws78{word-spacing:2.646000px;}
.ws7f{word-spacing:2.808000px;}
.ws72{word-spacing:2.862000px;}
.ws76{word-spacing:2.916000px;}
.ws4f{word-spacing:2.961000px;}
.ws65{word-spacing:3.078000px;}
.ws51{word-spacing:3.276000px;}
.ws80{word-spacing:3.294000px;}
.ws12{word-spacing:3.528000px;}
.ws33{word-spacing:3.780000px;}
.ws28{word-spacing:3.834000px;}
.ws24{word-spacing:4.095000px;}
.ws75{word-spacing:4.104000px;}
.ws77{word-spacing:4.212000px;}
.ws6c{word-spacing:4.320000px;}
.ws35{word-spacing:4.374000px;}
.wsf{word-spacing:4.599000px;}
.ws5e{word-spacing:4.644000px;}
.ws29{word-spacing:4.698000px;}
.ws14{word-spacing:4.725000px;}
.ws81{word-spacing:4.752000px;}
.ws57{word-spacing:5.454000px;}
.ws3c{word-spacing:5.481000px;}
.ws66{word-spacing:5.508000px;}
.wsc{word-spacing:5.796000px;}
.ws38{word-spacing:5.886000px;}
.ws5{word-spacing:5.994000px;}
.ws4c{word-spacing:6.048000px;}
.ws6f{word-spacing:6.102000px;}
.ws3b{word-spacing:6.174000px;}
.ws15{word-spacing:6.237000px;}
.wsb{word-spacing:6.300000px;}
.ws7b{word-spacing:6.318000px;}
.ws68{word-spacing:6.534000px;}
.ws7a{word-spacing:6.642000px;}
.ws44{word-spacing:6.696000px;}
.ws73{word-spacing:6.912000px;}
.ws10{word-spacing:6.993000px;}
.ws36{word-spacing:7.128000px;}
.ws3f{word-spacing:7.308000px;}
.ws53{word-spacing:7.560000px;}
.wse{word-spacing:7.623000px;}
.ws42{word-spacing:8.001000px;}
.wsd{word-spacing:8.064000px;}
.ws4b{word-spacing:8.631000px;}
.ws83{word-spacing:8.856000px;}
.ws13{word-spacing:9.261000px;}
.ws3e{word-spacing:9.450000px;}
.ws27{word-spacing:9.612000px;}
.ws82{word-spacing:9.774000px;}
.ws6a{word-spacing:10.746000px;}
.ws63{word-spacing:11.772000px;}
.ws84{word-spacing:11.934000px;}
.ws6b{word-spacing:12.204000px;}
.ws62{word-spacing:13.716000px;}
.ws61{word-spacing:15.930000px;}
.ws47{word-spacing:40.022400px;}
.ws48{word-spacing:64.206000px;}
.ws16{word-spacing:498.039000px;}
._1b{margin-left:-25.026600px;}
._1e{margin-left:-20.245800px;}
._8{margin-left:-15.355800px;}
._6{margin-left:-4.923600px;}
._1{margin-left:-3.445200px;}
._0{margin-left:-2.030400px;}
._2{margin-left:-1.026000px;}
._5{width:1.137300px;}
._7{width:2.303400px;}
._4{width:3.445200px;}
._3{width:4.985100px;}
._1c{width:6.534000px;}
._1d{width:9.730800px;}
._1f{width:11.912400px;}
._1a{width:14.925600px;}
._19{width:15.951600px;}
._d{width:52.953600px;}
._e{width:55.233000px;}
._11{width:65.516400px;}
._c{width:72.504600px;}
._f{width:77.706000px;}
._a{width:79.743000px;}
._9{width:83.144400px;}
._10{width:85.358400px;}
._15{width:95.456400px;}
._b{width:97.694400px;}
._16{width:113.409000px;}
._12{width:158.204400px;}
._17{width:188.149200px;}
._13{width:348.036600px;}
._18{width:436.300200px;}
._14{width:439.240200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:31.482000px;}
.fs0{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:80.446350px;}
.y55{bottom:80.543100px;}
.y29{bottom:126.691500px;}
.y7e{bottom:137.928750px;}
.y28{bottom:145.591500px;}
.y54{bottom:146.645250px;}
.y69{bottom:148.972500px;}
.yb6{bottom:149.345250px;}
.y7d{bottom:156.828750px;}
.y53{bottom:162.845250px;}
.y27{bottom:164.491500px;}
.y68{bottom:165.172500px;}
.yb5{bottom:165.545400px;}
.y7c{bottom:175.728750px;}
.y52{bottom:179.045400px;}
.y67{bottom:181.372500px;}
.yb4{bottom:181.745250px;}
.y26{bottom:183.391500px;}
.y7b{bottom:194.628750px;}
.y51{bottom:195.245250px;}
.y66{bottom:197.572500px;}
.yb3{bottom:197.945400px;}
.y25{bottom:202.291500px;}
.y50{bottom:211.445400px;}
.y7a{bottom:213.528750px;}
.y65{bottom:213.772500px;}
.yb2{bottom:214.145250px;}
.y24{bottom:221.191500px;}
.y4f{bottom:227.645250px;}
.yb1{bottom:230.345250px;}
.y79{bottom:232.428750px;}
.y23{bottom:240.091500px;}
.y4e{bottom:243.845250px;}
.yb0{bottom:246.545400px;}
.y78{bottom:251.328750px;}
.y22{bottom:258.991500px;}
.y4d{bottom:260.045400px;}
.yaf{bottom:262.745250px;}
.y77{bottom:270.228750px;}
.ydd{bottom:272.492100px;}
.y4c{bottom:276.245250px;}
.y21{bottom:277.891500px;}
.yae{bottom:278.945400px;}
.ydc{bottom:288.692250px;}
.y76{bottom:289.128750px;}
.y4b{bottom:292.445400px;}
.yad{bottom:295.145250px;}
.y20{bottom:296.791500px;}
.y75{bottom:308.028750px;}
.y4a{bottom:308.645250px;}
.yac{bottom:311.345250px;}
.y1f{bottom:315.691500px;}
.ydb{bottom:321.092250px;}
.y49{bottom:324.845250px;}
.y74{bottom:326.928750px;}
.yab{bottom:327.545400px;}
.y1e{bottom:334.591500px;}
.yda{bottom:337.292250px;}
.y48{bottom:341.045400px;}
.yaa{bottom:343.745250px;}
.y73{bottom:345.828750px;}
.yd9{bottom:353.492100px;}
.y47{bottom:357.245250px;}
.ya9{bottom:359.945400px;}
.y72{bottom:364.728750px;}
.y1d{bottom:366.691500px;}
.yd8{bottom:369.692250px;}
.y46{bottom:373.445400px;}
.ya8{bottom:376.145250px;}
.y71{bottom:383.628750px;}
.yd7{bottom:385.892100px;}
.y45{bottom:389.645250px;}
.ya7{bottom:392.345250px;}
.yd6{bottom:402.092250px;}
.y70{bottom:402.528750px;}
.y44{bottom:405.845250px;}
.ya6{bottom:408.545400px;}
.y1c{bottom:412.891500px;}
.yd5{bottom:418.292250px;}
.y6f{bottom:421.428750px;}
.y43{bottom:422.045400px;}
.ya5{bottom:424.745250px;}
.yd4{bottom:434.492100px;}
.y42{bottom:438.245250px;}
.y6e{bottom:440.328750px;}
.ya4{bottom:440.945400px;}
.y1b{bottom:445.291500px;}
.yd3{bottom:450.692250px;}
.y41{bottom:454.445400px;}
.ya3{bottom:457.145250px;}
.y6d{bottom:459.228750px;}
.y1a{bottom:461.491500px;}
.yd2{bottom:466.892100px;}
.y40{bottom:470.645250px;}
.ya2{bottom:473.345250px;}
.y19{bottom:477.691500px;}
.y6c{bottom:478.128750px;}
.yd1{bottom:483.092250px;}
.y3f{bottom:486.845250px;}
.ya1{bottom:489.545400px;}
.y18{bottom:493.891500px;}
.y6b{bottom:497.028750px;}
.yd0{bottom:499.292250px;}
.ya0{bottom:505.745250px;}
.y17{bottom:510.091500px;}
.ycf{bottom:515.492100px;}
.y6a{bottom:515.928750px;}
.y3e{bottom:516.245250px;}
.y9f{bottom:521.945400px;}
.y16{bottom:526.291500px;}
.yce{bottom:531.692250px;}
.y9e{bottom:538.145250px;}
.y15{bottom:542.491500px;}
.ycd{bottom:547.892100px;}
.y9d{bottom:554.345250px;}
.y90{bottom:554.352750px;}
.y14{bottom:558.691500px;}
.y3d{bottom:562.445400px;}
.ycc{bottom:564.092250px;}
.y9c{bottom:570.545400px;}
.y13{bottom:574.891500px;}
.y8f{bottom:576.233850px;}
.ycb{bottom:580.292250px;}
.y3c{bottom:581.345250px;}
.y9b{bottom:586.745250px;}
.y12{bottom:591.091500px;}
.yca{bottom:596.492100px;}
.y8e{bottom:598.114950px;}
.y3b{bottom:600.245250px;}
.y9a{bottom:602.945400px;}
.yc9{bottom:612.692250px;}
.y3a{bottom:619.145250px;}
.y8d{bottom:619.996050px;}
.y64{bottom:621.596400px;}
.y11{bottom:623.491500px;}
.yc8{bottom:628.892100px;}
.y99{bottom:635.345250px;}
.y39{bottom:638.045400px;}
.y10{bottom:639.691500px;}
.y63{bottom:640.496400px;}
.y8c{bottom:641.877150px;}
.yc7{bottom:645.092250px;}
.y98{bottom:651.545400px;}
.y38{bottom:656.945400px;}
.yf{bottom:660.387000px;}
.yc6{bottom:661.292250px;}
.y8b{bottom:663.758250px;}
.y97{bottom:667.745250px;}
.ye{bottom:672.091500px;}
.y62{bottom:672.596400px;}
.y37{bottom:675.845250px;}
.yc5{bottom:677.492100px;}
.y96{bottom:683.945400px;}
.y8a{bottom:685.639350px;}
.yd{bottom:688.291500px;}
.yc4{bottom:693.692250px;}
.y36{bottom:694.745250px;}
.y95{bottom:700.145250px;}
.y89{bottom:707.520450px;}
.yc{bottom:708.987000px;}
.yc3{bottom:709.892100px;}
.y35{bottom:713.645250px;}
.y61{bottom:718.796400px;}
.yb{bottom:720.691500px;}
.yc2{bottom:726.092250px;}
.y88{bottom:729.401550px;}
.y94{bottom:729.545400px;}
.y34{bottom:732.545400px;}
.ya{bottom:736.891500px;}
.y60{bottom:737.696400px;}
.yc1{bottom:742.292250px;}
.y87{bottom:751.282650px;}
.y33{bottom:751.445400px;}
.y9{bottom:753.091500px;}
.y5f{bottom:756.596400px;}
.yc0{bottom:758.492100px;}
.y32{bottom:770.345250px;}
.y86{bottom:773.163750px;}
.y8{bottom:773.787000px;}
.ybf{bottom:774.692100px;}
.y5e{bottom:775.496400px;}
.y93{bottom:775.745400px;}
.y31{bottom:789.245400px;}
.ybe{bottom:790.892250px;}
.y92{bottom:791.945400px;}
.y5d{bottom:794.396400px;}
.y85{bottom:795.044850px;}
.y7{bottom:795.413400px;}
.ybd{bottom:807.092250px;}
.y30{bottom:808.145250px;}
.y5c{bottom:813.296400px;}
.y84{bottom:816.925950px;}
.y91{bottom:820.745400px;}
.ybc{bottom:823.292250px;}
.y2f{bottom:827.045250px;}
.y5b{bottom:832.196400px;}
.y6{bottom:838.613550px;}
.y83{bottom:838.807050px;}
.ybb{bottom:839.492100px;}
.y2e{bottom:845.945400px;}
.y5a{bottom:851.096400px;}
.y82{bottom:855.007050px;}
.yba{bottom:855.692100px;}
.y5{bottom:858.413400px;}
.y2d{bottom:864.845250px;}
.y59{bottom:869.996400px;}
.y81{bottom:871.207050px;}
.yb9{bottom:871.892250px;}
.y4{bottom:878.213400px;}
.y2c{bottom:883.745400px;}
.y80{bottom:887.407050px;}
.yb8{bottom:888.092250px;}
.y58{bottom:902.096400px;}
.y2b{bottom:902.645250px;}
.y7f{bottom:903.607050px;}
.yb7{bottom:904.292250px;}
.y3{bottom:932.029200px;}
.y2{bottom:948.229200px;}
.y57{bottom:948.334950px;}
.y2a{bottom:948.354000px;}
.y56{bottom:948.355800px;}
.h6{height:29.114701px;}
.h2{height:30.474609px;}
.h3{height:39.181641px;}
.h8{height:44.390625px;}
.h9{height:45.834961px;}
.h5{height:49.939453px;}
.h7{height:58.262695px;}
.h4{height:61.037109px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:710.079000px;}
.w1{width:710.250000px;}
.x0{left:0.000000px;}
.x12{left:76.535400px;}
.x8{left:84.227850px;}
.x15{left:97.795350px;}
.x1d{left:103.795350px;}
.x14{left:110.551200px;}
.x9{left:114.955500px;}
.x16{left:131.811000px;}
.xb{left:139.882350px;}
.x4{left:145.035750px;}
.x1a{left:149.755200px;}
.x1e{left:151.983450px;}
.xe{left:153.408750px;}
.x10{left:155.366550px;}
.xf{left:170.148600px;}
.x7{left:174.726750px;}
.xc{left:178.378500px;}
.x5{left:184.174950px;}
.x2{left:190.474350px;}
.xd{left:217.645800px;}
.x6{left:224.260650px;}
.xa{left:231.155700px;}
.x11{left:237.800250px;}
.x17{left:256.771800px;}
.x13{left:277.893750px;}
.x23{left:291.606150px;}
.x1c{left:293.866050px;}
.x1b{left:309.089100px;}
.x21{left:324.305850px;}
.x20{left:326.580000px;}
.x1f{left:328.854150px;}
.x22{left:340.914150px;}
.x1{left:408.394800px;}
.x3{left:415.155750px;}
.x18{left:453.153150px;}
.x19{left:587.382900px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.ls7{letter-spacing:1.305600pt;}
.ls8{letter-spacing:1.601600pt;}
.ls1{letter-spacing:1.945067pt;}
.ls9{letter-spacing:5.612800pt;}
.lsa{letter-spacing:6.138133pt;}
.ls4{letter-spacing:10.483733pt;}
.ls5{letter-spacing:10.855467pt;}
.ls6{letter-spacing:108.944533pt;}
.ws3a{word-spacing:-14.666667pt;}
.ws1{word-spacing:-14.000000pt;}
.ws17{word-spacing:-12.000000pt;}
.ws71{word-spacing:-11.520000pt;}
.ws0{word-spacing:-6.996000pt;}
.ws1a{word-spacing:-2.464000pt;}
.ws5b{word-spacing:-2.400000pt;}
.ws26{word-spacing:-2.112000pt;}
.ws4e{word-spacing:-1.848000pt;}
.ws1c{word-spacing:-1.680000pt;}
.ws2d{word-spacing:-1.584000pt;}
.ws19{word-spacing:-1.344000pt;}
.ws2b{word-spacing:-1.296000pt;}
.ws58{word-spacing:-1.248000pt;}
.ws6{word-spacing:-1.200000pt;}
.ws3{word-spacing:-1.152000pt;}
.ws60{word-spacing:-1.056000pt;}
.ws11{word-spacing:-0.952000pt;}
.ws2e{word-spacing:-0.864000pt;}
.ws54{word-spacing:-0.840000pt;}
.ws21{word-spacing:-0.784000pt;}
.ws55{word-spacing:-0.728000pt;}
.ws5a{word-spacing:-0.616000pt;}
.ws20{word-spacing:-0.560000pt;}
.ws22{word-spacing:-0.504000pt;}
.ws45{word-spacing:-0.480000pt;}
.ws52{word-spacing:-0.448000pt;}
.ws2f{word-spacing:-0.384000pt;}
.ws79{word-spacing:-0.240000pt;}
.ws40{word-spacing:-0.168000pt;}
.ws18{word-spacing:-0.112000pt;}
.ws2c{word-spacing:-0.096000pt;}
.ws32{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws67{word-spacing:0.048000pt;}
.ws49{word-spacing:0.056000pt;}
.ws5d{word-spacing:0.096000pt;}
.ws56{word-spacing:0.112000pt;}
.ws9{word-spacing:0.192000pt;}
.ws6e{word-spacing:0.240000pt;}
.ws7d{word-spacing:0.480000pt;}
.ws50{word-spacing:0.504000pt;}
.ws5c{word-spacing:0.528000pt;}
.ws41{word-spacing:0.616000pt;}
.ws4a{word-spacing:0.784000pt;}
.ws1b{word-spacing:0.840000pt;}
.ws6d{word-spacing:0.864000pt;}
.ws30{word-spacing:0.960000pt;}
.ws31{word-spacing:1.056000pt;}
.ws25{word-spacing:1.120000pt;}
.ws69{word-spacing:1.152000pt;}
.ws64{word-spacing:1.200000pt;}
.ws3d{word-spacing:1.232000pt;}
.wsa{word-spacing:1.248000pt;}
.ws59{word-spacing:1.296000pt;}
.ws37{word-spacing:1.344000pt;}
.ws46{word-spacing:1.392000pt;}
.ws1e{word-spacing:1.512000pt;}
.ws34{word-spacing:1.536000pt;}
.ws74{word-spacing:1.584000pt;}
.ws23{word-spacing:1.624000pt;}
.ws7{word-spacing:1.632000pt;}
.ws1f{word-spacing:1.680000pt;}
.ws43{word-spacing:1.728000pt;}
.ws7c{word-spacing:1.776000pt;}
.ws1d{word-spacing:1.792000pt;}
.ws4d{word-spacing:1.848000pt;}
.ws39{word-spacing:1.968000pt;}
.ws8{word-spacing:2.016000pt;}
.ws2a{word-spacing:2.064000pt;}
.ws4{word-spacing:2.112000pt;}
.ws5f{word-spacing:2.160000pt;}
.ws70{word-spacing:2.208000pt;}
.ws7e{word-spacing:2.256000pt;}
.ws78{word-spacing:2.352000pt;}
.ws7f{word-spacing:2.496000pt;}
.ws72{word-spacing:2.544000pt;}
.ws76{word-spacing:2.592000pt;}
.ws4f{word-spacing:2.632000pt;}
.ws65{word-spacing:2.736000pt;}
.ws51{word-spacing:2.912000pt;}
.ws80{word-spacing:2.928000pt;}
.ws12{word-spacing:3.136000pt;}
.ws33{word-spacing:3.360000pt;}
.ws28{word-spacing:3.408000pt;}
.ws24{word-spacing:3.640000pt;}
.ws75{word-spacing:3.648000pt;}
.ws77{word-spacing:3.744000pt;}
.ws6c{word-spacing:3.840000pt;}
.ws35{word-spacing:3.888000pt;}
.wsf{word-spacing:4.088000pt;}
.ws5e{word-spacing:4.128000pt;}
.ws29{word-spacing:4.176000pt;}
.ws14{word-spacing:4.200000pt;}
.ws81{word-spacing:4.224000pt;}
.ws57{word-spacing:4.848000pt;}
.ws3c{word-spacing:4.872000pt;}
.ws66{word-spacing:4.896000pt;}
.wsc{word-spacing:5.152000pt;}
.ws38{word-spacing:5.232000pt;}
.ws5{word-spacing:5.328000pt;}
.ws4c{word-spacing:5.376000pt;}
.ws6f{word-spacing:5.424000pt;}
.ws3b{word-spacing:5.488000pt;}
.ws15{word-spacing:5.544000pt;}
.wsb{word-spacing:5.600000pt;}
.ws7b{word-spacing:5.616000pt;}
.ws68{word-spacing:5.808000pt;}
.ws7a{word-spacing:5.904000pt;}
.ws44{word-spacing:5.952000pt;}
.ws73{word-spacing:6.144000pt;}
.ws10{word-spacing:6.216000pt;}
.ws36{word-spacing:6.336000pt;}
.ws3f{word-spacing:6.496000pt;}
.ws53{word-spacing:6.720000pt;}
.wse{word-spacing:6.776000pt;}
.ws42{word-spacing:7.112000pt;}
.wsd{word-spacing:7.168000pt;}
.ws4b{word-spacing:7.672000pt;}
.ws83{word-spacing:7.872000pt;}
.ws13{word-spacing:8.232000pt;}
.ws3e{word-spacing:8.400000pt;}
.ws27{word-spacing:8.544000pt;}
.ws82{word-spacing:8.688000pt;}
.ws6a{word-spacing:9.552000pt;}
.ws63{word-spacing:10.464000pt;}
.ws84{word-spacing:10.608000pt;}
.ws6b{word-spacing:10.848000pt;}
.ws62{word-spacing:12.192000pt;}
.ws61{word-spacing:14.160000pt;}
.ws47{word-spacing:35.575467pt;}
.ws48{word-spacing:57.072000pt;}
.ws16{word-spacing:442.701333pt;}
._1b{margin-left:-22.245867pt;}
._1e{margin-left:-17.996267pt;}
._8{margin-left:-13.649600pt;}
._6{margin-left:-4.376533pt;}
._1{margin-left:-3.062400pt;}
._0{margin-left:-1.804800pt;}
._2{margin-left:-0.912000pt;}
._5{width:1.010933pt;}
._7{width:2.047467pt;}
._4{width:3.062400pt;}
._3{width:4.431200pt;}
._1c{width:5.808000pt;}
._1d{width:8.649600pt;}
._1f{width:10.588800pt;}
._1a{width:13.267200pt;}
._19{width:14.179200pt;}
._d{width:47.069867pt;}
._e{width:49.096000pt;}
._11{width:58.236800pt;}
._c{width:64.448533pt;}
._f{width:69.072000pt;}
._a{width:70.882667pt;}
._9{width:73.906133pt;}
._10{width:75.874133pt;}
._15{width:84.850133pt;}
._b{width:86.839467pt;}
._16{width:100.808000pt;}
._12{width:140.626133pt;}
._17{width:167.243733pt;}
._13{width:309.365867pt;}
._18{width:387.822400pt;}
._14{width:390.435733pt;}
.fs3{font-size:27.984000pt;}
.fs0{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:71.507867pt;}
.y55{bottom:71.593867pt;}
.y29{bottom:112.614667pt;}
.y7e{bottom:122.603333pt;}
.y28{bottom:129.414667pt;}
.y54{bottom:130.351333pt;}
.y69{bottom:132.420000pt;}
.yb6{bottom:132.751333pt;}
.y7d{bottom:139.403333pt;}
.y53{bottom:144.751333pt;}
.y27{bottom:146.214667pt;}
.y68{bottom:146.820000pt;}
.yb5{bottom:147.151467pt;}
.y7c{bottom:156.203333pt;}
.y52{bottom:159.151467pt;}
.y67{bottom:161.220000pt;}
.yb4{bottom:161.551333pt;}
.y26{bottom:163.014667pt;}
.y7b{bottom:173.003333pt;}
.y51{bottom:173.551333pt;}
.y66{bottom:175.620000pt;}
.yb3{bottom:175.951467pt;}
.y25{bottom:179.814667pt;}
.y50{bottom:187.951467pt;}
.y7a{bottom:189.803333pt;}
.y65{bottom:190.020000pt;}
.yb2{bottom:190.351333pt;}
.y24{bottom:196.614667pt;}
.y4f{bottom:202.351333pt;}
.yb1{bottom:204.751333pt;}
.y79{bottom:206.603333pt;}
.y23{bottom:213.414667pt;}
.y4e{bottom:216.751333pt;}
.yb0{bottom:219.151467pt;}
.y78{bottom:223.403333pt;}
.y22{bottom:230.214667pt;}
.y4d{bottom:231.151467pt;}
.yaf{bottom:233.551333pt;}
.y77{bottom:240.203333pt;}
.ydd{bottom:242.215200pt;}
.y4c{bottom:245.551333pt;}
.y21{bottom:247.014667pt;}
.yae{bottom:247.951467pt;}
.ydc{bottom:256.615333pt;}
.y76{bottom:257.003333pt;}
.y4b{bottom:259.951467pt;}
.yad{bottom:262.351333pt;}
.y20{bottom:263.814667pt;}
.y75{bottom:273.803333pt;}
.y4a{bottom:274.351333pt;}
.yac{bottom:276.751333pt;}
.y1f{bottom:280.614667pt;}
.ydb{bottom:285.415333pt;}
.y49{bottom:288.751333pt;}
.y74{bottom:290.603333pt;}
.yab{bottom:291.151467pt;}
.y1e{bottom:297.414667pt;}
.yda{bottom:299.815333pt;}
.y48{bottom:303.151467pt;}
.yaa{bottom:305.551333pt;}
.y73{bottom:307.403333pt;}
.yd9{bottom:314.215200pt;}
.y47{bottom:317.551333pt;}
.ya9{bottom:319.951467pt;}
.y72{bottom:324.203333pt;}
.y1d{bottom:325.948000pt;}
.yd8{bottom:328.615333pt;}
.y46{bottom:331.951467pt;}
.ya8{bottom:334.351333pt;}
.y71{bottom:341.003333pt;}
.yd7{bottom:343.015200pt;}
.y45{bottom:346.351333pt;}
.ya7{bottom:348.751333pt;}
.yd6{bottom:357.415333pt;}
.y70{bottom:357.803333pt;}
.y44{bottom:360.751333pt;}
.ya6{bottom:363.151467pt;}
.y1c{bottom:367.014667pt;}
.yd5{bottom:371.815333pt;}
.y6f{bottom:374.603333pt;}
.y43{bottom:375.151467pt;}
.ya5{bottom:377.551333pt;}
.yd4{bottom:386.215200pt;}
.y42{bottom:389.551333pt;}
.y6e{bottom:391.403333pt;}
.ya4{bottom:391.951467pt;}
.y1b{bottom:395.814667pt;}
.yd3{bottom:400.615333pt;}
.y41{bottom:403.951467pt;}
.ya3{bottom:406.351333pt;}
.y6d{bottom:408.203333pt;}
.y1a{bottom:410.214667pt;}
.yd2{bottom:415.015200pt;}
.y40{bottom:418.351333pt;}
.ya2{bottom:420.751333pt;}
.y19{bottom:424.614667pt;}
.y6c{bottom:425.003333pt;}
.yd1{bottom:429.415333pt;}
.y3f{bottom:432.751333pt;}
.ya1{bottom:435.151467pt;}
.y18{bottom:439.014667pt;}
.y6b{bottom:441.803333pt;}
.yd0{bottom:443.815333pt;}
.ya0{bottom:449.551333pt;}
.y17{bottom:453.414667pt;}
.ycf{bottom:458.215200pt;}
.y6a{bottom:458.603333pt;}
.y3e{bottom:458.884667pt;}
.y9f{bottom:463.951467pt;}
.y16{bottom:467.814667pt;}
.yce{bottom:472.615333pt;}
.y9e{bottom:478.351333pt;}
.y15{bottom:482.214667pt;}
.ycd{bottom:487.015200pt;}
.y9d{bottom:492.751333pt;}
.y90{bottom:492.758000pt;}
.y14{bottom:496.614667pt;}
.y3d{bottom:499.951467pt;}
.ycc{bottom:501.415333pt;}
.y9c{bottom:507.151467pt;}
.y13{bottom:511.014667pt;}
.y8f{bottom:512.207867pt;}
.ycb{bottom:515.815333pt;}
.y3c{bottom:516.751333pt;}
.y9b{bottom:521.551333pt;}
.y12{bottom:525.414667pt;}
.yca{bottom:530.215200pt;}
.y8e{bottom:531.657733pt;}
.y3b{bottom:533.551333pt;}
.y9a{bottom:535.951467pt;}
.yc9{bottom:544.615333pt;}
.y3a{bottom:550.351333pt;}
.y8d{bottom:551.107600pt;}
.y64{bottom:552.530133pt;}
.y11{bottom:554.214667pt;}
.yc8{bottom:559.015200pt;}
.y99{bottom:564.751333pt;}
.y39{bottom:567.151467pt;}
.y10{bottom:568.614667pt;}
.y63{bottom:569.330133pt;}
.y8c{bottom:570.557467pt;}
.yc7{bottom:573.415333pt;}
.y98{bottom:579.151467pt;}
.y38{bottom:583.951467pt;}
.yf{bottom:587.010667pt;}
.yc6{bottom:587.815333pt;}
.y8b{bottom:590.007333pt;}
.y97{bottom:593.551333pt;}
.ye{bottom:597.414667pt;}
.y62{bottom:597.863467pt;}
.y37{bottom:600.751333pt;}
.yc5{bottom:602.215200pt;}
.y96{bottom:607.951467pt;}
.y8a{bottom:609.457200pt;}
.yd{bottom:611.814667pt;}
.yc4{bottom:616.615333pt;}
.y36{bottom:617.551333pt;}
.y95{bottom:622.351333pt;}
.y89{bottom:628.907067pt;}
.yc{bottom:630.210667pt;}
.yc3{bottom:631.015200pt;}
.y35{bottom:634.351333pt;}
.y61{bottom:638.930133pt;}
.yb{bottom:640.614667pt;}
.yc2{bottom:645.415333pt;}
.y88{bottom:648.356933pt;}
.y94{bottom:648.484800pt;}
.y34{bottom:651.151467pt;}
.ya{bottom:655.014667pt;}
.y60{bottom:655.730133pt;}
.yc1{bottom:659.815333pt;}
.y87{bottom:667.806800pt;}
.y33{bottom:667.951467pt;}
.y9{bottom:669.414667pt;}
.y5f{bottom:672.530133pt;}
.yc0{bottom:674.215200pt;}
.y32{bottom:684.751333pt;}
.y86{bottom:687.256667pt;}
.y8{bottom:687.810667pt;}
.ybf{bottom:688.615200pt;}
.y5e{bottom:689.330133pt;}
.y93{bottom:689.551467pt;}
.y31{bottom:701.551467pt;}
.ybe{bottom:703.015333pt;}
.y92{bottom:703.951467pt;}
.y5d{bottom:706.130133pt;}
.y85{bottom:706.706533pt;}
.y7{bottom:707.034133pt;}
.ybd{bottom:717.415333pt;}
.y30{bottom:718.351333pt;}
.y5c{bottom:722.930133pt;}
.y84{bottom:726.156400pt;}
.y91{bottom:729.551467pt;}
.ybc{bottom:731.815333pt;}
.y2f{bottom:735.151333pt;}
.y5b{bottom:739.730133pt;}
.y6{bottom:745.434267pt;}
.y83{bottom:745.606267pt;}
.ybb{bottom:746.215200pt;}
.y2e{bottom:751.951467pt;}
.y5a{bottom:756.530133pt;}
.y82{bottom:760.006267pt;}
.yba{bottom:760.615200pt;}
.y5{bottom:763.034133pt;}
.y2d{bottom:768.751333pt;}
.y59{bottom:773.330133pt;}
.y81{bottom:774.406267pt;}
.yb9{bottom:775.015333pt;}
.y4{bottom:780.634133pt;}
.y2c{bottom:785.551467pt;}
.y80{bottom:788.806267pt;}
.yb8{bottom:789.415333pt;}
.y58{bottom:801.863467pt;}
.y2b{bottom:802.351333pt;}
.y7f{bottom:803.206267pt;}
.yb7{bottom:803.815333pt;}
.y3{bottom:828.470400pt;}
.y2{bottom:842.870400pt;}
.y57{bottom:842.964400pt;}
.y2a{bottom:842.981333pt;}
.y56{bottom:842.982933pt;}
.h6{height:25.879734pt;}
.h2{height:27.088542pt;}
.h3{height:34.828125pt;}
.h8{height:39.458333pt;}
.h9{height:40.742188pt;}
.h5{height:44.390625pt;}
.h7{height:51.789062pt;}
.h4{height:54.255208pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:631.181333pt;}
.w1{width:631.333333pt;}
.x0{left:0.000000pt;}
.x12{left:68.031467pt;}
.x8{left:74.869200pt;}
.x15{left:86.929200pt;}
.x1d{left:92.262533pt;}
.x14{left:98.267733pt;}
.x9{left:102.182667pt;}
.x16{left:117.165333pt;}
.xb{left:124.339867pt;}
.x4{left:128.920667pt;}
.x1a{left:133.115733pt;}
.x1e{left:135.096400pt;}
.xe{left:136.363333pt;}
.x10{left:138.103600pt;}
.xf{left:151.243200pt;}
.x7{left:155.312667pt;}
.xc{left:158.558667pt;}
.x5{left:163.711067pt;}
.x2{left:169.310533pt;}
.xd{left:193.462933pt;}
.x6{left:199.342800pt;}
.xa{left:205.471733pt;}
.x11{left:211.378000pt;}
.x17{left:228.241600pt;}
.x13{left:247.016667pt;}
.x23{left:259.205467pt;}
.x1c{left:261.214267pt;}
.x1b{left:274.745867pt;}
.x21{left:288.271867pt;}
.x20{left:290.293333pt;}
.x1f{left:292.314800pt;}
.x22{left:303.034800pt;}
.x1{left:363.017600pt;}
.x3{left:369.027333pt;}
.x18{left:402.802800pt;}
.x19{left:522.118133pt;}
}




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