
    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_e1ae436e7462d199b9137963.woff')format("woff");}.ff1{font-family:ff1;line-height:1.123047;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_6f852eabd02da5624a7d493f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_03e3964e4ff3a516b099a5d9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.123047;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_99dd4d9ea96cca61285bf1d6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.123047;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_232a7b38d1f19361d6ec04b1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.126465;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_c6fd67173fb6e4a0c4475dbd.woff')format("woff");}.ff6{font-family:ff6;line-height:1.123047;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_657490d13fab3dc2cb80a866.woff')format("woff");}.ff7{font-family:ff7;line-height:0.709961;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_9f082c3187efe2c4b5185d60.woff')format("woff");}.ff8{font-family:ff8;line-height:1.123047;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_2cd72b6e533196e9efcdc003.woff')format("woff");}.ff9{font-family:ff9;line-height:1.123047;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_232a7b38d1f19361d6ec04b1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.126465;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_898ba0b2358383934ef11dc6.woff')format("woff");}.ffb{font-family:ffb;line-height:1.123047;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_ba8adfb23514bbacb2125d31.woff')format("woff");}.ffc{font-family:ffc;line-height:1.091797;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);}
.v7{vertical-align:-5.520000px;}
.v6{vertical-align:-3.600000px;}
.v1{vertical-align:-1.195200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.920000px;}
.v5{vertical-align:3.600000px;}
.v4{vertical-align:4.740000px;}
.v2{vertical-align:8.400000px;}
.v8{vertical-align:12.240000px;}
.ls2{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.600000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.900000px;}
.ls5{letter-spacing:2.040000px;}
.ls0{letter-spacing:2.138400px;}
.ls6{letter-spacing:4.980000px;}
.ls9{letter-spacing:15.240000px;}
.ls3{letter-spacing:204.245400px;}
.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;}
}
.wsd1{word-spacing:-15.840000px;}
.ws6d{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.200000px;}
.ws6c{word-spacing:-12.000000px;}
.ws0{word-spacing:-11.880000px;}
.ws1{word-spacing:-11.220000px;}
.wsb8{word-spacing:-6.000000px;}
.wsda{word-spacing:-4.980000px;}
.ws4d{word-spacing:-4.320000px;}
.wsed{word-spacing:-3.960000px;}
.wsd{word-spacing:-3.900000px;}
.ws2f{word-spacing:-3.420000px;}
.ws8b{word-spacing:-3.180000px;}
.ws1f{word-spacing:-3.000000px;}
.ws3a{word-spacing:-2.820000px;}
.ws1d{word-spacing:-2.640000px;}
.wsce{word-spacing:-2.580000px;}
.wsa3{word-spacing:-2.520000px;}
.ws6{word-spacing:-2.106000px;}
.ws96{word-spacing:-2.040000px;}
.ws48{word-spacing:-1.980000px;}
.ws5{word-spacing:-1.890000px;}
.ws43{word-spacing:-1.860000px;}
.ws15{word-spacing:-1.620000px;}
.wsde{word-spacing:-1.560000px;}
.ws29{word-spacing:-1.380000px;}
.wscd{word-spacing:-1.320000px;}
.ws1b{word-spacing:-1.200000px;}
.ws85{word-spacing:-1.140000px;}
.ws42{word-spacing:-1.080000px;}
.ws2e{word-spacing:-1.020000px;}
.ws13{word-spacing:-0.960000px;}
.ws31{word-spacing:-0.780000px;}
.ws9b{word-spacing:-0.600000px;}
.wsab{word-spacing:-0.540000px;}
.ws98{word-spacing:-0.420000px;}
.ws2d{word-spacing:-0.360000px;}
.wsd0{word-spacing:-0.120000px;}
.ws3{word-spacing:0.000000px;}
.ws34{word-spacing:0.120000px;}
.ws68{word-spacing:0.180000px;}
.wsc7{word-spacing:0.240000px;}
.ws6f{word-spacing:0.360000px;}
.ws4c{word-spacing:0.420000px;}
.ws49{word-spacing:0.480000px;}
.ws50{word-spacing:0.540000px;}
.ws6b{word-spacing:0.600000px;}
.ws12{word-spacing:0.660000px;}
.ws54{word-spacing:0.780000px;}
.wsa9{word-spacing:0.840000px;}
.ws89{word-spacing:0.900000px;}
.ws10{word-spacing:1.020000px;}
.ws6e{word-spacing:1.080000px;}
.ws70{word-spacing:1.200000px;}
.wsd5{word-spacing:1.320000px;}
.ws4e{word-spacing:1.440000px;}
.ws41{word-spacing:1.500000px;}
.wsaf{word-spacing:1.560000px;}
.ws59{word-spacing:1.680000px;}
.wsa4{word-spacing:1.800000px;}
.wsbb{word-spacing:1.860000px;}
.ws5f{word-spacing:1.920000px;}
.ws24{word-spacing:1.980000px;}
.ws45{word-spacing:2.040000px;}
.ws91{word-spacing:2.220000px;}
.ws4{word-spacing:2.268000px;}
.ws7e{word-spacing:2.280000px;}
.ws8a{word-spacing:2.340000px;}
.ws80{word-spacing:2.400000px;}
.wsb9{word-spacing:2.460000px;}
.ws79{word-spacing:2.520000px;}
.ws58{word-spacing:2.580000px;}
.ws53{word-spacing:2.640000px;}
.ws78{word-spacing:2.760000px;}
.ws28{word-spacing:2.820000px;}
.ws8d{word-spacing:2.880000px;}
.wsdc{word-spacing:2.940000px;}
.ws7d{word-spacing:3.000000px;}
.ws32{word-spacing:3.060000px;}
.ws5e{word-spacing:3.180000px;}
.wsdd{word-spacing:3.240000px;}
.ws7f{word-spacing:3.300000px;}
.ws61{word-spacing:3.360000px;}
.ws51{word-spacing:3.480000px;}
.ws1e{word-spacing:3.600000px;}
.ws1c{word-spacing:3.660000px;}
.ws7{word-spacing:3.672000px;}
.wse5{word-spacing:3.780000px;}
.ws92{word-spacing:3.960000px;}
.wse2{word-spacing:4.020000px;}
.wsea{word-spacing:4.200000px;}
.ws9c{word-spacing:4.320000px;}
.ws75{word-spacing:4.560000px;}
.ws67{word-spacing:4.620000px;}
.wsdb{word-spacing:4.680000px;}
.ws65{word-spacing:4.740000px;}
.wsc{word-spacing:4.800000px;}
.ws35{word-spacing:4.860000px;}
.ws19{word-spacing:4.920000px;}
.ws56{word-spacing:5.100000px;}
.ws23{word-spacing:5.160000px;}
.ws9f{word-spacing:5.280000px;}
.ws93{word-spacing:5.460000px;}
.ws8e{word-spacing:5.520000px;}
.ws46{word-spacing:5.580000px;}
.ws22{word-spacing:5.640000px;}
.wsca{word-spacing:5.700000px;}
.wsa6{word-spacing:5.760000px;}
.wsa0{word-spacing:5.820000px;}
.wsc9{word-spacing:5.880000px;}
.ws82{word-spacing:6.120000px;}
.ws4f{word-spacing:6.360000px;}
.ws8c{word-spacing:6.480000px;}
.wsba{word-spacing:6.600000px;}
.wsb2{word-spacing:6.720000px;}
.wse6{word-spacing:6.780000px;}
.ws26{word-spacing:6.960000px;}
.ws81{word-spacing:7.020000px;}
.ws57{word-spacing:7.080000px;}
.ws73{word-spacing:7.320000px;}
.wsa8{word-spacing:7.380000px;}
.ws18{word-spacing:7.440000px;}
.ws94{word-spacing:7.500000px;}
.wsb7{word-spacing:7.560000px;}
.ws52{word-spacing:7.620000px;}
.wsc2{word-spacing:7.800000px;}
.wsb4{word-spacing:7.920000px;}
.ws3d{word-spacing:8.040000px;}
.ws21{word-spacing:8.160000px;}
.ws97{word-spacing:8.220000px;}
.wsd9{word-spacing:8.280000px;}
.wsc8{word-spacing:8.400000px;}
.ws2c{word-spacing:8.460000px;}
.wsb3{word-spacing:8.700000px;}
.wsb1{word-spacing:8.940000px;}
.ws11{word-spacing:9.120000px;}
.ws69{word-spacing:9.360000px;}
.ws9{word-spacing:9.420000px;}
.wsb6{word-spacing:9.480000px;}
.ws38{word-spacing:9.600000px;}
.wse{word-spacing:9.660000px;}
.ws17{word-spacing:9.720000px;}
.wsf{word-spacing:9.900000px;}
.ws5a{word-spacing:10.080000px;}
.wsdf{word-spacing:10.200000px;}
.ws95{word-spacing:10.260000px;}
.ws5d{word-spacing:10.320000px;}
.ws74{word-spacing:10.440000px;}
.ws30{word-spacing:10.500000px;}
.ws62{word-spacing:10.680000px;}
.ws25{word-spacing:10.740000px;}
.ws5b{word-spacing:10.800000px;}
.ws36{word-spacing:11.520000px;}
.wsa5{word-spacing:11.640000px;}
.ws1a{word-spacing:11.700000px;}
.wsa7{word-spacing:11.820000px;}
.ws9e{word-spacing:11.880000px;}
.ws39{word-spacing:12.180000px;}
.wsac{word-spacing:12.720000px;}
.wsc3{word-spacing:12.780000px;}
.ws88{word-spacing:12.840000px;}
.ws55{word-spacing:13.020000px;}
.ws7b{word-spacing:13.080000px;}
.ws8f{word-spacing:13.200000px;}
.wse7{word-spacing:13.320000px;}
.ws3c{word-spacing:13.440000px;}
.ws37{word-spacing:13.500000px;}
.ws3b{word-spacing:13.620000px;}
.ws44{word-spacing:13.740000px;}
.wsad{word-spacing:13.980000px;}
.ws9d{word-spacing:14.100000px;}
.wscc{word-spacing:14.340000px;}
.ws99{word-spacing:14.520000px;}
.ws14{word-spacing:14.700000px;}
.ws8{word-spacing:14.742000px;}
.ws3f{word-spacing:14.760000px;}
.wsaa{word-spacing:14.820000px;}
.wsa1{word-spacing:14.880000px;}
.wsc6{word-spacing:14.940000px;}
.ws86{word-spacing:15.060000px;}
.ws64{word-spacing:15.180000px;}
.ws20{word-spacing:15.360000px;}
.wsbc{word-spacing:15.420000px;}
.ws4b{word-spacing:15.540000px;}
.ws90{word-spacing:15.600000px;}
.ws33{word-spacing:15.720000px;}
.ws47{word-spacing:15.780000px;}
.ws3e{word-spacing:15.900000px;}
.ws40{word-spacing:16.200000px;}
.ws83{word-spacing:16.380000px;}
.ws77{word-spacing:16.440000px;}
.ws2b{word-spacing:16.500000px;}
.wsae{word-spacing:16.620000px;}
.wsbd{word-spacing:16.680000px;}
.wscf{word-spacing:16.740000px;}
.wsd4{word-spacing:16.800000px;}
.wsc0{word-spacing:16.920000px;}
.wsd2{word-spacing:16.980000px;}
.wse9{word-spacing:17.280000px;}
.wsb5{word-spacing:17.400000px;}
.wsc4{word-spacing:17.580000px;}
.ws9a{word-spacing:17.640000px;}
.ws7c{word-spacing:17.700000px;}
.ws72{word-spacing:17.820000px;}
.wseb{word-spacing:18.060000px;}
.ws16{word-spacing:18.240000px;}
.ws5c{word-spacing:18.720000px;}
.wse8{word-spacing:19.020000px;}
.ws6a{word-spacing:19.080000px;}
.ws4a{word-spacing:19.140000px;}
.wse1{word-spacing:19.260000px;}
.ws2a{word-spacing:19.320000px;}
.ws27{word-spacing:19.380000px;}
.ws60{word-spacing:19.560000px;}
.wsec{word-spacing:19.860000px;}
.ws63{word-spacing:19.920000px;}
.ws87{word-spacing:19.980000px;}
.wse0{word-spacing:20.160000px;}
.wsc1{word-spacing:20.340000px;}
.wscb{word-spacing:20.700000px;}
.wsa{word-spacing:20.940000px;}
.ws76{word-spacing:21.000000px;}
.wsa2{word-spacing:21.780000px;}
.wsbf{word-spacing:22.560000px;}
.ws7a{word-spacing:22.860000px;}
.wsc5{word-spacing:24.600000px;}
.wsbe{word-spacing:25.080000px;}
.wsb0{word-spacing:25.140000px;}
.ws66{word-spacing:25.260000px;}
.wse3{word-spacing:26.460000px;}
.ws71{word-spacing:26.640000px;}
.wse4{word-spacing:29.100000px;}
.wsd7{word-spacing:35.520000px;}
.ws84{word-spacing:35.760000px;}
.wsd8{word-spacing:39.120000px;}
.wsb{word-spacing:43.980000px;}
.wsd6{word-spacing:45.900000px;}
.wsd3{word-spacing:46.740000px;}
._13{margin-left:-7.318200px;}
._4{margin-left:-6.015600px;}
._d{margin-left:-4.410000px;}
._1{margin-left:-3.187200px;}
._0{margin-left:-2.172000px;}
._6{margin-left:-1.128600px;}
._2{width:1.017600px;}
._3{width:2.514000px;}
._5{width:4.212000px;}
._7{width:5.496000px;}
._9{width:7.464000px;}
._a{width:8.592000px;}
._b{width:10.620000px;}
._e{width:11.760000px;}
._12{width:14.412000px;}
._f{width:16.260000px;}
._8{width:18.150000px;}
._10{width:19.572000px;}
._c{width:20.658000px;}
._11{width:25.164000px;}
._15{width:30.276000px;}
._14{width:31.758000px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:84.879450px;}
.y27{bottom:84.892950px;}
.y87{bottom:85.074450px;}
.y58{bottom:85.178250px;}
.y26{bottom:103.942950px;}
.y86{bottom:104.124450px;}
.yb2{bottom:104.154450px;}
.y57{bottom:104.228250px;}
.y25{bottom:122.992950px;}
.y85{bottom:123.174450px;}
.y56{bottom:123.278250px;}
.yb1{bottom:123.429450px;}
.y24{bottom:142.042950px;}
.y84{bottom:142.224450px;}
.y55{bottom:142.328250px;}
.yb0{bottom:142.704450px;}
.y23{bottom:161.092950px;}
.y54{bottom:161.378250px;}
.yaf{bottom:161.979450px;}
.y83{bottom:169.779450px;}
.y22{bottom:180.142950px;}
.y53{bottom:180.428250px;}
.yae{bottom:181.254450px;}
.y82{bottom:187.779450px;}
.y21{bottom:199.192950px;}
.y52{bottom:199.478250px;}
.yad{bottom:200.529450px;}
.y81{bottom:205.779450px;}
.y20{bottom:218.242950px;}
.y51{bottom:218.528250px;}
.yac{bottom:219.804450px;}
.y80{bottom:223.779450px;}
.yf2{bottom:225.427800px;}
.y1f{bottom:237.292950px;}
.y50{bottom:237.578250px;}
.yab{bottom:239.079450px;}
.y7f{bottom:241.779450px;}
.yf1{bottom:244.477800px;}
.y1e{bottom:256.342950px;}
.y4f{bottom:256.628250px;}
.yaa{bottom:258.354450px;}
.y7e{bottom:259.779450px;}
.yf0{bottom:263.527800px;}
.y1d{bottom:275.392950px;}
.y4e{bottom:275.678250px;}
.ya9{bottom:277.629450px;}
.y7d{bottom:277.779450px;}
.yef{bottom:291.082800px;}
.y1c{bottom:294.442950px;}
.y4d{bottom:294.728250px;}
.y7c{bottom:295.779450px;}
.ya8{bottom:296.904450px;}
.y1b{bottom:313.492950px;}
.y4c{bottom:313.778250px;}
.y7b{bottom:313.779450px;}
.ya7{bottom:316.179450px;}
.y1a{bottom:332.542950px;}
.y4b{bottom:332.828250px;}
.y7a{bottom:332.829450px;}
.ya6{bottom:335.454450px;}
.y19{bottom:351.592950px;}
.y4a{bottom:351.878250px;}
.y79{bottom:351.879450px;}
.ya5{bottom:354.729450px;}
.y18{bottom:370.642950px;}
.y49{bottom:370.928250px;}
.y78{bottom:370.929450px;}
.ya4{bottom:374.004450px;}
.ycf{bottom:377.047800px;}
.y17{bottom:389.692950px;}
.yee{bottom:389.977800px;}
.y48{bottom:389.978250px;}
.y77{bottom:389.979450px;}
.ya3{bottom:393.279450px;}
.yce{bottom:396.097800px;}
.y16{bottom:408.742950px;}
.yed{bottom:409.027800px;}
.y47{bottom:409.028250px;}
.y76{bottom:409.029450px;}
.ya2{bottom:412.554450px;}
.ycd{bottom:415.147800px;}
.y15{bottom:427.792950px;}
.yec{bottom:428.077800px;}
.y46{bottom:428.078250px;}
.y75{bottom:428.079450px;}
.ya1{bottom:431.829450px;}
.ycc{bottom:434.197800px;}
.y14{bottom:446.842950px;}
.yeb{bottom:447.127800px;}
.y45{bottom:447.128250px;}
.y74{bottom:447.129450px;}
.ya0{bottom:451.104450px;}
.ycb{bottom:453.247800px;}
.y13{bottom:465.892950px;}
.yea{bottom:466.177800px;}
.y44{bottom:466.178250px;}
.y73{bottom:466.179450px;}
.y9f{bottom:470.379450px;}
.yca{bottom:472.297800px;}
.y12{bottom:484.942950px;}
.ye9{bottom:485.227800px;}
.y43{bottom:485.228250px;}
.y72{bottom:485.229450px;}
.y9e{bottom:489.654450px;}
.yc9{bottom:491.347800px;}
.y11{bottom:503.992950px;}
.ye8{bottom:504.277800px;}
.y42{bottom:504.278250px;}
.y71{bottom:504.279450px;}
.y9d{bottom:508.929450px;}
.yc8{bottom:510.397800px;}
.y10{bottom:523.042950px;}
.ye7{bottom:523.327800px;}
.y41{bottom:523.328250px;}
.y70{bottom:523.329450px;}
.y9c{bottom:528.204450px;}
.yc7{bottom:529.447800px;}
.yf{bottom:542.092950px;}
.ye6{bottom:542.377800px;}
.y40{bottom:542.378250px;}
.y6f{bottom:542.379450px;}
.y9b{bottom:547.479450px;}
.yc6{bottom:548.497800px;}
.ye{bottom:561.142950px;}
.ye5{bottom:561.427800px;}
.y3f{bottom:561.428250px;}
.y6e{bottom:561.429450px;}
.y9a{bottom:566.754450px;}
.yc5{bottom:567.547800px;}
.yd{bottom:580.192950px;}
.ye4{bottom:580.477800px;}
.y3e{bottom:580.478250px;}
.y6d{bottom:580.479450px;}
.y99{bottom:586.029450px;}
.yc4{bottom:586.597800px;}
.ye3{bottom:599.527800px;}
.y3d{bottom:599.528250px;}
.y6c{bottom:599.529450px;}
.y98{bottom:605.304450px;}
.yc3{bottom:605.647800px;}
.ye2{bottom:618.577800px;}
.y3c{bottom:618.578250px;}
.y6b{bottom:618.579450px;}
.y97{bottom:624.579450px;}
.yc2{bottom:624.697800px;}
.ye1{bottom:637.627800px;}
.y3b{bottom:637.628250px;}
.y6a{bottom:637.629450px;}
.yc1{bottom:643.747800px;}
.y96{bottom:643.854450px;}
.yc{bottom:647.128800px;}
.ye0{bottom:656.677800px;}
.y3a{bottom:656.678250px;}
.y69{bottom:656.679450px;}
.yc0{bottom:662.797800px;}
.y95{bottom:663.129450px;}
.yb{bottom:664.678800px;}
.ydf{bottom:675.727800px;}
.y39{bottom:675.728250px;}
.y68{bottom:675.729450px;}
.ybf{bottom:681.847800px;}
.y94{bottom:682.404450px;}
.yde{bottom:694.777800px;}
.y38{bottom:694.778250px;}
.y67{bottom:694.779450px;}
.ya{bottom:694.986300px;}
.ybe{bottom:700.897800px;}
.y93{bottom:701.679450px;}
.y9{bottom:712.536300px;}
.ydd{bottom:713.827800px;}
.y37{bottom:713.828250px;}
.y66{bottom:713.829450px;}
.ybd{bottom:719.947800px;}
.y92{bottom:720.954450px;}
.y8{bottom:730.086300px;}
.ydc{bottom:732.877800px;}
.y36{bottom:732.878250px;}
.y65{bottom:732.879450px;}
.ybc{bottom:738.997800px;}
.y91{bottom:740.229450px;}
.y7{bottom:747.636300px;}
.ydb{bottom:751.927800px;}
.y35{bottom:751.928250px;}
.y64{bottom:751.929450px;}
.ybb{bottom:758.047800px;}
.y90{bottom:759.504450px;}
.y6{bottom:765.186300px;}
.yda{bottom:770.977800px;}
.y34{bottom:770.978250px;}
.y63{bottom:770.979450px;}
.yba{bottom:777.097800px;}
.y5{bottom:782.736300px;}
.y8f{bottom:789.279450px;}
.yd9{bottom:790.027800px;}
.y33{bottom:790.028250px;}
.y62{bottom:790.029450px;}
.y8e{bottom:808.554450px;}
.yd8{bottom:809.077800px;}
.y32{bottom:809.078250px;}
.y61{bottom:809.079450px;}
.yb9{bottom:813.155700px;}
.y8d{bottom:827.829450px;}
.yd7{bottom:828.127800px;}
.y31{bottom:828.128250px;}
.y60{bottom:828.129450px;}
.y4{bottom:842.806050px;}
.y8c{bottom:847.104450px;}
.yd6{bottom:847.177800px;}
.y30{bottom:847.178250px;}
.y5f{bottom:847.179450px;}
.yb8{bottom:864.969450px;}
.yd5{bottom:866.227800px;}
.y2f{bottom:866.228250px;}
.y5e{bottom:866.229450px;}
.yb7{bottom:884.019450px;}
.y8b{bottom:884.379450px;}
.yd4{bottom:885.277800px;}
.y2e{bottom:885.278250px;}
.y5d{bottom:885.279450px;}
.yb6{bottom:903.069450px;}
.y3{bottom:903.325800px;}
.y8a{bottom:903.654450px;}
.yd3{bottom:904.327800px;}
.y2d{bottom:904.328250px;}
.y5c{bottom:904.329450px;}
.yb5{bottom:922.119450px;}
.y89{bottom:922.929450px;}
.yd2{bottom:923.377800px;}
.y2c{bottom:923.378250px;}
.y5b{bottom:923.379450px;}
.y2{bottom:930.325800px;}
.y88{bottom:942.204450px;}
.yd1{bottom:942.427800px;}
.y2b{bottom:942.428250px;}
.y5a{bottom:942.429450px;}
.yb4{bottom:958.177350px;}
.yd0{bottom:961.477800px;}
.y2a{bottom:961.478250px;}
.y59{bottom:961.479450px;}
.y1{bottom:1016.748900px;}
.y29{bottom:1020.488250px;}
.y28{bottom:1020.788250px;}
.h7{height:41.660156px;}
.h6{height:47.460938px;}
.h5{height:47.750977px;}
.h2{height:52.734375px;}
.ha{height:52.792969px;}
.h8{height:53.056641px;}
.h9{height:61.192969px;}
.h4{height:63.281250px;}
.hc{height:63.667969px;}
.hb{height:65.032969px;}
.h3{height:84.890625px;}
.h0{height:1084.252500px;}
.h1{height:1084.500000px;}
.w0{width:875.905500px;}
.w1{width:876.000000px;}
.x0{left:0.000000px;}
.x9{left:63.786750px;}
.xa{left:85.041750px;}
.x1{left:106.299150px;}
.x2{left:125.105250px;}
.x5{left:127.554150px;}
.xd{left:164.859600px;}
.x10{left:201.195900px;}
.x11{left:234.444900px;}
.x3{left:304.505250px;}
.x8{left:375.336750px;}
.x4{left:404.553450px;}
.xb{left:427.326750px;}
.xc{left:448.581750px;}
.x6{left:469.839150px;}
.xe{left:477.505950px;}
.x7{left:491.094150px;}
.xf{left:647.230950px;}
@media print{
.v7{vertical-align:-4.906667pt;}
.v6{vertical-align:-3.200000pt;}
.v1{vertical-align:-1.062400pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.706667pt;}
.v5{vertical-align:3.200000pt;}
.v4{vertical-align:4.213333pt;}
.v2{vertical-align:7.466667pt;}
.v8{vertical-align:10.880000pt;}
.ls2{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.800000pt;}
.ls5{letter-spacing:1.813333pt;}
.ls0{letter-spacing:1.900800pt;}
.ls6{letter-spacing:4.426667pt;}
.ls9{letter-spacing:13.546667pt;}
.ls3{letter-spacing:181.551467pt;}
.wsd1{word-spacing:-14.080000pt;}
.ws6d{word-spacing:-13.333333pt;}
.ws2{word-spacing:-11.733333pt;}
.ws6c{word-spacing:-10.666667pt;}
.ws0{word-spacing:-10.560000pt;}
.ws1{word-spacing:-9.973333pt;}
.wsb8{word-spacing:-5.333333pt;}
.wsda{word-spacing:-4.426667pt;}
.ws4d{word-spacing:-3.840000pt;}
.wsed{word-spacing:-3.520000pt;}
.wsd{word-spacing:-3.466667pt;}
.ws2f{word-spacing:-3.040000pt;}
.ws8b{word-spacing:-2.826667pt;}
.ws1f{word-spacing:-2.666667pt;}
.ws3a{word-spacing:-2.506667pt;}
.ws1d{word-spacing:-2.346667pt;}
.wsce{word-spacing:-2.293333pt;}
.wsa3{word-spacing:-2.240000pt;}
.ws6{word-spacing:-1.872000pt;}
.ws96{word-spacing:-1.813333pt;}
.ws48{word-spacing:-1.760000pt;}
.ws5{word-spacing:-1.680000pt;}
.ws43{word-spacing:-1.653333pt;}
.ws15{word-spacing:-1.440000pt;}
.wsde{word-spacing:-1.386667pt;}
.ws29{word-spacing:-1.226667pt;}
.wscd{word-spacing:-1.173333pt;}
.ws1b{word-spacing:-1.066667pt;}
.ws85{word-spacing:-1.013333pt;}
.ws42{word-spacing:-0.960000pt;}
.ws2e{word-spacing:-0.906667pt;}
.ws13{word-spacing:-0.853333pt;}
.ws31{word-spacing:-0.693333pt;}
.ws9b{word-spacing:-0.533333pt;}
.wsab{word-spacing:-0.480000pt;}
.ws98{word-spacing:-0.373333pt;}
.ws2d{word-spacing:-0.320000pt;}
.wsd0{word-spacing:-0.106667pt;}
.ws3{word-spacing:0.000000pt;}
.ws34{word-spacing:0.106667pt;}
.ws68{word-spacing:0.160000pt;}
.wsc7{word-spacing:0.213333pt;}
.ws6f{word-spacing:0.320000pt;}
.ws4c{word-spacing:0.373333pt;}
.ws49{word-spacing:0.426667pt;}
.ws50{word-spacing:0.480000pt;}
.ws6b{word-spacing:0.533333pt;}
.ws12{word-spacing:0.586667pt;}
.ws54{word-spacing:0.693333pt;}
.wsa9{word-spacing:0.746667pt;}
.ws89{word-spacing:0.800000pt;}
.ws10{word-spacing:0.906667pt;}
.ws6e{word-spacing:0.960000pt;}
.ws70{word-spacing:1.066667pt;}
.wsd5{word-spacing:1.173333pt;}
.ws4e{word-spacing:1.280000pt;}
.ws41{word-spacing:1.333333pt;}
.wsaf{word-spacing:1.386667pt;}
.ws59{word-spacing:1.493333pt;}
.wsa4{word-spacing:1.600000pt;}
.wsbb{word-spacing:1.653333pt;}
.ws5f{word-spacing:1.706667pt;}
.ws24{word-spacing:1.760000pt;}
.ws45{word-spacing:1.813333pt;}
.ws91{word-spacing:1.973333pt;}
.ws4{word-spacing:2.016000pt;}
.ws7e{word-spacing:2.026667pt;}
.ws8a{word-spacing:2.080000pt;}
.ws80{word-spacing:2.133333pt;}
.wsb9{word-spacing:2.186667pt;}
.ws79{word-spacing:2.240000pt;}
.ws58{word-spacing:2.293333pt;}
.ws53{word-spacing:2.346667pt;}
.ws78{word-spacing:2.453333pt;}
.ws28{word-spacing:2.506667pt;}
.ws8d{word-spacing:2.560000pt;}
.wsdc{word-spacing:2.613333pt;}
.ws7d{word-spacing:2.666667pt;}
.ws32{word-spacing:2.720000pt;}
.ws5e{word-spacing:2.826667pt;}
.wsdd{word-spacing:2.880000pt;}
.ws7f{word-spacing:2.933333pt;}
.ws61{word-spacing:2.986667pt;}
.ws51{word-spacing:3.093333pt;}
.ws1e{word-spacing:3.200000pt;}
.ws1c{word-spacing:3.253333pt;}
.ws7{word-spacing:3.264000pt;}
.wse5{word-spacing:3.360000pt;}
.ws92{word-spacing:3.520000pt;}
.wse2{word-spacing:3.573333pt;}
.wsea{word-spacing:3.733333pt;}
.ws9c{word-spacing:3.840000pt;}
.ws75{word-spacing:4.053333pt;}
.ws67{word-spacing:4.106667pt;}
.wsdb{word-spacing:4.160000pt;}
.ws65{word-spacing:4.213333pt;}
.wsc{word-spacing:4.266667pt;}
.ws35{word-spacing:4.320000pt;}
.ws19{word-spacing:4.373333pt;}
.ws56{word-spacing:4.533333pt;}
.ws23{word-spacing:4.586667pt;}
.ws9f{word-spacing:4.693333pt;}
.ws93{word-spacing:4.853333pt;}
.ws8e{word-spacing:4.906667pt;}
.ws46{word-spacing:4.960000pt;}
.ws22{word-spacing:5.013333pt;}
.wsca{word-spacing:5.066667pt;}
.wsa6{word-spacing:5.120000pt;}
.wsa0{word-spacing:5.173333pt;}
.wsc9{word-spacing:5.226667pt;}
.ws82{word-spacing:5.440000pt;}
.ws4f{word-spacing:5.653333pt;}
.ws8c{word-spacing:5.760000pt;}
.wsba{word-spacing:5.866667pt;}
.wsb2{word-spacing:5.973333pt;}
.wse6{word-spacing:6.026667pt;}
.ws26{word-spacing:6.186667pt;}
.ws81{word-spacing:6.240000pt;}
.ws57{word-spacing:6.293333pt;}
.ws73{word-spacing:6.506667pt;}
.wsa8{word-spacing:6.560000pt;}
.ws18{word-spacing:6.613333pt;}
.ws94{word-spacing:6.666667pt;}
.wsb7{word-spacing:6.720000pt;}
.ws52{word-spacing:6.773333pt;}
.wsc2{word-spacing:6.933333pt;}
.wsb4{word-spacing:7.040000pt;}
.ws3d{word-spacing:7.146667pt;}
.ws21{word-spacing:7.253333pt;}
.ws97{word-spacing:7.306667pt;}
.wsd9{word-spacing:7.360000pt;}
.wsc8{word-spacing:7.466667pt;}
.ws2c{word-spacing:7.520000pt;}
.wsb3{word-spacing:7.733333pt;}
.wsb1{word-spacing:7.946667pt;}
.ws11{word-spacing:8.106667pt;}
.ws69{word-spacing:8.320000pt;}
.ws9{word-spacing:8.373333pt;}
.wsb6{word-spacing:8.426667pt;}
.ws38{word-spacing:8.533333pt;}
.wse{word-spacing:8.586667pt;}
.ws17{word-spacing:8.640000pt;}
.wsf{word-spacing:8.800000pt;}
.ws5a{word-spacing:8.960000pt;}
.wsdf{word-spacing:9.066667pt;}
.ws95{word-spacing:9.120000pt;}
.ws5d{word-spacing:9.173333pt;}
.ws74{word-spacing:9.280000pt;}
.ws30{word-spacing:9.333333pt;}
.ws62{word-spacing:9.493333pt;}
.ws25{word-spacing:9.546667pt;}
.ws5b{word-spacing:9.600000pt;}
.ws36{word-spacing:10.240000pt;}
.wsa5{word-spacing:10.346667pt;}
.ws1a{word-spacing:10.400000pt;}
.wsa7{word-spacing:10.506667pt;}
.ws9e{word-spacing:10.560000pt;}
.ws39{word-spacing:10.826667pt;}
.wsac{word-spacing:11.306667pt;}
.wsc3{word-spacing:11.360000pt;}
.ws88{word-spacing:11.413333pt;}
.ws55{word-spacing:11.573333pt;}
.ws7b{word-spacing:11.626667pt;}
.ws8f{word-spacing:11.733333pt;}
.wse7{word-spacing:11.840000pt;}
.ws3c{word-spacing:11.946667pt;}
.ws37{word-spacing:12.000000pt;}
.ws3b{word-spacing:12.106667pt;}
.ws44{word-spacing:12.213333pt;}
.wsad{word-spacing:12.426667pt;}
.ws9d{word-spacing:12.533333pt;}
.wscc{word-spacing:12.746667pt;}
.ws99{word-spacing:12.906667pt;}
.ws14{word-spacing:13.066667pt;}
.ws8{word-spacing:13.104000pt;}
.ws3f{word-spacing:13.120000pt;}
.wsaa{word-spacing:13.173333pt;}
.wsa1{word-spacing:13.226667pt;}
.wsc6{word-spacing:13.280000pt;}
.ws86{word-spacing:13.386667pt;}
.ws64{word-spacing:13.493333pt;}
.ws20{word-spacing:13.653333pt;}
.wsbc{word-spacing:13.706667pt;}
.ws4b{word-spacing:13.813333pt;}
.ws90{word-spacing:13.866667pt;}
.ws33{word-spacing:13.973333pt;}
.ws47{word-spacing:14.026667pt;}
.ws3e{word-spacing:14.133333pt;}
.ws40{word-spacing:14.400000pt;}
.ws83{word-spacing:14.560000pt;}
.ws77{word-spacing:14.613333pt;}
.ws2b{word-spacing:14.666667pt;}
.wsae{word-spacing:14.773333pt;}
.wsbd{word-spacing:14.826667pt;}
.wscf{word-spacing:14.880000pt;}
.wsd4{word-spacing:14.933333pt;}
.wsc0{word-spacing:15.040000pt;}
.wsd2{word-spacing:15.093333pt;}
.wse9{word-spacing:15.360000pt;}
.wsb5{word-spacing:15.466667pt;}
.wsc4{word-spacing:15.626667pt;}
.ws9a{word-spacing:15.680000pt;}
.ws7c{word-spacing:15.733333pt;}
.ws72{word-spacing:15.840000pt;}
.wseb{word-spacing:16.053333pt;}
.ws16{word-spacing:16.213333pt;}
.ws5c{word-spacing:16.640000pt;}
.wse8{word-spacing:16.906667pt;}
.ws6a{word-spacing:16.960000pt;}
.ws4a{word-spacing:17.013333pt;}
.wse1{word-spacing:17.120000pt;}
.ws2a{word-spacing:17.173333pt;}
.ws27{word-spacing:17.226667pt;}
.ws60{word-spacing:17.386667pt;}
.wsec{word-spacing:17.653333pt;}
.ws63{word-spacing:17.706667pt;}
.ws87{word-spacing:17.760000pt;}
.wse0{word-spacing:17.920000pt;}
.wsc1{word-spacing:18.080000pt;}
.wscb{word-spacing:18.400000pt;}
.wsa{word-spacing:18.613333pt;}
.ws76{word-spacing:18.666667pt;}
.wsa2{word-spacing:19.360000pt;}
.wsbf{word-spacing:20.053333pt;}
.ws7a{word-spacing:20.320000pt;}
.wsc5{word-spacing:21.866667pt;}
.wsbe{word-spacing:22.293333pt;}
.wsb0{word-spacing:22.346667pt;}
.ws66{word-spacing:22.453333pt;}
.wse3{word-spacing:23.520000pt;}
.ws71{word-spacing:23.680000pt;}
.wse4{word-spacing:25.866667pt;}
.wsd7{word-spacing:31.573333pt;}
.ws84{word-spacing:31.786667pt;}
.wsd8{word-spacing:34.773333pt;}
.wsb{word-spacing:39.093333pt;}
.wsd6{word-spacing:40.800000pt;}
.wsd3{word-spacing:41.546667pt;}
._13{margin-left:-6.505067pt;}
._4{margin-left:-5.347200pt;}
._d{margin-left:-3.920000pt;}
._1{margin-left:-2.833067pt;}
._0{margin-left:-1.930667pt;}
._6{margin-left:-1.003200pt;}
._2{width:0.904533pt;}
._3{width:2.234667pt;}
._5{width:3.744000pt;}
._7{width:4.885333pt;}
._9{width:6.634667pt;}
._a{width:7.637333pt;}
._b{width:9.440000pt;}
._e{width:10.453333pt;}
._12{width:12.810667pt;}
._f{width:14.453333pt;}
._8{width:16.133333pt;}
._10{width:17.397333pt;}
._c{width:18.362667pt;}
._11{width:22.368000pt;}
._15{width:26.912000pt;}
._14{width:28.229333pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:75.448400pt;}
.y27{bottom:75.460400pt;}
.y87{bottom:75.621733pt;}
.y58{bottom:75.714000pt;}
.y26{bottom:92.393733pt;}
.y86{bottom:92.555067pt;}
.yb2{bottom:92.581733pt;}
.y57{bottom:92.647333pt;}
.y25{bottom:109.327067pt;}
.y85{bottom:109.488400pt;}
.y56{bottom:109.580667pt;}
.yb1{bottom:109.715067pt;}
.y24{bottom:126.260400pt;}
.y84{bottom:126.421733pt;}
.y55{bottom:126.514000pt;}
.yb0{bottom:126.848400pt;}
.y23{bottom:143.193733pt;}
.y54{bottom:143.447333pt;}
.yaf{bottom:143.981733pt;}
.y83{bottom:150.915067pt;}
.y22{bottom:160.127067pt;}
.y53{bottom:160.380667pt;}
.yae{bottom:161.115067pt;}
.y82{bottom:166.915067pt;}
.y21{bottom:177.060400pt;}
.y52{bottom:177.314000pt;}
.yad{bottom:178.248400pt;}
.y81{bottom:182.915067pt;}
.y20{bottom:193.993733pt;}
.y51{bottom:194.247333pt;}
.yac{bottom:195.381733pt;}
.y80{bottom:198.915067pt;}
.yf2{bottom:200.380267pt;}
.y1f{bottom:210.927067pt;}
.y50{bottom:211.180667pt;}
.yab{bottom:212.515067pt;}
.y7f{bottom:214.915067pt;}
.yf1{bottom:217.313600pt;}
.y1e{bottom:227.860400pt;}
.y4f{bottom:228.114000pt;}
.yaa{bottom:229.648400pt;}
.y7e{bottom:230.915067pt;}
.yf0{bottom:234.246933pt;}
.y1d{bottom:244.793733pt;}
.y4e{bottom:245.047333pt;}
.ya9{bottom:246.781733pt;}
.y7d{bottom:246.915067pt;}
.yef{bottom:258.740267pt;}
.y1c{bottom:261.727067pt;}
.y4d{bottom:261.980667pt;}
.y7c{bottom:262.915067pt;}
.ya8{bottom:263.915067pt;}
.y1b{bottom:278.660400pt;}
.y4c{bottom:278.914000pt;}
.y7b{bottom:278.915067pt;}
.ya7{bottom:281.048400pt;}
.y1a{bottom:295.593733pt;}
.y4b{bottom:295.847333pt;}
.y7a{bottom:295.848400pt;}
.ya6{bottom:298.181733pt;}
.y19{bottom:312.527067pt;}
.y4a{bottom:312.780667pt;}
.y79{bottom:312.781733pt;}
.ya5{bottom:315.315067pt;}
.y18{bottom:329.460400pt;}
.y49{bottom:329.714000pt;}
.y78{bottom:329.715067pt;}
.ya4{bottom:332.448400pt;}
.ycf{bottom:335.153600pt;}
.y17{bottom:346.393733pt;}
.yee{bottom:346.646933pt;}
.y48{bottom:346.647333pt;}
.y77{bottom:346.648400pt;}
.ya3{bottom:349.581733pt;}
.yce{bottom:352.086933pt;}
.y16{bottom:363.327067pt;}
.yed{bottom:363.580267pt;}
.y47{bottom:363.580667pt;}
.y76{bottom:363.581733pt;}
.ya2{bottom:366.715067pt;}
.ycd{bottom:369.020267pt;}
.y15{bottom:380.260400pt;}
.yec{bottom:380.513600pt;}
.y46{bottom:380.514000pt;}
.y75{bottom:380.515067pt;}
.ya1{bottom:383.848400pt;}
.ycc{bottom:385.953600pt;}
.y14{bottom:397.193733pt;}
.yeb{bottom:397.446933pt;}
.y45{bottom:397.447333pt;}
.y74{bottom:397.448400pt;}
.ya0{bottom:400.981733pt;}
.ycb{bottom:402.886933pt;}
.y13{bottom:414.127067pt;}
.yea{bottom:414.380267pt;}
.y44{bottom:414.380667pt;}
.y73{bottom:414.381733pt;}
.y9f{bottom:418.115067pt;}
.yca{bottom:419.820267pt;}
.y12{bottom:431.060400pt;}
.ye9{bottom:431.313600pt;}
.y43{bottom:431.314000pt;}
.y72{bottom:431.315067pt;}
.y9e{bottom:435.248400pt;}
.yc9{bottom:436.753600pt;}
.y11{bottom:447.993733pt;}
.ye8{bottom:448.246933pt;}
.y42{bottom:448.247333pt;}
.y71{bottom:448.248400pt;}
.y9d{bottom:452.381733pt;}
.yc8{bottom:453.686933pt;}
.y10{bottom:464.927067pt;}
.ye7{bottom:465.180267pt;}
.y41{bottom:465.180667pt;}
.y70{bottom:465.181733pt;}
.y9c{bottom:469.515067pt;}
.yc7{bottom:470.620267pt;}
.yf{bottom:481.860400pt;}
.ye6{bottom:482.113600pt;}
.y40{bottom:482.114000pt;}
.y6f{bottom:482.115067pt;}
.y9b{bottom:486.648400pt;}
.yc6{bottom:487.553600pt;}
.ye{bottom:498.793733pt;}
.ye5{bottom:499.046933pt;}
.y3f{bottom:499.047333pt;}
.y6e{bottom:499.048400pt;}
.y9a{bottom:503.781733pt;}
.yc5{bottom:504.486933pt;}
.yd{bottom:515.727067pt;}
.ye4{bottom:515.980267pt;}
.y3e{bottom:515.980667pt;}
.y6d{bottom:515.981733pt;}
.y99{bottom:520.915067pt;}
.yc4{bottom:521.420267pt;}
.ye3{bottom:532.913600pt;}
.y3d{bottom:532.914000pt;}
.y6c{bottom:532.915067pt;}
.y98{bottom:538.048400pt;}
.yc3{bottom:538.353600pt;}
.ye2{bottom:549.846933pt;}
.y3c{bottom:549.847333pt;}
.y6b{bottom:549.848400pt;}
.y97{bottom:555.181733pt;}
.yc2{bottom:555.286933pt;}
.ye1{bottom:566.780267pt;}
.y3b{bottom:566.780667pt;}
.y6a{bottom:566.781733pt;}
.yc1{bottom:572.220267pt;}
.y96{bottom:572.315067pt;}
.yc{bottom:575.225600pt;}
.ye0{bottom:583.713600pt;}
.y3a{bottom:583.714000pt;}
.y69{bottom:583.715067pt;}
.yc0{bottom:589.153600pt;}
.y95{bottom:589.448400pt;}
.yb{bottom:590.825600pt;}
.ydf{bottom:600.646933pt;}
.y39{bottom:600.647333pt;}
.y68{bottom:600.648400pt;}
.ybf{bottom:606.086933pt;}
.y94{bottom:606.581733pt;}
.yde{bottom:617.580267pt;}
.y38{bottom:617.580667pt;}
.y67{bottom:617.581733pt;}
.ya{bottom:617.765600pt;}
.ybe{bottom:623.020267pt;}
.y93{bottom:623.715067pt;}
.y9{bottom:633.365600pt;}
.ydd{bottom:634.513600pt;}
.y37{bottom:634.514000pt;}
.y66{bottom:634.515067pt;}
.ybd{bottom:639.953600pt;}
.y92{bottom:640.848400pt;}
.y8{bottom:648.965600pt;}
.ydc{bottom:651.446933pt;}
.y36{bottom:651.447333pt;}
.y65{bottom:651.448400pt;}
.ybc{bottom:656.886933pt;}
.y91{bottom:657.981733pt;}
.y7{bottom:664.565600pt;}
.ydb{bottom:668.380267pt;}
.y35{bottom:668.380667pt;}
.y64{bottom:668.381733pt;}
.ybb{bottom:673.820267pt;}
.y90{bottom:675.115067pt;}
.y6{bottom:680.165600pt;}
.yda{bottom:685.313600pt;}
.y34{bottom:685.314000pt;}
.y63{bottom:685.315067pt;}
.yba{bottom:690.753600pt;}
.y5{bottom:695.765600pt;}
.y8f{bottom:701.581733pt;}
.yd9{bottom:702.246933pt;}
.y33{bottom:702.247333pt;}
.y62{bottom:702.248400pt;}
.y8e{bottom:718.715067pt;}
.yd8{bottom:719.180267pt;}
.y32{bottom:719.180667pt;}
.y61{bottom:719.181733pt;}
.yb9{bottom:722.805067pt;}
.y8d{bottom:735.848400pt;}
.yd7{bottom:736.113600pt;}
.y31{bottom:736.114000pt;}
.y60{bottom:736.115067pt;}
.y4{bottom:749.160933pt;}
.y8c{bottom:752.981733pt;}
.yd6{bottom:753.046933pt;}
.y30{bottom:753.047333pt;}
.y5f{bottom:753.048400pt;}
.yb8{bottom:768.861733pt;}
.yd5{bottom:769.980267pt;}
.y2f{bottom:769.980667pt;}
.y5e{bottom:769.981733pt;}
.yb7{bottom:785.795067pt;}
.y8b{bottom:786.115067pt;}
.yd4{bottom:786.913600pt;}
.y2e{bottom:786.914000pt;}
.y5d{bottom:786.915067pt;}
.yb6{bottom:802.728400pt;}
.y3{bottom:802.956267pt;}
.y8a{bottom:803.248400pt;}
.yd3{bottom:803.846933pt;}
.y2d{bottom:803.847333pt;}
.y5c{bottom:803.848400pt;}
.yb5{bottom:819.661733pt;}
.y89{bottom:820.381733pt;}
.yd2{bottom:820.780267pt;}
.y2c{bottom:820.780667pt;}
.y5b{bottom:820.781733pt;}
.y2{bottom:826.956267pt;}
.y88{bottom:837.515067pt;}
.yd1{bottom:837.713600pt;}
.y2b{bottom:837.714000pt;}
.y5a{bottom:837.715067pt;}
.yb4{bottom:851.713200pt;}
.yd0{bottom:854.646933pt;}
.y2a{bottom:854.647333pt;}
.y59{bottom:854.648400pt;}
.y1{bottom:903.776800pt;}
.y29{bottom:907.100667pt;}
.y28{bottom:907.367333pt;}
.h7{height:37.031250pt;}
.h6{height:42.187500pt;}
.h5{height:42.445312pt;}
.h2{height:46.875000pt;}
.ha{height:46.927083pt;}
.h8{height:47.161458pt;}
.h9{height:54.393750pt;}
.h4{height:56.250000pt;}
.hc{height:56.593750pt;}
.hb{height:57.807083pt;}
.h3{height:75.458333pt;}
.h0{height:963.780000pt;}
.h1{height:964.000000pt;}
.w0{width:778.582667pt;}
.w1{width:778.666667pt;}
.x0{left:0.000000pt;}
.x9{left:56.699333pt;}
.xa{left:75.592667pt;}
.x1{left:94.488133pt;}
.x2{left:111.204667pt;}
.x5{left:113.381467pt;}
.xd{left:146.541867pt;}
.x10{left:178.840800pt;}
.x11{left:208.395467pt;}
.x3{left:270.671333pt;}
.x8{left:333.632667pt;}
.x4{left:359.603067pt;}
.xb{left:379.846000pt;}
.xc{left:398.739333pt;}
.x6{left:417.634800pt;}
.xe{left:424.449733pt;}
.x7{left:436.528133pt;}
.xf{left:575.316400pt;}
}




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