
    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_8843d01e3a4f2e0b7e86ece9.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_8843d01e3a4f2e0b7e86ece9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_80f7369147b77be3ecd209cb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_729e1ab01b00d1b041c01f67.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_041243ba17e023b38c939a63.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_104d72a0c8382e30859195c9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_745f61e2d328b37272dc17cf.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_eed3f60aba8f08366b47c439.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_50cb8ab8fa3803e8093acb12.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_31bf6f22242cc854fc823029.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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_8a314d28d7468022b0d1a579.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_432dce8ae7bf5ae179d698ad.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_80f7369147b77be3ecd209cb.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_3aac5bcfb4926d3f2b9f2d36.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1c80e6e4e8fde562cd3c7760.woff2')format("woff");}.fff{font-family:fff;line-height:0.708000;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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-15.000000px;}
.ws9f{word-spacing:-8.340000px;}
.ws86{word-spacing:-7.440000px;}
.ws4{word-spacing:-6.840000px;}
.ws81{word-spacing:-6.000000px;}
.ws23{word-spacing:-5.640000px;}
.wsa8{word-spacing:-5.340000px;}
.ws3e{word-spacing:-4.440000px;}
.wsaf{word-spacing:-3.960000px;}
.wsb6{word-spacing:-3.660000px;}
.ws6f{word-spacing:-3.600000px;}
.ws2e{word-spacing:-3.300000px;}
.ws6e{word-spacing:-2.640000px;}
.ws74{word-spacing:-2.520000px;}
.wsac{word-spacing:-2.280000px;}
.ws36{word-spacing:-1.740000px;}
.ws5b{word-spacing:-1.680000px;}
.ws8{word-spacing:-1.440000px;}
.ws6{word-spacing:-1.320000px;}
.ws22{word-spacing:-1.200000px;}
.wsb7{word-spacing:-1.080000px;}
.ws12{word-spacing:-1.020000px;}
.ws52{word-spacing:-0.900000px;}
.ws5a{word-spacing:-0.780000px;}
.wsa{word-spacing:-0.660000px;}
.wsa1{word-spacing:-0.540000px;}
.ws14{word-spacing:-0.180000px;}
.ws7e{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws5c{word-spacing:0.240000px;}
.ws8a{word-spacing:0.600000px;}
.ws11{word-spacing:0.660000px;}
.ws1{word-spacing:0.720000px;}
.ws73{word-spacing:0.900000px;}
.wsa2{word-spacing:1.020000px;}
.ws20{word-spacing:1.140000px;}
.wsa9{word-spacing:1.200000px;}
.ws37{word-spacing:1.380000px;}
.ws87{word-spacing:1.620000px;}
.wsab{word-spacing:1.860000px;}
.ws27{word-spacing:2.040000px;}
.ws4a{word-spacing:2.160000px;}
.ws91{word-spacing:2.280000px;}
.ws4b{word-spacing:2.580000px;}
.ws9d{word-spacing:2.640000px;}
.ws15{word-spacing:2.760000px;}
.ws4f{word-spacing:2.880000px;}
.ws2c{word-spacing:3.060000px;}
.ws7f{word-spacing:3.120000px;}
.ws72{word-spacing:3.300000px;}
.wsb{word-spacing:3.360000px;}
.ws56{word-spacing:3.420000px;}
.ws7{word-spacing:4.080000px;}
.ws46{word-spacing:4.140000px;}
.wsa7{word-spacing:4.440000px;}
.ws59{word-spacing:4.500000px;}
.ws5{word-spacing:4.560000px;}
.ws84{word-spacing:4.620000px;}
.ws9{word-spacing:4.800000px;}
.ws88{word-spacing:4.980000px;}
.ws44{word-spacing:5.160000px;}
.ws4d{word-spacing:5.220000px;}
.ws7c{word-spacing:5.280000px;}
.wsa6{word-spacing:5.460000px;}
.ws48{word-spacing:5.580000px;}
.ws8f{word-spacing:5.640000px;}
.ws43{word-spacing:6.060000px;}
.wsd{word-spacing:6.120000px;}
.ws75{word-spacing:6.240000px;}
.ws78{word-spacing:6.540000px;}
.ws7b{word-spacing:6.600000px;}
.ws13{word-spacing:6.720000px;}
.ws85{word-spacing:7.020000px;}
.ws54{word-spacing:7.080000px;}
.ws63{word-spacing:7.200000px;}
.ws97{word-spacing:7.440000px;}
.ws61{word-spacing:7.560000px;}
.wsa5{word-spacing:7.920000px;}
.ws1a{word-spacing:8.100000px;}
.ws10{word-spacing:8.160000px;}
.wsb1{word-spacing:8.220000px;}
.ws3b{word-spacing:8.280000px;}
.wse{word-spacing:8.340000px;}
.ws39{word-spacing:8.400000px;}
.ws80{word-spacing:8.580000px;}
.ws45{word-spacing:8.700000px;}
.ws38{word-spacing:8.760000px;}
.ws34{word-spacing:8.820000px;}
.ws28{word-spacing:9.360000px;}
.ws47{word-spacing:9.780000px;}
.wsa0{word-spacing:9.960000px;}
.ws95{word-spacing:10.020000px;}
.ws40{word-spacing:10.140000px;}
.ws69{word-spacing:10.200000px;}
.ws3d{word-spacing:10.260000px;}
.ws6b{word-spacing:10.320000px;}
.ws19{word-spacing:10.500000px;}
.ws31{word-spacing:10.560000px;}
.ws62{word-spacing:10.620000px;}
.ws35{word-spacing:10.800000px;}
.ws51{word-spacing:10.920000px;}
.ws24{word-spacing:10.980000px;}
.ws57{word-spacing:11.040000px;}
.ws32{word-spacing:11.160000px;}
.ws67{word-spacing:11.280000px;}
.ws33{word-spacing:11.580000px;}
.ws6d{word-spacing:11.880000px;}
.ws1b{word-spacing:12.120000px;}
.ws98{word-spacing:12.420000px;}
.ws5e{word-spacing:12.540000px;}
.ws1c{word-spacing:12.600000px;}
.ws3f{word-spacing:12.720000px;}
.ws9c{word-spacing:12.960000px;}
.ws26{word-spacing:13.140000px;}
.ws6a{word-spacing:13.260000px;}
.ws68{word-spacing:13.560000px;}
.wsf{word-spacing:13.740000px;}
.ws30{word-spacing:13.920000px;}
.ws5d{word-spacing:14.400000px;}
.ws2b{word-spacing:14.820000px;}
.wsc{word-spacing:14.880000px;}
.ws2a{word-spacing:14.940000px;}
.ws71{word-spacing:15.780000px;}
.ws2f{word-spacing:16.020000px;}
.ws50{word-spacing:16.860000px;}
.ws25{word-spacing:17.280000px;}
.ws1e{word-spacing:17.820000px;}
.ws9b{word-spacing:18.000000px;}
.ws18{word-spacing:18.300000px;}
.ws96{word-spacing:18.660000px;}
.ws60{word-spacing:18.780000px;}
.ws29{word-spacing:18.900000px;}
.ws7d{word-spacing:19.140000px;}
.ws55{word-spacing:20.280000px;}
.ws1d{word-spacing:20.460000px;}
.wsb3{word-spacing:20.700000px;}
.ws83{word-spacing:20.760000px;}
.ws77{word-spacing:20.880000px;}
.ws6c{word-spacing:21.000000px;}
.ws49{word-spacing:21.120000px;}
.ws5f{word-spacing:21.240000px;}
.ws99{word-spacing:21.300000px;}
.ws8d{word-spacing:21.360000px;}
.ws4e{word-spacing:21.780000px;}
.ws41{word-spacing:21.960000px;}
.ws2d{word-spacing:22.260000px;}
.wsb0{word-spacing:22.500000px;}
.wsa3{word-spacing:22.560000px;}
.ws1f{word-spacing:23.280000px;}
.ws3a{word-spacing:23.340000px;}
.ws66{word-spacing:23.760000px;}
.ws3c{word-spacing:24.120000px;}
.wsa4{word-spacing:24.900000px;}
.ws93{word-spacing:25.500000px;}
.ws92{word-spacing:25.620000px;}
.ws89{word-spacing:26.040000px;}
.wsad{word-spacing:26.100000px;}
.ws94{word-spacing:27.120000px;}
.wsaa{word-spacing:27.420000px;}
.ws76{word-spacing:28.680000px;}
.ws21{word-spacing:29.220000px;}
.ws4c{word-spacing:29.520000px;}
.ws90{word-spacing:29.580000px;}
.ws82{word-spacing:29.820000px;}
.ws9a{word-spacing:30.060000px;}
.ws70{word-spacing:30.480000px;}
.ws9e{word-spacing:30.720000px;}
.ws65{word-spacing:31.620000px;}
.wsae{word-spacing:31.740000px;}
.ws16{word-spacing:33.621000px;}
.ws42{word-spacing:34.080000px;}
.ws8b{word-spacing:35.340000px;}
.ws58{word-spacing:36.240000px;}
.wsb2{word-spacing:36.720000px;}
.ws8c{word-spacing:38.940000px;}
.ws7a{word-spacing:39.780000px;}
.wsb4{word-spacing:39.960000px;}
.ws8e{word-spacing:41.940000px;}
.ws53{word-spacing:42.420000px;}
.ws79{word-spacing:46.260000px;}
.ws64{word-spacing:55.680000px;}
.wsb5{word-spacing:107.400000px;}
.ws17{word-spacing:386.314800px;}
.ws0{word-spacing:1699.977600px;}
._2d{margin-left:-99.420000px;}
._2b{margin-left:-31.686000px;}
._29{margin-left:-28.446000px;}
._26{margin-left:-23.466000px;}
._28{margin-left:-20.406000px;}
._27{margin-left:-14.226000px;}
._2a{margin-left:-12.426000px;}
._2c{margin-left:-11.040000px;}
._3{margin-left:-8.823000px;}
._6{margin-left:-6.976800px;}
._4{margin-left:-5.508000px;}
._2{margin-left:-4.386000px;}
._5{margin-left:-2.997000px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._7{width:2.964600px;}
._9{width:4.115400px;}
._8{width:6.102000px;}
._b{width:7.494000px;}
._e{width:8.748000px;}
._d{width:10.674000px;}
._10{width:11.748000px;}
._24{width:12.804000px;}
._1e{width:14.340000px;}
._1b{width:16.104000px;}
._21{width:17.676000px;}
._20{width:18.858000px;}
._12{width:20.226000px;}
._11{width:21.246000px;}
._15{width:22.410000px;}
._1d{width:31.980000px;}
._1a{width:34.062000px;}
._18{width:40.500000px;}
._25{width:43.980000px;}
._13{width:46.740000px;}
._16{width:48.060000px;}
._f{width:51.720000px;}
._1c{width:55.200000px;}
._1f{width:56.460000px;}
._19{width:58.980000px;}
._17{width:60.240000px;}
._14{width:61.260000px;}
._23{width:63.420000px;}
._22{width:65.400000px;}
._c{width:70.680000px;}
._a{width:76.860000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.ydd{bottom:93.159600px;}
.y62{bottom:93.304200px;}
.yd8{bottom:93.399600px;}
.y8a{bottom:93.544200px;}
.y2d{bottom:99.042450px;}
.ydc{bottom:114.159600px;}
.y61{bottom:114.304200px;}
.yd7{bottom:114.399600px;}
.y89{bottom:114.544200px;}
.y2c{bottom:120.042450px;}
.yb0{bottom:135.159600px;}
.y60{bottom:135.304200px;}
.yd6{bottom:135.399600px;}
.y88{bottom:135.544200px;}
.y2b{bottom:141.042450px;}
.yaf{bottom:156.159600px;}
.y5f{bottom:156.304200px;}
.yd5{bottom:156.399600px;}
.y87{bottom:156.544200px;}
.y2a{bottom:162.042450px;}
.yae{bottom:177.159600px;}
.y5e{bottom:177.304200px;}
.yd4{bottom:177.399600px;}
.y29{bottom:183.042450px;}
.yad{bottom:198.159600px;}
.y5d{bottom:198.304200px;}
.yd3{bottom:198.399600px;}
.y86{bottom:198.544200px;}
.y28{bottom:204.042450px;}
.yac{bottom:219.159600px;}
.y5c{bottom:219.304200px;}
.yd2{bottom:219.399600px;}
.y85{bottom:219.544200px;}
.y27{bottom:225.042450px;}
.yab{bottom:240.159600px;}
.y5b{bottom:240.304200px;}
.yd1{bottom:240.399600px;}
.y84{bottom:240.544200px;}
.y26{bottom:246.042450px;}
.yaa{bottom:261.159600px;}
.y5a{bottom:261.304200px;}
.yd0{bottom:261.399600px;}
.y83{bottom:261.544200px;}
.y25{bottom:267.042450px;}
.ya9{bottom:282.159600px;}
.y59{bottom:282.304200px;}
.y82{bottom:282.544200px;}
.y24{bottom:288.042450px;}
.ydb{bottom:303.159600px;}
.y58{bottom:303.304200px;}
.ycf{bottom:303.399600px;}
.y81{bottom:303.544200px;}
.y23{bottom:309.042450px;}
.ya8{bottom:324.159600px;}
.y57{bottom:324.304200px;}
.yce{bottom:324.399600px;}
.y80{bottom:324.544200px;}
.y22{bottom:330.042450px;}
.ya7{bottom:345.159600px;}
.y56{bottom:345.304200px;}
.ycd{bottom:345.399600px;}
.y7f{bottom:345.544200px;}
.y21{bottom:351.042450px;}
.ya6{bottom:366.159600px;}
.y55{bottom:366.304200px;}
.ycc{bottom:366.399600px;}
.y20{bottom:372.042450px;}
.ya5{bottom:387.159600px;}
.y54{bottom:387.304200px;}
.ycb{bottom:387.399600px;}
.y7e{bottom:387.544200px;}
.y1f{bottom:393.042450px;}
.ya4{bottom:408.159600px;}
.yca{bottom:408.399600px;}
.y7d{bottom:408.544200px;}
.y1e{bottom:414.042450px;}
.ya3{bottom:429.159600px;}
.y53{bottom:429.304200px;}
.yc9{bottom:429.399600px;}
.y7c{bottom:429.544200px;}
.y1d{bottom:435.042450px;}
.ya2{bottom:450.159600px;}
.y52{bottom:450.304200px;}
.yc8{bottom:450.399600px;}
.y7b{bottom:450.544200px;}
.y1c{bottom:456.042450px;}
.y36{bottom:456.139950px;}
.ya1{bottom:471.159600px;}
.y51{bottom:471.304200px;}
.y7a{bottom:471.544200px;}
.y1b{bottom:477.042450px;}
.y35{bottom:478.639950px;}
.ya0{bottom:492.159600px;}
.y50{bottom:492.304200px;}
.yc7{bottom:492.399600px;}
.y79{bottom:492.544200px;}
.y1a{bottom:498.042450px;}
.y34{bottom:501.139950px;}
.yda{bottom:513.159600px;}
.y4f{bottom:513.304200px;}
.yc6{bottom:513.399600px;}
.y78{bottom:513.544200px;}
.y19{bottom:519.042450px;}
.y9f{bottom:534.159600px;}
.y4e{bottom:534.304200px;}
.yc5{bottom:534.399600px;}
.y77{bottom:534.544200px;}
.y18{bottom:540.042450px;}
.y33{bottom:541.639950px;}
.y9e{bottom:555.159600px;}
.y4d{bottom:555.304200px;}
.yc4{bottom:555.399600px;}
.y76{bottom:555.544200px;}
.y17{bottom:561.042450px;}
.y9d{bottom:576.159600px;}
.y4c{bottom:576.304200px;}
.yc3{bottom:576.399600px;}
.y16{bottom:582.042450px;}
.y32{bottom:586.639950px;}
.y9c{bottom:597.159600px;}
.y4b{bottom:597.304200px;}
.yc2{bottom:597.399600px;}
.y75{bottom:597.544200px;}
.y15{bottom:603.042450px;}
.y9b{bottom:618.159600px;}
.y4a{bottom:618.304200px;}
.yc1{bottom:618.399600px;}
.y74{bottom:618.544200px;}
.y31{bottom:627.139950px;}
.y14{bottom:638.482950px;}
.y9a{bottom:639.159600px;}
.y49{bottom:639.304200px;}
.yc0{bottom:639.399600px;}
.y73{bottom:639.544200px;}
.y13{bottom:656.478450px;}
.y99{bottom:660.159600px;}
.y48{bottom:660.304200px;}
.y72{bottom:660.544200px;}
.y30{bottom:663.139950px;}
.y12{bottom:674.473950px;}
.y98{bottom:681.159600px;}
.y47{bottom:681.304200px;}
.ybf{bottom:681.399600px;}
.y71{bottom:681.544200px;}
.y11{bottom:692.469450px;}
.y2f{bottom:699.139950px;}
.y97{bottom:702.159600px;}
.y46{bottom:702.304200px;}
.ybe{bottom:702.399600px;}
.y70{bottom:702.544200px;}
.y10{bottom:710.464950px;}
.yde{bottom:723.159600px;}
.y45{bottom:723.304200px;}
.ybd{bottom:723.399600px;}
.y6f{bottom:723.544200px;}
.yf{bottom:728.460450px;}
.y2e{bottom:735.139950px;}
.y96{bottom:744.159600px;}
.y44{bottom:744.304200px;}
.ybc{bottom:744.399600px;}
.y6e{bottom:744.544200px;}
.ye{bottom:746.455950px;}
.yd{bottom:764.451450px;}
.y95{bottom:765.159600px;}
.ybb{bottom:765.399600px;}
.y6d{bottom:765.544200px;}
.yc{bottom:782.446950px;}
.y94{bottom:786.159600px;}
.y43{bottom:786.304200px;}
.yba{bottom:786.399600px;}
.y6c{bottom:786.544200px;}
.yb{bottom:800.442450px;}
.y93{bottom:807.159600px;}
.y42{bottom:807.304200px;}
.yb9{bottom:807.399600px;}
.ya{bottom:818.442450px;}
.y92{bottom:828.159600px;}
.y41{bottom:828.304200px;}
.yb8{bottom:828.399600px;}
.y6b{bottom:828.544200px;}
.y91{bottom:849.159600px;}
.y40{bottom:849.304200px;}
.y6a{bottom:849.544200px;}
.y9{bottom:858.946950px;}
.y90{bottom:870.159600px;}
.y3f{bottom:870.304200px;}
.yb7{bottom:870.399600px;}
.y69{bottom:870.544200px;}
.y8{bottom:876.942450px;}
.yd9{bottom:891.159600px;}
.y3e{bottom:891.304200px;}
.yb6{bottom:891.399600px;}
.y68{bottom:891.544200px;}
.y7{bottom:894.942450px;}
.y8f{bottom:912.159600px;}
.y3d{bottom:912.304200px;}
.yb5{bottom:912.399600px;}
.y67{bottom:912.544200px;}
.y8e{bottom:933.159600px;}
.y3c{bottom:933.304200px;}
.yb4{bottom:933.399600px;}
.y66{bottom:933.544200px;}
.y6{bottom:939.949950px;}
.y8d{bottom:954.159600px;}
.y3b{bottom:954.304200px;}
.yb3{bottom:954.399600px;}
.y65{bottom:954.544200px;}
.y5{bottom:965.442450px;}
.y8c{bottom:975.159600px;}
.y3a{bottom:975.304200px;}
.yb2{bottom:975.399600px;}
.y64{bottom:975.544200px;}
.y8b{bottom:996.159600px;}
.y39{bottom:996.304200px;}
.yb1{bottom:996.399600px;}
.y63{bottom:996.544200px;}
.y4{bottom:1024.374150px;}
.y38{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.h8{height:37.494141px;}
.h7{height:40.664062px;}
.h9{height:41.689453px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.hc{height:46.200000px;}
.hb{height:50.400000px;}
.he{height:52.492611px;}
.ha{height:52.646484px;}
.hd{height:53.467611px;}
.h6{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xd{left:65.202600px;}
.xc{left:71.253150px;}
.xb{left:73.559100px;}
.xf{left:90.779550px;}
.xa{left:224.187900px;}
.x6{left:309.838050px;}
.x5{left:349.550550px;}
.xe{left:399.929550px;}
.x4{left:412.272150px;}
.x10{left:426.929550px;}
.x9{left:429.643500px;}
.x8{left:502.368000px;}
.x7{left:603.548400px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws9f{word-spacing:-7.413333pt;}
.ws86{word-spacing:-6.613333pt;}
.ws4{word-spacing:-6.080000pt;}
.ws81{word-spacing:-5.333333pt;}
.ws23{word-spacing:-5.013333pt;}
.wsa8{word-spacing:-4.746667pt;}
.ws3e{word-spacing:-3.946667pt;}
.wsaf{word-spacing:-3.520000pt;}
.wsb6{word-spacing:-3.253333pt;}
.ws6f{word-spacing:-3.200000pt;}
.ws2e{word-spacing:-2.933333pt;}
.ws6e{word-spacing:-2.346667pt;}
.ws74{word-spacing:-2.240000pt;}
.wsac{word-spacing:-2.026667pt;}
.ws36{word-spacing:-1.546667pt;}
.ws5b{word-spacing:-1.493333pt;}
.ws8{word-spacing:-1.280000pt;}
.ws6{word-spacing:-1.173333pt;}
.ws22{word-spacing:-1.066667pt;}
.wsb7{word-spacing:-0.960000pt;}
.ws12{word-spacing:-0.906667pt;}
.ws52{word-spacing:-0.800000pt;}
.ws5a{word-spacing:-0.693333pt;}
.wsa{word-spacing:-0.586667pt;}
.wsa1{word-spacing:-0.480000pt;}
.ws14{word-spacing:-0.160000pt;}
.ws7e{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.213333pt;}
.ws8a{word-spacing:0.533333pt;}
.ws11{word-spacing:0.586667pt;}
.ws1{word-spacing:0.640000pt;}
.ws73{word-spacing:0.800000pt;}
.wsa2{word-spacing:0.906667pt;}
.ws20{word-spacing:1.013333pt;}
.wsa9{word-spacing:1.066667pt;}
.ws37{word-spacing:1.226667pt;}
.ws87{word-spacing:1.440000pt;}
.wsab{word-spacing:1.653333pt;}
.ws27{word-spacing:1.813333pt;}
.ws4a{word-spacing:1.920000pt;}
.ws91{word-spacing:2.026667pt;}
.ws4b{word-spacing:2.293333pt;}
.ws9d{word-spacing:2.346667pt;}
.ws15{word-spacing:2.453333pt;}
.ws4f{word-spacing:2.560000pt;}
.ws2c{word-spacing:2.720000pt;}
.ws7f{word-spacing:2.773333pt;}
.ws72{word-spacing:2.933333pt;}
.wsb{word-spacing:2.986667pt;}
.ws56{word-spacing:3.040000pt;}
.ws7{word-spacing:3.626667pt;}
.ws46{word-spacing:3.680000pt;}
.wsa7{word-spacing:3.946667pt;}
.ws59{word-spacing:4.000000pt;}
.ws5{word-spacing:4.053333pt;}
.ws84{word-spacing:4.106667pt;}
.ws9{word-spacing:4.266667pt;}
.ws88{word-spacing:4.426667pt;}
.ws44{word-spacing:4.586667pt;}
.ws4d{word-spacing:4.640000pt;}
.ws7c{word-spacing:4.693333pt;}
.wsa6{word-spacing:4.853333pt;}
.ws48{word-spacing:4.960000pt;}
.ws8f{word-spacing:5.013333pt;}
.ws43{word-spacing:5.386667pt;}
.wsd{word-spacing:5.440000pt;}
.ws75{word-spacing:5.546667pt;}
.ws78{word-spacing:5.813333pt;}
.ws7b{word-spacing:5.866667pt;}
.ws13{word-spacing:5.973333pt;}
.ws85{word-spacing:6.240000pt;}
.ws54{word-spacing:6.293333pt;}
.ws63{word-spacing:6.400000pt;}
.ws97{word-spacing:6.613333pt;}
.ws61{word-spacing:6.720000pt;}
.wsa5{word-spacing:7.040000pt;}
.ws1a{word-spacing:7.200000pt;}
.ws10{word-spacing:7.253333pt;}
.wsb1{word-spacing:7.306667pt;}
.ws3b{word-spacing:7.360000pt;}
.wse{word-spacing:7.413333pt;}
.ws39{word-spacing:7.466667pt;}
.ws80{word-spacing:7.626667pt;}
.ws45{word-spacing:7.733333pt;}
.ws38{word-spacing:7.786667pt;}
.ws34{word-spacing:7.840000pt;}
.ws28{word-spacing:8.320000pt;}
.ws47{word-spacing:8.693333pt;}
.wsa0{word-spacing:8.853333pt;}
.ws95{word-spacing:8.906667pt;}
.ws40{word-spacing:9.013333pt;}
.ws69{word-spacing:9.066667pt;}
.ws3d{word-spacing:9.120000pt;}
.ws6b{word-spacing:9.173333pt;}
.ws19{word-spacing:9.333333pt;}
.ws31{word-spacing:9.386667pt;}
.ws62{word-spacing:9.440000pt;}
.ws35{word-spacing:9.600000pt;}
.ws51{word-spacing:9.706667pt;}
.ws24{word-spacing:9.760000pt;}
.ws57{word-spacing:9.813333pt;}
.ws32{word-spacing:9.920000pt;}
.ws67{word-spacing:10.026667pt;}
.ws33{word-spacing:10.293333pt;}
.ws6d{word-spacing:10.560000pt;}
.ws1b{word-spacing:10.773333pt;}
.ws98{word-spacing:11.040000pt;}
.ws5e{word-spacing:11.146667pt;}
.ws1c{word-spacing:11.200000pt;}
.ws3f{word-spacing:11.306667pt;}
.ws9c{word-spacing:11.520000pt;}
.ws26{word-spacing:11.680000pt;}
.ws6a{word-spacing:11.786667pt;}
.ws68{word-spacing:12.053333pt;}
.wsf{word-spacing:12.213333pt;}
.ws30{word-spacing:12.373333pt;}
.ws5d{word-spacing:12.800000pt;}
.ws2b{word-spacing:13.173333pt;}
.wsc{word-spacing:13.226667pt;}
.ws2a{word-spacing:13.280000pt;}
.ws71{word-spacing:14.026667pt;}
.ws2f{word-spacing:14.240000pt;}
.ws50{word-spacing:14.986667pt;}
.ws25{word-spacing:15.360000pt;}
.ws1e{word-spacing:15.840000pt;}
.ws9b{word-spacing:16.000000pt;}
.ws18{word-spacing:16.266667pt;}
.ws96{word-spacing:16.586667pt;}
.ws60{word-spacing:16.693333pt;}
.ws29{word-spacing:16.800000pt;}
.ws7d{word-spacing:17.013333pt;}
.ws55{word-spacing:18.026667pt;}
.ws1d{word-spacing:18.186667pt;}
.wsb3{word-spacing:18.400000pt;}
.ws83{word-spacing:18.453333pt;}
.ws77{word-spacing:18.560000pt;}
.ws6c{word-spacing:18.666667pt;}
.ws49{word-spacing:18.773333pt;}
.ws5f{word-spacing:18.880000pt;}
.ws99{word-spacing:18.933333pt;}
.ws8d{word-spacing:18.986667pt;}
.ws4e{word-spacing:19.360000pt;}
.ws41{word-spacing:19.520000pt;}
.ws2d{word-spacing:19.786667pt;}
.wsb0{word-spacing:20.000000pt;}
.wsa3{word-spacing:20.053333pt;}
.ws1f{word-spacing:20.693333pt;}
.ws3a{word-spacing:20.746667pt;}
.ws66{word-spacing:21.120000pt;}
.ws3c{word-spacing:21.440000pt;}
.wsa4{word-spacing:22.133333pt;}
.ws93{word-spacing:22.666667pt;}
.ws92{word-spacing:22.773333pt;}
.ws89{word-spacing:23.146667pt;}
.wsad{word-spacing:23.200000pt;}
.ws94{word-spacing:24.106667pt;}
.wsaa{word-spacing:24.373333pt;}
.ws76{word-spacing:25.493333pt;}
.ws21{word-spacing:25.973333pt;}
.ws4c{word-spacing:26.240000pt;}
.ws90{word-spacing:26.293333pt;}
.ws82{word-spacing:26.506667pt;}
.ws9a{word-spacing:26.720000pt;}
.ws70{word-spacing:27.093333pt;}
.ws9e{word-spacing:27.306667pt;}
.ws65{word-spacing:28.106667pt;}
.wsae{word-spacing:28.213333pt;}
.ws16{word-spacing:29.885333pt;}
.ws42{word-spacing:30.293333pt;}
.ws8b{word-spacing:31.413333pt;}
.ws58{word-spacing:32.213333pt;}
.wsb2{word-spacing:32.640000pt;}
.ws8c{word-spacing:34.613333pt;}
.ws7a{word-spacing:35.360000pt;}
.wsb4{word-spacing:35.520000pt;}
.ws8e{word-spacing:37.280000pt;}
.ws53{word-spacing:37.706667pt;}
.ws79{word-spacing:41.120000pt;}
.ws64{word-spacing:49.493333pt;}
.wsb5{word-spacing:95.466667pt;}
.ws17{word-spacing:343.390933pt;}
.ws0{word-spacing:1511.091200pt;}
._2d{margin-left:-88.373333pt;}
._2b{margin-left:-28.165333pt;}
._29{margin-left:-25.285333pt;}
._26{margin-left:-20.858667pt;}
._28{margin-left:-18.138667pt;}
._27{margin-left:-12.645333pt;}
._2a{margin-left:-11.045333pt;}
._2c{margin-left:-9.813333pt;}
._3{margin-left:-7.842667pt;}
._6{margin-left:-6.201600pt;}
._4{margin-left:-4.896000pt;}
._2{margin-left:-3.898667pt;}
._5{margin-left:-2.664000pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._7{width:2.635200pt;}
._9{width:3.658133pt;}
._8{width:5.424000pt;}
._b{width:6.661333pt;}
._e{width:7.776000pt;}
._d{width:9.488000pt;}
._10{width:10.442667pt;}
._24{width:11.381333pt;}
._1e{width:12.746667pt;}
._1b{width:14.314667pt;}
._21{width:15.712000pt;}
._20{width:16.762667pt;}
._12{width:17.978667pt;}
._11{width:18.885333pt;}
._15{width:19.920000pt;}
._1d{width:28.426667pt;}
._1a{width:30.277333pt;}
._18{width:36.000000pt;}
._25{width:39.093333pt;}
._13{width:41.546667pt;}
._16{width:42.720000pt;}
._f{width:45.973333pt;}
._1c{width:49.066667pt;}
._1f{width:50.186667pt;}
._19{width:52.426667pt;}
._17{width:53.546667pt;}
._14{width:54.453333pt;}
._23{width:56.373333pt;}
._22{width:58.133333pt;}
._c{width:62.826667pt;}
._a{width:68.320000pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.ydd{bottom:82.808533pt;}
.y62{bottom:82.937067pt;}
.yd8{bottom:83.021867pt;}
.y8a{bottom:83.150400pt;}
.y2d{bottom:88.037733pt;}
.ydc{bottom:101.475200pt;}
.y61{bottom:101.603733pt;}
.yd7{bottom:101.688533pt;}
.y89{bottom:101.817067pt;}
.y2c{bottom:106.704400pt;}
.yb0{bottom:120.141867pt;}
.y60{bottom:120.270400pt;}
.yd6{bottom:120.355200pt;}
.y88{bottom:120.483733pt;}
.y2b{bottom:125.371067pt;}
.yaf{bottom:138.808533pt;}
.y5f{bottom:138.937067pt;}
.yd5{bottom:139.021867pt;}
.y87{bottom:139.150400pt;}
.y2a{bottom:144.037733pt;}
.yae{bottom:157.475200pt;}
.y5e{bottom:157.603733pt;}
.yd4{bottom:157.688533pt;}
.y29{bottom:162.704400pt;}
.yad{bottom:176.141867pt;}
.y5d{bottom:176.270400pt;}
.yd3{bottom:176.355200pt;}
.y86{bottom:176.483733pt;}
.y28{bottom:181.371067pt;}
.yac{bottom:194.808533pt;}
.y5c{bottom:194.937067pt;}
.yd2{bottom:195.021867pt;}
.y85{bottom:195.150400pt;}
.y27{bottom:200.037733pt;}
.yab{bottom:213.475200pt;}
.y5b{bottom:213.603733pt;}
.yd1{bottom:213.688533pt;}
.y84{bottom:213.817067pt;}
.y26{bottom:218.704400pt;}
.yaa{bottom:232.141867pt;}
.y5a{bottom:232.270400pt;}
.yd0{bottom:232.355200pt;}
.y83{bottom:232.483733pt;}
.y25{bottom:237.371067pt;}
.ya9{bottom:250.808533pt;}
.y59{bottom:250.937067pt;}
.y82{bottom:251.150400pt;}
.y24{bottom:256.037733pt;}
.ydb{bottom:269.475200pt;}
.y58{bottom:269.603733pt;}
.ycf{bottom:269.688533pt;}
.y81{bottom:269.817067pt;}
.y23{bottom:274.704400pt;}
.ya8{bottom:288.141867pt;}
.y57{bottom:288.270400pt;}
.yce{bottom:288.355200pt;}
.y80{bottom:288.483733pt;}
.y22{bottom:293.371067pt;}
.ya7{bottom:306.808533pt;}
.y56{bottom:306.937067pt;}
.ycd{bottom:307.021867pt;}
.y7f{bottom:307.150400pt;}
.y21{bottom:312.037733pt;}
.ya6{bottom:325.475200pt;}
.y55{bottom:325.603733pt;}
.ycc{bottom:325.688533pt;}
.y20{bottom:330.704400pt;}
.ya5{bottom:344.141867pt;}
.y54{bottom:344.270400pt;}
.ycb{bottom:344.355200pt;}
.y7e{bottom:344.483733pt;}
.y1f{bottom:349.371067pt;}
.ya4{bottom:362.808533pt;}
.yca{bottom:363.021867pt;}
.y7d{bottom:363.150400pt;}
.y1e{bottom:368.037733pt;}
.ya3{bottom:381.475200pt;}
.y53{bottom:381.603733pt;}
.yc9{bottom:381.688533pt;}
.y7c{bottom:381.817067pt;}
.y1d{bottom:386.704400pt;}
.ya2{bottom:400.141867pt;}
.y52{bottom:400.270400pt;}
.yc8{bottom:400.355200pt;}
.y7b{bottom:400.483733pt;}
.y1c{bottom:405.371067pt;}
.y36{bottom:405.457733pt;}
.ya1{bottom:418.808533pt;}
.y51{bottom:418.937067pt;}
.y7a{bottom:419.150400pt;}
.y1b{bottom:424.037733pt;}
.y35{bottom:425.457733pt;}
.ya0{bottom:437.475200pt;}
.y50{bottom:437.603733pt;}
.yc7{bottom:437.688533pt;}
.y79{bottom:437.817067pt;}
.y1a{bottom:442.704400pt;}
.y34{bottom:445.457733pt;}
.yda{bottom:456.141867pt;}
.y4f{bottom:456.270400pt;}
.yc6{bottom:456.355200pt;}
.y78{bottom:456.483733pt;}
.y19{bottom:461.371067pt;}
.y9f{bottom:474.808533pt;}
.y4e{bottom:474.937067pt;}
.yc5{bottom:475.021867pt;}
.y77{bottom:475.150400pt;}
.y18{bottom:480.037733pt;}
.y33{bottom:481.457733pt;}
.y9e{bottom:493.475200pt;}
.y4d{bottom:493.603733pt;}
.yc4{bottom:493.688533pt;}
.y76{bottom:493.817067pt;}
.y17{bottom:498.704400pt;}
.y9d{bottom:512.141867pt;}
.y4c{bottom:512.270400pt;}
.yc3{bottom:512.355200pt;}
.y16{bottom:517.371067pt;}
.y32{bottom:521.457733pt;}
.y9c{bottom:530.808533pt;}
.y4b{bottom:530.937067pt;}
.yc2{bottom:531.021867pt;}
.y75{bottom:531.150400pt;}
.y15{bottom:536.037733pt;}
.y9b{bottom:549.475200pt;}
.y4a{bottom:549.603733pt;}
.yc1{bottom:549.688533pt;}
.y74{bottom:549.817067pt;}
.y31{bottom:557.457733pt;}
.y14{bottom:567.540400pt;}
.y9a{bottom:568.141867pt;}
.y49{bottom:568.270400pt;}
.yc0{bottom:568.355200pt;}
.y73{bottom:568.483733pt;}
.y13{bottom:583.536400pt;}
.y99{bottom:586.808533pt;}
.y48{bottom:586.937067pt;}
.y72{bottom:587.150400pt;}
.y30{bottom:589.457733pt;}
.y12{bottom:599.532400pt;}
.y98{bottom:605.475200pt;}
.y47{bottom:605.603733pt;}
.ybf{bottom:605.688533pt;}
.y71{bottom:605.817067pt;}
.y11{bottom:615.528400pt;}
.y2f{bottom:621.457733pt;}
.y97{bottom:624.141867pt;}
.y46{bottom:624.270400pt;}
.ybe{bottom:624.355200pt;}
.y70{bottom:624.483733pt;}
.y10{bottom:631.524400pt;}
.yde{bottom:642.808533pt;}
.y45{bottom:642.937067pt;}
.ybd{bottom:643.021867pt;}
.y6f{bottom:643.150400pt;}
.yf{bottom:647.520400pt;}
.y2e{bottom:653.457733pt;}
.y96{bottom:661.475200pt;}
.y44{bottom:661.603733pt;}
.ybc{bottom:661.688533pt;}
.y6e{bottom:661.817067pt;}
.ye{bottom:663.516400pt;}
.yd{bottom:679.512400pt;}
.y95{bottom:680.141867pt;}
.ybb{bottom:680.355200pt;}
.y6d{bottom:680.483733pt;}
.yc{bottom:695.508400pt;}
.y94{bottom:698.808533pt;}
.y43{bottom:698.937067pt;}
.yba{bottom:699.021867pt;}
.y6c{bottom:699.150400pt;}
.yb{bottom:711.504400pt;}
.y93{bottom:717.475200pt;}
.y42{bottom:717.603733pt;}
.yb9{bottom:717.688533pt;}
.ya{bottom:727.504400pt;}
.y92{bottom:736.141867pt;}
.y41{bottom:736.270400pt;}
.yb8{bottom:736.355200pt;}
.y6b{bottom:736.483733pt;}
.y91{bottom:754.808533pt;}
.y40{bottom:754.937067pt;}
.y6a{bottom:755.150400pt;}
.y9{bottom:763.508400pt;}
.y90{bottom:773.475200pt;}
.y3f{bottom:773.603733pt;}
.yb7{bottom:773.688533pt;}
.y69{bottom:773.817067pt;}
.y8{bottom:779.504400pt;}
.yd9{bottom:792.141867pt;}
.y3e{bottom:792.270400pt;}
.yb6{bottom:792.355200pt;}
.y68{bottom:792.483733pt;}
.y7{bottom:795.504400pt;}
.y8f{bottom:810.808533pt;}
.y3d{bottom:810.937067pt;}
.yb5{bottom:811.021867pt;}
.y67{bottom:811.150400pt;}
.y8e{bottom:829.475200pt;}
.y3c{bottom:829.603733pt;}
.yb4{bottom:829.688533pt;}
.y66{bottom:829.817067pt;}
.y6{bottom:835.511067pt;}
.y8d{bottom:848.141867pt;}
.y3b{bottom:848.270400pt;}
.yb3{bottom:848.355200pt;}
.y65{bottom:848.483733pt;}
.y5{bottom:858.171067pt;}
.y8c{bottom:866.808533pt;}
.y3a{bottom:866.937067pt;}
.yb2{bottom:867.021867pt;}
.y64{bottom:867.150400pt;}
.y8b{bottom:885.475200pt;}
.y39{bottom:885.603733pt;}
.yb1{bottom:885.688533pt;}
.y63{bottom:885.817067pt;}
.y4{bottom:910.554800pt;}
.y38{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.h8{height:33.328125pt;}
.h7{height:36.145833pt;}
.h9{height:37.057292pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.hc{height:41.066667pt;}
.hb{height:44.800000pt;}
.he{height:46.660099pt;}
.ha{height:46.796875pt;}
.hd{height:47.526765pt;}
.h6{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xd{left:57.957867pt;}
.xc{left:63.336133pt;}
.xb{left:65.385867pt;}
.xf{left:80.692933pt;}
.xa{left:199.278133pt;}
.x6{left:275.411600pt;}
.x5{left:310.711600pt;}
.xe{left:355.492933pt;}
.x4{left:366.464133pt;}
.x10{left:379.492933pt;}
.x9{left:381.905333pt;}
.x8{left:446.549333pt;}
.x7{left:536.487467pt;}
.x3{left:545.952133pt;}
.x2{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; }
  