
    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_7a3ab33cb0f85ece9aff9117.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.955078;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_41f5b9393e14ab7fd722a0d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.039551;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_c477065923828b5f30e0a40f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_1e8deda5c0a37bdef34c3f82.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_9ce020fd69a7cf63ab4aadee.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_08fb89f3e4d63c05b03f730a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.039551;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_899cabea4ebf53f468fd51dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.719238;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_dbbd1135b1a6d34d44e96171.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1d9f5c456fc8c2cbed5d8e2e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.142578;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;}
.m4{transform:matrix(0.155405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155405,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.217393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217393,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.236488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236488,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-18.180000px;}
.vc{vertical-align:-9.360000px;}
.v6{vertical-align:-7.200000px;}
.vd{vertical-align:-5.040000px;}
.v3{vertical-align:-3.600000px;}
.v9{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.440000px;}
.v4{vertical-align:3.600000px;}
.v5{vertical-align:5.760000px;}
.v7{vertical-align:7.200000px;}
.vb{vertical-align:8.640000px;}
.v8{vertical-align:12.240000px;}
.v2{vertical-align:23.760000px;}
.ls38{letter-spacing:-15.840000px;}
.ls41{letter-spacing:-2.880000px;}
.ls12{letter-spacing:-2.466000px;}
.ls3e{letter-spacing:-2.160000px;}
.ls44{letter-spacing:-1.896000px;}
.ls19{letter-spacing:-1.440000px;}
.ls45{letter-spacing:-1.332000px;}
.ls43{letter-spacing:-1.152000px;}
.ls46{letter-spacing:-1.134000px;}
.ls10{letter-spacing:-1.026000px;}
.ls17{letter-spacing:-0.870000px;}
.ls11{letter-spacing:-0.720000px;}
.ls3d{letter-spacing:-0.612000px;}
.ls1c{letter-spacing:-0.567600px;}
.ls3c{letter-spacing:-0.457800px;}
.ls14{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.262200px;}
.ls40{letter-spacing:-0.196200px;}
.ls16{letter-spacing:-0.152400px;}
.lsc{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.021840px;}
.ls9{letter-spacing:-0.017280px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.017280px;}
.ls36{letter-spacing:0.039840px;}
.ls3b{letter-spacing:0.109200px;}
.ls13{letter-spacing:0.152400px;}
.lsa{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.200040px;}
.lsb{letter-spacing:0.206400px;}
.ls27{letter-spacing:0.231240px;}
.ls1a{letter-spacing:0.262080px;}
.lse{letter-spacing:0.262200px;}
.ls18{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.306600px;}
.ls42{letter-spacing:0.331200px;}
.ls0{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.396240px;}
.ls21{letter-spacing:0.541440px;}
.ls1e{letter-spacing:0.633120px;}
.ls47{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.720000px;}
.ls2a{letter-spacing:1.024620px;}
.ls3a{letter-spacing:1.062000px;}
.ls32{letter-spacing:1.063560px;}
.ls30{letter-spacing:1.158240px;}
.ls31{letter-spacing:1.211640px;}
.ls2c{letter-spacing:1.319760px;}
.ls29{letter-spacing:1.408320px;}
.ls25{letter-spacing:1.566240px;}
.ls2f{letter-spacing:1.589880px;}
.ls20{letter-spacing:2.035680px;}
.ls24{letter-spacing:2.049240px;}
.ls34{letter-spacing:2.316540px;}
.ls39{letter-spacing:3.132000px;}
.ls26{letter-spacing:4.248360px;}
.ls1d{letter-spacing:4.298640px;}
.ls2d{letter-spacing:5.323440px;}
.ls2e{letter-spacing:5.519640px;}
.ls1f{letter-spacing:5.664240px;}
.ls37{letter-spacing:5.760000px;}
.ls33{letter-spacing:5.825640px;}
.ls3f{letter-spacing:7.200000px;}
.ls35{letter-spacing:8.013360px;}
.ls2b{letter-spacing:8.969880px;}
.ls23{letter-spacing:9.994080px;}
.ls5{letter-spacing:21.780000px;}
.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;}
}
.ws5{word-spacing:-19.457280px;}
.ws6{word-spacing:-19.448640px;}
.ws4{word-spacing:-19.422720px;}
.ws1e{word-spacing:-17.622000px;}
.ws25{word-spacing:-16.891200px;}
.ws18{word-spacing:-16.865400px;}
.wsf{word-spacing:-16.822200px;}
.ws13{word-spacing:-16.712400px;}
.ws1f{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.407600px;}
.ws23{word-spacing:-16.363800px;}
.ws15{word-spacing:-16.297800px;}
.wse{word-spacing:-16.254600px;}
.ws20{word-spacing:-16.145400px;}
.ws26{word-spacing:-16.102200px;}
.ws1b{word-spacing:-15.992400px;}
.ws21{word-spacing:-15.948000px;}
.ws19{word-spacing:-15.840000px;}
.ws17{word-spacing:-15.690000px;}
.ws10{word-spacing:-15.534000px;}
.ws29{word-spacing:-15.426000px;}
.ws3{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.246600px;}
.ws28{word-spacing:-15.228000px;}
.wsc{word-spacing:-15.146400px;}
.ws1a{word-spacing:-15.120000px;}
.wsa{word-spacing:-15.093600px;}
.ws2{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws27{word-spacing:-14.664000px;}
.ws22{word-spacing:-14.400000px;}
.ws12{word-spacing:-14.094000px;}
.ws24{word-spacing:-13.680000px;}
.ws9{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws14{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.ws1c{word-spacing:-0.066240px;}
.ws11{word-spacing:0.000000px;}
.ws1d{word-spacing:13.885800px;}
._23{margin-left:-239.429181px;}
._25{margin-left:-147.095633px;}
._24{margin-left:-111.485927px;}
._20{margin-left:-17.584620px;}
._22{margin-left:-15.535380px;}
._1f{margin-left:-11.436900px;}
._21{margin-left:-9.387600px;}
._1b{margin-left:-8.048640px;}
._14{margin-left:-7.005120px;}
._15{margin-left:-5.988000px;}
._4{margin-left:-4.596480px;}
._3{margin-left:-2.860800px;}
._0{margin-left:-1.059840px;}
._2{width:1.374480px;}
._8{width:3.130320px;}
._10{width:4.131360px;}
._7{width:5.497920px;}
._6{width:7.106880px;}
._5{width:8.127360px;}
._a{width:9.239520px;}
._1a{width:10.267200px;}
._9{width:11.286720px;}
._17{width:12.559680px;}
._18{width:13.685280px;}
._16{width:15.079200px;}
._b{width:16.111920px;}
._c{width:17.151120px;}
._12{width:18.236400px;}
._13{width:19.521600px;}
._e{width:21.356880px;}
._d{width:22.747440px;}
._19{width:23.788320px;}
._f{width:24.800400px;}
._1d{width:25.965120px;}
._1e{width:28.487520px;}
._29{width:29.817840px;}
._27{width:31.000320px;}
._26{width:33.451200px;}
._28{width:35.024035px;}
._1c{width:36.299520px;}
._11{width:46.817760px;}
._1{width:1175.474400px;}
.fc3{color:rgb(4,98,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.600000px;}
.y4{bottom:56.520000px;}
.y9d{bottom:112.320000px;}
.y6c{bottom:113.940000px;}
.y3c{bottom:128.520000px;}
.y9c{bottom:134.280000px;}
.y6b{bottom:135.756000px;}
.y3b{bottom:150.330000px;}
.y9b{bottom:156.090000px;}
.y6a{bottom:157.530000px;}
.y3a{bottom:172.110000px;}
.y9a{bottom:177.870000px;}
.y69{bottom:179.310000px;}
.y39{bottom:193.890000px;}
.y99{bottom:199.650000px;}
.y68{bottom:201.270000px;}
.y38{bottom:215.850000px;}
.y98{bottom:221.430000px;}
.y67{bottom:223.050000px;}
.y37{bottom:237.630000px;}
.y97{bottom:243.390000px;}
.y66{bottom:244.830000px;}
.y36{bottom:259.410000px;}
.y96{bottom:265.170000px;}
.y65{bottom:266.610000px;}
.y35{bottom:281.190000px;}
.y95{bottom:286.950000px;}
.y64{bottom:288.390000px;}
.y34{bottom:302.970000px;}
.y94{bottom:308.730000px;}
.y63{bottom:310.350000px;}
.y33{bottom:324.930000px;}
.y93{bottom:330.690000px;}
.y62{bottom:332.130000px;}
.y32{bottom:346.710000px;}
.y92{bottom:352.470000px;}
.y61{bottom:353.910000px;}
.y31{bottom:368.490000px;}
.y91{bottom:374.250000px;}
.y60{bottom:375.690000px;}
.y30{bottom:390.315000px;}
.y90{bottom:396.075000px;}
.y5f{bottom:397.695000px;}
.y2f{bottom:412.275000px;}
.y8f{bottom:417.855000px;}
.y5e{bottom:419.475000px;}
.y2e{bottom:434.055000px;}
.y8e{bottom:439.815000px;}
.y5d{bottom:441.255000px;}
.y2d{bottom:452.055000px;}
.y8d{bottom:461.595000px;}
.y5c{bottom:463.035000px;}
.y2c{bottom:465.735000px;}
.y2b{bottom:480.315000px;}
.y8c{bottom:483.375000px;}
.y5b{bottom:484.815000px;}
.y2a{bottom:497.595000px;}
.y8b{bottom:505.155000px;}
.y5a{bottom:506.775000px;}
.y29{bottom:514.875000px;}
.y8a{bottom:527.115000px;}
.y59{bottom:528.555000px;}
.y28{bottom:532.155000px;}
.y9e{bottom:535.395000px;}
.y89{bottom:548.895000px;}
.y27{bottom:549.255000px;}
.y58{bottom:550.335000px;}
.y26{bottom:566.535000px;}
.y88{bottom:570.675000px;}
.y57{bottom:572.115000px;}
.y25{bottom:583.815000px;}
.y87{bottom:592.455000px;}
.y56{bottom:594.075000px;}
.y24{bottom:601.095000px;}
.y86{bottom:614.235000px;}
.y55{bottom:615.855000px;}
.y23{bottom:618.375000px;}
.y22{bottom:635.475000px;}
.y85{bottom:636.195000px;}
.y54{bottom:637.635000px;}
.y21{bottom:652.785000px;}
.y84{bottom:658.005000px;}
.y53{bottom:659.445000px;}
.y20{bottom:670.065000px;}
.y83{bottom:679.785000px;}
.y52{bottom:681.225000px;}
.y1f{bottom:687.345000px;}
.y82{bottom:701.565000px;}
.y51{bottom:703.185000px;}
.y1e{bottom:704.625000px;}
.y1d{bottom:721.905000px;}
.y81{bottom:723.345000px;}
.y50{bottom:724.965000px;}
.y1c{bottom:739.005000px;}
.y80{bottom:745.305000px;}
.y4f{bottom:746.745000px;}
.y1b{bottom:756.285000px;}
.y7f{bottom:767.085000px;}
.y4e{bottom:768.525000px;}
.y1a{bottom:773.565000px;}
.y7e{bottom:788.865000px;}
.y4d{bottom:790.305000px;}
.y19{bottom:790.845000px;}
.y18{bottom:808.125000px;}
.y7d{bottom:810.645000px;}
.y4c{bottom:812.265000px;}
.y17{bottom:825.405000px;}
.y7c{bottom:832.605000px;}
.y4b{bottom:834.045000px;}
.y16{bottom:842.505000px;}
.y7b{bottom:854.385000px;}
.y4a{bottom:855.825000px;}
.y15{bottom:859.425000px;}
.y14{bottom:875.085000px;}
.y7a{bottom:876.165000px;}
.y49{bottom:877.605000px;}
.y13{bottom:895.110000px;}
.y79{bottom:897.990000px;}
.y48{bottom:899.610000px;}
.y12{bottom:906.810000px;}
.y78{bottom:919.770000px;}
.y47{bottom:921.390000px;}
.y11{bottom:924.630000px;}
.y10{bottom:939.570000px;}
.y77{bottom:941.730000px;}
.y46{bottom:943.170000px;}
.yf{bottom:958.650000px;}
.y76{bottom:963.510000px;}
.y45{bottom:964.950000px;}
.ye{bottom:976.470000px;}
.y75{bottom:985.290000px;}
.y44{bottom:986.730000px;}
.yd{bottom:991.770000px;}
.y74{bottom:1007.070000px;}
.y43{bottom:1008.690000px;}
.yc{bottom:1014.270000px;}
.y6e{bottom:1025.970000px;}
.y70{bottom:1026.870000px;}
.y73{bottom:1027.950000px;}
.y6f{bottom:1028.670000px;}
.y71{bottom:1028.850000px;}
.y6d{bottom:1029.030000px;}
.y72{bottom:1029.750000px;}
.y42{bottom:1030.470000px;}
.yb{bottom:1036.770000px;}
.y41{bottom:1052.250000px;}
.ya{bottom:1057.470000px;}
.y9{bottom:1072.050000px;}
.y40{bottom:1074.030000px;}
.y8{bottom:1089.330000px;}
.y3f{bottom:1095.990000px;}
.y7{bottom:1106.610000px;}
.y3e{bottom:1117.770000px;}
.y6{bottom:1123.710000px;}
.y3d{bottom:1139.550000px;}
.y5{bottom:1140.990000px;}
.y3{bottom:1174.860000px;}
.y1{bottom:1190.160000px;}
.h2{height:18.900000px;}
.hb{height:29.654297px;}
.h7{height:34.036523px;}
.h1f{height:34.419375px;}
.h5{height:39.760312px;}
.h6{height:42.164648px;}
.hf{height:43.156758px;}
.hc{height:44.481445px;}
.ha{height:46.736719px;}
.h3{height:47.836406px;}
.hd{height:49.226133px;}
.he{height:49.255313px;}
.h4{height:54.563906px;}
.h9{height:54.596250px;}
.h8{height:54.864844px;}
.h10{height:58.158984px;}
.h11{height:58.278984px;}
.h13{height:60.967969px;}
.h1c{height:61.687969px;}
.h18{height:62.407969px;}
.h1d{height:63.127969px;}
.h1b{height:64.567969px;}
.h15{height:65.287969px;}
.h12{height:66.727969px;}
.h1a{height:67.447969px;}
.h1e{height:68.167969px;}
.h16{height:69.607969px;}
.h17{height:70.327969px;}
.h19{height:71.047969px;}
.h14{height:73.207969px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:82.620000px;}
.w3{width:606.030000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:108.036000px;}
.x5{left:109.835987px;}
.x8{left:111.455987px;}
.xb{left:115.955987px;}
.x6{left:135.575987px;}
.x7f{left:140.075987px;}
.x13{left:142.595987px;}
.xf{left:161.129987px;}
.x7c{left:168.149987px;}
.x9{left:171.749987px;}
.x77{left:175.709987px;}
.x62{left:181.649987px;}
.x3{left:190.650000px;}
.x1a{left:193.889987px;}
.x18{left:195.689987px;}
.x7d{left:208.469987px;}
.x63{left:209.549987px;}
.x57{left:213.869987px;}
.x5e{left:223.409987px;}
.x79{left:224.669987px;}
.x1b{left:230.069987px;}
.xa{left:238.349987px;}
.x6b{left:242.489987px;}
.xd{left:246.809987px;}
.x7e{left:250.274987px;}
.x55{left:255.854987px;}
.x59{left:262.154987px;}
.x56{left:264.134872px;}
.x6c{left:270.254987px;}
.x19{left:280.514987px;}
.x64{left:285.014987px;}
.x54{left:287.534987px;}
.x65{left:288.974987px;}
.x53{left:291.674987px;}
.x52{left:301.394987px;}
.x51{left:305.534987px;}
.x50{left:321.374987px;}
.x4f{left:325.694987px;}
.x5d{left:334.694987px;}
.x4e{left:337.754987px;}
.x4d{left:342.074987px;}
.x4c{left:349.814987px;}
.x4a{left:353.954987px;}
.x58{left:364.754987px;}
.x4b{left:366.374992px;}
.x6d{left:373.934987px;}
.x49{left:379.874987px;}
.x10{left:392.474987px;}
.x66{left:396.974987px;}
.x48{left:401.114987px;}
.x47{left:405.254987px;}
.x7{left:409.214987px;}
.x46{left:412.454987px;}
.x45{left:416.594987px;}
.x5a{left:417.854987px;}
.xe{left:422.564987px;}
.xc{left:429.224987px;}
.x44{left:432.824987px;}
.x43{left:436.964987px;}
.x67{left:442.364987px;}
.x60{left:445.784987px;}
.x4{left:448.304987px;}
.x42{left:450.464987px;}
.x41{left:454.604987px;}
.x40{left:460.184987px;}
.x3f{left:464.324987px;}
.x6e{left:468.104987px;}
.x6f{left:474.044987px;}
.x3e{left:476.024987px;}
.x3d{left:480.164987px;}
.x5c{left:488.804987px;}
.x3c{left:496.184987px;}
.x3b{left:500.324987px;}
.x70{left:508.424987px;}
.x61{left:510.944987px;}
.x3a{left:514.004987px;}
.x11{left:518.504987px;}
.x5b{left:525.344987px;}
.x7b{left:533.264987px;}
.x39{left:539.384987px;}
.x38{left:543.524987px;}
.x71{left:554.144987px;}
.x72{left:560.084987px;}
.x37{left:565.844987px;}
.x36{left:570.164987px;}
.x68{left:574.484987px;}
.x35{left:577.544987px;}
.x34{left:579.524987px;}
.x33{left:588.029987px;}
.x32{left:592.169987px;}
.x5f{left:606.749987px;}
.x31{left:611.429987px;}
.x30{left:615.569987px;}
.x73{left:620.249987px;}
.x69{left:622.229987px;}
.x2f{left:625.469987px;}
.x2e{left:629.609987px;}
.x7a{left:632.849987px;}
.x78{left:637.709987px;}
.x16{left:643.289987px;}
.x2d{left:645.269987px;}
.x6a{left:646.889987px;}
.x1c{left:648.509987px;}
.x74{left:654.269987px;}
.x2c{left:656.789987px;}
.x2b{left:658.949987px;}
.x75{left:660.209987px;}
.x2a{left:667.409987px;}
.x29{left:671.549987px;}
.x14{left:676.589987px;}
.x28{left:684.149987px;}
.x17{left:685.229987px;}
.x27{left:688.289987px;}
.x26{left:693.869987px;}
.x25{left:698.009987px;}
.x1d{left:710.249987px;}
.x24{left:713.849987px;}
.x15{left:717.629987px;}
.x12{left:731.669987px;}
.x23{left:736.349987px;}
.x22{left:740.669987px;}
.x21{left:754.169987px;}
.x20{left:758.339987px;}
.x1f{left:768.959987px;}
.x1e{left:773.099987px;}
.x76{left:788.579987px;}
@media print{
.v1{vertical-align:-16.160000pt;}
.vc{vertical-align:-8.320000pt;}
.v6{vertical-align:-6.400000pt;}
.vd{vertical-align:-4.480000pt;}
.v3{vertical-align:-3.200000pt;}
.v9{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.280000pt;}
.v4{vertical-align:3.200000pt;}
.v5{vertical-align:5.120000pt;}
.v7{vertical-align:6.400000pt;}
.vb{vertical-align:7.680000pt;}
.v8{vertical-align:10.880000pt;}
.v2{vertical-align:21.120000pt;}
.ls38{letter-spacing:-14.080000pt;}
.ls41{letter-spacing:-2.560000pt;}
.ls12{letter-spacing:-2.192000pt;}
.ls3e{letter-spacing:-1.920000pt;}
.ls44{letter-spacing:-1.685333pt;}
.ls19{letter-spacing:-1.280000pt;}
.ls45{letter-spacing:-1.184000pt;}
.ls43{letter-spacing:-1.024000pt;}
.ls46{letter-spacing:-1.008000pt;}
.ls10{letter-spacing:-0.912000pt;}
.ls17{letter-spacing:-0.773333pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls3d{letter-spacing:-0.544000pt;}
.ls1c{letter-spacing:-0.504533pt;}
.ls3c{letter-spacing:-0.406933pt;}
.ls14{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.233067pt;}
.ls40{letter-spacing:-0.174400pt;}
.ls16{letter-spacing:-0.135467pt;}
.lsc{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.019413pt;}
.ls9{letter-spacing:-0.015360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.015360pt;}
.ls36{letter-spacing:0.035413pt;}
.ls3b{letter-spacing:0.097067pt;}
.ls13{letter-spacing:0.135467pt;}
.lsa{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.177813pt;}
.lsb{letter-spacing:0.183467pt;}
.ls27{letter-spacing:0.205547pt;}
.ls1a{letter-spacing:0.232960pt;}
.lse{letter-spacing:0.233067pt;}
.ls18{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.272533pt;}
.ls42{letter-spacing:0.294400pt;}
.ls0{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.352213pt;}
.ls21{letter-spacing:0.481280pt;}
.ls1e{letter-spacing:0.562773pt;}
.ls47{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.910773pt;}
.ls3a{letter-spacing:0.944000pt;}
.ls32{letter-spacing:0.945387pt;}
.ls30{letter-spacing:1.029547pt;}
.ls31{letter-spacing:1.077013pt;}
.ls2c{letter-spacing:1.173120pt;}
.ls29{letter-spacing:1.251840pt;}
.ls25{letter-spacing:1.392213pt;}
.ls2f{letter-spacing:1.413227pt;}
.ls20{letter-spacing:1.809493pt;}
.ls24{letter-spacing:1.821547pt;}
.ls34{letter-spacing:2.059147pt;}
.ls39{letter-spacing:2.784000pt;}
.ls26{letter-spacing:3.776320pt;}
.ls1d{letter-spacing:3.821013pt;}
.ls2d{letter-spacing:4.731947pt;}
.ls2e{letter-spacing:4.906347pt;}
.ls1f{letter-spacing:5.034880pt;}
.ls37{letter-spacing:5.120000pt;}
.ls33{letter-spacing:5.178347pt;}
.ls3f{letter-spacing:6.400000pt;}
.ls35{letter-spacing:7.122987pt;}
.ls2b{letter-spacing:7.973227pt;}
.ls23{letter-spacing:8.883627pt;}
.ls5{letter-spacing:19.360000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws6{word-spacing:-17.287680pt;}
.ws4{word-spacing:-17.264640pt;}
.ws1e{word-spacing:-15.664000pt;}
.ws25{word-spacing:-15.014400pt;}
.ws18{word-spacing:-14.991467pt;}
.wsf{word-spacing:-14.953067pt;}
.ws13{word-spacing:-14.855467pt;}
.ws1f{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.584533pt;}
.ws23{word-spacing:-14.545600pt;}
.ws15{word-spacing:-14.486933pt;}
.wse{word-spacing:-14.448533pt;}
.ws20{word-spacing:-14.351467pt;}
.ws26{word-spacing:-14.313067pt;}
.ws1b{word-spacing:-14.215467pt;}
.ws21{word-spacing:-14.176000pt;}
.ws19{word-spacing:-14.080000pt;}
.ws17{word-spacing:-13.946667pt;}
.ws10{word-spacing:-13.808000pt;}
.ws29{word-spacing:-13.712000pt;}
.ws3{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.552533pt;}
.ws28{word-spacing:-13.536000pt;}
.wsc{word-spacing:-13.463467pt;}
.ws1a{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.416533pt;}
.ws2{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws27{word-spacing:-13.034667pt;}
.ws22{word-spacing:-12.800000pt;}
.ws12{word-spacing:-12.528000pt;}
.ws24{word-spacing:-12.160000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws14{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws1c{word-spacing:-0.058880pt;}
.ws11{word-spacing:0.000000pt;}
.ws1d{word-spacing:12.342933pt;}
._23{margin-left:-212.825938pt;}
._25{margin-left:-130.751674pt;}
._24{margin-left:-99.098602pt;}
._20{margin-left:-15.630773pt;}
._22{margin-left:-13.809227pt;}
._1f{margin-left:-10.166133pt;}
._21{margin-left:-8.344533pt;}
._1b{margin-left:-7.154347pt;}
._14{margin-left:-6.226773pt;}
._15{margin-left:-5.322667pt;}
._4{margin-left:-4.085760pt;}
._3{margin-left:-2.542933pt;}
._0{margin-left:-0.942080pt;}
._2{width:1.221760pt;}
._8{width:2.782507pt;}
._10{width:3.672320pt;}
._7{width:4.887040pt;}
._6{width:6.317227pt;}
._5{width:7.224320pt;}
._a{width:8.212907pt;}
._1a{width:9.126400pt;}
._9{width:10.032640pt;}
._17{width:11.164160pt;}
._18{width:12.164693pt;}
._16{width:13.403733pt;}
._b{width:14.321707pt;}
._c{width:15.245440pt;}
._12{width:16.210133pt;}
._13{width:17.352533pt;}
._e{width:18.983893pt;}
._d{width:20.219947pt;}
._19{width:21.145173pt;}
._f{width:22.044800pt;}
._1d{width:23.080107pt;}
._1e{width:25.322240pt;}
._29{width:26.504747pt;}
._27{width:27.555840pt;}
._26{width:29.734400pt;}
._28{width:31.132476pt;}
._1c{width:32.266240pt;}
._11{width:41.615787pt;}
._1{width:1044.866133pt;}
.fs4{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.200000pt;}
.y4{bottom:50.240000pt;}
.y9d{bottom:99.840000pt;}
.y6c{bottom:101.280000pt;}
.y3c{bottom:114.240000pt;}
.y9c{bottom:119.360000pt;}
.y6b{bottom:120.672000pt;}
.y3b{bottom:133.626667pt;}
.y9b{bottom:138.746667pt;}
.y6a{bottom:140.026667pt;}
.y3a{bottom:152.986667pt;}
.y9a{bottom:158.106667pt;}
.y69{bottom:159.386667pt;}
.y39{bottom:172.346667pt;}
.y99{bottom:177.466667pt;}
.y68{bottom:178.906667pt;}
.y38{bottom:191.866667pt;}
.y98{bottom:196.826667pt;}
.y67{bottom:198.266667pt;}
.y37{bottom:211.226667pt;}
.y97{bottom:216.346667pt;}
.y66{bottom:217.626667pt;}
.y36{bottom:230.586667pt;}
.y96{bottom:235.706667pt;}
.y65{bottom:236.986667pt;}
.y35{bottom:249.946667pt;}
.y95{bottom:255.066667pt;}
.y64{bottom:256.346667pt;}
.y34{bottom:269.306667pt;}
.y94{bottom:274.426667pt;}
.y63{bottom:275.866667pt;}
.y33{bottom:288.826667pt;}
.y93{bottom:293.946667pt;}
.y62{bottom:295.226667pt;}
.y32{bottom:308.186667pt;}
.y92{bottom:313.306667pt;}
.y61{bottom:314.586667pt;}
.y31{bottom:327.546667pt;}
.y91{bottom:332.666667pt;}
.y60{bottom:333.946667pt;}
.y30{bottom:346.946667pt;}
.y90{bottom:352.066667pt;}
.y5f{bottom:353.506667pt;}
.y2f{bottom:366.466667pt;}
.y8f{bottom:371.426667pt;}
.y5e{bottom:372.866667pt;}
.y2e{bottom:385.826667pt;}
.y8e{bottom:390.946667pt;}
.y5d{bottom:392.226667pt;}
.y2d{bottom:401.826667pt;}
.y8d{bottom:410.306667pt;}
.y5c{bottom:411.586667pt;}
.y2c{bottom:413.986667pt;}
.y2b{bottom:426.946667pt;}
.y8c{bottom:429.666667pt;}
.y5b{bottom:430.946667pt;}
.y2a{bottom:442.306667pt;}
.y8b{bottom:449.026667pt;}
.y5a{bottom:450.466667pt;}
.y29{bottom:457.666667pt;}
.y8a{bottom:468.546667pt;}
.y59{bottom:469.826667pt;}
.y28{bottom:473.026667pt;}
.y9e{bottom:475.906667pt;}
.y89{bottom:487.906667pt;}
.y27{bottom:488.226667pt;}
.y58{bottom:489.186667pt;}
.y26{bottom:503.586667pt;}
.y88{bottom:507.266667pt;}
.y57{bottom:508.546667pt;}
.y25{bottom:518.946667pt;}
.y87{bottom:526.626667pt;}
.y56{bottom:528.066667pt;}
.y24{bottom:534.306667pt;}
.y86{bottom:545.986667pt;}
.y55{bottom:547.426667pt;}
.y23{bottom:549.666667pt;}
.y22{bottom:564.866667pt;}
.y85{bottom:565.506667pt;}
.y54{bottom:566.786667pt;}
.y21{bottom:580.253333pt;}
.y84{bottom:584.893333pt;}
.y53{bottom:586.173333pt;}
.y20{bottom:595.613333pt;}
.y83{bottom:604.253333pt;}
.y52{bottom:605.533333pt;}
.y1f{bottom:610.973333pt;}
.y82{bottom:623.613333pt;}
.y51{bottom:625.053333pt;}
.y1e{bottom:626.333333pt;}
.y1d{bottom:641.693333pt;}
.y81{bottom:642.973333pt;}
.y50{bottom:644.413333pt;}
.y1c{bottom:656.893333pt;}
.y80{bottom:662.493333pt;}
.y4f{bottom:663.773333pt;}
.y1b{bottom:672.253333pt;}
.y7f{bottom:681.853333pt;}
.y4e{bottom:683.133333pt;}
.y1a{bottom:687.613333pt;}
.y7e{bottom:701.213333pt;}
.y4d{bottom:702.493333pt;}
.y19{bottom:702.973333pt;}
.y18{bottom:718.333333pt;}
.y7d{bottom:720.573333pt;}
.y4c{bottom:722.013333pt;}
.y17{bottom:733.693333pt;}
.y7c{bottom:740.093333pt;}
.y4b{bottom:741.373333pt;}
.y16{bottom:748.893333pt;}
.y7b{bottom:759.453333pt;}
.y4a{bottom:760.733333pt;}
.y15{bottom:763.933333pt;}
.y14{bottom:777.853333pt;}
.y7a{bottom:778.813333pt;}
.y49{bottom:780.093333pt;}
.y13{bottom:795.653333pt;}
.y79{bottom:798.213333pt;}
.y48{bottom:799.653333pt;}
.y12{bottom:806.053333pt;}
.y78{bottom:817.573333pt;}
.y47{bottom:819.013333pt;}
.y11{bottom:821.893333pt;}
.y10{bottom:835.173333pt;}
.y77{bottom:837.093333pt;}
.y46{bottom:838.373333pt;}
.yf{bottom:852.133333pt;}
.y76{bottom:856.453333pt;}
.y45{bottom:857.733333pt;}
.ye{bottom:867.973333pt;}
.y75{bottom:875.813333pt;}
.y44{bottom:877.093333pt;}
.yd{bottom:881.573333pt;}
.y74{bottom:895.173333pt;}
.y43{bottom:896.613333pt;}
.yc{bottom:901.573333pt;}
.y6e{bottom:911.973333pt;}
.y70{bottom:912.773333pt;}
.y73{bottom:913.733333pt;}
.y6f{bottom:914.373333pt;}
.y71{bottom:914.533333pt;}
.y6d{bottom:914.693333pt;}
.y72{bottom:915.333333pt;}
.y42{bottom:915.973333pt;}
.yb{bottom:921.573333pt;}
.y41{bottom:935.333333pt;}
.ya{bottom:939.973333pt;}
.y9{bottom:952.933333pt;}
.y40{bottom:954.693333pt;}
.y8{bottom:968.293333pt;}
.y3f{bottom:974.213333pt;}
.y7{bottom:983.653333pt;}
.y3e{bottom:993.573333pt;}
.y6{bottom:998.853333pt;}
.y3d{bottom:1012.933333pt;}
.y5{bottom:1014.213333pt;}
.y3{bottom:1044.320000pt;}
.y1{bottom:1057.920000pt;}
.h2{height:16.800000pt;}
.hb{height:26.359375pt;}
.h7{height:30.254687pt;}
.h1f{height:30.595000pt;}
.h5{height:35.342500pt;}
.h6{height:37.479688pt;}
.hf{height:38.361562pt;}
.hc{height:39.539062pt;}
.ha{height:41.543750pt;}
.h3{height:42.521250pt;}
.hd{height:43.756563pt;}
.he{height:43.782500pt;}
.h4{height:48.501250pt;}
.h9{height:48.530000pt;}
.h8{height:48.768750pt;}
.h10{height:51.696875pt;}
.h11{height:51.803542pt;}
.h13{height:54.193750pt;}
.h1c{height:54.833750pt;}
.h18{height:55.473750pt;}
.h1d{height:56.113750pt;}
.h1b{height:57.393750pt;}
.h15{height:58.033750pt;}
.h12{height:59.313750pt;}
.h1a{height:59.953750pt;}
.h1e{height:60.593750pt;}
.h16{height:61.873750pt;}
.h17{height:62.513750pt;}
.h19{height:63.153750pt;}
.h14{height:65.073750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:73.440000pt;}
.w3{width:538.693333pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:96.032000pt;}
.x5{left:97.631988pt;}
.x8{left:99.071988pt;}
.xb{left:103.071988pt;}
.x6{left:120.511988pt;}
.x7f{left:124.511988pt;}
.x13{left:126.751988pt;}
.xf{left:143.226655pt;}
.x7c{left:149.466655pt;}
.x9{left:152.666655pt;}
.x77{left:156.186655pt;}
.x62{left:161.466655pt;}
.x3{left:169.466667pt;}
.x1a{left:172.346655pt;}
.x18{left:173.946655pt;}
.x7d{left:185.306655pt;}
.x63{left:186.266655pt;}
.x57{left:190.106655pt;}
.x5e{left:198.586655pt;}
.x79{left:199.706655pt;}
.x1b{left:204.506655pt;}
.xa{left:211.866655pt;}
.x6b{left:215.546655pt;}
.xd{left:219.386655pt;}
.x7e{left:222.466655pt;}
.x55{left:227.426655pt;}
.x59{left:233.026655pt;}
.x56{left:234.786553pt;}
.x6c{left:240.226655pt;}
.x19{left:249.346655pt;}
.x64{left:253.346655pt;}
.x54{left:255.586655pt;}
.x65{left:256.866655pt;}
.x53{left:259.266655pt;}
.x52{left:267.906655pt;}
.x51{left:271.586655pt;}
.x50{left:285.666655pt;}
.x4f{left:289.506655pt;}
.x5d{left:297.506655pt;}
.x4e{left:300.226655pt;}
.x4d{left:304.066655pt;}
.x4c{left:310.946655pt;}
.x4a{left:314.626655pt;}
.x58{left:324.226655pt;}
.x4b{left:325.666659pt;}
.x6d{left:332.386655pt;}
.x49{left:337.666655pt;}
.x10{left:348.866655pt;}
.x66{left:352.866655pt;}
.x48{left:356.546655pt;}
.x47{left:360.226655pt;}
.x7{left:363.746655pt;}
.x46{left:366.626655pt;}
.x45{left:370.306655pt;}
.x5a{left:371.426655pt;}
.xe{left:375.613321pt;}
.xc{left:381.533321pt;}
.x44{left:384.733321pt;}
.x43{left:388.413321pt;}
.x67{left:393.213321pt;}
.x60{left:396.253321pt;}
.x4{left:398.493321pt;}
.x42{left:400.413321pt;}
.x41{left:404.093322pt;}
.x40{left:409.053321pt;}
.x3f{left:412.733321pt;}
.x6e{left:416.093322pt;}
.x6f{left:421.373321pt;}
.x3e{left:423.133321pt;}
.x3d{left:426.813321pt;}
.x5c{left:434.493321pt;}
.x3c{left:441.053321pt;}
.x3b{left:444.733321pt;}
.x70{left:451.933321pt;}
.x61{left:454.173321pt;}
.x3a{left:456.893322pt;}
.x11{left:460.893322pt;}
.x5b{left:466.973321pt;}
.x7b{left:474.013322pt;}
.x39{left:479.453322pt;}
.x38{left:483.133322pt;}
.x71{left:492.573322pt;}
.x72{left:497.853322pt;}
.x37{left:502.973321pt;}
.x36{left:506.813321pt;}
.x68{left:510.653321pt;}
.x35{left:513.373321pt;}
.x34{left:515.133322pt;}
.x33{left:522.693322pt;}
.x32{left:526.373321pt;}
.x5f{left:539.333322pt;}
.x31{left:543.493322pt;}
.x30{left:547.173321pt;}
.x73{left:551.333322pt;}
.x69{left:553.093322pt;}
.x2f{left:555.973321pt;}
.x2e{left:559.653322pt;}
.x7a{left:562.533321pt;}
.x78{left:566.853321pt;}
.x16{left:571.813321pt;}
.x2d{left:573.573322pt;}
.x6a{left:575.013321pt;}
.x1c{left:576.453322pt;}
.x74{left:581.573322pt;}
.x2c{left:583.813321pt;}
.x2b{left:585.733321pt;}
.x75{left:586.853321pt;}
.x2a{left:593.253321pt;}
.x29{left:596.933321pt;}
.x14{left:601.413322pt;}
.x28{left:608.133322pt;}
.x17{left:609.093322pt;}
.x27{left:611.813321pt;}
.x26{left:616.773321pt;}
.x25{left:620.453322pt;}
.x1d{left:631.333322pt;}
.x24{left:634.533321pt;}
.x15{left:637.893321pt;}
.x12{left:650.373321pt;}
.x23{left:654.533321pt;}
.x22{left:658.373321pt;}
.x21{left:670.373321pt;}
.x20{left:674.079988pt;}
.x1f{left:683.519988pt;}
.x1e{left:687.199988pt;}
.x76{left:700.959988pt;}
}




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