
    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_eb4f3435fdaf4f8077f176d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_15f0de1944743c799a7f0d57.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.720000;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_f20436566b1c49f704f6ac07.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_e001253abda8ae407473d758.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_a5f11d552a7815de572939de.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_6420462929d43b0b9b7fdc12.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_9da8330cf8bc81a4df8131ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0ea988e5000f13d406f1b70d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2df25bc0a6e0083a5baf2246.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fc4aad034d10300b897bce1e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707000;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:ffb;src:url('chunks/assets/font_64be91224c11b9a4186ba9de.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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:ffc;src:url('chunks/assets/font_eb4f3435fdaf4f8077f176d6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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:ffd;src:url('chunks/assets/font_15f0de1944743c799a7f0d57.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.720000;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:ffe;src:url('chunks/assets/font_dfb107300b9f11ac05198945.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.720000;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:fff;src:url('chunks/assets/font_7a21378db73ac89a8a572729.woff2')format("woff");}.fff{font-family:fff;line-height:0.969000;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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-15.000000px;}
.ws65{word-spacing:-9.420000px;}
.wsaa{word-spacing:-7.680000px;}
.wsd9{word-spacing:-5.340000px;}
.ws78{word-spacing:-5.100000px;}
.wsbb{word-spacing:-3.840000px;}
.ws93{word-spacing:-3.420000px;}
.wsc8{word-spacing:-3.360000px;}
.wsb5{word-spacing:-3.120000px;}
.wsea{word-spacing:-2.880000px;}
.wsc9{word-spacing:-2.820000px;}
.wsa6{word-spacing:-2.760000px;}
.wsa8{word-spacing:-2.700000px;}
.ws46{word-spacing:-2.400000px;}
.wsa3{word-spacing:-2.220000px;}
.wsd{word-spacing:-2.160000px;}
.ws98{word-spacing:-1.980000px;}
.ws9{word-spacing:-1.920000px;}
.wsc0{word-spacing:-1.860000px;}
.wscb{word-spacing:-1.800000px;}
.ws57{word-spacing:-1.680000px;}
.ws1f{word-spacing:-1.620000px;}
.ws95{word-spacing:-1.560000px;}
.ws21{word-spacing:-1.440000px;}
.wsb7{word-spacing:-1.140000px;}
.ws90{word-spacing:-1.020000px;}
.ws4{word-spacing:-0.972000px;}
.ws38{word-spacing:-0.900000px;}
.wsab{word-spacing:-0.720000px;}
.ws70{word-spacing:-0.600000px;}
.ws9b{word-spacing:-0.540000px;}
.ws8b{word-spacing:-0.480000px;}
.wse0{word-spacing:-0.420000px;}
.ws25{word-spacing:-0.300000px;}
.ws9f{word-spacing:-0.120000px;}
.ws76{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws94{word-spacing:0.060000px;}
.wsca{word-spacing:0.360000px;}
.ws60{word-spacing:0.420000px;}
.wsd1{word-spacing:0.540000px;}
.ws56{word-spacing:0.660000px;}
.ws17{word-spacing:0.720000px;}
.ws1a{word-spacing:0.780000px;}
.ws10{word-spacing:0.960000px;}
.ws68{word-spacing:1.020000px;}
.wsf{word-spacing:1.080000px;}
.ws6{word-spacing:1.188000px;}
.wsda{word-spacing:1.200000px;}
.wsc3{word-spacing:1.260000px;}
.ws3d{word-spacing:1.380000px;}
.ws13{word-spacing:1.440000px;}
.wsa{word-spacing:1.560000px;}
.ws26{word-spacing:1.620000px;}
.ws1d{word-spacing:1.800000px;}
.wsbd{word-spacing:1.860000px;}
.ws1c{word-spacing:1.920000px;}
.ws7c{word-spacing:2.100000px;}
.ws8d{word-spacing:2.160000px;}
.wsad{word-spacing:2.280000px;}
.wsc2{word-spacing:2.520000px;}
.ws43{word-spacing:2.640000px;}
.ws27{word-spacing:2.760000px;}
.wsbc{word-spacing:2.820000px;}
.ws8{word-spacing:2.940000px;}
.ws7b{word-spacing:3.180000px;}
.ws74{word-spacing:3.240000px;}
.ws6b{word-spacing:3.420000px;}
.ws54{word-spacing:3.480000px;}
.ws7d{word-spacing:3.540000px;}
.ws92{word-spacing:3.660000px;}
.wsd3{word-spacing:3.840000px;}
.ws32{word-spacing:3.900000px;}
.ws6e{word-spacing:3.960000px;}
.ws18{word-spacing:4.140000px;}
.ws5{word-spacing:4.158000px;}
.ws6d{word-spacing:4.260000px;}
.ws71{word-spacing:4.440000px;}
.ws4f{word-spacing:4.500000px;}
.ws1e{word-spacing:4.620000px;}
.ws37{word-spacing:4.740000px;}
.wsdb{word-spacing:4.800000px;}
.ws3e{word-spacing:4.920000px;}
.wsa9{word-spacing:5.220000px;}
.ws5e{word-spacing:5.280000px;}
.wsce{word-spacing:5.460000px;}
.wsbf{word-spacing:5.580000px;}
.wsa2{word-spacing:5.640000px;}
.ws4e{word-spacing:5.700000px;}
.ws41{word-spacing:5.760000px;}
.wse4{word-spacing:5.940000px;}
.wsae{word-spacing:6.060000px;}
.ws5c{word-spacing:6.540000px;}
.ws22{word-spacing:6.600000px;}
.ws5d{word-spacing:6.900000px;}
.wsc{word-spacing:6.960000px;}
.wsdc{word-spacing:7.020000px;}
.ws6f{word-spacing:7.080000px;}
.ws23{word-spacing:7.320000px;}
.ws80{word-spacing:7.440000px;}
.ws15{word-spacing:7.560000px;}
.wsa7{word-spacing:7.620000px;}
.ws4c{word-spacing:7.680000px;}
.wsc4{word-spacing:7.980000px;}
.ws24{word-spacing:8.040000px;}
.ws2e{word-spacing:8.220000px;}
.ws39{word-spacing:8.280000px;}
.ws44{word-spacing:8.400000px;}
.ws8f{word-spacing:8.460000px;}
.ws55{word-spacing:8.700000px;}
.ws7a{word-spacing:8.820000px;}
.ws73{word-spacing:9.000000px;}
.wsaf{word-spacing:9.300000px;}
.ws9e{word-spacing:9.360000px;}
.ws36{word-spacing:9.600000px;}
.ws8a{word-spacing:9.840000px;}
.wsa1{word-spacing:10.140000px;}
.ws45{word-spacing:10.200000px;}
.ws47{word-spacing:10.260000px;}
.wsb9{word-spacing:10.320000px;}
.wscf{word-spacing:10.500000px;}
.ws8e{word-spacing:10.740000px;}
.wsd5{word-spacing:10.980000px;}
.ws84{word-spacing:11.160000px;}
.ws77{word-spacing:11.280000px;}
.ws59{word-spacing:11.340000px;}
.ws72{word-spacing:11.580000px;}
.ws51{word-spacing:11.700000px;}
.wsb8{word-spacing:11.880000px;}
.ws3c{word-spacing:12.060000px;}
.ws9a{word-spacing:12.180000px;}
.ws8c{word-spacing:12.300000px;}
.wsb{word-spacing:12.420000px;}
.wse{word-spacing:12.480000px;}
.ws42{word-spacing:12.720000px;}
.wsb2{word-spacing:12.840000px;}
.ws29{word-spacing:13.260000px;}
.ws87{word-spacing:13.440000px;}
.ws33{word-spacing:13.560000px;}
.wsd4{word-spacing:13.620000px;}
.ws97{word-spacing:13.680000px;}
.wsba{word-spacing:13.740000px;}
.ws2f{word-spacing:14.040000px;}
.ws48{word-spacing:14.220000px;}
.ws7{word-spacing:14.280000px;}
.wscc{word-spacing:14.460000px;}
.ws9c{word-spacing:14.520000px;}
.wsc1{word-spacing:14.640000px;}
.ws3a{word-spacing:14.700000px;}
.ws50{word-spacing:14.940000px;}
.wsb0{word-spacing:15.180000px;}
.ws6a{word-spacing:15.600000px;}
.ws12{word-spacing:15.660000px;}
.wsa4{word-spacing:15.780000px;}
.wsb4{word-spacing:15.900000px;}
.wse1{word-spacing:15.960000px;}
.wsac{word-spacing:16.080000px;}
.wscd{word-spacing:16.380000px;}
.ws6c{word-spacing:16.500000px;}
.ws5a{word-spacing:16.560000px;}
.ws99{word-spacing:16.620000px;}
.ws89{word-spacing:16.980000px;}
.ws82{word-spacing:17.220000px;}
.ws49{word-spacing:17.580000px;}
.wse5{word-spacing:17.760000px;}
.wsb1{word-spacing:17.820000px;}
.wsb6{word-spacing:17.940000px;}
.wsec{word-spacing:18.000000px;}
.ws1b{word-spacing:18.540000px;}
.wse2{word-spacing:18.660000px;}
.ws9d{word-spacing:18.900000px;}
.ws14{word-spacing:18.960000px;}
.wsc7{word-spacing:19.200000px;}
.wsa5{word-spacing:19.920000px;}
.ws58{word-spacing:19.980000px;}
.wseb{word-spacing:20.640000px;}
.ws3b{word-spacing:21.180000px;}
.ws86{word-spacing:21.600000px;}
.ws63{word-spacing:21.900000px;}
.ws28{word-spacing:22.440000px;}
.wsc5{word-spacing:22.680000px;}
.wsa0{word-spacing:23.280000px;}
.ws85{word-spacing:23.820000px;}
.ws61{word-spacing:24.000000px;}
.ws4b{word-spacing:24.240000px;}
.ws2a{word-spacing:24.360000px;}
.ws31{word-spacing:24.600000px;}
.ws7e{word-spacing:24.660000px;}
.ws67{word-spacing:24.780000px;}
.wsb3{word-spacing:24.960000px;}
.ws2b{word-spacing:25.140000px;}
.ws4d{word-spacing:26.580000px;}
.ws88{word-spacing:27.240000px;}
.ws30{word-spacing:27.300000px;}
.ws19{word-spacing:27.540000px;}
.ws96{word-spacing:27.960000px;}
.wsc6{word-spacing:28.020000px;}
.ws7f{word-spacing:28.140000px;}
.ws79{word-spacing:28.500000px;}
.ws91{word-spacing:28.560000px;}
.ws11{word-spacing:28.620000px;}
.ws5b{word-spacing:30.120000px;}
.ws53{word-spacing:30.420000px;}
.ws20{word-spacing:30.900000px;}
.ws64{word-spacing:30.960000px;}
.wsbe{word-spacing:31.560000px;}
.ws34{word-spacing:32.040000px;}
.ws52{word-spacing:32.400000px;}
.wsd8{word-spacing:32.580000px;}
.ws4a{word-spacing:33.060000px;}
.ws83{word-spacing:33.360000px;}
.ws0{word-spacing:33.621000px;}
.ws69{word-spacing:33.780000px;}
.wsdf{word-spacing:36.540000px;}
.ws62{word-spacing:37.080000px;}
.wsd7{word-spacing:37.740000px;}
.wsdd{word-spacing:38.040000px;}
.ws75{word-spacing:38.280000px;}
.wsd2{word-spacing:39.540000px;}
.ws3f{word-spacing:39.900000px;}
.wse8{word-spacing:39.960000px;}
.ws2c{word-spacing:40.440000px;}
.ws66{word-spacing:40.680000px;}
.wsd6{word-spacing:41.100000px;}
.ws35{word-spacing:42.720000px;}
.ws2d{word-spacing:44.580000px;}
.wse7{word-spacing:44.640000px;}
.ws40{word-spacing:46.860000px;}
.ws81{word-spacing:47.880000px;}
.ws5f{word-spacing:48.540000px;}
.wse3{word-spacing:48.720000px;}
.wsde{word-spacing:50.520000px;}
.wse6{word-spacing:52.200000px;}
.wse9{word-spacing:64.680000px;}
.wsd0{word-spacing:73.680000px;}
.ws1{word-spacing:386.314800px;}
.ws16{word-spacing:1699.977600px;}
._2a{margin-left:-42.291600px;}
._28{margin-left:-32.871600px;}
._2b{margin-left:-28.311600px;}
._29{margin-left:-24.351600px;}
._2d{margin-left:-13.671600px;}
._27{margin-left:-11.640000px;}
._2c{margin-left:-10.431600px;}
._26{margin-left:-8.215200px;}
._1{margin-left:-6.357600px;}
._1c{margin-left:-5.228400px;}
._4{margin-left:-4.059000px;}
._2{margin-left:-3.029400px;}
._0{margin-left:-1.656000px;}
._3{width:1.501200px;}
._5{width:3.335400px;}
._6{width:4.372200px;}
._8{width:5.848200px;}
._b{width:7.842000px;}
._23{width:8.982000px;}
._e{width:10.230000px;}
._20{width:11.263200px;}
._7{width:12.376800px;}
._14{width:13.674000px;}
._1d{width:16.926000px;}
._25{width:18.090000px;}
._24{width:19.758000px;}
._13{width:25.440000px;}
._1a{width:29.910000px;}
._1b{width:32.148000px;}
._12{width:33.546000px;}
._16{width:36.960000px;}
._17{width:38.976000px;}
._1e{width:41.460000px;}
._11{width:45.660000px;}
._10{width:47.580000px;}
._d{width:51.480000px;}
._9{width:54.720000px;}
._a{width:56.580000px;}
._18{width:58.680000px;}
._22{width:59.700000px;}
._19{width:64.740000px;}
._c{width:65.880000px;}
._f{width:67.260000px;}
._15{width:69.240000px;}
._1f{width:70.560000px;}
._21{width:72.780000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y3a{bottom:64.760550px;}
.y39{bottom:65.586600px;}
.y135{bottom:92.409600px;}
.yb5{bottom:95.802450px;}
.ye3{bottom:98.581350px;}
.y9a{bottom:98.802450px;}
.y6a{bottom:99.023550px;}
.y112{bottom:99.159600px;}
.y2f{bottom:100.642650px;}
.y134{bottom:111.909600px;}
.yb4{bottom:115.302450px;}
.ye2{bottom:118.081350px;}
.y99{bottom:118.302450px;}
.y69{bottom:118.523550px;}
.y111{bottom:118.659600px;}
.y2e{bottom:120.142650px;}
.y133{bottom:131.409600px;}
.yb3{bottom:134.802450px;}
.ye1{bottom:137.581350px;}
.y98{bottom:137.802450px;}
.y68{bottom:138.023550px;}
.y110{bottom:138.159600px;}
.y2d{bottom:139.642650px;}
.y132{bottom:150.909600px;}
.yb2{bottom:154.302450px;}
.ye0{bottom:157.081350px;}
.y97{bottom:157.302450px;}
.y67{bottom:157.523550px;}
.y10f{bottom:157.659600px;}
.y2c{bottom:159.142650px;}
.y131{bottom:170.409600px;}
.yb1{bottom:173.802450px;}
.ydf{bottom:176.581350px;}
.y96{bottom:176.802450px;}
.y66{bottom:177.023550px;}
.y10e{bottom:177.159600px;}
.y2b{bottom:178.642650px;}
.y130{bottom:189.909600px;}
.yb0{bottom:193.302450px;}
.yde{bottom:196.081350px;}
.y95{bottom:196.302450px;}
.y65{bottom:196.523550px;}
.y10d{bottom:196.659600px;}
.y2a{bottom:198.142650px;}
.y12f{bottom:209.409600px;}
.yaf{bottom:212.052450px;}
.ydd{bottom:215.581350px;}
.y94{bottom:215.802450px;}
.y64{bottom:216.023550px;}
.y10c{bottom:216.159600px;}
.y29{bottom:217.642650px;}
.y12e{bottom:228.909600px;}
.yae{bottom:230.802450px;}
.ydc{bottom:235.081350px;}
.y93{bottom:235.302450px;}
.y63{bottom:235.523550px;}
.y10b{bottom:235.659600px;}
.y28{bottom:237.142650px;}
.y12d{bottom:248.409600px;}
.yad{bottom:249.552450px;}
.ydb{bottom:254.581350px;}
.y92{bottom:254.802450px;}
.y62{bottom:255.023550px;}
.y10a{bottom:255.159600px;}
.y27{bottom:256.642650px;}
.y12c{bottom:267.159600px;}
.yac{bottom:268.302450px;}
.yda{bottom:274.081350px;}
.y91{bottom:274.302450px;}
.y61{bottom:274.523550px;}
.y109{bottom:274.659600px;}
.y26{bottom:276.142650px;}
.y12b{bottom:285.909600px;}
.yab{bottom:287.052450px;}
.yd9{bottom:293.581350px;}
.y90{bottom:293.802450px;}
.y60{bottom:294.023550px;}
.y108{bottom:294.159600px;}
.y25{bottom:295.642650px;}
.y12a{bottom:304.659600px;}
.yaa{bottom:305.802450px;}
.yd8{bottom:313.081350px;}
.y8f{bottom:313.302450px;}
.y5f{bottom:313.523550px;}
.y107{bottom:313.659600px;}
.y24{bottom:315.142650px;}
.y129{bottom:323.409600px;}
.ya9{bottom:324.552450px;}
.yd7{bottom:332.581350px;}
.y8e{bottom:332.802450px;}
.y5e{bottom:333.023550px;}
.y106{bottom:333.159600px;}
.y23{bottom:334.642650px;}
.y128{bottom:342.159600px;}
.ya8{bottom:343.302450px;}
.yd6{bottom:352.081350px;}
.y8d{bottom:352.302450px;}
.y5d{bottom:352.523550px;}
.y105{bottom:352.659600px;}
.y22{bottom:354.142650px;}
.y127{bottom:361.659600px;}
.ya7{bottom:362.052450px;}
.yd5{bottom:371.581350px;}
.y8c{bottom:371.802450px;}
.y5c{bottom:372.023550px;}
.y104{bottom:372.159600px;}
.y21{bottom:373.642650px;}
.ya6{bottom:380.802450px;}
.y126{bottom:381.159600px;}
.yd4{bottom:391.081350px;}
.y8b{bottom:391.302450px;}
.y5b{bottom:391.523550px;}
.y103{bottom:391.659600px;}
.y20{bottom:393.142650px;}
.ya5{bottom:399.552450px;}
.y125{bottom:400.659600px;}
.yd3{bottom:410.581350px;}
.y8a{bottom:410.802450px;}
.y5a{bottom:411.023550px;}
.y102{bottom:411.159600px;}
.y1f{bottom:412.642650px;}
.ya4{bottom:418.302450px;}
.y124{bottom:420.159600px;}
.yd2{bottom:430.081350px;}
.y89{bottom:430.302450px;}
.y59{bottom:430.523550px;}
.y101{bottom:430.659600px;}
.y1e{bottom:432.142650px;}
.ya3{bottom:437.052450px;}
.y123{bottom:439.659600px;}
.yd1{bottom:449.581350px;}
.y88{bottom:449.802450px;}
.y58{bottom:450.023550px;}
.y100{bottom:450.159600px;}
.y1d{bottom:451.642650px;}
.ya2{bottom:455.802450px;}
.y38{bottom:456.139950px;}
.y122{bottom:459.159600px;}
.yd0{bottom:469.081350px;}
.y87{bottom:469.302450px;}
.y57{bottom:469.523550px;}
.yff{bottom:469.659600px;}
.y1c{bottom:471.142650px;}
.ya1{bottom:474.552450px;}
.y37{bottom:478.639950px;}
.y121{bottom:478.659600px;}
.ycf{bottom:488.581350px;}
.y86{bottom:488.802450px;}
.y56{bottom:489.023550px;}
.yfe{bottom:489.159600px;}
.y1b{bottom:490.642650px;}
.ya0{bottom:493.302450px;}
.y120{bottom:498.159600px;}
.y36{bottom:501.139950px;}
.yce{bottom:508.081350px;}
.y85{bottom:508.302450px;}
.y55{bottom:508.523550px;}
.yfd{bottom:508.659600px;}
.y1a{bottom:510.142650px;}
.y9f{bottom:512.052450px;}
.y11f{bottom:517.659600px;}
.ye4{bottom:527.581350px;}
.y84{bottom:527.802450px;}
.y54{bottom:528.023550px;}
.yfc{bottom:528.159600px;}
.y19{bottom:529.678650px;}
.y9e{bottom:530.802450px;}
.y11e{bottom:536.409600px;}
.y35{bottom:541.639950px;}
.y18{bottom:546.175650px;}
.ycd{bottom:547.081350px;}
.y83{bottom:547.302450px;}
.y53{bottom:547.523550px;}
.yfb{bottom:547.659600px;}
.y9d{bottom:549.552450px;}
.y11d{bottom:555.159600px;}
.y17{bottom:562.672650px;}
.ycc{bottom:566.581350px;}
.y82{bottom:566.802450px;}
.y52{bottom:567.023550px;}
.yfa{bottom:567.159600px;}
.y9c{bottom:568.302450px;}
.y11c{bottom:573.909600px;}
.y16{bottom:579.169650px;}
.ycb{bottom:586.081350px;}
.y81{bottom:586.302450px;}
.y51{bottom:586.523550px;}
.y34{bottom:586.639950px;}
.yf9{bottom:586.659600px;}
.y9b{bottom:587.052450px;}
.y11b{bottom:592.659600px;}
.y15{bottom:595.666650px;}
.yca{bottom:605.581350px;}
.y80{bottom:605.802450px;}
.y50{bottom:606.023550px;}
.yf8{bottom:606.159600px;}
.y11a{bottom:611.409600px;}
.y14{bottom:612.163650px;}
.yc9{bottom:625.081350px;}
.y7f{bottom:625.302450px;}
.y4f{bottom:625.523550px;}
.yf7{bottom:625.659600px;}
.y33{bottom:627.139950px;}
.y13{bottom:628.660650px;}
.y119{bottom:630.159600px;}
.yc8{bottom:644.581350px;}
.y7e{bottom:644.802450px;}
.y4e{bottom:645.023550px;}
.y12{bottom:645.157650px;}
.yf6{bottom:645.159600px;}
.y118{bottom:648.909600px;}
.y11{bottom:661.654650px;}
.y32{bottom:663.139950px;}
.yc7{bottom:664.081350px;}
.y7d{bottom:664.302450px;}
.y4d{bottom:664.523550px;}
.yf5{bottom:664.659600px;}
.y117{bottom:667.659600px;}
.y10{bottom:678.151650px;}
.yc6{bottom:683.581350px;}
.y7c{bottom:683.802450px;}
.y4c{bottom:684.023550px;}
.yf4{bottom:684.159600px;}
.y116{bottom:686.409600px;}
.yf{bottom:694.648650px;}
.y31{bottom:699.139950px;}
.yc5{bottom:703.081350px;}
.y7b{bottom:703.302450px;}
.y4b{bottom:703.523550px;}
.yf3{bottom:703.659600px;}
.y115{bottom:705.159600px;}
.ye{bottom:711.145650px;}
.yc4{bottom:722.581350px;}
.y7a{bottom:722.802450px;}
.y4a{bottom:723.023550px;}
.yf2{bottom:723.159600px;}
.y114{bottom:723.909600px;}
.yd{bottom:727.642650px;}
.y30{bottom:735.139950px;}
.yc3{bottom:742.081350px;}
.y79{bottom:742.302450px;}
.y49{bottom:742.523550px;}
.yf1{bottom:742.659600px;}
.yc{bottom:744.142650px;}
.yc2{bottom:761.581350px;}
.y78{bottom:761.802450px;}
.y48{bottom:762.023550px;}
.yf0{bottom:762.159600px;}
.yc1{bottom:781.081350px;}
.y77{bottom:781.302450px;}
.y47{bottom:781.523550px;}
.yef{bottom:781.659600px;}
.yb{bottom:783.148650px;}
.yc0{bottom:800.581350px;}
.y76{bottom:800.802450px;}
.y46{bottom:801.023550px;}
.yee{bottom:801.159600px;}
.ya{bottom:802.642650px;}
.ybf{bottom:820.081350px;}
.y75{bottom:820.302450px;}
.y45{bottom:820.523550px;}
.y9{bottom:820.642650px;}
.yed{bottom:820.659600px;}
.ybe{bottom:839.581350px;}
.y74{bottom:839.802450px;}
.y44{bottom:840.023550px;}
.yec{bottom:840.159600px;}
.y8{bottom:855.151650px;}
.ybd{bottom:859.081350px;}
.y73{bottom:859.302450px;}
.y43{bottom:859.523550px;}
.y113{bottom:859.659600px;}
.y7{bottom:873.147150px;}
.ybc{bottom:878.581350px;}
.y72{bottom:878.802450px;}
.y42{bottom:879.023550px;}
.yeb{bottom:879.159600px;}
.y6{bottom:891.142650px;}
.ybb{bottom:898.081350px;}
.y71{bottom:898.302450px;}
.y41{bottom:898.523550px;}
.yea{bottom:898.659600px;}
.y5{bottom:909.142650px;}
.yba{bottom:917.581350px;}
.y70{bottom:917.802450px;}
.y6b{bottom:918.023550px;}
.ye9{bottom:918.159600px;}
.yb9{bottom:937.081350px;}
.y6f{bottom:937.302450px;}
.y40{bottom:937.523550px;}
.ye8{bottom:937.659600px;}
.y4{bottom:942.142650px;}
.yb8{bottom:956.581350px;}
.y6e{bottom:956.802450px;}
.y3f{bottom:957.023550px;}
.ye7{bottom:957.159600px;}
.y3{bottom:969.142650px;}
.yb7{bottom:976.081350px;}
.y6d{bottom:976.302450px;}
.y3e{bottom:976.523550px;}
.ye6{bottom:976.659600px;}
.yb6{bottom:995.581350px;}
.y6c{bottom:995.802450px;}
.y3d{bottom:996.023550px;}
.ye5{bottom:996.159600px;}
.y3c{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y3b{bottom:1039.374150px;}
.hd{height:34.176000px;}
.hc{height:34.560000px;}
.h6{height:37.494141px;}
.h5{height:40.664062px;}
.h7{height:41.689453px;}
.hb{height:42.000000px;}
.ha{height:42.720000px;}
.h9{height:46.200000px;}
.h8{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h4{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xe{left:63.779550px;}
.x2{left:65.202600px;}
.x1{left:71.253150px;}
.xd{left:73.559100px;}
.x13{left:90.779550px;}
.xc{left:224.187900px;}
.x3{left:255.793200px;}
.x4{left:293.098200px;}
.x8{left:352.031700px;}
.xb{left:375.153450px;}
.x12{left:399.929550px;}
.x11{left:412.272150px;}
.xa{left:426.034950px;}
.x6{left:429.818700px;}
.x7{left:479.026200px;}
.x9{left:589.793550px;}
.x5{left:599.249100px;}
.x10{left:614.196150px;}
.xf{left:632.875800px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws65{word-spacing:-8.373333pt;}
.wsaa{word-spacing:-6.826667pt;}
.wsd9{word-spacing:-4.746667pt;}
.ws78{word-spacing:-4.533333pt;}
.wsbb{word-spacing:-3.413333pt;}
.ws93{word-spacing:-3.040000pt;}
.wsc8{word-spacing:-2.986667pt;}
.wsb5{word-spacing:-2.773333pt;}
.wsea{word-spacing:-2.560000pt;}
.wsc9{word-spacing:-2.506667pt;}
.wsa6{word-spacing:-2.453333pt;}
.wsa8{word-spacing:-2.400000pt;}
.ws46{word-spacing:-2.133333pt;}
.wsa3{word-spacing:-1.973333pt;}
.wsd{word-spacing:-1.920000pt;}
.ws98{word-spacing:-1.760000pt;}
.ws9{word-spacing:-1.706667pt;}
.wsc0{word-spacing:-1.653333pt;}
.wscb{word-spacing:-1.600000pt;}
.ws57{word-spacing:-1.493333pt;}
.ws1f{word-spacing:-1.440000pt;}
.ws95{word-spacing:-1.386667pt;}
.ws21{word-spacing:-1.280000pt;}
.wsb7{word-spacing:-1.013333pt;}
.ws90{word-spacing:-0.906667pt;}
.ws4{word-spacing:-0.864000pt;}
.ws38{word-spacing:-0.800000pt;}
.wsab{word-spacing:-0.640000pt;}
.ws70{word-spacing:-0.533333pt;}
.ws9b{word-spacing:-0.480000pt;}
.ws8b{word-spacing:-0.426667pt;}
.wse0{word-spacing:-0.373333pt;}
.ws25{word-spacing:-0.266667pt;}
.ws9f{word-spacing:-0.106667pt;}
.ws76{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws94{word-spacing:0.053333pt;}
.wsca{word-spacing:0.320000pt;}
.ws60{word-spacing:0.373333pt;}
.wsd1{word-spacing:0.480000pt;}
.ws56{word-spacing:0.586667pt;}
.ws17{word-spacing:0.640000pt;}
.ws1a{word-spacing:0.693333pt;}
.ws10{word-spacing:0.853333pt;}
.ws68{word-spacing:0.906667pt;}
.wsf{word-spacing:0.960000pt;}
.ws6{word-spacing:1.056000pt;}
.wsda{word-spacing:1.066667pt;}
.wsc3{word-spacing:1.120000pt;}
.ws3d{word-spacing:1.226667pt;}
.ws13{word-spacing:1.280000pt;}
.wsa{word-spacing:1.386667pt;}
.ws26{word-spacing:1.440000pt;}
.ws1d{word-spacing:1.600000pt;}
.wsbd{word-spacing:1.653333pt;}
.ws1c{word-spacing:1.706667pt;}
.ws7c{word-spacing:1.866667pt;}
.ws8d{word-spacing:1.920000pt;}
.wsad{word-spacing:2.026667pt;}
.wsc2{word-spacing:2.240000pt;}
.ws43{word-spacing:2.346667pt;}
.ws27{word-spacing:2.453333pt;}
.wsbc{word-spacing:2.506667pt;}
.ws8{word-spacing:2.613333pt;}
.ws7b{word-spacing:2.826667pt;}
.ws74{word-spacing:2.880000pt;}
.ws6b{word-spacing:3.040000pt;}
.ws54{word-spacing:3.093333pt;}
.ws7d{word-spacing:3.146667pt;}
.ws92{word-spacing:3.253333pt;}
.wsd3{word-spacing:3.413333pt;}
.ws32{word-spacing:3.466667pt;}
.ws6e{word-spacing:3.520000pt;}
.ws18{word-spacing:3.680000pt;}
.ws5{word-spacing:3.696000pt;}
.ws6d{word-spacing:3.786667pt;}
.ws71{word-spacing:3.946667pt;}
.ws4f{word-spacing:4.000000pt;}
.ws1e{word-spacing:4.106667pt;}
.ws37{word-spacing:4.213333pt;}
.wsdb{word-spacing:4.266667pt;}
.ws3e{word-spacing:4.373333pt;}
.wsa9{word-spacing:4.640000pt;}
.ws5e{word-spacing:4.693333pt;}
.wsce{word-spacing:4.853333pt;}
.wsbf{word-spacing:4.960000pt;}
.wsa2{word-spacing:5.013333pt;}
.ws4e{word-spacing:5.066667pt;}
.ws41{word-spacing:5.120000pt;}
.wse4{word-spacing:5.280000pt;}
.wsae{word-spacing:5.386667pt;}
.ws5c{word-spacing:5.813333pt;}
.ws22{word-spacing:5.866667pt;}
.ws5d{word-spacing:6.133333pt;}
.wsc{word-spacing:6.186667pt;}
.wsdc{word-spacing:6.240000pt;}
.ws6f{word-spacing:6.293333pt;}
.ws23{word-spacing:6.506667pt;}
.ws80{word-spacing:6.613333pt;}
.ws15{word-spacing:6.720000pt;}
.wsa7{word-spacing:6.773333pt;}
.ws4c{word-spacing:6.826667pt;}
.wsc4{word-spacing:7.093333pt;}
.ws24{word-spacing:7.146667pt;}
.ws2e{word-spacing:7.306667pt;}
.ws39{word-spacing:7.360000pt;}
.ws44{word-spacing:7.466667pt;}
.ws8f{word-spacing:7.520000pt;}
.ws55{word-spacing:7.733333pt;}
.ws7a{word-spacing:7.840000pt;}
.ws73{word-spacing:8.000000pt;}
.wsaf{word-spacing:8.266667pt;}
.ws9e{word-spacing:8.320000pt;}
.ws36{word-spacing:8.533333pt;}
.ws8a{word-spacing:8.746667pt;}
.wsa1{word-spacing:9.013333pt;}
.ws45{word-spacing:9.066667pt;}
.ws47{word-spacing:9.120000pt;}
.wsb9{word-spacing:9.173333pt;}
.wscf{word-spacing:9.333333pt;}
.ws8e{word-spacing:9.546667pt;}
.wsd5{word-spacing:9.760000pt;}
.ws84{word-spacing:9.920000pt;}
.ws77{word-spacing:10.026667pt;}
.ws59{word-spacing:10.080000pt;}
.ws72{word-spacing:10.293333pt;}
.ws51{word-spacing:10.400000pt;}
.wsb8{word-spacing:10.560000pt;}
.ws3c{word-spacing:10.720000pt;}
.ws9a{word-spacing:10.826667pt;}
.ws8c{word-spacing:10.933333pt;}
.wsb{word-spacing:11.040000pt;}
.wse{word-spacing:11.093333pt;}
.ws42{word-spacing:11.306667pt;}
.wsb2{word-spacing:11.413333pt;}
.ws29{word-spacing:11.786667pt;}
.ws87{word-spacing:11.946667pt;}
.ws33{word-spacing:12.053333pt;}
.wsd4{word-spacing:12.106667pt;}
.ws97{word-spacing:12.160000pt;}
.wsba{word-spacing:12.213333pt;}
.ws2f{word-spacing:12.480000pt;}
.ws48{word-spacing:12.640000pt;}
.ws7{word-spacing:12.693333pt;}
.wscc{word-spacing:12.853333pt;}
.ws9c{word-spacing:12.906667pt;}
.wsc1{word-spacing:13.013333pt;}
.ws3a{word-spacing:13.066667pt;}
.ws50{word-spacing:13.280000pt;}
.wsb0{word-spacing:13.493333pt;}
.ws6a{word-spacing:13.866667pt;}
.ws12{word-spacing:13.920000pt;}
.wsa4{word-spacing:14.026667pt;}
.wsb4{word-spacing:14.133333pt;}
.wse1{word-spacing:14.186667pt;}
.wsac{word-spacing:14.293333pt;}
.wscd{word-spacing:14.560000pt;}
.ws6c{word-spacing:14.666667pt;}
.ws5a{word-spacing:14.720000pt;}
.ws99{word-spacing:14.773333pt;}
.ws89{word-spacing:15.093333pt;}
.ws82{word-spacing:15.306667pt;}
.ws49{word-spacing:15.626667pt;}
.wse5{word-spacing:15.786667pt;}
.wsb1{word-spacing:15.840000pt;}
.wsb6{word-spacing:15.946667pt;}
.wsec{word-spacing:16.000000pt;}
.ws1b{word-spacing:16.480000pt;}
.wse2{word-spacing:16.586667pt;}
.ws9d{word-spacing:16.800000pt;}
.ws14{word-spacing:16.853333pt;}
.wsc7{word-spacing:17.066667pt;}
.wsa5{word-spacing:17.706667pt;}
.ws58{word-spacing:17.760000pt;}
.wseb{word-spacing:18.346667pt;}
.ws3b{word-spacing:18.826667pt;}
.ws86{word-spacing:19.200000pt;}
.ws63{word-spacing:19.466667pt;}
.ws28{word-spacing:19.946667pt;}
.wsc5{word-spacing:20.160000pt;}
.wsa0{word-spacing:20.693333pt;}
.ws85{word-spacing:21.173333pt;}
.ws61{word-spacing:21.333333pt;}
.ws4b{word-spacing:21.546667pt;}
.ws2a{word-spacing:21.653333pt;}
.ws31{word-spacing:21.866667pt;}
.ws7e{word-spacing:21.920000pt;}
.ws67{word-spacing:22.026667pt;}
.wsb3{word-spacing:22.186667pt;}
.ws2b{word-spacing:22.346667pt;}
.ws4d{word-spacing:23.626667pt;}
.ws88{word-spacing:24.213333pt;}
.ws30{word-spacing:24.266667pt;}
.ws19{word-spacing:24.480000pt;}
.ws96{word-spacing:24.853333pt;}
.wsc6{word-spacing:24.906667pt;}
.ws7f{word-spacing:25.013333pt;}
.ws79{word-spacing:25.333333pt;}
.ws91{word-spacing:25.386667pt;}
.ws11{word-spacing:25.440000pt;}
.ws5b{word-spacing:26.773333pt;}
.ws53{word-spacing:27.040000pt;}
.ws20{word-spacing:27.466667pt;}
.ws64{word-spacing:27.520000pt;}
.wsbe{word-spacing:28.053333pt;}
.ws34{word-spacing:28.480000pt;}
.ws52{word-spacing:28.800000pt;}
.wsd8{word-spacing:28.960000pt;}
.ws4a{word-spacing:29.386667pt;}
.ws83{word-spacing:29.653333pt;}
.ws0{word-spacing:29.885333pt;}
.ws69{word-spacing:30.026667pt;}
.wsdf{word-spacing:32.480000pt;}
.ws62{word-spacing:32.960000pt;}
.wsd7{word-spacing:33.546667pt;}
.wsdd{word-spacing:33.813333pt;}
.ws75{word-spacing:34.026667pt;}
.wsd2{word-spacing:35.146667pt;}
.ws3f{word-spacing:35.466667pt;}
.wse8{word-spacing:35.520000pt;}
.ws2c{word-spacing:35.946667pt;}
.ws66{word-spacing:36.160000pt;}
.wsd6{word-spacing:36.533333pt;}
.ws35{word-spacing:37.973333pt;}
.ws2d{word-spacing:39.626667pt;}
.wse7{word-spacing:39.680000pt;}
.ws40{word-spacing:41.653333pt;}
.ws81{word-spacing:42.560000pt;}
.ws5f{word-spacing:43.146667pt;}
.wse3{word-spacing:43.306667pt;}
.wsde{word-spacing:44.906667pt;}
.wse6{word-spacing:46.400000pt;}
.wse9{word-spacing:57.493333pt;}
.wsd0{word-spacing:65.493333pt;}
.ws1{word-spacing:343.390933pt;}
.ws16{word-spacing:1511.091200pt;}
._2a{margin-left:-37.592533pt;}
._28{margin-left:-29.219200pt;}
._2b{margin-left:-25.165867pt;}
._29{margin-left:-21.645867pt;}
._2d{margin-left:-12.152533pt;}
._27{margin-left:-10.346667pt;}
._2c{margin-left:-9.272533pt;}
._26{margin-left:-7.302400pt;}
._1{margin-left:-5.651200pt;}
._1c{margin-left:-4.647467pt;}
._4{margin-left:-3.608000pt;}
._2{margin-left:-2.692800pt;}
._0{margin-left:-1.472000pt;}
._3{width:1.334400pt;}
._5{width:2.964800pt;}
._6{width:3.886400pt;}
._8{width:5.198400pt;}
._b{width:6.970667pt;}
._23{width:7.984000pt;}
._e{width:9.093333pt;}
._20{width:10.011733pt;}
._7{width:11.001600pt;}
._14{width:12.154667pt;}
._1d{width:15.045333pt;}
._25{width:16.080000pt;}
._24{width:17.562667pt;}
._13{width:22.613333pt;}
._1a{width:26.586667pt;}
._1b{width:28.576000pt;}
._12{width:29.818667pt;}
._16{width:32.853333pt;}
._17{width:34.645333pt;}
._1e{width:36.853333pt;}
._11{width:40.586667pt;}
._10{width:42.293333pt;}
._d{width:45.760000pt;}
._9{width:48.640000pt;}
._a{width:50.293333pt;}
._18{width:52.160000pt;}
._22{width:53.066667pt;}
._19{width:57.546667pt;}
._c{width:58.560000pt;}
._f{width:59.786667pt;}
._15{width:61.546667pt;}
._1f{width:62.720000pt;}
._21{width:64.693333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y3a{bottom:57.564933pt;}
.y39{bottom:58.299200pt;}
.y135{bottom:82.141867pt;}
.yb5{bottom:85.157733pt;}
.ye3{bottom:87.627867pt;}
.y9a{bottom:87.824400pt;}
.y6a{bottom:88.020933pt;}
.y112{bottom:88.141867pt;}
.y2f{bottom:89.460133pt;}
.y134{bottom:99.475200pt;}
.yb4{bottom:102.491067pt;}
.ye2{bottom:104.961200pt;}
.y99{bottom:105.157733pt;}
.y69{bottom:105.354267pt;}
.y111{bottom:105.475200pt;}
.y2e{bottom:106.793467pt;}
.y133{bottom:116.808533pt;}
.yb3{bottom:119.824400pt;}
.ye1{bottom:122.294533pt;}
.y98{bottom:122.491067pt;}
.y68{bottom:122.687600pt;}
.y110{bottom:122.808533pt;}
.y2d{bottom:124.126800pt;}
.y132{bottom:134.141867pt;}
.yb2{bottom:137.157733pt;}
.ye0{bottom:139.627867pt;}
.y97{bottom:139.824400pt;}
.y67{bottom:140.020933pt;}
.y10f{bottom:140.141867pt;}
.y2c{bottom:141.460133pt;}
.y131{bottom:151.475200pt;}
.yb1{bottom:154.491067pt;}
.ydf{bottom:156.961200pt;}
.y96{bottom:157.157733pt;}
.y66{bottom:157.354267pt;}
.y10e{bottom:157.475200pt;}
.y2b{bottom:158.793467pt;}
.y130{bottom:168.808533pt;}
.yb0{bottom:171.824400pt;}
.yde{bottom:174.294533pt;}
.y95{bottom:174.491067pt;}
.y65{bottom:174.687600pt;}
.y10d{bottom:174.808533pt;}
.y2a{bottom:176.126800pt;}
.y12f{bottom:186.141867pt;}
.yaf{bottom:188.491067pt;}
.ydd{bottom:191.627867pt;}
.y94{bottom:191.824400pt;}
.y64{bottom:192.020933pt;}
.y10c{bottom:192.141867pt;}
.y29{bottom:193.460133pt;}
.y12e{bottom:203.475200pt;}
.yae{bottom:205.157733pt;}
.ydc{bottom:208.961200pt;}
.y93{bottom:209.157733pt;}
.y63{bottom:209.354267pt;}
.y10b{bottom:209.475200pt;}
.y28{bottom:210.793467pt;}
.y12d{bottom:220.808533pt;}
.yad{bottom:221.824400pt;}
.ydb{bottom:226.294533pt;}
.y92{bottom:226.491067pt;}
.y62{bottom:226.687600pt;}
.y10a{bottom:226.808533pt;}
.y27{bottom:228.126800pt;}
.y12c{bottom:237.475200pt;}
.yac{bottom:238.491067pt;}
.yda{bottom:243.627867pt;}
.y91{bottom:243.824400pt;}
.y61{bottom:244.020933pt;}
.y109{bottom:244.141867pt;}
.y26{bottom:245.460133pt;}
.y12b{bottom:254.141867pt;}
.yab{bottom:255.157733pt;}
.yd9{bottom:260.961200pt;}
.y90{bottom:261.157733pt;}
.y60{bottom:261.354267pt;}
.y108{bottom:261.475200pt;}
.y25{bottom:262.793467pt;}
.y12a{bottom:270.808533pt;}
.yaa{bottom:271.824400pt;}
.yd8{bottom:278.294533pt;}
.y8f{bottom:278.491067pt;}
.y5f{bottom:278.687600pt;}
.y107{bottom:278.808533pt;}
.y24{bottom:280.126800pt;}
.y129{bottom:287.475200pt;}
.ya9{bottom:288.491067pt;}
.yd7{bottom:295.627867pt;}
.y8e{bottom:295.824400pt;}
.y5e{bottom:296.020933pt;}
.y106{bottom:296.141867pt;}
.y23{bottom:297.460133pt;}
.y128{bottom:304.141867pt;}
.ya8{bottom:305.157733pt;}
.yd6{bottom:312.961200pt;}
.y8d{bottom:313.157733pt;}
.y5d{bottom:313.354267pt;}
.y105{bottom:313.475200pt;}
.y22{bottom:314.793467pt;}
.y127{bottom:321.475200pt;}
.ya7{bottom:321.824400pt;}
.yd5{bottom:330.294533pt;}
.y8c{bottom:330.491067pt;}
.y5c{bottom:330.687600pt;}
.y104{bottom:330.808533pt;}
.y21{bottom:332.126800pt;}
.ya6{bottom:338.491067pt;}
.y126{bottom:338.808533pt;}
.yd4{bottom:347.627867pt;}
.y8b{bottom:347.824400pt;}
.y5b{bottom:348.020933pt;}
.y103{bottom:348.141867pt;}
.y20{bottom:349.460133pt;}
.ya5{bottom:355.157733pt;}
.y125{bottom:356.141867pt;}
.yd3{bottom:364.961200pt;}
.y8a{bottom:365.157733pt;}
.y5a{bottom:365.354267pt;}
.y102{bottom:365.475200pt;}
.y1f{bottom:366.793467pt;}
.ya4{bottom:371.824400pt;}
.y124{bottom:373.475200pt;}
.yd2{bottom:382.294533pt;}
.y89{bottom:382.491067pt;}
.y59{bottom:382.687600pt;}
.y101{bottom:382.808533pt;}
.y1e{bottom:384.126800pt;}
.ya3{bottom:388.491067pt;}
.y123{bottom:390.808533pt;}
.yd1{bottom:399.627867pt;}
.y88{bottom:399.824400pt;}
.y58{bottom:400.020933pt;}
.y100{bottom:400.141867pt;}
.y1d{bottom:401.460133pt;}
.ya2{bottom:405.157733pt;}
.y38{bottom:405.457733pt;}
.y122{bottom:408.141867pt;}
.yd0{bottom:416.961200pt;}
.y87{bottom:417.157733pt;}
.y57{bottom:417.354267pt;}
.yff{bottom:417.475200pt;}
.y1c{bottom:418.793467pt;}
.ya1{bottom:421.824400pt;}
.y37{bottom:425.457733pt;}
.y121{bottom:425.475200pt;}
.ycf{bottom:434.294533pt;}
.y86{bottom:434.491067pt;}
.y56{bottom:434.687600pt;}
.yfe{bottom:434.808533pt;}
.y1b{bottom:436.126800pt;}
.ya0{bottom:438.491067pt;}
.y120{bottom:442.808533pt;}
.y36{bottom:445.457733pt;}
.yce{bottom:451.627867pt;}
.y85{bottom:451.824400pt;}
.y55{bottom:452.020933pt;}
.yfd{bottom:452.141867pt;}
.y1a{bottom:453.460133pt;}
.y9f{bottom:455.157733pt;}
.y11f{bottom:460.141867pt;}
.ye4{bottom:468.961200pt;}
.y84{bottom:469.157733pt;}
.y54{bottom:469.354267pt;}
.yfc{bottom:469.475200pt;}
.y19{bottom:470.825467pt;}
.y9e{bottom:471.824400pt;}
.y11e{bottom:476.808533pt;}
.y35{bottom:481.457733pt;}
.y18{bottom:485.489467pt;}
.ycd{bottom:486.294533pt;}
.y83{bottom:486.491067pt;}
.y53{bottom:486.687600pt;}
.yfb{bottom:486.808533pt;}
.y9d{bottom:488.491067pt;}
.y11d{bottom:493.475200pt;}
.y17{bottom:500.153467pt;}
.ycc{bottom:503.627867pt;}
.y82{bottom:503.824400pt;}
.y52{bottom:504.020933pt;}
.yfa{bottom:504.141867pt;}
.y9c{bottom:505.157733pt;}
.y11c{bottom:510.141867pt;}
.y16{bottom:514.817467pt;}
.ycb{bottom:520.961200pt;}
.y81{bottom:521.157733pt;}
.y51{bottom:521.354267pt;}
.y34{bottom:521.457733pt;}
.yf9{bottom:521.475200pt;}
.y9b{bottom:521.824400pt;}
.y11b{bottom:526.808533pt;}
.y15{bottom:529.481467pt;}
.yca{bottom:538.294533pt;}
.y80{bottom:538.491067pt;}
.y50{bottom:538.687600pt;}
.yf8{bottom:538.808533pt;}
.y11a{bottom:543.475200pt;}
.y14{bottom:544.145467pt;}
.yc9{bottom:555.627867pt;}
.y7f{bottom:555.824400pt;}
.y4f{bottom:556.020933pt;}
.yf7{bottom:556.141867pt;}
.y33{bottom:557.457733pt;}
.y13{bottom:558.809467pt;}
.y119{bottom:560.141867pt;}
.yc8{bottom:572.961200pt;}
.y7e{bottom:573.157733pt;}
.y4e{bottom:573.354267pt;}
.y12{bottom:573.473467pt;}
.yf6{bottom:573.475200pt;}
.y118{bottom:576.808533pt;}
.y11{bottom:588.137467pt;}
.y32{bottom:589.457733pt;}
.yc7{bottom:590.294533pt;}
.y7d{bottom:590.491067pt;}
.y4d{bottom:590.687600pt;}
.yf5{bottom:590.808533pt;}
.y117{bottom:593.475200pt;}
.y10{bottom:602.801467pt;}
.yc6{bottom:607.627867pt;}
.y7c{bottom:607.824400pt;}
.y4c{bottom:608.020933pt;}
.yf4{bottom:608.141867pt;}
.y116{bottom:610.141867pt;}
.yf{bottom:617.465467pt;}
.y31{bottom:621.457733pt;}
.yc5{bottom:624.961200pt;}
.y7b{bottom:625.157733pt;}
.y4b{bottom:625.354267pt;}
.yf3{bottom:625.475200pt;}
.y115{bottom:626.808533pt;}
.ye{bottom:632.129467pt;}
.yc4{bottom:642.294533pt;}
.y7a{bottom:642.491067pt;}
.y4a{bottom:642.687600pt;}
.yf2{bottom:642.808533pt;}
.y114{bottom:643.475200pt;}
.yd{bottom:646.793467pt;}
.y30{bottom:653.457733pt;}
.yc3{bottom:659.627867pt;}
.y79{bottom:659.824400pt;}
.y49{bottom:660.020933pt;}
.yf1{bottom:660.141867pt;}
.yc{bottom:661.460133pt;}
.yc2{bottom:676.961200pt;}
.y78{bottom:677.157733pt;}
.y48{bottom:677.354267pt;}
.yf0{bottom:677.475200pt;}
.yc1{bottom:694.294533pt;}
.y77{bottom:694.491067pt;}
.y47{bottom:694.687600pt;}
.yef{bottom:694.808533pt;}
.yb{bottom:696.132133pt;}
.yc0{bottom:711.627867pt;}
.y76{bottom:711.824400pt;}
.y46{bottom:712.020933pt;}
.yee{bottom:712.141867pt;}
.ya{bottom:713.460133pt;}
.ybf{bottom:728.961200pt;}
.y75{bottom:729.157733pt;}
.y45{bottom:729.354267pt;}
.y9{bottom:729.460133pt;}
.yed{bottom:729.475200pt;}
.ybe{bottom:746.294533pt;}
.y74{bottom:746.491067pt;}
.y44{bottom:746.687600pt;}
.yec{bottom:746.808533pt;}
.y8{bottom:760.134800pt;}
.ybd{bottom:763.627867pt;}
.y73{bottom:763.824400pt;}
.y43{bottom:764.020933pt;}
.y113{bottom:764.141867pt;}
.y7{bottom:776.130800pt;}
.ybc{bottom:780.961200pt;}
.y72{bottom:781.157733pt;}
.y42{bottom:781.354267pt;}
.yeb{bottom:781.475200pt;}
.y6{bottom:792.126800pt;}
.ybb{bottom:798.294533pt;}
.y71{bottom:798.491067pt;}
.y41{bottom:798.687600pt;}
.yea{bottom:798.808533pt;}
.y5{bottom:808.126800pt;}
.yba{bottom:815.627867pt;}
.y70{bottom:815.824400pt;}
.y6b{bottom:816.020933pt;}
.ye9{bottom:816.141867pt;}
.yb9{bottom:832.961200pt;}
.y6f{bottom:833.157733pt;}
.y40{bottom:833.354267pt;}
.ye8{bottom:833.475200pt;}
.y4{bottom:837.460133pt;}
.yb8{bottom:850.294533pt;}
.y6e{bottom:850.491067pt;}
.y3f{bottom:850.687600pt;}
.ye7{bottom:850.808533pt;}
.y3{bottom:861.460133pt;}
.yb7{bottom:867.627867pt;}
.y6d{bottom:867.824400pt;}
.y3e{bottom:868.020933pt;}
.ye6{bottom:868.141867pt;}
.yb6{bottom:884.961200pt;}
.y6c{bottom:885.157733pt;}
.y3d{bottom:885.354267pt;}
.ye5{bottom:885.475200pt;}
.y3c{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y3b{bottom:923.888133pt;}
.hd{height:30.378667pt;}
.hc{height:30.720000pt;}
.h6{height:33.328125pt;}
.h5{height:36.145833pt;}
.h7{height:37.057292pt;}
.hb{height:37.333333pt;}
.ha{height:37.973333pt;}
.h9{height:41.066667pt;}
.h8{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h4{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xe{left:56.692933pt;}
.x2{left:57.957867pt;}
.x1{left:63.336133pt;}
.xd{left:65.385867pt;}
.x13{left:80.692933pt;}
.xc{left:199.278133pt;}
.x3{left:227.371733pt;}
.x4{left:260.531733pt;}
.x8{left:312.917067pt;}
.xb{left:333.469733pt;}
.x12{left:355.492933pt;}
.x11{left:366.464133pt;}
.xa{left:378.697733pt;}
.x6{left:382.061067pt;}
.x7{left:425.801067pt;}
.x9{left:524.260933pt;}
.x5{left:532.665867pt;}
.x10{left:545.952133pt;}
.xf{left:562.556267pt;}
}




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