
    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_83a0339eee6ab77302a184bb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_cc410f118e6979a6ad5ddfd2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a6dc89015d699d18275148f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_11d2a81a0fb52c99741b61ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3af9247f2dc7c44233722d88.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_b5e2829e56e09dddd221ffd1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_6a5f911bd906ed6c156f2f9d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_089f5da0802ae2d0cd4d6176.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_3f7367e9bbbe4cbf8d5c0845.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ece0dca7bc0677f2b2444fd3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.401855;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-92.880000px;}
.v2{vertical-align:-90.000000px;}
.v0{vertical-align:0.000000px;}
.ls5a{letter-spacing:-1.512000px;}
.ls17{letter-spacing:-1.008000px;}
.lsf{letter-spacing:-0.792000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls2f{letter-spacing:-0.666000px;}
.ls3f{letter-spacing:-0.576000px;}
.ls1b{letter-spacing:-0.413400px;}
.ls35{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.272400px;}
.ls32{letter-spacing:-0.216000px;}
.ls40{letter-spacing:-0.144000px;}
.ls59{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.053280px;}
.ls31{letter-spacing:0.072000px;}
.lse{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.150000px;}
.ls2a{letter-spacing:0.153360px;}
.ls2c{letter-spacing:0.153600px;}
.ls8{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.ls2d{letter-spacing:0.206400px;}
.ls25{letter-spacing:0.206640px;}
.ls2{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.256200px;}
.ls36{letter-spacing:0.259800px;}
.ls55{letter-spacing:0.259920px;}
.ls21{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.298800px;}
.ls27{letter-spacing:0.326640px;}
.ls7{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls33{letter-spacing:0.504000px;}
.ls20{letter-spacing:0.612000px;}
.lsa{letter-spacing:0.720000px;}
.ls29{letter-spacing:0.773280px;}
.ls30{letter-spacing:0.864000px;}
.ls51{letter-spacing:0.869760px;}
.ls19{letter-spacing:0.900000px;}
.ls12{letter-spacing:0.926640px;}
.ls4d{letter-spacing:1.440000px;}
.ls54{letter-spacing:2.160000px;}
.ls1e{letter-spacing:2.340000px;}
.ls39{letter-spacing:2.880000px;}
.ls16{letter-spacing:3.600000px;}
.lsc{letter-spacing:4.320000px;}
.ls37{letter-spacing:5.040000px;}
.ls3b{letter-spacing:5.760000px;}
.ls34{letter-spacing:6.480000px;}
.ls1d{letter-spacing:7.920000px;}
.ls4a{letter-spacing:8.640000px;}
.ls48{letter-spacing:9.360000px;}
.ls44{letter-spacing:10.080000px;}
.ls53{letter-spacing:10.800000px;}
.ls47{letter-spacing:11.520000px;}
.ls28{letter-spacing:12.420000px;}
.ls41{letter-spacing:12.960000px;}
.ls58{letter-spacing:13.140000px;}
.lsb{letter-spacing:13.680000px;}
.ls46{letter-spacing:14.400000px;}
.ls24{letter-spacing:15.840000px;}
.ls4f{letter-spacing:17.280000px;}
.ls4c{letter-spacing:19.440000px;}
.ls3c{letter-spacing:20.160000px;}
.ls42{letter-spacing:20.280000px;}
.ls3a{letter-spacing:20.880000px;}
.ls2b{letter-spacing:21.060000px;}
.ls38{letter-spacing:21.600000px;}
.ls1c{letter-spacing:22.320000px;}
.ls18{letter-spacing:22.500000px;}
.ls50{letter-spacing:25.200000px;}
.ls56{letter-spacing:27.360000px;}
.ls3e{letter-spacing:28.080000px;}
.ls3d{letter-spacing:30.960000px;}
.ls49{letter-spacing:32.400000px;}
.ls57{letter-spacing:33.300000px;}
.ls45{letter-spacing:33.840000px;}
.ls4e{letter-spacing:34.560000px;}
.ls15{letter-spacing:35.280000px;}
.ls4b{letter-spacing:36.900000px;}
.ls13{letter-spacing:69.444000px;}
.ls10{letter-spacing:82.776000px;}
.ls43{letter-spacing:90.000000px;}
.ls4{letter-spacing:123.444000px;}
.ls23{letter-spacing:134.964000px;}
.ls52{letter-spacing:194.376000px;}
.ls22{letter-spacing:198.000000px;}
.ls3{letter-spacing:209.520000px;}
.ls0{letter-spacing:1224.480000px;}
.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;}
}
.ws12{word-spacing:-18.864000px;}
.ws6{word-spacing:-18.720000px;}
.ws15{word-spacing:-18.504000px;}
.ws1b{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.144000px;}
.ws13{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.928000px;}
.ws18{word-spacing:-17.856000px;}
.ws14{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.208000px;}
.ws1c{word-spacing:-16.488000px;}
.wsb{word-spacing:-15.552000px;}
.ws3{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.226440px;}
.ws17{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.146400px;}
.wsd{word-spacing:-15.093600px;}
.ws7{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.526600px;}
.ws11{word-spacing:-14.274000px;}
.wsc{word-spacing:-14.220000px;}
.wse{word-spacing:-12.060000px;}
.ws19{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._21{margin-left:-7.584000px;}
._15{margin-left:-2.088000px;}
._2{margin-left:-1.008000px;}
._0{width:1.185840px;}
._1{width:2.811840px;}
._13{width:3.813120px;}
._3{width:4.896000px;}
._4{width:6.336000px;}
._f{width:7.523040px;}
._5{width:8.678160px;}
._b{width:10.296000px;}
._7{width:11.520000px;}
._6{width:12.528000px;}
._d{width:14.184000px;}
._e{width:15.336000px;}
._12{width:16.992000px;}
._c{width:19.080000px;}
._8{width:20.304000px;}
._a{width:21.312000px;}
._9{width:22.404000px;}
._10{width:23.580000px;}
._11{width:24.924960px;}
._1e{width:26.496000px;}
._16{width:28.008000px;}
._20{width:29.068320px;}
._1f{width:31.056000px;}
._18{width:32.880000px;}
._17{width:34.128000px;}
._1c{width:35.568000px;}
._1d{width:36.720000px;}
._22{width:37.766160px;}
._14{width:38.808000px;}
._27{width:40.248000px;}
._28{width:41.282160px;}
._1a{width:42.768000px;}
._1b{width:43.776000px;}
._29{width:45.000000px;}
._19{width:46.656000px;}
._2c{width:47.804640px;}
._2b{width:49.032000px;}
._2a{width:50.328000px;}
._2d{width:51.816000px;}
._23{width:59.040000px;}
._2e{width:64.128000px;}
._25{width:65.136000px;}
._26{width:66.384000px;}
._2f{width:90.144000px;}
._30{width:91.656000px;}
._24{width:846.156000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs4{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.240000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.636000px;}
.y2{bottom:77.796000px;}
.y62{bottom:110.016000px;}
.y31{bottom:110.376000px;}
.y61{bottom:116.856000px;}
.y30{bottom:117.936000px;}
.y8b{bottom:125.856000px;}
.y67{bottom:127.296000px;}
.y88{bottom:127.656000px;}
.y60{bottom:128.196000px;}
.y9d{bottom:128.376000px;}
.y2f{bottom:128.556000px;}
.y80{bottom:132.156000px;}
.yaa{bottom:134.136000px;}
.y87{bottom:135.216000px;}
.y66{bottom:144.396000px;}
.y94{bottom:144.756000px;}
.y86{bottom:145.476000px;}
.y8a{bottom:146.376000px;}
.y2e{bottom:147.636000px;}
.y5f{bottom:148.356000px;}
.y65{bottom:151.230000px;}
.y93{bottom:152.310000px;}
.y7f{bottom:154.650000px;}
.ya9{bottom:161.670000px;}
.y90{bottom:162.030000px;}
.y64{bottom:162.570000px;}
.y85{bottom:163.110000px;}
.y92{bottom:163.650000px;}
.y2d{bottom:166.170000px;}
.y8f{bottom:169.590000px;}
.y84{bottom:170.670000px;}
.y5e{bottom:170.850000px;}
.y7e{bottom:177.150000px;}
.ya8{bottom:178.950000px;}
.y8e{bottom:180.930000px;}
.y9c{bottom:181.110000px;}
.y83{bottom:182.010000px;}
.y2c{bottom:184.350000px;}
.ya7{bottom:185.790000px;}
.y5d{bottom:193.350000px;}
.ya6{bottom:196.230000px;}
.y9b{bottom:198.390000px;}
.y7d{bottom:199.650000px;}
.ya5{bottom:203.070000px;}
.ya4{bottom:213.510000px;}
.y9a{bottom:215.670000px;}
.y5c{bottom:215.850000px;}
.y2a{bottom:220.350000px;}
.y7c{bottom:222.150000px;}
.y99{bottom:222.510000px;}
.y2b{bottom:228.630000px;}
.ya3{bottom:230.790000px;}
.yb7{bottom:231.150000px;}
.y98{bottom:233.670000px;}
.y5b{bottom:238.350000px;}
.yb6{bottom:238.710000px;}
.y29{bottom:242.850000px;}
.y7b{bottom:244.650000px;}
.ya2{bottom:247.890000px;}
.yb5{bottom:249.870000px;}
.ya1{bottom:254.730000px;}
.y5a{bottom:260.850000px;}
.yc6{bottom:262.110000px;}
.y28{bottom:265.350000px;}
.ya0{bottom:266.070000px;}
.y7a{bottom:267.150000px;}
.y59{bottom:283.395000px;}
.y27{bottom:287.895000px;}
.y79{bottom:289.695000px;}
.yb4{bottom:291.675000px;}
.y58{bottom:305.895000px;}
.y26{bottom:310.395000px;}
.y78{bottom:312.195000px;}
.y8d{bottom:314.175000px;}
.y57{bottom:328.395000px;}
.y25{bottom:332.895000px;}
.y77{bottom:334.695000px;}
.y56{bottom:350.895000px;}
.y91{bottom:352.515000px;}
.y24{bottom:355.395000px;}
.y76{bottom:357.195000px;}
.y55{bottom:373.395000px;}
.y23{bottom:377.895000px;}
.y75{bottom:379.695000px;}
.y8c{bottom:381.675000px;}
.y54{bottom:395.895000px;}
.y22{bottom:400.395000px;}
.y74{bottom:402.195000px;}
.y53{bottom:418.395000px;}
.y21{bottom:422.895000px;}
.y73{bottom:424.695000px;}
.y52{bottom:440.895000px;}
.y20{bottom:445.395000px;}
.y72{bottom:447.195000px;}
.y97{bottom:449.175000px;}
.y51{bottom:463.395000px;}
.y1f{bottom:467.895000px;}
.y71{bottom:469.695000px;}
.yb8{bottom:471.675000px;}
.y50{bottom:485.895000px;}
.y1e{bottom:490.395000px;}
.y70{bottom:492.195000px;}
.y4f{bottom:508.395000px;}
.y1d{bottom:512.895000px;}
.yb2{bottom:514.695000px;}
.y4e{bottom:530.895000px;}
.y1c{bottom:535.395000px;}
.y6f{bottom:537.195000px;}
.y4d{bottom:553.395000px;}
.y1b{bottom:557.895000px;}
.y6e{bottom:559.695000px;}
.y4c{bottom:575.925000px;}
.y1a{bottom:580.425000px;}
.y6d{bottom:582.225000px;}
.y4b{bottom:598.425000px;}
.y19{bottom:602.925000px;}
.y6c{bottom:604.725000px;}
.y9f{bottom:606.705000px;}
.y4a{bottom:620.925000px;}
.y18{bottom:625.425000px;}
.y6b{bottom:627.225000px;}
.yd7{bottom:642.885000px;}
.y49{bottom:643.425000px;}
.y17{bottom:647.925000px;}
.y6a{bottom:649.725000px;}
.yac{bottom:651.705000px;}
.y48{bottom:665.925000px;}
.yd6{bottom:669.885000px;}
.y16{bottom:670.425000px;}
.y69{bottom:672.225000px;}
.y63{bottom:674.205000px;}
.y47{bottom:688.425000px;}
.yb1{bottom:694.725000px;}
.y46{bottom:710.925000px;}
.yd5{bottom:711.825000px;}
.y68{bottom:712.545000px;}
.y15{bottom:715.425000px;}
.yb0{bottom:717.225000px;}
.y96{bottom:719.205000px;}
.y45{bottom:733.425000px;}
.y14{bottom:737.925000px;}
.yd4{bottom:738.825000px;}
.yaf{bottom:739.725000px;}
.y44{bottom:755.925000px;}
.y13{bottom:760.425000px;}
.yae{bottom:762.225000px;}
.yd3{bottom:765.825000px;}
.y43{bottom:778.425000px;}
.y12{bottom:782.925000px;}
.yc5{bottom:784.725000px;}
.yb3{bottom:786.705000px;}
.yd2{bottom:792.825000px;}
.y42{bottom:800.925000px;}
.yad{bottom:802.185000px;}
.y11{bottom:805.425000px;}
.yc4{bottom:807.225000px;}
.y9e{bottom:809.205000px;}
.yd1{bottom:819.825000px;}
.y41{bottom:823.425000px;}
.y10{bottom:827.925000px;}
.yc3{bottom:829.725000px;}
.y40{bottom:845.970000px;}
.yd0{bottom:846.870000px;}
.yf{bottom:850.470000px;}
.yc2{bottom:852.270000px;}
.y3f{bottom:868.470000px;}
.ye{bottom:872.970000px;}
.ycf{bottom:873.870000px;}
.yc1{bottom:874.770000px;}
.yab{bottom:876.750000px;}
.y3e{bottom:890.970000px;}
.yd{bottom:895.470000px;}
.yc0{bottom:897.270000px;}
.yce{bottom:900.870000px;}
.y3d{bottom:913.470000px;}
.yc{bottom:917.970000px;}
.ybf{bottom:919.770000px;}
.ycd{bottom:927.870000px;}
.y3c{bottom:935.970000px;}
.yb{bottom:940.470000px;}
.ybe{bottom:942.270000px;}
.ycc{bottom:954.870000px;}
.y3b{bottom:958.470000px;}
.ya{bottom:962.970000px;}
.y39{bottom:980.970000px;}
.ycb{bottom:981.870000px;}
.y9{bottom:985.470000px;}
.ybd{bottom:987.270000px;}
.y3a{bottom:989.250000px;}
.y38{bottom:1003.470000px;}
.y8{bottom:1007.970000px;}
.yca{bottom:1008.870000px;}
.ybc{bottom:1009.770000px;}
.y82{bottom:1011.750000px;}
.y37{bottom:1025.970000px;}
.y7{bottom:1030.470000px;}
.ybb{bottom:1032.270000px;}
.yc9{bottom:1035.870000px;}
.y36{bottom:1048.470000px;}
.yba{bottom:1054.770000px;}
.y81{bottom:1056.750000px;}
.yc8{bottom:1062.870000px;}
.y35{bottom:1070.970000px;}
.y6{bottom:1076.190000px;}
.yc7{bottom:1089.870000px;}
.y34{bottom:1093.470000px;}
.yb9{bottom:1094.730000px;}
.y95{bottom:1101.750000px;}
.y5{bottom:1102.650000px;}
.y33{bottom:1115.970000px;}
.y89{bottom:1124.280000px;}
.y4{bottom:1132.560000px;}
.y32{bottom:1138.500000px;}
.y1{bottom:1194.300000px;}
.hd{height:26.521172px;}
.hf{height:38.158594px;}
.h2{height:45.184219px;}
.ha{height:47.344922px;}
.h10{height:52.435898px;}
.hb{height:58.621992px;}
.he{height:58.651172px;}
.h11{height:60.226875px;}
.h8{height:63.175781px;}
.hc{height:64.978594px;}
.h7{height:70.628906px;}
.h6{height:70.664062px;}
.h5{height:72.562500px;}
.h4{height:121.179375px;}
.h3{height:132.789375px;}
.h9{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.416000px;}
.x12{left:111.276000px;}
.x2c{left:116.136000px;}
.x2d{left:117.396000px;}
.xf{left:126.394125px;}
.x10{left:132.516000px;}
.x3c{left:153.388125px;}
.x3{left:159.690000px;}
.x1e{left:163.110000px;}
.x3d{left:165.630000px;}
.x15{left:176.428125px;}
.x2e{left:179.308125px;}
.x16{left:182.550000px;}
.x3e{left:184.348125px;}
.x2f{left:191.550000px;}
.x3f{left:197.490000px;}
.xb{left:212.610000px;}
.x17{left:216.390000px;}
.x36{left:223.048125px;}
.x37{left:235.290000px;}
.xe{left:259.275000px;}
.x9{left:272.055000px;}
.x11{left:322.455000px;}
.x40{left:330.013125px;}
.x30{left:333.793125px;}
.x41{left:342.255000px;}
.x34{left:343.873125px;}
.x31{left:346.035000px;}
.x35{left:356.115000px;}
.x24{left:410.473125px;}
.x25{left:416.625000px;}
.x28{left:452.083125px;}
.x4{left:459.285000px;}
.x29{left:464.325000px;}
.x5{left:473.145000px;}
.x1c{left:481.423125px;}
.x1d{left:487.545000px;}
.x22{left:523.543125px;}
.x23{left:529.665000px;}
.x32{left:544.603125px;}
.x33{left:559.185000px;}
.x38{left:567.103125px;}
.x42{left:569.443125px;}
.x39{left:580.110000px;}
.x43{left:581.730000px;}
.xc{left:602.250000px;}
.x18{left:647.068125px;}
.x20{left:648.868125px;}
.x19{left:653.190000px;}
.x21{left:654.990000px;}
.x8{left:673.170000px;}
.x26{left:679.828125px;}
.xa{left:681.270000px;}
.xd{left:687.210000px;}
.x27{left:692.070000px;}
.x7{left:694.770000px;}
.x1a{left:695.848125px;}
.x1b{left:705.570000px;}
.x2a{left:717.268125px;}
.x2b{left:729.510000px;}
.x3a{left:733.828125px;}
.x3b{left:746.100000px;}
.x1f{left:770.040000px;}
.x13{left:776.338125px;}
.x2{left:778.500000px;}
.x14{left:782.460000px;}
.x6{left:786.780000px;}
@media print{
.v1{vertical-align:-82.560000pt;}
.v2{vertical-align:-80.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls5a{letter-spacing:-1.344000pt;}
.ls17{letter-spacing:-0.896000pt;}
.lsf{letter-spacing:-0.704000pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls2f{letter-spacing:-0.592000pt;}
.ls3f{letter-spacing:-0.512000pt;}
.ls1b{letter-spacing:-0.367467pt;}
.ls35{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.242133pt;}
.ls32{letter-spacing:-0.192000pt;}
.ls40{letter-spacing:-0.128000pt;}
.ls59{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.047360pt;}
.ls31{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.133333pt;}
.ls2a{letter-spacing:0.136320pt;}
.ls2c{letter-spacing:0.136533pt;}
.ls8{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2d{letter-spacing:0.183467pt;}
.ls25{letter-spacing:0.183680pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.227733pt;}
.ls36{letter-spacing:0.230933pt;}
.ls55{letter-spacing:0.231040pt;}
.ls21{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.265600pt;}
.ls27{letter-spacing:0.290347pt;}
.ls7{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls33{letter-spacing:0.448000pt;}
.ls20{letter-spacing:0.544000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.687360pt;}
.ls30{letter-spacing:0.768000pt;}
.ls51{letter-spacing:0.773120pt;}
.ls19{letter-spacing:0.800000pt;}
.ls12{letter-spacing:0.823680pt;}
.ls4d{letter-spacing:1.280000pt;}
.ls54{letter-spacing:1.920000pt;}
.ls1e{letter-spacing:2.080000pt;}
.ls39{letter-spacing:2.560000pt;}
.ls16{letter-spacing:3.200000pt;}
.lsc{letter-spacing:3.840000pt;}
.ls37{letter-spacing:4.480000pt;}
.ls3b{letter-spacing:5.120000pt;}
.ls34{letter-spacing:5.760000pt;}
.ls1d{letter-spacing:7.040000pt;}
.ls4a{letter-spacing:7.680000pt;}
.ls48{letter-spacing:8.320000pt;}
.ls44{letter-spacing:8.960000pt;}
.ls53{letter-spacing:9.600000pt;}
.ls47{letter-spacing:10.240000pt;}
.ls28{letter-spacing:11.040000pt;}
.ls41{letter-spacing:11.520000pt;}
.ls58{letter-spacing:11.680000pt;}
.lsb{letter-spacing:12.160000pt;}
.ls46{letter-spacing:12.800000pt;}
.ls24{letter-spacing:14.080000pt;}
.ls4f{letter-spacing:15.360000pt;}
.ls4c{letter-spacing:17.280000pt;}
.ls3c{letter-spacing:17.920000pt;}
.ls42{letter-spacing:18.026667pt;}
.ls3a{letter-spacing:18.560000pt;}
.ls2b{letter-spacing:18.720000pt;}
.ls38{letter-spacing:19.200000pt;}
.ls1c{letter-spacing:19.840000pt;}
.ls18{letter-spacing:20.000000pt;}
.ls50{letter-spacing:22.400000pt;}
.ls56{letter-spacing:24.320000pt;}
.ls3e{letter-spacing:24.960000pt;}
.ls3d{letter-spacing:27.520000pt;}
.ls49{letter-spacing:28.800000pt;}
.ls57{letter-spacing:29.600000pt;}
.ls45{letter-spacing:30.080000pt;}
.ls4e{letter-spacing:30.720000pt;}
.ls15{letter-spacing:31.360000pt;}
.ls4b{letter-spacing:32.800000pt;}
.ls13{letter-spacing:61.728000pt;}
.ls10{letter-spacing:73.578667pt;}
.ls43{letter-spacing:80.000000pt;}
.ls4{letter-spacing:109.728000pt;}
.ls23{letter-spacing:119.968000pt;}
.ls52{letter-spacing:172.778667pt;}
.ls22{letter-spacing:176.000000pt;}
.ls3{letter-spacing:186.240000pt;}
.ls0{letter-spacing:1088.426667pt;}
.ws12{word-spacing:-16.768000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws15{word-spacing:-16.448000pt;}
.ws1b{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws13{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.936000pt;}
.ws18{word-spacing:-15.872000pt;}
.ws14{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.296000pt;}
.ws1c{word-spacing:-14.656000pt;}
.wsb{word-spacing:-13.824000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.534613pt;}
.ws17{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws16{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.912533pt;}
.ws11{word-spacing:-12.688000pt;}
.wsc{word-spacing:-12.640000pt;}
.wse{word-spacing:-10.720000pt;}
.ws19{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._21{margin-left:-6.741333pt;}
._15{margin-left:-1.856000pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.054080pt;}
._1{width:2.499413pt;}
._13{width:3.389440pt;}
._3{width:4.352000pt;}
._4{width:5.632000pt;}
._f{width:6.687147pt;}
._5{width:7.713920pt;}
._b{width:9.152000pt;}
._7{width:10.240000pt;}
._6{width:11.136000pt;}
._d{width:12.608000pt;}
._e{width:13.632000pt;}
._12{width:15.104000pt;}
._c{width:16.960000pt;}
._8{width:18.048000pt;}
._a{width:18.944000pt;}
._9{width:19.914667pt;}
._10{width:20.960000pt;}
._11{width:22.155520pt;}
._1e{width:23.552000pt;}
._16{width:24.896000pt;}
._20{width:25.838507pt;}
._1f{width:27.605333pt;}
._18{width:29.226667pt;}
._17{width:30.336000pt;}
._1c{width:31.616000pt;}
._1d{width:32.640000pt;}
._22{width:33.569920pt;}
._14{width:34.496000pt;}
._27{width:35.776000pt;}
._28{width:36.695253pt;}
._1a{width:38.016000pt;}
._1b{width:38.912000pt;}
._29{width:40.000000pt;}
._19{width:41.472000pt;}
._2c{width:42.493013pt;}
._2b{width:43.584000pt;}
._2a{width:44.736000pt;}
._2d{width:46.058667pt;}
._23{width:52.480000pt;}
._2e{width:57.002667pt;}
._25{width:57.898667pt;}
._26{width:59.008000pt;}
._2f{width:80.128000pt;}
._30{width:81.472000pt;}
._24{width:752.138667pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.880000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.232000pt;}
.y2{bottom:69.152000pt;}
.y62{bottom:97.792000pt;}
.y31{bottom:98.112000pt;}
.y61{bottom:103.872000pt;}
.y30{bottom:104.832000pt;}
.y8b{bottom:111.872000pt;}
.y67{bottom:113.152000pt;}
.y88{bottom:113.472000pt;}
.y60{bottom:113.952000pt;}
.y9d{bottom:114.112000pt;}
.y2f{bottom:114.272000pt;}
.y80{bottom:117.472000pt;}
.yaa{bottom:119.232000pt;}
.y87{bottom:120.192000pt;}
.y66{bottom:128.352000pt;}
.y94{bottom:128.672000pt;}
.y86{bottom:129.312000pt;}
.y8a{bottom:130.112000pt;}
.y2e{bottom:131.232000pt;}
.y5f{bottom:131.872000pt;}
.y65{bottom:134.426667pt;}
.y93{bottom:135.386667pt;}
.y7f{bottom:137.466667pt;}
.ya9{bottom:143.706667pt;}
.y90{bottom:144.026667pt;}
.y64{bottom:144.506667pt;}
.y85{bottom:144.986667pt;}
.y92{bottom:145.466667pt;}
.y2d{bottom:147.706667pt;}
.y8f{bottom:150.746667pt;}
.y84{bottom:151.706667pt;}
.y5e{bottom:151.866667pt;}
.y7e{bottom:157.466667pt;}
.ya8{bottom:159.066667pt;}
.y8e{bottom:160.826667pt;}
.y9c{bottom:160.986667pt;}
.y83{bottom:161.786667pt;}
.y2c{bottom:163.866667pt;}
.ya7{bottom:165.146667pt;}
.y5d{bottom:171.866667pt;}
.ya6{bottom:174.426667pt;}
.y9b{bottom:176.346667pt;}
.y7d{bottom:177.466667pt;}
.ya5{bottom:180.506667pt;}
.ya4{bottom:189.786667pt;}
.y9a{bottom:191.706667pt;}
.y5c{bottom:191.866667pt;}
.y2a{bottom:195.866667pt;}
.y7c{bottom:197.466667pt;}
.y99{bottom:197.786667pt;}
.y2b{bottom:203.226667pt;}
.ya3{bottom:205.146667pt;}
.yb7{bottom:205.466667pt;}
.y98{bottom:207.706667pt;}
.y5b{bottom:211.866667pt;}
.yb6{bottom:212.186667pt;}
.y29{bottom:215.866667pt;}
.y7b{bottom:217.466667pt;}
.ya2{bottom:220.346667pt;}
.yb5{bottom:222.106667pt;}
.ya1{bottom:226.426667pt;}
.y5a{bottom:231.866667pt;}
.yc6{bottom:232.986667pt;}
.y28{bottom:235.866667pt;}
.ya0{bottom:236.506667pt;}
.y7a{bottom:237.466667pt;}
.y59{bottom:251.906667pt;}
.y27{bottom:255.906667pt;}
.y79{bottom:257.506667pt;}
.yb4{bottom:259.266667pt;}
.y58{bottom:271.906667pt;}
.y26{bottom:275.906667pt;}
.y78{bottom:277.506667pt;}
.y8d{bottom:279.266667pt;}
.y57{bottom:291.906667pt;}
.y25{bottom:295.906667pt;}
.y77{bottom:297.506667pt;}
.y56{bottom:311.906667pt;}
.y91{bottom:313.346667pt;}
.y24{bottom:315.906667pt;}
.y76{bottom:317.506667pt;}
.y55{bottom:331.906667pt;}
.y23{bottom:335.906667pt;}
.y75{bottom:337.506667pt;}
.y8c{bottom:339.266667pt;}
.y54{bottom:351.906667pt;}
.y22{bottom:355.906667pt;}
.y74{bottom:357.506667pt;}
.y53{bottom:371.906667pt;}
.y21{bottom:375.906667pt;}
.y73{bottom:377.506667pt;}
.y52{bottom:391.906667pt;}
.y20{bottom:395.906667pt;}
.y72{bottom:397.506667pt;}
.y97{bottom:399.266667pt;}
.y51{bottom:411.906667pt;}
.y1f{bottom:415.906667pt;}
.y71{bottom:417.506667pt;}
.yb8{bottom:419.266667pt;}
.y50{bottom:431.906667pt;}
.y1e{bottom:435.906667pt;}
.y70{bottom:437.506667pt;}
.y4f{bottom:451.906667pt;}
.y1d{bottom:455.906667pt;}
.yb2{bottom:457.506667pt;}
.y4e{bottom:471.906667pt;}
.y1c{bottom:475.906667pt;}
.y6f{bottom:477.506667pt;}
.y4d{bottom:491.906667pt;}
.y1b{bottom:495.906667pt;}
.y6e{bottom:497.506667pt;}
.y4c{bottom:511.933333pt;}
.y1a{bottom:515.933333pt;}
.y6d{bottom:517.533333pt;}
.y4b{bottom:531.933333pt;}
.y19{bottom:535.933333pt;}
.y6c{bottom:537.533333pt;}
.y9f{bottom:539.293333pt;}
.y4a{bottom:551.933333pt;}
.y18{bottom:555.933333pt;}
.y6b{bottom:557.533333pt;}
.yd7{bottom:571.453333pt;}
.y49{bottom:571.933333pt;}
.y17{bottom:575.933333pt;}
.y6a{bottom:577.533333pt;}
.yac{bottom:579.293333pt;}
.y48{bottom:591.933333pt;}
.yd6{bottom:595.453333pt;}
.y16{bottom:595.933333pt;}
.y69{bottom:597.533333pt;}
.y63{bottom:599.293333pt;}
.y47{bottom:611.933333pt;}
.yb1{bottom:617.533333pt;}
.y46{bottom:631.933333pt;}
.yd5{bottom:632.733333pt;}
.y68{bottom:633.373333pt;}
.y15{bottom:635.933333pt;}
.yb0{bottom:637.533333pt;}
.y96{bottom:639.293333pt;}
.y45{bottom:651.933333pt;}
.y14{bottom:655.933333pt;}
.yd4{bottom:656.733333pt;}
.yaf{bottom:657.533333pt;}
.y44{bottom:671.933333pt;}
.y13{bottom:675.933333pt;}
.yae{bottom:677.533333pt;}
.yd3{bottom:680.733333pt;}
.y43{bottom:691.933333pt;}
.y12{bottom:695.933333pt;}
.yc5{bottom:697.533333pt;}
.yb3{bottom:699.293333pt;}
.yd2{bottom:704.733333pt;}
.y42{bottom:711.933333pt;}
.yad{bottom:713.053333pt;}
.y11{bottom:715.933333pt;}
.yc4{bottom:717.533333pt;}
.y9e{bottom:719.293333pt;}
.yd1{bottom:728.733333pt;}
.y41{bottom:731.933333pt;}
.y10{bottom:735.933333pt;}
.yc3{bottom:737.533333pt;}
.y40{bottom:751.973333pt;}
.yd0{bottom:752.773333pt;}
.yf{bottom:755.973333pt;}
.yc2{bottom:757.573333pt;}
.y3f{bottom:771.973333pt;}
.ye{bottom:775.973333pt;}
.ycf{bottom:776.773333pt;}
.yc1{bottom:777.573333pt;}
.yab{bottom:779.333333pt;}
.y3e{bottom:791.973333pt;}
.yd{bottom:795.973333pt;}
.yc0{bottom:797.573333pt;}
.yce{bottom:800.773333pt;}
.y3d{bottom:811.973333pt;}
.yc{bottom:815.973333pt;}
.ybf{bottom:817.573333pt;}
.ycd{bottom:824.773333pt;}
.y3c{bottom:831.973333pt;}
.yb{bottom:835.973333pt;}
.ybe{bottom:837.573333pt;}
.ycc{bottom:848.773333pt;}
.y3b{bottom:851.973333pt;}
.ya{bottom:855.973333pt;}
.y39{bottom:871.973333pt;}
.ycb{bottom:872.773333pt;}
.y9{bottom:875.973333pt;}
.ybd{bottom:877.573333pt;}
.y3a{bottom:879.333333pt;}
.y38{bottom:891.973333pt;}
.y8{bottom:895.973333pt;}
.yca{bottom:896.773333pt;}
.ybc{bottom:897.573333pt;}
.y82{bottom:899.333333pt;}
.y37{bottom:911.973333pt;}
.y7{bottom:915.973333pt;}
.ybb{bottom:917.573333pt;}
.yc9{bottom:920.773333pt;}
.y36{bottom:931.973333pt;}
.yba{bottom:937.573333pt;}
.y81{bottom:939.333333pt;}
.yc8{bottom:944.773333pt;}
.y35{bottom:951.973333pt;}
.y6{bottom:956.613333pt;}
.yc7{bottom:968.773333pt;}
.y34{bottom:971.973333pt;}
.yb9{bottom:973.093333pt;}
.y95{bottom:979.333333pt;}
.y5{bottom:980.133333pt;}
.y33{bottom:991.973333pt;}
.y89{bottom:999.360000pt;}
.y4{bottom:1006.720000pt;}
.y32{bottom:1012.000000pt;}
.y1{bottom:1061.600000pt;}
.hd{height:23.574375pt;}
.hf{height:33.918750pt;}
.h2{height:40.163750pt;}
.ha{height:42.084375pt;}
.h10{height:46.609688pt;}
.hb{height:52.108438pt;}
.he{height:52.134375pt;}
.h11{height:53.535000pt;}
.h8{height:56.156250pt;}
.hc{height:57.758750pt;}
.h7{height:62.781250pt;}
.h6{height:62.812500pt;}
.h5{height:64.500000pt;}
.h4{height:107.715000pt;}
.h3{height:118.035000pt;}
.h9{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.592000pt;}
.x12{left:98.912000pt;}
.x2c{left:103.232000pt;}
.x2d{left:104.352000pt;}
.xf{left:112.350333pt;}
.x10{left:117.792000pt;}
.x3c{left:136.345000pt;}
.x3{left:141.946667pt;}
.x1e{left:144.986667pt;}
.x3d{left:147.226667pt;}
.x15{left:156.825000pt;}
.x2e{left:159.385000pt;}
.x16{left:162.266667pt;}
.x3e{left:163.865000pt;}
.x2f{left:170.266667pt;}
.x3f{left:175.546667pt;}
.xb{left:188.986667pt;}
.x17{left:192.346667pt;}
.x36{left:198.265000pt;}
.x37{left:209.146667pt;}
.xe{left:230.466667pt;}
.x9{left:241.826667pt;}
.x11{left:286.626667pt;}
.x40{left:293.345000pt;}
.x30{left:296.705000pt;}
.x41{left:304.226667pt;}
.x34{left:305.665000pt;}
.x31{left:307.586667pt;}
.x35{left:316.546667pt;}
.x24{left:364.865000pt;}
.x25{left:370.333333pt;}
.x28{left:401.851667pt;}
.x4{left:408.253333pt;}
.x29{left:412.733333pt;}
.x5{left:420.573333pt;}
.x1c{left:427.931667pt;}
.x1d{left:433.373333pt;}
.x22{left:465.371667pt;}
.x23{left:470.813333pt;}
.x32{left:484.091667pt;}
.x33{left:497.053333pt;}
.x38{left:504.091667pt;}
.x42{left:506.171667pt;}
.x39{left:515.653333pt;}
.x43{left:517.093333pt;}
.xc{left:535.333333pt;}
.x18{left:575.171667pt;}
.x20{left:576.771667pt;}
.x19{left:580.613333pt;}
.x21{left:582.213333pt;}
.x8{left:598.373333pt;}
.x26{left:604.291667pt;}
.xa{left:605.573333pt;}
.xd{left:610.853333pt;}
.x27{left:615.173333pt;}
.x7{left:617.573333pt;}
.x1a{left:618.531667pt;}
.x1b{left:627.173333pt;}
.x2a{left:637.571667pt;}
.x2b{left:648.453333pt;}
.x3a{left:652.291667pt;}
.x3b{left:663.200000pt;}
.x1f{left:684.480000pt;}
.x13{left:690.078333pt;}
.x2{left:692.000000pt;}
.x14{left:695.520000pt;}
.x6{left:699.360000pt;}
}




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