
    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_26c11ff192777d7e7f85a534.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.200000;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_147a96249f73399f92b964e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.200000;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_4595d0e76acfe6f5261d3999.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.200000;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_8070e55e40cf0bfb116d3e2d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.582031;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_08a5b24ebfc1860ace5d5f46.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4e65b146c37a7b6aec00b541.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000710;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_ed13edb6a2008b88b7a53b46.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942000;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_6d12be128b09f9510497ed6b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-10.680000px;}
.ls1{letter-spacing:-10.200000px;}
.lsa{letter-spacing:-2.160000px;}
.ls5{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.300000px;}
.ls6{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:20.031000px;}
.ls7{letter-spacing:30.911400px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(49,51,52),0 0.015em rgb(49,51,52),0.015em 0 rgb(49,51,52),0 -0.015em  rgb(49,51,52);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(49,51,52);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-87.720000px;}
.ws12{word-spacing:-28.800000px;}
.ws11{word-spacing:-27.360000px;}
.ws2{word-spacing:-14.400000px;}
.ws9{word-spacing:-14.340000px;}
.ws83{word-spacing:-14.220000px;}
.ws3{word-spacing:-14.100000px;}
.wsc{word-spacing:-11.580000px;}
.ws10{word-spacing:-11.280000px;}
.ws7{word-spacing:-10.800000px;}
.wsf{word-spacing:-10.740000px;}
.wsd{word-spacing:-9.420000px;}
.wsb{word-spacing:-6.660000px;}
.ws5e{word-spacing:-5.760000px;}
.ws78{word-spacing:-5.580000px;}
.ws62{word-spacing:-5.460000px;}
.ws5{word-spacing:-4.860000px;}
.ws4{word-spacing:-4.620000px;}
.ws8{word-spacing:-4.560000px;}
.ws53{word-spacing:-4.380000px;}
.ws2f{word-spacing:-4.080000px;}
.ws57{word-spacing:-3.900000px;}
.ws6d{word-spacing:-3.300000px;}
.ws76{word-spacing:-3.240000px;}
.ws51{word-spacing:-3.120000px;}
.ws45{word-spacing:-3.000000px;}
.ws39{word-spacing:-2.820000px;}
.ws66{word-spacing:-2.640000px;}
.ws70{word-spacing:-2.520000px;}
.ws68{word-spacing:-2.160000px;}
.ws5f{word-spacing:-2.040000px;}
.ws8d{word-spacing:-1.560000px;}
.ws56{word-spacing:-1.320000px;}
.ws64{word-spacing:-1.260000px;}
.ws42{word-spacing:-1.200000px;}
.ws48{word-spacing:-1.140000px;}
.ws75{word-spacing:-0.780000px;}
.ws43{word-spacing:-0.720000px;}
.ws19{word-spacing:-0.540000px;}
.ws6e{word-spacing:-0.480000px;}
.ws6c{word-spacing:-0.180000px;}
.ws7e{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
.ws50{word-spacing:0.120000px;}
.ws13{word-spacing:0.180000px;}
.ws49{word-spacing:0.240000px;}
.wse{word-spacing:0.300000px;}
.wsa{word-spacing:0.360000px;}
.ws54{word-spacing:0.540000px;}
.ws6{word-spacing:0.600000px;}
.ws6f{word-spacing:0.864000px;}
.ws80{word-spacing:1.740000px;}
.ws7d{word-spacing:2.016000px;}
.ws47{word-spacing:2.100000px;}
.ws59{word-spacing:2.160000px;}
.ws74{word-spacing:2.220000px;}
.ws31{word-spacing:3.060000px;}
.ws7a{word-spacing:3.180000px;}
.ws61{word-spacing:3.300000px;}
.ws6a{word-spacing:3.780000px;}
.ws5a{word-spacing:3.840000px;}
.ws55{word-spacing:4.140000px;}
.ws71{word-spacing:4.536000px;}
.ws63{word-spacing:4.680000px;}
.ws77{word-spacing:4.740000px;}
.ws69{word-spacing:4.920000px;}
.ws5c{word-spacing:4.968000px;}
.ws73{word-spacing:5.220000px;}
.ws4e{word-spacing:5.460000px;}
.ws4c{word-spacing:5.580000px;}
.ws2d{word-spacing:5.760000px;}
.ws6b{word-spacing:6.360000px;}
.ws7c{word-spacing:6.408000px;}
.ws5d{word-spacing:7.056000px;}
.ws81{word-spacing:7.320000px;}
.ws8c{word-spacing:7.380000px;}
.ws79{word-spacing:7.560000px;}
.ws7b{word-spacing:7.632000px;}
.ws2e{word-spacing:7.800000px;}
.ws38{word-spacing:7.860000px;}
.ws25{word-spacing:7.980000px;}
.ws72{word-spacing:8.580000px;}
.ws58{word-spacing:8.640000px;}
.ws82{word-spacing:9.420000px;}
.ws60{word-spacing:9.720000px;}
.ws1a{word-spacing:9.780000px;}
.ws24{word-spacing:10.080000px;}
.ws7f{word-spacing:10.260000px;}
.ws41{word-spacing:10.320000px;}
.ws46{word-spacing:10.680000px;}
.ws17{word-spacing:10.860000px;}
.ws65{word-spacing:11.100000px;}
.ws67{word-spacing:11.160000px;}
.ws3f{word-spacing:11.220000px;}
.ws5b{word-spacing:11.580000px;}
.ws2b{word-spacing:12.180000px;}
.ws4d{word-spacing:12.300000px;}
.ws34{word-spacing:12.660000px;}
.ws8b{word-spacing:13.080000px;}
.ws1c{word-spacing:13.380000px;}
.ws86{word-spacing:14.040000px;}
.ws8e{word-spacing:15.180000px;}
.ws40{word-spacing:15.300000px;}
.ws2c{word-spacing:15.600000px;}
.ws15{word-spacing:15.720000px;}
.ws4f{word-spacing:15.960000px;}
.ws2a{word-spacing:16.080000px;}
.ws3d{word-spacing:16.440000px;}
.ws16{word-spacing:16.500000px;}
.ws35{word-spacing:16.560000px;}
.ws84{word-spacing:17.220000px;}
.ws29{word-spacing:17.340000px;}
.ws44{word-spacing:17.580000px;}
.ws8a{word-spacing:17.640000px;}
.ws3a{word-spacing:17.700000px;}
.ws36{word-spacing:18.300000px;}
.ws88{word-spacing:19.140000px;}
.ws32{word-spacing:19.920000px;}
.ws26{word-spacing:20.760000px;}
.ws1f{word-spacing:20.880000px;}
.ws89{word-spacing:21.480000px;}
.ws3e{word-spacing:22.200000px;}
.ws3b{word-spacing:23.820000px;}
.ws20{word-spacing:24.480000px;}
.ws1b{word-spacing:26.460000px;}
.ws23{word-spacing:27.420000px;}
.ws30{word-spacing:27.720000px;}
.ws21{word-spacing:28.800000px;}
.ws28{word-spacing:28.860000px;}
.ws1e{word-spacing:29.340000px;}
.ws27{word-spacing:29.700000px;}
.ws1d{word-spacing:30.900000px;}
.ws18{word-spacing:32.880000px;}
.ws33{word-spacing:35.040000px;}
.ws4b{word-spacing:35.520000px;}
.ws3c{word-spacing:37.620000px;}
.ws52{word-spacing:37.980000px;}
.ws14{word-spacing:38.520000px;}
.ws37{word-spacing:38.820000px;}
.ws85{word-spacing:41.100000px;}
.ws4a{word-spacing:43.140000px;}
.ws22{word-spacing:48.120000px;}
.ws87{word-spacing:64.620000px;}
._d{margin-left:-66.768000px;}
._0{margin-left:-40.800000px;}
._b{margin-left:-38.879400px;}
._2{margin-left:-10.200000px;}
._1{margin-left:-8.160000px;}
._3{margin-left:-6.120000px;}
._e{margin-left:-4.884000px;}
._5{margin-left:-3.816000px;}
._7{margin-left:-2.316000px;}
._4{margin-left:-1.200000px;}
._6{width:1.731000px;}
._c{width:3.240000px;}
._a{width:6.800400px;}
._8{width:9.157800px;}
._9{width:11.100000px;}
.fc8{color:rgb(1,1,15);}
.fc7{color:rgb(64,140,196);}
.fc6{color:rgb(182,73,145);}
.fc4{color:rgb(87,196,175);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc1{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc0{color:rgb(49,51,52);}
.fs3{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:114.000000px;}
.fs2{font-size:120.000000px;}
.fs4{font-size:180.000000px;}
.fs1{font-size:408.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:30.504900px;}
.y14{bottom:55.275600px;}
.ye{bottom:56.202900px;}
.y13{bottom:74.775600px;}
.ycb{bottom:86.456700px;}
.ya0{bottom:93.580650px;}
.y8a{bottom:93.738600px;}
.y12{bottom:94.275600px;}
.yca{bottom:105.956700px;}
.yd{bottom:107.214600px;}
.y9f{bottom:113.080650px;}
.y11{bottom:113.775600px;}
.yc9{bottom:125.456700px;}
.y9e{bottom:132.580650px;}
.y10{bottom:133.275600px;}
.yc8{bottom:144.956700px;}
.y9d{bottom:156.332700px;}
.yc{bottom:158.226450px;}
.yc7{bottom:164.456700px;}
.y4c{bottom:165.791400px;}
.yf{bottom:169.783500px;}
.y9c{bottom:175.832700px;}
.y4b{bottom:185.291400px;}
.y9b{bottom:199.584750px;}
.y4a{bottom:204.791400px;}
.y6a{bottom:208.216650px;}
.yb{bottom:209.238300px;}
.yc6{bottom:218.964600px;}
.y9a{bottom:219.084750px;}
.y49{bottom:224.291400px;}
.y69{bottom:226.216650px;}
.y99{bottom:238.584750px;}
.y48{bottom:243.791400px;}
.y68{bottom:244.216650px;}
.ya{bottom:260.250000px;}
.y98{bottom:262.336650px;}
.y47{bottom:263.291400px;}
.y67{bottom:270.720450px;}
.y97{bottom:281.836650px;}
.y46{bottom:287.043300px;}
.y66{bottom:288.720450px;}
.y96{bottom:305.588700px;}
.y45{bottom:306.543300px;}
.y9{bottom:311.261850px;}
.y65{bottom:315.224550px;}
.y18{bottom:322.396350px;}
.y44{bottom:326.043300px;}
.y95{bottom:329.340600px;}
.y64{bottom:333.224550px;}
.y17{bottom:341.896350px;}
.y43{bottom:345.543300px;}
.y94{bottom:353.092500px;}
.y63{bottom:359.728500px;}
.y16{bottom:361.396350px;}
.y8{bottom:362.273700px;}
.y42{bottom:365.043300px;}
.y93{bottom:372.592500px;}
.y62{bottom:377.728500px;}
.y41{bottom:384.543300px;}
.y15{bottom:397.904100px;}
.y40{bottom:404.043300px;}
.y61{bottom:404.232300px;}
.y7{bottom:413.285550px;}
.y92{bottom:420.096450px;}
.y60{bottom:422.232300px;}
.yc0{bottom:423.230550px;}
.y3f{bottom:423.543300px;}
.ybf{bottom:442.730550px;}
.y3e{bottom:443.043450px;}
.y5f{bottom:448.736250px;}
.y6{bottom:464.297400px;}
.ybe{bottom:466.482450px;}
.y5e{bottom:466.736250px;}
.y3d{bottom:466.795350px;}
.ybd{bottom:485.982450px;}
.y3c{bottom:486.295350px;}
.y5d{bottom:501.744150px;}
.ybc{bottom:505.482450px;}
.y3b{bottom:505.795350px;}
.y5{bottom:515.309100px;}
.y3a{bottom:525.295350px;}
.y89{bottom:537.726600px;}
.y39{bottom:544.795350px;}
.ybb{bottom:552.986400px;}
.y38{bottom:564.295350px;}
.y4{bottom:566.320950px;}
.y88{bottom:574.234500px;}
.y5c{bottom:576.508050px;}
.yba{bottom:576.738450px;}
.y37{bottom:583.795350px;}
.y87{bottom:593.734500px;}
.yb9{bottom:596.238450px;}
.y5b{bottom:603.011850px;}
.y36{bottom:603.295350px;}
.yc5{bottom:607.539900px;}
.ye3{bottom:608.681100px;}
.y86{bottom:613.234500px;}
.yb8{bottom:615.738450px;}
.y5a{bottom:621.011850px;}
.y35{bottom:622.795350px;}
.yc4{bottom:627.039900px;}
.ye2{bottom:628.181100px;}
.yb7{bottom:635.238450px;}
.y85{bottom:636.986400px;}
.y59{bottom:639.011850px;}
.yc3{bottom:646.539900px;}
.y34{bottom:646.547400px;}
.ye1{bottom:647.681100px;}
.yb6{bottom:654.738450px;}
.y84{bottom:656.486400px;}
.y58{bottom:665.515800px;}
.y33{bottom:666.047400px;}
.ye0{bottom:667.181100px;}
.y83{bottom:680.238450px;}
.y57{bottom:683.515800px;}
.y32{bottom:685.547400px;}
.ydf{bottom:690.933150px;}
.yc2{bottom:694.043700px;}
.y82{bottom:699.738450px;}
.y56{bottom:701.515800px;}
.yb5{bottom:702.242400px;}
.y31{bottom:705.047400px;}
.yde{bottom:710.433150px;}
.yb4{bottom:721.742400px;}
.y81{bottom:723.490350px;}
.y30{bottom:724.547400px;}
.y55{bottom:728.019750px;}
.ydd{bottom:729.933150px;}
.yb3{bottom:741.242400px;}
.y80{bottom:742.990350px;}
.y2f{bottom:744.047400px;}
.y54{bottom:746.019750px;}
.ydc{bottom:749.433150px;}
.y2e{bottom:763.547400px;}
.y53{bottom:764.019750px;}
.yb2{bottom:764.994300px;}
.y7f{bottom:766.742400px;}
.y2d{bottom:783.047400px;}
.yb1{bottom:784.494300px;}
.ydb{bottom:785.941050px;}
.y7e{bottom:786.242400px;}
.y52{bottom:790.523700px;}
.y2c{bottom:802.547400px;}
.yb0{bottom:803.994300px;}
.y51{bottom:808.523700px;}
.y2b{bottom:822.047400px;}
.yaf{bottom:827.746350px;}
.y7d{bottom:833.746350px;}
.y50{bottom:835.027650px;}
.y2a{bottom:845.799300px;}
.yae{bottom:847.246350px;}
.y4f{bottom:853.027650px;}
.y7c{bottom:857.498250px;}
.y91{bottom:858.242400px;}
.y75{bottom:859.258050px;}
.yda{bottom:860.704800px;}
.y29{bottom:865.299300px;}
.yad{bottom:866.746350px;}
.y7b{bottom:876.998250px;}
.y74{bottom:878.758050px;}
.yd9{bottom:880.204800px;}
.y28{bottom:884.799300px;}
.y4e{bottom:888.035550px;}
.yac{bottom:890.498250px;}
.y90{bottom:894.750150px;}
.y7a{bottom:896.498250px;}
.yd8{bottom:899.704800px;}
.y73{bottom:902.509950px;}
.y27{bottom:904.299300px;}
.y8f{bottom:914.250150px;}
.y79{bottom:915.998250px;}
.yd7{bottom:919.204800px;}
.y72{bottom:922.009950px;}
.yaa{bottom:923.533650px;}
.y26{bottom:923.799300px;}
.yab{bottom:933.750150px;}
.y8e{bottom:938.002200px;}
.yd6{bottom:938.704800px;}
.y25{bottom:943.299300px;}
.y71{bottom:945.762000px;}
.ya9{bottom:947.285550px;}
.y8d{bottom:957.502200px;}
.yd5{bottom:958.204800px;}
.y3{bottom:962.761800px;}
.y24{bottom:962.799300px;}
.y78{bottom:963.502200px;}
.y70{bottom:965.262000px;}
.ya8{bottom:966.785550px;}
.yd4{bottom:977.704800px;}
.y23{bottom:982.299300px;}
.y77{bottom:983.002200px;}
.ya7{bottom:986.285550px;}
.y4d{bottom:986.551350px;}
.y6f{bottom:989.014050px;}
.yd3{bottom:997.204800px;}
.y76{bottom:1002.502200px;}
.y22{bottom:1006.051350px;}
.y8c{bottom:1006.765950px;}
.y6e{bottom:1008.514050px;}
.yd2{bottom:1016.704800px;}
.y19{bottom:1022.908200px;}
.y21{bottom:1025.551350px;}
.y6d{bottom:1032.265950px;}
.ya6{bottom:1033.789500px;}
.yd1{bottom:1036.204800px;}
.y20{bottom:1045.051350px;}
.y6c{bottom:1051.765950px;}
.yd0{bottom:1055.704800px;}
.ya5{bottom:1057.541400px;}
.y1f{bottom:1064.551350px;}
.y2{bottom:1066.013700px;}
.ycf{bottom:1075.204800px;}
.ya4{bottom:1077.041400px;}
.y1e{bottom:1084.051350px;}
.y8b{bottom:1090.045500px;}
.yce{bottom:1094.704800px;}
.ya3{bottom:1096.541400px;}
.y1d{bottom:1103.551350px;}
.ycd{bottom:1114.204800px;}
.ya2{bottom:1116.041400px;}
.y1c{bottom:1123.051350px;}
.y6b{bottom:1135.045500px;}
.y1b{bottom:1142.551350px;}
.ycc{bottom:1150.712700px;}
.yc1{bottom:1162.120350px;}
.ya1{bottom:1163.545350px;}
.y1a{bottom:1179.059100px;}
.h5{height:33.600000px;}
.h9{height:41.317383px;}
.ha{height:45.908203px;}
.h8{height:51.912000px;}
.h2{height:57.000000px;}
.h7{height:62.700000px;}
.hb{height:108.300000px;}
.h4{height:114.000000px;}
.h6{height:171.000000px;}
.h3{height:387.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:36.182100px;}
.x2{left:55.275450px;}
.x13{left:72.283500px;}
.x15{left:84.283500px;}
.x12{left:89.291250px;}
.x6{left:121.416600px;}
.x7{left:123.000300px;}
.x4{left:162.204000px;}
.x5{left:182.827950px;}
.x16{left:268.019550px;}
.xe{left:429.448800px;}
.xf{left:434.476650px;}
.x10{left:442.204650px;}
.x8{left:460.549050px;}
.xd{left:641.798250px;}
.x3{left:666.308250px;}
.x9{left:699.519000px;}
.xb{left:742.223550px;}
.xa{left:753.241050px;}
.xc{left:768.863850px;}
.x11{left:848.020050px;}
.x1{left:849.197700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-9.493333pt;}
.ls1{letter-spacing:-9.066667pt;}
.lsa{letter-spacing:-1.920000pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:17.805333pt;}
.ls7{letter-spacing:27.476800pt;}
.ws1{word-spacing:-77.973333pt;}
.ws12{word-spacing:-25.600000pt;}
.ws11{word-spacing:-24.320000pt;}
.ws2{word-spacing:-12.800000pt;}
.ws9{word-spacing:-12.746667pt;}
.ws83{word-spacing:-12.640000pt;}
.ws3{word-spacing:-12.533333pt;}
.wsc{word-spacing:-10.293333pt;}
.ws10{word-spacing:-10.026667pt;}
.ws7{word-spacing:-9.600000pt;}
.wsf{word-spacing:-9.546667pt;}
.wsd{word-spacing:-8.373333pt;}
.wsb{word-spacing:-5.920000pt;}
.ws5e{word-spacing:-5.120000pt;}
.ws78{word-spacing:-4.960000pt;}
.ws62{word-spacing:-4.853333pt;}
.ws5{word-spacing:-4.320000pt;}
.ws4{word-spacing:-4.106667pt;}
.ws8{word-spacing:-4.053333pt;}
.ws53{word-spacing:-3.893333pt;}
.ws2f{word-spacing:-3.626667pt;}
.ws57{word-spacing:-3.466667pt;}
.ws6d{word-spacing:-2.933333pt;}
.ws76{word-spacing:-2.880000pt;}
.ws51{word-spacing:-2.773333pt;}
.ws45{word-spacing:-2.666667pt;}
.ws39{word-spacing:-2.506667pt;}
.ws66{word-spacing:-2.346667pt;}
.ws70{word-spacing:-2.240000pt;}
.ws68{word-spacing:-1.920000pt;}
.ws5f{word-spacing:-1.813333pt;}
.ws8d{word-spacing:-1.386667pt;}
.ws56{word-spacing:-1.173333pt;}
.ws64{word-spacing:-1.120000pt;}
.ws42{word-spacing:-1.066667pt;}
.ws48{word-spacing:-1.013333pt;}
.ws75{word-spacing:-0.693333pt;}
.ws43{word-spacing:-0.640000pt;}
.ws19{word-spacing:-0.480000pt;}
.ws6e{word-spacing:-0.426667pt;}
.ws6c{word-spacing:-0.160000pt;}
.ws7e{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
.ws50{word-spacing:0.106667pt;}
.ws13{word-spacing:0.160000pt;}
.ws49{word-spacing:0.213333pt;}
.wse{word-spacing:0.266667pt;}
.wsa{word-spacing:0.320000pt;}
.ws54{word-spacing:0.480000pt;}
.ws6{word-spacing:0.533333pt;}
.ws6f{word-spacing:0.768000pt;}
.ws80{word-spacing:1.546667pt;}
.ws7d{word-spacing:1.792000pt;}
.ws47{word-spacing:1.866667pt;}
.ws59{word-spacing:1.920000pt;}
.ws74{word-spacing:1.973333pt;}
.ws31{word-spacing:2.720000pt;}
.ws7a{word-spacing:2.826667pt;}
.ws61{word-spacing:2.933333pt;}
.ws6a{word-spacing:3.360000pt;}
.ws5a{word-spacing:3.413333pt;}
.ws55{word-spacing:3.680000pt;}
.ws71{word-spacing:4.032000pt;}
.ws63{word-spacing:4.160000pt;}
.ws77{word-spacing:4.213333pt;}
.ws69{word-spacing:4.373333pt;}
.ws5c{word-spacing:4.416000pt;}
.ws73{word-spacing:4.640000pt;}
.ws4e{word-spacing:4.853333pt;}
.ws4c{word-spacing:4.960000pt;}
.ws2d{word-spacing:5.120000pt;}
.ws6b{word-spacing:5.653333pt;}
.ws7c{word-spacing:5.696000pt;}
.ws5d{word-spacing:6.272000pt;}
.ws81{word-spacing:6.506667pt;}
.ws8c{word-spacing:6.560000pt;}
.ws79{word-spacing:6.720000pt;}
.ws7b{word-spacing:6.784000pt;}
.ws2e{word-spacing:6.933333pt;}
.ws38{word-spacing:6.986667pt;}
.ws25{word-spacing:7.093333pt;}
.ws72{word-spacing:7.626667pt;}
.ws58{word-spacing:7.680000pt;}
.ws82{word-spacing:8.373333pt;}
.ws60{word-spacing:8.640000pt;}
.ws1a{word-spacing:8.693333pt;}
.ws24{word-spacing:8.960000pt;}
.ws7f{word-spacing:9.120000pt;}
.ws41{word-spacing:9.173333pt;}
.ws46{word-spacing:9.493333pt;}
.ws17{word-spacing:9.653333pt;}
.ws65{word-spacing:9.866667pt;}
.ws67{word-spacing:9.920000pt;}
.ws3f{word-spacing:9.973333pt;}
.ws5b{word-spacing:10.293333pt;}
.ws2b{word-spacing:10.826667pt;}
.ws4d{word-spacing:10.933333pt;}
.ws34{word-spacing:11.253333pt;}
.ws8b{word-spacing:11.626667pt;}
.ws1c{word-spacing:11.893333pt;}
.ws86{word-spacing:12.480000pt;}
.ws8e{word-spacing:13.493333pt;}
.ws40{word-spacing:13.600000pt;}
.ws2c{word-spacing:13.866667pt;}
.ws15{word-spacing:13.973333pt;}
.ws4f{word-spacing:14.186667pt;}
.ws2a{word-spacing:14.293333pt;}
.ws3d{word-spacing:14.613333pt;}
.ws16{word-spacing:14.666667pt;}
.ws35{word-spacing:14.720000pt;}
.ws84{word-spacing:15.306667pt;}
.ws29{word-spacing:15.413333pt;}
.ws44{word-spacing:15.626667pt;}
.ws8a{word-spacing:15.680000pt;}
.ws3a{word-spacing:15.733333pt;}
.ws36{word-spacing:16.266667pt;}
.ws88{word-spacing:17.013333pt;}
.ws32{word-spacing:17.706667pt;}
.ws26{word-spacing:18.453333pt;}
.ws1f{word-spacing:18.560000pt;}
.ws89{word-spacing:19.093333pt;}
.ws3e{word-spacing:19.733333pt;}
.ws3b{word-spacing:21.173333pt;}
.ws20{word-spacing:21.760000pt;}
.ws1b{word-spacing:23.520000pt;}
.ws23{word-spacing:24.373333pt;}
.ws30{word-spacing:24.640000pt;}
.ws21{word-spacing:25.600000pt;}
.ws28{word-spacing:25.653333pt;}
.ws1e{word-spacing:26.080000pt;}
.ws27{word-spacing:26.400000pt;}
.ws1d{word-spacing:27.466667pt;}
.ws18{word-spacing:29.226667pt;}
.ws33{word-spacing:31.146667pt;}
.ws4b{word-spacing:31.573333pt;}
.ws3c{word-spacing:33.440000pt;}
.ws52{word-spacing:33.760000pt;}
.ws14{word-spacing:34.240000pt;}
.ws37{word-spacing:34.506667pt;}
.ws85{word-spacing:36.533333pt;}
.ws4a{word-spacing:38.346667pt;}
.ws22{word-spacing:42.773333pt;}
.ws87{word-spacing:57.440000pt;}
._d{margin-left:-59.349333pt;}
._0{margin-left:-36.266667pt;}
._b{margin-left:-34.559467pt;}
._2{margin-left:-9.066667pt;}
._1{margin-left:-7.253333pt;}
._3{margin-left:-5.440000pt;}
._e{margin-left:-4.341333pt;}
._5{margin-left:-3.392000pt;}
._7{margin-left:-2.058667pt;}
._4{margin-left:-1.066667pt;}
._6{width:1.538667pt;}
._c{width:2.880000pt;}
._a{width:6.044800pt;}
._8{width:8.140267pt;}
._9{width:9.866667pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:101.333333pt;}
.fs2{font-size:106.666667pt;}
.fs4{font-size:160.000000pt;}
.fs1{font-size:362.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:27.115467pt;}
.y14{bottom:49.133867pt;}
.ye{bottom:49.958133pt;}
.y13{bottom:66.467200pt;}
.ycb{bottom:76.850400pt;}
.ya0{bottom:83.182800pt;}
.y8a{bottom:83.323200pt;}
.y12{bottom:83.800533pt;}
.yca{bottom:94.183733pt;}
.yd{bottom:95.301867pt;}
.y9f{bottom:100.516133pt;}
.y11{bottom:101.133867pt;}
.yc9{bottom:111.517067pt;}
.y9e{bottom:117.849467pt;}
.y10{bottom:118.467200pt;}
.yc8{bottom:128.850400pt;}
.y9d{bottom:138.962400pt;}
.yc{bottom:140.645733pt;}
.yc7{bottom:146.183733pt;}
.y4c{bottom:147.370133pt;}
.yf{bottom:150.918667pt;}
.y9c{bottom:156.295733pt;}
.y4b{bottom:164.703467pt;}
.y9b{bottom:177.408667pt;}
.y4a{bottom:182.036800pt;}
.y6a{bottom:185.081467pt;}
.yb{bottom:185.989600pt;}
.yc6{bottom:194.635200pt;}
.y9a{bottom:194.742000pt;}
.y49{bottom:199.370133pt;}
.y69{bottom:201.081467pt;}
.y99{bottom:212.075333pt;}
.y48{bottom:216.703467pt;}
.y68{bottom:217.081467pt;}
.ya{bottom:231.333333pt;}
.y98{bottom:233.188133pt;}
.y47{bottom:234.036800pt;}
.y67{bottom:240.640400pt;}
.y97{bottom:250.521467pt;}
.y46{bottom:255.149600pt;}
.y66{bottom:256.640400pt;}
.y96{bottom:271.634400pt;}
.y45{bottom:272.482933pt;}
.y9{bottom:276.677200pt;}
.y65{bottom:280.199600pt;}
.y18{bottom:286.574533pt;}
.y44{bottom:289.816267pt;}
.y95{bottom:292.747200pt;}
.y64{bottom:296.199600pt;}
.y17{bottom:303.907867pt;}
.y43{bottom:307.149600pt;}
.y94{bottom:313.860000pt;}
.y63{bottom:319.758667pt;}
.y16{bottom:321.241200pt;}
.y8{bottom:322.021067pt;}
.y42{bottom:324.482933pt;}
.y93{bottom:331.193333pt;}
.y62{bottom:335.758667pt;}
.y41{bottom:341.816267pt;}
.y15{bottom:353.692533pt;}
.y40{bottom:359.149600pt;}
.y61{bottom:359.317600pt;}
.y7{bottom:367.364933pt;}
.y92{bottom:373.419067pt;}
.y60{bottom:375.317600pt;}
.yc0{bottom:376.204933pt;}
.y3f{bottom:376.482933pt;}
.ybf{bottom:393.538267pt;}
.y3e{bottom:393.816400pt;}
.y5f{bottom:398.876667pt;}
.y6{bottom:412.708800pt;}
.ybe{bottom:414.651067pt;}
.y5e{bottom:414.876667pt;}
.y3d{bottom:414.929200pt;}
.ybd{bottom:431.984400pt;}
.y3c{bottom:432.262533pt;}
.y5d{bottom:445.994800pt;}
.ybc{bottom:449.317733pt;}
.y3b{bottom:449.595867pt;}
.y5{bottom:458.052533pt;}
.y3a{bottom:466.929200pt;}
.y89{bottom:477.979200pt;}
.y39{bottom:484.262533pt;}
.ybb{bottom:491.543467pt;}
.y38{bottom:501.595867pt;}
.y4{bottom:503.396400pt;}
.y88{bottom:510.430667pt;}
.y5c{bottom:512.451600pt;}
.yba{bottom:512.656400pt;}
.y37{bottom:518.929200pt;}
.y87{bottom:527.764000pt;}
.yb9{bottom:529.989733pt;}
.y5b{bottom:536.010533pt;}
.y36{bottom:536.262533pt;}
.yc5{bottom:540.035467pt;}
.ye3{bottom:541.049867pt;}
.y86{bottom:545.097333pt;}
.yb8{bottom:547.323067pt;}
.y5a{bottom:552.010533pt;}
.y35{bottom:553.595867pt;}
.yc4{bottom:557.368800pt;}
.ye2{bottom:558.383200pt;}
.yb7{bottom:564.656400pt;}
.y85{bottom:566.210133pt;}
.y59{bottom:568.010533pt;}
.yc3{bottom:574.702133pt;}
.y34{bottom:574.708800pt;}
.ye1{bottom:575.716533pt;}
.yb6{bottom:581.989733pt;}
.y84{bottom:583.543467pt;}
.y58{bottom:591.569600pt;}
.y33{bottom:592.042133pt;}
.ye0{bottom:593.049867pt;}
.y83{bottom:604.656400pt;}
.y57{bottom:607.569600pt;}
.y32{bottom:609.375467pt;}
.ydf{bottom:614.162800pt;}
.yc2{bottom:616.927733pt;}
.y82{bottom:621.989733pt;}
.y56{bottom:623.569600pt;}
.yb5{bottom:624.215467pt;}
.y31{bottom:626.708800pt;}
.yde{bottom:631.496133pt;}
.yb4{bottom:641.548800pt;}
.y81{bottom:643.102533pt;}
.y30{bottom:644.042133pt;}
.y55{bottom:647.128667pt;}
.ydd{bottom:648.829467pt;}
.yb3{bottom:658.882133pt;}
.y80{bottom:660.435867pt;}
.y2f{bottom:661.375467pt;}
.y54{bottom:663.128667pt;}
.ydc{bottom:666.162800pt;}
.y2e{bottom:678.708800pt;}
.y53{bottom:679.128667pt;}
.yb2{bottom:679.994933pt;}
.y7f{bottom:681.548800pt;}
.y2d{bottom:696.042133pt;}
.yb1{bottom:697.328267pt;}
.ydb{bottom:698.614267pt;}
.y7e{bottom:698.882133pt;}
.y52{bottom:702.687733pt;}
.y2c{bottom:713.375467pt;}
.yb0{bottom:714.661600pt;}
.y51{bottom:718.687733pt;}
.y2b{bottom:730.708800pt;}
.yaf{bottom:735.774533pt;}
.y7d{bottom:741.107867pt;}
.y50{bottom:742.246800pt;}
.y2a{bottom:751.821600pt;}
.yae{bottom:753.107867pt;}
.y4f{bottom:758.246800pt;}
.y7c{bottom:762.220667pt;}
.y91{bottom:762.882133pt;}
.y75{bottom:763.784933pt;}
.yda{bottom:765.070933pt;}
.y29{bottom:769.154933pt;}
.yad{bottom:770.441200pt;}
.y7b{bottom:779.554000pt;}
.y74{bottom:781.118267pt;}
.yd9{bottom:782.404267pt;}
.y28{bottom:786.488267pt;}
.y4e{bottom:789.364933pt;}
.yac{bottom:791.554000pt;}
.y90{bottom:795.333467pt;}
.y7a{bottom:796.887333pt;}
.yd8{bottom:799.737600pt;}
.y73{bottom:802.231067pt;}
.y27{bottom:803.821600pt;}
.y8f{bottom:812.666800pt;}
.y79{bottom:814.220667pt;}
.yd7{bottom:817.070933pt;}
.y72{bottom:819.564400pt;}
.yaa{bottom:820.918800pt;}
.y26{bottom:821.154933pt;}
.yab{bottom:830.000133pt;}
.y8e{bottom:833.779733pt;}
.yd6{bottom:834.404267pt;}
.y25{bottom:838.488267pt;}
.y71{bottom:840.677333pt;}
.ya9{bottom:842.031600pt;}
.y8d{bottom:851.113067pt;}
.yd5{bottom:851.737600pt;}
.y3{bottom:855.788267pt;}
.y24{bottom:855.821600pt;}
.y78{bottom:856.446400pt;}
.y70{bottom:858.010667pt;}
.ya8{bottom:859.364933pt;}
.yd4{bottom:869.070933pt;}
.y23{bottom:873.154933pt;}
.y77{bottom:873.779733pt;}
.ya7{bottom:876.698267pt;}
.y4d{bottom:876.934533pt;}
.y6f{bottom:879.123600pt;}
.yd3{bottom:886.404267pt;}
.y76{bottom:891.113067pt;}
.y22{bottom:894.267867pt;}
.y8c{bottom:894.903067pt;}
.y6e{bottom:896.456933pt;}
.yd2{bottom:903.737600pt;}
.y19{bottom:909.251733pt;}
.y21{bottom:911.601200pt;}
.y6d{bottom:917.569733pt;}
.ya6{bottom:918.924000pt;}
.yd1{bottom:921.070933pt;}
.y20{bottom:928.934533pt;}
.y6c{bottom:934.903067pt;}
.yd0{bottom:938.404267pt;}
.ya5{bottom:940.036800pt;}
.y1f{bottom:946.267867pt;}
.y2{bottom:947.567733pt;}
.ycf{bottom:955.737600pt;}
.ya4{bottom:957.370133pt;}
.y1e{bottom:963.601200pt;}
.y8b{bottom:968.929333pt;}
.yce{bottom:973.070933pt;}
.ya3{bottom:974.703467pt;}
.y1d{bottom:980.934533pt;}
.ycd{bottom:990.404267pt;}
.ya2{bottom:992.036800pt;}
.y1c{bottom:998.267867pt;}
.y6b{bottom:1008.929333pt;}
.y1b{bottom:1015.601200pt;}
.ycc{bottom:1022.855733pt;}
.yc1{bottom:1032.995867pt;}
.ya1{bottom:1034.262533pt;}
.y1a{bottom:1048.052533pt;}
.h5{height:29.866667pt;}
.h9{height:36.726562pt;}
.ha{height:40.807292pt;}
.h8{height:46.144000pt;}
.h2{height:50.666667pt;}
.h7{height:55.733333pt;}
.hb{height:96.266667pt;}
.h4{height:101.333333pt;}
.h6{height:152.000000pt;}
.h3{height:344.533333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:32.161867pt;}
.x2{left:49.133733pt;}
.x13{left:64.252000pt;}
.x15{left:74.918667pt;}
.x12{left:79.370000pt;}
.x6{left:107.925867pt;}
.x7{left:109.333600pt;}
.x4{left:144.181333pt;}
.x5{left:162.513733pt;}
.x16{left:238.239600pt;}
.xe{left:381.732267pt;}
.xf{left:386.201467pt;}
.x10{left:393.070800pt;}
.x8{left:409.376933pt;}
.xd{left:570.487333pt;}
.x3{left:592.274000pt;}
.x9{left:621.794667pt;}
.xb{left:659.754267pt;}
.xa{left:669.547600pt;}
.xc{left:683.434533pt;}
.x11{left:753.795600pt;}
.x1{left:754.842400pt;}
}




    .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; }
  