
    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_30d7398b863b227e0d1b8819.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_da77c045e9a78fe7222130e9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4842888b5aa7385956188583.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_308fc4935cf32d72d2456440.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_855243e3b9b69aa9fb8fbfd5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dee794e24810b4075a5d331d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4e6ee4360572c603d72117d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.974000;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_17580e6abd06736188233f79.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_ffb210299bfcfa8513686552.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0d9800b3c75ea3f42242a342.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1a987527f4f5ab19bbd4f3f7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bd1486e0106066e1ac804831.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_30d7398b863b227e0d1b8819.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_da77c045e9a78fe7222130e9.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_78e32c6eca7b189ae29042cc.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_ecf2aa15dda924a469385973.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m8{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m5{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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls3{letter-spacing:-0.768000px;}
.ls2{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.288000px;}
.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.288000px;}
.ws4{word-spacing:-72.000000px;}
.ws9{word-spacing:-71.784000px;}
.wse{word-spacing:-61.272000px;}
.ws1d{word-spacing:-61.200000px;}
.ws79{word-spacing:-60.984000px;}
.ws11{word-spacing:-60.624000px;}
.ws26{word-spacing:-59.976000px;}
.ws4b{word-spacing:-57.312000px;}
.ws81{word-spacing:-56.880000px;}
.ws1c{word-spacing:-56.016000px;}
.ws22{word-spacing:-55.512000px;}
.ws5d{word-spacing:-55.080000px;}
.ws6d{word-spacing:-54.792000px;}
.ws76{word-spacing:-54.000000px;}
.wsb{word-spacing:-53.856000px;}
.ws84{word-spacing:-53.064000px;}
.ws7b{word-spacing:-52.848000px;}
.ws3e{word-spacing:-52.632000px;}
.ws86{word-spacing:-52.488000px;}
.ws85{word-spacing:-51.840000px;}
.ws8{word-spacing:-51.552000px;}
.ws6{word-spacing:-50.184000px;}
.ws8a{word-spacing:-50.112000px;}
.wsc{word-spacing:-49.824000px;}
.ws3a{word-spacing:-49.536000px;}
.wsa{word-spacing:-49.464000px;}
.ws20{word-spacing:-46.944000px;}
.ws40{word-spacing:-46.224000px;}
.ws8e{word-spacing:-45.144000px;}
.ws7{word-spacing:-45.000000px;}
.ws4d{word-spacing:-43.560000px;}
.ws2a{word-spacing:-43.128000px;}
.ws6a{word-spacing:-42.552000px;}
.ws15{word-spacing:-41.112000px;}
.ws90{word-spacing:-39.240000px;}
.ws12{word-spacing:-38.880000px;}
.ws57{word-spacing:-37.944000px;}
.ws13{word-spacing:-37.872000px;}
.ws14{word-spacing:-37.440000px;}
.ws52{word-spacing:-35.640000px;}
.ws23{word-spacing:-34.416000px;}
.ws30{word-spacing:-33.552000px;}
.ws5{word-spacing:-32.616000px;}
.ws61{word-spacing:-32.472000px;}
.ws47{word-spacing:-32.184000px;}
.ws82{word-spacing:-31.896000px;}
.ws54{word-spacing:-31.536000px;}
.ws73{word-spacing:-31.176000px;}
.ws3d{word-spacing:-31.039200px;}
.ws62{word-spacing:-26.712000px;}
.ws34{word-spacing:-26.352000px;}
.ws38{word-spacing:-25.992000px;}
.ws37{word-spacing:-25.488000px;}
.ws5e{word-spacing:-24.336000px;}
.ws16{word-spacing:-23.760000px;}
.ws6f{word-spacing:-22.608000px;}
.wsd{word-spacing:-21.312000px;}
.ws78{word-spacing:-21.096000px;}
.ws1b{word-spacing:-20.232000px;}
.ws77{word-spacing:-18.576000px;}
.ws7d{word-spacing:-18.000000px;}
.ws59{word-spacing:-15.408000px;}
.ws41{word-spacing:-14.328000px;}
.ws3f{word-spacing:-13.104000px;}
.ws53{word-spacing:-12.146400px;}
.ws70{word-spacing:-11.304000px;}
.ws56{word-spacing:-10.584000px;}
.ws4f{word-spacing:-8.784000px;}
.ws10{word-spacing:-8.640000px;}
.ws4e{word-spacing:-8.280000px;}
.ws50{word-spacing:-6.696000px;}
.ws7f{word-spacing:-6.120000px;}
.ws2{word-spacing:-5.680800px;}
.ws64{word-spacing:-4.896000px;}
.ws80{word-spacing:-4.464000px;}
.ws75{word-spacing:-4.248000px;}
.ws8b{word-spacing:-4.176000px;}
.ws67{word-spacing:-3.960000px;}
.ws6c{word-spacing:-3.816000px;}
.ws7a{word-spacing:-3.024000px;}
.ws83{word-spacing:-1.584000px;}
.ws46{word-spacing:-1.224000px;}
.ws1e{word-spacing:-0.936000px;}
.ws17{word-spacing:-0.060000px;}
.ws25{word-spacing:-0.054000px;}
.ws18{word-spacing:0.000000px;}
.ws7c{word-spacing:0.072000px;}
.ws1a{word-spacing:0.720000px;}
.ws2f{word-spacing:1.512000px;}
.ws33{word-spacing:2.232000px;}
.ws51{word-spacing:2.592000px;}
.ws21{word-spacing:2.736000px;}
.ws87{word-spacing:4.320000px;}
.ws68{word-spacing:9.000000px;}
.wsf{word-spacing:10.368000px;}
.ws69{word-spacing:12.168000px;}
.ws1f{word-spacing:12.528000px;}
.ws7e{word-spacing:14.112000px;}
.ws6b{word-spacing:15.264000px;}
.ws39{word-spacing:15.480000px;}
.ws2e{word-spacing:16.776000px;}
.ws45{word-spacing:17.280000px;}
.ws27{word-spacing:20.448000px;}
.ws32{word-spacing:21.816000px;}
.ws4c{word-spacing:23.040000px;}
.ws5a{word-spacing:23.256000px;}
.ws2d{word-spacing:23.616000px;}
.ws2c{word-spacing:27.504000px;}
.ws72{word-spacing:31.896000px;}
.ws28{word-spacing:36.792000px;}
.ws48{word-spacing:39.024000px;}
.ws2b{word-spacing:40.896000px;}
.ws6e{word-spacing:41.472000px;}
.ws8c{word-spacing:42.696000px;}
.ws35{word-spacing:44.352000px;}
.ws88{word-spacing:44.712000px;}
.ws8d{word-spacing:45.072000px;}
.ws31{word-spacing:47.952000px;}
.ws0{word-spacing:48.021000px;}
.ws5b{word-spacing:48.168000px;}
.ws63{word-spacing:51.408000px;}
.ws58{word-spacing:54.072000px;}
.ws8f{word-spacing:54.871200px;}
.ws66{word-spacing:56.160000px;}
.ws4a{word-spacing:57.744000px;}
.ws74{word-spacing:60.912000px;}
.ws29{word-spacing:64.296000px;}
.ws65{word-spacing:67.536000px;}
.ws60{word-spacing:73.944000px;}
.ws3b{word-spacing:76.176000px;}
.ws89{word-spacing:79.488000px;}
.ws44{word-spacing:79.848000px;}
.ws36{word-spacing:85.032000px;}
.ws5f{word-spacing:99.936000px;}
.ws55{word-spacing:120.672000px;}
.ws5c{word-spacing:124.848000px;}
.ws43{word-spacing:132.480000px;}
.ws71{word-spacing:202.903200px;}
.ws49{word-spacing:218.880000px;}
.ws24{word-spacing:223.920000px;}
.ws42{word-spacing:227.016000px;}
.ws1{word-spacing:386.314800px;}
.ws3c{word-spacing:597.096000px;}
.ws19{word-spacing:1714.377600px;}
._d{margin-left:-18.727200px;}
._2{margin-left:-15.264000px;}
._10{margin-left:-12.744000px;}
._13{margin-left:-11.167200px;}
._0{margin-left:-9.799200px;}
._1{margin-left:-8.352000px;}
._11{margin-left:-7.272000px;}
._c{margin-left:-5.688000px;}
._7{margin-left:-4.536000px;}
._6{margin-left:-3.024000px;}
._9{margin-left:-1.134000px;}
._a{width:1.368000px;}
._3{width:2.592000px;}
._e{width:4.248000px;}
._8{width:6.048000px;}
._17{width:7.560000px;}
._4{width:8.712000px;}
._5{width:66.319200px;}
._b{width:72.568800px;}
._16{width:74.296800px;}
._f{width:86.032800px;}
._14{width:148.672800px;}
._12{width:236.296800px;}
._15{width:321.832800px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y33{bottom:64.760550px;}
.y32{bottom:65.586600px;}
.y9c{bottom:87.210150px;}
.y28{bottom:90.193050px;}
.y5d{bottom:93.960150px;}
.y76{bottom:99.168150px;}
.y9b{bottom:110.460150px;}
.y27{bottom:112.693050px;}
.yd8{bottom:114.936150px;}
.y5c{bottom:116.460150px;}
.y75{bottom:122.424150px;}
.yb8{bottom:133.692150px;}
.y9a{bottom:133.710150px;}
.y26{bottom:134.443050px;}
.yd7{bottom:137.436150px;}
.y5b{bottom:138.960150px;}
.y74{bottom:145.680150px;}
.y25{bottom:156.283050px;}
.yb7{bottom:156.948150px;}
.y99{bottom:156.960150px;}
.yd6{bottom:159.936150px;}
.y5a{bottom:161.460150px;}
.y73{bottom:168.936150px;}
.y24{bottom:178.027050px;}
.yb6{bottom:180.204150px;}
.y98{bottom:180.210150px;}
.yd5{bottom:182.436150px;}
.y5e{bottom:183.960150px;}
.y72{bottom:192.192150px;}
.y23{bottom:199.771050px;}
.y97{bottom:203.460150px;}
.yd4{bottom:204.936150px;}
.y59{bottom:206.460150px;}
.y71{bottom:215.448150px;}
.y22{bottom:221.515050px;}
.y96{bottom:226.710150px;}
.yd3{bottom:227.436150px;}
.y58{bottom:228.960150px;}
.y70{bottom:238.704150px;}
.y21{bottom:243.259050px;}
.yb5{bottom:249.876150px;}
.yd2{bottom:249.936150px;}
.y95{bottom:249.948150px;}
.y57{bottom:251.460150px;}
.y6e{bottom:261.954150px;}
.y6f{bottom:261.960150px;}
.y20{bottom:265.003050px;}
.yb4{bottom:273.132150px;}
.yd1{bottom:273.192150px;}
.y94{bottom:273.204150px;}
.y56{bottom:273.960150px;}
.y6c{bottom:285.180150px;}
.y6d{bottom:285.210150px;}
.y1f{bottom:286.747050px;}
.yb3{bottom:296.388150px;}
.yd0{bottom:296.448150px;}
.y55{bottom:296.460150px;}
.y6b{bottom:308.436150px;}
.y1e{bottom:308.491050px;}
.y54{bottom:318.960150px;}
.yb2{bottom:319.644150px;}
.ycf{bottom:319.704150px;}
.y93{bottom:319.710150px;}
.y1d{bottom:330.235050px;}
.y6a{bottom:331.692150px;}
.y53{bottom:341.460150px;}
.y92{bottom:342.840150px;}
.yb1{bottom:342.900150px;}
.yce{bottom:342.960150px;}
.y1c{bottom:351.979050px;}
.y69{bottom:354.948150px;}
.y52{bottom:363.960150px;}
.y91{bottom:366.096150px;}
.yb0{bottom:366.156150px;}
.y1b{bottom:373.723050px;}
.y68{bottom:378.204150px;}
.y51{bottom:386.460150px;}
.y90{bottom:389.352150px;}
.yaf{bottom:389.412150px;}
.ycd{bottom:389.454150px;}
.y1a{bottom:395.467050px;}
.y67{bottom:401.460150px;}
.y50{bottom:408.960150px;}
.y8f{bottom:412.608150px;}
.yae{bottom:412.668150px;}
.ycc{bottom:412.710150px;}
.y19{bottom:417.211050px;}
.y66{bottom:424.710150px;}
.y4f{bottom:431.460150px;}
.y8e{bottom:435.864150px;}
.yad{bottom:435.924150px;}
.ycb{bottom:435.960150px;}
.y18{bottom:438.955050px;}
.y65{bottom:447.960150px;}
.y4e{bottom:453.960150px;}
.y31{bottom:456.139950px;}
.y8d{bottom:459.120150px;}
.yca{bottom:459.150150px;}
.yac{bottom:459.180150px;}
.y17{bottom:460.699050px;}
.y64{bottom:471.192150px;}
.y4d{bottom:476.460150px;}
.y30{bottom:478.639950px;}
.y8c{bottom:482.376150px;}
.yc9{bottom:482.406150px;}
.yab{bottom:482.436150px;}
.y16{bottom:482.443050px;}
.y63{bottom:494.448150px;}
.y4c{bottom:498.960150px;}
.y2f{bottom:501.139950px;}
.y8b{bottom:505.632150px;}
.yc8{bottom:505.662150px;}
.yaa{bottom:505.692150px;}
.y62{bottom:517.704150px;}
.y4b{bottom:521.460150px;}
.y15{bottom:527.527050px;}
.y8a{bottom:528.888150px;}
.yc7{bottom:528.918150px;}
.ya9{bottom:528.948150px;}
.y61{bottom:540.960150px;}
.y2e{bottom:541.639950px;}
.y4a{bottom:543.960150px;}
.y14{bottom:549.271050px;}
.y89{bottom:552.144150px;}
.yc6{bottom:552.174150px;}
.ya8{bottom:552.204150px;}
.y49{bottom:566.460150px;}
.y13{bottom:571.015050px;}
.y88{bottom:575.400150px;}
.yc5{bottom:575.430150px;}
.ya7{bottom:575.460150px;}
.y2d{bottom:586.639950px;}
.y60{bottom:587.448150px;}
.y48{bottom:588.960150px;}
.y12{bottom:592.759050px;}
.y87{bottom:598.656150px;}
.yc4{bottom:598.686150px;}
.ya6{bottom:598.710150px;}
.y5f{bottom:610.704150px;}
.y47{bottom:611.460150px;}
.y11{bottom:614.503050px;}
.y86{bottom:621.912150px;}
.ya5{bottom:621.924150px;}
.yc3{bottom:621.942150px;}
.y2c{bottom:627.139950px;}
.y46{bottom:633.960150px;}
.y10{bottom:636.247050px;}
.y85{bottom:645.168150px;}
.ya4{bottom:645.180150px;}
.yc2{bottom:645.198150px;}
.y45{bottom:656.460150px;}
.yf{bottom:657.991050px;}
.y2b{bottom:663.139950px;}
.y84{bottom:668.424150px;}
.ya3{bottom:668.436150px;}
.yc1{bottom:668.454150px;}
.y44{bottom:678.960150px;}
.ye{bottom:679.735050px;}
.y83{bottom:691.680150px;}
.ya2{bottom:691.692150px;}
.yc0{bottom:691.710150px;}
.y2a{bottom:699.139950px;}
.y43{bottom:701.460150px;}
.yd{bottom:701.479050px;}
.y82{bottom:714.936150px;}
.ya1{bottom:714.948150px;}
.yc{bottom:723.223050px;}
.y42{bottom:723.960150px;}
.y29{bottom:735.139950px;}
.y81{bottom:738.192150px;}
.ya0{bottom:738.204150px;}
.yb{bottom:744.967050px;}
.y41{bottom:746.460150px;}
.y80{bottom:761.448150px;}
.y9f{bottom:761.460150px;}
.ya{bottom:766.711050px;}
.y40{bottom:768.960150px;}
.y7f{bottom:784.704150px;}
.y9{bottom:788.455050px;}
.y3f{bottom:791.460150px;}
.y9e{bottom:807.918150px;}
.y7e{bottom:807.960150px;}
.y8{bottom:810.199050px;}
.y3e{bottom:813.960150px;}
.y9d{bottom:831.174150px;}
.y7d{bottom:831.210150px;}
.y7{bottom:831.943050px;}
.y3d{bottom:836.460150px;}
.y7c{bottom:854.430150px;}
.ybf{bottom:854.460150px;}
.y3c{bottom:858.960150px;}
.y6{bottom:876.938550px;}
.y7b{bottom:877.686150px;}
.ybe{bottom:877.710150px;}
.y3b{bottom:881.460150px;}
.y5{bottom:897.943050px;}
.ybd{bottom:900.924150px;}
.y7a{bottom:900.942150px;}
.y3a{bottom:903.960150px;}
.y4{bottom:918.943050px;}
.ybc{bottom:924.180150px;}
.y79{bottom:924.198150px;}
.y39{bottom:926.460150px;}
.ybb{bottom:947.436150px;}
.y78{bottom:947.454150px;}
.y38{bottom:948.960150px;}
.y3{bottom:968.443050px;}
.yba{bottom:970.692150px;}
.y77{bottom:970.710150px;}
.y37{bottom:971.460150px;}
.yb9{bottom:993.948150px;}
.y36{bottom:993.960150px;}
.y35{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y34{bottom:1039.374150px;}
.hd{height:34.176000px;}
.hc{height:34.560000px;}
.he{height:37.494141px;}
.h8{height:40.634766px;}
.h9{height:41.660156px;}
.hb{height:42.000000px;}
.ha{height:42.720000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h5{height:54.600000px;}
.h4{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x9{left:63.779550px;}
.x2{left:65.202600px;}
.x8{left:73.559100px;}
.x1{left:74.853150px;}
.xe{left:85.039350px;}
.x16{left:176.257200px;}
.x15{left:185.152050px;}
.x7{left:224.187900px;}
.xf{left:256.597350px;}
.x18{left:292.129350px;}
.x3{left:299.790150px;}
.xd{left:374.424150px;}
.x10{left:399.935850px;}
.xc{left:412.272150px;}
.x12{left:421.195650px;}
.x1a{left:426.935850px;}
.x4{left:487.408350px;}
.x11{left:497.651550px;}
.x5{left:502.325550px;}
.x14{left:545.828400px;}
.x19{left:597.829650px;}
.xb{left:614.196150px;}
.xa{left:632.875800px;}
.x6{left:648.598050px;}
.x17{left:704.588550px;}
.x13{left:710.580450px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls3{letter-spacing:-0.682667pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.256000pt;}
.ws3{word-spacing:-64.256000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws9{word-spacing:-63.808000pt;}
.wse{word-spacing:-54.464000pt;}
.ws1d{word-spacing:-54.400000pt;}
.ws79{word-spacing:-54.208000pt;}
.ws11{word-spacing:-53.888000pt;}
.ws26{word-spacing:-53.312000pt;}
.ws4b{word-spacing:-50.944000pt;}
.ws81{word-spacing:-50.560000pt;}
.ws1c{word-spacing:-49.792000pt;}
.ws22{word-spacing:-49.344000pt;}
.ws5d{word-spacing:-48.960000pt;}
.ws6d{word-spacing:-48.704000pt;}
.ws76{word-spacing:-48.000000pt;}
.wsb{word-spacing:-47.872000pt;}
.ws84{word-spacing:-47.168000pt;}
.ws7b{word-spacing:-46.976000pt;}
.ws3e{word-spacing:-46.784000pt;}
.ws86{word-spacing:-46.656000pt;}
.ws85{word-spacing:-46.080000pt;}
.ws8{word-spacing:-45.824000pt;}
.ws6{word-spacing:-44.608000pt;}
.ws8a{word-spacing:-44.544000pt;}
.wsc{word-spacing:-44.288000pt;}
.ws3a{word-spacing:-44.032000pt;}
.wsa{word-spacing:-43.968000pt;}
.ws20{word-spacing:-41.728000pt;}
.ws40{word-spacing:-41.088000pt;}
.ws8e{word-spacing:-40.128000pt;}
.ws7{word-spacing:-40.000000pt;}
.ws4d{word-spacing:-38.720000pt;}
.ws2a{word-spacing:-38.336000pt;}
.ws6a{word-spacing:-37.824000pt;}
.ws15{word-spacing:-36.544000pt;}
.ws90{word-spacing:-34.880000pt;}
.ws12{word-spacing:-34.560000pt;}
.ws57{word-spacing:-33.728000pt;}
.ws13{word-spacing:-33.664000pt;}
.ws14{word-spacing:-33.280000pt;}
.ws52{word-spacing:-31.680000pt;}
.ws23{word-spacing:-30.592000pt;}
.ws30{word-spacing:-29.824000pt;}
.ws5{word-spacing:-28.992000pt;}
.ws61{word-spacing:-28.864000pt;}
.ws47{word-spacing:-28.608000pt;}
.ws82{word-spacing:-28.352000pt;}
.ws54{word-spacing:-28.032000pt;}
.ws73{word-spacing:-27.712000pt;}
.ws3d{word-spacing:-27.590400pt;}
.ws62{word-spacing:-23.744000pt;}
.ws34{word-spacing:-23.424000pt;}
.ws38{word-spacing:-23.104000pt;}
.ws37{word-spacing:-22.656000pt;}
.ws5e{word-spacing:-21.632000pt;}
.ws16{word-spacing:-21.120000pt;}
.ws6f{word-spacing:-20.096000pt;}
.wsd{word-spacing:-18.944000pt;}
.ws78{word-spacing:-18.752000pt;}
.ws1b{word-spacing:-17.984000pt;}
.ws77{word-spacing:-16.512000pt;}
.ws7d{word-spacing:-16.000000pt;}
.ws59{word-spacing:-13.696000pt;}
.ws41{word-spacing:-12.736000pt;}
.ws3f{word-spacing:-11.648000pt;}
.ws53{word-spacing:-10.796800pt;}
.ws70{word-spacing:-10.048000pt;}
.ws56{word-spacing:-9.408000pt;}
.ws4f{word-spacing:-7.808000pt;}
.ws10{word-spacing:-7.680000pt;}
.ws4e{word-spacing:-7.360000pt;}
.ws50{word-spacing:-5.952000pt;}
.ws7f{word-spacing:-5.440000pt;}
.ws2{word-spacing:-5.049600pt;}
.ws64{word-spacing:-4.352000pt;}
.ws80{word-spacing:-3.968000pt;}
.ws75{word-spacing:-3.776000pt;}
.ws8b{word-spacing:-3.712000pt;}
.ws67{word-spacing:-3.520000pt;}
.ws6c{word-spacing:-3.392000pt;}
.ws7a{word-spacing:-2.688000pt;}
.ws83{word-spacing:-1.408000pt;}
.ws46{word-spacing:-1.088000pt;}
.ws1e{word-spacing:-0.832000pt;}
.ws17{word-spacing:-0.053333pt;}
.ws25{word-spacing:-0.048000pt;}
.ws18{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.064000pt;}
.ws1a{word-spacing:0.640000pt;}
.ws2f{word-spacing:1.344000pt;}
.ws33{word-spacing:1.984000pt;}
.ws51{word-spacing:2.304000pt;}
.ws21{word-spacing:2.432000pt;}
.ws87{word-spacing:3.840000pt;}
.ws68{word-spacing:8.000000pt;}
.wsf{word-spacing:9.216000pt;}
.ws69{word-spacing:10.816000pt;}
.ws1f{word-spacing:11.136000pt;}
.ws7e{word-spacing:12.544000pt;}
.ws6b{word-spacing:13.568000pt;}
.ws39{word-spacing:13.760000pt;}
.ws2e{word-spacing:14.912000pt;}
.ws45{word-spacing:15.360000pt;}
.ws27{word-spacing:18.176000pt;}
.ws32{word-spacing:19.392000pt;}
.ws4c{word-spacing:20.480000pt;}
.ws5a{word-spacing:20.672000pt;}
.ws2d{word-spacing:20.992000pt;}
.ws2c{word-spacing:24.448000pt;}
.ws72{word-spacing:28.352000pt;}
.ws28{word-spacing:32.704000pt;}
.ws48{word-spacing:34.688000pt;}
.ws2b{word-spacing:36.352000pt;}
.ws6e{word-spacing:36.864000pt;}
.ws8c{word-spacing:37.952000pt;}
.ws35{word-spacing:39.424000pt;}
.ws88{word-spacing:39.744000pt;}
.ws8d{word-spacing:40.064000pt;}
.ws31{word-spacing:42.624000pt;}
.ws0{word-spacing:42.685333pt;}
.ws5b{word-spacing:42.816000pt;}
.ws63{word-spacing:45.696000pt;}
.ws58{word-spacing:48.064000pt;}
.ws8f{word-spacing:48.774400pt;}
.ws66{word-spacing:49.920000pt;}
.ws4a{word-spacing:51.328000pt;}
.ws74{word-spacing:54.144000pt;}
.ws29{word-spacing:57.152000pt;}
.ws65{word-spacing:60.032000pt;}
.ws60{word-spacing:65.728000pt;}
.ws3b{word-spacing:67.712000pt;}
.ws89{word-spacing:70.656000pt;}
.ws44{word-spacing:70.976000pt;}
.ws36{word-spacing:75.584000pt;}
.ws5f{word-spacing:88.832000pt;}
.ws55{word-spacing:107.264000pt;}
.ws5c{word-spacing:110.976000pt;}
.ws43{word-spacing:117.760000pt;}
.ws71{word-spacing:180.358400pt;}
.ws49{word-spacing:194.560000pt;}
.ws24{word-spacing:199.040000pt;}
.ws42{word-spacing:201.792000pt;}
.ws1{word-spacing:343.390933pt;}
.ws3c{word-spacing:530.752000pt;}
.ws19{word-spacing:1523.891200pt;}
._d{margin-left:-16.646400pt;}
._2{margin-left:-13.568000pt;}
._10{margin-left:-11.328000pt;}
._13{margin-left:-9.926400pt;}
._0{margin-left:-8.710400pt;}
._1{margin-left:-7.424000pt;}
._11{margin-left:-6.464000pt;}
._c{margin-left:-5.056000pt;}
._7{margin-left:-4.032000pt;}
._6{margin-left:-2.688000pt;}
._9{margin-left:-1.008000pt;}
._a{width:1.216000pt;}
._3{width:2.304000pt;}
._e{width:3.776000pt;}
._8{width:5.376000pt;}
._17{width:6.720000pt;}
._4{width:7.744000pt;}
._5{width:58.950400pt;}
._b{width:64.505600pt;}
._16{width:66.041600pt;}
._f{width:76.473600pt;}
._14{width:132.153600pt;}
._12{width:210.041600pt;}
._15{width:286.073600pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y33{bottom:57.564933pt;}
.y32{bottom:58.299200pt;}
.y9c{bottom:77.520133pt;}
.y28{bottom:80.171600pt;}
.y5d{bottom:83.520133pt;}
.y76{bottom:88.149467pt;}
.y9b{bottom:98.186800pt;}
.y27{bottom:100.171600pt;}
.yd8{bottom:102.165467pt;}
.y5c{bottom:103.520133pt;}
.y75{bottom:108.821467pt;}
.yb8{bottom:118.837467pt;}
.y9a{bottom:118.853467pt;}
.y26{bottom:119.504933pt;}
.yd7{bottom:122.165467pt;}
.y5b{bottom:123.520133pt;}
.y74{bottom:129.493467pt;}
.y25{bottom:138.918267pt;}
.yb7{bottom:139.509467pt;}
.y99{bottom:139.520133pt;}
.yd6{bottom:142.165467pt;}
.y5a{bottom:143.520133pt;}
.y73{bottom:150.165467pt;}
.y24{bottom:158.246267pt;}
.yb6{bottom:160.181467pt;}
.y98{bottom:160.186800pt;}
.yd5{bottom:162.165467pt;}
.y5e{bottom:163.520133pt;}
.y72{bottom:170.837467pt;}
.y23{bottom:177.574267pt;}
.y97{bottom:180.853467pt;}
.yd4{bottom:182.165467pt;}
.y59{bottom:183.520133pt;}
.y71{bottom:191.509467pt;}
.y22{bottom:196.902267pt;}
.y96{bottom:201.520133pt;}
.yd3{bottom:202.165467pt;}
.y58{bottom:203.520133pt;}
.y70{bottom:212.181467pt;}
.y21{bottom:216.230267pt;}
.yb5{bottom:222.112133pt;}
.yd2{bottom:222.165467pt;}
.y95{bottom:222.176133pt;}
.y57{bottom:223.520133pt;}
.y6e{bottom:232.848133pt;}
.y6f{bottom:232.853467pt;}
.y20{bottom:235.558267pt;}
.yb4{bottom:242.784133pt;}
.yd1{bottom:242.837467pt;}
.y94{bottom:242.848133pt;}
.y56{bottom:243.520133pt;}
.y6c{bottom:253.493467pt;}
.y6d{bottom:253.520133pt;}
.y1f{bottom:254.886267pt;}
.yb3{bottom:263.456133pt;}
.yd0{bottom:263.509467pt;}
.y55{bottom:263.520133pt;}
.y6b{bottom:274.165467pt;}
.y1e{bottom:274.214267pt;}
.y54{bottom:283.520133pt;}
.yb2{bottom:284.128133pt;}
.ycf{bottom:284.181467pt;}
.y93{bottom:284.186800pt;}
.y1d{bottom:293.542267pt;}
.y6a{bottom:294.837467pt;}
.y53{bottom:303.520133pt;}
.y92{bottom:304.746800pt;}
.yb1{bottom:304.800133pt;}
.yce{bottom:304.853467pt;}
.y1c{bottom:312.870267pt;}
.y69{bottom:315.509467pt;}
.y52{bottom:323.520133pt;}
.y91{bottom:325.418800pt;}
.yb0{bottom:325.472133pt;}
.y1b{bottom:332.198267pt;}
.y68{bottom:336.181467pt;}
.y51{bottom:343.520133pt;}
.y90{bottom:346.090800pt;}
.yaf{bottom:346.144133pt;}
.ycd{bottom:346.181467pt;}
.y1a{bottom:351.526267pt;}
.y67{bottom:356.853467pt;}
.y50{bottom:363.520133pt;}
.y8f{bottom:366.762800pt;}
.yae{bottom:366.816133pt;}
.ycc{bottom:366.853467pt;}
.y19{bottom:370.854267pt;}
.y66{bottom:377.520133pt;}
.y4f{bottom:383.520133pt;}
.y8e{bottom:387.434800pt;}
.yad{bottom:387.488133pt;}
.ycb{bottom:387.520133pt;}
.y18{bottom:390.182267pt;}
.y65{bottom:398.186800pt;}
.y4e{bottom:403.520133pt;}
.y31{bottom:405.457733pt;}
.y8d{bottom:408.106800pt;}
.yca{bottom:408.133467pt;}
.yac{bottom:408.160133pt;}
.y17{bottom:409.510267pt;}
.y64{bottom:418.837467pt;}
.y4d{bottom:423.520133pt;}
.y30{bottom:425.457733pt;}
.y8c{bottom:428.778800pt;}
.yc9{bottom:428.805467pt;}
.yab{bottom:428.832133pt;}
.y16{bottom:428.838267pt;}
.y63{bottom:439.509467pt;}
.y4c{bottom:443.520133pt;}
.y2f{bottom:445.457733pt;}
.y8b{bottom:449.450800pt;}
.yc8{bottom:449.477467pt;}
.yaa{bottom:449.504133pt;}
.y62{bottom:460.181467pt;}
.y4b{bottom:463.520133pt;}
.y15{bottom:468.912933pt;}
.y8a{bottom:470.122800pt;}
.yc7{bottom:470.149467pt;}
.ya9{bottom:470.176133pt;}
.y61{bottom:480.853467pt;}
.y2e{bottom:481.457733pt;}
.y4a{bottom:483.520133pt;}
.y14{bottom:488.240933pt;}
.y89{bottom:490.794800pt;}
.yc6{bottom:490.821467pt;}
.ya8{bottom:490.848133pt;}
.y49{bottom:503.520133pt;}
.y13{bottom:507.568933pt;}
.y88{bottom:511.466800pt;}
.yc5{bottom:511.493467pt;}
.ya7{bottom:511.520133pt;}
.y2d{bottom:521.457733pt;}
.y60{bottom:522.176133pt;}
.y48{bottom:523.520133pt;}
.y12{bottom:526.896933pt;}
.y87{bottom:532.138800pt;}
.yc4{bottom:532.165467pt;}
.ya6{bottom:532.186800pt;}
.y5f{bottom:542.848133pt;}
.y47{bottom:543.520133pt;}
.y11{bottom:546.224933pt;}
.y86{bottom:552.810800pt;}
.ya5{bottom:552.821467pt;}
.yc3{bottom:552.837467pt;}
.y2c{bottom:557.457733pt;}
.y46{bottom:563.520133pt;}
.y10{bottom:565.552933pt;}
.y85{bottom:573.482800pt;}
.ya4{bottom:573.493467pt;}
.yc2{bottom:573.509467pt;}
.y45{bottom:583.520133pt;}
.yf{bottom:584.880933pt;}
.y2b{bottom:589.457733pt;}
.y84{bottom:594.154800pt;}
.ya3{bottom:594.165467pt;}
.yc1{bottom:594.181467pt;}
.y44{bottom:603.520133pt;}
.ye{bottom:604.208933pt;}
.y83{bottom:614.826800pt;}
.ya2{bottom:614.837467pt;}
.yc0{bottom:614.853467pt;}
.y2a{bottom:621.457733pt;}
.y43{bottom:623.520133pt;}
.yd{bottom:623.536933pt;}
.y82{bottom:635.498800pt;}
.ya1{bottom:635.509467pt;}
.yc{bottom:642.864933pt;}
.y42{bottom:643.520133pt;}
.y29{bottom:653.457733pt;}
.y81{bottom:656.170800pt;}
.ya0{bottom:656.181467pt;}
.yb{bottom:662.192933pt;}
.y41{bottom:663.520133pt;}
.y80{bottom:676.842800pt;}
.y9f{bottom:676.853467pt;}
.ya{bottom:681.520933pt;}
.y40{bottom:683.520133pt;}
.y7f{bottom:697.514800pt;}
.y9{bottom:700.848933pt;}
.y3f{bottom:703.520133pt;}
.y9e{bottom:718.149467pt;}
.y7e{bottom:718.186800pt;}
.y8{bottom:720.176933pt;}
.y3e{bottom:723.520133pt;}
.y9d{bottom:738.821467pt;}
.y7d{bottom:738.853467pt;}
.y7{bottom:739.504933pt;}
.y3d{bottom:743.520133pt;}
.y7c{bottom:759.493467pt;}
.ybf{bottom:759.520133pt;}
.y3c{bottom:763.520133pt;}
.y6{bottom:779.500933pt;}
.y7b{bottom:780.165467pt;}
.ybe{bottom:780.186800pt;}
.y3b{bottom:783.520133pt;}
.y5{bottom:798.171600pt;}
.ybd{bottom:800.821467pt;}
.y7a{bottom:800.837467pt;}
.y3a{bottom:803.520133pt;}
.y4{bottom:816.838267pt;}
.ybc{bottom:821.493467pt;}
.y79{bottom:821.509467pt;}
.y39{bottom:823.520133pt;}
.ybb{bottom:842.165467pt;}
.y78{bottom:842.181467pt;}
.y38{bottom:843.520133pt;}
.y3{bottom:860.838267pt;}
.yba{bottom:862.837467pt;}
.y77{bottom:862.853467pt;}
.y37{bottom:863.520133pt;}
.yb9{bottom:883.509467pt;}
.y36{bottom:883.520133pt;}
.y35{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y34{bottom:923.888133pt;}
.hd{height:30.378667pt;}
.hc{height:30.720000pt;}
.he{height:33.328125pt;}
.h8{height:36.119792pt;}
.h9{height:37.031250pt;}
.hb{height:37.333333pt;}
.ha{height:37.973333pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h5{height:48.533333pt;}
.h4{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x9{left:56.692933pt;}
.x2{left:57.957867pt;}
.x8{left:65.385867pt;}
.x1{left:66.536133pt;}
.xe{left:75.590533pt;}
.x16{left:156.673067pt;}
.x15{left:164.579600pt;}
.x7{left:199.278133pt;}
.xf{left:228.086533pt;}
.x18{left:259.670533pt;}
.x3{left:266.480133pt;}
.xd{left:332.821467pt;}
.x10{left:355.498533pt;}
.xc{left:366.464133pt;}
.x12{left:374.396133pt;}
.x1a{left:379.498533pt;}
.x4{left:433.251867pt;}
.x11{left:442.356933pt;}
.x5{left:446.511600pt;}
.x14{left:485.180800pt;}
.x19{left:531.404133pt;}
.xb{left:545.952133pt;}
.xa{left:562.556267pt;}
.x6{left:576.531600pt;}
.x17{left:626.300933pt;}
.x13{left:631.627067pt;}
}




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