
    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_748d91b8b0d6d946170c5c44.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074036;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_98d1568a06c609426c2a007a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_f5e07a43f768cd4642e818a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_685827f5a0c4c3a0c7b22307.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_4f21dda8ed1e6dbd7e7de889.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.074000;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_58aaaac2615157eecc2e132e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.975098;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.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);}
.m8{transform:matrix(0.245713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245713,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246069,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246502,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246617,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250687,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251146,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251811,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252069,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253486,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253577,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254620,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-3.072300px;}
.ls6{letter-spacing:-0.627000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.062700px;}
.ls1{letter-spacing:0.125400px;}
.ls3{letter-spacing:0.188100px;}
.lsd{letter-spacing:0.250800px;}
.ls4{letter-spacing:0.313500px;}
.ls7{letter-spacing:0.376200px;}
.lsb{letter-spacing:0.438900px;}
.lsa{letter-spacing:0.564300px;}
.lsc{letter-spacing:0.752400px;}
.ls8{letter-spacing:0.940500px;}
.ls9{letter-spacing:1.128600px;}
.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;}
}
.ws1c{word-spacing:-16.678200px;}
.ws3{word-spacing:-16.500000px;}
.ws5{word-spacing:-16.490100px;}
.ws4{word-spacing:-16.302000px;}
.ws1{word-spacing:-15.990000px;}
.ws6{word-spacing:-13.229700px;}
.wsa{word-spacing:-4.953300px;}
.ws1b{word-spacing:-3.197700px;}
.ws8{word-spacing:-2.382600px;}
.ws10{word-spacing:-2.257200px;}
.ws13{word-spacing:-2.069100px;}
.ws23{word-spacing:-1.128600px;}
.ws22{word-spacing:-0.940500px;}
.ws26{word-spacing:-0.752400px;}
.ws25{word-spacing:-0.564300px;}
.wse{word-spacing:-0.438900px;}
.ws21{word-spacing:-0.376200px;}
.wsc{word-spacing:-0.313500px;}
.ws2d{word-spacing:-0.250800px;}
.wsb{word-spacing:-0.188100px;}
.ws7{word-spacing:-0.125400px;}
.ws2{word-spacing:-0.066000px;}
.ws9{word-spacing:-0.062700px;}
.ws0{word-spacing:0.000000px;}
.ws20{word-spacing:0.062700px;}
.ws24{word-spacing:0.250800px;}
.ws2c{word-spacing:0.689700px;}
.ws19{word-spacing:0.752400px;}
.ws2e{word-spacing:0.940500px;}
.ws1f{word-spacing:1.254000px;}
.ws1e{word-spacing:1.316700px;}
.ws11{word-spacing:1.567500px;}
.ws14{word-spacing:2.319900px;}
.ws12{word-spacing:2.570700px;}
.ws28{word-spacing:3.636600px;}
.wsd{word-spacing:3.699300px;}
.ws27{word-spacing:3.762000px;}
.ws2b{word-spacing:3.887400px;}
.ws15{word-spacing:4.827900px;}
.ws17{word-spacing:5.078700px;}
.ws2a{word-spacing:5.141400px;}
.ws16{word-spacing:5.329500px;}
.ws1d{word-spacing:5.831100px;}
.ws29{word-spacing:6.646200px;}
.ws1a{word-spacing:7.774800px;}
.wsf{word-spacing:8.025600px;}
.ws18{word-spacing:8.213700px;}
._11{margin-left:-16.449300px;}
._0{margin-left:-6.720000px;}
._d{margin-left:-5.650650px;}
._9{margin-left:-4.566930px;}
._3{margin-left:-3.480000px;}
._1{margin-left:-1.696800px;}
._2{width:1.663200px;}
._4{width:2.671680px;}
._7{width:3.736860px;}
._8{width:5.216640px;}
._a{width:6.840570px;}
._5{width:8.207430px;}
._6{width:9.358740px;}
._f{width:10.535970px;}
._b{width:11.555610px;}
._12{width:12.960090px;}
._13{width:14.195280px;}
._10{width:504.702000px;}
._e{width:506.880000px;}
._14{width:508.134000px;}
._c{width:520.146000px;}
.fc4{color:rgb(245,174,43);}
.fc2{color:rgb(74,114,132);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(246,174,45);}
.fs8{font-size:45.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs4{font-size:62.700000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:87.000000px;}
.fs1{font-size:110.412762px;}
.fs2{font-size:147.217099px;}
.fs0{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y73{bottom:45.476850px;}
.y34{bottom:47.337000px;}
.y101{bottom:82.903200px;}
.y100{bottom:96.403200px;}
.yff{bottom:109.903200px;}
.ye2{bottom:126.074850px;}
.y72{bottom:127.074450px;}
.ybe{bottom:130.876200px;}
.y23{bottom:131.093025px;}
.y4d{bottom:133.076775px;}
.yfe{bottom:136.903200px;}
.yfd{bottom:150.403200px;}
.ye1{bottom:151.562100px;}
.y22{bottom:152.095275px;}
.y98{bottom:152.753850px;}
.ybd{bottom:156.376200px;}
.y4c{bottom:158.580000px;}
.y6d{bottom:169.653225px;}
.ye0{bottom:177.065325px;}
.y97{bottom:178.253850px;}
.y2c{bottom:181.386000px;}
.ybc{bottom:181.876200px;}
.y4b{bottom:184.080000px;}
.y21{bottom:194.099775px;}
.y6c{bottom:195.156450px;}
.ydf{bottom:202.568550px;}
.y96{bottom:203.753850px;}
.y2b{bottom:206.886000px;}
.ybb{bottom:207.360075px;}
.y4a{bottom:209.576775px;}
.y20{bottom:212.549775px;}
.y6b{bottom:220.659675px;}
.yde{bottom:228.071775px;}
.y95{bottom:229.253850px;}
.y1f{bottom:230.999775px;}
.y2a{bottom:232.376325px;}
.yba{bottom:232.863300px;}
.y49{bottom:235.080000px;}
.y6a{bottom:246.162900px;}
.ydd{bottom:253.575000px;}
.y94{bottom:254.750625px;}
.y29{bottom:257.879550px;}
.yb9{bottom:258.366525px;}
.y1e{bottom:267.899775px;}
.y69{bottom:271.666125px;}
.y93{bottom:280.253850px;}
.y28{bottom:283.382775px;}
.yb8{bottom:283.869750px;}
.y48{bottom:288.347700px;}
.y1d{bottom:290.393400px;}
.y68{bottom:297.169350px;}
.ydb{bottom:305.702400px;}
.y27{bottom:308.886000px;}
.yb7{bottom:309.372975px;}
.y1c{bottom:311.395650px;}
.y47{bottom:313.847700px;}
.y92{bottom:314.942250px;}
.y67{bottom:322.669350px;}
.yda{bottom:331.205625px;}
.y4{bottom:332.045550px;}
.y26{bottom:334.379550px;}
.yb6{bottom:334.876200px;}
.y46{bottom:339.347700px;}
.y1b{bottom:348.295650px;}
.yd9{bottom:356.708850px;}
.y25{bottom:359.882775px;}
.y45{bottom:364.847700px;}
.y66{bottom:367.374150px;}
.y1a{bottom:369.297900px;}
.y85{bottom:375.868425px;}
.yd8{bottom:382.206000px;}
.y24{bottom:385.386000px;}
.yab{bottom:387.743325px;}
.y44{bottom:390.347700px;}
.y65{bottom:392.867700px;}
.y84{bottom:401.371650px;}
.y19{bottom:406.197900px;}
.yd7{bottom:407.709225px;}
.yfc{bottom:407.826900px;}
.yaa{bottom:413.246550px;}
.y43{bottom:415.847700px;}
.y64{bottom:418.370925px;}
.y18{bottom:424.647900px;}
.y83{bottom:426.874875px;}
.y14{bottom:427.951800px;}
.yfb{bottom:433.317225px;}
.ya9{bottom:438.749775px;}
.y42{bottom:441.347700px;}
.y17{bottom:443.097900px;}
.y63{bottom:443.874150px;}
.y82{bottom:452.378100px;}
.y13{bottom:453.455025px;}
.yd6{bottom:457.696800px;}
.yfa{bottom:458.820450px;}
.ya8{bottom:464.253000px;}
.y41{bottom:466.847700px;}
.y62{bottom:469.370925px;}
.y81{bottom:477.874875px;}
.y12{bottom:478.958250px;}
.y16{bottom:479.997900px;}
.yd5{bottom:483.196800px;}
.yf9{bottom:484.323675px;}
.ya7{bottom:489.756225px;}
.y40{bottom:492.347700px;}
.y61{bottom:494.874150px;}
.y15{bottom:498.447900px;}
.y80{bottom:503.378100px;}
.y11{bottom:504.461475px;}
.yd4{bottom:508.696800px;}
.yf8{bottom:509.826900px;}
.ya6{bottom:515.259450px;}
.y3f{bottom:517.844475px;}
.y32{bottom:524.192100px;}
.y10{bottom:529.964700px;}
.yd3{bottom:534.196800px;}
.yf7{bottom:535.317225px;}
.y60{bottom:539.625000px;}
.ya5{bottom:540.762675px;}
.y3e{bottom:543.347700px;}
.y7f{bottom:543.891975px;}
.yf{bottom:555.460950px;}
.yd2{bottom:559.696800px;}
.yf6{bottom:560.820450px;}
.y5f{bottom:565.128225px;}
.ya4{bottom:566.265900px;}
.y7e{bottom:569.395200px;}
.yd1{bottom:585.196800px;}
.yf5{bottom:586.323675px;}
.y2{bottom:586.437450px;}
.y5e{bottom:590.631450px;}
.ya3{bottom:591.765900px;}
.y3d{bottom:592.804200px;}
.y7d{bottom:594.898425px;}
.ye{bottom:598.002900px;}
.yd0{bottom:610.696800px;}
.yf4{bottom:611.826900px;}
.y5d{bottom:616.134675px;}
.y3c{bottom:618.304200px;}
.y7c{bottom:620.401650px;}
.yd{bottom:623.506125px;}
.ycf{bottom:636.196800px;}
.yf3{bottom:637.326900px;}
.y1{bottom:640.449450px;}
.ya2{bottom:640.760175px;}
.y5c{bottom:641.637900px;}
.y3b{bottom:643.804200px;}
.y7b{bottom:645.901650px;}
.yc{bottom:649.009350px;}
.yf2{bottom:662.812950px;}
.ya1{bottom:666.263400px;}
.y5b{bottom:667.131450px;}
.y3a{bottom:669.304200px;}
.yce{bottom:670.885050px;}
.y7a{bottom:671.398425px;}
.yb{bottom:691.551300px;}
.ya0{bottom:691.766625px;}
.y5a{bottom:692.634675px;}
.y39{bottom:694.797750px;}
.y79{bottom:696.901650px;}
.yf1{bottom:713.019975px;}
.ya{bottom:717.046275px;}
.y9f{bottom:717.269850px;}
.y59{bottom:718.137900px;}
.y3{bottom:718.345200px;}
.y38{bottom:720.300975px;}
.y78{bottom:722.388750px;}
.yf0{bottom:738.523200px;}
.ycd{bottom:739.517925px;}
.y9{bottom:742.549500px;}
.y9e{bottom:742.756950px;}
.y58{bottom:743.631450px;}
.y37{bottom:745.804200px;}
.y77{bottom:747.891975px;}
.yef{bottom:764.026425px;}
.ycc{bottom:765.021150px;}
.y9d{bottom:768.260175px;}
.y57{bottom:769.134675px;}
.y36{bottom:771.304200px;}
.y76{bottom:773.395200px;}
.y31{bottom:787.244250px;}
.yee{bottom:789.529650px;}
.ycb{bottom:790.524375px;}
.y105{bottom:793.431900px;}
.y9c{bottom:793.763400px;}
.y56{bottom:794.637900px;}
.y75{bottom:798.898425px;}
.y35{bottom:805.992600px;}
.y104{bottom:811.431900px;}
.y30{bottom:812.741025px;}
.yed{bottom:815.005350px;}
.yca{bottom:816.027600px;}
.y9b{bottom:819.266625px;}
.y74{bottom:824.401650px;}
.y103{bottom:829.431900px;}
.y2f{bottom:838.244250px;}
.yec{bottom:840.508575px;}
.yc9{bottom:841.498575px;}
.y55{bottom:843.595575px;}
.y9a{bottom:844.769850px;}
.y102{bottom:847.431900px;}
.y2e{bottom:863.734425px;}
.yeb{bottom:866.011800px;}
.yc8{bottom:867.001800px;}
.y54{bottom:869.098800px;}
.y99{bottom:870.269850px;}
.y91{bottom:871.287075px;}
.y2d{bottom:889.237650px;}
.yea{bottom:891.515025px;}
.yc7{bottom:892.505025px;}
.y53{bottom:894.602025px;}
.y90{bottom:896.790300px;}
.yc6{bottom:918.008250px;}
.yb5{bottom:919.111125px;}
.y52{bottom:920.105250px;}
.y8f{bottom:922.293525px;}
.y10a{bottom:928.506900px;}
.y8{bottom:932.844000px;}
.yc5{bottom:943.511475px;}
.yb4{bottom:944.614350px;}
.y51{bottom:945.608475px;}
.ye9{bottom:945.640800px;}
.y109{bottom:946.506900px;}
.y8e{bottom:947.796750px;}
.y7{bottom:958.347225px;}
.y108{bottom:964.506900px;}
.yc4{bottom:969.014700px;}
.yb3{bottom:970.114350px;}
.y50{bottom:971.111700px;}
.ye8{bottom:971.144025px;}
.y8d{bottom:973.299975px;}
.y107{bottom:982.506900px;}
.y6{bottom:983.850450px;}
.yc3{bottom:994.517925px;}
.yb2{bottom:995.611125px;}
.y4f{bottom:996.614925px;}
.ye7{bottom:996.647250px;}
.y8c{bottom:998.803200px;}
.y106{bottom:1000.506900px;}
.yc2{bottom:1020.021150px;}
.yb1{bottom:1021.114350px;}
.y4e{bottom:1022.118150px;}
.ye6{bottom:1022.150475px;}
.y8b{bottom:1024.296750px;}
.y5{bottom:1027.412700px;}
.yc1{bottom:1045.524375px;}
.yb0{bottom:1046.614350px;}
.ye5{bottom:1047.653700px;}
.y8a{bottom:1049.799975px;}
.yc0{bottom:1071.027600px;}
.y71{bottom:1072.104525px;}
.yaf{bottom:1072.104675px;}
.ye4{bottom:1073.153700px;}
.y89{bottom:1075.303200px;}
.ybf{bottom:1096.527600px;}
.y70{bottom:1097.607750px;}
.yae{bottom:1097.607900px;}
.ye3{bottom:1098.653700px;}
.y88{bottom:1100.796750px;}
.y6f{bottom:1123.110975px;}
.yad{bottom:1123.111125px;}
.y87{bottom:1126.299975px;}
.ydc{bottom:1148.609850px;}
.y6e{bottom:1148.614200px;}
.yac{bottom:1148.614350px;}
.y86{bottom:1151.803200px;}
.y33{bottom:1156.841250px;}
.h18{height:35.947266px;}
.he{height:46.860000px;}
.h9{height:47.724000px;}
.h19{height:47.929688px;}
.h6{height:50.086523px;}
.h14{height:50.097923px;}
.hd{height:50.099423px;}
.h8{height:50.101523px;}
.h7{height:50.106623px;}
.ha{height:50.112323px;}
.hb{height:50.125223px;}
.hc{height:50.125823px;}
.h15{height:50.137523px;}
.h11{height:50.138123px;}
.h17{height:50.142323px;}
.h12{height:50.151023px;}
.h16{height:50.183723px;}
.h13{height:50.202623px;}
.hf{height:50.642182px;}
.h10{height:55.704000px;}
.h5{height:73.431164px;}
.h3{height:93.192386px;}
.h4{height:124.256585px;}
.h2{height:141.798109px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:34.015800px;}
.x12{left:45.471675px;}
.x11{left:47.639550px;}
.x10{left:53.297550px;}
.xd{left:59.401425px;}
.x8{left:63.245175px;}
.xe{left:76.898175px;}
.x18{left:78.661350px;}
.x13{left:79.686750px;}
.xa{left:81.433800px;}
.xc{left:84.754800px;}
.xf{left:97.685175px;}
.x9{left:99.883800px;}
.xb{left:104.711550px;}
.x7{left:115.720050px;}
.x1{left:123.528150px;}
.x3{left:127.559100px;}
.x19{left:162.361350px;}
.x16{left:169.812900px;}
.x1a{left:180.046350px;}
.x17{left:225.354300px;}
.x5{left:227.480250px;}
.x6{left:229.606200px;}
.x2{left:356.964150px;}
.x4{left:473.433300px;}
.x14{left:553.606350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-2.730933pt;}
.ls6{letter-spacing:-0.557333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.055733pt;}
.ls1{letter-spacing:0.111467pt;}
.ls3{letter-spacing:0.167200pt;}
.lsd{letter-spacing:0.222933pt;}
.ls4{letter-spacing:0.278667pt;}
.ls7{letter-spacing:0.334400pt;}
.lsb{letter-spacing:0.390133pt;}
.lsa{letter-spacing:0.501600pt;}
.lsc{letter-spacing:0.668800pt;}
.ls8{letter-spacing:0.836000pt;}
.ls9{letter-spacing:1.003200pt;}
.ws1c{word-spacing:-14.825067pt;}
.ws3{word-spacing:-14.666667pt;}
.ws5{word-spacing:-14.657867pt;}
.ws4{word-spacing:-14.490667pt;}
.ws1{word-spacing:-14.213333pt;}
.ws6{word-spacing:-11.759733pt;}
.wsa{word-spacing:-4.402933pt;}
.ws1b{word-spacing:-2.842400pt;}
.ws8{word-spacing:-2.117867pt;}
.ws10{word-spacing:-2.006400pt;}
.ws13{word-spacing:-1.839200pt;}
.ws23{word-spacing:-1.003200pt;}
.ws22{word-spacing:-0.836000pt;}
.ws26{word-spacing:-0.668800pt;}
.ws25{word-spacing:-0.501600pt;}
.wse{word-spacing:-0.390133pt;}
.ws21{word-spacing:-0.334400pt;}
.wsc{word-spacing:-0.278667pt;}
.ws2d{word-spacing:-0.222933pt;}
.wsb{word-spacing:-0.167200pt;}
.ws7{word-spacing:-0.111467pt;}
.ws2{word-spacing:-0.058667pt;}
.ws9{word-spacing:-0.055733pt;}
.ws0{word-spacing:0.000000pt;}
.ws20{word-spacing:0.055733pt;}
.ws24{word-spacing:0.222933pt;}
.ws2c{word-spacing:0.613067pt;}
.ws19{word-spacing:0.668800pt;}
.ws2e{word-spacing:0.836000pt;}
.ws1f{word-spacing:1.114667pt;}
.ws1e{word-spacing:1.170400pt;}
.ws11{word-spacing:1.393333pt;}
.ws14{word-spacing:2.062133pt;}
.ws12{word-spacing:2.285067pt;}
.ws28{word-spacing:3.232533pt;}
.wsd{word-spacing:3.288267pt;}
.ws27{word-spacing:3.344000pt;}
.ws2b{word-spacing:3.455467pt;}
.ws15{word-spacing:4.291467pt;}
.ws17{word-spacing:4.514400pt;}
.ws2a{word-spacing:4.570133pt;}
.ws16{word-spacing:4.737333pt;}
.ws1d{word-spacing:5.183200pt;}
.ws29{word-spacing:5.907733pt;}
.ws1a{word-spacing:6.910933pt;}
.wsf{word-spacing:7.133867pt;}
.ws18{word-spacing:7.301067pt;}
._11{margin-left:-14.621600pt;}
._0{margin-left:-5.973333pt;}
._d{margin-left:-5.022800pt;}
._9{margin-left:-4.059493pt;}
._3{margin-left:-3.093333pt;}
._1{margin-left:-1.508267pt;}
._2{width:1.478400pt;}
._4{width:2.374827pt;}
._7{width:3.321653pt;}
._8{width:4.637013pt;}
._a{width:6.080507pt;}
._5{width:7.295493pt;}
._6{width:8.318880pt;}
._f{width:9.365307pt;}
._b{width:10.271653pt;}
._12{width:11.520080pt;}
._13{width:12.618027pt;}
._10{width:448.624000pt;}
._e{width:450.560000pt;}
._14{width:451.674667pt;}
._c{width:462.352000pt;}
.fs8{font-size:40.000000pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs4{font-size:55.733333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:77.333333pt;}
.fs1{font-size:98.144677pt;}
.fs2{font-size:130.859643pt;}
.fs0{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:40.423867pt;}
.y34{bottom:42.077333pt;}
.y101{bottom:73.691733pt;}
.y100{bottom:85.691733pt;}
.yff{bottom:97.691733pt;}
.ye2{bottom:112.066533pt;}
.y72{bottom:112.955067pt;}
.ybe{bottom:116.334400pt;}
.y23{bottom:116.527133pt;}
.y4d{bottom:118.290467pt;}
.yfe{bottom:121.691733pt;}
.yfd{bottom:133.691733pt;}
.ye1{bottom:134.721867pt;}
.y22{bottom:135.195800pt;}
.y98{bottom:135.781200pt;}
.ybd{bottom:139.001067pt;}
.y4c{bottom:140.960000pt;}
.y6d{bottom:150.802867pt;}
.ye0{bottom:157.391400pt;}
.y97{bottom:158.447867pt;}
.y2c{bottom:161.232000pt;}
.ybc{bottom:161.667733pt;}
.y4b{bottom:163.626667pt;}
.y21{bottom:172.533133pt;}
.y6c{bottom:173.472400pt;}
.ydf{bottom:180.060933pt;}
.y96{bottom:181.114533pt;}
.y2b{bottom:183.898667pt;}
.ybb{bottom:184.320067pt;}
.y4a{bottom:186.290467pt;}
.y20{bottom:188.933133pt;}
.y6b{bottom:196.141933pt;}
.yde{bottom:202.730467pt;}
.y95{bottom:203.781200pt;}
.y1f{bottom:205.333133pt;}
.y2a{bottom:206.556733pt;}
.yba{bottom:206.989600pt;}
.y49{bottom:208.960000pt;}
.y6a{bottom:218.811467pt;}
.ydd{bottom:225.400000pt;}
.y94{bottom:226.445000pt;}
.y29{bottom:229.226267pt;}
.yb9{bottom:229.659133pt;}
.y1e{bottom:238.133133pt;}
.y69{bottom:241.481000pt;}
.y93{bottom:249.114533pt;}
.y28{bottom:251.895800pt;}
.yb8{bottom:252.328667pt;}
.y48{bottom:256.309067pt;}
.y1d{bottom:258.127467pt;}
.y68{bottom:264.150533pt;}
.ydb{bottom:271.735467pt;}
.y27{bottom:274.565333pt;}
.yb7{bottom:274.998200pt;}
.y1c{bottom:276.796133pt;}
.y47{bottom:278.975733pt;}
.y92{bottom:279.948667pt;}
.y67{bottom:286.817200pt;}
.yda{bottom:294.405000pt;}
.y4{bottom:295.151600pt;}
.y26{bottom:297.226267pt;}
.yb6{bottom:297.667733pt;}
.y46{bottom:301.642400pt;}
.y1b{bottom:309.596133pt;}
.yd9{bottom:317.074533pt;}
.y25{bottom:319.895800pt;}
.y45{bottom:324.309067pt;}
.y66{bottom:326.554800pt;}
.y1a{bottom:328.264800pt;}
.y85{bottom:334.105267pt;}
.yd8{bottom:339.738667pt;}
.y24{bottom:342.565333pt;}
.yab{bottom:344.660733pt;}
.y44{bottom:346.975733pt;}
.y65{bottom:349.215733pt;}
.y84{bottom:356.774800pt;}
.y19{bottom:361.064800pt;}
.yd7{bottom:362.408200pt;}
.yfc{bottom:362.512800pt;}
.yaa{bottom:367.330267pt;}
.y43{bottom:369.642400pt;}
.y64{bottom:371.885267pt;}
.y18{bottom:377.464800pt;}
.y83{bottom:379.444333pt;}
.y14{bottom:380.401600pt;}
.yfb{bottom:385.170867pt;}
.ya9{bottom:389.999800pt;}
.y42{bottom:392.309067pt;}
.y17{bottom:393.864800pt;}
.y63{bottom:394.554800pt;}
.y82{bottom:402.113867pt;}
.y13{bottom:403.071133pt;}
.yd6{bottom:406.841600pt;}
.yfa{bottom:407.840400pt;}
.ya8{bottom:412.669333pt;}
.y41{bottom:414.975733pt;}
.y62{bottom:417.218600pt;}
.y81{bottom:424.777667pt;}
.y12{bottom:425.740667pt;}
.y16{bottom:426.664800pt;}
.yd5{bottom:429.508267pt;}
.yf9{bottom:430.509933pt;}
.ya7{bottom:435.338867pt;}
.y40{bottom:437.642400pt;}
.y61{bottom:439.888133pt;}
.y15{bottom:443.064800pt;}
.y80{bottom:447.447200pt;}
.y11{bottom:448.410200pt;}
.yd4{bottom:452.174933pt;}
.yf8{bottom:453.179467pt;}
.ya6{bottom:458.008400pt;}
.y3f{bottom:460.306200pt;}
.y32{bottom:465.948533pt;}
.y10{bottom:471.079733pt;}
.yd3{bottom:474.841600pt;}
.yf7{bottom:475.837533pt;}
.y60{bottom:479.666667pt;}
.ya5{bottom:480.677933pt;}
.y3e{bottom:482.975733pt;}
.y7f{bottom:483.459533pt;}
.yf{bottom:493.743067pt;}
.yd2{bottom:497.508267pt;}
.yf6{bottom:498.507067pt;}
.y5f{bottom:502.336200pt;}
.ya4{bottom:503.347467pt;}
.y7e{bottom:506.129067pt;}
.yd1{bottom:520.174933pt;}
.yf5{bottom:521.176600pt;}
.y2{bottom:521.277733pt;}
.y5e{bottom:525.005733pt;}
.ya3{bottom:526.014133pt;}
.y3d{bottom:526.937067pt;}
.y7d{bottom:528.798600pt;}
.ye{bottom:531.558133pt;}
.yd0{bottom:542.841600pt;}
.yf4{bottom:543.846133pt;}
.y5d{bottom:547.675267pt;}
.y3c{bottom:549.603733pt;}
.y7c{bottom:551.468133pt;}
.yd{bottom:554.227667pt;}
.ycf{bottom:565.508267pt;}
.yf3{bottom:566.512800pt;}
.y1{bottom:569.288400pt;}
.ya2{bottom:569.564600pt;}
.y5c{bottom:570.344800pt;}
.y3b{bottom:572.270400pt;}
.y7b{bottom:574.134800pt;}
.yc{bottom:576.897200pt;}
.yf2{bottom:589.167067pt;}
.ya1{bottom:592.234133pt;}
.y5b{bottom:593.005733pt;}
.y3a{bottom:594.937067pt;}
.yce{bottom:596.342267pt;}
.y7a{bottom:596.798600pt;}
.yb{bottom:614.712267pt;}
.ya0{bottom:614.903667pt;}
.y5a{bottom:615.675267pt;}
.y39{bottom:617.598000pt;}
.y79{bottom:619.468133pt;}
.yf1{bottom:633.795533pt;}
.ya{bottom:637.374467pt;}
.y9f{bottom:637.573200pt;}
.y59{bottom:638.344800pt;}
.y3{bottom:638.529067pt;}
.y38{bottom:640.267533pt;}
.y78{bottom:642.123333pt;}
.yf0{bottom:656.465067pt;}
.ycd{bottom:657.349267pt;}
.y9{bottom:660.044000pt;}
.y9e{bottom:660.228400pt;}
.y58{bottom:661.005733pt;}
.y37{bottom:662.937067pt;}
.y77{bottom:664.792867pt;}
.yef{bottom:679.134600pt;}
.ycc{bottom:680.018800pt;}
.y9d{bottom:682.897933pt;}
.y57{bottom:683.675267pt;}
.y36{bottom:685.603733pt;}
.y76{bottom:687.462400pt;}
.y31{bottom:699.772667pt;}
.yee{bottom:701.804133pt;}
.ycb{bottom:702.688333pt;}
.y105{bottom:705.272800pt;}
.y9c{bottom:705.567467pt;}
.y56{bottom:706.344800pt;}
.y75{bottom:710.131933pt;}
.y35{bottom:716.437867pt;}
.y104{bottom:721.272800pt;}
.y30{bottom:722.436467pt;}
.yed{bottom:724.449200pt;}
.yca{bottom:725.357867pt;}
.y9b{bottom:728.237000pt;}
.y74{bottom:732.801467pt;}
.y103{bottom:737.272800pt;}
.y2f{bottom:745.106000pt;}
.yec{bottom:747.118733pt;}
.yc9{bottom:747.998733pt;}
.y55{bottom:749.862733pt;}
.y9a{bottom:750.906533pt;}
.y102{bottom:753.272800pt;}
.y2e{bottom:767.763933pt;}
.yeb{bottom:769.788267pt;}
.yc8{bottom:770.668267pt;}
.y54{bottom:772.532267pt;}
.y99{bottom:773.573200pt;}
.y91{bottom:774.477400pt;}
.y2d{bottom:790.433467pt;}
.yea{bottom:792.457800pt;}
.yc7{bottom:793.337800pt;}
.y53{bottom:795.201800pt;}
.y90{bottom:797.146933pt;}
.yc6{bottom:816.007333pt;}
.yb5{bottom:816.987667pt;}
.y52{bottom:817.871333pt;}
.y8f{bottom:819.816467pt;}
.y10a{bottom:825.339467pt;}
.y8{bottom:829.194667pt;}
.yc5{bottom:838.676867pt;}
.yb4{bottom:839.657200pt;}
.y51{bottom:840.540867pt;}
.ye9{bottom:840.569600pt;}
.y109{bottom:841.339467pt;}
.y8e{bottom:842.486000pt;}
.y7{bottom:851.864200pt;}
.y108{bottom:857.339467pt;}
.yc4{bottom:861.346400pt;}
.yb3{bottom:862.323867pt;}
.y50{bottom:863.210400pt;}
.ye8{bottom:863.239133pt;}
.y8d{bottom:865.155533pt;}
.y107{bottom:873.339467pt;}
.y6{bottom:874.533733pt;}
.yc3{bottom:884.015933pt;}
.yb2{bottom:884.987667pt;}
.y4f{bottom:885.879933pt;}
.ye7{bottom:885.908667pt;}
.y8c{bottom:887.825067pt;}
.y106{bottom:889.339467pt;}
.yc2{bottom:906.685467pt;}
.yb1{bottom:907.657200pt;}
.y4e{bottom:908.549467pt;}
.ye6{bottom:908.578200pt;}
.y8b{bottom:910.486000pt;}
.y5{bottom:913.255733pt;}
.yc1{bottom:929.355000pt;}
.yb0{bottom:930.323867pt;}
.ye5{bottom:931.247733pt;}
.y8a{bottom:933.155533pt;}
.yc0{bottom:952.024533pt;}
.y71{bottom:952.981800pt;}
.yaf{bottom:952.981933pt;}
.ye4{bottom:953.914400pt;}
.y89{bottom:955.825067pt;}
.ybf{bottom:974.691200pt;}
.y70{bottom:975.651333pt;}
.yae{bottom:975.651467pt;}
.ye3{bottom:976.581067pt;}
.y88{bottom:978.486000pt;}
.y6f{bottom:998.320867pt;}
.yad{bottom:998.321000pt;}
.y87{bottom:1001.155533pt;}
.ydc{bottom:1020.986533pt;}
.y6e{bottom:1020.990400pt;}
.yac{bottom:1020.990533pt;}
.y86{bottom:1023.825067pt;}
.y33{bottom:1028.303333pt;}
.h18{height:31.953125pt;}
.he{height:41.653333pt;}
.h9{height:42.421333pt;}
.h19{height:42.604167pt;}
.h6{height:44.521354pt;}
.h14{height:44.531488pt;}
.hd{height:44.532821pt;}
.h8{height:44.534688pt;}
.h7{height:44.539221pt;}
.ha{height:44.544288pt;}
.hb{height:44.555754pt;}
.hc{height:44.556287pt;}
.h15{height:44.566688pt;}
.h11{height:44.567221pt;}
.h17{height:44.570954pt;}
.h12{height:44.578687pt;}
.h16{height:44.607754pt;}
.h13{height:44.624554pt;}
.hf{height:45.015273pt;}
.h10{height:49.514667pt;}
.h5{height:65.272145pt;}
.h3{height:82.837676pt;}
.h4{height:110.450297pt;}
.h2{height:126.042764pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:30.236267pt;}
.x12{left:40.419267pt;}
.x11{left:42.346267pt;}
.x10{left:47.375600pt;}
.xd{left:52.801267pt;}
.x8{left:56.217933pt;}
.xe{left:68.353933pt;}
.x18{left:69.921200pt;}
.x13{left:70.832667pt;}
.xa{left:72.385600pt;}
.xc{left:75.337600pt;}
.xf{left:86.831267pt;}
.x9{left:88.785600pt;}
.xb{left:93.076933pt;}
.x7{left:102.862267pt;}
.x1{left:109.802800pt;}
.x3{left:113.385867pt;}
.x19{left:144.321200pt;}
.x16{left:150.944800pt;}
.x1a{left:160.041200pt;}
.x17{left:200.314933pt;}
.x5{left:202.204667pt;}
.x6{left:204.094400pt;}
.x2{left:317.301467pt;}
.x4{left:420.829600pt;}
.x14{left:492.094533pt;}
}




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