
    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_3797d76427d9b008b0e70c75.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.061167;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_b13f2d08755ee074ae483b7a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.061200;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_8b6ac87851036dbf8cf4aae8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_059794c7259eab6d10d72bff.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_1f83a22987fa72b265403cbf.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_8340d53e77957e7586a440e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061125;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_f679f85a6abbf2c0db6905a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.784000;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_fcc95760e570c96643d715a5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.037190;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_73ac89348df0799980015565.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.026621;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_40ec766612be4722f1c12106.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.176889;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_984c3e8107ada88857bfa170.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.025381;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_f29a0c1a30e5a6da776bcc17.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.061125;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.985000px;}
.ls7{letter-spacing:-0.450000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.363162px;}
.ls2{letter-spacing:0.555000px;}
.ls3{letter-spacing:0.585000px;}
.ls5{letter-spacing:1.440000px;}
.ls0{letter-spacing:1.653600px;}
.ls6{letter-spacing:2.970000px;}
.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;}
}
.ws0{word-spacing:-38.859600px;}
.ws37{word-spacing:-13.708500px;}
.ws38{word-spacing:-13.612500px;}
.ws39{word-spacing:-11.565000px;}
.ws36{word-spacing:-11.115000px;}
.ws43{word-spacing:-5.050500px;}
.ws83{word-spacing:-4.273500px;}
.ws7c{word-spacing:-3.829500px;}
.ws47{word-spacing:-3.774000px;}
.ws3b{word-spacing:-3.552000px;}
.ws79{word-spacing:-3.330000px;}
.ws40{word-spacing:-3.163500px;}
.ws68{word-spacing:-2.719500px;}
.ws5d{word-spacing:-2.520000px;}
.ws70{word-spacing:-2.497500px;}
.ws5e{word-spacing:-2.475000px;}
.ws84{word-spacing:-2.220000px;}
.ws3f{word-spacing:-1.942500px;}
.ws74{word-spacing:-1.887000px;}
.wsa5{word-spacing:-1.800000px;}
.ws4{word-spacing:-1.440000px;}
.ws6{word-spacing:-1.387500px;}
.ws5{word-spacing:-1.332000px;}
.ws52{word-spacing:-1.170000px;}
.ws16{word-spacing:-1.110000px;}
.ws4b{word-spacing:-1.054500px;}
.ws2{word-spacing:-1.016854px;}
.ws11{word-spacing:-0.999000px;}
.ws86{word-spacing:-0.943500px;}
.ws4f{word-spacing:-0.810000px;}
.ws7b{word-spacing:-0.777000px;}
.ws6a{word-spacing:-0.721500px;}
.ws48{word-spacing:-0.666000px;}
.wsa1{word-spacing:-0.585000px;}
.ws5f{word-spacing:-0.555000px;}
.ws9f{word-spacing:-0.495000px;}
.wsa2{word-spacing:-0.405000px;}
.ws59{word-spacing:-0.360000px;}
.ws46{word-spacing:-0.333000px;}
.ws3c{word-spacing:-0.277500px;}
.ws9e{word-spacing:-0.222000px;}
.ws3{word-spacing:-0.181581px;}
.ws51{word-spacing:-0.180000px;}
.ws1{word-spacing:0.000000px;}
.ws2c{word-spacing:0.055500px;}
.ws23{word-spacing:0.111000px;}
.ws2d{word-spacing:0.166500px;}
.wsa0{word-spacing:0.225000px;}
.ws35{word-spacing:0.277500px;}
.ws50{word-spacing:0.360000px;}
.ws6c{word-spacing:0.388500px;}
.ws13{word-spacing:0.499500px;}
.ws72{word-spacing:0.610500px;}
.ws65{word-spacing:0.777000px;}
.ws82{word-spacing:0.832500px;}
.ws1e{word-spacing:0.943500px;}
.ws2a{word-spacing:0.999000px;}
.ws8c{word-spacing:1.165500px;}
.ws5c{word-spacing:1.395000px;}
.wsa4{word-spacing:1.530000px;}
.ws96{word-spacing:1.665000px;}
.ws1f{word-spacing:1.720500px;}
.ws7f{word-spacing:1.776000px;}
.ws41{word-spacing:1.831500px;}
.ws97{word-spacing:1.998000px;}
.ws88{word-spacing:2.053500px;}
.ws85{word-spacing:2.109000px;}
.ws31{word-spacing:2.275500px;}
.ws33{word-spacing:2.331000px;}
.ws49{word-spacing:2.386500px;}
.ws8e{word-spacing:2.497500px;}
.ws5b{word-spacing:2.565000px;}
.wsd{word-spacing:2.664000px;}
.ws5a{word-spacing:2.700000px;}
.ws4e{word-spacing:2.886000px;}
.ws57{word-spacing:3.015000px;}
.ws6f{word-spacing:3.108000px;}
.ws58{word-spacing:3.150000px;}
.ws73{word-spacing:3.385500px;}
.ws28{word-spacing:3.441000px;}
.ws1b{word-spacing:3.496500px;}
.ws7a{word-spacing:3.607500px;}
.ws69{word-spacing:3.774000px;}
.ws8{word-spacing:3.940500px;}
.ws56{word-spacing:4.140000px;}
.ws7{word-spacing:4.162500px;}
.ws22{word-spacing:4.218000px;}
.wse{word-spacing:4.551000px;}
.ws75{word-spacing:4.662000px;}
.ws29{word-spacing:4.773000px;}
.ws27{word-spacing:4.939500px;}
.wsa3{word-spacing:4.950000px;}
.ws54{word-spacing:5.220000px;}
.ws67{word-spacing:5.328000px;}
.ws10{word-spacing:5.439000px;}
.ws55{word-spacing:5.445000px;}
.ws78{word-spacing:5.716500px;}
.wsf{word-spacing:5.827500px;}
.ws53{word-spacing:5.895000px;}
.ws2b{word-spacing:6.271500px;}
.ws15{word-spacing:6.382500px;}
.ws30{word-spacing:6.604500px;}
.ws34{word-spacing:6.771000px;}
.ws99{word-spacing:6.826500px;}
.ws80{word-spacing:7.159500px;}
.wsa{word-spacing:7.215000px;}
.ws26{word-spacing:7.381500px;}
.ws90{word-spacing:7.437000px;}
.ws32{word-spacing:7.714500px;}
.ws14{word-spacing:7.881000px;}
.ws77{word-spacing:8.214000px;}
.ws1d{word-spacing:8.325000px;}
.ws2e{word-spacing:8.380500px;}
.ws9{word-spacing:9.046500px;}
.ws7d{word-spacing:9.268500px;}
.ws4c{word-spacing:9.379500px;}
.ws2f{word-spacing:9.435000px;}
.ws25{word-spacing:9.490500px;}
.ws6e{word-spacing:9.879000px;}
.ws42{word-spacing:10.045500px;}
.ws8d{word-spacing:10.156500px;}
.ws1a{word-spacing:10.378500px;}
.ws3d{word-spacing:10.434000px;}
.ws21{word-spacing:10.600500px;}
.ws9d{word-spacing:10.711500px;}
.ws20{word-spacing:10.767000px;}
.ws24{word-spacing:10.878000px;}
.ws45{word-spacing:10.933500px;}
.ws12{word-spacing:10.989000px;}
.ws4d{word-spacing:11.211000px;}
.ws19{word-spacing:11.377500px;}
.ws95{word-spacing:11.877000px;}
.ws64{word-spacing:12.210000px;}
.ws94{word-spacing:12.265500px;}
.ws91{word-spacing:12.598500px;}
.ws89{word-spacing:12.931500px;}
.ws87{word-spacing:13.042500px;}
.ws81{word-spacing:13.209000px;}
.ws7e{word-spacing:13.375500px;}
.ws93{word-spacing:13.708500px;}
.ws1c{word-spacing:13.875000px;}
.ws3a{word-spacing:14.157000px;}
.ws76{word-spacing:14.485500px;}
.ws9c{word-spacing:14.652000px;}
.ws71{word-spacing:14.929500px;}
.ws98{word-spacing:14.985000px;}
.ws3e{word-spacing:15.151500px;}
.ws63{word-spacing:15.484500px;}
.ws6d{word-spacing:15.595500px;}
.ws61{word-spacing:15.706500px;}
.ws62{word-spacing:16.206000px;}
.ws66{word-spacing:16.872000px;}
.ws18{word-spacing:16.927500px;}
.ws8a{word-spacing:16.983000px;}
.ws92{word-spacing:17.982000px;}
.ws6b{word-spacing:18.148500px;}
.ws8b{word-spacing:18.204000px;}
.ws44{word-spacing:18.426000px;}
.ws8f{word-spacing:18.703500px;}
.ws9a{word-spacing:20.535000px;}
.ws9b{word-spacing:21.312000px;}
.wsc{word-spacing:22.477500px;}
.ws60{word-spacing:24.253500px;}
.ws17{word-spacing:29.526000px;}
.wsb{word-spacing:34.077000px;}
.ws4a{word-spacing:146.964000px;}
._1{margin-left:-284.584560px;}
._9{margin-left:-10.344188px;}
._0{margin-left:-5.376000px;}
._5{margin-left:-4.260750px;}
._2{margin-left:-2.941612px;}
._3{margin-left:-1.512000px;}
._4{width:1.026000px;}
._8{width:50.446500px;}
._7{width:52.888500px;}
._6{width:60.325500px;}
.fc6{color:rgb(48,88,159);}
.fc5{color:rgb(101,98,99);}
.fc3{color:rgb(77,66,129);}
.fc2{color:transparent;}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(145,143,143);}
.fs9{font-size:26.235000px;}
.fs3{font-size:36.316200px;}
.fs8{font-size:45.000000px;}
.fsa{font-size:49.500000px;}
.fs6{font-size:55.500000px;}
.fs7{font-size:58.500000px;}
.fs1{font-size:59.400000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:144.000000px;}
.fs2{font-size:165.360000px;}
.fs0{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:93.793200px;}
.y4e{bottom:93.794325px;}
.y2{bottom:101.545950px;}
.y77{bottom:110.503050px;}
.yb2{bottom:112.399575px;}
.y4d{bottom:112.400700px;}
.yd8{bottom:127.175550px;}
.y76{bottom:127.749300px;}
.yb1{bottom:131.005950px;}
.y4c{bottom:131.007075px;}
.yd7{bottom:144.421800px;}
.y75{bottom:144.995550px;}
.yb0{bottom:149.612325px;}
.y4b{bottom:149.613450px;}
.yd6{bottom:161.668050px;}
.y74{bottom:162.241800px;}
.y89{bottom:168.200325px;}
.yaf{bottom:168.218700px;}
.y4a{bottom:168.219825px;}
.y1a{bottom:178.108875px;}
.yd5{bottom:178.914300px;}
.y73{bottom:179.488050px;}
.y88{bottom:186.806700px;}
.yae{bottom:186.825075px;}
.y49{bottom:186.826200px;}
.yd4{bottom:196.160550px;}
.y19{bottom:196.715250px;}
.y72{bottom:196.734300px;}
.yad{bottom:205.431450px;}
.y48{bottom:205.432575px;}
.yd3{bottom:213.406800px;}
.y71{bottom:213.980550px;}
.y18{bottom:215.321625px;}
.y87{bottom:224.004750px;}
.yac{bottom:224.037825px;}
.y47{bottom:224.038950px;}
.yd2{bottom:230.653050px;}
.y70{bottom:231.226800px;}
.y17{bottom:233.928000px;}
.yab{bottom:242.644200px;}
.yd1{bottom:247.899300px;}
.y6f{bottom:248.473050px;}
.y46{bottom:261.237825px;}
.yaa{bottom:261.250575px;}
.yd0{bottom:265.145550px;}
.y6e{bottom:265.719300px;}
.y16{bottom:271.126050px;}
.y86{bottom:279.747750px;}
.y45{bottom:279.844200px;}
.ya9{bottom:279.856950px;}
.ycf{bottom:282.395550px;}
.y6d{bottom:282.969300px;}
.y85{bottom:298.354125px;}
.y44{bottom:298.450575px;}
.ya8{bottom:298.463325px;}
.y84{bottom:316.960500px;}
.y43{bottom:317.056950px;}
.ya7{bottom:317.069700px;}
.y15{bottom:326.875875px;}
.y83{bottom:335.566875px;}
.y42{bottom:335.663325px;}
.ya6{bottom:335.676075px;}
.y6c{bottom:337.253700px;}
.y14{bottom:345.482250px;}
.y82{bottom:354.173250px;}
.y41{bottom:354.269700px;}
.ya5{bottom:354.282450px;}
.y6b{bottom:355.860075px;}
.y13{bottom:364.088625px;}
.y81{bottom:372.779625px;}
.y40{bottom:372.876075px;}
.ya4{bottom:372.888825px;}
.y6a{bottom:374.466450px;}
.y12{bottom:382.695000px;}
.y80{bottom:391.386000px;}
.y3f{bottom:391.482450px;}
.ya3{bottom:391.495200px;}
.yce{bottom:392.492550px;}
.y69{bottom:393.072825px;}
.y11{bottom:401.301375px;}
.y3e{bottom:410.088825px;}
.ya2{bottom:410.101575px;}
.ycd{bottom:411.098925px;}
.y68{bottom:411.679200px;}
.y3d{bottom:428.695200px;}
.ya1{bottom:428.707950px;}
.ycc{bottom:429.705300px;}
.y67{bottom:430.285575px;}
.y3c{bottom:447.301575px;}
.ycb{bottom:448.311675px;}
.y66{bottom:448.891950px;}
.y7f{bottom:462.981000px;}
.ya0{bottom:465.906000px;}
.y3b{bottom:465.907950px;}
.yca{bottom:466.918050px;}
.y65{bottom:467.498325px;}
.y7e{bottom:485.486250px;}
.yc9{bottom:485.524425px;}
.y64{bottom:486.104700px;}
.y10{bottom:495.970500px;}
.y3a{bottom:503.106000px;}
.yc8{bottom:504.130800px;}
.y63{bottom:504.711075px;}
.y7d{bottom:507.991500px;}
.yf{bottom:518.475750px;}
.y9f{bottom:521.635875px;}
.yc7{bottom:522.737175px;}
.y62{bottom:523.317450px;}
.y7c{bottom:530.496750px;}
.y9e{bottom:540.242250px;}
.ye{bottom:540.981000px;}
.yc6{bottom:541.343550px;}
.y61{bottom:541.923825px;}
.y7b{bottom:553.002000px;}
.y39{bottom:558.823125px;}
.y9d{bottom:558.848625px;}
.yc5{bottom:559.949925px;}
.y60{bottom:560.530200px;}
.yd{bottom:563.486250px;}
.y7a{bottom:575.496750px;}
.y38{bottom:577.429500px;}
.y9c{bottom:577.455000px;}
.yc4{bottom:578.556300px;}
.y5f{bottom:579.136575px;}
.yc{bottom:585.991500px;}
.y37{bottom:596.035875px;}
.y9b{bottom:596.061375px;}
.yc3{bottom:597.162675px;}
.y5e{bottom:597.742950px;}
.y79{bottom:598.002000px;}
.yb{bottom:608.496750px;}
.y36{bottom:614.642250px;}
.y9a{bottom:614.667750px;}
.yc2{bottom:615.769050px;}
.y5d{bottom:616.349325px;}
.ya{bottom:631.002000px;}
.y35{bottom:633.248625px;}
.y99{bottom:633.274125px;}
.yc1{bottom:634.375425px;}
.y5c{bottom:634.955700px;}
.y78{bottom:639.653850px;}
.y34{bottom:651.855000px;}
.y98{bottom:651.880500px;}
.yc0{bottom:652.981800px;}
.y5b{bottom:653.562075px;}
.y33{bottom:670.461375px;}
.y97{bottom:670.486875px;}
.ybf{bottom:671.588175px;}
.y5a{bottom:672.168450px;}
.y9{bottom:672.647850px;}
.y32{bottom:689.067750px;}
.y96{bottom:689.093250px;}
.ybe{bottom:690.194550px;}
.y59{bottom:690.774825px;}
.y8{bottom:705.641850px;}
.y31{bottom:707.674125px;}
.y95{bottom:707.699625px;}
.ybd{bottom:708.800925px;}
.y58{bottom:709.381200px;}
.y30{bottom:726.280500px;}
.y94{bottom:726.306000px;}
.ybc{bottom:727.407300px;}
.y57{bottom:727.987575px;}
.y7{bottom:738.635850px;}
.y2f{bottom:744.886875px;}
.ybb{bottom:746.013675px;}
.y56{bottom:746.593950px;}
.y2e{bottom:763.493250px;}
.y93{bottom:763.504050px;}
.yba{bottom:764.620050px;}
.y55{bottom:765.200325px;}
.y6{bottom:778.747950px;}
.y2d{bottom:782.099625px;}
.yb9{bottom:783.226425px;}
.y54{bottom:783.806700px;}
.y2c{bottom:800.706000px;}
.yb8{bottom:801.832800px;}
.y53{bottom:802.413075px;}
.y92{bottom:819.291300px;}
.yb7{bottom:820.439175px;}
.y52{bottom:821.019450px;}
.y91{bottom:837.897675px;}
.y2b{bottom:837.904050px;}
.yb6{bottom:839.045550px;}
.y90{bottom:856.504050px;}
.y51{bottom:858.216450px;}
.y8f{bottom:875.104050px;}
.yb5{bottom:876.245550px;}
.y50{bottom:876.819450px;}
.y1{bottom:886.475400px;}
.y2a{bottom:893.691300px;}
.y29{bottom:912.297675px;}
.y28{bottom:930.904050px;}
.yb4{bottom:932.045550px;}
.y4f{bottom:932.619450px;}
.y27{bottom:949.497675px;}
.y8e{bottom:949.504050px;}
.y8d{bottom:968.033925px;}
.y26{bottom:968.104050px;}
.y8c{bottom:986.640300px;}
.y25{bottom:986.697675px;}
.y8b{bottom:1005.246675px;}
.y24{bottom:1005.304050px;}
.y8a{bottom:1023.853050px;}
.y23{bottom:1023.904050px;}
.y22{bottom:1042.459425px;}
.y5{bottom:1055.942572px;}
.y21{bottom:1061.065800px;}
.y4{bottom:1068.671400px;}
.y20{bottom:1079.672175px;}
.y3{bottom:1083.631500px;}
.y1f{bottom:1098.278550px;}
.y1e{bottom:1116.884925px;}
.y1d{bottom:1135.491300px;}
.y1c{bottom:1154.097675px;}
.y1b{bottom:1172.704050px;}
.h5{height:27.237150px;}
.h11{height:33.661082px;}
.hb{height:36.500625px;}
.hd{height:36.502500px;}
.hc{height:37.125000px;}
.h9{height:41.625000px;}
.h14{height:43.102448px;}
.h8{height:45.017437px;}
.h17{height:45.881000px;}
.h16{height:46.050643px;}
.hf{height:46.759114px;}
.ha{height:47.455200px;}
.h3{height:48.185280px;}
.h15{height:51.442333px;}
.h7{height:81.000000px;}
.h13{height:83.741143px;}
.h6{height:108.000000px;}
.h12{height:111.833379px;}
.h4{height:124.020000px;}
.h10{height:128.421997px;}
.he{height:148.608000px;}
.h2{height:155.744000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:149.878200px;}
.x1{left:276.378000px;}
.x5{left:280.809450px;}
.x8{left:301.886400px;}
.x6{left:307.629900px;}
.x3{left:331.360950px;}
.x4{left:335.451900px;}
.x7{left:371.104500px;}
.x9{left:379.455300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.320000pt;}
.ls7{letter-spacing:-0.400000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.322811pt;}
.ls2{letter-spacing:0.493333pt;}
.ls3{letter-spacing:0.520000pt;}
.ls5{letter-spacing:1.280000pt;}
.ls0{letter-spacing:1.469867pt;}
.ls6{letter-spacing:2.640000pt;}
.ws0{word-spacing:-34.541867pt;}
.ws37{word-spacing:-12.185333pt;}
.ws38{word-spacing:-12.100000pt;}
.ws39{word-spacing:-10.280000pt;}
.ws36{word-spacing:-9.880000pt;}
.ws43{word-spacing:-4.489333pt;}
.ws83{word-spacing:-3.798667pt;}
.ws7c{word-spacing:-3.404000pt;}
.ws47{word-spacing:-3.354667pt;}
.ws3b{word-spacing:-3.157333pt;}
.ws79{word-spacing:-2.960000pt;}
.ws40{word-spacing:-2.812000pt;}
.ws68{word-spacing:-2.417333pt;}
.ws5d{word-spacing:-2.240000pt;}
.ws70{word-spacing:-2.220000pt;}
.ws5e{word-spacing:-2.200000pt;}
.ws84{word-spacing:-1.973333pt;}
.ws3f{word-spacing:-1.726667pt;}
.ws74{word-spacing:-1.677333pt;}
.wsa5{word-spacing:-1.600000pt;}
.ws4{word-spacing:-1.280000pt;}
.ws6{word-spacing:-1.233333pt;}
.ws5{word-spacing:-1.184000pt;}
.ws52{word-spacing:-1.040000pt;}
.ws16{word-spacing:-0.986667pt;}
.ws4b{word-spacing:-0.937333pt;}
.ws2{word-spacing:-0.903870pt;}
.ws11{word-spacing:-0.888000pt;}
.ws86{word-spacing:-0.838667pt;}
.ws4f{word-spacing:-0.720000pt;}
.ws7b{word-spacing:-0.690667pt;}
.ws6a{word-spacing:-0.641333pt;}
.ws48{word-spacing:-0.592000pt;}
.wsa1{word-spacing:-0.520000pt;}
.ws5f{word-spacing:-0.493333pt;}
.ws9f{word-spacing:-0.440000pt;}
.wsa2{word-spacing:-0.360000pt;}
.ws59{word-spacing:-0.320000pt;}
.ws46{word-spacing:-0.296000pt;}
.ws3c{word-spacing:-0.246667pt;}
.ws9e{word-spacing:-0.197333pt;}
.ws3{word-spacing:-0.161405pt;}
.ws51{word-spacing:-0.160000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.049333pt;}
.ws23{word-spacing:0.098667pt;}
.ws2d{word-spacing:0.148000pt;}
.wsa0{word-spacing:0.200000pt;}
.ws35{word-spacing:0.246667pt;}
.ws50{word-spacing:0.320000pt;}
.ws6c{word-spacing:0.345333pt;}
.ws13{word-spacing:0.444000pt;}
.ws72{word-spacing:0.542667pt;}
.ws65{word-spacing:0.690667pt;}
.ws82{word-spacing:0.740000pt;}
.ws1e{word-spacing:0.838667pt;}
.ws2a{word-spacing:0.888000pt;}
.ws8c{word-spacing:1.036000pt;}
.ws5c{word-spacing:1.240000pt;}
.wsa4{word-spacing:1.360000pt;}
.ws96{word-spacing:1.480000pt;}
.ws1f{word-spacing:1.529333pt;}
.ws7f{word-spacing:1.578667pt;}
.ws41{word-spacing:1.628000pt;}
.ws97{word-spacing:1.776000pt;}
.ws88{word-spacing:1.825333pt;}
.ws85{word-spacing:1.874667pt;}
.ws31{word-spacing:2.022667pt;}
.ws33{word-spacing:2.072000pt;}
.ws49{word-spacing:2.121333pt;}
.ws8e{word-spacing:2.220000pt;}
.ws5b{word-spacing:2.280000pt;}
.wsd{word-spacing:2.368000pt;}
.ws5a{word-spacing:2.400000pt;}
.ws4e{word-spacing:2.565333pt;}
.ws57{word-spacing:2.680000pt;}
.ws6f{word-spacing:2.762667pt;}
.ws58{word-spacing:2.800000pt;}
.ws73{word-spacing:3.009333pt;}
.ws28{word-spacing:3.058667pt;}
.ws1b{word-spacing:3.108000pt;}
.ws7a{word-spacing:3.206667pt;}
.ws69{word-spacing:3.354667pt;}
.ws8{word-spacing:3.502667pt;}
.ws56{word-spacing:3.680000pt;}
.ws7{word-spacing:3.700000pt;}
.ws22{word-spacing:3.749333pt;}
.wse{word-spacing:4.045333pt;}
.ws75{word-spacing:4.144000pt;}
.ws29{word-spacing:4.242667pt;}
.ws27{word-spacing:4.390667pt;}
.wsa3{word-spacing:4.400000pt;}
.ws54{word-spacing:4.640000pt;}
.ws67{word-spacing:4.736000pt;}
.ws10{word-spacing:4.834667pt;}
.ws55{word-spacing:4.840000pt;}
.ws78{word-spacing:5.081333pt;}
.wsf{word-spacing:5.180000pt;}
.ws53{word-spacing:5.240000pt;}
.ws2b{word-spacing:5.574667pt;}
.ws15{word-spacing:5.673333pt;}
.ws30{word-spacing:5.870667pt;}
.ws34{word-spacing:6.018667pt;}
.ws99{word-spacing:6.068000pt;}
.ws80{word-spacing:6.364000pt;}
.wsa{word-spacing:6.413333pt;}
.ws26{word-spacing:6.561333pt;}
.ws90{word-spacing:6.610667pt;}
.ws32{word-spacing:6.857333pt;}
.ws14{word-spacing:7.005333pt;}
.ws77{word-spacing:7.301333pt;}
.ws1d{word-spacing:7.400000pt;}
.ws2e{word-spacing:7.449333pt;}
.ws9{word-spacing:8.041333pt;}
.ws7d{word-spacing:8.238667pt;}
.ws4c{word-spacing:8.337333pt;}
.ws2f{word-spacing:8.386667pt;}
.ws25{word-spacing:8.436000pt;}
.ws6e{word-spacing:8.781333pt;}
.ws42{word-spacing:8.929333pt;}
.ws8d{word-spacing:9.028000pt;}
.ws1a{word-spacing:9.225333pt;}
.ws3d{word-spacing:9.274667pt;}
.ws21{word-spacing:9.422667pt;}
.ws9d{word-spacing:9.521333pt;}
.ws20{word-spacing:9.570667pt;}
.ws24{word-spacing:9.669333pt;}
.ws45{word-spacing:9.718667pt;}
.ws12{word-spacing:9.768000pt;}
.ws4d{word-spacing:9.965333pt;}
.ws19{word-spacing:10.113333pt;}
.ws95{word-spacing:10.557333pt;}
.ws64{word-spacing:10.853333pt;}
.ws94{word-spacing:10.902667pt;}
.ws91{word-spacing:11.198667pt;}
.ws89{word-spacing:11.494667pt;}
.ws87{word-spacing:11.593333pt;}
.ws81{word-spacing:11.741333pt;}
.ws7e{word-spacing:11.889333pt;}
.ws93{word-spacing:12.185333pt;}
.ws1c{word-spacing:12.333333pt;}
.ws3a{word-spacing:12.584000pt;}
.ws76{word-spacing:12.876000pt;}
.ws9c{word-spacing:13.024000pt;}
.ws71{word-spacing:13.270667pt;}
.ws98{word-spacing:13.320000pt;}
.ws3e{word-spacing:13.468000pt;}
.ws63{word-spacing:13.764000pt;}
.ws6d{word-spacing:13.862667pt;}
.ws61{word-spacing:13.961333pt;}
.ws62{word-spacing:14.405333pt;}
.ws66{word-spacing:14.997333pt;}
.ws18{word-spacing:15.046667pt;}
.ws8a{word-spacing:15.096000pt;}
.ws92{word-spacing:15.984000pt;}
.ws6b{word-spacing:16.132000pt;}
.ws8b{word-spacing:16.181333pt;}
.ws44{word-spacing:16.378667pt;}
.ws8f{word-spacing:16.625333pt;}
.ws9a{word-spacing:18.253333pt;}
.ws9b{word-spacing:18.944000pt;}
.wsc{word-spacing:19.980000pt;}
.ws60{word-spacing:21.558667pt;}
.ws17{word-spacing:26.245333pt;}
.wsb{word-spacing:30.290667pt;}
.ws4a{word-spacing:130.634667pt;}
._1{margin-left:-252.964053pt;}
._9{margin-left:-9.194834pt;}
._0{margin-left:-4.778667pt;}
._5{margin-left:-3.787333pt;}
._2{margin-left:-2.614766pt;}
._3{margin-left:-1.344000pt;}
._4{width:0.912000pt;}
._8{width:44.841333pt;}
._7{width:47.012000pt;}
._6{width:53.622667pt;}
.fs9{font-size:23.320000pt;}
.fs3{font-size:32.281067pt;}
.fs8{font-size:40.000000pt;}
.fsa{font-size:44.000000pt;}
.fs6{font-size:49.333333pt;}
.fs7{font-size:52.000000pt;}
.fs1{font-size:52.800000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:128.000000pt;}
.fs2{font-size:146.986667pt;}
.fs0{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:83.371733pt;}
.y4e{bottom:83.372733pt;}
.y2{bottom:90.263067pt;}
.y77{bottom:98.224933pt;}
.yb2{bottom:99.910733pt;}
.y4d{bottom:99.911733pt;}
.yd8{bottom:113.044933pt;}
.y76{bottom:113.554933pt;}
.yb1{bottom:116.449733pt;}
.y4c{bottom:116.450733pt;}
.yd7{bottom:128.374933pt;}
.y75{bottom:128.884933pt;}
.yb0{bottom:132.988733pt;}
.y4b{bottom:132.989733pt;}
.yd6{bottom:143.704933pt;}
.y74{bottom:144.214933pt;}
.y89{bottom:149.511400pt;}
.yaf{bottom:149.527733pt;}
.y4a{bottom:149.528733pt;}
.y1a{bottom:158.319000pt;}
.yd5{bottom:159.034933pt;}
.y73{bottom:159.544933pt;}
.y88{bottom:166.050400pt;}
.yae{bottom:166.066733pt;}
.y49{bottom:166.067733pt;}
.yd4{bottom:174.364933pt;}
.y19{bottom:174.858000pt;}
.y72{bottom:174.874933pt;}
.yad{bottom:182.605733pt;}
.y48{bottom:182.606733pt;}
.yd3{bottom:189.694933pt;}
.y71{bottom:190.204933pt;}
.y18{bottom:191.397000pt;}
.y87{bottom:199.115333pt;}
.yac{bottom:199.144733pt;}
.y47{bottom:199.145733pt;}
.yd2{bottom:205.024933pt;}
.y70{bottom:205.534933pt;}
.y17{bottom:207.936000pt;}
.yab{bottom:215.683733pt;}
.yd1{bottom:220.354933pt;}
.y6f{bottom:220.864933pt;}
.y46{bottom:232.211400pt;}
.yaa{bottom:232.222733pt;}
.yd0{bottom:235.684933pt;}
.y6e{bottom:236.194933pt;}
.y16{bottom:241.000933pt;}
.y86{bottom:248.664667pt;}
.y45{bottom:248.750400pt;}
.ya9{bottom:248.761733pt;}
.ycf{bottom:251.018267pt;}
.y6d{bottom:251.528267pt;}
.y85{bottom:265.203667pt;}
.y44{bottom:265.289400pt;}
.ya8{bottom:265.300733pt;}
.y84{bottom:281.742667pt;}
.y43{bottom:281.828400pt;}
.ya7{bottom:281.839733pt;}
.y15{bottom:290.556333pt;}
.y83{bottom:298.281667pt;}
.y42{bottom:298.367400pt;}
.ya6{bottom:298.378733pt;}
.y6c{bottom:299.781067pt;}
.y14{bottom:307.095333pt;}
.y82{bottom:314.820667pt;}
.y41{bottom:314.906400pt;}
.ya5{bottom:314.917733pt;}
.y6b{bottom:316.320067pt;}
.y13{bottom:323.634333pt;}
.y81{bottom:331.359667pt;}
.y40{bottom:331.445400pt;}
.ya4{bottom:331.456733pt;}
.y6a{bottom:332.859067pt;}
.y12{bottom:340.173333pt;}
.y80{bottom:347.898667pt;}
.y3f{bottom:347.984400pt;}
.ya3{bottom:347.995733pt;}
.yce{bottom:348.882267pt;}
.y69{bottom:349.398067pt;}
.y11{bottom:356.712333pt;}
.y3e{bottom:364.523400pt;}
.ya2{bottom:364.534733pt;}
.ycd{bottom:365.421267pt;}
.y68{bottom:365.937067pt;}
.y3d{bottom:381.062400pt;}
.ya1{bottom:381.073733pt;}
.ycc{bottom:381.960267pt;}
.y67{bottom:382.476067pt;}
.y3c{bottom:397.601400pt;}
.ycb{bottom:398.499267pt;}
.y66{bottom:399.015067pt;}
.y7f{bottom:411.538667pt;}
.ya0{bottom:414.138667pt;}
.y3b{bottom:414.140400pt;}
.yca{bottom:415.038267pt;}
.y65{bottom:415.554067pt;}
.y7e{bottom:431.543333pt;}
.yc9{bottom:431.577267pt;}
.y64{bottom:432.093067pt;}
.y10{bottom:440.862667pt;}
.y3a{bottom:447.205333pt;}
.yc8{bottom:448.116267pt;}
.y63{bottom:448.632067pt;}
.y7d{bottom:451.548000pt;}
.yf{bottom:460.867333pt;}
.y9f{bottom:463.676333pt;}
.yc7{bottom:464.655267pt;}
.y62{bottom:465.171067pt;}
.y7c{bottom:471.552667pt;}
.y9e{bottom:480.215333pt;}
.ye{bottom:480.872000pt;}
.yc6{bottom:481.194267pt;}
.y61{bottom:481.710067pt;}
.y7b{bottom:491.557333pt;}
.y39{bottom:496.731667pt;}
.y9d{bottom:496.754333pt;}
.yc5{bottom:497.733267pt;}
.y60{bottom:498.249067pt;}
.yd{bottom:500.876667pt;}
.y7a{bottom:511.552667pt;}
.y38{bottom:513.270667pt;}
.y9c{bottom:513.293333pt;}
.yc4{bottom:514.272267pt;}
.y5f{bottom:514.788067pt;}
.yc{bottom:520.881333pt;}
.y37{bottom:529.809667pt;}
.y9b{bottom:529.832333pt;}
.yc3{bottom:530.811267pt;}
.y5e{bottom:531.327067pt;}
.y79{bottom:531.557333pt;}
.yb{bottom:540.886000pt;}
.y36{bottom:546.348667pt;}
.y9a{bottom:546.371333pt;}
.yc2{bottom:547.350267pt;}
.y5d{bottom:547.866067pt;}
.ya{bottom:560.890667pt;}
.y35{bottom:562.887667pt;}
.y99{bottom:562.910333pt;}
.yc1{bottom:563.889267pt;}
.y5c{bottom:564.405067pt;}
.y78{bottom:568.581200pt;}
.y34{bottom:579.426667pt;}
.y98{bottom:579.449333pt;}
.yc0{bottom:580.428267pt;}
.y5b{bottom:580.944067pt;}
.y33{bottom:595.965667pt;}
.y97{bottom:595.988333pt;}
.ybf{bottom:596.967267pt;}
.y5a{bottom:597.483067pt;}
.y9{bottom:597.909200pt;}
.y32{bottom:612.504667pt;}
.y96{bottom:612.527333pt;}
.ybe{bottom:613.506267pt;}
.y59{bottom:614.022067pt;}
.y8{bottom:627.237200pt;}
.y31{bottom:629.043667pt;}
.y95{bottom:629.066333pt;}
.ybd{bottom:630.045267pt;}
.y58{bottom:630.561067pt;}
.y30{bottom:645.582667pt;}
.y94{bottom:645.605333pt;}
.ybc{bottom:646.584267pt;}
.y57{bottom:647.100067pt;}
.y7{bottom:656.565200pt;}
.y2f{bottom:662.121667pt;}
.ybb{bottom:663.123267pt;}
.y56{bottom:663.639067pt;}
.y2e{bottom:678.660667pt;}
.y93{bottom:678.670267pt;}
.yba{bottom:679.662267pt;}
.y55{bottom:680.178067pt;}
.y6{bottom:692.220400pt;}
.y2d{bottom:695.199667pt;}
.yb9{bottom:696.201267pt;}
.y54{bottom:696.717067pt;}
.y2c{bottom:711.738667pt;}
.yb8{bottom:712.740267pt;}
.y53{bottom:713.256067pt;}
.y92{bottom:728.258933pt;}
.yb7{bottom:729.279267pt;}
.y52{bottom:729.795067pt;}
.y91{bottom:744.797933pt;}
.y2b{bottom:744.803600pt;}
.yb6{bottom:745.818267pt;}
.y90{bottom:761.336933pt;}
.y51{bottom:762.859067pt;}
.y8f{bottom:777.870267pt;}
.yb5{bottom:778.884933pt;}
.y50{bottom:779.395067pt;}
.y1{bottom:787.978133pt;}
.y2a{bottom:794.392267pt;}
.y29{bottom:810.931267pt;}
.y28{bottom:827.470267pt;}
.yb4{bottom:828.484933pt;}
.y4f{bottom:828.995067pt;}
.y27{bottom:843.997933pt;}
.y8e{bottom:844.003600pt;}
.y8d{bottom:860.474600pt;}
.y26{bottom:860.536933pt;}
.y8c{bottom:877.013600pt;}
.y25{bottom:877.064600pt;}
.y8b{bottom:893.552600pt;}
.y24{bottom:893.603600pt;}
.y8a{bottom:910.091600pt;}
.y23{bottom:910.136933pt;}
.y22{bottom:926.630600pt;}
.y5{bottom:938.615619pt;}
.y21{bottom:943.169600pt;}
.y4{bottom:949.930133pt;}
.y20{bottom:959.708600pt;}
.y3{bottom:963.228000pt;}
.y1f{bottom:976.247600pt;}
.y1e{bottom:992.786600pt;}
.y1d{bottom:1009.325600pt;}
.y1c{bottom:1025.864600pt;}
.y1b{bottom:1042.403600pt;}
.h5{height:24.210800pt;}
.h11{height:29.920962pt;}
.hb{height:32.445000pt;}
.hd{height:32.446667pt;}
.hc{height:33.000000pt;}
.h9{height:37.000000pt;}
.h14{height:38.313287pt;}
.h8{height:40.015500pt;}
.h17{height:40.783111pt;}
.h16{height:40.933905pt;}
.hf{height:41.563657pt;}
.ha{height:42.182400pt;}
.h3{height:42.831360pt;}
.h15{height:45.726519pt;}
.h7{height:72.000000pt;}
.h13{height:74.436571pt;}
.h6{height:96.000000pt;}
.h12{height:99.407448pt;}
.h4{height:110.240000pt;}
.h10{height:114.152886pt;}
.he{height:132.096000pt;}
.h2{height:138.439111pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:133.225067pt;}
.x1{left:245.669333pt;}
.x5{left:249.608400pt;}
.x8{left:268.343467pt;}
.x6{left:273.448800pt;}
.x3{left:294.543067pt;}
.x4{left:298.179467pt;}
.x7{left:329.870667pt;}
.x9{left:337.293600pt;}
}




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