
    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_0c160c541047eba040354302.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_0c160c541047eba040354302.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_c57fc66731291499016a20c6.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_97b94760c7c2efdd907a8dbd.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_5ca3cbb7c3490fade50b409e.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_2792f9b4b3b73bec608f2e8d.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_9148f12ddf8e80b400718134.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_6ca67410d6f01ed8a9f96429.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b9251a1f3550a52051447396.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4ac053803ea39715092abd5a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cedcc8c343c63ec8e72bdccf.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c57fc66731291499016a20c6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8b5cc6bc307d79cba655f584.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8bac9ebe41f13b3506eb7101.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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;}
.v3{vertical-align:19.980600px;}
.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;}
.ws26{word-spacing:-8.745000px;}
.ws54{word-spacing:-5.760000px;}
.ws60{word-spacing:-5.400000px;}
.ws1e{word-spacing:-5.340000px;}
.ws2e{word-spacing:-5.280000px;}
.ws38{word-spacing:-4.560000px;}
.wse{word-spacing:-4.260000px;}
.ws83{word-spacing:-3.600000px;}
.wsb{word-spacing:-3.420000px;}
.ws43{word-spacing:-3.120000px;}
.ws68{word-spacing:-3.060000px;}
.ws16{word-spacing:-2.640000px;}
.ws19{word-spacing:-2.580000px;}
.ws9d{word-spacing:-2.520000px;}
.ws14{word-spacing:-2.220000px;}
.ws6d{word-spacing:-2.160000px;}
.wsa{word-spacing:-2.100000px;}
.ws13{word-spacing:-1.980000px;}
.ws5d{word-spacing:-1.920000px;}
.ws1b{word-spacing:-1.800000px;}
.ws79{word-spacing:-1.680000px;}
.ws30{word-spacing:-1.500000px;}
.ws82{word-spacing:-1.440000px;}
.ws67{word-spacing:-1.200000px;}
.ws7e{word-spacing:-1.140000px;}
.ws4{word-spacing:-1.080000px;}
.wsc{word-spacing:-1.020000px;}
.ws2a{word-spacing:-0.960000px;}
.ws39{word-spacing:-0.900000px;}
.ws4d{word-spacing:-0.840000px;}
.ws18{word-spacing:-0.780000px;}
.ws27{word-spacing:-0.720000px;}
.ws74{word-spacing:-0.360000px;}
.ws98{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws17{word-spacing:0.180000px;}
.ws8f{word-spacing:0.240000px;}
.ws15{word-spacing:0.300000px;}
.ws7{word-spacing:0.360000px;}
.ws1d{word-spacing:0.420000px;}
.ws11{word-spacing:0.600000px;}
.ws1{word-spacing:0.720000px;}
.ws2d{word-spacing:0.960000px;}
.ws1c{word-spacing:1.020000px;}
.ws9e{word-spacing:1.080000px;}
.ws64{word-spacing:1.200000px;}
.ws1f{word-spacing:1.380000px;}
.ws66{word-spacing:1.440000px;}
.ws3b{word-spacing:1.560000px;}
.ws4e{word-spacing:1.620000px;}
.ws45{word-spacing:1.860000px;}
.ws4c{word-spacing:1.980000px;}
.ws95{word-spacing:2.040000px;}
.ws2c{word-spacing:2.220000px;}
.ws9c{word-spacing:2.400000px;}
.ws89{word-spacing:2.460000px;}
.ws6b{word-spacing:2.520000px;}
.ws8a{word-spacing:2.700000px;}
.ws8c{word-spacing:2.880000px;}
.wsa3{word-spacing:3.120000px;}
.wsa6{word-spacing:3.300000px;}
.ws1a{word-spacing:3.420000px;}
.ws97{word-spacing:3.720000px;}
.ws80{word-spacing:3.780000px;}
.ws46{word-spacing:3.840000px;}
.ws47{word-spacing:3.900000px;}
.ws12{word-spacing:4.020000px;}
.ws22{word-spacing:4.140000px;}
.ws9{word-spacing:4.440000px;}
.ws7a{word-spacing:4.500000px;}
.ws6f{word-spacing:4.620000px;}
.ws37{word-spacing:4.740000px;}
.ws36{word-spacing:4.920000px;}
.ws32{word-spacing:5.040000px;}
.ws31{word-spacing:5.160000px;}
.ws73{word-spacing:5.280000px;}
.ws5c{word-spacing:5.400000px;}
.ws61{word-spacing:5.580000px;}
.ws7f{word-spacing:5.640000px;}
.ws48{word-spacing:5.760000px;}
.ws3c{word-spacing:5.880000px;}
.ws81{word-spacing:5.940000px;}
.ws9a{word-spacing:6.060000px;}
.ws2b{word-spacing:6.120000px;}
.ws52{word-spacing:6.240000px;}
.ws5f{word-spacing:6.420000px;}
.wsd{word-spacing:6.480000px;}
.ws5{word-spacing:6.600000px;}
.ws28{word-spacing:6.660000px;}
.ws10{word-spacing:6.720000px;}
.ws8{word-spacing:6.900000px;}
.ws85{word-spacing:7.080000px;}
.ws21{word-spacing:7.140000px;}
.ws75{word-spacing:7.260000px;}
.ws78{word-spacing:7.320000px;}
.ws23{word-spacing:7.440000px;}
.wsa0{word-spacing:7.680000px;}
.ws6c{word-spacing:8.160000px;}
.ws3a{word-spacing:8.520000px;}
.ws70{word-spacing:8.640000px;}
.ws20{word-spacing:8.700000px;}
.ws5b{word-spacing:9.420000px;}
.ws91{word-spacing:9.540000px;}
.ws7c{word-spacing:9.660000px;}
.ws7b{word-spacing:9.720000px;}
.ws93{word-spacing:9.780000px;}
.ws49{word-spacing:9.900000px;}
.ws51{word-spacing:10.320000px;}
.wsf{word-spacing:10.380000px;}
.ws5e{word-spacing:10.440000px;}
.ws65{word-spacing:10.800000px;}
.ws72{word-spacing:10.980000px;}
.ws42{word-spacing:11.100000px;}
.ws76{word-spacing:11.160000px;}
.wsa2{word-spacing:11.220000px;}
.ws96{word-spacing:11.400000px;}
.ws50{word-spacing:11.580000px;}
.ws33{word-spacing:11.940000px;}
.ws63{word-spacing:12.120000px;}
.ws3d{word-spacing:12.660000px;}
.ws84{word-spacing:13.020000px;}
.ws29{word-spacing:13.080000px;}
.ws9f{word-spacing:13.440000px;}
.ws53{word-spacing:13.560000px;}
.ws94{word-spacing:13.620000px;}
.ws8e{word-spacing:13.800000px;}
.ws5a{word-spacing:13.980000px;}
.ws8d{word-spacing:14.940000px;}
.ws34{word-spacing:15.180000px;}
.ws57{word-spacing:15.720000px;}
.ws62{word-spacing:16.860000px;}
.ws3e{word-spacing:16.980000px;}
.ws40{word-spacing:17.040000px;}
.ws90{word-spacing:17.220000px;}
.ws69{word-spacing:17.280000px;}
.ws6{word-spacing:17.700000px;}
.ws92{word-spacing:17.820000px;}
.ws99{word-spacing:18.120000px;}
.ws44{word-spacing:18.480000px;}
.ws7d{word-spacing:19.080000px;}
.ws9b{word-spacing:19.260000px;}
.ws86{word-spacing:19.860000px;}
.ws4f{word-spacing:20.280000px;}
.ws4b{word-spacing:20.580000px;}
.ws6e{word-spacing:21.000000px;}
.ws88{word-spacing:21.780000px;}
.ws41{word-spacing:23.760000px;}
.ws8b{word-spacing:24.360000px;}
.wsa8{word-spacing:24.540000px;}
.wsa5{word-spacing:24.600000px;}
.ws71{word-spacing:24.660000px;}
.ws6a{word-spacing:24.720000px;}
.ws4a{word-spacing:24.900000px;}
.ws87{word-spacing:25.140000px;}
.wsa1{word-spacing:25.620000px;}
.ws3f{word-spacing:26.160000px;}
.wsa7{word-spacing:27.960000px;}
.ws2f{word-spacing:28.620000px;}
.wsa4{word-spacing:29.520000px;}
.ws58{word-spacing:30.360000px;}
.ws77{word-spacing:31.620000px;}
.ws35{word-spacing:31.920000px;}
.ws55{word-spacing:38.100000px;}
.ws24{word-spacing:48.021000px;}
.ws56{word-spacing:57.420000px;}
.ws59{word-spacing:102.660000px;}
.ws25{word-spacing:386.314800px;}
.ws0{word-spacing:1714.377600px;}
._7{margin-left:-22.345200px;}
._1a{margin-left:-21.012000px;}
._1c{margin-left:-19.452000px;}
._1b{margin-left:-16.092000px;}
._19{margin-left:-8.708400px;}
._4{margin-left:-6.976800px;}
._3{margin-left:-5.508000px;}
._2{margin-left:-4.386000px;}
._5{margin-left:-2.883000px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._d{width:2.472000px;}
._c{width:3.516000px;}
._17{width:4.914000px;}
._a{width:6.084000px;}
._10{width:8.082000px;}
._13{width:9.276000px;}
._12{width:10.338000px;}
._14{width:12.144000px;}
._15{width:13.266000px;}
._16{width:16.182000px;}
._18{width:25.020000px;}
._f{width:49.440000px;}
._11{width:54.300000px;}
._e{width:57.360000px;}
._6{width:62.400000px;}
._b{width:64.860000px;}
._9{width:68.700000px;}
._8{width:70.020000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:34.980000px;}
.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;}
.y3a{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y30{bottom:93.142650px;}
.y6a{bottom:98.581350px;}
.y99{bottom:99.210600px;}
.y2f{bottom:112.642650px;}
.y69{bottom:118.081350px;}
.y98{bottom:118.710600px;}
.y2e{bottom:132.142650px;}
.y68{bottom:137.581350px;}
.y97{bottom:138.210600px;}
.y2d{bottom:151.642650px;}
.y67{bottom:157.081350px;}
.y96{bottom:157.710600px;}
.y2c{bottom:171.142650px;}
.y66{bottom:176.581350px;}
.y95{bottom:177.210600px;}
.y2b{bottom:190.642650px;}
.y65{bottom:196.081350px;}
.y94{bottom:196.710600px;}
.y2a{bottom:210.142650px;}
.y64{bottom:215.581350px;}
.y93{bottom:216.210600px;}
.y29{bottom:229.642650px;}
.y63{bottom:235.081350px;}
.y92{bottom:235.710600px;}
.y28{bottom:249.142650px;}
.y62{bottom:254.581350px;}
.y91{bottom:255.210600px;}
.y27{bottom:268.642650px;}
.y61{bottom:274.081350px;}
.y90{bottom:274.710600px;}
.y26{bottom:288.142650px;}
.y60{bottom:293.581350px;}
.y8f{bottom:294.210600px;}
.y25{bottom:307.642650px;}
.y5f{bottom:313.081350px;}
.y8e{bottom:313.710600px;}
.y24{bottom:327.142650px;}
.y5e{bottom:332.581350px;}
.y8d{bottom:333.210600px;}
.y23{bottom:346.642650px;}
.y5d{bottom:352.081350px;}
.y8c{bottom:352.710600px;}
.y22{bottom:366.142650px;}
.y5c{bottom:371.581350px;}
.y8b{bottom:372.210600px;}
.y21{bottom:385.642650px;}
.y5b{bottom:391.081350px;}
.y8a{bottom:391.710600px;}
.y20{bottom:405.142650px;}
.y5a{bottom:410.581350px;}
.y89{bottom:411.210600px;}
.y1f{bottom:424.642650px;}
.y59{bottom:430.081350px;}
.y88{bottom:430.710600px;}
.y1e{bottom:444.142650px;}
.y58{bottom:449.581350px;}
.y87{bottom:450.210600px;}
.y39{bottom:456.139950px;}
.y1d{bottom:463.642650px;}
.y57{bottom:469.081350px;}
.y86{bottom:469.710600px;}
.y38{bottom:478.639950px;}
.y1c{bottom:483.142650px;}
.y56{bottom:488.581350px;}
.y85{bottom:489.210600px;}
.y37{bottom:501.139950px;}
.y1b{bottom:502.642650px;}
.y55{bottom:508.081350px;}
.y84{bottom:508.710600px;}
.y1a{bottom:522.142650px;}
.y54{bottom:527.581350px;}
.y83{bottom:528.210600px;}
.y36{bottom:541.639950px;}
.y19{bottom:541.642650px;}
.y53{bottom:547.081350px;}
.y82{bottom:547.710600px;}
.y18{bottom:561.142650px;}
.y52{bottom:566.581350px;}
.y81{bottom:567.210600px;}
.y17{bottom:580.642650px;}
.y51{bottom:586.081350px;}
.y35{bottom:586.639950px;}
.y80{bottom:586.710600px;}
.y16{bottom:600.142650px;}
.y50{bottom:605.581350px;}
.y7f{bottom:606.210600px;}
.y15{bottom:619.642650px;}
.y4f{bottom:625.081350px;}
.y7e{bottom:625.710600px;}
.y34{bottom:627.139950px;}
.y14{bottom:639.142650px;}
.y4e{bottom:644.581350px;}
.y7d{bottom:645.210600px;}
.y13{bottom:658.642650px;}
.y33{bottom:663.139950px;}
.y4d{bottom:664.081350px;}
.y7c{bottom:664.710600px;}
.y12{bottom:678.142650px;}
.y4c{bottom:683.581350px;}
.y7b{bottom:684.210600px;}
.y11{bottom:697.642650px;}
.y32{bottom:699.139950px;}
.y4b{bottom:703.081350px;}
.y7a{bottom:703.710600px;}
.y10{bottom:717.142650px;}
.ya8{bottom:719.989500px;}
.y4a{bottom:722.581350px;}
.y79{bottom:723.210600px;}
.y31{bottom:735.139950px;}
.yf{bottom:736.642650px;}
.y49{bottom:742.081350px;}
.ya7{bottom:742.489500px;}
.y78{bottom:742.710600px;}
.ye{bottom:756.142650px;}
.y48{bottom:761.581350px;}
.ya6{bottom:761.989500px;}
.y77{bottom:762.210600px;}
.yd{bottom:775.642650px;}
.y47{bottom:781.081350px;}
.ya5{bottom:781.489500px;}
.y76{bottom:781.710600px;}
.yc{bottom:795.142650px;}
.y46{bottom:800.581350px;}
.ya4{bottom:800.989500px;}
.y75{bottom:801.210600px;}
.yb{bottom:814.642650px;}
.y45{bottom:820.081350px;}
.ya3{bottom:820.489500px;}
.y74{bottom:820.710600px;}
.ya{bottom:834.142650px;}
.y44{bottom:839.581350px;}
.ya2{bottom:839.989500px;}
.y73{bottom:840.210600px;}
.y9{bottom:853.642650px;}
.y43{bottom:859.081350px;}
.ya1{bottom:859.489500px;}
.y72{bottom:859.710600px;}
.y42{bottom:878.581350px;}
.ya0{bottom:878.989500px;}
.y71{bottom:879.210600px;}
.y8{bottom:892.648650px;}
.y41{bottom:898.081350px;}
.y9f{bottom:898.489500px;}
.y70{bottom:898.710600px;}
.y7{bottom:912.142650px;}
.y40{bottom:917.581350px;}
.y9e{bottom:917.989500px;}
.y6f{bottom:918.210600px;}
.y6{bottom:930.142650px;}
.y3f{bottom:937.081350px;}
.y9d{bottom:937.489500px;}
.y6e{bottom:937.710600px;}
.y3e{bottom:956.581350px;}
.y9c{bottom:956.989500px;}
.y6d{bottom:957.210600px;}
.y5{bottom:969.142650px;}
.y3d{bottom:976.081350px;}
.y9b{bottom:976.489500px;}
.y6c{bottom:976.710600px;}
.y3c{bottom:995.581350px;}
.y9a{bottom:995.989500px;}
.y6b{bottom:996.210600px;}
.y4{bottom:1024.374150px;}
.y3b{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.h8{height:37.494141px;}
.h7{height:40.664062px;}
.ha{height:41.660156px;}
.h9{height:41.689453px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.h10{height:44.284951px;}
.hf{height:44.285551px;}
.hc{height:46.200000px;}
.hb{height:50.400000px;}
.he{height:52.492611px;}
.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;}
.xc{left:65.202600px;}
.xa{left:73.559100px;}
.xb{left:74.853150px;}
.xf{left:90.779550px;}
.x9{left:224.187900px;}
.x5{left:328.561050px;}
.x7{left:354.428250px;}
.xd{left:399.935850px;}
.x4{left:412.272150px;}
.xe{left:427.173900px;}
.x8{left:588.248250px;}
.x6{left:604.097700px;}
.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;}
.v3{vertical-align:17.760533pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws26{word-spacing:-7.773333pt;}
.ws54{word-spacing:-5.120000pt;}
.ws60{word-spacing:-4.800000pt;}
.ws1e{word-spacing:-4.746667pt;}
.ws2e{word-spacing:-4.693333pt;}
.ws38{word-spacing:-4.053333pt;}
.wse{word-spacing:-3.786667pt;}
.ws83{word-spacing:-3.200000pt;}
.wsb{word-spacing:-3.040000pt;}
.ws43{word-spacing:-2.773333pt;}
.ws68{word-spacing:-2.720000pt;}
.ws16{word-spacing:-2.346667pt;}
.ws19{word-spacing:-2.293333pt;}
.ws9d{word-spacing:-2.240000pt;}
.ws14{word-spacing:-1.973333pt;}
.ws6d{word-spacing:-1.920000pt;}
.wsa{word-spacing:-1.866667pt;}
.ws13{word-spacing:-1.760000pt;}
.ws5d{word-spacing:-1.706667pt;}
.ws1b{word-spacing:-1.600000pt;}
.ws79{word-spacing:-1.493333pt;}
.ws30{word-spacing:-1.333333pt;}
.ws82{word-spacing:-1.280000pt;}
.ws67{word-spacing:-1.066667pt;}
.ws7e{word-spacing:-1.013333pt;}
.ws4{word-spacing:-0.960000pt;}
.wsc{word-spacing:-0.906667pt;}
.ws2a{word-spacing:-0.853333pt;}
.ws39{word-spacing:-0.800000pt;}
.ws4d{word-spacing:-0.746667pt;}
.ws18{word-spacing:-0.693333pt;}
.ws27{word-spacing:-0.640000pt;}
.ws74{word-spacing:-0.320000pt;}
.ws98{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws17{word-spacing:0.160000pt;}
.ws8f{word-spacing:0.213333pt;}
.ws15{word-spacing:0.266667pt;}
.ws7{word-spacing:0.320000pt;}
.ws1d{word-spacing:0.373333pt;}
.ws11{word-spacing:0.533333pt;}
.ws1{word-spacing:0.640000pt;}
.ws2d{word-spacing:0.853333pt;}
.ws1c{word-spacing:0.906667pt;}
.ws9e{word-spacing:0.960000pt;}
.ws64{word-spacing:1.066667pt;}
.ws1f{word-spacing:1.226667pt;}
.ws66{word-spacing:1.280000pt;}
.ws3b{word-spacing:1.386667pt;}
.ws4e{word-spacing:1.440000pt;}
.ws45{word-spacing:1.653333pt;}
.ws4c{word-spacing:1.760000pt;}
.ws95{word-spacing:1.813333pt;}
.ws2c{word-spacing:1.973333pt;}
.ws9c{word-spacing:2.133333pt;}
.ws89{word-spacing:2.186667pt;}
.ws6b{word-spacing:2.240000pt;}
.ws8a{word-spacing:2.400000pt;}
.ws8c{word-spacing:2.560000pt;}
.wsa3{word-spacing:2.773333pt;}
.wsa6{word-spacing:2.933333pt;}
.ws1a{word-spacing:3.040000pt;}
.ws97{word-spacing:3.306667pt;}
.ws80{word-spacing:3.360000pt;}
.ws46{word-spacing:3.413333pt;}
.ws47{word-spacing:3.466667pt;}
.ws12{word-spacing:3.573333pt;}
.ws22{word-spacing:3.680000pt;}
.ws9{word-spacing:3.946667pt;}
.ws7a{word-spacing:4.000000pt;}
.ws6f{word-spacing:4.106667pt;}
.ws37{word-spacing:4.213333pt;}
.ws36{word-spacing:4.373333pt;}
.ws32{word-spacing:4.480000pt;}
.ws31{word-spacing:4.586667pt;}
.ws73{word-spacing:4.693333pt;}
.ws5c{word-spacing:4.800000pt;}
.ws61{word-spacing:4.960000pt;}
.ws7f{word-spacing:5.013333pt;}
.ws48{word-spacing:5.120000pt;}
.ws3c{word-spacing:5.226667pt;}
.ws81{word-spacing:5.280000pt;}
.ws9a{word-spacing:5.386667pt;}
.ws2b{word-spacing:5.440000pt;}
.ws52{word-spacing:5.546667pt;}
.ws5f{word-spacing:5.706667pt;}
.wsd{word-spacing:5.760000pt;}
.ws5{word-spacing:5.866667pt;}
.ws28{word-spacing:5.920000pt;}
.ws10{word-spacing:5.973333pt;}
.ws8{word-spacing:6.133333pt;}
.ws85{word-spacing:6.293333pt;}
.ws21{word-spacing:6.346667pt;}
.ws75{word-spacing:6.453333pt;}
.ws78{word-spacing:6.506667pt;}
.ws23{word-spacing:6.613333pt;}
.wsa0{word-spacing:6.826667pt;}
.ws6c{word-spacing:7.253333pt;}
.ws3a{word-spacing:7.573333pt;}
.ws70{word-spacing:7.680000pt;}
.ws20{word-spacing:7.733333pt;}
.ws5b{word-spacing:8.373333pt;}
.ws91{word-spacing:8.480000pt;}
.ws7c{word-spacing:8.586667pt;}
.ws7b{word-spacing:8.640000pt;}
.ws93{word-spacing:8.693333pt;}
.ws49{word-spacing:8.800000pt;}
.ws51{word-spacing:9.173333pt;}
.wsf{word-spacing:9.226667pt;}
.ws5e{word-spacing:9.280000pt;}
.ws65{word-spacing:9.600000pt;}
.ws72{word-spacing:9.760000pt;}
.ws42{word-spacing:9.866667pt;}
.ws76{word-spacing:9.920000pt;}
.wsa2{word-spacing:9.973333pt;}
.ws96{word-spacing:10.133333pt;}
.ws50{word-spacing:10.293333pt;}
.ws33{word-spacing:10.613333pt;}
.ws63{word-spacing:10.773333pt;}
.ws3d{word-spacing:11.253333pt;}
.ws84{word-spacing:11.573333pt;}
.ws29{word-spacing:11.626667pt;}
.ws9f{word-spacing:11.946667pt;}
.ws53{word-spacing:12.053333pt;}
.ws94{word-spacing:12.106667pt;}
.ws8e{word-spacing:12.266667pt;}
.ws5a{word-spacing:12.426667pt;}
.ws8d{word-spacing:13.280000pt;}
.ws34{word-spacing:13.493333pt;}
.ws57{word-spacing:13.973333pt;}
.ws62{word-spacing:14.986667pt;}
.ws3e{word-spacing:15.093333pt;}
.ws40{word-spacing:15.146667pt;}
.ws90{word-spacing:15.306667pt;}
.ws69{word-spacing:15.360000pt;}
.ws6{word-spacing:15.733333pt;}
.ws92{word-spacing:15.840000pt;}
.ws99{word-spacing:16.106667pt;}
.ws44{word-spacing:16.426667pt;}
.ws7d{word-spacing:16.960000pt;}
.ws9b{word-spacing:17.120000pt;}
.ws86{word-spacing:17.653333pt;}
.ws4f{word-spacing:18.026667pt;}
.ws4b{word-spacing:18.293333pt;}
.ws6e{word-spacing:18.666667pt;}
.ws88{word-spacing:19.360000pt;}
.ws41{word-spacing:21.120000pt;}
.ws8b{word-spacing:21.653333pt;}
.wsa8{word-spacing:21.813333pt;}
.wsa5{word-spacing:21.866667pt;}
.ws71{word-spacing:21.920000pt;}
.ws6a{word-spacing:21.973333pt;}
.ws4a{word-spacing:22.133333pt;}
.ws87{word-spacing:22.346667pt;}
.wsa1{word-spacing:22.773333pt;}
.ws3f{word-spacing:23.253333pt;}
.wsa7{word-spacing:24.853333pt;}
.ws2f{word-spacing:25.440000pt;}
.wsa4{word-spacing:26.240000pt;}
.ws58{word-spacing:26.986667pt;}
.ws77{word-spacing:28.106667pt;}
.ws35{word-spacing:28.373333pt;}
.ws55{word-spacing:33.866667pt;}
.ws24{word-spacing:42.685333pt;}
.ws56{word-spacing:51.040000pt;}
.ws59{word-spacing:91.253333pt;}
.ws25{word-spacing:343.390933pt;}
.ws0{word-spacing:1523.891200pt;}
._7{margin-left:-19.862400pt;}
._1a{margin-left:-18.677333pt;}
._1c{margin-left:-17.290667pt;}
._1b{margin-left:-14.304000pt;}
._19{margin-left:-7.740800pt;}
._4{margin-left:-6.201600pt;}
._3{margin-left:-4.896000pt;}
._2{margin-left:-3.898667pt;}
._5{margin-left:-2.562667pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._d{width:2.197333pt;}
._c{width:3.125333pt;}
._17{width:4.368000pt;}
._a{width:5.408000pt;}
._10{width:7.184000pt;}
._13{width:8.245333pt;}
._12{width:9.189333pt;}
._14{width:10.794667pt;}
._15{width:11.792000pt;}
._16{width:14.384000pt;}
._18{width:22.240000pt;}
._f{width:43.946667pt;}
._11{width:48.266667pt;}
._e{width:50.986667pt;}
._6{width:55.466667pt;}
._b{width:57.653333pt;}
._9{width:61.066667pt;}
._8{width:62.240000pt;}
.fs6{font-size:31.093333pt;}
.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;}
.y3a{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y30{bottom:82.793467pt;}
.y6a{bottom:87.627867pt;}
.y99{bottom:88.187200pt;}
.y2f{bottom:100.126800pt;}
.y69{bottom:104.961200pt;}
.y98{bottom:105.520533pt;}
.y2e{bottom:117.460133pt;}
.y68{bottom:122.294533pt;}
.y97{bottom:122.853867pt;}
.y2d{bottom:134.793467pt;}
.y67{bottom:139.627867pt;}
.y96{bottom:140.187200pt;}
.y2c{bottom:152.126800pt;}
.y66{bottom:156.961200pt;}
.y95{bottom:157.520533pt;}
.y2b{bottom:169.460133pt;}
.y65{bottom:174.294533pt;}
.y94{bottom:174.853867pt;}
.y2a{bottom:186.793467pt;}
.y64{bottom:191.627867pt;}
.y93{bottom:192.187200pt;}
.y29{bottom:204.126800pt;}
.y63{bottom:208.961200pt;}
.y92{bottom:209.520533pt;}
.y28{bottom:221.460133pt;}
.y62{bottom:226.294533pt;}
.y91{bottom:226.853867pt;}
.y27{bottom:238.793467pt;}
.y61{bottom:243.627867pt;}
.y90{bottom:244.187200pt;}
.y26{bottom:256.126800pt;}
.y60{bottom:260.961200pt;}
.y8f{bottom:261.520533pt;}
.y25{bottom:273.460133pt;}
.y5f{bottom:278.294533pt;}
.y8e{bottom:278.853867pt;}
.y24{bottom:290.793467pt;}
.y5e{bottom:295.627867pt;}
.y8d{bottom:296.187200pt;}
.y23{bottom:308.126800pt;}
.y5d{bottom:312.961200pt;}
.y8c{bottom:313.520533pt;}
.y22{bottom:325.460133pt;}
.y5c{bottom:330.294533pt;}
.y8b{bottom:330.853867pt;}
.y21{bottom:342.793467pt;}
.y5b{bottom:347.627867pt;}
.y8a{bottom:348.187200pt;}
.y20{bottom:360.126800pt;}
.y5a{bottom:364.961200pt;}
.y89{bottom:365.520533pt;}
.y1f{bottom:377.460133pt;}
.y59{bottom:382.294533pt;}
.y88{bottom:382.853867pt;}
.y1e{bottom:394.793467pt;}
.y58{bottom:399.627867pt;}
.y87{bottom:400.187200pt;}
.y39{bottom:405.457733pt;}
.y1d{bottom:412.126800pt;}
.y57{bottom:416.961200pt;}
.y86{bottom:417.520533pt;}
.y38{bottom:425.457733pt;}
.y1c{bottom:429.460133pt;}
.y56{bottom:434.294533pt;}
.y85{bottom:434.853867pt;}
.y37{bottom:445.457733pt;}
.y1b{bottom:446.793467pt;}
.y55{bottom:451.627867pt;}
.y84{bottom:452.187200pt;}
.y1a{bottom:464.126800pt;}
.y54{bottom:468.961200pt;}
.y83{bottom:469.520533pt;}
.y36{bottom:481.457733pt;}
.y19{bottom:481.460133pt;}
.y53{bottom:486.294533pt;}
.y82{bottom:486.853867pt;}
.y18{bottom:498.793467pt;}
.y52{bottom:503.627867pt;}
.y81{bottom:504.187200pt;}
.y17{bottom:516.126800pt;}
.y51{bottom:520.961200pt;}
.y35{bottom:521.457733pt;}
.y80{bottom:521.520533pt;}
.y16{bottom:533.460133pt;}
.y50{bottom:538.294533pt;}
.y7f{bottom:538.853867pt;}
.y15{bottom:550.793467pt;}
.y4f{bottom:555.627867pt;}
.y7e{bottom:556.187200pt;}
.y34{bottom:557.457733pt;}
.y14{bottom:568.126800pt;}
.y4e{bottom:572.961200pt;}
.y7d{bottom:573.520533pt;}
.y13{bottom:585.460133pt;}
.y33{bottom:589.457733pt;}
.y4d{bottom:590.294533pt;}
.y7c{bottom:590.853867pt;}
.y12{bottom:602.793467pt;}
.y4c{bottom:607.627867pt;}
.y7b{bottom:608.187200pt;}
.y11{bottom:620.126800pt;}
.y32{bottom:621.457733pt;}
.y4b{bottom:624.961200pt;}
.y7a{bottom:625.520533pt;}
.y10{bottom:637.460133pt;}
.ya8{bottom:639.990667pt;}
.y4a{bottom:642.294533pt;}
.y79{bottom:642.853867pt;}
.y31{bottom:653.457733pt;}
.yf{bottom:654.793467pt;}
.y49{bottom:659.627867pt;}
.ya7{bottom:659.990667pt;}
.y78{bottom:660.187200pt;}
.ye{bottom:672.126800pt;}
.y48{bottom:676.961200pt;}
.ya6{bottom:677.324000pt;}
.y77{bottom:677.520533pt;}
.yd{bottom:689.460133pt;}
.y47{bottom:694.294533pt;}
.ya5{bottom:694.657333pt;}
.y76{bottom:694.853867pt;}
.yc{bottom:706.793467pt;}
.y46{bottom:711.627867pt;}
.ya4{bottom:711.990667pt;}
.y75{bottom:712.187200pt;}
.yb{bottom:724.126800pt;}
.y45{bottom:728.961200pt;}
.ya3{bottom:729.324000pt;}
.y74{bottom:729.520533pt;}
.ya{bottom:741.460133pt;}
.y44{bottom:746.294533pt;}
.ya2{bottom:746.657333pt;}
.y73{bottom:746.853867pt;}
.y9{bottom:758.793467pt;}
.y43{bottom:763.627867pt;}
.ya1{bottom:763.990667pt;}
.y72{bottom:764.187200pt;}
.y42{bottom:780.961200pt;}
.ya0{bottom:781.324000pt;}
.y71{bottom:781.520533pt;}
.y8{bottom:793.465467pt;}
.y41{bottom:798.294533pt;}
.y9f{bottom:798.657333pt;}
.y70{bottom:798.853867pt;}
.y7{bottom:810.793467pt;}
.y40{bottom:815.627867pt;}
.y9e{bottom:815.990667pt;}
.y6f{bottom:816.187200pt;}
.y6{bottom:826.793467pt;}
.y3f{bottom:832.961200pt;}
.y9d{bottom:833.324000pt;}
.y6e{bottom:833.520533pt;}
.y3e{bottom:850.294533pt;}
.y9c{bottom:850.657333pt;}
.y6d{bottom:850.853867pt;}
.y5{bottom:861.460133pt;}
.y3d{bottom:867.627867pt;}
.y9b{bottom:867.990667pt;}
.y6c{bottom:868.187200pt;}
.y3c{bottom:884.961200pt;}
.y9a{bottom:885.324000pt;}
.y6b{bottom:885.520533pt;}
.y4{bottom:910.554800pt;}
.y3b{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.h8{height:33.328125pt;}
.h7{height:36.145833pt;}
.ha{height:37.031250pt;}
.h9{height:37.057292pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.h10{height:39.364401pt;}
.hf{height:39.364934pt;}
.hc{height:41.066667pt;}
.hb{height:44.800000pt;}
.he{height:46.660099pt;}
.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;}
.xc{left:57.957867pt;}
.xa{left:65.385867pt;}
.xb{left:66.536133pt;}
.xf{left:80.692933pt;}
.x9{left:199.278133pt;}
.x5{left:292.054267pt;}
.x7{left:315.047333pt;}
.xd{left:355.498533pt;}
.x4{left:366.464133pt;}
.xe{left:379.710133pt;}
.x8{left:522.887333pt;}
.x6{left:536.975733pt;}
.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; }
  