
    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_0aae7bd7bccabb4976f7e7ee.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_0aae7bd7bccabb4976f7e7ee.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_3da4f3427977541e27fe46e3.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_b259e341984c57594f451686.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_0f9f4dc8a4f664429b754819.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_fbaf1919233f990d6e2d7546.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_bf16c794d3cd1b21256070a8.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_8ce6e1cf72504daabbbca5ef.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_ccb1d62fbf4fe0e519c968c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_baf1d5f07726b325ffe48ef0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b83a8c8c40a7ec793d721e2c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5c87ea01e2819cdcee8913e4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_dff142f1d2cb28d6e56c2683.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9df00b4912cb2325f5636fc9.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3da4f3427977541e27fe46e3.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_008f4a9ec7def04a9923699c.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_fa69680019fdc324ec67c60f.woff2')format("woff");}.ff11{font-family:ff11;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.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);}
.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;}
.ls3{letter-spacing:7.980000px;}
.ls2{letter-spacing:69.420000px;}
.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;}
.ws3c{word-spacing:-7.200000px;}
.ws67{word-spacing:-6.660000px;}
.ws3d{word-spacing:-5.340000px;}
.wsaf{word-spacing:-5.280000px;}
.ws77{word-spacing:-5.040000px;}
.ws19{word-spacing:-4.320000px;}
.ws25{word-spacing:-3.660000px;}
.wsf{word-spacing:-3.480000px;}
.ws5b{word-spacing:-3.360000px;}
.ws3e{word-spacing:-2.940000px;}
.ws1c{word-spacing:-2.820000px;}
.ws26{word-spacing:-2.280000px;}
.ws94{word-spacing:-2.160000px;}
.ws8c{word-spacing:-2.100000px;}
.ws8d{word-spacing:-1.980000px;}
.wsd{word-spacing:-1.944000px;}
.ws1d{word-spacing:-1.800000px;}
.ws18{word-spacing:-1.620000px;}
.ws5a{word-spacing:-1.500000px;}
.ws85{word-spacing:-1.380000px;}
.ws4d{word-spacing:-1.200000px;}
.ws4{word-spacing:-1.080000px;}
.ws8{word-spacing:-1.026000px;}
.wsc1{word-spacing:-0.960000px;}
.ws78{word-spacing:-0.900000px;}
.wsa1{word-spacing:-0.540000px;}
.ws6a{word-spacing:-0.360000px;}
.ws44{word-spacing:-0.300000px;}
.wsb6{word-spacing:-0.240000px;}
.ws3{word-spacing:0.000000px;}
.ws7d{word-spacing:0.060000px;}
.ws75{word-spacing:0.360000px;}
.wsa5{word-spacing:0.420000px;}
.wsb0{word-spacing:0.540000px;}
.ws10{word-spacing:0.600000px;}
.ws17{word-spacing:0.660000px;}
.ws1{word-spacing:0.720000px;}
.ws31{word-spacing:1.020000px;}
.ws1a{word-spacing:1.140000px;}
.ws6e{word-spacing:1.320000px;}
.ws48{word-spacing:1.380000px;}
.wsa{word-spacing:1.512000px;}
.ws8b{word-spacing:1.560000px;}
.ws1b{word-spacing:1.680000px;}
.wsb2{word-spacing:1.860000px;}
.ws42{word-spacing:1.920000px;}
.ws45{word-spacing:2.100000px;}
.ws73{word-spacing:2.160000px;}
.ws9d{word-spacing:2.280000px;}
.ws6d{word-spacing:2.400000px;}
.ws14{word-spacing:2.700000px;}
.ws68{word-spacing:2.820000px;}
.ws3a{word-spacing:2.880000px;}
.ws74{word-spacing:2.940000px;}
.ws13{word-spacing:3.000000px;}
.ws7{word-spacing:3.024000px;}
.ws4e{word-spacing:3.060000px;}
.ws46{word-spacing:3.180000px;}
.wsb1{word-spacing:3.240000px;}
.ws7e{word-spacing:3.480000px;}
.wsb3{word-spacing:3.720000px;}
.ws15{word-spacing:3.780000px;}
.ws5e{word-spacing:3.900000px;}
.ws8e{word-spacing:4.020000px;}
.ws11{word-spacing:4.080000px;}
.ws9b{word-spacing:4.140000px;}
.ws4f{word-spacing:4.260000px;}
.wsc{word-spacing:4.374000px;}
.ws6{word-spacing:4.590000px;}
.ws47{word-spacing:4.620000px;}
.wsa9{word-spacing:5.100000px;}
.ws9c{word-spacing:5.220000px;}
.ws30{word-spacing:5.340000px;}
.wsb5{word-spacing:5.400000px;}
.ws1e{word-spacing:5.640000px;}
.ws2b{word-spacing:5.700000px;}
.ws71{word-spacing:5.880000px;}
.wsb4{word-spacing:6.540000px;}
.ws4a{word-spacing:6.600000px;}
.wsb7{word-spacing:6.840000px;}
.ws22{word-spacing:6.900000px;}
.ws54{word-spacing:7.020000px;}
.ws2f{word-spacing:7.140000px;}
.ws5c{word-spacing:7.200000px;}
.ws29{word-spacing:7.380000px;}
.ws60{word-spacing:7.440000px;}
.ws36{word-spacing:7.620000px;}
.ws24{word-spacing:7.740000px;}
.ws3b{word-spacing:7.800000px;}
.ws52{word-spacing:7.920000px;}
.ws23{word-spacing:8.100000px;}
.ws6c{word-spacing:8.280000px;}
.ws4b{word-spacing:8.520000px;}
.ws16{word-spacing:8.580000px;}
.ws6f{word-spacing:8.640000px;}
.wsbb{word-spacing:8.820000px;}
.ws5d{word-spacing:9.120000px;}
.ws62{word-spacing:9.240000px;}
.ws38{word-spacing:9.300000px;}
.ws9{word-spacing:9.342000px;}
.ws90{word-spacing:9.660000px;}
.wse{word-spacing:9.666000px;}
.ws70{word-spacing:9.720000px;}
.ws72{word-spacing:9.900000px;}
.ws5{word-spacing:10.044000px;}
.ws8f{word-spacing:10.200000px;}
.ws2a{word-spacing:10.320000px;}
.ws3f{word-spacing:10.380000px;}
.wsbe{word-spacing:10.440000px;}
.wsa6{word-spacing:10.500000px;}
.ws50{word-spacing:10.620000px;}
.ws95{word-spacing:10.920000px;}
.ws49{word-spacing:10.980000px;}
.wsa0{word-spacing:11.040000px;}
.ws69{word-spacing:11.160000px;}
.ws7c{word-spacing:11.520000px;}
.ws65{word-spacing:11.580000px;}
.ws99{word-spacing:11.760000px;}
.ws33{word-spacing:11.880000px;}
.ws88{word-spacing:12.120000px;}
.ws35{word-spacing:12.360000px;}
.ws28{word-spacing:12.420000px;}
.ws57{word-spacing:12.540000px;}
.ws86{word-spacing:12.600000px;}
.ws41{word-spacing:12.780000px;}
.ws7a{word-spacing:12.840000px;}
.ws27{word-spacing:12.900000px;}
.ws63{word-spacing:13.020000px;}
.ws79{word-spacing:13.140000px;}
.wsb{word-spacing:13.176000px;}
.wsb8{word-spacing:13.380000px;}
.wsc3{word-spacing:13.500000px;}
.ws87{word-spacing:13.560000px;}
.ws7b{word-spacing:13.620000px;}
.ws39{word-spacing:13.800000px;}
.ws93{word-spacing:14.160000px;}
.ws34{word-spacing:14.340000px;}
.ws2d{word-spacing:14.580000px;}
.wsa4{word-spacing:14.760000px;}
.ws9f{word-spacing:15.000000px;}
.ws4c{word-spacing:15.240000px;}
.wsb9{word-spacing:15.420000px;}
.ws7f{word-spacing:15.540000px;}
.ws37{word-spacing:15.600000px;}
.ws12{word-spacing:15.720000px;}
.ws55{word-spacing:15.900000px;}
.ws58{word-spacing:16.200000px;}
.ws89{word-spacing:16.320000px;}
.ws40{word-spacing:16.620000px;}
.ws64{word-spacing:16.860000px;}
.wsbd{word-spacing:17.040000px;}
.wsbf{word-spacing:17.340000px;}
.wsa3{word-spacing:17.640000px;}
.ws61{word-spacing:17.700000px;}
.ws59{word-spacing:17.940000px;}
.ws82{word-spacing:18.120000px;}
.ws1f{word-spacing:18.240000px;}
.wsae{word-spacing:19.020000px;}
.ws84{word-spacing:19.380000px;}
.ws56{word-spacing:19.980000px;}
.wsc2{word-spacing:20.100000px;}
.ws43{word-spacing:20.760000px;}
.ws97{word-spacing:21.300000px;}
.ws76{word-spacing:21.360000px;}
.ws51{word-spacing:21.960000px;}
.wsbc{word-spacing:22.440000px;}
.wsab{word-spacing:22.620000px;}
.ws53{word-spacing:23.160000px;}
.wsac{word-spacing:23.220000px;}
.wsa8{word-spacing:23.640000px;}
.ws9e{word-spacing:23.760000px;}
.wsa2{word-spacing:23.820000px;}
.ws91{word-spacing:24.060000px;}
.ws80{word-spacing:24.120000px;}
.wsba{word-spacing:25.080000px;}
.ws96{word-spacing:25.740000px;}
.wsaa{word-spacing:25.920000px;}
.ws9a{word-spacing:26.820000px;}
.ws81{word-spacing:26.940000px;}
.wsad{word-spacing:27.000000px;}
.ws6b{word-spacing:27.480000px;}
.ws32{word-spacing:27.780000px;}
.ws92{word-spacing:28.200000px;}
.ws83{word-spacing:32.580000px;}
.wsc0{word-spacing:32.940000px;}
.ws2e{word-spacing:34.380000px;}
.wsa7{word-spacing:35.580000px;}
.ws8a{word-spacing:41.580000px;}
.ws98{word-spacing:41.700000px;}
.ws20{word-spacing:48.021000px;}
.ws2c{word-spacing:51.360000px;}
.ws66{word-spacing:70.020000px;}
.ws21{word-spacing:386.314800px;}
.ws5f{word-spacing:1714.377600px;}
.ws0{word-spacing:1728.777600px;}
._1b{margin-left:-76.680000px;}
._d{margin-left:-66.324000px;}
._25{margin-left:-24.960000px;}
._8{margin-left:-22.680000px;}
._26{margin-left:-13.380000px;}
._3{margin-left:-8.760000px;}
._6{margin-left:-7.728000px;}
._24{margin-left:-6.654000px;}
._5{margin-left:-5.508000px;}
._2{margin-left:-4.386000px;}
._a{margin-left:-3.360000px;}
._4{margin-left:-2.181000px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._7{width:2.558400px;}
._14{width:3.732000px;}
._19{width:5.346000px;}
._15{width:7.044000px;}
._c{width:9.168000px;}
._1c{width:10.566000px;}
._f{width:12.834000px;}
._18{width:16.200000px;}
._23{width:25.020000px;}
._10{width:31.506000px;}
._21{width:32.706000px;}
._11{width:33.804000px;}
._12{width:34.812000px;}
._17{width:36.144000px;}
._20{width:45.960000px;}
._22{width:50.118000px;}
._1e{width:51.900000px;}
._e{width:55.440000px;}
._1a{width:62.820000px;}
._b{width:64.380000px;}
._16{width:68.340000px;}
._1d{width:70.020000px;}
._9{width:73.500000px;}
._1f{width:75.060000px;}
._13{width:77.220000px;}
.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;}
.y39{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y2f{bottom:90.942450px;}
.yc4{bottom:99.159600px;}
.y68{bottom:102.800700px;}
.y96{bottom:102.905700px;}
.y2e{bottom:110.442450px;}
.yc3{bottom:118.659600px;}
.y67{bottom:122.300700px;}
.y95{bottom:122.405700px;}
.y2d{bottom:129.942450px;}
.yc2{bottom:138.159600px;}
.y66{bottom:141.800700px;}
.y94{bottom:141.905700px;}
.y2c{bottom:149.442450px;}
.yc1{bottom:157.659600px;}
.y65{bottom:161.300700px;}
.y93{bottom:161.405700px;}
.y2b{bottom:168.942450px;}
.yc0{bottom:177.159600px;}
.y64{bottom:180.800700px;}
.y92{bottom:180.905700px;}
.y2a{bottom:188.442450px;}
.ybf{bottom:196.659600px;}
.y63{bottom:200.300700px;}
.y91{bottom:200.405700px;}
.y29{bottom:207.942450px;}
.ybe{bottom:216.159600px;}
.y62{bottom:219.800700px;}
.y90{bottom:219.905700px;}
.y28{bottom:227.442450px;}
.ybd{bottom:235.659600px;}
.y61{bottom:239.300700px;}
.y8f{bottom:239.405700px;}
.y27{bottom:246.942450px;}
.yc5{bottom:255.159600px;}
.y60{bottom:258.800700px;}
.y8e{bottom:258.905700px;}
.y26{bottom:266.442450px;}
.ybc{bottom:274.659600px;}
.y5f{bottom:278.300700px;}
.y8d{bottom:278.405700px;}
.y25{bottom:285.942450px;}
.ybb{bottom:294.159600px;}
.y5e{bottom:297.800700px;}
.y8c{bottom:297.905700px;}
.y24{bottom:305.442450px;}
.yba{bottom:313.659600px;}
.y5d{bottom:317.300700px;}
.y8b{bottom:317.405700px;}
.y23{bottom:324.942450px;}
.yb9{bottom:333.159600px;}
.y5c{bottom:336.800700px;}
.y8a{bottom:336.905700px;}
.y22{bottom:344.442450px;}
.yb8{bottom:352.659600px;}
.y5b{bottom:356.300700px;}
.y89{bottom:356.405700px;}
.y21{bottom:363.942450px;}
.yb7{bottom:372.159600px;}
.y5a{bottom:375.800700px;}
.y88{bottom:375.905700px;}
.y20{bottom:383.442450px;}
.yb6{bottom:391.659600px;}
.y59{bottom:395.300700px;}
.y87{bottom:395.405700px;}
.y1f{bottom:402.942450px;}
.yb5{bottom:411.159600px;}
.y58{bottom:414.800700px;}
.y86{bottom:414.905700px;}
.y1e{bottom:422.442450px;}
.yb4{bottom:430.659600px;}
.y57{bottom:434.300700px;}
.y85{bottom:434.405700px;}
.y1d{bottom:441.942450px;}
.yb3{bottom:450.159600px;}
.y56{bottom:453.800700px;}
.y84{bottom:453.905700px;}
.y38{bottom:456.139950px;}
.y1c{bottom:461.442450px;}
.yb2{bottom:469.659600px;}
.y55{bottom:473.300700px;}
.y83{bottom:473.405700px;}
.y37{bottom:478.639950px;}
.y1b{bottom:480.942450px;}
.yb1{bottom:489.159600px;}
.y54{bottom:492.800700px;}
.y1a{bottom:500.442450px;}
.y36{bottom:501.139950px;}
.yb0{bottom:508.659600px;}
.y53{bottom:512.300700px;}
.y82{bottom:512.405700px;}
.y19{bottom:519.942450px;}
.yaf{bottom:528.159600px;}
.y52{bottom:531.800700px;}
.y81{bottom:531.905700px;}
.y18{bottom:539.442450px;}
.y35{bottom:541.639950px;}
.yae{bottom:547.659600px;}
.y51{bottom:551.300700px;}
.y80{bottom:551.405700px;}
.y17{bottom:558.942450px;}
.yad{bottom:567.159600px;}
.y50{bottom:570.800700px;}
.y7f{bottom:570.905700px;}
.y34{bottom:586.639950px;}
.yac{bottom:586.659600px;}
.y4f{bottom:590.300700px;}
.y7e{bottom:590.405700px;}
.y16{bottom:600.996450px;}
.yab{bottom:606.159600px;}
.y4e{bottom:609.800700px;}
.y7d{bottom:609.905700px;}
.y15{bottom:618.991950px;}
.yaa{bottom:625.659600px;}
.y33{bottom:627.139950px;}
.y4d{bottom:629.300700px;}
.y7c{bottom:629.405700px;}
.y14{bottom:636.987450px;}
.ya9{bottom:645.159600px;}
.y4c{bottom:648.800700px;}
.y7b{bottom:648.905700px;}
.y13{bottom:654.982950px;}
.y32{bottom:663.139950px;}
.ya8{bottom:664.659600px;}
.y4b{bottom:668.300700px;}
.y7a{bottom:668.405700px;}
.y12{bottom:672.978450px;}
.ya7{bottom:684.159600px;}
.y4a{bottom:687.800700px;}
.y79{bottom:687.905700px;}
.y11{bottom:690.973950px;}
.y31{bottom:699.139950px;}
.ya6{bottom:703.659600px;}
.y49{bottom:707.300700px;}
.y78{bottom:707.405700px;}
.y10{bottom:708.969450px;}
.ya5{bottom:723.159600px;}
.y48{bottom:726.800700px;}
.y77{bottom:726.905700px;}
.yf{bottom:726.964950px;}
.y30{bottom:735.139950px;}
.ya4{bottom:742.659600px;}
.ye{bottom:744.960450px;}
.y47{bottom:746.300700px;}
.y76{bottom:746.405700px;}
.ya3{bottom:762.159600px;}
.yd{bottom:762.955950px;}
.y46{bottom:765.800700px;}
.y75{bottom:765.905700px;}
.yc{bottom:780.951450px;}
.ya2{bottom:781.659600px;}
.y74{bottom:785.405700px;}
.yb{bottom:798.946950px;}
.ya1{bottom:801.159600px;}
.y45{bottom:804.800700px;}
.y73{bottom:804.905700px;}
.ya{bottom:816.942450px;}
.ya0{bottom:820.659600px;}
.y44{bottom:824.300700px;}
.y72{bottom:824.405700px;}
.y9{bottom:834.942450px;}
.y9f{bottom:840.159600px;}
.y43{bottom:843.800700px;}
.y71{bottom:843.905700px;}
.y9e{bottom:859.659600px;}
.y42{bottom:863.300700px;}
.y70{bottom:863.405700px;}
.y8{bottom:876.946950px;}
.y9d{bottom:879.159600px;}
.y41{bottom:882.800700px;}
.y6f{bottom:882.905700px;}
.y7{bottom:894.942450px;}
.y9c{bottom:898.659600px;}
.y40{bottom:902.300700px;}
.y6e{bottom:902.405700px;}
.y6{bottom:912.942450px;}
.y9b{bottom:918.159600px;}
.y3f{bottom:921.800700px;}
.y6d{bottom:921.905700px;}
.y9a{bottom:937.659600px;}
.y3e{bottom:941.300700px;}
.y6c{bottom:941.405700px;}
.y99{bottom:957.159600px;}
.y3d{bottom:960.800700px;}
.y6b{bottom:960.905700px;}
.y5{bottom:965.442450px;}
.y98{bottom:976.659600px;}
.y3c{bottom:980.300700px;}
.y6a{bottom:980.405700px;}
.y97{bottom:996.159600px;}
.y3b{bottom:999.800700px;}
.y69{bottom:999.905700px;}
.y4{bottom:1024.374150px;}
.y3a{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.h9{height:36.571289px;}
.h8{height:37.494141px;}
.h7{height:40.664062px;}
.hb{height:41.660156px;}
.ha{height:41.689453px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.hd{height:46.200000px;}
.hc{height:50.400000px;}
.hf{height:52.492611px;}
.he{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;}
.xb{left:73.559100px;}
.xc{left:74.853150px;}
.x9{left:224.187900px;}
.xa{left:245.447700px;}
.x5{left:254.002500px;}
.xe{left:399.929550px;}
.x4{left:412.272150px;}
.xf{left:426.929550px;}
.x8{left:429.640500px;}
.x7{left:548.616000px;}
.x6{left:601.600200px;}
.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;}
.ls3{letter-spacing:7.093333pt;}
.ls2{letter-spacing:61.706667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws3c{word-spacing:-6.400000pt;}
.ws67{word-spacing:-5.920000pt;}
.ws3d{word-spacing:-4.746667pt;}
.wsaf{word-spacing:-4.693333pt;}
.ws77{word-spacing:-4.480000pt;}
.ws19{word-spacing:-3.840000pt;}
.ws25{word-spacing:-3.253333pt;}
.wsf{word-spacing:-3.093333pt;}
.ws5b{word-spacing:-2.986667pt;}
.ws3e{word-spacing:-2.613333pt;}
.ws1c{word-spacing:-2.506667pt;}
.ws26{word-spacing:-2.026667pt;}
.ws94{word-spacing:-1.920000pt;}
.ws8c{word-spacing:-1.866667pt;}
.ws8d{word-spacing:-1.760000pt;}
.wsd{word-spacing:-1.728000pt;}
.ws1d{word-spacing:-1.600000pt;}
.ws18{word-spacing:-1.440000pt;}
.ws5a{word-spacing:-1.333333pt;}
.ws85{word-spacing:-1.226667pt;}
.ws4d{word-spacing:-1.066667pt;}
.ws4{word-spacing:-0.960000pt;}
.ws8{word-spacing:-0.912000pt;}
.wsc1{word-spacing:-0.853333pt;}
.ws78{word-spacing:-0.800000pt;}
.wsa1{word-spacing:-0.480000pt;}
.ws6a{word-spacing:-0.320000pt;}
.ws44{word-spacing:-0.266667pt;}
.wsb6{word-spacing:-0.213333pt;}
.ws3{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.053333pt;}
.ws75{word-spacing:0.320000pt;}
.wsa5{word-spacing:0.373333pt;}
.wsb0{word-spacing:0.480000pt;}
.ws10{word-spacing:0.533333pt;}
.ws17{word-spacing:0.586667pt;}
.ws1{word-spacing:0.640000pt;}
.ws31{word-spacing:0.906667pt;}
.ws1a{word-spacing:1.013333pt;}
.ws6e{word-spacing:1.173333pt;}
.ws48{word-spacing:1.226667pt;}
.wsa{word-spacing:1.344000pt;}
.ws8b{word-spacing:1.386667pt;}
.ws1b{word-spacing:1.493333pt;}
.wsb2{word-spacing:1.653333pt;}
.ws42{word-spacing:1.706667pt;}
.ws45{word-spacing:1.866667pt;}
.ws73{word-spacing:1.920000pt;}
.ws9d{word-spacing:2.026667pt;}
.ws6d{word-spacing:2.133333pt;}
.ws14{word-spacing:2.400000pt;}
.ws68{word-spacing:2.506667pt;}
.ws3a{word-spacing:2.560000pt;}
.ws74{word-spacing:2.613333pt;}
.ws13{word-spacing:2.666667pt;}
.ws7{word-spacing:2.688000pt;}
.ws4e{word-spacing:2.720000pt;}
.ws46{word-spacing:2.826667pt;}
.wsb1{word-spacing:2.880000pt;}
.ws7e{word-spacing:3.093333pt;}
.wsb3{word-spacing:3.306667pt;}
.ws15{word-spacing:3.360000pt;}
.ws5e{word-spacing:3.466667pt;}
.ws8e{word-spacing:3.573333pt;}
.ws11{word-spacing:3.626667pt;}
.ws9b{word-spacing:3.680000pt;}
.ws4f{word-spacing:3.786667pt;}
.wsc{word-spacing:3.888000pt;}
.ws6{word-spacing:4.080000pt;}
.ws47{word-spacing:4.106667pt;}
.wsa9{word-spacing:4.533333pt;}
.ws9c{word-spacing:4.640000pt;}
.ws30{word-spacing:4.746667pt;}
.wsb5{word-spacing:4.800000pt;}
.ws1e{word-spacing:5.013333pt;}
.ws2b{word-spacing:5.066667pt;}
.ws71{word-spacing:5.226667pt;}
.wsb4{word-spacing:5.813333pt;}
.ws4a{word-spacing:5.866667pt;}
.wsb7{word-spacing:6.080000pt;}
.ws22{word-spacing:6.133333pt;}
.ws54{word-spacing:6.240000pt;}
.ws2f{word-spacing:6.346667pt;}
.ws5c{word-spacing:6.400000pt;}
.ws29{word-spacing:6.560000pt;}
.ws60{word-spacing:6.613333pt;}
.ws36{word-spacing:6.773333pt;}
.ws24{word-spacing:6.880000pt;}
.ws3b{word-spacing:6.933333pt;}
.ws52{word-spacing:7.040000pt;}
.ws23{word-spacing:7.200000pt;}
.ws6c{word-spacing:7.360000pt;}
.ws4b{word-spacing:7.573333pt;}
.ws16{word-spacing:7.626667pt;}
.ws6f{word-spacing:7.680000pt;}
.wsbb{word-spacing:7.840000pt;}
.ws5d{word-spacing:8.106667pt;}
.ws62{word-spacing:8.213333pt;}
.ws38{word-spacing:8.266667pt;}
.ws9{word-spacing:8.304000pt;}
.ws90{word-spacing:8.586667pt;}
.wse{word-spacing:8.592000pt;}
.ws70{word-spacing:8.640000pt;}
.ws72{word-spacing:8.800000pt;}
.ws5{word-spacing:8.928000pt;}
.ws8f{word-spacing:9.066667pt;}
.ws2a{word-spacing:9.173333pt;}
.ws3f{word-spacing:9.226667pt;}
.wsbe{word-spacing:9.280000pt;}
.wsa6{word-spacing:9.333333pt;}
.ws50{word-spacing:9.440000pt;}
.ws95{word-spacing:9.706667pt;}
.ws49{word-spacing:9.760000pt;}
.wsa0{word-spacing:9.813333pt;}
.ws69{word-spacing:9.920000pt;}
.ws7c{word-spacing:10.240000pt;}
.ws65{word-spacing:10.293333pt;}
.ws99{word-spacing:10.453333pt;}
.ws33{word-spacing:10.560000pt;}
.ws88{word-spacing:10.773333pt;}
.ws35{word-spacing:10.986667pt;}
.ws28{word-spacing:11.040000pt;}
.ws57{word-spacing:11.146667pt;}
.ws86{word-spacing:11.200000pt;}
.ws41{word-spacing:11.360000pt;}
.ws7a{word-spacing:11.413333pt;}
.ws27{word-spacing:11.466667pt;}
.ws63{word-spacing:11.573333pt;}
.ws79{word-spacing:11.680000pt;}
.wsb{word-spacing:11.712000pt;}
.wsb8{word-spacing:11.893333pt;}
.wsc3{word-spacing:12.000000pt;}
.ws87{word-spacing:12.053333pt;}
.ws7b{word-spacing:12.106667pt;}
.ws39{word-spacing:12.266667pt;}
.ws93{word-spacing:12.586667pt;}
.ws34{word-spacing:12.746667pt;}
.ws2d{word-spacing:12.960000pt;}
.wsa4{word-spacing:13.120000pt;}
.ws9f{word-spacing:13.333333pt;}
.ws4c{word-spacing:13.546667pt;}
.wsb9{word-spacing:13.706667pt;}
.ws7f{word-spacing:13.813333pt;}
.ws37{word-spacing:13.866667pt;}
.ws12{word-spacing:13.973333pt;}
.ws55{word-spacing:14.133333pt;}
.ws58{word-spacing:14.400000pt;}
.ws89{word-spacing:14.506667pt;}
.ws40{word-spacing:14.773333pt;}
.ws64{word-spacing:14.986667pt;}
.wsbd{word-spacing:15.146667pt;}
.wsbf{word-spacing:15.413333pt;}
.wsa3{word-spacing:15.680000pt;}
.ws61{word-spacing:15.733333pt;}
.ws59{word-spacing:15.946667pt;}
.ws82{word-spacing:16.106667pt;}
.ws1f{word-spacing:16.213333pt;}
.wsae{word-spacing:16.906667pt;}
.ws84{word-spacing:17.226667pt;}
.ws56{word-spacing:17.760000pt;}
.wsc2{word-spacing:17.866667pt;}
.ws43{word-spacing:18.453333pt;}
.ws97{word-spacing:18.933333pt;}
.ws76{word-spacing:18.986667pt;}
.ws51{word-spacing:19.520000pt;}
.wsbc{word-spacing:19.946667pt;}
.wsab{word-spacing:20.106667pt;}
.ws53{word-spacing:20.586667pt;}
.wsac{word-spacing:20.640000pt;}
.wsa8{word-spacing:21.013333pt;}
.ws9e{word-spacing:21.120000pt;}
.wsa2{word-spacing:21.173333pt;}
.ws91{word-spacing:21.386667pt;}
.ws80{word-spacing:21.440000pt;}
.wsba{word-spacing:22.293333pt;}
.ws96{word-spacing:22.880000pt;}
.wsaa{word-spacing:23.040000pt;}
.ws9a{word-spacing:23.840000pt;}
.ws81{word-spacing:23.946667pt;}
.wsad{word-spacing:24.000000pt;}
.ws6b{word-spacing:24.426667pt;}
.ws32{word-spacing:24.693333pt;}
.ws92{word-spacing:25.066667pt;}
.ws83{word-spacing:28.960000pt;}
.wsc0{word-spacing:29.280000pt;}
.ws2e{word-spacing:30.560000pt;}
.wsa7{word-spacing:31.626667pt;}
.ws8a{word-spacing:36.960000pt;}
.ws98{word-spacing:37.066667pt;}
.ws20{word-spacing:42.685333pt;}
.ws2c{word-spacing:45.653333pt;}
.ws66{word-spacing:62.240000pt;}
.ws21{word-spacing:343.390933pt;}
.ws5f{word-spacing:1523.891200pt;}
.ws0{word-spacing:1536.691200pt;}
._1b{margin-left:-68.160000pt;}
._d{margin-left:-58.954667pt;}
._25{margin-left:-22.186667pt;}
._8{margin-left:-20.160000pt;}
._26{margin-left:-11.893333pt;}
._3{margin-left:-7.786667pt;}
._6{margin-left:-6.869333pt;}
._24{margin-left:-5.914667pt;}
._5{margin-left:-4.896000pt;}
._2{margin-left:-3.898667pt;}
._a{margin-left:-2.986667pt;}
._4{margin-left:-1.938667pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._7{width:2.274133pt;}
._14{width:3.317333pt;}
._19{width:4.752000pt;}
._15{width:6.261333pt;}
._c{width:8.149333pt;}
._1c{width:9.392000pt;}
._f{width:11.408000pt;}
._18{width:14.400000pt;}
._23{width:22.240000pt;}
._10{width:28.005333pt;}
._21{width:29.072000pt;}
._11{width:30.048000pt;}
._12{width:30.944000pt;}
._17{width:32.128000pt;}
._20{width:40.853333pt;}
._22{width:44.549333pt;}
._1e{width:46.133333pt;}
._e{width:49.280000pt;}
._1a{width:55.840000pt;}
._b{width:57.226667pt;}
._16{width:60.746667pt;}
._1d{width:62.240000pt;}
._9{width:65.333333pt;}
._1f{width:66.720000pt;}
._13{width:68.640000pt;}
.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;}
.y39{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y2f{bottom:80.837733pt;}
.yc4{bottom:88.141867pt;}
.y68{bottom:91.378400pt;}
.y96{bottom:91.471733pt;}
.y2e{bottom:98.171067pt;}
.yc3{bottom:105.475200pt;}
.y67{bottom:108.711733pt;}
.y95{bottom:108.805067pt;}
.y2d{bottom:115.504400pt;}
.yc2{bottom:122.808533pt;}
.y66{bottom:126.045067pt;}
.y94{bottom:126.138400pt;}
.y2c{bottom:132.837733pt;}
.yc1{bottom:140.141867pt;}
.y65{bottom:143.378400pt;}
.y93{bottom:143.471733pt;}
.y2b{bottom:150.171067pt;}
.yc0{bottom:157.475200pt;}
.y64{bottom:160.711733pt;}
.y92{bottom:160.805067pt;}
.y2a{bottom:167.504400pt;}
.ybf{bottom:174.808533pt;}
.y63{bottom:178.045067pt;}
.y91{bottom:178.138400pt;}
.y29{bottom:184.837733pt;}
.ybe{bottom:192.141867pt;}
.y62{bottom:195.378400pt;}
.y90{bottom:195.471733pt;}
.y28{bottom:202.171067pt;}
.ybd{bottom:209.475200pt;}
.y61{bottom:212.711733pt;}
.y8f{bottom:212.805067pt;}
.y27{bottom:219.504400pt;}
.yc5{bottom:226.808533pt;}
.y60{bottom:230.045067pt;}
.y8e{bottom:230.138400pt;}
.y26{bottom:236.837733pt;}
.ybc{bottom:244.141867pt;}
.y5f{bottom:247.378400pt;}
.y8d{bottom:247.471733pt;}
.y25{bottom:254.171067pt;}
.ybb{bottom:261.475200pt;}
.y5e{bottom:264.711733pt;}
.y8c{bottom:264.805067pt;}
.y24{bottom:271.504400pt;}
.yba{bottom:278.808533pt;}
.y5d{bottom:282.045067pt;}
.y8b{bottom:282.138400pt;}
.y23{bottom:288.837733pt;}
.yb9{bottom:296.141867pt;}
.y5c{bottom:299.378400pt;}
.y8a{bottom:299.471733pt;}
.y22{bottom:306.171067pt;}
.yb8{bottom:313.475200pt;}
.y5b{bottom:316.711733pt;}
.y89{bottom:316.805067pt;}
.y21{bottom:323.504400pt;}
.yb7{bottom:330.808533pt;}
.y5a{bottom:334.045067pt;}
.y88{bottom:334.138400pt;}
.y20{bottom:340.837733pt;}
.yb6{bottom:348.141867pt;}
.y59{bottom:351.378400pt;}
.y87{bottom:351.471733pt;}
.y1f{bottom:358.171067pt;}
.yb5{bottom:365.475200pt;}
.y58{bottom:368.711733pt;}
.y86{bottom:368.805067pt;}
.y1e{bottom:375.504400pt;}
.yb4{bottom:382.808533pt;}
.y57{bottom:386.045067pt;}
.y85{bottom:386.138400pt;}
.y1d{bottom:392.837733pt;}
.yb3{bottom:400.141867pt;}
.y56{bottom:403.378400pt;}
.y84{bottom:403.471733pt;}
.y38{bottom:405.457733pt;}
.y1c{bottom:410.171067pt;}
.yb2{bottom:417.475200pt;}
.y55{bottom:420.711733pt;}
.y83{bottom:420.805067pt;}
.y37{bottom:425.457733pt;}
.y1b{bottom:427.504400pt;}
.yb1{bottom:434.808533pt;}
.y54{bottom:438.045067pt;}
.y1a{bottom:444.837733pt;}
.y36{bottom:445.457733pt;}
.yb0{bottom:452.141867pt;}
.y53{bottom:455.378400pt;}
.y82{bottom:455.471733pt;}
.y19{bottom:462.171067pt;}
.yaf{bottom:469.475200pt;}
.y52{bottom:472.711733pt;}
.y81{bottom:472.805067pt;}
.y18{bottom:479.504400pt;}
.y35{bottom:481.457733pt;}
.yae{bottom:486.808533pt;}
.y51{bottom:490.045067pt;}
.y80{bottom:490.138400pt;}
.y17{bottom:496.837733pt;}
.yad{bottom:504.141867pt;}
.y50{bottom:507.378400pt;}
.y7f{bottom:507.471733pt;}
.y34{bottom:521.457733pt;}
.yac{bottom:521.475200pt;}
.y4f{bottom:524.711733pt;}
.y7e{bottom:524.805067pt;}
.y16{bottom:534.219067pt;}
.yab{bottom:538.808533pt;}
.y4e{bottom:542.045067pt;}
.y7d{bottom:542.138400pt;}
.y15{bottom:550.215067pt;}
.yaa{bottom:556.141867pt;}
.y33{bottom:557.457733pt;}
.y4d{bottom:559.378400pt;}
.y7c{bottom:559.471733pt;}
.y14{bottom:566.211067pt;}
.ya9{bottom:573.475200pt;}
.y4c{bottom:576.711733pt;}
.y7b{bottom:576.805067pt;}
.y13{bottom:582.207067pt;}
.y32{bottom:589.457733pt;}
.ya8{bottom:590.808533pt;}
.y4b{bottom:594.045067pt;}
.y7a{bottom:594.138400pt;}
.y12{bottom:598.203067pt;}
.ya7{bottom:608.141867pt;}
.y4a{bottom:611.378400pt;}
.y79{bottom:611.471733pt;}
.y11{bottom:614.199067pt;}
.y31{bottom:621.457733pt;}
.ya6{bottom:625.475200pt;}
.y49{bottom:628.711733pt;}
.y78{bottom:628.805067pt;}
.y10{bottom:630.195067pt;}
.ya5{bottom:642.808533pt;}
.y48{bottom:646.045067pt;}
.y77{bottom:646.138400pt;}
.yf{bottom:646.191067pt;}
.y30{bottom:653.457733pt;}
.ya4{bottom:660.141867pt;}
.ye{bottom:662.187067pt;}
.y47{bottom:663.378400pt;}
.y76{bottom:663.471733pt;}
.ya3{bottom:677.475200pt;}
.yd{bottom:678.183067pt;}
.y46{bottom:680.711733pt;}
.y75{bottom:680.805067pt;}
.yc{bottom:694.179067pt;}
.ya2{bottom:694.808533pt;}
.y74{bottom:698.138400pt;}
.yb{bottom:710.175067pt;}
.ya1{bottom:712.141867pt;}
.y45{bottom:715.378400pt;}
.y73{bottom:715.471733pt;}
.ya{bottom:726.171067pt;}
.ya0{bottom:729.475200pt;}
.y44{bottom:732.711733pt;}
.y72{bottom:732.805067pt;}
.y9{bottom:742.171067pt;}
.y9f{bottom:746.808533pt;}
.y43{bottom:750.045067pt;}
.y71{bottom:750.138400pt;}
.y9e{bottom:764.141867pt;}
.y42{bottom:767.378400pt;}
.y70{bottom:767.471733pt;}
.y8{bottom:779.508400pt;}
.y9d{bottom:781.475200pt;}
.y41{bottom:784.711733pt;}
.y6f{bottom:784.805067pt;}
.y7{bottom:795.504400pt;}
.y9c{bottom:798.808533pt;}
.y40{bottom:802.045067pt;}
.y6e{bottom:802.138400pt;}
.y6{bottom:811.504400pt;}
.y9b{bottom:816.141867pt;}
.y3f{bottom:819.378400pt;}
.y6d{bottom:819.471733pt;}
.y9a{bottom:833.475200pt;}
.y3e{bottom:836.711733pt;}
.y6c{bottom:836.805067pt;}
.y99{bottom:850.808533pt;}
.y3d{bottom:854.045067pt;}
.y6b{bottom:854.138400pt;}
.y5{bottom:858.171067pt;}
.y98{bottom:868.141867pt;}
.y3c{bottom:871.378400pt;}
.y6a{bottom:871.471733pt;}
.y97{bottom:885.475200pt;}
.y3b{bottom:888.711733pt;}
.y69{bottom:888.805067pt;}
.y4{bottom:910.554800pt;}
.y3a{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.h9{height:32.507812pt;}
.h8{height:33.328125pt;}
.h7{height:36.145833pt;}
.hb{height:37.031250pt;}
.ha{height:37.057292pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.hd{height:41.066667pt;}
.hc{height:44.800000pt;}
.hf{height:46.660099pt;}
.he{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;}
.xb{left:65.385867pt;}
.xc{left:66.536133pt;}
.x9{left:199.278133pt;}
.xa{left:218.175733pt;}
.x5{left:225.780000pt;}
.xe{left:355.492933pt;}
.x4{left:366.464133pt;}
.xf{left:379.492933pt;}
.x8{left:381.902667pt;}
.x7{left:487.658667pt;}
.x6{left:534.755733pt;}
.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; }
  