
    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_64a22027c99ed2eef047c5af.woff')format("woff");}.ff1{font-family:ff1;line-height:0.978000;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_04badd08f62023884db676ac.woff')format("woff");}.ff2{font-family:ff2;line-height:1.058000;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_0f850208d539ca998799fe79.woff')format("woff");}.ff3{font-family:ff3;line-height:1.026000;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;}
.m2{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-20.172000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.546000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000529px;}
.lsd{letter-spacing:1.371571px;}
.lse{letter-spacing:1.372867px;}
.ls9{letter-spacing:1.375018px;}
.ls5{letter-spacing:1.376496px;}
.ls4{letter-spacing:2.986243px;}
.ls8{letter-spacing:2.987050px;}
.ls3{letter-spacing:2.988384px;}
.ls7{letter-spacing:16.552835px;}
.lsf{letter-spacing:16.979988px;}
.ls6{letter-spacing:18.095921px;}
.lsb{letter-spacing:18.401923px;}
.ls1{letter-spacing:19.207032px;}
.ls2{letter-spacing:22.112104px;}
.lsc{letter-spacing:25.532656px;}
.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;}
}
.wsdf{word-spacing:-37.013196px;}
.ws23{word-spacing:-28.472751px;}
.wsd5{word-spacing:-26.509113px;}
.ws84{word-spacing:-23.402304px;}
.ws0{word-spacing:-22.315500px;}
.wse4{word-spacing:-17.803651px;}
.wsd3{word-spacing:-17.476378px;}
.wsc9{word-spacing:-17.410924px;}
.wsf7{word-spacing:-17.083651px;}
.ws58{word-spacing:-17.018196px;}
.ws5a{word-spacing:-16.887287px;}
.ws79{word-spacing:-16.756378px;}
.ws4d{word-spacing:-16.625468px;}
.wsbf{word-spacing:-16.560014px;}
.wsb9{word-spacing:-16.494559px;}
.wsa1{word-spacing:-16.429105px;}
.wsc8{word-spacing:-16.298195px;}
.ws57{word-spacing:-16.167286px;}
.ws61{word-spacing:-16.101832px;}
.wsd9{word-spacing:-16.036377px;}
.ws5{word-spacing:-15.960085px;}
.ws1{word-spacing:-15.924282px;}
.ws7c{word-spacing:-15.840013px;}
.wse{word-spacing:-15.774559px;}
.ws95{word-spacing:-15.709104px;}
.ws40{word-spacing:-15.579973px;}
.ws1e{word-spacing:-15.578195px;}
.ws92{word-spacing:-15.512740px;}
.ws9a{word-spacing:-15.493896px;}
.wsb4{word-spacing:-15.447286px;}
.ws75{word-spacing:-15.381831px;}
.wsf{word-spacing:-15.316376px;}
.wsb5{word-spacing:-15.250922px;}
.ws7a{word-spacing:-15.185467px;}
.ws30{word-spacing:-15.120013px;}
.wsbb{word-spacing:-15.054558px;}
.ws77{word-spacing:-14.923649px;}
.ws36{word-spacing:-14.858194px;}
.wsae{word-spacing:-14.727285px;}
.wsfb{word-spacing:-14.596376px;}
.ws5f{word-spacing:-14.530921px;}
.ws5d{word-spacing:-14.465467px;}
.wsde{word-spacing:-14.400012px;}
.ws7b{word-spacing:-14.334557px;}
.ws14{word-spacing:-14.203648px;}
.wsbc{word-spacing:-14.138194px;}
.ws1f{word-spacing:-14.072739px;}
.ws73{word-spacing:-14.007284px;}
.ws31{word-spacing:-13.941830px;}
.ws83{word-spacing:-13.933786px;}
.ws9b{word-spacing:-13.876375px;}
.ws4c{word-spacing:-13.810921px;}
.ws4{word-spacing:-13.808164px;}
.ws8f{word-spacing:-13.745466px;}
.ws85{word-spacing:-13.680011px;}
.ws10{word-spacing:-13.614557px;}
.wsa5{word-spacing:-13.549102px;}
.ws4e{word-spacing:-13.483648px;}
.ws71{word-spacing:-13.418193px;}
.wsa{word-spacing:-13.389734px;}
.wsda{word-spacing:-13.352738px;}
.ws6{word-spacing:-13.329959px;}
.ws9d{word-spacing:-13.287284px;}
.wsc0{word-spacing:-13.221829px;}
.wsa0{word-spacing:-13.156375px;}
.wsf8{word-spacing:-13.098238px;}
.ws9f{word-spacing:-13.090920px;}
.wsb7{word-spacing:-13.025465px;}
.wsb1{word-spacing:-12.960011px;}
.ws74{word-spacing:-12.894556px;}
.ws3b{word-spacing:-12.857818px;}
.ws7f{word-spacing:-12.829102px;}
.wsba{word-spacing:-12.763647px;}
.ws2a{word-spacing:-12.698192px;}
.ws56{word-spacing:-12.632738px;}
.wsb{word-spacing:-12.612652px;}
.wscc{word-spacing:-12.567283px;}
.ws96{word-spacing:-12.501829px;}
.ws1d{word-spacing:-12.481776px;}
.ws8b{word-spacing:-12.436374px;}
.wsbd{word-spacing:-12.370919px;}
.ws3f{word-spacing:-12.305465px;}
.ws24{word-spacing:-12.240010px;}
.ws7{word-spacing:-12.194222px;}
.wseb{word-spacing:-12.176219px;}
.ws2{word-spacing:-12.174556px;}
.wsf9{word-spacing:-12.112451px;}
.ws86{word-spacing:-12.111947px;}
.wse9{word-spacing:-12.110857px;}
.wsff{word-spacing:-12.109654px;}
.ws2e{word-spacing:-12.109101px;}
.wsfa{word-spacing:-12.104857px;}
.ws29{word-spacing:-12.043646px;}
.ws50{word-spacing:-11.978192px;}
.ws15{word-spacing:-11.912737px;}
.ws6a{word-spacing:-11.847283px;}
.wsa8{word-spacing:-11.835648px;}
.ws6c{word-spacing:-11.781828px;}
.ws60{word-spacing:-11.716373px;}
.wsd7{word-spacing:-11.667924px;}
.ws72{word-spacing:-11.650919px;}
.ws100{word-spacing:-11.585464px;}
.wsc1{word-spacing:-11.520010px;}
.ws101{word-spacing:-11.492857px;}
.ws51{word-spacing:-11.454555px;}
.wsd2{word-spacing:-11.389100px;}
.wsf1{word-spacing:-11.324857px;}
.wsb8{word-spacing:-11.323646px;}
.ws59{word-spacing:-11.258191px;}
.wsbe{word-spacing:-11.192737px;}
.ws8c{word-spacing:-11.127282px;}
.ws20{word-spacing:-11.061827px;}
.wsc{word-spacing:-11.058486px;}
.ws52{word-spacing:-10.996373px;}
.ws3a{word-spacing:-10.974874px;}
.ws32{word-spacing:-10.930918px;}
.ws9{word-spacing:-10.879159px;}
.ws99{word-spacing:-10.865464px;}
.ws5e{word-spacing:-10.800009px;}
.ws76{word-spacing:-10.734554px;}
.ws5b{word-spacing:-10.669100px;}
.ws3e{word-spacing:-10.652083px;}
.ws68{word-spacing:-10.603645px;}
.ws44{word-spacing:-10.538191px;}
.wsb6{word-spacing:-10.472736px;}
.ws33{word-spacing:-10.407281px;}
.ws16{word-spacing:-10.383091px;}
.wsd4{word-spacing:-10.341827px;}
.ws37{word-spacing:-10.329293px;}
.ws13{word-spacing:-10.276372px;}
.ws94{word-spacing:-10.210918px;}
.ws25{word-spacing:-10.145463px;}
.wsd0{word-spacing:-10.080008px;}
.wsac{word-spacing:-10.060301px;}
.ws6e{word-spacing:-10.014554px;}
.ws39{word-spacing:-10.006502px;}
.ws8{word-spacing:-9.982525px;}
.ws1a{word-spacing:-9.952704px;}
.ws1b{word-spacing:-9.950006px;}
.wse8{word-spacing:-9.949204px;}
.ws7d{word-spacing:-9.949099px;}
.ws80{word-spacing:-9.883645px;}
.ws2c{word-spacing:-9.818190px;}
.ws3{word-spacing:-9.803198px;}
.ws98{word-spacing:-9.752735px;}
.wsa4{word-spacing:-9.687281px;}
.ws12{word-spacing:-9.621826px;}
.wsd6{word-spacing:-9.572878px;}
.ws28{word-spacing:-9.556372px;}
.wsfd{word-spacing:-9.554868px;}
.ws34{word-spacing:-9.490917px;}
.ws4a{word-spacing:-9.425462px;}
.ws26{word-spacing:-9.360008px;}
.ws11{word-spacing:-9.294553px;}
.wsa2{word-spacing:-9.229099px;}
.ws9c{word-spacing:-9.163644px;}
.ws4b{word-spacing:-9.098189px;}
.ws97{word-spacing:-9.032735px;}
.wse7{word-spacing:-8.967280px;}
.ws54{word-spacing:-8.930534px;}
.ws8a{word-spacing:-8.901826px;}
.ws78{word-spacing:-8.836371px;}
.ws62{word-spacing:-8.770916px;}
.ws3c{word-spacing:-8.769139px;}
.ws47{word-spacing:-8.705462px;}
.ws67{word-spacing:-8.640007px;}
.wsaf{word-spacing:-8.574553px;}
.ws4f{word-spacing:-8.509098px;}
.ws91{word-spacing:-8.443643px;}
.wsc7{word-spacing:-8.378189px;}
.wsa3{word-spacing:-8.312734px;}
.ws6d{word-spacing:-8.247280px;}
.ws48{word-spacing:-8.181825px;}
.ws43{word-spacing:-8.116370px;}
.ws2f{word-spacing:-8.050916px;}
.ws53{word-spacing:-7.985461px;}
.ws89{word-spacing:-7.920007px;}
.ws55{word-spacing:-7.854552px;}
.wsf0{word-spacing:-7.789823px;}
.wsb0{word-spacing:-7.789097px;}
.wsc2{word-spacing:-7.723643px;}
.ws8d{word-spacing:-7.658188px;}
.ws22{word-spacing:-7.592734px;}
.ws3d{word-spacing:-7.585574px;}
.ws87{word-spacing:-7.527279px;}
.ws69{word-spacing:-7.461824px;}
.wse6{word-spacing:-7.396370px;}
.wsb3{word-spacing:-7.330915px;}
.ws81{word-spacing:-7.316582px;}
.wsa6{word-spacing:-7.265461px;}
.ws41{word-spacing:-7.200006px;}
.wsea{word-spacing:-7.134551px;}
.ws7e{word-spacing:-7.069097px;}
.wsfe{word-spacing:-7.003642px;}
.ws93{word-spacing:-6.938188px;}
.ws49{word-spacing:-6.872733px;}
.wsed{word-spacing:-6.854857px;}
.ws88{word-spacing:-6.807278px;}
.ws8e{word-spacing:-6.741824px;}
.wsf6{word-spacing:-6.676369px;}
.ws64{word-spacing:-6.610915px;}
.wsd8{word-spacing:-6.545460px;}
.ws2b{word-spacing:-6.480005px;}
.wsa7{word-spacing:-6.455808px;}
.wsd1{word-spacing:-6.414551px;}
.ws45{word-spacing:-6.349096px;}
.ws6f{word-spacing:-6.283642px;}
.wsdc{word-spacing:-6.218187px;}
.wsab{word-spacing:-6.186816px;}
.ws46{word-spacing:-6.087278px;}
.ws82{word-spacing:-6.025421px;}
.ws90{word-spacing:-6.021823px;}
.ws65{word-spacing:-5.956369px;}
.ws21{word-spacing:-5.890914px;}
.wsdd{word-spacing:-5.825459px;}
.ws27{word-spacing:-5.760005px;}
.wsca{word-spacing:-5.694550px;}
.wsdb{word-spacing:-5.629096px;}
.wsad{word-spacing:-5.563641px;}
.wsec{word-spacing:-5.498186px;}
.wse5{word-spacing:-5.367277px;}
.wsce{word-spacing:-5.301823px;}
.wsc5{word-spacing:-5.170913px;}
.wscd{word-spacing:-5.105459px;}
.wsf3{word-spacing:-5.040004px;}
.wsb2{word-spacing:-4.974550px;}
.ws5c{word-spacing:-4.909095px;}
.ws66{word-spacing:-4.843640px;}
.wsa9{word-spacing:-4.734259px;}
.wsaa{word-spacing:-4.626662px;}
.ws9e{word-spacing:-4.516367px;}
.ws42{word-spacing:-4.450913px;}
.ws2d{word-spacing:-4.385458px;}
.ws35{word-spacing:-4.189094px;}
.wsfc{word-spacing:-4.123640px;}
.wse3{word-spacing:-4.058185px;}
.ws63{word-spacing:-3.861821px;}
.wsf4{word-spacing:-3.730912px;}
.ws6b{word-spacing:-3.665458px;}
.wsc6{word-spacing:-3.207275px;}
.ws38{word-spacing:-3.120307px;}
.wse0{word-spacing:-2.814548px;}
.ws18{word-spacing:-2.338915px;}
.ws19{word-spacing:-2.313331px;}
.wse2{word-spacing:-2.160002px;}
.wsf5{word-spacing:-1.832729px;}
.ws70{word-spacing:-1.440001px;}
.wscb{word-spacing:-1.243637px;}
.wsee{word-spacing:-1.112374px;}
.ws17{word-spacing:-1.022170px;}
.wsc3{word-spacing:-0.261818px;}
.ws1c{word-spacing:0.000000px;}
.wsc4{word-spacing:0.523637px;}
.wscf{word-spacing:1.397331px;}
.wsf2{word-spacing:3.403639px;}
.wsd{word-spacing:6.025404px;}
.wse1{word-spacing:8.640007px;}
.wsef{word-spacing:9.883645px;}
._f{margin-left:-5.170913px;}
._1{margin-left:-3.945190px;}
._7{margin-left:-2.299340px;}
._2{margin-left:-1.050320px;}
._0{width:1.115775px;}
._14{width:2.945457px;}
._15{width:4.086439px;}
._17{width:5.301823px;}
._16{width:7.030486px;}
._18{width:8.428568px;}
._19{width:9.490917px;}
._11{width:10.538191px;}
._12{width:12.043646px;}
._3{width:13.256060px;}
._d{width:15.009754px;}
._c{width:16.363650px;}
._6{width:18.458197px;}
._a{width:20.225471px;}
._e{width:21.495451px;}
._b{width:23.179357px;}
._4{width:24.263078px;}
._5{width:25.446643px;}
._13{width:26.770931px;}
._10{width:30.767435px;}
._8{width:33.667060px;}
._9{width:43.038600px;}
.fc1{color:rgb(156,154,155);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:52.363800px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:67.469057px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:54.288000px;}
.y47{bottom:56.406000px;}
.y1d{bottom:69.070500px;}
.y1c{bottom:82.221000px;}
.y1b{bottom:95.371500px;}
.ya6{bottom:115.227000px;}
.y10d{bottom:116.994000px;}
.yae{bottom:120.343500px;}
.y133{bottom:122.458500px;}
.y46{bottom:122.487000px;}
.ya5{bottom:122.496000px;}
.y7a{bottom:122.497500px;}
.y68{bottom:122.502000px;}
.ycf{bottom:126.882000px;}
.yeb{bottom:128.974500px;}
.y73{bottom:135.550500px;}
.y10c{bottom:137.317500px;}
.y45{bottom:138.925500px;}
.y79{bottom:138.936000px;}
.y9b{bottom:139.675500px;}
.yad{bottom:140.667000px;}
.y132{bottom:142.782000px;}
.ya4{bottom:143.977500px;}
.y67{bottom:143.985000px;}
.yce{bottom:147.205500px;}
.yea{bottom:149.298000px;}
.y1a{bottom:149.977500px;}
.y44{bottom:155.364000px;}
.ya3{bottom:155.373000px;}
.y72{bottom:155.874000px;}
.y10b{bottom:157.641000px;}
.y9a{bottom:159.999000px;}
.y78{bottom:160.419000px;}
.yac{bottom:160.992000px;}
.y131{bottom:163.105500px;}
.ycd{bottom:167.530500px;}
.ye9{bottom:169.621500px;}
.y19{bottom:170.302500px;}
.y43{bottom:171.802500px;}
.ya2{bottom:171.811500px;}
.y77{bottom:171.813000px;}
.y71{bottom:176.197500px;}
.y10a{bottom:177.964500px;}
.y130{bottom:183.429000px;}
.ycc{bottom:187.854000px;}
.y42{bottom:188.241000px;}
.ya1{bottom:188.248500px;}
.y66{bottom:189.877500px;}
.ye8{bottom:189.946500px;}
.y18{bottom:190.626000px;}
.y76{bottom:193.296000px;}
.yab{bottom:194.359500px;}
.y99{bottom:196.468500px;}
.y70{bottom:196.521000px;}
.y109{bottom:198.288000px;}
.y12f{bottom:203.752500px;}
.ya0{bottom:204.687000px;}
.y41{bottom:209.724000px;}
.y65{bottom:210.201000px;}
.ye7{bottom:210.270000px;}
.y17{bottom:210.949500px;}
.yaa{bottom:214.684500px;}
.y6f{bottom:216.844500px;}
.y108{bottom:218.613000px;}
.y40{bottom:221.118000px;}
.y9f{bottom:221.125500px;}
.ycb{bottom:221.626500px;}
.y12e{bottom:224.077500px;}
.y64{bottom:230.524500px;}
.ye6{bottom:230.593500px;}
.y16{bottom:231.273000px;}
.y6e{bottom:237.169500px;}
.y3f{bottom:237.556500px;}
.y9e{bottom:237.564000px;}
.y107{bottom:238.936500px;}
.yca{bottom:241.951500px;}
.y12d{bottom:244.401000px;}
.y98{bottom:247.659000px;}
.ya9{bottom:248.052000px;}
.y63{bottom:250.849500px;}
.ye5{bottom:250.917000px;}
.y15{bottom:251.596500px;}
.y9d{bottom:254.002500px;}
.y6d{bottom:257.493000px;}
.y3e{bottom:259.038000px;}
.y106{bottom:259.260000px;}
.yc9{bottom:262.275000px;}
.y12c{bottom:264.724500px;}
.y97{bottom:267.982500px;}
.ya8{bottom:268.377000px;}
.y62{bottom:271.173000px;}
.ye4{bottom:271.240500px;}
.y14{bottom:271.921500px;}
.y9c{bottom:275.485500px;}
.y6c{bottom:277.816500px;}
.y105{bottom:279.583500px;}
.yc8{bottom:282.598500px;}
.y12b{bottom:285.048000px;}
.y96{bottom:288.306000px;}
.y61{bottom:291.496500px;}
.ye3{bottom:291.565500px;}
.y13{bottom:292.245000px;}
.y3d{bottom:298.140000px;}
.y104{bottom:299.907000px;}
.ya7{bottom:301.744500px;}
.yc7{bottom:302.922000px;}
.y12a{bottom:305.371500px;}
.y95{bottom:308.631000px;}
.y60{bottom:311.820000px;}
.ye2{bottom:311.889000px;}
.y12{bottom:312.568500px;}
.y3c{bottom:318.463500px;}
.y103{bottom:320.232000px;}
.yc6{bottom:323.245500px;}
.y129{bottom:325.696500px;}
.y94{bottom:328.954500px;}
.y5f{bottom:332.143500px;}
.ye1{bottom:332.212500px;}
.y11{bottom:332.892000px;}
.y75{bottom:338.787000px;}
.y3b{bottom:338.788500px;}
.y102{bottom:340.555500px;}
.yc5{bottom:343.570500px;}
.y128{bottom:346.020000px;}
.y93{bottom:349.278000px;}
.y5e{bottom:352.468500px;}
.ye0{bottom:352.536000px;}
.y3a{bottom:359.112000px;}
.y101{bottom:360.879000px;}
.yc4{bottom:363.894000px;}
.y127{bottom:366.343500px;}
.y10{bottom:369.361500px;}
.y92{bottom:369.601500px;}
.y5d{bottom:372.792000px;}
.y39{bottom:379.435500px;}
.y100{bottom:381.202500px;}
.yc3{bottom:384.217500px;}
.ydf{bottom:386.310000px;}
.y126{bottom:386.667000px;}
.y91{bottom:389.925000px;}
.y5c{bottom:393.115500px;}
.y38{bottom:399.759000px;}
.yff{bottom:401.526000px;}
.yc2{bottom:404.541000px;}
.yde{bottom:406.633500px;}
.y125{bottom:406.990500px;}
.y90{bottom:410.250000px;}
.y5b{bottom:413.439000px;}
.y37{bottom:420.082500px;}
.yfe{bottom:421.851000px;}
.yc1{bottom:424.864500px;}
.ydd{bottom:426.957000px;}
.y124{bottom:427.315500px;}
.y8f{bottom:430.573500px;}
.y5a{bottom:433.762500px;}
.yf{bottom:438.763500px;}
.y6b{bottom:440.406000px;}
.y36{bottom:440.407500px;}
.yfd{bottom:442.174500px;}
.yc0{bottom:445.189500px;}
.ydc{bottom:447.280500px;}
.y123{bottom:447.639000px;}
.y8e{bottom:450.897000px;}
.y59{bottom:454.086000px;}
.ye{bottom:456.697500px;}
.y35{bottom:460.731000px;}
.yfc{bottom:462.498000px;}
.ybf{bottom:465.513000px;}
.ydb{bottom:467.605500px;}
.y122{bottom:467.962500px;}
.y8d{bottom:471.220500px;}
.y58{bottom:474.411000px;}
.yd{bottom:474.630000px;}
.y34{bottom:481.054500px;}
.yfb{bottom:482.821500px;}
.ybe{bottom:485.836500px;}
.yda{bottom:487.929000px;}
.y121{bottom:488.286000px;}
.yc{bottom:492.562500px;}
.y57{bottom:494.734500px;}
.y33{bottom:501.378000px;}
.yfa{bottom:503.145000px;}
.ybd{bottom:506.160000px;}
.y8c{bottom:507.690000px;}
.yd9{bottom:508.252500px;}
.y120{bottom:508.609500px;}
.yb{bottom:510.495000px;}
.y56{bottom:515.058000px;}
.y32{bottom:521.701500px;}
.yf9{bottom:523.470000px;}
.ybc{bottom:526.483500px;}
.ya{bottom:528.427500px;}
.yd8{bottom:528.576000px;}
.y11f{bottom:528.934500px;}
.y8b{bottom:534.589500px;}
.y55{bottom:535.381500px;}
.y6a{bottom:542.025000px;}
.y31{bottom:542.026500px;}
.yf8{bottom:543.793500px;}
.y9{bottom:546.360000px;}
.ybb{bottom:546.808500px;}
.yd7{bottom:548.899500px;}
.y11e{bottom:549.258000px;}
.y54{bottom:555.705000px;}
.y30{bottom:562.350000px;}
.yf7{bottom:564.117000px;}
.y8{bottom:564.294000px;}
.yba{bottom:567.132000px;}
.yd6{bottom:569.223000px;}
.y11d{bottom:569.581500px;}
.y53{bottom:576.030000px;}
.y7{bottom:582.226500px;}
.y2f{bottom:582.673500px;}
.yf6{bottom:584.440500px;}
.y8a{bottom:585.780000px;}
.yb9{bottom:587.455500px;}
.yd5{bottom:589.548000px;}
.y11c{bottom:589.905000px;}
.y52{bottom:596.353500px;}
.y6{bottom:600.159000px;}
.y2e{bottom:602.997000px;}
.y89{bottom:606.103500px;}
.yb8{bottom:607.779000px;}
.yd4{bottom:609.871500px;}
.y11b{bottom:610.228500px;}
.y51{bottom:616.677000px;}
.yf5{bottom:620.910000px;}
.y2d{bottom:623.320500px;}
.y88{bottom:626.427000px;}
.yb7{bottom:628.102500px;}
.yd3{bottom:630.195000px;}
.y11a{bottom:630.553500px;}
.y5{bottom:635.652000px;}
.y50{bottom:637.000500px;}
.y69{bottom:643.644000px;}
.y2c{bottom:643.645500px;}
.y87{bottom:646.750500px;}
.yb6{bottom:648.427500px;}
.yd2{bottom:650.518500px;}
.y119{bottom:650.877000px;}
.y4f{bottom:657.324000px;}
.y4{bottom:660.459000px;}
.y2b{bottom:663.969000px;}
.y86{bottom:667.074000px;}
.yb5{bottom:668.751000px;}
.yd1{bottom:670.842000px;}
.y118{bottom:671.200500px;}
.yf4{bottom:671.889000px;}
.y4e{bottom:677.649000px;}
.y2a{bottom:684.292500px;}
.y85{bottom:687.399000px;}
.yb4{bottom:689.074500px;}
.yd0{bottom:691.167000px;}
.y117{bottom:691.524000px;}
.yf3{bottom:692.212500px;}
.y4d{bottom:697.972500px;}
.y29{bottom:704.616000px;}
.y84{bottom:707.722500px;}
.yb3{bottom:709.398000px;}
.y3{bottom:710.026500px;}
.y116{bottom:711.847500px;}
.yf2{bottom:712.536000px;}
.y4c{bottom:718.296000px;}
.y28{bottom:724.939500px;}
.y83{bottom:728.046000px;}
.yb2{bottom:729.721500px;}
.y115{bottom:732.172500px;}
.yf1{bottom:732.859500px;}
.y4b{bottom:738.619500px;}
.y74{bottom:745.263000px;}
.y27{bottom:745.264500px;}
.y2{bottom:747.385500px;}
.y82{bottom:748.369500px;}
.yb1{bottom:750.045000px;}
.y114{bottom:752.496000px;}
.yf0{bottom:753.183000px;}
.y4a{bottom:758.943000px;}
.y26{bottom:765.588000px;}
.y81{bottom:768.693000px;}
.y113{bottom:772.819500px;}
.yef{bottom:773.508000px;}
.y25{bottom:785.911500px;}
.yb0{bottom:788.302500px;}
.y80{bottom:789.018000px;}
.y112{bottom:793.143000px;}
.yee{bottom:793.831500px;}
.y49{bottom:795.414000px;}
.y1{bottom:803.425500px;}
.y24{bottom:806.235000px;}
.yaf{bottom:808.626000px;}
.y7f{bottom:809.341500px;}
.y111{bottom:813.466500px;}
.yed{bottom:814.155000px;}
.y23{bottom:826.558500px;}
.y7e{bottom:829.665000px;}
.y110{bottom:833.791500px;}
.yec{bottom:834.478500px;}
.y48{bottom:846.882000px;}
.y22{bottom:846.883500px;}
.y7d{bottom:849.990000px;}
.y10f{bottom:854.115000px;}
.y21{bottom:867.207000px;}
.y7c{bottom:870.313500px;}
.y20{bottom:887.530500px;}
.y10e{bottom:890.584500px;}
.y7b{bottom:890.637000px;}
.y1f{bottom:940.741500px;}
.hb{height:29.409792px;}
.h7{height:44.114688px;}
.h5{height:49.015992px;}
.hc{height:51.578225px;}
.h4{height:53.672772px;}
.h8{height:55.324627px;}
.h6{height:63.697128px;}
.h9{height:67.484316px;}
.ha{height:67.490316px;}
.h3{height:70.583304px;}
.h2{height:91.741500px;}
.h0{height:1020.465000px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:85.332000px;}
.x1{left:87.165000px;}
.x8{left:102.423000px;}
.x4{left:104.173500px;}
.x9{left:107.340000px;}
.xe{left:114.148500px;}
.x6{left:119.314500px;}
.x2{left:121.180500px;}
.x5{left:123.943500px;}
.xf{left:127.584000px;}
.xc{left:131.157000px;}
.xd{left:145.083000px;}
.x3{left:152.172000px;}
.x7{left:155.718000px;}
.xa{left:597.994500px;}
.x10{left:599.451000px;}
@media print{
.v2{vertical-align:-17.930667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.818667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000470pt;}
.lsd{letter-spacing:1.219174pt;}
.lse{letter-spacing:1.220326pt;}
.ls9{letter-spacing:1.222238pt;}
.ls5{letter-spacing:1.223552pt;}
.ls4{letter-spacing:2.654438pt;}
.ls8{letter-spacing:2.655155pt;}
.ls3{letter-spacing:2.656341pt;}
.ls7{letter-spacing:14.713631pt;}
.lsf{letter-spacing:15.093323pt;}
.ls6{letter-spacing:16.085263pt;}
.lsb{letter-spacing:16.357265pt;}
.ls1{letter-spacing:17.072917pt;}
.ls2{letter-spacing:19.655203pt;}
.lsc{letter-spacing:22.695694pt;}
.wsdf{word-spacing:-32.900619pt;}
.ws23{word-spacing:-25.309112pt;}
.wsd5{word-spacing:-23.563656pt;}
.ws84{word-spacing:-20.802048pt;}
.ws0{word-spacing:-19.836000pt;}
.wse4{word-spacing:-15.825468pt;}
.wsd3{word-spacing:-15.534558pt;}
.wsc9{word-spacing:-15.476377pt;}
.wsf7{word-spacing:-15.185467pt;}
.ws58{word-spacing:-15.127285pt;}
.ws5a{word-spacing:-15.010922pt;}
.ws79{word-spacing:-14.894558pt;}
.ws4d{word-spacing:-14.778194pt;}
.wsbf{word-spacing:-14.720012pt;}
.wsb9{word-spacing:-14.661830pt;}
.wsa1{word-spacing:-14.603649pt;}
.wsc8{word-spacing:-14.487285pt;}
.ws57{word-spacing:-14.370921pt;}
.ws61{word-spacing:-14.312739pt;}
.wsd9{word-spacing:-14.254557pt;}
.ws5{word-spacing:-14.186742pt;}
.ws1{word-spacing:-14.154917pt;}
.ws7c{word-spacing:-14.080012pt;}
.wse{word-spacing:-14.021830pt;}
.ws95{word-spacing:-13.963648pt;}
.ws40{word-spacing:-13.848865pt;}
.ws1e{word-spacing:-13.847284pt;}
.ws92{word-spacing:-13.789102pt;}
.ws9a{word-spacing:-13.772352pt;}
.wsb4{word-spacing:-13.730921pt;}
.ws75{word-spacing:-13.672739pt;}
.wsf{word-spacing:-13.614557pt;}
.wsb5{word-spacing:-13.556375pt;}
.ws7a{word-spacing:-13.498193pt;}
.ws30{word-spacing:-13.440011pt;}
.wsbb{word-spacing:-13.381829pt;}
.ws77{word-spacing:-13.265466pt;}
.ws36{word-spacing:-13.207284pt;}
.wsae{word-spacing:-13.090920pt;}
.wsfb{word-spacing:-12.974556pt;}
.ws5f{word-spacing:-12.916374pt;}
.ws5d{word-spacing:-12.858193pt;}
.wsde{word-spacing:-12.800011pt;}
.ws7b{word-spacing:-12.741829pt;}
.ws14{word-spacing:-12.625465pt;}
.wsbc{word-spacing:-12.567283pt;}
.ws1f{word-spacing:-12.509101pt;}
.ws73{word-spacing:-12.450919pt;}
.ws31{word-spacing:-12.392738pt;}
.ws83{word-spacing:-12.385587pt;}
.ws9b{word-spacing:-12.334556pt;}
.ws4c{word-spacing:-12.276374pt;}
.ws4{word-spacing:-12.273923pt;}
.ws8f{word-spacing:-12.218192pt;}
.ws85{word-spacing:-12.160010pt;}
.ws10{word-spacing:-12.101828pt;}
.wsa5{word-spacing:-12.043646pt;}
.ws4e{word-spacing:-11.985465pt;}
.ws71{word-spacing:-11.927283pt;}
.wsa{word-spacing:-11.901986pt;}
.wsda{word-spacing:-11.869101pt;}
.ws6{word-spacing:-11.848852pt;}
.ws9d{word-spacing:-11.810919pt;}
.wsc0{word-spacing:-11.752737pt;}
.wsa0{word-spacing:-11.694555pt;}
.wsf8{word-spacing:-11.642878pt;}
.ws9f{word-spacing:-11.636373pt;}
.wsb7{word-spacing:-11.578191pt;}
.wsb1{word-spacing:-11.520010pt;}
.ws74{word-spacing:-11.461828pt;}
.ws3b{word-spacing:-11.429171pt;}
.ws7f{word-spacing:-11.403646pt;}
.wsba{word-spacing:-11.345464pt;}
.ws2a{word-spacing:-11.287282pt;}
.ws56{word-spacing:-11.229100pt;}
.wsb{word-spacing:-11.211246pt;}
.wscc{word-spacing:-11.170918pt;}
.ws96{word-spacing:-11.112737pt;}
.ws1d{word-spacing:-11.094912pt;}
.ws8b{word-spacing:-11.054555pt;}
.wsbd{word-spacing:-10.996373pt;}
.ws3f{word-spacing:-10.938191pt;}
.ws24{word-spacing:-10.880009pt;}
.ws7{word-spacing:-10.839309pt;}
.wseb{word-spacing:-10.823306pt;}
.ws2{word-spacing:-10.821827pt;}
.wsf9{word-spacing:-10.766623pt;}
.ws86{word-spacing:-10.766175pt;}
.wse9{word-spacing:-10.765206pt;}
.wsff{word-spacing:-10.764137pt;}
.ws2e{word-spacing:-10.763645pt;}
.wsfa{word-spacing:-10.759873pt;}
.ws29{word-spacing:-10.705463pt;}
.ws50{word-spacing:-10.647282pt;}
.ws15{word-spacing:-10.589100pt;}
.ws6a{word-spacing:-10.530918pt;}
.wsa8{word-spacing:-10.520576pt;}
.ws6c{word-spacing:-10.472736pt;}
.ws60{word-spacing:-10.414554pt;}
.wsd7{word-spacing:-10.371488pt;}
.ws72{word-spacing:-10.356372pt;}
.ws100{word-spacing:-10.298190pt;}
.wsc1{word-spacing:-10.240009pt;}
.ws101{word-spacing:-10.215873pt;}
.ws51{word-spacing:-10.181827pt;}
.wsd2{word-spacing:-10.123645pt;}
.wsf1{word-spacing:-10.066539pt;}
.wsb8{word-spacing:-10.065463pt;}
.ws59{word-spacing:-10.007281pt;}
.wsbe{word-spacing:-9.949099pt;}
.ws8c{word-spacing:-9.890917pt;}
.ws20{word-spacing:-9.832735pt;}
.wsc{word-spacing:-9.829765pt;}
.ws52{word-spacing:-9.774554pt;}
.ws3a{word-spacing:-9.755443pt;}
.ws32{word-spacing:-9.716372pt;}
.ws9{word-spacing:-9.670364pt;}
.ws99{word-spacing:-9.658190pt;}
.ws5e{word-spacing:-9.600008pt;}
.ws76{word-spacing:-9.541826pt;}
.ws5b{word-spacing:-9.483644pt;}
.ws3e{word-spacing:-9.468518pt;}
.ws68{word-spacing:-9.425462pt;}
.ws44{word-spacing:-9.367281pt;}
.wsb6{word-spacing:-9.309099pt;}
.ws33{word-spacing:-9.250917pt;}
.ws16{word-spacing:-9.229414pt;}
.wsd4{word-spacing:-9.192735pt;}
.ws37{word-spacing:-9.181594pt;}
.ws13{word-spacing:-9.134553pt;}
.ws94{word-spacing:-9.076371pt;}
.ws25{word-spacing:-9.018189pt;}
.wsd0{word-spacing:-8.960007pt;}
.wsac{word-spacing:-8.942490pt;}
.ws6e{word-spacing:-8.901826pt;}
.ws39{word-spacing:-8.894669pt;}
.ws8{word-spacing:-8.873356pt;}
.ws1a{word-spacing:-8.846848pt;}
.ws1b{word-spacing:-8.844450pt;}
.wse8{word-spacing:-8.843737pt;}
.ws7d{word-spacing:-8.843644pt;}
.ws80{word-spacing:-8.785462pt;}
.ws2c{word-spacing:-8.727280pt;}
.ws3{word-spacing:-8.713954pt;}
.ws98{word-spacing:-8.669098pt;}
.wsa4{word-spacing:-8.610916pt;}
.ws12{word-spacing:-8.552734pt;}
.wsd6{word-spacing:-8.509225pt;}
.ws28{word-spacing:-8.494553pt;}
.wsfd{word-spacing:-8.493216pt;}
.ws34{word-spacing:-8.436371pt;}
.ws4a{word-spacing:-8.378189pt;}
.ws26{word-spacing:-8.320007pt;}
.ws11{word-spacing:-8.261825pt;}
.wsa2{word-spacing:-8.203643pt;}
.ws9c{word-spacing:-8.145461pt;}
.ws4b{word-spacing:-8.087279pt;}
.ws97{word-spacing:-8.029098pt;}
.wse7{word-spacing:-7.970916pt;}
.ws54{word-spacing:-7.938253pt;}
.ws8a{word-spacing:-7.912734pt;}
.ws78{word-spacing:-7.854552pt;}
.ws62{word-spacing:-7.796370pt;}
.ws3c{word-spacing:-7.794790pt;}
.ws47{word-spacing:-7.738188pt;}
.ws67{word-spacing:-7.680006pt;}
.wsaf{word-spacing:-7.621825pt;}
.ws4f{word-spacing:-7.563643pt;}
.ws91{word-spacing:-7.505461pt;}
.wsc7{word-spacing:-7.447279pt;}
.wsa3{word-spacing:-7.389097pt;}
.ws6d{word-spacing:-7.330915pt;}
.ws48{word-spacing:-7.272733pt;}
.ws43{word-spacing:-7.214551pt;}
.ws2f{word-spacing:-7.156370pt;}
.ws53{word-spacing:-7.098188pt;}
.ws89{word-spacing:-7.040006pt;}
.ws55{word-spacing:-6.981824pt;}
.wsf0{word-spacing:-6.924287pt;}
.wsb0{word-spacing:-6.923642pt;}
.wsc2{word-spacing:-6.865460pt;}
.ws8d{word-spacing:-6.807278pt;}
.ws22{word-spacing:-6.749097pt;}
.ws3d{word-spacing:-6.742733pt;}
.ws87{word-spacing:-6.690915pt;}
.ws69{word-spacing:-6.632733pt;}
.wse6{word-spacing:-6.574551pt;}
.wsb3{word-spacing:-6.516369pt;}
.ws81{word-spacing:-6.503629pt;}
.wsa6{word-spacing:-6.458187pt;}
.ws41{word-spacing:-6.400005pt;}
.wsea{word-spacing:-6.341823pt;}
.ws7e{word-spacing:-6.283642pt;}
.wsfe{word-spacing:-6.225460pt;}
.ws93{word-spacing:-6.167278pt;}
.ws49{word-spacing:-6.109096pt;}
.wsed{word-spacing:-6.093206pt;}
.ws88{word-spacing:-6.050914pt;}
.ws8e{word-spacing:-5.992732pt;}
.wsf6{word-spacing:-5.934550pt;}
.ws64{word-spacing:-5.876369pt;}
.wsd8{word-spacing:-5.818187pt;}
.ws2b{word-spacing:-5.760005pt;}
.wsa7{word-spacing:-5.738496pt;}
.wsd1{word-spacing:-5.701823pt;}
.ws45{word-spacing:-5.643641pt;}
.ws6f{word-spacing:-5.585459pt;}
.wsdc{word-spacing:-5.527277pt;}
.wsab{word-spacing:-5.499392pt;}
.ws46{word-spacing:-5.410914pt;}
.ws82{word-spacing:-5.355930pt;}
.ws90{word-spacing:-5.352732pt;}
.ws65{word-spacing:-5.294550pt;}
.ws21{word-spacing:-5.236368pt;}
.wsdd{word-spacing:-5.178186pt;}
.ws27{word-spacing:-5.120004pt;}
.wsca{word-spacing:-5.061822pt;}
.wsdb{word-spacing:-5.003641pt;}
.wsad{word-spacing:-4.945459pt;}
.wsec{word-spacing:-4.887277pt;}
.wse5{word-spacing:-4.770913pt;}
.wsce{word-spacing:-4.712731pt;}
.wsc5{word-spacing:-4.596367pt;}
.wscd{word-spacing:-4.538186pt;}
.wsf3{word-spacing:-4.480004pt;}
.wsb2{word-spacing:-4.421822pt;}
.ws5c{word-spacing:-4.363640pt;}
.ws66{word-spacing:-4.305458pt;}
.wsa9{word-spacing:-4.208230pt;}
.wsaa{word-spacing:-4.112589pt;}
.ws9e{word-spacing:-4.014549pt;}
.ws42{word-spacing:-3.956367pt;}
.ws2d{word-spacing:-3.898185pt;}
.ws35{word-spacing:-3.723639pt;}
.wsfc{word-spacing:-3.665458pt;}
.wse3{word-spacing:-3.607276pt;}
.ws63{word-spacing:-3.432730pt;}
.wsf4{word-spacing:-3.316366pt;}
.ws6b{word-spacing:-3.258185pt;}
.wsc6{word-spacing:-2.850911pt;}
.ws38{word-spacing:-2.773606pt;}
.wse0{word-spacing:-2.501820pt;}
.ws18{word-spacing:-2.079036pt;}
.ws19{word-spacing:-2.056294pt;}
.wse2{word-spacing:-1.920002pt;}
.wsf5{word-spacing:-1.629092pt;}
.ws70{word-spacing:-1.280001pt;}
.wscb{word-spacing:-1.105455pt;}
.wsee{word-spacing:-0.988777pt;}
.ws17{word-spacing:-0.908595pt;}
.wsc3{word-spacing:-0.232727pt;}
.ws1c{word-spacing:0.000000pt;}
.wsc4{word-spacing:0.465455pt;}
.wscf{word-spacing:1.242072pt;}
.wsf2{word-spacing:3.025457pt;}
.wsd{word-spacing:5.355915pt;}
.wse1{word-spacing:7.680006pt;}
.wsef{word-spacing:8.785462pt;}
._f{margin-left:-4.596367pt;}
._1{margin-left:-3.506835pt;}
._7{margin-left:-2.043858pt;}
._2{margin-left:-0.933618pt;}
._0{width:0.991800pt;}
._14{width:2.618184pt;}
._15{width:3.632390pt;}
._17{width:4.712731pt;}
._16{width:6.249321pt;}
._18{width:7.492060pt;}
._19{width:8.436371pt;}
._11{width:9.367281pt;}
._12{width:10.705463pt;}
._3{width:11.783164pt;}
._d{width:13.342003pt;}
._c{width:14.545467pt;}
._6{width:16.407286pt;}
._a{width:17.978197pt;}
._e{width:19.107068pt;}
._b{width:20.603873pt;}
._4{width:21.567181pt;}
._5{width:22.619238pt;}
._13{width:23.796383pt;}
._10{width:27.348831pt;}
._8{width:29.926275pt;}
._9{width:38.256533pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:46.545600pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:59.972495pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:48.256000pt;}
.y47{bottom:50.138667pt;}
.y1d{bottom:61.396000pt;}
.y1c{bottom:73.085333pt;}
.y1b{bottom:84.774667pt;}
.ya6{bottom:102.424000pt;}
.y10d{bottom:103.994667pt;}
.yae{bottom:106.972000pt;}
.y133{bottom:108.852000pt;}
.y46{bottom:108.877333pt;}
.ya5{bottom:108.885333pt;}
.y7a{bottom:108.886667pt;}
.y68{bottom:108.890667pt;}
.ycf{bottom:112.784000pt;}
.yeb{bottom:114.644000pt;}
.y73{bottom:120.489333pt;}
.y10c{bottom:122.060000pt;}
.y45{bottom:123.489333pt;}
.y79{bottom:123.498667pt;}
.y9b{bottom:124.156000pt;}
.yad{bottom:125.037333pt;}
.y132{bottom:126.917333pt;}
.ya4{bottom:127.980000pt;}
.y67{bottom:127.986667pt;}
.yce{bottom:130.849333pt;}
.yea{bottom:132.709333pt;}
.y1a{bottom:133.313333pt;}
.y44{bottom:138.101333pt;}
.ya3{bottom:138.109333pt;}
.y72{bottom:138.554667pt;}
.y10b{bottom:140.125333pt;}
.y9a{bottom:142.221333pt;}
.y78{bottom:142.594667pt;}
.yac{bottom:143.104000pt;}
.y131{bottom:144.982667pt;}
.ycd{bottom:148.916000pt;}
.ye9{bottom:150.774667pt;}
.y19{bottom:151.380000pt;}
.y43{bottom:152.713333pt;}
.ya2{bottom:152.721333pt;}
.y77{bottom:152.722667pt;}
.y71{bottom:156.620000pt;}
.y10a{bottom:158.190667pt;}
.y130{bottom:163.048000pt;}
.ycc{bottom:166.981333pt;}
.y42{bottom:167.325333pt;}
.ya1{bottom:167.332000pt;}
.y66{bottom:168.780000pt;}
.ye8{bottom:168.841333pt;}
.y18{bottom:169.445333pt;}
.y76{bottom:171.818667pt;}
.yab{bottom:172.764000pt;}
.y99{bottom:174.638667pt;}
.y70{bottom:174.685333pt;}
.y109{bottom:176.256000pt;}
.y12f{bottom:181.113333pt;}
.ya0{bottom:181.944000pt;}
.y41{bottom:186.421333pt;}
.y65{bottom:186.845333pt;}
.ye7{bottom:186.906667pt;}
.y17{bottom:187.510667pt;}
.yaa{bottom:190.830667pt;}
.y6f{bottom:192.750667pt;}
.y108{bottom:194.322667pt;}
.y40{bottom:196.549333pt;}
.y9f{bottom:196.556000pt;}
.ycb{bottom:197.001333pt;}
.y12e{bottom:199.180000pt;}
.y64{bottom:204.910667pt;}
.ye6{bottom:204.972000pt;}
.y16{bottom:205.576000pt;}
.y6e{bottom:210.817333pt;}
.y3f{bottom:211.161333pt;}
.y9e{bottom:211.168000pt;}
.y107{bottom:212.388000pt;}
.yca{bottom:215.068000pt;}
.y12d{bottom:217.245333pt;}
.y98{bottom:220.141333pt;}
.ya9{bottom:220.490667pt;}
.y63{bottom:222.977333pt;}
.ye5{bottom:223.037333pt;}
.y15{bottom:223.641333pt;}
.y9d{bottom:225.780000pt;}
.y6d{bottom:228.882667pt;}
.y3e{bottom:230.256000pt;}
.y106{bottom:230.453333pt;}
.yc9{bottom:233.133333pt;}
.y12c{bottom:235.310667pt;}
.y97{bottom:238.206667pt;}
.ya8{bottom:238.557333pt;}
.y62{bottom:241.042667pt;}
.ye4{bottom:241.102667pt;}
.y14{bottom:241.708000pt;}
.y9c{bottom:244.876000pt;}
.y6c{bottom:246.948000pt;}
.y105{bottom:248.518667pt;}
.yc8{bottom:251.198667pt;}
.y12b{bottom:253.376000pt;}
.y96{bottom:256.272000pt;}
.y61{bottom:259.108000pt;}
.ye3{bottom:259.169333pt;}
.y13{bottom:259.773333pt;}
.y3d{bottom:265.013333pt;}
.y104{bottom:266.584000pt;}
.ya7{bottom:268.217333pt;}
.yc7{bottom:269.264000pt;}
.y12a{bottom:271.441333pt;}
.y95{bottom:274.338667pt;}
.y60{bottom:277.173333pt;}
.ye2{bottom:277.234667pt;}
.y12{bottom:277.838667pt;}
.y3c{bottom:283.078667pt;}
.y103{bottom:284.650667pt;}
.yc6{bottom:287.329333pt;}
.y129{bottom:289.508000pt;}
.y94{bottom:292.404000pt;}
.y5f{bottom:295.238667pt;}
.ye1{bottom:295.300000pt;}
.y11{bottom:295.904000pt;}
.y75{bottom:301.144000pt;}
.y3b{bottom:301.145333pt;}
.y102{bottom:302.716000pt;}
.yc5{bottom:305.396000pt;}
.y128{bottom:307.573333pt;}
.y93{bottom:310.469333pt;}
.y5e{bottom:313.305333pt;}
.ye0{bottom:313.365333pt;}
.y3a{bottom:319.210667pt;}
.y101{bottom:320.781333pt;}
.yc4{bottom:323.461333pt;}
.y127{bottom:325.638667pt;}
.y10{bottom:328.321333pt;}
.y92{bottom:328.534667pt;}
.y5d{bottom:331.370667pt;}
.y39{bottom:337.276000pt;}
.y100{bottom:338.846667pt;}
.yc3{bottom:341.526667pt;}
.ydf{bottom:343.386667pt;}
.y126{bottom:343.704000pt;}
.y91{bottom:346.600000pt;}
.y5c{bottom:349.436000pt;}
.y38{bottom:355.341333pt;}
.yff{bottom:356.912000pt;}
.yc2{bottom:359.592000pt;}
.yde{bottom:361.452000pt;}
.y125{bottom:361.769333pt;}
.y90{bottom:364.666667pt;}
.y5b{bottom:367.501333pt;}
.y37{bottom:373.406667pt;}
.yfe{bottom:374.978667pt;}
.yc1{bottom:377.657333pt;}
.ydd{bottom:379.517333pt;}
.y124{bottom:379.836000pt;}
.y8f{bottom:382.732000pt;}
.y5a{bottom:385.566667pt;}
.yf{bottom:390.012000pt;}
.y6b{bottom:391.472000pt;}
.y36{bottom:391.473333pt;}
.yfd{bottom:393.044000pt;}
.yc0{bottom:395.724000pt;}
.ydc{bottom:397.582667pt;}
.y123{bottom:397.901333pt;}
.y8e{bottom:400.797333pt;}
.y59{bottom:403.632000pt;}
.ye{bottom:405.953333pt;}
.y35{bottom:409.538667pt;}
.yfc{bottom:411.109333pt;}
.ybf{bottom:413.789333pt;}
.ydb{bottom:415.649333pt;}
.y122{bottom:415.966667pt;}
.y8d{bottom:418.862667pt;}
.y58{bottom:421.698667pt;}
.yd{bottom:421.893333pt;}
.y34{bottom:427.604000pt;}
.yfb{bottom:429.174667pt;}
.ybe{bottom:431.854667pt;}
.yda{bottom:433.714667pt;}
.y121{bottom:434.032000pt;}
.yc{bottom:437.833333pt;}
.y57{bottom:439.764000pt;}
.y33{bottom:445.669333pt;}
.yfa{bottom:447.240000pt;}
.ybd{bottom:449.920000pt;}
.y8c{bottom:451.280000pt;}
.yd9{bottom:451.780000pt;}
.y120{bottom:452.097333pt;}
.yb{bottom:453.773333pt;}
.y56{bottom:457.829333pt;}
.y32{bottom:463.734667pt;}
.yf9{bottom:465.306667pt;}
.ybc{bottom:467.985333pt;}
.ya{bottom:469.713333pt;}
.yd8{bottom:469.845333pt;}
.y11f{bottom:470.164000pt;}
.y8b{bottom:475.190667pt;}
.y55{bottom:475.894667pt;}
.y6a{bottom:481.800000pt;}
.y31{bottom:481.801333pt;}
.yf8{bottom:483.372000pt;}
.y9{bottom:485.653333pt;}
.ybb{bottom:486.052000pt;}
.yd7{bottom:487.910667pt;}
.y11e{bottom:488.229333pt;}
.y54{bottom:493.960000pt;}
.y30{bottom:499.866667pt;}
.yf7{bottom:501.437333pt;}
.y8{bottom:501.594667pt;}
.yba{bottom:504.117333pt;}
.yd6{bottom:505.976000pt;}
.y11d{bottom:506.294667pt;}
.y53{bottom:512.026667pt;}
.y7{bottom:517.534667pt;}
.y2f{bottom:517.932000pt;}
.yf6{bottom:519.502667pt;}
.y8a{bottom:520.693333pt;}
.yb9{bottom:522.182667pt;}
.yd5{bottom:524.042667pt;}
.y11c{bottom:524.360000pt;}
.y52{bottom:530.092000pt;}
.y6{bottom:533.474667pt;}
.y2e{bottom:535.997333pt;}
.y89{bottom:538.758667pt;}
.yb8{bottom:540.248000pt;}
.yd4{bottom:542.108000pt;}
.y11b{bottom:542.425333pt;}
.y51{bottom:548.157333pt;}
.yf5{bottom:551.920000pt;}
.y2d{bottom:554.062667pt;}
.y88{bottom:556.824000pt;}
.yb7{bottom:558.313333pt;}
.yd3{bottom:560.173333pt;}
.y11a{bottom:560.492000pt;}
.y5{bottom:565.024000pt;}
.y50{bottom:566.222667pt;}
.y69{bottom:572.128000pt;}
.y2c{bottom:572.129333pt;}
.y87{bottom:574.889333pt;}
.yb6{bottom:576.380000pt;}
.yd2{bottom:578.238667pt;}
.y119{bottom:578.557333pt;}
.y4f{bottom:584.288000pt;}
.y4{bottom:587.074667pt;}
.y2b{bottom:590.194667pt;}
.y86{bottom:592.954667pt;}
.yb5{bottom:594.445333pt;}
.yd1{bottom:596.304000pt;}
.y118{bottom:596.622667pt;}
.yf4{bottom:597.234667pt;}
.y4e{bottom:602.354667pt;}
.y2a{bottom:608.260000pt;}
.y85{bottom:611.021333pt;}
.yb4{bottom:612.510667pt;}
.yd0{bottom:614.370667pt;}
.y117{bottom:614.688000pt;}
.yf3{bottom:615.300000pt;}
.y4d{bottom:620.420000pt;}
.y29{bottom:626.325333pt;}
.y84{bottom:629.086667pt;}
.yb3{bottom:630.576000pt;}
.y3{bottom:631.134667pt;}
.y116{bottom:632.753333pt;}
.yf2{bottom:633.365333pt;}
.y4c{bottom:638.485333pt;}
.y28{bottom:644.390667pt;}
.y83{bottom:647.152000pt;}
.yb2{bottom:648.641333pt;}
.y115{bottom:650.820000pt;}
.yf1{bottom:651.430667pt;}
.y4b{bottom:656.550667pt;}
.y74{bottom:662.456000pt;}
.y27{bottom:662.457333pt;}
.y2{bottom:664.342667pt;}
.y82{bottom:665.217333pt;}
.yb1{bottom:666.706667pt;}
.y114{bottom:668.885333pt;}
.yf0{bottom:669.496000pt;}
.y4a{bottom:674.616000pt;}
.y26{bottom:680.522667pt;}
.y81{bottom:683.282667pt;}
.y113{bottom:686.950667pt;}
.yef{bottom:687.562667pt;}
.y25{bottom:698.588000pt;}
.yb0{bottom:700.713333pt;}
.y80{bottom:701.349333pt;}
.y112{bottom:705.016000pt;}
.yee{bottom:705.628000pt;}
.y49{bottom:707.034667pt;}
.y1{bottom:714.156000pt;}
.y24{bottom:716.653333pt;}
.yaf{bottom:718.778667pt;}
.y7f{bottom:719.414667pt;}
.y111{bottom:723.081333pt;}
.yed{bottom:723.693333pt;}
.y23{bottom:734.718667pt;}
.y7e{bottom:737.480000pt;}
.y110{bottom:741.148000pt;}
.yec{bottom:741.758667pt;}
.y48{bottom:752.784000pt;}
.y22{bottom:752.785333pt;}
.y7d{bottom:755.546667pt;}
.y10f{bottom:759.213333pt;}
.y21{bottom:770.850667pt;}
.y7c{bottom:773.612000pt;}
.y20{bottom:788.916000pt;}
.y10e{bottom:791.630667pt;}
.y7b{bottom:791.677333pt;}
.y1f{bottom:836.214667pt;}
.hb{height:26.142037pt;}
.h7{height:39.213056pt;}
.h5{height:43.569771pt;}
.hc{height:45.847311pt;}
.h4{height:47.709131pt;}
.h8{height:49.177446pt;}
.h6{height:56.619669pt;}
.h9{height:59.986059pt;}
.ha{height:59.991392pt;}
.h3{height:62.740715pt;}
.h2{height:81.548000pt;}
.h0{height:907.080000pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:75.850667pt;}
.x1{left:77.480000pt;}
.x8{left:91.042667pt;}
.x4{left:92.598667pt;}
.x9{left:95.413333pt;}
.xe{left:101.465333pt;}
.x6{left:106.057333pt;}
.x2{left:107.716000pt;}
.x5{left:110.172000pt;}
.xf{left:113.408000pt;}
.xc{left:116.584000pt;}
.xd{left:128.962667pt;}
.x3{left:135.264000pt;}
.x7{left:138.416000pt;}
.xa{left:531.550667pt;}
.x10{left:532.845333pt;}
}




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