
    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_7975e8c72e81cea6436e783f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.953000;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_2acb35892e7a1e671dbb63e8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.963000;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_efa3bbf851d988971e6ccaa4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.716000;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_8c5ef0c03c0d59f99be63125.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104000;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_afed552942ad029d82967894.woff')format("woff");}.ff5{font-family:ff5;line-height:1.159000;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_d1a41453d28bbcb283eb9f07.woff')format("woff");}.ff6{font-family:ff6;line-height:1.020000;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_436d01ff2c766fd10b4bac27.woff')format("woff");}.ff7{font-family:ff7;line-height:0.869141;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_0ad8cabb27f92fb05e0d77bb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.087402;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_b101c2d90a8d003e1772f7e6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.918945;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_83a4c245cbe7040ce45a7419.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682129;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_301f2c1eff5c4049931f038a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.104000;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_f2a3780ba8c7fe64183e234b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.919434;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_b6c479f3de4733fc599d373a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.919922;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_e77c9424cc0bd9686272136e.woff')format("woff");}.ffe{font-family:ffe;line-height:1.089844;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_a7188dec5a18a6d3d34329a4.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;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_9a88f8f3b3535d6412a80245.woff')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v4{vertical-align:-17.820000px;}
.v2{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.v3{vertical-align:21.780000px;}
.ls3{letter-spacing:-1.320000px;}
.ls2{letter-spacing:-0.660000px;}
.ls1{letter-spacing:-0.480000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:6.425400px;}
.ls6{letter-spacing:10.452600px;}
.ls4{letter-spacing:16.703400px;}
.ls7{letter-spacing:18.627000px;}
.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;}
}
.ws5{word-spacing:-66.000000px;}
.ws3{word-spacing:-65.340000px;}
.ws32{word-spacing:-64.680000px;}
.ws62{word-spacing:-55.176000px;}
.ws86{word-spacing:-55.110000px;}
.ws92{word-spacing:-55.044000px;}
.ws71{word-spacing:-54.978000px;}
.ws46{word-spacing:-54.912000px;}
.ws33{word-spacing:-54.846000px;}
.ws3d{word-spacing:-54.780000px;}
.ws75{word-spacing:-54.648000px;}
.ws87{word-spacing:-54.582000px;}
.wsa8{word-spacing:-54.516000px;}
.ws53{word-spacing:-54.417000px;}
.ws4b{word-spacing:-54.384000px;}
.ws68{word-spacing:-54.318000px;}
.ws2b{word-spacing:-54.252000px;}
.ws59{word-spacing:-54.186000px;}
.ws55{word-spacing:-54.120000px;}
.ws8d{word-spacing:-54.054000px;}
.ws48{word-spacing:-54.000000px;}
.ws6d{word-spacing:-53.988000px;}
.ws74{word-spacing:-53.922000px;}
.ws90{word-spacing:-53.856000px;}
.ws80{word-spacing:-53.790000px;}
.ws9f{word-spacing:-53.724000px;}
.ws4{word-spacing:-53.526000px;}
.ws7c{word-spacing:-53.394000px;}
.ws2e{word-spacing:-53.328000px;}
.ws41{word-spacing:-53.262000px;}
.ws72{word-spacing:-53.196000px;}
.ws60{word-spacing:-53.130000px;}
.ws6{word-spacing:-53.064000px;}
.ws9e{word-spacing:-52.998000px;}
.ws45{word-spacing:-52.959000px;}
.ws7{word-spacing:-52.866000px;}
.ws64{word-spacing:-52.734000px;}
.ws5a{word-spacing:-52.602000px;}
.ws34{word-spacing:-52.536000px;}
.ws3f{word-spacing:-52.470000px;}
.wsa6{word-spacing:-52.404000px;}
.ws5e{word-spacing:-52.338000px;}
.ws8a{word-spacing:-52.272000px;}
.ws82{word-spacing:-52.206000px;}
.ws4c{word-spacing:-52.074000px;}
.ws4a{word-spacing:-51.942000px;}
.ws35{word-spacing:-51.810000px;}
.ws96{word-spacing:-51.678000px;}
.ws7f{word-spacing:-51.612000px;}
.ws73{word-spacing:-51.546000px;}
.ws9c{word-spacing:-51.480000px;}
.ws37{word-spacing:-51.348000px;}
.ws8{word-spacing:-51.216000px;}
.ws89{word-spacing:-51.018000px;}
.ws5c{word-spacing:-50.952000px;}
.ws9b{word-spacing:-50.886000px;}
.ws76{word-spacing:-50.754000px;}
.ws63{word-spacing:-50.688000px;}
.wsa1{word-spacing:-50.622000px;}
.ws56{word-spacing:-50.424000px;}
.ws7d{word-spacing:-50.358000px;}
.ws31{word-spacing:-50.292000px;}
.ws88{word-spacing:-50.160000px;}
.ws98{word-spacing:-50.094000px;}
.ws52{word-spacing:-49.995000px;}
.ws49{word-spacing:-49.962000px;}
.ws8b{word-spacing:-49.830000px;}
.ws44{word-spacing:-49.632000px;}
.ws5b{word-spacing:-49.368000px;}
.ws93{word-spacing:-49.302000px;}
.ws91{word-spacing:-49.236000px;}
.ws8c{word-spacing:-49.104000px;}
.ws77{word-spacing:-49.038000px;}
.ws99{word-spacing:-48.774000px;}
.ws6e{word-spacing:-48.510000px;}
.ws2c{word-spacing:-48.312000px;}
.ws5f{word-spacing:-48.246000px;}
.ws3e{word-spacing:-47.916000px;}
.ws83{word-spacing:-47.652000px;}
.wsb0{word-spacing:-47.586000px;}
.ws2{word-spacing:-47.520000px;}
.ws61{word-spacing:-47.388000px;}
.wsab{word-spacing:-47.322000px;}
.ws9a{word-spacing:-46.860000px;}
.ws79{word-spacing:-46.662000px;}
.ws81{word-spacing:-46.596000px;}
.ws2f{word-spacing:-46.332000px;}
.wsad{word-spacing:-46.266000px;}
.ws2d{word-spacing:-46.200000px;}
.ws50{word-spacing:-45.870000px;}
.ws8f{word-spacing:-45.738000px;}
.wsb1{word-spacing:-45.672000px;}
.ws43{word-spacing:-45.474000px;}
.wsa4{word-spacing:-45.276000px;}
.ws8e{word-spacing:-45.078000px;}
.ws3c{word-spacing:-44.418000px;}
.wsa7{word-spacing:-44.286000px;}
.wsa5{word-spacing:-44.022000px;}
.ws30{word-spacing:-43.956000px;}
.wsac{word-spacing:-43.626000px;}
.ws67{word-spacing:-43.032000px;}
.ws54{word-spacing:-42.702000px;}
.ws40{word-spacing:-42.570000px;}
.wsa9{word-spacing:-42.498000px;}
.ws66{word-spacing:-42.438000px;}
.ws4d{word-spacing:-42.012000px;}
.ws97{word-spacing:-41.712000px;}
.wsa0{word-spacing:-41.382000px;}
.ws70{word-spacing:-40.854000px;}
.ws65{word-spacing:-40.326000px;}
.ws7b{word-spacing:-39.996000px;}
.wsa3{word-spacing:-39.468000px;}
.ws5d{word-spacing:-39.402000px;}
.ws1{word-spacing:-39.000000px;}
.ws9d{word-spacing:-38.742000px;}
.ws7a{word-spacing:-38.280000px;}
.ws4e{word-spacing:-37.530000px;}
.ws3b{word-spacing:-36.036000px;}
.ws58{word-spacing:-35.178000px;}
.wsa2{word-spacing:-33.396000px;}
.ws57{word-spacing:-31.482000px;}
.ws7e{word-spacing:-31.320000px;}
.wsaf{word-spacing:-28.566600px;}
.ws6f{word-spacing:-18.282000px;}
.ws51{word-spacing:-14.520000px;}
.ws36{word-spacing:-13.860000px;}
.ws42{word-spacing:-8.421600px;}
.ws47{word-spacing:-6.890400px;}
.ws0{word-spacing:-6.124800px;}
.ws6b{word-spacing:-3.762000px;}
.ws4f{word-spacing:-2.772000px;}
.ws24{word-spacing:-2.640000px;}
.ws23{word-spacing:-2.112000px;}
.ws10{word-spacing:-1.680000px;}
.wsc{word-spacing:-1.584000px;}
.ws11{word-spacing:-1.440000px;}
.ws20{word-spacing:-1.248000px;}
.ws27{word-spacing:-0.624000px;}
.ws2a{word-spacing:-0.576000px;}
.ws28{word-spacing:-0.288000px;}
.ws29{word-spacing:-0.096000px;}
.ws6c{word-spacing:-0.066000px;}
.ws9{word-spacing:0.000000px;}
.ws39{word-spacing:0.660000px;}
.ws25{word-spacing:0.912000px;}
.ws3a{word-spacing:1.320000px;}
.ws69{word-spacing:1.386000px;}
.ws14{word-spacing:2.208000px;}
.ws13{word-spacing:2.448000px;}
.ws26{word-spacing:2.736000px;}
.ws21{word-spacing:3.120000px;}
.ws94{word-spacing:3.630000px;}
.ws95{word-spacing:3.828000px;}
.wsaa{word-spacing:4.092000px;}
.ws12{word-spacing:4.176000px;}
.wse{word-spacing:4.800000px;}
.wsb{word-spacing:5.424000px;}
.ws1e{word-spacing:6.000000px;}
.wsd{word-spacing:6.480000px;}
.ws18{word-spacing:6.672000px;}
.ws16{word-spacing:6.960000px;}
.wsf{word-spacing:7.344000px;}
.ws22{word-spacing:7.824000px;}
.ws1d{word-spacing:8.688000px;}
.ws1f{word-spacing:8.784000px;}
.ws1b{word-spacing:8.832000px;}
.ws19{word-spacing:11.856000px;}
.ws1a{word-spacing:12.720000px;}
.ws6a{word-spacing:13.200000px;}
.ws85{word-spacing:14.454000px;}
.ws17{word-spacing:14.736000px;}
.wsae{word-spacing:14.916000px;}
.ws15{word-spacing:16.608000px;}
.ws1c{word-spacing:17.952000px;}
.ws38{word-spacing:19.206000px;}
.ws78{word-spacing:19.734000px;}
.ws84{word-spacing:20.460000px;}
.wsa{word-spacing:30.624000px;}
._13{margin-left:-48.838800px;}
._12{margin-left:-6.996000px;}
._d{margin-left:-5.478000px;}
._c{margin-left:-4.290000px;}
._5{margin-left:-3.217200px;}
._0{margin-left:-1.732800px;}
._1{width:1.263840px;}
._3{width:3.102000px;}
._a{width:4.214160px;}
._6{width:5.280000px;}
._7{width:6.402000px;}
._4{width:7.854000px;}
._8{width:9.900000px;}
._9{width:11.292600px;}
._b{width:13.054800px;}
._11{width:15.906000px;}
._f{width:17.788200px;}
._e{width:19.554600px;}
._10{width:22.978800px;}
._2{width:24.048000px;}
._14{width:31.033200px;}
._15{width:37.433400px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.840000px;}
.fs7{font-size:31.320000px;}
.fs4{font-size:34.800000px;}
.fs6{font-size:38.280000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:79.023450px;}
.yb7{bottom:127.558950px;}
.ycc{bottom:127.559100px;}
.y11c{bottom:130.191450px;}
.y26{bottom:130.795500px;}
.y113{bottom:131.841450px;}
.y72{bottom:133.433550px;}
.ya3{bottom:133.883550px;}
.ye0{bottom:141.937350px;}
.yf4{bottom:142.387500px;}
.yb6{bottom:143.758950px;}
.ycb{bottom:143.759100px;}
.y25{bottom:145.195500px;}
.y11b{bottom:150.441450px;}
.y112{bottom:150.891450px;}
.ya2{bottom:152.933550px;}
.y71{bottom:153.683550px;}
.y24{bottom:159.595500px;}
.yb5{bottom:159.958950px;}
.yca{bottom:159.959100px;}
.yf3{bottom:161.437500px;}
.ydf{bottom:162.187350px;}
.y111{bottom:169.941450px;}
.y11a{bottom:170.691450px;}
.ya1{bottom:171.983550px;}
.y70{bottom:173.933550px;}
.yb4{bottom:176.158950px;}
.yc9{bottom:176.159100px;}
.y23{bottom:177.955500px;}
.yf2{bottom:180.487500px;}
.yde{bottom:182.437350px;}
.y110{bottom:188.991450px;}
.y119{bottom:190.941450px;}
.ya0{bottom:191.033550px;}
.yb3{bottom:192.358950px;}
.yc8{bottom:192.359100px;}
.y6f{bottom:194.183550px;}
.y142{bottom:196.813950px;}
.y11f{bottom:196.814100px;}
.yf1{bottom:199.537500px;}
.ydd{bottom:202.687350px;}
.y10f{bottom:208.041450px;}
.yb2{bottom:208.559100px;}
.y9f{bottom:210.083550px;}
.y10b{bottom:211.191450px;}
.y6e{bottom:214.433550px;}
.y141{bottom:218.587350px;}
.yf0{bottom:218.587500px;}
.ydc{bottom:222.937350px;}
.yc7{bottom:224.759100px;}
.y10e{bottom:227.091450px;}
.y9e{bottom:229.133550px;}
.yb1{bottom:229.214100px;}
.y10a{bottom:231.441450px;}
.y6d{bottom:234.683550px;}
.y140{bottom:237.637350px;}
.yef{bottom:237.637500px;}
.y107{bottom:240.959100px;}
.y109{bottom:240.959250px;}
.ydb{bottom:243.187350px;}
.yc6{bottom:245.414100px;}
.y10d{bottom:246.141450px;}
.y9d{bottom:248.183550px;}
.yb0{bottom:251.691450px;}
.y6c{bottom:254.933550px;}
.y13f{bottom:256.687350px;}
.yee{bottom:256.687500px;}
.y106{bottom:261.614100px;}
.y108{bottom:261.614250px;}
.yda{bottom:263.437350px;}
.y10c{bottom:265.191450px;}
.y42{bottom:266.743350px;}
.y9c{bottom:267.233550px;}
.y34{bottom:270.193350px;}
.yaf{bottom:271.941450px;}
.y6b{bottom:275.183550px;}
.y13e{bottom:275.737350px;}
.yed{bottom:275.737500px;}
.yd9{bottom:283.687350px;}
.yc5{bottom:284.241450px;}
.y41{bottom:285.793350px;}
.y9b{bottom:286.283550px;}
.y33{bottom:290.443350px;}
.yae{bottom:292.191450px;}
.y13d{bottom:294.787350px;}
.yec{bottom:294.787500px;}
.yc4{bottom:303.291450px;}
.y6a{bottom:303.937350px;}
.y40{bottom:304.843350px;}
.y9a{bottom:305.333550px;}
.y32{bottom:310.693350px;}
.yad{bottom:312.441450px;}
.y13c{bottom:313.837350px;}
.yeb{bottom:313.837500px;}
.yc3{bottom:322.341450px;}
.y3f{bottom:323.893350px;}
.yd8{bottom:324.187350px;}
.y31{bottom:330.943350px;}
.yac{bottom:332.691450px;}
.y13b{bottom:332.887350px;}
.y99{bottom:332.887500px;}
.yc2{bottom:341.391450px;}
.y3e{bottom:342.943350px;}
.y69{bottom:344.437350px;}
.y30{bottom:351.193350px;}
.y13a{bottom:351.937350px;}
.yea{bottom:351.937500px;}
.yab{bottom:352.941450px;}
.yc1{bottom:360.441450px;}
.y3d{bottom:361.993350px;}
.y68{bottom:364.687350px;}
.y139{bottom:370.987350px;}
.y98{bottom:370.987500px;}
.y2f{bottom:371.443350px;}
.yaa{bottom:373.191450px;}
.yc0{bottom:379.491450px;}
.y3c{bottom:381.043350px;}
.y67{bottom:384.937500px;}
.y138{bottom:390.037350px;}
.y97{bottom:390.037500px;}
.y2e{bottom:391.693350px;}
.ya9{bottom:393.441450px;}
.ybf{bottom:398.541450px;}
.y3b{bottom:400.093350px;}
.y66{bottom:405.187500px;}
.y137{bottom:409.087350px;}
.y96{bottom:409.087500px;}
.y2d{bottom:411.943350px;}
.ya8{bottom:413.691450px;}
.ybe{bottom:417.591450px;}
.y3a{bottom:419.143350px;}
.y65{bottom:425.437500px;}
.y136{bottom:428.137350px;}
.y95{bottom:428.137500px;}
.y2c{bottom:432.193350px;}
.ya7{bottom:433.941450px;}
.ybd{bottom:436.641450px;}
.y39{bottom:438.193350px;}
.y64{bottom:445.687500px;}
.y135{bottom:447.187350px;}
.y94{bottom:447.187500px;}
.y2b{bottom:452.443350px;}
.ya6{bottom:454.191450px;}
.ybc{bottom:455.691450px;}
.y38{bottom:457.243350px;}
.y63{bottom:465.937500px;}
.y134{bottom:466.237350px;}
.y93{bottom:466.237500px;}
.y2a{bottom:472.693350px;}
.ya5{bottom:474.441450px;}
.ybb{bottom:474.741450px;}
.y37{bottom:476.293350px;}
.y133{bottom:485.287350px;}
.y92{bottom:485.287500px;}
.yd7{bottom:486.187500px;}
.y29{bottom:492.943350px;}
.yba{bottom:493.791450px;}
.y62{bottom:494.691450px;}
.y36{bottom:495.343350px;}
.y132{bottom:504.337350px;}
.y91{bottom:504.337500px;}
.yd6{bottom:506.437500px;}
.yb9{bottom:512.841450px;}
.y28{bottom:513.193350px;}
.y35{bottom:514.393350px;}
.ya4{bottom:514.941450px;}
.y131{bottom:523.387350px;}
.ye9{bottom:523.387500px;}
.yd5{bottom:526.687500px;}
.y90{bottom:531.891450px;}
.y61{bottom:535.191450px;}
.y27{bottom:541.947300px;}
.y130{bottom:542.437350px;}
.ye8{bottom:542.437500px;}
.yd4{bottom:546.937500px;}
.yb8{bottom:550.941450px;}
.y60{bottom:555.441450px;}
.y12f{bottom:561.487350px;}
.ye7{bottom:561.487500px;}
.yd3{bottom:567.187500px;}
.y8f{bottom:569.991450px;}
.y5f{bottom:575.691450px;}
.y12e{bottom:580.537350px;}
.ye6{bottom:580.537500px;}
.yd2{bottom:587.437500px;}
.y8e{bottom:589.041450px;}
.y5e{bottom:595.941450px;}
.y12d{bottom:599.587350px;}
.ye5{bottom:599.587500px;}
.y22{bottom:602.504850px;}
.yd1{bottom:607.687500px;}
.y8d{bottom:608.091450px;}
.y5d{bottom:616.191450px;}
.y1b{bottom:617.504850px;}
.y12c{bottom:618.637350px;}
.ye4{bottom:618.637500px;}
.y8c{bottom:627.141450px;}
.yd0{bottom:627.937500px;}
.y1a{bottom:632.504850px;}
.y5c{bottom:636.441450px;}
.y12b{bottom:637.687350px;}
.ye3{bottom:637.687500px;}
.y21{bottom:641.008800px;}
.y8b{bottom:646.191450px;}
.ycf{bottom:648.187500px;}
.y19{bottom:656.008800px;}
.y5b{bottom:656.691450px;}
.y12a{bottom:656.737350px;}
.ye2{bottom:656.737500px;}
.y8a{bottom:665.241450px;}
.yce{bottom:668.437500px;}
.y18{bottom:671.008800px;}
.y129{bottom:675.787350px;}
.ye1{bottom:675.787500px;}
.y5a{bottom:676.941450px;}
.y89{bottom:684.291450px;}
.y17{bottom:686.008800px;}
.ycd{bottom:688.687500px;}
.y128{bottom:694.837350px;}
.y105{bottom:694.837500px;}
.y59{bottom:697.191450px;}
.y16{bottom:701.008800px;}
.y88{bottom:703.341450px;}
.yfb{bottom:708.937500px;}
.y127{bottom:713.887350px;}
.y104{bottom:713.887500px;}
.y15{bottom:716.008800px;}
.y58{bottom:717.441450px;}
.y87{bottom:722.391450px;}
.yfa{bottom:729.187500px;}
.y14{bottom:731.008800px;}
.y126{bottom:732.937350px;}
.y103{bottom:732.937500px;}
.y57{bottom:737.691450px;}
.y86{bottom:741.441450px;}
.y14f{bottom:741.833100px;}
.y13{bottom:746.008800px;}
.yf9{bottom:749.437500px;}
.y125{bottom:751.987350px;}
.y102{bottom:751.987500px;}
.y56{bottom:757.941450px;}
.y85{bottom:760.491450px;}
.y12{bottom:761.008800px;}
.y14e{bottom:761.633100px;}
.yf8{bottom:769.687350px;}
.y124{bottom:771.037350px;}
.y101{bottom:771.037500px;}
.y11{bottom:776.008800px;}
.y55{bottom:778.191450px;}
.y84{bottom:779.541450px;}
.y14d{bottom:781.433100px;}
.yf7{bottom:789.937350px;}
.y123{bottom:790.087350px;}
.y100{bottom:790.087500px;}
.y10{bottom:791.008800px;}
.y54{bottom:798.441450px;}
.y83{bottom:798.591450px;}
.y153{bottom:801.232950px;}
.y14c{bottom:801.233100px;}
.yf{bottom:806.008800px;}
.y122{bottom:809.137350px;}
.yff{bottom:809.137500px;}
.yf6{bottom:810.187350px;}
.y82{bottom:817.641450px;}
.y53{bottom:818.691450px;}
.ye{bottom:821.008800px;}
.y152{bottom:821.032950px;}
.y14b{bottom:821.033100px;}
.y121{bottom:828.187350px;}
.yfe{bottom:828.187500px;}
.yf5{bottom:830.437350px;}
.yd{bottom:836.008800px;}
.y81{bottom:836.691450px;}
.y52{bottom:838.941450px;}
.y14a{bottom:840.833100px;}
.yfd{bottom:847.237500px;}
.y11e{bottom:850.687350px;}
.yc{bottom:851.008800px;}
.y80{bottom:855.741450px;}
.y51{bottom:859.191450px;}
.y149{bottom:860.633100px;}
.yb{bottom:866.008800px;}
.yfc{bottom:866.287500px;}
.y11d{bottom:870.937350px;}
.y7f{bottom:874.791450px;}
.y50{bottom:879.441450px;}
.y148{bottom:880.433100px;}
.ya{bottom:881.008800px;}
.y120{bottom:885.337500px;}
.y7e{bottom:893.841450px;}
.y4f{bottom:899.691450px;}
.y151{bottom:900.232950px;}
.y147{bottom:900.233100px;}
.y7d{bottom:912.891300px;}
.y118{bottom:912.891450px;}
.y4e{bottom:919.941450px;}
.y150{bottom:920.032950px;}
.y146{bottom:920.033100px;}
.y7c{bottom:931.941450px;}
.y145{bottom:939.833100px;}
.y4d{bottom:940.191450px;}
.y9{bottom:946.174800px;}
.y20{bottom:946.174950px;}
.y7b{bottom:950.991450px;}
.y4c{bottom:960.441450px;}
.y7a{bottom:970.041450px;}
.y143{bottom:972.098850px;}
.y4b{bottom:980.691450px;}
.y79{bottom:989.091300px;}
.y117{bottom:989.091450px;}
.y144{bottom:997.215000px;}
.y4a{bottom:1000.941450px;}
.y8{bottom:1003.774800px;}
.y1f{bottom:1003.774950px;}
.y78{bottom:1008.141300px;}
.y116{bottom:1008.141450px;}
.y49{bottom:1021.191450px;}
.y7{bottom:1023.574800px;}
.y1e{bottom:1023.574950px;}
.y77{bottom:1027.191450px;}
.y48{bottom:1041.441450px;}
.y6{bottom:1043.374800px;}
.y1d{bottom:1043.374950px;}
.y76{bottom:1046.241450px;}
.y47{bottom:1061.691450px;}
.y5{bottom:1063.174800px;}
.y1c{bottom:1063.174950px;}
.y75{bottom:1065.291450px;}
.y46{bottom:1081.941450px;}
.y74{bottom:1084.341300px;}
.y115{bottom:1084.341450px;}
.y45{bottom:1102.191450px;}
.y73{bottom:1103.391300px;}
.y114{bottom:1103.391450px;}
.y4{bottom:1120.965450px;}
.y44{bottom:1122.441450px;}
.y2{bottom:1167.058200px;}
.y43{bottom:1174.874550px;}
.y1{bottom:1181.458200px;}
.h9{height:25.878750px;}
.h11{height:29.113594px;}
.hb{height:33.632812px;}
.h3{height:35.520000px;}
.h8{height:36.336000px;}
.h2{height:39.960000px;}
.he{height:40.416000px;}
.ha{height:41.718750px;}
.h14{height:42.070312px;}
.h4{height:42.480000px;}
.hc{height:44.504883px;}
.h13{height:46.245117px;}
.hf{height:46.277344px;}
.h12{height:46.933594px;}
.h5{height:50.520000px;}
.h7{height:53.640000px;}
.hd{height:57.363281px;}
.h10{height:57.524414px;}
.h6{height:59.004000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.299150px;}
.x11{left:114.803100px;}
.x5{left:116.946900px;}
.x8{left:119.383200px;}
.x4{left:131.400900px;}
.x6{left:135.063750px;}
.x1{left:139.812900px;}
.x12{left:148.818900px;}
.x17{left:157.398600px;}
.x7{left:213.058650px;}
.x15{left:323.616900px;}
.x16{left:432.294450px;}
.x2{left:434.574450px;}
.x13{left:457.086600px;}
.x9{left:468.113550px;}
.xf{left:470.451900px;}
.xb{left:480.348150px;}
.x19{left:482.616900px;}
.xe{left:491.711700px;}
.x14{left:499.606350px;}
.x18{left:508.186200px;}
.xa{left:510.369450px;}
.xc{left:513.496200px;}
.xd{left:563.846100px;}
.x10{left:574.112700px;}
@media print{
.v4{vertical-align:-15.840000pt;}
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.v3{vertical-align:19.360000pt;}
.ls3{letter-spacing:-1.173333pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls1{letter-spacing:-0.426667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:5.711467pt;}
.ls6{letter-spacing:9.291200pt;}
.ls4{letter-spacing:14.847467pt;}
.ls7{letter-spacing:16.557333pt;}
.ws5{word-spacing:-58.666667pt;}
.ws3{word-spacing:-58.080000pt;}
.ws32{word-spacing:-57.493333pt;}
.ws62{word-spacing:-49.045333pt;}
.ws86{word-spacing:-48.986667pt;}
.ws92{word-spacing:-48.928000pt;}
.ws71{word-spacing:-48.869333pt;}
.ws46{word-spacing:-48.810667pt;}
.ws33{word-spacing:-48.752000pt;}
.ws3d{word-spacing:-48.693333pt;}
.ws75{word-spacing:-48.576000pt;}
.ws87{word-spacing:-48.517333pt;}
.wsa8{word-spacing:-48.458667pt;}
.ws53{word-spacing:-48.370667pt;}
.ws4b{word-spacing:-48.341333pt;}
.ws68{word-spacing:-48.282667pt;}
.ws2b{word-spacing:-48.224000pt;}
.ws59{word-spacing:-48.165333pt;}
.ws55{word-spacing:-48.106667pt;}
.ws8d{word-spacing:-48.048000pt;}
.ws48{word-spacing:-48.000000pt;}
.ws6d{word-spacing:-47.989333pt;}
.ws74{word-spacing:-47.930667pt;}
.ws90{word-spacing:-47.872000pt;}
.ws80{word-spacing:-47.813333pt;}
.ws9f{word-spacing:-47.754667pt;}
.ws4{word-spacing:-47.578667pt;}
.ws7c{word-spacing:-47.461333pt;}
.ws2e{word-spacing:-47.402667pt;}
.ws41{word-spacing:-47.344000pt;}
.ws72{word-spacing:-47.285333pt;}
.ws60{word-spacing:-47.226667pt;}
.ws6{word-spacing:-47.168000pt;}
.ws9e{word-spacing:-47.109333pt;}
.ws45{word-spacing:-47.074667pt;}
.ws7{word-spacing:-46.992000pt;}
.ws64{word-spacing:-46.874667pt;}
.ws5a{word-spacing:-46.757333pt;}
.ws34{word-spacing:-46.698667pt;}
.ws3f{word-spacing:-46.640000pt;}
.wsa6{word-spacing:-46.581333pt;}
.ws5e{word-spacing:-46.522667pt;}
.ws8a{word-spacing:-46.464000pt;}
.ws82{word-spacing:-46.405333pt;}
.ws4c{word-spacing:-46.288000pt;}
.ws4a{word-spacing:-46.170667pt;}
.ws35{word-spacing:-46.053333pt;}
.ws96{word-spacing:-45.936000pt;}
.ws7f{word-spacing:-45.877333pt;}
.ws73{word-spacing:-45.818667pt;}
.ws9c{word-spacing:-45.760000pt;}
.ws37{word-spacing:-45.642667pt;}
.ws8{word-spacing:-45.525333pt;}
.ws89{word-spacing:-45.349333pt;}
.ws5c{word-spacing:-45.290667pt;}
.ws9b{word-spacing:-45.232000pt;}
.ws76{word-spacing:-45.114667pt;}
.ws63{word-spacing:-45.056000pt;}
.wsa1{word-spacing:-44.997333pt;}
.ws56{word-spacing:-44.821333pt;}
.ws7d{word-spacing:-44.762667pt;}
.ws31{word-spacing:-44.704000pt;}
.ws88{word-spacing:-44.586667pt;}
.ws98{word-spacing:-44.528000pt;}
.ws52{word-spacing:-44.440000pt;}
.ws49{word-spacing:-44.410667pt;}
.ws8b{word-spacing:-44.293333pt;}
.ws44{word-spacing:-44.117333pt;}
.ws5b{word-spacing:-43.882667pt;}
.ws93{word-spacing:-43.824000pt;}
.ws91{word-spacing:-43.765333pt;}
.ws8c{word-spacing:-43.648000pt;}
.ws77{word-spacing:-43.589333pt;}
.ws99{word-spacing:-43.354667pt;}
.ws6e{word-spacing:-43.120000pt;}
.ws2c{word-spacing:-42.944000pt;}
.ws5f{word-spacing:-42.885333pt;}
.ws3e{word-spacing:-42.592000pt;}
.ws83{word-spacing:-42.357333pt;}
.wsb0{word-spacing:-42.298667pt;}
.ws2{word-spacing:-42.240000pt;}
.ws61{word-spacing:-42.122667pt;}
.wsab{word-spacing:-42.064000pt;}
.ws9a{word-spacing:-41.653333pt;}
.ws79{word-spacing:-41.477333pt;}
.ws81{word-spacing:-41.418667pt;}
.ws2f{word-spacing:-41.184000pt;}
.wsad{word-spacing:-41.125333pt;}
.ws2d{word-spacing:-41.066667pt;}
.ws50{word-spacing:-40.773333pt;}
.ws8f{word-spacing:-40.656000pt;}
.wsb1{word-spacing:-40.597333pt;}
.ws43{word-spacing:-40.421333pt;}
.wsa4{word-spacing:-40.245333pt;}
.ws8e{word-spacing:-40.069333pt;}
.ws3c{word-spacing:-39.482667pt;}
.wsa7{word-spacing:-39.365333pt;}
.wsa5{word-spacing:-39.130667pt;}
.ws30{word-spacing:-39.072000pt;}
.wsac{word-spacing:-38.778667pt;}
.ws67{word-spacing:-38.250667pt;}
.ws54{word-spacing:-37.957333pt;}
.ws40{word-spacing:-37.840000pt;}
.wsa9{word-spacing:-37.776000pt;}
.ws66{word-spacing:-37.722667pt;}
.ws4d{word-spacing:-37.344000pt;}
.ws97{word-spacing:-37.077333pt;}
.wsa0{word-spacing:-36.784000pt;}
.ws70{word-spacing:-36.314667pt;}
.ws65{word-spacing:-35.845333pt;}
.ws7b{word-spacing:-35.552000pt;}
.wsa3{word-spacing:-35.082667pt;}
.ws5d{word-spacing:-35.024000pt;}
.ws1{word-spacing:-34.666667pt;}
.ws9d{word-spacing:-34.437333pt;}
.ws7a{word-spacing:-34.026667pt;}
.ws4e{word-spacing:-33.360000pt;}
.ws3b{word-spacing:-32.032000pt;}
.ws58{word-spacing:-31.269333pt;}
.wsa2{word-spacing:-29.685333pt;}
.ws57{word-spacing:-27.984000pt;}
.ws7e{word-spacing:-27.840000pt;}
.wsaf{word-spacing:-25.392533pt;}
.ws6f{word-spacing:-16.250667pt;}
.ws51{word-spacing:-12.906667pt;}
.ws36{word-spacing:-12.320000pt;}
.ws42{word-spacing:-7.485867pt;}
.ws47{word-spacing:-6.124800pt;}
.ws0{word-spacing:-5.444267pt;}
.ws6b{word-spacing:-3.344000pt;}
.ws4f{word-spacing:-2.464000pt;}
.ws24{word-spacing:-2.346667pt;}
.ws23{word-spacing:-1.877333pt;}
.ws10{word-spacing:-1.493333pt;}
.wsc{word-spacing:-1.408000pt;}
.ws11{word-spacing:-1.280000pt;}
.ws20{word-spacing:-1.109333pt;}
.ws27{word-spacing:-0.554667pt;}
.ws2a{word-spacing:-0.512000pt;}
.ws28{word-spacing:-0.256000pt;}
.ws29{word-spacing:-0.085333pt;}
.ws6c{word-spacing:-0.058667pt;}
.ws9{word-spacing:0.000000pt;}
.ws39{word-spacing:0.586667pt;}
.ws25{word-spacing:0.810667pt;}
.ws3a{word-spacing:1.173333pt;}
.ws69{word-spacing:1.232000pt;}
.ws14{word-spacing:1.962667pt;}
.ws13{word-spacing:2.176000pt;}
.ws26{word-spacing:2.432000pt;}
.ws21{word-spacing:2.773333pt;}
.ws94{word-spacing:3.226667pt;}
.ws95{word-spacing:3.402667pt;}
.wsaa{word-spacing:3.637333pt;}
.ws12{word-spacing:3.712000pt;}
.wse{word-spacing:4.266667pt;}
.wsb{word-spacing:4.821333pt;}
.ws1e{word-spacing:5.333333pt;}
.wsd{word-spacing:5.760000pt;}
.ws18{word-spacing:5.930667pt;}
.ws16{word-spacing:6.186667pt;}
.wsf{word-spacing:6.528000pt;}
.ws22{word-spacing:6.954667pt;}
.ws1d{word-spacing:7.722667pt;}
.ws1f{word-spacing:7.808000pt;}
.ws1b{word-spacing:7.850667pt;}
.ws19{word-spacing:10.538667pt;}
.ws1a{word-spacing:11.306667pt;}
.ws6a{word-spacing:11.733333pt;}
.ws85{word-spacing:12.848000pt;}
.ws17{word-spacing:13.098667pt;}
.wsae{word-spacing:13.258667pt;}
.ws15{word-spacing:14.762667pt;}
.ws1c{word-spacing:15.957333pt;}
.ws38{word-spacing:17.072000pt;}
.ws78{word-spacing:17.541333pt;}
.ws84{word-spacing:18.186667pt;}
.wsa{word-spacing:27.221333pt;}
._13{margin-left:-43.412267pt;}
._12{margin-left:-6.218667pt;}
._d{margin-left:-4.869333pt;}
._c{margin-left:-3.813333pt;}
._5{margin-left:-2.859733pt;}
._0{margin-left:-1.540267pt;}
._1{width:1.123413pt;}
._3{width:2.757333pt;}
._a{width:3.745920pt;}
._6{width:4.693333pt;}
._7{width:5.690667pt;}
._4{width:6.981333pt;}
._8{width:8.800000pt;}
._9{width:10.037867pt;}
._b{width:11.604267pt;}
._11{width:14.138667pt;}
._f{width:15.811733pt;}
._e{width:17.381867pt;}
._10{width:20.425600pt;}
._2{width:21.376000pt;}
._14{width:27.585067pt;}
._15{width:33.274133pt;}
.fs5{font-size:24.746667pt;}
.fs7{font-size:27.840000pt;}
.fs4{font-size:30.933333pt;}
.fs6{font-size:34.026667pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:70.243067pt;}
.yb7{bottom:113.385733pt;}
.ycc{bottom:113.385867pt;}
.y11c{bottom:115.725733pt;}
.y26{bottom:116.262667pt;}
.y113{bottom:117.192400pt;}
.y72{bottom:118.607600pt;}
.ya3{bottom:119.007600pt;}
.ye0{bottom:126.166533pt;}
.yf4{bottom:126.566667pt;}
.yb6{bottom:127.785733pt;}
.ycb{bottom:127.785867pt;}
.y25{bottom:129.062667pt;}
.y11b{bottom:133.725733pt;}
.y112{bottom:134.125733pt;}
.ya2{bottom:135.940933pt;}
.y71{bottom:136.607600pt;}
.y24{bottom:141.862667pt;}
.yb5{bottom:142.185733pt;}
.yca{bottom:142.185867pt;}
.yf3{bottom:143.500000pt;}
.ydf{bottom:144.166533pt;}
.y111{bottom:151.059067pt;}
.y11a{bottom:151.725733pt;}
.ya1{bottom:152.874267pt;}
.y70{bottom:154.607600pt;}
.yb4{bottom:156.585733pt;}
.yc9{bottom:156.585867pt;}
.y23{bottom:158.182667pt;}
.yf2{bottom:160.433333pt;}
.yde{bottom:162.166533pt;}
.y110{bottom:167.992400pt;}
.y119{bottom:169.725733pt;}
.ya0{bottom:169.807600pt;}
.yb3{bottom:170.985733pt;}
.yc8{bottom:170.985867pt;}
.y6f{bottom:172.607600pt;}
.y142{bottom:174.945733pt;}
.y11f{bottom:174.945867pt;}
.yf1{bottom:177.366667pt;}
.ydd{bottom:180.166533pt;}
.y10f{bottom:184.925733pt;}
.yb2{bottom:185.385867pt;}
.y9f{bottom:186.740933pt;}
.y10b{bottom:187.725733pt;}
.y6e{bottom:190.607600pt;}
.y141{bottom:194.299867pt;}
.yf0{bottom:194.300000pt;}
.ydc{bottom:198.166533pt;}
.yc7{bottom:199.785867pt;}
.y10e{bottom:201.859067pt;}
.y9e{bottom:203.674267pt;}
.yb1{bottom:203.745867pt;}
.y10a{bottom:205.725733pt;}
.y6d{bottom:208.607600pt;}
.y140{bottom:211.233200pt;}
.yef{bottom:211.233333pt;}
.y107{bottom:214.185867pt;}
.y109{bottom:214.186000pt;}
.ydb{bottom:216.166533pt;}
.yc6{bottom:218.145867pt;}
.y10d{bottom:218.792400pt;}
.y9d{bottom:220.607600pt;}
.yb0{bottom:223.725733pt;}
.y6c{bottom:226.607600pt;}
.y13f{bottom:228.166533pt;}
.yee{bottom:228.166667pt;}
.y106{bottom:232.545867pt;}
.y108{bottom:232.546000pt;}
.yda{bottom:234.166533pt;}
.y10c{bottom:235.725733pt;}
.y42{bottom:237.105200pt;}
.y9c{bottom:237.540933pt;}
.y34{bottom:240.171867pt;}
.yaf{bottom:241.725733pt;}
.y6b{bottom:244.607600pt;}
.y13e{bottom:245.099867pt;}
.yed{bottom:245.100000pt;}
.yd9{bottom:252.166533pt;}
.yc5{bottom:252.659067pt;}
.y41{bottom:254.038533pt;}
.y9b{bottom:254.474267pt;}
.y33{bottom:258.171867pt;}
.yae{bottom:259.725733pt;}
.y13d{bottom:262.033200pt;}
.yec{bottom:262.033333pt;}
.yc4{bottom:269.592400pt;}
.y6a{bottom:270.166533pt;}
.y40{bottom:270.971867pt;}
.y9a{bottom:271.407600pt;}
.y32{bottom:276.171867pt;}
.yad{bottom:277.725733pt;}
.y13c{bottom:278.966533pt;}
.yeb{bottom:278.966667pt;}
.yc3{bottom:286.525733pt;}
.y3f{bottom:287.905200pt;}
.yd8{bottom:288.166533pt;}
.y31{bottom:294.171867pt;}
.yac{bottom:295.725733pt;}
.y13b{bottom:295.899867pt;}
.y99{bottom:295.900000pt;}
.yc2{bottom:303.459067pt;}
.y3e{bottom:304.838533pt;}
.y69{bottom:306.166533pt;}
.y30{bottom:312.171867pt;}
.y13a{bottom:312.833200pt;}
.yea{bottom:312.833333pt;}
.yab{bottom:313.725733pt;}
.yc1{bottom:320.392400pt;}
.y3d{bottom:321.771867pt;}
.y68{bottom:324.166533pt;}
.y139{bottom:329.766533pt;}
.y98{bottom:329.766667pt;}
.y2f{bottom:330.171867pt;}
.yaa{bottom:331.725733pt;}
.yc0{bottom:337.325733pt;}
.y3c{bottom:338.705200pt;}
.y67{bottom:342.166667pt;}
.y138{bottom:346.699867pt;}
.y97{bottom:346.700000pt;}
.y2e{bottom:348.171867pt;}
.ya9{bottom:349.725733pt;}
.ybf{bottom:354.259067pt;}
.y3b{bottom:355.638533pt;}
.y66{bottom:360.166667pt;}
.y137{bottom:363.633200pt;}
.y96{bottom:363.633333pt;}
.y2d{bottom:366.171867pt;}
.ya8{bottom:367.725733pt;}
.ybe{bottom:371.192400pt;}
.y3a{bottom:372.571867pt;}
.y65{bottom:378.166667pt;}
.y136{bottom:380.566533pt;}
.y95{bottom:380.566667pt;}
.y2c{bottom:384.171867pt;}
.ya7{bottom:385.725733pt;}
.ybd{bottom:388.125733pt;}
.y39{bottom:389.505200pt;}
.y64{bottom:396.166667pt;}
.y135{bottom:397.499867pt;}
.y94{bottom:397.500000pt;}
.y2b{bottom:402.171867pt;}
.ya6{bottom:403.725733pt;}
.ybc{bottom:405.059067pt;}
.y38{bottom:406.438533pt;}
.y63{bottom:414.166667pt;}
.y134{bottom:414.433200pt;}
.y93{bottom:414.433333pt;}
.y2a{bottom:420.171867pt;}
.ya5{bottom:421.725733pt;}
.ybb{bottom:421.992400pt;}
.y37{bottom:423.371867pt;}
.y133{bottom:431.366533pt;}
.y92{bottom:431.366667pt;}
.yd7{bottom:432.166667pt;}
.y29{bottom:438.171867pt;}
.yba{bottom:438.925733pt;}
.y62{bottom:439.725733pt;}
.y36{bottom:440.305200pt;}
.y132{bottom:448.299867pt;}
.y91{bottom:448.300000pt;}
.yd6{bottom:450.166667pt;}
.yb9{bottom:455.859067pt;}
.y28{bottom:456.171867pt;}
.y35{bottom:457.238533pt;}
.ya4{bottom:457.725733pt;}
.y131{bottom:465.233200pt;}
.ye9{bottom:465.233333pt;}
.yd5{bottom:468.166667pt;}
.y90{bottom:472.792400pt;}
.y61{bottom:475.725733pt;}
.y27{bottom:481.730933pt;}
.y130{bottom:482.166533pt;}
.ye8{bottom:482.166667pt;}
.yd4{bottom:486.166667pt;}
.yb8{bottom:489.725733pt;}
.y60{bottom:493.725733pt;}
.y12f{bottom:499.099867pt;}
.ye7{bottom:499.100000pt;}
.yd3{bottom:504.166667pt;}
.y8f{bottom:506.659067pt;}
.y5f{bottom:511.725733pt;}
.y12e{bottom:516.033200pt;}
.ye6{bottom:516.033333pt;}
.yd2{bottom:522.166667pt;}
.y8e{bottom:523.592400pt;}
.y5e{bottom:529.725733pt;}
.y12d{bottom:532.966533pt;}
.ye5{bottom:532.966667pt;}
.y22{bottom:535.559867pt;}
.yd1{bottom:540.166667pt;}
.y8d{bottom:540.525733pt;}
.y5d{bottom:547.725733pt;}
.y1b{bottom:548.893200pt;}
.y12c{bottom:549.899867pt;}
.ye4{bottom:549.900000pt;}
.y8c{bottom:557.459067pt;}
.yd0{bottom:558.166667pt;}
.y1a{bottom:562.226533pt;}
.y5c{bottom:565.725733pt;}
.y12b{bottom:566.833200pt;}
.ye3{bottom:566.833333pt;}
.y21{bottom:569.785600pt;}
.y8b{bottom:574.392400pt;}
.ycf{bottom:576.166667pt;}
.y19{bottom:583.118933pt;}
.y5b{bottom:583.725733pt;}
.y12a{bottom:583.766533pt;}
.ye2{bottom:583.766667pt;}
.y8a{bottom:591.325733pt;}
.yce{bottom:594.166667pt;}
.y18{bottom:596.452267pt;}
.y129{bottom:600.699867pt;}
.ye1{bottom:600.700000pt;}
.y5a{bottom:601.725733pt;}
.y89{bottom:608.259067pt;}
.y17{bottom:609.785600pt;}
.ycd{bottom:612.166667pt;}
.y128{bottom:617.633200pt;}
.y105{bottom:617.633333pt;}
.y59{bottom:619.725733pt;}
.y16{bottom:623.118933pt;}
.y88{bottom:625.192400pt;}
.yfb{bottom:630.166667pt;}
.y127{bottom:634.566533pt;}
.y104{bottom:634.566667pt;}
.y15{bottom:636.452267pt;}
.y58{bottom:637.725733pt;}
.y87{bottom:642.125733pt;}
.yfa{bottom:648.166667pt;}
.y14{bottom:649.785600pt;}
.y126{bottom:651.499867pt;}
.y103{bottom:651.500000pt;}
.y57{bottom:655.725733pt;}
.y86{bottom:659.059067pt;}
.y14f{bottom:659.407200pt;}
.y13{bottom:663.118933pt;}
.yf9{bottom:666.166667pt;}
.y125{bottom:668.433200pt;}
.y102{bottom:668.433333pt;}
.y56{bottom:673.725733pt;}
.y85{bottom:675.992400pt;}
.y12{bottom:676.452267pt;}
.y14e{bottom:677.007200pt;}
.yf8{bottom:684.166533pt;}
.y124{bottom:685.366533pt;}
.y101{bottom:685.366667pt;}
.y11{bottom:689.785600pt;}
.y55{bottom:691.725733pt;}
.y84{bottom:692.925733pt;}
.y14d{bottom:694.607200pt;}
.yf7{bottom:702.166533pt;}
.y123{bottom:702.299867pt;}
.y100{bottom:702.300000pt;}
.y10{bottom:703.118933pt;}
.y54{bottom:709.725733pt;}
.y83{bottom:709.859067pt;}
.y153{bottom:712.207067pt;}
.y14c{bottom:712.207200pt;}
.yf{bottom:716.452267pt;}
.y122{bottom:719.233200pt;}
.yff{bottom:719.233333pt;}
.yf6{bottom:720.166533pt;}
.y82{bottom:726.792400pt;}
.y53{bottom:727.725733pt;}
.ye{bottom:729.785600pt;}
.y152{bottom:729.807067pt;}
.y14b{bottom:729.807200pt;}
.y121{bottom:736.166533pt;}
.yfe{bottom:736.166667pt;}
.yf5{bottom:738.166533pt;}
.yd{bottom:743.118933pt;}
.y81{bottom:743.725733pt;}
.y52{bottom:745.725733pt;}
.y14a{bottom:747.407200pt;}
.yfd{bottom:753.100000pt;}
.y11e{bottom:756.166533pt;}
.yc{bottom:756.452267pt;}
.y80{bottom:760.659067pt;}
.y51{bottom:763.725733pt;}
.y149{bottom:765.007200pt;}
.yb{bottom:769.785600pt;}
.yfc{bottom:770.033333pt;}
.y11d{bottom:774.166533pt;}
.y7f{bottom:777.592400pt;}
.y50{bottom:781.725733pt;}
.y148{bottom:782.607200pt;}
.ya{bottom:783.118933pt;}
.y120{bottom:786.966667pt;}
.y7e{bottom:794.525733pt;}
.y4f{bottom:799.725733pt;}
.y151{bottom:800.207067pt;}
.y147{bottom:800.207200pt;}
.y7d{bottom:811.458933pt;}
.y118{bottom:811.459067pt;}
.y4e{bottom:817.725733pt;}
.y150{bottom:817.807067pt;}
.y146{bottom:817.807200pt;}
.y7c{bottom:828.392400pt;}
.y145{bottom:835.407200pt;}
.y4d{bottom:835.725733pt;}
.y9{bottom:841.044267pt;}
.y20{bottom:841.044400pt;}
.y7b{bottom:845.325733pt;}
.y4c{bottom:853.725733pt;}
.y7a{bottom:862.259067pt;}
.y143{bottom:864.087867pt;}
.y4b{bottom:871.725733pt;}
.y79{bottom:879.192267pt;}
.y117{bottom:879.192400pt;}
.y144{bottom:886.413333pt;}
.y4a{bottom:889.725733pt;}
.y8{bottom:892.244267pt;}
.y1f{bottom:892.244400pt;}
.y78{bottom:896.125600pt;}
.y116{bottom:896.125733pt;}
.y49{bottom:907.725733pt;}
.y7{bottom:909.844267pt;}
.y1e{bottom:909.844400pt;}
.y77{bottom:913.059067pt;}
.y48{bottom:925.725733pt;}
.y6{bottom:927.444267pt;}
.y1d{bottom:927.444400pt;}
.y76{bottom:929.992400pt;}
.y47{bottom:943.725733pt;}
.y5{bottom:945.044267pt;}
.y1c{bottom:945.044400pt;}
.y75{bottom:946.925733pt;}
.y46{bottom:961.725733pt;}
.y74{bottom:963.858933pt;}
.y115{bottom:963.859067pt;}
.y45{bottom:979.725733pt;}
.y73{bottom:980.792267pt;}
.y114{bottom:980.792400pt;}
.y4{bottom:996.413733pt;}
.y44{bottom:997.725733pt;}
.y2{bottom:1037.385067pt;}
.y43{bottom:1044.332933pt;}
.y1{bottom:1050.185067pt;}
.h9{height:23.003333pt;}
.h11{height:25.878750pt;}
.hb{height:29.895833pt;}
.h3{height:31.573333pt;}
.h8{height:32.298667pt;}
.h2{height:35.520000pt;}
.he{height:35.925333pt;}
.ha{height:37.083333pt;}
.h14{height:37.395833pt;}
.h4{height:37.760000pt;}
.hc{height:39.559896pt;}
.h13{height:41.106771pt;}
.hf{height:41.135417pt;}
.h12{height:41.718750pt;}
.h5{height:44.906667pt;}
.h7{height:47.680000pt;}
.hd{height:50.989583pt;}
.h10{height:51.132812pt;}
.h6{height:52.448000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.488133pt;}
.x11{left:102.047200pt;}
.x5{left:103.952800pt;}
.x8{left:106.118400pt;}
.x4{left:116.800800pt;}
.x6{left:120.056667pt;}
.x1{left:124.278133pt;}
.x12{left:132.283467pt;}
.x17{left:139.909867pt;}
.x7{left:189.385467pt;}
.x15{left:287.659467pt;}
.x16{left:384.261733pt;}
.x2{left:386.288400pt;}
.x13{left:406.299200pt;}
.x9{left:416.100933pt;}
.xf{left:418.179467pt;}
.xb{left:426.976133pt;}
.x19{left:428.992800pt;}
.xe{left:437.077067pt;}
.x14{left:444.094533pt;}
.x18{left:451.721067pt;}
.xa{left:453.661733pt;}
.xc{left:456.441067pt;}
.xd{left:501.196533pt;}
.x10{left:510.322400pt;}
}




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