
    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_509d86f33d5ff0c4a0067cf5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.908000;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_f7728fe90afa8d558bb49110.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_348b60a33d8266edcb3ccc35.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.688000;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_43b403eb50928b8094e0533a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.623000;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_c441ba89db277c51509b0679.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009000;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_b99f7afc8261312f10e29d94.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,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);}
.v3{vertical-align:-15.444000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.206000px;}
.v1{vertical-align:156.000000px;}
.ls3{letter-spacing:-4.500000px;}
.ls2{letter-spacing:-4.200000px;}
.ls5{letter-spacing:-0.813667px;}
.ls6{letter-spacing:-0.174600px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000216px;}
.ls0{letter-spacing:0.333000px;}
.ls4{letter-spacing:0.888000px;}
.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;}
}
.ws4{word-spacing:-21.336146px;}
.wsf8{word-spacing:-17.319000px;}
.ws54{word-spacing:-14.084400px;}
.ws2{word-spacing:-13.036800px;}
.ws10f{word-spacing:-11.325600px;}
.ws10e{word-spacing:-10.483200px;}
.ws3{word-spacing:-8.168952px;}
.ws23{word-spacing:-3.492000px;}
.ws9c{word-spacing:-3.317400px;}
.ws82{word-spacing:-3.084600px;}
.ws55{word-spacing:-2.968200px;}
.wsc8{word-spacing:-2.910000px;}
.ws1e{word-spacing:-2.793600px;}
.ws6e{word-spacing:-2.735400px;}
.wsb0{word-spacing:-2.677200px;}
.ws107{word-spacing:-2.619000px;}
.ws73{word-spacing:-2.560800px;}
.ws38{word-spacing:-2.502600px;}
.wsdb{word-spacing:-2.444400px;}
.ws6d{word-spacing:-2.386200px;}
.wsab{word-spacing:-2.328000px;}
.ws1c{word-spacing:-2.269800px;}
.wse3{word-spacing:-2.153400px;}
.ws28{word-spacing:-2.095200px;}
.wsa9{word-spacing:-2.037000px;}
.ws92{word-spacing:-1.920600px;}
.ws9e{word-spacing:-1.804200px;}
.wse5{word-spacing:-1.746000px;}
.wsee{word-spacing:-1.687800px;}
.ws68{word-spacing:-1.629600px;}
.wsf7{word-spacing:-1.571400px;}
.ws32{word-spacing:-1.513200px;}
.ws86{word-spacing:-1.455000px;}
.wsb4{word-spacing:-1.396800px;}
.wsf0{word-spacing:-1.338600px;}
.ws4b{word-spacing:-1.280400px;}
.wse7{word-spacing:-1.222200px;}
.ws85{word-spacing:-1.164000px;}
.wsda{word-spacing:-1.105800px;}
.ws9d{word-spacing:-1.047600px;}
.wsba{word-spacing:-0.989400px;}
.ws12{word-spacing:-0.931200px;}
.ws9{word-spacing:-0.888000px;}
.ws27{word-spacing:-0.873000px;}
.ws6a{word-spacing:-0.814800px;}
.ws80{word-spacing:-0.698400px;}
.ws7d{word-spacing:-0.640200px;}
.wsdf{word-spacing:-0.582000px;}
.ws7c{word-spacing:-0.523800px;}
.ws57{word-spacing:-0.465600px;}
.ws30{word-spacing:-0.407400px;}
.ws0{word-spacing:-0.388500px;}
.ws64{word-spacing:-0.349200px;}
.ws8{word-spacing:-0.333000px;}
.ws1{word-spacing:-0.309004px;}
.wsbb{word-spacing:-0.291000px;}
.ws69{word-spacing:-0.232800px;}
.ws49{word-spacing:-0.174600px;}
.ws3c{word-spacing:-0.116400px;}
.ws99{word-spacing:-0.058200px;}
.ws5{word-spacing:0.000000px;}
.ws6b{word-spacing:0.058200px;}
.ws20{word-spacing:0.116400px;}
.wsa6{word-spacing:0.174600px;}
.wsff{word-spacing:0.232800px;}
.ws77{word-spacing:0.291000px;}
.ws18{word-spacing:0.349200px;}
.wsb8{word-spacing:0.465600px;}
.wsb7{word-spacing:0.523800px;}
.ws61{word-spacing:0.582000px;}
.ws83{word-spacing:0.640200px;}
.ws102{word-spacing:0.698400px;}
.wse0{word-spacing:0.756600px;}
.ws94{word-spacing:0.814800px;}
.ws67{word-spacing:0.873000px;}
.ws4f{word-spacing:0.931200px;}
.ws106{word-spacing:0.989400px;}
.ws7b{word-spacing:1.047600px;}
.ws78{word-spacing:1.105800px;}
.ws31{word-spacing:1.164000px;}
.wsaa{word-spacing:1.222200px;}
.ws9f{word-spacing:1.280400px;}
.ws37{word-spacing:1.338600px;}
.ws6{word-spacing:1.350000px;}
.wsd{word-spacing:1.396800px;}
.wsb5{word-spacing:1.455000px;}
.wse{word-spacing:1.513200px;}
.ws29{word-spacing:1.571400px;}
.ws58{word-spacing:1.629600px;}
.ws7{word-spacing:1.650000px;}
.ws5f{word-spacing:1.687800px;}
.ws1b{word-spacing:1.746000px;}
.wsa8{word-spacing:1.804200px;}
.ws63{word-spacing:1.862400px;}
.ws47{word-spacing:1.920600px;}
.wsc9{word-spacing:1.978800px;}
.ws62{word-spacing:2.037000px;}
.ws48{word-spacing:2.095200px;}
.ws45{word-spacing:2.153400px;}
.ws70{word-spacing:2.211600px;}
.ws34{word-spacing:2.269800px;}
.ws7f{word-spacing:2.328000px;}
.ws1d{word-spacing:2.386200px;}
.ws52{word-spacing:2.444400px;}
.wsc5{word-spacing:2.502600px;}
.ws21{word-spacing:2.560800px;}
.ws14{word-spacing:2.619000px;}
.ws96{word-spacing:2.677200px;}
.ws5c{word-spacing:2.735400px;}
.wsde{word-spacing:2.793600px;}
.wse6{word-spacing:2.851800px;}
.ws4c{word-spacing:2.968200px;}
.wsf{word-spacing:3.026400px;}
.ws5a{word-spacing:3.142800px;}
.ws44{word-spacing:3.201000px;}
.ws81{word-spacing:3.259200px;}
.wse8{word-spacing:3.317400px;}
.ws3a{word-spacing:3.375600px;}
.ws65{word-spacing:3.433800px;}
.wsad{word-spacing:3.492000px;}
.ws88{word-spacing:3.550200px;}
.ws74{word-spacing:3.608400px;}
.ws89{word-spacing:3.666600px;}
.ws1a{word-spacing:3.724800px;}
.ws3d{word-spacing:3.783000px;}
.wsf3{word-spacing:3.841200px;}
.ws76{word-spacing:3.899400px;}
.ws93{word-spacing:3.957600px;}
.ws2e{word-spacing:4.015800px;}
.ws35{word-spacing:4.074000px;}
.ws91{word-spacing:4.132200px;}
.ws87{word-spacing:4.190400px;}
.wsbc{word-spacing:4.248600px;}
.wsf6{word-spacing:4.306800px;}
.ws95{word-spacing:4.365000px;}
.ws66{word-spacing:4.423200px;}
.ws17{word-spacing:4.539600px;}
.ws2d{word-spacing:4.597800px;}
.wsed{word-spacing:4.656000px;}
.ws24{word-spacing:4.714200px;}
.wsbd{word-spacing:4.772400px;}
.wsb3{word-spacing:4.888800px;}
.wsb9{word-spacing:4.947000px;}
.wse2{word-spacing:5.063400px;}
.ws4d{word-spacing:5.121600px;}
.wsf1{word-spacing:5.179800px;}
.ws104{word-spacing:5.238000px;}
.ws4a{word-spacing:5.296200px;}
.ws2a{word-spacing:5.354400px;}
.wsf9{word-spacing:5.412600px;}
.ws60{word-spacing:5.470800px;}
.ws9a{word-spacing:5.529000px;}
.ws3e{word-spacing:5.587200px;}
.ws5e{word-spacing:5.645400px;}
.ws4e{word-spacing:5.703600px;}
.wsfd{word-spacing:5.761800px;}
.ws5d{word-spacing:5.820000px;}
.wsa2{word-spacing:5.878200px;}
.ws1f{word-spacing:5.936400px;}
.ws19{word-spacing:5.994600px;}
.wsa3{word-spacing:6.052800px;}
.wsce{word-spacing:6.111000px;}
.ws8b{word-spacing:6.227400px;}
.ws79{word-spacing:6.285600px;}
.ws16{word-spacing:6.402000px;}
.ws8a{word-spacing:6.460200px;}
.wsb1{word-spacing:6.518400px;}
.wsb6{word-spacing:6.576600px;}
.ws2b{word-spacing:6.634800px;}
.wscf{word-spacing:6.693000px;}
.ws90{word-spacing:6.751200px;}
.ws56{word-spacing:6.809400px;}
.ws11{word-spacing:6.867600px;}
.ws3f{word-spacing:6.925800px;}
.wsaf{word-spacing:6.984000px;}
.wsef{word-spacing:7.042200px;}
.ws71{word-spacing:7.100400px;}
.ws10b{word-spacing:7.216800px;}
.ws2f{word-spacing:7.275000px;}
.ws43{word-spacing:7.391400px;}
.ws42{word-spacing:7.449600px;}
.wsa0{word-spacing:7.507800px;}
.ws7e{word-spacing:7.566000px;}
.wsa7{word-spacing:7.624200px;}
.wsc{word-spacing:7.740600px;}
.ws41{word-spacing:7.798800px;}
.ws84{word-spacing:7.857000px;}
.ws97{word-spacing:7.915200px;}
.ws36{word-spacing:7.973400px;}
.ws75{word-spacing:8.031600px;}
.wsd9{word-spacing:8.089800px;}
.wsa5{word-spacing:8.148000px;}
.ws109{word-spacing:8.264400px;}
.ws46{word-spacing:8.322600px;}
.wsb{word-spacing:8.380800px;}
.ws59{word-spacing:8.439000px;}
.wsac{word-spacing:8.497200px;}
.ws10{word-spacing:8.613600px;}
.wsfc{word-spacing:8.671800px;}
.wsdc{word-spacing:8.730000px;}
.ws101{word-spacing:8.904600px;}
.wsf2{word-spacing:9.021000px;}
.wsfa{word-spacing:9.137400px;}
.wsc7{word-spacing:9.253800px;}
.wsfb{word-spacing:9.312000px;}
.ws51{word-spacing:9.428400px;}
.ws50{word-spacing:9.486600px;}
.ws25{word-spacing:9.544800px;}
.ws8c{word-spacing:9.661200px;}
.wsd1{word-spacing:9.777600px;}
.wsae{word-spacing:9.835800px;}
.ws105{word-spacing:9.894000px;}
.ws8f{word-spacing:10.068600px;}
.ws10a{word-spacing:10.301400px;}
.ws39{word-spacing:10.359600px;}
.ws33{word-spacing:10.476000px;}
.ws6f{word-spacing:10.708800px;}
.ws98{word-spacing:10.767000px;}
.ws9b{word-spacing:10.825200px;}
.wsa4{word-spacing:11.523600px;}
.ws10c{word-spacing:11.581800px;}
.ws108{word-spacing:11.931000px;}
.wsa{word-spacing:12.047400px;}
.ws8e{word-spacing:12.222000px;}
.ws15{word-spacing:12.396600px;}
.wsc6{word-spacing:12.513000px;}
.ws72{word-spacing:12.745800px;}
.ws22{word-spacing:12.804000px;}
.ws6c{word-spacing:13.153200px;}
.wsd0{word-spacing:13.968000px;}
.wse4{word-spacing:14.375400px;}
.wsec{word-spacing:14.957400px;}
.ws40{word-spacing:15.073800px;}
.ws100{word-spacing:15.132000px;}
.wsb2{word-spacing:15.655800px;}
.ws3b{word-spacing:16.528800px;}
.ws26{word-spacing:16.936200px;}
.ws2c{word-spacing:16.994400px;}
.ws5b{word-spacing:18.042000px;}
.wse1{word-spacing:18.274800px;}
.wsd8{word-spacing:19.089600px;}
.wsfe{word-spacing:19.846200px;}
.ws8d{word-spacing:21.883200px;}
.ws10d{word-spacing:73.582800px;}
.wsf4{word-spacing:74.242800px;}
.ws13{word-spacing:75.562800px;}
.ws53{word-spacing:76.282800px;}
.wsbe{word-spacing:77.182800px;}
.ws7a{word-spacing:77.842800px;}
.wsd2{word-spacing:79.882800px;}
.ws103{word-spacing:80.542800px;}
.wsdd{word-spacing:80.602800px;}
.wsa1{word-spacing:84.142800px;}
.ws110{word-spacing:107.733600px;}
.wsf5{word-spacing:211.615800px;}
.wsc4{word-spacing:261.457800px;}
.wsca{word-spacing:296.208000px;}
.wsbf{word-spacing:301.728000px;}
.wscb{word-spacing:309.841200px;}
.wsc2{word-spacing:317.472000px;}
.wsc1{word-spacing:318.864600px;}
.wscc{word-spacing:319.344000px;}
.wsc3{word-spacing:321.648000px;}
.wscd{word-spacing:323.664600px;}
.wsc0{word-spacing:334.368000px;}
.wsd7{word-spacing:381.694800px;}
.wse9{word-spacing:409.819800px;}
.wsea{word-spacing:415.677000px;}
.wsd4{word-spacing:422.685000px;}
.wsd3{word-spacing:425.085000px;}
.wsd5{word-spacing:435.117000px;}
.wsd6{word-spacing:437.612400px;}
.wseb{word-spacing:442.988400px;}
._8{margin-left:-11.023200px;}
._5{margin-left:-6.194100px;}
._4{margin-left:-4.764000px;}
._2{margin-left:-2.944800px;}
._0{margin-left:-1.110000px;}
._3{width:1.560000px;}
._1{width:3.645000px;}
._6{width:5.084400px;}
._7{width:15.621600px;}
._3a{width:91.494000px;}
._32{width:228.502200px;}
._36{width:257.358600px;}
._38{width:259.854000px;}
._34{width:263.166000px;}
._a{width:278.566200px;}
._19{width:315.504600px;}
._12{width:333.408000px;}
._21{width:398.802600px;}
._23{width:430.508400px;}
._29{width:449.372400px;}
._35{width:600.810600px;}
._14{width:770.521800px;}
._22{width:855.393600px;}
._30{width:997.115400px;}
._18{width:1078.804200px;}
._11{width:1126.633800px;}
._37{width:1148.485200px;}
._28{width:1168.234200px;}
._13{width:1171.465800px;}
._33{width:1173.541200px;}
._24{width:1177.258200px;}
._2a{width:1189.450200px;}
._31{width:1192.954800px;}
._25{width:1201.744200px;}
._2d{width:1207.114800px;}
._20{width:1218.825000px;}
._17{width:1226.170200px;}
._26{width:1236.250200px;}
._2c{width:1252.570800px;}
._27{width:1262.170200px;}
._e{width:1264.639800px;}
._2e{width:1268.218800px;}
._2b{width:1284.443400px;}
._2f{width:1301.290800px;}
._15{width:1316.906400px;}
._1c{width:1326.506400px;}
._1a{width:1341.075600px;}
._39{width:1344.325200px;}
._9{width:1346.509800px;}
._1b{width:1352.403600px;}
._1f{width:1362.627600px;}
._16{width:1364.418600px;}
._10{width:1367.119800px;}
._f{width:1381.759800px;}
._d{width:1384.105200px;}
._b{width:1398.505800px;}
._c{width:1425.481800px;}
._1d{width:1431.747600px;}
._1e{width:1452.243600px;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:27.144000px;}
.fs5{font-size:33.756000px;}
.fsc{font-size:46.800000px;}
.fs7{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs2{font-size:55.500000px;}
.fs9{font-size:55.800000px;}
.fs4{font-size:58.200000px;}
.fs0{font-size:60.000000px;}
.fsa{font-size:69.000000px;}
.fs8{font-size:84.000000px;}
.fs6{font-size:90.407400px;}
.fs1{font-size:150.000000px;}
.fs3{font-size:309.003600px;}
.y0{bottom:0.000000px;}
.yf2{bottom:86.524050px;}
.ybb{bottom:87.493650px;}
.y1f{bottom:91.216500px;}
.yf1{bottom:100.174050px;}
.yba{bottom:101.143650px;}
.y94{bottom:105.359550px;}
.y86{bottom:107.993100px;}
.y1e{bottom:110.716500px;}
.yb9{bottom:114.793650px;}
.yf0{bottom:117.650850px;}
.y85{bottom:122.993100px;}
.y93{bottom:128.541750px;}
.y1d{bottom:130.216500px;}
.yef{bottom:131.300850px;}
.yb8{bottom:132.270450px;}
.y58{bottom:136.717800px;}
.y84{bottom:137.993100px;}
.yee{bottom:144.950850px;}
.y1c{bottom:149.716500px;}
.yb7{bottom:149.747250px;}
.y92{bottom:151.723800px;}
.y83{bottom:152.993100px;}
.y57{bottom:156.217800px;}
.yed{bottom:158.600850px;}
.yb6{bottom:163.397250px;}
.y82{bottom:167.993100px;}
.y1a{bottom:169.216500px;}
.y91{bottom:174.906000px;}
.y56{bottom:175.717800px;}
.yec{bottom:176.077650px;}
.yb5{bottom:177.047250px;}
.y1b{bottom:188.716500px;}
.yeb{bottom:189.727650px;}
.yb4{bottom:194.523900px;}
.y55{bottom:195.217800px;}
.y90{bottom:198.088200px;}
.yea{bottom:203.377650px;}
.yb3{bottom:208.174050px;}
.y45{bottom:208.216500px;}
.y54{bottom:214.717800px;}
.ye9{bottom:220.854450px;}
.y8f{bottom:221.270400px;}
.yb2{bottom:221.823900px;}
.y44{bottom:227.716500px;}
.y53{bottom:234.217800px;}
.ye8{bottom:234.504450px;}
.yb1{bottom:239.300700px;}
.y8e{bottom:244.452600px;}
.y43{bottom:247.216500px;}
.y6d{bottom:247.216650px;}
.ye7{bottom:251.981250px;}
.yb0{bottom:252.950700px;}
.y52{bottom:253.717800px;}
.y19{bottom:259.220850px;}
.y42{bottom:266.716500px;}
.y6c{bottom:266.716650px;}
.y8d{bottom:267.634800px;}
.ye6{bottom:269.457900px;}
.yaf{bottom:270.427500px;}
.y51{bottom:273.217800px;}
.y18{bottom:276.695850px;}
.ye5{bottom:283.107900px;}
.yae{bottom:284.077500px;}
.y41{bottom:286.216500px;}
.y6b{bottom:286.216650px;}
.y50{bottom:292.717800px;}
.y95{bottom:297.668100px;}
.ye4{bottom:300.584700px;}
.yad{bottom:301.554300px;}
.y40{bottom:305.716500px;}
.y6a{bottom:305.716650px;}
.y4f{bottom:312.217800px;}
.ye3{bottom:314.234700px;}
.yac{bottom:315.204300px;}
.y17{bottom:315.430650px;}
.y3f{bottom:325.216500px;}
.y69{bottom:325.216650px;}
.yab{bottom:328.854300px;}
.ye2{bottom:331.711500px;}
.y4e{bottom:331.717800px;}
.y16{bottom:332.905800px;}
.y3e{bottom:344.716500px;}
.y68{bottom:344.716650px;}
.ye1{bottom:345.361500px;}
.yaa{bottom:346.331100px;}
.y15{bottom:350.380800px;}
.y4d{bottom:351.217800px;}
.ye0{bottom:359.011500px;}
.ya9{bottom:363.807750px;}
.y3d{bottom:364.216500px;}
.y67{bottom:364.216650px;}
.y14{bottom:367.855800px;}
.y4c{bottom:370.717800px;}
.ydf{bottom:376.488300px;}
.ya8{bottom:377.457750px;}
.y3c{bottom:383.716500px;}
.y66{bottom:383.716650px;}
.y13{bottom:385.330650px;}
.y4b{bottom:390.217800px;}
.yde{bottom:393.965100px;}
.y12{bottom:402.805800px;}
.y3b{bottom:403.216500px;}
.ya7{bottom:403.261350px;}
.ydd{bottom:407.615100px;}
.y9a{bottom:408.622800px;}
.y4a{bottom:409.717800px;}
.y11{bottom:420.280650px;}
.y106{bottom:421.265100px;}
.y3a{bottom:422.716500px;}
.ydc{bottom:425.091900px;}
.y49{bottom:429.217800px;}
.y99{bottom:432.622800px;}
.y105{bottom:434.915100px;}
.y10{bottom:437.755800px;}
.y39{bottom:442.216500px;}
.ydb{bottom:442.568550px;}
.y104{bottom:448.565100px;}
.y48{bottom:448.717800px;}
.yf{bottom:455.230800px;}
.ya6{bottom:455.691750px;}
.yda{bottom:456.218550px;}
.y98{bottom:456.620850px;}
.y38{bottom:461.716500px;}
.y103{bottom:466.041750px;}
.ye{bottom:472.705650px;}
.ya5{bottom:473.168400px;}
.yd9{bottom:473.695350px;}
.y102{bottom:479.691900px;}
.y97{bottom:480.620850px;}
.y37{bottom:481.216500px;}
.yd{bottom:490.180800px;}
.ya4{bottom:490.645200px;}
.yd8{bottom:491.172150px;}
.y101{bottom:497.168550px;}
.y36{bottom:500.716500px;}
.y96{bottom:504.022350px;}
.yd7{bottom:504.822150px;}
.yc{bottom:507.655650px;}
.ya3{bottom:508.122000px;}
.y100{bottom:510.818550px;}
.y64{bottom:511.093350px;}
.y80{bottom:517.717800px;}
.yd6{bottom:518.472150px;}
.y47{bottom:520.216500px;}
.yb{bottom:525.130800px;}
.ya2{bottom:525.598800px;}
.yff{bottom:528.295350px;}
.y9b{bottom:533.578800px;}
.y63{bottom:535.093350px;}
.yd5{bottom:535.948950px;}
.y35{bottom:539.716500px;}
.y7f{bottom:540.900000px;}
.yfe{bottom:541.945350px;}
.ya{bottom:542.605800px;}
.ya1{bottom:543.075600px;}
.yd4{bottom:549.598950px;}
.yfd{bottom:555.595350px;}
.y62{bottom:559.093350px;}
.y34{bottom:559.216500px;}
.y9{bottom:560.080650px;}
.ya0{bottom:560.552250px;}
.yd3{bottom:563.248950px;}
.y7e{bottom:564.082050px;}
.yfc{bottom:573.072150px;}
.y8{bottom:577.555800px;}
.y33{bottom:578.716500px;}
.yd2{bottom:580.725750px;}
.y61{bottom:583.093350px;}
.y9f{bottom:586.355850px;}
.y8c{bottom:586.450500px;}
.y7d{bottom:587.264250px;}
.yfb{bottom:590.548950px;}
.yd1{bottom:594.375750px;}
.y7{bottom:595.030800px;}
.y46{bottom:598.216500px;}
.y8b{bottom:601.450500px;}
.yfa{bottom:604.198950px;}
.y60{bottom:607.093350px;}
.y7c{bottom:610.446450px;}
.yd0{bottom:611.852400px;}
.y6{bottom:612.505800px;}
.y8a{bottom:616.450500px;}
.y32{bottom:617.716500px;}
.yf9{bottom:617.848950px;}
.ycf{bottom:625.502400px;}
.y5{bottom:629.980800px;}
.y5f{bottom:631.093350px;}
.y89{bottom:631.450500px;}
.y7b{bottom:633.628650px;}
.yf8{bottom:635.325750px;}
.y31{bottom:637.216500px;}
.y9e{bottom:638.786250px;}
.yce{bottom:639.152400px;}
.y88{bottom:646.450500px;}
.y4{bottom:647.455650px;}
.yf7{bottom:648.975750px;}
.y9d{bottom:652.436250px;}
.y5e{bottom:655.093350px;}
.ycd{bottom:656.629200px;}
.y30{bottom:656.716500px;}
.y7a{bottom:656.810850px;}
.y87{bottom:661.450500px;}
.yf6{bottom:666.452400px;}
.y77{bottom:670.082700px;}
.ycc{bottom:670.279200px;}
.y2f{bottom:676.216500px;}
.y9c{bottom:678.239700px;}
.y5d{bottom:679.093350px;}
.y79{bottom:679.992900px;}
.yf5{bottom:683.929200px;}
.ycb{bottom:687.756000px;}
.y3{bottom:690.442500px;}
.y76{bottom:694.082700px;}
.y2e{bottom:695.716500px;}
.yca{bottom:701.406000px;}
.y5c{bottom:703.093350px;}
.y81{bottom:710.026500px;}
.yf4{bottom:715.056000px;}
.y2d{bottom:715.216500px;}
.y75{bottom:718.082700px;}
.yc9{bottom:718.882800px;}
.y5b{bottom:727.093350px;}
.y2{bottom:727.942500px;}
.yc8{bottom:732.532800px;}
.y2c{bottom:734.716500px;}
.y74{bottom:742.082700px;}
.yc7{bottom:746.182800px;}
.y5a{bottom:751.093350px;}
.y2b{bottom:754.216500px;}
.yc6{bottom:763.659600px;}
.y73{bottom:766.082700px;}
.y2a{bottom:773.716500px;}
.y59{bottom:775.093350px;}
.yc5{bottom:777.309600px;}
.y72{bottom:790.082700px;}
.yf3{bottom:790.959600px;}
.y29{bottom:793.216500px;}
.yc4{bottom:794.786250px;}
.y65{bottom:805.346100px;}
.yc3{bottom:808.436250px;}
.y28{bottom:812.716500px;}
.y71{bottom:814.082700px;}
.yc2{bottom:822.086400px;}
.y27{bottom:832.216500px;}
.y70{bottom:838.082700px;}
.yc1{bottom:839.563050px;}
.y26{bottom:851.716500px;}
.yc0{bottom:853.213050px;}
.y6f{bottom:862.082700px;}
.ybf{bottom:870.689850px;}
.y25{bottom:871.216500px;}
.ybe{bottom:884.339850px;}
.y6e{bottom:886.082700px;}
.y24{bottom:890.716500px;}
.ybd{bottom:901.816650px;}
.y23{bottom:910.216500px;}
.ybc{bottom:915.466650px;}
.y78{bottom:916.335450px;}
.y20{bottom:942.925800px;}
.y21{bottom:983.818350px;}
.y22{bottom:983.865900px;}
.y1{bottom:984.053850px;}
.h11{height:33.321600px;}
.hf{height:33.504000px;}
.h10{height:34.176000px;}
.he{height:36.312000px;}
.h12{height:37.440000px;}
.h9{height:38.400000px;}
.h4{height:38.739000px;}
.h5{height:39.516000px;}
.hb{height:40.064400px;}
.hd{height:41.787600px;}
.h2{height:42.720000px;}
.h7{height:46.560000px;}
.hc{height:49.128000px;}
.h8{height:63.104365px;}
.ha{height:67.200000px;}
.h3{height:106.800000px;}
.h6{height:202.560000px;}
.h1{height:1050.000000px;}
.h0{height:1050.235500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:48.047250px;}
.x7{left:78.661500px;}
.xe{left:86.614950px;}
.x12{left:88.315800px;}
.x8{left:95.669250px;}
.x9{left:99.921300px;}
.x18{left:108.425250px;}
.x10{left:128.622000px;}
.x11{left:137.425950px;}
.x2{left:140.314950px;}
.x16{left:141.715800px;}
.xf{left:145.629900px;}
.x15{left:150.519600px;}
.x5{left:155.515800px;}
.xa{left:157.322850px;}
.x17{left:161.574750px;}
.x19{left:170.078700px;}
.x4{left:174.531300px;}
.x3{left:182.834700px;}
.x13{left:330.740550px;}
.x14{left:463.464600px;}
.xb{left:653.010150px;}
.x1{left:654.120300px;}
.xd{left:655.305450px;}
.xc{left:656.805300px;}
@media print{
.v3{vertical-align:-13.728000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.072000pt;}
.v1{vertical-align:138.666667pt;}
.ls3{letter-spacing:-4.000000pt;}
.ls2{letter-spacing:-3.733333pt;}
.ls5{letter-spacing:-0.723259pt;}
.ls6{letter-spacing:-0.155200pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000192pt;}
.ls0{letter-spacing:0.296000pt;}
.ls4{letter-spacing:0.789333pt;}
.ws4{word-spacing:-18.965463pt;}
.wsf8{word-spacing:-15.394667pt;}
.ws54{word-spacing:-12.519467pt;}
.ws2{word-spacing:-11.588267pt;}
.ws10f{word-spacing:-10.067200pt;}
.ws10e{word-spacing:-9.318400pt;}
.ws3{word-spacing:-7.261291pt;}
.ws23{word-spacing:-3.104000pt;}
.ws9c{word-spacing:-2.948800pt;}
.ws82{word-spacing:-2.741867pt;}
.ws55{word-spacing:-2.638400pt;}
.wsc8{word-spacing:-2.586667pt;}
.ws1e{word-spacing:-2.483200pt;}
.ws6e{word-spacing:-2.431467pt;}
.wsb0{word-spacing:-2.379733pt;}
.ws107{word-spacing:-2.328000pt;}
.ws73{word-spacing:-2.276267pt;}
.ws38{word-spacing:-2.224533pt;}
.wsdb{word-spacing:-2.172800pt;}
.ws6d{word-spacing:-2.121067pt;}
.wsab{word-spacing:-2.069333pt;}
.ws1c{word-spacing:-2.017600pt;}
.wse3{word-spacing:-1.914133pt;}
.ws28{word-spacing:-1.862400pt;}
.wsa9{word-spacing:-1.810667pt;}
.ws92{word-spacing:-1.707200pt;}
.ws9e{word-spacing:-1.603733pt;}
.wse5{word-spacing:-1.552000pt;}
.wsee{word-spacing:-1.500267pt;}
.ws68{word-spacing:-1.448533pt;}
.wsf7{word-spacing:-1.396800pt;}
.ws32{word-spacing:-1.345067pt;}
.ws86{word-spacing:-1.293333pt;}
.wsb4{word-spacing:-1.241600pt;}
.wsf0{word-spacing:-1.189867pt;}
.ws4b{word-spacing:-1.138133pt;}
.wse7{word-spacing:-1.086400pt;}
.ws85{word-spacing:-1.034667pt;}
.wsda{word-spacing:-0.982933pt;}
.ws9d{word-spacing:-0.931200pt;}
.wsba{word-spacing:-0.879467pt;}
.ws12{word-spacing:-0.827733pt;}
.ws9{word-spacing:-0.789333pt;}
.ws27{word-spacing:-0.776000pt;}
.ws6a{word-spacing:-0.724267pt;}
.ws80{word-spacing:-0.620800pt;}
.ws7d{word-spacing:-0.569067pt;}
.wsdf{word-spacing:-0.517333pt;}
.ws7c{word-spacing:-0.465600pt;}
.ws57{word-spacing:-0.413867pt;}
.ws30{word-spacing:-0.362133pt;}
.ws0{word-spacing:-0.345333pt;}
.ws64{word-spacing:-0.310400pt;}
.ws8{word-spacing:-0.296000pt;}
.ws1{word-spacing:-0.274670pt;}
.wsbb{word-spacing:-0.258667pt;}
.ws69{word-spacing:-0.206933pt;}
.ws49{word-spacing:-0.155200pt;}
.ws3c{word-spacing:-0.103467pt;}
.ws99{word-spacing:-0.051733pt;}
.ws5{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.051733pt;}
.ws20{word-spacing:0.103467pt;}
.wsa6{word-spacing:0.155200pt;}
.wsff{word-spacing:0.206933pt;}
.ws77{word-spacing:0.258667pt;}
.ws18{word-spacing:0.310400pt;}
.wsb8{word-spacing:0.413867pt;}
.wsb7{word-spacing:0.465600pt;}
.ws61{word-spacing:0.517333pt;}
.ws83{word-spacing:0.569067pt;}
.ws102{word-spacing:0.620800pt;}
.wse0{word-spacing:0.672533pt;}
.ws94{word-spacing:0.724267pt;}
.ws67{word-spacing:0.776000pt;}
.ws4f{word-spacing:0.827733pt;}
.ws106{word-spacing:0.879467pt;}
.ws7b{word-spacing:0.931200pt;}
.ws78{word-spacing:0.982933pt;}
.ws31{word-spacing:1.034667pt;}
.wsaa{word-spacing:1.086400pt;}
.ws9f{word-spacing:1.138133pt;}
.ws37{word-spacing:1.189867pt;}
.ws6{word-spacing:1.200000pt;}
.wsd{word-spacing:1.241600pt;}
.wsb5{word-spacing:1.293333pt;}
.wse{word-spacing:1.345067pt;}
.ws29{word-spacing:1.396800pt;}
.ws58{word-spacing:1.448533pt;}
.ws7{word-spacing:1.466667pt;}
.ws5f{word-spacing:1.500267pt;}
.ws1b{word-spacing:1.552000pt;}
.wsa8{word-spacing:1.603733pt;}
.ws63{word-spacing:1.655467pt;}
.ws47{word-spacing:1.707200pt;}
.wsc9{word-spacing:1.758933pt;}
.ws62{word-spacing:1.810667pt;}
.ws48{word-spacing:1.862400pt;}
.ws45{word-spacing:1.914133pt;}
.ws70{word-spacing:1.965867pt;}
.ws34{word-spacing:2.017600pt;}
.ws7f{word-spacing:2.069333pt;}
.ws1d{word-spacing:2.121067pt;}
.ws52{word-spacing:2.172800pt;}
.wsc5{word-spacing:2.224533pt;}
.ws21{word-spacing:2.276267pt;}
.ws14{word-spacing:2.328000pt;}
.ws96{word-spacing:2.379733pt;}
.ws5c{word-spacing:2.431467pt;}
.wsde{word-spacing:2.483200pt;}
.wse6{word-spacing:2.534933pt;}
.ws4c{word-spacing:2.638400pt;}
.wsf{word-spacing:2.690133pt;}
.ws5a{word-spacing:2.793600pt;}
.ws44{word-spacing:2.845333pt;}
.ws81{word-spacing:2.897067pt;}
.wse8{word-spacing:2.948800pt;}
.ws3a{word-spacing:3.000533pt;}
.ws65{word-spacing:3.052267pt;}
.wsad{word-spacing:3.104000pt;}
.ws88{word-spacing:3.155733pt;}
.ws74{word-spacing:3.207467pt;}
.ws89{word-spacing:3.259200pt;}
.ws1a{word-spacing:3.310933pt;}
.ws3d{word-spacing:3.362667pt;}
.wsf3{word-spacing:3.414400pt;}
.ws76{word-spacing:3.466133pt;}
.ws93{word-spacing:3.517867pt;}
.ws2e{word-spacing:3.569600pt;}
.ws35{word-spacing:3.621333pt;}
.ws91{word-spacing:3.673067pt;}
.ws87{word-spacing:3.724800pt;}
.wsbc{word-spacing:3.776533pt;}
.wsf6{word-spacing:3.828267pt;}
.ws95{word-spacing:3.880000pt;}
.ws66{word-spacing:3.931733pt;}
.ws17{word-spacing:4.035200pt;}
.ws2d{word-spacing:4.086933pt;}
.wsed{word-spacing:4.138667pt;}
.ws24{word-spacing:4.190400pt;}
.wsbd{word-spacing:4.242133pt;}
.wsb3{word-spacing:4.345600pt;}
.wsb9{word-spacing:4.397333pt;}
.wse2{word-spacing:4.500800pt;}
.ws4d{word-spacing:4.552533pt;}
.wsf1{word-spacing:4.604267pt;}
.ws104{word-spacing:4.656000pt;}
.ws4a{word-spacing:4.707733pt;}
.ws2a{word-spacing:4.759467pt;}
.wsf9{word-spacing:4.811200pt;}
.ws60{word-spacing:4.862933pt;}
.ws9a{word-spacing:4.914667pt;}
.ws3e{word-spacing:4.966400pt;}
.ws5e{word-spacing:5.018133pt;}
.ws4e{word-spacing:5.069867pt;}
.wsfd{word-spacing:5.121600pt;}
.ws5d{word-spacing:5.173333pt;}
.wsa2{word-spacing:5.225067pt;}
.ws1f{word-spacing:5.276800pt;}
.ws19{word-spacing:5.328533pt;}
.wsa3{word-spacing:5.380267pt;}
.wsce{word-spacing:5.432000pt;}
.ws8b{word-spacing:5.535467pt;}
.ws79{word-spacing:5.587200pt;}
.ws16{word-spacing:5.690667pt;}
.ws8a{word-spacing:5.742400pt;}
.wsb1{word-spacing:5.794133pt;}
.wsb6{word-spacing:5.845867pt;}
.ws2b{word-spacing:5.897600pt;}
.wscf{word-spacing:5.949333pt;}
.ws90{word-spacing:6.001067pt;}
.ws56{word-spacing:6.052800pt;}
.ws11{word-spacing:6.104533pt;}
.ws3f{word-spacing:6.156267pt;}
.wsaf{word-spacing:6.208000pt;}
.wsef{word-spacing:6.259733pt;}
.ws71{word-spacing:6.311467pt;}
.ws10b{word-spacing:6.414933pt;}
.ws2f{word-spacing:6.466667pt;}
.ws43{word-spacing:6.570133pt;}
.ws42{word-spacing:6.621867pt;}
.wsa0{word-spacing:6.673600pt;}
.ws7e{word-spacing:6.725333pt;}
.wsa7{word-spacing:6.777067pt;}
.wsc{word-spacing:6.880533pt;}
.ws41{word-spacing:6.932267pt;}
.ws84{word-spacing:6.984000pt;}
.ws97{word-spacing:7.035733pt;}
.ws36{word-spacing:7.087467pt;}
.ws75{word-spacing:7.139200pt;}
.wsd9{word-spacing:7.190933pt;}
.wsa5{word-spacing:7.242667pt;}
.ws109{word-spacing:7.346133pt;}
.ws46{word-spacing:7.397867pt;}
.wsb{word-spacing:7.449600pt;}
.ws59{word-spacing:7.501333pt;}
.wsac{word-spacing:7.553067pt;}
.ws10{word-spacing:7.656533pt;}
.wsfc{word-spacing:7.708267pt;}
.wsdc{word-spacing:7.760000pt;}
.ws101{word-spacing:7.915200pt;}
.wsf2{word-spacing:8.018667pt;}
.wsfa{word-spacing:8.122133pt;}
.wsc7{word-spacing:8.225600pt;}
.wsfb{word-spacing:8.277333pt;}
.ws51{word-spacing:8.380800pt;}
.ws50{word-spacing:8.432533pt;}
.ws25{word-spacing:8.484267pt;}
.ws8c{word-spacing:8.587733pt;}
.wsd1{word-spacing:8.691200pt;}
.wsae{word-spacing:8.742933pt;}
.ws105{word-spacing:8.794667pt;}
.ws8f{word-spacing:8.949867pt;}
.ws10a{word-spacing:9.156800pt;}
.ws39{word-spacing:9.208533pt;}
.ws33{word-spacing:9.312000pt;}
.ws6f{word-spacing:9.518933pt;}
.ws98{word-spacing:9.570667pt;}
.ws9b{word-spacing:9.622400pt;}
.wsa4{word-spacing:10.243200pt;}
.ws10c{word-spacing:10.294933pt;}
.ws108{word-spacing:10.605333pt;}
.wsa{word-spacing:10.708800pt;}
.ws8e{word-spacing:10.864000pt;}
.ws15{word-spacing:11.019200pt;}
.wsc6{word-spacing:11.122667pt;}
.ws72{word-spacing:11.329600pt;}
.ws22{word-spacing:11.381333pt;}
.ws6c{word-spacing:11.691733pt;}
.wsd0{word-spacing:12.416000pt;}
.wse4{word-spacing:12.778133pt;}
.wsec{word-spacing:13.295467pt;}
.ws40{word-spacing:13.398933pt;}
.ws100{word-spacing:13.450667pt;}
.wsb2{word-spacing:13.916267pt;}
.ws3b{word-spacing:14.692267pt;}
.ws26{word-spacing:15.054400pt;}
.ws2c{word-spacing:15.106133pt;}
.ws5b{word-spacing:16.037333pt;}
.wse1{word-spacing:16.244267pt;}
.wsd8{word-spacing:16.968533pt;}
.wsfe{word-spacing:17.641067pt;}
.ws8d{word-spacing:19.451733pt;}
.ws10d{word-spacing:65.406933pt;}
.wsf4{word-spacing:65.993600pt;}
.ws13{word-spacing:67.166933pt;}
.ws53{word-spacing:67.806933pt;}
.wsbe{word-spacing:68.606933pt;}
.ws7a{word-spacing:69.193600pt;}
.wsd2{word-spacing:71.006933pt;}
.ws103{word-spacing:71.593600pt;}
.wsdd{word-spacing:71.646933pt;}
.wsa1{word-spacing:74.793600pt;}
.ws110{word-spacing:95.763200pt;}
.wsf5{word-spacing:188.102933pt;}
.wsc4{word-spacing:232.406933pt;}
.wsca{word-spacing:263.296000pt;}
.wsbf{word-spacing:268.202667pt;}
.wscb{word-spacing:275.414400pt;}
.wsc2{word-spacing:282.197333pt;}
.wsc1{word-spacing:283.435200pt;}
.wscc{word-spacing:283.861333pt;}
.wsc3{word-spacing:285.909333pt;}
.wscd{word-spacing:287.701867pt;}
.wsc0{word-spacing:297.216000pt;}
.wsd7{word-spacing:339.284267pt;}
.wse9{word-spacing:364.284267pt;}
.wsea{word-spacing:369.490667pt;}
.wsd4{word-spacing:375.720000pt;}
.wsd3{word-spacing:377.853333pt;}
.wsd5{word-spacing:386.770667pt;}
.wsd6{word-spacing:388.988800pt;}
.wseb{word-spacing:393.767467pt;}
._8{margin-left:-9.798400pt;}
._5{margin-left:-5.505867pt;}
._4{margin-left:-4.234667pt;}
._2{margin-left:-2.617600pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.386667pt;}
._1{width:3.240000pt;}
._6{width:4.519467pt;}
._7{width:13.885867pt;}
._3a{width:81.328000pt;}
._32{width:203.113067pt;}
._36{width:228.763200pt;}
._38{width:230.981333pt;}
._34{width:233.925333pt;}
._a{width:247.614400pt;}
._19{width:280.448533pt;}
._12{width:296.362667pt;}
._21{width:354.491200pt;}
._23{width:382.674133pt;}
._29{width:399.442133pt;}
._35{width:534.053867pt;}
._14{width:684.908267pt;}
._22{width:760.349867pt;}
._30{width:886.324800pt;}
._18{width:958.937067pt;}
._11{width:1001.452267pt;}
._37{width:1020.875733pt;}
._28{width:1038.430400pt;}
._13{width:1041.302933pt;}
._33{width:1043.147733pt;}
._24{width:1046.451733pt;}
._2a{width:1057.289067pt;}
._31{width:1060.404267pt;}
._25{width:1068.217067pt;}
._2d{width:1072.990933pt;}
._20{width:1083.400000pt;}
._17{width:1089.929067pt;}
._26{width:1098.889067pt;}
._2c{width:1113.396267pt;}
._27{width:1121.929067pt;}
._e{width:1124.124267pt;}
._2e{width:1127.305600pt;}
._2b{width:1141.727467pt;}
._2f{width:1156.702933pt;}
._15{width:1170.583467pt;}
._1c{width:1179.116800pt;}
._1a{width:1192.067200pt;}
._39{width:1194.955733pt;}
._9{width:1196.897600pt;}
._1b{width:1202.136533pt;}
._1f{width:1211.224533pt;}
._16{width:1212.816533pt;}
._10{width:1215.217600pt;}
._f{width:1228.230933pt;}
._d{width:1230.315733pt;}
._b{width:1243.116267pt;}
._c{width:1267.094933pt;}
._1d{width:1272.664533pt;}
._1e{width:1290.883200pt;}
.fsd{font-size:24.128000pt;}
.fs5{font-size:30.005333pt;}
.fsc{font-size:41.600000pt;}
.fs7{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs2{font-size:49.333333pt;}
.fs9{font-size:49.600000pt;}
.fs4{font-size:51.733333pt;}
.fs0{font-size:53.333333pt;}
.fsa{font-size:61.333333pt;}
.fs8{font-size:74.666667pt;}
.fs6{font-size:80.362133pt;}
.fs1{font-size:133.333333pt;}
.fs3{font-size:274.669867pt;}
.y0{bottom:0.000000pt;}
.yf2{bottom:76.910267pt;}
.ybb{bottom:77.772133pt;}
.y1f{bottom:81.081333pt;}
.yf1{bottom:89.043600pt;}
.yba{bottom:89.905467pt;}
.y94{bottom:93.652933pt;}
.y86{bottom:95.993867pt;}
.y1e{bottom:98.414667pt;}
.yb9{bottom:102.038800pt;}
.yf0{bottom:104.578533pt;}
.y85{bottom:109.327200pt;}
.y93{bottom:114.259333pt;}
.y1d{bottom:115.748000pt;}
.yef{bottom:116.711867pt;}
.yb8{bottom:117.573733pt;}
.y58{bottom:121.526933pt;}
.y84{bottom:122.660533pt;}
.yee{bottom:128.845200pt;}
.y1c{bottom:133.081333pt;}
.yb7{bottom:133.108667pt;}
.y92{bottom:134.865600pt;}
.y83{bottom:135.993867pt;}
.y57{bottom:138.860267pt;}
.yed{bottom:140.978533pt;}
.yb6{bottom:145.242000pt;}
.y82{bottom:149.327200pt;}
.y1a{bottom:150.414667pt;}
.y91{bottom:155.472000pt;}
.y56{bottom:156.193600pt;}
.yec{bottom:156.513467pt;}
.yb5{bottom:157.375333pt;}
.y1b{bottom:167.748000pt;}
.yeb{bottom:168.646800pt;}
.yb4{bottom:172.910133pt;}
.y55{bottom:173.526933pt;}
.y90{bottom:176.078400pt;}
.yea{bottom:180.780133pt;}
.yb3{bottom:185.043600pt;}
.y45{bottom:185.081333pt;}
.y54{bottom:190.860267pt;}
.ye9{bottom:196.315067pt;}
.y8f{bottom:196.684800pt;}
.yb2{bottom:197.176800pt;}
.y44{bottom:202.414667pt;}
.y53{bottom:208.193600pt;}
.ye8{bottom:208.448400pt;}
.yb1{bottom:212.711733pt;}
.y8e{bottom:217.291200pt;}
.y43{bottom:219.748000pt;}
.y6d{bottom:219.748133pt;}
.ye7{bottom:223.983333pt;}
.yb0{bottom:224.845067pt;}
.y52{bottom:225.526933pt;}
.y19{bottom:230.418533pt;}
.y42{bottom:237.081333pt;}
.y6c{bottom:237.081467pt;}
.y8d{bottom:237.897600pt;}
.ye6{bottom:239.518133pt;}
.yaf{bottom:240.380000pt;}
.y51{bottom:242.860267pt;}
.y18{bottom:245.951867pt;}
.ye5{bottom:251.651467pt;}
.yae{bottom:252.513333pt;}
.y41{bottom:254.414667pt;}
.y6b{bottom:254.414800pt;}
.y50{bottom:260.193600pt;}
.y95{bottom:264.593867pt;}
.ye4{bottom:267.186400pt;}
.yad{bottom:268.048267pt;}
.y40{bottom:271.748000pt;}
.y6a{bottom:271.748133pt;}
.y4f{bottom:277.526933pt;}
.ye3{bottom:279.319733pt;}
.yac{bottom:280.181600pt;}
.y17{bottom:280.382800pt;}
.y3f{bottom:289.081333pt;}
.y69{bottom:289.081467pt;}
.yab{bottom:292.314933pt;}
.ye2{bottom:294.854667pt;}
.y4e{bottom:294.860267pt;}
.y16{bottom:295.916267pt;}
.y3e{bottom:306.414667pt;}
.y68{bottom:306.414800pt;}
.ye1{bottom:306.988000pt;}
.yaa{bottom:307.849867pt;}
.y15{bottom:311.449600pt;}
.y4d{bottom:312.193600pt;}
.ye0{bottom:319.121333pt;}
.ya9{bottom:323.384667pt;}
.y3d{bottom:323.748000pt;}
.y67{bottom:323.748133pt;}
.y14{bottom:326.982933pt;}
.y4c{bottom:329.526933pt;}
.ydf{bottom:334.656267pt;}
.ya8{bottom:335.518000pt;}
.y3c{bottom:341.081333pt;}
.y66{bottom:341.081467pt;}
.y13{bottom:342.516133pt;}
.y4b{bottom:346.860267pt;}
.yde{bottom:350.191200pt;}
.y12{bottom:358.049600pt;}
.y3b{bottom:358.414667pt;}
.ya7{bottom:358.454533pt;}
.ydd{bottom:362.324533pt;}
.y9a{bottom:363.220267pt;}
.y4a{bottom:364.193600pt;}
.y11{bottom:373.582800pt;}
.y106{bottom:374.457867pt;}
.y3a{bottom:375.748000pt;}
.ydc{bottom:377.859467pt;}
.y49{bottom:381.526933pt;}
.y99{bottom:384.553600pt;}
.y105{bottom:386.591200pt;}
.y10{bottom:389.116267pt;}
.y39{bottom:393.081333pt;}
.ydb{bottom:393.394267pt;}
.y104{bottom:398.724533pt;}
.y48{bottom:398.860267pt;}
.yf{bottom:404.649600pt;}
.ya6{bottom:405.059333pt;}
.yda{bottom:405.527600pt;}
.y98{bottom:405.885200pt;}
.y38{bottom:410.414667pt;}
.y103{bottom:414.259333pt;}
.ye{bottom:420.182800pt;}
.ya5{bottom:420.594133pt;}
.yd9{bottom:421.062533pt;}
.y102{bottom:426.392800pt;}
.y97{bottom:427.218533pt;}
.y37{bottom:427.748000pt;}
.yd{bottom:435.716267pt;}
.ya4{bottom:436.129067pt;}
.yd8{bottom:436.597467pt;}
.y101{bottom:441.927600pt;}
.y36{bottom:445.081333pt;}
.y96{bottom:448.019867pt;}
.yd7{bottom:448.730800pt;}
.yc{bottom:451.249467pt;}
.ya3{bottom:451.664000pt;}
.y100{bottom:454.060933pt;}
.y64{bottom:454.305200pt;}
.y80{bottom:460.193600pt;}
.yd6{bottom:460.864133pt;}
.y47{bottom:462.414667pt;}
.yb{bottom:466.782933pt;}
.ya2{bottom:467.198933pt;}
.yff{bottom:469.595867pt;}
.y9b{bottom:474.292267pt;}
.y63{bottom:475.638533pt;}
.yd5{bottom:476.399067pt;}
.y35{bottom:479.748000pt;}
.y7f{bottom:480.800000pt;}
.yfe{bottom:481.729200pt;}
.ya{bottom:482.316267pt;}
.ya1{bottom:482.733867pt;}
.yd4{bottom:488.532400pt;}
.yfd{bottom:493.862533pt;}
.y62{bottom:496.971867pt;}
.y34{bottom:497.081333pt;}
.y9{bottom:497.849467pt;}
.ya0{bottom:498.268667pt;}
.yd3{bottom:500.665733pt;}
.y7e{bottom:501.406267pt;}
.yfc{bottom:509.397467pt;}
.y8{bottom:513.382933pt;}
.y33{bottom:514.414667pt;}
.yd2{bottom:516.200667pt;}
.y61{bottom:518.305200pt;}
.y9f{bottom:521.205200pt;}
.y8c{bottom:521.289333pt;}
.y7d{bottom:522.012667pt;}
.yfb{bottom:524.932400pt;}
.yd1{bottom:528.334000pt;}
.y7{bottom:528.916267pt;}
.y46{bottom:531.748000pt;}
.y8b{bottom:534.622667pt;}
.yfa{bottom:537.065733pt;}
.y60{bottom:539.638533pt;}
.y7c{bottom:542.619067pt;}
.yd0{bottom:543.868800pt;}
.y6{bottom:544.449600pt;}
.y8a{bottom:547.956000pt;}
.y32{bottom:549.081333pt;}
.yf9{bottom:549.199067pt;}
.ycf{bottom:556.002133pt;}
.y5{bottom:559.982933pt;}
.y5f{bottom:560.971867pt;}
.y89{bottom:561.289333pt;}
.y7b{bottom:563.225467pt;}
.yf8{bottom:564.734000pt;}
.y31{bottom:566.414667pt;}
.y9e{bottom:567.810000pt;}
.yce{bottom:568.135467pt;}
.y88{bottom:574.622667pt;}
.y4{bottom:575.516133pt;}
.yf7{bottom:576.867333pt;}
.y9d{bottom:579.943333pt;}
.y5e{bottom:582.305200pt;}
.ycd{bottom:583.670400pt;}
.y30{bottom:583.748000pt;}
.y7a{bottom:583.831867pt;}
.y87{bottom:587.956000pt;}
.yf6{bottom:592.402133pt;}
.y77{bottom:595.629067pt;}
.ycc{bottom:595.803733pt;}
.y2f{bottom:601.081333pt;}
.y9c{bottom:602.879733pt;}
.y5d{bottom:603.638533pt;}
.y79{bottom:604.438133pt;}
.yf5{bottom:607.937067pt;}
.ycb{bottom:611.338667pt;}
.y3{bottom:613.726667pt;}
.y76{bottom:616.962400pt;}
.y2e{bottom:618.414667pt;}
.yca{bottom:623.472000pt;}
.y5c{bottom:624.971867pt;}
.y81{bottom:631.134667pt;}
.yf4{bottom:635.605333pt;}
.y2d{bottom:635.748000pt;}
.y75{bottom:638.295733pt;}
.yc9{bottom:639.006933pt;}
.y5b{bottom:646.305200pt;}
.y2{bottom:647.060000pt;}
.yc8{bottom:651.140267pt;}
.y2c{bottom:653.081333pt;}
.y74{bottom:659.629067pt;}
.yc7{bottom:663.273600pt;}
.y5a{bottom:667.638533pt;}
.y2b{bottom:670.414667pt;}
.yc6{bottom:678.808533pt;}
.y73{bottom:680.962400pt;}
.y2a{bottom:687.748000pt;}
.y59{bottom:688.971867pt;}
.yc5{bottom:690.941867pt;}
.y72{bottom:702.295733pt;}
.yf3{bottom:703.075200pt;}
.y29{bottom:705.081333pt;}
.yc4{bottom:706.476667pt;}
.y65{bottom:715.863200pt;}
.yc3{bottom:718.610000pt;}
.y28{bottom:722.414667pt;}
.y71{bottom:723.629067pt;}
.yc2{bottom:730.743467pt;}
.y27{bottom:739.748000pt;}
.y70{bottom:744.962400pt;}
.yc1{bottom:746.278267pt;}
.y26{bottom:757.081333pt;}
.yc0{bottom:758.411600pt;}
.y6f{bottom:766.295733pt;}
.ybf{bottom:773.946533pt;}
.y25{bottom:774.414667pt;}
.ybe{bottom:786.079867pt;}
.y6e{bottom:787.629067pt;}
.y24{bottom:791.748000pt;}
.ybd{bottom:801.614800pt;}
.y23{bottom:809.081333pt;}
.ybc{bottom:813.748133pt;}
.y78{bottom:814.520400pt;}
.y20{bottom:838.156267pt;}
.y21{bottom:874.505200pt;}
.y22{bottom:874.547467pt;}
.y1{bottom:874.714533pt;}
.h11{height:29.619200pt;}
.hf{height:29.781333pt;}
.h10{height:30.378667pt;}
.he{height:32.277333pt;}
.h12{height:33.280000pt;}
.h9{height:34.133333pt;}
.h4{height:34.434667pt;}
.h5{height:35.125333pt;}
.hb{height:35.612800pt;}
.hd{height:37.144533pt;}
.h2{height:37.973333pt;}
.h7{height:41.386667pt;}
.hc{height:43.669333pt;}
.h8{height:56.092769pt;}
.ha{height:59.733333pt;}
.h3{height:94.933333pt;}
.h6{height:180.053333pt;}
.h1{height:933.333333pt;}
.h0{height:933.542667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:42.708667pt;}
.x7{left:69.921333pt;}
.xe{left:76.991067pt;}
.x12{left:78.502933pt;}
.x8{left:85.039333pt;}
.x9{left:88.818933pt;}
.x18{left:96.378000pt;}
.x10{left:114.330667pt;}
.x11{left:122.156400pt;}
.x2{left:124.724400pt;}
.x16{left:125.969600pt;}
.xf{left:129.448800pt;}
.x15{left:133.795200pt;}
.x5{left:138.236267pt;}
.xa{left:139.842533pt;}
.x17{left:143.622000pt;}
.x19{left:151.181067pt;}
.x4{left:155.138933pt;}
.x3{left:162.519733pt;}
.x13{left:293.991600pt;}
.x14{left:411.968533pt;}
.xb{left:580.453467pt;}
.x1{left:581.440267pt;}
.xd{left:582.493733pt;}
.xc{left:583.826933pt;}
}




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