
    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_76373465fbe73a80048f09da.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1ab00298eb9f3f52dde444d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890137;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_ac39fd1e0006c2ccc0304022.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_26ff146202707a37fe8a8676.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1e47c81da13e3201182c425b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b4dcb76c32ef02dc5baad183.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1cb6e1bd06936fb0fd21d026.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.354000px;}
.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;}
}
.ws79{word-spacing:-64.745856px;}
.ws0{word-spacing:-63.071100px;}
.ws9{word-spacing:-55.944000px;}
.ws71{word-spacing:-48.563856px;}
.ws78{word-spacing:-44.471856px;}
.ws97{word-spacing:-38.668200px;}
.ws5f{word-spacing:-38.656800px;}
.wsf3{word-spacing:-38.654400px;}
.wsa4{word-spacing:-38.651400px;}
.ws25{word-spacing:-38.649000px;}
.ws38{word-spacing:-38.643600px;}
.wscd{word-spacing:-38.638200px;}
.ws90{word-spacing:-38.618400px;}
.ws3{word-spacing:-38.439000px;}
.ws82{word-spacing:-38.437200px;}
.wsab{word-spacing:-38.436600px;}
.ws4{word-spacing:-38.436300px;}
.ws29{word-spacing:-38.435400px;}
.ws6e{word-spacing:-38.422200px;}
.wsce{word-spacing:-38.357400px;}
.ws9a{word-spacing:-38.166000px;}
.ws8b{word-spacing:-38.160000px;}
.ws4e{word-spacing:-38.154000px;}
.ws5{word-spacing:-38.153400px;}
.ws75{word-spacing:-38.151900px;}
.wsc9{word-spacing:-38.145000px;}
.wsd3{word-spacing:-38.141700px;}
.ws57{word-spacing:-38.132400px;}
.wsf5{word-spacing:-38.003400px;}
.ws6c{word-spacing:-37.944000px;}
.wsc2{word-spacing:-37.942800px;}
.wsf8{word-spacing:-37.942200px;}
.wsdd{word-spacing:-37.941300px;}
.ws2e{word-spacing:-37.935000px;}
.wsd1{word-spacing:-37.934400px;}
.ws46{word-spacing:-37.933800px;}
.wsde{word-spacing:-37.932600px;}
.ws6{word-spacing:-37.931100px;}
.ws6f{word-spacing:-37.930800px;}
.ws76{word-spacing:-37.927200px;}
.wsbd{word-spacing:-37.926000px;}
.ws7{word-spacing:-37.925400px;}
.ws16{word-spacing:-37.874400px;}
.ws9d{word-spacing:-37.728000px;}
.ws61{word-spacing:-37.724400px;}
.wsa7{word-spacing:-37.723200px;}
.ws80{word-spacing:-37.722600px;}
.ws73{word-spacing:-37.446000px;}
.ws4a{word-spacing:-37.440000px;}
.ws35{word-spacing:-37.434600px;}
.ws77{word-spacing:-37.431198px;}
.wse4{word-spacing:-37.226400px;}
.ws95{word-spacing:-37.222200px;}
.ws72{word-spacing:-37.218000px;}
.ws8{word-spacing:-37.212300px;}
.ws2f{word-spacing:-37.209600px;}
.ws9c{word-spacing:-36.993600px;}
.ws1e{word-spacing:-36.990000px;}
.ws96{word-spacing:-36.982800px;}
.wsa{word-spacing:-36.720000px;}
.ws60{word-spacing:-36.702300px;}
.wsb{word-spacing:-36.700200px;}
.wsdb{word-spacing:-36.504000px;}
.ws74{word-spacing:-36.363600px;}
.ws33{word-spacing:-36.251400px;}
.ws63{word-spacing:-35.784000px;}
.wse7{word-spacing:-35.783100px;}
.wsf6{word-spacing:-35.778600px;}
.wsae{word-spacing:-35.773200px;}
.ws23{word-spacing:-35.771700px;}
.ws20{word-spacing:-35.564400px;}
.wsd0{word-spacing:-35.262300px;}
.ws1a{word-spacing:-35.061000px;}
.wse8{word-spacing:-35.052600px;}
.wsa0{word-spacing:-35.049600px;}
.wsa5{word-spacing:-34.540200px;}
.wse0{word-spacing:-34.348200px;}
.ws8a{word-spacing:-34.336200px;}
.wsac{word-spacing:-34.327200px;}
.wsf4{word-spacing:-34.316400px;}
.ws54{word-spacing:-34.298400px;}
.wsa1{word-spacing:-34.124400px;}
.wsaf{word-spacing:-33.840000px;}
.wse1{word-spacing:-33.612600px;}
.ws93{word-spacing:-33.609600px;}
.ws2{word-spacing:-33.547800px;}
.wsb3{word-spacing:-33.401400px;}
.ws5a{word-spacing:-33.400800px;}
.ws7d{word-spacing:-33.120000px;}
.ws62{word-spacing:-32.908200px;}
.wsd8{word-spacing:-32.904000px;}
.wsda{word-spacing:-32.900400px;}
.ws7b{word-spacing:-32.898000px;}
.ws36{word-spacing:-32.893800px;}
.ws5d{word-spacing:-32.891400px;}
.ws7c{word-spacing:-32.684400px;}
.wsb0{word-spacing:-32.682600px;}
.ws5b{word-spacing:-32.677200px;}
.ws42{word-spacing:-32.400000px;}
.wsd7{word-spacing:-32.184000px;}
.ws32{word-spacing:-32.182200px;}
.wsa2{word-spacing:-32.175000px;}
.ws3e{word-spacing:-32.172000px;}
.wsc7{word-spacing:-31.953600px;}
.ws40{word-spacing:-31.946400px;}
.wsc4{word-spacing:-31.462200px;}
.ws9e{word-spacing:-31.459200px;}
.wsad{word-spacing:-31.438200px;}
.ws8d{word-spacing:-31.428900px;}
.wsbe{word-spacing:-30.948300px;}
.wse3{word-spacing:-30.743100px;}
.ws24{word-spacing:-30.710400px;}
.ws2c{word-spacing:-30.515400px;}
.ws3d{word-spacing:-30.240000px;}
.wsd{word-spacing:-29.797200px;}
.wsaa{word-spacing:-29.520000px;}
.ws7e{word-spacing:-29.516400px;}
.ws89{word-spacing:-29.502000px;}
.wsbf{word-spacing:-29.304000px;}
.wsfb{word-spacing:-29.300400px;}
.wseb{word-spacing:-29.292600px;}
.wsa3{word-spacing:-29.291400px;}
.wsa9{word-spacing:-29.282400px;}
.ws5e{word-spacing:-29.084400px;}
.wsb5{word-spacing:-28.584000px;}
.wsd4{word-spacing:-28.583100px;}
.wse2{word-spacing:-28.580400px;}
.wsd2{word-spacing:-28.578600px;}
.ws45{word-spacing:-28.576200px;}
.wsea{word-spacing:-27.870000px;}
.wsba{word-spacing:-27.862200px;}
.ws27{word-spacing:-27.858600px;}
.wsb4{word-spacing:-27.856200px;}
.ws59{word-spacing:-27.644400px;}
.wsf1{word-spacing:-27.644100px;}
.wsc5{word-spacing:-27.633600px;}
.ws22{word-spacing:-27.624000px;}
.wsef{word-spacing:-27.360000px;}
.ws15{word-spacing:-27.354000px;}
.wsee{word-spacing:-26.919900px;}
.ws11{word-spacing:-26.913600px;}
.ws43{word-spacing:-26.629200px;}
.ws64{word-spacing:-26.422200px;}
.ws2b{word-spacing:-26.415000px;}
.ws88{word-spacing:-26.405400px;}
.ws1b{word-spacing:-26.391900px;}
.ws56{word-spacing:-26.194200px;}
.ws8f{word-spacing:-26.189400px;}
.wsd6{word-spacing:-25.920000px;}
.ws66{word-spacing:-25.708200px;}
.wscc{word-spacing:-25.696800px;}
.wsc3{word-spacing:-25.479000px;}
.ws4b{word-spacing:-24.975000px;}
.ws8e{word-spacing:-24.972900px;}
.wsca{word-spacing:-24.765000px;}
.ws3a{word-spacing:-24.755400px;}
.wsc8{word-spacing:-24.749400px;}
.ws41{word-spacing:-24.484200px;}
.wse6{word-spacing:-24.480000px;}
.wsc6{word-spacing:-24.474000px;}
.ws48{word-spacing:-24.472800px;}
.wsfd{word-spacing:-24.261300px;}
.wsc{word-spacing:-24.260400px;}
.wsb2{word-spacing:-24.247200px;}
.ws14{word-spacing:-24.244200px;}
.wsb6{word-spacing:-24.046200px;}
.ws58{word-spacing:-24.042600px;}
.ws7f{word-spacing:-24.028200px;}
.wsa6{word-spacing:-23.756400px;}
.ws4f{word-spacing:-23.745600px;}
.ws39{word-spacing:-23.540400px;}
.ws12{word-spacing:-23.526000px;}
.ws6a{word-spacing:-23.317200px;}
.ws30{word-spacing:-22.815000px;}
.wsdc{word-spacing:-22.814100px;}
.ws87{word-spacing:-22.812300px;}
.ws9f{word-spacing:-22.589400px;}
.ws50{word-spacing:-22.320000px;}
.wscf{word-spacing:-22.316400px;}
.ws68{word-spacing:-21.373200px;}
.ws83{word-spacing:-20.880000px;}
.ws8c{word-spacing:-20.662200px;}
.ws67{word-spacing:-20.649600px;}
.wsb1{word-spacing:-20.647800px;}
.wsd5{word-spacing:-19.944000px;}
.wsc0{word-spacing:-19.904400px;}
.ws10{word-spacing:-19.693200px;}
.ws1d{word-spacing:-19.422000px;}
.ws1f{word-spacing:-19.222200px;}
.wsfe{word-spacing:-19.221900px;}
.ws28{word-spacing:-19.221300px;}
.ws69{word-spacing:-19.207800px;}
.ws44{word-spacing:-18.712800px;}
.ws81{word-spacing:-17.981400px;}
.ws19{word-spacing:-17.782200px;}
.ws84{word-spacing:-17.560800px;}
.ws5c{word-spacing:-17.276400px;}
.ws53{word-spacing:-17.274000px;}
.ws51{word-spacing:-16.835400px;}
.wscb{word-spacing:-16.559100px;}
.ws3b{word-spacing:-16.344000px;}
.ws26{word-spacing:-16.335000px;}
.ws2a{word-spacing:-16.101900px;}
.ws37{word-spacing:-15.840000px;}
.wsf2{word-spacing:-15.619500px;}
.ws21{word-spacing:-15.613200px;}
.ws65{word-spacing:-15.605400px;}
.wsb7{word-spacing:-14.901300px;}
.ws55{word-spacing:-14.895000px;}
.ws86{word-spacing:-14.891400px;}
.wsfa{word-spacing:-14.886300px;}
.ws92{word-spacing:-14.681400px;}
.ws52{word-spacing:-14.394600px;}
.ws4c{word-spacing:-14.169600px;}
.wsa8{word-spacing:-12.744000px;}
.ws6b{word-spacing:-12.736200px;}
.ws4d{word-spacing:-12.011400px;}
.wsbb{word-spacing:-12.006000px;}
.wsbc{word-spacing:-12.001800px;}
.wse5{word-spacing:-11.309100px;}
.wsb8{word-spacing:-9.138600px;}
.ws13{word-spacing:-8.636400px;}
.ws1c{word-spacing:-8.191800px;}
.wsf9{word-spacing:-7.694100px;}
.ws85{word-spacing:-7.691400px;}
.ws94{word-spacing:-7.200000px;}
.wsf0{word-spacing:-6.978600px;}
.wsd9{word-spacing:-6.966900px;}
.ws18{word-spacing:-6.964200px;}
.ws17{word-spacing:-6.471900px;}
.ws3f{word-spacing:-5.760000px;}
.ws31{word-spacing:-5.526000px;}
.ws49{word-spacing:-3.372300px;}
.wsb9{word-spacing:-1.207800px;}
.ws6d{word-spacing:-0.495000px;}
.ws91{word-spacing:0.000000px;}
.wse{word-spacing:0.939000px;}
.wsf{word-spacing:1.445700px;}
.ws3c{word-spacing:1.449000px;}
.wsf7{word-spacing:2.226000px;}
.ws2d{word-spacing:3.819000px;}
.ws70{word-spacing:5.954604px;}
.wsec{word-spacing:5.992200px;}
.ws34{word-spacing:5.995800px;}
.ws47{word-spacing:6.703800px;}
.wse9{word-spacing:10.794000px;}
.wsc1{word-spacing:11.029200px;}
.wsdf{word-spacing:11.730000px;}
.wsed{word-spacing:13.176000px;}
.ws98{word-spacing:29.245500px;}
.wsfc{word-spacing:72.239400px;}
.ws9b{word-spacing:74.376000px;}
.ws99{word-spacing:125.005500px;}
.ws7a{word-spacing:228.543840px;}
.ws1{word-spacing:1871.357400px;}
._24{margin-left:-81.911856px;}
._12{margin-left:-2.232600px;}
._2{margin-left:-1.023000px;}
._0{width:1.148400px;}
._20{width:2.232600px;}
._17{width:17.664000px;}
._1{width:19.149000px;}
._3{width:21.102000px;}
._d{width:22.107600px;}
._1f{width:23.216400px;}
._18{width:24.846000px;}
._11{width:26.291400px;}
._5{width:27.420000px;}
._14{width:29.155200px;}
._9{width:30.303600px;}
._e{width:31.693800px;}
._4{width:32.762400px;}
._a{width:33.955200px;}
._f{width:35.502000px;}
._28{width:36.510600px;}
._8{width:37.577400px;}
._15{width:38.824500px;}
._13{width:40.893000px;}
._10{width:41.971200px;}
._1c{width:43.040400px;}
._26{width:44.214000px;}
._1e{width:45.220800px;}
._1d{width:46.223400px;}
._b{width:48.818400px;}
._25{width:49.877400px;}
._c{width:50.933400px;}
._1b{width:53.994300px;}
._21{width:56.652000px;}
._6{width:57.891000px;}
._7{width:59.242500px;}
._16{width:61.347000px;}
._19{width:63.222000px;}
._1a{width:64.280400px;}
._27{width:68.190000px;}
._29{width:69.276000px;}
._23{width:93.099696px;}
._22{width:185.611632px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,51,204);}
.fs5{font-size:46.800000px;}
.fs3{font-size:48.174000px;}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.328000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:3.460500px;}
.y70{bottom:3.469500px;}
.ya4{bottom:3.825000px;}
.y95{bottom:3.886500px;}
.y98{bottom:3.915000px;}
.y9c{bottom:3.946500px;}
.ya0{bottom:3.975000px;}
.y6a{bottom:4.032000px;}
.y4{bottom:4.471500px;}
.ya7{bottom:6.240000px;}
.y79{bottom:8.812500px;}
.y71{bottom:8.835000px;}
.y99{bottom:14.175000px;}
.y9d{bottom:14.205000px;}
.ya1{bottom:14.236500px;}
.ya5{bottom:14.265000px;}
.y92{bottom:14.325000px;}
.y6c{bottom:18.516000px;}
.y6d{bottom:23.953500px;}
.y9b{bottom:24.465000px;}
.y9f{bottom:24.495000px;}
.ya3{bottom:24.525000px;}
.y94{bottom:24.586500px;}
.y97{bottom:24.615000px;}
.y91{bottom:35.025000px;}
.y6b{bottom:45.234000px;}
.y93{bottom:45.286500px;}
.y3{bottom:72.825000px;}
.y61{bottom:100.155000px;}
.yf4{bottom:101.955000px;}
.y32{bottom:108.255000px;}
.y60{bottom:120.855000px;}
.yf3{bottom:122.655000px;}
.y8d{bottom:122.836500px;}
.yd0{bottom:126.255000px;}
.y31{bottom:128.955000px;}
.yf2{bottom:143.355000px;}
.y8c{bottom:143.536500px;}
.ycf{bottom:146.955000px;}
.y30{bottom:149.655000px;}
.y5f{bottom:150.555000px;}
.yf1{bottom:164.055000px;}
.y8b{bottom:164.236500px;}
.yce{bottom:167.655000px;}
.y5e{bottom:171.255000px;}
.y2f{bottom:179.355000px;}
.y8a{bottom:184.936500px;}
.y5d{bottom:191.955000px;}
.yf0{bottom:193.755000px;}
.ycd{bottom:197.355000px;}
.y2e{bottom:200.055000px;}
.y89{bottom:205.636500px;}
.y5c{bottom:212.655000px;}
.yef{bottom:214.455000px;}
.ycc{bottom:218.055000px;}
.y2d{bottom:220.755000px;}
.y88{bottom:226.336500px;}
.y5b{bottom:233.355000px;}
.yee{bottom:235.155000px;}
.ycb{bottom:238.755000px;}
.y2c{bottom:241.455000px;}
.y87{bottom:247.036500px;}
.y5a{bottom:254.055000px;}
.yed{bottom:255.855000px;}
.y2b{bottom:262.155000px;}
.y86{bottom:267.736500px;}
.yca{bottom:268.455000px;}
.y59{bottom:274.755000px;}
.y2a{bottom:282.855000px;}
.yec{bottom:285.555000px;}
.y85{bottom:288.436500px;}
.yc9{bottom:289.155000px;}
.y58{bottom:295.455000px;}
.y29{bottom:303.555000px;}
.yeb{bottom:306.255000px;}
.y84{bottom:309.136500px;}
.yc8{bottom:309.855000px;}
.y28{bottom:324.255000px;}
.y57{bottom:325.155000px;}
.yea{bottom:326.955000px;}
.y83{bottom:329.836500px;}
.yc7{bottom:330.555000px;}
.y27{bottom:344.955000px;}
.y56{bottom:345.855000px;}
.ye9{bottom:347.655000px;}
.y82{bottom:350.536500px;}
.yc6{bottom:360.255000px;}
.y55{bottom:366.555000px;}
.y81{bottom:371.236500px;}
.y26{bottom:374.655000px;}
.ye8{bottom:377.355000px;}
.yb5{bottom:384.375000px;}
.y54{bottom:387.255000px;}
.yc5{bottom:389.955000px;}
.y80{bottom:391.936500px;}
.y25{bottom:395.355000px;}
.ye7{bottom:398.055000px;}
.yb4{bottom:405.075000px;}
.y53{bottom:407.955000px;}
.yc4{bottom:410.655000px;}
.y24{bottom:416.055000px;}
.ye6{bottom:418.755000px;}
.y7f{bottom:421.636500px;}
.yb3{bottom:425.775000px;}
.y52{bottom:428.655000px;}
.yc3{bottom:431.355000px;}
.y23{bottom:436.755000px;}
.ye5{bottom:439.455000px;}
.y7e{bottom:442.336500px;}
.yb2{bottom:446.475000px;}
.y51{bottom:449.355000px;}
.yc2{bottom:452.055000px;}
.y22{bottom:457.455000px;}
.y7d{bottom:463.036500px;}
.ye4{bottom:469.155000px;}
.y50{bottom:470.055000px;}
.yb1{bottom:476.175000px;}
.y21{bottom:478.155000px;}
.yc1{bottom:481.755000px;}
.y7c{bottom:483.736500px;}
.ye3{bottom:489.855000px;}
.y4f{bottom:490.755000px;}
.yb0{bottom:496.875000px;}
.y20{bottom:498.855000px;}
.yc0{bottom:502.455000px;}
.y7b{bottom:504.436500px;}
.y4e{bottom:511.455000px;}
.yaf{bottom:517.575000px;}
.y1f{bottom:519.555000px;}
.ybf{bottom:523.155000px;}
.y7a{bottom:534.136500px;}
.y1e{bottom:540.255000px;}
.y4d{bottom:541.155000px;}
.ybe{bottom:543.855000px;}
.yae{bottom:547.275000px;}
.y77{bottom:550.950000px;}
.y76{bottom:559.875000px;}
.y1d{bottom:560.955000px;}
.y4c{bottom:561.855000px;}
.ybd{bottom:564.555000px;}
.yad{bottom:567.975000px;}
.y1c{bottom:581.655000px;}
.y4b{bottom:582.555000px;}
.ybc{bottom:585.255000px;}
.y75{bottom:588.000000px;}
.yac{bottom:588.675000px;}
.ye2{bottom:590.655000px;}
.y1b{bottom:602.355000px;}
.y4a{bottom:603.255000px;}
.ybb{bottom:605.955000px;}
.yab{bottom:609.375000px;}
.ye1{bottom:611.355000px;}
.y1a{bottom:623.055000px;}
.y49{bottom:623.955000px;}
.y74{bottom:625.125000px;}
.yaa{bottom:630.075000px;}
.ye0{bottom:632.055000px;}
.yba{bottom:635.655000px;}
.y48{bottom:644.655000px;}
.ya9{bottom:650.775000px;}
.y19{bottom:652.755000px;}
.yb9{bottom:656.355000px;}
.ydf{bottom:661.755000px;}
.y47{bottom:665.355000px;}
.ya8{bottom:671.475000px;}
.y18{bottom:673.455000px;}
.yb8{bottom:677.055000px;}
.yde{bottom:682.455000px;}
.y46{bottom:686.055000px;}
.y73{bottom:696.675000px;}
.yb7{bottom:697.755000px;}
.y17{bottom:703.155000px;}
.y45{bottom:706.755000px;}
.ydd{bottom:712.155000px;}
.ya6{bottom:717.975000px;}
.yb6{bottom:718.455000px;}
.y16{bottom:723.855000px;}
.y72{bottom:726.375000px;}
.y44{bottom:727.455000px;}
.ydc{bottom:732.855000px;}
.y6f{bottom:743.175000px;}
.ya2{bottom:743.250000px;}
.y15{bottom:744.555000px;}
.y43{bottom:748.155000px;}
.y6e{bottom:752.115000px;}
.ydb{bottom:762.555000px;}
.y14{bottom:765.255000px;}
.y42{bottom:768.855000px;}
.y69{bottom:780.300000px;}
.yda{bottom:783.255000px;}
.y9e{bottom:785.400000px;}
.y13{bottom:785.955000px;}
.y41{bottom:789.555000px;}
.y68{bottom:804.315000px;}
.y12{bottom:806.655000px;}
.y40{bottom:810.255000px;}
.yd9{bottom:812.955000px;}
.y11{bottom:827.355000px;}
.y9a{bottom:827.550000px;}
.y3f{bottom:830.955000px;}
.yd8{bottom:833.655000px;}
.y10{bottom:848.055000px;}
.y3e{bottom:851.655000px;}
.yd7{bottom:854.355000px;}
.yf{bottom:868.755000px;}
.y96{bottom:869.700000px;}
.y3d{bottom:872.355000px;}
.yf7{bottom:875.055000px;}
.y67{bottom:881.355000px;}
.yd6{bottom:884.055000px;}
.ye{bottom:889.455000px;}
.y3c{bottom:893.055000px;}
.y66{bottom:902.055000px;}
.yd5{bottom:904.755000px;}
.yd{bottom:910.155000px;}
.y90{bottom:911.850000px;}
.y3b{bottom:913.755000px;}
.y65{bottom:922.755000px;}
.yd4{bottom:925.455000px;}
.yc{bottom:930.855000px;}
.y3a{bottom:934.455000px;}
.y64{bottom:943.455000px;}
.yf6{bottom:946.155000px;}
.y39{bottom:955.155000px;}
.yb{bottom:960.555000px;}
.y63{bottom:964.155000px;}
.yf5{bottom:966.855000px;}
.y38{bottom:975.855000px;}
.y62{bottom:984.855000px;}
.y8f{bottom:987.555000px;}
.ya{bottom:990.255000px;}
.yd3{bottom:996.555000px;}
.y37{bottom:1005.555000px;}
.y8e{bottom:1017.255000px;}
.y9{bottom:1019.955000px;}
.y36{bottom:1026.255000px;}
.yd2{bottom:1037.955000px;}
.y35{bottom:1046.955000px;}
.y8{bottom:1049.655000px;}
.yd1{bottom:1058.655000px;}
.y34{bottom:1067.655000px;}
.y7{bottom:1079.355000px;}
.y33{bottom:1088.355000px;}
.y6{bottom:1109.055000px;}
.y5{bottom:1129.575000px;}
.y2{bottom:1150.455000px;}
.y1{bottom:1175.475000px;}
.h4{height:20.175000px;}
.h15{height:25.200000px;}
.h11{height:28.050000px;}
.he{height:28.125000px;}
.hc{height:32.108159px;}
.ha{height:33.448939px;}
.h9{height:33.472462px;}
.h14{height:42.075000px;}
.h5{height:44.189209px;}
.h6{height:48.796875px;}
.h7{height:50.027344px;}
.h3{height:50.308594px;}
.hd{height:55.538438px;}
.h12{height:56.271773px;}
.hf{height:56.277773px;}
.hb{height:57.857625px;}
.h10{height:57.898313px;}
.h8{height:58.500000px;}
.h13{height:62.775000px;}
.h2{height:97.101563px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w5{width:18.000000px;}
.w4{width:20.325000px;}
.w2{width:25.050000px;}
.w8{width:42.825000px;}
.wa{width:82.575000px;}
.w3{width:93.450000px;}
.w7{width:95.625000px;}
.w6{width:118.125000px;}
.wd{width:129.075000px;}
.wb{width:145.575000px;}
.w9{width:151.575000px;}
.wc{width:156.075000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:3.015000px;}
.x1c{left:6.027000px;}
.x24{left:8.055000px;}
.x17{left:11.062500px;}
.x14{left:12.948000px;}
.x1a{left:15.981000px;}
.x21{left:17.779500px;}
.x12{left:21.525000px;}
.x1d{left:27.148500px;}
.x1b{left:37.194000px;}
.x10{left:41.119500px;}
.xe{left:45.783000px;}
.xd{left:51.153000px;}
.xf{left:70.840500px;}
.x19{left:92.052000px;}
.xb{left:138.238500px;}
.x28{left:142.738500px;}
.x2{left:150.120000px;}
.x23{left:151.425000px;}
.x1{left:153.000000px;}
.x4{left:159.838500px;}
.xc{left:173.700000px;}
.x13{left:205.725000px;}
.x1e{left:207.900000px;}
.x15{left:231.120000px;}
.x1f{left:235.260000px;}
.x25{left:302.925000px;}
.x5{left:337.138500px;}
.x8{left:351.360000px;}
.x26{left:385.425000px;}
.x3{left:471.150000px;}
.x7{left:495.360000px;}
.x6{left:516.238500px;}
.xa{left:531.180000px;}
.x20{left:573.825000px;}
.x22{left:623.700000px;}
.x16{left:626.775000px;}
.x18{left:649.800000px;}
.x9{left:668.700000px;}
.x27{left:686.925000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.314667pt;}
.ws79{word-spacing:-57.551872pt;}
.ws0{word-spacing:-56.063200pt;}
.ws9{word-spacing:-49.728000pt;}
.ws71{word-spacing:-43.167872pt;}
.ws78{word-spacing:-39.530539pt;}
.ws97{word-spacing:-34.371733pt;}
.ws5f{word-spacing:-34.361600pt;}
.wsf3{word-spacing:-34.359467pt;}
.wsa4{word-spacing:-34.356800pt;}
.ws25{word-spacing:-34.354667pt;}
.ws38{word-spacing:-34.349867pt;}
.wscd{word-spacing:-34.345067pt;}
.ws90{word-spacing:-34.327467pt;}
.ws3{word-spacing:-34.168000pt;}
.ws82{word-spacing:-34.166400pt;}
.wsab{word-spacing:-34.165867pt;}
.ws4{word-spacing:-34.165600pt;}
.ws29{word-spacing:-34.164800pt;}
.ws6e{word-spacing:-34.153067pt;}
.wsce{word-spacing:-34.095467pt;}
.ws9a{word-spacing:-33.925333pt;}
.ws8b{word-spacing:-33.920000pt;}
.ws4e{word-spacing:-33.914667pt;}
.ws5{word-spacing:-33.914133pt;}
.ws75{word-spacing:-33.912800pt;}
.wsc9{word-spacing:-33.906667pt;}
.wsd3{word-spacing:-33.903733pt;}
.ws57{word-spacing:-33.895467pt;}
.wsf5{word-spacing:-33.780800pt;}
.ws6c{word-spacing:-33.728000pt;}
.wsc2{word-spacing:-33.726933pt;}
.wsf8{word-spacing:-33.726400pt;}
.wsdd{word-spacing:-33.725600pt;}
.ws2e{word-spacing:-33.720000pt;}
.wsd1{word-spacing:-33.719467pt;}
.ws46{word-spacing:-33.718933pt;}
.wsde{word-spacing:-33.717867pt;}
.ws6{word-spacing:-33.716533pt;}
.ws6f{word-spacing:-33.716267pt;}
.ws76{word-spacing:-33.713067pt;}
.wsbd{word-spacing:-33.712000pt;}
.ws7{word-spacing:-33.711467pt;}
.ws16{word-spacing:-33.666133pt;}
.ws9d{word-spacing:-33.536000pt;}
.ws61{word-spacing:-33.532800pt;}
.wsa7{word-spacing:-33.531733pt;}
.ws80{word-spacing:-33.531200pt;}
.ws73{word-spacing:-33.285333pt;}
.ws4a{word-spacing:-33.280000pt;}
.ws35{word-spacing:-33.275200pt;}
.ws77{word-spacing:-33.272176pt;}
.wse4{word-spacing:-33.090133pt;}
.ws95{word-spacing:-33.086400pt;}
.ws72{word-spacing:-33.082667pt;}
.ws8{word-spacing:-33.077600pt;}
.ws2f{word-spacing:-33.075200pt;}
.ws9c{word-spacing:-32.883200pt;}
.ws1e{word-spacing:-32.880000pt;}
.ws96{word-spacing:-32.873600pt;}
.wsa{word-spacing:-32.640000pt;}
.ws60{word-spacing:-32.624267pt;}
.wsb{word-spacing:-32.622400pt;}
.wsdb{word-spacing:-32.448000pt;}
.ws74{word-spacing:-32.323200pt;}
.ws33{word-spacing:-32.223467pt;}
.ws63{word-spacing:-31.808000pt;}
.wse7{word-spacing:-31.807200pt;}
.wsf6{word-spacing:-31.803200pt;}
.wsae{word-spacing:-31.798400pt;}
.ws23{word-spacing:-31.797067pt;}
.ws20{word-spacing:-31.612800pt;}
.wsd0{word-spacing:-31.344267pt;}
.ws1a{word-spacing:-31.165333pt;}
.wse8{word-spacing:-31.157867pt;}
.wsa0{word-spacing:-31.155200pt;}
.wsa5{word-spacing:-30.702400pt;}
.wse0{word-spacing:-30.531733pt;}
.ws8a{word-spacing:-30.521067pt;}
.wsac{word-spacing:-30.513067pt;}
.wsf4{word-spacing:-30.503467pt;}
.ws54{word-spacing:-30.487467pt;}
.wsa1{word-spacing:-30.332800pt;}
.wsaf{word-spacing:-30.080000pt;}
.wse1{word-spacing:-29.877867pt;}
.ws93{word-spacing:-29.875200pt;}
.ws2{word-spacing:-29.820267pt;}
.wsb3{word-spacing:-29.690133pt;}
.ws5a{word-spacing:-29.689600pt;}
.ws7d{word-spacing:-29.440000pt;}
.ws62{word-spacing:-29.251733pt;}
.wsd8{word-spacing:-29.248000pt;}
.wsda{word-spacing:-29.244800pt;}
.ws7b{word-spacing:-29.242667pt;}
.ws36{word-spacing:-29.238933pt;}
.ws5d{word-spacing:-29.236800pt;}
.ws7c{word-spacing:-29.052800pt;}
.wsb0{word-spacing:-29.051200pt;}
.ws5b{word-spacing:-29.046400pt;}
.ws42{word-spacing:-28.800000pt;}
.wsd7{word-spacing:-28.608000pt;}
.ws32{word-spacing:-28.606400pt;}
.wsa2{word-spacing:-28.600000pt;}
.ws3e{word-spacing:-28.597333pt;}
.wsc7{word-spacing:-28.403200pt;}
.ws40{word-spacing:-28.396800pt;}
.wsc4{word-spacing:-27.966400pt;}
.ws9e{word-spacing:-27.963733pt;}
.wsad{word-spacing:-27.945067pt;}
.ws8d{word-spacing:-27.936800pt;}
.wsbe{word-spacing:-27.509600pt;}
.wse3{word-spacing:-27.327200pt;}
.ws24{word-spacing:-27.298133pt;}
.ws2c{word-spacing:-27.124800pt;}
.ws3d{word-spacing:-26.880000pt;}
.wsd{word-spacing:-26.486400pt;}
.wsaa{word-spacing:-26.240000pt;}
.ws7e{word-spacing:-26.236800pt;}
.ws89{word-spacing:-26.224000pt;}
.wsbf{word-spacing:-26.048000pt;}
.wsfb{word-spacing:-26.044800pt;}
.wseb{word-spacing:-26.037867pt;}
.wsa3{word-spacing:-26.036800pt;}
.wsa9{word-spacing:-26.028800pt;}
.ws5e{word-spacing:-25.852800pt;}
.wsb5{word-spacing:-25.408000pt;}
.wsd4{word-spacing:-25.407200pt;}
.wse2{word-spacing:-25.404800pt;}
.wsd2{word-spacing:-25.403200pt;}
.ws45{word-spacing:-25.401067pt;}
.wsea{word-spacing:-24.773333pt;}
.wsba{word-spacing:-24.766400pt;}
.ws27{word-spacing:-24.763200pt;}
.wsb4{word-spacing:-24.761067pt;}
.ws59{word-spacing:-24.572800pt;}
.wsf1{word-spacing:-24.572533pt;}
.wsc5{word-spacing:-24.563200pt;}
.ws22{word-spacing:-24.554667pt;}
.wsef{word-spacing:-24.320000pt;}
.ws15{word-spacing:-24.314667pt;}
.wsee{word-spacing:-23.928800pt;}
.ws11{word-spacing:-23.923200pt;}
.ws43{word-spacing:-23.670400pt;}
.ws64{word-spacing:-23.486400pt;}
.ws2b{word-spacing:-23.480000pt;}
.ws88{word-spacing:-23.471467pt;}
.ws1b{word-spacing:-23.459467pt;}
.ws56{word-spacing:-23.283733pt;}
.ws8f{word-spacing:-23.279467pt;}
.wsd6{word-spacing:-23.040000pt;}
.ws66{word-spacing:-22.851733pt;}
.wscc{word-spacing:-22.841600pt;}
.wsc3{word-spacing:-22.648000pt;}
.ws4b{word-spacing:-22.200000pt;}
.ws8e{word-spacing:-22.198133pt;}
.wsca{word-spacing:-22.013333pt;}
.ws3a{word-spacing:-22.004800pt;}
.wsc8{word-spacing:-21.999467pt;}
.ws41{word-spacing:-21.763733pt;}
.wse6{word-spacing:-21.760000pt;}
.wsc6{word-spacing:-21.754667pt;}
.ws48{word-spacing:-21.753600pt;}
.wsfd{word-spacing:-21.565600pt;}
.wsc{word-spacing:-21.564800pt;}
.wsb2{word-spacing:-21.553067pt;}
.ws14{word-spacing:-21.550400pt;}
.wsb6{word-spacing:-21.374400pt;}
.ws58{word-spacing:-21.371200pt;}
.ws7f{word-spacing:-21.358400pt;}
.wsa6{word-spacing:-21.116800pt;}
.ws4f{word-spacing:-21.107200pt;}
.ws39{word-spacing:-20.924800pt;}
.ws12{word-spacing:-20.912000pt;}
.ws6a{word-spacing:-20.726400pt;}
.ws30{word-spacing:-20.280000pt;}
.wsdc{word-spacing:-20.279200pt;}
.ws87{word-spacing:-20.277600pt;}
.ws9f{word-spacing:-20.079467pt;}
.ws50{word-spacing:-19.840000pt;}
.wscf{word-spacing:-19.836800pt;}
.ws68{word-spacing:-18.998400pt;}
.ws83{word-spacing:-18.560000pt;}
.ws8c{word-spacing:-18.366400pt;}
.ws67{word-spacing:-18.355200pt;}
.wsb1{word-spacing:-18.353600pt;}
.wsd5{word-spacing:-17.728000pt;}
.wsc0{word-spacing:-17.692800pt;}
.ws10{word-spacing:-17.505067pt;}
.ws1d{word-spacing:-17.264000pt;}
.ws1f{word-spacing:-17.086400pt;}
.wsfe{word-spacing:-17.086133pt;}
.ws28{word-spacing:-17.085600pt;}
.ws69{word-spacing:-17.073600pt;}
.ws44{word-spacing:-16.633600pt;}
.ws81{word-spacing:-15.983467pt;}
.ws19{word-spacing:-15.806400pt;}
.ws84{word-spacing:-15.609600pt;}
.ws5c{word-spacing:-15.356800pt;}
.ws53{word-spacing:-15.354667pt;}
.ws51{word-spacing:-14.964800pt;}
.wscb{word-spacing:-14.719200pt;}
.ws3b{word-spacing:-14.528000pt;}
.ws26{word-spacing:-14.520000pt;}
.ws2a{word-spacing:-14.312800pt;}
.ws37{word-spacing:-14.080000pt;}
.wsf2{word-spacing:-13.884000pt;}
.ws21{word-spacing:-13.878400pt;}
.ws65{word-spacing:-13.871467pt;}
.wsb7{word-spacing:-13.245600pt;}
.ws55{word-spacing:-13.240000pt;}
.ws86{word-spacing:-13.236800pt;}
.wsfa{word-spacing:-13.232267pt;}
.ws92{word-spacing:-13.050133pt;}
.ws52{word-spacing:-12.795200pt;}
.ws4c{word-spacing:-12.595200pt;}
.wsa8{word-spacing:-11.328000pt;}
.ws6b{word-spacing:-11.321067pt;}
.ws4d{word-spacing:-10.676800pt;}
.wsbb{word-spacing:-10.672000pt;}
.wsbc{word-spacing:-10.668267pt;}
.wse5{word-spacing:-10.052533pt;}
.wsb8{word-spacing:-8.123200pt;}
.ws13{word-spacing:-7.676800pt;}
.ws1c{word-spacing:-7.281600pt;}
.wsf9{word-spacing:-6.839200pt;}
.ws85{word-spacing:-6.836800pt;}
.ws94{word-spacing:-6.400000pt;}
.wsf0{word-spacing:-6.203200pt;}
.wsd9{word-spacing:-6.192800pt;}
.ws18{word-spacing:-6.190400pt;}
.ws17{word-spacing:-5.752800pt;}
.ws3f{word-spacing:-5.120000pt;}
.ws31{word-spacing:-4.912000pt;}
.ws49{word-spacing:-2.997600pt;}
.wsb9{word-spacing:-1.073600pt;}
.ws6d{word-spacing:-0.440000pt;}
.ws91{word-spacing:0.000000pt;}
.wse{word-spacing:0.834667pt;}
.wsf{word-spacing:1.285067pt;}
.ws3c{word-spacing:1.288000pt;}
.wsf7{word-spacing:1.978667pt;}
.ws2d{word-spacing:3.394667pt;}
.ws70{word-spacing:5.292981pt;}
.wsec{word-spacing:5.326400pt;}
.ws34{word-spacing:5.329600pt;}
.ws47{word-spacing:5.958933pt;}
.wse9{word-spacing:9.594667pt;}
.wsc1{word-spacing:9.803733pt;}
.wsdf{word-spacing:10.426667pt;}
.wsed{word-spacing:11.712000pt;}
.ws98{word-spacing:25.996000pt;}
.wsfc{word-spacing:64.212800pt;}
.ws9b{word-spacing:66.112000pt;}
.ws99{word-spacing:111.116000pt;}
.ws7a{word-spacing:203.150080pt;}
.ws1{word-spacing:1663.428800pt;}
._24{margin-left:-72.810539pt;}
._12{margin-left:-1.984533pt;}
._2{margin-left:-0.909333pt;}
._0{width:1.020800pt;}
._20{width:1.984533pt;}
._17{width:15.701333pt;}
._1{width:17.021333pt;}
._3{width:18.757333pt;}
._d{width:19.651200pt;}
._1f{width:20.636800pt;}
._18{width:22.085333pt;}
._11{width:23.370133pt;}
._5{width:24.373333pt;}
._14{width:25.915733pt;}
._9{width:26.936533pt;}
._e{width:28.172267pt;}
._4{width:29.122133pt;}
._a{width:30.182400pt;}
._f{width:31.557333pt;}
._28{width:32.453867pt;}
._8{width:33.402133pt;}
._15{width:34.510667pt;}
._13{width:36.349333pt;}
._10{width:37.307733pt;}
._1c{width:38.258133pt;}
._26{width:39.301333pt;}
._1e{width:40.196267pt;}
._1d{width:41.087467pt;}
._b{width:43.394133pt;}
._25{width:44.335467pt;}
._c{width:45.274133pt;}
._1b{width:47.994933pt;}
._21{width:50.357333pt;}
._6{width:51.458667pt;}
._7{width:52.660000pt;}
._16{width:54.530667pt;}
._19{width:56.197333pt;}
._1a{width:57.138133pt;}
._27{width:60.613333pt;}
._29{width:61.578667pt;}
._23{width:82.755285pt;}
._22{width:164.988117pt;}
.fs5{font-size:41.600000pt;}
.fs3{font-size:42.821333pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.069333pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:3.076000pt;}
.y70{bottom:3.084000pt;}
.ya4{bottom:3.400000pt;}
.y95{bottom:3.454667pt;}
.y98{bottom:3.480000pt;}
.y9c{bottom:3.508000pt;}
.ya0{bottom:3.533333pt;}
.y6a{bottom:3.584000pt;}
.y4{bottom:3.974667pt;}
.ya7{bottom:5.546667pt;}
.y79{bottom:7.833333pt;}
.y71{bottom:7.853333pt;}
.y99{bottom:12.600000pt;}
.y9d{bottom:12.626667pt;}
.ya1{bottom:12.654667pt;}
.ya5{bottom:12.680000pt;}
.y92{bottom:12.733333pt;}
.y6c{bottom:16.458667pt;}
.y6d{bottom:21.292000pt;}
.y9b{bottom:21.746667pt;}
.y9f{bottom:21.773333pt;}
.ya3{bottom:21.800000pt;}
.y94{bottom:21.854667pt;}
.y97{bottom:21.880000pt;}
.y91{bottom:31.133333pt;}
.y6b{bottom:40.208000pt;}
.y93{bottom:40.254667pt;}
.y3{bottom:64.733333pt;}
.y61{bottom:89.026667pt;}
.yf4{bottom:90.626667pt;}
.y32{bottom:96.226667pt;}
.y60{bottom:107.426667pt;}
.yf3{bottom:109.026667pt;}
.y8d{bottom:109.188000pt;}
.yd0{bottom:112.226667pt;}
.y31{bottom:114.626667pt;}
.yf2{bottom:127.426667pt;}
.y8c{bottom:127.588000pt;}
.ycf{bottom:130.626667pt;}
.y30{bottom:133.026667pt;}
.y5f{bottom:133.826667pt;}
.yf1{bottom:145.826667pt;}
.y8b{bottom:145.988000pt;}
.yce{bottom:149.026667pt;}
.y5e{bottom:152.226667pt;}
.y2f{bottom:159.426667pt;}
.y8a{bottom:164.388000pt;}
.y5d{bottom:170.626667pt;}
.yf0{bottom:172.226667pt;}
.ycd{bottom:175.426667pt;}
.y2e{bottom:177.826667pt;}
.y89{bottom:182.788000pt;}
.y5c{bottom:189.026667pt;}
.yef{bottom:190.626667pt;}
.ycc{bottom:193.826667pt;}
.y2d{bottom:196.226667pt;}
.y88{bottom:201.188000pt;}
.y5b{bottom:207.426667pt;}
.yee{bottom:209.026667pt;}
.ycb{bottom:212.226667pt;}
.y2c{bottom:214.626667pt;}
.y87{bottom:219.588000pt;}
.y5a{bottom:225.826667pt;}
.yed{bottom:227.426667pt;}
.y2b{bottom:233.026667pt;}
.y86{bottom:237.988000pt;}
.yca{bottom:238.626667pt;}
.y59{bottom:244.226667pt;}
.y2a{bottom:251.426667pt;}
.yec{bottom:253.826667pt;}
.y85{bottom:256.388000pt;}
.yc9{bottom:257.026667pt;}
.y58{bottom:262.626667pt;}
.y29{bottom:269.826667pt;}
.yeb{bottom:272.226667pt;}
.y84{bottom:274.788000pt;}
.yc8{bottom:275.426667pt;}
.y28{bottom:288.226667pt;}
.y57{bottom:289.026667pt;}
.yea{bottom:290.626667pt;}
.y83{bottom:293.188000pt;}
.yc7{bottom:293.826667pt;}
.y27{bottom:306.626667pt;}
.y56{bottom:307.426667pt;}
.ye9{bottom:309.026667pt;}
.y82{bottom:311.588000pt;}
.yc6{bottom:320.226667pt;}
.y55{bottom:325.826667pt;}
.y81{bottom:329.988000pt;}
.y26{bottom:333.026667pt;}
.ye8{bottom:335.426667pt;}
.yb5{bottom:341.666667pt;}
.y54{bottom:344.226667pt;}
.yc5{bottom:346.626667pt;}
.y80{bottom:348.388000pt;}
.y25{bottom:351.426667pt;}
.ye7{bottom:353.826667pt;}
.yb4{bottom:360.066667pt;}
.y53{bottom:362.626667pt;}
.yc4{bottom:365.026667pt;}
.y24{bottom:369.826667pt;}
.ye6{bottom:372.226667pt;}
.y7f{bottom:374.788000pt;}
.yb3{bottom:378.466667pt;}
.y52{bottom:381.026667pt;}
.yc3{bottom:383.426667pt;}
.y23{bottom:388.226667pt;}
.ye5{bottom:390.626667pt;}
.y7e{bottom:393.188000pt;}
.yb2{bottom:396.866667pt;}
.y51{bottom:399.426667pt;}
.yc2{bottom:401.826667pt;}
.y22{bottom:406.626667pt;}
.y7d{bottom:411.588000pt;}
.ye4{bottom:417.026667pt;}
.y50{bottom:417.826667pt;}
.yb1{bottom:423.266667pt;}
.y21{bottom:425.026667pt;}
.yc1{bottom:428.226667pt;}
.y7c{bottom:429.988000pt;}
.ye3{bottom:435.426667pt;}
.y4f{bottom:436.226667pt;}
.yb0{bottom:441.666667pt;}
.y20{bottom:443.426667pt;}
.yc0{bottom:446.626667pt;}
.y7b{bottom:448.388000pt;}
.y4e{bottom:454.626667pt;}
.yaf{bottom:460.066667pt;}
.y1f{bottom:461.826667pt;}
.ybf{bottom:465.026667pt;}
.y7a{bottom:474.788000pt;}
.y1e{bottom:480.226667pt;}
.y4d{bottom:481.026667pt;}
.ybe{bottom:483.426667pt;}
.yae{bottom:486.466667pt;}
.y77{bottom:489.733333pt;}
.y76{bottom:497.666667pt;}
.y1d{bottom:498.626667pt;}
.y4c{bottom:499.426667pt;}
.ybd{bottom:501.826667pt;}
.yad{bottom:504.866667pt;}
.y1c{bottom:517.026667pt;}
.y4b{bottom:517.826667pt;}
.ybc{bottom:520.226667pt;}
.y75{bottom:522.666667pt;}
.yac{bottom:523.266667pt;}
.ye2{bottom:525.026667pt;}
.y1b{bottom:535.426667pt;}
.y4a{bottom:536.226667pt;}
.ybb{bottom:538.626667pt;}
.yab{bottom:541.666667pt;}
.ye1{bottom:543.426667pt;}
.y1a{bottom:553.826667pt;}
.y49{bottom:554.626667pt;}
.y74{bottom:555.666667pt;}
.yaa{bottom:560.066667pt;}
.ye0{bottom:561.826667pt;}
.yba{bottom:565.026667pt;}
.y48{bottom:573.026667pt;}
.ya9{bottom:578.466667pt;}
.y19{bottom:580.226667pt;}
.yb9{bottom:583.426667pt;}
.ydf{bottom:588.226667pt;}
.y47{bottom:591.426667pt;}
.ya8{bottom:596.866667pt;}
.y18{bottom:598.626667pt;}
.yb8{bottom:601.826667pt;}
.yde{bottom:606.626667pt;}
.y46{bottom:609.826667pt;}
.y73{bottom:619.266667pt;}
.yb7{bottom:620.226667pt;}
.y17{bottom:625.026667pt;}
.y45{bottom:628.226667pt;}
.ydd{bottom:633.026667pt;}
.ya6{bottom:638.200000pt;}
.yb6{bottom:638.626667pt;}
.y16{bottom:643.426667pt;}
.y72{bottom:645.666667pt;}
.y44{bottom:646.626667pt;}
.ydc{bottom:651.426667pt;}
.y6f{bottom:660.600000pt;}
.ya2{bottom:660.666667pt;}
.y15{bottom:661.826667pt;}
.y43{bottom:665.026667pt;}
.y6e{bottom:668.546667pt;}
.ydb{bottom:677.826667pt;}
.y14{bottom:680.226667pt;}
.y42{bottom:683.426667pt;}
.y69{bottom:693.600000pt;}
.yda{bottom:696.226667pt;}
.y9e{bottom:698.133333pt;}
.y13{bottom:698.626667pt;}
.y41{bottom:701.826667pt;}
.y68{bottom:714.946667pt;}
.y12{bottom:717.026667pt;}
.y40{bottom:720.226667pt;}
.yd9{bottom:722.626667pt;}
.y11{bottom:735.426667pt;}
.y9a{bottom:735.600000pt;}
.y3f{bottom:738.626667pt;}
.yd8{bottom:741.026667pt;}
.y10{bottom:753.826667pt;}
.y3e{bottom:757.026667pt;}
.yd7{bottom:759.426667pt;}
.yf{bottom:772.226667pt;}
.y96{bottom:773.066667pt;}
.y3d{bottom:775.426667pt;}
.yf7{bottom:777.826667pt;}
.y67{bottom:783.426667pt;}
.yd6{bottom:785.826667pt;}
.ye{bottom:790.626667pt;}
.y3c{bottom:793.826667pt;}
.y66{bottom:801.826667pt;}
.yd5{bottom:804.226667pt;}
.yd{bottom:809.026667pt;}
.y90{bottom:810.533333pt;}
.y3b{bottom:812.226667pt;}
.y65{bottom:820.226667pt;}
.yd4{bottom:822.626667pt;}
.yc{bottom:827.426667pt;}
.y3a{bottom:830.626667pt;}
.y64{bottom:838.626667pt;}
.yf6{bottom:841.026667pt;}
.y39{bottom:849.026667pt;}
.yb{bottom:853.826667pt;}
.y63{bottom:857.026667pt;}
.yf5{bottom:859.426667pt;}
.y38{bottom:867.426667pt;}
.y62{bottom:875.426667pt;}
.y8f{bottom:877.826667pt;}
.ya{bottom:880.226667pt;}
.yd3{bottom:885.826667pt;}
.y37{bottom:893.826667pt;}
.y8e{bottom:904.226667pt;}
.y9{bottom:906.626667pt;}
.y36{bottom:912.226667pt;}
.yd2{bottom:922.626667pt;}
.y35{bottom:930.626667pt;}
.y8{bottom:933.026667pt;}
.yd1{bottom:941.026667pt;}
.y34{bottom:949.026667pt;}
.y7{bottom:959.426667pt;}
.y33{bottom:967.426667pt;}
.y6{bottom:985.826667pt;}
.y5{bottom:1004.066667pt;}
.y2{bottom:1022.626667pt;}
.y1{bottom:1044.866667pt;}
.h4{height:17.933333pt;}
.h15{height:22.400000pt;}
.h11{height:24.933333pt;}
.he{height:25.000000pt;}
.hc{height:28.540586pt;}
.ha{height:29.732391pt;}
.h9{height:29.753299pt;}
.h14{height:37.400000pt;}
.h5{height:39.279297pt;}
.h6{height:43.375000pt;}
.h7{height:44.468750pt;}
.h3{height:44.718750pt;}
.hd{height:49.367500pt;}
.h12{height:50.019354pt;}
.hf{height:50.024687pt;}
.hb{height:51.429000pt;}
.h10{height:51.465167pt;}
.h8{height:52.000000pt;}
.h13{height:55.800000pt;}
.h2{height:86.312500pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w5{width:16.000000pt;}
.w4{width:18.066667pt;}
.w2{width:22.266667pt;}
.w8{width:38.066667pt;}
.wa{width:73.400000pt;}
.w3{width:83.066667pt;}
.w7{width:85.000000pt;}
.w6{width:105.000000pt;}
.wd{width:114.733333pt;}
.wb{width:129.400000pt;}
.w9{width:134.733333pt;}
.wc{width:138.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:2.680000pt;}
.x1c{left:5.357333pt;}
.x24{left:7.160000pt;}
.x17{left:9.833333pt;}
.x14{left:11.509333pt;}
.x1a{left:14.205333pt;}
.x21{left:15.804000pt;}
.x12{left:19.133333pt;}
.x1d{left:24.132000pt;}
.x1b{left:33.061333pt;}
.x10{left:36.550667pt;}
.xe{left:40.696000pt;}
.xd{left:45.469333pt;}
.xf{left:62.969333pt;}
.x19{left:81.824000pt;}
.xb{left:122.878667pt;}
.x28{left:126.878667pt;}
.x2{left:133.440000pt;}
.x23{left:134.600000pt;}
.x1{left:136.000000pt;}
.x4{left:142.078667pt;}
.xc{left:154.400000pt;}
.x13{left:182.866667pt;}
.x1e{left:184.800000pt;}
.x15{left:205.440000pt;}
.x1f{left:209.120000pt;}
.x25{left:269.266667pt;}
.x5{left:299.678667pt;}
.x8{left:312.320000pt;}
.x26{left:342.600000pt;}
.x3{left:418.800000pt;}
.x7{left:440.320000pt;}
.x6{left:458.878667pt;}
.xa{left:472.160000pt;}
.x20{left:510.066667pt;}
.x22{left:554.400000pt;}
.x16{left:557.133333pt;}
.x18{left:577.600000pt;}
.x9{left:594.400000pt;}
.x27{left:610.600000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  