
    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_f6b65f8a1fbdc14d1fa98fff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_f6b65f8a1fbdc14d1fa98fff.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_053bc0b53a9367f4bf249a83.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_0a8533a90b90d7958e420da5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_c661e0d8c4a6b95d81533363.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_d8b53dff195dd142a1d586ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921420;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_22b5f8916349fbd0de34852b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.990000;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_a6ca00ffe90794b8e6a7ecab.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fe09171d580a4ca124a5771f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971000;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_583f074cd183d9808b063023.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_e3edee376be23ab3ff299a7c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.707000;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_d54ee042afb459808c16a688.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940000;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_0bb71702a011678f87cb17e9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692871;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_053bc0b53a9367f4bf249a83.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;}
@font-face{font-family:fff;src:url('chunks/assets/font_11380e270beb8e9c25a9f60b.woff2')format("woff");}.fff{font-family:fff;line-height:0.945813;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:ff10;src:url('chunks/assets/font_47dcd915655f92257b20b314.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.830000;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;}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:66.312000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws70{word-spacing:-61.488000px;}
.ws19{word-spacing:-61.128000px;}
.ws4f{word-spacing:-60.336000px;}
.ws82{word-spacing:-59.760000px;}
.ws27{word-spacing:-58.824000px;}
.ws22{word-spacing:-57.888000px;}
.ws42{word-spacing:-57.744000px;}
.ws45{word-spacing:-57.672000px;}
.ws81{word-spacing:-57.600000px;}
.ws73{word-spacing:-56.808000px;}
.ws7f{word-spacing:-56.232000px;}
.ws3a{word-spacing:-54.936000px;}
.ws6{word-spacing:-54.576000px;}
.ws7{word-spacing:-54.504000px;}
.ws8{word-spacing:-54.288000px;}
.ws78{word-spacing:-52.920000px;}
.ws53{word-spacing:-52.704000px;}
.wse{word-spacing:-52.488000px;}
.ws1f{word-spacing:-51.192000px;}
.ws49{word-spacing:-50.112000px;}
.wsd{word-spacing:-49.752000px;}
.ws2e{word-spacing:-49.680000px;}
.ws20{word-spacing:-48.816000px;}
.ws24{word-spacing:-48.672000px;}
.ws67{word-spacing:-47.952000px;}
.ws1b{word-spacing:-47.880000px;}
.wsb{word-spacing:-47.520000px;}
.ws3d{word-spacing:-46.080000px;}
.ws76{word-spacing:-43.128000px;}
.wsa{word-spacing:-42.408000px;}
.ws54{word-spacing:-42.264000px;}
.ws9{word-spacing:-40.176000px;}
.ws6b{word-spacing:-39.960000px;}
.ws6e{word-spacing:-38.448000px;}
.ws8e{word-spacing:-38.304000px;}
.ws36{word-spacing:-38.024400px;}
.ws38{word-spacing:-38.016000px;}
.ws57{word-spacing:-37.944000px;}
.ws58{word-spacing:-37.224000px;}
.ws1a{word-spacing:-35.208000px;}
.ws34{word-spacing:-34.920000px;}
.ws59{word-spacing:-34.200000px;}
.ws23{word-spacing:-33.768000px;}
.ws18{word-spacing:-32.688000px;}
.ws75{word-spacing:-32.040000px;}
.ws79{word-spacing:-31.824000px;}
.wsc{word-spacing:-31.536000px;}
.ws80{word-spacing:-30.960000px;}
.ws25{word-spacing:-30.456000px;}
.ws46{word-spacing:-29.880000px;}
.ws8c{word-spacing:-27.720000px;}
.ws31{word-spacing:-27.648000px;}
.ws16{word-spacing:-26.928000px;}
.ws48{word-spacing:-26.784000px;}
.ws26{word-spacing:-25.416000px;}
.ws6c{word-spacing:-25.344000px;}
.ws4c{word-spacing:-25.272000px;}
.ws5{word-spacing:-23.688000px;}
.ws8b{word-spacing:-23.040000px;}
.ws29{word-spacing:-22.752000px;}
.wsf{word-spacing:-21.888000px;}
.ws89{word-spacing:-21.528000px;}
.ws43{word-spacing:-21.168000px;}
.ws21{word-spacing:-20.880000px;}
.ws3b{word-spacing:-18.720000px;}
.ws8d{word-spacing:-17.496000px;}
.ws47{word-spacing:-17.424000px;}
.ws7e{word-spacing:-16.992000px;}
.ws17{word-spacing:-16.344000px;}
.ws10{word-spacing:-15.000000px;}
.ws37{word-spacing:-13.500000px;}
.ws1c{word-spacing:-12.456000px;}
.ws60{word-spacing:-10.800000px;}
.ws39{word-spacing:-10.152000px;}
.ws52{word-spacing:-9.288000px;}
.ws4e{word-spacing:-8.640000px;}
.ws2a{word-spacing:-7.992000px;}
.ws5c{word-spacing:-6.768000px;}
.ws2{word-spacing:-6.717600px;}
.ws30{word-spacing:-6.552000px;}
.ws15{word-spacing:-5.680800px;}
.ws5a{word-spacing:-3.960000px;}
.ws5f{word-spacing:-0.216000px;}
.ws11{word-spacing:0.000000px;}
.ws1{word-spacing:0.720000px;}
.ws56{word-spacing:2.520000px;}
.ws63{word-spacing:2.592000px;}
.ws35{word-spacing:2.808000px;}
.ws6f{word-spacing:3.312000px;}
.ws50{word-spacing:5.472000px;}
.ws3f{word-spacing:5.832000px;}
.ws3e{word-spacing:5.904000px;}
.ws62{word-spacing:9.576000px;}
.ws4b{word-spacing:13.032000px;}
.ws44{word-spacing:13.104000px;}
.ws28{word-spacing:16.488000px;}
.ws7c{word-spacing:21.600000px;}
.ws1e{word-spacing:23.256000px;}
.ws2d{word-spacing:23.544000px;}
.ws6a{word-spacing:25.632000px;}
.ws1d{word-spacing:28.080000px;}
.ws40{word-spacing:29.880000px;}
.ws13{word-spacing:33.621000px;}
.ws4d{word-spacing:36.216000px;}
.ws65{word-spacing:36.504000px;}
.ws69{word-spacing:36.792000px;}
.ws3c{word-spacing:39.456000px;}
.ws74{word-spacing:40.176000px;}
.ws84{word-spacing:40.240800px;}
.ws66{word-spacing:40.680000px;}
.ws87{word-spacing:40.968000px;}
.ws71{word-spacing:44.280000px;}
.ws83{word-spacing:48.960000px;}
.ws86{word-spacing:49.248000px;}
.ws5d{word-spacing:49.896000px;}
.ws7b{word-spacing:58.327200px;}
.ws8a{word-spacing:61.056000px;}
.ws5b{word-spacing:69.192000px;}
.ws12{word-spacing:70.524000px;}
.ws4a{word-spacing:77.760000px;}
.ws2c{word-spacing:78.624000px;}
.ws7a{word-spacing:78.696000px;}
.ws55{word-spacing:80.406000px;}
.ws51{word-spacing:85.464000px;}
.ws33{word-spacing:97.056000px;}
.ws64{word-spacing:97.632000px;}
.ws88{word-spacing:114.912000px;}
.ws32{word-spacing:125.712000px;}
.ws72{word-spacing:127.591200px;}
.ws61{word-spacing:173.808000px;}
.ws85{word-spacing:174.967200px;}
.ws41{word-spacing:177.768000px;}
.ws7d{word-spacing:178.344000px;}
.ws2f{word-spacing:189.432000px;}
.ws77{word-spacing:231.919200px;}
.ws2b{word-spacing:254.304000px;}
.ws5e{word-spacing:332.136000px;}
.ws68{word-spacing:360.720000px;}
.ws6d{word-spacing:371.232000px;}
.ws14{word-spacing:386.314800px;}
.ws4{word-spacing:1111.464000px;}
.ws0{word-spacing:1699.977600px;}
._c{margin-left:-18.720000px;}
._9{margin-left:-10.224000px;}
._4{margin-left:-9.072000px;}
._6{margin-left:-6.955200px;}
._3{margin-left:-5.594400px;}
._2{margin-left:-4.386000px;}
._8{margin-left:-3.030000px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._b{width:2.880000px;}
._e{width:4.168800px;}
._f{width:6.408000px;}
._5{width:7.416000px;}
._7{width:9.432000px;}
._10{width:11.160000px;}
._d{width:66.319200px;}
._11{width:98.488800px;}
._12{width:130.240800px;}
._a{width:147.664800px;}
._13{width:243.856800px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y29{bottom:92.443050px;}
.y5c{bottom:93.058650px;}
.yc1{bottom:94.538400px;}
.y77{bottom:95.314650px;}
.y9f{bottom:107.330400px;}
.y28{bottom:114.943050px;}
.y5b{bottom:115.558650px;}
.yc0{bottom:117.038400px;}
.y76{bottom:117.058650px;}
.y9e{bottom:129.830400px;}
.y27{bottom:137.443050px;}
.y5a{bottom:138.058650px;}
.y75{bottom:138.838650px;}
.ybf{bottom:139.538400px;}
.y9d{bottom:152.330400px;}
.y26{bottom:159.943050px;}
.y59{bottom:160.558650px;}
.y74{bottom:160.582650px;}
.ybe{bottom:162.038400px;}
.y9c{bottom:174.074400px;}
.y73{bottom:182.326650px;}
.y25{bottom:182.443050px;}
.y58{bottom:183.058650px;}
.ybd{bottom:184.538400px;}
.y9b{bottom:195.818400px;}
.y72{bottom:204.070650px;}
.y24{bottom:204.943050px;}
.y57{bottom:205.558650px;}
.ybc{bottom:207.038400px;}
.y9a{bottom:217.562400px;}
.y71{bottom:225.814650px;}
.y23{bottom:227.443050px;}
.y56{bottom:228.058650px;}
.ybb{bottom:229.538400px;}
.y99{bottom:239.306400px;}
.y70{bottom:247.558650px;}
.y22{bottom:249.943050px;}
.y55{bottom:250.558650px;}
.yba{bottom:252.038400px;}
.y98{bottom:261.050400px;}
.y6f{bottom:270.058650px;}
.y21{bottom:272.443050px;}
.y54{bottom:273.058650px;}
.yb9{bottom:274.538400px;}
.y97{bottom:282.794400px;}
.y20{bottom:294.943050px;}
.y53{bottom:295.558650px;}
.yb8{bottom:297.038400px;}
.y96{bottom:304.538400px;}
.y6e{bottom:307.654650px;}
.y1f{bottom:317.443050px;}
.y52{bottom:318.058650px;}
.yb7{bottom:319.538400px;}
.y95{bottom:327.038400px;}
.y6d{bottom:330.154650px;}
.y1e{bottom:339.943050px;}
.y51{bottom:340.558650px;}
.yb6{bottom:342.038400px;}
.y6c{bottom:352.654650px;}
.y1d{bottom:362.443050px;}
.y50{bottom:363.058650px;}
.y94{bottom:364.538400px;}
.y6b{bottom:374.398650px;}
.y1c{bottom:384.943050px;}
.y4f{bottom:385.558650px;}
.y93{bottom:387.038400px;}
.y6a{bottom:396.142650px;}
.y4e{bottom:408.058650px;}
.y92{bottom:409.538400px;}
.y69{bottom:417.886650px;}
.y1b{bottom:429.943050px;}
.y91{bottom:432.038400px;}
.y68{bottom:439.630650px;}
.y1a{bottom:452.443050px;}
.y4d{bottom:453.058650px;}
.y90{bottom:454.562400px;}
.y32{bottom:456.139950px;}
.y67{bottom:461.374650px;}
.yb5{bottom:469.538400px;}
.y19{bottom:474.943050px;}
.y4c{bottom:475.558650px;}
.y8f{bottom:477.062400px;}
.y31{bottom:478.639950px;}
.y66{bottom:483.118650px;}
.yb4{bottom:492.038400px;}
.y18{bottom:497.443050px;}
.y4b{bottom:498.058650px;}
.y8e{bottom:498.806400px;}
.y30{bottom:501.139950px;}
.y65{bottom:504.862650px;}
.yb3{bottom:514.538400px;}
.y17{bottom:519.943050px;}
.y8d{bottom:520.550400px;}
.y4a{bottom:520.558650px;}
.y64{bottom:526.606650px;}
.yb2{bottom:537.038400px;}
.y2f{bottom:541.639950px;}
.y8c{bottom:542.294400px;}
.y16{bottom:542.443050px;}
.y49{bottom:543.058650px;}
.y63{bottom:548.350650px;}
.yb1{bottom:559.538400px;}
.y8b{bottom:564.038400px;}
.y15{bottom:564.943050px;}
.y48{bottom:565.558650px;}
.y62{bottom:570.094650px;}
.yb0{bottom:582.038400px;}
.y8a{bottom:586.538400px;}
.y2e{bottom:586.639950px;}
.y14{bottom:587.443050px;}
.y47{bottom:588.058650px;}
.y61{bottom:591.838650px;}
.yaf{bottom:604.538400px;}
.y13{bottom:609.943050px;}
.y46{bottom:610.558650px;}
.y60{bottom:613.582650px;}
.y89{bottom:624.134400px;}
.yae{bottom:627.038400px;}
.y2d{bottom:627.139950px;}
.y12{bottom:632.443050px;}
.y45{bottom:633.058650px;}
.y5f{bottom:635.326650px;}
.y88{bottom:646.634400px;}
.yad{bottom:649.538400px;}
.y11{bottom:654.943050px;}
.y44{bottom:655.558650px;}
.y5e{bottom:657.070650px;}
.y2c{bottom:663.139950px;}
.y87{bottom:668.378400px;}
.y10{bottom:677.443050px;}
.y43{bottom:678.058650px;}
.y5d{bottom:678.814650px;}
.yac{bottom:687.038400px;}
.y86{bottom:690.122400px;}
.y2b{bottom:699.139950px;}
.yf{bottom:699.943050px;}
.y42{bottom:700.558650px;}
.yab{bottom:709.538400px;}
.y85{bottom:711.866400px;}
.ye{bottom:722.443050px;}
.y41{bottom:723.058650px;}
.yaa{bottom:732.038400px;}
.y84{bottom:733.610400px;}
.y2a{bottom:735.139950px;}
.yd{bottom:744.943050px;}
.y40{bottom:745.558650px;}
.ya9{bottom:754.538400px;}
.y83{bottom:755.354400px;}
.yc{bottom:767.443050px;}
.y3f{bottom:768.058650px;}
.ya8{bottom:777.038400px;}
.y82{bottom:777.098400px;}
.yb{bottom:789.943050px;}
.y3e{bottom:790.558650px;}
.y81{bottom:798.842400px;}
.ya7{bottom:799.538400px;}
.y3d{bottom:813.058650px;}
.y80{bottom:820.586400px;}
.ya6{bottom:822.038400px;}
.ya{bottom:834.929550px;}
.y3c{bottom:835.558650px;}
.y7f{bottom:842.330400px;}
.ya5{bottom:844.538400px;}
.y9{bottom:855.934050px;}
.y3b{bottom:858.058650px;}
.yc8{bottom:858.960150px;}
.y7e{bottom:864.074400px;}
.ya4{bottom:867.038400px;}
.y8{bottom:876.938550px;}
.y3a{bottom:880.558650px;}
.yc7{bottom:881.460150px;}
.y7d{bottom:885.818400px;}
.y7{bottom:897.943050px;}
.y39{bottom:903.058650px;}
.yc6{bottom:903.960150px;}
.ya3{bottom:904.538400px;}
.y7c{bottom:907.562400px;}
.y6{bottom:918.943050px;}
.y38{bottom:925.558650px;}
.yc5{bottom:926.460150px;}
.ya2{bottom:927.038400px;}
.y7b{bottom:929.306400px;}
.y37{bottom:948.058650px;}
.yc4{bottom:948.960150px;}
.ya1{bottom:949.538400px;}
.y7a{bottom:951.050400px;}
.y5{bottom:968.443050px;}
.y36{bottom:970.558650px;}
.yc3{bottom:971.460150px;}
.ya0{bottom:972.038400px;}
.y79{bottom:972.794400px;}
.y35{bottom:993.058650px;}
.yc2{bottom:993.960150px;}
.y78{bottom:994.538400px;}
.y4{bottom:1024.374150px;}
.y34{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.ha{height:40.634766px;}
.hb{height:41.660156px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.h8{height:46.200000px;}
.h9{height:50.400000px;}
.hd{height:52.492611px;}
.hc{height:53.467611px;}
.h7{height:54.600000px;}
.h6{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xe{left:65.202600px;}
.xd{left:71.253150px;}
.xc{left:73.559100px;}
.x10{left:85.039350px;}
.xb{left:224.187900px;}
.x5{left:230.772150px;}
.x9{left:312.741750px;}
.x8{left:343.415250px;}
.xf{left:400.019550px;}
.x4{left:412.272150px;}
.x11{left:421.195650px;}
.x7{left:424.100250px;}
.xa{left:585.239250px;}
.x12{left:611.527650px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
.x6{left:651.498150px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:58.944000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws70{word-spacing:-54.656000pt;}
.ws19{word-spacing:-54.336000pt;}
.ws4f{word-spacing:-53.632000pt;}
.ws82{word-spacing:-53.120000pt;}
.ws27{word-spacing:-52.288000pt;}
.ws22{word-spacing:-51.456000pt;}
.ws42{word-spacing:-51.328000pt;}
.ws45{word-spacing:-51.264000pt;}
.ws81{word-spacing:-51.200000pt;}
.ws73{word-spacing:-50.496000pt;}
.ws7f{word-spacing:-49.984000pt;}
.ws3a{word-spacing:-48.832000pt;}
.ws6{word-spacing:-48.512000pt;}
.ws7{word-spacing:-48.448000pt;}
.ws8{word-spacing:-48.256000pt;}
.ws78{word-spacing:-47.040000pt;}
.ws53{word-spacing:-46.848000pt;}
.wse{word-spacing:-46.656000pt;}
.ws1f{word-spacing:-45.504000pt;}
.ws49{word-spacing:-44.544000pt;}
.wsd{word-spacing:-44.224000pt;}
.ws2e{word-spacing:-44.160000pt;}
.ws20{word-spacing:-43.392000pt;}
.ws24{word-spacing:-43.264000pt;}
.ws67{word-spacing:-42.624000pt;}
.ws1b{word-spacing:-42.560000pt;}
.wsb{word-spacing:-42.240000pt;}
.ws3d{word-spacing:-40.960000pt;}
.ws76{word-spacing:-38.336000pt;}
.wsa{word-spacing:-37.696000pt;}
.ws54{word-spacing:-37.568000pt;}
.ws9{word-spacing:-35.712000pt;}
.ws6b{word-spacing:-35.520000pt;}
.ws6e{word-spacing:-34.176000pt;}
.ws8e{word-spacing:-34.048000pt;}
.ws36{word-spacing:-33.799467pt;}
.ws38{word-spacing:-33.792000pt;}
.ws57{word-spacing:-33.728000pt;}
.ws58{word-spacing:-33.088000pt;}
.ws1a{word-spacing:-31.296000pt;}
.ws34{word-spacing:-31.040000pt;}
.ws59{word-spacing:-30.400000pt;}
.ws23{word-spacing:-30.016000pt;}
.ws18{word-spacing:-29.056000pt;}
.ws75{word-spacing:-28.480000pt;}
.ws79{word-spacing:-28.288000pt;}
.wsc{word-spacing:-28.032000pt;}
.ws80{word-spacing:-27.520000pt;}
.ws25{word-spacing:-27.072000pt;}
.ws46{word-spacing:-26.560000pt;}
.ws8c{word-spacing:-24.640000pt;}
.ws31{word-spacing:-24.576000pt;}
.ws16{word-spacing:-23.936000pt;}
.ws48{word-spacing:-23.808000pt;}
.ws26{word-spacing:-22.592000pt;}
.ws6c{word-spacing:-22.528000pt;}
.ws4c{word-spacing:-22.464000pt;}
.ws5{word-spacing:-21.056000pt;}
.ws8b{word-spacing:-20.480000pt;}
.ws29{word-spacing:-20.224000pt;}
.wsf{word-spacing:-19.456000pt;}
.ws89{word-spacing:-19.136000pt;}
.ws43{word-spacing:-18.816000pt;}
.ws21{word-spacing:-18.560000pt;}
.ws3b{word-spacing:-16.640000pt;}
.ws8d{word-spacing:-15.552000pt;}
.ws47{word-spacing:-15.488000pt;}
.ws7e{word-spacing:-15.104000pt;}
.ws17{word-spacing:-14.528000pt;}
.ws10{word-spacing:-13.333333pt;}
.ws37{word-spacing:-12.000000pt;}
.ws1c{word-spacing:-11.072000pt;}
.ws60{word-spacing:-9.600000pt;}
.ws39{word-spacing:-9.024000pt;}
.ws52{word-spacing:-8.256000pt;}
.ws4e{word-spacing:-7.680000pt;}
.ws2a{word-spacing:-7.104000pt;}
.ws5c{word-spacing:-6.016000pt;}
.ws2{word-spacing:-5.971200pt;}
.ws30{word-spacing:-5.824000pt;}
.ws15{word-spacing:-5.049600pt;}
.ws5a{word-spacing:-3.520000pt;}
.ws5f{word-spacing:-0.192000pt;}
.ws11{word-spacing:0.000000pt;}
.ws1{word-spacing:0.640000pt;}
.ws56{word-spacing:2.240000pt;}
.ws63{word-spacing:2.304000pt;}
.ws35{word-spacing:2.496000pt;}
.ws6f{word-spacing:2.944000pt;}
.ws50{word-spacing:4.864000pt;}
.ws3f{word-spacing:5.184000pt;}
.ws3e{word-spacing:5.248000pt;}
.ws62{word-spacing:8.512000pt;}
.ws4b{word-spacing:11.584000pt;}
.ws44{word-spacing:11.648000pt;}
.ws28{word-spacing:14.656000pt;}
.ws7c{word-spacing:19.200000pt;}
.ws1e{word-spacing:20.672000pt;}
.ws2d{word-spacing:20.928000pt;}
.ws6a{word-spacing:22.784000pt;}
.ws1d{word-spacing:24.960000pt;}
.ws40{word-spacing:26.560000pt;}
.ws13{word-spacing:29.885333pt;}
.ws4d{word-spacing:32.192000pt;}
.ws65{word-spacing:32.448000pt;}
.ws69{word-spacing:32.704000pt;}
.ws3c{word-spacing:35.072000pt;}
.ws74{word-spacing:35.712000pt;}
.ws84{word-spacing:35.769600pt;}
.ws66{word-spacing:36.160000pt;}
.ws87{word-spacing:36.416000pt;}
.ws71{word-spacing:39.360000pt;}
.ws83{word-spacing:43.520000pt;}
.ws86{word-spacing:43.776000pt;}
.ws5d{word-spacing:44.352000pt;}
.ws7b{word-spacing:51.846400pt;}
.ws8a{word-spacing:54.272000pt;}
.ws5b{word-spacing:61.504000pt;}
.ws12{word-spacing:62.688000pt;}
.ws4a{word-spacing:69.120000pt;}
.ws2c{word-spacing:69.888000pt;}
.ws7a{word-spacing:69.952000pt;}
.ws55{word-spacing:71.472000pt;}
.ws51{word-spacing:75.968000pt;}
.ws33{word-spacing:86.272000pt;}
.ws64{word-spacing:86.784000pt;}
.ws88{word-spacing:102.144000pt;}
.ws32{word-spacing:111.744000pt;}
.ws72{word-spacing:113.414400pt;}
.ws61{word-spacing:154.496000pt;}
.ws85{word-spacing:155.526400pt;}
.ws41{word-spacing:158.016000pt;}
.ws7d{word-spacing:158.528000pt;}
.ws2f{word-spacing:168.384000pt;}
.ws77{word-spacing:206.150400pt;}
.ws2b{word-spacing:226.048000pt;}
.ws5e{word-spacing:295.232000pt;}
.ws68{word-spacing:320.640000pt;}
.ws6d{word-spacing:329.984000pt;}
.ws14{word-spacing:343.390933pt;}
.ws4{word-spacing:987.968000pt;}
.ws0{word-spacing:1511.091200pt;}
._c{margin-left:-16.640000pt;}
._9{margin-left:-9.088000pt;}
._4{margin-left:-8.064000pt;}
._6{margin-left:-6.182400pt;}
._3{margin-left:-4.972800pt;}
._2{margin-left:-3.898667pt;}
._8{margin-left:-2.693333pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._b{width:2.560000pt;}
._e{width:3.705600pt;}
._f{width:5.696000pt;}
._5{width:6.592000pt;}
._7{width:8.384000pt;}
._10{width:9.920000pt;}
._d{width:58.950400pt;}
._11{width:87.545600pt;}
._12{width:115.769600pt;}
._a{width:131.257600pt;}
._13{width:216.761600pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y29{bottom:82.171600pt;}
.y5c{bottom:82.718800pt;}
.yc1{bottom:84.034133pt;}
.y77{bottom:84.724133pt;}
.y9f{bottom:95.404800pt;}
.y28{bottom:102.171600pt;}
.y5b{bottom:102.718800pt;}
.yc0{bottom:104.034133pt;}
.y76{bottom:104.052133pt;}
.y9e{bottom:115.404800pt;}
.y27{bottom:122.171600pt;}
.y5a{bottom:122.718800pt;}
.y75{bottom:123.412133pt;}
.ybf{bottom:124.034133pt;}
.y9d{bottom:135.404800pt;}
.y26{bottom:142.171600pt;}
.y59{bottom:142.718800pt;}
.y74{bottom:142.740133pt;}
.ybe{bottom:144.034133pt;}
.y9c{bottom:154.732800pt;}
.y73{bottom:162.068133pt;}
.y25{bottom:162.171600pt;}
.y58{bottom:162.718800pt;}
.ybd{bottom:164.034133pt;}
.y9b{bottom:174.060800pt;}
.y72{bottom:181.396133pt;}
.y24{bottom:182.171600pt;}
.y57{bottom:182.718800pt;}
.ybc{bottom:184.034133pt;}
.y9a{bottom:193.388800pt;}
.y71{bottom:200.724133pt;}
.y23{bottom:202.171600pt;}
.y56{bottom:202.718800pt;}
.ybb{bottom:204.034133pt;}
.y99{bottom:212.716800pt;}
.y70{bottom:220.052133pt;}
.y22{bottom:222.171600pt;}
.y55{bottom:222.718800pt;}
.yba{bottom:224.034133pt;}
.y98{bottom:232.044800pt;}
.y6f{bottom:240.052133pt;}
.y21{bottom:242.171600pt;}
.y54{bottom:242.718800pt;}
.yb9{bottom:244.034133pt;}
.y97{bottom:251.372800pt;}
.y20{bottom:262.171600pt;}
.y53{bottom:262.718800pt;}
.yb8{bottom:264.034133pt;}
.y96{bottom:270.700800pt;}
.y6e{bottom:273.470800pt;}
.y1f{bottom:282.171600pt;}
.y52{bottom:282.718800pt;}
.yb7{bottom:284.034133pt;}
.y95{bottom:290.700800pt;}
.y6d{bottom:293.470800pt;}
.y1e{bottom:302.171600pt;}
.y51{bottom:302.718800pt;}
.yb6{bottom:304.034133pt;}
.y6c{bottom:313.470800pt;}
.y1d{bottom:322.171600pt;}
.y50{bottom:322.718800pt;}
.y94{bottom:324.034133pt;}
.y6b{bottom:332.798800pt;}
.y1c{bottom:342.171600pt;}
.y4f{bottom:342.718800pt;}
.y93{bottom:344.034133pt;}
.y6a{bottom:352.126800pt;}
.y4e{bottom:362.718800pt;}
.y92{bottom:364.034133pt;}
.y69{bottom:371.454800pt;}
.y1b{bottom:382.171600pt;}
.y91{bottom:384.034133pt;}
.y68{bottom:390.782800pt;}
.y1a{bottom:402.171600pt;}
.y4d{bottom:402.718800pt;}
.y90{bottom:404.055467pt;}
.y32{bottom:405.457733pt;}
.y67{bottom:410.110800pt;}
.yb5{bottom:417.367467pt;}
.y19{bottom:422.171600pt;}
.y4c{bottom:422.718800pt;}
.y8f{bottom:424.055467pt;}
.y31{bottom:425.457733pt;}
.y66{bottom:429.438800pt;}
.yb4{bottom:437.367467pt;}
.y18{bottom:442.171600pt;}
.y4b{bottom:442.718800pt;}
.y8e{bottom:443.383467pt;}
.y30{bottom:445.457733pt;}
.y65{bottom:448.766800pt;}
.yb3{bottom:457.367467pt;}
.y17{bottom:462.171600pt;}
.y8d{bottom:462.711467pt;}
.y4a{bottom:462.718800pt;}
.y64{bottom:468.094800pt;}
.yb2{bottom:477.367467pt;}
.y2f{bottom:481.457733pt;}
.y8c{bottom:482.039467pt;}
.y16{bottom:482.171600pt;}
.y49{bottom:482.718800pt;}
.y63{bottom:487.422800pt;}
.yb1{bottom:497.367467pt;}
.y8b{bottom:501.367467pt;}
.y15{bottom:502.171600pt;}
.y48{bottom:502.718800pt;}
.y62{bottom:506.750800pt;}
.yb0{bottom:517.367467pt;}
.y8a{bottom:521.367467pt;}
.y2e{bottom:521.457733pt;}
.y14{bottom:522.171600pt;}
.y47{bottom:522.718800pt;}
.y61{bottom:526.078800pt;}
.yaf{bottom:537.367467pt;}
.y13{bottom:542.171600pt;}
.y46{bottom:542.718800pt;}
.y60{bottom:545.406800pt;}
.y89{bottom:554.786133pt;}
.yae{bottom:557.367467pt;}
.y2d{bottom:557.457733pt;}
.y12{bottom:562.171600pt;}
.y45{bottom:562.718800pt;}
.y5f{bottom:564.734800pt;}
.y88{bottom:574.786133pt;}
.yad{bottom:577.367467pt;}
.y11{bottom:582.171600pt;}
.y44{bottom:582.718800pt;}
.y5e{bottom:584.062800pt;}
.y2c{bottom:589.457733pt;}
.y87{bottom:594.114133pt;}
.y10{bottom:602.171600pt;}
.y43{bottom:602.718800pt;}
.y5d{bottom:603.390800pt;}
.yac{bottom:610.700800pt;}
.y86{bottom:613.442133pt;}
.y2b{bottom:621.457733pt;}
.yf{bottom:622.171600pt;}
.y42{bottom:622.718800pt;}
.yab{bottom:630.700800pt;}
.y85{bottom:632.770133pt;}
.ye{bottom:642.171600pt;}
.y41{bottom:642.718800pt;}
.yaa{bottom:650.700800pt;}
.y84{bottom:652.098133pt;}
.y2a{bottom:653.457733pt;}
.yd{bottom:662.171600pt;}
.y40{bottom:662.718800pt;}
.ya9{bottom:670.700800pt;}
.y83{bottom:671.426133pt;}
.yc{bottom:682.171600pt;}
.y3f{bottom:682.718800pt;}
.ya8{bottom:690.700800pt;}
.y82{bottom:690.754133pt;}
.yb{bottom:702.171600pt;}
.y3e{bottom:702.718800pt;}
.y81{bottom:710.082133pt;}
.ya7{bottom:710.700800pt;}
.y3d{bottom:722.718800pt;}
.y80{bottom:729.410133pt;}
.ya6{bottom:730.700800pt;}
.ya{bottom:742.159600pt;}
.y3c{bottom:742.718800pt;}
.y7f{bottom:748.738133pt;}
.ya5{bottom:750.700800pt;}
.y9{bottom:760.830267pt;}
.y3b{bottom:762.718800pt;}
.yc8{bottom:763.520133pt;}
.y7e{bottom:768.066133pt;}
.ya4{bottom:770.700800pt;}
.y8{bottom:779.500933pt;}
.y3a{bottom:782.718800pt;}
.yc7{bottom:783.520133pt;}
.y7d{bottom:787.394133pt;}
.y7{bottom:798.171600pt;}
.y39{bottom:802.718800pt;}
.yc6{bottom:803.520133pt;}
.ya3{bottom:804.034133pt;}
.y7c{bottom:806.722133pt;}
.y6{bottom:816.838267pt;}
.y38{bottom:822.718800pt;}
.yc5{bottom:823.520133pt;}
.ya2{bottom:824.034133pt;}
.y7b{bottom:826.050133pt;}
.y37{bottom:842.718800pt;}
.yc4{bottom:843.520133pt;}
.ya1{bottom:844.034133pt;}
.y7a{bottom:845.378133pt;}
.y5{bottom:860.838267pt;}
.y36{bottom:862.718800pt;}
.yc3{bottom:863.520133pt;}
.ya0{bottom:864.034133pt;}
.y79{bottom:864.706133pt;}
.y35{bottom:882.718800pt;}
.yc2{bottom:883.520133pt;}
.y78{bottom:884.034133pt;}
.y4{bottom:910.554800pt;}
.y34{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.ha{height:36.119792pt;}
.hb{height:37.031250pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.h8{height:41.066667pt;}
.h9{height:44.800000pt;}
.hd{height:46.660099pt;}
.hc{height:47.526765pt;}
.h7{height:48.533333pt;}
.h6{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xe{left:57.957867pt;}
.xd{left:63.336133pt;}
.xc{left:65.385867pt;}
.x10{left:75.590533pt;}
.xb{left:199.278133pt;}
.x5{left:205.130800pt;}
.x9{left:277.992667pt;}
.x8{left:305.258000pt;}
.xf{left:355.572933pt;}
.x4{left:366.464133pt;}
.x11{left:374.396133pt;}
.x7{left:376.978000pt;}
.xa{left:520.212667pt;}
.x12{left:543.580133pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
.x6{left:579.109467pt;}
}




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