
    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_88d15c953ef4874656a3eaa2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f79166eb04871cb0abf6cdce.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e11161381b8a7d6e3687a199.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_a8e89f344ab7682a7027570c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_383bf8db35172aadd0f7463c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2cf4016c8e4255e43dadee8a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_b912eec3b8aa6349687faa21.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926270;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_8c777662e0585dcc4469409f.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v1{vertical-align:27.971400px;}
.ls2{letter-spacing:-2.106000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.ls3{letter-spacing:1.890000px;}
.ls6{letter-spacing:4.443600px;}
.ls7{letter-spacing:7.560600px;}
.ls8{letter-spacing:7.587600px;}
.ls9{letter-spacing:7.641600px;}
.ls4{letter-spacing:12.351600px;}
.ls5{letter-spacing:13.570200px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.243000px;}
.ws68{word-spacing:-12.000000px;}
.ws34{word-spacing:-8.745000px;}
.wsa5{word-spacing:-5.712000px;}
.ws3d{word-spacing:-5.340000px;}
.ws44{word-spacing:-3.660000px;}
.ws22{word-spacing:-3.600000px;}
.ws38{word-spacing:-3.360000px;}
.wsc{word-spacing:-3.300000px;}
.wsa0{word-spacing:-3.216000px;}
.ws12{word-spacing:-3.180000px;}
.ws1e{word-spacing:-3.120000px;}
.ws21{word-spacing:-2.916000px;}
.ws32{word-spacing:-2.880000px;}
.ws78{word-spacing:-2.646000px;}
.ws97{word-spacing:-2.640000px;}
.ws9d{word-spacing:-2.592000px;}
.ws30{word-spacing:-2.580000px;}
.ws9b{word-spacing:-2.496000px;}
.ws83{word-spacing:-2.400000px;}
.ws11{word-spacing:-2.340000px;}
.ws91{word-spacing:-2.256000px;}
.ws13{word-spacing:-1.980000px;}
.ws75{word-spacing:-1.890000px;}
.ws5e{word-spacing:-1.740000px;}
.ws1b{word-spacing:-1.512000px;}
.ws17{word-spacing:-1.500000px;}
.ws64{word-spacing:-1.440000px;}
.ws3a{word-spacing:-1.320000px;}
.ws92{word-spacing:-1.200000px;}
.ws4b{word-spacing:-1.080000px;}
.ws90{word-spacing:-1.056000px;}
.ws41{word-spacing:-1.020000px;}
.ws9c{word-spacing:-0.864000px;}
.ws52{word-spacing:-0.840000px;}
.wsa9{word-spacing:-0.720000px;}
.ws58{word-spacing:-0.600000px;}
.ws79{word-spacing:-0.540000px;}
.ws43{word-spacing:-0.420000px;}
.wsa6{word-spacing:-0.336000px;}
.ws95{word-spacing:-0.192000px;}
.wsa{word-spacing:0.000000px;}
.wsb0{word-spacing:0.192000px;}
.ws71{word-spacing:0.216000px;}
.ws81{word-spacing:0.300000px;}
.ws47{word-spacing:0.360000px;}
.ws82{word-spacing:0.420000px;}
.ws8e{word-spacing:0.540000px;}
.ws8a{word-spacing:0.660000px;}
.ws8d{word-spacing:0.900000px;}
.ws6{word-spacing:0.960000px;}
.ws57{word-spacing:1.020000px;}
.ws70{word-spacing:1.188000px;}
.ws7e{word-spacing:1.200000px;}
.ws96{word-spacing:1.248000px;}
.wsa8{word-spacing:1.344000px;}
.ws14{word-spacing:1.380000px;}
.ws45{word-spacing:1.560000px;}
.ws35{word-spacing:1.680000px;}
.ws27{word-spacing:1.800000px;}
.ws6b{word-spacing:1.968000px;}
.wsad{word-spacing:2.016000px;}
.wsaa{word-spacing:2.064000px;}
.ws20{word-spacing:2.106000px;}
.ws29{word-spacing:2.160000px;}
.wsa3{word-spacing:2.208000px;}
.ws94{word-spacing:2.256000px;}
.wsb3{word-spacing:2.352000px;}
.ws66{word-spacing:2.376000px;}
.ws7f{word-spacing:2.520000px;}
.ws37{word-spacing:2.580000px;}
.ws3e{word-spacing:2.700000px;}
.ws76{word-spacing:2.862000px;}
.ws2f{word-spacing:3.000000px;}
.ws1d{word-spacing:3.300000px;}
.wsab{word-spacing:3.504000px;}
.ws89{word-spacing:3.540000px;}
.ws93{word-spacing:3.552000px;}
.ws33{word-spacing:3.600000px;}
.ws36{word-spacing:3.660000px;}
.wsaf{word-spacing:3.696000px;}
.ws5{word-spacing:3.840000px;}
.ws7d{word-spacing:3.936000px;}
.ws4e{word-spacing:3.960000px;}
.ws1c{word-spacing:4.380000px;}
.ws5f{word-spacing:4.440000px;}
.ws3{word-spacing:4.860000px;}
.ws7b{word-spacing:4.896000px;}
.ws8{word-spacing:4.920000px;}
.wsa7{word-spacing:5.424000px;}
.wsb1{word-spacing:5.520000px;}
.ws16{word-spacing:5.580000px;}
.ws5d{word-spacing:5.700000px;}
.ws67{word-spacing:5.724000px;}
.ws10{word-spacing:5.820000px;}
.ws85{word-spacing:5.880000px;}
.wsac{word-spacing:5.904000px;}
.ws4d{word-spacing:5.940000px;}
.ws6a{word-spacing:5.952000px;}
.ws9e{word-spacing:6.000000px;}
.ws2d{word-spacing:6.180000px;}
.ws9f{word-spacing:6.192000px;}
.ws7c{word-spacing:6.240000px;}
.ws98{word-spacing:6.336000px;}
.ws4a{word-spacing:6.360000px;}
.ws31{word-spacing:6.480000px;}
.ws5a{word-spacing:6.600000px;}
.ws69{word-spacing:6.768000px;}
.wsa4{word-spacing:6.816000px;}
.ws77{word-spacing:6.912000px;}
.ws1f{word-spacing:7.020000px;}
.ws61{word-spacing:7.140000px;}
.ws8f{word-spacing:7.320000px;}
.ws49{word-spacing:7.380000px;}
.ws39{word-spacing:7.440000px;}
.ws26{word-spacing:7.500000px;}
.ws63{word-spacing:7.560000px;}
.ws6f{word-spacing:7.614000px;}
.ws4f{word-spacing:7.620000px;}
.ws25{word-spacing:7.680000px;}
.ws72{word-spacing:7.722000px;}
.ws9a{word-spacing:8.016000px;}
.ws1a{word-spacing:8.220000px;}
.ws65{word-spacing:8.448000px;}
.ws84{word-spacing:8.460000px;}
.ws5c{word-spacing:8.520000px;}
.ws42{word-spacing:8.760000px;}
.ws40{word-spacing:9.000000px;}
.ws6c{word-spacing:9.120000px;}
.ws73{word-spacing:9.288000px;}
.ws19{word-spacing:9.660000px;}
.ws23{word-spacing:9.780000px;}
.ws8c{word-spacing:9.840000px;}
.ws2e{word-spacing:10.080000px;}
.wsae{word-spacing:10.128000px;}
.ws46{word-spacing:10.560000px;}
.wsb{word-spacing:10.620000px;}
.ws99{word-spacing:10.656000px;}
.ws56{word-spacing:10.740000px;}
.ws3c{word-spacing:10.800000px;}
.ws8b{word-spacing:11.040000px;}
.ws54{word-spacing:11.160000px;}
.ws62{word-spacing:11.340000px;}
.ws15{word-spacing:11.460000px;}
.ws80{word-spacing:11.580000px;}
.ws59{word-spacing:12.360000px;}
.ws7a{word-spacing:12.576000px;}
.ws86{word-spacing:13.260000px;}
.ws60{word-spacing:13.320000px;}
.ws5b{word-spacing:13.560000px;}
.wsb2{word-spacing:13.728000px;}
.ws53{word-spacing:14.280000px;}
.ws28{word-spacing:14.400000px;}
.ws9{word-spacing:14.700000px;}
.wse{word-spacing:15.300000px;}
.ws2b{word-spacing:16.200000px;}
.ws6e{word-spacing:17.334000px;}
.ws74{word-spacing:17.550000px;}
.ws7{word-spacing:17.700000px;}
.ws2a{word-spacing:18.240000px;}
.ws6d{word-spacing:18.306000px;}
.ws3f{word-spacing:18.420000px;}
.wsf{word-spacing:18.660000px;}
.ws24{word-spacing:19.140000px;}
.ws88{word-spacing:19.620000px;}
.ws4{word-spacing:20.280000px;}
.ws3b{word-spacing:20.400000px;}
.ws87{word-spacing:20.640000px;}
.ws50{word-spacing:20.700000px;}
.wsd{word-spacing:21.840000px;}
.ws18{word-spacing:23.460000px;}
.wsa1{word-spacing:23.856000px;}
.ws48{word-spacing:27.960000px;}
.ws51{word-spacing:28.140000px;}
.ws55{word-spacing:28.200000px;}
.ws2c{word-spacing:28.680000px;}
.ws4c{word-spacing:33.780000px;}
.wsa2{word-spacing:43.728000px;}
._10{margin-left:-2902.858800px;}
._f{margin-left:-1286.448000px;}
._c{margin-left:-8.460000px;}
._3{margin-left:-6.630000px;}
._7{margin-left:-5.592000px;}
._17{margin-left:-4.452000px;}
._0{margin-left:-3.396000px;}
._4{margin-left:-2.244000px;}
._1{margin-left:-1.110000px;}
._11{width:1.633800px;}
._5{width:3.330000px;}
._d{width:4.373400px;}
._e{width:5.431200px;}
._9{width:6.558000px;}
._8{width:8.250000px;}
._2{width:9.690000px;}
._18{width:10.998000px;}
._12{width:13.236000px;}
._a{width:16.788000px;}
._b{width:17.844000px;}
._1a{width:18.972000px;}
._6{width:20.887200px;}
._19{width:22.042800px;}
._1b{width:23.769000px;}
._16{width:25.146000px;}
._13{width:28.674600px;}
._1c{width:38.911200px;}
._14{width:185.952000px;}
._15{width:1151.992800px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fs7{font-size:34.980000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y95{bottom:72.319650px;}
.y1c{bottom:72.399600px;}
.yc6{bottom:73.339650px;}
.y4c{bottom:77.648850px;}
.y83{bottom:77.799600px;}
.yf4{bottom:80.799600px;}
.y94{bottom:86.719650px;}
.y1b{bottom:90.399600px;}
.yc5{bottom:91.339650px;}
.y82{bottom:92.199600px;}
.yf3{bottom:95.199600px;}
.y4b{bottom:95.648850px;}
.y93{bottom:101.119650px;}
.y81{bottom:106.599600px;}
.y1a{bottom:108.399600px;}
.yc4{bottom:109.339650px;}
.yf2{bottom:109.599600px;}
.y4a{bottom:113.648850px;}
.y92{bottom:115.519650px;}
.y80{bottom:120.999600px;}
.y19{bottom:126.399600px;}
.yc3{bottom:127.339650px;}
.y91{bottom:129.919650px;}
.yf1{bottom:129.999600px;}
.y49{bottom:131.648850px;}
.y7f{bottom:135.399600px;}
.y90{bottom:144.319650px;}
.y18{bottom:144.399600px;}
.yc2{bottom:145.339650px;}
.y48{bottom:149.648850px;}
.y7e{bottom:149.799600px;}
.y8f{bottom:158.719650px;}
.yf0{bottom:158.799600px;}
.y17{bottom:162.399600px;}
.yc1{bottom:163.339650px;}
.y7d{bottom:164.199600px;}
.y47{bottom:167.648850px;}
.y8e{bottom:173.119650px;}
.yef{bottom:173.199600px;}
.y7c{bottom:178.599600px;}
.y16{bottom:180.399600px;}
.yc0{bottom:181.339650px;}
.y46{bottom:185.648850px;}
.y8d{bottom:187.519650px;}
.yee{bottom:187.599600px;}
.y15{bottom:198.399600px;}
.ybf{bottom:199.339650px;}
.y8c{bottom:201.919650px;}
.y45{bottom:203.648850px;}
.y7b{bottom:205.599600px;}
.yed{bottom:207.999600px;}
.y8b{bottom:216.319650px;}
.y14{bottom:216.399600px;}
.ybe{bottom:217.339650px;}
.y44{bottom:221.648850px;}
.yec{bottom:222.399600px;}
.y7a{bottom:223.599600px;}
.y8a{bottom:230.719650px;}
.y13{bottom:234.399600px;}
.ybd{bottom:235.339650px;}
.yeb{bottom:236.799600px;}
.y43{bottom:239.648850px;}
.y79{bottom:241.599600px;}
.y89{bottom:245.119650px;}
.y12{bottom:252.399600px;}
.ybc{bottom:253.339650px;}
.yea{bottom:257.199600px;}
.y42{bottom:257.648850px;}
.y88{bottom:259.519650px;}
.y78{bottom:259.599600px;}
.y11{bottom:270.399600px;}
.ybb{bottom:271.339650px;}
.ye9{bottom:271.599600px;}
.y41{bottom:275.648850px;}
.y77{bottom:277.599600px;}
.ye8{bottom:285.999600px;}
.y10{bottom:288.399600px;}
.yba{bottom:289.339650px;}
.y40{bottom:293.648850px;}
.y76{bottom:295.599600px;}
.ye7{bottom:300.399600px;}
.yf{bottom:306.399600px;}
.yb9{bottom:307.339650px;}
.ya2{bottom:308.254500px;}
.y3f{bottom:311.648850px;}
.y75{bottom:313.599600px;}
.ye6{bottom:320.799600px;}
.ye{bottom:324.399600px;}
.ya1{bottom:324.454500px;}
.yb8{bottom:325.339650px;}
.y3e{bottom:329.648850px;}
.y74{bottom:331.599600px;}
.ye5{bottom:335.199600px;}
.ya0{bottom:340.654500px;}
.yd{bottom:342.399600px;}
.yb7{bottom:343.339650px;}
.y3d{bottom:347.648850px;}
.y73{bottom:349.599600px;}
.y9f{bottom:356.854500px;}
.yc{bottom:360.399600px;}
.yb6{bottom:361.339650px;}
.y3c{bottom:365.648850px;}
.y72{bottom:367.599600px;}
.ye4{bottom:369.999600px;}
.y33{bottom:378.399600px;}
.yb5{bottom:379.339650px;}
.y3b{bottom:383.648850px;}
.ye3{bottom:384.399600px;}
.y71{bottom:385.599600px;}
.yb{bottom:396.399600px;}
.yb4{bottom:397.339650px;}
.ye2{bottom:398.799600px;}
.y3a{bottom:401.648850px;}
.y70{bottom:403.599600px;}
.ye1{bottom:413.199600px;}
.y32{bottom:414.399600px;}
.yb3{bottom:415.339650px;}
.y39{bottom:419.648850px;}
.y6f{bottom:421.599600px;}
.ya{bottom:432.399600px;}
.yb2{bottom:433.339650px;}
.ye0{bottom:433.599600px;}
.y38{bottom:437.648850px;}
.y6e{bottom:439.599600px;}
.y9{bottom:450.399600px;}
.yb1{bottom:451.339650px;}
.ydf{bottom:453.999600px;}
.y37{bottom:455.648850px;}
.y6d{bottom:457.599600px;}
.y8{bottom:468.399600px;}
.yb0{bottom:469.339650px;}
.y36{bottom:473.648850px;}
.y6c{bottom:475.599600px;}
.yde{bottom:482.799600px;}
.y7{bottom:486.399600px;}
.y35{bottom:491.648850px;}
.y6b{bottom:493.599600px;}
.ydd{bottom:497.199600px;}
.y6{bottom:504.399600px;}
.yaf{bottom:505.339650px;}
.y34{bottom:509.648850px;}
.y6a{bottom:511.599600px;}
.ydc{bottom:517.599600px;}
.y5{bottom:522.399600px;}
.y69{bottom:529.599600px;}
.ydb{bottom:531.999600px;}
.y4{bottom:540.399600px;}
.yae{bottom:541.339650px;}
.yda{bottom:546.399600px;}
.y9e{bottom:546.526500px;}
.y68{bottom:547.599600px;}
.y87{bottom:557.731950px;}
.y3{bottom:558.399600px;}
.yad{bottom:559.339650px;}
.y9d{bottom:562.726500px;}
.y67{bottom:565.599600px;}
.yd9{bottom:566.799600px;}
.y86{bottom:573.931950px;}
.y2{bottom:576.399600px;}
.yac{bottom:577.339650px;}
.yd8{bottom:581.199600px;}
.y66{bottom:583.599600px;}
.y85{bottom:590.131950px;}
.y1{bottom:594.399600px;}
.y65{bottom:601.599600px;}
.yab{bottom:604.339650px;}
.y84{bottom:606.331950px;}
.yd7{bottom:615.999600px;}
.yaa{bottom:618.739650px;}
.y64{bottom:628.599600px;}
.yd6{bottom:630.399600px;}
.ya9{bottom:633.139650px;}
.yd5{bottom:644.799600px;}
.y63{bottom:646.599600px;}
.ya8{bottom:647.539650px;}
.y30{bottom:660.546150px;}
.ya7{bottom:661.939650px;}
.y62{bottom:664.599600px;}
.yd4{bottom:665.199600px;}
.ya6{bottom:676.339650px;}
.yd3{bottom:679.599600px;}
.ya5{bottom:690.739650px;}
.y61{bottom:691.599600px;}
.yd2{bottom:693.999600px;}
.y2f{bottom:696.546150px;}
.yd1{bottom:708.399600px;}
.y60{bottom:709.599600px;}
.y2e{bottom:714.546150px;}
.y9c{bottom:716.506500px;}
.yd0{bottom:722.799600px;}
.y5f{bottom:727.599600px;}
.y2d{bottom:732.546150px;}
.y9b{bottom:732.706500px;}
.ycf{bottom:743.199600px;}
.y5e{bottom:745.599600px;}
.y9a{bottom:748.906500px;}
.y2c{bottom:750.546150px;}
.yce{bottom:757.599600px;}
.y5d{bottom:763.599600px;}
.y99{bottom:765.106500px;}
.y2b{bottom:768.546150px;}
.ycd{bottom:771.999600px;}
.y5c{bottom:781.599600px;}
.y2a{bottom:786.546150px;}
.ycc{bottom:792.399600px;}
.y5b{bottom:799.599600px;}
.ycb{bottom:806.799600px;}
.y5a{bottom:817.599600px;}
.yca{bottom:821.199600px;}
.y29{bottom:822.546150px;}
.y59{bottom:835.599600px;}
.y28{bottom:838.746150px;}
.yc9{bottom:853.599600px;}
.y27{bottom:854.946150px;}
.y26{bottom:871.146000px;}
.y58{bottom:871.599600px;}
.y25{bottom:887.346150px;}
.y57{bottom:889.599600px;}
.y24{bottom:903.546150px;}
.y56{bottom:907.599600px;}
.y55{bottom:925.599600px;}
.y23{bottom:937.746150px;}
.y98{bottom:942.330450px;}
.yc8{bottom:943.599600px;}
.y22{bottom:952.146000px;}
.ya4{bottom:958.126500px;}
.y97{bottom:958.530450px;}
.y54{bottom:961.599600px;}
.y21{bottom:966.546150px;}
.ya3{bottom:974.326500px;}
.y96{bottom:974.730450px;}
.yc7{bottom:979.599600px;}
.yfc{bottom:994.867950px;}
.y53{bottom:997.599600px;}
.y20{bottom:998.946150px;}
.yfb{bottom:1009.267950px;}
.y52{bottom:1015.599600px;}
.yfa{bottom:1023.667950px;}
.y51{bottom:1033.599600px;}
.y1f{bottom:1042.146000px;}
.yf9{bottom:1044.067950px;}
.y50{bottom:1051.599600px;}
.yf8{bottom:1058.467950px;}
.y4f{bottom:1069.599600px;}
.y1e{bottom:1070.946150px;}
.yf7{bottom:1072.867950px;}
.y4e{bottom:1087.599600px;}
.yf6{bottom:1093.267950px;}
.y1d{bottom:1099.746150px;}
.y4d{bottom:1105.599600px;}
.yf5{bottom:1107.667950px;}
.y31{bottom:1164.671700px;}
.hb{height:32.859375px;}
.hd{height:33.328125px;}
.h5{height:33.351562px;}
.h6{height:35.427961px;}
.h7{height:37.520508px;}
.h8{height:39.339844px;}
.h9{height:41.074219px;}
.h1{height:41.689453px;}
.hc{height:42.234375px;}
.ha{height:47.513672px;}
.h2{height:52.792969px;}
.h4{height:61.496177px;}
.h3{height:65.718750px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:46.500000px;}
.xe{left:72.000000px;}
.x18{left:73.350000px;}
.x8{left:77.253000px;}
.x4{left:81.914100px;}
.x5{left:87.486300px;}
.x7{left:93.663900px;}
.x11{left:99.000000px;}
.x1d{left:108.000000px;}
.xc{left:171.558150px;}
.x1b{left:181.839900px;}
.x1c{left:191.635950px;}
.xb{left:199.187550px;}
.x10{left:204.339900px;}
.x6{left:251.232450px;}
.xa{left:348.393000px;}
.xd{left:404.265000px;}
.x9{left:419.003850px;}
.x1{left:468.000000px;}
.x16{left:492.351600px;}
.x3{left:495.000000px;}
.x1a{left:553.950000px;}
.x2{left:563.528250px;}
.x15{left:570.035850px;}
.x14{left:589.210650px;}
.x13{left:614.131350px;}
.x19{left:620.741400px;}
.x17{left:625.956300px;}
.xf{left:860.550000px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v1{vertical-align:24.863467pt;}
.ls2{letter-spacing:-1.872000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ls3{letter-spacing:1.680000pt;}
.ls6{letter-spacing:3.949867pt;}
.ls7{letter-spacing:6.720533pt;}
.ls8{letter-spacing:6.744533pt;}
.ls9{letter-spacing:6.792533pt;}
.ls4{letter-spacing:10.979200pt;}
.ls5{letter-spacing:12.062400pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.882667pt;}
.ws68{word-spacing:-10.666667pt;}
.ws34{word-spacing:-7.773333pt;}
.wsa5{word-spacing:-5.077333pt;}
.ws3d{word-spacing:-4.746667pt;}
.ws44{word-spacing:-3.253333pt;}
.ws22{word-spacing:-3.200000pt;}
.ws38{word-spacing:-2.986667pt;}
.wsc{word-spacing:-2.933333pt;}
.wsa0{word-spacing:-2.858667pt;}
.ws12{word-spacing:-2.826667pt;}
.ws1e{word-spacing:-2.773333pt;}
.ws21{word-spacing:-2.592000pt;}
.ws32{word-spacing:-2.560000pt;}
.ws78{word-spacing:-2.352000pt;}
.ws97{word-spacing:-2.346667pt;}
.ws9d{word-spacing:-2.304000pt;}
.ws30{word-spacing:-2.293333pt;}
.ws9b{word-spacing:-2.218667pt;}
.ws83{word-spacing:-2.133333pt;}
.ws11{word-spacing:-2.080000pt;}
.ws91{word-spacing:-2.005333pt;}
.ws13{word-spacing:-1.760000pt;}
.ws75{word-spacing:-1.680000pt;}
.ws5e{word-spacing:-1.546667pt;}
.ws1b{word-spacing:-1.344000pt;}
.ws17{word-spacing:-1.333333pt;}
.ws64{word-spacing:-1.280000pt;}
.ws3a{word-spacing:-1.173333pt;}
.ws92{word-spacing:-1.066667pt;}
.ws4b{word-spacing:-0.960000pt;}
.ws90{word-spacing:-0.938667pt;}
.ws41{word-spacing:-0.906667pt;}
.ws9c{word-spacing:-0.768000pt;}
.ws52{word-spacing:-0.746667pt;}
.wsa9{word-spacing:-0.640000pt;}
.ws58{word-spacing:-0.533333pt;}
.ws79{word-spacing:-0.480000pt;}
.ws43{word-spacing:-0.373333pt;}
.wsa6{word-spacing:-0.298667pt;}
.ws95{word-spacing:-0.170667pt;}
.wsa{word-spacing:0.000000pt;}
.wsb0{word-spacing:0.170667pt;}
.ws71{word-spacing:0.192000pt;}
.ws81{word-spacing:0.266667pt;}
.ws47{word-spacing:0.320000pt;}
.ws82{word-spacing:0.373333pt;}
.ws8e{word-spacing:0.480000pt;}
.ws8a{word-spacing:0.586667pt;}
.ws8d{word-spacing:0.800000pt;}
.ws6{word-spacing:0.853333pt;}
.ws57{word-spacing:0.906667pt;}
.ws70{word-spacing:1.056000pt;}
.ws7e{word-spacing:1.066667pt;}
.ws96{word-spacing:1.109333pt;}
.wsa8{word-spacing:1.194667pt;}
.ws14{word-spacing:1.226667pt;}
.ws45{word-spacing:1.386667pt;}
.ws35{word-spacing:1.493333pt;}
.ws27{word-spacing:1.600000pt;}
.ws6b{word-spacing:1.749333pt;}
.wsad{word-spacing:1.792000pt;}
.wsaa{word-spacing:1.834667pt;}
.ws20{word-spacing:1.872000pt;}
.ws29{word-spacing:1.920000pt;}
.wsa3{word-spacing:1.962667pt;}
.ws94{word-spacing:2.005333pt;}
.wsb3{word-spacing:2.090667pt;}
.ws66{word-spacing:2.112000pt;}
.ws7f{word-spacing:2.240000pt;}
.ws37{word-spacing:2.293333pt;}
.ws3e{word-spacing:2.400000pt;}
.ws76{word-spacing:2.544000pt;}
.ws2f{word-spacing:2.666667pt;}
.ws1d{word-spacing:2.933333pt;}
.wsab{word-spacing:3.114667pt;}
.ws89{word-spacing:3.146667pt;}
.ws93{word-spacing:3.157333pt;}
.ws33{word-spacing:3.200000pt;}
.ws36{word-spacing:3.253333pt;}
.wsaf{word-spacing:3.285333pt;}
.ws5{word-spacing:3.413333pt;}
.ws7d{word-spacing:3.498667pt;}
.ws4e{word-spacing:3.520000pt;}
.ws1c{word-spacing:3.893333pt;}
.ws5f{word-spacing:3.946667pt;}
.ws3{word-spacing:4.320000pt;}
.ws7b{word-spacing:4.352000pt;}
.ws8{word-spacing:4.373333pt;}
.wsa7{word-spacing:4.821333pt;}
.wsb1{word-spacing:4.906667pt;}
.ws16{word-spacing:4.960000pt;}
.ws5d{word-spacing:5.066667pt;}
.ws67{word-spacing:5.088000pt;}
.ws10{word-spacing:5.173333pt;}
.ws85{word-spacing:5.226667pt;}
.wsac{word-spacing:5.248000pt;}
.ws4d{word-spacing:5.280000pt;}
.ws6a{word-spacing:5.290667pt;}
.ws9e{word-spacing:5.333333pt;}
.ws2d{word-spacing:5.493333pt;}
.ws9f{word-spacing:5.504000pt;}
.ws7c{word-spacing:5.546667pt;}
.ws98{word-spacing:5.632000pt;}
.ws4a{word-spacing:5.653333pt;}
.ws31{word-spacing:5.760000pt;}
.ws5a{word-spacing:5.866667pt;}
.ws69{word-spacing:6.016000pt;}
.wsa4{word-spacing:6.058667pt;}
.ws77{word-spacing:6.144000pt;}
.ws1f{word-spacing:6.240000pt;}
.ws61{word-spacing:6.346667pt;}
.ws8f{word-spacing:6.506667pt;}
.ws49{word-spacing:6.560000pt;}
.ws39{word-spacing:6.613333pt;}
.ws26{word-spacing:6.666667pt;}
.ws63{word-spacing:6.720000pt;}
.ws6f{word-spacing:6.768000pt;}
.ws4f{word-spacing:6.773333pt;}
.ws25{word-spacing:6.826667pt;}
.ws72{word-spacing:6.864000pt;}
.ws9a{word-spacing:7.125333pt;}
.ws1a{word-spacing:7.306667pt;}
.ws65{word-spacing:7.509333pt;}
.ws84{word-spacing:7.520000pt;}
.ws5c{word-spacing:7.573333pt;}
.ws42{word-spacing:7.786667pt;}
.ws40{word-spacing:8.000000pt;}
.ws6c{word-spacing:8.106667pt;}
.ws73{word-spacing:8.256000pt;}
.ws19{word-spacing:8.586667pt;}
.ws23{word-spacing:8.693333pt;}
.ws8c{word-spacing:8.746667pt;}
.ws2e{word-spacing:8.960000pt;}
.wsae{word-spacing:9.002667pt;}
.ws46{word-spacing:9.386667pt;}
.wsb{word-spacing:9.440000pt;}
.ws99{word-spacing:9.472000pt;}
.ws56{word-spacing:9.546667pt;}
.ws3c{word-spacing:9.600000pt;}
.ws8b{word-spacing:9.813333pt;}
.ws54{word-spacing:9.920000pt;}
.ws62{word-spacing:10.080000pt;}
.ws15{word-spacing:10.186667pt;}
.ws80{word-spacing:10.293333pt;}
.ws59{word-spacing:10.986667pt;}
.ws7a{word-spacing:11.178667pt;}
.ws86{word-spacing:11.786667pt;}
.ws60{word-spacing:11.840000pt;}
.ws5b{word-spacing:12.053333pt;}
.wsb2{word-spacing:12.202667pt;}
.ws53{word-spacing:12.693333pt;}
.ws28{word-spacing:12.800000pt;}
.ws9{word-spacing:13.066667pt;}
.wse{word-spacing:13.600000pt;}
.ws2b{word-spacing:14.400000pt;}
.ws6e{word-spacing:15.408000pt;}
.ws74{word-spacing:15.600000pt;}
.ws7{word-spacing:15.733333pt;}
.ws2a{word-spacing:16.213333pt;}
.ws6d{word-spacing:16.272000pt;}
.ws3f{word-spacing:16.373333pt;}
.wsf{word-spacing:16.586667pt;}
.ws24{word-spacing:17.013333pt;}
.ws88{word-spacing:17.440000pt;}
.ws4{word-spacing:18.026667pt;}
.ws3b{word-spacing:18.133333pt;}
.ws87{word-spacing:18.346667pt;}
.ws50{word-spacing:18.400000pt;}
.wsd{word-spacing:19.413333pt;}
.ws18{word-spacing:20.853333pt;}
.wsa1{word-spacing:21.205333pt;}
.ws48{word-spacing:24.853333pt;}
.ws51{word-spacing:25.013333pt;}
.ws55{word-spacing:25.066667pt;}
.ws2c{word-spacing:25.493333pt;}
.ws4c{word-spacing:30.026667pt;}
.wsa2{word-spacing:38.869333pt;}
._10{margin-left:-2580.318933pt;}
._f{margin-left:-1143.509333pt;}
._c{margin-left:-7.520000pt;}
._3{margin-left:-5.893333pt;}
._7{margin-left:-4.970667pt;}
._17{margin-left:-3.957333pt;}
._0{margin-left:-3.018667pt;}
._4{margin-left:-1.994667pt;}
._1{margin-left:-0.986667pt;}
._11{width:1.452267pt;}
._5{width:2.960000pt;}
._d{width:3.887467pt;}
._e{width:4.827733pt;}
._9{width:5.829333pt;}
._8{width:7.333333pt;}
._2{width:8.613333pt;}
._18{width:9.776000pt;}
._12{width:11.765333pt;}
._a{width:14.922667pt;}
._b{width:15.861333pt;}
._1a{width:16.864000pt;}
._6{width:18.566400pt;}
._19{width:19.593600pt;}
._1b{width:21.128000pt;}
._16{width:22.352000pt;}
._13{width:25.488533pt;}
._1c{width:34.587733pt;}
._14{width:165.290667pt;}
._15{width:1023.993600pt;}
.fs5{font-size:24.874667pt;}
.fs7{font-size:31.093333pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:64.284133pt;}
.y1c{bottom:64.355200pt;}
.yc6{bottom:65.190800pt;}
.y4c{bottom:69.021200pt;}
.y83{bottom:69.155200pt;}
.yf4{bottom:71.821867pt;}
.y94{bottom:77.084133pt;}
.y1b{bottom:80.355200pt;}
.yc5{bottom:81.190800pt;}
.y82{bottom:81.955200pt;}
.yf3{bottom:84.621867pt;}
.y4b{bottom:85.021200pt;}
.y93{bottom:89.884133pt;}
.y81{bottom:94.755200pt;}
.y1a{bottom:96.355200pt;}
.yc4{bottom:97.190800pt;}
.yf2{bottom:97.421867pt;}
.y4a{bottom:101.021200pt;}
.y92{bottom:102.684133pt;}
.y80{bottom:107.555200pt;}
.y19{bottom:112.355200pt;}
.yc3{bottom:113.190800pt;}
.y91{bottom:115.484133pt;}
.yf1{bottom:115.555200pt;}
.y49{bottom:117.021200pt;}
.y7f{bottom:120.355200pt;}
.y90{bottom:128.284133pt;}
.y18{bottom:128.355200pt;}
.yc2{bottom:129.190800pt;}
.y48{bottom:133.021200pt;}
.y7e{bottom:133.155200pt;}
.y8f{bottom:141.084133pt;}
.yf0{bottom:141.155200pt;}
.y17{bottom:144.355200pt;}
.yc1{bottom:145.190800pt;}
.y7d{bottom:145.955200pt;}
.y47{bottom:149.021200pt;}
.y8e{bottom:153.884133pt;}
.yef{bottom:153.955200pt;}
.y7c{bottom:158.755200pt;}
.y16{bottom:160.355200pt;}
.yc0{bottom:161.190800pt;}
.y46{bottom:165.021200pt;}
.y8d{bottom:166.684133pt;}
.yee{bottom:166.755200pt;}
.y15{bottom:176.355200pt;}
.ybf{bottom:177.190800pt;}
.y8c{bottom:179.484133pt;}
.y45{bottom:181.021200pt;}
.y7b{bottom:182.755200pt;}
.yed{bottom:184.888533pt;}
.y8b{bottom:192.284133pt;}
.y14{bottom:192.355200pt;}
.ybe{bottom:193.190800pt;}
.y44{bottom:197.021200pt;}
.yec{bottom:197.688533pt;}
.y7a{bottom:198.755200pt;}
.y8a{bottom:205.084133pt;}
.y13{bottom:208.355200pt;}
.ybd{bottom:209.190800pt;}
.yeb{bottom:210.488533pt;}
.y43{bottom:213.021200pt;}
.y79{bottom:214.755200pt;}
.y89{bottom:217.884133pt;}
.y12{bottom:224.355200pt;}
.ybc{bottom:225.190800pt;}
.yea{bottom:228.621867pt;}
.y42{bottom:229.021200pt;}
.y88{bottom:230.684133pt;}
.y78{bottom:230.755200pt;}
.y11{bottom:240.355200pt;}
.ybb{bottom:241.190800pt;}
.ye9{bottom:241.421867pt;}
.y41{bottom:245.021200pt;}
.y77{bottom:246.755200pt;}
.ye8{bottom:254.221867pt;}
.y10{bottom:256.355200pt;}
.yba{bottom:257.190800pt;}
.y40{bottom:261.021200pt;}
.y76{bottom:262.755200pt;}
.ye7{bottom:267.021867pt;}
.yf{bottom:272.355200pt;}
.yb9{bottom:273.190800pt;}
.ya2{bottom:274.004000pt;}
.y3f{bottom:277.021200pt;}
.y75{bottom:278.755200pt;}
.ye6{bottom:285.155200pt;}
.ye{bottom:288.355200pt;}
.ya1{bottom:288.404000pt;}
.yb8{bottom:289.190800pt;}
.y3e{bottom:293.021200pt;}
.y74{bottom:294.755200pt;}
.ye5{bottom:297.955200pt;}
.ya0{bottom:302.804000pt;}
.yd{bottom:304.355200pt;}
.yb7{bottom:305.190800pt;}
.y3d{bottom:309.021200pt;}
.y73{bottom:310.755200pt;}
.y9f{bottom:317.204000pt;}
.yc{bottom:320.355200pt;}
.yb6{bottom:321.190800pt;}
.y3c{bottom:325.021200pt;}
.y72{bottom:326.755200pt;}
.ye4{bottom:328.888533pt;}
.y33{bottom:336.355200pt;}
.yb5{bottom:337.190800pt;}
.y3b{bottom:341.021200pt;}
.ye3{bottom:341.688533pt;}
.y71{bottom:342.755200pt;}
.yb{bottom:352.355200pt;}
.yb4{bottom:353.190800pt;}
.ye2{bottom:354.488533pt;}
.y3a{bottom:357.021200pt;}
.y70{bottom:358.755200pt;}
.ye1{bottom:367.288533pt;}
.y32{bottom:368.355200pt;}
.yb3{bottom:369.190800pt;}
.y39{bottom:373.021200pt;}
.y6f{bottom:374.755200pt;}
.ya{bottom:384.355200pt;}
.yb2{bottom:385.190800pt;}
.ye0{bottom:385.421867pt;}
.y38{bottom:389.021200pt;}
.y6e{bottom:390.755200pt;}
.y9{bottom:400.355200pt;}
.yb1{bottom:401.190800pt;}
.ydf{bottom:403.555200pt;}
.y37{bottom:405.021200pt;}
.y6d{bottom:406.755200pt;}
.y8{bottom:416.355200pt;}
.yb0{bottom:417.190800pt;}
.y36{bottom:421.021200pt;}
.y6c{bottom:422.755200pt;}
.yde{bottom:429.155200pt;}
.y7{bottom:432.355200pt;}
.y35{bottom:437.021200pt;}
.y6b{bottom:438.755200pt;}
.ydd{bottom:441.955200pt;}
.y6{bottom:448.355200pt;}
.yaf{bottom:449.190800pt;}
.y34{bottom:453.021200pt;}
.y6a{bottom:454.755200pt;}
.ydc{bottom:460.088533pt;}
.y5{bottom:464.355200pt;}
.y69{bottom:470.755200pt;}
.ydb{bottom:472.888533pt;}
.y4{bottom:480.355200pt;}
.yae{bottom:481.190800pt;}
.yda{bottom:485.688533pt;}
.y9e{bottom:485.801333pt;}
.y68{bottom:486.755200pt;}
.y87{bottom:495.761733pt;}
.y3{bottom:496.355200pt;}
.yad{bottom:497.190800pt;}
.y9d{bottom:500.201333pt;}
.y67{bottom:502.755200pt;}
.yd9{bottom:503.821867pt;}
.y86{bottom:510.161733pt;}
.y2{bottom:512.355200pt;}
.yac{bottom:513.190800pt;}
.yd8{bottom:516.621867pt;}
.y66{bottom:518.755200pt;}
.y85{bottom:524.561733pt;}
.y1{bottom:528.355200pt;}
.y65{bottom:534.755200pt;}
.yab{bottom:537.190800pt;}
.y84{bottom:538.961733pt;}
.yd7{bottom:547.555200pt;}
.yaa{bottom:549.990800pt;}
.y64{bottom:558.755200pt;}
.yd6{bottom:560.355200pt;}
.ya9{bottom:562.790800pt;}
.yd5{bottom:573.155200pt;}
.y63{bottom:574.755200pt;}
.ya8{bottom:575.590800pt;}
.y30{bottom:587.152133pt;}
.ya7{bottom:588.390800pt;}
.y62{bottom:590.755200pt;}
.yd4{bottom:591.288533pt;}
.ya6{bottom:601.190800pt;}
.yd3{bottom:604.088533pt;}
.ya5{bottom:613.990800pt;}
.y61{bottom:614.755200pt;}
.yd2{bottom:616.888533pt;}
.y2f{bottom:619.152133pt;}
.yd1{bottom:629.688533pt;}
.y60{bottom:630.755200pt;}
.y2e{bottom:635.152133pt;}
.y9c{bottom:636.894667pt;}
.yd0{bottom:642.488533pt;}
.y5f{bottom:646.755200pt;}
.y2d{bottom:651.152133pt;}
.y9b{bottom:651.294667pt;}
.ycf{bottom:660.621867pt;}
.y5e{bottom:662.755200pt;}
.y9a{bottom:665.694667pt;}
.y2c{bottom:667.152133pt;}
.yce{bottom:673.421867pt;}
.y5d{bottom:678.755200pt;}
.y99{bottom:680.094667pt;}
.y2b{bottom:683.152133pt;}
.ycd{bottom:686.221867pt;}
.y5c{bottom:694.755200pt;}
.y2a{bottom:699.152133pt;}
.ycc{bottom:704.355200pt;}
.y5b{bottom:710.755200pt;}
.ycb{bottom:717.155200pt;}
.y5a{bottom:726.755200pt;}
.yca{bottom:729.955200pt;}
.y29{bottom:731.152133pt;}
.y59{bottom:742.755200pt;}
.y28{bottom:745.552133pt;}
.yc9{bottom:758.755200pt;}
.y27{bottom:759.952133pt;}
.y26{bottom:774.352000pt;}
.y58{bottom:774.755200pt;}
.y25{bottom:788.752133pt;}
.y57{bottom:790.755200pt;}
.y24{bottom:803.152133pt;}
.y56{bottom:806.755200pt;}
.y55{bottom:822.755200pt;}
.y23{bottom:833.552133pt;}
.y98{bottom:837.627067pt;}
.yc8{bottom:838.755200pt;}
.y22{bottom:846.352000pt;}
.ya4{bottom:851.668000pt;}
.y97{bottom:852.027067pt;}
.y54{bottom:854.755200pt;}
.y21{bottom:859.152133pt;}
.ya3{bottom:866.068000pt;}
.y96{bottom:866.427067pt;}
.yc7{bottom:870.755200pt;}
.yfc{bottom:884.327067pt;}
.y53{bottom:886.755200pt;}
.y20{bottom:887.952133pt;}
.yfb{bottom:897.127067pt;}
.y52{bottom:902.755200pt;}
.yfa{bottom:909.927067pt;}
.y51{bottom:918.755200pt;}
.y1f{bottom:926.352000pt;}
.yf9{bottom:928.060400pt;}
.y50{bottom:934.755200pt;}
.yf8{bottom:940.860400pt;}
.y4f{bottom:950.755200pt;}
.y1e{bottom:951.952133pt;}
.yf7{bottom:953.660400pt;}
.y4e{bottom:966.755200pt;}
.yf6{bottom:971.793733pt;}
.y1d{bottom:977.552133pt;}
.y4d{bottom:982.755200pt;}
.yf5{bottom:984.593733pt;}
.y31{bottom:1035.263733pt;}
.hb{height:29.208333pt;}
.hd{height:29.625000pt;}
.h5{height:29.645833pt;}
.h6{height:31.491521pt;}
.h7{height:33.351562pt;}
.h8{height:34.968750pt;}
.h9{height:36.510417pt;}
.h1{height:37.057292pt;}
.hc{height:37.541667pt;}
.ha{height:42.234375pt;}
.h2{height:46.927083pt;}
.h4{height:54.663269pt;}
.h3{height:58.416667pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:41.333333pt;}
.xe{left:64.000000pt;}
.x18{left:65.200000pt;}
.x8{left:68.669333pt;}
.x4{left:72.812533pt;}
.x5{left:77.765600pt;}
.x7{left:83.256800pt;}
.x11{left:88.000000pt;}
.x1d{left:96.000000pt;}
.xc{left:152.496133pt;}
.x1b{left:161.635467pt;}
.x1c{left:170.343067pt;}
.xb{left:177.055600pt;}
.x10{left:181.635467pt;}
.x6{left:223.317733pt;}
.xa{left:309.682667pt;}
.xd{left:359.346667pt;}
.x9{left:372.447867pt;}
.x1{left:416.000000pt;}
.x16{left:437.645867pt;}
.x3{left:440.000000pt;}
.x1a{left:492.400000pt;}
.x2{left:500.914000pt;}
.x15{left:506.698533pt;}
.x14{left:523.742800pt;}
.x13{left:545.894533pt;}
.x19{left:551.770133pt;}
.x17{left:556.405600pt;}
.xf{left:764.933333pt;}
}




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