
    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_e1150e2009d67c0385f5939c.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_4fb7c83a6f777a3b0ccdd601.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_577ae3a43912d9cca8f4c193.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_e35f7603c789c06e12501182.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_092916b07af6b05685613291.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_57c1fdb75976763c96fd85ad.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_cb687a648d35aa80bcb89c9f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_36c59b02bc36a025e6d265dd.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_36924a1aa81339f2f554c26b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_aa2405267a9c6e31fb3dab57.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e1150e2009d67c0385f5939c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4fb7c83a6f777a3b0ccdd601.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_626694d422aeffd74a82cf54.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_3b67536de8b0ff2c88af095f.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a951dc5878b3fa3255a3b95b.woff2')format("woff");}.fff{font-family:fff;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls2{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:49.020000px;}
.ls3{letter-spacing:53.520000px;}
.ls4{letter-spacing:63.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;}
}
.ws7d{word-spacing:-63.000000px;}
.ws2{word-spacing:-15.000000px;}
.ws98{word-spacing:-5.520000px;}
.ws2d{word-spacing:-5.340000px;}
.ws49{word-spacing:-4.740000px;}
.ws92{word-spacing:-4.680000px;}
.ws7c{word-spacing:-4.260000px;}
.ws6f{word-spacing:-4.140000px;}
.wsa6{word-spacing:-4.080000px;}
.ws12{word-spacing:-4.020000px;}
.wsa4{word-spacing:-3.420000px;}
.ws81{word-spacing:-3.360000px;}
.ws5{word-spacing:-3.300000px;}
.ws79{word-spacing:-3.060000px;}
.ws17{word-spacing:-2.820000px;}
.wscc{word-spacing:-2.760000px;}
.wsd{word-spacing:-2.580000px;}
.ws23{word-spacing:-2.400000px;}
.ws25{word-spacing:-2.040000px;}
.ws99{word-spacing:-1.800000px;}
.ws4{word-spacing:-1.620000px;}
.ws8c{word-spacing:-1.560000px;}
.ws2f{word-spacing:-1.500000px;}
.wsbf{word-spacing:-1.440000px;}
.ws22{word-spacing:-1.260000px;}
.ws36{word-spacing:-1.200000px;}
.ws2e{word-spacing:-1.080000px;}
.ws8b{word-spacing:-1.020000px;}
.ws95{word-spacing:-0.900000px;}
.wsd0{word-spacing:-0.540000px;}
.ws1e{word-spacing:-0.420000px;}
.ws6e{word-spacing:-0.180000px;}
.wsc{word-spacing:-0.120000px;}
.ws3{word-spacing:0.000000px;}
.ws21{word-spacing:0.180000px;}
.wsd2{word-spacing:0.300000px;}
.ws64{word-spacing:0.480000px;}
.ws13{word-spacing:0.540000px;}
.ws1f{word-spacing:0.600000px;}
.ws5f{word-spacing:0.660000px;}
.ws10{word-spacing:0.720000px;}
.ws85{word-spacing:0.780000px;}
.ws7{word-spacing:0.810000px;}
.wsc7{word-spacing:0.960000px;}
.ws16{word-spacing:1.140000px;}
.wsc5{word-spacing:1.200000px;}
.ws3d{word-spacing:1.260000px;}
.ws3a{word-spacing:1.320000px;}
.ws3b{word-spacing:1.560000px;}
.ws4e{word-spacing:1.620000px;}
.wsac{word-spacing:1.920000px;}
.ws1d{word-spacing:2.100000px;}
.wsce{word-spacing:2.160000px;}
.ws6{word-spacing:2.430000px;}
.ws68{word-spacing:2.460000px;}
.wsca{word-spacing:2.880000px;}
.wsb4{word-spacing:3.240000px;}
.ws80{word-spacing:3.300000px;}
.wscb{word-spacing:3.360000px;}
.ws4a{word-spacing:3.540000px;}
.ws9e{word-spacing:3.840000px;}
.wsbe{word-spacing:4.020000px;}
.ws18{word-spacing:4.380000px;}
.ws9b{word-spacing:4.440000px;}
.ws24{word-spacing:4.620000px;}
.ws65{word-spacing:4.680000px;}
.ws8f{word-spacing:4.860000px;}
.wse{word-spacing:5.220000px;}
.ws14{word-spacing:5.400000px;}
.ws31{word-spacing:5.700000px;}
.wsb5{word-spacing:6.240000px;}
.ws39{word-spacing:6.300000px;}
.wsd4{word-spacing:6.420000px;}
.wsb9{word-spacing:6.540000px;}
.wsc6{word-spacing:6.600000px;}
.ws7b{word-spacing:6.840000px;}
.wsc8{word-spacing:6.900000px;}
.wsb{word-spacing:7.020000px;}
.ws56{word-spacing:7.140000px;}
.wsa1{word-spacing:7.260000px;}
.wsab{word-spacing:7.380000px;}
.ws5c{word-spacing:7.560000px;}
.ws2b{word-spacing:7.740000px;}
.ws43{word-spacing:7.800000px;}
.ws4f{word-spacing:7.860000px;}
.wsad{word-spacing:7.920000px;}
.ws15{word-spacing:8.400000px;}
.ws1a{word-spacing:8.580000px;}
.wsbd{word-spacing:8.700000px;}
.wsb0{word-spacing:8.820000px;}
.ws8a{word-spacing:9.180000px;}
.ws40{word-spacing:9.540000px;}
.wsc9{word-spacing:9.660000px;}
.ws28{word-spacing:9.720000px;}
.ws83{word-spacing:9.840000px;}
.ws35{word-spacing:9.900000px;}
.wsa3{word-spacing:9.960000px;}
.ws77{word-spacing:10.140000px;}
.wsc0{word-spacing:10.260000px;}
.ws93{word-spacing:10.560000px;}
.ws8{word-spacing:10.854000px;}
.ws41{word-spacing:10.920000px;}
.ws8e{word-spacing:11.100000px;}
.ws11{word-spacing:11.340000px;}
.ws54{word-spacing:11.400000px;}
.ws61{word-spacing:11.520000px;}
.ws20{word-spacing:11.580000px;}
.ws5e{word-spacing:11.640000px;}
.ws87{word-spacing:11.760000px;}
.wsb8{word-spacing:12.180000px;}
.ws84{word-spacing:12.240000px;}
.ws66{word-spacing:12.300000px;}
.ws45{word-spacing:12.420000px;}
.ws4c{word-spacing:12.780000px;}
.wsa2{word-spacing:12.900000px;}
.ws1b{word-spacing:13.200000px;}
.ws29{word-spacing:13.260000px;}
.ws9{word-spacing:13.392000px;}
.wsa0{word-spacing:13.560000px;}
.wsb6{word-spacing:13.620000px;}
.ws42{word-spacing:13.680000px;}
.ws7e{word-spacing:13.740000px;}
.ws34{word-spacing:13.920000px;}
.wsa5{word-spacing:13.980000px;}
.ws19{word-spacing:14.100000px;}
.wsa8{word-spacing:14.520000px;}
.ws67{word-spacing:14.580000px;}
.ws55{word-spacing:14.880000px;}
.ws4b{word-spacing:15.120000px;}
.wsaa{word-spacing:15.660000px;}
.ws2c{word-spacing:15.900000px;}
.wscd{word-spacing:16.200000px;}
.ws7f{word-spacing:16.320000px;}
.wsd3{word-spacing:16.560000px;}
.ws3c{word-spacing:16.860000px;}
.ws94{word-spacing:17.220000px;}
.wsc2{word-spacing:17.280000px;}
.ws26{word-spacing:17.340000px;}
.ws4d{word-spacing:17.580000px;}
.ws88{word-spacing:17.700000px;}
.ws97{word-spacing:17.880000px;}
.ws27{word-spacing:17.940000px;}
.wsba{word-spacing:18.300000px;}
.ws78{word-spacing:18.420000px;}
.ws9a{word-spacing:18.600000px;}
.ws62{word-spacing:18.780000px;}
.ws9c{word-spacing:18.840000px;}
.ws2a{word-spacing:18.960000px;}
.wsbc{word-spacing:19.020000px;}
.ws51{word-spacing:19.200000px;}
.ws32{word-spacing:19.440000px;}
.ws91{word-spacing:20.040000px;}
.ws30{word-spacing:20.220000px;}
.wsa7{word-spacing:20.700000px;}
.ws89{word-spacing:21.180000px;}
.ws53{word-spacing:21.240000px;}
.wsb3{word-spacing:21.600000px;}
.ws69{word-spacing:21.960000px;}
.ws72{word-spacing:22.020000px;}
.ws71{word-spacing:22.080000px;}
.ws58{word-spacing:22.140000px;}
.wsa{word-spacing:22.194000px;}
.ws37{word-spacing:22.800000px;}
.wscf{word-spacing:23.220000px;}
.wsae{word-spacing:23.280000px;}
.ws96{word-spacing:23.340000px;}
.ws86{word-spacing:23.400000px;}
.ws9f{word-spacing:23.520000px;}
.ws38{word-spacing:24.660000px;}
.wsb7{word-spacing:24.840000px;}
.ws52{word-spacing:25.140000px;}
.ws33{word-spacing:25.200000px;}
.wsc3{word-spacing:25.260000px;}
.wsc4{word-spacing:25.560000px;}
.wsb1{word-spacing:25.740000px;}
.ws3e{word-spacing:26.160000px;}
.ws59{word-spacing:26.280000px;}
.ws5d{word-spacing:26.580000px;}
.ws47{word-spacing:26.880000px;}
.ws6a{word-spacing:26.940000px;}
.ws3f{word-spacing:27.900000px;}
.ws48{word-spacing:28.140000px;}
.ws5a{word-spacing:28.260000px;}
.ws6d{word-spacing:28.440000px;}
.ws73{word-spacing:28.980000px;}
.ws6b{word-spacing:29.400000px;}
.wsc1{word-spacing:29.940000px;}
.wsaf{word-spacing:30.240000px;}
.ws7a{word-spacing:30.720000px;}
.wsd1{word-spacing:31.140000px;}
.ws82{word-spacing:31.320000px;}
.ws5b{word-spacing:32.820000px;}
.ws8d{word-spacing:33.180000px;}
.ws0{word-spacing:33.621000px;}
.ws75{word-spacing:34.080000px;}
.ws74{word-spacing:34.620000px;}
.ws1c{word-spacing:35.160000px;}
.wsa9{word-spacing:35.280000px;}
.ws9d{word-spacing:36.180000px;}
.ws6c{word-spacing:36.420000px;}
.wsb2{word-spacing:36.960000px;}
.ws46{word-spacing:37.200000px;}
.ws60{word-spacing:39.240000px;}
.ws70{word-spacing:40.680000px;}
.ws63{word-spacing:40.740000px;}
.ws76{word-spacing:43.860000px;}
.ws50{word-spacing:43.980000px;}
.ws44{word-spacing:46.140000px;}
.ws57{word-spacing:54.900000px;}
.ws90{word-spacing:75.540000px;}
.wsbb{word-spacing:92.700000px;}
.ws1{word-spacing:386.314800px;}
.wsf{word-spacing:1699.977600px;}
._22{margin-left:-90.540000px;}
._f{margin-left:-51.000000px;}
._27{margin-left:-30.438000px;}
._1f{margin-left:-26.100000px;}
._21{margin-left:-19.860000px;}
._26{margin-left:-14.778000px;}
._25{margin-left:-11.358000px;}
._13{margin-left:-7.896000px;}
._1d{margin-left:-6.714000px;}
._5{margin-left:-5.508000px;}
._4{margin-left:-4.408200px;}
._3{margin-left:-3.398400px;}
._0{margin-left:-1.629000px;}
._1{width:1.602000px;}
._2{width:3.324000px;}
._7{width:4.347000px;}
._6{width:5.362200px;}
._b{width:6.459600px;}
._8{width:7.651800px;}
._16{width:8.778600px;}
._9{width:9.849600px;}
._c{width:11.788200px;}
._18{width:13.656000px;}
._12{width:16.290000px;}
._1c{width:17.454000px;}
._15{width:19.020000px;}
._11{width:20.352000px;}
._10{width:21.864000px;}
._19{width:23.760000px;}
._1e{width:24.798000px;}
._23{width:25.890000px;}
._17{width:27.570000px;}
._29{width:28.728000px;}
._28{width:37.368000px;}
._14{width:43.328400px;}
._20{width:44.460000px;}
._24{width:49.440000px;}
._e{width:56.820000px;}
._d{width:58.680000px;}
._1a{width:63.000000px;}
._a{width:70.140000px;}
._1b{width:199.860000px;}
.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;}
.y38{bottom:64.760550px;}
.y37{bottom:65.586600px;}
.y2d{bottom:90.942450px;}
.ya6{bottom:96.508350px;}
.yd2{bottom:99.159600px;}
.y69{bottom:99.304200px;}
.y101{bottom:99.363750px;}
.y95{bottom:99.508350px;}
.y2c{bottom:110.442450px;}
.ya5{bottom:116.008350px;}
.yd1{bottom:118.659600px;}
.y66{bottom:118.804200px;}
.y100{bottom:118.863750px;}
.y94{bottom:119.008350px;}
.y2b{bottom:129.942450px;}
.ya4{bottom:135.508350px;}
.yd0{bottom:138.159600px;}
.y65{bottom:138.304200px;}
.yff{bottom:138.363750px;}
.y93{bottom:138.508350px;}
.y2a{bottom:149.442450px;}
.ya3{bottom:155.008350px;}
.ycf{bottom:157.659600px;}
.y64{bottom:157.804200px;}
.yfe{bottom:157.863750px;}
.y92{bottom:158.008350px;}
.y29{bottom:168.942450px;}
.ya2{bottom:174.508350px;}
.yce{bottom:177.159600px;}
.y63{bottom:177.304200px;}
.yfd{bottom:177.363750px;}
.y91{bottom:177.508350px;}
.y28{bottom:188.442450px;}
.ya1{bottom:194.008350px;}
.ycd{bottom:196.659600px;}
.y62{bottom:196.804200px;}
.yfc{bottom:196.863750px;}
.y27{bottom:207.942450px;}
.ycc{bottom:216.159600px;}
.y61{bottom:216.304200px;}
.yfb{bottom:216.363750px;}
.y90{bottom:216.508350px;}
.y26{bottom:227.442450px;}
.ya0{bottom:233.008350px;}
.ycb{bottom:235.659600px;}
.y60{bottom:235.804200px;}
.yfa{bottom:235.863750px;}
.y8f{bottom:236.008350px;}
.y25{bottom:246.942450px;}
.y9f{bottom:252.508350px;}
.yca{bottom:255.159600px;}
.y5f{bottom:255.304200px;}
.yf9{bottom:255.363750px;}
.y8e{bottom:255.508350px;}
.y9e{bottom:272.008350px;}
.yc9{bottom:274.659600px;}
.y5e{bottom:274.804200px;}
.yf8{bottom:274.863750px;}
.y8d{bottom:275.008350px;}
.y9d{bottom:291.508350px;}
.yc8{bottom:294.159600px;}
.y68{bottom:294.304200px;}
.yf7{bottom:294.363750px;}
.y8c{bottom:294.508350px;}
.y24{bottom:295.041450px;}
.y9c{bottom:311.008350px;}
.y23{bottom:313.036950px;}
.yc7{bottom:313.659600px;}
.y5d{bottom:313.804200px;}
.yf6{bottom:313.863750px;}
.y8b{bottom:314.008350px;}
.y9b{bottom:330.508350px;}
.y22{bottom:331.032450px;}
.yc6{bottom:333.159600px;}
.y5c{bottom:333.304200px;}
.yf5{bottom:333.363750px;}
.y8a{bottom:333.508350px;}
.y21{bottom:349.027950px;}
.y9a{bottom:350.008350px;}
.yc5{bottom:352.659600px;}
.y5b{bottom:352.804200px;}
.yf4{bottom:352.863750px;}
.y89{bottom:353.008350px;}
.y20{bottom:367.023450px;}
.y99{bottom:369.508350px;}
.yc4{bottom:372.159600px;}
.y5a{bottom:372.304200px;}
.yf3{bottom:372.363750px;}
.y88{bottom:372.508350px;}
.y1f{bottom:385.018950px;}
.y98{bottom:389.008350px;}
.yc3{bottom:391.659600px;}
.y59{bottom:391.804200px;}
.yf2{bottom:391.863750px;}
.y87{bottom:392.008350px;}
.y1e{bottom:403.014450px;}
.y97{bottom:408.508350px;}
.yc2{bottom:411.159600px;}
.y58{bottom:411.304200px;}
.yf1{bottom:411.363750px;}
.y86{bottom:411.508350px;}
.y1d{bottom:421.009950px;}
.yd5{bottom:430.659600px;}
.y57{bottom:430.804200px;}
.yf0{bottom:430.863750px;}
.y85{bottom:431.008350px;}
.y1c{bottom:439.005450px;}
.yc1{bottom:450.159600px;}
.y56{bottom:450.304200px;}
.yef{bottom:450.363750px;}
.y84{bottom:450.508350px;}
.y36{bottom:456.139950px;}
.y1b{bottom:457.000950px;}
.yc0{bottom:469.659600px;}
.y55{bottom:469.804200px;}
.yee{bottom:469.863750px;}
.y83{bottom:470.008350px;}
.y1a{bottom:474.996450px;}
.y35{bottom:478.639950px;}
.ybf{bottom:489.159600px;}
.y54{bottom:489.304200px;}
.yed{bottom:489.363750px;}
.y82{bottom:489.508350px;}
.y19{bottom:492.991950px;}
.y34{bottom:501.139950px;}
.ybe{bottom:508.659600px;}
.y53{bottom:508.804200px;}
.yec{bottom:508.863750px;}
.y81{bottom:509.008350px;}
.y18{bottom:510.987450px;}
.ybd{bottom:528.159600px;}
.y67{bottom:528.304200px;}
.y104{bottom:528.363750px;}
.y80{bottom:528.508350px;}
.y17{bottom:528.982950px;}
.y33{bottom:541.639950px;}
.y16{bottom:546.978450px;}
.ybc{bottom:547.659600px;}
.y52{bottom:547.804200px;}
.yeb{bottom:547.863750px;}
.y7f{bottom:548.008350px;}
.y15{bottom:564.973950px;}
.ybb{bottom:567.159600px;}
.y51{bottom:567.304200px;}
.yea{bottom:567.363750px;}
.y7e{bottom:567.508350px;}
.y14{bottom:582.969450px;}
.y32{bottom:586.639950px;}
.yba{bottom:586.659600px;}
.y50{bottom:586.804200px;}
.ye9{bottom:586.863750px;}
.y7d{bottom:587.008350px;}
.y13{bottom:600.964950px;}
.yb9{bottom:606.159600px;}
.y4f{bottom:606.304200px;}
.ye8{bottom:606.363750px;}
.y7c{bottom:606.508350px;}
.y12{bottom:618.960450px;}
.yb8{bottom:625.659600px;}
.y4e{bottom:625.804200px;}
.ye7{bottom:625.863750px;}
.y7b{bottom:626.008350px;}
.y31{bottom:627.139950px;}
.y11{bottom:636.955950px;}
.yb7{bottom:645.159600px;}
.y4d{bottom:645.304200px;}
.ye6{bottom:645.363750px;}
.y7a{bottom:645.508350px;}
.y10{bottom:654.951450px;}
.y30{bottom:663.139950px;}
.yb6{bottom:664.659600px;}
.y4c{bottom:664.804200px;}
.y103{bottom:664.863750px;}
.y79{bottom:665.008350px;}
.yf{bottom:672.946950px;}
.yb5{bottom:684.159600px;}
.y4b{bottom:684.304200px;}
.ye5{bottom:684.363750px;}
.ye{bottom:690.942450px;}
.y2f{bottom:699.139950px;}
.yb4{bottom:703.659600px;}
.y4a{bottom:703.804200px;}
.ye4{bottom:703.863750px;}
.y78{bottom:704.008350px;}
.yd{bottom:708.942450px;}
.yd4{bottom:723.159600px;}
.y49{bottom:723.304200px;}
.ye3{bottom:723.363750px;}
.y77{bottom:723.508350px;}
.y2e{bottom:735.139950px;}
.yb3{bottom:742.659600px;}
.y48{bottom:742.804200px;}
.ye2{bottom:742.863750px;}
.y76{bottom:743.008350px;}
.yc{bottom:749.451450px;}
.yb2{bottom:762.159600px;}
.y47{bottom:762.304200px;}
.ye1{bottom:762.363750px;}
.y75{bottom:762.508350px;}
.yb{bottom:767.446950px;}
.yb1{bottom:781.659600px;}
.y46{bottom:781.804200px;}
.ye0{bottom:781.863750px;}
.y74{bottom:782.008350px;}
.ya{bottom:785.442450px;}
.yb0{bottom:801.159600px;}
.y45{bottom:801.304200px;}
.ydf{bottom:801.363750px;}
.y73{bottom:801.508350px;}
.y9{bottom:803.442450px;}
.yaf{bottom:820.659600px;}
.y44{bottom:820.804200px;}
.yde{bottom:820.863750px;}
.y72{bottom:821.008350px;}
.yae{bottom:840.159600px;}
.y43{bottom:840.304200px;}
.ydd{bottom:840.363750px;}
.y71{bottom:840.508350px;}
.y8{bottom:840.951450px;}
.y7{bottom:858.946950px;}
.yad{bottom:859.659600px;}
.y42{bottom:859.804200px;}
.y102{bottom:859.863750px;}
.y70{bottom:860.008350px;}
.y6{bottom:876.942450px;}
.yac{bottom:879.159600px;}
.y41{bottom:879.304200px;}
.ydc{bottom:879.363750px;}
.y6f{bottom:879.508350px;}
.y5{bottom:894.942450px;}
.yab{bottom:898.659600px;}
.y40{bottom:898.804200px;}
.ydb{bottom:898.863750px;}
.y6e{bottom:899.008350px;}
.yd3{bottom:918.159600px;}
.y3f{bottom:918.304200px;}
.yda{bottom:918.363750px;}
.y6d{bottom:918.508350px;}
.yaa{bottom:937.659600px;}
.y3e{bottom:937.804200px;}
.yd9{bottom:937.863750px;}
.y6c{bottom:938.008350px;}
.y4{bottom:939.949950px;}
.ya9{bottom:957.159600px;}
.y3d{bottom:957.304200px;}
.yd8{bottom:957.363750px;}
.y96{bottom:957.508350px;}
.y3{bottom:965.442450px;}
.ya8{bottom:976.659600px;}
.y3c{bottom:976.804200px;}
.yd7{bottom:976.863750px;}
.y6b{bottom:977.008350px;}
.ya7{bottom:996.159600px;}
.y3b{bottom:996.304200px;}
.yd6{bottom:996.363750px;}
.y6a{bottom:996.508350px;}
.y3a{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y39{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;}
.xf{left:63.779550px;}
.x2{left:65.202600px;}
.x1{left:71.253150px;}
.x1c{left:72.324600px;}
.xe{left:73.559100px;}
.x14{left:85.039650px;}
.x1a{left:94.112100px;}
.x1b{left:124.194600px;}
.xd{left:224.187900px;}
.x3{left:229.129350px;}
.x7{left:230.257350px;}
.x8{left:276.899850px;}
.x6{left:291.344850px;}
.x15{left:344.518950px;}
.x13{left:357.015150px;}
.x4{left:358.976850px;}
.xb{left:393.266850px;}
.x16{left:399.935850px;}
.x17{left:408.935850px;}
.x12{left:412.272150px;}
.x19{left:419.435850px;}
.x18{left:421.190850px;}
.x1e{left:426.935850px;}
.xa{left:482.434350px;}
.x9{left:516.456150px;}
.xc{left:542.981850px;}
.x1d{left:564.857850px;}
.x5{left:588.401850px;}
.x11{left:614.196150px;}
.x10{left:632.875800px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls2{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:43.573333pt;}
.ls3{letter-spacing:47.573333pt;}
.ls4{letter-spacing:56.000000pt;}
.ws7d{word-spacing:-56.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws98{word-spacing:-4.906667pt;}
.ws2d{word-spacing:-4.746667pt;}
.ws49{word-spacing:-4.213333pt;}
.ws92{word-spacing:-4.160000pt;}
.ws7c{word-spacing:-3.786667pt;}
.ws6f{word-spacing:-3.680000pt;}
.wsa6{word-spacing:-3.626667pt;}
.ws12{word-spacing:-3.573333pt;}
.wsa4{word-spacing:-3.040000pt;}
.ws81{word-spacing:-2.986667pt;}
.ws5{word-spacing:-2.933333pt;}
.ws79{word-spacing:-2.720000pt;}
.ws17{word-spacing:-2.506667pt;}
.wscc{word-spacing:-2.453333pt;}
.wsd{word-spacing:-2.293333pt;}
.ws23{word-spacing:-2.133333pt;}
.ws25{word-spacing:-1.813333pt;}
.ws99{word-spacing:-1.600000pt;}
.ws4{word-spacing:-1.440000pt;}
.ws8c{word-spacing:-1.386667pt;}
.ws2f{word-spacing:-1.333333pt;}
.wsbf{word-spacing:-1.280000pt;}
.ws22{word-spacing:-1.120000pt;}
.ws36{word-spacing:-1.066667pt;}
.ws2e{word-spacing:-0.960000pt;}
.ws8b{word-spacing:-0.906667pt;}
.ws95{word-spacing:-0.800000pt;}
.wsd0{word-spacing:-0.480000pt;}
.ws1e{word-spacing:-0.373333pt;}
.ws6e{word-spacing:-0.160000pt;}
.wsc{word-spacing:-0.106667pt;}
.ws3{word-spacing:0.000000pt;}
.ws21{word-spacing:0.160000pt;}
.wsd2{word-spacing:0.266667pt;}
.ws64{word-spacing:0.426667pt;}
.ws13{word-spacing:0.480000pt;}
.ws1f{word-spacing:0.533333pt;}
.ws5f{word-spacing:0.586667pt;}
.ws10{word-spacing:0.640000pt;}
.ws85{word-spacing:0.693333pt;}
.ws7{word-spacing:0.720000pt;}
.wsc7{word-spacing:0.853333pt;}
.ws16{word-spacing:1.013333pt;}
.wsc5{word-spacing:1.066667pt;}
.ws3d{word-spacing:1.120000pt;}
.ws3a{word-spacing:1.173333pt;}
.ws3b{word-spacing:1.386667pt;}
.ws4e{word-spacing:1.440000pt;}
.wsac{word-spacing:1.706667pt;}
.ws1d{word-spacing:1.866667pt;}
.wsce{word-spacing:1.920000pt;}
.ws6{word-spacing:2.160000pt;}
.ws68{word-spacing:2.186667pt;}
.wsca{word-spacing:2.560000pt;}
.wsb4{word-spacing:2.880000pt;}
.ws80{word-spacing:2.933333pt;}
.wscb{word-spacing:2.986667pt;}
.ws4a{word-spacing:3.146667pt;}
.ws9e{word-spacing:3.413333pt;}
.wsbe{word-spacing:3.573333pt;}
.ws18{word-spacing:3.893333pt;}
.ws9b{word-spacing:3.946667pt;}
.ws24{word-spacing:4.106667pt;}
.ws65{word-spacing:4.160000pt;}
.ws8f{word-spacing:4.320000pt;}
.wse{word-spacing:4.640000pt;}
.ws14{word-spacing:4.800000pt;}
.ws31{word-spacing:5.066667pt;}
.wsb5{word-spacing:5.546667pt;}
.ws39{word-spacing:5.600000pt;}
.wsd4{word-spacing:5.706667pt;}
.wsb9{word-spacing:5.813333pt;}
.wsc6{word-spacing:5.866667pt;}
.ws7b{word-spacing:6.080000pt;}
.wsc8{word-spacing:6.133333pt;}
.wsb{word-spacing:6.240000pt;}
.ws56{word-spacing:6.346667pt;}
.wsa1{word-spacing:6.453333pt;}
.wsab{word-spacing:6.560000pt;}
.ws5c{word-spacing:6.720000pt;}
.ws2b{word-spacing:6.880000pt;}
.ws43{word-spacing:6.933333pt;}
.ws4f{word-spacing:6.986667pt;}
.wsad{word-spacing:7.040000pt;}
.ws15{word-spacing:7.466667pt;}
.ws1a{word-spacing:7.626667pt;}
.wsbd{word-spacing:7.733333pt;}
.wsb0{word-spacing:7.840000pt;}
.ws8a{word-spacing:8.160000pt;}
.ws40{word-spacing:8.480000pt;}
.wsc9{word-spacing:8.586667pt;}
.ws28{word-spacing:8.640000pt;}
.ws83{word-spacing:8.746667pt;}
.ws35{word-spacing:8.800000pt;}
.wsa3{word-spacing:8.853333pt;}
.ws77{word-spacing:9.013333pt;}
.wsc0{word-spacing:9.120000pt;}
.ws93{word-spacing:9.386667pt;}
.ws8{word-spacing:9.648000pt;}
.ws41{word-spacing:9.706667pt;}
.ws8e{word-spacing:9.866667pt;}
.ws11{word-spacing:10.080000pt;}
.ws54{word-spacing:10.133333pt;}
.ws61{word-spacing:10.240000pt;}
.ws20{word-spacing:10.293333pt;}
.ws5e{word-spacing:10.346667pt;}
.ws87{word-spacing:10.453333pt;}
.wsb8{word-spacing:10.826667pt;}
.ws84{word-spacing:10.880000pt;}
.ws66{word-spacing:10.933333pt;}
.ws45{word-spacing:11.040000pt;}
.ws4c{word-spacing:11.360000pt;}
.wsa2{word-spacing:11.466667pt;}
.ws1b{word-spacing:11.733333pt;}
.ws29{word-spacing:11.786667pt;}
.ws9{word-spacing:11.904000pt;}
.wsa0{word-spacing:12.053333pt;}
.wsb6{word-spacing:12.106667pt;}
.ws42{word-spacing:12.160000pt;}
.ws7e{word-spacing:12.213333pt;}
.ws34{word-spacing:12.373333pt;}
.wsa5{word-spacing:12.426667pt;}
.ws19{word-spacing:12.533333pt;}
.wsa8{word-spacing:12.906667pt;}
.ws67{word-spacing:12.960000pt;}
.ws55{word-spacing:13.226667pt;}
.ws4b{word-spacing:13.440000pt;}
.wsaa{word-spacing:13.920000pt;}
.ws2c{word-spacing:14.133333pt;}
.wscd{word-spacing:14.400000pt;}
.ws7f{word-spacing:14.506667pt;}
.wsd3{word-spacing:14.720000pt;}
.ws3c{word-spacing:14.986667pt;}
.ws94{word-spacing:15.306667pt;}
.wsc2{word-spacing:15.360000pt;}
.ws26{word-spacing:15.413333pt;}
.ws4d{word-spacing:15.626667pt;}
.ws88{word-spacing:15.733333pt;}
.ws97{word-spacing:15.893333pt;}
.ws27{word-spacing:15.946667pt;}
.wsba{word-spacing:16.266667pt;}
.ws78{word-spacing:16.373333pt;}
.ws9a{word-spacing:16.533333pt;}
.ws62{word-spacing:16.693333pt;}
.ws9c{word-spacing:16.746667pt;}
.ws2a{word-spacing:16.853333pt;}
.wsbc{word-spacing:16.906667pt;}
.ws51{word-spacing:17.066667pt;}
.ws32{word-spacing:17.280000pt;}
.ws91{word-spacing:17.813333pt;}
.ws30{word-spacing:17.973333pt;}
.wsa7{word-spacing:18.400000pt;}
.ws89{word-spacing:18.826667pt;}
.ws53{word-spacing:18.880000pt;}
.wsb3{word-spacing:19.200000pt;}
.ws69{word-spacing:19.520000pt;}
.ws72{word-spacing:19.573333pt;}
.ws71{word-spacing:19.626667pt;}
.ws58{word-spacing:19.680000pt;}
.wsa{word-spacing:19.728000pt;}
.ws37{word-spacing:20.266667pt;}
.wscf{word-spacing:20.640000pt;}
.wsae{word-spacing:20.693333pt;}
.ws96{word-spacing:20.746667pt;}
.ws86{word-spacing:20.800000pt;}
.ws9f{word-spacing:20.906667pt;}
.ws38{word-spacing:21.920000pt;}
.wsb7{word-spacing:22.080000pt;}
.ws52{word-spacing:22.346667pt;}
.ws33{word-spacing:22.400000pt;}
.wsc3{word-spacing:22.453333pt;}
.wsc4{word-spacing:22.720000pt;}
.wsb1{word-spacing:22.880000pt;}
.ws3e{word-spacing:23.253333pt;}
.ws59{word-spacing:23.360000pt;}
.ws5d{word-spacing:23.626667pt;}
.ws47{word-spacing:23.893333pt;}
.ws6a{word-spacing:23.946667pt;}
.ws3f{word-spacing:24.800000pt;}
.ws48{word-spacing:25.013333pt;}
.ws5a{word-spacing:25.120000pt;}
.ws6d{word-spacing:25.280000pt;}
.ws73{word-spacing:25.760000pt;}
.ws6b{word-spacing:26.133333pt;}
.wsc1{word-spacing:26.613333pt;}
.wsaf{word-spacing:26.880000pt;}
.ws7a{word-spacing:27.306667pt;}
.wsd1{word-spacing:27.680000pt;}
.ws82{word-spacing:27.840000pt;}
.ws5b{word-spacing:29.173333pt;}
.ws8d{word-spacing:29.493333pt;}
.ws0{word-spacing:29.885333pt;}
.ws75{word-spacing:30.293333pt;}
.ws74{word-spacing:30.773333pt;}
.ws1c{word-spacing:31.253333pt;}
.wsa9{word-spacing:31.360000pt;}
.ws9d{word-spacing:32.160000pt;}
.ws6c{word-spacing:32.373333pt;}
.wsb2{word-spacing:32.853333pt;}
.ws46{word-spacing:33.066667pt;}
.ws60{word-spacing:34.880000pt;}
.ws70{word-spacing:36.160000pt;}
.ws63{word-spacing:36.213333pt;}
.ws76{word-spacing:38.986667pt;}
.ws50{word-spacing:39.093333pt;}
.ws44{word-spacing:41.013333pt;}
.ws57{word-spacing:48.800000pt;}
.ws90{word-spacing:67.146667pt;}
.wsbb{word-spacing:82.400000pt;}
.ws1{word-spacing:343.390933pt;}
.wsf{word-spacing:1511.091200pt;}
._22{margin-left:-80.480000pt;}
._f{margin-left:-45.333333pt;}
._27{margin-left:-27.056000pt;}
._1f{margin-left:-23.200000pt;}
._21{margin-left:-17.653333pt;}
._26{margin-left:-13.136000pt;}
._25{margin-left:-10.096000pt;}
._13{margin-left:-7.018667pt;}
._1d{margin-left:-5.968000pt;}
._5{margin-left:-4.896000pt;}
._4{margin-left:-3.918400pt;}
._3{margin-left:-3.020800pt;}
._0{margin-left:-1.448000pt;}
._1{width:1.424000pt;}
._2{width:2.954667pt;}
._7{width:3.864000pt;}
._6{width:4.766400pt;}
._b{width:5.741867pt;}
._8{width:6.801600pt;}
._16{width:7.803200pt;}
._9{width:8.755200pt;}
._c{width:10.478400pt;}
._18{width:12.138667pt;}
._12{width:14.480000pt;}
._1c{width:15.514667pt;}
._15{width:16.906667pt;}
._11{width:18.090667pt;}
._10{width:19.434667pt;}
._19{width:21.120000pt;}
._1e{width:22.042667pt;}
._23{width:23.013333pt;}
._17{width:24.506667pt;}
._29{width:25.536000pt;}
._28{width:33.216000pt;}
._14{width:38.514133pt;}
._20{width:39.520000pt;}
._24{width:43.946667pt;}
._e{width:50.506667pt;}
._d{width:52.160000pt;}
._1a{width:56.000000pt;}
._a{width:62.346667pt;}
._1b{width:177.653333pt;}
.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;}
.y38{bottom:57.564933pt;}
.y37{bottom:58.299200pt;}
.y2d{bottom:80.837733pt;}
.ya6{bottom:85.785200pt;}
.yd2{bottom:88.141867pt;}
.y69{bottom:88.270400pt;}
.y101{bottom:88.323333pt;}
.y95{bottom:88.451867pt;}
.y2c{bottom:98.171067pt;}
.ya5{bottom:103.118533pt;}
.yd1{bottom:105.475200pt;}
.y66{bottom:105.603733pt;}
.y100{bottom:105.656667pt;}
.y94{bottom:105.785200pt;}
.y2b{bottom:115.504400pt;}
.ya4{bottom:120.451867pt;}
.yd0{bottom:122.808533pt;}
.y65{bottom:122.937067pt;}
.yff{bottom:122.990000pt;}
.y93{bottom:123.118533pt;}
.y2a{bottom:132.837733pt;}
.ya3{bottom:137.785200pt;}
.ycf{bottom:140.141867pt;}
.y64{bottom:140.270400pt;}
.yfe{bottom:140.323333pt;}
.y92{bottom:140.451867pt;}
.y29{bottom:150.171067pt;}
.ya2{bottom:155.118533pt;}
.yce{bottom:157.475200pt;}
.y63{bottom:157.603733pt;}
.yfd{bottom:157.656667pt;}
.y91{bottom:157.785200pt;}
.y28{bottom:167.504400pt;}
.ya1{bottom:172.451867pt;}
.ycd{bottom:174.808533pt;}
.y62{bottom:174.937067pt;}
.yfc{bottom:174.990000pt;}
.y27{bottom:184.837733pt;}
.ycc{bottom:192.141867pt;}
.y61{bottom:192.270400pt;}
.yfb{bottom:192.323333pt;}
.y90{bottom:192.451867pt;}
.y26{bottom:202.171067pt;}
.ya0{bottom:207.118533pt;}
.ycb{bottom:209.475200pt;}
.y60{bottom:209.603733pt;}
.yfa{bottom:209.656667pt;}
.y8f{bottom:209.785200pt;}
.y25{bottom:219.504400pt;}
.y9f{bottom:224.451867pt;}
.yca{bottom:226.808533pt;}
.y5f{bottom:226.937067pt;}
.yf9{bottom:226.990000pt;}
.y8e{bottom:227.118533pt;}
.y9e{bottom:241.785200pt;}
.yc9{bottom:244.141867pt;}
.y5e{bottom:244.270400pt;}
.yf8{bottom:244.323333pt;}
.y8d{bottom:244.451867pt;}
.y9d{bottom:259.118533pt;}
.yc8{bottom:261.475200pt;}
.y68{bottom:261.603733pt;}
.yf7{bottom:261.656667pt;}
.y8c{bottom:261.785200pt;}
.y24{bottom:262.259067pt;}
.y9c{bottom:276.451867pt;}
.y23{bottom:278.255067pt;}
.yc7{bottom:278.808533pt;}
.y5d{bottom:278.937067pt;}
.yf6{bottom:278.990000pt;}
.y8b{bottom:279.118533pt;}
.y9b{bottom:293.785200pt;}
.y22{bottom:294.251067pt;}
.yc6{bottom:296.141867pt;}
.y5c{bottom:296.270400pt;}
.yf5{bottom:296.323333pt;}
.y8a{bottom:296.451867pt;}
.y21{bottom:310.247067pt;}
.y9a{bottom:311.118533pt;}
.yc5{bottom:313.475200pt;}
.y5b{bottom:313.603733pt;}
.yf4{bottom:313.656667pt;}
.y89{bottom:313.785200pt;}
.y20{bottom:326.243067pt;}
.y99{bottom:328.451867pt;}
.yc4{bottom:330.808533pt;}
.y5a{bottom:330.937067pt;}
.yf3{bottom:330.990000pt;}
.y88{bottom:331.118533pt;}
.y1f{bottom:342.239067pt;}
.y98{bottom:345.785200pt;}
.yc3{bottom:348.141867pt;}
.y59{bottom:348.270400pt;}
.yf2{bottom:348.323333pt;}
.y87{bottom:348.451867pt;}
.y1e{bottom:358.235067pt;}
.y97{bottom:363.118533pt;}
.yc2{bottom:365.475200pt;}
.y58{bottom:365.603733pt;}
.yf1{bottom:365.656667pt;}
.y86{bottom:365.785200pt;}
.y1d{bottom:374.231067pt;}
.yd5{bottom:382.808533pt;}
.y57{bottom:382.937067pt;}
.yf0{bottom:382.990000pt;}
.y85{bottom:383.118533pt;}
.y1c{bottom:390.227067pt;}
.yc1{bottom:400.141867pt;}
.y56{bottom:400.270400pt;}
.yef{bottom:400.323333pt;}
.y84{bottom:400.451867pt;}
.y36{bottom:405.457733pt;}
.y1b{bottom:406.223067pt;}
.yc0{bottom:417.475200pt;}
.y55{bottom:417.603733pt;}
.yee{bottom:417.656667pt;}
.y83{bottom:417.785200pt;}
.y1a{bottom:422.219067pt;}
.y35{bottom:425.457733pt;}
.ybf{bottom:434.808533pt;}
.y54{bottom:434.937067pt;}
.yed{bottom:434.990000pt;}
.y82{bottom:435.118533pt;}
.y19{bottom:438.215067pt;}
.y34{bottom:445.457733pt;}
.ybe{bottom:452.141867pt;}
.y53{bottom:452.270400pt;}
.yec{bottom:452.323333pt;}
.y81{bottom:452.451867pt;}
.y18{bottom:454.211067pt;}
.ybd{bottom:469.475200pt;}
.y67{bottom:469.603733pt;}
.y104{bottom:469.656667pt;}
.y80{bottom:469.785200pt;}
.y17{bottom:470.207067pt;}
.y33{bottom:481.457733pt;}
.y16{bottom:486.203067pt;}
.ybc{bottom:486.808533pt;}
.y52{bottom:486.937067pt;}
.yeb{bottom:486.990000pt;}
.y7f{bottom:487.118533pt;}
.y15{bottom:502.199067pt;}
.ybb{bottom:504.141867pt;}
.y51{bottom:504.270400pt;}
.yea{bottom:504.323333pt;}
.y7e{bottom:504.451867pt;}
.y14{bottom:518.195067pt;}
.y32{bottom:521.457733pt;}
.yba{bottom:521.475200pt;}
.y50{bottom:521.603733pt;}
.ye9{bottom:521.656667pt;}
.y7d{bottom:521.785200pt;}
.y13{bottom:534.191067pt;}
.yb9{bottom:538.808533pt;}
.y4f{bottom:538.937067pt;}
.ye8{bottom:538.990000pt;}
.y7c{bottom:539.118533pt;}
.y12{bottom:550.187067pt;}
.yb8{bottom:556.141867pt;}
.y4e{bottom:556.270400pt;}
.ye7{bottom:556.323333pt;}
.y7b{bottom:556.451867pt;}
.y31{bottom:557.457733pt;}
.y11{bottom:566.183067pt;}
.yb7{bottom:573.475200pt;}
.y4d{bottom:573.603733pt;}
.ye6{bottom:573.656667pt;}
.y7a{bottom:573.785200pt;}
.y10{bottom:582.179067pt;}
.y30{bottom:589.457733pt;}
.yb6{bottom:590.808533pt;}
.y4c{bottom:590.937067pt;}
.y103{bottom:590.990000pt;}
.y79{bottom:591.118533pt;}
.yf{bottom:598.175067pt;}
.yb5{bottom:608.141867pt;}
.y4b{bottom:608.270400pt;}
.ye5{bottom:608.323333pt;}
.ye{bottom:614.171067pt;}
.y2f{bottom:621.457733pt;}
.yb4{bottom:625.475200pt;}
.y4a{bottom:625.603733pt;}
.ye4{bottom:625.656667pt;}
.y78{bottom:625.785200pt;}
.yd{bottom:630.171067pt;}
.yd4{bottom:642.808533pt;}
.y49{bottom:642.937067pt;}
.ye3{bottom:642.990000pt;}
.y77{bottom:643.118533pt;}
.y2e{bottom:653.457733pt;}
.yb3{bottom:660.141867pt;}
.y48{bottom:660.270400pt;}
.ye2{bottom:660.323333pt;}
.y76{bottom:660.451867pt;}
.yc{bottom:666.179067pt;}
.yb2{bottom:677.475200pt;}
.y47{bottom:677.603733pt;}
.ye1{bottom:677.656667pt;}
.y75{bottom:677.785200pt;}
.yb{bottom:682.175067pt;}
.yb1{bottom:694.808533pt;}
.y46{bottom:694.937067pt;}
.ye0{bottom:694.990000pt;}
.y74{bottom:695.118533pt;}
.ya{bottom:698.171067pt;}
.yb0{bottom:712.141867pt;}
.y45{bottom:712.270400pt;}
.ydf{bottom:712.323333pt;}
.y73{bottom:712.451867pt;}
.y9{bottom:714.171067pt;}
.yaf{bottom:729.475200pt;}
.y44{bottom:729.603733pt;}
.yde{bottom:729.656667pt;}
.y72{bottom:729.785200pt;}
.yae{bottom:746.808533pt;}
.y43{bottom:746.937067pt;}
.ydd{bottom:746.990000pt;}
.y71{bottom:747.118533pt;}
.y8{bottom:747.512400pt;}
.y7{bottom:763.508400pt;}
.yad{bottom:764.141867pt;}
.y42{bottom:764.270400pt;}
.y102{bottom:764.323333pt;}
.y70{bottom:764.451867pt;}
.y6{bottom:779.504400pt;}
.yac{bottom:781.475200pt;}
.y41{bottom:781.603733pt;}
.ydc{bottom:781.656667pt;}
.y6f{bottom:781.785200pt;}
.y5{bottom:795.504400pt;}
.yab{bottom:798.808533pt;}
.y40{bottom:798.937067pt;}
.ydb{bottom:798.990000pt;}
.y6e{bottom:799.118533pt;}
.yd3{bottom:816.141867pt;}
.y3f{bottom:816.270400pt;}
.yda{bottom:816.323333pt;}
.y6d{bottom:816.451867pt;}
.yaa{bottom:833.475200pt;}
.y3e{bottom:833.603733pt;}
.yd9{bottom:833.656667pt;}
.y6c{bottom:833.785200pt;}
.y4{bottom:835.511067pt;}
.ya9{bottom:850.808533pt;}
.y3d{bottom:850.937067pt;}
.yd8{bottom:850.990000pt;}
.y96{bottom:851.118533pt;}
.y3{bottom:858.171067pt;}
.ya8{bottom:868.141867pt;}
.y3c{bottom:868.270400pt;}
.yd7{bottom:868.323333pt;}
.y6b{bottom:868.451867pt;}
.ya7{bottom:885.475200pt;}
.y3b{bottom:885.603733pt;}
.yd6{bottom:885.656667pt;}
.y6a{bottom:885.785200pt;}
.y3a{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y39{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;}
.xf{left:56.692933pt;}
.x2{left:57.957867pt;}
.x1{left:63.336133pt;}
.x1c{left:64.288533pt;}
.xe{left:65.385867pt;}
.x14{left:75.590800pt;}
.x1a{left:83.655200pt;}
.x1b{left:110.395200pt;}
.xd{left:199.278133pt;}
.x3{left:203.670533pt;}
.x7{left:204.673200pt;}
.x8{left:246.133200pt;}
.x6{left:258.973200pt;}
.x15{left:306.239067pt;}
.x13{left:317.346800pt;}
.x4{left:319.090533pt;}
.xb{left:349.570533pt;}
.x16{left:355.498533pt;}
.x17{left:363.498533pt;}
.x12{left:366.464133pt;}
.x19{left:372.831867pt;}
.x18{left:374.391867pt;}
.x1e{left:379.498533pt;}
.xa{left:428.830533pt;}
.x9{left:459.072133pt;}
.xc{left:482.650533pt;}
.x1d{left:502.095867pt;}
.x5{left:523.023867pt;}
.x11{left:545.952133pt;}
.x10{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; }
  