
    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_a99becc50a9376c76d69b344.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_1613f7257886e2df70b069ce.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_68be0b5038ef65396c7c084c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_1246a6b46b97a24edada2579.woff')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:72.288000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd2{word-spacing:-65.501100px;}
.wscc{word-spacing:-45.397500px;}
.ws44{word-spacing:-45.004800px;}
.ws20{word-spacing:-45.003000px;}
.wsb4{word-spacing:-44.678400px;}
.ws31{word-spacing:-44.669400px;}
.ws13{word-spacing:-40.968000px;}
.ws7c{word-spacing:-40.536000px;}
.ws98{word-spacing:-27.482700px;}
.ws9d{word-spacing:-27.192900px;}
.ws90{word-spacing:-23.904000px;}
.ws40{word-spacing:-23.676300px;}
.ws64{word-spacing:-23.589300px;}
.ws6e{word-spacing:-23.461200px;}
.ws73{word-spacing:-23.446200px;}
.ws32{word-spacing:-23.397300px;}
.ws49{word-spacing:-23.382000px;}
.ws0{word-spacing:-23.373000px;}
.ws4a{word-spacing:-23.310300px;}
.wsc6{word-spacing:-23.260200px;}
.ws3f{word-spacing:-23.254200px;}
.ws85{word-spacing:-23.252400px;}
.ws28{word-spacing:-23.250600px;}
.ws80{word-spacing:-23.246700px;}
.ws37{word-spacing:-23.239800px;}
.wsbb{word-spacing:-23.236200px;}
.wsc1{word-spacing:-23.184000px;}
.ws87{word-spacing:-23.183700px;}
.ws6{word-spacing:-23.180400px;}
.ws45{word-spacing:-23.179200px;}
.wsb5{word-spacing:-23.178000px;}
.ws5d{word-spacing:-23.175000px;}
.ws2{word-spacing:-23.170500px;}
.ws38{word-spacing:-23.168700px;}
.ws65{word-spacing:-23.161500px;}
.ws1{word-spacing:-23.160600px;}
.ws5f{word-spacing:-23.158200px;}
.ws51{word-spacing:-23.153700px;}
.ws1a{word-spacing:-23.110200px;}
.wsde{word-spacing:-23.040000px;}
.ws5c{word-spacing:-23.038200px;}
.ws8b{word-spacing:-23.034600px;}
.ws43{word-spacing:-23.031900px;}
.ws5e{word-spacing:-22.973100px;}
.ws61{word-spacing:-22.968000px;}
.ws89{word-spacing:-22.965300px;}
.ws68{word-spacing:-22.964400px;}
.ws15{word-spacing:-22.960800px;}
.ws86{word-spacing:-22.959000px;}
.ws82{word-spacing:-22.954500px;}
.ws48{word-spacing:-22.758000px;}
.wsc{word-spacing:-22.754400px;}
.ws9{word-spacing:-22.752000px;}
.ws52{word-spacing:-22.748400px;}
.ws7b{word-spacing:-22.748100px;}
.ws3{word-spacing:-22.747500px;}
.ws16{word-spacing:-22.746600px;}
.ws12{word-spacing:-22.746000px;}
.ws50{word-spacing:-22.742700px;}
.ws1d{word-spacing:-22.740300px;}
.ws6c{word-spacing:-22.739400px;}
.ws23{word-spacing:-22.735800px;}
.wsec{word-spacing:-22.717800px;}
.ws60{word-spacing:-22.680000px;}
.wscb{word-spacing:-22.669500px;}
.ws7a{word-spacing:-22.539300px;}
.ws14{word-spacing:-22.536000px;}
.ws108{word-spacing:-22.535100px;}
.ws72{word-spacing:-22.534200px;}
.ws8f{word-spacing:-22.532400px;}
.ws7f{word-spacing:-22.530600px;}
.wsf2{word-spacing:-22.528200px;}
.wse4{word-spacing:-22.527600px;}
.ws18{word-spacing:-22.518900px;}
.wsf{word-spacing:-22.515300px;}
.ws4c{word-spacing:-22.513500px;}
.wse2{word-spacing:-22.511100px;}
.ws8e{word-spacing:-22.458600px;}
.ws19{word-spacing:-22.457700px;}
.ws47{word-spacing:-22.452300px;}
.wsb3{word-spacing:-22.449600px;}
.ws26{word-spacing:-22.445100px;}
.wsad{word-spacing:-22.444800px;}
.ws7d{word-spacing:-22.322400px;}
.ws62{word-spacing:-22.321500px;}
.ws1b{word-spacing:-22.309200px;}
.ws88{word-spacing:-22.306500px;}
.ws17{word-spacing:-22.301100px;}
.ws7e{word-spacing:-22.234500px;}
.ws1c{word-spacing:-22.032000px;}
.ws46{word-spacing:-22.026600px;}
.ws2f{word-spacing:-22.025400px;}
.ws83{word-spacing:-22.023000px;}
.ws7{word-spacing:-21.944700px;}
.wsb1{word-spacing:-21.903000px;}
.ws63{word-spacing:-21.819300px;}
.wse3{word-spacing:-21.813300px;}
.wsc0{word-spacing:-21.796200px;}
.ws79{word-spacing:-21.733200px;}
.ws8{word-spacing:-21.600600px;}
.ws71{word-spacing:-21.583800px;}
.wsae{word-spacing:-21.511500px;}
.ws24{word-spacing:-21.312000px;}
.ws22{word-spacing:-21.308400px;}
.ws35{word-spacing:-21.304800px;}
.wsf3{word-spacing:-21.095100px;}
.wse8{word-spacing:-21.092400px;}
.wsb2{word-spacing:-20.609700px;}
.ws84{word-spacing:-20.382000px;}
.wsd9{word-spacing:-20.380200px;}
.wsd6{word-spacing:-20.374200px;}
.ws39{word-spacing:-20.363400px;}
.ws75{word-spacing:-20.305500px;}
.ws96{word-spacing:-20.301300px;}
.ws95{word-spacing:-20.278200px;}
.wse7{word-spacing:-19.661100px;}
.ws76{word-spacing:-19.654200px;}
.ws74{word-spacing:-19.646400px;}
.wsaf{word-spacing:-19.379400px;}
.ws42{word-spacing:-19.152000px;}
.wsc2{word-spacing:-19.137600px;}
.ws3a{word-spacing:-18.934200px;}
.ws66{word-spacing:-18.857400px;}
.wsb0{word-spacing:-18.819900px;}
.ws67{word-spacing:-18.432000px;}
.ws8a{word-spacing:-18.353700px;}
.wsd3{word-spacing:-18.215100px;}
.wsbf{word-spacing:-18.214200px;}
.wsc3{word-spacing:-17.712000px;}
.ws97{word-spacing:-17.708400px;}
.ws2e{word-spacing:-17.492400px;}
.ws2a{word-spacing:-17.480700px;}
.ws8c{word-spacing:-17.404200px;}
.wsf1{word-spacing:-16.992000px;}
.ws8d{word-spacing:-16.988400px;}
.wsea{word-spacing:-16.983900px;}
.wsf9{word-spacing:-16.972200px;}
.ws91{word-spacing:-16.913700px;}
.ws94{word-spacing:-16.776000px;}
.wse0{word-spacing:-16.773300px;}
.ws92{word-spacing:-16.772400px;}
.ws29{word-spacing:-16.770600px;}
.wscd{word-spacing:-16.759800px;}
.ws2d{word-spacing:-16.752600px;}
.wsce{word-spacing:-16.699200px;}
.ws53{word-spacing:-16.696800px;}
.ws55{word-spacing:-16.678800px;}
.ws93{word-spacing:-16.488000px;}
.ws2b{word-spacing:-16.278000px;}
.wsb6{word-spacing:-16.274400px;}
.ws102{word-spacing:-16.266000px;}
.wsbe{word-spacing:-16.263900px;}
.ws54{word-spacing:-16.200000px;}
.wsa6{word-spacing:-16.180800px;}
.wsa5{word-spacing:-16.083000px;}
.wsca{word-spacing:-16.058400px;}
.wsa3{word-spacing:-16.056600px;}
.wsd1{word-spacing:-16.050600px;}
.ws6f{word-spacing:-15.980400px;}
.ws9c{word-spacing:-15.753300px;}
.ws9b{word-spacing:-15.748800px;}
.wsa0{word-spacing:-15.741600px;}
.ws9a{word-spacing:-15.632700px;}
.ws56{word-spacing:-15.552000px;}
.ws9e{word-spacing:-15.465300px;}
.ws99{word-spacing:-15.444000px;}
.wsa2{word-spacing:-15.372600px;}
.wsa7{word-spacing:-15.370800px;}
.wsa9{word-spacing:-15.363000px;}
.ws9f{word-spacing:-15.342900px;}
.wsa8{word-spacing:-15.338400px;}
.wsa1{word-spacing:-15.337500px;}
.wsf0{word-spacing:-15.335100px;}
.wsd5{word-spacing:-15.333300px;}
.ws34{word-spacing:-15.332400px;}
.wsab{word-spacing:-15.330600px;}
.wsac{word-spacing:-15.330300px;}
.wsa4{word-spacing:-15.327000px;}
.ws70{word-spacing:-15.325800px;}
.ws57{word-spacing:-15.319200px;}
.wsaa{word-spacing:-15.193200px;}
.ws27{word-spacing:-14.832000px;}
.wsc9{word-spacing:-14.828400px;}
.wsf7{word-spacing:-14.615100px;}
.wsc8{word-spacing:-14.596200px;}
.ws78{word-spacing:-14.573700px;}
.ws77{word-spacing:-14.544000px;}
.ws33{word-spacing:-14.112000px;}
.wscf{word-spacing:-13.887900px;}
.ws3c{word-spacing:-13.883400px;}
.wsdc{word-spacing:-13.175100px;}
.ws101{word-spacing:-13.173300px;}
.ws2c{word-spacing:-12.672000px;}
.wsbc{word-spacing:-12.668400px;}
.wsef{word-spacing:-12.454200px;}
.wsc4{word-spacing:-12.450600px;}
.ws30{word-spacing:-12.432900px;}
.wsfa{word-spacing:-12.365400px;}
.wse1{word-spacing:-12.231000px;}
.wsbd{word-spacing:-11.958000px;}
.wsd{word-spacing:-11.948400px;}
.wsfd{word-spacing:-11.735100px;}
.ws41{word-spacing:-11.730600px;}
.wsff{word-spacing:-9.798000px;}
.wse9{word-spacing:-9.793500px;}
.wsd7{word-spacing:-9.582000px;}
.ws4f{word-spacing:-9.573900px;}
.ws6b{word-spacing:-9.356400px;}
.ws4e{word-spacing:-9.061200px;}
.ws4d{word-spacing:-8.855100px;}
.wsf6{word-spacing:-8.819400px;}
.wsb9{word-spacing:-8.271300px;}
.wsee{word-spacing:-8.129100px;}
.wsba{word-spacing:-8.065500px;}
.ws105{word-spacing:-7.632000px;}
.ws5b{word-spacing:-7.624200px;}
.ws103{word-spacing:-7.407300px;}
.ws25{word-spacing:-7.191000px;}
.ws3b{word-spacing:-6.192000px;}
.wse{word-spacing:-5.974200px;}
.ws104{word-spacing:-5.970600px;}
.wsc7{word-spacing:-5.900400px;}
.ws21{word-spacing:-5.468400px;}
.wse5{word-spacing:-5.253300px;}
.ws69{word-spacing:-5.163300px;}
.ws6a{word-spacing:-4.758000px;}
.ws10{word-spacing:-4.233600px;}
.ws5{word-spacing:-3.816000px;}
.ws11{word-spacing:-3.812400px;}
.wsb{word-spacing:-3.810600px;}
.wsa{word-spacing:-3.443400px;}
.ws4{word-spacing:-3.001500px;}
.ws6d{word-spacing:-1.791300px;}
.ws36{word-spacing:-1.152000px;}
.wsb7{word-spacing:-0.844200px;}
.wsb8{word-spacing:-0.428400px;}
.ws81{word-spacing:0.000000px;}
.ws4b{word-spacing:0.579600px;}
.ws59{word-spacing:0.592200px;}
.ws5a{word-spacing:1.002000px;}
.wsc5{word-spacing:1.011600px;}
.ws58{word-spacing:1.012800px;}
.wsf5{word-spacing:1.224900px;}
.wsd0{word-spacing:1.238400px;}
.ws3e{word-spacing:3.392400px;}
.ws1f{word-spacing:5.541600px;}
.ws1e{word-spacing:5.616300px;}
.ws3d{word-spacing:7.059600px;}
.wsdb{word-spacing:9.864000px;}
.wsf4{word-spacing:16.122000px;}
.wsf8{word-spacing:21.182400px;}
.ws106{word-spacing:25.491600px;}
.wsdf{word-spacing:32.688000px;}
.wse6{word-spacing:35.071800px;}
.ws109{word-spacing:50.907600px;}
.wsd4{word-spacing:59.550000px;}
.wsdd{word-spacing:64.816200px;}
.wsfb{word-spacing:73.229400px;}
.wseb{word-spacing:76.115400px;}
.ws100{word-spacing:90.290700px;}
.wsd8{word-spacing:94.842600px;}
.wsfe{word-spacing:103.467600px;}
.ws107{word-spacing:107.784000px;}
.wsed{word-spacing:140.688000px;}
.wsfc{word-spacing:145.728000px;}
.wsda{word-spacing:164.664000px;}
._2{margin-left:-1.803300px;}
._1{width:1.071300px;}
._17{width:12.941100px;}
._19{width:15.407700px;}
._18{width:16.450500px;}
._16{width:17.776800px;}
._0{width:18.981000px;}
._8{width:20.516400px;}
._d{width:21.524400px;}
._f{width:22.605900px;}
._13{width:23.727300px;}
._b{width:24.973200px;}
._c{width:26.373000px;}
._a{width:27.461400px;}
._1b{width:28.638000px;}
._4{width:29.791200px;}
._12{width:30.954600px;}
._15{width:32.353800px;}
._1a{width:33.976800px;}
._9{width:35.051400px;}
._5{width:36.285900px;}
._3{width:38.137500px;}
._e{width:40.968000px;}
._14{width:42.264000px;}
._11{width:45.567600px;}
._7{width:47.103600px;}
._10{width:48.884400px;}
._21{width:51.846000px;}
._26{width:58.338000px;}
._27{width:62.741100px;}
._1c{width:65.520000px;}
._2c{width:67.682400px;}
._6{width:72.000000px;}
._1e{width:73.434000px;}
._23{width:74.448000px;}
._24{width:76.719000px;}
._2e{width:92.594400px;}
._1d{width:101.360700px;}
._22{width:106.477800px;}
._28{width:115.074000px;}
._25{width:117.663300px;}
._2b{width:132.201300px;}
._1f{width:136.489500px;}
._2a{width:145.382100px;}
._2d{width:149.418000px;}
._29{width:187.578000px;}
._20{width:206.303400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.300000px;}
.fs4{font-size:59.700000px;}
.fs3{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:2.550000px;}
.y92{bottom:2.580000px;}
.y82{bottom:2.611500px;}
.ya5{bottom:2.625000px;}
.y87{bottom:2.640000px;}
.y96{bottom:2.671500px;}
.y7d{bottom:2.700000px;}
.yab{bottom:3.421500px;}
.y83{bottom:9.450000px;}
.ya3{bottom:9.465000px;}
.y94{bottom:9.511500px;}
.y7f{bottom:9.540000px;}
.y98{bottom:9.600000px;}
.y81{bottom:16.290000px;}
.ya4{bottom:16.305000px;}
.y95{bottom:16.350000px;}
.y7b{bottom:16.380000px;}
.y9d{bottom:16.411500px;}
.y91{bottom:16.440000px;}
.y8b{bottom:16.470000px;}
.y85{bottom:16.500000px;}
.ya9{bottom:17.280000px;}
.y9a{bottom:23.250000px;}
.y8e{bottom:23.280000px;}
.y89{bottom:23.311500px;}
.y7e{bottom:23.400000px;}
.ya7{bottom:24.121500px;}
.y8a{bottom:30.150000px;}
.y86{bottom:30.180000px;}
.y7c{bottom:30.240000px;}
.y9c{bottom:30.271500px;}
.y90{bottom:30.300000px;}
.ya8{bottom:31.140000px;}
.ya0{bottom:43.921500px;}
.y9b{bottom:43.950000px;}
.y8f{bottom:43.980000px;}
.y8c{bottom:44.011500px;}
.yaa{bottom:44.821500px;}
.yac{bottom:63.615000px;}
.y100{bottom:65.236500px;}
.yff{bottom:85.936500px;}
.y65{bottom:87.196500px;}
.ya6{bottom:91.875000px;}
.yae{bottom:95.475000px;}
.ycd{bottom:98.715000px;}
.y4b{bottom:99.615000px;}
.yfe{bottom:106.636500px;}
.y64{bottom:107.896500px;}
.ycc{bottom:119.415000px;}
.y4a{bottom:120.315000px;}
.yfd{bottom:127.336500px;}
.y63{bottom:128.596500px;}
.ycb{bottom:140.115000px;}
.y49{bottom:141.015000px;}
.yfc{bottom:148.036500px;}
.ya2{bottom:148.650000px;}
.y62{bottom:149.296500px;}
.yca{bottom:160.815000px;}
.y48{bottom:161.715000px;}
.yfb{bottom:168.736500px;}
.ya1{bottom:176.925000px;}
.yc9{bottom:181.336500px;}
.yfa{bottom:189.436500px;}
.y61{bottom:190.696500px;}
.yc8{bottom:202.036500px;}
.y47{bottom:203.115000px;}
.y9f{bottom:205.275000px;}
.yf9{bottom:210.136500px;}
.y60{bottom:211.396500px;}
.yc7{bottom:222.736500px;}
.y46{bottom:223.815000px;}
.yf8{bottom:230.836500px;}
.y5f{bottom:232.096500px;}
.yc6{bottom:243.436500px;}
.y45{bottom:244.515000px;}
.yf7{bottom:251.536500px;}
.y5e{bottom:252.795000px;}
.y99{bottom:261.225000px;}
.yc5{bottom:264.136500px;}
.y44{bottom:265.215000px;}
.yf6{bottom:272.236500px;}
.y5d{bottom:273.496500px;}
.yc4{bottom:285.555000px;}
.y43{bottom:285.915000px;}
.yf5{bottom:292.936500px;}
.y5c{bottom:294.196500px;}
.y42{bottom:306.615000px;}
.yf4{bottom:313.636500px;}
.y5b{bottom:314.896500px;}
.y97{bottom:317.175000px;}
.y41{bottom:327.315000px;}
.yc3{bottom:329.655000px;}
.yf3{bottom:334.155000px;}
.y5a{bottom:335.596500px;}
.y93{bottom:345.525000px;}
.y40{bottom:348.015000px;}
.yc2{bottom:350.355000px;}
.yf2{bottom:354.855000px;}
.y59{bottom:356.295000px;}
.y3f{bottom:368.715000px;}
.yc1{bottom:371.055000px;}
.y8d{bottom:373.875000px;}
.yf1{bottom:375.555000px;}
.yc0{bottom:391.755000px;}
.yf0{bottom:396.255000px;}
.y58{bottom:397.696500px;}
.y3e{bottom:410.115000px;}
.ybf{bottom:412.455000px;}
.yef{bottom:416.955000px;}
.y57{bottom:418.396500px;}
.y88{bottom:429.825000px;}
.y3d{bottom:430.815000px;}
.ybe{bottom:433.155000px;}
.yee{bottom:437.655000px;}
.y56{bottom:439.096500px;}
.y3c{bottom:451.515000px;}
.ybd{bottom:453.855000px;}
.yed{bottom:458.355000px;}
.y55{bottom:459.795000px;}
.y3b{bottom:472.215000px;}
.ybc{bottom:475.275000px;}
.yec{bottom:479.055000px;}
.y54{bottom:480.496500px;}
.y84{bottom:485.775000px;}
.y3a{bottom:492.915000px;}
.yeb{bottom:499.755000px;}
.y53{bottom:501.195000px;}
.y39{bottom:513.615000px;}
.ybb{bottom:519.375000px;}
.yea{bottom:520.455000px;}
.y52{bottom:521.896500px;}
.y80{bottom:527.925000px;}
.y38{bottom:535.036500px;}
.yba{bottom:540.075000px;}
.ye9{bottom:541.155000px;}
.y51{bottom:542.596500px;}
.y7a{bottom:556.275000px;}
.yb9{bottom:560.775000px;}
.ye8{bottom:561.855000px;}
.y50{bottom:563.296500px;}
.y37{bottom:579.136500px;}
.yb8{bottom:581.475000px;}
.y1c{bottom:582.375000px;}
.ye7{bottom:582.555000px;}
.y36{bottom:599.836500px;}
.yb7{bottom:602.175000px;}
.y1b{bottom:603.075000px;}
.ye6{bottom:603.255000px;}
.y35{bottom:620.536500px;}
.y79{bottom:622.875000px;}
.y1a{bottom:623.775000px;}
.ye5{bottom:623.955000px;}
.y4f{bottom:641.236500px;}
.y78{bottom:643.575000px;}
.y19{bottom:644.475000px;}
.ye4{bottom:644.655000px;}
.y34{bottom:661.936500px;}
.y77{bottom:664.275000px;}
.y18{bottom:665.175000px;}
.ye3{bottom:665.355000px;}
.y33{bottom:682.636500px;}
.y76{bottom:684.975000px;}
.y17{bottom:685.875000px;}
.ye2{bottom:686.055000px;}
.yad{bottom:702.255000px;}
.y32{bottom:703.336500px;}
.y75{bottom:705.675000px;}
.y16{bottom:706.575000px;}
.ye1{bottom:706.755000px;}
.y31{bottom:724.036500px;}
.y74{bottom:726.375000px;}
.y15{bottom:727.275000px;}
.ye0{bottom:727.455000px;}
.y4e{bottom:744.736500px;}
.y73{bottom:747.075000px;}
.ydf{bottom:748.155000px;}
.y30{bottom:765.436500px;}
.yb6{bottom:767.775000px;}
.y14{bottom:768.675000px;}
.yde{bottom:768.855000px;}
.y2f{bottom:786.136500px;}
.y72{bottom:788.475000px;}
.y13{bottom:789.375000px;}
.ydd{bottom:789.555000px;}
.y2e{bottom:806.836500px;}
.y71{bottom:809.175000px;}
.y12{bottom:810.075000px;}
.ydc{bottom:810.255000px;}
.y2d{bottom:827.536500px;}
.y70{bottom:829.875000px;}
.y11{bottom:830.775000px;}
.ydb{bottom:830.955000px;}
.y2c{bottom:848.236500px;}
.y6f{bottom:850.575000px;}
.y10{bottom:851.475000px;}
.yda{bottom:851.655000px;}
.y2b{bottom:868.936500px;}
.y6e{bottom:871.275000px;}
.yd9{bottom:872.355000px;}
.y2a{bottom:889.636500px;}
.y6d{bottom:891.975000px;}
.yf{bottom:892.875000px;}
.yd8{bottom:893.055000px;}
.y4d{bottom:910.336500px;}
.y6c{bottom:912.675000px;}
.ye{bottom:913.575000px;}
.yd7{bottom:913.755000px;}
.y29{bottom:931.036500px;}
.y6b{bottom:933.375000px;}
.yd{bottom:934.275000px;}
.yd6{bottom:934.455000px;}
.y28{bottom:951.736500px;}
.y6a{bottom:954.075000px;}
.yc{bottom:954.975000px;}
.yd5{bottom:955.155000px;}
.y27{bottom:972.436500px;}
.yb5{bottom:974.775000px;}
.yb{bottom:975.675000px;}
.yd4{bottom:975.855000px;}
.y26{bottom:993.136500px;}
.yb4{bottom:995.475000px;}
.ya{bottom:996.375000px;}
.yd3{bottom:996.555000px;}
.y25{bottom:1013.836500px;}
.yb3{bottom:1016.175000px;}
.y9{bottom:1017.075000px;}
.yd2{bottom:1017.255000px;}
.y24{bottom:1034.536500px;}
.yb2{bottom:1036.875000px;}
.y8{bottom:1037.775000px;}
.yd1{bottom:1037.955000px;}
.y23{bottom:1055.236500px;}
.yb1{bottom:1057.575000px;}
.y7{bottom:1058.475000px;}
.yd0{bottom:1058.655000px;}
.y22{bottom:1075.936500px;}
.y69{bottom:1076.655000px;}
.yb0{bottom:1078.275000px;}
.y6{bottom:1079.175000px;}
.ycf{bottom:1079.355000px;}
.y4c{bottom:1096.636500px;}
.yaf{bottom:1099.695000px;}
.y5{bottom:1099.875000px;}
.yce{bottom:1100.055000px;}
.y21{bottom:1117.336500px;}
.y4{bottom:1120.575000px;}
.y68{bottom:1120.755000px;}
.y20{bottom:1138.036500px;}
.y3{bottom:1141.275000px;}
.y67{bottom:1141.455000px;}
.y1f{bottom:1158.736500px;}
.y66{bottom:1162.155000px;}
.y1e{bottom:1179.436500px;}
.y2{bottom:1182.855000px;}
.y1d{bottom:1200.675000px;}
.y1{bottom:1203.555000px;}
.h8{height:28.275000px;}
.h7{height:32.734570px;}
.h9{height:33.560010px;}
.hd{height:41.481006px;}
.h6{height:42.075000px;}
.hc{height:46.066846px;}
.h2{height:48.796875px;}
.h3{height:50.027344px;}
.h5{height:52.031250px;}
.ha{height:55.875000px;}
.hb{height:56.700000px;}
.h4{height:57.091846px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:61.125000px;}
.w2{width:61.575000px;}
.w4{width:62.475000px;}
.w7{width:64.125000px;}
.wa{width:86.175000px;}
.w9{width:94.800000px;}
.w5{width:105.150000px;}
.w6{width:128.400000px;}
.w8{width:160.950000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.820000px;}
.xb{left:9.885000px;}
.x22{left:11.113500px;}
.xf{left:12.285000px;}
.x1f{left:13.335000px;}
.x9{left:14.413500px;}
.x23{left:15.435000px;}
.x8{left:17.113500px;}
.x6{left:18.313500px;}
.xc{left:19.785000px;}
.x13{left:22.425000px;}
.x24{left:23.713500px;}
.x1a{left:24.795000px;}
.x11{left:26.550000px;}
.x20{left:28.035000px;}
.x21{left:29.295000px;}
.xe{left:31.185000px;}
.x5{left:34.425000px;}
.x1c{left:35.910000px;}
.x1b{left:37.125000px;}
.x3{left:42.480000px;}
.x15{left:44.775000px;}
.x1e{left:51.975000px;}
.x26{left:58.138500px;}
.x1{left:63.180000px;}
.x16{left:68.713500px;}
.x1d{left:72.495000px;}
.x2b{left:74.338500px;}
.x7{left:95.925000px;}
.x25{left:137.880000px;}
.x27{left:148.320000px;}
.xa{left:156.975000px;}
.xd{left:219.375000px;}
.x2{left:270.000000px;}
.x29{left:299.338500px;}
.x10{left:324.450000px;}
.x28{left:342.360000px;}
.x4{left:373.860000px;}
.x2a{left:398.700000px;}
.x12{left:452.775000px;}
.x14{left:516.825000px;}
.x17{left:677.700000px;}
.x19{left:772.425000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:64.256000pt;}
.wsd2{word-spacing:-58.223200pt;}
.wscc{word-spacing:-40.353333pt;}
.ws44{word-spacing:-40.004267pt;}
.ws20{word-spacing:-40.002667pt;}
.wsb4{word-spacing:-39.714133pt;}
.ws31{word-spacing:-39.706133pt;}
.ws13{word-spacing:-36.416000pt;}
.ws7c{word-spacing:-36.032000pt;}
.ws98{word-spacing:-24.429067pt;}
.ws9d{word-spacing:-24.171467pt;}
.ws90{word-spacing:-21.248000pt;}
.ws40{word-spacing:-21.045600pt;}
.ws64{word-spacing:-20.968267pt;}
.ws6e{word-spacing:-20.854400pt;}
.ws73{word-spacing:-20.841067pt;}
.ws32{word-spacing:-20.797600pt;}
.ws49{word-spacing:-20.784000pt;}
.ws0{word-spacing:-20.776000pt;}
.ws4a{word-spacing:-20.720267pt;}
.wsc6{word-spacing:-20.675733pt;}
.ws3f{word-spacing:-20.670400pt;}
.ws85{word-spacing:-20.668800pt;}
.ws28{word-spacing:-20.667200pt;}
.ws80{word-spacing:-20.663733pt;}
.ws37{word-spacing:-20.657600pt;}
.wsbb{word-spacing:-20.654400pt;}
.wsc1{word-spacing:-20.608000pt;}
.ws87{word-spacing:-20.607733pt;}
.ws6{word-spacing:-20.604800pt;}
.ws45{word-spacing:-20.603733pt;}
.wsb5{word-spacing:-20.602667pt;}
.ws5d{word-spacing:-20.600000pt;}
.ws2{word-spacing:-20.596000pt;}
.ws38{word-spacing:-20.594400pt;}
.ws65{word-spacing:-20.588000pt;}
.ws1{word-spacing:-20.587200pt;}
.ws5f{word-spacing:-20.585067pt;}
.ws51{word-spacing:-20.581067pt;}
.ws1a{word-spacing:-20.542400pt;}
.wsde{word-spacing:-20.480000pt;}
.ws5c{word-spacing:-20.478400pt;}
.ws8b{word-spacing:-20.475200pt;}
.ws43{word-spacing:-20.472800pt;}
.ws5e{word-spacing:-20.420533pt;}
.ws61{word-spacing:-20.416000pt;}
.ws89{word-spacing:-20.413600pt;}
.ws68{word-spacing:-20.412800pt;}
.ws15{word-spacing:-20.409600pt;}
.ws86{word-spacing:-20.408000pt;}
.ws82{word-spacing:-20.404000pt;}
.ws48{word-spacing:-20.229333pt;}
.wsc{word-spacing:-20.226133pt;}
.ws9{word-spacing:-20.224000pt;}
.ws52{word-spacing:-20.220800pt;}
.ws7b{word-spacing:-20.220533pt;}
.ws3{word-spacing:-20.220000pt;}
.ws16{word-spacing:-20.219200pt;}
.ws12{word-spacing:-20.218667pt;}
.ws50{word-spacing:-20.215733pt;}
.ws1d{word-spacing:-20.213600pt;}
.ws6c{word-spacing:-20.212800pt;}
.ws23{word-spacing:-20.209600pt;}
.wsec{word-spacing:-20.193600pt;}
.ws60{word-spacing:-20.160000pt;}
.wscb{word-spacing:-20.150667pt;}
.ws7a{word-spacing:-20.034933pt;}
.ws14{word-spacing:-20.032000pt;}
.ws108{word-spacing:-20.031200pt;}
.ws72{word-spacing:-20.030400pt;}
.ws8f{word-spacing:-20.028800pt;}
.ws7f{word-spacing:-20.027200pt;}
.wsf2{word-spacing:-20.025067pt;}
.wse4{word-spacing:-20.024533pt;}
.ws18{word-spacing:-20.016800pt;}
.wsf{word-spacing:-20.013600pt;}
.ws4c{word-spacing:-20.012000pt;}
.wse2{word-spacing:-20.009867pt;}
.ws8e{word-spacing:-19.963200pt;}
.ws19{word-spacing:-19.962400pt;}
.ws47{word-spacing:-19.957600pt;}
.wsb3{word-spacing:-19.955200pt;}
.ws26{word-spacing:-19.951200pt;}
.wsad{word-spacing:-19.950933pt;}
.ws7d{word-spacing:-19.842133pt;}
.ws62{word-spacing:-19.841333pt;}
.ws1b{word-spacing:-19.830400pt;}
.ws88{word-spacing:-19.828000pt;}
.ws17{word-spacing:-19.823200pt;}
.ws7e{word-spacing:-19.764000pt;}
.ws1c{word-spacing:-19.584000pt;}
.ws46{word-spacing:-19.579200pt;}
.ws2f{word-spacing:-19.578133pt;}
.ws83{word-spacing:-19.576000pt;}
.ws7{word-spacing:-19.506400pt;}
.wsb1{word-spacing:-19.469333pt;}
.ws63{word-spacing:-19.394933pt;}
.wse3{word-spacing:-19.389600pt;}
.wsc0{word-spacing:-19.374400pt;}
.ws79{word-spacing:-19.318400pt;}
.ws8{word-spacing:-19.200533pt;}
.ws71{word-spacing:-19.185600pt;}
.wsae{word-spacing:-19.121333pt;}
.ws24{word-spacing:-18.944000pt;}
.ws22{word-spacing:-18.940800pt;}
.ws35{word-spacing:-18.937600pt;}
.wsf3{word-spacing:-18.751200pt;}
.wse8{word-spacing:-18.748800pt;}
.wsb2{word-spacing:-18.319733pt;}
.ws84{word-spacing:-18.117333pt;}
.wsd9{word-spacing:-18.115733pt;}
.wsd6{word-spacing:-18.110400pt;}
.ws39{word-spacing:-18.100800pt;}
.ws75{word-spacing:-18.049333pt;}
.ws96{word-spacing:-18.045600pt;}
.ws95{word-spacing:-18.025067pt;}
.wse7{word-spacing:-17.476533pt;}
.ws76{word-spacing:-17.470400pt;}
.ws74{word-spacing:-17.463467pt;}
.wsaf{word-spacing:-17.226133pt;}
.ws42{word-spacing:-17.024000pt;}
.wsc2{word-spacing:-17.011200pt;}
.ws3a{word-spacing:-16.830400pt;}
.ws66{word-spacing:-16.762133pt;}
.wsb0{word-spacing:-16.728800pt;}
.ws67{word-spacing:-16.384000pt;}
.ws8a{word-spacing:-16.314400pt;}
.wsd3{word-spacing:-16.191200pt;}
.wsbf{word-spacing:-16.190400pt;}
.wsc3{word-spacing:-15.744000pt;}
.ws97{word-spacing:-15.740800pt;}
.ws2e{word-spacing:-15.548800pt;}
.ws2a{word-spacing:-15.538400pt;}
.ws8c{word-spacing:-15.470400pt;}
.wsf1{word-spacing:-15.104000pt;}
.ws8d{word-spacing:-15.100800pt;}
.wsea{word-spacing:-15.096800pt;}
.wsf9{word-spacing:-15.086400pt;}
.ws91{word-spacing:-15.034400pt;}
.ws94{word-spacing:-14.912000pt;}
.wse0{word-spacing:-14.909600pt;}
.ws92{word-spacing:-14.908800pt;}
.ws29{word-spacing:-14.907200pt;}
.wscd{word-spacing:-14.897600pt;}
.ws2d{word-spacing:-14.891200pt;}
.wsce{word-spacing:-14.843733pt;}
.ws53{word-spacing:-14.841600pt;}
.ws55{word-spacing:-14.825600pt;}
.ws93{word-spacing:-14.656000pt;}
.ws2b{word-spacing:-14.469333pt;}
.wsb6{word-spacing:-14.466133pt;}
.ws102{word-spacing:-14.458667pt;}
.wsbe{word-spacing:-14.456800pt;}
.ws54{word-spacing:-14.400000pt;}
.wsa6{word-spacing:-14.382933pt;}
.wsa5{word-spacing:-14.296000pt;}
.wsca{word-spacing:-14.274133pt;}
.wsa3{word-spacing:-14.272533pt;}
.wsd1{word-spacing:-14.267200pt;}
.ws6f{word-spacing:-14.204800pt;}
.ws9c{word-spacing:-14.002933pt;}
.ws9b{word-spacing:-13.998933pt;}
.wsa0{word-spacing:-13.992533pt;}
.ws9a{word-spacing:-13.895733pt;}
.ws56{word-spacing:-13.824000pt;}
.ws9e{word-spacing:-13.746933pt;}
.ws99{word-spacing:-13.728000pt;}
.wsa2{word-spacing:-13.664533pt;}
.wsa7{word-spacing:-13.662933pt;}
.wsa9{word-spacing:-13.656000pt;}
.ws9f{word-spacing:-13.638133pt;}
.wsa8{word-spacing:-13.634133pt;}
.wsa1{word-spacing:-13.633333pt;}
.wsf0{word-spacing:-13.631200pt;}
.wsd5{word-spacing:-13.629600pt;}
.ws34{word-spacing:-13.628800pt;}
.wsab{word-spacing:-13.627200pt;}
.wsac{word-spacing:-13.626933pt;}
.wsa4{word-spacing:-13.624000pt;}
.ws70{word-spacing:-13.622933pt;}
.ws57{word-spacing:-13.617067pt;}
.wsaa{word-spacing:-13.505067pt;}
.ws27{word-spacing:-13.184000pt;}
.wsc9{word-spacing:-13.180800pt;}
.wsf7{word-spacing:-12.991200pt;}
.wsc8{word-spacing:-12.974400pt;}
.ws78{word-spacing:-12.954400pt;}
.ws77{word-spacing:-12.928000pt;}
.ws33{word-spacing:-12.544000pt;}
.wscf{word-spacing:-12.344800pt;}
.ws3c{word-spacing:-12.340800pt;}
.wsdc{word-spacing:-11.711200pt;}
.ws101{word-spacing:-11.709600pt;}
.ws2c{word-spacing:-11.264000pt;}
.wsbc{word-spacing:-11.260800pt;}
.wsef{word-spacing:-11.070400pt;}
.wsc4{word-spacing:-11.067200pt;}
.ws30{word-spacing:-11.051467pt;}
.wsfa{word-spacing:-10.991467pt;}
.wse1{word-spacing:-10.872000pt;}
.wsbd{word-spacing:-10.629333pt;}
.wsd{word-spacing:-10.620800pt;}
.wsfd{word-spacing:-10.431200pt;}
.ws41{word-spacing:-10.427200pt;}
.wsff{word-spacing:-8.709333pt;}
.wse9{word-spacing:-8.705333pt;}
.wsd7{word-spacing:-8.517333pt;}
.ws4f{word-spacing:-8.510133pt;}
.ws6b{word-spacing:-8.316800pt;}
.ws4e{word-spacing:-8.054400pt;}
.ws4d{word-spacing:-7.871200pt;}
.wsf6{word-spacing:-7.839467pt;}
.wsb9{word-spacing:-7.352267pt;}
.wsee{word-spacing:-7.225867pt;}
.wsba{word-spacing:-7.169333pt;}
.ws105{word-spacing:-6.784000pt;}
.ws5b{word-spacing:-6.777067pt;}
.ws103{word-spacing:-6.584267pt;}
.ws25{word-spacing:-6.392000pt;}
.ws3b{word-spacing:-5.504000pt;}
.wse{word-spacing:-5.310400pt;}
.ws104{word-spacing:-5.307200pt;}
.wsc7{word-spacing:-5.244800pt;}
.ws21{word-spacing:-4.860800pt;}
.wse5{word-spacing:-4.669600pt;}
.ws69{word-spacing:-4.589600pt;}
.ws6a{word-spacing:-4.229333pt;}
.ws10{word-spacing:-3.763200pt;}
.ws5{word-spacing:-3.392000pt;}
.ws11{word-spacing:-3.388800pt;}
.wsb{word-spacing:-3.387200pt;}
.wsa{word-spacing:-3.060800pt;}
.ws4{word-spacing:-2.668000pt;}
.ws6d{word-spacing:-1.592267pt;}
.ws36{word-spacing:-1.024000pt;}
.wsb7{word-spacing:-0.750400pt;}
.wsb8{word-spacing:-0.380800pt;}
.ws81{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.515200pt;}
.ws59{word-spacing:0.526400pt;}
.ws5a{word-spacing:0.890667pt;}
.wsc5{word-spacing:0.899200pt;}
.ws58{word-spacing:0.900267pt;}
.wsf5{word-spacing:1.088800pt;}
.wsd0{word-spacing:1.100800pt;}
.ws3e{word-spacing:3.015467pt;}
.ws1f{word-spacing:4.925867pt;}
.ws1e{word-spacing:4.992267pt;}
.ws3d{word-spacing:6.275200pt;}
.wsdb{word-spacing:8.768000pt;}
.wsf4{word-spacing:14.330667pt;}
.wsf8{word-spacing:18.828800pt;}
.ws106{word-spacing:22.659200pt;}
.wsdf{word-spacing:29.056000pt;}
.wse6{word-spacing:31.174933pt;}
.ws109{word-spacing:45.251200pt;}
.wsd4{word-spacing:52.933333pt;}
.wsdd{word-spacing:57.614400pt;}
.wsfb{word-spacing:65.092800pt;}
.wseb{word-spacing:67.658133pt;}
.ws100{word-spacing:80.258400pt;}
.wsd8{word-spacing:84.304533pt;}
.wsfe{word-spacing:91.971200pt;}
.ws107{word-spacing:95.808000pt;}
.wsed{word-spacing:125.056000pt;}
.wsfc{word-spacing:129.536000pt;}
.wsda{word-spacing:146.368000pt;}
._2{margin-left:-1.602933pt;}
._1{width:0.952267pt;}
._17{width:11.503200pt;}
._19{width:13.695733pt;}
._18{width:14.622667pt;}
._16{width:15.801600pt;}
._0{width:16.872000pt;}
._8{width:18.236800pt;}
._d{width:19.132800pt;}
._f{width:20.094133pt;}
._13{width:21.090933pt;}
._b{width:22.198400pt;}
._c{width:23.442667pt;}
._a{width:24.410133pt;}
._1b{width:25.456000pt;}
._4{width:26.481067pt;}
._12{width:27.515200pt;}
._15{width:28.758933pt;}
._1a{width:30.201600pt;}
._9{width:31.156800pt;}
._5{width:32.254133pt;}
._3{width:33.900000pt;}
._e{width:36.416000pt;}
._14{width:37.568000pt;}
._11{width:40.504533pt;}
._7{width:41.869867pt;}
._10{width:43.452800pt;}
._21{width:46.085333pt;}
._26{width:51.856000pt;}
._27{width:55.769867pt;}
._1c{width:58.240000pt;}
._2c{width:60.162133pt;}
._6{width:64.000000pt;}
._1e{width:65.274667pt;}
._23{width:66.176000pt;}
._24{width:68.194667pt;}
._2e{width:82.306133pt;}
._1d{width:90.098400pt;}
._22{width:94.646933pt;}
._28{width:102.288000pt;}
._25{width:104.589600pt;}
._2b{width:117.512267pt;}
._1f{width:121.324000pt;}
._2a{width:129.228533pt;}
._2d{width:132.816000pt;}
._29{width:166.736000pt;}
._20{width:183.380800pt;}
.fs2{font-size:42.933333pt;}
.fs4{font-size:53.066667pt;}
.fs3{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:2.266667pt;}
.y92{bottom:2.293333pt;}
.y82{bottom:2.321333pt;}
.ya5{bottom:2.333333pt;}
.y87{bottom:2.346667pt;}
.y96{bottom:2.374667pt;}
.y7d{bottom:2.400000pt;}
.yab{bottom:3.041333pt;}
.y83{bottom:8.400000pt;}
.ya3{bottom:8.413333pt;}
.y94{bottom:8.454667pt;}
.y7f{bottom:8.480000pt;}
.y98{bottom:8.533333pt;}
.y81{bottom:14.480000pt;}
.ya4{bottom:14.493333pt;}
.y95{bottom:14.533333pt;}
.y7b{bottom:14.560000pt;}
.y9d{bottom:14.588000pt;}
.y91{bottom:14.613333pt;}
.y8b{bottom:14.640000pt;}
.y85{bottom:14.666667pt;}
.ya9{bottom:15.360000pt;}
.y9a{bottom:20.666667pt;}
.y8e{bottom:20.693333pt;}
.y89{bottom:20.721333pt;}
.y7e{bottom:20.800000pt;}
.ya7{bottom:21.441333pt;}
.y8a{bottom:26.800000pt;}
.y86{bottom:26.826667pt;}
.y7c{bottom:26.880000pt;}
.y9c{bottom:26.908000pt;}
.y90{bottom:26.933333pt;}
.ya8{bottom:27.680000pt;}
.ya0{bottom:39.041333pt;}
.y9b{bottom:39.066667pt;}
.y8f{bottom:39.093333pt;}
.y8c{bottom:39.121333pt;}
.yaa{bottom:39.841333pt;}
.yac{bottom:56.546667pt;}
.y100{bottom:57.988000pt;}
.yff{bottom:76.388000pt;}
.y65{bottom:77.508000pt;}
.ya6{bottom:81.666667pt;}
.yae{bottom:84.866667pt;}
.ycd{bottom:87.746667pt;}
.y4b{bottom:88.546667pt;}
.yfe{bottom:94.788000pt;}
.y64{bottom:95.908000pt;}
.ycc{bottom:106.146667pt;}
.y4a{bottom:106.946667pt;}
.yfd{bottom:113.188000pt;}
.y63{bottom:114.308000pt;}
.ycb{bottom:124.546667pt;}
.y49{bottom:125.346667pt;}
.yfc{bottom:131.588000pt;}
.ya2{bottom:132.133333pt;}
.y62{bottom:132.708000pt;}
.yca{bottom:142.946667pt;}
.y48{bottom:143.746667pt;}
.yfb{bottom:149.988000pt;}
.ya1{bottom:157.266667pt;}
.yc9{bottom:161.188000pt;}
.yfa{bottom:168.388000pt;}
.y61{bottom:169.508000pt;}
.yc8{bottom:179.588000pt;}
.y47{bottom:180.546667pt;}
.y9f{bottom:182.466667pt;}
.yf9{bottom:186.788000pt;}
.y60{bottom:187.908000pt;}
.yc7{bottom:197.988000pt;}
.y46{bottom:198.946667pt;}
.yf8{bottom:205.188000pt;}
.y5f{bottom:206.308000pt;}
.yc6{bottom:216.388000pt;}
.y45{bottom:217.346667pt;}
.yf7{bottom:223.588000pt;}
.y5e{bottom:224.706667pt;}
.y99{bottom:232.200000pt;}
.yc5{bottom:234.788000pt;}
.y44{bottom:235.746667pt;}
.yf6{bottom:241.988000pt;}
.y5d{bottom:243.108000pt;}
.yc4{bottom:253.826667pt;}
.y43{bottom:254.146667pt;}
.yf5{bottom:260.388000pt;}
.y5c{bottom:261.508000pt;}
.y42{bottom:272.546667pt;}
.yf4{bottom:278.788000pt;}
.y5b{bottom:279.908000pt;}
.y97{bottom:281.933333pt;}
.y41{bottom:290.946667pt;}
.yc3{bottom:293.026667pt;}
.yf3{bottom:297.026667pt;}
.y5a{bottom:298.308000pt;}
.y93{bottom:307.133333pt;}
.y40{bottom:309.346667pt;}
.yc2{bottom:311.426667pt;}
.yf2{bottom:315.426667pt;}
.y59{bottom:316.706667pt;}
.y3f{bottom:327.746667pt;}
.yc1{bottom:329.826667pt;}
.y8d{bottom:332.333333pt;}
.yf1{bottom:333.826667pt;}
.yc0{bottom:348.226667pt;}
.yf0{bottom:352.226667pt;}
.y58{bottom:353.508000pt;}
.y3e{bottom:364.546667pt;}
.ybf{bottom:366.626667pt;}
.yef{bottom:370.626667pt;}
.y57{bottom:371.908000pt;}
.y88{bottom:382.066667pt;}
.y3d{bottom:382.946667pt;}
.ybe{bottom:385.026667pt;}
.yee{bottom:389.026667pt;}
.y56{bottom:390.308000pt;}
.y3c{bottom:401.346667pt;}
.ybd{bottom:403.426667pt;}
.yed{bottom:407.426667pt;}
.y55{bottom:408.706667pt;}
.y3b{bottom:419.746667pt;}
.ybc{bottom:422.466667pt;}
.yec{bottom:425.826667pt;}
.y54{bottom:427.108000pt;}
.y84{bottom:431.800000pt;}
.y3a{bottom:438.146667pt;}
.yeb{bottom:444.226667pt;}
.y53{bottom:445.506667pt;}
.y39{bottom:456.546667pt;}
.ybb{bottom:461.666667pt;}
.yea{bottom:462.626667pt;}
.y52{bottom:463.908000pt;}
.y80{bottom:469.266667pt;}
.y38{bottom:475.588000pt;}
.yba{bottom:480.066667pt;}
.ye9{bottom:481.026667pt;}
.y51{bottom:482.308000pt;}
.y7a{bottom:494.466667pt;}
.yb9{bottom:498.466667pt;}
.ye8{bottom:499.426667pt;}
.y50{bottom:500.708000pt;}
.y37{bottom:514.788000pt;}
.yb8{bottom:516.866667pt;}
.y1c{bottom:517.666667pt;}
.ye7{bottom:517.826667pt;}
.y36{bottom:533.188000pt;}
.yb7{bottom:535.266667pt;}
.y1b{bottom:536.066667pt;}
.ye6{bottom:536.226667pt;}
.y35{bottom:551.588000pt;}
.y79{bottom:553.666667pt;}
.y1a{bottom:554.466667pt;}
.ye5{bottom:554.626667pt;}
.y4f{bottom:569.988000pt;}
.y78{bottom:572.066667pt;}
.y19{bottom:572.866667pt;}
.ye4{bottom:573.026667pt;}
.y34{bottom:588.388000pt;}
.y77{bottom:590.466667pt;}
.y18{bottom:591.266667pt;}
.ye3{bottom:591.426667pt;}
.y33{bottom:606.788000pt;}
.y76{bottom:608.866667pt;}
.y17{bottom:609.666667pt;}
.ye2{bottom:609.826667pt;}
.yad{bottom:624.226667pt;}
.y32{bottom:625.188000pt;}
.y75{bottom:627.266667pt;}
.y16{bottom:628.066667pt;}
.ye1{bottom:628.226667pt;}
.y31{bottom:643.588000pt;}
.y74{bottom:645.666667pt;}
.y15{bottom:646.466667pt;}
.ye0{bottom:646.626667pt;}
.y4e{bottom:661.988000pt;}
.y73{bottom:664.066667pt;}
.ydf{bottom:665.026667pt;}
.y30{bottom:680.388000pt;}
.yb6{bottom:682.466667pt;}
.y14{bottom:683.266667pt;}
.yde{bottom:683.426667pt;}
.y2f{bottom:698.788000pt;}
.y72{bottom:700.866667pt;}
.y13{bottom:701.666667pt;}
.ydd{bottom:701.826667pt;}
.y2e{bottom:717.188000pt;}
.y71{bottom:719.266667pt;}
.y12{bottom:720.066667pt;}
.ydc{bottom:720.226667pt;}
.y2d{bottom:735.588000pt;}
.y70{bottom:737.666667pt;}
.y11{bottom:738.466667pt;}
.ydb{bottom:738.626667pt;}
.y2c{bottom:753.988000pt;}
.y6f{bottom:756.066667pt;}
.y10{bottom:756.866667pt;}
.yda{bottom:757.026667pt;}
.y2b{bottom:772.388000pt;}
.y6e{bottom:774.466667pt;}
.yd9{bottom:775.426667pt;}
.y2a{bottom:790.788000pt;}
.y6d{bottom:792.866667pt;}
.yf{bottom:793.666667pt;}
.yd8{bottom:793.826667pt;}
.y4d{bottom:809.188000pt;}
.y6c{bottom:811.266667pt;}
.ye{bottom:812.066667pt;}
.yd7{bottom:812.226667pt;}
.y29{bottom:827.588000pt;}
.y6b{bottom:829.666667pt;}
.yd{bottom:830.466667pt;}
.yd6{bottom:830.626667pt;}
.y28{bottom:845.988000pt;}
.y6a{bottom:848.066667pt;}
.yc{bottom:848.866667pt;}
.yd5{bottom:849.026667pt;}
.y27{bottom:864.388000pt;}
.yb5{bottom:866.466667pt;}
.yb{bottom:867.266667pt;}
.yd4{bottom:867.426667pt;}
.y26{bottom:882.788000pt;}
.yb4{bottom:884.866667pt;}
.ya{bottom:885.666667pt;}
.yd3{bottom:885.826667pt;}
.y25{bottom:901.188000pt;}
.yb3{bottom:903.266667pt;}
.y9{bottom:904.066667pt;}
.yd2{bottom:904.226667pt;}
.y24{bottom:919.588000pt;}
.yb2{bottom:921.666667pt;}
.y8{bottom:922.466667pt;}
.yd1{bottom:922.626667pt;}
.y23{bottom:937.988000pt;}
.yb1{bottom:940.066667pt;}
.y7{bottom:940.866667pt;}
.yd0{bottom:941.026667pt;}
.y22{bottom:956.388000pt;}
.y69{bottom:957.026667pt;}
.yb0{bottom:958.466667pt;}
.y6{bottom:959.266667pt;}
.ycf{bottom:959.426667pt;}
.y4c{bottom:974.788000pt;}
.yaf{bottom:977.506667pt;}
.y5{bottom:977.666667pt;}
.yce{bottom:977.826667pt;}
.y21{bottom:993.188000pt;}
.y4{bottom:996.066667pt;}
.y68{bottom:996.226667pt;}
.y20{bottom:1011.588000pt;}
.y3{bottom:1014.466667pt;}
.y67{bottom:1014.626667pt;}
.y1f{bottom:1029.988000pt;}
.y66{bottom:1033.026667pt;}
.y1e{bottom:1048.388000pt;}
.y2{bottom:1051.426667pt;}
.y1d{bottom:1067.266667pt;}
.y1{bottom:1069.826667pt;}
.h8{height:25.133333pt;}
.h7{height:29.097396pt;}
.h9{height:29.831120pt;}
.hd{height:36.872005pt;}
.h6{height:37.400000pt;}
.hc{height:40.948307pt;}
.h2{height:43.375000pt;}
.h3{height:44.468750pt;}
.h5{height:46.250000pt;}
.ha{height:49.666667pt;}
.hb{height:50.400000pt;}
.h4{height:50.748307pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:54.333333pt;}
.w2{width:54.733333pt;}
.w4{width:55.533333pt;}
.w7{width:57.000000pt;}
.wa{width:76.600000pt;}
.w9{width:84.266667pt;}
.w5{width:93.466667pt;}
.w6{width:114.133333pt;}
.w8{width:143.066667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.840000pt;}
.xb{left:8.786667pt;}
.x22{left:9.878667pt;}
.xf{left:10.920000pt;}
.x1f{left:11.853333pt;}
.x9{left:12.812000pt;}
.x23{left:13.720000pt;}
.x8{left:15.212000pt;}
.x6{left:16.278667pt;}
.xc{left:17.586667pt;}
.x13{left:19.933333pt;}
.x24{left:21.078667pt;}
.x1a{left:22.040000pt;}
.x11{left:23.600000pt;}
.x20{left:24.920000pt;}
.x21{left:26.040000pt;}
.xe{left:27.720000pt;}
.x5{left:30.600000pt;}
.x1c{left:31.920000pt;}
.x1b{left:33.000000pt;}
.x3{left:37.760000pt;}
.x15{left:39.800000pt;}
.x1e{left:46.200000pt;}
.x26{left:51.678667pt;}
.x1{left:56.160000pt;}
.x16{left:61.078667pt;}
.x1d{left:64.440000pt;}
.x2b{left:66.078667pt;}
.x7{left:85.266667pt;}
.x25{left:122.560000pt;}
.x27{left:131.840000pt;}
.xa{left:139.533333pt;}
.xd{left:195.000000pt;}
.x2{left:240.000000pt;}
.x29{left:266.078667pt;}
.x10{left:288.400000pt;}
.x28{left:304.320000pt;}
.x4{left:332.320000pt;}
.x2a{left:354.400000pt;}
.x12{left:402.466667pt;}
.x14{left:459.400000pt;}
.x17{left:602.400000pt;}
.x19{left:686.600000pt;}
}




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