
    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_5b655ce65375a1e6fb893453.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_7fa7c89a70315e5e60ac2614.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887207;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_8c408eaad4eb3fa252be1a5c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_a8a59d08535f1d29672bf996.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111133;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_5a0cf2a52179e1c93e14814e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935059;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_45975fd7f730755af6759d8d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.961000;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_9d5d27a5a3aff314a337bd33.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964000;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_46f7eee00bd115294d84b400.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.985000;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_2ff50bab60716c2bd7de1327.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.967000;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_82f2d635869f968c7694b203.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.110533;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_72e5b5ca65ff6affb974178e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.992000;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_bcb185c785df16f6baa94295.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.957000;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:ffd;src:url('chunks/assets/font_11e744b035057a8b0a189a8e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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:ffe;src:url('chunks/assets/font_ba956a2157191f9c0c5a6bd9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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);}
.v1{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-1.983960px;}
.ls14{letter-spacing:-1.563120px;}
.ls11{letter-spacing:-1.503000px;}
.ls15{letter-spacing:-1.442880px;}
.ls16{letter-spacing:-1.322640px;}
.ls13{letter-spacing:-1.142280px;}
.lsc{letter-spacing:-1.119960px;}
.ls12{letter-spacing:-0.901800px;}
.ls21{letter-spacing:-0.541080px;}
.ls2d{letter-spacing:-0.480960px;}
.ls18{letter-spacing:-0.420840px;}
.ls1e{letter-spacing:-0.360720px;}
.ls20{letter-spacing:-0.300600px;}
.ls1d{letter-spacing:-0.240480px;}
.lsd{letter-spacing:-0.234360px;}
.lsf{letter-spacing:-0.180360px;}
.ls31{letter-spacing:-0.156240px;}
.lsb{letter-spacing:-0.131760px;}
.ls7{letter-spacing:-0.120240px;}
.ls30{letter-spacing:-0.065880px;}
.ls17{letter-spacing:-0.060120px;}
.ls8{letter-spacing:0.000000px;}
.lse{letter-spacing:0.060120px;}
.ls0{letter-spacing:0.078120px;}
.ls10{letter-spacing:0.120240px;}
.ls9{letter-spacing:0.180360px;}
.ls25{letter-spacing:0.541080px;}
.ls2f{letter-spacing:0.553104px;}
.ls27{letter-spacing:4.809600px;}
.ls5{letter-spacing:7.334640px;}
.ls3{letter-spacing:7.695360px;}
.ls4{letter-spacing:7.779528px;}
.ls2e{letter-spacing:8.777520px;}
.ls1{letter-spacing:10.220400px;}
.ls2{letter-spacing:10.581120px;}
.ls1c{letter-spacing:13.106160px;}
.ls23{letter-spacing:14.549040px;}
.ls2a{letter-spacing:14.909760px;}
.lsa{letter-spacing:18.100440px;}
.ls1b{letter-spacing:20.320560px;}
.ls1a{letter-spacing:20.681280px;}
.ls29{letter-spacing:22.448808px;}
.ls2b{letter-spacing:26.092080px;}
.ls2c{letter-spacing:30.060000px;}
.ls6{letter-spacing:31.082040px;}
.ls19{letter-spacing:34.689240px;}
.ls22{letter-spacing:38.296440px;}
.ls24{letter-spacing:62.103960px;}
.ls28{letter-spacing:77.194080px;}
.ls26{letter-spacing:83.025720px;}
.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;}
}
.wsd{word-spacing:-40.853160px;}
.ws26{word-spacing:-21.092400px;}
.ws11{word-spacing:-18.100440px;}
.ws24{word-spacing:-16.352640px;}
.ws3{word-spacing:-16.292520px;}
.ws23{word-spacing:-16.232400px;}
.ws28{word-spacing:-16.172280px;}
.ws27{word-spacing:-16.112160px;}
.ws22{word-spacing:-16.052040px;}
.ws1f{word-spacing:-15.991920px;}
.ws2{word-spacing:-15.877080px;}
.ws19{word-spacing:-14.789520px;}
.ws20{word-spacing:-14.729400px;}
.ws4{word-spacing:-14.669280px;}
.wsc{word-spacing:-14.549040px;}
.ws18{word-spacing:-14.488920px;}
.ws21{word-spacing:-14.428800px;}
.ws6{word-spacing:-13.707360px;}
.ws7{word-spacing:-13.466880px;}
.wsb{word-spacing:-13.286520px;}
.ws9{word-spacing:-13.166280px;}
.ws5{word-spacing:-13.106160px;}
.ws8{word-spacing:-13.046040px;}
.ws10{word-spacing:-0.180360px;}
.ws29{word-spacing:-0.131760px;}
.ws16{word-spacing:-0.120240px;}
.ws13{word-spacing:-0.078120px;}
.ws1{word-spacing:-0.060120px;}
.wsf{word-spacing:0.000000px;}
.ws0{word-spacing:0.060120px;}
.wse{word-spacing:0.120240px;}
.ws2a{word-spacing:0.131760px;}
.ws15{word-spacing:0.180360px;}
.ws14{word-spacing:0.234360px;}
.ws1a{word-spacing:0.240480px;}
.ws1d{word-spacing:0.300600px;}
.ws2b{word-spacing:0.312480px;}
.ws1b{word-spacing:0.360720px;}
.ws17{word-spacing:0.420840px;}
.ws25{word-spacing:0.480960px;}
.ws1e{word-spacing:0.541080px;}
.ws12{word-spacing:1.119960px;}
.wsa{word-spacing:1.382760px;}
.ws1c{word-spacing:1.983960px;}
._1f{margin-left:-14.242428px;}
._1e{margin-left:-12.943836px;}
._6{margin-left:-3.961908px;}
._5{margin-left:-2.945880px;}
._3{margin-left:-1.533060px;}
._0{width:1.052100px;}
._7{width:2.621232px;}
._9{width:3.715416px;}
._f{width:5.116212px;}
._e{width:6.162300px;}
._d{width:7.220412px;}
._21{width:8.272512px;}
._13{width:9.348660px;}
._8{width:10.551060px;}
._c{width:11.627208px;}
._11{width:12.877704px;}
._17{width:16.532532px;}
._4{width:17.651700px;}
._10{width:19.316556px;}
._22{width:20.374668px;}
._12{width:21.565044px;}
._a{width:23.482872px;}
._1c{width:24.847596px;}
._1d{width:26.518932px;}
._19{width:27.577044px;}
._24{width:28.641168px;}
._2d{width:29.873628px;}
._14{width:31.033944px;}
._20{width:32.603076px;}
._37{width:33.859584px;}
._31{width:34.899660px;}
._15{width:36.053964px;}
._16{width:37.520892px;}
._34{width:38.801448px;}
._26{width:40.232304px;}
._25{width:41.374584px;}
._2b{width:44.566956px;}
._23{width:47.200212px;}
._1b{width:49.496796px;}
._1a{width:51.336468px;}
._2c{width:52.911612px;}
._2a{width:54.558900px;}
._29{width:55.629036px;}
._35{width:58.063896px;}
._39{width:59.188140px;}
._36{width:62.723196px;}
._2f{width:64.190124px;}
._b{width:65.356452px;}
._30{width:75.961620px;}
._27{width:79.214112px;}
._2e{width:86.693040px;}
._28{width:92.662956px;}
._3b{width:107.392356px;}
._18{width:158.253876px;}
._32{width:169.033392px;}
._1{width:204.257700px;}
._3a{width:629.877240px;}
._33{width:631.320120px;}
._2{width:633.484440px;}
._38{width:636.670800px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs3{font-size:78.120000px;}
.fs1{font-size:132.120000px;}
.fs4{font-size:168.120000px;}
.fs5{font-size:285.120000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:5.760000px;}
.y34{bottom:106.551000px;}
.y4b{bottom:106.671240px;}
.y8d{bottom:109.273050px;}
.yf9{bottom:109.543590px;}
.yc3{bottom:109.558620px;}
.y33{bottom:126.435690px;}
.y4a{bottom:126.555930px;}
.y81{bottom:128.880000px;}
.y8c{bottom:129.157740px;}
.yf8{bottom:129.428280px;}
.yc2{bottom:129.443310px;}
.y32{bottom:146.230200px;}
.y49{bottom:146.350440px;}
.y80{bottom:148.770000px;}
.y8b{bottom:149.042430px;}
.yf7{bottom:149.312970px;}
.yc1{bottom:149.328000px;}
.y31{bottom:166.114890px;}
.y48{bottom:166.235130px;}
.y7f{bottom:168.660000px;}
.y8a{bottom:168.927120px;}
.yf6{bottom:169.197660px;}
.yc0{bottom:169.212690px;}
.y30{bottom:185.999580px;}
.y47{bottom:186.119820px;}
.y7e{bottom:188.460000px;}
.y89{bottom:188.721630px;}
.yf5{bottom:188.992170px;}
.ybf{bottom:189.007200px;}
.y2f{bottom:205.884270px;}
.y46{bottom:206.004510px;}
.y7d{bottom:208.350000px;}
.y88{bottom:208.606320px;}
.yf4{bottom:208.876860px;}
.ybe{bottom:208.891890px;}
.y2e{bottom:225.768960px;}
.y45{bottom:225.889200px;}
.y7c{bottom:228.240000px;}
.y87{bottom:228.491010px;}
.yf3{bottom:228.761550px;}
.ybd{bottom:228.776580px;}
.y2d{bottom:245.653650px;}
.y44{bottom:245.773890px;}
.y7b{bottom:248.130000px;}
.y86{bottom:248.375700px;}
.yf2{bottom:248.646240px;}
.ybc{bottom:248.661270px;}
.y2c{bottom:265.448160px;}
.y43{bottom:265.568400px;}
.y7a{bottom:268.020000px;}
.y85{bottom:268.260390px;}
.yf1{bottom:268.530930px;}
.ybb{bottom:268.545960px;}
.y2b{bottom:285.332850px;}
.y42{bottom:285.453090px;}
.y79{bottom:287.910000px;}
.y84{bottom:288.145080px;}
.yf0{bottom:288.415620px;}
.yba{bottom:288.430650px;}
.y2a{bottom:305.217540px;}
.y41{bottom:305.337780px;}
.y78{bottom:307.710000px;}
.y83{bottom:307.939590px;}
.yef{bottom:308.210130px;}
.yb9{bottom:308.225160px;}
.y29{bottom:325.102230px;}
.y40{bottom:325.222470px;}
.y77{bottom:327.600000px;}
.y82{bottom:327.824280px;}
.yee{bottom:328.094820px;}
.yb8{bottom:328.109850px;}
.y28{bottom:344.986920px;}
.y3f{bottom:345.107160px;}
.y76{bottom:347.708970px;}
.yed{bottom:347.979510px;}
.yb7{bottom:347.994540px;}
.y27{bottom:364.871610px;}
.y3e{bottom:364.991850px;}
.y75{bottom:367.593660px;}
.yec{bottom:367.864200px;}
.yb6{bottom:367.879230px;}
.y11d{bottom:377.349390px;}
.y26{bottom:384.666120px;}
.y3d{bottom:384.786360px;}
.y74{bottom:387.478350px;}
.yeb{bottom:387.748890px;}
.yb5{bottom:387.763920px;}
.y11c{bottom:397.234080px;}
.y25{bottom:404.550810px;}
.y3c{bottom:404.671050px;}
.y73{bottom:407.363040px;}
.yea{bottom:407.633580px;}
.yb4{bottom:407.648610px;}
.y11b{bottom:417.118770px;}
.y24{bottom:424.435500px;}
.y3b{bottom:424.555740px;}
.y72{bottom:427.157550px;}
.ye9{bottom:427.428090px;}
.yb3{bottom:427.443120px;}
.y11a{bottom:437.003460px;}
.y23{bottom:444.320190px;}
.y3a{bottom:444.440430px;}
.y71{bottom:447.042240px;}
.ye8{bottom:447.312780px;}
.yb2{bottom:447.327810px;}
.y119{bottom:456.888150px;}
.y22{bottom:464.204880px;}
.y39{bottom:464.325120px;}
.y70{bottom:466.926930px;}
.ye7{bottom:467.197470px;}
.yb1{bottom:467.212500px;}
.y118{bottom:476.682660px;}
.y21{bottom:484.089570px;}
.y38{bottom:484.209810px;}
.y6f{bottom:486.811620px;}
.ye6{bottom:487.082160px;}
.yb0{bottom:487.097190px;}
.y117{bottom:496.567350px;}
.y20{bottom:503.884080px;}
.y37{bottom:504.004320px;}
.y6e{bottom:506.696310px;}
.ye5{bottom:506.966850px;}
.yaf{bottom:506.981880px;}
.y116{bottom:516.452040px;}
.y4c{bottom:519.390000px;}
.y1f{bottom:523.768770px;}
.y36{bottom:523.889010px;}
.y6d{bottom:526.581000px;}
.ye4{bottom:526.851540px;}
.yae{bottom:526.866570px;}
.y115{bottom:536.336730px;}
.y1e{bottom:543.653460px;}
.y35{bottom:543.773700px;}
.y6c{bottom:546.375510px;}
.ye3{bottom:546.646050px;}
.yad{bottom:546.661080px;}
.y114{bottom:556.221420px;}
.y1d{bottom:563.538150px;}
.y6b{bottom:566.260200px;}
.ye2{bottom:566.530740px;}
.yac{bottom:566.545770px;}
.y113{bottom:576.106110px;}
.y1c{bottom:583.422840px;}
.y6a{bottom:586.144890px;}
.ye1{bottom:586.415430px;}
.yab{bottom:586.430460px;}
.y112{bottom:595.900620px;}
.y1b{bottom:603.307530px;}
.y69{bottom:606.029580px;}
.ye0{bottom:606.300120px;}
.yaa{bottom:606.315150px;}
.y111{bottom:615.785310px;}
.y1a{bottom:623.102040px;}
.y68{bottom:625.914270px;}
.ydf{bottom:626.184810px;}
.ya9{bottom:626.199840px;}
.y110{bottom:635.670000px;}
.y19{bottom:642.986730px;}
.y67{bottom:645.798960px;}
.yde{bottom:646.069500px;}
.ya8{bottom:646.084530px;}
.y10f{bottom:656.803620px;}
.y18{bottom:662.871420px;}
.y66{bottom:665.593470px;}
.ydd{bottom:665.864010px;}
.ya7{bottom:665.879040px;}
.y10e{bottom:682.641810px;}
.y17{bottom:682.756110px;}
.y65{bottom:685.478160px;}
.ydc{bottom:685.748700px;}
.ya6{bottom:685.763730px;}
.y16{bottom:702.640800px;}
.y64{bottom:705.362850px;}
.ydb{bottom:705.633390px;}
.ya5{bottom:705.648420px;}
.y10d{bottom:708.480000px;}
.y15{bottom:722.525490px;}
.y63{bottom:725.247540px;}
.yda{bottom:725.518080px;}
.ya4{bottom:725.533110px;}
.y10c{bottom:733.399200px;}
.y14{bottom:742.320000px;}
.y62{bottom:745.132230px;}
.yd9{bottom:745.402770px;}
.ya3{bottom:745.417800px;}
.y10b{bottom:755.271360px;}
.y13{bottom:763.453620px;}
.y61{bottom:765.016920px;}
.yd8{bottom:765.287460px;}
.ya2{bottom:765.302490px;}
.y10a{bottom:777.143520px;}
.y60{bottom:784.811430px;}
.yd7{bottom:785.081970px;}
.ya1{bottom:785.097000px;}
.y12{bottom:789.291810px;}
.y109{bottom:799.015680px;}
.y5f{bottom:804.696120px;}
.yd6{bottom:804.966660px;}
.ya0{bottom:804.981690px;}
.y11{bottom:815.130000px;}
.y108{bottom:820.887840px;}
.y5e{bottom:824.580810px;}
.yd5{bottom:824.851350px;}
.y9f{bottom:824.866380px;}
.y10{bottom:840.047040px;}
.y107{bottom:842.760000px;}
.y5d{bottom:844.465500px;}
.yd4{bottom:844.736040px;}
.y9e{bottom:844.751070px;}
.yf{bottom:861.919200px;}
.y5c{bottom:864.350190px;}
.y106{bottom:864.395280px;}
.yd3{bottom:864.620730px;}
.y9d{bottom:864.635760px;}
.ye{bottom:883.791360px;}
.y5b{bottom:884.234880px;}
.y105{bottom:884.279970px;}
.yd2{bottom:884.505420px;}
.y9c{bottom:884.520450px;}
.y5a{bottom:904.029390px;}
.y104{bottom:904.074480px;}
.yd1{bottom:904.299930px;}
.y9b{bottom:904.314960px;}
.yd{bottom:905.663520px;}
.y59{bottom:923.914080px;}
.yd0{bottom:924.184620px;}
.y9a{bottom:924.199650px;}
.yc{bottom:927.535680px;}
.y58{bottom:943.798770px;}
.ycf{bottom:944.069310px;}
.y99{bottom:944.084340px;}
.yb{bottom:949.407840px;}
.y57{bottom:963.683460px;}
.yce{bottom:963.954000px;}
.y98{bottom:963.969030px;}
.ya{bottom:971.280000px;}
.y56{bottom:983.568150px;}
.y103{bottom:983.628270px;}
.ycd{bottom:983.838690px;}
.y97{bottom:983.853720px;}
.y9{bottom:992.790000px;}
.y55{bottom:1003.452840px;}
.y102{bottom:1003.512960px;}
.ycc{bottom:1003.723380px;}
.y96{bottom:1003.738410px;}
.y7{bottom:1012.860000px;}
.y8{bottom:1023.030000px;}
.y54{bottom:1023.247350px;}
.y101{bottom:1023.307470px;}
.ycb{bottom:1023.517890px;}
.y95{bottom:1023.532920px;}
.y53{bottom:1043.132040px;}
.y100{bottom:1043.192160px;}
.yca{bottom:1043.402580px;}
.y94{bottom:1043.417610px;}
.y6{bottom:1048.774230px;}
.y52{bottom:1063.016730px;}
.yff{bottom:1063.076850px;}
.yc9{bottom:1063.287270px;}
.y93{bottom:1063.302300px;}
.y5{bottom:1068.658920px;}
.y51{bottom:1082.901420px;}
.yfe{bottom:1082.961540px;}
.yc8{bottom:1083.171960px;}
.y92{bottom:1083.186990px;}
.y4{bottom:1084.230000px;}
.y50{bottom:1102.786110px;}
.yfd{bottom:1102.846230px;}
.yc7{bottom:1103.056650px;}
.y91{bottom:1103.071680px;}
.y4f{bottom:1122.670800px;}
.yfc{bottom:1122.730920px;}
.y3{bottom:1122.750000px;}
.yc6{bottom:1122.941340px;}
.y90{bottom:1122.956370px;}
.y4e{bottom:1142.465310px;}
.yfb{bottom:1142.525430px;}
.yc5{bottom:1142.735850px;}
.y8f{bottom:1142.750880px;}
.y2{bottom:1162.350000px;}
.yfa{bottom:1162.410120px;}
.yc4{bottom:1162.620540px;}
.y8e{bottom:1162.635570px;}
.y1{bottom:1194.030000px;}
.h6{height:31.590000px;}
.hc{height:39.780000px;}
.h2{height:42.213164px;}
.h5{height:45.210240px;}
.hb{height:45.811440px;}
.hf{height:49.541760px;}
.h9{height:50.200560px;}
.h3{height:52.973736px;}
.he{height:53.839464px;}
.h7{height:58.049064px;}
.h10{height:58.746240px;}
.h8{height:58.997736px;}
.ha{height:69.959064px;}
.h4{height:95.799902px;}
.hd{height:233.228736px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w3{width:30.150000px;}
.w2{width:50.310000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:42.210000px;}
.x1{left:85.050000px;}
.xc{left:95.021910px;}
.x3{left:101.610000px;}
.x11{left:106.384950px;}
.xa{left:114.835320px;}
.x19{left:120.960000px;}
.xf{left:125.454690px;}
.x17{left:126.906840px;}
.x16{left:141.301620px;}
.xe{left:157.230000px;}
.x1a{left:178.124310px;}
.x10{left:295.287570px;}
.x8{left:313.200000px;}
.x1b{left:316.806840px;}
.x15{left:318.420000px;}
.x5{left:326.160000px;}
.xd{left:345.234150px;}
.x18{left:349.927110px;}
.x7{left:384.570000px;}
.x9{left:390.773700px;}
.xb{left:446.475240px;}
.x2{left:457.110000px;}
.x12{left:473.086890px;}
.x13{left:494.414460px;}
.x14{left:596.641140px;}
.x4{left:807.930000px;}
@media print{
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-1.763520pt;}
.ls14{letter-spacing:-1.389440pt;}
.ls11{letter-spacing:-1.336000pt;}
.ls15{letter-spacing:-1.282560pt;}
.ls16{letter-spacing:-1.175680pt;}
.ls13{letter-spacing:-1.015360pt;}
.lsc{letter-spacing:-0.995520pt;}
.ls12{letter-spacing:-0.801600pt;}
.ls21{letter-spacing:-0.480960pt;}
.ls2d{letter-spacing:-0.427520pt;}
.ls18{letter-spacing:-0.374080pt;}
.ls1e{letter-spacing:-0.320640pt;}
.ls20{letter-spacing:-0.267200pt;}
.ls1d{letter-spacing:-0.213760pt;}
.lsd{letter-spacing:-0.208320pt;}
.lsf{letter-spacing:-0.160320pt;}
.ls31{letter-spacing:-0.138880pt;}
.lsb{letter-spacing:-0.117120pt;}
.ls7{letter-spacing:-0.106880pt;}
.ls30{letter-spacing:-0.058560pt;}
.ls17{letter-spacing:-0.053440pt;}
.ls8{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.053440pt;}
.ls0{letter-spacing:0.069440pt;}
.ls10{letter-spacing:0.106880pt;}
.ls9{letter-spacing:0.160320pt;}
.ls25{letter-spacing:0.480960pt;}
.ls2f{letter-spacing:0.491648pt;}
.ls27{letter-spacing:4.275200pt;}
.ls5{letter-spacing:6.519680pt;}
.ls3{letter-spacing:6.840320pt;}
.ls4{letter-spacing:6.915136pt;}
.ls2e{letter-spacing:7.802240pt;}
.ls1{letter-spacing:9.084800pt;}
.ls2{letter-spacing:9.405440pt;}
.ls1c{letter-spacing:11.649920pt;}
.ls23{letter-spacing:12.932480pt;}
.ls2a{letter-spacing:13.253120pt;}
.lsa{letter-spacing:16.089280pt;}
.ls1b{letter-spacing:18.062720pt;}
.ls1a{letter-spacing:18.383360pt;}
.ls29{letter-spacing:19.954496pt;}
.ls2b{letter-spacing:23.192960pt;}
.ls2c{letter-spacing:26.720000pt;}
.ls6{letter-spacing:27.628480pt;}
.ls19{letter-spacing:30.834880pt;}
.ls22{letter-spacing:34.041280pt;}
.ls24{letter-spacing:55.203520pt;}
.ls28{letter-spacing:68.616960pt;}
.ls26{letter-spacing:73.800640pt;}
.wsd{word-spacing:-36.313920pt;}
.ws26{word-spacing:-18.748800pt;}
.ws11{word-spacing:-16.089280pt;}
.ws24{word-spacing:-14.535680pt;}
.ws3{word-spacing:-14.482240pt;}
.ws23{word-spacing:-14.428800pt;}
.ws28{word-spacing:-14.375360pt;}
.ws27{word-spacing:-14.321920pt;}
.ws22{word-spacing:-14.268480pt;}
.ws1f{word-spacing:-14.215040pt;}
.ws2{word-spacing:-14.112960pt;}
.ws19{word-spacing:-13.146240pt;}
.ws20{word-spacing:-13.092800pt;}
.ws4{word-spacing:-13.039360pt;}
.wsc{word-spacing:-12.932480pt;}
.ws18{word-spacing:-12.879040pt;}
.ws21{word-spacing:-12.825600pt;}
.ws6{word-spacing:-12.184320pt;}
.ws7{word-spacing:-11.970560pt;}
.wsb{word-spacing:-11.810240pt;}
.ws9{word-spacing:-11.703360pt;}
.ws5{word-spacing:-11.649920pt;}
.ws8{word-spacing:-11.596480pt;}
.ws10{word-spacing:-0.160320pt;}
.ws29{word-spacing:-0.117120pt;}
.ws16{word-spacing:-0.106880pt;}
.ws13{word-spacing:-0.069440pt;}
.ws1{word-spacing:-0.053440pt;}
.wsf{word-spacing:0.000000pt;}
.ws0{word-spacing:0.053440pt;}
.wse{word-spacing:0.106880pt;}
.ws2a{word-spacing:0.117120pt;}
.ws15{word-spacing:0.160320pt;}
.ws14{word-spacing:0.208320pt;}
.ws1a{word-spacing:0.213760pt;}
.ws1d{word-spacing:0.267200pt;}
.ws2b{word-spacing:0.277760pt;}
.ws1b{word-spacing:0.320640pt;}
.ws17{word-spacing:0.374080pt;}
.ws25{word-spacing:0.427520pt;}
.ws1e{word-spacing:0.480960pt;}
.ws12{word-spacing:0.995520pt;}
.wsa{word-spacing:1.229120pt;}
.ws1c{word-spacing:1.763520pt;}
._1f{margin-left:-12.659936pt;}
._1e{margin-left:-11.505632pt;}
._6{margin-left:-3.521696pt;}
._5{margin-left:-2.618560pt;}
._3{margin-left:-1.362720pt;}
._0{width:0.935200pt;}
._7{width:2.329984pt;}
._9{width:3.302592pt;}
._f{width:4.547744pt;}
._e{width:5.477600pt;}
._d{width:6.418144pt;}
._21{width:7.353344pt;}
._13{width:8.309920pt;}
._8{width:9.378720pt;}
._c{width:10.335296pt;}
._11{width:11.446848pt;}
._17{width:14.695584pt;}
._4{width:15.690400pt;}
._10{width:17.170272pt;}
._22{width:18.110816pt;}
._12{width:19.168928pt;}
._a{width:20.873664pt;}
._1c{width:22.086752pt;}
._1d{width:23.572384pt;}
._19{width:24.512928pt;}
._24{width:25.458816pt;}
._2d{width:26.554336pt;}
._14{width:27.585728pt;}
._20{width:28.980512pt;}
._37{width:30.097408pt;}
._31{width:31.021920pt;}
._15{width:32.047968pt;}
._16{width:33.351904pt;}
._34{width:34.490176pt;}
._26{width:35.762048pt;}
._25{width:36.777408pt;}
._2b{width:39.615072pt;}
._23{width:41.955744pt;}
._1b{width:43.997152pt;}
._1a{width:45.632416pt;}
._2c{width:47.032544pt;}
._2a{width:48.496800pt;}
._29{width:49.448032pt;}
._35{width:51.612352pt;}
._39{width:52.611680pt;}
._36{width:55.753952pt;}
._2f{width:57.057888pt;}
._b{width:58.094624pt;}
._30{width:67.521440pt;}
._27{width:70.412544pt;}
._2e{width:77.060480pt;}
._28{width:82.367072pt;}
._3b{width:95.459872pt;}
._18{width:140.670112pt;}
._32{width:150.251904pt;}
._1{width:181.562400pt;}
._3a{width:559.890880pt;}
._33{width:561.173440pt;}
._2{width:563.097280pt;}
._38{width:565.929600pt;}
.fs0{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs3{font-size:69.440000pt;}
.fs1{font-size:117.440000pt;}
.fs4{font-size:149.440000pt;}
.fs5{font-size:253.440000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:5.120000pt;}
.y34{bottom:94.712000pt;}
.y4b{bottom:94.818880pt;}
.y8d{bottom:97.131600pt;}
.yf9{bottom:97.372080pt;}
.yc3{bottom:97.385440pt;}
.y33{bottom:112.387280pt;}
.y4a{bottom:112.494160pt;}
.y81{bottom:114.560000pt;}
.y8c{bottom:114.806880pt;}
.yf8{bottom:115.047360pt;}
.yc2{bottom:115.060720pt;}
.y32{bottom:129.982400pt;}
.y49{bottom:130.089280pt;}
.y80{bottom:132.240000pt;}
.y8b{bottom:132.482160pt;}
.yf7{bottom:132.722640pt;}
.yc1{bottom:132.736000pt;}
.y31{bottom:147.657680pt;}
.y48{bottom:147.764560pt;}
.y7f{bottom:149.920000pt;}
.y8a{bottom:150.157440pt;}
.yf6{bottom:150.397920pt;}
.yc0{bottom:150.411280pt;}
.y30{bottom:165.332960pt;}
.y47{bottom:165.439840pt;}
.y7e{bottom:167.520000pt;}
.y89{bottom:167.752560pt;}
.yf5{bottom:167.993040pt;}
.ybf{bottom:168.006400pt;}
.y2f{bottom:183.008240pt;}
.y46{bottom:183.115120pt;}
.y7d{bottom:185.200000pt;}
.y88{bottom:185.427840pt;}
.yf4{bottom:185.668320pt;}
.ybe{bottom:185.681680pt;}
.y2e{bottom:200.683520pt;}
.y45{bottom:200.790400pt;}
.y7c{bottom:202.880000pt;}
.y87{bottom:203.103120pt;}
.yf3{bottom:203.343600pt;}
.ybd{bottom:203.356960pt;}
.y2d{bottom:218.358800pt;}
.y44{bottom:218.465680pt;}
.y7b{bottom:220.560000pt;}
.y86{bottom:220.778400pt;}
.yf2{bottom:221.018880pt;}
.ybc{bottom:221.032240pt;}
.y2c{bottom:235.953920pt;}
.y43{bottom:236.060800pt;}
.y7a{bottom:238.240000pt;}
.y85{bottom:238.453680pt;}
.yf1{bottom:238.694160pt;}
.ybb{bottom:238.707520pt;}
.y2b{bottom:253.629200pt;}
.y42{bottom:253.736080pt;}
.y79{bottom:255.920000pt;}
.y84{bottom:256.128960pt;}
.yf0{bottom:256.369440pt;}
.yba{bottom:256.382800pt;}
.y2a{bottom:271.304480pt;}
.y41{bottom:271.411360pt;}
.y78{bottom:273.520000pt;}
.y83{bottom:273.724080pt;}
.yef{bottom:273.964560pt;}
.yb9{bottom:273.977920pt;}
.y29{bottom:288.979760pt;}
.y40{bottom:289.086640pt;}
.y77{bottom:291.200000pt;}
.y82{bottom:291.399360pt;}
.yee{bottom:291.639840pt;}
.yb8{bottom:291.653200pt;}
.y28{bottom:306.655040pt;}
.y3f{bottom:306.761920pt;}
.y76{bottom:309.074640pt;}
.yed{bottom:309.315120pt;}
.yb7{bottom:309.328480pt;}
.y27{bottom:324.330320pt;}
.y3e{bottom:324.437200pt;}
.y75{bottom:326.749920pt;}
.yec{bottom:326.990400pt;}
.yb6{bottom:327.003760pt;}
.y11d{bottom:335.421680pt;}
.y26{bottom:341.925440pt;}
.y3d{bottom:342.032320pt;}
.y74{bottom:344.425200pt;}
.yeb{bottom:344.665680pt;}
.yb5{bottom:344.679040pt;}
.y11c{bottom:353.096960pt;}
.y25{bottom:359.600720pt;}
.y3c{bottom:359.707600pt;}
.y73{bottom:362.100480pt;}
.yea{bottom:362.340960pt;}
.yb4{bottom:362.354320pt;}
.y11b{bottom:370.772240pt;}
.y24{bottom:377.276000pt;}
.y3b{bottom:377.382880pt;}
.y72{bottom:379.695600pt;}
.ye9{bottom:379.936080pt;}
.yb3{bottom:379.949440pt;}
.y11a{bottom:388.447520pt;}
.y23{bottom:394.951280pt;}
.y3a{bottom:395.058160pt;}
.y71{bottom:397.370880pt;}
.ye8{bottom:397.611360pt;}
.yb2{bottom:397.624720pt;}
.y119{bottom:406.122800pt;}
.y22{bottom:412.626560pt;}
.y39{bottom:412.733440pt;}
.y70{bottom:415.046160pt;}
.ye7{bottom:415.286640pt;}
.yb1{bottom:415.300000pt;}
.y118{bottom:423.717920pt;}
.y21{bottom:430.301840pt;}
.y38{bottom:430.408720pt;}
.y6f{bottom:432.721440pt;}
.ye6{bottom:432.961920pt;}
.yb0{bottom:432.975280pt;}
.y117{bottom:441.393200pt;}
.y20{bottom:447.896960pt;}
.y37{bottom:448.003840pt;}
.y6e{bottom:450.396720pt;}
.ye5{bottom:450.637200pt;}
.yaf{bottom:450.650560pt;}
.y116{bottom:459.068480pt;}
.y4c{bottom:461.680000pt;}
.y1f{bottom:465.572240pt;}
.y36{bottom:465.679120pt;}
.y6d{bottom:468.072000pt;}
.ye4{bottom:468.312480pt;}
.yae{bottom:468.325840pt;}
.y115{bottom:476.743760pt;}
.y1e{bottom:483.247520pt;}
.y35{bottom:483.354400pt;}
.y6c{bottom:485.667120pt;}
.ye3{bottom:485.907600pt;}
.yad{bottom:485.920960pt;}
.y114{bottom:494.419040pt;}
.y1d{bottom:500.922800pt;}
.y6b{bottom:503.342400pt;}
.ye2{bottom:503.582880pt;}
.yac{bottom:503.596240pt;}
.y113{bottom:512.094320pt;}
.y1c{bottom:518.598080pt;}
.y6a{bottom:521.017680pt;}
.ye1{bottom:521.258160pt;}
.yab{bottom:521.271520pt;}
.y112{bottom:529.689440pt;}
.y1b{bottom:536.273360pt;}
.y69{bottom:538.692960pt;}
.ye0{bottom:538.933440pt;}
.yaa{bottom:538.946800pt;}
.y111{bottom:547.364720pt;}
.y1a{bottom:553.868480pt;}
.y68{bottom:556.368240pt;}
.ydf{bottom:556.608720pt;}
.ya9{bottom:556.622080pt;}
.y110{bottom:565.040000pt;}
.y19{bottom:571.543760pt;}
.y67{bottom:574.043520pt;}
.yde{bottom:574.284000pt;}
.ya8{bottom:574.297360pt;}
.y10f{bottom:583.825440pt;}
.y18{bottom:589.219040pt;}
.y66{bottom:591.638640pt;}
.ydd{bottom:591.879120pt;}
.ya7{bottom:591.892480pt;}
.y10e{bottom:606.792720pt;}
.y17{bottom:606.894320pt;}
.y65{bottom:609.313920pt;}
.ydc{bottom:609.554400pt;}
.ya6{bottom:609.567760pt;}
.y16{bottom:624.569600pt;}
.y64{bottom:626.989200pt;}
.ydb{bottom:627.229680pt;}
.ya5{bottom:627.243040pt;}
.y10d{bottom:629.760000pt;}
.y15{bottom:642.244880pt;}
.y63{bottom:644.664480pt;}
.yda{bottom:644.904960pt;}
.ya4{bottom:644.918320pt;}
.y10c{bottom:651.910400pt;}
.y14{bottom:659.840000pt;}
.y62{bottom:662.339760pt;}
.yd9{bottom:662.580240pt;}
.ya3{bottom:662.593600pt;}
.y10b{bottom:671.352320pt;}
.y13{bottom:678.625440pt;}
.y61{bottom:680.015040pt;}
.yd8{bottom:680.255520pt;}
.ya2{bottom:680.268880pt;}
.y10a{bottom:690.794240pt;}
.y60{bottom:697.610160pt;}
.yd7{bottom:697.850640pt;}
.ya1{bottom:697.864000pt;}
.y12{bottom:701.592720pt;}
.y109{bottom:710.236160pt;}
.y5f{bottom:715.285440pt;}
.yd6{bottom:715.525920pt;}
.ya0{bottom:715.539280pt;}
.y11{bottom:724.560000pt;}
.y108{bottom:729.678080pt;}
.y5e{bottom:732.960720pt;}
.yd5{bottom:733.201200pt;}
.y9f{bottom:733.214560pt;}
.y10{bottom:746.708480pt;}
.y107{bottom:749.120000pt;}
.y5d{bottom:750.636000pt;}
.yd4{bottom:750.876480pt;}
.y9e{bottom:750.889840pt;}
.yf{bottom:766.150400pt;}
.y5c{bottom:768.311280pt;}
.y106{bottom:768.351360pt;}
.yd3{bottom:768.551760pt;}
.y9d{bottom:768.565120pt;}
.ye{bottom:785.592320pt;}
.y5b{bottom:785.986560pt;}
.y105{bottom:786.026640pt;}
.yd2{bottom:786.227040pt;}
.y9c{bottom:786.240400pt;}
.y5a{bottom:803.581680pt;}
.y104{bottom:803.621760pt;}
.yd1{bottom:803.822160pt;}
.y9b{bottom:803.835520pt;}
.yd{bottom:805.034240pt;}
.y59{bottom:821.256960pt;}
.yd0{bottom:821.497440pt;}
.y9a{bottom:821.510800pt;}
.yc{bottom:824.476160pt;}
.y58{bottom:838.932240pt;}
.ycf{bottom:839.172720pt;}
.y99{bottom:839.186080pt;}
.yb{bottom:843.918080pt;}
.y57{bottom:856.607520pt;}
.yce{bottom:856.848000pt;}
.y98{bottom:856.861360pt;}
.ya{bottom:863.360000pt;}
.y56{bottom:874.282800pt;}
.y103{bottom:874.336240pt;}
.ycd{bottom:874.523280pt;}
.y97{bottom:874.536640pt;}
.y9{bottom:882.480000pt;}
.y55{bottom:891.958080pt;}
.y102{bottom:892.011520pt;}
.ycc{bottom:892.198560pt;}
.y96{bottom:892.211920pt;}
.y7{bottom:900.320000pt;}
.y8{bottom:909.360000pt;}
.y54{bottom:909.553200pt;}
.y101{bottom:909.606640pt;}
.ycb{bottom:909.793680pt;}
.y95{bottom:909.807040pt;}
.y53{bottom:927.228480pt;}
.y100{bottom:927.281920pt;}
.yca{bottom:927.468960pt;}
.y94{bottom:927.482320pt;}
.y6{bottom:932.243760pt;}
.y52{bottom:944.903760pt;}
.yff{bottom:944.957200pt;}
.yc9{bottom:945.144240pt;}
.y93{bottom:945.157600pt;}
.y5{bottom:949.919040pt;}
.y51{bottom:962.579040pt;}
.yfe{bottom:962.632480pt;}
.yc8{bottom:962.819520pt;}
.y92{bottom:962.832880pt;}
.y4{bottom:963.760000pt;}
.y50{bottom:980.254320pt;}
.yfd{bottom:980.307760pt;}
.yc7{bottom:980.494800pt;}
.y91{bottom:980.508160pt;}
.y4f{bottom:997.929600pt;}
.yfc{bottom:997.983040pt;}
.y3{bottom:998.000000pt;}
.yc6{bottom:998.170080pt;}
.y90{bottom:998.183440pt;}
.y4e{bottom:1015.524720pt;}
.yfb{bottom:1015.578160pt;}
.yc5{bottom:1015.765200pt;}
.y8f{bottom:1015.778560pt;}
.y2{bottom:1033.200000pt;}
.yfa{bottom:1033.253440pt;}
.yc4{bottom:1033.440480pt;}
.y8e{bottom:1033.453840pt;}
.y1{bottom:1061.360000pt;}
.h6{height:28.080000pt;}
.hc{height:35.360000pt;}
.h2{height:37.522812pt;}
.h5{height:40.186880pt;}
.hb{height:40.721280pt;}
.hf{height:44.037120pt;}
.h9{height:44.622720pt;}
.h3{height:47.087765pt;}
.he{height:47.857301pt;}
.h7{height:51.599168pt;}
.h10{height:52.218880pt;}
.h8{height:52.442432pt;}
.ha{height:62.185835pt;}
.h4{height:85.155469pt;}
.hd{height:207.314432pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w3{width:26.800000pt;}
.w2{width:44.720000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:37.520000pt;}
.x1{left:75.600000pt;}
.xc{left:84.463920pt;}
.x3{left:90.320000pt;}
.x11{left:94.564400pt;}
.xa{left:102.075840pt;}
.x19{left:107.520000pt;}
.xf{left:111.515280pt;}
.x17{left:112.806080pt;}
.x16{left:125.601440pt;}
.xe{left:139.760000pt;}
.x1a{left:158.332720pt;}
.x10{left:262.477840pt;}
.x8{left:278.400000pt;}
.x1b{left:281.606080pt;}
.x15{left:283.040000pt;}
.x5{left:289.920000pt;}
.xd{left:306.874800pt;}
.x18{left:311.046320pt;}
.x7{left:341.840000pt;}
.x9{left:347.354400pt;}
.xb{left:396.866880pt;}
.x2{left:406.320000pt;}
.x12{left:420.521680pt;}
.x13{left:439.479520pt;}
.x14{left:530.347680pt;}
.x4{left:718.160000pt;}
}




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