
    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_3ee7f47a4159461edd8375a6.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_3ee7f47a4159461edd8375a6.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_ee89d0cb23494701f967fded.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_9bdc21511e7944d8e086b716.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_4dde56f4ebe3d2dbf998e4e2.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_ebafc65b9c313ed4aced718d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927500;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_00e9b696acddc0b568a4e9b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.915000;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_cdfe97470ca0dfe4a12211ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_6b58d7e3bef2fdf1e7602006.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971000;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_142860b0f0c9561227bdac0f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_216f3931e50db15690f7ccc0.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_3cfe56b6d03fcd4ca735d5e1.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_c23b5c03e98a007ef510bc5d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692871;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_ee89d0cb23494701f967fded.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_84b4bee1de7822049e113c3b.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_5f9ddfccd933cdb8d71fd7dc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.945000;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.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,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;}
.ls4{letter-spacing:9.720000px;}
.ls3{letter-spacing:21.384000px;}
.ls2{letter-spacing:65.676600px;}
.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;}
}
.ws5c{word-spacing:-81.720000px;}
.ws5{word-spacing:-72.000000px;}
.ws33{word-spacing:-60.768000px;}
.wsa4{word-spacing:-60.696000px;}
.ws90{word-spacing:-60.552000px;}
.ws1a{word-spacing:-59.832000px;}
.ws23{word-spacing:-59.616000px;}
.ws7{word-spacing:-59.472000px;}
.ws67{word-spacing:-58.464000px;}
.ws7c{word-spacing:-57.528000px;}
.wsf{word-spacing:-56.952000px;}
.ws26{word-spacing:-56.448000px;}
.ws6{word-spacing:-55.368000px;}
.ws93{word-spacing:-55.152000px;}
.wsb{word-spacing:-53.856000px;}
.ws30{word-spacing:-53.568000px;}
.wsa7{word-spacing:-53.496000px;}
.wsa6{word-spacing:-53.415600px;}
.ws5e{word-spacing:-53.280000px;}
.ws43{word-spacing:-53.208000px;}
.ws7a{word-spacing:-52.920000px;}
.ws9d{word-spacing:-51.048000px;}
.ws37{word-spacing:-50.760000px;}
.ws4c{word-spacing:-50.616000px;}
.ws4e{word-spacing:-49.824000px;}
.ws4{word-spacing:-48.744000px;}
.wsa{word-spacing:-48.672000px;}
.wsaa{word-spacing:-48.168000px;}
.ws68{word-spacing:-47.520000px;}
.ws78{word-spacing:-47.232000px;}
.ws28{word-spacing:-45.792000px;}
.ws7b{word-spacing:-45.360000px;}
.ws2b{word-spacing:-44.928000px;}
.ws62{word-spacing:-43.920000px;}
.ws59{word-spacing:-43.488000px;}
.ws92{word-spacing:-43.128000px;}
.ws3c{word-spacing:-42.768000px;}
.ws9{word-spacing:-42.192000px;}
.ws8f{word-spacing:-42.120000px;}
.wsad{word-spacing:-41.688000px;}
.ws2c{word-spacing:-41.472000px;}
.wsd{word-spacing:-41.040000px;}
.ws7f{word-spacing:-40.824000px;}
.ws42{word-spacing:-40.464000px;}
.ws16{word-spacing:-40.046400px;}
.ws18{word-spacing:-40.032000px;}
.ws88{word-spacing:-39.960000px;}
.ws3b{word-spacing:-38.808000px;}
.ws19{word-spacing:-38.448000px;}
.ws3a{word-spacing:-37.728000px;}
.ws5f{word-spacing:-36.864000px;}
.ws91{word-spacing:-36.720000px;}
.ws2a{word-spacing:-36.072000px;}
.ws66{word-spacing:-35.541000px;}
.ws6e{word-spacing:-35.496000px;}
.ws4f{word-spacing:-35.064000px;}
.ws6c{word-spacing:-34.272000px;}
.ws9c{word-spacing:-32.832000px;}
.wsb3{word-spacing:-32.688000px;}
.ws8d{word-spacing:-32.472000px;}
.ws38{word-spacing:-32.256000px;}
.ws1c{word-spacing:-31.896000px;}
.ws52{word-spacing:-31.176000px;}
.ws1f{word-spacing:-30.960000px;}
.ws44{word-spacing:-30.816000px;}
.ws21{word-spacing:-29.448000px;}
.wse{word-spacing:-29.160000px;}
.ws94{word-spacing:-27.144000px;}
.ws95{word-spacing:-26.928000px;}
.ws8{word-spacing:-25.200000px;}
.ws51{word-spacing:-24.480000px;}
.ws79{word-spacing:-24.048000px;}
.ws72{word-spacing:-23.472000px;}
.ws3{word-spacing:-23.400000px;}
.ws63{word-spacing:-22.608000px;}
.wsa8{word-spacing:-22.392000px;}
.ws98{word-spacing:-21.816000px;}
.ws53{word-spacing:-20.880000px;}
.ws74{word-spacing:-20.448000px;}
.ws34{word-spacing:-20.344800px;}
.ws5d{word-spacing:-20.232000px;}
.ws29{word-spacing:-19.872000px;}
.wsa9{word-spacing:-17.928000px;}
.ws3e{word-spacing:-17.784000px;}
.ws45{word-spacing:-17.352000px;}
.ws56{word-spacing:-17.208000px;}
.ws76{word-spacing:-16.920000px;}
.ws81{word-spacing:-16.855200px;}
.ws36{word-spacing:-16.776000px;}
.ws7e{word-spacing:-16.704000px;}
.ws75{word-spacing:-16.560000px;}
.ws5a{word-spacing:-16.344000px;}
.ws10{word-spacing:-15.000000px;}
.ws46{word-spacing:-14.544000px;}
.ws8c{word-spacing:-14.472000px;}
.ws22{word-spacing:-14.112000px;}
.ws4a{word-spacing:-13.608000px;}
.ws17{word-spacing:-13.500000px;}
.ws8a{word-spacing:-13.032000px;}
.wsb4{word-spacing:-12.384000px;}
.wsa1{word-spacing:-12.312000px;}
.ws1d{word-spacing:-10.944000px;}
.ws61{word-spacing:-9.288000px;}
.ws54{word-spacing:-8.064000px;}
.ws31{word-spacing:-7.632000px;}
.ws2{word-spacing:-6.717600px;}
.wsb1{word-spacing:-5.832000px;}
.ws15{word-spacing:-5.680800px;}
.ws73{word-spacing:-2.304000px;}
.ws9b{word-spacing:-2.160000px;}
.ws11{word-spacing:0.000000px;}
.ws1{word-spacing:0.720000px;}
.ws60{word-spacing:1.224000px;}
.ws4d{word-spacing:2.304000px;}
.ws71{word-spacing:2.808000px;}
.ws9e{word-spacing:4.320000px;}
.wsc{word-spacing:6.696000px;}
.ws5b{word-spacing:7.488000px;}
.wsa3{word-spacing:8.352000px;}
.ws6b{word-spacing:9.864000px;}
.ws2e{word-spacing:12.384000px;}
.ws8b{word-spacing:12.816000px;}
.ws1b{word-spacing:13.320000px;}
.wsac{word-spacing:13.608000px;}
.wsaf{word-spacing:14.544000px;}
.ws80{word-spacing:17.226600px;}
.ws6f{word-spacing:19.008000px;}
.ws2d{word-spacing:22.248000px;}
.wsab{word-spacing:25.488000px;}
.ws47{word-spacing:26.424000px;}
.ws39{word-spacing:27.288000px;}
.ws3d{word-spacing:30.024000px;}
.ws85{word-spacing:32.760000px;}
.ws97{word-spacing:35.712000px;}
.ws87{word-spacing:37.656000px;}
.ws1e{word-spacing:40.824000px;}
.ws70{word-spacing:41.760000px;}
.ws99{word-spacing:42.408000px;}
.ws32{word-spacing:42.480000px;}
.wsae{word-spacing:43.416000px;}
.wsa5{word-spacing:43.704000px;}
.ws13{word-spacing:48.021000px;}
.ws77{word-spacing:49.824000px;}
.wsb2{word-spacing:49.968000px;}
.ws49{word-spacing:50.328000px;}
.wsb0{word-spacing:51.840000px;}
.ws3f{word-spacing:52.560000px;}
.ws55{word-spacing:53.928000px;}
.ws83{word-spacing:54.216000px;}
.ws4b{word-spacing:55.224000px;}
.ws9a{word-spacing:60.912000px;}
.ws8e{word-spacing:66.096000px;}
.ws41{word-spacing:66.456000px;}
.ws2f{word-spacing:66.816000px;}
.ws69{word-spacing:68.832000px;}
.ws7d{word-spacing:69.408000px;}
.ws12{word-spacing:70.524000px;}
.ws96{word-spacing:71.424000px;}
.ws86{word-spacing:71.550000px;}
.ws40{word-spacing:72.720000px;}
.ws35{word-spacing:74.592000px;}
.ws6a{word-spacing:75.744000px;}
.ws50{word-spacing:77.184000px;}
.ws82{word-spacing:78.696000px;}
.ws20{word-spacing:82.800000px;}
.wsa2{word-spacing:83.088000px;}
.ws9f{word-spacing:84.816000px;}
.ws6d{word-spacing:89.928000px;}
.ws25{word-spacing:93.456000px;}
.ws58{word-spacing:99.216000px;}
.ws64{word-spacing:99.747000px;}
.ws65{word-spacing:99.864000px;}
.ws57{word-spacing:102.528000px;}
.wsa0{word-spacing:137.520000px;}
.ws48{word-spacing:139.320000px;}
.ws24{word-spacing:162.943200px;}
.ws84{word-spacing:170.064000px;}
.ws89{word-spacing:245.592000px;}
.ws14{word-spacing:386.314800px;}
.ws27{word-spacing:484.488000px;}
.ws0{word-spacing:1714.377600px;}
._f{margin-left:-18.288000px;}
._a{margin-left:-11.448000px;}
._c{margin-left:-9.936000px;}
._16{margin-left:-8.856000px;}
._14{margin-left:-7.488000px;}
._3{margin-left:-5.606400px;}
._2{margin-left:-4.386000px;}
._6{margin-left:-2.964000px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._d{width:2.952000px;}
._b{width:4.680000px;}
._10{width:5.688000px;}
._4{width:7.056000px;}
._5{width:8.136000px;}
._8{width:10.008000px;}
._7{width:65.282400px;}
._11{width:66.319200px;}
._e{width:74.008800px;}
._12{width:77.752800px;}
._13{width:118.648800px;}
._9{width:129.880800px;}
._15{width:155.512800px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y85{bottom:87.320550px;}
.y5b{bottom:93.866550px;}
.ycf{bottom:93.960150px;}
.ya8{bottom:94.070550px;}
.y84{bottom:109.820550px;}
.y27{bottom:114.943050px;}
.y5a{bottom:116.366550px;}
.yce{bottom:116.460150px;}
.ya7{bottom:116.570550px;}
.y83{bottom:132.320550px;}
.y26{bottom:137.443050px;}
.y59{bottom:138.866550px;}
.ycd{bottom:138.960150px;}
.ya6{bottom:139.070550px;}
.y82{bottom:154.820550px;}
.y25{bottom:159.943050px;}
.y58{bottom:161.366550px;}
.ycc{bottom:161.460150px;}
.ya5{bottom:161.570550px;}
.y81{bottom:177.320550px;}
.y24{bottom:182.443050px;}
.y57{bottom:183.866550px;}
.ycb{bottom:183.960150px;}
.ya4{bottom:184.070550px;}
.y80{bottom:199.820550px;}
.y23{bottom:204.943050px;}
.y56{bottom:206.366550px;}
.yca{bottom:206.460150px;}
.ya3{bottom:206.570550px;}
.y7f{bottom:222.320550px;}
.y22{bottom:227.443050px;}
.y55{bottom:228.866550px;}
.yc9{bottom:228.960150px;}
.ya2{bottom:229.070550px;}
.y7e{bottom:244.820550px;}
.y21{bottom:249.943050px;}
.y54{bottom:251.366550px;}
.yc8{bottom:251.460150px;}
.ya1{bottom:251.570550px;}
.y7d{bottom:267.320550px;}
.y20{bottom:272.443050px;}
.y53{bottom:273.866550px;}
.yc7{bottom:273.960150px;}
.ya0{bottom:274.070550px;}
.y7c{bottom:289.820550px;}
.y1f{bottom:294.943050px;}
.y52{bottom:296.366550px;}
.yd1{bottom:296.460150px;}
.y9f{bottom:296.570550px;}
.y7b{bottom:312.320550px;}
.y1e{bottom:317.443050px;}
.y51{bottom:318.866550px;}
.yc6{bottom:318.960150px;}
.y9e{bottom:319.070550px;}
.y7a{bottom:334.820550px;}
.y50{bottom:341.366550px;}
.yc5{bottom:341.460150px;}
.y9d{bottom:341.570550px;}
.y79{bottom:357.320550px;}
.y1d{bottom:362.443050px;}
.y4f{bottom:363.866550px;}
.yc4{bottom:363.960150px;}
.y9c{bottom:364.070550px;}
.y78{bottom:379.820550px;}
.y1c{bottom:384.943050px;}
.y4e{bottom:386.366550px;}
.yc3{bottom:386.460150px;}
.y9b{bottom:386.570550px;}
.y77{bottom:402.368550px;}
.y1b{bottom:407.443050px;}
.y4d{bottom:408.866550px;}
.yc2{bottom:408.960150px;}
.y9a{bottom:409.070550px;}
.y76{bottom:424.868550px;}
.y1a{bottom:429.943050px;}
.y4c{bottom:431.366550px;}
.yc1{bottom:431.460150px;}
.y99{bottom:431.570550px;}
.y75{bottom:446.612550px;}
.y19{bottom:452.443050px;}
.y4b{bottom:453.866550px;}
.yc0{bottom:453.960150px;}
.y98{bottom:454.070550px;}
.y30{bottom:456.139950px;}
.y74{bottom:468.356550px;}
.y18{bottom:474.943050px;}
.y4a{bottom:476.366550px;}
.ybf{bottom:476.460150px;}
.y97{bottom:476.570550px;}
.y2f{bottom:478.639950px;}
.y73{bottom:490.100550px;}
.y17{bottom:497.443050px;}
.y49{bottom:498.866550px;}
.ybe{bottom:498.960150px;}
.y96{bottom:499.070550px;}
.y2e{bottom:501.139950px;}
.y72{bottom:511.844550px;}
.y16{bottom:519.943050px;}
.y48{bottom:521.366550px;}
.ybd{bottom:521.460150px;}
.y95{bottom:521.570550px;}
.y71{bottom:533.588550px;}
.y2d{bottom:541.639950px;}
.y15{bottom:542.443050px;}
.y47{bottom:543.866550px;}
.ybc{bottom:543.960150px;}
.y94{bottom:544.070550px;}
.y70{bottom:555.332550px;}
.y46{bottom:566.366550px;}
.ybb{bottom:566.460150px;}
.y93{bottom:566.570550px;}
.y6f{bottom:577.076550px;}
.y2c{bottom:586.639950px;}
.y14{bottom:587.443050px;}
.y45{bottom:588.866550px;}
.yba{bottom:588.960150px;}
.y92{bottom:589.070550px;}
.y6e{bottom:598.820550px;}
.y13{bottom:609.943050px;}
.y44{bottom:611.366550px;}
.yb9{bottom:611.460150px;}
.y91{bottom:611.570550px;}
.y6d{bottom:620.582550px;}
.y2b{bottom:627.139950px;}
.y12{bottom:632.443050px;}
.y43{bottom:633.866550px;}
.yb8{bottom:633.960150px;}
.y90{bottom:634.070550px;}
.y6c{bottom:642.326550px;}
.y11{bottom:654.943050px;}
.y42{bottom:656.366550px;}
.yb7{bottom:656.460150px;}
.y8f{bottom:656.570550px;}
.y2a{bottom:663.139950px;}
.y6b{bottom:664.106550px;}
.y10{bottom:677.443050px;}
.y41{bottom:678.866550px;}
.yb6{bottom:678.960150px;}
.y8e{bottom:679.070550px;}
.y6a{bottom:685.850550px;}
.y29{bottom:699.139950px;}
.yf{bottom:699.943050px;}
.y40{bottom:701.366550px;}
.yb5{bottom:701.460150px;}
.y8d{bottom:701.570550px;}
.y69{bottom:707.594550px;}
.ye{bottom:722.443050px;}
.y3f{bottom:723.866550px;}
.yb4{bottom:723.960150px;}
.y8c{bottom:724.070550px;}
.y68{bottom:729.338550px;}
.y28{bottom:735.139950px;}
.yd{bottom:744.943050px;}
.y3e{bottom:746.366550px;}
.yb3{bottom:746.460150px;}
.y8b{bottom:746.570550px;}
.y67{bottom:751.082550px;}
.yc{bottom:767.443050px;}
.y3d{bottom:768.866550px;}
.yd0{bottom:768.960150px;}
.y8a{bottom:769.070550px;}
.y66{bottom:772.826550px;}
.yb{bottom:789.943050px;}
.y3c{bottom:791.366550px;}
.yb2{bottom:791.460150px;}
.y89{bottom:791.570550px;}
.y65{bottom:794.570550px;}
.y3b{bottom:813.866550px;}
.yb1{bottom:813.960150px;}
.y88{bottom:814.070550px;}
.y64{bottom:816.338550px;}
.ya{bottom:834.929550px;}
.y3a{bottom:836.366550px;}
.yb0{bottom:836.460150px;}
.y87{bottom:836.570550px;}
.y63{bottom:838.082550px;}
.y9{bottom:855.934050px;}
.y39{bottom:858.866550px;}
.yaf{bottom:858.960150px;}
.y86{bottom:859.070550px;}
.y62{bottom:859.826550px;}
.y8{bottom:876.938550px;}
.y38{bottom:881.366550px;}
.yae{bottom:881.460150px;}
.y61{bottom:881.570550px;}
.y7{bottom:897.943050px;}
.y37{bottom:903.866550px;}
.yad{bottom:903.960150px;}
.y60{bottom:904.070550px;}
.y6{bottom:918.943050px;}
.y36{bottom:926.366550px;}
.yac{bottom:926.460150px;}
.y5f{bottom:926.570550px;}
.y35{bottom:948.866550px;}
.yab{bottom:948.960150px;}
.y5e{bottom:949.070550px;}
.y5{bottom:968.443050px;}
.y34{bottom:971.366550px;}
.yaa{bottom:971.460150px;}
.y5d{bottom:971.570550px;}
.y33{bottom:993.866550px;}
.ya9{bottom:993.960150px;}
.y5c{bottom:994.070550px;}
.y4{bottom:1024.374150px;}
.y32{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.ha{height:40.634766px;}
.hb{height:41.660156px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.h8{height:46.200000px;}
.h9{height:50.400000px;}
.hd{height:52.492611px;}
.hc{height:53.467611px;}
.h7{height:54.600000px;}
.h6{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xe{left:65.202600px;}
.xc{left:73.559100px;}
.xd{left:74.853150px;}
.xf{left:85.039350px;}
.xb{left:224.187900px;}
.x11{left:251.161950px;}
.x5{left:275.805450px;}
.x9{left:312.741900px;}
.x10{left:374.424150px;}
.x7{left:385.440900px;}
.x12{left:399.931950px;}
.x8{left:410.141400px;}
.x4{left:412.272150px;}
.x13{left:421.195650px;}
.x6{left:522.955650px;}
.xa{left:585.239400px;}
.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;}
.ls4{letter-spacing:8.640000pt;}
.ls3{letter-spacing:19.008000pt;}
.ls2{letter-spacing:58.379200pt;}
.ws5c{word-spacing:-72.640000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws33{word-spacing:-54.016000pt;}
.wsa4{word-spacing:-53.952000pt;}
.ws90{word-spacing:-53.824000pt;}
.ws1a{word-spacing:-53.184000pt;}
.ws23{word-spacing:-52.992000pt;}
.ws7{word-spacing:-52.864000pt;}
.ws67{word-spacing:-51.968000pt;}
.ws7c{word-spacing:-51.136000pt;}
.wsf{word-spacing:-50.624000pt;}
.ws26{word-spacing:-50.176000pt;}
.ws6{word-spacing:-49.216000pt;}
.ws93{word-spacing:-49.024000pt;}
.wsb{word-spacing:-47.872000pt;}
.ws30{word-spacing:-47.616000pt;}
.wsa7{word-spacing:-47.552000pt;}
.wsa6{word-spacing:-47.480533pt;}
.ws5e{word-spacing:-47.360000pt;}
.ws43{word-spacing:-47.296000pt;}
.ws7a{word-spacing:-47.040000pt;}
.ws9d{word-spacing:-45.376000pt;}
.ws37{word-spacing:-45.120000pt;}
.ws4c{word-spacing:-44.992000pt;}
.ws4e{word-spacing:-44.288000pt;}
.ws4{word-spacing:-43.328000pt;}
.wsa{word-spacing:-43.264000pt;}
.wsaa{word-spacing:-42.816000pt;}
.ws68{word-spacing:-42.240000pt;}
.ws78{word-spacing:-41.984000pt;}
.ws28{word-spacing:-40.704000pt;}
.ws7b{word-spacing:-40.320000pt;}
.ws2b{word-spacing:-39.936000pt;}
.ws62{word-spacing:-39.040000pt;}
.ws59{word-spacing:-38.656000pt;}
.ws92{word-spacing:-38.336000pt;}
.ws3c{word-spacing:-38.016000pt;}
.ws9{word-spacing:-37.504000pt;}
.ws8f{word-spacing:-37.440000pt;}
.wsad{word-spacing:-37.056000pt;}
.ws2c{word-spacing:-36.864000pt;}
.wsd{word-spacing:-36.480000pt;}
.ws7f{word-spacing:-36.288000pt;}
.ws42{word-spacing:-35.968000pt;}
.ws16{word-spacing:-35.596800pt;}
.ws18{word-spacing:-35.584000pt;}
.ws88{word-spacing:-35.520000pt;}
.ws3b{word-spacing:-34.496000pt;}
.ws19{word-spacing:-34.176000pt;}
.ws3a{word-spacing:-33.536000pt;}
.ws5f{word-spacing:-32.768000pt;}
.ws91{word-spacing:-32.640000pt;}
.ws2a{word-spacing:-32.064000pt;}
.ws66{word-spacing:-31.592000pt;}
.ws6e{word-spacing:-31.552000pt;}
.ws4f{word-spacing:-31.168000pt;}
.ws6c{word-spacing:-30.464000pt;}
.ws9c{word-spacing:-29.184000pt;}
.wsb3{word-spacing:-29.056000pt;}
.ws8d{word-spacing:-28.864000pt;}
.ws38{word-spacing:-28.672000pt;}
.ws1c{word-spacing:-28.352000pt;}
.ws52{word-spacing:-27.712000pt;}
.ws1f{word-spacing:-27.520000pt;}
.ws44{word-spacing:-27.392000pt;}
.ws21{word-spacing:-26.176000pt;}
.wse{word-spacing:-25.920000pt;}
.ws94{word-spacing:-24.128000pt;}
.ws95{word-spacing:-23.936000pt;}
.ws8{word-spacing:-22.400000pt;}
.ws51{word-spacing:-21.760000pt;}
.ws79{word-spacing:-21.376000pt;}
.ws72{word-spacing:-20.864000pt;}
.ws3{word-spacing:-20.800000pt;}
.ws63{word-spacing:-20.096000pt;}
.wsa8{word-spacing:-19.904000pt;}
.ws98{word-spacing:-19.392000pt;}
.ws53{word-spacing:-18.560000pt;}
.ws74{word-spacing:-18.176000pt;}
.ws34{word-spacing:-18.084267pt;}
.ws5d{word-spacing:-17.984000pt;}
.ws29{word-spacing:-17.664000pt;}
.wsa9{word-spacing:-15.936000pt;}
.ws3e{word-spacing:-15.808000pt;}
.ws45{word-spacing:-15.424000pt;}
.ws56{word-spacing:-15.296000pt;}
.ws76{word-spacing:-15.040000pt;}
.ws81{word-spacing:-14.982400pt;}
.ws36{word-spacing:-14.912000pt;}
.ws7e{word-spacing:-14.848000pt;}
.ws75{word-spacing:-14.720000pt;}
.ws5a{word-spacing:-14.528000pt;}
.ws10{word-spacing:-13.333333pt;}
.ws46{word-spacing:-12.928000pt;}
.ws8c{word-spacing:-12.864000pt;}
.ws22{word-spacing:-12.544000pt;}
.ws4a{word-spacing:-12.096000pt;}
.ws17{word-spacing:-12.000000pt;}
.ws8a{word-spacing:-11.584000pt;}
.wsb4{word-spacing:-11.008000pt;}
.wsa1{word-spacing:-10.944000pt;}
.ws1d{word-spacing:-9.728000pt;}
.ws61{word-spacing:-8.256000pt;}
.ws54{word-spacing:-7.168000pt;}
.ws31{word-spacing:-6.784000pt;}
.ws2{word-spacing:-5.971200pt;}
.wsb1{word-spacing:-5.184000pt;}
.ws15{word-spacing:-5.049600pt;}
.ws73{word-spacing:-2.048000pt;}
.ws9b{word-spacing:-1.920000pt;}
.ws11{word-spacing:0.000000pt;}
.ws1{word-spacing:0.640000pt;}
.ws60{word-spacing:1.088000pt;}
.ws4d{word-spacing:2.048000pt;}
.ws71{word-spacing:2.496000pt;}
.ws9e{word-spacing:3.840000pt;}
.wsc{word-spacing:5.952000pt;}
.ws5b{word-spacing:6.656000pt;}
.wsa3{word-spacing:7.424000pt;}
.ws6b{word-spacing:8.768000pt;}
.ws2e{word-spacing:11.008000pt;}
.ws8b{word-spacing:11.392000pt;}
.ws1b{word-spacing:11.840000pt;}
.wsac{word-spacing:12.096000pt;}
.wsaf{word-spacing:12.928000pt;}
.ws80{word-spacing:15.312533pt;}
.ws6f{word-spacing:16.896000pt;}
.ws2d{word-spacing:19.776000pt;}
.wsab{word-spacing:22.656000pt;}
.ws47{word-spacing:23.488000pt;}
.ws39{word-spacing:24.256000pt;}
.ws3d{word-spacing:26.688000pt;}
.ws85{word-spacing:29.120000pt;}
.ws97{word-spacing:31.744000pt;}
.ws87{word-spacing:33.472000pt;}
.ws1e{word-spacing:36.288000pt;}
.ws70{word-spacing:37.120000pt;}
.ws99{word-spacing:37.696000pt;}
.ws32{word-spacing:37.760000pt;}
.wsae{word-spacing:38.592000pt;}
.wsa5{word-spacing:38.848000pt;}
.ws13{word-spacing:42.685333pt;}
.ws77{word-spacing:44.288000pt;}
.wsb2{word-spacing:44.416000pt;}
.ws49{word-spacing:44.736000pt;}
.wsb0{word-spacing:46.080000pt;}
.ws3f{word-spacing:46.720000pt;}
.ws55{word-spacing:47.936000pt;}
.ws83{word-spacing:48.192000pt;}
.ws4b{word-spacing:49.088000pt;}
.ws9a{word-spacing:54.144000pt;}
.ws8e{word-spacing:58.752000pt;}
.ws41{word-spacing:59.072000pt;}
.ws2f{word-spacing:59.392000pt;}
.ws69{word-spacing:61.184000pt;}
.ws7d{word-spacing:61.696000pt;}
.ws12{word-spacing:62.688000pt;}
.ws96{word-spacing:63.488000pt;}
.ws86{word-spacing:63.600000pt;}
.ws40{word-spacing:64.640000pt;}
.ws35{word-spacing:66.304000pt;}
.ws6a{word-spacing:67.328000pt;}
.ws50{word-spacing:68.608000pt;}
.ws82{word-spacing:69.952000pt;}
.ws20{word-spacing:73.600000pt;}
.wsa2{word-spacing:73.856000pt;}
.ws9f{word-spacing:75.392000pt;}
.ws6d{word-spacing:79.936000pt;}
.ws25{word-spacing:83.072000pt;}
.ws58{word-spacing:88.192000pt;}
.ws64{word-spacing:88.664000pt;}
.ws65{word-spacing:88.768000pt;}
.ws57{word-spacing:91.136000pt;}
.wsa0{word-spacing:122.240000pt;}
.ws48{word-spacing:123.840000pt;}
.ws24{word-spacing:144.838400pt;}
.ws84{word-spacing:151.168000pt;}
.ws89{word-spacing:218.304000pt;}
.ws14{word-spacing:343.390933pt;}
.ws27{word-spacing:430.656000pt;}
.ws0{word-spacing:1523.891200pt;}
._f{margin-left:-16.256000pt;}
._a{margin-left:-10.176000pt;}
._c{margin-left:-8.832000pt;}
._16{margin-left:-7.872000pt;}
._14{margin-left:-6.656000pt;}
._3{margin-left:-4.983467pt;}
._2{margin-left:-3.898667pt;}
._6{margin-left:-2.634667pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._d{width:2.624000pt;}
._b{width:4.160000pt;}
._10{width:5.056000pt;}
._4{width:6.272000pt;}
._5{width:7.232000pt;}
._8{width:8.896000pt;}
._7{width:58.028800pt;}
._11{width:58.950400pt;}
._e{width:65.785600pt;}
._12{width:69.113600pt;}
._13{width:105.465600pt;}
._9{width:115.449600pt;}
._15{width:138.233600pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y85{bottom:77.618267pt;}
.y5b{bottom:83.436933pt;}
.ycf{bottom:83.520133pt;}
.ya8{bottom:83.618267pt;}
.y84{bottom:97.618267pt;}
.y27{bottom:102.171600pt;}
.y5a{bottom:103.436933pt;}
.yce{bottom:103.520133pt;}
.ya7{bottom:103.618267pt;}
.y83{bottom:117.618267pt;}
.y26{bottom:122.171600pt;}
.y59{bottom:123.436933pt;}
.ycd{bottom:123.520133pt;}
.ya6{bottom:123.618267pt;}
.y82{bottom:137.618267pt;}
.y25{bottom:142.171600pt;}
.y58{bottom:143.436933pt;}
.ycc{bottom:143.520133pt;}
.ya5{bottom:143.618267pt;}
.y81{bottom:157.618267pt;}
.y24{bottom:162.171600pt;}
.y57{bottom:163.436933pt;}
.ycb{bottom:163.520133pt;}
.ya4{bottom:163.618267pt;}
.y80{bottom:177.618267pt;}
.y23{bottom:182.171600pt;}
.y56{bottom:183.436933pt;}
.yca{bottom:183.520133pt;}
.ya3{bottom:183.618267pt;}
.y7f{bottom:197.618267pt;}
.y22{bottom:202.171600pt;}
.y55{bottom:203.436933pt;}
.yc9{bottom:203.520133pt;}
.ya2{bottom:203.618267pt;}
.y7e{bottom:217.618267pt;}
.y21{bottom:222.171600pt;}
.y54{bottom:223.436933pt;}
.yc8{bottom:223.520133pt;}
.ya1{bottom:223.618267pt;}
.y7d{bottom:237.618267pt;}
.y20{bottom:242.171600pt;}
.y53{bottom:243.436933pt;}
.yc7{bottom:243.520133pt;}
.ya0{bottom:243.618267pt;}
.y7c{bottom:257.618267pt;}
.y1f{bottom:262.171600pt;}
.y52{bottom:263.436933pt;}
.yd1{bottom:263.520133pt;}
.y9f{bottom:263.618267pt;}
.y7b{bottom:277.618267pt;}
.y1e{bottom:282.171600pt;}
.y51{bottom:283.436933pt;}
.yc6{bottom:283.520133pt;}
.y9e{bottom:283.618267pt;}
.y7a{bottom:297.618267pt;}
.y50{bottom:303.436933pt;}
.yc5{bottom:303.520133pt;}
.y9d{bottom:303.618267pt;}
.y79{bottom:317.618267pt;}
.y1d{bottom:322.171600pt;}
.y4f{bottom:323.436933pt;}
.yc4{bottom:323.520133pt;}
.y9c{bottom:323.618267pt;}
.y78{bottom:337.618267pt;}
.y1c{bottom:342.171600pt;}
.y4e{bottom:343.436933pt;}
.yc3{bottom:343.520133pt;}
.y9b{bottom:343.618267pt;}
.y77{bottom:357.660933pt;}
.y1b{bottom:362.171600pt;}
.y4d{bottom:363.436933pt;}
.yc2{bottom:363.520133pt;}
.y9a{bottom:363.618267pt;}
.y76{bottom:377.660933pt;}
.y1a{bottom:382.171600pt;}
.y4c{bottom:383.436933pt;}
.yc1{bottom:383.520133pt;}
.y99{bottom:383.618267pt;}
.y75{bottom:396.988933pt;}
.y19{bottom:402.171600pt;}
.y4b{bottom:403.436933pt;}
.yc0{bottom:403.520133pt;}
.y98{bottom:403.618267pt;}
.y30{bottom:405.457733pt;}
.y74{bottom:416.316933pt;}
.y18{bottom:422.171600pt;}
.y4a{bottom:423.436933pt;}
.ybf{bottom:423.520133pt;}
.y97{bottom:423.618267pt;}
.y2f{bottom:425.457733pt;}
.y73{bottom:435.644933pt;}
.y17{bottom:442.171600pt;}
.y49{bottom:443.436933pt;}
.ybe{bottom:443.520133pt;}
.y96{bottom:443.618267pt;}
.y2e{bottom:445.457733pt;}
.y72{bottom:454.972933pt;}
.y16{bottom:462.171600pt;}
.y48{bottom:463.436933pt;}
.ybd{bottom:463.520133pt;}
.y95{bottom:463.618267pt;}
.y71{bottom:474.300933pt;}
.y2d{bottom:481.457733pt;}
.y15{bottom:482.171600pt;}
.y47{bottom:483.436933pt;}
.ybc{bottom:483.520133pt;}
.y94{bottom:483.618267pt;}
.y70{bottom:493.628933pt;}
.y46{bottom:503.436933pt;}
.ybb{bottom:503.520133pt;}
.y93{bottom:503.618267pt;}
.y6f{bottom:512.956933pt;}
.y2c{bottom:521.457733pt;}
.y14{bottom:522.171600pt;}
.y45{bottom:523.436933pt;}
.yba{bottom:523.520133pt;}
.y92{bottom:523.618267pt;}
.y6e{bottom:532.284933pt;}
.y13{bottom:542.171600pt;}
.y44{bottom:543.436933pt;}
.yb9{bottom:543.520133pt;}
.y91{bottom:543.618267pt;}
.y6d{bottom:551.628933pt;}
.y2b{bottom:557.457733pt;}
.y12{bottom:562.171600pt;}
.y43{bottom:563.436933pt;}
.yb8{bottom:563.520133pt;}
.y90{bottom:563.618267pt;}
.y6c{bottom:570.956933pt;}
.y11{bottom:582.171600pt;}
.y42{bottom:583.436933pt;}
.yb7{bottom:583.520133pt;}
.y8f{bottom:583.618267pt;}
.y2a{bottom:589.457733pt;}
.y6b{bottom:590.316933pt;}
.y10{bottom:602.171600pt;}
.y41{bottom:603.436933pt;}
.yb6{bottom:603.520133pt;}
.y8e{bottom:603.618267pt;}
.y6a{bottom:609.644933pt;}
.y29{bottom:621.457733pt;}
.yf{bottom:622.171600pt;}
.y40{bottom:623.436933pt;}
.yb5{bottom:623.520133pt;}
.y8d{bottom:623.618267pt;}
.y69{bottom:628.972933pt;}
.ye{bottom:642.171600pt;}
.y3f{bottom:643.436933pt;}
.yb4{bottom:643.520133pt;}
.y8c{bottom:643.618267pt;}
.y68{bottom:648.300933pt;}
.y28{bottom:653.457733pt;}
.yd{bottom:662.171600pt;}
.y3e{bottom:663.436933pt;}
.yb3{bottom:663.520133pt;}
.y8b{bottom:663.618267pt;}
.y67{bottom:667.628933pt;}
.yc{bottom:682.171600pt;}
.y3d{bottom:683.436933pt;}
.yd0{bottom:683.520133pt;}
.y8a{bottom:683.618267pt;}
.y66{bottom:686.956933pt;}
.yb{bottom:702.171600pt;}
.y3c{bottom:703.436933pt;}
.yb2{bottom:703.520133pt;}
.y89{bottom:703.618267pt;}
.y65{bottom:706.284933pt;}
.y3b{bottom:723.436933pt;}
.yb1{bottom:723.520133pt;}
.y88{bottom:723.618267pt;}
.y64{bottom:725.634267pt;}
.ya{bottom:742.159600pt;}
.y3a{bottom:743.436933pt;}
.yb0{bottom:743.520133pt;}
.y87{bottom:743.618267pt;}
.y63{bottom:744.962267pt;}
.y9{bottom:760.830267pt;}
.y39{bottom:763.436933pt;}
.yaf{bottom:763.520133pt;}
.y86{bottom:763.618267pt;}
.y62{bottom:764.290267pt;}
.y8{bottom:779.500933pt;}
.y38{bottom:783.436933pt;}
.yae{bottom:783.520133pt;}
.y61{bottom:783.618267pt;}
.y7{bottom:798.171600pt;}
.y37{bottom:803.436933pt;}
.yad{bottom:803.520133pt;}
.y60{bottom:803.618267pt;}
.y6{bottom:816.838267pt;}
.y36{bottom:823.436933pt;}
.yac{bottom:823.520133pt;}
.y5f{bottom:823.618267pt;}
.y35{bottom:843.436933pt;}
.yab{bottom:843.520133pt;}
.y5e{bottom:843.618267pt;}
.y5{bottom:860.838267pt;}
.y34{bottom:863.436933pt;}
.yaa{bottom:863.520133pt;}
.y5d{bottom:863.618267pt;}
.y33{bottom:883.436933pt;}
.ya9{bottom:883.520133pt;}
.y5c{bottom:883.618267pt;}
.y4{bottom:910.554800pt;}
.y32{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.ha{height:36.119792pt;}
.hb{height:37.031250pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.h8{height:41.066667pt;}
.h9{height:44.800000pt;}
.hd{height:46.660099pt;}
.hc{height:47.526765pt;}
.h7{height:48.533333pt;}
.h6{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xe{left:57.957867pt;}
.xc{left:65.385867pt;}
.xd{left:66.536133pt;}
.xf{left:75.590533pt;}
.xb{left:199.278133pt;}
.x11{left:223.255067pt;}
.x5{left:245.160400pt;}
.x9{left:277.992800pt;}
.x10{left:332.821467pt;}
.x7{left:342.614133pt;}
.x12{left:355.495067pt;}
.x8{left:364.570133pt;}
.x4{left:366.464133pt;}
.x13{left:374.396133pt;}
.x6{left:464.849467pt;}
.xa{left:520.212800pt;}
.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; }
  