
    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_ef6630340fc77462aa9b64ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_20f04de071356a24d8a6ffb5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_cdda72a84c8e351168cfc6de.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932000;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_a90a6909c01362281e69641b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_dfa02bf271318a01172fe04c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_9d958c2621d65928b2aa8480.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_fa8bc28fc07927d681082d12.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_efb90845ea2dfe0f2ec4a4dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.389000;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_09e36303faf221f8a0320294.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_1e5d835d61cb4407fdf2c87a.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.399000;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_47ee97ba4fc935cadbdc5f78.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_249bc5b674dba3c21b04bc68.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_b60ce7b25019dac72553498f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.046000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.754000px;}
.v5{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.078000px;}
.v8{vertical-align:27.024000px;}
.v1{vertical-align:31.236000px;}
.v6{vertical-align:44.280000px;}
.vc{vertical-align:55.968000px;}
.v4{vertical-align:62.184000px;}
.v7{vertical-align:89.088000px;}
.v9{vertical-align:92.292000px;}
.vb{vertical-align:120.882000px;}
.va{vertical-align:137.190000px;}
.ls1{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.001836px;}
.ls1b{letter-spacing:0.002156px;}
.ls20{letter-spacing:0.002682px;}
.ls26{letter-spacing:0.004869px;}
.ls11{letter-spacing:0.017863px;}
.ls1c{letter-spacing:0.019967px;}
.ls2c{letter-spacing:0.022650px;}
.lsf{letter-spacing:0.033906px;}
.ls1f{letter-spacing:0.065455px;}
.ls7{letter-spacing:0.904881px;}
.ls22{letter-spacing:1.767274px;}
.ls14{letter-spacing:2.984915px;}
.ls0{letter-spacing:2.986053px;}
.lsd{letter-spacing:2.989289px;}
.ls12{letter-spacing:2.990915px;}
.lsb{letter-spacing:3.665458px;}
.ls4{letter-spacing:4.647277px;}
.lsa{letter-spacing:4.712731px;}
.ls15{letter-spacing:7.172706px;}
.lsc{letter-spacing:7.396370px;}
.ls19{letter-spacing:10.865464px;}
.ls8{letter-spacing:10.930918px;}
.ls17{letter-spacing:13.385976px;}
.ls23{letter-spacing:14.530921px;}
.ls3{letter-spacing:18.196379px;}
.ls2a{letter-spacing:20.029108px;}
.ls24{letter-spacing:21.729191px;}
.ls6{letter-spacing:21.796382px;}
.ls5{letter-spacing:21.861836px;}
.ls10{letter-spacing:24.800915px;}
.ls2d{letter-spacing:25.003657px;}
.ls13{letter-spacing:25.355412px;}
.ls9{letter-spacing:25.854567px;}
.ls28{letter-spacing:26.312749px;}
.ls29{letter-spacing:27.490932px;}
.ls21{letter-spacing:30.894571px;}
.ls1e{letter-spacing:32.400027px;}
.ls2{letter-spacing:32.727300px;}
.ls2b{letter-spacing:35.083666px;}
.ls18{letter-spacing:39.995424px;}
.ls25{letter-spacing:70.726884px;}
.ls1d{letter-spacing:618.349606px;}
.ls27{letter-spacing:808.037037px;}
.lse{letter-spacing:886.451648px;}
.ls1a{letter-spacing:948.829882px;}
.ls16{letter-spacing:1000.080833px;}
.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;}
}
.ws4e{word-spacing:-51.820407px;}
.ws46{word-spacing:-46.407311px;}
.ws2e{word-spacing:-42.637126px;}
.ws47{word-spacing:-36.379667px;}
.ws23{word-spacing:-31.706208px;}
.ws38{word-spacing:-24.440748px;}
.ws12{word-spacing:-22.416000px;}
.ws20{word-spacing:-18.183288px;}
.ws36{word-spacing:-17.044378px;}
.ws40{word-spacing:-14.111859px;}
.ws51{word-spacing:-9.909826px;}
.ws2f{word-spacing:-7.252370px;}
.ws44{word-spacing:-3.325094px;}
.ws64{word-spacing:-1.426910px;}
.ws63{word-spacing:-1.361456px;}
.wsa{word-spacing:-1.230546px;}
.ws1b{word-spacing:-0.903273px;}
.ws3a{word-spacing:-0.576000px;}
.ws7{word-spacing:-0.445091px;}
.ws29{word-spacing:-0.117818px;}
.ws24{word-spacing:-0.052364px;}
.ws3f{word-spacing:-0.047821px;}
.ws4d{word-spacing:-0.001273px;}
.ws11{word-spacing:0.000000px;}
.ws39{word-spacing:0.013091px;}
.ws5b{word-spacing:0.209455px;}
.wsb{word-spacing:0.602182px;}
.ws53{word-spacing:0.667637px;}
.wsd{word-spacing:1.387638px;}
.ws31{word-spacing:1.453092px;}
.ws2d{word-spacing:1.714911px;}
.ws10{word-spacing:1.845820px;}
.ws21{word-spacing:1.976729px;}
.ws17{word-spacing:2.002911px;}
.ws5c{word-spacing:2.107638px;}
.ws5d{word-spacing:2.173093px;}
.ws1c{word-spacing:2.696730px;}
.ws65{word-spacing:3.024003px;}
.ws59{word-spacing:3.089457px;}
.ws58{word-spacing:3.154912px;}
.ws5e{word-spacing:3.220366px;}
.ws69{word-spacing:3.299613px;}
.ws1f{word-spacing:3.351276px;}
.ws6b{word-spacing:3.359389px;}
.ws4{word-spacing:3.613094px;}
.wsf{word-spacing:3.678549px;}
.ws43{word-spacing:4.136731px;}
.ws14{word-spacing:4.162913px;}
.ws45{word-spacing:4.202185px;}
.ws16{word-spacing:4.228367px;}
.ws30{word-spacing:4.398549px;}
.ws22{word-spacing:4.483200px;}
.ws49{word-spacing:4.725822px;}
.ws1d{word-spacing:4.791277px;}
.wsc{word-spacing:4.856731px;}
.ws1a{word-spacing:5.184004px;}
.ws9{word-spacing:5.380368px;}
.ws66{word-spacing:5.445823px;}
.ws4c{word-spacing:5.511277px;}
.ws3b{word-spacing:5.904005px;}
.wse{word-spacing:5.969460px;}
.ws2c{word-spacing:6.034914px;}
.ws6a{word-spacing:6.121021px;}
.ws5a{word-spacing:6.244369px;}
.ws50{word-spacing:6.296733px;}
.ws60{word-spacing:6.375278px;}
.ws33{word-spacing:6.427642px;}
.ws26{word-spacing:6.702551px;}
.ws3c{word-spacing:7.049971px;}
.ws67{word-spacing:7.213097px;}
.ws4a{word-spacing:7.278552px;}
.ws4f{word-spacing:7.409461px;}
.ws8{word-spacing:7.605825px;}
.ws28{word-spacing:7.671279px;}
.ws1e{word-spacing:7.802188px;}
.ws2{word-spacing:7.990856px;}
.ws42{word-spacing:8.260371px;}
.ws61{word-spacing:8.653098px;}
.ws3{word-spacing:9.589000px;}
.ws34{word-spacing:9.831281px;}
.ws68{word-spacing:10.093099px;}
.ws5{word-spacing:10.878555px;}
.ws52{word-spacing:10.957100px;}
.ws19{word-spacing:11.533101px;}
.ws32{word-spacing:12.514920px;}
.ws35{word-spacing:12.776738px;}
.ws56{word-spacing:13.104011px;}
.ws55{word-spacing:13.169466px;}
.ws2a{word-spacing:13.562193px;}
.ws5f{word-spacing:14.080046px;}
.ws57{word-spacing:14.476046px;}
.ws4b{word-spacing:15.473467px;}
.ws1{word-spacing:16.567698px;}
.ws41{word-spacing:18.026197px;}
.ws62{word-spacing:19.510046px;}
.ws2b{word-spacing:21.757109px;}
.ws54{word-spacing:22.477110px;}
.ws3e{word-spacing:23.876957px;}
.ws6{word-spacing:27.156452px;}
.ws0{word-spacing:31.322414px;}
.ws13{word-spacing:39.639306px;}
.ws15{word-spacing:48.711313px;}
.ws25{word-spacing:54.366591px;}
.ws18{word-spacing:58.281600px;}
.ws3d{word-spacing:99.202992px;}
.ws48{word-spacing:941.145512px;}
.ws37{word-spacing:946.970971px;}
.ws27{word-spacing:953.123703px;}
._31{margin-left:-18.196379px;}
._2a{margin-left:-6.468130px;}
._0{margin-left:-4.610401px;}
._2e{margin-left:-3.600003px;}
._1{margin-left:-2.223667px;}
._22{margin-left:-1.166307px;}
._9{width:1.035398px;}
._2{width:2.223667px;}
._27{width:3.272730px;}
._7{width:4.408669px;}
._2f{width:5.708536px;}
._4{width:18.521863px;}
._6{width:19.795868px;}
._b{width:21.284621px;}
._33{width:22.806779px;}
._24{width:24.009962px;}
._2d{width:25.132777px;}
._23{width:26.770931px;}
._8{width:27.818205px;}
._a{width:29.258206px;}
._21{width:31.151022px;}
._5{width:33.385424px;}
._3{width:34.492785px;}
._28{width:36.261848px;}
._32{width:37.567362px;}
._25{width:42.085519px;}
._30{width:43.918247px;}
._2c{width:47.833648px;}
._34{width:48.892797px;}
._2b{width:55.505501px;}
._d{width:60.545505px;}
._11{width:66.894601px;}
._29{width:75.272790px;}
._26{width:80.697600px;}
._1b{width:1042.424592px;}
._18{width:1114.948289px;}
._1e{width:1264.773868px;}
._1c{width:1397.912103px;}
._12{width:1440.946143px;}
._13{width:1456.037577px;}
._15{width:1593.623146px;}
._e{width:1648.799585px;}
._14{width:1668.957812px;}
._1f{width:1714.846855px;}
._1d{width:1745.143388px;}
._f{width:1793.192432px;}
._1a{width:1885.092480px;}
._19{width:1898.901611px;}
._17{width:1947.732532px;}
._10{width:2065.943540px;}
._c{width:2079.361733px;}
._16{width:2115.848524px;}
._20{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y37{bottom:93.813000px;}
.y36{bottom:176.005500px;}
.y35{bottom:196.329000px;}
.y75{bottom:205.066500px;}
.y55{bottom:216.652500px;}
.y34{bottom:216.816000px;}
.y74{bottom:225.390000px;}
.y98{bottom:236.976000px;}
.y33{bottom:237.139500px;}
.y54{bottom:237.757500px;}
.y73{bottom:245.713500px;}
.y97{bottom:257.301000px;}
.y32{bottom:257.463000px;}
.y53{bottom:258.081000px;}
.y72{bottom:274.032000px;}
.y96{bottom:277.624500px;}
.y31{bottom:277.786500px;}
.y52{bottom:288.745500px;}
.y95{bottom:297.948000px;}
.yb3{bottom:298.131000px;}
.y30{bottom:298.273500px;}
.y71{bottom:309.793500px;}
.y94{bottom:318.271500px;}
.y2f{bottom:318.597000px;}
.yb2{bottom:323.536500px;}
.y51{bottom:329.736000px;}
.y70{bottom:330.117000px;}
.y93{bottom:338.595000px;}
.y2e{bottom:339.082500px;}
.yb1{bottom:348.940500px;}
.y50{bottom:350.061000px;}
.y6f{bottom:356.352000px;}
.y92{bottom:358.920000px;}
.y2d{bottom:359.407500px;}
.yb0{bottom:374.346000px;}
.y91{bottom:379.243500px;}
.y13{bottom:379.552500px;}
.y2c{bottom:379.731000px;}
.y4f{bottom:385.026000px;}
.y6e{bottom:391.162500px;}
.yaf{bottom:392.278500px;}
.y90{bottom:399.567000px;}
.y12{bottom:399.877500px;}
.y2b{bottom:400.054500px;}
.y4e{bottom:404.656500px;}
.y8f{bottom:419.890500px;}
.y11{bottom:420.201000px;}
.y2a{bottom:420.378000px;}
.y6d{bottom:425.973000px;}
.yae{bottom:426.415500px;}
.y8e{bottom:440.214000px;}
.y10{bottom:440.524500px;}
.y4d{bottom:445.296000px;}
.y6c{bottom:446.296500px;}
.y29{bottom:457.375500px;}
.yf{bottom:460.848000px;}
.y8d{bottom:463.801500px;}
.yad{bottom:471.996000px;}
.y6b{bottom:474.615000px;}
.y4c{bottom:475.960500px;}
.ye{bottom:481.171500px;}
.y8c{bottom:484.125000px;}
.yac{bottom:492.319500px;}
.yd{bottom:501.496500px;}
.y28{bottom:505.534500px;}
.y8b{bottom:507.711000px;}
.y6a{bottom:510.529500px;}
.yab{bottom:512.644500px;}
.y4b{bottom:516.951000px;}
.yc{bottom:521.820000px;}
.y8a{bottom:528.034500px;}
.yaa{bottom:532.968000px;}
.y4a{bottom:537.276000px;}
.yb{bottom:542.143500px;}
.y27{bottom:542.547000px;}
.y89{bottom:554.883000px;}
.y69{bottom:555.036000px;}
.y49{bottom:557.599500px;}
.ya{bottom:562.467000px;}
.ya9{bottom:569.496000px;}
.y68{bottom:575.359500px;}
.y48{bottom:577.923000px;}
.y26{bottom:579.559500px;}
.y9{bottom:582.790500px;}
.y88{bottom:585.886500px;}
.y47{bottom:599.028000px;}
.y8{bottom:603.115500px;}
.y67{bottom:603.678000px;}
.ya8{bottom:615.076500px;}
.y25{bottom:616.572000px;}
.y87{bottom:616.890000px;}
.y46{bottom:619.351500px;}
.ya7{bottom:635.400000px;}
.y66{bottom:639.439500px;}
.y45{bottom:639.675000px;}
.y7{bottom:642.865500px;}
.y86{bottom:647.893500px;}
.y24{bottom:653.584500px;}
.y65{bottom:659.763000px;}
.ya6{bottom:669.174000px;}
.y23{bottom:674.104500px;}
.y85{bottom:674.742000px;}
.y44{bottom:678.780000px;}
.y6{bottom:679.588500px;}
.y84{bottom:700.050000px;}
.y64{bottom:701.199000px;}
.ya5{bottom:702.946500px;}
.y5{bottom:708.321000px;}
.y22{bottom:711.117000px;}
.y83{bottom:711.274500px;}
.y43{bottom:717.885000px;}
.y21{bottom:731.635500px;}
.ya4{bottom:736.720500px;}
.y42{bottom:738.210000px;}
.y63{bottom:742.633500px;}
.y82{bottom:752.041500px;}
.y20{bottom:752.154000px;}
.y41{bottom:768.873000px;}
.ya3{bottom:770.494500px;}
.y62{bottom:770.952000px;}
.y81{bottom:785.958000px;}
.y1f{bottom:789.166500px;}
.ya2{bottom:804.267000px;}
.y61{bottom:806.713500px;}
.y40{bottom:807.655500px;}
.y1e{bottom:809.685000px;}
.y4{bottom:822.820500px;}
.ya1{bottom:824.590500px;}
.y80{bottom:826.968000px;}
.y1d{bottom:830.203500px;}
.y5f{bottom:832.399500px;}
.y60{bottom:843.624000px;}
.ya0{bottom:844.915500px;}
.y7f{bottom:847.291500px;}
.y1c{bottom:850.723500px;}
.y5e{bottom:854.694000px;}
.y3f{bottom:858.804000px;}
.y3{bottom:860.101500px;}
.y7e{bottom:870.877500px;}
.y5d{bottom:871.644000px;}
.y9f{bottom:881.443500px;}
.y1b{bottom:887.734500px;}
.y7d{bottom:891.201000px;}
.y3e{bottom:895.701000px;}
.y2{bottom:904.933500px;}
.y5c{bottom:906.453000px;}
.y1a{bottom:908.254500px;}
.y7c{bottom:918.051000px;}
.y9e{bottom:927.024000px;}
.y19{bottom:928.773000px;}
.y3d{bottom:932.598000px;}
.y5b{bottom:941.263500px;}
.y7b{bottom:949.053000px;}
.y18{bottom:949.291500px;}
.y9d{bottom:960.796500px;}
.y3c{bottom:969.495000px;}
.y5a{bottom:969.582000px;}
.y17{bottom:969.810000px;}
.y7a{bottom:980.056500px;}
.y9c{bottom:994.570500px;}
.y59{bottom:1005.496500px;}
.y3b{bottom:1006.392000px;}
.y16{bottom:1006.822500px;}
.y79{bottom:1011.060000px;}
.y9b{bottom:1028.343000px;}
.y78{bottom:1037.910000px;}
.y3a{bottom:1043.290500px;}
.y15{bottom:1043.835000px;}
.y58{bottom:1050.003000px;}
.y77{bottom:1058.233500px;}
.y9a{bottom:1062.117000px;}
.y57{bottom:1070.328000px;}
.y39{bottom:1080.187500px;}
.y14{bottom:1080.847500px;}
.y99{bottom:1082.440500px;}
.y76{bottom:1085.052000px;}
.y1{bottom:1087.587000px;}
.y56{bottom:1090.651500px;}
.y38{bottom:1118.968500px;}
.h6{height:35.865450px;}
.h2{height:41.484266px;}
.h14{height:44.831700px;}
.h9{height:45.818220px;}
.hb{height:46.865494px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h13{height:58.586184px;}
.ha{height:61.168950px;}
.h10{height:62.889450px;}
.hc{height:64.802184px;}
.h5{height:74.035330px;}
.hf{height:91.706184px;}
.hd{height:93.370950px;}
.he{height:93.988950px;}
.h11{height:94.910184px;}
.h3{height:106.485382px;}
.h12{height:156.747450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x19{left:137.107500px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.x1a{left:161.064000px;}
.x6{left:164.010000px;}
.x1{left:286.581000px;}
.x14{left:315.657000px;}
.x16{left:363.073500px;}
.xe{left:366.790500px;}
.xb{left:382.674000px;}
.x13{left:398.280000px;}
.x15{left:407.025000px;}
.xf{left:408.463500px;}
.x8{left:410.013000px;}
.x10{left:412.869000px;}
.x9{left:418.530000px;}
.x11{left:434.389500px;}
.x7{left:438.466500px;}
.xc{left:441.625500px;}
.x12{left:453.456000px;}
.xd{left:458.332500px;}
.x17{left:475.251000px;}
.x18{left:544.770000px;}
.xa{left:779.052000px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v5{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.736000pt;}
.v8{vertical-align:24.021333pt;}
.v1{vertical-align:27.765333pt;}
.v6{vertical-align:39.360000pt;}
.vc{vertical-align:49.749333pt;}
.v4{vertical-align:55.274667pt;}
.v7{vertical-align:79.189333pt;}
.v9{vertical-align:82.037333pt;}
.vb{vertical-align:107.450667pt;}
.va{vertical-align:121.946667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.001632pt;}
.ls1b{letter-spacing:0.001916pt;}
.ls20{letter-spacing:0.002384pt;}
.ls26{letter-spacing:0.004328pt;}
.ls11{letter-spacing:0.015878pt;}
.ls1c{letter-spacing:0.017749pt;}
.ls2c{letter-spacing:0.020133pt;}
.lsf{letter-spacing:0.030138pt;}
.ls1f{letter-spacing:0.058182pt;}
.ls7{letter-spacing:0.804338pt;}
.ls22{letter-spacing:1.570910pt;}
.ls14{letter-spacing:2.653258pt;}
.ls0{letter-spacing:2.654270pt;}
.lsd{letter-spacing:2.657146pt;}
.ls12{letter-spacing:2.658591pt;}
.lsb{letter-spacing:3.258185pt;}
.ls4{letter-spacing:4.130913pt;}
.lsa{letter-spacing:4.189094pt;}
.ls15{letter-spacing:6.375739pt;}
.lsc{letter-spacing:6.574551pt;}
.ls19{letter-spacing:9.658190pt;}
.ls8{letter-spacing:9.716372pt;}
.ls17{letter-spacing:11.898645pt;}
.ls23{letter-spacing:12.916374pt;}
.ls3{letter-spacing:16.174559pt;}
.ls2a{letter-spacing:17.803651pt;}
.ls24{letter-spacing:19.314836pt;}
.ls6{letter-spacing:19.374562pt;}
.ls5{letter-spacing:19.432743pt;}
.ls10{letter-spacing:22.045258pt;}
.ls2d{letter-spacing:22.225473pt;}
.ls13{letter-spacing:22.538144pt;}
.ls9{letter-spacing:22.981837pt;}
.ls28{letter-spacing:23.389110pt;}
.ls29{letter-spacing:24.436384pt;}
.ls21{letter-spacing:27.461841pt;}
.ls1e{letter-spacing:28.800024pt;}
.ls2{letter-spacing:29.090933pt;}
.ls2b{letter-spacing:31.185481pt;}
.ls18{letter-spacing:35.551488pt;}
.ls25{letter-spacing:62.868342pt;}
.ls1d{letter-spacing:549.644094pt;}
.ls27{letter-spacing:718.255144pt;}
.lse{letter-spacing:787.957020pt;}
.ls1a{letter-spacing:843.404339pt;}
.ls16{letter-spacing:888.960741pt;}
.ws4e{word-spacing:-46.062584pt;}
.ws46{word-spacing:-41.250943pt;}
.ws2e{word-spacing:-37.899668pt;}
.ws47{word-spacing:-32.337481pt;}
.ws23{word-spacing:-28.183296pt;}
.ws38{word-spacing:-21.725109pt;}
.ws12{word-spacing:-19.925333pt;}
.ws20{word-spacing:-16.162923pt;}
.ws36{word-spacing:-15.150558pt;}
.ws40{word-spacing:-12.543875pt;}
.ws51{word-spacing:-8.808735pt;}
.ws2f{word-spacing:-6.446551pt;}
.ws44{word-spacing:-2.955639pt;}
.ws64{word-spacing:-1.268365pt;}
.ws63{word-spacing:-1.210183pt;}
.wsa{word-spacing:-1.093819pt;}
.ws1b{word-spacing:-0.802910pt;}
.ws3a{word-spacing:-0.512000pt;}
.ws7{word-spacing:-0.395637pt;}
.ws29{word-spacing:-0.104727pt;}
.ws24{word-spacing:-0.046545pt;}
.ws3f{word-spacing:-0.042507pt;}
.ws4d{word-spacing:-0.001132pt;}
.ws11{word-spacing:0.000000pt;}
.ws39{word-spacing:0.011636pt;}
.ws5b{word-spacing:0.186182pt;}
.wsb{word-spacing:0.535273pt;}
.ws53{word-spacing:0.593455pt;}
.wsd{word-spacing:1.233456pt;}
.ws31{word-spacing:1.291637pt;}
.ws2d{word-spacing:1.524365pt;}
.ws10{word-spacing:1.640729pt;}
.ws21{word-spacing:1.757092pt;}
.ws17{word-spacing:1.780365pt;}
.ws5c{word-spacing:1.873456pt;}
.ws5d{word-spacing:1.931638pt;}
.ws1c{word-spacing:2.397093pt;}
.ws65{word-spacing:2.688002pt;}
.ws59{word-spacing:2.746184pt;}
.ws58{word-spacing:2.804366pt;}
.ws5e{word-spacing:2.862548pt;}
.ws69{word-spacing:2.932989pt;}
.ws1f{word-spacing:2.978912pt;}
.ws6b{word-spacing:2.986123pt;}
.ws4{word-spacing:3.211639pt;}
.wsf{word-spacing:3.269821pt;}
.ws43{word-spacing:3.677094pt;}
.ws14{word-spacing:3.700367pt;}
.ws45{word-spacing:3.735276pt;}
.ws16{word-spacing:3.758549pt;}
.ws30{word-spacing:3.909821pt;}
.ws22{word-spacing:3.985067pt;}
.ws49{word-spacing:4.200731pt;}
.ws1d{word-spacing:4.258913pt;}
.wsc{word-spacing:4.317095pt;}
.ws1a{word-spacing:4.608004pt;}
.ws9{word-spacing:4.782549pt;}
.ws66{word-spacing:4.840731pt;}
.ws4c{word-spacing:4.898913pt;}
.ws3b{word-spacing:5.248004pt;}
.wse{word-spacing:5.306186pt;}
.ws2c{word-spacing:5.364368pt;}
.ws6a{word-spacing:5.440908pt;}
.ws5a{word-spacing:5.550550pt;}
.ws50{word-spacing:5.597096pt;}
.ws60{word-spacing:5.666914pt;}
.ws33{word-spacing:5.713459pt;}
.ws26{word-spacing:5.957823pt;}
.ws3c{word-spacing:6.266641pt;}
.ws67{word-spacing:6.411642pt;}
.ws4a{word-spacing:6.469824pt;}
.ws4f{word-spacing:6.586187pt;}
.ws8{word-spacing:6.760733pt;}
.ws28{word-spacing:6.818915pt;}
.ws1e{word-spacing:6.935279pt;}
.ws2{word-spacing:7.102983pt;}
.ws42{word-spacing:7.342552pt;}
.ws61{word-spacing:7.691643pt;}
.ws3{word-spacing:8.523556pt;}
.ws34{word-spacing:8.738916pt;}
.ws68{word-spacing:8.971644pt;}
.ws5{word-spacing:9.669826pt;}
.ws52{word-spacing:9.739644pt;}
.ws19{word-spacing:10.251645pt;}
.ws32{word-spacing:11.124373pt;}
.ws35{word-spacing:11.357100pt;}
.ws56{word-spacing:11.648010pt;}
.ws55{word-spacing:11.706192pt;}
.ws2a{word-spacing:12.055283pt;}
.ws5f{word-spacing:12.515596pt;}
.ws57{word-spacing:12.867596pt;}
.ws4b{word-spacing:13.754193pt;}
.ws1{word-spacing:14.726842pt;}
.ws41{word-spacing:16.023286pt;}
.ws62{word-spacing:17.342263pt;}
.ws2b{word-spacing:19.339652pt;}
.ws54{word-spacing:19.979653pt;}
.ws3e{word-spacing:21.223961pt;}
.ws6{word-spacing:24.139069pt;}
.ws0{word-spacing:27.842146pt;}
.ws13{word-spacing:35.234938pt;}
.ws15{word-spacing:43.298945pt;}
.ws25{word-spacing:48.325858pt;}
.ws18{word-spacing:51.805867pt;}
.ws3d{word-spacing:88.180437pt;}
.ws48{word-spacing:836.573788pt;}
.ws37{word-spacing:841.751974pt;}
.ws27{word-spacing:847.221070pt;}
._31{margin-left:-16.174559pt;}
._2a{margin-left:-5.749449pt;}
._0{margin-left:-4.098134pt;}
._2e{margin-left:-3.200003pt;}
._1{margin-left:-1.976593pt;}
._22{margin-left:-1.036717pt;}
._9{width:0.920354pt;}
._2{width:1.976593pt;}
._27{width:2.909093pt;}
._7{width:3.918817pt;}
._2f{width:5.074254pt;}
._4{width:16.463878pt;}
._6{width:17.596327pt;}
._b{width:18.919663pt;}
._33{width:20.272693pt;}
._24{width:21.342189pt;}
._2d{width:22.340246pt;}
._23{width:23.796383pt;}
._8{width:24.727293pt;}
._a{width:26.007294pt;}
._21{width:27.689797pt;}
._5{width:29.675933pt;}
._3{width:30.660253pt;}
._28{width:32.232754pt;}
._32{width:33.393211pt;}
._25{width:37.409350pt;}
._30{width:39.038442pt;}
._2c{width:42.518798pt;}
._34{width:43.460264pt;}
._2b{width:49.338223pt;}
._d{width:53.818227pt;}
._11{width:59.461868pt;}
._29{width:66.909147pt;}
._26{width:71.731200pt;}
._1b{width:926.599637pt;}
._18{width:991.065146pt;}
._1e{width:1124.243438pt;}
._1c{width:1242.588536pt;}
._12{width:1280.841016pt;}
._13{width:1294.255624pt;}
._15{width:1416.553908pt;}
._e{width:1465.599631pt;}
._14{width:1483.518055pt;}
._1f{width:1524.308315pt;}
._1d{width:1551.238567pt;}
._f{width:1593.948829pt;}
._1a{width:1675.637760pt;}
._19{width:1687.912543pt;}
._17{width:1731.317806pt;}
._10{width:1836.394258pt;}
._c{width:1848.321540pt;}
._16{width:1880.754243pt;}
._20{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:83.389333pt;}
.y36{bottom:156.449333pt;}
.y35{bottom:174.514667pt;}
.y75{bottom:182.281333pt;}
.y55{bottom:192.580000pt;}
.y34{bottom:192.725333pt;}
.y74{bottom:200.346667pt;}
.y98{bottom:210.645333pt;}
.y33{bottom:210.790667pt;}
.y54{bottom:211.340000pt;}
.y73{bottom:218.412000pt;}
.y97{bottom:228.712000pt;}
.y32{bottom:228.856000pt;}
.y53{bottom:229.405333pt;}
.y72{bottom:243.584000pt;}
.y96{bottom:246.777333pt;}
.y31{bottom:246.921333pt;}
.y52{bottom:256.662667pt;}
.y95{bottom:264.842667pt;}
.yb3{bottom:265.005333pt;}
.y30{bottom:265.132000pt;}
.y71{bottom:275.372000pt;}
.y94{bottom:282.908000pt;}
.y2f{bottom:283.197333pt;}
.yb2{bottom:287.588000pt;}
.y51{bottom:293.098667pt;}
.y70{bottom:293.437333pt;}
.y93{bottom:300.973333pt;}
.y2e{bottom:301.406667pt;}
.yb1{bottom:310.169333pt;}
.y50{bottom:311.165333pt;}
.y6f{bottom:316.757333pt;}
.y92{bottom:319.040000pt;}
.y2d{bottom:319.473333pt;}
.yb0{bottom:332.752000pt;}
.y91{bottom:337.105333pt;}
.y13{bottom:337.380000pt;}
.y2c{bottom:337.538667pt;}
.y4f{bottom:342.245333pt;}
.y6e{bottom:347.700000pt;}
.yaf{bottom:348.692000pt;}
.y90{bottom:355.170667pt;}
.y12{bottom:355.446667pt;}
.y2b{bottom:355.604000pt;}
.y4e{bottom:359.694667pt;}
.y8f{bottom:373.236000pt;}
.y11{bottom:373.512000pt;}
.y2a{bottom:373.669333pt;}
.y6d{bottom:378.642667pt;}
.yae{bottom:379.036000pt;}
.y8e{bottom:391.301333pt;}
.y10{bottom:391.577333pt;}
.y4d{bottom:395.818667pt;}
.y6c{bottom:396.708000pt;}
.y29{bottom:406.556000pt;}
.yf{bottom:409.642667pt;}
.y8d{bottom:412.268000pt;}
.yad{bottom:419.552000pt;}
.y6b{bottom:421.880000pt;}
.y4c{bottom:423.076000pt;}
.ye{bottom:427.708000pt;}
.y8c{bottom:430.333333pt;}
.yac{bottom:437.617333pt;}
.yd{bottom:445.774667pt;}
.y28{bottom:449.364000pt;}
.y8b{bottom:451.298667pt;}
.y6a{bottom:453.804000pt;}
.yab{bottom:455.684000pt;}
.y4b{bottom:459.512000pt;}
.yc{bottom:463.840000pt;}
.y8a{bottom:469.364000pt;}
.yaa{bottom:473.749333pt;}
.y4a{bottom:477.578667pt;}
.yb{bottom:481.905333pt;}
.y27{bottom:482.264000pt;}
.y89{bottom:493.229333pt;}
.y69{bottom:493.365333pt;}
.y49{bottom:495.644000pt;}
.ya{bottom:499.970667pt;}
.ya9{bottom:506.218667pt;}
.y68{bottom:511.430667pt;}
.y48{bottom:513.709333pt;}
.y26{bottom:515.164000pt;}
.y9{bottom:518.036000pt;}
.y88{bottom:520.788000pt;}
.y47{bottom:532.469333pt;}
.y8{bottom:536.102667pt;}
.y67{bottom:536.602667pt;}
.ya8{bottom:546.734667pt;}
.y25{bottom:548.064000pt;}
.y87{bottom:548.346667pt;}
.y46{bottom:550.534667pt;}
.ya7{bottom:564.800000pt;}
.y66{bottom:568.390667pt;}
.y45{bottom:568.600000pt;}
.y7{bottom:571.436000pt;}
.y86{bottom:575.905333pt;}
.y24{bottom:580.964000pt;}
.y65{bottom:586.456000pt;}
.ya6{bottom:594.821333pt;}
.y23{bottom:599.204000pt;}
.y85{bottom:599.770667pt;}
.y44{bottom:603.360000pt;}
.y6{bottom:604.078667pt;}
.y84{bottom:622.266667pt;}
.y64{bottom:623.288000pt;}
.ya5{bottom:624.841333pt;}
.y5{bottom:629.618667pt;}
.y22{bottom:632.104000pt;}
.y83{bottom:632.244000pt;}
.y43{bottom:638.120000pt;}
.y21{bottom:650.342667pt;}
.ya4{bottom:654.862667pt;}
.y42{bottom:656.186667pt;}
.y63{bottom:660.118667pt;}
.y82{bottom:668.481333pt;}
.y20{bottom:668.581333pt;}
.y41{bottom:683.442667pt;}
.ya3{bottom:684.884000pt;}
.y62{bottom:685.290667pt;}
.y81{bottom:698.629333pt;}
.y1f{bottom:701.481333pt;}
.ya2{bottom:714.904000pt;}
.y61{bottom:717.078667pt;}
.y40{bottom:717.916000pt;}
.y1e{bottom:719.720000pt;}
.y4{bottom:731.396000pt;}
.ya1{bottom:732.969333pt;}
.y80{bottom:735.082667pt;}
.y1d{bottom:737.958667pt;}
.y5f{bottom:739.910667pt;}
.y60{bottom:749.888000pt;}
.ya0{bottom:751.036000pt;}
.y7f{bottom:753.148000pt;}
.y1c{bottom:756.198667pt;}
.y5e{bottom:759.728000pt;}
.y3f{bottom:763.381333pt;}
.y3{bottom:764.534667pt;}
.y7e{bottom:774.113333pt;}
.y5d{bottom:774.794667pt;}
.y9f{bottom:783.505333pt;}
.y1b{bottom:789.097333pt;}
.y7d{bottom:792.178667pt;}
.y3e{bottom:796.178667pt;}
.y2{bottom:804.385333pt;}
.y5c{bottom:805.736000pt;}
.y1a{bottom:807.337333pt;}
.y7c{bottom:816.045333pt;}
.y9e{bottom:824.021333pt;}
.y19{bottom:825.576000pt;}
.y3d{bottom:828.976000pt;}
.y5b{bottom:836.678667pt;}
.y7b{bottom:843.602667pt;}
.y18{bottom:843.814667pt;}
.y9d{bottom:854.041333pt;}
.y3c{bottom:861.773333pt;}
.y5a{bottom:861.850667pt;}
.y17{bottom:862.053333pt;}
.y7a{bottom:871.161333pt;}
.y9c{bottom:884.062667pt;}
.y59{bottom:893.774667pt;}
.y3b{bottom:894.570667pt;}
.y16{bottom:894.953333pt;}
.y79{bottom:898.720000pt;}
.y9b{bottom:914.082667pt;}
.y78{bottom:922.586667pt;}
.y3a{bottom:927.369333pt;}
.y15{bottom:927.853333pt;}
.y58{bottom:933.336000pt;}
.y77{bottom:940.652000pt;}
.y9a{bottom:944.104000pt;}
.y57{bottom:951.402667pt;}
.y39{bottom:960.166667pt;}
.y14{bottom:960.753333pt;}
.y99{bottom:962.169333pt;}
.y76{bottom:964.490667pt;}
.y1{bottom:966.744000pt;}
.y56{bottom:969.468000pt;}
.y38{bottom:994.638667pt;}
.h6{height:31.880400pt;}
.h2{height:36.874903pt;}
.h14{height:39.850400pt;}
.h9{height:40.727307pt;}
.hb{height:41.658217pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h13{height:52.076608pt;}
.ha{height:54.372400pt;}
.h10{height:55.901733pt;}
.hc{height:57.601941pt;}
.h5{height:65.809182pt;}
.hf{height:81.516608pt;}
.hd{height:82.996400pt;}
.he{height:83.545733pt;}
.h11{height:84.364608pt;}
.h3{height:94.653673pt;}
.h12{height:139.331067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x19{left:121.873333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.x1a{left:143.168000pt;}
.x6{left:145.786667pt;}
.x1{left:254.738667pt;}
.x14{left:280.584000pt;}
.x16{left:322.732000pt;}
.xe{left:326.036000pt;}
.xb{left:340.154667pt;}
.x13{left:354.026667pt;}
.x15{left:361.800000pt;}
.xf{left:363.078667pt;}
.x8{left:364.456000pt;}
.x10{left:366.994667pt;}
.x9{left:372.026667pt;}
.x11{left:386.124000pt;}
.x7{left:389.748000pt;}
.xc{left:392.556000pt;}
.x12{left:403.072000pt;}
.xd{left:407.406667pt;}
.x17{left:422.445333pt;}
.x18{left:484.240000pt;}
.xa{left:692.490667pt;}
}




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