
    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_8742189f6121beee76b4cf0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.236000;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_caf379e3c5cae8f0fe6eafc4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.842285;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_1cb6871e2225a0257e132cb9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_cbc982e06331f414e119d394.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.119000;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_fe75e98c6067c2b444dcf564.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.149000;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_770739aa90e4ecb7be158110.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008000;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_52b7aac052d58f498258e565.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088000;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_f922565ada4c1c70ac53ac1c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010000;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_46fccc97b2bcd4b636c4ea8d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.020000;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_f922565ada4c1c70ac53ac1c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.010000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-20.979000px;}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.981600px;}
.v1{vertical-align:20.979000px;}
.ls1{letter-spacing:-1.260000px;}
.lsd{letter-spacing:-1.134000px;}
.ls7{letter-spacing:-0.756000px;}
.ls6{letter-spacing:-0.630000px;}
.lsc{letter-spacing:-0.378000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.342000px;}
.ls3{letter-spacing:0.377400px;}
.ls4{letter-spacing:0.378000px;}
.ls8{letter-spacing:0.570000px;}
.ls2{letter-spacing:0.630000px;}
.lsa{letter-spacing:0.756000px;}
.ls9{letter-spacing:1.260000px;}
.ls5{letter-spacing:40.932000px;}
.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;}
}
.ws12{word-spacing:-21.600000px;}
.ws64{word-spacing:-14.238000px;}
.ws27{word-spacing:-13.986000px;}
.ws85{word-spacing:-13.608000px;}
.ws98{word-spacing:-13.104000px;}
.ws8d{word-spacing:-12.978000px;}
.ws13{word-spacing:-12.204000px;}
.ws54{word-spacing:-9.903600px;}
.ws0{word-spacing:-9.147600px;}
.ws86{word-spacing:-8.769600px;}
.wsa1{word-spacing:-8.712000px;}
.ws53{word-spacing:-8.618400px;}
.ws26{word-spacing:-8.391600px;}
.ws44{word-spacing:-8.276400px;}
.ws1{word-spacing:-7.840800px;}
.ws97{word-spacing:-3.150000px;}
.ws7a{word-spacing:-3.087000px;}
.ws66{word-spacing:-3.024000px;}
.ws48{word-spacing:-2.961000px;}
.ws70{word-spacing:-2.898000px;}
.ws67{word-spacing:-2.772000px;}
.ws95{word-spacing:-2.709000px;}
.ws16{word-spacing:-2.646000px;}
.ws3{word-spacing:-2.641703px;}
.ws69{word-spacing:-2.583000px;}
.ws2c{word-spacing:-2.520000px;}
.ws57{word-spacing:-2.508000px;}
.wsab{word-spacing:-2.268000px;}
.ws3e{word-spacing:-2.205000px;}
.ws4{word-spacing:-2.142000px;}
.ws7c{word-spacing:-2.016000px;}
.wsb0{word-spacing:-1.995000px;}
.ws30{word-spacing:-1.953000px;}
.ws49{word-spacing:-1.827000px;}
.ws1b{word-spacing:-1.764000px;}
.ws8b{word-spacing:-1.701000px;}
.wsa3{word-spacing:-1.638000px;}
.ws7{word-spacing:-1.512000px;}
.ws8f{word-spacing:-1.449000px;}
.ws2a{word-spacing:-1.386000px;}
.ws99{word-spacing:-1.323000px;}
.ws55{word-spacing:-1.311000px;}
.ws1e{word-spacing:-1.296000px;}
.wsa7{word-spacing:-1.260000px;}
.ws65{word-spacing:-1.197000px;}
.wsae{word-spacing:-1.188000px;}
.ws52{word-spacing:-1.134000px;}
.ws20{word-spacing:-1.080000px;}
.ws5a{word-spacing:-1.071000px;}
.ws93{word-spacing:-1.008000px;}
.ws9f{word-spacing:-0.945000px;}
.ws4a{word-spacing:-0.882000px;}
.ws94{word-spacing:-0.819000px;}
.wsa2{word-spacing:-0.780000px;}
.ws5e{word-spacing:-0.756000px;}
.ws23{word-spacing:-0.702000px;}
.ws35{word-spacing:-0.693000px;}
.ws60{word-spacing:-0.630000px;}
.ws56{word-spacing:-0.570000px;}
.wsa4{word-spacing:-0.567000px;}
.ws11{word-spacing:-0.540000px;}
.ws88{word-spacing:-0.513000px;}
.ws8e{word-spacing:-0.504000px;}
.ws6e{word-spacing:-0.441000px;}
.ws28{word-spacing:-0.378000px;}
.ws6{word-spacing:-0.315000px;}
.ws1a{word-spacing:-0.252000px;}
.ws1d{word-spacing:-0.216000px;}
.ws8{word-spacing:-0.189000px;}
.wsaa{word-spacing:-0.126000px;}
.wsaf{word-spacing:-0.114000px;}
.ws68{word-spacing:-0.063000px;}
.ws87{word-spacing:-0.057000px;}
.ws2{word-spacing:0.000000px;}
.ws32{word-spacing:0.063000px;}
.ws50{word-spacing:0.252000px;}
.ws78{word-spacing:0.315000px;}
.ws42{word-spacing:0.378000px;}
.wsa5{word-spacing:0.420000px;}
.ws83{word-spacing:0.432000px;}
.wsad{word-spacing:0.441000px;}
.ws41{word-spacing:0.504000px;}
.ws34{word-spacing:0.630000px;}
.ws10{word-spacing:0.648000px;}
.ws96{word-spacing:0.693000px;}
.ws4c{word-spacing:0.756000px;}
.ws29{word-spacing:0.819000px;}
.ws25{word-spacing:0.864000px;}
.ws90{word-spacing:0.882000px;}
.ws92{word-spacing:0.945000px;}
.ws63{word-spacing:0.972000px;}
.ws21{word-spacing:1.026000px;}
.ws19{word-spacing:1.071000px;}
.ws22{word-spacing:1.080000px;}
.ws74{word-spacing:1.134000px;}
.ws36{word-spacing:1.197000px;}
.ws51{word-spacing:1.260000px;}
.ws1f{word-spacing:1.296000px;}
.ws47{word-spacing:1.323000px;}
.wsa6{word-spacing:1.380000px;}
.ws61{word-spacing:1.386000px;}
.ws5d{word-spacing:1.449000px;}
.ws62{word-spacing:1.458000px;}
.ws3f{word-spacing:1.512000px;}
.wsa9{word-spacing:1.575000px;}
.ws6d{word-spacing:1.638000px;}
.ws84{word-spacing:1.674000px;}
.ws3c{word-spacing:1.764000px;}
.ws2f{word-spacing:1.890000px;}
.ws79{word-spacing:1.953000px;}
.ws6c{word-spacing:2.016000px;}
.wsf{word-spacing:2.052000px;}
.wsa0{word-spacing:2.079000px;}
.wse{word-spacing:2.160000px;}
.ws82{word-spacing:2.166000px;}
.ws2e{word-spacing:2.268000px;}
.ws9a{word-spacing:2.394000px;}
.ws4b{word-spacing:2.457000px;}
.ws89{word-spacing:2.520000px;}
.ws9b{word-spacing:2.583000px;}
.wsd{word-spacing:2.592000px;}
.ws58{word-spacing:2.622000px;}
.ws37{word-spacing:2.709000px;}
.wsb3{word-spacing:2.772000px;}
.ws43{word-spacing:2.808000px;}
.wsb2{word-spacing:2.835000px;}
.ws40{word-spacing:2.898000px;}
.ws2b{word-spacing:2.961000px;}
.ws45{word-spacing:3.021000px;}
.ws4d{word-spacing:3.024000px;}
.ws33{word-spacing:3.132000px;}
.ws7f{word-spacing:3.213000px;}
.wsb4{word-spacing:3.339000px;}
.ws71{word-spacing:3.348000px;}
.ws6a{word-spacing:3.402000px;}
.ws72{word-spacing:3.564000px;}
.ws7e{word-spacing:3.591000px;}
.ws24{word-spacing:3.618000px;}
.ws4f{word-spacing:3.654000px;}
.ws6f{word-spacing:3.717000px;}
.wsa{word-spacing:3.726000px;}
.ws2d{word-spacing:3.780000px;}
.ws31{word-spacing:3.906000px;}
.ws80{word-spacing:3.969000px;}
.ws9{word-spacing:3.996000px;}
.ws14{word-spacing:4.032000px;}
.ws7b{word-spacing:4.095000px;}
.ws46{word-spacing:4.158000px;}
.ws39{word-spacing:4.221000px;}
.ws18{word-spacing:4.284000px;}
.ws81{word-spacing:4.410000px;}
.ws5b{word-spacing:4.473000px;}
.wsa8{word-spacing:4.536000px;}
.wsc{word-spacing:4.590000px;}
.ws8a{word-spacing:4.599000px;}
.ws15{word-spacing:4.662000px;}
.wsb1{word-spacing:4.725000px;}
.wsb{word-spacing:4.914000px;}
.ws38{word-spacing:5.040000px;}
.ws4e{word-spacing:5.103000px;}
.ws17{word-spacing:5.166000px;}
.ws3d{word-spacing:5.229000px;}
.ws8c{word-spacing:5.292000px;}
.ws73{word-spacing:5.688000px;}
.ws75{word-spacing:5.733000px;}
.wsac{word-spacing:5.796000px;}
.ws7d{word-spacing:5.859000px;}
.ws5{word-spacing:5.922000px;}
.ws3b{word-spacing:5.985000px;}
.ws59{word-spacing:6.042000px;}
.ws3a{word-spacing:6.300000px;}
.ws77{word-spacing:6.363000px;}
.ws9c{word-spacing:6.426000px;}
.ws91{word-spacing:6.804000px;}
.ws6b{word-spacing:7.308000px;}
.ws9d{word-spacing:7.434000px;}
.ws9e{word-spacing:7.623000px;}
.ws5c{word-spacing:7.875000px;}
.ws5f{word-spacing:8.190000px;}
.wsb5{word-spacing:8.442000px;}
.ws76{word-spacing:8.505000px;}
.ws1c{word-spacing:40.932000px;}
._15{margin-left:-41.620200px;}
._12{margin-left:-40.333800px;}
._7{margin-left:-15.584400px;}
._6{margin-left:-14.055600px;}
._3{margin-left:-10.935600px;}
._8{margin-left:-7.815600px;}
._17{margin-left:-6.797400px;}
._14{margin-left:-5.741400px;}
._4{margin-left:-4.695600px;}
._11{margin-left:-3.452700px;}
._2{margin-left:-2.340000px;}
._0{margin-left:-1.177800px;}
._9{width:1.384800px;}
._c{width:2.589600px;}
._a{width:3.604200px;}
._5{width:4.695600px;}
._10{width:6.291600px;}
._16{width:8.198400px;}
._18{width:9.271200px;}
._b{width:36.936000px;}
._d{width:38.772000px;}
._19{width:39.851400px;}
._13{width:40.932000px;}
._f{width:41.998800px;}
._1{width:382.675800px;}
._e{width:1035.123000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:32.400000px;}
.fsd{font-size:34.200000px;}
.fse{font-size:36.000000px;}
.fs7{font-size:37.800000px;}
.fs9{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fsc{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:91.093200px;}
.fs5{font-size:96.000000px;}
.fsa{font-size:102.000000px;}
.fs4{font-size:156.000000px;}
.fs1{font-size:411.607800px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.510300px;}
.y1d{bottom:106.299150px;}
.y85{bottom:106.299300px;}
.y4b{bottom:110.794800px;}
.y5a{bottom:125.799300px;}
.y1c{bottom:130.294800px;}
.y1b{bottom:145.299150px;}
.y4a{bottom:145.299300px;}
.y59{bottom:149.794800px;}
.y49{bottom:164.799300px;}
.y1a{bottom:169.294800px;}
.y19{bottom:184.299150px;}
.y48{bottom:184.299300px;}
.y58{bottom:188.794800px;}
.y18{bottom:203.799150px;}
.y47{bottom:203.799300px;}
.y81{bottom:208.294650px;}
.y57{bottom:208.294800px;}
.y17{bottom:223.299150px;}
.y46{bottom:223.299300px;}
.y5f{bottom:227.794800px;}
.y16{bottom:242.799150px;}
.y45{bottom:242.799300px;}
.y5e{bottom:247.294800px;}
.y44{bottom:262.299300px;}
.y56{bottom:263.636550px;}
.ycd{bottom:264.139200px;}
.y15{bottom:266.794650px;}
.y5d{bottom:266.794800px;}
.y43{bottom:281.799300px;}
.y55{bottom:286.136550px;}
.y88{bottom:286.294800px;}
.ycc{bottom:286.639200px;}
.yab{bottom:287.146050px;}
.y42{bottom:301.299300px;}
.y87{bottom:305.794800px;}
.yaa{bottom:306.652050px;}
.y54{bottom:308.636550px;}
.ycb{bottom:309.139200px;}
.y84{bottom:309.646050px;}
.y41{bottom:320.799300px;}
.ya9{bottom:329.152050px;}
.y14{bottom:330.822000px;}
.y5c{bottom:331.136550px;}
.yca{bottom:331.639200px;}
.y80{bottom:332.146050px;}
.y40{bottom:340.299300px;}
.ya8{bottom:351.652050px;}
.y13{bottom:353.322000px;}
.ydc{bottom:353.635200px;}
.y53{bottom:353.636550px;}
.yc9{bottom:354.139200px;}
.y7f{bottom:354.646050px;}
.y3f{bottom:359.799300px;}
.ya7{bottom:374.152050px;}
.y12{bottom:375.822000px;}
.ydb{bottom:376.135200px;}
.y86{bottom:376.136550px;}
.yc8{bottom:376.639200px;}
.y7e{bottom:377.146050px;}
.y3e{bottom:383.794800px;}
.ya6{bottom:396.652050px;}
.y11{bottom:398.322000px;}
.yda{bottom:398.635200px;}
.y5b{bottom:398.636550px;}
.y3d{bottom:398.799300px;}
.yc7{bottom:399.139200px;}
.y7d{bottom:399.646050px;}
.ya5{bottom:419.152050px;}
.y10{bottom:420.822000px;}
.yd9{bottom:421.135200px;}
.y52{bottom:421.136550px;}
.yc6{bottom:421.639200px;}
.y7c{bottom:422.146050px;}
.y3c{bottom:422.794800px;}
.ya4{bottom:441.652050px;}
.y3b{bottom:442.294800px;}
.yf{bottom:443.322000px;}
.yd8{bottom:443.635200px;}
.y51{bottom:443.636550px;}
.yc5{bottom:444.139200px;}
.y7b{bottom:444.646050px;}
.y3a{bottom:457.299300px;}
.ya3{bottom:464.152050px;}
.ye{bottom:465.822000px;}
.yd7{bottom:466.135200px;}
.y50{bottom:466.136550px;}
.yc4{bottom:466.639200px;}
.y7a{bottom:467.146050px;}
.y39{bottom:481.294800px;}
.ya2{bottom:486.652050px;}
.yd{bottom:488.322000px;}
.yd6{bottom:488.635200px;}
.y4f{bottom:488.636550px;}
.yc3{bottom:489.139200px;}
.y79{bottom:489.646050px;}
.y38{bottom:500.794800px;}
.ya1{bottom:509.152050px;}
.yc{bottom:510.822000px;}
.yd5{bottom:511.135200px;}
.y4e{bottom:511.136550px;}
.yc2{bottom:511.639200px;}
.y78{bottom:512.146050px;}
.y37{bottom:520.294800px;}
.ya0{bottom:531.652050px;}
.yd4{bottom:533.635200px;}
.y4d{bottom:533.636550px;}
.y77{bottom:534.646050px;}
.y9f{bottom:554.152050px;}
.yb{bottom:555.822000px;}
.yd3{bottom:556.135200px;}
.y4c{bottom:556.136550px;}
.yc1{bottom:556.640550px;}
.y76{bottom:557.146050px;}
.y9e{bottom:576.652050px;}
.yd2{bottom:578.635200px;}
.y36{bottom:578.636550px;}
.yc0{bottom:579.140550px;}
.y75{bottom:579.646050px;}
.y9d{bottom:599.152050px;}
.yd1{bottom:601.135200px;}
.y35{bottom:601.136550px;}
.ybf{bottom:601.640550px;}
.y74{bottom:602.146050px;}
.y9c{bottom:621.652050px;}
.yd0{bottom:623.635200px;}
.y34{bottom:623.636550px;}
.ybe{bottom:624.140550px;}
.y73{bottom:624.646050px;}
.ya{bottom:629.345700px;}
.y9b{bottom:644.152050px;}
.ycf{bottom:646.135200px;}
.y33{bottom:646.136550px;}
.ybd{bottom:646.640550px;}
.y72{bottom:647.146050px;}
.y9a{bottom:666.652050px;}
.yce{bottom:668.635200px;}
.y32{bottom:668.636550px;}
.y71{bottom:669.646050px;}
.y9{bottom:684.857550px;}
.y99{bottom:689.152050px;}
.ye0{bottom:691.135200px;}
.y31{bottom:691.136550px;}
.ybc{bottom:691.640550px;}
.y70{bottom:692.146050px;}
.y98{bottom:711.652050px;}
.ydf{bottom:713.635200px;}
.y30{bottom:713.636550px;}
.ybb{bottom:714.140550px;}
.y6f{bottom:714.646050px;}
.y8{bottom:726.857550px;}
.y97{bottom:734.152050px;}
.yde{bottom:736.135200px;}
.y2f{bottom:736.136550px;}
.yba{bottom:736.640550px;}
.y6e{bottom:737.146050px;}
.y96{bottom:756.652050px;}
.ydd{bottom:758.635200px;}
.y2e{bottom:758.636550px;}
.yb9{bottom:759.140550px;}
.y6d{bottom:759.646050px;}
.y7{bottom:768.857550px;}
.y95{bottom:779.152050px;}
.y2d{bottom:781.136550px;}
.yb8{bottom:781.640550px;}
.y6c{bottom:782.146050px;}
.y94{bottom:801.652050px;}
.y2c{bottom:803.636550px;}
.yb7{bottom:804.140550px;}
.y6b{bottom:804.646050px;}
.y6{bottom:810.857550px;}
.y93{bottom:824.152050px;}
.y2b{bottom:826.136550px;}
.yb6{bottom:826.640550px;}
.y6a{bottom:827.146050px;}
.y92{bottom:846.652050px;}
.y2a{bottom:848.636550px;}
.yb5{bottom:849.140550px;}
.y69{bottom:849.646050px;}
.y5{bottom:852.857550px;}
.y91{bottom:869.152050px;}
.y29{bottom:871.136550px;}
.yb4{bottom:871.640550px;}
.y68{bottom:872.146050px;}
.y90{bottom:891.652050px;}
.y28{bottom:893.636400px;}
.yb3{bottom:894.140550px;}
.y67{bottom:894.646050px;}
.y8f{bottom:914.151900px;}
.y27{bottom:916.136400px;}
.yb2{bottom:916.640550px;}
.y66{bottom:917.146050px;}
.y8e{bottom:936.651900px;}
.y26{bottom:938.636400px;}
.yb1{bottom:939.140550px;}
.y65{bottom:939.646050px;}
.y1e{bottom:952.673400px;}
.y8d{bottom:959.151900px;}
.y25{bottom:961.136400px;}
.y4{bottom:961.189500px;}
.y64{bottom:962.146050px;}
.y83{bottom:962.147400px;}
.y8c{bottom:981.651900px;}
.y24{bottom:983.636400px;}
.yb0{bottom:984.142050px;}
.y82{bottom:984.647400px;}
.y3{bottom:993.257550px;}
.y8b{bottom:1004.151900px;}
.y23{bottom:1006.136400px;}
.yaf{bottom:1006.642050px;}
.y63{bottom:1007.147400px;}
.y2{bottom:1008.672450px;}
.y22{bottom:1028.636400px;}
.yae{bottom:1029.142050px;}
.y62{bottom:1029.647400px;}
.y8a{bottom:1049.151900px;}
.y21{bottom:1051.136400px;}
.yad{bottom:1051.642050px;}
.y61{bottom:1052.147400px;}
.y89{bottom:1071.651900px;}
.y20{bottom:1073.636400px;}
.yac{bottom:1074.142050px;}
.y60{bottom:1074.647400px;}
.y1f{bottom:1138.056450px;}
.hd{height:28.781400px;}
.ha{height:28.782000px;}
.h16{height:29.030400px;}
.h15{height:30.401400px;}
.h10{height:30.402000px;}
.h11{height:40.770000px;}
.hf{height:44.460000px;}
.hb{height:46.764000px;}
.hc{height:48.384000px;}
.h13{height:49.362000px;}
.h12{height:51.072000px;}
.h19{height:51.960000px;}
.h18{height:53.760000px;}
.h9{height:54.558000px;}
.h14{height:54.847800px;}
.h17{height:54.848400px;}
.h8{height:56.448000px;}
.h5{height:56.706000px;}
.h4{height:71.789270px;}
.h2{height:72.000000px;}
.h7{height:96.000000px;}
.he{height:102.000000px;}
.h6{height:156.000000px;}
.h3{height:324.382319px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:850.393500px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.x6{left:63.779550px;}
.x4{left:85.039350px;}
.x8{left:106.299150px;}
.x2{left:193.464600px;}
.x3{left:195.975000px;}
.x7{left:346.491300px;}
.x9{left:349.155000px;}
.x1{left:803.708100px;}
.x5{left:827.428950px;}
@media print{
.v2{vertical-align:-18.648000pt;}
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.872533pt;}
.v1{vertical-align:18.648000pt;}
.ls1{letter-spacing:-1.120000pt;}
.lsd{letter-spacing:-1.008000pt;}
.ls7{letter-spacing:-0.672000pt;}
.ls6{letter-spacing:-0.560000pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.304000pt;}
.ls3{letter-spacing:0.335467pt;}
.ls4{letter-spacing:0.336000pt;}
.ls8{letter-spacing:0.506667pt;}
.ls2{letter-spacing:0.560000pt;}
.lsa{letter-spacing:0.672000pt;}
.ls9{letter-spacing:1.120000pt;}
.ls5{letter-spacing:36.384000pt;}
.ws12{word-spacing:-19.200000pt;}
.ws64{word-spacing:-12.656000pt;}
.ws27{word-spacing:-12.432000pt;}
.ws85{word-spacing:-12.096000pt;}
.ws98{word-spacing:-11.648000pt;}
.ws8d{word-spacing:-11.536000pt;}
.ws13{word-spacing:-10.848000pt;}
.ws54{word-spacing:-8.803200pt;}
.ws0{word-spacing:-8.131200pt;}
.ws86{word-spacing:-7.795200pt;}
.wsa1{word-spacing:-7.744000pt;}
.ws53{word-spacing:-7.660800pt;}
.ws26{word-spacing:-7.459200pt;}
.ws44{word-spacing:-7.356800pt;}
.ws1{word-spacing:-6.969600pt;}
.ws97{word-spacing:-2.800000pt;}
.ws7a{word-spacing:-2.744000pt;}
.ws66{word-spacing:-2.688000pt;}
.ws48{word-spacing:-2.632000pt;}
.ws70{word-spacing:-2.576000pt;}
.ws67{word-spacing:-2.464000pt;}
.ws95{word-spacing:-2.408000pt;}
.ws16{word-spacing:-2.352000pt;}
.ws3{word-spacing:-2.348180pt;}
.ws69{word-spacing:-2.296000pt;}
.ws2c{word-spacing:-2.240000pt;}
.ws57{word-spacing:-2.229333pt;}
.wsab{word-spacing:-2.016000pt;}
.ws3e{word-spacing:-1.960000pt;}
.ws4{word-spacing:-1.904000pt;}
.ws7c{word-spacing:-1.792000pt;}
.wsb0{word-spacing:-1.773333pt;}
.ws30{word-spacing:-1.736000pt;}
.ws49{word-spacing:-1.624000pt;}
.ws1b{word-spacing:-1.568000pt;}
.ws8b{word-spacing:-1.512000pt;}
.wsa3{word-spacing:-1.456000pt;}
.ws7{word-spacing:-1.344000pt;}
.ws8f{word-spacing:-1.288000pt;}
.ws2a{word-spacing:-1.232000pt;}
.ws99{word-spacing:-1.176000pt;}
.ws55{word-spacing:-1.165333pt;}
.ws1e{word-spacing:-1.152000pt;}
.wsa7{word-spacing:-1.120000pt;}
.ws65{word-spacing:-1.064000pt;}
.wsae{word-spacing:-1.056000pt;}
.ws52{word-spacing:-1.008000pt;}
.ws20{word-spacing:-0.960000pt;}
.ws5a{word-spacing:-0.952000pt;}
.ws93{word-spacing:-0.896000pt;}
.ws9f{word-spacing:-0.840000pt;}
.ws4a{word-spacing:-0.784000pt;}
.ws94{word-spacing:-0.728000pt;}
.wsa2{word-spacing:-0.693333pt;}
.ws5e{word-spacing:-0.672000pt;}
.ws23{word-spacing:-0.624000pt;}
.ws35{word-spacing:-0.616000pt;}
.ws60{word-spacing:-0.560000pt;}
.ws56{word-spacing:-0.506667pt;}
.wsa4{word-spacing:-0.504000pt;}
.ws11{word-spacing:-0.480000pt;}
.ws88{word-spacing:-0.456000pt;}
.ws8e{word-spacing:-0.448000pt;}
.ws6e{word-spacing:-0.392000pt;}
.ws28{word-spacing:-0.336000pt;}
.ws6{word-spacing:-0.280000pt;}
.ws1a{word-spacing:-0.224000pt;}
.ws1d{word-spacing:-0.192000pt;}
.ws8{word-spacing:-0.168000pt;}
.wsaa{word-spacing:-0.112000pt;}
.wsaf{word-spacing:-0.101333pt;}
.ws68{word-spacing:-0.056000pt;}
.ws87{word-spacing:-0.050667pt;}
.ws2{word-spacing:0.000000pt;}
.ws32{word-spacing:0.056000pt;}
.ws50{word-spacing:0.224000pt;}
.ws78{word-spacing:0.280000pt;}
.ws42{word-spacing:0.336000pt;}
.wsa5{word-spacing:0.373333pt;}
.ws83{word-spacing:0.384000pt;}
.wsad{word-spacing:0.392000pt;}
.ws41{word-spacing:0.448000pt;}
.ws34{word-spacing:0.560000pt;}
.ws10{word-spacing:0.576000pt;}
.ws96{word-spacing:0.616000pt;}
.ws4c{word-spacing:0.672000pt;}
.ws29{word-spacing:0.728000pt;}
.ws25{word-spacing:0.768000pt;}
.ws90{word-spacing:0.784000pt;}
.ws92{word-spacing:0.840000pt;}
.ws63{word-spacing:0.864000pt;}
.ws21{word-spacing:0.912000pt;}
.ws19{word-spacing:0.952000pt;}
.ws22{word-spacing:0.960000pt;}
.ws74{word-spacing:1.008000pt;}
.ws36{word-spacing:1.064000pt;}
.ws51{word-spacing:1.120000pt;}
.ws1f{word-spacing:1.152000pt;}
.ws47{word-spacing:1.176000pt;}
.wsa6{word-spacing:1.226667pt;}
.ws61{word-spacing:1.232000pt;}
.ws5d{word-spacing:1.288000pt;}
.ws62{word-spacing:1.296000pt;}
.ws3f{word-spacing:1.344000pt;}
.wsa9{word-spacing:1.400000pt;}
.ws6d{word-spacing:1.456000pt;}
.ws84{word-spacing:1.488000pt;}
.ws3c{word-spacing:1.568000pt;}
.ws2f{word-spacing:1.680000pt;}
.ws79{word-spacing:1.736000pt;}
.ws6c{word-spacing:1.792000pt;}
.wsf{word-spacing:1.824000pt;}
.wsa0{word-spacing:1.848000pt;}
.wse{word-spacing:1.920000pt;}
.ws82{word-spacing:1.925333pt;}
.ws2e{word-spacing:2.016000pt;}
.ws9a{word-spacing:2.128000pt;}
.ws4b{word-spacing:2.184000pt;}
.ws89{word-spacing:2.240000pt;}
.ws9b{word-spacing:2.296000pt;}
.wsd{word-spacing:2.304000pt;}
.ws58{word-spacing:2.330667pt;}
.ws37{word-spacing:2.408000pt;}
.wsb3{word-spacing:2.464000pt;}
.ws43{word-spacing:2.496000pt;}
.wsb2{word-spacing:2.520000pt;}
.ws40{word-spacing:2.576000pt;}
.ws2b{word-spacing:2.632000pt;}
.ws45{word-spacing:2.685333pt;}
.ws4d{word-spacing:2.688000pt;}
.ws33{word-spacing:2.784000pt;}
.ws7f{word-spacing:2.856000pt;}
.wsb4{word-spacing:2.968000pt;}
.ws71{word-spacing:2.976000pt;}
.ws6a{word-spacing:3.024000pt;}
.ws72{word-spacing:3.168000pt;}
.ws7e{word-spacing:3.192000pt;}
.ws24{word-spacing:3.216000pt;}
.ws4f{word-spacing:3.248000pt;}
.ws6f{word-spacing:3.304000pt;}
.wsa{word-spacing:3.312000pt;}
.ws2d{word-spacing:3.360000pt;}
.ws31{word-spacing:3.472000pt;}
.ws80{word-spacing:3.528000pt;}
.ws9{word-spacing:3.552000pt;}
.ws14{word-spacing:3.584000pt;}
.ws7b{word-spacing:3.640000pt;}
.ws46{word-spacing:3.696000pt;}
.ws39{word-spacing:3.752000pt;}
.ws18{word-spacing:3.808000pt;}
.ws81{word-spacing:3.920000pt;}
.ws5b{word-spacing:3.976000pt;}
.wsa8{word-spacing:4.032000pt;}
.wsc{word-spacing:4.080000pt;}
.ws8a{word-spacing:4.088000pt;}
.ws15{word-spacing:4.144000pt;}
.wsb1{word-spacing:4.200000pt;}
.wsb{word-spacing:4.368000pt;}
.ws38{word-spacing:4.480000pt;}
.ws4e{word-spacing:4.536000pt;}
.ws17{word-spacing:4.592000pt;}
.ws3d{word-spacing:4.648000pt;}
.ws8c{word-spacing:4.704000pt;}
.ws73{word-spacing:5.056000pt;}
.ws75{word-spacing:5.096000pt;}
.wsac{word-spacing:5.152000pt;}
.ws7d{word-spacing:5.208000pt;}
.ws5{word-spacing:5.264000pt;}
.ws3b{word-spacing:5.320000pt;}
.ws59{word-spacing:5.370667pt;}
.ws3a{word-spacing:5.600000pt;}
.ws77{word-spacing:5.656000pt;}
.ws9c{word-spacing:5.712000pt;}
.ws91{word-spacing:6.048000pt;}
.ws6b{word-spacing:6.496000pt;}
.ws9d{word-spacing:6.608000pt;}
.ws9e{word-spacing:6.776000pt;}
.ws5c{word-spacing:7.000000pt;}
.ws5f{word-spacing:7.280000pt;}
.wsb5{word-spacing:7.504000pt;}
.ws76{word-spacing:7.560000pt;}
.ws1c{word-spacing:36.384000pt;}
._15{margin-left:-36.995733pt;}
._12{margin-left:-35.852267pt;}
._7{margin-left:-13.852800pt;}
._6{margin-left:-12.493867pt;}
._3{margin-left:-9.720533pt;}
._8{margin-left:-6.947200pt;}
._17{margin-left:-6.042133pt;}
._14{margin-left:-5.103467pt;}
._4{margin-left:-4.173867pt;}
._11{margin-left:-3.069067pt;}
._2{margin-left:-2.080000pt;}
._0{margin-left:-1.046933pt;}
._9{width:1.230933pt;}
._c{width:2.301867pt;}
._a{width:3.203733pt;}
._5{width:4.173867pt;}
._10{width:5.592533pt;}
._16{width:7.287467pt;}
._18{width:8.241067pt;}
._b{width:32.832000pt;}
._d{width:34.464000pt;}
._19{width:35.423467pt;}
._13{width:36.384000pt;}
._f{width:37.332267pt;}
._1{width:340.156267pt;}
._e{width:920.109333pt;}
.fs8{font-size:28.800000pt;}
.fsd{font-size:30.400000pt;}
.fse{font-size:32.000000pt;}
.fs7{font-size:33.600000pt;}
.fs9{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fsc{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.971733pt;}
.fs5{font-size:85.333333pt;}
.fsa{font-size:90.666667pt;}
.fs4{font-size:138.666667pt;}
.fs1{font-size:365.873600pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.453600pt;}
.y1d{bottom:94.488133pt;}
.y85{bottom:94.488267pt;}
.y4b{bottom:98.484267pt;}
.y5a{bottom:111.821600pt;}
.y1c{bottom:115.817600pt;}
.y1b{bottom:129.154800pt;}
.y4a{bottom:129.154933pt;}
.y59{bottom:133.150933pt;}
.y49{bottom:146.488267pt;}
.y1a{bottom:150.484267pt;}
.y19{bottom:163.821467pt;}
.y48{bottom:163.821600pt;}
.y58{bottom:167.817600pt;}
.y18{bottom:181.154800pt;}
.y47{bottom:181.154933pt;}
.y81{bottom:185.150800pt;}
.y57{bottom:185.150933pt;}
.y17{bottom:198.488133pt;}
.y46{bottom:198.488267pt;}
.y5f{bottom:202.484267pt;}
.y16{bottom:215.821467pt;}
.y45{bottom:215.821600pt;}
.y5e{bottom:219.817600pt;}
.y44{bottom:233.154933pt;}
.y56{bottom:234.343600pt;}
.ycd{bottom:234.790400pt;}
.y15{bottom:237.150800pt;}
.y5d{bottom:237.150933pt;}
.y43{bottom:250.488267pt;}
.y55{bottom:254.343600pt;}
.y88{bottom:254.484267pt;}
.ycc{bottom:254.790400pt;}
.yab{bottom:255.240933pt;}
.y42{bottom:267.821600pt;}
.y87{bottom:271.817600pt;}
.yaa{bottom:272.579600pt;}
.y54{bottom:274.343600pt;}
.ycb{bottom:274.790400pt;}
.y84{bottom:275.240933pt;}
.y41{bottom:285.154933pt;}
.ya9{bottom:292.579600pt;}
.y14{bottom:294.064000pt;}
.y5c{bottom:294.343600pt;}
.yca{bottom:294.790400pt;}
.y80{bottom:295.240933pt;}
.y40{bottom:302.488267pt;}
.ya8{bottom:312.579600pt;}
.y13{bottom:314.064000pt;}
.ydc{bottom:314.342400pt;}
.y53{bottom:314.343600pt;}
.yc9{bottom:314.790400pt;}
.y7f{bottom:315.240933pt;}
.y3f{bottom:319.821600pt;}
.ya7{bottom:332.579600pt;}
.y12{bottom:334.064000pt;}
.ydb{bottom:334.342400pt;}
.y86{bottom:334.343600pt;}
.yc8{bottom:334.790400pt;}
.y7e{bottom:335.240933pt;}
.y3e{bottom:341.150933pt;}
.ya6{bottom:352.579600pt;}
.y11{bottom:354.064000pt;}
.yda{bottom:354.342400pt;}
.y5b{bottom:354.343600pt;}
.y3d{bottom:354.488267pt;}
.yc7{bottom:354.790400pt;}
.y7d{bottom:355.240933pt;}
.ya5{bottom:372.579600pt;}
.y10{bottom:374.064000pt;}
.yd9{bottom:374.342400pt;}
.y52{bottom:374.343600pt;}
.yc6{bottom:374.790400pt;}
.y7c{bottom:375.240933pt;}
.y3c{bottom:375.817600pt;}
.ya4{bottom:392.579600pt;}
.y3b{bottom:393.150933pt;}
.yf{bottom:394.064000pt;}
.yd8{bottom:394.342400pt;}
.y51{bottom:394.343600pt;}
.yc5{bottom:394.790400pt;}
.y7b{bottom:395.240933pt;}
.y3a{bottom:406.488267pt;}
.ya3{bottom:412.579600pt;}
.ye{bottom:414.064000pt;}
.yd7{bottom:414.342400pt;}
.y50{bottom:414.343600pt;}
.yc4{bottom:414.790400pt;}
.y7a{bottom:415.240933pt;}
.y39{bottom:427.817600pt;}
.ya2{bottom:432.579600pt;}
.yd{bottom:434.064000pt;}
.yd6{bottom:434.342400pt;}
.y4f{bottom:434.343600pt;}
.yc3{bottom:434.790400pt;}
.y79{bottom:435.240933pt;}
.y38{bottom:445.150933pt;}
.ya1{bottom:452.579600pt;}
.yc{bottom:454.064000pt;}
.yd5{bottom:454.342400pt;}
.y4e{bottom:454.343600pt;}
.yc2{bottom:454.790400pt;}
.y78{bottom:455.240933pt;}
.y37{bottom:462.484267pt;}
.ya0{bottom:472.579600pt;}
.yd4{bottom:474.342400pt;}
.y4d{bottom:474.343600pt;}
.y77{bottom:475.240933pt;}
.y9f{bottom:492.579600pt;}
.yb{bottom:494.064000pt;}
.yd3{bottom:494.342400pt;}
.y4c{bottom:494.343600pt;}
.yc1{bottom:494.791600pt;}
.y76{bottom:495.240933pt;}
.y9e{bottom:512.579600pt;}
.yd2{bottom:514.342400pt;}
.y36{bottom:514.343600pt;}
.yc0{bottom:514.791600pt;}
.y75{bottom:515.240933pt;}
.y9d{bottom:532.579600pt;}
.yd1{bottom:534.342400pt;}
.y35{bottom:534.343600pt;}
.ybf{bottom:534.791600pt;}
.y74{bottom:535.240933pt;}
.y9c{bottom:552.579600pt;}
.yd0{bottom:554.342400pt;}
.y34{bottom:554.343600pt;}
.ybe{bottom:554.791600pt;}
.y73{bottom:555.240933pt;}
.ya{bottom:559.418400pt;}
.y9b{bottom:572.579600pt;}
.ycf{bottom:574.342400pt;}
.y33{bottom:574.343600pt;}
.ybd{bottom:574.791600pt;}
.y72{bottom:575.240933pt;}
.y9a{bottom:592.579600pt;}
.yce{bottom:594.342400pt;}
.y32{bottom:594.343600pt;}
.y71{bottom:595.240933pt;}
.y9{bottom:608.762267pt;}
.y99{bottom:612.579600pt;}
.ye0{bottom:614.342400pt;}
.y31{bottom:614.343600pt;}
.ybc{bottom:614.791600pt;}
.y70{bottom:615.240933pt;}
.y98{bottom:632.579600pt;}
.ydf{bottom:634.342400pt;}
.y30{bottom:634.343600pt;}
.ybb{bottom:634.791600pt;}
.y6f{bottom:635.240933pt;}
.y8{bottom:646.095600pt;}
.y97{bottom:652.579600pt;}
.yde{bottom:654.342400pt;}
.y2f{bottom:654.343600pt;}
.yba{bottom:654.791600pt;}
.y6e{bottom:655.240933pt;}
.y96{bottom:672.579600pt;}
.ydd{bottom:674.342400pt;}
.y2e{bottom:674.343600pt;}
.yb9{bottom:674.791600pt;}
.y6d{bottom:675.240933pt;}
.y7{bottom:683.428933pt;}
.y95{bottom:692.579600pt;}
.y2d{bottom:694.343600pt;}
.yb8{bottom:694.791600pt;}
.y6c{bottom:695.240933pt;}
.y94{bottom:712.579600pt;}
.y2c{bottom:714.343600pt;}
.yb7{bottom:714.791600pt;}
.y6b{bottom:715.240933pt;}
.y6{bottom:720.762267pt;}
.y93{bottom:732.579600pt;}
.y2b{bottom:734.343600pt;}
.yb6{bottom:734.791600pt;}
.y6a{bottom:735.240933pt;}
.y92{bottom:752.579600pt;}
.y2a{bottom:754.343600pt;}
.yb5{bottom:754.791600pt;}
.y69{bottom:755.240933pt;}
.y5{bottom:758.095600pt;}
.y91{bottom:772.579600pt;}
.y29{bottom:774.343600pt;}
.yb4{bottom:774.791600pt;}
.y68{bottom:775.240933pt;}
.y90{bottom:792.579600pt;}
.y28{bottom:794.343467pt;}
.yb3{bottom:794.791600pt;}
.y67{bottom:795.240933pt;}
.y8f{bottom:812.579467pt;}
.y27{bottom:814.343467pt;}
.yb2{bottom:814.791600pt;}
.y66{bottom:815.240933pt;}
.y8e{bottom:832.579467pt;}
.y26{bottom:834.343467pt;}
.yb1{bottom:834.791600pt;}
.y65{bottom:835.240933pt;}
.y1e{bottom:846.820800pt;}
.y8d{bottom:852.579467pt;}
.y25{bottom:854.343467pt;}
.y4{bottom:854.390667pt;}
.y64{bottom:855.240933pt;}
.y83{bottom:855.242133pt;}
.y8c{bottom:872.579467pt;}
.y24{bottom:874.343467pt;}
.yb0{bottom:874.792933pt;}
.y82{bottom:875.242133pt;}
.y3{bottom:882.895600pt;}
.y8b{bottom:892.579467pt;}
.y23{bottom:894.343467pt;}
.yaf{bottom:894.792933pt;}
.y63{bottom:895.242133pt;}
.y2{bottom:896.597733pt;}
.y22{bottom:914.343467pt;}
.yae{bottom:914.792933pt;}
.y62{bottom:915.242133pt;}
.y8a{bottom:932.579467pt;}
.y21{bottom:934.343467pt;}
.yad{bottom:934.792933pt;}
.y61{bottom:935.242133pt;}
.y89{bottom:952.579467pt;}
.y20{bottom:954.343467pt;}
.yac{bottom:954.792933pt;}
.y60{bottom:955.242133pt;}
.y1f{bottom:1011.605733pt;}
.hd{height:25.583467pt;}
.ha{height:25.584000pt;}
.h16{height:25.804800pt;}
.h15{height:27.023467pt;}
.h10{height:27.024000pt;}
.h11{height:36.240000pt;}
.hf{height:39.520000pt;}
.hb{height:41.568000pt;}
.hc{height:43.008000pt;}
.h13{height:43.877333pt;}
.h12{height:45.397333pt;}
.h19{height:46.186667pt;}
.h18{height:47.786667pt;}
.h9{height:48.496000pt;}
.h14{height:48.753600pt;}
.h17{height:48.754133pt;}
.h8{height:50.176000pt;}
.h5{height:50.405333pt;}
.h4{height:63.812684pt;}
.h2{height:64.000000pt;}
.h7{height:85.333333pt;}
.he{height:90.666667pt;}
.h6{height:138.666667pt;}
.h3{height:288.339839pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:755.905333pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.x6{left:56.692933pt;}
.x4{left:75.590533pt;}
.x8{left:94.488133pt;}
.x2{left:171.968533pt;}
.x3{left:174.200000pt;}
.x7{left:307.992267pt;}
.x9{left:310.360000pt;}
.x1{left:714.407200pt;}
.x5{left:735.492400pt;}
}




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