
    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_1e6fcb4257e65f17273e1c15.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.236000;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_1972b312115a25453cca2169.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.842285;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_1cb6871e2225a0257e132cb9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_0e0e9c2e79f95eadda6ce0c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.119000;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_920b99cd96e13b92ca6a8797.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.149000;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_008ccd3eef92d41ef974d4ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008000;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_f922565ada4c1c70ac53ac1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.010000;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_fb4ab94e17f1b88d61b4a9e0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f922565ada4c1c70ac53ac1c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010000;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_469f9b07a2e06a5c8a97abf3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.088000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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:-17.982600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.981000px;}
.v1{vertical-align:20.979000px;}
.ls16{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.630000px;}
.ls11{letter-spacing:-0.570000px;}
.ls10{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.342000px;}
.lsf{letter-spacing:-0.324000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.342000px;}
.ls6{letter-spacing:0.377400px;}
.ls9{letter-spacing:0.378000px;}
.lsd{letter-spacing:0.570000px;}
.ls2{letter-spacing:0.630000px;}
.ls1{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.756000px;}
.lsc{letter-spacing:0.855000px;}
.ls4{letter-spacing:0.960000px;}
.ls15{letter-spacing:1.026000px;}
.lsa{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.260000px;}
.lsb{letter-spacing:1.425000px;}
.ls0{letter-spacing:1.560000px;}
.ls14{letter-spacing:1.710000px;}
.ls13{letter-spacing:40.932000px;}
.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;}
}
.ws12{word-spacing:-21.600000px;}
.wsdd{word-spacing:-20.520000px;}
.ws13{word-spacing:-15.876000px;}
.ws8b{word-spacing:-14.868000px;}
.ws1{word-spacing:-13.608000px;}
.ws14{word-spacing:-13.068000px;}
.ws8c{word-spacing:-12.312000px;}
.ws29{word-spacing:-12.204000px;}
.ws5c{word-spacing:-11.880000px;}
.ws5e{word-spacing:-11.664000px;}
.wsc3{word-spacing:-9.903600px;}
.ws48{word-spacing:-9.525600px;}
.ws0{word-spacing:-9.147600px;}
.ws8a{word-spacing:-8.618400px;}
.wsa6{word-spacing:-8.276400px;}
.ws97{word-spacing:-7.934400px;}
.ws2{word-spacing:-7.840800px;}
.ws5d{word-spacing:-7.516800px;}
.ws27{word-spacing:-3.213000px;}
.wsea{word-spacing:-3.087000px;}
.ws3b{word-spacing:-2.754000px;}
.ws4c{word-spacing:-2.736000px;}
.wsda{word-spacing:-2.709000px;}
.wsa1{word-spacing:-2.646000px;}
.ws4{word-spacing:-2.641703px;}
.wsa5{word-spacing:-2.592000px;}
.ws40{word-spacing:-2.538000px;}
.ws5{word-spacing:-2.457000px;}
.ws26{word-spacing:-2.394000px;}
.wsba{word-spacing:-2.331000px;}
.wsa4{word-spacing:-2.322000px;}
.ws7{word-spacing:-2.268000px;}
.ws9f{word-spacing:-2.205000px;}
.wsa7{word-spacing:-2.166000px;}
.ws91{word-spacing:-2.079000px;}
.ws2d{word-spacing:-2.016000px;}
.ws1d{word-spacing:-1.953000px;}
.ws85{word-spacing:-1.938000px;}
.ws54{word-spacing:-1.881000px;}
.ws64{word-spacing:-1.827000px;}
.wsb2{word-spacing:-1.824000px;}
.ws22{word-spacing:-1.764000px;}
.wsd7{word-spacing:-1.710000px;}
.ws6c{word-spacing:-1.674000px;}
.wsce{word-spacing:-1.653000px;}
.ws24{word-spacing:-1.638000px;}
.ws58{word-spacing:-1.620000px;}
.ws6a{word-spacing:-1.566000px;}
.ws3c{word-spacing:-1.512000px;}
.ws5a{word-spacing:-1.458000px;}
.wsb3{word-spacing:-1.425000px;}
.ws41{word-spacing:-1.404000px;}
.ws86{word-spacing:-1.368000px;}
.ws37{word-spacing:-1.350000px;}
.ws3e{word-spacing:-1.296000px;}
.ws7d{word-spacing:-1.260000px;}
.wsd2{word-spacing:-1.254000px;}
.wsca{word-spacing:-1.197000px;}
.ws6b{word-spacing:-1.134000px;}
.wsde{word-spacing:-1.083000px;}
.ws57{word-spacing:-1.080000px;}
.ws1b{word-spacing:-1.071000px;}
.wsd0{word-spacing:-1.026000px;}
.ws6{word-spacing:-0.945000px;}
.ws50{word-spacing:-0.855000px;}
.wse{word-spacing:-0.819000px;}
.ws82{word-spacing:-0.756000px;}
.wsbf{word-spacing:-0.693000px;}
.ws68{word-spacing:-0.648000px;}
.wsa0{word-spacing:-0.630000px;}
.ws67{word-spacing:-0.594000px;}
.wsaf{word-spacing:-0.570000px;}
.ws60{word-spacing:-0.567000px;}
.ws3d{word-spacing:-0.540000px;}
.ws32{word-spacing:-0.504000px;}
.ws38{word-spacing:-0.486000px;}
.ws53{word-spacing:-0.456000px;}
.wsc0{word-spacing:-0.441000px;}
.wsf{word-spacing:-0.432000px;}
.wsc2{word-spacing:-0.399000px;}
.ws3f{word-spacing:-0.378000px;}
.ws56{word-spacing:-0.342000px;}
.ws63{word-spacing:-0.315000px;}
.ws66{word-spacing:-0.270000px;}
.ws62{word-spacing:-0.252000px;}
.wsc8{word-spacing:-0.228000px;}
.ws33{word-spacing:-0.216000px;}
.wseb{word-spacing:-0.189000px;}
.wsae{word-spacing:-0.171000px;}
.ws7c{word-spacing:-0.126000px;}
.ws89{word-spacing:-0.108000px;}
.wsdf{word-spacing:-0.057000px;}
.ws3{word-spacing:0.000000px;}
.ws5b{word-spacing:0.054000px;}
.ws99{word-spacing:0.057000px;}
.ws74{word-spacing:0.108000px;}
.ws98{word-spacing:0.114000px;}
.ws7f{word-spacing:0.126000px;}
.ws7a{word-spacing:0.162000px;}
.ws96{word-spacing:0.216000px;}
.ws16{word-spacing:0.252000px;}
.ws95{word-spacing:0.270000px;}
.wsb4{word-spacing:0.285000px;}
.wse4{word-spacing:0.315000px;}
.ws4b{word-spacing:0.378000px;}
.wsc9{word-spacing:0.399000px;}
.ws6e{word-spacing:0.432000px;}
.ws4a{word-spacing:0.504000px;}
.ws4f{word-spacing:0.513000px;}
.ws45{word-spacing:0.540000px;}
.ws49{word-spacing:0.567000px;}
.wsc7{word-spacing:0.570000px;}
.ws31{word-spacing:0.630000px;}
.wse8{word-spacing:0.693000px;}
.wse3{word-spacing:0.756000px;}
.ws94{word-spacing:0.798000px;}
.ws39{word-spacing:0.918000px;}
.ws8f{word-spacing:0.969000px;}
.ws73{word-spacing:1.134000px;}
.wse9{word-spacing:1.197000px;}
.wsc{word-spacing:1.260000px;}
.wsd6{word-spacing:1.311000px;}
.wsc4{word-spacing:1.323000px;}
.ws69{word-spacing:1.350000px;}
.wsa9{word-spacing:1.368000px;}
.ws61{word-spacing:1.386000px;}
.ws11{word-spacing:1.404000px;}
.ws9{word-spacing:1.449000px;}
.ws10{word-spacing:1.458000px;}
.ws4e{word-spacing:1.482000px;}
.ws8{word-spacing:1.512000px;}
.ws4d{word-spacing:1.539000px;}
.ws46{word-spacing:1.566000px;}
.wsd4{word-spacing:1.575000px;}
.ws93{word-spacing:1.596000px;}
.ws1a{word-spacing:1.638000px;}
.wsb9{word-spacing:1.701000px;}
.ws92{word-spacing:1.710000px;}
.ws2f{word-spacing:1.764000px;}
.ws23{word-spacing:1.890000px;}
.ws81{word-spacing:1.953000px;}
.wsc6{word-spacing:2.079000px;}
.ws77{word-spacing:2.106000px;}
.ws9b{word-spacing:2.109000px;}
.ws84{word-spacing:2.142000px;}
.ws65{word-spacing:2.160000px;}
.ws78{word-spacing:2.214000px;}
.ws18{word-spacing:2.268000px;}
.wse0{word-spacing:2.280000px;}
.wsd8{word-spacing:2.337000px;}
.ws20{word-spacing:2.394000px;}
.ws52{word-spacing:2.457000px;}
.wsa8{word-spacing:2.508000px;}
.ws8e{word-spacing:2.622000px;}
.ws43{word-spacing:2.646000px;}
.ws9c{word-spacing:2.679000px;}
.ws34{word-spacing:2.700000px;}
.ws19{word-spacing:2.709000px;}
.ws3a{word-spacing:2.754000px;}
.wse5{word-spacing:2.772000px;}
.wsa3{word-spacing:2.793000px;}
.ws36{word-spacing:2.808000px;}
.ws1f{word-spacing:2.835000px;}
.wsc1{word-spacing:2.850000px;}
.ws72{word-spacing:2.862000px;}
.wsac{word-spacing:2.898000px;}
.ws35{word-spacing:2.916000px;}
.wsa2{word-spacing:2.964000px;}
.ws79{word-spacing:2.970000px;}
.wscf{word-spacing:3.021000px;}
.wse7{word-spacing:3.024000px;}
.ws75{word-spacing:3.078000px;}
.wse2{word-spacing:3.135000px;}
.wsbd{word-spacing:3.150000px;}
.ws71{word-spacing:3.186000px;}
.wsb{word-spacing:3.213000px;}
.wsab{word-spacing:3.249000px;}
.wsb6{word-spacing:3.276000px;}
.ws76{word-spacing:3.294000px;}
.ws55{word-spacing:3.306000px;}
.ws6d{word-spacing:3.348000px;}
.wsd3{word-spacing:3.420000px;}
.ws7b{word-spacing:3.456000px;}
.ws90{word-spacing:3.465000px;}
.wsaa{word-spacing:3.477000px;}
.ws6f{word-spacing:3.510000px;}
.ws2b{word-spacing:3.528000px;}
.wsa{word-spacing:3.591000px;}
.wsb1{word-spacing:3.648000px;}
.ws80{word-spacing:3.654000px;}
.ws21{word-spacing:3.717000px;}
.ws42{word-spacing:3.726000px;}
.wse6{word-spacing:3.843000px;}
.wscc{word-spacing:3.876000px;}
.ws70{word-spacing:3.996000px;}
.ws30{word-spacing:4.032000px;}
.ws9d{word-spacing:4.095000px;}
.ws1c{word-spacing:4.158000px;}
.wsd9{word-spacing:4.218000px;}
.ws15{word-spacing:4.221000px;}
.ws44{word-spacing:4.266000px;}
.ws25{word-spacing:4.284000px;}
.ws1e{word-spacing:4.347000px;}
.ws8d{word-spacing:4.503000px;}
.ws28{word-spacing:4.590000px;}
.ws7e{word-spacing:4.599000px;}
.wsad{word-spacing:4.662000px;}
.wsb7{word-spacing:4.725000px;}
.wsdb{word-spacing:4.788000px;}
.wsb5{word-spacing:4.851000px;}
.ws83{word-spacing:4.914000px;}
.ws9e{word-spacing:5.166000px;}
.ws87{word-spacing:5.238000px;}
.ws2c{word-spacing:5.481000px;}
.ws88{word-spacing:5.508000px;}
.wsd1{word-spacing:5.544000px;}
.wsc5{word-spacing:5.733000px;}
.wsbc{word-spacing:5.757000px;}
.ws2e{word-spacing:5.985000px;}
.wse1{word-spacing:6.156000px;}
.ws17{word-spacing:6.174000px;}
.ws59{word-spacing:6.210000px;}
.ws9a{word-spacing:6.270000px;}
.wsb0{word-spacing:6.384000px;}
.ws2a{word-spacing:6.489000px;}
.wscd{word-spacing:6.498000px;}
.ws5f{word-spacing:6.804000px;}
.wsd{word-spacing:6.993000px;}
.ws47{word-spacing:7.020000px;}
.wsb8{word-spacing:7.434000px;}
.wsdc{word-spacing:8.127000px;}
.wscb{word-spacing:8.151000px;}
.wsbe{word-spacing:8.253000px;}
.ws51{word-spacing:8.883000px;}
.wsbb{word-spacing:9.261000px;}
.wsd5{word-spacing:9.324000px;}
._3{margin-left:-10.920000px;}
._6{margin-left:-6.669900px;}
._5{margin-left:-4.680000px;}
._9{margin-left:-3.675600px;}
._2{margin-left:-2.340000px;}
._0{margin-left:-1.177800px;}
._8{width:1.080000px;}
._4{width:2.322600px;}
._7{width:3.855600px;}
._10{width:5.071500px;}
._c{width:6.378000px;}
._b{width:8.262600px;}
._11{width:9.596700px;}
._12{width:34.721400px;}
._d{width:38.393400px;}
._13{width:39.689400px;}
._a{width:40.931400px;}
._f{width:41.998800px;}
._14{width:43.254000px;}
._1{width:382.675800px;}
._e{width:1035.123000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:32.400000px;}
.fsd{font-size:34.200000px;}
.fs7{font-size:37.800000px;}
.fs9{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fsc{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:91.093200px;}
.fs5{font-size:96.000000px;}
.fsa{font-size:102.000000px;}
.fs4{font-size:156.000000px;}
.fs1{font-size:411.607800px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.510300px;}
.y1e{bottom:106.299150px;}
.y47{bottom:106.299300px;}
.ya3{bottom:110.794800px;}
.y46{bottom:125.799300px;}
.y1d{bottom:130.294800px;}
.y1c{bottom:145.299150px;}
.y61{bottom:145.299300px;}
.y45{bottom:149.794800px;}
.y1b{bottom:164.799150px;}
.y60{bottom:164.799300px;}
.y84{bottom:169.294800px;}
.yeb{bottom:173.633700px;}
.y122{bottom:174.646050px;}
.y5f{bottom:184.299300px;}
.y1a{bottom:188.794800px;}
.ydc{bottom:196.133550px;}
.yea{bottom:196.133700px;}
.y121{bottom:197.146050px;}
.y7f{bottom:203.799300px;}
.y5e{bottom:208.294800px;}
.ydb{bottom:218.633550px;}
.ye9{bottom:218.633700px;}
.y44{bottom:218.636550px;}
.y10f{bottom:219.643200px;}
.y120{bottom:219.646050px;}
.y5d{bottom:223.299300px;}
.y6d{bottom:227.794800px;}
.yda{bottom:241.133550px;}
.ye8{bottom:241.133700px;}
.y43{bottom:241.136550px;}
.ya2{bottom:242.141850px;}
.y10e{bottom:242.143200px;}
.y11f{bottom:242.146050px;}
.y5c{bottom:242.799300px;}
.y7e{bottom:247.294800px;}
.y19{bottom:257.322000px;}
.y5b{bottom:262.299300px;}
.yd9{bottom:263.633550px;}
.ye7{bottom:263.633700px;}
.y42{bottom:263.636550px;}
.ya1{bottom:264.641850px;}
.y10d{bottom:264.643200px;}
.yc2{bottom:264.646050px;}
.y83{bottom:266.794800px;}
.y18{bottom:279.822000px;}
.y5a{bottom:281.799300px;}
.yd8{bottom:286.133550px;}
.ye6{bottom:286.133700px;}
.y41{bottom:286.136550px;}
.ya0{bottom:287.141850px;}
.y10c{bottom:287.143200px;}
.yc1{bottom:287.146050px;}
.y59{bottom:301.299300px;}
.y17{bottom:302.322000px;}
.y7d{bottom:305.794800px;}
.yd7{bottom:308.633550px;}
.ye5{bottom:308.633700px;}
.y40{bottom:308.636550px;}
.y9f{bottom:309.641850px;}
.y10b{bottom:309.643200px;}
.yc0{bottom:309.646050px;}
.y58{bottom:320.799300px;}
.y16{bottom:324.822000px;}
.y6c{bottom:331.133700px;}
.yf8{bottom:331.135050px;}
.y3f{bottom:331.136550px;}
.y9e{bottom:332.141850px;}
.y10a{bottom:332.143200px;}
.ybf{bottom:332.146050px;}
.y57{bottom:340.299300px;}
.y15{bottom:347.322000px;}
.y6b{bottom:353.633700px;}
.yf7{bottom:353.635050px;}
.y82{bottom:353.636550px;}
.y109{bottom:354.643200px;}
.ybe{bottom:354.646050px;}
.y56{bottom:359.799300px;}
.y7c{bottom:364.294800px;}
.y14{bottom:369.822000px;}
.yd6{bottom:376.133700px;}
.yf6{bottom:376.135050px;}
.y3e{bottom:376.136550px;}
.y9d{bottom:377.141850px;}
.y108{bottom:377.143200px;}
.y118{bottom:377.144700px;}
.y7b{bottom:379.299300px;}
.y55{bottom:383.794800px;}
.y13{bottom:392.322000px;}
.yd5{bottom:398.633700px;}
.yf5{bottom:398.635050px;}
.y6a{bottom:398.635200px;}
.y81{bottom:398.636550px;}
.y54{bottom:398.799300px;}
.y9c{bottom:399.641850px;}
.y117{bottom:399.644700px;}
.ybd{bottom:399.646050px;}
.y12{bottom:414.822000px;}
.y53{bottom:418.299300px;}
.yd4{bottom:421.133700px;}
.yf4{bottom:421.135050px;}
.y69{bottom:421.135200px;}
.y80{bottom:421.136550px;}
.y9b{bottom:422.141850px;}
.y107{bottom:422.143200px;}
.y116{bottom:422.144700px;}
.ybc{bottom:422.146050px;}
.y7a{bottom:422.794950px;}
.y11{bottom:437.322000px;}
.y52{bottom:437.799300px;}
.yd3{bottom:443.633700px;}
.yf3{bottom:443.635050px;}
.y68{bottom:443.635200px;}
.y3d{bottom:443.636550px;}
.y106{bottom:444.643200px;}
.y115{bottom:444.644700px;}
.ybb{bottom:444.646050px;}
.y51{bottom:457.299300px;}
.y10{bottom:459.822000px;}
.ye4{bottom:466.133700px;}
.yf2{bottom:466.135050px;}
.y67{bottom:466.135200px;}
.y3c{bottom:466.136550px;}
.y9a{bottom:467.143200px;}
.y114{bottom:467.144700px;}
.yba{bottom:467.146050px;}
.y50{bottom:476.799300px;}
.yf{bottom:482.322000px;}
.yd2{bottom:488.633700px;}
.yf1{bottom:488.635050px;}
.y66{bottom:488.635200px;}
.y3b{bottom:488.636550px;}
.y99{bottom:489.643200px;}
.y113{bottom:489.644700px;}
.yb9{bottom:489.646050px;}
.y4f{bottom:496.299300px;}
.ye{bottom:504.822000px;}
.yd1{bottom:511.133700px;}
.yf0{bottom:511.135050px;}
.yfa{bottom:511.135200px;}
.y3a{bottom:511.136550px;}
.y98{bottom:512.143200px;}
.y105{bottom:512.144700px;}
.yb8{bottom:512.146050px;}
.y4e{bottom:515.799300px;}
.yd{bottom:527.322000px;}
.yd0{bottom:533.633700px;}
.y65{bottom:533.635200px;}
.y39{bottom:533.636550px;}
.y104{bottom:534.644700px;}
.yb7{bottom:534.646050px;}
.y11e{bottom:534.647400px;}
.y4d{bottom:535.299300px;}
.yc{bottom:549.822000px;}
.y79{bottom:554.799300px;}
.ycf{bottom:556.133700px;}
.yef{bottom:556.135050px;}
.y64{bottom:556.135200px;}
.y38{bottom:556.136550px;}
.y97{bottom:557.143200px;}
.y103{bottom:557.144700px;}
.yb6{bottom:557.146050px;}
.y11d{bottom:557.147400px;}
.y4c{bottom:559.294800px;}
.yb{bottom:572.322000px;}
.y4b{bottom:574.299300px;}
.yce{bottom:578.633700px;}
.yee{bottom:578.635050px;}
.y63{bottom:578.635200px;}
.y37{bottom:578.636550px;}
.y112{bottom:579.644700px;}
.yb5{bottom:579.646050px;}
.y11c{bottom:579.647400px;}
.y4a{bottom:593.799300px;}
.ya{bottom:594.822000px;}
.yed{bottom:601.135050px;}
.y62{bottom:601.135200px;}
.y36{bottom:601.136550px;}
.y96{bottom:602.144700px;}
.yb4{bottom:602.146050px;}
.y11b{bottom:602.147400px;}
.y49{bottom:617.794800px;}
.y78{bottom:617.794950px;}
.ycd{bottom:623.635050px;}
.ye3{bottom:623.635200px;}
.y35{bottom:623.636550px;}
.y95{bottom:624.644700px;}
.yb3{bottom:624.646050px;}
.y11a{bottom:624.647400px;}
.y77{bottom:632.799300px;}
.y48{bottom:637.294800px;}
.y9{bottom:639.822000px;}
.ycc{bottom:646.135050px;}
.yf9{bottom:646.135200px;}
.y34{bottom:646.136550px;}
.y94{bottom:647.144700px;}
.y102{bottom:647.146050px;}
.y119{bottom:647.147400px;}
.y76{bottom:652.299300px;}
.ycb{bottom:668.635050px;}
.ye2{bottom:668.635200px;}
.y33{bottom:668.636550px;}
.y111{bottom:669.644700px;}
.y101{bottom:669.646050px;}
.yb2{bottom:669.647400px;}
.y75{bottom:671.799300px;}
.yca{bottom:691.135050px;}
.ye1{bottom:691.135200px;}
.y32{bottom:691.136550px;}
.y74{bottom:691.299300px;}
.y93{bottom:692.144700px;}
.y100{bottom:692.146050px;}
.yb1{bottom:692.147400px;}
.y73{bottom:710.799300px;}
.y8{bottom:713.345700px;}
.yc9{bottom:713.635050px;}
.ye0{bottom:713.635200px;}
.y31{bottom:713.636550px;}
.y92{bottom:714.644550px;}
.yff{bottom:714.646050px;}
.yb0{bottom:714.647400px;}
.y72{bottom:730.299300px;}
.yc8{bottom:736.135050px;}
.ydf{bottom:736.135200px;}
.y30{bottom:736.136550px;}
.y91{bottom:737.144550px;}
.y110{bottom:737.146050px;}
.yaf{bottom:737.147400px;}
.y71{bottom:749.799300px;}
.yc7{bottom:758.635050px;}
.yde{bottom:758.635200px;}
.y2f{bottom:758.636550px;}
.y90{bottom:759.644550px;}
.yfe{bottom:759.646050px;}
.yae{bottom:759.647400px;}
.y7{bottom:768.857550px;}
.y70{bottom:769.299300px;}
.yc6{bottom:781.135050px;}
.ydd{bottom:781.135200px;}
.y2e{bottom:781.136550px;}
.y8f{bottom:782.144550px;}
.yfd{bottom:782.146050px;}
.yad{bottom:782.147400px;}
.y6f{bottom:788.799300px;}
.yc5{bottom:803.635050px;}
.y2d{bottom:803.636550px;}
.yfc{bottom:804.646050px;}
.yac{bottom:804.647400px;}
.y6e{bottom:808.299300px;}
.y6{bottom:810.857550px;}
.yec{bottom:826.135050px;}
.y2c{bottom:826.136550px;}
.y8e{bottom:827.146050px;}
.yab{bottom:827.147400px;}
.yc4{bottom:848.635050px;}
.y2b{bottom:848.636550px;}
.y8d{bottom:849.646050px;}
.yaa{bottom:849.647400px;}
.y5{bottom:852.857550px;}
.yc3{bottom:871.135050px;}
.y2a{bottom:871.136550px;}
.y8c{bottom:872.146050px;}
.ya9{bottom:872.147400px;}
.y29{bottom:893.636400px;}
.yfb{bottom:894.646050px;}
.ya8{bottom:894.647400px;}
.y28{bottom:916.136400px;}
.y8b{bottom:917.146050px;}
.ya7{bottom:917.147400px;}
.y27{bottom:938.636400px;}
.y8a{bottom:939.646050px;}
.ya6{bottom:939.647400px;}
.y1f{bottom:952.673400px;}
.y26{bottom:961.136400px;}
.y4{bottom:961.189500px;}
.y89{bottom:962.146050px;}
.ya5{bottom:962.147400px;}
.y25{bottom:983.636400px;}
.ya4{bottom:984.647400px;}
.y3{bottom:993.257550px;}
.y24{bottom:1006.136400px;}
.y88{bottom:1007.147400px;}
.y2{bottom:1008.672450px;}
.y23{bottom:1028.636400px;}
.y87{bottom:1029.647400px;}
.y22{bottom:1051.136400px;}
.y86{bottom:1052.147400px;}
.y21{bottom:1073.636400px;}
.y85{bottom:1074.647400px;}
.y20{bottom:1138.056450px;}
.hc{height:28.781400px;}
.h10{height:28.782000px;}
.h16{height:29.030400px;}
.ha{height:30.401400px;}
.hf{height:30.402000px;}
.h14{height:40.770000px;}
.he{height:44.460000px;}
.hb{height:46.764000px;}
.h11{height:48.384000px;}
.h13{height:49.362000px;}
.h15{height:49.624200px;}
.h17{height:49.624800px;}
.h12{height:51.072000px;}
.h9{height:54.558000px;}
.h8{height:56.448000px;}
.h5{height:56.706000px;}
.h4{height:71.789270px;}
.h2{height:72.000000px;}
.h7{height:96.000000px;}
.hd{height:102.000000px;}
.h6{height:156.000000px;}
.h3{height:324.382319px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:850.393500px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.x6{left:63.779550px;}
.x4{left:85.039350px;}
.x8{left:106.299150px;}
.x2{left:193.464600px;}
.x3{left:195.975000px;}
.x7{left:299.421750px;}
.xa{left:301.005900px;}
.x9{left:302.319900px;}
.x1{left:803.051100px;}
.x5{left:827.428950px;}
@media print{
.v2{vertical-align:-15.984533pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.872000pt;}
.v1{vertical-align:18.648000pt;}
.ls16{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.560000pt;}
.ls11{letter-spacing:-0.506667pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.304000pt;}
.lsf{letter-spacing:-0.288000pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.304000pt;}
.ls6{letter-spacing:0.335467pt;}
.ls9{letter-spacing:0.336000pt;}
.lsd{letter-spacing:0.506667pt;}
.ls2{letter-spacing:0.560000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.672000pt;}
.lsc{letter-spacing:0.760000pt;}
.ls4{letter-spacing:0.853333pt;}
.ls15{letter-spacing:0.912000pt;}
.lsa{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.120000pt;}
.lsb{letter-spacing:1.266667pt;}
.ls0{letter-spacing:1.386667pt;}
.ls14{letter-spacing:1.520000pt;}
.ls13{letter-spacing:36.384000pt;}
.ws12{word-spacing:-19.200000pt;}
.wsdd{word-spacing:-18.240000pt;}
.ws13{word-spacing:-14.112000pt;}
.ws8b{word-spacing:-13.216000pt;}
.ws1{word-spacing:-12.096000pt;}
.ws14{word-spacing:-11.616000pt;}
.ws8c{word-spacing:-10.944000pt;}
.ws29{word-spacing:-10.848000pt;}
.ws5c{word-spacing:-10.560000pt;}
.ws5e{word-spacing:-10.368000pt;}
.wsc3{word-spacing:-8.803200pt;}
.ws48{word-spacing:-8.467200pt;}
.ws0{word-spacing:-8.131200pt;}
.ws8a{word-spacing:-7.660800pt;}
.wsa6{word-spacing:-7.356800pt;}
.ws97{word-spacing:-7.052800pt;}
.ws2{word-spacing:-6.969600pt;}
.ws5d{word-spacing:-6.681600pt;}
.ws27{word-spacing:-2.856000pt;}
.wsea{word-spacing:-2.744000pt;}
.ws3b{word-spacing:-2.448000pt;}
.ws4c{word-spacing:-2.432000pt;}
.wsda{word-spacing:-2.408000pt;}
.wsa1{word-spacing:-2.352000pt;}
.ws4{word-spacing:-2.348180pt;}
.wsa5{word-spacing:-2.304000pt;}
.ws40{word-spacing:-2.256000pt;}
.ws5{word-spacing:-2.184000pt;}
.ws26{word-spacing:-2.128000pt;}
.wsba{word-spacing:-2.072000pt;}
.wsa4{word-spacing:-2.064000pt;}
.ws7{word-spacing:-2.016000pt;}
.ws9f{word-spacing:-1.960000pt;}
.wsa7{word-spacing:-1.925333pt;}
.ws91{word-spacing:-1.848000pt;}
.ws2d{word-spacing:-1.792000pt;}
.ws1d{word-spacing:-1.736000pt;}
.ws85{word-spacing:-1.722667pt;}
.ws54{word-spacing:-1.672000pt;}
.ws64{word-spacing:-1.624000pt;}
.wsb2{word-spacing:-1.621333pt;}
.ws22{word-spacing:-1.568000pt;}
.wsd7{word-spacing:-1.520000pt;}
.ws6c{word-spacing:-1.488000pt;}
.wsce{word-spacing:-1.469333pt;}
.ws24{word-spacing:-1.456000pt;}
.ws58{word-spacing:-1.440000pt;}
.ws6a{word-spacing:-1.392000pt;}
.ws3c{word-spacing:-1.344000pt;}
.ws5a{word-spacing:-1.296000pt;}
.wsb3{word-spacing:-1.266667pt;}
.ws41{word-spacing:-1.248000pt;}
.ws86{word-spacing:-1.216000pt;}
.ws37{word-spacing:-1.200000pt;}
.ws3e{word-spacing:-1.152000pt;}
.ws7d{word-spacing:-1.120000pt;}
.wsd2{word-spacing:-1.114667pt;}
.wsca{word-spacing:-1.064000pt;}
.ws6b{word-spacing:-1.008000pt;}
.wsde{word-spacing:-0.962667pt;}
.ws57{word-spacing:-0.960000pt;}
.ws1b{word-spacing:-0.952000pt;}
.wsd0{word-spacing:-0.912000pt;}
.ws6{word-spacing:-0.840000pt;}
.ws50{word-spacing:-0.760000pt;}
.wse{word-spacing:-0.728000pt;}
.ws82{word-spacing:-0.672000pt;}
.wsbf{word-spacing:-0.616000pt;}
.ws68{word-spacing:-0.576000pt;}
.wsa0{word-spacing:-0.560000pt;}
.ws67{word-spacing:-0.528000pt;}
.wsaf{word-spacing:-0.506667pt;}
.ws60{word-spacing:-0.504000pt;}
.ws3d{word-spacing:-0.480000pt;}
.ws32{word-spacing:-0.448000pt;}
.ws38{word-spacing:-0.432000pt;}
.ws53{word-spacing:-0.405333pt;}
.wsc0{word-spacing:-0.392000pt;}
.wsf{word-spacing:-0.384000pt;}
.wsc2{word-spacing:-0.354667pt;}
.ws3f{word-spacing:-0.336000pt;}
.ws56{word-spacing:-0.304000pt;}
.ws63{word-spacing:-0.280000pt;}
.ws66{word-spacing:-0.240000pt;}
.ws62{word-spacing:-0.224000pt;}
.wsc8{word-spacing:-0.202667pt;}
.ws33{word-spacing:-0.192000pt;}
.wseb{word-spacing:-0.168000pt;}
.wsae{word-spacing:-0.152000pt;}
.ws7c{word-spacing:-0.112000pt;}
.ws89{word-spacing:-0.096000pt;}
.wsdf{word-spacing:-0.050667pt;}
.ws3{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.048000pt;}
.ws99{word-spacing:0.050667pt;}
.ws74{word-spacing:0.096000pt;}
.ws98{word-spacing:0.101333pt;}
.ws7f{word-spacing:0.112000pt;}
.ws7a{word-spacing:0.144000pt;}
.ws96{word-spacing:0.192000pt;}
.ws16{word-spacing:0.224000pt;}
.ws95{word-spacing:0.240000pt;}
.wsb4{word-spacing:0.253333pt;}
.wse4{word-spacing:0.280000pt;}
.ws4b{word-spacing:0.336000pt;}
.wsc9{word-spacing:0.354667pt;}
.ws6e{word-spacing:0.384000pt;}
.ws4a{word-spacing:0.448000pt;}
.ws4f{word-spacing:0.456000pt;}
.ws45{word-spacing:0.480000pt;}
.ws49{word-spacing:0.504000pt;}
.wsc7{word-spacing:0.506667pt;}
.ws31{word-spacing:0.560000pt;}
.wse8{word-spacing:0.616000pt;}
.wse3{word-spacing:0.672000pt;}
.ws94{word-spacing:0.709333pt;}
.ws39{word-spacing:0.816000pt;}
.ws8f{word-spacing:0.861333pt;}
.ws73{word-spacing:1.008000pt;}
.wse9{word-spacing:1.064000pt;}
.wsc{word-spacing:1.120000pt;}
.wsd6{word-spacing:1.165333pt;}
.wsc4{word-spacing:1.176000pt;}
.ws69{word-spacing:1.200000pt;}
.wsa9{word-spacing:1.216000pt;}
.ws61{word-spacing:1.232000pt;}
.ws11{word-spacing:1.248000pt;}
.ws9{word-spacing:1.288000pt;}
.ws10{word-spacing:1.296000pt;}
.ws4e{word-spacing:1.317333pt;}
.ws8{word-spacing:1.344000pt;}
.ws4d{word-spacing:1.368000pt;}
.ws46{word-spacing:1.392000pt;}
.wsd4{word-spacing:1.400000pt;}
.ws93{word-spacing:1.418667pt;}
.ws1a{word-spacing:1.456000pt;}
.wsb9{word-spacing:1.512000pt;}
.ws92{word-spacing:1.520000pt;}
.ws2f{word-spacing:1.568000pt;}
.ws23{word-spacing:1.680000pt;}
.ws81{word-spacing:1.736000pt;}
.wsc6{word-spacing:1.848000pt;}
.ws77{word-spacing:1.872000pt;}
.ws9b{word-spacing:1.874667pt;}
.ws84{word-spacing:1.904000pt;}
.ws65{word-spacing:1.920000pt;}
.ws78{word-spacing:1.968000pt;}
.ws18{word-spacing:2.016000pt;}
.wse0{word-spacing:2.026667pt;}
.wsd8{word-spacing:2.077333pt;}
.ws20{word-spacing:2.128000pt;}
.ws52{word-spacing:2.184000pt;}
.wsa8{word-spacing:2.229333pt;}
.ws8e{word-spacing:2.330667pt;}
.ws43{word-spacing:2.352000pt;}
.ws9c{word-spacing:2.381333pt;}
.ws34{word-spacing:2.400000pt;}
.ws19{word-spacing:2.408000pt;}
.ws3a{word-spacing:2.448000pt;}
.wse5{word-spacing:2.464000pt;}
.wsa3{word-spacing:2.482667pt;}
.ws36{word-spacing:2.496000pt;}
.ws1f{word-spacing:2.520000pt;}
.wsc1{word-spacing:2.533333pt;}
.ws72{word-spacing:2.544000pt;}
.wsac{word-spacing:2.576000pt;}
.ws35{word-spacing:2.592000pt;}
.wsa2{word-spacing:2.634667pt;}
.ws79{word-spacing:2.640000pt;}
.wscf{word-spacing:2.685333pt;}
.wse7{word-spacing:2.688000pt;}
.ws75{word-spacing:2.736000pt;}
.wse2{word-spacing:2.786667pt;}
.wsbd{word-spacing:2.800000pt;}
.ws71{word-spacing:2.832000pt;}
.wsb{word-spacing:2.856000pt;}
.wsab{word-spacing:2.888000pt;}
.wsb6{word-spacing:2.912000pt;}
.ws76{word-spacing:2.928000pt;}
.ws55{word-spacing:2.938667pt;}
.ws6d{word-spacing:2.976000pt;}
.wsd3{word-spacing:3.040000pt;}
.ws7b{word-spacing:3.072000pt;}
.ws90{word-spacing:3.080000pt;}
.wsaa{word-spacing:3.090667pt;}
.ws6f{word-spacing:3.120000pt;}
.ws2b{word-spacing:3.136000pt;}
.wsa{word-spacing:3.192000pt;}
.wsb1{word-spacing:3.242667pt;}
.ws80{word-spacing:3.248000pt;}
.ws21{word-spacing:3.304000pt;}
.ws42{word-spacing:3.312000pt;}
.wse6{word-spacing:3.416000pt;}
.wscc{word-spacing:3.445333pt;}
.ws70{word-spacing:3.552000pt;}
.ws30{word-spacing:3.584000pt;}
.ws9d{word-spacing:3.640000pt;}
.ws1c{word-spacing:3.696000pt;}
.wsd9{word-spacing:3.749333pt;}
.ws15{word-spacing:3.752000pt;}
.ws44{word-spacing:3.792000pt;}
.ws25{word-spacing:3.808000pt;}
.ws1e{word-spacing:3.864000pt;}
.ws8d{word-spacing:4.002667pt;}
.ws28{word-spacing:4.080000pt;}
.ws7e{word-spacing:4.088000pt;}
.wsad{word-spacing:4.144000pt;}
.wsb7{word-spacing:4.200000pt;}
.wsdb{word-spacing:4.256000pt;}
.wsb5{word-spacing:4.312000pt;}
.ws83{word-spacing:4.368000pt;}
.ws9e{word-spacing:4.592000pt;}
.ws87{word-spacing:4.656000pt;}
.ws2c{word-spacing:4.872000pt;}
.ws88{word-spacing:4.896000pt;}
.wsd1{word-spacing:4.928000pt;}
.wsc5{word-spacing:5.096000pt;}
.wsbc{word-spacing:5.117333pt;}
.ws2e{word-spacing:5.320000pt;}
.wse1{word-spacing:5.472000pt;}
.ws17{word-spacing:5.488000pt;}
.ws59{word-spacing:5.520000pt;}
.ws9a{word-spacing:5.573333pt;}
.wsb0{word-spacing:5.674667pt;}
.ws2a{word-spacing:5.768000pt;}
.wscd{word-spacing:5.776000pt;}
.ws5f{word-spacing:6.048000pt;}
.wsd{word-spacing:6.216000pt;}
.ws47{word-spacing:6.240000pt;}
.wsb8{word-spacing:6.608000pt;}
.wsdc{word-spacing:7.224000pt;}
.wscb{word-spacing:7.245333pt;}
.wsbe{word-spacing:7.336000pt;}
.ws51{word-spacing:7.896000pt;}
.wsbb{word-spacing:8.232000pt;}
.wsd5{word-spacing:8.288000pt;}
._3{margin-left:-9.706667pt;}
._6{margin-left:-5.928800pt;}
._5{margin-left:-4.160000pt;}
._9{margin-left:-3.267200pt;}
._2{margin-left:-2.080000pt;}
._0{margin-left:-1.046933pt;}
._8{width:0.960000pt;}
._4{width:2.064533pt;}
._7{width:3.427200pt;}
._10{width:4.508000pt;}
._c{width:5.669333pt;}
._b{width:7.344533pt;}
._11{width:8.530400pt;}
._12{width:30.863467pt;}
._d{width:34.127467pt;}
._13{width:35.279467pt;}
._a{width:36.383467pt;}
._f{width:37.332267pt;}
._14{width:38.448000pt;}
._1{width:340.156267pt;}
._e{width:920.109333pt;}
.fs8{font-size:28.800000pt;}
.fsd{font-size:30.400000pt;}
.fs7{font-size:33.600000pt;}
.fs9{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fsc{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.971733pt;}
.fs5{font-size:85.333333pt;}
.fsa{font-size:90.666667pt;}
.fs4{font-size:138.666667pt;}
.fs1{font-size:365.873600pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.453600pt;}
.y1e{bottom:94.488133pt;}
.y47{bottom:94.488267pt;}
.ya3{bottom:98.484267pt;}
.y46{bottom:111.821600pt;}
.y1d{bottom:115.817600pt;}
.y1c{bottom:129.154800pt;}
.y61{bottom:129.154933pt;}
.y45{bottom:133.150933pt;}
.y1b{bottom:146.488133pt;}
.y60{bottom:146.488267pt;}
.y84{bottom:150.484267pt;}
.yeb{bottom:154.341067pt;}
.y122{bottom:155.240933pt;}
.y5f{bottom:163.821600pt;}
.y1a{bottom:167.817600pt;}
.ydc{bottom:174.340933pt;}
.yea{bottom:174.341067pt;}
.y121{bottom:175.240933pt;}
.y7f{bottom:181.154933pt;}
.y5e{bottom:185.150933pt;}
.ydb{bottom:194.340933pt;}
.ye9{bottom:194.341067pt;}
.y44{bottom:194.343600pt;}
.y10f{bottom:195.238400pt;}
.y120{bottom:195.240933pt;}
.y5d{bottom:198.488267pt;}
.y6d{bottom:202.484267pt;}
.yda{bottom:214.340933pt;}
.ye8{bottom:214.341067pt;}
.y43{bottom:214.343600pt;}
.ya2{bottom:215.237200pt;}
.y10e{bottom:215.238400pt;}
.y11f{bottom:215.240933pt;}
.y5c{bottom:215.821600pt;}
.y7e{bottom:219.817600pt;}
.y19{bottom:228.730667pt;}
.y5b{bottom:233.154933pt;}
.yd9{bottom:234.340933pt;}
.ye7{bottom:234.341067pt;}
.y42{bottom:234.343600pt;}
.ya1{bottom:235.237200pt;}
.y10d{bottom:235.238400pt;}
.yc2{bottom:235.240933pt;}
.y83{bottom:237.150933pt;}
.y18{bottom:248.730667pt;}
.y5a{bottom:250.488267pt;}
.yd8{bottom:254.340933pt;}
.ye6{bottom:254.341067pt;}
.y41{bottom:254.343600pt;}
.ya0{bottom:255.237200pt;}
.y10c{bottom:255.238400pt;}
.yc1{bottom:255.240933pt;}
.y59{bottom:267.821600pt;}
.y17{bottom:268.730667pt;}
.y7d{bottom:271.817600pt;}
.yd7{bottom:274.340933pt;}
.ye5{bottom:274.341067pt;}
.y40{bottom:274.343600pt;}
.y9f{bottom:275.237200pt;}
.y10b{bottom:275.238400pt;}
.yc0{bottom:275.240933pt;}
.y58{bottom:285.154933pt;}
.y16{bottom:288.730667pt;}
.y6c{bottom:294.341067pt;}
.yf8{bottom:294.342267pt;}
.y3f{bottom:294.343600pt;}
.y9e{bottom:295.237200pt;}
.y10a{bottom:295.238400pt;}
.ybf{bottom:295.240933pt;}
.y57{bottom:302.488267pt;}
.y15{bottom:308.730667pt;}
.y6b{bottom:314.341067pt;}
.yf7{bottom:314.342267pt;}
.y82{bottom:314.343600pt;}
.y109{bottom:315.238400pt;}
.ybe{bottom:315.240933pt;}
.y56{bottom:319.821600pt;}
.y7c{bottom:323.817600pt;}
.y14{bottom:328.730667pt;}
.yd6{bottom:334.341067pt;}
.yf6{bottom:334.342267pt;}
.y3e{bottom:334.343600pt;}
.y9d{bottom:335.237200pt;}
.y108{bottom:335.238400pt;}
.y118{bottom:335.239733pt;}
.y7b{bottom:337.154933pt;}
.y55{bottom:341.150933pt;}
.y13{bottom:348.730667pt;}
.yd5{bottom:354.341067pt;}
.yf5{bottom:354.342267pt;}
.y6a{bottom:354.342400pt;}
.y81{bottom:354.343600pt;}
.y54{bottom:354.488267pt;}
.y9c{bottom:355.237200pt;}
.y117{bottom:355.239733pt;}
.ybd{bottom:355.240933pt;}
.y12{bottom:368.730667pt;}
.y53{bottom:371.821600pt;}
.yd4{bottom:374.341067pt;}
.yf4{bottom:374.342267pt;}
.y69{bottom:374.342400pt;}
.y80{bottom:374.343600pt;}
.y9b{bottom:375.237200pt;}
.y107{bottom:375.238400pt;}
.y116{bottom:375.239733pt;}
.ybc{bottom:375.240933pt;}
.y7a{bottom:375.817733pt;}
.y11{bottom:388.730667pt;}
.y52{bottom:389.154933pt;}
.yd3{bottom:394.341067pt;}
.yf3{bottom:394.342267pt;}
.y68{bottom:394.342400pt;}
.y3d{bottom:394.343600pt;}
.y106{bottom:395.238400pt;}
.y115{bottom:395.239733pt;}
.ybb{bottom:395.240933pt;}
.y51{bottom:406.488267pt;}
.y10{bottom:408.730667pt;}
.ye4{bottom:414.341067pt;}
.yf2{bottom:414.342267pt;}
.y67{bottom:414.342400pt;}
.y3c{bottom:414.343600pt;}
.y9a{bottom:415.238400pt;}
.y114{bottom:415.239733pt;}
.yba{bottom:415.240933pt;}
.y50{bottom:423.821600pt;}
.yf{bottom:428.730667pt;}
.yd2{bottom:434.341067pt;}
.yf1{bottom:434.342267pt;}
.y66{bottom:434.342400pt;}
.y3b{bottom:434.343600pt;}
.y99{bottom:435.238400pt;}
.y113{bottom:435.239733pt;}
.yb9{bottom:435.240933pt;}
.y4f{bottom:441.154933pt;}
.ye{bottom:448.730667pt;}
.yd1{bottom:454.341067pt;}
.yf0{bottom:454.342267pt;}
.yfa{bottom:454.342400pt;}
.y3a{bottom:454.343600pt;}
.y98{bottom:455.238400pt;}
.y105{bottom:455.239733pt;}
.yb8{bottom:455.240933pt;}
.y4e{bottom:458.488267pt;}
.yd{bottom:468.730667pt;}
.yd0{bottom:474.341067pt;}
.y65{bottom:474.342400pt;}
.y39{bottom:474.343600pt;}
.y104{bottom:475.239733pt;}
.yb7{bottom:475.240933pt;}
.y11e{bottom:475.242133pt;}
.y4d{bottom:475.821600pt;}
.yc{bottom:488.730667pt;}
.y79{bottom:493.154933pt;}
.ycf{bottom:494.341067pt;}
.yef{bottom:494.342267pt;}
.y64{bottom:494.342400pt;}
.y38{bottom:494.343600pt;}
.y97{bottom:495.238400pt;}
.y103{bottom:495.239733pt;}
.yb6{bottom:495.240933pt;}
.y11d{bottom:495.242133pt;}
.y4c{bottom:497.150933pt;}
.yb{bottom:508.730667pt;}
.y4b{bottom:510.488267pt;}
.yce{bottom:514.341067pt;}
.yee{bottom:514.342267pt;}
.y63{bottom:514.342400pt;}
.y37{bottom:514.343600pt;}
.y112{bottom:515.239733pt;}
.yb5{bottom:515.240933pt;}
.y11c{bottom:515.242133pt;}
.y4a{bottom:527.821600pt;}
.ya{bottom:528.730667pt;}
.yed{bottom:534.342267pt;}
.y62{bottom:534.342400pt;}
.y36{bottom:534.343600pt;}
.y96{bottom:535.239733pt;}
.yb4{bottom:535.240933pt;}
.y11b{bottom:535.242133pt;}
.y49{bottom:549.150933pt;}
.y78{bottom:549.151067pt;}
.ycd{bottom:554.342267pt;}
.ye3{bottom:554.342400pt;}
.y35{bottom:554.343600pt;}
.y95{bottom:555.239733pt;}
.yb3{bottom:555.240933pt;}
.y11a{bottom:555.242133pt;}
.y77{bottom:562.488267pt;}
.y48{bottom:566.484267pt;}
.y9{bottom:568.730667pt;}
.ycc{bottom:574.342267pt;}
.yf9{bottom:574.342400pt;}
.y34{bottom:574.343600pt;}
.y94{bottom:575.239733pt;}
.y102{bottom:575.240933pt;}
.y119{bottom:575.242133pt;}
.y76{bottom:579.821600pt;}
.ycb{bottom:594.342267pt;}
.ye2{bottom:594.342400pt;}
.y33{bottom:594.343600pt;}
.y111{bottom:595.239733pt;}
.y101{bottom:595.240933pt;}
.yb2{bottom:595.242133pt;}
.y75{bottom:597.154933pt;}
.yca{bottom:614.342267pt;}
.ye1{bottom:614.342400pt;}
.y32{bottom:614.343600pt;}
.y74{bottom:614.488267pt;}
.y93{bottom:615.239733pt;}
.y100{bottom:615.240933pt;}
.yb1{bottom:615.242133pt;}
.y73{bottom:631.821600pt;}
.y8{bottom:634.085067pt;}
.yc9{bottom:634.342267pt;}
.ye0{bottom:634.342400pt;}
.y31{bottom:634.343600pt;}
.y92{bottom:635.239600pt;}
.yff{bottom:635.240933pt;}
.yb0{bottom:635.242133pt;}
.y72{bottom:649.154933pt;}
.yc8{bottom:654.342267pt;}
.ydf{bottom:654.342400pt;}
.y30{bottom:654.343600pt;}
.y91{bottom:655.239600pt;}
.y110{bottom:655.240933pt;}
.yaf{bottom:655.242133pt;}
.y71{bottom:666.488267pt;}
.yc7{bottom:674.342267pt;}
.yde{bottom:674.342400pt;}
.y2f{bottom:674.343600pt;}
.y90{bottom:675.239600pt;}
.yfe{bottom:675.240933pt;}
.yae{bottom:675.242133pt;}
.y7{bottom:683.428933pt;}
.y70{bottom:683.821600pt;}
.yc6{bottom:694.342267pt;}
.ydd{bottom:694.342400pt;}
.y2e{bottom:694.343600pt;}
.y8f{bottom:695.239600pt;}
.yfd{bottom:695.240933pt;}
.yad{bottom:695.242133pt;}
.y6f{bottom:701.154933pt;}
.yc5{bottom:714.342267pt;}
.y2d{bottom:714.343600pt;}
.yfc{bottom:715.240933pt;}
.yac{bottom:715.242133pt;}
.y6e{bottom:718.488267pt;}
.y6{bottom:720.762267pt;}
.yec{bottom:734.342267pt;}
.y2c{bottom:734.343600pt;}
.y8e{bottom:735.240933pt;}
.yab{bottom:735.242133pt;}
.yc4{bottom:754.342267pt;}
.y2b{bottom:754.343600pt;}
.y8d{bottom:755.240933pt;}
.yaa{bottom:755.242133pt;}
.y5{bottom:758.095600pt;}
.yc3{bottom:774.342267pt;}
.y2a{bottom:774.343600pt;}
.y8c{bottom:775.240933pt;}
.ya9{bottom:775.242133pt;}
.y29{bottom:794.343467pt;}
.yfb{bottom:795.240933pt;}
.ya8{bottom:795.242133pt;}
.y28{bottom:814.343467pt;}
.y8b{bottom:815.240933pt;}
.ya7{bottom:815.242133pt;}
.y27{bottom:834.343467pt;}
.y8a{bottom:835.240933pt;}
.ya6{bottom:835.242133pt;}
.y1f{bottom:846.820800pt;}
.y26{bottom:854.343467pt;}
.y4{bottom:854.390667pt;}
.y89{bottom:855.240933pt;}
.ya5{bottom:855.242133pt;}
.y25{bottom:874.343467pt;}
.ya4{bottom:875.242133pt;}
.y3{bottom:882.895600pt;}
.y24{bottom:894.343467pt;}
.y88{bottom:895.242133pt;}
.y2{bottom:896.597733pt;}
.y23{bottom:914.343467pt;}
.y87{bottom:915.242133pt;}
.y22{bottom:934.343467pt;}
.y86{bottom:935.242133pt;}
.y21{bottom:954.343467pt;}
.y85{bottom:955.242133pt;}
.y20{bottom:1011.605733pt;}
.hc{height:25.583467pt;}
.h10{height:25.584000pt;}
.h16{height:25.804800pt;}
.ha{height:27.023467pt;}
.hf{height:27.024000pt;}
.h14{height:36.240000pt;}
.he{height:39.520000pt;}
.hb{height:41.568000pt;}
.h11{height:43.008000pt;}
.h13{height:43.877333pt;}
.h15{height:44.110400pt;}
.h17{height:44.110933pt;}
.h12{height:45.397333pt;}
.h9{height:48.496000pt;}
.h8{height:50.176000pt;}
.h5{height:50.405333pt;}
.h4{height:63.812684pt;}
.h2{height:64.000000pt;}
.h7{height:85.333333pt;}
.hd{height:90.666667pt;}
.h6{height:138.666667pt;}
.h3{height:288.339839pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:755.905333pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.x6{left:56.692933pt;}
.x4{left:75.590533pt;}
.x8{left:94.488133pt;}
.x2{left:171.968533pt;}
.x3{left:174.200000pt;}
.x7{left:266.152667pt;}
.xa{left:267.560800pt;}
.x9{left:268.728800pt;}
.x1{left:713.823200pt;}
.x5{left:735.492400pt;}
}




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