
    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_4d1a6873f7bc80df0a5cb955.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_247b7e498eeeef3846b96afe.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_8f860ed7356599ced5549192.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_525c689c767da2e293d602b4.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_c1beb86b761626fdedd21e0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116211;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_73fb6f126912270beb282f40.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.764000;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_de7f55c328f53a7f70249bb1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c4170d3098c300892e2f8dd8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c719ea540cc607b821c08b9c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ab50fe718dfbc8078ebbe468.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.974000;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_efdc0ff42e469f430570a166.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.712000;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_bee5cbf3a67447625c9533a1.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_aa9e96cd778ee0144ec576cb.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_e49775981a5d0d3dc9a42c2d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.684082;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:fff;src:url('chunks/assets/font_0258faaea0cb93dc75a5f9a9.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7356e44f4a618155bd2a0603.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_7872a1dd75fd55b417e5932d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.912109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-20.880000px;}
.v1{vertical-align:-15.120000px;}
.v2{vertical-align:-6.133320px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v5{vertical-align:27.000000px;}
.ls2a{letter-spacing:-3.787560px;}
.ls29{letter-spacing:-2.705400px;}
.ls20{letter-spacing:-1.623240px;}
.ls1e{letter-spacing:-0.901800px;}
.ls1f{letter-spacing:-0.541080px;}
.ls10{letter-spacing:-0.480960px;}
.ls1b{letter-spacing:-0.468000px;}
.ls28{letter-spacing:-0.420840px;}
.ls1a{letter-spacing:-0.360720px;}
.ls1c{letter-spacing:-0.300600px;}
.ls11{letter-spacing:-0.240480px;}
.lsb{letter-spacing:-0.234360px;}
.lsd{letter-spacing:-0.180360px;}
.ls8{letter-spacing:-0.131760px;}
.ls5{letter-spacing:-0.120240px;}
.ls19{letter-spacing:-0.108000px;}
.ls35{letter-spacing:-0.078120px;}
.ls34{letter-spacing:-0.065880px;}
.lse{letter-spacing:-0.060120px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.060120px;}
.ls32{letter-spacing:0.065880px;}
.lsa{letter-spacing:0.078120px;}
.ls4{letter-spacing:0.090720px;}
.lsf{letter-spacing:0.120240px;}
.ls33{letter-spacing:0.131760px;}
.ls21{letter-spacing:0.150300px;}
.ls27{letter-spacing:0.156312px;}
.ls16{letter-spacing:0.164880px;}
.ls2c{letter-spacing:0.172044px;}
.ls1d{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.180360px;}
.ls9{letter-spacing:0.197640px;}
.ls30{letter-spacing:0.480960px;}
.ls17{letter-spacing:0.841680px;}
.ls2d{letter-spacing:1.208412px;}
.ls31{letter-spacing:1.995984px;}
.ls2e{letter-spacing:3.006000px;}
.ls3{letter-spacing:5.170320px;}
.ls26{letter-spacing:5.891760px;}
.ls24{letter-spacing:11.302560px;}
.ls14{letter-spacing:13.827600px;}
.ls7{letter-spacing:17.968320px;}
.ls1{letter-spacing:21.763440px;}
.ls13{letter-spacing:24.258420px;}
.ls25{letter-spacing:24.649200px;}
.ls2f{letter-spacing:30.060000px;}
.ls22{letter-spacing:31.442760px;}
.ls23{letter-spacing:31.803480px;}
.ls2{letter-spacing:62.103960px;}
.ls2b{letter-spacing:62.164080px;}
.ls12{letter-spacing:83.025720px;}
.ls15{letter-spacing:123.787080px;}
.ls18{letter-spacing:848.954520px;}
.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;}
}
.ws9{word-spacing:-17.968320px;}
.ws29{word-spacing:-17.919360px;}
.ws1c{word-spacing:-16.412760px;}
.ws25{word-spacing:-16.352640px;}
.ws1b{word-spacing:-16.292520px;}
.ws1a{word-spacing:-16.172280px;}
.ws2a{word-spacing:-16.112160px;}
.ws1d{word-spacing:-14.789520px;}
.ws18{word-spacing:-14.729400px;}
.ws19{word-spacing:-14.669280px;}
.ws2{word-spacing:-14.609160px;}
.ws17{word-spacing:-14.549040px;}
.ws4{word-spacing:-14.488920px;}
.ws3{word-spacing:-14.428800px;}
.ws6{word-spacing:-14.368680px;}
.ws26{word-spacing:-14.308560px;}
.ws15{word-spacing:-14.248440px;}
.ws14{word-spacing:-8.748000px;}
.ws16{word-spacing:-8.280000px;}
.ws11{word-spacing:-0.240480px;}
.wsb{word-spacing:-0.197640px;}
.wse{word-spacing:-0.180360px;}
.ws20{word-spacing:-0.180000px;}
.wsf{word-spacing:-0.120240px;}
.wsc{word-spacing:-0.078120px;}
.ws1{word-spacing:-0.060120px;}
.ws13{word-spacing:-0.036000px;}
.ws8{word-spacing:0.000000px;}
.ws0{word-spacing:0.060120px;}
.ws2b{word-spacing:0.065880px;}
.ws12{word-spacing:0.072000px;}
.ws24{word-spacing:0.108000px;}
.ws7{word-spacing:0.120240px;}
.wsa{word-spacing:0.131760px;}
.ws10{word-spacing:0.180360px;}
.wsd{word-spacing:0.234360px;}
.ws1f{word-spacing:0.300600px;}
.ws1e{word-spacing:0.360720px;}
.ws2c{word-spacing:0.390600px;}
.ws5{word-spacing:0.420840px;}
.ws22{word-spacing:0.541080px;}
.ws21{word-spacing:0.901800px;}
.ws23{word-spacing:1.623240px;}
.ws27{word-spacing:2.705400px;}
.ws28{word-spacing:3.787560px;}
._16{margin-left:-3.841668px;}
._11{margin-left:-2.837664px;}
._4{margin-left:-1.393200px;}
._0{width:1.052100px;}
._8{width:2.398788px;}
._9{width:3.595176px;}
._5{width:5.481360px;}
._e{width:6.486948px;}
._d{width:7.737444px;}
._10{width:9.072108px;}
._7{width:10.723824px;}
._6{width:11.894580px;}
._15{width:13.136220px;}
._f{width:15.895728px;}
._3{width:17.400204px;}
._1a{width:18.781488px;}
._1d{width:19.937160px;}
._c{width:21.737808px;}
._14{width:23.591088px;}
._b{width:25.304508px;}
._a{width:26.440776px;}
._13{width:28.629144px;}
._20{width:30.172644px;}
._23{width:31.863600px;}
._1c{width:33.607080px;}
._22{width:35.446752px;}
._19{width:36.733320px;}
._28{width:39.330504px;}
._1f{width:40.797432px;}
._1e{width:41.843520px;}
._25{width:44.218260px;}
._26{width:63.126000px;}
._24{width:81.564804px;}
._12{width:86.632920px;}
._18{width:108.113796px;}
._1b{width:119.103732px;}
._1{width:204.257700px;}
._17{width:819.014760px;}
._27{width:822.261240px;}
._21{width:824.425560px;}
._2{width:844.084800px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.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:272.880000px;}
.y0{bottom:0.000000px;}
.y91{bottom:4.320000px;}
.y4d{bottom:5.760000px;}
.y90{bottom:24.210000px;}
.y4b{bottom:107.595000px;}
.y107{bottom:122.850000px;}
.ydc{bottom:123.079590px;}
.y33{bottom:123.361470px;}
.y4a{bottom:128.381490px;}
.y106{bottom:142.740000px;}
.ydb{bottom:142.964280px;}
.y32{bottom:144.238140px;}
.y49{bottom:149.258160px;}
.y13c{bottom:152.762040px;}
.ya8{bottom:154.620900px;}
.y105{bottom:162.630000px;}
.yda{bottom:162.848970px;}
.y31{bottom:165.114810px;}
.y48{bottom:170.134830px;}
.y13b{bottom:172.646730px;}
.y9f{bottom:174.563280px;}
.y104{bottom:182.520000px;}
.yd9{bottom:182.733660px;}
.y30{bottom:185.991480px;}
.y47{bottom:191.011500px;}
.y13a{bottom:192.531420px;}
.y9e{bottom:194.447970px;}
.y103{bottom:202.410000px;}
.yd8{bottom:202.618350px;}
.y2f{bottom:206.868150px;}
.y46{bottom:211.888170px;}
.y139{bottom:212.325930px;}
.ya7{bottom:214.311420px;}
.y9d{bottom:214.332660px;}
.y102{bottom:222.210000px;}
.yd7{bottom:222.412860px;}
.y2e{bottom:227.744820px;}
.y138{bottom:232.210620px;}
.y45{bottom:232.764840px;}
.ya6{bottom:234.196110px;}
.y9c{bottom:234.217350px;}
.y101{bottom:242.100000px;}
.yd6{bottom:242.297550px;}
.y2d{bottom:248.531310px;}
.y137{bottom:252.095310px;}
.y44{bottom:253.641510px;}
.ya5{bottom:254.080800px;}
.y9b{bottom:254.102040px;}
.y100{bottom:261.990000px;}
.yd5{bottom:262.182240px;}
.y2c{bottom:269.407980px;}
.y136{bottom:271.980000px;}
.ya4{bottom:273.965490px;}
.y9a{bottom:273.986730px;}
.y43{bottom:274.518180px;}
.yff{bottom:281.880000px;}
.yd4{bottom:282.066930px;}
.y2b{bottom:289.292670px;}
.y135{bottom:293.121810px;}
.y99{bottom:293.781240px;}
.ya3{bottom:293.826330px;}
.y42{bottom:295.304670px;}
.yfe{bottom:301.770000px;}
.yd3{bottom:301.951620px;}
.y2a{bottom:309.177360px;}
.y98{bottom:313.665930px;}
.ya2{bottom:313.711020px;}
.y41{bottom:316.181340px;}
.y134{bottom:318.960000px;}
.yfd{bottom:321.681420px;}
.yd2{bottom:321.836310px;}
.y29{bottom:329.062050px;}
.y97{bottom:333.550620px;}
.ya1{bottom:333.595710px;}
.y40{bottom:337.058010px;}
.yfc{bottom:341.475930px;}
.yd1{bottom:341.630820px;}
.y133{bottom:343.875060px;}
.y28{bottom:348.946740px;}
.y96{bottom:353.435310px;}
.ya0{bottom:353.480400px;}
.y3f{bottom:357.934680px;}
.yfb{bottom:361.360620px;}
.yd0{bottom:361.515510px;}
.y132{bottom:365.747220px;}
.y27{bottom:368.831430px;}
.y95{bottom:373.320000px;}
.y3e{bottom:378.811350px;}
.yfa{bottom:381.245310px;}
.ycf{bottom:381.400200px;}
.y131{bottom:387.619380px;}
.y26{bottom:388.716120px;}
.y94{bottom:389.610000px;}
.y3d{bottom:399.688020px;}
.yf9{bottom:401.130000px;}
.yce{bottom:401.284890px;}
.y25{bottom:408.510630px;}
.y130{bottom:409.491540px;}
.y93{bottom:410.220000px;}
.y3c{bottom:420.564690px;}
.ycd{bottom:421.169580px;}
.yf8{bottom:421.395030px;}
.y24{bottom:428.395320px;}
.y8f{bottom:430.830000px;}
.y12f{bottom:431.363700px;}
.ycc{bottom:441.054270px;}
.yf7{bottom:441.279720px;}
.y3b{bottom:441.441360px;}
.y92{bottom:445.140000px;}
.y8e{bottom:445.355550px;}
.y23{bottom:448.280010px;}
.y12e{bottom:453.137040px;}
.ycb{bottom:460.848780px;}
.yf6{bottom:461.074230px;}
.y3a{bottom:462.227850px;}
.y22{bottom:468.164700px;}
.y12d{bottom:475.009200px;}
.y8d{bottom:475.866450px;}
.yca{bottom:480.733470px;}
.yf5{bottom:480.958920px;}
.y39{bottom:483.104520px;}
.y21{bottom:488.049390px;}
.y8c{bottom:495.751140px;}
.y12c{bottom:496.881360px;}
.yc9{bottom:500.618160px;}
.yf4{bottom:500.843610px;}
.y38{bottom:503.981190px;}
.y20{bottom:507.934080px;}
.y8b{bottom:515.635830px;}
.y12b{bottom:518.753520px;}
.yc8{bottom:520.502850px;}
.yf3{bottom:520.728300px;}
.y37{bottom:524.857860px;}
.y1f{bottom:527.728590px;}
.y6b{bottom:536.407290px;}
.y8a{bottom:536.512500px;}
.yc7{bottom:540.387540px;}
.yf2{bottom:540.612990px;}
.y12a{bottom:540.625680px;}
.y36{bottom:545.734530px;}
.y1e{bottom:547.613280px;}
.y6a{bottom:557.283960px;}
.y89{bottom:557.389170px;}
.yc6{bottom:560.272230px;}
.yf1{bottom:560.497680px;}
.y129{bottom:562.497840px;}
.y4c{bottom:563.130000px;}
.y35{bottom:566.611200px;}
.y1d{bottom:567.497970px;}
.y69{bottom:578.070450px;}
.y88{bottom:578.175660px;}
.yc5{bottom:580.066740px;}
.yf0{bottom:580.292190px;}
.y128{bottom:584.370000px;}
.y1c{bottom:587.382660px;}
.y34{bottom:587.487870px;}
.y68{bottom:598.947120px;}
.y87{bottom:599.052330px;}
.yc4{bottom:599.951430px;}
.yef{bottom:600.176880px;}
.y127{bottom:605.880000px;}
.y1b{bottom:607.267350px;}
.y67{bottom:619.823790px;}
.yc3{bottom:619.836120px;}
.y86{bottom:619.929000px;}
.yee{bottom:620.061570px;}
.y122{bottom:625.770000px;}
.y1a{bottom:627.152040px;}
.yc2{bottom:639.720810px;}
.yed{bottom:639.946260px;}
.y66{bottom:640.700460px;}
.y85{bottom:640.805670px;}
.y121{bottom:645.660000px;}
.y19{bottom:646.946550px;}
.yc1{bottom:659.605500px;}
.yec{bottom:659.830950px;}
.y65{bottom:661.577130px;}
.y84{bottom:661.682340px;}
.y120{bottom:665.460000px;}
.y18{bottom:666.831240px;}
.yc0{bottom:679.490190px;}
.yeb{bottom:679.715640px;}
.y64{bottom:682.453800px;}
.y83{bottom:682.559010px;}
.y11f{bottom:685.350000px;}
.y17{bottom:686.715930px;}
.ybf{bottom:699.284700px;}
.yea{bottom:699.510150px;}
.y63{bottom:703.330470px;}
.y82{bottom:703.435680px;}
.y11e{bottom:705.240000px;}
.y16{bottom:706.600620px;}
.ybe{bottom:719.169390px;}
.ye9{bottom:719.394840px;}
.y62{bottom:724.207140px;}
.y81{bottom:724.312350px;}
.y11d{bottom:725.130000px;}
.y15{bottom:726.485310px;}
.ybd{bottom:739.054080px;}
.ye8{bottom:739.279530px;}
.y61{bottom:744.993630px;}
.y11c{bottom:745.020000px;}
.y80{bottom:745.098840px;}
.y14{bottom:746.370000px;}
.ybc{bottom:758.938770px;}
.ye7{bottom:759.164220px;}
.y11b{bottom:764.910000px;}
.y60{bottom:765.870300px;}
.y7f{bottom:765.975510px;}
.y13{bottom:767.433690px;}
.ybb{bottom:778.823460px;}
.ye6{bottom:779.048910px;}
.y11a{bottom:784.710000px;}
.y5f{bottom:786.746970px;}
.y7e{bottom:786.852180px;}
.y12{bottom:793.350000px;}
.yba{bottom:798.708150px;}
.ye5{bottom:798.933600px;}
.y119{bottom:804.600000px;}
.y5e{bottom:807.623640px;}
.y7d{bottom:807.728850px;}
.y11{bottom:818.273700px;}
.yb9{bottom:818.502660px;}
.ye4{bottom:818.728110px;}
.y126{bottom:824.490000px;}
.y118{bottom:824.505930px;}
.y5d{bottom:828.500310px;}
.y7c{bottom:828.605520px;}
.yb8{bottom:838.387350px;}
.ye3{bottom:838.612800px;}
.y10{bottom:840.047040px;}
.y125{bottom:844.380000px;}
.y117{bottom:844.390620px;}
.y5c{bottom:849.376980px;}
.y7b{bottom:849.482190px;}
.yb7{bottom:858.272040px;}
.ye2{bottom:858.497490px;}
.yf{bottom:861.919200px;}
.y124{bottom:864.270000px;}
.y116{bottom:864.275310px;}
.y5b{bottom:870.253650px;}
.y7a{bottom:870.358860px;}
.yb6{bottom:878.156730px;}
.ye1{bottom:878.382180px;}
.ye{bottom:883.791360px;}
.y123{bottom:884.160000px;}
.y115{bottom:884.165490px;}
.y5a{bottom:891.130320px;}
.y79{bottom:891.235530px;}
.yb5{bottom:898.041420px;}
.ye0{bottom:898.266870px;}
.y114{bottom:903.960000px;}
.yd{bottom:905.663520px;}
.y59{bottom:911.916810px;}
.y78{bottom:912.022020px;}
.yb4{bottom:917.926110px;}
.ydf{bottom:918.151560px;}
.y113{bottom:923.850000px;}
.yc{bottom:927.535680px;}
.y58{bottom:932.793480px;}
.y77{bottom:932.898690px;}
.yb3{bottom:937.720620px;}
.yde{bottom:937.946070px;}
.y112{bottom:943.740000px;}
.yb{bottom:949.407840px;}
.y57{bottom:953.670150px;}
.y76{bottom:953.775360px;}
.yb2{bottom:957.605310px;}
.ydd{bottom:957.830760px;}
.y111{bottom:963.630000px;}
.ya{bottom:971.280000px;}
.y56{bottom:974.546820px;}
.y75{bottom:974.652030px;}
.yb1{bottom:977.490000px;}
.y110{bottom:983.520000px;}
.y9{bottom:992.790000px;}
.yb0{bottom:993.780000px;}
.y55{bottom:995.423490px;}
.y74{bottom:995.528700px;}
.y10f{bottom:1003.410000px;}
.y7{bottom:1012.860000px;}
.yaf{bottom:1014.390000px;}
.y54{bottom:1016.300160px;}
.y73{bottom:1016.405370px;}
.y8{bottom:1023.030000px;}
.y10e{bottom:1023.210000px;}
.yae{bottom:1035.090000px;}
.y53{bottom:1037.176830px;}
.y72{bottom:1037.282040px;}
.y10d{bottom:1043.100000px;}
.y6{bottom:1048.774230px;}
.yad{bottom:1055.700000px;}
.y52{bottom:1058.053500px;}
.y71{bottom:1058.158710px;}
.y10c{bottom:1062.990000px;}
.y5{bottom:1068.658920px;}
.yac{bottom:1076.310000px;}
.y51{bottom:1078.839990px;}
.y70{bottom:1078.945200px;}
.y10b{bottom:1082.880000px;}
.y4{bottom:1084.230000px;}
.yab{bottom:1096.920000px;}
.y50{bottom:1099.716660px;}
.y6f{bottom:1099.821870px;}
.y10a{bottom:1102.770000px;}
.yaa{bottom:1117.530000px;}
.y4f{bottom:1120.593330px;}
.y6e{bottom:1120.698540px;}
.y109{bottom:1122.660000px;}
.y3{bottom:1122.750000px;}
.y4e{bottom:1141.473330px;}
.y6d{bottom:1141.575210px;}
.y108{bottom:1142.460000px;}
.ya9{bottom:1142.465310px;}
.y2{bottom:1162.350000px;}
.y6c{bottom:1162.451880px;}
.y1{bottom:1193.940000px;}
.h12{height:19.800000px;}
.h10{height:19.890000px;}
.h11{height:19.891500px;}
.h6{height:31.590000px;}
.hc{height:39.780000px;}
.hb{height:42.084000px;}
.h2{height:42.271875px;}
.h5{height:45.210240px;}
.ha{height:45.811440px;}
.h13{height:49.541760px;}
.he{height:52.960416px;}
.h3{height:52.973736px;}
.hf{height:53.839464px;}
.h7{height:58.049064px;}
.h14{height:58.746240px;}
.h8{height:58.997736px;}
.h9{height:69.959064px;}
.h4{height:119.733750px;}
.hd{height:225.323664px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w3{width:27.090000px;}
.w2{width:50.310000px;}
.w8{width:118.710000px;}
.w7{width:120.780000px;}
.w9{width:133.380000px;}
.w5{width:141.570000px;}
.wc{width:143.458500px;}
.wa{width:143.820000px;}
.wb{width:143.821500px;}
.w4{width:163.531500px;}
.w6{width:173.970000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:8.280000px;}
.x1e{left:10.710000px;}
.x1b{left:19.620000px;}
.x18{left:23.760000px;}
.x2b{left:28.260000px;}
.x29{left:32.940000px;}
.x1c{left:35.550000px;}
.x26{left:36.990000px;}
.x2c{left:39.690000px;}
.x6{left:42.210000px;}
.x19{left:46.530000px;}
.x23{left:54.720000px;}
.x1f{left:57.780000px;}
.x1{left:85.050000px;}
.x24{left:90.900000px;}
.xd{left:92.778120px;}
.x10{left:106.384950px;}
.x11{left:112.156470px;}
.x16{left:129.494340px;}
.xa{left:144.889200px;}
.x33{left:165.240000px;}
.x3{left:198.720000px;}
.x25{left:225.000000px;}
.xf{left:237.766500px;}
.x9{left:245.240910px;}
.x2f{left:248.224140px;}
.x15{left:253.236330px;}
.x17{left:260.460000px;}
.x31{left:269.635140px;}
.xe{left:295.380000px;}
.xc{left:302.474160px;}
.x30{left:312.292440px;}
.x34{left:317.984130px;}
.x8{left:320.130000px;}
.x5{left:326.160000px;}
.x2e{left:332.731710px;}
.x27{left:369.540000px;}
.x32{left:380.675880px;}
.x7{left:384.570000px;}
.x1a{left:424.710000px;}
.xb{left:446.471370px;}
.x2{left:457.110000px;}
.x13{left:473.477670px;}
.x12{left:494.805240px;}
.x28{left:514.080000px;}
.x20{left:567.000000px;}
.x1d{left:578.250000px;}
.x2d{left:596.733750px;}
.x2a{left:658.620000px;}
.x21{left:688.500000px;}
.x14{left:737.247420px;}
.x4{left:807.930000px;}
@media print{
.v4{vertical-align:-18.560000pt;}
.v1{vertical-align:-13.440000pt;}
.v2{vertical-align:-5.451840pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v5{vertical-align:24.000000pt;}
.ls2a{letter-spacing:-3.366720pt;}
.ls29{letter-spacing:-2.404800pt;}
.ls20{letter-spacing:-1.442880pt;}
.ls1e{letter-spacing:-0.801600pt;}
.ls1f{letter-spacing:-0.480960pt;}
.ls10{letter-spacing:-0.427520pt;}
.ls1b{letter-spacing:-0.416000pt;}
.ls28{letter-spacing:-0.374080pt;}
.ls1a{letter-spacing:-0.320640pt;}
.ls1c{letter-spacing:-0.267200pt;}
.ls11{letter-spacing:-0.213760pt;}
.lsb{letter-spacing:-0.208320pt;}
.lsd{letter-spacing:-0.160320pt;}
.ls8{letter-spacing:-0.117120pt;}
.ls5{letter-spacing:-0.106880pt;}
.ls19{letter-spacing:-0.096000pt;}
.ls35{letter-spacing:-0.069440pt;}
.ls34{letter-spacing:-0.058560pt;}
.lse{letter-spacing:-0.053440pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.053440pt;}
.ls32{letter-spacing:0.058560pt;}
.lsa{letter-spacing:0.069440pt;}
.ls4{letter-spacing:0.080640pt;}
.lsf{letter-spacing:0.106880pt;}
.ls33{letter-spacing:0.117120pt;}
.ls21{letter-spacing:0.133600pt;}
.ls27{letter-spacing:0.138944pt;}
.ls16{letter-spacing:0.146560pt;}
.ls2c{letter-spacing:0.152928pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.160320pt;}
.ls9{letter-spacing:0.175680pt;}
.ls30{letter-spacing:0.427520pt;}
.ls17{letter-spacing:0.748160pt;}
.ls2d{letter-spacing:1.074144pt;}
.ls31{letter-spacing:1.774208pt;}
.ls2e{letter-spacing:2.672000pt;}
.ls3{letter-spacing:4.595840pt;}
.ls26{letter-spacing:5.237120pt;}
.ls24{letter-spacing:10.046720pt;}
.ls14{letter-spacing:12.291200pt;}
.ls7{letter-spacing:15.971840pt;}
.ls1{letter-spacing:19.345280pt;}
.ls13{letter-spacing:21.563040pt;}
.ls25{letter-spacing:21.910400pt;}
.ls2f{letter-spacing:26.720000pt;}
.ls22{letter-spacing:27.949120pt;}
.ls23{letter-spacing:28.269760pt;}
.ls2{letter-spacing:55.203520pt;}
.ls2b{letter-spacing:55.256960pt;}
.ls12{letter-spacing:73.800640pt;}
.ls15{letter-spacing:110.032960pt;}
.ls18{letter-spacing:754.626240pt;}
.ws9{word-spacing:-15.971840pt;}
.ws29{word-spacing:-15.928320pt;}
.ws1c{word-spacing:-14.589120pt;}
.ws25{word-spacing:-14.535680pt;}
.ws1b{word-spacing:-14.482240pt;}
.ws1a{word-spacing:-14.375360pt;}
.ws2a{word-spacing:-14.321920pt;}
.ws1d{word-spacing:-13.146240pt;}
.ws18{word-spacing:-13.092800pt;}
.ws19{word-spacing:-13.039360pt;}
.ws2{word-spacing:-12.985920pt;}
.ws17{word-spacing:-12.932480pt;}
.ws4{word-spacing:-12.879040pt;}
.ws3{word-spacing:-12.825600pt;}
.ws6{word-spacing:-12.772160pt;}
.ws26{word-spacing:-12.718720pt;}
.ws15{word-spacing:-12.665280pt;}
.ws14{word-spacing:-7.776000pt;}
.ws16{word-spacing:-7.360000pt;}
.ws11{word-spacing:-0.213760pt;}
.wsb{word-spacing:-0.175680pt;}
.wse{word-spacing:-0.160320pt;}
.ws20{word-spacing:-0.160000pt;}
.wsf{word-spacing:-0.106880pt;}
.wsc{word-spacing:-0.069440pt;}
.ws1{word-spacing:-0.053440pt;}
.ws13{word-spacing:-0.032000pt;}
.ws8{word-spacing:0.000000pt;}
.ws0{word-spacing:0.053440pt;}
.ws2b{word-spacing:0.058560pt;}
.ws12{word-spacing:0.064000pt;}
.ws24{word-spacing:0.096000pt;}
.ws7{word-spacing:0.106880pt;}
.wsa{word-spacing:0.117120pt;}
.ws10{word-spacing:0.160320pt;}
.wsd{word-spacing:0.208320pt;}
.ws1f{word-spacing:0.267200pt;}
.ws1e{word-spacing:0.320640pt;}
.ws2c{word-spacing:0.347200pt;}
.ws5{word-spacing:0.374080pt;}
.ws22{word-spacing:0.480960pt;}
.ws21{word-spacing:0.801600pt;}
.ws23{word-spacing:1.442880pt;}
.ws27{word-spacing:2.404800pt;}
.ws28{word-spacing:3.366720pt;}
._16{margin-left:-3.414816pt;}
._11{margin-left:-2.522368pt;}
._4{margin-left:-1.238400pt;}
._0{width:0.935200pt;}
._8{width:2.132256pt;}
._9{width:3.195712pt;}
._5{width:4.872320pt;}
._e{width:5.766176pt;}
._d{width:6.877728pt;}
._10{width:8.064096pt;}
._7{width:9.532288pt;}
._6{width:10.572960pt;}
._15{width:11.676640pt;}
._f{width:14.129536pt;}
._3{width:15.466848pt;}
._1a{width:16.694656pt;}
._1d{width:17.721920pt;}
._c{width:19.322496pt;}
._14{width:20.969856pt;}
._b{width:22.492896pt;}
._a{width:23.502912pt;}
._13{width:25.448128pt;}
._20{width:26.820128pt;}
._23{width:28.323200pt;}
._1c{width:29.872960pt;}
._22{width:31.508224pt;}
._19{width:32.651840pt;}
._28{width:34.960448pt;}
._1f{width:36.264384pt;}
._1e{width:37.194240pt;}
._25{width:39.305120pt;}
._26{width:56.112000pt;}
._24{width:72.502048pt;}
._12{width:77.007040pt;}
._18{width:96.101152pt;}
._1b{width:105.869984pt;}
._1{width:181.562400pt;}
._17{width:728.013120pt;}
._27{width:730.898880pt;}
._21{width:732.822720pt;}
._2{width:750.297600pt;}
.fs6{font-size:32.000000pt;}
.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:242.560000pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:3.840000pt;}
.y4d{bottom:5.120000pt;}
.y90{bottom:21.520000pt;}
.y4b{bottom:95.640000pt;}
.y107{bottom:109.200000pt;}
.ydc{bottom:109.404080pt;}
.y33{bottom:109.654640pt;}
.y4a{bottom:114.116880pt;}
.y106{bottom:126.880000pt;}
.ydb{bottom:127.079360pt;}
.y32{bottom:128.211680pt;}
.y49{bottom:132.673920pt;}
.y13c{bottom:135.788480pt;}
.ya8{bottom:137.440800pt;}
.y105{bottom:144.560000pt;}
.yda{bottom:144.754640pt;}
.y31{bottom:146.768720pt;}
.y48{bottom:151.230960pt;}
.y13b{bottom:153.463760pt;}
.y9f{bottom:155.167360pt;}
.y104{bottom:162.240000pt;}
.yd9{bottom:162.429920pt;}
.y30{bottom:165.325760pt;}
.y47{bottom:169.788000pt;}
.y13a{bottom:171.139040pt;}
.y9e{bottom:172.842640pt;}
.y103{bottom:179.920000pt;}
.yd8{bottom:180.105200pt;}
.y2f{bottom:183.882800pt;}
.y46{bottom:188.345040pt;}
.y139{bottom:188.734160pt;}
.ya7{bottom:190.499040pt;}
.y9d{bottom:190.517920pt;}
.y102{bottom:197.520000pt;}
.yd7{bottom:197.700320pt;}
.y2e{bottom:202.439840pt;}
.y138{bottom:206.409440pt;}
.y45{bottom:206.902080pt;}
.ya6{bottom:208.174320pt;}
.y9c{bottom:208.193200pt;}
.y101{bottom:215.200000pt;}
.yd6{bottom:215.375600pt;}
.y2d{bottom:220.916720pt;}
.y137{bottom:224.084720pt;}
.y44{bottom:225.459120pt;}
.ya5{bottom:225.849600pt;}
.y9b{bottom:225.868480pt;}
.y100{bottom:232.880000pt;}
.yd5{bottom:233.050880pt;}
.y2c{bottom:239.473760pt;}
.y136{bottom:241.760000pt;}
.ya4{bottom:243.524880pt;}
.y9a{bottom:243.543760pt;}
.y43{bottom:244.016160pt;}
.yff{bottom:250.560000pt;}
.yd4{bottom:250.726160pt;}
.y2b{bottom:257.149040pt;}
.y135{bottom:260.552720pt;}
.y99{bottom:261.138880pt;}
.ya3{bottom:261.178960pt;}
.y42{bottom:262.493040pt;}
.yfe{bottom:268.240000pt;}
.yd3{bottom:268.401440pt;}
.y2a{bottom:274.824320pt;}
.y98{bottom:278.814160pt;}
.ya2{bottom:278.854240pt;}
.y41{bottom:281.050080pt;}
.y134{bottom:283.520000pt;}
.yfd{bottom:285.939040pt;}
.yd2{bottom:286.076720pt;}
.y29{bottom:292.499600pt;}
.y97{bottom:296.489440pt;}
.ya1{bottom:296.529520pt;}
.y40{bottom:299.607120pt;}
.yfc{bottom:303.534160pt;}
.yd1{bottom:303.671840pt;}
.y133{bottom:305.666720pt;}
.y28{bottom:310.174880pt;}
.y96{bottom:314.164720pt;}
.ya0{bottom:314.204800pt;}
.y3f{bottom:318.164160pt;}
.yfb{bottom:321.209440pt;}
.yd0{bottom:321.347120pt;}
.y132{bottom:325.108640pt;}
.y27{bottom:327.850160pt;}
.y95{bottom:331.840000pt;}
.y3e{bottom:336.721200pt;}
.yfa{bottom:338.884720pt;}
.ycf{bottom:339.022400pt;}
.y131{bottom:344.550560pt;}
.y26{bottom:345.525440pt;}
.y94{bottom:346.320000pt;}
.y3d{bottom:355.278240pt;}
.yf9{bottom:356.560000pt;}
.yce{bottom:356.697680pt;}
.y25{bottom:363.120560pt;}
.y130{bottom:363.992480pt;}
.y93{bottom:364.640000pt;}
.y3c{bottom:373.835280pt;}
.ycd{bottom:374.372960pt;}
.yf8{bottom:374.573360pt;}
.y24{bottom:380.795840pt;}
.y8f{bottom:382.960000pt;}
.y12f{bottom:383.434400pt;}
.ycc{bottom:392.048240pt;}
.yf7{bottom:392.248640pt;}
.y3b{bottom:392.392320pt;}
.y92{bottom:395.680000pt;}
.y8e{bottom:395.871600pt;}
.y23{bottom:398.471120pt;}
.y12e{bottom:402.788480pt;}
.ycb{bottom:409.643360pt;}
.yf6{bottom:409.843760pt;}
.y3a{bottom:410.869200pt;}
.y22{bottom:416.146400pt;}
.y12d{bottom:422.230400pt;}
.y8d{bottom:422.992400pt;}
.yca{bottom:427.318640pt;}
.yf5{bottom:427.519040pt;}
.y39{bottom:429.426240pt;}
.y21{bottom:433.821680pt;}
.y8c{bottom:440.667680pt;}
.y12c{bottom:441.672320pt;}
.yc9{bottom:444.993920pt;}
.yf4{bottom:445.194320pt;}
.y38{bottom:447.983280pt;}
.y20{bottom:451.496960pt;}
.y8b{bottom:458.342960pt;}
.y12b{bottom:461.114240pt;}
.yc8{bottom:462.669200pt;}
.yf3{bottom:462.869600pt;}
.y37{bottom:466.540320pt;}
.y1f{bottom:469.092080pt;}
.y6b{bottom:476.806480pt;}
.y8a{bottom:476.900000pt;}
.yc7{bottom:480.344480pt;}
.yf2{bottom:480.544880pt;}
.y12a{bottom:480.556160pt;}
.y36{bottom:485.097360pt;}
.y1e{bottom:486.767360pt;}
.y6a{bottom:495.363520pt;}
.y89{bottom:495.457040pt;}
.yc6{bottom:498.019760pt;}
.yf1{bottom:498.220160pt;}
.y129{bottom:499.998080pt;}
.y4c{bottom:500.560000pt;}
.y35{bottom:503.654400pt;}
.y1d{bottom:504.442640pt;}
.y69{bottom:513.840400pt;}
.y88{bottom:513.933920pt;}
.yc5{bottom:515.614880pt;}
.yf0{bottom:515.815280pt;}
.y128{bottom:519.440000pt;}
.y1c{bottom:522.117920pt;}
.y34{bottom:522.211440pt;}
.y68{bottom:532.397440pt;}
.y87{bottom:532.490960pt;}
.yc4{bottom:533.290160pt;}
.yef{bottom:533.490560pt;}
.y127{bottom:538.560000pt;}
.y1b{bottom:539.793200pt;}
.y67{bottom:550.954480pt;}
.yc3{bottom:550.965440pt;}
.y86{bottom:551.048000pt;}
.yee{bottom:551.165840pt;}
.y122{bottom:556.240000pt;}
.y1a{bottom:557.468480pt;}
.yc2{bottom:568.640720pt;}
.yed{bottom:568.841120pt;}
.y66{bottom:569.511520pt;}
.y85{bottom:569.605040pt;}
.y121{bottom:573.920000pt;}
.y19{bottom:575.063600pt;}
.yc1{bottom:586.316000pt;}
.yec{bottom:586.516400pt;}
.y65{bottom:588.068560pt;}
.y84{bottom:588.162080pt;}
.y120{bottom:591.520000pt;}
.y18{bottom:592.738880pt;}
.yc0{bottom:603.991280pt;}
.yeb{bottom:604.191680pt;}
.y64{bottom:606.625600pt;}
.y83{bottom:606.719120pt;}
.y11f{bottom:609.200000pt;}
.y17{bottom:610.414160pt;}
.ybf{bottom:621.586400pt;}
.yea{bottom:621.786800pt;}
.y63{bottom:625.182640pt;}
.y82{bottom:625.276160pt;}
.y11e{bottom:626.880000pt;}
.y16{bottom:628.089440pt;}
.ybe{bottom:639.261680pt;}
.ye9{bottom:639.462080pt;}
.y62{bottom:643.739680pt;}
.y81{bottom:643.833200pt;}
.y11d{bottom:644.560000pt;}
.y15{bottom:645.764720pt;}
.ybd{bottom:656.936960pt;}
.ye8{bottom:657.137360pt;}
.y61{bottom:662.216560pt;}
.y11c{bottom:662.240000pt;}
.y80{bottom:662.310080pt;}
.y14{bottom:663.440000pt;}
.ybc{bottom:674.612240pt;}
.ye7{bottom:674.812640pt;}
.y11b{bottom:679.920000pt;}
.y60{bottom:680.773600pt;}
.y7f{bottom:680.867120pt;}
.y13{bottom:682.163280pt;}
.ybb{bottom:692.287520pt;}
.ye6{bottom:692.487920pt;}
.y11a{bottom:697.520000pt;}
.y5f{bottom:699.330640pt;}
.y7e{bottom:699.424160pt;}
.y12{bottom:705.200000pt;}
.yba{bottom:709.962800pt;}
.ye5{bottom:710.163200pt;}
.y119{bottom:715.200000pt;}
.y5e{bottom:717.887680pt;}
.y7d{bottom:717.981200pt;}
.y11{bottom:727.354400pt;}
.yb9{bottom:727.557920pt;}
.ye4{bottom:727.758320pt;}
.y126{bottom:732.880000pt;}
.y118{bottom:732.894160pt;}
.y5d{bottom:736.444720pt;}
.y7c{bottom:736.538240pt;}
.yb8{bottom:745.233200pt;}
.ye3{bottom:745.433600pt;}
.y10{bottom:746.708480pt;}
.y125{bottom:750.560000pt;}
.y117{bottom:750.569440pt;}
.y5c{bottom:755.001760pt;}
.y7b{bottom:755.095280pt;}
.yb7{bottom:762.908480pt;}
.ye2{bottom:763.108880pt;}
.yf{bottom:766.150400pt;}
.y124{bottom:768.240000pt;}
.y116{bottom:768.244720pt;}
.y5b{bottom:773.558800pt;}
.y7a{bottom:773.652320pt;}
.yb6{bottom:780.583760pt;}
.ye1{bottom:780.784160pt;}
.ye{bottom:785.592320pt;}
.y123{bottom:785.920000pt;}
.y115{bottom:785.924880pt;}
.y5a{bottom:792.115840pt;}
.y79{bottom:792.209360pt;}
.yb5{bottom:798.259040pt;}
.ye0{bottom:798.459440pt;}
.y114{bottom:803.520000pt;}
.yd{bottom:805.034240pt;}
.y59{bottom:810.592720pt;}
.y78{bottom:810.686240pt;}
.yb4{bottom:815.934320pt;}
.ydf{bottom:816.134720pt;}
.y113{bottom:821.200000pt;}
.yc{bottom:824.476160pt;}
.y58{bottom:829.149760pt;}
.y77{bottom:829.243280pt;}
.yb3{bottom:833.529440pt;}
.yde{bottom:833.729840pt;}
.y112{bottom:838.880000pt;}
.yb{bottom:843.918080pt;}
.y57{bottom:847.706800pt;}
.y76{bottom:847.800320pt;}
.yb2{bottom:851.204720pt;}
.ydd{bottom:851.405120pt;}
.y111{bottom:856.560000pt;}
.ya{bottom:863.360000pt;}
.y56{bottom:866.263840pt;}
.y75{bottom:866.357360pt;}
.yb1{bottom:868.880000pt;}
.y110{bottom:874.240000pt;}
.y9{bottom:882.480000pt;}
.yb0{bottom:883.360000pt;}
.y55{bottom:884.820880pt;}
.y74{bottom:884.914400pt;}
.y10f{bottom:891.920000pt;}
.y7{bottom:900.320000pt;}
.yaf{bottom:901.680000pt;}
.y54{bottom:903.377920pt;}
.y73{bottom:903.471440pt;}
.y8{bottom:909.360000pt;}
.y10e{bottom:909.520000pt;}
.yae{bottom:920.080000pt;}
.y53{bottom:921.934960pt;}
.y72{bottom:922.028480pt;}
.y10d{bottom:927.200000pt;}
.y6{bottom:932.243760pt;}
.yad{bottom:938.400000pt;}
.y52{bottom:940.492000pt;}
.y71{bottom:940.585520pt;}
.y10c{bottom:944.880000pt;}
.y5{bottom:949.919040pt;}
.yac{bottom:956.720000pt;}
.y51{bottom:958.968880pt;}
.y70{bottom:959.062400pt;}
.y10b{bottom:962.560000pt;}
.y4{bottom:963.760000pt;}
.yab{bottom:975.040000pt;}
.y50{bottom:977.525920pt;}
.y6f{bottom:977.619440pt;}
.y10a{bottom:980.240000pt;}
.yaa{bottom:993.360000pt;}
.y4f{bottom:996.082960pt;}
.y6e{bottom:996.176480pt;}
.y109{bottom:997.920000pt;}
.y3{bottom:998.000000pt;}
.y4e{bottom:1014.642960pt;}
.y6d{bottom:1014.733520pt;}
.y108{bottom:1015.520000pt;}
.ya9{bottom:1015.524720pt;}
.y2{bottom:1033.200000pt;}
.y6c{bottom:1033.290560pt;}
.y1{bottom:1061.280000pt;}
.h12{height:17.600000pt;}
.h10{height:17.680000pt;}
.h11{height:17.681333pt;}
.h6{height:28.080000pt;}
.hc{height:35.360000pt;}
.hb{height:37.408000pt;}
.h2{height:37.575000pt;}
.h5{height:40.186880pt;}
.ha{height:40.721280pt;}
.h13{height:44.037120pt;}
.he{height:47.075925pt;}
.h3{height:47.087765pt;}
.hf{height:47.857301pt;}
.h7{height:51.599168pt;}
.h14{height:52.218880pt;}
.h8{height:52.442432pt;}
.h9{height:62.185835pt;}
.h4{height:106.430000pt;}
.hd{height:200.287701pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w3{width:24.080000pt;}
.w2{width:44.720000pt;}
.w8{width:105.520000pt;}
.w7{width:107.360000pt;}
.w9{width:118.560000pt;}
.w5{width:125.840000pt;}
.wc{width:127.518667pt;}
.wa{width:127.840000pt;}
.wb{width:127.841333pt;}
.w4{width:145.361333pt;}
.w6{width:154.640000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:7.360000pt;}
.x1e{left:9.520000pt;}
.x1b{left:17.440000pt;}
.x18{left:21.120000pt;}
.x2b{left:25.120000pt;}
.x29{left:29.280000pt;}
.x1c{left:31.600000pt;}
.x26{left:32.880000pt;}
.x2c{left:35.280000pt;}
.x6{left:37.520000pt;}
.x19{left:41.360000pt;}
.x23{left:48.640000pt;}
.x1f{left:51.360000pt;}
.x1{left:75.600000pt;}
.x24{left:80.800000pt;}
.xd{left:82.469440pt;}
.x10{left:94.564400pt;}
.x11{left:99.694640pt;}
.x16{left:115.106080pt;}
.xa{left:128.790400pt;}
.x33{left:146.880000pt;}
.x3{left:176.640000pt;}
.x25{left:200.000000pt;}
.xf{left:211.348000pt;}
.x9{left:217.991920pt;}
.x2f{left:220.643680pt;}
.x15{left:225.098960pt;}
.x17{left:231.520000pt;}
.x31{left:239.675680pt;}
.xe{left:262.560000pt;}
.xc{left:268.865920pt;}
.x30{left:277.593280pt;}
.x34{left:282.652560pt;}
.x8{left:284.560000pt;}
.x5{left:289.920000pt;}
.x2e{left:295.761520pt;}
.x27{left:328.480000pt;}
.x32{left:338.378560pt;}
.x7{left:341.840000pt;}
.x1a{left:377.520000pt;}
.xb{left:396.863440pt;}
.x2{left:406.320000pt;}
.x13{left:420.869040pt;}
.x12{left:439.826880pt;}
.x28{left:456.960000pt;}
.x20{left:504.000000pt;}
.x1d{left:514.000000pt;}
.x2d{left:530.430000pt;}
.x2a{left:585.440000pt;}
.x21{left:612.000000pt;}
.x14{left:655.331040pt;}
.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; }
  