
    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_9a3f05325bd730e42e31fcf1.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_16431e65c11bd5ae8e4dc23b.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_9fb4c46da2be62e42df82fc0.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_037ae97bc58795511f92a149.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.061063;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_2a44a15f7847c598b71cfb38.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_a38aacae7f379398b95cc565.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_4951a1e10974a88b380f08ac.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8fa79c0edc2a84ac560b92f5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f2674764e23015502e0e399b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2b1587088fbd5f568d088eaf.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_46f4dbfd9d1c26010a8757a2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bcfdcd964a66bebbe4565435.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e85cc79e42b02ea02b8cd082.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1146eb63d6b426f5a831ac9b.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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:18.506700px;}
.ls5{letter-spacing:-0.555000px;}
.ls7{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.363162px;}
.ls2{letter-spacing:0.585000px;}
.ls4{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;}
.ws67{word-spacing:-25.596000px;}
.ws44{word-spacing:-11.115000px;}
.ws73{word-spacing:-7.991981px;}
.ws82{word-spacing:-5.827500px;}
.ws2c{word-spacing:-3.663000px;}
.ws8b{word-spacing:-3.385500px;}
.ws3d{word-spacing:-3.195000px;}
.ws29{word-spacing:-2.941500px;}
.ws23{word-spacing:-2.886000px;}
.ws1a{word-spacing:-2.664000px;}
.wsa9{word-spacing:-2.430000px;}
.ws4a{word-spacing:-2.331000px;}
.ws65{word-spacing:-2.160000px;}
.ws5{word-spacing:-1.944000px;}
.ws22{word-spacing:-1.942500px;}
.ws2a{word-spacing:-1.887000px;}
.ws9e{word-spacing:-1.831500px;}
.ws51{word-spacing:-1.720500px;}
.ws7{word-spacing:-1.443000px;}
.ws4{word-spacing:-1.440000px;}
.ws27{word-spacing:-1.387500px;}
.ws6{word-spacing:-1.332000px;}
.ws19{word-spacing:-1.276500px;}
.ws28{word-spacing:-1.221000px;}
.ws66{word-spacing:-1.080000px;}
.ws63{word-spacing:-1.035000px;}
.ws2{word-spacing:-1.016854px;}
.ws53{word-spacing:-0.999000px;}
.ws64{word-spacing:-0.990000px;}
.ws98{word-spacing:-0.888000px;}
.ws3e{word-spacing:-0.855000px;}
.ws16{word-spacing:-0.777000px;}
.wsb{word-spacing:-0.721500px;}
.wsa2{word-spacing:-0.720000px;}
.ws15{word-spacing:-0.555000px;}
.ws59{word-spacing:-0.495000px;}
.ws75{word-spacing:-0.444000px;}
.ws55{word-spacing:-0.360000px;}
.ws3{word-spacing:-0.181581px;}
.ws6a{word-spacing:-0.111000px;}
.ws1{word-spacing:0.000000px;}
.ws18{word-spacing:0.166500px;}
.ws5e{word-spacing:0.360000px;}
.ws20{word-spacing:0.444000px;}
.ws11{word-spacing:0.777000px;}
.ws8{word-spacing:0.888000px;}
.ws9{word-spacing:1.110000px;}
.wsf{word-spacing:1.276500px;}
.ws7e{word-spacing:1.332000px;}
.ws4b{word-spacing:1.443000px;}
.ws7b{word-spacing:1.554000px;}
.ws62{word-spacing:1.665000px;}
.wsab{word-spacing:1.755000px;}
.ws86{word-spacing:1.776000px;}
.ws9f{word-spacing:1.887000px;}
.ws7d{word-spacing:1.942500px;}
.ws91{word-spacing:2.205000px;}
.ws1f{word-spacing:2.275500px;}
.wsa3{word-spacing:2.430000px;}
.ws99{word-spacing:2.442000px;}
.ws61{word-spacing:2.655000px;}
.ws70{word-spacing:2.664000px;}
.ws24{word-spacing:2.719500px;}
.ws5a{word-spacing:2.745000px;}
.ws4f{word-spacing:2.775000px;}
.ws81{word-spacing:2.830500px;}
.ws7a{word-spacing:2.886000px;}
.ws6c{word-spacing:3.219000px;}
.ws1c{word-spacing:3.385500px;}
.ws7c{word-spacing:3.496500px;}
.ws90{word-spacing:3.600000px;}
.ws87{word-spacing:3.607500px;}
.ws3a{word-spacing:3.735000px;}
.ws9d{word-spacing:3.774000px;}
.wsa1{word-spacing:3.780000px;}
.ws58{word-spacing:3.870000px;}
.ws26{word-spacing:4.107000px;}
.wsa6{word-spacing:4.230000px;}
.ws94{word-spacing:4.384500px;}
.ws3c{word-spacing:4.500000px;}
.ws2b{word-spacing:4.551000px;}
.ws6f{word-spacing:4.717500px;}
.ws60{word-spacing:4.725000px;}
.ws5c{word-spacing:4.770000px;}
.ws21{word-spacing:4.773000px;}
.ws17{word-spacing:4.828500px;}
.ws5f{word-spacing:4.905000px;}
.ws95{word-spacing:5.050500px;}
.ws13{word-spacing:5.106000px;}
.ws41{word-spacing:5.130000px;}
.wsa4{word-spacing:5.175000px;}
.ws9b{word-spacing:5.272500px;}
.ws79{word-spacing:5.328000px;}
.wsa5{word-spacing:5.355000px;}
.wsa8{word-spacing:5.400000px;}
.ws4c{word-spacing:5.439000px;}
.wsa7{word-spacing:5.625000px;}
.wsac{word-spacing:5.715000px;}
.ws47{word-spacing:5.716500px;}
.ws97{word-spacing:5.772000px;}
.ws37{word-spacing:5.805000px;}
.ws5d{word-spacing:5.850000px;}
.ws7f{word-spacing:5.883000px;}
.ws3f{word-spacing:5.940000px;}
.ws85{word-spacing:5.994000px;}
.ws40{word-spacing:6.075000px;}
.ws5b{word-spacing:6.120000px;}
.ws43{word-spacing:6.210000px;}
.wsa{word-spacing:6.216000px;}
.ws72{word-spacing:6.271500px;}
.wsd{word-spacing:6.438000px;}
.ws25{word-spacing:6.660000px;}
.ws1e{word-spacing:6.715500px;}
.ws56{word-spacing:6.795000px;}
.ws71{word-spacing:6.826500px;}
.ws52{word-spacing:7.159500px;}
.ws77{word-spacing:7.270500px;}
.ws80{word-spacing:7.492500px;}
.ws6b{word-spacing:7.603500px;}
.wse{word-spacing:7.881000px;}
.ws32{word-spacing:7.920000px;}
.ws92{word-spacing:8.010000px;}
.ws12{word-spacing:8.158500px;}
.ws10{word-spacing:8.269500px;}
.ws89{word-spacing:8.325000px;}
.ws6d{word-spacing:8.436000px;}
.ws4d{word-spacing:8.547000px;}
.wsaf{word-spacing:8.910000px;}
.ws57{word-spacing:9.090000px;}
.ws46{word-spacing:9.102000px;}
.ws54{word-spacing:9.268500px;}
.ws14{word-spacing:9.546000px;}
.ws76{word-spacing:9.601500px;}
.ws36{word-spacing:9.720000px;}
.ws1d{word-spacing:9.823500px;}
.ws6e{word-spacing:9.879000px;}
.ws42{word-spacing:9.990000px;}
.ws49{word-spacing:10.101000px;}
.ws74{word-spacing:10.323000px;}
.wsb3{word-spacing:10.575000px;}
.ws1b{word-spacing:10.711500px;}
.ws2f{word-spacing:10.980000px;}
.wsa0{word-spacing:11.155500px;}
.wsb0{word-spacing:11.295000px;}
.ws9c{word-spacing:11.655000px;}
.ws88{word-spacing:11.988000px;}
.wsb4{word-spacing:12.330000px;}
.ws2e{word-spacing:12.420000px;}
.ws69{word-spacing:12.487500px;}
.wsb5{word-spacing:12.600000px;}
.ws78{word-spacing:12.765000px;}
.ws48{word-spacing:13.153500px;}
.ws34{word-spacing:13.230000px;}
.ws96{word-spacing:13.264500px;}
.wsae{word-spacing:13.320000px;}
.wsad{word-spacing:13.770000px;}
.ws45{word-spacing:14.157000px;}
.ws83{word-spacing:14.596500px;}
.ws50{word-spacing:14.707500px;}
.ws8d{word-spacing:14.850000px;}
.wsb2{word-spacing:15.615000px;}
.ws68{word-spacing:15.706500px;}
.wsb1{word-spacing:15.975000px;}
.ws9a{word-spacing:16.650000px;}
.ws4e{word-spacing:17.094000px;}
.wsc{word-spacing:17.316000px;}
.ws93{word-spacing:17.640000px;}
.ws30{word-spacing:18.585000px;}
.ws8a{word-spacing:19.036500px;}
.ws8f{word-spacing:20.070000px;}
.ws84{word-spacing:20.535000px;}
.ws8c{word-spacing:21.645000px;}
.ws33{word-spacing:22.230000px;}
.ws31{word-spacing:23.715000px;}
.ws39{word-spacing:27.765000px;}
.ws2d{word-spacing:29.970000px;}
.ws8e{word-spacing:36.630000px;}
.wsaa{word-spacing:40.095000px;}
.ws3b{word-spacing:41.580000px;}
.ws35{word-spacing:42.165000px;}
.ws38{word-spacing:56.925000px;}
._1{margin-left:-284.584560px;}
._0{margin-left:-5.376000px;}
._5{margin-left:-4.075424px;}
._2{margin-left:-2.941612px;}
._3{margin-left:-1.363576px;}
._4{width:1.944000px;}
.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);}
.fsa{font-size:32.356200px;}
.fs3{font-size:36.316200px;}
.fs8{font-size:45.000000px;}
.fs9{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;}
.y53{bottom:91.563750px;}
.ye1{bottom:99.549300px;}
.y2{bottom:101.545950px;}
.y52{bottom:108.810000px;}
.ye0{bottom:116.795550px;}
.y51{bottom:126.056250px;}
.ydf{bottom:134.041800px;}
.ybd{bottom:139.537200px;}
.y50{bottom:143.302500px;}
.yde{bottom:151.288050px;}
.ybc{bottom:156.783450px;}
.y4f{bottom:160.548750px;}
.y1e{bottom:164.424525px;}
.ydd{bottom:168.534300px;}
.y8b{bottom:173.132175px;}
.ybb{bottom:174.029700px;}
.y4e{bottom:177.795000px;}
.y1d{bottom:183.030900px;}
.ydc{bottom:185.780550px;}
.yba{bottom:191.275950px;}
.y8a{bottom:191.738550px;}
.y4d{bottom:195.041250px;}
.y1c{bottom:201.637275px;}
.ydb{bottom:203.030550px;}
.yb9{bottom:208.522200px;}
.y89{bottom:210.344925px;}
.y4c{bottom:212.287500px;}
.y1b{bottom:220.243650px;}
.yb8{bottom:225.768450px;}
.y88{bottom:228.951300px;}
.y4b{bottom:229.533750px;}
.y1a{bottom:238.850025px;}
.yb7{bottom:243.014700px;}
.y4a{bottom:246.780000px;}
.y87{bottom:247.557675px;}
.y19{bottom:257.456400px;}
.yb6{bottom:260.260950px;}
.y49{bottom:264.026250px;}
.y86{bottom:266.164050px;}
.y18{bottom:276.062775px;}
.yb5{bottom:277.507200px;}
.y48{bottom:281.272500px;}
.y85{bottom:284.770425px;}
.yda{bottom:289.280550px;}
.y17{bottom:294.669150px;}
.yb4{bottom:294.753450px;}
.y47{bottom:298.518750px;}
.y84{bottom:303.376800px;}
.yd9{bottom:306.530550px;}
.yb3{bottom:311.999700px;}
.y16{bottom:313.275525px;}
.y46{bottom:315.768750px;}
.yd8{bottom:323.791800px;}
.yb2{bottom:329.245950px;}
.y15{bottom:331.881900px;}
.y83{bottom:340.574850px;}
.yd7{bottom:341.038050px;}
.y14{bottom:350.488275px;}
.y45{bottom:352.367700px;}
.yd6{bottom:358.284300px;}
.y13{bottom:369.094650px;}
.y44{bottom:369.613950px;}
.yb1{bottom:375.343425px;}
.yd5{bottom:375.530550px;}
.y75{bottom:383.814300px;}
.y43{bottom:386.860200px;}
.y12{bottom:387.701025px;}
.yb0{bottom:393.949800px;}
.y82{bottom:396.368475px;}
.y74{bottom:401.060550px;}
.y42{bottom:404.106450px;}
.y11{bottom:406.307400px;}
.yaf{bottom:412.556175px;}
.y81{bottom:414.974850px;}
.y73{bottom:418.306800px;}
.y41{bottom:421.352700px;}
.yae{bottom:431.162550px;}
.y80{bottom:433.574850px;}
.y72{bottom:435.553050px;}
.y40{bottom:438.598950px;}
.y10{bottom:443.505600px;}
.yd4{bottom:444.402375px;}
.yad{bottom:449.768925px;}
.y7f{bottom:452.163900px;}
.y71{bottom:452.799300px;}
.y3f{bottom:455.845200px;}
.yd3{bottom:463.008750px;}
.yac{bottom:468.375300px;}
.y70{bottom:470.045550px;}
.y7e{bottom:470.770275px;}
.y3e{bottom:473.091450px;}
.yd2{bottom:481.615125px;}
.yab{bottom:486.981675px;}
.y6f{bottom:487.295550px;}
.y3d{bottom:490.337700px;}
.yf{bottom:499.278000px;}
.yd1{bottom:500.221500px;}
.yaa{bottom:505.581675px;}
.y3c{bottom:507.583950px;}
.ye{bottom:517.884375px;}
.yd0{bottom:518.827875px;}
.ya9{bottom:524.188050px;}
.y3b{bottom:524.830200px;}
.yd{bottom:536.490750px;}
.ycf{bottom:537.434250px;}
.y7d{bottom:553.118400px;}
.yc{bottom:555.097125px;}
.yce{bottom:556.040625px;}
.y3a{bottom:558.856650px;}
.ya8{bottom:561.386100px;}
.ycd{bottom:574.647000px;}
.y7c{bottom:575.623650px;}
.y39{bottom:577.463025px;}
.y6e{bottom:590.795550px;}
.ycc{bottom:593.253375px;}
.y38{bottom:596.069400px;}
.y7b{bottom:598.128900px;}
.y6d{bottom:608.045550px;}
.ycb{bottom:611.859750px;}
.y37{bottom:614.675775px;}
.ya7{bottom:617.141475px;}
.yb{bottom:618.991500px;}
.y6c{bottom:625.306800px;}
.yca{bottom:630.466125px;}
.y36{bottom:633.282150px;}
.ya6{bottom:635.747850px;}
.y7a{bottom:639.780750px;}
.ya{bottom:641.496750px;}
.y6b{bottom:642.553050px;}
.yc9{bottom:649.072500px;}
.y35{bottom:651.888525px;}
.ya5{bottom:654.354225px;}
.y6a{bottom:659.799300px;}
.y9{bottom:664.002000px;}
.yc8{bottom:667.678875px;}
.y34{bottom:670.494900px;}
.y79{bottom:672.774750px;}
.ya4{bottom:672.960600px;}
.y69{bottom:677.045550px;}
.yc7{bottom:686.285250px;}
.y33{bottom:689.101275px;}
.ya3{bottom:691.566975px;}
.y8{bottom:705.641850px;}
.y78{bottom:705.768750px;}
.y32{bottom:707.707650px;}
.ya2{bottom:710.173350px;}
.yc6{bottom:723.484125px;}
.ya1{bottom:728.779725px;}
.y7{bottom:738.635850px;}
.y77{bottom:738.762750px;}
.yc5{bottom:742.090500px;}
.y31{bottom:744.905850px;}
.ya0{bottom:747.386100px;}
.yc4{bottom:760.696875px;}
.y68{bottom:763.188300px;}
.y6{bottom:778.747950px;}
.y76{bottom:778.875000px;}
.yc3{bottom:779.303250px;}
.y67{bottom:781.794675px;}
.y9f{bottom:784.584300px;}
.yc2{bottom:797.909625px;}
.y66{bottom:800.401050px;}
.y30{bottom:800.674125px;}
.yc1{bottom:816.516000px;}
.y65{bottom:819.007425px;}
.y2f{bottom:819.280500px;}
.yc0{bottom:835.122375px;}
.y64{bottom:837.613800px;}
.y2e{bottom:837.886875px;}
.y9e{bottom:840.269550px;}
.ybf{bottom:853.728750px;}
.y63{bottom:856.220175px;}
.y2d{bottom:856.493250px;}
.y9d{bottom:858.875925px;}
.y62{bottom:874.826550px;}
.y2c{bottom:875.099625px;}
.y9c{bottom:877.482300px;}
.y1{bottom:886.475400px;}
.ybe{bottom:890.926800px;}
.y61{bottom:893.432925px;}
.y2b{bottom:893.706000px;}
.y9b{bottom:896.088675px;}
.y60{bottom:912.039300px;}
.y9a{bottom:914.695050px;}
.y5f{bottom:930.645675px;}
.y2a{bottom:930.904050px;}
.y99{bottom:933.301425px;}
.y5e{bottom:949.252050px;}
.yef{bottom:950.825550px;}
.y98{bottom:951.907800px;}
.y5d{bottom:967.858425px;}
.yee{bottom:968.071800px;}
.y97{bottom:970.514175px;}
.yed{bottom:985.318050px;}
.y29{bottom:986.640300px;}
.y96{bottom:989.120550px;}
.yec{bottom:1002.564300px;}
.y5c{bottom:1005.057300px;}
.y28{bottom:1005.246675px;}
.y95{bottom:1007.726925px;}
.yeb{bottom:1019.810550px;}
.y5b{bottom:1023.663675px;}
.y27{bottom:1023.853050px;}
.y94{bottom:1026.333300px;}
.yea{bottom:1037.056800px;}
.y5a{bottom:1042.270050px;}
.y26{bottom:1042.459425px;}
.y93{bottom:1044.939675px;}
.ye9{bottom:1054.303050px;}
.y5{bottom:1055.942572px;}
.y59{bottom:1060.876425px;}
.y25{bottom:1061.065800px;}
.y92{bottom:1063.546050px;}
.y4{bottom:1068.671400px;}
.ye8{bottom:1071.549300px;}
.y58{bottom:1079.482800px;}
.y24{bottom:1079.672175px;}
.y91{bottom:1082.152425px;}
.y3{bottom:1083.631500px;}
.ye7{bottom:1088.795550px;}
.y57{bottom:1098.089175px;}
.y23{bottom:1098.278550px;}
.y90{bottom:1100.758800px;}
.ye6{bottom:1106.041800px;}
.y56{bottom:1116.695550px;}
.y22{bottom:1116.884925px;}
.y8f{bottom:1119.365175px;}
.ye5{bottom:1123.288050px;}
.y21{bottom:1135.491300px;}
.y8e{bottom:1137.971550px;}
.ye4{bottom:1140.534300px;}
.y55{bottom:1153.892550px;}
.y20{bottom:1154.097675px;}
.y8d{bottom:1156.577925px;}
.ye3{bottom:1157.780550px;}
.y54{bottom:1172.495550px;}
.y1f{bottom:1172.704050px;}
.ye2{bottom:1175.026800px;}
.y8c{bottom:1175.184300px;}
.h5{height:29.454708px;}
.h12{height:33.661082px;}
.hc{height:36.497813px;}
.hd{height:36.500625px;}
.hf{height:36.502500px;}
.he{height:40.147594px;}
.h9{height:41.625000px;}
.h19{height:41.710000px;}
.h15{height:43.102448px;}
.ha{height:45.013969px;}
.h8{height:45.017437px;}
.h18{height:45.042937px;}
.h1a{height:45.881000px;}
.h17{height:46.050643px;}
.h10{height:46.759114px;}
.hb{height:47.455200px;}
.h3{height:48.185280px;}
.h16{height:51.442333px;}
.h7{height:81.000000px;}
.h14{height:83.741143px;}
.h6{height:108.000000px;}
.h13{height:111.833379px;}
.h4{height:124.020000px;}
.h11{height:128.421997px;}
.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;}
.x6{left:301.886400px;}
.x3{left:331.360950px;}
.x4{left:335.451900px;}
.x8{left:544.606350px;}
.x7{left:565.511850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.450400pt;}
.ls5{letter-spacing:-0.493333pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.322811pt;}
.ls2{letter-spacing:0.520000pt;}
.ls4{letter-spacing:1.280000pt;}
.ls0{letter-spacing:1.469867pt;}
.ls6{letter-spacing:2.640000pt;}
.ws0{word-spacing:-34.541867pt;}
.ws67{word-spacing:-22.752000pt;}
.ws44{word-spacing:-9.880000pt;}
.ws73{word-spacing:-7.103983pt;}
.ws82{word-spacing:-5.180000pt;}
.ws2c{word-spacing:-3.256000pt;}
.ws8b{word-spacing:-3.009333pt;}
.ws3d{word-spacing:-2.840000pt;}
.ws29{word-spacing:-2.614667pt;}
.ws23{word-spacing:-2.565333pt;}
.ws1a{word-spacing:-2.368000pt;}
.wsa9{word-spacing:-2.160000pt;}
.ws4a{word-spacing:-2.072000pt;}
.ws65{word-spacing:-1.920000pt;}
.ws5{word-spacing:-1.728000pt;}
.ws22{word-spacing:-1.726667pt;}
.ws2a{word-spacing:-1.677333pt;}
.ws9e{word-spacing:-1.628000pt;}
.ws51{word-spacing:-1.529333pt;}
.ws7{word-spacing:-1.282667pt;}
.ws4{word-spacing:-1.280000pt;}
.ws27{word-spacing:-1.233333pt;}
.ws6{word-spacing:-1.184000pt;}
.ws19{word-spacing:-1.134667pt;}
.ws28{word-spacing:-1.085333pt;}
.ws66{word-spacing:-0.960000pt;}
.ws63{word-spacing:-0.920000pt;}
.ws2{word-spacing:-0.903870pt;}
.ws53{word-spacing:-0.888000pt;}
.ws64{word-spacing:-0.880000pt;}
.ws98{word-spacing:-0.789333pt;}
.ws3e{word-spacing:-0.760000pt;}
.ws16{word-spacing:-0.690667pt;}
.wsb{word-spacing:-0.641333pt;}
.wsa2{word-spacing:-0.640000pt;}
.ws15{word-spacing:-0.493333pt;}
.ws59{word-spacing:-0.440000pt;}
.ws75{word-spacing:-0.394667pt;}
.ws55{word-spacing:-0.320000pt;}
.ws3{word-spacing:-0.161405pt;}
.ws6a{word-spacing:-0.098667pt;}
.ws1{word-spacing:0.000000pt;}
.ws18{word-spacing:0.148000pt;}
.ws5e{word-spacing:0.320000pt;}
.ws20{word-spacing:0.394667pt;}
.ws11{word-spacing:0.690667pt;}
.ws8{word-spacing:0.789333pt;}
.ws9{word-spacing:0.986667pt;}
.wsf{word-spacing:1.134667pt;}
.ws7e{word-spacing:1.184000pt;}
.ws4b{word-spacing:1.282667pt;}
.ws7b{word-spacing:1.381333pt;}
.ws62{word-spacing:1.480000pt;}
.wsab{word-spacing:1.560000pt;}
.ws86{word-spacing:1.578667pt;}
.ws9f{word-spacing:1.677333pt;}
.ws7d{word-spacing:1.726667pt;}
.ws91{word-spacing:1.960000pt;}
.ws1f{word-spacing:2.022667pt;}
.wsa3{word-spacing:2.160000pt;}
.ws99{word-spacing:2.170667pt;}
.ws61{word-spacing:2.360000pt;}
.ws70{word-spacing:2.368000pt;}
.ws24{word-spacing:2.417333pt;}
.ws5a{word-spacing:2.440000pt;}
.ws4f{word-spacing:2.466667pt;}
.ws81{word-spacing:2.516000pt;}
.ws7a{word-spacing:2.565333pt;}
.ws6c{word-spacing:2.861333pt;}
.ws1c{word-spacing:3.009333pt;}
.ws7c{word-spacing:3.108000pt;}
.ws90{word-spacing:3.200000pt;}
.ws87{word-spacing:3.206667pt;}
.ws3a{word-spacing:3.320000pt;}
.ws9d{word-spacing:3.354667pt;}
.wsa1{word-spacing:3.360000pt;}
.ws58{word-spacing:3.440000pt;}
.ws26{word-spacing:3.650667pt;}
.wsa6{word-spacing:3.760000pt;}
.ws94{word-spacing:3.897333pt;}
.ws3c{word-spacing:4.000000pt;}
.ws2b{word-spacing:4.045333pt;}
.ws6f{word-spacing:4.193333pt;}
.ws60{word-spacing:4.200000pt;}
.ws5c{word-spacing:4.240000pt;}
.ws21{word-spacing:4.242667pt;}
.ws17{word-spacing:4.292000pt;}
.ws5f{word-spacing:4.360000pt;}
.ws95{word-spacing:4.489333pt;}
.ws13{word-spacing:4.538667pt;}
.ws41{word-spacing:4.560000pt;}
.wsa4{word-spacing:4.600000pt;}
.ws9b{word-spacing:4.686667pt;}
.ws79{word-spacing:4.736000pt;}
.wsa5{word-spacing:4.760000pt;}
.wsa8{word-spacing:4.800000pt;}
.ws4c{word-spacing:4.834667pt;}
.wsa7{word-spacing:5.000000pt;}
.wsac{word-spacing:5.080000pt;}
.ws47{word-spacing:5.081333pt;}
.ws97{word-spacing:5.130667pt;}
.ws37{word-spacing:5.160000pt;}
.ws5d{word-spacing:5.200000pt;}
.ws7f{word-spacing:5.229333pt;}
.ws3f{word-spacing:5.280000pt;}
.ws85{word-spacing:5.328000pt;}
.ws40{word-spacing:5.400000pt;}
.ws5b{word-spacing:5.440000pt;}
.ws43{word-spacing:5.520000pt;}
.wsa{word-spacing:5.525333pt;}
.ws72{word-spacing:5.574667pt;}
.wsd{word-spacing:5.722667pt;}
.ws25{word-spacing:5.920000pt;}
.ws1e{word-spacing:5.969333pt;}
.ws56{word-spacing:6.040000pt;}
.ws71{word-spacing:6.068000pt;}
.ws52{word-spacing:6.364000pt;}
.ws77{word-spacing:6.462667pt;}
.ws80{word-spacing:6.660000pt;}
.ws6b{word-spacing:6.758667pt;}
.wse{word-spacing:7.005333pt;}
.ws32{word-spacing:7.040000pt;}
.ws92{word-spacing:7.120000pt;}
.ws12{word-spacing:7.252000pt;}
.ws10{word-spacing:7.350667pt;}
.ws89{word-spacing:7.400000pt;}
.ws6d{word-spacing:7.498667pt;}
.ws4d{word-spacing:7.597333pt;}
.wsaf{word-spacing:7.920000pt;}
.ws57{word-spacing:8.080000pt;}
.ws46{word-spacing:8.090667pt;}
.ws54{word-spacing:8.238667pt;}
.ws14{word-spacing:8.485333pt;}
.ws76{word-spacing:8.534667pt;}
.ws36{word-spacing:8.640000pt;}
.ws1d{word-spacing:8.732000pt;}
.ws6e{word-spacing:8.781333pt;}
.ws42{word-spacing:8.880000pt;}
.ws49{word-spacing:8.978667pt;}
.ws74{word-spacing:9.176000pt;}
.wsb3{word-spacing:9.400000pt;}
.ws1b{word-spacing:9.521333pt;}
.ws2f{word-spacing:9.760000pt;}
.wsa0{word-spacing:9.916000pt;}
.wsb0{word-spacing:10.040000pt;}
.ws9c{word-spacing:10.360000pt;}
.ws88{word-spacing:10.656000pt;}
.wsb4{word-spacing:10.960000pt;}
.ws2e{word-spacing:11.040000pt;}
.ws69{word-spacing:11.100000pt;}
.wsb5{word-spacing:11.200000pt;}
.ws78{word-spacing:11.346667pt;}
.ws48{word-spacing:11.692000pt;}
.ws34{word-spacing:11.760000pt;}
.ws96{word-spacing:11.790667pt;}
.wsae{word-spacing:11.840000pt;}
.wsad{word-spacing:12.240000pt;}
.ws45{word-spacing:12.584000pt;}
.ws83{word-spacing:12.974667pt;}
.ws50{word-spacing:13.073333pt;}
.ws8d{word-spacing:13.200000pt;}
.wsb2{word-spacing:13.880000pt;}
.ws68{word-spacing:13.961333pt;}
.wsb1{word-spacing:14.200000pt;}
.ws9a{word-spacing:14.800000pt;}
.ws4e{word-spacing:15.194667pt;}
.wsc{word-spacing:15.392000pt;}
.ws93{word-spacing:15.680000pt;}
.ws30{word-spacing:16.520000pt;}
.ws8a{word-spacing:16.921333pt;}
.ws8f{word-spacing:17.840000pt;}
.ws84{word-spacing:18.253333pt;}
.ws8c{word-spacing:19.240000pt;}
.ws33{word-spacing:19.760000pt;}
.ws31{word-spacing:21.080000pt;}
.ws39{word-spacing:24.680000pt;}
.ws2d{word-spacing:26.640000pt;}
.ws8e{word-spacing:32.560000pt;}
.wsaa{word-spacing:35.640000pt;}
.ws3b{word-spacing:36.960000pt;}
.ws35{word-spacing:37.480000pt;}
.ws38{word-spacing:50.600000pt;}
._1{margin-left:-252.964053pt;}
._0{margin-left:-4.778667pt;}
._5{margin-left:-3.622599pt;}
._2{margin-left:-2.614766pt;}
._3{margin-left:-1.212067pt;}
._4{width:1.728000pt;}
.fsa{font-size:28.761067pt;}
.fs3{font-size:32.281067pt;}
.fs8{font-size:40.000000pt;}
.fs9{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;}
.y53{bottom:81.390000pt;}
.ye1{bottom:88.488267pt;}
.y2{bottom:90.263067pt;}
.y52{bottom:96.720000pt;}
.ye0{bottom:103.818267pt;}
.y51{bottom:112.050000pt;}
.ydf{bottom:119.148267pt;}
.ybd{bottom:124.033067pt;}
.y50{bottom:127.380000pt;}
.yde{bottom:134.478267pt;}
.ybc{bottom:139.363067pt;}
.y4f{bottom:142.710000pt;}
.y1e{bottom:146.155133pt;}
.ydd{bottom:149.808267pt;}
.y8b{bottom:153.895267pt;}
.ybb{bottom:154.693067pt;}
.y4e{bottom:158.040000pt;}
.y1d{bottom:162.694133pt;}
.ydc{bottom:165.138267pt;}
.yba{bottom:170.023067pt;}
.y8a{bottom:170.434267pt;}
.y4d{bottom:173.370000pt;}
.y1c{bottom:179.233133pt;}
.ydb{bottom:180.471600pt;}
.yb9{bottom:185.353067pt;}
.y89{bottom:186.973267pt;}
.y4c{bottom:188.700000pt;}
.y1b{bottom:195.772133pt;}
.yb8{bottom:200.683067pt;}
.y88{bottom:203.512267pt;}
.y4b{bottom:204.030000pt;}
.y1a{bottom:212.311133pt;}
.yb7{bottom:216.013067pt;}
.y4a{bottom:219.360000pt;}
.y87{bottom:220.051267pt;}
.y19{bottom:228.850133pt;}
.yb6{bottom:231.343067pt;}
.y49{bottom:234.690000pt;}
.y86{bottom:236.590267pt;}
.y18{bottom:245.389133pt;}
.yb5{bottom:246.673067pt;}
.y48{bottom:250.020000pt;}
.y85{bottom:253.129267pt;}
.yda{bottom:257.138267pt;}
.y17{bottom:261.928133pt;}
.yb4{bottom:262.003067pt;}
.y47{bottom:265.350000pt;}
.y84{bottom:269.668267pt;}
.yd9{bottom:272.471600pt;}
.yb3{bottom:277.333067pt;}
.y16{bottom:278.467133pt;}
.y46{bottom:280.683333pt;}
.yd8{bottom:287.814933pt;}
.yb2{bottom:292.663067pt;}
.y15{bottom:295.006133pt;}
.y83{bottom:302.733200pt;}
.yd7{bottom:303.144933pt;}
.y14{bottom:311.545133pt;}
.y45{bottom:313.215733pt;}
.yd6{bottom:318.474933pt;}
.y13{bottom:328.084133pt;}
.y44{bottom:328.545733pt;}
.yb1{bottom:333.638600pt;}
.yd5{bottom:333.804933pt;}
.y75{bottom:341.168267pt;}
.y43{bottom:343.875733pt;}
.y12{bottom:344.623133pt;}
.yb0{bottom:350.177600pt;}
.y82{bottom:352.327533pt;}
.y74{bottom:356.498267pt;}
.y42{bottom:359.205733pt;}
.y11{bottom:361.162133pt;}
.yaf{bottom:366.716600pt;}
.y81{bottom:368.866533pt;}
.y73{bottom:371.828267pt;}
.y41{bottom:374.535733pt;}
.yae{bottom:383.255600pt;}
.y80{bottom:385.399867pt;}
.y72{bottom:387.158267pt;}
.y40{bottom:389.865733pt;}
.y10{bottom:394.227200pt;}
.yd4{bottom:395.024333pt;}
.yad{bottom:399.794600pt;}
.y7f{bottom:401.923467pt;}
.y71{bottom:402.488267pt;}
.y3f{bottom:405.195733pt;}
.yd3{bottom:411.563333pt;}
.yac{bottom:416.333600pt;}
.y70{bottom:417.818267pt;}
.y7e{bottom:418.462467pt;}
.y3e{bottom:420.525733pt;}
.yd2{bottom:428.102333pt;}
.yab{bottom:432.872600pt;}
.y6f{bottom:433.151600pt;}
.y3d{bottom:435.855733pt;}
.yf{bottom:443.802667pt;}
.yd1{bottom:444.641333pt;}
.yaa{bottom:449.405933pt;}
.y3c{bottom:451.185733pt;}
.ye{bottom:460.341667pt;}
.yd0{bottom:461.180333pt;}
.ya9{bottom:465.944933pt;}
.y3b{bottom:466.515733pt;}
.yd{bottom:476.880667pt;}
.ycf{bottom:477.719333pt;}
.y7d{bottom:491.660800pt;}
.yc{bottom:493.419667pt;}
.yce{bottom:494.258333pt;}
.y3a{bottom:496.761467pt;}
.ya8{bottom:499.009867pt;}
.ycd{bottom:510.797333pt;}
.y7c{bottom:511.665467pt;}
.y39{bottom:513.300467pt;}
.y6e{bottom:525.151600pt;}
.ycc{bottom:527.336333pt;}
.y38{bottom:529.839467pt;}
.y7b{bottom:531.670133pt;}
.y6d{bottom:540.484933pt;}
.ycb{bottom:543.875333pt;}
.y37{bottom:546.378467pt;}
.ya7{bottom:548.570200pt;}
.yb{bottom:550.214667pt;}
.y6c{bottom:555.828267pt;}
.yca{bottom:560.414333pt;}
.y36{bottom:562.917467pt;}
.ya6{bottom:565.109200pt;}
.y7a{bottom:568.694000pt;}
.ya{bottom:570.219333pt;}
.y6b{bottom:571.158267pt;}
.yc9{bottom:576.953333pt;}
.y35{bottom:579.456467pt;}
.ya5{bottom:581.648200pt;}
.y6a{bottom:586.488267pt;}
.y9{bottom:590.224000pt;}
.yc8{bottom:593.492333pt;}
.y34{bottom:595.995467pt;}
.y79{bottom:598.022000pt;}
.ya4{bottom:598.187200pt;}
.y69{bottom:601.818267pt;}
.yc7{bottom:610.031333pt;}
.y33{bottom:612.534467pt;}
.ya3{bottom:614.726200pt;}
.y8{bottom:627.237200pt;}
.y78{bottom:627.350000pt;}
.y32{bottom:629.073467pt;}
.ya2{bottom:631.265200pt;}
.yc6{bottom:643.097000pt;}
.ya1{bottom:647.804200pt;}
.y7{bottom:656.565200pt;}
.y77{bottom:656.678000pt;}
.yc5{bottom:659.636000pt;}
.y31{bottom:662.138533pt;}
.ya0{bottom:664.343200pt;}
.yc4{bottom:676.175000pt;}
.y68{bottom:678.389600pt;}
.y6{bottom:692.220400pt;}
.y76{bottom:692.333333pt;}
.yc3{bottom:692.714000pt;}
.y67{bottom:694.928600pt;}
.y9f{bottom:697.408267pt;}
.yc2{bottom:709.253000pt;}
.y66{bottom:711.467600pt;}
.y30{bottom:711.710333pt;}
.yc1{bottom:725.792000pt;}
.y65{bottom:728.006600pt;}
.y2f{bottom:728.249333pt;}
.yc0{bottom:742.331000pt;}
.y64{bottom:744.545600pt;}
.y2e{bottom:744.788333pt;}
.y9e{bottom:746.906267pt;}
.ybf{bottom:758.870000pt;}
.y63{bottom:761.084600pt;}
.y2d{bottom:761.327333pt;}
.y9d{bottom:763.445267pt;}
.y62{bottom:777.623600pt;}
.y2c{bottom:777.866333pt;}
.y9c{bottom:779.984267pt;}
.y1{bottom:787.978133pt;}
.ybe{bottom:791.934933pt;}
.y61{bottom:794.162600pt;}
.y2b{bottom:794.405333pt;}
.y9b{bottom:796.523267pt;}
.y60{bottom:810.701600pt;}
.y9a{bottom:813.062267pt;}
.y5f{bottom:827.240600pt;}
.y2a{bottom:827.470267pt;}
.y99{bottom:829.601267pt;}
.y5e{bottom:843.779600pt;}
.yef{bottom:845.178267pt;}
.y98{bottom:846.140267pt;}
.y5d{bottom:860.318600pt;}
.yee{bottom:860.508267pt;}
.y97{bottom:862.679267pt;}
.yed{bottom:875.838267pt;}
.y29{bottom:877.013600pt;}
.y96{bottom:879.218267pt;}
.yec{bottom:891.168267pt;}
.y5c{bottom:893.384267pt;}
.y28{bottom:893.552600pt;}
.y95{bottom:895.757267pt;}
.yeb{bottom:906.498267pt;}
.y5b{bottom:909.923267pt;}
.y27{bottom:910.091600pt;}
.y94{bottom:912.296267pt;}
.yea{bottom:921.828267pt;}
.y5a{bottom:926.462267pt;}
.y26{bottom:926.630600pt;}
.y93{bottom:928.835267pt;}
.ye9{bottom:937.158267pt;}
.y5{bottom:938.615619pt;}
.y59{bottom:943.001267pt;}
.y25{bottom:943.169600pt;}
.y92{bottom:945.374267pt;}
.y4{bottom:949.930133pt;}
.ye8{bottom:952.488267pt;}
.y58{bottom:959.540267pt;}
.y24{bottom:959.708600pt;}
.y91{bottom:961.913267pt;}
.y3{bottom:963.228000pt;}
.ye7{bottom:967.818267pt;}
.y57{bottom:976.079267pt;}
.y23{bottom:976.247600pt;}
.y90{bottom:978.452267pt;}
.ye6{bottom:983.148267pt;}
.y56{bottom:992.618267pt;}
.y22{bottom:992.786600pt;}
.y8f{bottom:994.991267pt;}
.ye5{bottom:998.478267pt;}
.y21{bottom:1009.325600pt;}
.y8e{bottom:1011.530267pt;}
.ye4{bottom:1013.808267pt;}
.y55{bottom:1025.682267pt;}
.y20{bottom:1025.864600pt;}
.y8d{bottom:1028.069267pt;}
.ye3{bottom:1029.138267pt;}
.y54{bottom:1042.218267pt;}
.y1f{bottom:1042.403600pt;}
.ye2{bottom:1044.468267pt;}
.y8c{bottom:1044.608267pt;}
.h5{height:26.181963pt;}
.h12{height:29.920962pt;}
.hc{height:32.442500pt;}
.hd{height:32.445000pt;}
.hf{height:32.446667pt;}
.he{height:35.686750pt;}
.h9{height:37.000000pt;}
.h19{height:37.075556pt;}
.h15{height:38.313287pt;}
.ha{height:40.012417pt;}
.h8{height:40.015500pt;}
.h18{height:40.038167pt;}
.h1a{height:40.783111pt;}
.h17{height:40.933905pt;}
.h10{height:41.563657pt;}
.hb{height:42.182400pt;}
.h3{height:42.831360pt;}
.h16{height:45.726519pt;}
.h7{height:72.000000pt;}
.h14{height:74.436571pt;}
.h6{height:96.000000pt;}
.h13{height:99.407448pt;}
.h4{height:110.240000pt;}
.h11{height:114.152886pt;}
.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;}
.x6{left:268.343467pt;}
.x3{left:294.543067pt;}
.x4{left:298.179467pt;}
.x8{left:484.094533pt;}
.x7{left:502.677200pt;}
}




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