
    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_1152de6bcc53755b0a682d8b.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_ee6f959d713ebd6ee80d61ce.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e0c0528ebdf5cb8233bb78f9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_b535d589e7e852f48418dc27.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7528e5ed1b92bc8a0b47acc1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.882812;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);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.486000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.147600px;}
.ls4{letter-spacing:0.153600px;}
.ls8{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.294000px;}
.ls3{letter-spacing:0.360000px;}
.ls6{letter-spacing:20.307600px;}
.ls5{letter-spacing:20.520000px;}
.ls2{letter-spacing:36.000000px;}
.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;}
}
.wsca{word-spacing:-55.944000px;}
.ws1c{word-spacing:-40.536000px;}
.ws6{word-spacing:-38.657700px;}
.wsb{word-spacing:-38.653200px;}
.ws5{word-spacing:-38.647800px;}
.ws70{word-spacing:-38.639700px;}
.wsbd{word-spacing:-38.439600px;}
.wsa{word-spacing:-38.429100px;}
.ws3{word-spacing:-38.374200px;}
.ws9{word-spacing:-38.160000px;}
.ws55{word-spacing:-38.145600px;}
.ws75{word-spacing:-38.142900px;}
.ws8c{word-spacing:-38.087100px;}
.wsd0{word-spacing:-38.075100px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.wsb7{word-spacing:-37.933200px;}
.ws2{word-spacing:-37.931400px;}
.ws8{word-spacing:-33.547800px;}
.ws6d{word-spacing:-26.348400px;}
.wse4{word-spacing:-23.472000px;}
.ws91{word-spacing:-23.253000px;}
.wsbc{word-spacing:-23.248800px;}
.wsc9{word-spacing:-23.245200px;}
.wsf{word-spacing:-23.243400px;}
.ws5e{word-spacing:-23.241000px;}
.wsc3{word-spacing:-23.239800px;}
.wsdd{word-spacing:-23.179500px;}
.wsb6{word-spacing:-23.178600px;}
.wsc5{word-spacing:-23.035200px;}
.ws85{word-spacing:-23.032800px;}
.ws54{word-spacing:-23.031000px;}
.wsac{word-spacing:-23.025000px;}
.wsc{word-spacing:-23.020500px;}
.ws74{word-spacing:-23.020200px;}
.ws105{word-spacing:-22.993200px;}
.ws26{word-spacing:-22.881600px;}
.wseb{word-spacing:-22.758000px;}
.ws3d{word-spacing:-22.754400px;}
.ws8b{word-spacing:-22.752600px;}
.ws7d{word-spacing:-22.752000px;}
.wsd7{word-spacing:-22.748400px;}
.wsd2{word-spacing:-22.746600px;}
.ws59{word-spacing:-22.744800px;}
.wscb{word-spacing:-22.743600px;}
.wsa3{word-spacing:-22.743000px;}
.ws30{word-spacing:-22.741200px;}
.ws50{word-spacing:-22.739400px;}
.wsf4{word-spacing:-22.738500px;}
.ws6b{word-spacing:-22.734900px;}
.ws64{word-spacing:-22.733100px;}
.wsd{word-spacing:-22.538400px;}
.wse{word-spacing:-22.536000px;}
.ws15{word-spacing:-22.531200px;}
.ws5f{word-spacing:-22.527000px;}
.ws33{word-spacing:-22.521600px;}
.ws10{word-spacing:-22.521300px;}
.wsb8{word-spacing:-22.458600px;}
.ws84{word-spacing:-22.456800px;}
.ws19{word-spacing:-22.311000px;}
.wsaf{word-spacing:-22.309200px;}
.ws6a{word-spacing:-22.307400px;}
.wse8{word-spacing:-22.305600px;}
.ws79{word-spacing:-22.293000px;}
.wsc6{word-spacing:-22.032000px;}
.ws51{word-spacing:-22.026000px;}
.ws53{word-spacing:-22.017900px;}
.wse0{word-spacing:-21.807000px;}
.ws97{word-spacing:-21.805200px;}
.wsf2{word-spacing:-21.788100px;}
.ws89{word-spacing:-21.600000px;}
.ws61{word-spacing:-21.580200px;}
.ws24{word-spacing:-21.432600px;}
.ws13{word-spacing:-21.314400px;}
.wsce{word-spacing:-20.863800px;}
.ws29{word-spacing:-20.860200px;}
.wsfb{word-spacing:-20.592000px;}
.wsd8{word-spacing:-20.371500px;}
.ws62{word-spacing:-20.368800px;}
.ws88{word-spacing:-20.152800px;}
.ws87{word-spacing:-20.147400px;}
.wsbb{word-spacing:-20.142000px;}
.ws86{word-spacing:-19.653300px;}
.ws45{word-spacing:-19.645200px;}
.wsdb{word-spacing:-19.417800px;}
.ws34{word-spacing:-19.212300px;}
.wsb5{word-spacing:-19.149900px;}
.ws7c{word-spacing:-19.080000px;}
.ws5b{word-spacing:-18.927000px;}
.ws20{word-spacing:-18.838800px;}
.ws7{word-spacing:-18.472500px;}
.ws3e{word-spacing:-18.421200px;}
.wsf1{word-spacing:-18.218400px;}
.wse5{word-spacing:-18.213900px;}
.wsea{word-spacing:-18.209400px;}
.wsae{word-spacing:-18.205200px;}
.wse1{word-spacing:-18.202800px;}
.wsc0{word-spacing:-18.196200px;}
.wsda{word-spacing:-17.983800px;}
.wsa9{word-spacing:-17.703900px;}
.wsef{word-spacing:-17.494800px;}
.wsc7{word-spacing:-17.493300px;}
.ws2b{word-spacing:-17.492400px;}
.ws48{word-spacing:-17.271000px;}
.ws66{word-spacing:-17.262000px;}
.ws14{word-spacing:-16.980300px;}
.ws78{word-spacing:-16.920000px;}
.wsd3{word-spacing:-16.774800px;}
.ws60{word-spacing:-16.774200px;}
.ws41{word-spacing:-16.770600px;}
.wsd1{word-spacing:-16.767900px;}
.ws47{word-spacing:-16.767000px;}
.ws4a{word-spacing:-16.749000px;}
.ws4b{word-spacing:-16.560000px;}
.ws71{word-spacing:-16.263900px;}
.ws49{word-spacing:-16.259400px;}
.wse9{word-spacing:-16.057500px;}
.ws46{word-spacing:-16.053000px;}
.wse7{word-spacing:-16.047900px;}
.ws9c{word-spacing:-16.036200px;}
.ws7a{word-spacing:-15.537900px;}
.ws38{word-spacing:-14.838000px;}
.ws2e{word-spacing:-14.834400px;}
.ws2c{word-spacing:-14.616000px;}
.ws83{word-spacing:-14.600700px;}
.ws72{word-spacing:-14.100900px;}
.wsfc{word-spacing:-13.892400px;}
.ws65{word-spacing:-13.891200px;}
.wsf9{word-spacing:-13.889700px;}
.ws8f{word-spacing:-13.887000px;}
.ws5d{word-spacing:-13.388400px;}
.ws7f{word-spacing:-13.178400px;}
.ws101{word-spacing:-13.174200px;}
.wsd6{word-spacing:-13.162800px;}
.ws67{word-spacing:-12.954600px;}
.wsc2{word-spacing:-12.949200px;}
.ws80{word-spacing:-12.672000px;}
.ws63{word-spacing:-12.670200px;}
.ws17{word-spacing:-12.453000px;}
.ws90{word-spacing:-12.452400px;}
.ws40{word-spacing:-12.452100px;}
.wsa8{word-spacing:-12.436200px;}
.ws7b{word-spacing:-12.236400px;}
.wsb3{word-spacing:-12.226200px;}
.ws77{word-spacing:-11.736000px;}
.wsd5{word-spacing:-11.734200px;}
.wsb1{word-spacing:-11.223900px;}
.wsaa{word-spacing:-11.022000px;}
.wsfa{word-spacing:-11.014200px;}
.ws5a{word-spacing:-10.518000px;}
.ws43{word-spacing:-10.514400px;}
.ws58{word-spacing:-10.509900px;}
.wsec{word-spacing:-10.288800px;}
.wsf0{word-spacing:-10.284300px;}
.ws37{word-spacing:-10.278000px;}
.wsf8{word-spacing:-10.080000px;}
.wsad{word-spacing:-10.078200px;}
.ws2f{word-spacing:-9.788400px;}
.ws21{word-spacing:-9.720000px;}
.wsa1{word-spacing:-9.571200px;}
.ws94{word-spacing:-9.568800px;}
.wsba{word-spacing:-9.563400px;}
.ws9d{word-spacing:-9.057600px;}
.wsd9{word-spacing:-8.849700px;}
.wsc4{word-spacing:-8.847900px;}
.ws52{word-spacing:-8.847000px;}
.wsa6{word-spacing:-8.839500px;}
.wse6{word-spacing:-8.776800px;}
.wsff{word-spacing:-8.640000px;}
.ws5c{word-spacing:-8.136000px;}
.ws100{word-spacing:-8.133300px;}
.ws3b{word-spacing:-8.127000px;}
.ws4e{word-spacing:-7.909800px;}
.wsde{word-spacing:-7.419300px;}
.ws4c{word-spacing:-7.415100px;}
.ws18{word-spacing:-7.186200px;}
.ws8e{word-spacing:-7.180200px;}
.ws39{word-spacing:-6.897600px;}
.wsb4{word-spacing:-6.688800px;}
.ws27{word-spacing:-6.480000px;}
.ws1a{word-spacing:-6.471900px;}
.wsb2{word-spacing:-5.968500px;}
.ws16{word-spacing:-5.961600px;}
.wsed{word-spacing:-5.756400px;}
.wsa5{word-spacing:-5.466000px;}
.ws2a{word-spacing:-5.455800px;}
.ws8a{word-spacing:-5.446200px;}
.wsfd{word-spacing:-5.246700px;}
.ws93{word-spacing:-5.245200px;}
.wsdf{word-spacing:-5.176800px;}
.wsbf{word-spacing:-5.023800px;}
.wsf7{word-spacing:-4.535700px;}
.ws56{word-spacing:-4.527000px;}
.wsc8{word-spacing:-4.318200px;}
.ws35{word-spacing:-3.808800px;}
.ws68{word-spacing:-3.600000px;}
.ws57{word-spacing:-3.074400px;}
.ws1d{word-spacing:-2.880000px;}
.ws3f{word-spacing:-2.859900px;}
.wsb0{word-spacing:-2.371500px;}
.wscd{word-spacing:-2.368800px;}
.wsa2{word-spacing:-1.653000px;}
.ws6e{word-spacing:-1.214100px;}
.ws3c{word-spacing:-0.934200px;}
.wsf3{word-spacing:-0.927000px;}
.ws96{word-spacing:-0.924300px;}
.wsab{word-spacing:-0.919200px;}
.wsb9{word-spacing:-0.429300px;}
.ws7e{word-spacing:-0.214200px;}
.wsf5{word-spacing:-0.209700px;}
.wse2{word-spacing:-0.200700px;}
.ws76{word-spacing:0.000000px;}
.ws73{word-spacing:0.507600px;}
.wsbe{word-spacing:0.508800px;}
.ws22{word-spacing:1.015200px;}
.wsc1{word-spacing:1.227600px;}
.wsdc{word-spacing:1.233900px;}
.wscf{word-spacing:1.449000px;}
.ws4f{word-spacing:1.722000px;}
.ws82{word-spacing:2.174400px;}
.ws9b{word-spacing:2.442000px;}
.wsa0{word-spacing:2.464200px;}
.ws81{word-spacing:2.673900px;}
.ws31{word-spacing:2.889900px;}
.wscc{word-spacing:3.672000px;}
.ws2d{word-spacing:3.891600px;}
.ws106{word-spacing:4.111200px;}
.wse3{word-spacing:4.325400px;}
.ws8d{word-spacing:4.827600px;}
.wsd4{word-spacing:5.040000px;}
.ws9f{word-spacing:5.333400px;}
.ws99{word-spacing:5.554800px;}
.ws44{word-spacing:6.271800px;}
.ws4d{word-spacing:6.412500px;}
.ws102{word-spacing:6.978900px;}
.ws11{word-spacing:7.434900px;}
.ws95{word-spacing:8.433000px;}
.ws1b{word-spacing:8.434800px;}
.ws28{word-spacing:9.138000px;}
.ws3a{word-spacing:9.158400px;}
.wsa4{word-spacing:9.372600px;}
.ws92{word-spacing:11.104200px;}
.ws1e{word-spacing:11.827800px;}
.ws42{word-spacing:12.025800px;}
.ws9e{word-spacing:12.250800px;}
.ws103{word-spacing:12.752100px;}
.ws6c{word-spacing:13.698600px;}
.ws69{word-spacing:14.203800px;}
.ws6f{word-spacing:14.697900px;}
.ws1f{word-spacing:15.273900px;}
.wsf6{word-spacing:17.285400px;}
.ws32{word-spacing:17.803200px;}
.wsee{word-spacing:19.224900px;}
.ws36{word-spacing:21.400200px;}
.ws12{word-spacing:22.616100px;}
.wsfe{word-spacing:26.427600px;}
.ws25{word-spacing:27.224100px;}
.ws9a{word-spacing:27.873000px;}
.wsa7{word-spacing:34.561800px;}
.ws98{word-spacing:41.340600px;}
.ws104{word-spacing:50.907600px;}
.ws23{word-spacing:118.239300px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._6{width:20.308800px;}
._1c{width:22.239600px;}
._e{width:23.374800px;}
._7{width:24.947400px;}
._1d{width:25.948200px;}
._11{width:27.216000px;}
._9{width:29.223000px;}
._1a{width:30.658200px;}
._13{width:32.385600px;}
._1e{width:33.496200px;}
._a{width:34.532400px;}
._1{width:36.000000px;}
._16{width:37.997100px;}
._19{width:39.561000px;}
._18{width:40.615200px;}
._20{width:42.177600px;}
._f{width:43.768800px;}
._22{width:44.928000px;}
._12{width:45.932400px;}
._8{width:47.513400px;}
._1b{width:49.450200px;}
._b{width:51.103800px;}
._c{width:53.631000px;}
._27{width:54.739200px;}
._1f{width:55.780200px;}
._d{width:57.459900px;}
._14{width:59.358600px;}
._15{width:60.420600px;}
._17{width:63.278400px;}
._5{width:64.989000px;}
._10{width:68.780100px;}
._23{width:71.538000px;}
._24{width:76.174200px;}
._25{width:77.302800px;}
._26{width:78.356400px;}
._21{width:83.579400px;}
._28{width:92.853600px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:46.800000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y72{bottom:3.765000px;}
.y65{bottom:3.795000px;}
.y74{bottom:3.796500px;}
.yec{bottom:3.811500px;}
.y68{bottom:3.825000px;}
.yee{bottom:3.840000px;}
.y6a{bottom:3.855000px;}
.yf0{bottom:3.870000px;}
.y6d{bottom:3.886500px;}
.ycf{bottom:3.900000px;}
.y6f{bottom:3.915000px;}
.y63{bottom:3.945000px;}
.yd3{bottom:3.990000px;}
.y7{bottom:4.471500px;}
.y7b{bottom:4.711500px;}
.yf2{bottom:4.725000px;}
.y5f{bottom:5.025000px;}
.ycd{bottom:15.465000px;}
.ycb{bottom:15.511500px;}
.yca{bottom:21.315000px;}
.y62{bottom:24.465000px;}
.y61{bottom:25.050000px;}
.y67{bottom:25.245000px;}
.y76{bottom:25.246500px;}
.y6c{bottom:25.305000px;}
.y71{bottom:25.365000px;}
.y5e{bottom:25.725000px;}
.y79{bottom:26.055000px;}
.y5d{bottom:46.425000px;}
.yc8{bottom:54.390000px;}
.y5c{bottom:67.125000px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.yd2{bottom:87.525000px;}
.y2a{bottom:99.796500px;}
.yd1{bottom:109.050000px;}
.y83{bottom:111.855000px;}
.y9c{bottom:120.136500px;}
.y29{bottom:120.496500px;}
.yb5{bottom:121.936500px;}
.yd0{bottom:130.500000px;}
.y9b{bottom:140.836500px;}
.y28{bottom:141.196500px;}
.y109{bottom:141.736500px;}
.yb4{bottom:142.636500px;}
.y52{bottom:143.175000px;}
.yce{bottom:151.875000px;}
.y82{bottom:153.615000px;}
.y9a{bottom:161.536500px;}
.y27{bottom:161.896500px;}
.y108{bottom:162.436500px;}
.y51{bottom:163.875000px;}
.ycc{bottom:173.250000px;}
.y81{bottom:174.315000px;}
.y99{bottom:182.236500px;}
.ye9{bottom:182.596500px;}
.yb3{bottom:184.396500px;}
.y50{bottom:184.575000px;}
.y80{bottom:195.015000px;}
.ye8{bottom:203.295000px;}
.y26{bottom:203.475000px;}
.y107{bottom:204.196500px;}
.yb2{bottom:205.096500px;}
.y4f{bottom:205.275000px;}
.yc7{bottom:206.325000px;}
.y7f{bottom:215.715000px;}
.y98{bottom:223.996500px;}
.y25{bottom:224.175000px;}
.y106{bottom:224.896500px;}
.yb1{bottom:225.795000px;}
.yc9{bottom:239.400000px;}
.y97{bottom:244.696500px;}
.ye7{bottom:244.875000px;}
.y105{bottom:245.596500px;}
.yb0{bottom:246.496500px;}
.y4e{bottom:247.036500px;}
.y7e{bottom:257.295000px;}
.y96{bottom:265.396500px;}
.ye6{bottom:265.575000px;}
.y24{bottom:265.936500px;}
.y95{bottom:286.096500px;}
.ye5{bottom:286.275000px;}
.y23{bottom:286.636500px;}
.y104{bottom:287.175000px;}
.yaf{bottom:288.075000px;}
.y4d{bottom:288.795000px;}
.y7d{bottom:299.055000px;}
.yc6{bottom:304.636500px;}
.y94{bottom:306.795000px;}
.y22{bottom:307.336500px;}
.y103{bottom:307.875000px;}
.yae{bottom:308.775000px;}
.y4c{bottom:309.496500px;}
.y7c{bottom:319.755000px;}
.yc5{bottom:325.336500px;}
.y21{bottom:328.036500px;}
.y102{bottom:328.575000px;}
.yad{bottom:329.475000px;}
.y4b{bottom:330.196500px;}
.yc4{bottom:346.036500px;}
.y93{bottom:348.375000px;}
.y20{bottom:348.736500px;}
.y4a{bottom:350.896500px;}
.y7a{bottom:357.525000px;}
.y78{bottom:357.600000px;}
.y1f{bottom:369.436500px;}
.y101{bottom:370.336500px;}
.yac{bottom:371.236500px;}
.y49{bottom:371.596500px;}
.y77{bottom:379.800000px;}
.yc3{bottom:387.795000px;}
.y1e{bottom:390.136500px;}
.y100{bottom:391.036500px;}
.yab{bottom:391.936500px;}
.y48{bottom:392.295000px;}
.y75{bottom:401.250000px;}
.yc2{bottom:408.496500px;}
.y1d{bottom:410.836500px;}
.ye4{bottom:411.196500px;}
.yff{bottom:411.736500px;}
.yaa{bottom:412.636500px;}
.y73{bottom:422.700000px;}
.y1c{bottom:431.536500px;}
.y92{bottom:431.896500px;}
.yfe{bottom:432.436500px;}
.ya9{bottom:433.336500px;}
.y47{bottom:433.875000px;}
.y70{bottom:444.150000px;}
.yc1{bottom:450.075000px;}
.y91{bottom:452.596500px;}
.ya8{bottom:454.036500px;}
.y46{bottom:454.575000px;}
.y6e{bottom:465.600000px;}
.yc0{bottom:470.775000px;}
.y1b{bottom:473.295000px;}
.ye3{bottom:473.475000px;}
.yfd{bottom:474.196500px;}
.ya7{bottom:474.736500px;}
.y45{bottom:475.275000px;}
.y6b{bottom:487.050000px;}
.ybf{bottom:491.475000px;}
.y1a{bottom:493.996500px;}
.y90{bottom:494.175000px;}
.yfc{bottom:494.896500px;}
.ya6{bottom:495.436500px;}
.y44{bottom:495.975000px;}
.y69{bottom:508.500000px;}
.ybe{bottom:512.175000px;}
.y8f{bottom:514.875000px;}
.yfb{bottom:515.596500px;}
.ya5{bottom:516.136500px;}
.y43{bottom:516.675000px;}
.y66{bottom:529.950000px;}
.ybd{bottom:532.875000px;}
.y19{bottom:535.575000px;}
.ya4{bottom:536.836500px;}
.y42{bottom:537.375000px;}
.y64{bottom:551.400000px;}
.ybc{bottom:553.575000px;}
.y18{bottom:556.275000px;}
.ye2{bottom:556.636500px;}
.yfa{bottom:557.175000px;}
.ya3{bottom:557.536500px;}
.y41{bottom:558.075000px;}
.y5b{bottom:572.850000px;}
.y17{bottom:576.975000px;}
.y8e{bottom:577.336500px;}
.yf9{bottom:577.875000px;}
.y40{bottom:578.775000px;}
.ybb{bottom:595.336500px;}
.y16{bottom:597.675000px;}
.ye1{bottom:598.036500px;}
.yf8{bottom:598.575000px;}
.ya2{bottom:599.295000px;}
.y3f{bottom:599.475000px;}
.y60{bottom:614.925000px;}
.y15{bottom:618.375000px;}
.y8d{bottom:619.096500px;}
.y10c{bottom:619.636500px;}
.ya1{bottom:619.996500px;}
.y3e{bottom:620.175000px;}
.yba{bottom:637.096500px;}
.y14{bottom:639.075000px;}
.ye0{bottom:639.795000px;}
.yf7{bottom:640.336500px;}
.ya0{bottom:640.695000px;}
.y3d{bottom:640.875000px;}
.yb9{bottom:657.795000px;}
.y13{bottom:659.775000px;}
.ydf{bottom:660.496500px;}
.y8c{bottom:660.675000px;}
.yf6{bottom:661.036500px;}
.y9f{bottom:661.396500px;}
.y3c{bottom:661.575000px;}
.yb8{bottom:678.496500px;}
.y12{bottom:680.475000px;}
.yf5{bottom:681.736500px;}
.y9e{bottom:682.096500px;}
.y3b{bottom:682.275000px;}
.yb7{bottom:699.195000px;}
.yde{bottom:702.075000px;}
.y8b{bottom:702.436500px;}
.y3a{bottom:702.975000px;}
.y11{bottom:722.236500px;}
.y8a{bottom:723.136500px;}
.y10b{bottom:723.496500px;}
.y39{bottom:723.675000px;}
.yb6{bottom:740.775000px;}
.ydd{bottom:743.836500px;}
.yf4{bottom:744.195000px;}
.y38{bottom:744.375000px;}
.y10{bottom:763.996500px;}
.ydc{bottom:764.536500px;}
.y89{bottom:764.895000px;}
.y9d{bottom:765.075000px;}
.yf{bottom:784.695000px;}
.ydb{bottom:785.236500px;}
.y88{bottom:785.596500px;}
.y37{bottom:786.136500px;}
.yda{bottom:805.936500px;}
.y87{bottom:806.295000px;}
.y10a{bottom:806.475000px;}
.y36{bottom:806.836500px;}
.ye{bottom:826.275000px;}
.yd9{bottom:826.636500px;}
.yf3{bottom:827.175000px;}
.y35{bottom:827.536500px;}
.y86{bottom:847.875000px;}
.y34{bottom:848.236500px;}
.yd{bottom:868.036500px;}
.yd8{bottom:868.395000px;}
.y85{bottom:868.575000px;}
.y33{bottom:868.936500px;}
.y5a{bottom:869.295000px;}
.yd7{bottom:889.095000px;}
.y32{bottom:889.636500px;}
.y59{bottom:889.995000px;}
.yc{bottom:909.795000px;}
.y31{bottom:910.336500px;}
.y58{bottom:910.695000px;}
.yb{bottom:930.495000px;}
.yd6{bottom:930.675000px;}
.y30{bottom:931.036500px;}
.y57{bottom:931.395000px;}
.y2f{bottom:951.736500px;}
.y56{bottom:952.095000px;}
.ya{bottom:972.075000px;}
.y84{bottom:972.436500px;}
.y55{bottom:972.795000px;}
.yd5{bottom:993.136500px;}
.y2e{bottom:993.495000px;}
.yf1{bottom:1006.050000px;}
.yd4{bottom:1013.836500px;}
.y2d{bottom:1014.195000px;}
.y54{bottom:1014.375000px;}
.yef{bottom:1028.325000px;}
.y53{bottom:1035.075000px;}
.yed{bottom:1049.775000px;}
.y9{bottom:1055.595000px;}
.y2c{bottom:1055.775000px;}
.yeb{bottom:1071.225000px;}
.y2b{bottom:1076.475000px;}
.yea{bottom:1092.600000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.hb{height:21.375000px;}
.h13{height:21.450000px;}
.he{height:22.200000px;}
.h12{height:33.075000px;}
.h11{height:38.775000px;}
.h9{height:42.075000px;}
.h8{height:42.525000px;}
.hc{height:42.825000px;}
.hd{height:43.575000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.ha{height:56.283773px;}
.h6{height:57.003773px;}
.hf{height:57.656250px;}
.h10{height:71.850000px;}
.h7{height:84.600000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w8{width:74.475000px;}
.w5{width:85.125000px;}
.w3{width:95.400000px;}
.w4{width:106.425000px;}
.w7{width:117.000000px;}
.wd{width:131.925000px;}
.w6{width:159.525000px;}
.wb{width:202.050000px;}
.wc{width:202.125000px;}
.w9{width:222.975000px;}
.wa{width:404.100000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:12.420000px;}
.xf{left:15.120000px;}
.xc{left:17.205000px;}
.x12{left:18.570000px;}
.x1c{left:19.588500px;}
.x15{left:21.000000px;}
.xd{left:22.605000px;}
.x31{left:26.475000px;}
.x1b{left:27.600000px;}
.x19{left:29.520000px;}
.x13{left:32.070000px;}
.x21{left:33.538500px;}
.x20{left:38.010000px;}
.x17{left:41.730000px;}
.x1e{left:43.125000px;}
.x22{left:47.160000px;}
.x1f{left:48.600000px;}
.x2a{left:69.825000px;}
.x33{left:76.288500px;}
.x27{left:79.963500px;}
.x2d{left:85.125000px;}
.x2e{left:89.625000px;}
.x2f{left:91.950000px;}
.x34{left:97.963500px;}
.x2c{left:102.463500px;}
.xb{left:117.075000px;}
.x26{left:119.475000px;}
.x1{left:127.620000px;}
.x5{left:134.460000px;}
.x9{left:178.380000px;}
.x29{left:185.745000px;}
.xe{left:212.400000px;}
.x32{left:285.838500px;}
.x11{left:318.750000px;}
.x28{left:342.375000px;}
.x24{left:390.238500px;}
.x25{left:394.200000px;}
.x14{left:403.800000px;}
.x23{left:421.560000px;}
.x7{left:451.800000px;}
.x3{left:465.825000px;}
.x1a{left:478.200000px;}
.x6{left:498.060000px;}
.xa{left:534.060000px;}
.x2b{left:544.350000px;}
.x8{left:559.080000px;}
.x16{left:563.250000px;}
.x4{left:585.720000px;}
.x1d{left:637.650000px;}
.x18{left:722.700000px;}
.x2{left:731.160000px;}
.x30{left:761.025000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.765333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.131200pt;}
.ls4{letter-spacing:0.136533pt;}
.ls8{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.261333pt;}
.ls3{letter-spacing:0.320000pt;}
.ls6{letter-spacing:18.051200pt;}
.ls5{letter-spacing:18.240000pt;}
.ls2{letter-spacing:32.000000pt;}
.wsca{word-spacing:-49.728000pt;}
.ws1c{word-spacing:-36.032000pt;}
.ws6{word-spacing:-34.362400pt;}
.wsb{word-spacing:-34.358400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws70{word-spacing:-34.346400pt;}
.wsbd{word-spacing:-34.168533pt;}
.wsa{word-spacing:-34.159200pt;}
.ws3{word-spacing:-34.110400pt;}
.ws9{word-spacing:-33.920000pt;}
.ws55{word-spacing:-33.907200pt;}
.ws75{word-spacing:-33.904800pt;}
.ws8c{word-spacing:-33.855200pt;}
.wsd0{word-spacing:-33.844533pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.wsb7{word-spacing:-33.718400pt;}
.ws2{word-spacing:-33.716800pt;}
.ws8{word-spacing:-29.820267pt;}
.ws6d{word-spacing:-23.420800pt;}
.wse4{word-spacing:-20.864000pt;}
.ws91{word-spacing:-20.669333pt;}
.wsbc{word-spacing:-20.665600pt;}
.wsc9{word-spacing:-20.662400pt;}
.wsf{word-spacing:-20.660800pt;}
.ws5e{word-spacing:-20.658667pt;}
.wsc3{word-spacing:-20.657600pt;}
.wsdd{word-spacing:-20.604000pt;}
.wsb6{word-spacing:-20.603200pt;}
.wsc5{word-spacing:-20.475733pt;}
.ws85{word-spacing:-20.473600pt;}
.ws54{word-spacing:-20.472000pt;}
.wsac{word-spacing:-20.466667pt;}
.wsc{word-spacing:-20.462667pt;}
.ws74{word-spacing:-20.462400pt;}
.ws105{word-spacing:-20.438400pt;}
.ws26{word-spacing:-20.339200pt;}
.wseb{word-spacing:-20.229333pt;}
.ws3d{word-spacing:-20.226133pt;}
.ws8b{word-spacing:-20.224533pt;}
.ws7d{word-spacing:-20.224000pt;}
.wsd7{word-spacing:-20.220800pt;}
.wsd2{word-spacing:-20.219200pt;}
.ws59{word-spacing:-20.217600pt;}
.wscb{word-spacing:-20.216533pt;}
.wsa3{word-spacing:-20.216000pt;}
.ws30{word-spacing:-20.214400pt;}
.ws50{word-spacing:-20.212800pt;}
.wsf4{word-spacing:-20.212000pt;}
.ws6b{word-spacing:-20.208800pt;}
.ws64{word-spacing:-20.207200pt;}
.wsd{word-spacing:-20.034133pt;}
.wse{word-spacing:-20.032000pt;}
.ws15{word-spacing:-20.027733pt;}
.ws5f{word-spacing:-20.024000pt;}
.ws33{word-spacing:-20.019200pt;}
.ws10{word-spacing:-20.018933pt;}
.wsb8{word-spacing:-19.963200pt;}
.ws84{word-spacing:-19.961600pt;}
.ws19{word-spacing:-19.832000pt;}
.wsaf{word-spacing:-19.830400pt;}
.ws6a{word-spacing:-19.828800pt;}
.wse8{word-spacing:-19.827200pt;}
.ws79{word-spacing:-19.816000pt;}
.wsc6{word-spacing:-19.584000pt;}
.ws51{word-spacing:-19.578667pt;}
.ws53{word-spacing:-19.571467pt;}
.wse0{word-spacing:-19.384000pt;}
.ws97{word-spacing:-19.382400pt;}
.wsf2{word-spacing:-19.367200pt;}
.ws89{word-spacing:-19.200000pt;}
.ws61{word-spacing:-19.182400pt;}
.ws24{word-spacing:-19.051200pt;}
.ws13{word-spacing:-18.946133pt;}
.wsce{word-spacing:-18.545600pt;}
.ws29{word-spacing:-18.542400pt;}
.wsfb{word-spacing:-18.304000pt;}
.wsd8{word-spacing:-18.108000pt;}
.ws62{word-spacing:-18.105600pt;}
.ws88{word-spacing:-17.913600pt;}
.ws87{word-spacing:-17.908800pt;}
.wsbb{word-spacing:-17.904000pt;}
.ws86{word-spacing:-17.469600pt;}
.ws45{word-spacing:-17.462400pt;}
.wsdb{word-spacing:-17.260267pt;}
.ws34{word-spacing:-17.077600pt;}
.wsb5{word-spacing:-17.022133pt;}
.ws7c{word-spacing:-16.960000pt;}
.ws5b{word-spacing:-16.824000pt;}
.ws20{word-spacing:-16.745600pt;}
.ws7{word-spacing:-16.420000pt;}
.ws3e{word-spacing:-16.374400pt;}
.wsf1{word-spacing:-16.194133pt;}
.wse5{word-spacing:-16.190133pt;}
.wsea{word-spacing:-16.186133pt;}
.wsae{word-spacing:-16.182400pt;}
.wse1{word-spacing:-16.180267pt;}
.wsc0{word-spacing:-16.174400pt;}
.wsda{word-spacing:-15.985600pt;}
.wsa9{word-spacing:-15.736800pt;}
.wsef{word-spacing:-15.550933pt;}
.wsc7{word-spacing:-15.549600pt;}
.ws2b{word-spacing:-15.548800pt;}
.ws48{word-spacing:-15.352000pt;}
.ws66{word-spacing:-15.344000pt;}
.ws14{word-spacing:-15.093600pt;}
.ws78{word-spacing:-15.040000pt;}
.wsd3{word-spacing:-14.910933pt;}
.ws60{word-spacing:-14.910400pt;}
.ws41{word-spacing:-14.907200pt;}
.wsd1{word-spacing:-14.904800pt;}
.ws47{word-spacing:-14.904000pt;}
.ws4a{word-spacing:-14.888000pt;}
.ws4b{word-spacing:-14.720000pt;}
.ws71{word-spacing:-14.456800pt;}
.ws49{word-spacing:-14.452800pt;}
.wse9{word-spacing:-14.273333pt;}
.ws46{word-spacing:-14.269333pt;}
.wse7{word-spacing:-14.264800pt;}
.ws9c{word-spacing:-14.254400pt;}
.ws7a{word-spacing:-13.811467pt;}
.ws38{word-spacing:-13.189333pt;}
.ws2e{word-spacing:-13.186133pt;}
.ws2c{word-spacing:-12.992000pt;}
.ws83{word-spacing:-12.978400pt;}
.ws72{word-spacing:-12.534133pt;}
.wsfc{word-spacing:-12.348800pt;}
.ws65{word-spacing:-12.347733pt;}
.wsf9{word-spacing:-12.346400pt;}
.ws8f{word-spacing:-12.344000pt;}
.ws5d{word-spacing:-11.900800pt;}
.ws7f{word-spacing:-11.714133pt;}
.ws101{word-spacing:-11.710400pt;}
.wsd6{word-spacing:-11.700267pt;}
.ws67{word-spacing:-11.515200pt;}
.wsc2{word-spacing:-11.510400pt;}
.ws80{word-spacing:-11.264000pt;}
.ws63{word-spacing:-11.262400pt;}
.ws17{word-spacing:-11.069333pt;}
.ws90{word-spacing:-11.068800pt;}
.ws40{word-spacing:-11.068533pt;}
.wsa8{word-spacing:-11.054400pt;}
.ws7b{word-spacing:-10.876800pt;}
.wsb3{word-spacing:-10.867733pt;}
.ws77{word-spacing:-10.432000pt;}
.wsd5{word-spacing:-10.430400pt;}
.wsb1{word-spacing:-9.976800pt;}
.wsaa{word-spacing:-9.797333pt;}
.wsfa{word-spacing:-9.790400pt;}
.ws5a{word-spacing:-9.349333pt;}
.ws43{word-spacing:-9.346133pt;}
.ws58{word-spacing:-9.342133pt;}
.wsec{word-spacing:-9.145600pt;}
.wsf0{word-spacing:-9.141600pt;}
.ws37{word-spacing:-9.136000pt;}
.wsf8{word-spacing:-8.960000pt;}
.wsad{word-spacing:-8.958400pt;}
.ws2f{word-spacing:-8.700800pt;}
.ws21{word-spacing:-8.640000pt;}
.wsa1{word-spacing:-8.507733pt;}
.ws94{word-spacing:-8.505600pt;}
.wsba{word-spacing:-8.500800pt;}
.ws9d{word-spacing:-8.051200pt;}
.wsd9{word-spacing:-7.866400pt;}
.wsc4{word-spacing:-7.864800pt;}
.ws52{word-spacing:-7.864000pt;}
.wsa6{word-spacing:-7.857333pt;}
.wse6{word-spacing:-7.801600pt;}
.wsff{word-spacing:-7.680000pt;}
.ws5c{word-spacing:-7.232000pt;}
.ws100{word-spacing:-7.229600pt;}
.ws3b{word-spacing:-7.224000pt;}
.ws4e{word-spacing:-7.030933pt;}
.wsde{word-spacing:-6.594933pt;}
.ws4c{word-spacing:-6.591200pt;}
.ws18{word-spacing:-6.387733pt;}
.ws8e{word-spacing:-6.382400pt;}
.ws39{word-spacing:-6.131200pt;}
.wsb4{word-spacing:-5.945600pt;}
.ws27{word-spacing:-5.760000pt;}
.ws1a{word-spacing:-5.752800pt;}
.wsb2{word-spacing:-5.305333pt;}
.ws16{word-spacing:-5.299200pt;}
.wsed{word-spacing:-5.116800pt;}
.wsa5{word-spacing:-4.858667pt;}
.ws2a{word-spacing:-4.849600pt;}
.ws8a{word-spacing:-4.841067pt;}
.wsfd{word-spacing:-4.663733pt;}
.ws93{word-spacing:-4.662400pt;}
.wsdf{word-spacing:-4.601600pt;}
.wsbf{word-spacing:-4.465600pt;}
.wsf7{word-spacing:-4.031733pt;}
.ws56{word-spacing:-4.024000pt;}
.wsc8{word-spacing:-3.838400pt;}
.ws35{word-spacing:-3.385600pt;}
.ws68{word-spacing:-3.200000pt;}
.ws57{word-spacing:-2.732800pt;}
.ws1d{word-spacing:-2.560000pt;}
.ws3f{word-spacing:-2.542133pt;}
.wsb0{word-spacing:-2.108000pt;}
.wscd{word-spacing:-2.105600pt;}
.wsa2{word-spacing:-1.469333pt;}
.ws6e{word-spacing:-1.079200pt;}
.ws3c{word-spacing:-0.830400pt;}
.wsf3{word-spacing:-0.824000pt;}
.ws96{word-spacing:-0.821600pt;}
.wsab{word-spacing:-0.817067pt;}
.wsb9{word-spacing:-0.381600pt;}
.ws7e{word-spacing:-0.190400pt;}
.wsf5{word-spacing:-0.186400pt;}
.wse2{word-spacing:-0.178400pt;}
.ws76{word-spacing:0.000000pt;}
.ws73{word-spacing:0.451200pt;}
.wsbe{word-spacing:0.452267pt;}
.ws22{word-spacing:0.902400pt;}
.wsc1{word-spacing:1.091200pt;}
.wsdc{word-spacing:1.096800pt;}
.wscf{word-spacing:1.288000pt;}
.ws4f{word-spacing:1.530667pt;}
.ws82{word-spacing:1.932800pt;}
.ws9b{word-spacing:2.170667pt;}
.wsa0{word-spacing:2.190400pt;}
.ws81{word-spacing:2.376800pt;}
.ws31{word-spacing:2.568800pt;}
.wscc{word-spacing:3.264000pt;}
.ws2d{word-spacing:3.459200pt;}
.ws106{word-spacing:3.654400pt;}
.wse3{word-spacing:3.844800pt;}
.ws8d{word-spacing:4.291200pt;}
.wsd4{word-spacing:4.480000pt;}
.ws9f{word-spacing:4.740800pt;}
.ws99{word-spacing:4.937600pt;}
.ws44{word-spacing:5.574933pt;}
.ws4d{word-spacing:5.700000pt;}
.ws102{word-spacing:6.203467pt;}
.ws11{word-spacing:6.608800pt;}
.ws95{word-spacing:7.496000pt;}
.ws1b{word-spacing:7.497600pt;}
.ws28{word-spacing:8.122667pt;}
.ws3a{word-spacing:8.140800pt;}
.wsa4{word-spacing:8.331200pt;}
.ws92{word-spacing:9.870400pt;}
.ws1e{word-spacing:10.513600pt;}
.ws42{word-spacing:10.689600pt;}
.ws9e{word-spacing:10.889600pt;}
.ws103{word-spacing:11.335200pt;}
.ws6c{word-spacing:12.176533pt;}
.ws69{word-spacing:12.625600pt;}
.ws6f{word-spacing:13.064800pt;}
.ws1f{word-spacing:13.576800pt;}
.wsf6{word-spacing:15.364800pt;}
.ws32{word-spacing:15.825067pt;}
.wsee{word-spacing:17.088800pt;}
.ws36{word-spacing:19.022400pt;}
.ws12{word-spacing:20.103200pt;}
.wsfe{word-spacing:23.491200pt;}
.ws25{word-spacing:24.199200pt;}
.ws9a{word-spacing:24.776000pt;}
.wsa7{word-spacing:30.721600pt;}
.ws98{word-spacing:36.747200pt;}
.ws104{word-spacing:45.251200pt;}
.ws23{word-spacing:105.101600pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._6{width:18.052267pt;}
._1c{width:19.768533pt;}
._e{width:20.777600pt;}
._7{width:22.175467pt;}
._1d{width:23.065067pt;}
._11{width:24.192000pt;}
._9{width:25.976000pt;}
._1a{width:27.251733pt;}
._13{width:28.787200pt;}
._1e{width:29.774400pt;}
._a{width:30.695467pt;}
._1{width:32.000000pt;}
._16{width:33.775200pt;}
._19{width:35.165333pt;}
._18{width:36.102400pt;}
._20{width:37.491200pt;}
._f{width:38.905600pt;}
._22{width:39.936000pt;}
._12{width:40.828800pt;}
._8{width:42.234133pt;}
._1b{width:43.955733pt;}
._b{width:45.425600pt;}
._c{width:47.672000pt;}
._27{width:48.657067pt;}
._1f{width:49.582400pt;}
._d{width:51.075467pt;}
._14{width:52.763200pt;}
._15{width:53.707200pt;}
._17{width:56.247467pt;}
._5{width:57.768000pt;}
._10{width:61.137867pt;}
._23{width:63.589333pt;}
._24{width:67.710400pt;}
._25{width:68.713600pt;}
._26{width:69.650133pt;}
._21{width:74.292800pt;}
._28{width:82.536533pt;}
._0{width:544.128000pt;}
.fs2{font-size:41.600000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:3.346667pt;}
.y65{bottom:3.373333pt;}
.y74{bottom:3.374667pt;}
.yec{bottom:3.388000pt;}
.y68{bottom:3.400000pt;}
.yee{bottom:3.413333pt;}
.y6a{bottom:3.426667pt;}
.yf0{bottom:3.440000pt;}
.y6d{bottom:3.454667pt;}
.ycf{bottom:3.466667pt;}
.y6f{bottom:3.480000pt;}
.y63{bottom:3.506667pt;}
.yd3{bottom:3.546667pt;}
.y7{bottom:3.974667pt;}
.y7b{bottom:4.188000pt;}
.yf2{bottom:4.200000pt;}
.y5f{bottom:4.466667pt;}
.ycd{bottom:13.746667pt;}
.ycb{bottom:13.788000pt;}
.yca{bottom:18.946667pt;}
.y62{bottom:21.746667pt;}
.y61{bottom:22.266667pt;}
.y67{bottom:22.440000pt;}
.y76{bottom:22.441333pt;}
.y6c{bottom:22.493333pt;}
.y71{bottom:22.546667pt;}
.y5e{bottom:22.866667pt;}
.y79{bottom:23.160000pt;}
.y5d{bottom:41.266667pt;}
.yc8{bottom:48.346667pt;}
.y5c{bottom:59.666667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.yd2{bottom:77.800000pt;}
.y2a{bottom:88.708000pt;}
.yd1{bottom:96.933333pt;}
.y83{bottom:99.426667pt;}
.y9c{bottom:106.788000pt;}
.y29{bottom:107.108000pt;}
.yb5{bottom:108.388000pt;}
.yd0{bottom:116.000000pt;}
.y9b{bottom:125.188000pt;}
.y28{bottom:125.508000pt;}
.y109{bottom:125.988000pt;}
.yb4{bottom:126.788000pt;}
.y52{bottom:127.266667pt;}
.yce{bottom:135.000000pt;}
.y82{bottom:136.546667pt;}
.y9a{bottom:143.588000pt;}
.y27{bottom:143.908000pt;}
.y108{bottom:144.388000pt;}
.y51{bottom:145.666667pt;}
.ycc{bottom:154.000000pt;}
.y81{bottom:154.946667pt;}
.y99{bottom:161.988000pt;}
.ye9{bottom:162.308000pt;}
.yb3{bottom:163.908000pt;}
.y50{bottom:164.066667pt;}
.y80{bottom:173.346667pt;}
.ye8{bottom:180.706667pt;}
.y26{bottom:180.866667pt;}
.y107{bottom:181.508000pt;}
.yb2{bottom:182.308000pt;}
.y4f{bottom:182.466667pt;}
.yc7{bottom:183.400000pt;}
.y7f{bottom:191.746667pt;}
.y98{bottom:199.108000pt;}
.y25{bottom:199.266667pt;}
.y106{bottom:199.908000pt;}
.yb1{bottom:200.706667pt;}
.yc9{bottom:212.800000pt;}
.y97{bottom:217.508000pt;}
.ye7{bottom:217.666667pt;}
.y105{bottom:218.308000pt;}
.yb0{bottom:219.108000pt;}
.y4e{bottom:219.588000pt;}
.y7e{bottom:228.706667pt;}
.y96{bottom:235.908000pt;}
.ye6{bottom:236.066667pt;}
.y24{bottom:236.388000pt;}
.y95{bottom:254.308000pt;}
.ye5{bottom:254.466667pt;}
.y23{bottom:254.788000pt;}
.y104{bottom:255.266667pt;}
.yaf{bottom:256.066667pt;}
.y4d{bottom:256.706667pt;}
.y7d{bottom:265.826667pt;}
.yc6{bottom:270.788000pt;}
.y94{bottom:272.706667pt;}
.y22{bottom:273.188000pt;}
.y103{bottom:273.666667pt;}
.yae{bottom:274.466667pt;}
.y4c{bottom:275.108000pt;}
.y7c{bottom:284.226667pt;}
.yc5{bottom:289.188000pt;}
.y21{bottom:291.588000pt;}
.y102{bottom:292.066667pt;}
.yad{bottom:292.866667pt;}
.y4b{bottom:293.508000pt;}
.yc4{bottom:307.588000pt;}
.y93{bottom:309.666667pt;}
.y20{bottom:309.988000pt;}
.y4a{bottom:311.908000pt;}
.y7a{bottom:317.800000pt;}
.y78{bottom:317.866667pt;}
.y1f{bottom:328.388000pt;}
.y101{bottom:329.188000pt;}
.yac{bottom:329.988000pt;}
.y49{bottom:330.308000pt;}
.y77{bottom:337.600000pt;}
.yc3{bottom:344.706667pt;}
.y1e{bottom:346.788000pt;}
.y100{bottom:347.588000pt;}
.yab{bottom:348.388000pt;}
.y48{bottom:348.706667pt;}
.y75{bottom:356.666667pt;}
.yc2{bottom:363.108000pt;}
.y1d{bottom:365.188000pt;}
.ye4{bottom:365.508000pt;}
.yff{bottom:365.988000pt;}
.yaa{bottom:366.788000pt;}
.y73{bottom:375.733333pt;}
.y1c{bottom:383.588000pt;}
.y92{bottom:383.908000pt;}
.yfe{bottom:384.388000pt;}
.ya9{bottom:385.188000pt;}
.y47{bottom:385.666667pt;}
.y70{bottom:394.800000pt;}
.yc1{bottom:400.066667pt;}
.y91{bottom:402.308000pt;}
.ya8{bottom:403.588000pt;}
.y46{bottom:404.066667pt;}
.y6e{bottom:413.866667pt;}
.yc0{bottom:418.466667pt;}
.y1b{bottom:420.706667pt;}
.ye3{bottom:420.866667pt;}
.yfd{bottom:421.508000pt;}
.ya7{bottom:421.988000pt;}
.y45{bottom:422.466667pt;}
.y6b{bottom:432.933333pt;}
.ybf{bottom:436.866667pt;}
.y1a{bottom:439.108000pt;}
.y90{bottom:439.266667pt;}
.yfc{bottom:439.908000pt;}
.ya6{bottom:440.388000pt;}
.y44{bottom:440.866667pt;}
.y69{bottom:452.000000pt;}
.ybe{bottom:455.266667pt;}
.y8f{bottom:457.666667pt;}
.yfb{bottom:458.308000pt;}
.ya5{bottom:458.788000pt;}
.y43{bottom:459.266667pt;}
.y66{bottom:471.066667pt;}
.ybd{bottom:473.666667pt;}
.y19{bottom:476.066667pt;}
.ya4{bottom:477.188000pt;}
.y42{bottom:477.666667pt;}
.y64{bottom:490.133333pt;}
.ybc{bottom:492.066667pt;}
.y18{bottom:494.466667pt;}
.ye2{bottom:494.788000pt;}
.yfa{bottom:495.266667pt;}
.ya3{bottom:495.588000pt;}
.y41{bottom:496.066667pt;}
.y5b{bottom:509.200000pt;}
.y17{bottom:512.866667pt;}
.y8e{bottom:513.188000pt;}
.yf9{bottom:513.666667pt;}
.y40{bottom:514.466667pt;}
.ybb{bottom:529.188000pt;}
.y16{bottom:531.266667pt;}
.ye1{bottom:531.588000pt;}
.yf8{bottom:532.066667pt;}
.ya2{bottom:532.706667pt;}
.y3f{bottom:532.866667pt;}
.y60{bottom:546.600000pt;}
.y15{bottom:549.666667pt;}
.y8d{bottom:550.308000pt;}
.y10c{bottom:550.788000pt;}
.ya1{bottom:551.108000pt;}
.y3e{bottom:551.266667pt;}
.yba{bottom:566.308000pt;}
.y14{bottom:568.066667pt;}
.ye0{bottom:568.706667pt;}
.yf7{bottom:569.188000pt;}
.ya0{bottom:569.506667pt;}
.y3d{bottom:569.666667pt;}
.yb9{bottom:584.706667pt;}
.y13{bottom:586.466667pt;}
.ydf{bottom:587.108000pt;}
.y8c{bottom:587.266667pt;}
.yf6{bottom:587.588000pt;}
.y9f{bottom:587.908000pt;}
.y3c{bottom:588.066667pt;}
.yb8{bottom:603.108000pt;}
.y12{bottom:604.866667pt;}
.yf5{bottom:605.988000pt;}
.y9e{bottom:606.308000pt;}
.y3b{bottom:606.466667pt;}
.yb7{bottom:621.506667pt;}
.yde{bottom:624.066667pt;}
.y8b{bottom:624.388000pt;}
.y3a{bottom:624.866667pt;}
.y11{bottom:641.988000pt;}
.y8a{bottom:642.788000pt;}
.y10b{bottom:643.108000pt;}
.y39{bottom:643.266667pt;}
.yb6{bottom:658.466667pt;}
.ydd{bottom:661.188000pt;}
.yf4{bottom:661.506667pt;}
.y38{bottom:661.666667pt;}
.y10{bottom:679.108000pt;}
.ydc{bottom:679.588000pt;}
.y89{bottom:679.906667pt;}
.y9d{bottom:680.066667pt;}
.yf{bottom:697.506667pt;}
.ydb{bottom:697.988000pt;}
.y88{bottom:698.308000pt;}
.y37{bottom:698.788000pt;}
.yda{bottom:716.388000pt;}
.y87{bottom:716.706667pt;}
.y10a{bottom:716.866667pt;}
.y36{bottom:717.188000pt;}
.ye{bottom:734.466667pt;}
.yd9{bottom:734.788000pt;}
.yf3{bottom:735.266667pt;}
.y35{bottom:735.588000pt;}
.y86{bottom:753.666667pt;}
.y34{bottom:753.988000pt;}
.yd{bottom:771.588000pt;}
.yd8{bottom:771.906667pt;}
.y85{bottom:772.066667pt;}
.y33{bottom:772.388000pt;}
.y5a{bottom:772.706667pt;}
.yd7{bottom:790.306667pt;}
.y32{bottom:790.788000pt;}
.y59{bottom:791.106667pt;}
.yc{bottom:808.706667pt;}
.y31{bottom:809.188000pt;}
.y58{bottom:809.506667pt;}
.yb{bottom:827.106667pt;}
.yd6{bottom:827.266667pt;}
.y30{bottom:827.588000pt;}
.y57{bottom:827.906667pt;}
.y2f{bottom:845.988000pt;}
.y56{bottom:846.306667pt;}
.ya{bottom:864.066667pt;}
.y84{bottom:864.388000pt;}
.y55{bottom:864.706667pt;}
.yd5{bottom:882.788000pt;}
.y2e{bottom:883.106667pt;}
.yf1{bottom:894.266667pt;}
.yd4{bottom:901.188000pt;}
.y2d{bottom:901.506667pt;}
.y54{bottom:901.666667pt;}
.yef{bottom:914.066667pt;}
.y53{bottom:920.066667pt;}
.yed{bottom:933.133333pt;}
.y9{bottom:938.306667pt;}
.y2c{bottom:938.466667pt;}
.yeb{bottom:952.200000pt;}
.y2b{bottom:956.866667pt;}
.yea{bottom:971.200000pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.hb{height:19.000000pt;}
.h13{height:19.066667pt;}
.he{height:19.733333pt;}
.h12{height:29.400000pt;}
.h11{height:34.466667pt;}
.h9{height:37.400000pt;}
.h8{height:37.800000pt;}
.hc{height:38.066667pt;}
.hd{height:38.733333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.ha{height:50.030021pt;}
.h6{height:50.670021pt;}
.hf{height:51.250000pt;}
.h10{height:63.866667pt;}
.h7{height:75.200000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w8{width:66.200000pt;}
.w5{width:75.666667pt;}
.w3{width:84.800000pt;}
.w4{width:94.600000pt;}
.w7{width:104.000000pt;}
.wd{width:117.266667pt;}
.w6{width:141.800000pt;}
.wb{width:179.600000pt;}
.wc{width:179.666667pt;}
.w9{width:198.200000pt;}
.wa{width:359.200000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:11.040000pt;}
.xf{left:13.440000pt;}
.xc{left:15.293333pt;}
.x12{left:16.506667pt;}
.x1c{left:17.412000pt;}
.x15{left:18.666667pt;}
.xd{left:20.093333pt;}
.x31{left:23.533333pt;}
.x1b{left:24.533333pt;}
.x19{left:26.240000pt;}
.x13{left:28.506667pt;}
.x21{left:29.812000pt;}
.x20{left:33.786667pt;}
.x17{left:37.093333pt;}
.x1e{left:38.333333pt;}
.x22{left:41.920000pt;}
.x1f{left:43.200000pt;}
.x2a{left:62.066667pt;}
.x33{left:67.812000pt;}
.x27{left:71.078667pt;}
.x2d{left:75.666667pt;}
.x2e{left:79.666667pt;}
.x2f{left:81.733333pt;}
.x34{left:87.078667pt;}
.x2c{left:91.078667pt;}
.xb{left:104.066667pt;}
.x26{left:106.200000pt;}
.x1{left:113.440000pt;}
.x5{left:119.520000pt;}
.x9{left:158.560000pt;}
.x29{left:165.106667pt;}
.xe{left:188.800000pt;}
.x32{left:254.078667pt;}
.x11{left:283.333333pt;}
.x28{left:304.333333pt;}
.x24{left:346.878667pt;}
.x25{left:350.400000pt;}
.x14{left:358.933333pt;}
.x23{left:374.720000pt;}
.x7{left:401.600000pt;}
.x3{left:414.066667pt;}
.x1a{left:425.066667pt;}
.x6{left:442.720000pt;}
.xa{left:474.720000pt;}
.x2b{left:483.866667pt;}
.x8{left:496.960000pt;}
.x16{left:500.666667pt;}
.x4{left:520.640000pt;}
.x1d{left:566.800000pt;}
.x18{left:642.400000pt;}
.x2{left:649.920000pt;}
.x30{left:676.466667pt;}
}




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