
    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_6d7af3754f5490cbe028d187.woff2')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_3ff48a46120e31c9b0962ad5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_b01dd1838f95c814511b6ee1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_a3e019ade2c8710eae22f5a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912109;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_8a8be32b316408999afad9ab.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_34a553c107e0ea41237ff0dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692871;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_0581ab2c274633b05967672f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e373423955b8714edf037220.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6d7af3754f5490cbe028d187.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_fbd7a7c211f5ad386cf43842.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.440000px;}
.ls2{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.518200px;}
.ls5{letter-spacing:3.432000px;}
.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;}
}
.ws85{word-spacing:-19.932000px;}
.ws1f{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.250000px;}
.ws84{word-spacing:-16.500000px;}
.ws3d{word-spacing:-9.936000px;}
.ws5f{word-spacing:-9.216000px;}
.ws4c{word-spacing:-7.704000px;}
.ws1d{word-spacing:-6.408000px;}
.ws7d{word-spacing:-6.336000px;}
.wsb{word-spacing:-6.120000px;}
.ws15{word-spacing:-5.616000px;}
.ws4f{word-spacing:-5.544000px;}
.ws6c{word-spacing:-5.472000px;}
.ws2a{word-spacing:-5.184000px;}
.ws68{word-spacing:-5.112000px;}
.ws64{word-spacing:-4.752000px;}
.ws99{word-spacing:-4.290000px;}
.ws53{word-spacing:-3.672000px;}
.wsa3{word-spacing:-3.630000px;}
.ws8f{word-spacing:-3.498000px;}
.ws1a{word-spacing:-2.880000px;}
.ws60{word-spacing:-2.736000px;}
.ws55{word-spacing:-2.664000px;}
.ws7c{word-spacing:-2.520000px;}
.ws2c{word-spacing:-2.448000px;}
.ws4d{word-spacing:-2.376000px;}
.ws6{word-spacing:-2.232000px;}
.ws61{word-spacing:-2.160000px;}
.ws22{word-spacing:-1.944000px;}
.ws35{word-spacing:-1.872000px;}
.ws6b{word-spacing:-1.656000px;}
.ws63{word-spacing:-1.512000px;}
.ws54{word-spacing:-1.368000px;}
.ws80{word-spacing:-1.224000px;}
.wsa{word-spacing:-1.008000px;}
.ws5{word-spacing:-0.792000px;}
.ws50{word-spacing:-0.720000px;}
.ws4b{word-spacing:-0.576000px;}
.ws92{word-spacing:-0.462000px;}
.ws7f{word-spacing:-0.360000px;}
.ws21{word-spacing:-0.216000px;}
.wsa2{word-spacing:-0.198000px;}
.ws1{word-spacing:0.000000px;}
.ws52{word-spacing:0.072000px;}
.ws75{word-spacing:0.360000px;}
.ws74{word-spacing:0.576000px;}
.ws1c{word-spacing:0.720000px;}
.ws36{word-spacing:0.792000px;}
.ws16{word-spacing:0.864000px;}
.ws51{word-spacing:0.936000px;}
.ws1e{word-spacing:1.008000px;}
.ws12{word-spacing:1.152000px;}
.ws13{word-spacing:1.224000px;}
.ws62{word-spacing:1.368000px;}
.ws8{word-spacing:1.440000px;}
.ws2{word-spacing:1.728000px;}
.ws65{word-spacing:1.944000px;}
.ws97{word-spacing:2.112000px;}
.wsc{word-spacing:2.232000px;}
.ws82{word-spacing:2.448000px;}
.wsf{word-spacing:2.520000px;}
.ws4e{word-spacing:2.736000px;}
.ws48{word-spacing:2.808000px;}
.ws19{word-spacing:2.880000px;}
.ws2e{word-spacing:3.024000px;}
.ws96{word-spacing:3.102000px;}
.ws81{word-spacing:3.168000px;}
.wse{word-spacing:3.384000px;}
.ws91{word-spacing:3.630000px;}
.ws34{word-spacing:3.744000px;}
.ws8e{word-spacing:3.960000px;}
.ws25{word-spacing:4.104000px;}
.ws5d{word-spacing:4.392000px;}
.ws27{word-spacing:4.464000px;}
.ws38{word-spacing:4.680000px;}
.ws6f{word-spacing:4.896000px;}
.ws20{word-spacing:5.040000px;}
.ws88{word-spacing:5.148000px;}
.ws77{word-spacing:5.328000px;}
.ws42{word-spacing:5.400000px;}
.wsa0{word-spacing:5.544000px;}
.ws46{word-spacing:5.616000px;}
.ws9f{word-spacing:5.742000px;}
.ws79{word-spacing:5.832000px;}
.ws23{word-spacing:5.976000px;}
.ws41{word-spacing:6.120000px;}
.ws24{word-spacing:6.264000px;}
.ws2d{word-spacing:6.336000px;}
.ws73{word-spacing:6.408000px;}
.ws3{word-spacing:6.552000px;}
.ws78{word-spacing:6.768000px;}
.ws26{word-spacing:6.912000px;}
.ws17{word-spacing:7.128000px;}
.ws4a{word-spacing:7.200000px;}
.ws4{word-spacing:7.272000px;}
.wsa4{word-spacing:7.326000px;}
.ws59{word-spacing:7.344000px;}
.ws93{word-spacing:7.656000px;}
.ws8b{word-spacing:7.920000px;}
.ws9c{word-spacing:8.250000px;}
.ws5a{word-spacing:8.280000px;}
.ws57{word-spacing:8.496000px;}
.ws18{word-spacing:8.712000px;}
.ws76{word-spacing:8.784000px;}
.ws7b{word-spacing:8.856000px;}
.ws71{word-spacing:8.928000px;}
.ws7{word-spacing:9.216000px;}
.ws9d{word-spacing:9.306000px;}
.ws90{word-spacing:9.372000px;}
.ws49{word-spacing:9.504000px;}
.ws5e{word-spacing:9.576000px;}
.ws40{word-spacing:9.648000px;}
.ws66{word-spacing:9.720000px;}
.ws58{word-spacing:10.008000px;}
.ws89{word-spacing:10.296000px;}
.ws43{word-spacing:10.368000px;}
.ws5c{word-spacing:10.512000px;}
.ws3b{word-spacing:10.584000px;}
.ws67{word-spacing:10.656000px;}
.ws45{word-spacing:10.728000px;}
.ws3a{word-spacing:10.872000px;}
.ws8d{word-spacing:10.890000px;}
.ws29{word-spacing:10.944000px;}
.ws7a{word-spacing:11.088000px;}
.ws5b{word-spacing:11.232000px;}
.ws6d{word-spacing:11.376000px;}
.ws72{word-spacing:11.448000px;}
.ws3f{word-spacing:11.520000px;}
.ws33{word-spacing:11.664000px;}
.ws9b{word-spacing:11.682000px;}
.ws31{word-spacing:11.736000px;}
.ws37{word-spacing:11.952000px;}
.ws8c{word-spacing:12.078000px;}
.ws56{word-spacing:12.168000px;}
.ws9{word-spacing:12.312000px;}
.ws98{word-spacing:12.540000px;}
.ws14{word-spacing:12.600000px;}
.ws44{word-spacing:12.816000px;}
.ws39{word-spacing:12.888000px;}
.ws70{word-spacing:13.536000px;}
.ws94{word-spacing:14.124000px;}
.ws7e{word-spacing:14.184000px;}
.ws3e{word-spacing:14.472000px;}
.wsd{word-spacing:14.544000px;}
.ws6a{word-spacing:16.488000px;}
.ws2b{word-spacing:16.848000px;}
.ws69{word-spacing:16.920000px;}
.ws95{word-spacing:17.952000px;}
.ws86{word-spacing:18.720000px;}
.ws28{word-spacing:18.792000px;}
.ws10{word-spacing:19.080000px;}
.ws32{word-spacing:19.512000px;}
.wsa1{word-spacing:20.724000px;}
.ws30{word-spacing:20.952000px;}
.ws9a{word-spacing:22.902000px;}
.ws6e{word-spacing:23.616000px;}
.ws11{word-spacing:23.832000px;}
.ws47{word-spacing:24.120000px;}
.ws8a{word-spacing:24.222000px;}
.ws83{word-spacing:24.768000px;}
.ws87{word-spacing:27.936000px;}
.ws1b{word-spacing:28.152000px;}
.ws2f{word-spacing:28.512000px;}
.ws3c{word-spacing:28.584000px;}
.ws9e{word-spacing:44.418000px;}
._12{margin-left:-30.866400px;}
._11{margin-left:-27.820800px;}
._17{margin-left:-12.024000px;}
._10{margin-left:-7.970400px;}
._14{margin-left:-6.847200px;}
._0{margin-left:-5.352000px;}
._f{margin-left:-4.017600px;}
._1{margin-left:-2.923200px;}
._2{margin-left:-1.486800px;}
._7{width:1.366200px;}
._9{width:2.739300px;}
._e{width:3.889200px;}
._8{width:4.912800px;}
._d{width:6.051300px;}
._13{width:7.120800px;}
._16{width:8.572500px;}
._4{width:9.873900px;}
._15{width:10.886400px;}
._a{width:11.953500px;}
._6{width:12.955800px;}
._c{width:14.020800px;}
._5{width:15.159300px;}
._3{width:18.899100px;}
._b{width:20.851800px;}
._18{width:24.202200px;}
.fc1{color:rgb(16,15,13);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.138100px;}
.yeb{bottom:77.904450px;}
.y72{bottom:79.404450px;}
.y4c{bottom:80.454600px;}
.yc7{bottom:85.854450px;}
.y22{bottom:88.358850px;}
.y94{bottom:90.152550px;}
.yea{bottom:98.904450px;}
.y71{bottom:100.404450px;}
.y4b{bottom:101.454600px;}
.yc6{bottom:107.454600px;}
.y21{bottom:110.108850px;}
.y93{bottom:111.902550px;}
.ye9{bottom:119.904450px;}
.y70{bottom:121.404450px;}
.y10e{bottom:122.384850px;}
.y4a{bottom:122.454600px;}
.yc5{bottom:129.054600px;}
.y20{bottom:131.858850px;}
.y92{bottom:133.652550px;}
.yb4{bottom:134.754600px;}
.ye8{bottom:140.904450px;}
.y10d{bottom:141.884850px;}
.y6f{bottom:142.404450px;}
.y49{bottom:143.454600px;}
.yc4{bottom:150.654450px;}
.y1f{bottom:153.608850px;}
.y91{bottom:155.402550px;}
.yb3{bottom:155.754600px;}
.y10c{bottom:161.384850px;}
.ye7{bottom:161.904450px;}
.y6e{bottom:163.404450px;}
.y48{bottom:164.454600px;}
.yc3{bottom:172.254600px;}
.y1e{bottom:175.358850px;}
.yb2{bottom:176.754600px;}
.y90{bottom:177.152550px;}
.ye6{bottom:182.904450px;}
.y6d{bottom:184.404450px;}
.y10b{bottom:185.136750px;}
.y47{bottom:185.454600px;}
.yc2{bottom:194.004600px;}
.y1d{bottom:197.108850px;}
.yb1{bottom:197.754600px;}
.y8f{bottom:198.902550px;}
.ye5{bottom:203.904450px;}
.y10a{bottom:204.636750px;}
.y6c{bottom:205.404450px;}
.y46{bottom:206.454600px;}
.yc1{bottom:215.754600px;}
.yb0{bottom:218.754600px;}
.y1c{bottom:218.858850px;}
.y8e{bottom:220.652550px;}
.y109{bottom:224.136750px;}
.ye4{bottom:224.904450px;}
.y6b{bottom:226.404450px;}
.y45{bottom:227.454600px;}
.yc0{bottom:237.504600px;}
.yaf{bottom:239.754600px;}
.y1b{bottom:240.608850px;}
.y8d{bottom:242.402550px;}
.y108{bottom:243.636750px;}
.ye3{bottom:245.904450px;}
.y6a{bottom:247.404450px;}
.y44{bottom:248.454600px;}
.ybf{bottom:259.254600px;}
.yae{bottom:260.754600px;}
.y1a{bottom:262.358850px;}
.y8c{bottom:264.152550px;}
.y107{bottom:267.388800px;}
.ye2{bottom:267.654450px;}
.y69{bottom:268.404450px;}
.y43{bottom:269.454600px;}
.ybe{bottom:281.004600px;}
.yad{bottom:281.754600px;}
.y8b{bottom:285.902550px;}
.y68{bottom:289.404450px;}
.y42{bottom:290.454600px;}
.y106{bottom:291.140700px;}
.yac{bottom:302.754600px;}
.y19{bottom:305.858850px;}
.y8a{bottom:307.652550px;}
.y67{bottom:310.404450px;}
.y105{bottom:310.640700px;}
.ye1{bottom:311.154450px;}
.y41{bottom:311.454600px;}
.yab{bottom:323.754600px;}
.ybd{bottom:324.504600px;}
.y89{bottom:329.402550px;}
.y104{bottom:330.140700px;}
.y66{bottom:331.404450px;}
.y40{bottom:332.454600px;}
.ye0{bottom:332.904450px;}
.yaa{bottom:344.754600px;}
.ybc{bottom:346.254600px;}
.y18{bottom:349.058850px;}
.y103{bottom:349.640700px;}
.y88{bottom:351.152550px;}
.y65{bottom:352.404450px;}
.y3f{bottom:353.454600px;}
.ydf{bottom:354.654450px;}
.ya9{bottom:365.754600px;}
.ybb{bottom:368.004600px;}
.y17{bottom:372.810900px;}
.y87{bottom:372.902550px;}
.y102{bottom:373.392750px;}
.y64{bottom:373.404450px;}
.y3e{bottom:374.454600px;}
.yde{bottom:376.404450px;}
.ya8{bottom:386.754600px;}
.yba{bottom:389.754600px;}
.y101{bottom:392.892750px;}
.y63{bottom:394.404450px;}
.y86{bottom:394.652550px;}
.y3d{bottom:395.454600px;}
.y16{bottom:396.562800px;}
.ydd{bottom:398.154450px;}
.ya7{bottom:407.754600px;}
.yb9{bottom:411.504600px;}
.y100{bottom:412.392750px;}
.y62{bottom:415.404450px;}
.y15{bottom:416.062800px;}
.y85{bottom:416.402550px;}
.y3c{bottom:416.454600px;}
.ydc{bottom:419.904450px;}
.ya6{bottom:428.754600px;}
.yff{bottom:431.892750px;}
.yb8{bottom:433.254600px;}
.y14{bottom:435.562800px;}
.y61{bottom:436.404450px;}
.y3b{bottom:437.454600px;}
.y84{bottom:438.152550px;}
.ydb{bottom:441.654450px;}
.ya5{bottom:449.754600px;}
.yfe{bottom:451.392750px;}
.yb7{bottom:455.004600px;}
.y13{bottom:455.062800px;}
.y60{bottom:457.404450px;}
.y3a{bottom:458.454600px;}
.yda{bottom:463.404450px;}
.y83{bottom:464.004600px;}
.ya4{bottom:470.754600px;}
.y12{bottom:474.562800px;}
.yfd{bottom:475.144650px;}
.yb6{bottom:476.754600px;}
.y5f{bottom:478.404450px;}
.y39{bottom:479.454600px;}
.yd9{bottom:485.154450px;}
.ya3{bottom:492.504600px;}
.y11{bottom:494.062800px;}
.yfc{bottom:494.644650px;}
.y5e{bottom:499.404450px;}
.y38{bottom:500.454600px;}
.y82{bottom:507.204600px;}
.y10{bottom:513.562800px;}
.yfb{bottom:514.144650px;}
.ya2{bottom:514.254600px;}
.yd8{bottom:515.904450px;}
.yb5{bottom:520.104600px;}
.y5d{bottom:520.404450px;}
.y37{bottom:521.454600px;}
.y81{bottom:528.204600px;}
.yf{bottom:533.062800px;}
.ya1{bottom:536.004600px;}
.yfa{bottom:537.896700px;}
.y5c{bottom:541.404450px;}
.y36{bottom:542.454600px;}
.y80{bottom:549.204600px;}
.ye{bottom:552.562800px;}
.yf9{bottom:557.396700px;}
.ya0{bottom:557.754600px;}
.y11d{bottom:558.476850px;}
.yd7{bottom:559.104600px;}
.y5b{bottom:562.404450px;}
.y35{bottom:563.454600px;}
.y7f{bottom:570.204600px;}
.yd{bottom:572.062800px;}
.yf8{bottom:576.896700px;}
.y9f{bottom:579.504600px;}
.yd6{bottom:580.854600px;}
.y11c{bottom:582.228750px;}
.y5a{bottom:583.404450px;}
.y34{bottom:584.454600px;}
.y7e{bottom:591.204600px;}
.yc{bottom:591.562800px;}
.yf7{bottom:596.396700px;}
.y9e{bottom:601.254600px;}
.yd5{bottom:602.604600px;}
.y59{bottom:604.404450px;}
.y33{bottom:605.454600px;}
.yb{bottom:611.062800px;}
.y7d{bottom:612.204600px;}
.yf6{bottom:620.148600px;}
.y9d{bottom:623.004600px;}
.yd4{bottom:624.354600px;}
.y58{bottom:626.154450px;}
.y32{bottom:626.454600px;}
.ya{bottom:630.562800px;}
.y7c{bottom:633.204600px;}
.yf5{bottom:639.648600px;}
.y9c{bottom:644.754600px;}
.yd3{bottom:646.104600px;}
.y31{bottom:647.454600px;}
.y57{bottom:647.904450px;}
.y7b{bottom:654.204600px;}
.yf4{bottom:659.148600px;}
.y9b{bottom:666.504600px;}
.yd2{bottom:667.854600px;}
.y30{bottom:668.454600px;}
.y56{bottom:669.654450px;}
.y9{bottom:671.662800px;}
.y7a{bottom:675.204600px;}
.y11b{bottom:677.236650px;}
.yf3{bottom:682.900650px;}
.y9a{bottom:688.254600px;}
.y2f{bottom:689.454600px;}
.yd1{bottom:689.604600px;}
.y55{bottom:691.404450px;}
.y79{bottom:696.204600px;}
.y11a{bottom:696.736650px;}
.y8{bottom:696.862800px;}
.yf2{bottom:702.400650px;}
.y99{bottom:710.004600px;}
.y2e{bottom:710.454600px;}
.y54{bottom:713.154450px;}
.y119{bottom:716.236650px;}
.y78{bottom:717.204600px;}
.y7{bottom:718.462800px;}
.yf1{bottom:726.152550px;}
.y2d{bottom:731.454600px;}
.y98{bottom:731.754600px;}
.yd0{bottom:732.804450px;}
.y53{bottom:734.904450px;}
.y77{bottom:738.204600px;}
.y118{bottom:739.988700px;}
.y6{bottom:740.062800px;}
.yf0{bottom:744.152550px;}
.y2c{bottom:753.204600px;}
.y97{bottom:753.504600px;}
.ycf{bottom:754.404450px;}
.y76{bottom:759.204600px;}
.y117{bottom:759.488700px;}
.yef{bottom:762.152550px;}
.y2b{bottom:774.954600px;}
.y96{bottom:775.254600px;}
.yce{bottom:776.004600px;}
.y52{bottom:778.404450px;}
.y75{bottom:780.204600px;}
.y116{bottom:783.240600px;}
.yee{bottom:784.404450px;}
.y5{bottom:790.462800px;}
.y2a{bottom:796.704600px;}
.y95{bottom:797.004600px;}
.ycd{bottom:797.604450px;}
.y51{bottom:800.004600px;}
.y74{bottom:801.204600px;}
.yed{bottom:802.404450px;}
.y115{bottom:802.740600px;}
.y4{bottom:817.462800px;}
.y29{bottom:818.454600px;}
.ycc{bottom:819.204600px;}
.y73{bottom:822.204600px;}
.y114{bottom:826.492650px;}
.y28{bottom:840.204600px;}
.ycb{bottom:840.804600px;}
.yec{bottom:842.004600px;}
.y50{bottom:843.204600px;}
.y3{bottom:844.462800px;}
.y113{bottom:845.992650px;}
.y27{bottom:861.954600px;}
.yca{bottom:862.404450px;}
.y4f{bottom:864.204600px;}
.y112{bottom:865.492650px;}
.y26{bottom:883.704600px;}
.yc9{bottom:884.004600px;}
.y4e{bottom:885.204600px;}
.y111{bottom:889.244550px;}
.y25{bottom:905.454600px;}
.yc8{bottom:905.604450px;}
.y4d{bottom:906.204600px;}
.y110{bottom:908.744550px;}
.y24{bottom:927.204600px;}
.y10f{bottom:928.244550px;}
.y23{bottom:929.154750px;}
.y1{bottom:965.377200px;}
.h2{height:33.328125px;}
.h9{height:41.777344px;}
.he{height:45.826172px;}
.hd{height:45.858398px;}
.hc{height:45.955078px;}
.h6{height:47.909180px;}
.ha{height:48.761719px;}
.h7{height:48.796875px;}
.hb{height:49.992188px;}
.h8{height:50.027344px;}
.h5{height:50.132812px;}
.h3{height:50.400000px;}
.h4{height:56.929688px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:80.787450px;}
.x1{left:84.330750px;}
.x4{left:108.704700px;}
.xe{left:123.307050px;}
.xc{left:134.787450px;}
.x3{left:136.272300px;}
.x8{left:180.683400px;}
.xd{left:191.208300px;}
.x6{left:198.077700px;}
.x5{left:213.222750px;}
.x7{left:235.944600px;}
.xb{left:267.972600px;}
.x9{left:271.896300px;}
.x2{left:352.068750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.280000pt;}
.ls2{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.238400pt;}
.ls5{letter-spacing:3.050667pt;}
.ws85{word-spacing:-17.717333pt;}
.ws1f{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.333333pt;}
.ws84{word-spacing:-14.666667pt;}
.ws3d{word-spacing:-8.832000pt;}
.ws5f{word-spacing:-8.192000pt;}
.ws4c{word-spacing:-6.848000pt;}
.ws1d{word-spacing:-5.696000pt;}
.ws7d{word-spacing:-5.632000pt;}
.wsb{word-spacing:-5.440000pt;}
.ws15{word-spacing:-4.992000pt;}
.ws4f{word-spacing:-4.928000pt;}
.ws6c{word-spacing:-4.864000pt;}
.ws2a{word-spacing:-4.608000pt;}
.ws68{word-spacing:-4.544000pt;}
.ws64{word-spacing:-4.224000pt;}
.ws99{word-spacing:-3.813333pt;}
.ws53{word-spacing:-3.264000pt;}
.wsa3{word-spacing:-3.226667pt;}
.ws8f{word-spacing:-3.109333pt;}
.ws1a{word-spacing:-2.560000pt;}
.ws60{word-spacing:-2.432000pt;}
.ws55{word-spacing:-2.368000pt;}
.ws7c{word-spacing:-2.240000pt;}
.ws2c{word-spacing:-2.176000pt;}
.ws4d{word-spacing:-2.112000pt;}
.ws6{word-spacing:-1.984000pt;}
.ws61{word-spacing:-1.920000pt;}
.ws22{word-spacing:-1.728000pt;}
.ws35{word-spacing:-1.664000pt;}
.ws6b{word-spacing:-1.472000pt;}
.ws63{word-spacing:-1.344000pt;}
.ws54{word-spacing:-1.216000pt;}
.ws80{word-spacing:-1.088000pt;}
.wsa{word-spacing:-0.896000pt;}
.ws5{word-spacing:-0.704000pt;}
.ws50{word-spacing:-0.640000pt;}
.ws4b{word-spacing:-0.512000pt;}
.ws92{word-spacing:-0.410667pt;}
.ws7f{word-spacing:-0.320000pt;}
.ws21{word-spacing:-0.192000pt;}
.wsa2{word-spacing:-0.176000pt;}
.ws1{word-spacing:0.000000pt;}
.ws52{word-spacing:0.064000pt;}
.ws75{word-spacing:0.320000pt;}
.ws74{word-spacing:0.512000pt;}
.ws1c{word-spacing:0.640000pt;}
.ws36{word-spacing:0.704000pt;}
.ws16{word-spacing:0.768000pt;}
.ws51{word-spacing:0.832000pt;}
.ws1e{word-spacing:0.896000pt;}
.ws12{word-spacing:1.024000pt;}
.ws13{word-spacing:1.088000pt;}
.ws62{word-spacing:1.216000pt;}
.ws8{word-spacing:1.280000pt;}
.ws2{word-spacing:1.536000pt;}
.ws65{word-spacing:1.728000pt;}
.ws97{word-spacing:1.877333pt;}
.wsc{word-spacing:1.984000pt;}
.ws82{word-spacing:2.176000pt;}
.wsf{word-spacing:2.240000pt;}
.ws4e{word-spacing:2.432000pt;}
.ws48{word-spacing:2.496000pt;}
.ws19{word-spacing:2.560000pt;}
.ws2e{word-spacing:2.688000pt;}
.ws96{word-spacing:2.757333pt;}
.ws81{word-spacing:2.816000pt;}
.wse{word-spacing:3.008000pt;}
.ws91{word-spacing:3.226667pt;}
.ws34{word-spacing:3.328000pt;}
.ws8e{word-spacing:3.520000pt;}
.ws25{word-spacing:3.648000pt;}
.ws5d{word-spacing:3.904000pt;}
.ws27{word-spacing:3.968000pt;}
.ws38{word-spacing:4.160000pt;}
.ws6f{word-spacing:4.352000pt;}
.ws20{word-spacing:4.480000pt;}
.ws88{word-spacing:4.576000pt;}
.ws77{word-spacing:4.736000pt;}
.ws42{word-spacing:4.800000pt;}
.wsa0{word-spacing:4.928000pt;}
.ws46{word-spacing:4.992000pt;}
.ws9f{word-spacing:5.104000pt;}
.ws79{word-spacing:5.184000pt;}
.ws23{word-spacing:5.312000pt;}
.ws41{word-spacing:5.440000pt;}
.ws24{word-spacing:5.568000pt;}
.ws2d{word-spacing:5.632000pt;}
.ws73{word-spacing:5.696000pt;}
.ws3{word-spacing:5.824000pt;}
.ws78{word-spacing:6.016000pt;}
.ws26{word-spacing:6.144000pt;}
.ws17{word-spacing:6.336000pt;}
.ws4a{word-spacing:6.400000pt;}
.ws4{word-spacing:6.464000pt;}
.wsa4{word-spacing:6.512000pt;}
.ws59{word-spacing:6.528000pt;}
.ws93{word-spacing:6.805333pt;}
.ws8b{word-spacing:7.040000pt;}
.ws9c{word-spacing:7.333333pt;}
.ws5a{word-spacing:7.360000pt;}
.ws57{word-spacing:7.552000pt;}
.ws18{word-spacing:7.744000pt;}
.ws76{word-spacing:7.808000pt;}
.ws7b{word-spacing:7.872000pt;}
.ws71{word-spacing:7.936000pt;}
.ws7{word-spacing:8.192000pt;}
.ws9d{word-spacing:8.272000pt;}
.ws90{word-spacing:8.330667pt;}
.ws49{word-spacing:8.448000pt;}
.ws5e{word-spacing:8.512000pt;}
.ws40{word-spacing:8.576000pt;}
.ws66{word-spacing:8.640000pt;}
.ws58{word-spacing:8.896000pt;}
.ws89{word-spacing:9.152000pt;}
.ws43{word-spacing:9.216000pt;}
.ws5c{word-spacing:9.344000pt;}
.ws3b{word-spacing:9.408000pt;}
.ws67{word-spacing:9.472000pt;}
.ws45{word-spacing:9.536000pt;}
.ws3a{word-spacing:9.664000pt;}
.ws8d{word-spacing:9.680000pt;}
.ws29{word-spacing:9.728000pt;}
.ws7a{word-spacing:9.856000pt;}
.ws5b{word-spacing:9.984000pt;}
.ws6d{word-spacing:10.112000pt;}
.ws72{word-spacing:10.176000pt;}
.ws3f{word-spacing:10.240000pt;}
.ws33{word-spacing:10.368000pt;}
.ws9b{word-spacing:10.384000pt;}
.ws31{word-spacing:10.432000pt;}
.ws37{word-spacing:10.624000pt;}
.ws8c{word-spacing:10.736000pt;}
.ws56{word-spacing:10.816000pt;}
.ws9{word-spacing:10.944000pt;}
.ws98{word-spacing:11.146667pt;}
.ws14{word-spacing:11.200000pt;}
.ws44{word-spacing:11.392000pt;}
.ws39{word-spacing:11.456000pt;}
.ws70{word-spacing:12.032000pt;}
.ws94{word-spacing:12.554667pt;}
.ws7e{word-spacing:12.608000pt;}
.ws3e{word-spacing:12.864000pt;}
.wsd{word-spacing:12.928000pt;}
.ws6a{word-spacing:14.656000pt;}
.ws2b{word-spacing:14.976000pt;}
.ws69{word-spacing:15.040000pt;}
.ws95{word-spacing:15.957333pt;}
.ws86{word-spacing:16.640000pt;}
.ws28{word-spacing:16.704000pt;}
.ws10{word-spacing:16.960000pt;}
.ws32{word-spacing:17.344000pt;}
.wsa1{word-spacing:18.421333pt;}
.ws30{word-spacing:18.624000pt;}
.ws9a{word-spacing:20.357333pt;}
.ws6e{word-spacing:20.992000pt;}
.ws11{word-spacing:21.184000pt;}
.ws47{word-spacing:21.440000pt;}
.ws8a{word-spacing:21.530667pt;}
.ws83{word-spacing:22.016000pt;}
.ws87{word-spacing:24.832000pt;}
.ws1b{word-spacing:25.024000pt;}
.ws2f{word-spacing:25.344000pt;}
.ws3c{word-spacing:25.408000pt;}
.ws9e{word-spacing:39.482667pt;}
._12{margin-left:-27.436800pt;}
._11{margin-left:-24.729600pt;}
._17{margin-left:-10.688000pt;}
._10{margin-left:-7.084800pt;}
._14{margin-left:-6.086400pt;}
._0{margin-left:-4.757333pt;}
._f{margin-left:-3.571200pt;}
._1{margin-left:-2.598400pt;}
._2{margin-left:-1.321600pt;}
._7{width:1.214400pt;}
._9{width:2.434933pt;}
._e{width:3.457067pt;}
._8{width:4.366933pt;}
._d{width:5.378933pt;}
._13{width:6.329600pt;}
._16{width:7.620000pt;}
._4{width:8.776800pt;}
._15{width:9.676800pt;}
._a{width:10.625333pt;}
._6{width:11.516267pt;}
._c{width:12.462933pt;}
._5{width:13.474933pt;}
._3{width:16.799200pt;}
._b{width:18.534933pt;}
._18{width:21.513067pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:33.900533pt;}
.yeb{bottom:69.248400pt;}
.y72{bottom:70.581733pt;}
.y4c{bottom:71.515200pt;}
.yc7{bottom:76.315067pt;}
.y22{bottom:78.541200pt;}
.y94{bottom:80.135600pt;}
.yea{bottom:87.915067pt;}
.y71{bottom:89.248400pt;}
.y4b{bottom:90.181867pt;}
.yc6{bottom:95.515200pt;}
.y21{bottom:97.874533pt;}
.y93{bottom:99.468933pt;}
.ye9{bottom:106.581733pt;}
.y70{bottom:107.915067pt;}
.y10e{bottom:108.786533pt;}
.y4a{bottom:108.848533pt;}
.yc5{bottom:114.715200pt;}
.y20{bottom:117.207867pt;}
.y92{bottom:118.802267pt;}
.yb4{bottom:119.781867pt;}
.ye8{bottom:125.248400pt;}
.y10d{bottom:126.119867pt;}
.y6f{bottom:126.581733pt;}
.y49{bottom:127.515200pt;}
.yc4{bottom:133.915067pt;}
.y1f{bottom:136.541200pt;}
.y91{bottom:138.135600pt;}
.yb3{bottom:138.448533pt;}
.y10c{bottom:143.453200pt;}
.ye7{bottom:143.915067pt;}
.y6e{bottom:145.248400pt;}
.y48{bottom:146.181867pt;}
.yc3{bottom:153.115200pt;}
.y1e{bottom:155.874533pt;}
.yb2{bottom:157.115200pt;}
.y90{bottom:157.468933pt;}
.ye6{bottom:162.581733pt;}
.y6d{bottom:163.915067pt;}
.y10b{bottom:164.566000pt;}
.y47{bottom:164.848533pt;}
.yc2{bottom:172.448533pt;}
.y1d{bottom:175.207867pt;}
.yb1{bottom:175.781867pt;}
.y8f{bottom:176.802267pt;}
.ye5{bottom:181.248400pt;}
.y10a{bottom:181.899333pt;}
.y6c{bottom:182.581733pt;}
.y46{bottom:183.515200pt;}
.yc1{bottom:191.781867pt;}
.yb0{bottom:194.448533pt;}
.y1c{bottom:194.541200pt;}
.y8e{bottom:196.135600pt;}
.y109{bottom:199.232667pt;}
.ye4{bottom:199.915067pt;}
.y6b{bottom:201.248400pt;}
.y45{bottom:202.181867pt;}
.yc0{bottom:211.115200pt;}
.yaf{bottom:213.115200pt;}
.y1b{bottom:213.874533pt;}
.y8d{bottom:215.468933pt;}
.y108{bottom:216.566000pt;}
.ye3{bottom:218.581733pt;}
.y6a{bottom:219.915067pt;}
.y44{bottom:220.848533pt;}
.ybf{bottom:230.448533pt;}
.yae{bottom:231.781867pt;}
.y1a{bottom:233.207867pt;}
.y8c{bottom:234.802267pt;}
.y107{bottom:237.678933pt;}
.ye2{bottom:237.915067pt;}
.y69{bottom:238.581733pt;}
.y43{bottom:239.515200pt;}
.ybe{bottom:249.781867pt;}
.yad{bottom:250.448533pt;}
.y8b{bottom:254.135600pt;}
.y68{bottom:257.248400pt;}
.y42{bottom:258.181867pt;}
.y106{bottom:258.791733pt;}
.yac{bottom:269.115200pt;}
.y19{bottom:271.874533pt;}
.y8a{bottom:273.468933pt;}
.y67{bottom:275.915067pt;}
.y105{bottom:276.125067pt;}
.ye1{bottom:276.581733pt;}
.y41{bottom:276.848533pt;}
.yab{bottom:287.781867pt;}
.ybd{bottom:288.448533pt;}
.y89{bottom:292.802267pt;}
.y104{bottom:293.458400pt;}
.y66{bottom:294.581733pt;}
.y40{bottom:295.515200pt;}
.ye0{bottom:295.915067pt;}
.yaa{bottom:306.448533pt;}
.ybc{bottom:307.781867pt;}
.y18{bottom:310.274533pt;}
.y103{bottom:310.791733pt;}
.y88{bottom:312.135600pt;}
.y65{bottom:313.248400pt;}
.y3f{bottom:314.181867pt;}
.ydf{bottom:315.248400pt;}
.ya9{bottom:325.115200pt;}
.ybb{bottom:327.115200pt;}
.y17{bottom:331.387467pt;}
.y87{bottom:331.468933pt;}
.y102{bottom:331.904667pt;}
.y64{bottom:331.915067pt;}
.y3e{bottom:332.848533pt;}
.yde{bottom:334.581733pt;}
.ya8{bottom:343.781867pt;}
.yba{bottom:346.448533pt;}
.y101{bottom:349.238000pt;}
.y63{bottom:350.581733pt;}
.y86{bottom:350.802267pt;}
.y3d{bottom:351.515200pt;}
.y16{bottom:352.500267pt;}
.ydd{bottom:353.915067pt;}
.ya7{bottom:362.448533pt;}
.yb9{bottom:365.781867pt;}
.y100{bottom:366.571333pt;}
.y62{bottom:369.248400pt;}
.y15{bottom:369.833600pt;}
.y85{bottom:370.135600pt;}
.y3c{bottom:370.181867pt;}
.ydc{bottom:373.248400pt;}
.ya6{bottom:381.115200pt;}
.yff{bottom:383.904667pt;}
.yb8{bottom:385.115200pt;}
.y14{bottom:387.166933pt;}
.y61{bottom:387.915067pt;}
.y3b{bottom:388.848533pt;}
.y84{bottom:389.468933pt;}
.ydb{bottom:392.581733pt;}
.ya5{bottom:399.781867pt;}
.yfe{bottom:401.238000pt;}
.yb7{bottom:404.448533pt;}
.y13{bottom:404.500267pt;}
.y60{bottom:406.581733pt;}
.y3a{bottom:407.515200pt;}
.yda{bottom:411.915067pt;}
.y83{bottom:412.448533pt;}
.ya4{bottom:418.448533pt;}
.y12{bottom:421.833600pt;}
.yfd{bottom:422.350800pt;}
.yb6{bottom:423.781867pt;}
.y5f{bottom:425.248400pt;}
.y39{bottom:426.181867pt;}
.yd9{bottom:431.248400pt;}
.ya3{bottom:437.781867pt;}
.y11{bottom:439.166933pt;}
.yfc{bottom:439.684133pt;}
.y5e{bottom:443.915067pt;}
.y38{bottom:444.848533pt;}
.y82{bottom:450.848533pt;}
.y10{bottom:456.500267pt;}
.yfb{bottom:457.017467pt;}
.ya2{bottom:457.115200pt;}
.yd8{bottom:458.581733pt;}
.yb5{bottom:462.315200pt;}
.y5d{bottom:462.581733pt;}
.y37{bottom:463.515200pt;}
.y81{bottom:469.515200pt;}
.yf{bottom:473.833600pt;}
.ya1{bottom:476.448533pt;}
.yfa{bottom:478.130400pt;}
.y5c{bottom:481.248400pt;}
.y36{bottom:482.181867pt;}
.y80{bottom:488.181867pt;}
.ye{bottom:491.166933pt;}
.yf9{bottom:495.463733pt;}
.ya0{bottom:495.781867pt;}
.y11d{bottom:496.423867pt;}
.yd7{bottom:496.981867pt;}
.y5b{bottom:499.915067pt;}
.y35{bottom:500.848533pt;}
.y7f{bottom:506.848533pt;}
.yd{bottom:508.500267pt;}
.yf8{bottom:512.797067pt;}
.y9f{bottom:515.115200pt;}
.yd6{bottom:516.315200pt;}
.y11c{bottom:517.536667pt;}
.y5a{bottom:518.581733pt;}
.y34{bottom:519.515200pt;}
.y7e{bottom:525.515200pt;}
.yc{bottom:525.833600pt;}
.yf7{bottom:530.130400pt;}
.y9e{bottom:534.448533pt;}
.yd5{bottom:535.648533pt;}
.y59{bottom:537.248400pt;}
.y33{bottom:538.181867pt;}
.yb{bottom:543.166933pt;}
.y7d{bottom:544.181867pt;}
.yf6{bottom:551.243200pt;}
.y9d{bottom:553.781867pt;}
.yd4{bottom:554.981867pt;}
.y58{bottom:556.581733pt;}
.y32{bottom:556.848533pt;}
.ya{bottom:560.500267pt;}
.y7c{bottom:562.848533pt;}
.yf5{bottom:568.576533pt;}
.y9c{bottom:573.115200pt;}
.yd3{bottom:574.315200pt;}
.y31{bottom:575.515200pt;}
.y57{bottom:575.915067pt;}
.y7b{bottom:581.515200pt;}
.yf4{bottom:585.909867pt;}
.y9b{bottom:592.448533pt;}
.yd2{bottom:593.648533pt;}
.y30{bottom:594.181867pt;}
.y56{bottom:595.248400pt;}
.y9{bottom:597.033600pt;}
.y7a{bottom:600.181867pt;}
.y11b{bottom:601.988133pt;}
.yf3{bottom:607.022800pt;}
.y9a{bottom:611.781867pt;}
.y2f{bottom:612.848533pt;}
.yd1{bottom:612.981867pt;}
.y55{bottom:614.581733pt;}
.y79{bottom:618.848533pt;}
.y11a{bottom:619.321467pt;}
.y8{bottom:619.433600pt;}
.yf2{bottom:624.356133pt;}
.y99{bottom:631.115200pt;}
.y2e{bottom:631.515200pt;}
.y54{bottom:633.915067pt;}
.y119{bottom:636.654800pt;}
.y78{bottom:637.515200pt;}
.y7{bottom:638.633600pt;}
.yf1{bottom:645.468933pt;}
.y2d{bottom:650.181867pt;}
.y98{bottom:650.448533pt;}
.yd0{bottom:651.381733pt;}
.y53{bottom:653.248400pt;}
.y77{bottom:656.181867pt;}
.y118{bottom:657.767733pt;}
.y6{bottom:657.833600pt;}
.yf0{bottom:661.468933pt;}
.y2c{bottom:669.515200pt;}
.y97{bottom:669.781867pt;}
.ycf{bottom:670.581733pt;}
.y76{bottom:674.848533pt;}
.y117{bottom:675.101067pt;}
.yef{bottom:677.468933pt;}
.y2b{bottom:688.848533pt;}
.y96{bottom:689.115200pt;}
.yce{bottom:689.781867pt;}
.y52{bottom:691.915067pt;}
.y75{bottom:693.515200pt;}
.y116{bottom:696.213867pt;}
.yee{bottom:697.248400pt;}
.y5{bottom:702.633600pt;}
.y2a{bottom:708.181867pt;}
.y95{bottom:708.448533pt;}
.ycd{bottom:708.981733pt;}
.y51{bottom:711.115200pt;}
.y74{bottom:712.181867pt;}
.yed{bottom:713.248400pt;}
.y115{bottom:713.547200pt;}
.y4{bottom:726.633600pt;}
.y29{bottom:727.515200pt;}
.ycc{bottom:728.181867pt;}
.y73{bottom:730.848533pt;}
.y114{bottom:734.660133pt;}
.y28{bottom:746.848533pt;}
.ycb{bottom:747.381867pt;}
.yec{bottom:748.448533pt;}
.y50{bottom:749.515200pt;}
.y3{bottom:750.633600pt;}
.y113{bottom:751.993467pt;}
.y27{bottom:766.181867pt;}
.yca{bottom:766.581733pt;}
.y4f{bottom:768.181867pt;}
.y112{bottom:769.326800pt;}
.y26{bottom:785.515200pt;}
.yc9{bottom:785.781867pt;}
.y4e{bottom:786.848533pt;}
.y111{bottom:790.439600pt;}
.y25{bottom:804.848533pt;}
.yc8{bottom:804.981733pt;}
.y4d{bottom:805.515200pt;}
.y110{bottom:807.772933pt;}
.y24{bottom:824.181867pt;}
.y10f{bottom:825.106267pt;}
.y23{bottom:825.915333pt;}
.y1{bottom:858.113067pt;}
.h2{height:29.625000pt;}
.h9{height:37.135417pt;}
.he{height:40.734375pt;}
.hd{height:40.763021pt;}
.hc{height:40.848958pt;}
.h6{height:42.585938pt;}
.ha{height:43.343750pt;}
.h7{height:43.375000pt;}
.hb{height:44.437500pt;}
.h8{height:44.468750pt;}
.h5{height:44.562500pt;}
.h3{height:44.800000pt;}
.h4{height:50.604167pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:71.811067pt;}
.x1{left:74.960667pt;}
.x4{left:96.626400pt;}
.xe{left:109.606267pt;}
.xc{left:119.811067pt;}
.x3{left:121.130933pt;}
.x8{left:160.607467pt;}
.xd{left:169.962933pt;}
.x6{left:176.069067pt;}
.x5{left:189.531333pt;}
.x7{left:209.728533pt;}
.xb{left:238.197867pt;}
.x9{left:241.685600pt;}
.x2{left:312.950000pt;}
}




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