
    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_d7367d0599df7e2817148cbd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.995000;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_67c3fc87385843799e4189a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.507000;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_43bb53b4feedd92f2bbe7a21.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4586947aae3d28f77220011f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970000;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_a1605373179765d2a07a711a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.165000;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_72d631c27e0e479b4243ef66.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.844000;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_95a0725ee35eeb48a78582ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986000;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_cac26778fe58da3de49261ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c755f11add4b5abb3df39091.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988000;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_990c17dbb208c272bc2575ca.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.776000;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_72dad061545e501bd852427c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.987000;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_2988b57b09c7bd3545031eed.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.507000;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);}
.v8{vertical-align:-28.312199px;}
.v3{vertical-align:-26.437200px;}
.v7{vertical-align:-21.187200px;}
.v4{vertical-align:-1.874999px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.926000px;}
.v6{vertical-align:21.187800px;}
.v2{vertical-align:26.435760px;}
.v1{vertical-align:28.312200px;}
.v9{vertical-align:42.000600px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.059760px;}
.ls12{letter-spacing:0.070440px;}
.ls0{letter-spacing:0.139200px;}
.ls1c{letter-spacing:0.220800px;}
.ls1d{letter-spacing:0.249600px;}
.ls3{letter-spacing:0.451200px;}
.ls15{letter-spacing:1.046400px;}
.ls1a{letter-spacing:1.096200px;}
.ls17{letter-spacing:1.185600px;}
.ls14{letter-spacing:1.238400px;}
.ls13{letter-spacing:1.286400px;}
.ls19{letter-spacing:1.296000px;}
.ls18{letter-spacing:5.989140px;}
.ls1b{letter-spacing:7.130160px;}
.ls5{letter-spacing:7.161600px;}
.ls1f{letter-spacing:8.189280px;}
.ls10{letter-spacing:9.168660px;}
.ls1e{letter-spacing:9.219360px;}
.ls16{letter-spacing:9.426780px;}
.lsb{letter-spacing:9.609600px;}
.ls4{letter-spacing:10.171200px;}
.lsf{letter-spacing:10.246200px;}
.ls1{letter-spacing:10.248000px;}
.lsd{letter-spacing:10.248960px;}
.lsc{letter-spacing:10.346880px;}
.lsa{letter-spacing:11.310120px;}
.lse{letter-spacing:11.400480px;}
.ls7{letter-spacing:11.428800px;}
.ls9{letter-spacing:11.487120px;}
.ls2{letter-spacing:11.784000px;}
.ls8{letter-spacing:12.429000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-23.760000px;}
.wsa{word-spacing:-16.200000px;}
.ws2{word-spacing:-11.880000px;}
.ws18{word-spacing:-11.846400px;}
.ws8{word-spacing:-10.800000px;}
.ws19{word-spacing:-10.560000px;}
.ws5{word-spacing:-7.920000px;}
.ws13{word-spacing:-3.807000px;}
.ws7{word-spacing:-3.638400px;}
.wse{word-spacing:-3.182400px;}
.ws14{word-spacing:-2.937600px;}
.ws1{word-spacing:-2.784780px;}
.ws2a{word-spacing:-2.611200px;}
.ws15{word-spacing:-2.188800px;}
.ws26{word-spacing:-1.944000px;}
.ws17{word-spacing:-1.878240px;}
.ws2c{word-spacing:-1.843200px;}
.ws11{word-spacing:-1.756800px;}
.ws1a{word-spacing:-1.651200px;}
.ws1f{word-spacing:-1.612800px;}
.ws28{word-spacing:-1.580640px;}
.ws2b{word-spacing:-1.516800px;}
.ws1b{word-spacing:-1.180800px;}
.wsf{word-spacing:-1.152000px;}
.ws25{word-spacing:-1.094400px;}
.ws16{word-spacing:-1.002240px;}
.wsd{word-spacing:-0.777600px;}
.ws22{word-spacing:-0.734400px;}
.ws20{word-spacing:-0.572400px;}
.ws24{word-spacing:-0.552000px;}
.wsb{word-spacing:-0.502740px;}
.ws12{word-spacing:-0.055620px;}
.ws4{word-spacing:-0.054000px;}
.ws0{word-spacing:-0.036000px;}
.ws9{word-spacing:0.000000px;}
.ws1c{word-spacing:0.033600px;}
.ws23{word-spacing:0.557280px;}
.wsc{word-spacing:0.573600px;}
.ws27{word-spacing:0.782400px;}
.ws1d{word-spacing:0.820800px;}
.ws3{word-spacing:0.863460px;}
.ws1e{word-spacing:1.219200px;}
.ws10{word-spacing:3.534990px;}
.ws21{word-spacing:4.837680px;}
.ws29{word-spacing:18.334320px;}
._6{margin-left:-10.828800px;}
._e{margin-left:-7.204080px;}
._c{margin-left:-5.728500px;}
._7{margin-left:-4.554000px;}
._2{margin-left:-3.495600px;}
._4{margin-left:-2.388240px;}
._0{margin-left:-1.386720px;}
._1{width:1.219860px;}
._3{width:2.281500px;}
._5{width:4.011480px;}
._a{width:6.898080px;}
._d{width:8.339760px;}
._9{width:9.544560px;}
._b{width:12.054300px;}
._8{width:1506.737640px;}
.fc1{color:rgb(80,75,72);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:27.000000px;}
.fs1{font-size:36.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:118.485150px;}
.ybd{bottom:118.535700px;}
.y9c{bottom:118.565400px;}
.y7a{bottom:118.695300px;}
.y122{bottom:118.742400px;}
.y109{bottom:118.942740px;}
.y144{bottom:119.427600px;}
.ye9{bottom:119.557500px;}
.y23{bottom:123.121500px;}
.y53{bottom:134.985150px;}
.ybc{bottom:135.035700px;}
.y9b{bottom:135.065400px;}
.y79{bottom:135.195300px;}
.y121{bottom:135.242400px;}
.y108{bottom:135.442440px;}
.y143{bottom:135.927600px;}
.ye8{bottom:136.057500px;}
.y22{bottom:139.621500px;}
.y52{bottom:151.485150px;}
.ybb{bottom:151.535700px;}
.y107{bottom:151.942140px;}
.y142{bottom:152.427600px;}
.ye7{bottom:152.557500px;}
.y9a{bottom:157.943400px;}
.y78{bottom:158.073300px;}
.y120{bottom:158.120400px;}
.y51{bottom:167.985150px;}
.yba{bottom:168.035700px;}
.y106{bottom:168.441840px;}
.ye6{bottom:169.057500px;}
.y99{bottom:174.443400px;}
.y21{bottom:174.512100px;}
.y77{bottom:174.573300px;}
.y11f{bottom:174.620400px;}
.y141{bottom:175.305600px;}
.y105{bottom:184.941540px;}
.y50{bottom:190.863150px;}
.yb9{bottom:190.913700px;}
.y98{bottom:190.943400px;}
.y20{bottom:191.012100px;}
.y76{bottom:191.073300px;}
.y11e{bottom:191.120400px;}
.y140{bottom:191.805600px;}
.ye5{bottom:191.935500px;}
.y104{bottom:201.441240px;}
.yb8{bottom:207.413700px;}
.y97{bottom:207.443400px;}
.y1f{bottom:207.512100px;}
.y75{bottom:207.573150px;}
.y11d{bottom:207.620400px;}
.y13f{bottom:208.305600px;}
.ye4{bottom:208.435500px;}
.y103{bottom:217.940940px;}
.yb7{bottom:223.913700px;}
.y96{bottom:223.943400px;}
.y74{bottom:224.073150px;}
.y11c{bottom:224.120400px;}
.y13e{bottom:224.805600px;}
.ye3{bottom:224.935500px;}
.y1e{bottom:230.390100px;}
.y4d{bottom:234.440010px;}
.y102{bottom:234.440640px;}
.y95{bottom:240.443400px;}
.y11b{bottom:240.620400px;}
.y13d{bottom:241.305600px;}
.yb6{bottom:246.791700px;}
.y1d{bottom:246.890100px;}
.y73{bottom:246.951150px;}
.ye2{bottom:247.813500px;}
.y4c{bottom:250.939710px;}
.y101{bottom:250.940340px;}
.y94{bottom:256.943400px;}
.y13c{bottom:257.805600px;}
.yb5{bottom:263.291700px;}
.y72{bottom:263.451150px;}
.y11a{bottom:263.498400px;}
.ye1{bottom:264.313500px;}
.y4b{bottom:267.439410px;}
.y100{bottom:267.440040px;}
.y1c{bottom:269.768100px;}
.y13b{bottom:274.305600px;}
.yb4{bottom:279.791700px;}
.y71{bottom:279.951150px;}
.y119{bottom:279.998400px;}
.y4a{bottom:283.939110px;}
.yff{bottom:283.939740px;}
.ye0{bottom:287.191500px;}
.y13a{bottom:290.805600px;}
.y1b{bottom:292.646100px;}
.yb3{bottom:296.291700px;}
.y70{bottom:296.451150px;}
.y118{bottom:296.498400px;}
.y93{bottom:300.438450px;}
.y49{bottom:300.438810px;}
.yfe{bottom:300.439440px;}
.ydf{bottom:303.691500px;}
.y1a{bottom:309.146100px;}
.yb2{bottom:312.791700px;}
.y6f{bottom:312.951150px;}
.y117{bottom:312.998400px;}
.y139{bottom:313.683600px;}
.y92{bottom:316.938150px;}
.y48{bottom:316.938510px;}
.yfd{bottom:316.939140px;}
.yde{bottom:320.191500px;}
.yb1{bottom:329.291700px;}
.y6e{bottom:329.451150px;}
.y91{bottom:333.437850px;}
.y47{bottom:333.438210px;}
.yfc{bottom:333.438840px;}
.y116{bottom:335.876400px;}
.yb0{bottom:345.791700px;}
.y6d{bottom:345.951150px;}
.y138{bottom:349.936950px;}
.y90{bottom:349.937550px;}
.y14{bottom:349.937640px;}
.y46{bottom:349.937910px;}
.y115{bottom:358.754400px;}
.yaf{bottom:362.291700px;}
.y6c{bottom:362.451150px;}
.y137{bottom:366.436950px;}
.y8f{bottom:366.437250px;}
.y13{bottom:366.437340px;}
.ydd{bottom:366.437430px;}
.y45{bottom:366.437610px;}
.yfb{bottom:366.438240px;}
.y114{bottom:375.254400px;}
.yae{bottom:378.791700px;}
.y136{bottom:382.936950px;}
.y12{bottom:382.937040px;}
.ydc{bottom:382.937130px;}
.y44{bottom:382.937310px;}
.y8e{bottom:382.937340px;}
.yfa{bottom:382.937940px;}
.y6b{bottom:385.329150px;}
.yad{bottom:395.291700px;}
.y135{bottom:399.436950px;}
.y11{bottom:399.437010px;}
.ydb{bottom:399.437100px;}
.y43{bottom:399.437280px;}
.y8d{bottom:399.437310px;}
.yf9{bottom:399.437910px;}
.y6a{bottom:401.829150px;}
.yac{bottom:411.791700px;}
.y113{bottom:415.936950px;}
.y10{bottom:415.936980px;}
.yda{bottom:415.937070px;}
.y42{bottom:415.937250px;}
.y8c{bottom:415.937280px;}
.yf8{bottom:415.937880px;}
.y69{bottom:424.707120px;}
.yab{bottom:428.291700px;}
.y112{bottom:432.436950px;}
.yd9{bottom:432.437040px;}
.y41{bottom:432.437220px;}
.y8b{bottom:432.437250px;}
.yf{bottom:432.437310px;}
.yf7{bottom:432.437850px;}
.y68{bottom:441.207120px;}
.yaa{bottom:444.791700px;}
.y111{bottom:448.936950px;}
.yd8{bottom:448.937010px;}
.y40{bottom:448.937190px;}
.y8a{bottom:448.937220px;}
.ye{bottom:448.937280px;}
.yf6{bottom:448.937820px;}
.y67{bottom:457.707120px;}
.ya9{bottom:461.291700px;}
.y110{bottom:465.436950px;}
.y3f{bottom:465.437160px;}
.y89{bottom:465.437190px;}
.yd{bottom:465.437250px;}
.yf5{bottom:465.437790px;}
.y66{bottom:474.207120px;}
.y134{bottom:477.684870px;}
.ya8{bottom:477.791700px;}
.y10f{bottom:481.936950px;}
.y3e{bottom:481.937130px;}
.y88{bottom:481.937160px;}
.yd7{bottom:481.937190px;}
.yc{bottom:481.937220px;}
.yf4{bottom:481.937760px;}
.ya7{bottom:494.291700px;}
.y65{bottom:497.085120px;}
.y10e{bottom:498.436950px;}
.y3d{bottom:498.437100px;}
.y87{bottom:498.437130px;}
.yd6{bottom:498.437160px;}
.yb{bottom:498.437190px;}
.yf3{bottom:498.437730px;}
.y133{bottom:505.936950px;}
.ya6{bottom:510.791700px;}
.y132{bottom:511.936800px;}
.y10d{bottom:514.936950px;}
.y3c{bottom:514.937070px;}
.y86{bottom:514.937100px;}
.yd5{bottom:514.937130px;}
.ya{bottom:514.937160px;}
.yf2{bottom:514.937700px;}
.y64{bottom:519.963120px;}
.ya5{bottom:527.291700px;}
.y10c{bottom:531.436950px;}
.y3b{bottom:531.437040px;}
.y85{bottom:531.437070px;}
.yd4{bottom:531.437100px;}
.y9{bottom:531.437130px;}
.yf1{bottom:531.437670px;}
.y63{bottom:536.463120px;}
.ya4{bottom:543.791700px;}
.y10b{bottom:547.936950px;}
.y3a{bottom:547.937010px;}
.y84{bottom:547.937040px;}
.yd3{bottom:547.937070px;}
.y8{bottom:547.937100px;}
.yf0{bottom:547.937640px;}
.y62{bottom:559.341000px;}
.y131{bottom:564.436950px;}
.y39{bottom:564.436980px;}
.y83{bottom:564.437010px;}
.yd2{bottom:564.437040px;}
.y7{bottom:564.437070px;}
.yef{bottom:564.437610px;}
.y61{bottom:575.841000px;}
.ya3{bottom:580.936950px;}
.y82{bottom:580.936980px;}
.yd1{bottom:580.937010px;}
.y6{bottom:580.937040px;}
.y38{bottom:580.937250px;}
.yee{bottom:580.937580px;}
.y81{bottom:597.436950px;}
.yd0{bottom:597.436980px;}
.y5{bottom:597.437010px;}
.y37{bottom:597.437220px;}
.yed{bottom:597.437550px;}
.y80{bottom:613.936950px;}
.y4{bottom:613.936980px;}
.y36{bottom:613.937190px;}
.ycf{bottom:613.937220px;}
.yec{bottom:613.937520px;}
.y3{bottom:630.436950px;}
.y5f{bottom:630.436980px;}
.y10a{bottom:630.437040px;}
.y35{bottom:630.437160px;}
.yce{bottom:630.437190px;}
.yeb{bottom:630.437490px;}
.y2{bottom:646.936950px;}
.y5e{bottom:646.937010px;}
.y34{bottom:646.937130px;}
.ycd{bottom:646.937160px;}
.y130{bottom:646.937250px;}
.yea{bottom:646.937460px;}
.ya2{bottom:663.436950px;}
.y5d{bottom:663.436980px;}
.y33{bottom:663.437100px;}
.ycc{bottom:663.437130px;}
.y12f{bottom:663.437220px;}
.y7f{bottom:663.437430px;}
.ya1{bottom:679.936950px;}
.y5c{bottom:679.937040px;}
.y32{bottom:679.937070px;}
.ycb{bottom:679.937100px;}
.y12e{bottom:679.937190px;}
.y7e{bottom:679.937400px;}
.y1{bottom:696.436950px;}
.y5b{bottom:696.437010px;}
.y31{bottom:696.437040px;}
.yca{bottom:696.437070px;}
.y12d{bottom:696.437160px;}
.y7d{bottom:696.437370px;}
.ya0{bottom:712.936950px;}
.y5a{bottom:712.936980px;}
.y30{bottom:712.937010px;}
.yc9{bottom:712.937040px;}
.y12c{bottom:712.937130px;}
.y7c{bottom:712.937340px;}
.y2f{bottom:729.436980px;}
.yc8{bottom:729.437010px;}
.y59{bottom:729.437040px;}
.y12b{bottom:729.437100px;}
.y7b{bottom:729.437310px;}
.yc7{bottom:745.936980px;}
.y58{bottom:745.937010px;}
.y9f{bottom:745.937040px;}
.y12a{bottom:745.937070px;}
.y2e{bottom:745.937280px;}
.y57{bottom:762.436980px;}
.y9e{bottom:762.437010px;}
.y129{bottom:762.437040px;}
.yc6{bottom:762.437220px;}
.y2d{bottom:762.437250px;}
.y19{bottom:778.936950px;}
.y9d{bottom:778.936980px;}
.y56{bottom:778.937010px;}
.yc5{bottom:778.937190px;}
.y2c{bottom:778.937220px;}
.y55{bottom:795.436980px;}
.yc4{bottom:795.437160px;}
.y2b{bottom:795.437190px;}
.y14a{bottom:811.936950px;}
.y128{bottom:811.936980px;}
.yc3{bottom:811.937130px;}
.y2a{bottom:811.937160px;}
.y18{bottom:823.740120px;}
.y149{bottom:828.436950px;}
.y127{bottom:828.437070px;}
.yc2{bottom:828.437100px;}
.y29{bottom:828.437130px;}
.y148{bottom:844.936950px;}
.y126{bottom:844.937040px;}
.yc1{bottom:844.937070px;}
.y28{bottom:844.937100px;}
.y17{bottom:856.740060px;}
.y147{bottom:861.436950px;}
.y125{bottom:861.437010px;}
.yc0{bottom:861.437040px;}
.y27{bottom:861.437070px;}
.y146{bottom:877.936950px;}
.y124{bottom:877.936980px;}
.ybf{bottom:877.937010px;}
.y26{bottom:877.937040px;}
.y16{bottom:889.740000px;}
.y145{bottom:894.436950px;}
.ybe{bottom:894.436980px;}
.y25{bottom:894.437010px;}
.y123{bottom:910.936950px;}
.y24{bottom:910.936980px;}
.y15{bottom:927.436950px;}
.y4f{bottom:951.558450px;}
.y60{bottom:951.575400px;}
.y4e{bottom:951.577200px;}
.hc{height:33.648000px;}
.h24{height:36.528000px;}
.ha{height:37.200000px;}
.h17{height:37.200120px;}
.h1f{height:40.014000px;}
.h18{height:42.112800px;}
.hb{height:43.920000px;}
.h3{height:45.660000px;}
.h9{height:46.500000px;}
.h2{height:46.564200px;}
.h4{height:49.410000px;}
.h7{height:50.472000px;}
.hf{height:51.768000px;}
.h16{height:53.694000px;}
.h1a{height:59.371212px;}
.h6{height:59.374440px;}
.h19{height:59.375641px;}
.h5{height:59.375760px;}
.hd{height:59.375880px;}
.he{height:59.376000px;}
.h1d{height:59.376120px;}
.h1e{height:59.376240px;}
.h11{height:59.376360px;}
.h1b{height:59.376361px;}
.h20{height:59.376720px;}
.h13{height:59.376840px;}
.h14{height:59.376841px;}
.h12{height:59.376960px;}
.h22{height:59.377080px;}
.h15{height:59.377081px;}
.h10{height:59.377200px;}
.h1c{height:59.377201px;}
.h21{height:59.377354px;}
.h8{height:79.488000px;}
.h23{height:85.920600px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:710.078985px;}
.w1{width:710.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535100px;}
.x9{left:78.035100px;}
.x7{left:93.847740px;}
.x3{left:97.796655px;}
.x5{left:112.779600px;}
.xe{left:119.054850px;}
.xa{left:127.559100px;}
.xd{left:129.059100px;}
.xb{left:148.819440px;}
.xf{left:170.078700px;}
.x10{left:171.951600px;}
.x6{left:244.630860px;}
.x8{left:266.885400px;}
.x4{left:275.927550px;}
.x1{left:303.194400px;}
.xc{left:524.843400px;}
@media print{
.v8{vertical-align:-25.166399pt;}
.v3{vertical-align:-23.499733pt;}
.v7{vertical-align:-18.833067pt;}
.v4{vertical-align:-1.666666pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.712000pt;}
.v6{vertical-align:18.833600pt;}
.v2{vertical-align:23.498453pt;}
.v1{vertical-align:25.166400pt;}
.v9{vertical-align:37.333867pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.053120pt;}
.ls12{letter-spacing:0.062613pt;}
.ls0{letter-spacing:0.123733pt;}
.ls1c{letter-spacing:0.196267pt;}
.ls1d{letter-spacing:0.221867pt;}
.ls3{letter-spacing:0.401067pt;}
.ls15{letter-spacing:0.930133pt;}
.ls1a{letter-spacing:0.974400pt;}
.ls17{letter-spacing:1.053867pt;}
.ls14{letter-spacing:1.100800pt;}
.ls13{letter-spacing:1.143467pt;}
.ls19{letter-spacing:1.152000pt;}
.ls18{letter-spacing:5.323680pt;}
.ls1b{letter-spacing:6.337920pt;}
.ls5{letter-spacing:6.365867pt;}
.ls1f{letter-spacing:7.279360pt;}
.ls10{letter-spacing:8.149920pt;}
.ls1e{letter-spacing:8.194987pt;}
.ls16{letter-spacing:8.379360pt;}
.lsb{letter-spacing:8.541867pt;}
.ls4{letter-spacing:9.041067pt;}
.lsf{letter-spacing:9.107733pt;}
.ls1{letter-spacing:9.109333pt;}
.lsd{letter-spacing:9.110187pt;}
.lsc{letter-spacing:9.197227pt;}
.lsa{letter-spacing:10.053440pt;}
.lse{letter-spacing:10.133760pt;}
.ls7{letter-spacing:10.158933pt;}
.ls9{letter-spacing:10.210773pt;}
.ls2{letter-spacing:10.474667pt;}
.ls8{letter-spacing:11.048000pt;}
.ws6{word-spacing:-21.120000pt;}
.wsa{word-spacing:-14.400000pt;}
.ws2{word-spacing:-10.560000pt;}
.ws18{word-spacing:-10.530133pt;}
.ws8{word-spacing:-9.600000pt;}
.ws19{word-spacing:-9.386667pt;}
.ws5{word-spacing:-7.040000pt;}
.ws13{word-spacing:-3.384000pt;}
.ws7{word-spacing:-3.234133pt;}
.wse{word-spacing:-2.828800pt;}
.ws14{word-spacing:-2.611200pt;}
.ws1{word-spacing:-2.475360pt;}
.ws2a{word-spacing:-2.321067pt;}
.ws15{word-spacing:-1.945600pt;}
.ws26{word-spacing:-1.728000pt;}
.ws17{word-spacing:-1.669547pt;}
.ws2c{word-spacing:-1.638400pt;}
.ws11{word-spacing:-1.561600pt;}
.ws1a{word-spacing:-1.467733pt;}
.ws1f{word-spacing:-1.433600pt;}
.ws28{word-spacing:-1.405013pt;}
.ws2b{word-spacing:-1.348267pt;}
.ws1b{word-spacing:-1.049600pt;}
.wsf{word-spacing:-1.024000pt;}
.ws25{word-spacing:-0.972800pt;}
.ws16{word-spacing:-0.890880pt;}
.wsd{word-spacing:-0.691200pt;}
.ws22{word-spacing:-0.652800pt;}
.ws20{word-spacing:-0.508800pt;}
.ws24{word-spacing:-0.490667pt;}
.wsb{word-spacing:-0.446880pt;}
.ws12{word-spacing:-0.049440pt;}
.ws4{word-spacing:-0.048000pt;}
.ws0{word-spacing:-0.032000pt;}
.ws9{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.029867pt;}
.ws23{word-spacing:0.495360pt;}
.wsc{word-spacing:0.509867pt;}
.ws27{word-spacing:0.695467pt;}
.ws1d{word-spacing:0.729600pt;}
.ws3{word-spacing:0.767520pt;}
.ws1e{word-spacing:1.083733pt;}
.ws10{word-spacing:3.142213pt;}
.ws21{word-spacing:4.300160pt;}
.ws29{word-spacing:16.297173pt;}
._6{margin-left:-9.625600pt;}
._e{margin-left:-6.403627pt;}
._c{margin-left:-5.092000pt;}
._7{margin-left:-4.048000pt;}
._2{margin-left:-3.107200pt;}
._4{margin-left:-2.122880pt;}
._0{margin-left:-1.232640pt;}
._1{width:1.084320pt;}
._3{width:2.028000pt;}
._5{width:3.565760pt;}
._a{width:6.131627pt;}
._d{width:7.413120pt;}
._9{width:8.484053pt;}
._b{width:10.714933pt;}
._8{width:1339.322347pt;}
.fs6{font-size:24.000000pt;}
.fs1{font-size:32.000000pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:105.320133pt;}
.ybd{bottom:105.365067pt;}
.y9c{bottom:105.391467pt;}
.y7a{bottom:105.506933pt;}
.y122{bottom:105.548800pt;}
.y109{bottom:105.726880pt;}
.y144{bottom:106.157867pt;}
.ye9{bottom:106.273333pt;}
.y23{bottom:109.441333pt;}
.y53{bottom:119.986800pt;}
.ybc{bottom:120.031733pt;}
.y9b{bottom:120.058133pt;}
.y79{bottom:120.173600pt;}
.y121{bottom:120.215467pt;}
.y108{bottom:120.393280pt;}
.y143{bottom:120.824533pt;}
.ye8{bottom:120.940000pt;}
.y22{bottom:124.108000pt;}
.y52{bottom:134.653467pt;}
.ybb{bottom:134.698400pt;}
.y107{bottom:135.059680pt;}
.y142{bottom:135.491200pt;}
.ye7{bottom:135.606667pt;}
.y9a{bottom:140.394133pt;}
.y78{bottom:140.509600pt;}
.y120{bottom:140.551467pt;}
.y51{bottom:149.320133pt;}
.yba{bottom:149.365067pt;}
.y106{bottom:149.726080pt;}
.ye6{bottom:150.273333pt;}
.y99{bottom:155.060800pt;}
.y21{bottom:155.121867pt;}
.y77{bottom:155.176267pt;}
.y11f{bottom:155.218133pt;}
.y141{bottom:155.827200pt;}
.y105{bottom:164.392480pt;}
.y50{bottom:169.656133pt;}
.yb9{bottom:169.701067pt;}
.y98{bottom:169.727467pt;}
.y20{bottom:169.788533pt;}
.y76{bottom:169.842933pt;}
.y11e{bottom:169.884800pt;}
.y140{bottom:170.493867pt;}
.ye5{bottom:170.609333pt;}
.y104{bottom:179.058880pt;}
.yb8{bottom:184.367733pt;}
.y97{bottom:184.394133pt;}
.y1f{bottom:184.455200pt;}
.y75{bottom:184.509467pt;}
.y11d{bottom:184.551467pt;}
.y13f{bottom:185.160533pt;}
.ye4{bottom:185.276000pt;}
.y103{bottom:193.725280pt;}
.yb7{bottom:199.034400pt;}
.y96{bottom:199.060800pt;}
.y74{bottom:199.176133pt;}
.y11c{bottom:199.218133pt;}
.y13e{bottom:199.827200pt;}
.ye3{bottom:199.942667pt;}
.y1e{bottom:204.791200pt;}
.y4d{bottom:208.391120pt;}
.y102{bottom:208.391680pt;}
.y95{bottom:213.727467pt;}
.y11b{bottom:213.884800pt;}
.y13d{bottom:214.493867pt;}
.yb6{bottom:219.370400pt;}
.y1d{bottom:219.457867pt;}
.y73{bottom:219.512133pt;}
.ye2{bottom:220.278667pt;}
.y4c{bottom:223.057520pt;}
.y101{bottom:223.058080pt;}
.y94{bottom:228.394133pt;}
.y13c{bottom:229.160533pt;}
.yb5{bottom:234.037067pt;}
.y72{bottom:234.178800pt;}
.y11a{bottom:234.220800pt;}
.ye1{bottom:234.945333pt;}
.y4b{bottom:237.723920pt;}
.y100{bottom:237.724480pt;}
.y1c{bottom:239.793867pt;}
.y13b{bottom:243.827200pt;}
.yb4{bottom:248.703733pt;}
.y71{bottom:248.845467pt;}
.y119{bottom:248.887467pt;}
.y4a{bottom:252.390320pt;}
.yff{bottom:252.390880pt;}
.ye0{bottom:255.281333pt;}
.y13a{bottom:258.493867pt;}
.y1b{bottom:260.129867pt;}
.yb3{bottom:263.370400pt;}
.y70{bottom:263.512133pt;}
.y118{bottom:263.554133pt;}
.y93{bottom:267.056400pt;}
.y49{bottom:267.056720pt;}
.yfe{bottom:267.057280pt;}
.ydf{bottom:269.948000pt;}
.y1a{bottom:274.796533pt;}
.yb2{bottom:278.037067pt;}
.y6f{bottom:278.178800pt;}
.y117{bottom:278.220800pt;}
.y139{bottom:278.829867pt;}
.y92{bottom:281.722800pt;}
.y48{bottom:281.723120pt;}
.yfd{bottom:281.723680pt;}
.yde{bottom:284.614667pt;}
.yb1{bottom:292.703733pt;}
.y6e{bottom:292.845467pt;}
.y91{bottom:296.389200pt;}
.y47{bottom:296.389520pt;}
.yfc{bottom:296.390080pt;}
.y116{bottom:298.556800pt;}
.yb0{bottom:307.370400pt;}
.y6d{bottom:307.512133pt;}
.y138{bottom:311.055067pt;}
.y90{bottom:311.055600pt;}
.y14{bottom:311.055680pt;}
.y46{bottom:311.055920pt;}
.y115{bottom:318.892800pt;}
.yaf{bottom:322.037067pt;}
.y6c{bottom:322.178800pt;}
.y137{bottom:325.721733pt;}
.y8f{bottom:325.722000pt;}
.y13{bottom:325.722080pt;}
.ydd{bottom:325.722160pt;}
.y45{bottom:325.722320pt;}
.yfb{bottom:325.722880pt;}
.y114{bottom:333.559467pt;}
.yae{bottom:336.703733pt;}
.y136{bottom:340.388400pt;}
.y12{bottom:340.388480pt;}
.ydc{bottom:340.388560pt;}
.y44{bottom:340.388720pt;}
.y8e{bottom:340.388747pt;}
.yfa{bottom:340.389280pt;}
.y6b{bottom:342.514800pt;}
.yad{bottom:351.370400pt;}
.y135{bottom:355.055067pt;}
.y11{bottom:355.055120pt;}
.ydb{bottom:355.055200pt;}
.y43{bottom:355.055360pt;}
.y8d{bottom:355.055387pt;}
.yf9{bottom:355.055920pt;}
.y6a{bottom:357.181467pt;}
.yac{bottom:366.037067pt;}
.y113{bottom:369.721733pt;}
.y10{bottom:369.721760pt;}
.yda{bottom:369.721840pt;}
.y42{bottom:369.722000pt;}
.y8c{bottom:369.722027pt;}
.yf8{bottom:369.722560pt;}
.y69{bottom:377.517440pt;}
.yab{bottom:380.703733pt;}
.y112{bottom:384.388400pt;}
.yd9{bottom:384.388480pt;}
.y41{bottom:384.388640pt;}
.y8b{bottom:384.388667pt;}
.yf{bottom:384.388720pt;}
.yf7{bottom:384.389200pt;}
.y68{bottom:392.184107pt;}
.yaa{bottom:395.370400pt;}
.y111{bottom:399.055067pt;}
.yd8{bottom:399.055120pt;}
.y40{bottom:399.055280pt;}
.y8a{bottom:399.055307pt;}
.ye{bottom:399.055360pt;}
.yf6{bottom:399.055840pt;}
.y67{bottom:406.850773pt;}
.ya9{bottom:410.037067pt;}
.y110{bottom:413.721733pt;}
.y3f{bottom:413.721920pt;}
.y89{bottom:413.721947pt;}
.yd{bottom:413.722000pt;}
.yf5{bottom:413.722480pt;}
.y66{bottom:421.517440pt;}
.y134{bottom:424.608773pt;}
.ya8{bottom:424.703733pt;}
.y10f{bottom:428.388400pt;}
.y3e{bottom:428.388560pt;}
.y88{bottom:428.388587pt;}
.yd7{bottom:428.388613pt;}
.yc{bottom:428.388640pt;}
.yf4{bottom:428.389120pt;}
.ya7{bottom:439.370400pt;}
.y65{bottom:441.853440pt;}
.y10e{bottom:443.055067pt;}
.y3d{bottom:443.055200pt;}
.y87{bottom:443.055227pt;}
.yd6{bottom:443.055253pt;}
.yb{bottom:443.055280pt;}
.yf3{bottom:443.055760pt;}
.y133{bottom:449.721733pt;}
.ya6{bottom:454.037067pt;}
.y132{bottom:455.054933pt;}
.y10d{bottom:457.721733pt;}
.y3c{bottom:457.721840pt;}
.y86{bottom:457.721867pt;}
.yd5{bottom:457.721893pt;}
.ya{bottom:457.721920pt;}
.yf2{bottom:457.722400pt;}
.y64{bottom:462.189440pt;}
.ya5{bottom:468.703733pt;}
.y10c{bottom:472.388400pt;}
.y3b{bottom:472.388480pt;}
.y85{bottom:472.388507pt;}
.yd4{bottom:472.388533pt;}
.y9{bottom:472.388560pt;}
.yf1{bottom:472.389040pt;}
.y63{bottom:476.856107pt;}
.ya4{bottom:483.370400pt;}
.y10b{bottom:487.055067pt;}
.y3a{bottom:487.055120pt;}
.y84{bottom:487.055147pt;}
.yd3{bottom:487.055173pt;}
.y8{bottom:487.055200pt;}
.yf0{bottom:487.055680pt;}
.y62{bottom:497.192000pt;}
.y131{bottom:501.721733pt;}
.y39{bottom:501.721760pt;}
.y83{bottom:501.721787pt;}
.yd2{bottom:501.721813pt;}
.y7{bottom:501.721840pt;}
.yef{bottom:501.722320pt;}
.y61{bottom:511.858667pt;}
.ya3{bottom:516.388400pt;}
.y82{bottom:516.388427pt;}
.yd1{bottom:516.388453pt;}
.y6{bottom:516.388480pt;}
.y38{bottom:516.388667pt;}
.yee{bottom:516.388960pt;}
.y81{bottom:531.055067pt;}
.yd0{bottom:531.055093pt;}
.y5{bottom:531.055120pt;}
.y37{bottom:531.055307pt;}
.yed{bottom:531.055600pt;}
.y80{bottom:545.721733pt;}
.y4{bottom:545.721760pt;}
.y36{bottom:545.721947pt;}
.ycf{bottom:545.721973pt;}
.yec{bottom:545.722240pt;}
.y3{bottom:560.388400pt;}
.y5f{bottom:560.388427pt;}
.y10a{bottom:560.388480pt;}
.y35{bottom:560.388587pt;}
.yce{bottom:560.388613pt;}
.yeb{bottom:560.388880pt;}
.y2{bottom:575.055067pt;}
.y5e{bottom:575.055120pt;}
.y34{bottom:575.055227pt;}
.ycd{bottom:575.055253pt;}
.y130{bottom:575.055333pt;}
.yea{bottom:575.055520pt;}
.ya2{bottom:589.721733pt;}
.y5d{bottom:589.721760pt;}
.y33{bottom:589.721867pt;}
.ycc{bottom:589.721893pt;}
.y12f{bottom:589.721973pt;}
.y7f{bottom:589.722160pt;}
.ya1{bottom:604.388400pt;}
.y5c{bottom:604.388480pt;}
.y32{bottom:604.388507pt;}
.ycb{bottom:604.388533pt;}
.y12e{bottom:604.388613pt;}
.y7e{bottom:604.388800pt;}
.y1{bottom:619.055067pt;}
.y5b{bottom:619.055120pt;}
.y31{bottom:619.055147pt;}
.yca{bottom:619.055173pt;}
.y12d{bottom:619.055253pt;}
.y7d{bottom:619.055440pt;}
.ya0{bottom:633.721733pt;}
.y5a{bottom:633.721760pt;}
.y30{bottom:633.721787pt;}
.yc9{bottom:633.721813pt;}
.y12c{bottom:633.721893pt;}
.y7c{bottom:633.722080pt;}
.y2f{bottom:648.388427pt;}
.yc8{bottom:648.388453pt;}
.y59{bottom:648.388480pt;}
.y12b{bottom:648.388533pt;}
.y7b{bottom:648.388720pt;}
.yc7{bottom:663.055093pt;}
.y58{bottom:663.055120pt;}
.y9f{bottom:663.055147pt;}
.y12a{bottom:663.055173pt;}
.y2e{bottom:663.055360pt;}
.y57{bottom:677.721760pt;}
.y9e{bottom:677.721787pt;}
.y129{bottom:677.721813pt;}
.yc6{bottom:677.721973pt;}
.y2d{bottom:677.722000pt;}
.y19{bottom:692.388400pt;}
.y9d{bottom:692.388427pt;}
.y56{bottom:692.388453pt;}
.yc5{bottom:692.388613pt;}
.y2c{bottom:692.388640pt;}
.y55{bottom:707.055093pt;}
.yc4{bottom:707.055253pt;}
.y2b{bottom:707.055280pt;}
.y14a{bottom:721.721733pt;}
.y128{bottom:721.721760pt;}
.yc3{bottom:721.721893pt;}
.y2a{bottom:721.721920pt;}
.y18{bottom:732.213440pt;}
.y149{bottom:736.388400pt;}
.y127{bottom:736.388507pt;}
.yc2{bottom:736.388533pt;}
.y29{bottom:736.388560pt;}
.y148{bottom:751.055067pt;}
.y126{bottom:751.055147pt;}
.yc1{bottom:751.055173pt;}
.y28{bottom:751.055200pt;}
.y17{bottom:761.546720pt;}
.y147{bottom:765.721733pt;}
.y125{bottom:765.721787pt;}
.yc0{bottom:765.721813pt;}
.y27{bottom:765.721840pt;}
.y146{bottom:780.388400pt;}
.y124{bottom:780.388427pt;}
.ybf{bottom:780.388453pt;}
.y26{bottom:780.388480pt;}
.y16{bottom:790.880000pt;}
.y145{bottom:795.055067pt;}
.ybe{bottom:795.055093pt;}
.y25{bottom:795.055120pt;}
.y123{bottom:809.721733pt;}
.y24{bottom:809.721760pt;}
.y15{bottom:824.388400pt;}
.y4f{bottom:845.829733pt;}
.y60{bottom:845.844800pt;}
.y4e{bottom:845.846400pt;}
.hc{height:29.909333pt;}
.h24{height:32.469333pt;}
.ha{height:33.066667pt;}
.h17{height:33.066773pt;}
.h1f{height:35.568000pt;}
.h18{height:37.433600pt;}
.hb{height:39.040000pt;}
.h3{height:40.586667pt;}
.h9{height:41.333333pt;}
.h2{height:41.390400pt;}
.h4{height:43.920000pt;}
.h7{height:44.864000pt;}
.hf{height:46.016000pt;}
.h16{height:47.728000pt;}
.h1a{height:52.774411pt;}
.h6{height:52.777280pt;}
.h19{height:52.778348pt;}
.h5{height:52.778453pt;}
.hd{height:52.778560pt;}
.he{height:52.778667pt;}
.h1d{height:52.778773pt;}
.h1e{height:52.778880pt;}
.h11{height:52.778987pt;}
.h1b{height:52.778988pt;}
.h20{height:52.779307pt;}
.h13{height:52.779413pt;}
.h14{height:52.779414pt;}
.h12{height:52.779520pt;}
.h22{height:52.779627pt;}
.h15{height:52.779628pt;}
.h10{height:52.779733pt;}
.h1c{height:52.779734pt;}
.h21{height:52.779870pt;}
.h8{height:70.656000pt;}
.h23{height:76.373867pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:631.181320pt;}
.w1{width:631.333333pt;}
.x0{left:0.000000pt;}
.x2{left:68.031200pt;}
.x9{left:69.364533pt;}
.x7{left:83.420213pt;}
.x3{left:86.930360pt;}
.x5{left:100.248533pt;}
.xe{left:105.826533pt;}
.xa{left:113.385867pt;}
.xd{left:114.719200pt;}
.xb{left:132.283947pt;}
.xf{left:151.181067pt;}
.x10{left:152.845867pt;}
.x6{left:217.449653pt;}
.x8{left:237.231467pt;}
.x4{left:245.268933pt;}
.x1{left:269.506133pt;}
.xc{left:466.527467pt;}
}




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