
    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_7993ee011102af60ba1be46d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b623053727deb9478e689478.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.799000;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_d04042e3846cd02cabda3afa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.042000;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_066e4e307f4ec5aaf9ec7430.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897461;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_9e5333ccec254f5293f180c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895508;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_72fc7e5d77860e4fdce317c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.968750;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_b384e7ac178dfe5eb28e6b3e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666016;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_a6138e327ed2d5feba4958d9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689453;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:ffb;src:url('chunks/assets/font_4611e49d51d0ff1e62223e62.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.041000;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:ffc;src:url('chunks/assets/font_31e4cfa7881a7b13c73450a7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.898438;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.v3{vertical-align:37.962000px;}
.v2{vertical-align:67.932000px;}
.ls26{letter-spacing:-6.864000px;}
.ls25{letter-spacing:-6.204000px;}
.lsb{letter-spacing:-5.304000px;}
.ls15{letter-spacing:-2.508000px;}
.lsc{letter-spacing:-2.160000px;}
.ls29{letter-spacing:-2.046000px;}
.ls1e{letter-spacing:-2.040000px;}
.ls24{letter-spacing:-1.716000px;}
.ls23{letter-spacing:-1.650000px;}
.ls27{letter-spacing:-1.188000px;}
.lse{letter-spacing:-1.140000px;}
.ls2{letter-spacing:-1.026000px;}
.ls13{letter-spacing:-0.990000px;}
.ls18{letter-spacing:-0.816000px;}
.ls1f{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.726000px;}
.ls16{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.660000px;}
.lsd{letter-spacing:-0.648000px;}
.ls20{letter-spacing:-0.594000px;}
.ls6{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.528000px;}
.lsf{letter-spacing:-0.465234px;}
.ls2a{letter-spacing:-0.330000px;}
.ls1b{letter-spacing:-0.198000px;}
.ls4{letter-spacing:-0.162000px;}
.ls12{letter-spacing:-0.132000px;}
.ls1a{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.264000px;}
.ls14{letter-spacing:0.330000px;}
.ls17{letter-spacing:0.336000px;}
.ls5{letter-spacing:0.346302px;}
.ls21{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.951456px;}
.ls1c{letter-spacing:0.969000px;}
.ls1{letter-spacing:0.972000px;}
.ls8{letter-spacing:1.020000px;}
.ls19{letter-spacing:1.197000px;}
.ls7{letter-spacing:1.632000px;}
.ls9{letter-spacing:2.040000px;}
.ls28{letter-spacing:2.376000px;}
.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;}
}
.ws6{word-spacing:-25.213584px;}
.ws1d{word-spacing:-18.768000px;}
.ws20{word-spacing:-17.160000px;}
.ws1{word-spacing:-16.254000px;}
.ws1e{word-spacing:-15.444000px;}
.ws1f{word-spacing:-15.048000px;}
.ws18{word-spacing:-14.718000px;}
.ws5{word-spacing:-14.634000px;}
.ws2{word-spacing:-14.364000px;}
.wsf{word-spacing:-14.058000px;}
.ws4{word-spacing:-13.986000px;}
.wse{word-spacing:-13.093014px;}
.ws21{word-spacing:-12.738000px;}
.ws17{word-spacing:-11.856000px;}
.ws3{word-spacing:-8.814960px;}
.ws2e{word-spacing:-6.468000px;}
.ws31{word-spacing:-5.676000px;}
.ws26{word-spacing:-5.346000px;}
.wsc{word-spacing:-2.040000px;}
.ws1b{word-spacing:-1.197000px;}
.ws22{word-spacing:-0.969000px;}
.ws19{word-spacing:-0.336000px;}
.ws15{word-spacing:-0.330000px;}
.ws8{word-spacing:-0.108000px;}
.ws0{word-spacing:0.000000px;}
.ws13{word-spacing:0.132000px;}
.ws1c{word-spacing:0.198000px;}
.ws32{word-spacing:0.330000px;}
.ws9{word-spacing:0.408000px;}
.ws12{word-spacing:0.528000px;}
.ws10{word-spacing:0.648000px;}
.ws23{word-spacing:0.660000px;}
.ws24{word-spacing:0.792000px;}
.ws1a{word-spacing:0.816000px;}
.ws14{word-spacing:0.990000px;}
.wsa{word-spacing:1.020000px;}
.ws7{word-spacing:1.026000px;}
.ws11{word-spacing:1.140000px;}
.ws28{word-spacing:1.650000px;}
.ws29{word-spacing:1.716000px;}
.wsd{word-spacing:2.160000px;}
.ws30{word-spacing:2.178000px;}
.ws16{word-spacing:2.508000px;}
.ws2b{word-spacing:6.204000px;}
.ws2c{word-spacing:6.864000px;}
.wsb{word-spacing:7.344000px;}
.ws2a{word-spacing:13.794000px;}
.ws2f{word-spacing:14.850000px;}
.ws2d{word-spacing:22.836000px;}
.ws33{word-spacing:25.740000px;}
.ws27{word-spacing:31.812000px;}
.ws25{word-spacing:46.002000px;}
._9{margin-left:-9.389400px;}
._8{margin-left:-7.093800px;}
._6{margin-left:-5.875200px;}
._7{margin-left:-4.535400px;}
._4{margin-left:-3.450600px;}
._5{margin-left:-2.208600px;}
._2{margin-left:-1.177200px;}
._3{width:1.146000px;}
._0{width:2.217000px;}
._1{width:3.288000px;}
._a{width:4.339896px;}
._c{width:5.749200px;}
._b{width:6.772800px;}
._10{width:7.832400px;}
._18{width:8.974200px;}
._12{width:10.150800px;}
._13{width:11.207400px;}
._19{width:12.306000px;}
._1d{width:13.715400px;}
._1b{width:15.901800px;}
._1c{width:17.690400px;}
._11{width:19.056600px;}
._1a{width:21.254400px;}
._14{width:23.166000px;}
._15{width:24.240000px;}
._e{width:25.866600px;}
._d{width:27.549000px;}
._f{width:29.462400px;}
._17{width:30.501600px;}
._16{width:31.732800px;}
._22{width:32.953800px;}
._23{width:34.336200px;}
._21{width:35.424000px;}
._1e{width:38.187600px;}
._1f{width:39.235200px;}
._24{width:45.454200px;}
._25{width:46.544400px;}
._20{width:125.633400px;}
.fc2{color:rgb(153,0,0);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:31.482000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fsc{font-size:66.462000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fsb{font-size:114.000000px;}
.fs8{font-size:118.932000px;}
.fs9{font-size:120.000000px;}
.fs7{font-size:204.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:28.931400px;}
.y6{bottom:35.925007px;}
.y30{bottom:45.431400px;}
.y5{bottom:66.525004px;}
.yb3{bottom:85.039350px;}
.y5b{bottom:88.582650px;}
.y4{bottom:97.125005px;}
.yb2{bottom:104.935200px;}
.y80{bottom:108.314100px;}
.y5a{bottom:108.613200px;}
.yb1{bottom:124.831200px;}
.y59{bottom:128.643600px;}
.y7f{bottom:136.549350px;}
.y22{bottom:139.264499px;}
.yc1{bottom:144.727200px;}
.y58{bottom:148.674150px;}
.yb0{bottom:153.231150px;}
.y7e{bottom:156.280650px;}
.y57{bottom:168.704550px;}
.yaf{bottom:173.127150px;}
.y7d{bottom:176.012100px;}
.y56{bottom:188.735100px;}
.yae{bottom:193.023150px;}
.y7c{bottom:195.743400px;}
.y19{bottom:196.933500px;}
.y55{bottom:208.765500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.yad{bottom:212.919150px;}
.y7b{bottom:215.474850px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y54{bottom:228.796050px;}
.yac{bottom:232.815150px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y7a{bottom:235.206150px;}
.y53{bottom:248.826450px;}
.yab{bottom:252.711150px;}
.y79{bottom:254.937600px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y52{bottom:268.857000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.yaa{bottom:272.607150px;}
.y78{bottom:274.668900px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.ya9{bottom:292.503150px;}
.y77{bottom:294.400350px;}
.y51{bottom:297.391350px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.ya8{bottom:312.399150px;}
.y76{bottom:314.131650px;}
.y50{bottom:317.421900px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y2a{bottom:332.215650px;}
.yc0{bottom:332.295000px;}
.y75{bottom:333.863100px;}
.y4f{bottom:337.452450px;}
.ya7{bottom:340.798950px;}
.y10{bottom:348.133500px;}
.ybf{bottom:352.191000px;}
.y4e{bottom:357.482850px;}
.ya6{bottom:360.694950px;}
.y74{bottom:362.098350px;}
.y29{bottom:362.215650px;}
.ybe{bottom:372.087000px;}
.y4d{bottom:377.513400px;}
.ya5{bottom:380.590950px;}
.y73{bottom:381.829800px;}
.yf{bottom:386.785499px;}
.y4c{bottom:397.543800px;}
.y28{bottom:399.715650px;}
.ya4{bottom:400.486950px;}
.y72{bottom:401.561100px;}
.ye{bottom:408.044999px;}
.y4b{bottom:417.574350px;}
.y27{bottom:417.715650px;}
.ya3{bottom:420.382950px;}
.y71{bottom:421.292550px;}
.y26{bottom:435.715650px;}
.y4a{bottom:437.604750px;}
.ya2{bottom:440.278950px;}
.y70{bottom:441.023850px;}
.y49{bottom:457.635300px;}
.ya1{bottom:460.174950px;}
.y6f{bottom:460.755300px;}
.y25{bottom:464.215650px;}
.y48{bottom:477.665700px;}
.ya0{bottom:480.070950px;}
.y6e{bottom:480.486750px;}
.ydb{bottom:480.874050px;}
.y9f{bottom:499.966950px;}
.y6d{bottom:500.218050px;}
.yda{bottom:500.374050px;}
.yd{bottom:502.864502px;}
.y47{bottom:506.200200px;}
.y2e{bottom:512.049900px;}
.y9e{bottom:519.862950px;}
.yd9{bottom:519.874050px;}
.y6c{bottom:519.949350px;}
.yc{bottom:520.864502px;}
.y46{bottom:526.230600px;}
.yb{bottom:538.864499px;}
.yd8{bottom:539.374050px;}
.y6b{bottom:539.680800px;}
.y9d{bottom:539.758950px;}
.y45{bottom:546.261150px;}
.ya{bottom:556.864499px;}
.y6a{bottom:559.412250px;}
.y9c{bottom:559.654950px;}
.y2d{bottom:561.549900px;}
.y44{bottom:566.291700px;}
.yd7{bottom:567.378000px;}
.ybd{bottom:568.158900px;}
.y69{bottom:579.143550px;}
.y9b{bottom:579.550800px;}
.y43{bottom:586.322100px;}
.yd6{bottom:586.878000px;}
.ybc{bottom:588.054900px;}
.y68{bottom:598.874850px;}
.y9a{bottom:599.446950px;}
.y42{bottom:606.352500px;}
.yd5{bottom:606.378000px;}
.ybb{bottom:607.950750px;}
.y2c{bottom:611.049900px;}
.y67{bottom:618.606300px;}
.y99{bottom:619.342800px;}
.yed{bottom:622.438950px;}
.yd4{bottom:625.878000px;}
.y41{bottom:626.383050px;}
.yba{bottom:627.846750px;}
.y66{bottom:638.337750px;}
.y98{bottom:639.238800px;}
.yec{bottom:641.938950px;}
.y9{bottom:645.510000px;}
.y40{bottom:646.413600px;}
.yb9{bottom:647.742750px;}
.yd3{bottom:653.881950px;}
.y65{bottom:658.069050px;}
.y97{bottom:659.134800px;}
.y2b{bottom:660.549900px;}
.yeb{bottom:661.438950px;}
.y3f{bottom:666.444000px;}
.y8{bottom:666.771000px;}
.yb8{bottom:667.638750px;}
.yd2{bottom:673.381950px;}
.y64{bottom:677.800350px;}
.yea{bottom:680.938950px;}
.y3e{bottom:686.474550px;}
.y96{bottom:687.534750px;}
.yd1{bottom:692.881950px;}
.y63{bottom:697.531800px;}
.y3d{bottom:706.505100px;}
.y95{bottom:707.430750px;}
.ye9{bottom:708.942900px;}
.yd0{bottom:712.381950px;}
.y62{bottom:717.263250px;}
.y7{bottom:726.298500px;}
.y94{bottom:727.326750px;}
.ye8{bottom:728.442750px;}
.ycf{bottom:731.881950px;}
.y3c{bottom:735.039450px;}
.y61{bottom:736.994550px;}
.y2f{bottom:737.716500px;}
.y93{bottom:747.222750px;}
.ye7{bottom:747.942750px;}
.y3{bottom:752.599495px;}
.y3b{bottom:755.069850px;}
.y60{bottom:756.726000px;}
.y92{bottom:767.118750px;}
.yce{bottom:770.881950px;}
.y3a{bottom:775.100400px;}
.ye6{bottom:775.946850px;}
.y5f{bottom:776.457300px;}
.y91{bottom:787.014750px;}
.y39{bottom:795.130950px;}
.ye5{bottom:795.446850px;}
.y5e{bottom:796.188750px;}
.y90{bottom:806.910750px;}
.ye4{bottom:814.946850px;}
.y5d{bottom:824.424000px;}
.y8f{bottom:826.806750px;}
.ye3{bottom:834.446850px;}
.y38{bottom:834.661350px;}
.yb7{bottom:835.310700px;}
.y5c{bottom:844.155450px;}
.y8e{bottom:846.702600px;}
.ycd{bottom:851.454600px;}
.yb6{bottom:855.206700px;}
.ye2{bottom:862.450800px;}
.y8d{bottom:866.598600px;}
.ycc{bottom:870.954600px;}
.yb5{bottom:875.102550px;}
.y2{bottom:879.369000px;}
.ye1{bottom:881.950800px;}
.y8c{bottom:886.494750px;}
.ycb{bottom:890.454600px;}
.yb4{bottom:894.998700px;}
.y37{bottom:896.107500px;}
.ye0{bottom:901.450800px;}
.yca{bottom:909.954600px;}
.y8b{bottom:914.894550px;}
.ydf{bottom:920.950800px;}
.y36{bottom:926.107500px;}
.yc9{bottom:929.454600px;}
.y8a{bottom:934.790550px;}
.y24{bottom:946.885050px;}
.yc8{bottom:948.954600px;}
.y89{bottom:954.686550px;}
.y1{bottom:966.726000px;}
.yde{bottom:968.454600px;}
.y35{bottom:973.168200px;}
.y23{bottom:973.388850px;}
.y88{bottom:974.582550px;}
.yc7{bottom:976.958550px;}
.ydd{bottom:987.954600px;}
.y34{bottom:991.168200px;}
.y87{bottom:994.478550px;}
.yc6{bottom:996.458550px;}
.ydc{bottom:1007.454600px;}
.y33{bottom:1009.168200px;}
.y86{bottom:1014.374550px;}
.yc5{bottom:1015.958550px;}
.y32{bottom:1033.168200px;}
.y85{bottom:1034.270550px;}
.yc4{bottom:1035.458550px;}
.y84{bottom:1054.166550px;}
.yc3{bottom:1054.958550px;}
.y83{bottom:1074.062550px;}
.yc2{bottom:1074.458550px;}
.y82{bottom:1093.958550px;}
.y81{bottom:1130.894850px;}
.h7{height:32.130000px;}
.hf{height:40.416000px;}
.hb{height:42.498000px;}
.h11{height:44.589844px;}
.h16{height:44.859000px;}
.ha{height:45.468000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h10{height:48.867188px;}
.h15{height:49.048828px;}
.h2{height:55.080000px;}
.h14{height:69.328125px;}
.h12{height:77.373047px;}
.h5{height:78.030000px;}
.he{height:81.445312px;}
.h13{height:83.070486px;}
.h4{height:119.055004px;}
.hc{height:138.457031px;}
.hd{height:148.652449px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:83.622000px;}
.xa{left:85.393350px;}
.xe{left:86.456700px;}
.x6{left:91.417350px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xb{left:110.905050px;}
.xf{left:111.968550px;}
.x7{left:133.255050px;}
.x8{left:175.500000px;}
.x4{left:203.484001px;}
.x12{left:242.158950px;}
.xd{left:245.529000px;}
.x5{left:246.614100px;}
.x3{left:454.959000px;}
.x10{left:459.566850px;}
.xc{left:480.649350px;}
.x11{left:485.078700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.v3{vertical-align:33.744000pt;}
.v2{vertical-align:60.384000pt;}
.ls26{letter-spacing:-6.101333pt;}
.ls25{letter-spacing:-5.514667pt;}
.lsb{letter-spacing:-4.714667pt;}
.ls15{letter-spacing:-2.229333pt;}
.lsc{letter-spacing:-1.920000pt;}
.ls29{letter-spacing:-1.818667pt;}
.ls1e{letter-spacing:-1.813333pt;}
.ls24{letter-spacing:-1.525333pt;}
.ls23{letter-spacing:-1.466667pt;}
.ls27{letter-spacing:-1.056000pt;}
.lse{letter-spacing:-1.013333pt;}
.ls2{letter-spacing:-0.912000pt;}
.ls13{letter-spacing:-0.880000pt;}
.ls18{letter-spacing:-0.725333pt;}
.ls1f{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.645333pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.586667pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls20{letter-spacing:-0.528000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.469333pt;}
.lsf{letter-spacing:-0.413541pt;}
.ls2a{letter-spacing:-0.293333pt;}
.ls1b{letter-spacing:-0.176000pt;}
.ls4{letter-spacing:-0.144000pt;}
.ls12{letter-spacing:-0.117333pt;}
.ls1a{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.234667pt;}
.ls14{letter-spacing:0.293333pt;}
.ls17{letter-spacing:0.298667pt;}
.ls5{letter-spacing:0.307824pt;}
.ls21{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.845739pt;}
.ls1c{letter-spacing:0.861333pt;}
.ls1{letter-spacing:0.864000pt;}
.ls8{letter-spacing:0.906667pt;}
.ls19{letter-spacing:1.064000pt;}
.ls7{letter-spacing:1.450667pt;}
.ls9{letter-spacing:1.813333pt;}
.ls28{letter-spacing:2.112000pt;}
.ws6{word-spacing:-22.412075pt;}
.ws1d{word-spacing:-16.682667pt;}
.ws20{word-spacing:-15.253333pt;}
.ws1{word-spacing:-14.448000pt;}
.ws1e{word-spacing:-13.728000pt;}
.ws1f{word-spacing:-13.376000pt;}
.ws18{word-spacing:-13.082667pt;}
.ws5{word-spacing:-13.008000pt;}
.ws2{word-spacing:-12.768000pt;}
.wsf{word-spacing:-12.496000pt;}
.ws4{word-spacing:-12.432000pt;}
.wse{word-spacing:-11.638235pt;}
.ws21{word-spacing:-11.322667pt;}
.ws17{word-spacing:-10.538667pt;}
.ws3{word-spacing:-7.835520pt;}
.ws2e{word-spacing:-5.749333pt;}
.ws31{word-spacing:-5.045333pt;}
.ws26{word-spacing:-4.752000pt;}
.wsc{word-spacing:-1.813333pt;}
.ws1b{word-spacing:-1.064000pt;}
.ws22{word-spacing:-0.861333pt;}
.ws19{word-spacing:-0.298667pt;}
.ws15{word-spacing:-0.293333pt;}
.ws8{word-spacing:-0.096000pt;}
.ws0{word-spacing:0.000000pt;}
.ws13{word-spacing:0.117333pt;}
.ws1c{word-spacing:0.176000pt;}
.ws32{word-spacing:0.293333pt;}
.ws9{word-spacing:0.362667pt;}
.ws12{word-spacing:0.469333pt;}
.ws10{word-spacing:0.576000pt;}
.ws23{word-spacing:0.586667pt;}
.ws24{word-spacing:0.704000pt;}
.ws1a{word-spacing:0.725333pt;}
.ws14{word-spacing:0.880000pt;}
.wsa{word-spacing:0.906667pt;}
.ws7{word-spacing:0.912000pt;}
.ws11{word-spacing:1.013333pt;}
.ws28{word-spacing:1.466667pt;}
.ws29{word-spacing:1.525333pt;}
.wsd{word-spacing:1.920000pt;}
.ws30{word-spacing:1.936000pt;}
.ws16{word-spacing:2.229333pt;}
.ws2b{word-spacing:5.514667pt;}
.ws2c{word-spacing:6.101333pt;}
.wsb{word-spacing:6.528000pt;}
.ws2a{word-spacing:12.261333pt;}
.ws2f{word-spacing:13.200000pt;}
.ws2d{word-spacing:20.298667pt;}
.ws33{word-spacing:22.880000pt;}
.ws27{word-spacing:28.277333pt;}
.ws25{word-spacing:40.890667pt;}
._9{margin-left:-8.346133pt;}
._8{margin-left:-6.305600pt;}
._6{margin-left:-5.222400pt;}
._7{margin-left:-4.031467pt;}
._4{margin-left:-3.067200pt;}
._5{margin-left:-1.963200pt;}
._2{margin-left:-1.046400pt;}
._3{width:1.018667pt;}
._0{width:1.970667pt;}
._1{width:2.922667pt;}
._a{width:3.857685pt;}
._c{width:5.110400pt;}
._b{width:6.020267pt;}
._10{width:6.962133pt;}
._18{width:7.977067pt;}
._12{width:9.022933pt;}
._13{width:9.962133pt;}
._19{width:10.938667pt;}
._1d{width:12.191467pt;}
._1b{width:14.134933pt;}
._1c{width:15.724800pt;}
._11{width:16.939200pt;}
._1a{width:18.892800pt;}
._14{width:20.592000pt;}
._15{width:21.546667pt;}
._e{width:22.992533pt;}
._d{width:24.488000pt;}
._f{width:26.188800pt;}
._17{width:27.112533pt;}
._16{width:28.206933pt;}
._22{width:29.292267pt;}
._23{width:30.521067pt;}
._21{width:31.488000pt;}
._1e{width:33.944533pt;}
._1f{width:34.875733pt;}
._24{width:40.403733pt;}
._25{width:41.372800pt;}
._20{width:111.674133pt;}
.fs6{font-size:27.984000pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fsc{font-size:59.077333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fsb{font-size:101.333333pt;}
.fs8{font-size:105.717333pt;}
.fs9{font-size:106.666667pt;}
.fs7{font-size:181.333333pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:25.716800pt;}
.y6{bottom:31.933340pt;}
.y30{bottom:40.383467pt;}
.y5{bottom:59.133337pt;}
.yb3{bottom:75.590533pt;}
.y5b{bottom:78.740133pt;}
.y4{bottom:86.333337pt;}
.yb2{bottom:93.275733pt;}
.y80{bottom:96.279200pt;}
.y5a{bottom:96.545067pt;}
.yb1{bottom:110.961067pt;}
.y59{bottom:114.349867pt;}
.y7f{bottom:121.377200pt;}
.y22{bottom:123.790666pt;}
.yc1{bottom:128.646400pt;}
.y58{bottom:132.154800pt;}
.yb0{bottom:136.205467pt;}
.y7e{bottom:138.916133pt;}
.y57{bottom:149.959600pt;}
.yaf{bottom:153.890800pt;}
.y7d{bottom:156.455200pt;}
.y56{bottom:167.764533pt;}
.yae{bottom:171.576133pt;}
.y7c{bottom:173.994133pt;}
.y19{bottom:175.052000pt;}
.y55{bottom:185.569333pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.yad{bottom:189.261467pt;}
.y7b{bottom:191.533200pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y54{bottom:203.374267pt;}
.yac{bottom:206.946800pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y7a{bottom:209.072133pt;}
.y53{bottom:221.179067pt;}
.yab{bottom:224.632133pt;}
.y79{bottom:226.611200pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y52{bottom:238.984000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.yaa{bottom:242.317467pt;}
.y78{bottom:244.150133pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.ya9{bottom:260.002800pt;}
.y77{bottom:261.689200pt;}
.y51{bottom:264.347867pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.ya8{bottom:277.688133pt;}
.y76{bottom:279.228133pt;}
.y50{bottom:282.152800pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y2a{bottom:295.302800pt;}
.yc0{bottom:295.373333pt;}
.y75{bottom:296.767200pt;}
.y4f{bottom:299.957733pt;}
.ya7{bottom:302.932400pt;}
.y10{bottom:309.452000pt;}
.ybf{bottom:313.058667pt;}
.y4e{bottom:317.762533pt;}
.ya6{bottom:320.617733pt;}
.y74{bottom:321.865200pt;}
.y29{bottom:321.969467pt;}
.ybe{bottom:330.744000pt;}
.y4d{bottom:335.567467pt;}
.ya5{bottom:338.303067pt;}
.y73{bottom:339.404267pt;}
.yf{bottom:343.809333pt;}
.y4c{bottom:353.372267pt;}
.y28{bottom:355.302800pt;}
.ya4{bottom:355.988400pt;}
.y72{bottom:356.943200pt;}
.ye{bottom:362.706666pt;}
.y4b{bottom:371.177200pt;}
.y27{bottom:371.302800pt;}
.ya3{bottom:373.673733pt;}
.y71{bottom:374.482267pt;}
.y26{bottom:387.302800pt;}
.y4a{bottom:388.982000pt;}
.ya2{bottom:391.359067pt;}
.y70{bottom:392.021200pt;}
.y49{bottom:406.786933pt;}
.ya1{bottom:409.044400pt;}
.y6f{bottom:409.560267pt;}
.y25{bottom:412.636133pt;}
.y48{bottom:424.591733pt;}
.ya0{bottom:426.729733pt;}
.y6e{bottom:427.099333pt;}
.ydb{bottom:427.443600pt;}
.y9f{bottom:444.415067pt;}
.y6d{bottom:444.638267pt;}
.yda{bottom:444.776933pt;}
.yd{bottom:446.990669pt;}
.y47{bottom:449.955733pt;}
.y2e{bottom:455.155467pt;}
.y9e{bottom:462.100400pt;}
.yd9{bottom:462.110267pt;}
.y6c{bottom:462.177200pt;}
.yc{bottom:462.990669pt;}
.y46{bottom:467.760533pt;}
.yb{bottom:478.990666pt;}
.yd8{bottom:479.443600pt;}
.y6b{bottom:479.716267pt;}
.y9d{bottom:479.785733pt;}
.y45{bottom:485.565467pt;}
.ya{bottom:494.990666pt;}
.y6a{bottom:497.255333pt;}
.y9c{bottom:497.471067pt;}
.y2d{bottom:499.155467pt;}
.y44{bottom:503.370400pt;}
.yd7{bottom:504.336000pt;}
.ybd{bottom:505.030133pt;}
.y69{bottom:514.794267pt;}
.y9b{bottom:515.156267pt;}
.y43{bottom:521.175200pt;}
.yd6{bottom:521.669333pt;}
.ybc{bottom:522.715467pt;}
.y68{bottom:532.333200pt;}
.y9a{bottom:532.841733pt;}
.y42{bottom:538.980000pt;}
.yd5{bottom:539.002667pt;}
.ybb{bottom:540.400667pt;}
.y2c{bottom:543.155467pt;}
.y67{bottom:549.872267pt;}
.y99{bottom:550.526933pt;}
.yed{bottom:553.279067pt;}
.yd4{bottom:556.336000pt;}
.y41{bottom:556.784933pt;}
.yba{bottom:558.086000pt;}
.y66{bottom:567.411333pt;}
.y98{bottom:568.212267pt;}
.yec{bottom:570.612400pt;}
.y9{bottom:573.786667pt;}
.y40{bottom:574.589867pt;}
.yb9{bottom:575.771333pt;}
.yd3{bottom:581.228400pt;}
.y65{bottom:584.950267pt;}
.y97{bottom:585.897600pt;}
.y2b{bottom:587.155467pt;}
.yeb{bottom:587.945733pt;}
.y3f{bottom:592.394667pt;}
.y8{bottom:592.685334pt;}
.yb8{bottom:593.456667pt;}
.yd2{bottom:598.561733pt;}
.y64{bottom:602.489200pt;}
.yea{bottom:605.279067pt;}
.y3e{bottom:610.199600pt;}
.y96{bottom:611.142000pt;}
.yd1{bottom:615.895067pt;}
.y63{bottom:620.028267pt;}
.y3d{bottom:628.004533pt;}
.y95{bottom:628.827333pt;}
.ye9{bottom:630.171467pt;}
.yd0{bottom:633.228400pt;}
.y62{bottom:637.567333pt;}
.y7{bottom:645.598667pt;}
.y94{bottom:646.512667pt;}
.ye8{bottom:647.504667pt;}
.ycf{bottom:650.561733pt;}
.y3c{bottom:653.368400pt;}
.y61{bottom:655.106267pt;}
.y2f{bottom:655.748000pt;}
.y93{bottom:664.198000pt;}
.ye7{bottom:664.838000pt;}
.y3{bottom:668.977329pt;}
.y3b{bottom:671.173200pt;}
.y60{bottom:672.645333pt;}
.y92{bottom:681.883333pt;}
.yce{bottom:685.228400pt;}
.y3a{bottom:688.978133pt;}
.ye6{bottom:689.730533pt;}
.y5f{bottom:690.184267pt;}
.y91{bottom:699.568667pt;}
.y39{bottom:706.783067pt;}
.ye5{bottom:707.063867pt;}
.y5e{bottom:707.723333pt;}
.y90{bottom:717.254000pt;}
.ye4{bottom:724.397200pt;}
.y5d{bottom:732.821333pt;}
.y8f{bottom:734.939333pt;}
.ye3{bottom:741.730533pt;}
.y38{bottom:741.921200pt;}
.yb7{bottom:742.498400pt;}
.y5c{bottom:750.360400pt;}
.y8e{bottom:752.624533pt;}
.ycd{bottom:756.848533pt;}
.yb6{bottom:760.183733pt;}
.ye2{bottom:766.622933pt;}
.y8d{bottom:770.309867pt;}
.ycc{bottom:774.181867pt;}
.yb5{bottom:777.868933pt;}
.y2{bottom:781.661334pt;}
.ye1{bottom:783.956267pt;}
.y8c{bottom:787.995333pt;}
.ycb{bottom:791.515200pt;}
.yb4{bottom:795.554400pt;}
.y37{bottom:796.540000pt;}
.ye0{bottom:801.289600pt;}
.yca{bottom:808.848533pt;}
.y8b{bottom:813.239600pt;}
.ydf{bottom:818.622933pt;}
.y36{bottom:823.206667pt;}
.yc9{bottom:826.181867pt;}
.y8a{bottom:830.924933pt;}
.y24{bottom:841.675600pt;}
.yc8{bottom:843.515200pt;}
.y89{bottom:848.610267pt;}
.y1{bottom:859.312000pt;}
.yde{bottom:860.848533pt;}
.y35{bottom:865.038400pt;}
.y23{bottom:865.234533pt;}
.y88{bottom:866.295600pt;}
.yc7{bottom:868.407600pt;}
.ydd{bottom:878.181867pt;}
.y34{bottom:881.038400pt;}
.y87{bottom:883.980933pt;}
.yc6{bottom:885.740933pt;}
.ydc{bottom:895.515200pt;}
.y33{bottom:897.038400pt;}
.y86{bottom:901.666267pt;}
.yc5{bottom:903.074267pt;}
.y32{bottom:918.371733pt;}
.y85{bottom:919.351600pt;}
.yc4{bottom:920.407600pt;}
.y84{bottom:937.036933pt;}
.yc3{bottom:937.740933pt;}
.y83{bottom:954.722267pt;}
.yc2{bottom:955.074267pt;}
.y82{bottom:972.407600pt;}
.y81{bottom:1005.239867pt;}
.h7{height:28.560000pt;}
.hf{height:35.925333pt;}
.hb{height:37.776000pt;}
.h11{height:39.635417pt;}
.h16{height:39.874667pt;}
.ha{height:40.416000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h10{height:43.437500pt;}
.h15{height:43.598958pt;}
.h2{height:48.960000pt;}
.h14{height:61.625000pt;}
.h12{height:68.776042pt;}
.h5{height:69.360000pt;}
.he{height:72.395833pt;}
.h13{height:73.840432pt;}
.h4{height:105.826671pt;}
.hc{height:123.072917pt;}
.hd{height:132.135510pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:74.330667pt;}
.xa{left:75.905200pt;}
.xe{left:76.850400pt;}
.x6{left:81.259867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xb{left:98.582267pt;}
.xf{left:99.527600pt;}
.x7{left:118.448933pt;}
.x8{left:156.000000pt;}
.x4{left:180.874667pt;}
.x12{left:215.252400pt;}
.xd{left:218.248000pt;}
.x5{left:219.212533pt;}
.x3{left:404.408000pt;}
.x10{left:408.503867pt;}
.xc{left:427.243867pt;}
.x11{left:431.181067pt;}
}




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