
    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_9d7a6fb73cb25464c86d9a4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_6e1a619a1b978c95850abf61.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932000;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_db023020c1c3c6f5de798178.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.998000;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_d68cbab1bf316f97bb6ab44b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.730000;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_e2550b0d3eac33bce2a19047.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{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);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.974000px;}
.v3{vertical-align:27.786000px;}
.v4{vertical-align:47.982000px;}
.ls3{letter-spacing:-1.560000px;}
.ls4{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.330000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000108px;}
.ls1{letter-spacing:0.000192px;}
.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;}
}
.ws3{word-spacing:-48.090000px;}
.ws1{word-spacing:-34.350000px;}
.ws1a{word-spacing:-20.982000px;}
.ws34{word-spacing:-19.236000px;}
.ws6b{word-spacing:-18.954000px;}
.ws49{word-spacing:-17.754000px;}
.ws2{word-spacing:-12.232506px;}
.ws4{word-spacing:-7.527696px;}
.ws2a{word-spacing:-5.226000px;}
.ws4d{word-spacing:-4.686000px;}
.ws5d{word-spacing:-4.290000px;}
.ws29{word-spacing:-4.212000px;}
.ws1f{word-spacing:-3.900000px;}
.ws63{word-spacing:-3.696000px;}
.ws2b{word-spacing:-3.432000px;}
.ws2e{word-spacing:-3.198000px;}
.ws41{word-spacing:-2.970000px;}
.ws40{word-spacing:-2.904000px;}
.ws15{word-spacing:-2.886000px;}
.ws12{word-spacing:-2.496000px;}
.ws10{word-spacing:-2.418000px;}
.ws1e{word-spacing:-2.106000px;}
.ws2c{word-spacing:-2.028000px;}
.ws3b{word-spacing:-1.980000px;}
.ws20{word-spacing:-1.794000px;}
.ws37{word-spacing:-1.452000px;}
.ws43{word-spacing:-1.386000px;}
.ws5c{word-spacing:-1.320000px;}
.ws4e{word-spacing:-1.254000px;}
.ws16{word-spacing:-1.092000px;}
.ws8{word-spacing:-0.390000px;}
.ws59{word-spacing:-0.198000px;}
.ws0{word-spacing:0.000000px;}
.ws51{word-spacing:0.198000px;}
.ws25{word-spacing:0.234000px;}
.ws39{word-spacing:0.360000px;}
.wsf{word-spacing:0.390000px;}
.wsa{word-spacing:0.780000px;}
.ws56{word-spacing:0.792000px;}
.ws2f{word-spacing:0.858000px;}
.ws53{word-spacing:1.386000px;}
.ws35{word-spacing:1.560000px;}
.ws36{word-spacing:1.848000px;}
.ws67{word-spacing:1.914000px;}
.ws44{word-spacing:2.046000px;}
.ws4c{word-spacing:2.112000px;}
.ws3e{word-spacing:2.376000px;}
.ws11{word-spacing:2.730000px;}
.ws3d{word-spacing:2.838000px;}
.ws17{word-spacing:2.964000px;}
.ws47{word-spacing:3.036000px;}
.ws1d{word-spacing:3.120000px;}
.ws68{word-spacing:3.498000px;}
.wsd{word-spacing:3.666000px;}
.ws23{word-spacing:3.978000px;}
.ws9{word-spacing:4.290000px;}
.ws62{word-spacing:4.488000px;}
.ws22{word-spacing:4.602000px;}
.ws52{word-spacing:4.686000px;}
.ws32{word-spacing:4.836000px;}
.ws33{word-spacing:4.914000px;}
.wsc{word-spacing:5.148000px;}
.ws5f{word-spacing:5.214000px;}
.ws27{word-spacing:5.382000px;}
.ws28{word-spacing:5.460000px;}
.ws14{word-spacing:5.772000px;}
.ws21{word-spacing:5.850000px;}
.ws46{word-spacing:5.940000px;}
.ws1c{word-spacing:6.006000px;}
.ws55{word-spacing:6.402000px;}
.ws24{word-spacing:6.474000px;}
.ws2d{word-spacing:6.786000px;}
.ws66{word-spacing:6.798000px;}
.ws5a{word-spacing:7.194000px;}
.ws45{word-spacing:7.392000px;}
.ws3f{word-spacing:7.788000px;}
.wse{word-spacing:7.800000px;}
.ws19{word-spacing:8.034000px;}
.ws6a{word-spacing:8.382000px;}
.ws69{word-spacing:8.448000px;}
.ws60{word-spacing:8.910000px;}
.wsb{word-spacing:9.282000px;}
.ws65{word-spacing:9.504000px;}
.ws4a{word-spacing:9.702000px;}
.ws4b{word-spacing:9.834000px;}
.ws6{word-spacing:10.062000px;}
.ws1b{word-spacing:10.452000px;}
.ws13{word-spacing:10.764000px;}
.ws61{word-spacing:11.352000px;}
.ws50{word-spacing:11.550000px;}
.ws38{word-spacing:12.408000px;}
.ws57{word-spacing:13.134000px;}
.ws18{word-spacing:13.260000px;}
.ws31{word-spacing:13.416000px;}
.ws42{word-spacing:14.190000px;}
.ws58{word-spacing:14.982000px;}
.ws5{word-spacing:15.756000px;}
.ws4f{word-spacing:16.368000px;}
.ws3c{word-spacing:16.500000px;}
.ws30{word-spacing:16.614000px;}
.ws26{word-spacing:16.848000px;}
.ws64{word-spacing:17.226000px;}
.ws5e{word-spacing:18.150000px;}
.ws7{word-spacing:20.202000px;}
.ws48{word-spacing:20.460000px;}
.ws54{word-spacing:21.186000px;}
.ws5b{word-spacing:23.826000px;}
.ws3a{word-spacing:25.806000px;}
._2{margin-left:-2235.867000px;}
._8{margin-left:-2022.260400px;}
._6{margin-left:-7.651800px;}
._7{margin-left:-5.803800px;}
._4{margin-left:-2.886000px;}
._0{margin-left:-1.536000px;}
._9{width:1.560000px;}
._1{width:4.761600px;}
._3{width:15.756000px;}
._e{width:34.584000px;}
._a{width:59.760000px;}
._c{width:81.167400px;}
._5{width:90.742200px;}
._f{width:363.018000px;}
._b{width:840.774000px;}
._10{width:909.432000px;}
._d{width:959.904000px;}
.fc4{color:rgb(100,99,99);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(46,45,41);}
.fc1{color:rgb(33,55,105);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:27.984000px;}
.fs7{font-size:45.474000px;}
.fsb{font-size:48.000000px;}
.fs4{font-size:66.000000px;}
.fsd{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fsc{font-size:84.000000px;}
.fse{font-size:102.000000px;}
.fs5{font-size:108.000000px;}
.fs9{font-size:114.000000px;}
.fs1{font-size:144.000000px;}
.fs2{font-size:150.000000px;}
.fs0{font-size:192.000000px;}
.fs8{font-size:210.000000px;}
.fs3{font-size:900.000000px;}
.y0{bottom:0.000000px;}
.yf0{bottom:3.900000px;}
.y27{bottom:23.274000px;}
.y41{bottom:24.223500px;}
.yef{bottom:27.900000px;}
.y26{bottom:37.674000px;}
.y40{bottom:38.623650px;}
.y25{bottom:52.074000px;}
.y3f{bottom:53.023650px;}
.yee{bottom:59.677200px;}
.y8{bottom:74.124150px;}
.y3e{bottom:107.466150px;}
.y24{bottom:133.793550px;}
.y3d{bottom:134.473650px;}
.y3c{bottom:161.481150px;}
.y3b{bottom:188.488650px;}
.yad{bottom:190.826550px;}
.yac{bottom:214.834050px;}
.y3a{bottom:215.496150px;}
.y39{bottom:242.503650px;}
.yaa{bottom:252.718050px;}
.y23{bottom:269.212500px;}
.ya9{bottom:276.725550px;}
.yab{bottom:288.721050px;}
.yd2{bottom:290.602050px;}
.y9e{bottom:295.717050px;}
.y22{bottom:296.220000px;}
.y38{bottom:296.499150px;}
.ya8{bottom:300.733050px;}
.yd1{bottom:314.609550px;}
.y6f{bottom:314.956050px;}
.y9d{bottom:319.724550px;}
.y21{bottom:323.227500px;}
.y37{bottom:323.506650px;}
.ya7{bottom:324.740550px;}
.yd3{bottom:338.600550px;}
.yd0{bottom:338.617050px;}
.y6e{bottom:338.963550px;}
.y9c{bottom:343.732050px;}
.y20{bottom:350.235000px;}
.y36{bottom:350.514150px;}
.ya5{bottom:362.624550px;}
.y6d{bottom:362.971050px;}
.y9b{bottom:367.739550px;}
.y77{bottom:373.019550px;}
.y1f{bottom:377.242500px;}
.y35{bottom:377.466150px;}
.ya4{bottom:386.632050px;}
.y6c{bottom:386.978550px;}
.y9a{bottom:391.747050px;}
.y76{bottom:397.027050px;}
.ya6{bottom:398.627550px;}
.y1e{bottom:404.250000px;}
.y34{bottom:404.473650px;}
.ya3{bottom:410.639550px;}
.y6b{bottom:410.986050px;}
.y99{bottom:415.754550px;}
.y75{bottom:421.034550px;}
.y33{bottom:431.481150px;}
.ya2{bottom:434.647050px;}
.yea{bottom:434.713050px;}
.y6a{bottom:434.993550px;}
.y98{bottom:439.762050px;}
.y74{bottom:445.042050px;}
.yc5{bottom:448.589550px;}
.y32{bottom:458.488650px;}
.ye9{bottom:458.720550px;}
.y69{bottom:459.001050px;}
.y1d{bottom:461.013750px;}
.y97{bottom:463.769550px;}
.y73{bottom:469.049550px;}
.yc4{bottom:472.597050px;}
.ye8{bottom:482.728050px;}
.y68{bottom:483.008550px;}
.y31{bottom:485.496150px;}
.yce{bottom:496.522050px;}
.ya1{bottom:496.538550px;}
.yc3{bottom:496.604550px;}
.ye7{bottom:506.735550px;}
.y72{bottom:506.933550px;}
.y67{bottom:507.016050px;}
.ycd{bottom:520.529550px;}
.ya0{bottom:520.546050px;}
.yc2{bottom:520.612050px;}
.ye6{bottom:530.743050px;}
.y71{bottom:530.941050px;}
.y66{bottom:531.023550px;}
.y30{bottom:539.491650px;}
.y1c{bottom:539.496150px;}
.ycc{bottom:544.537050px;}
.y9f{bottom:544.553550px;}
.yc1{bottom:544.619550px;}
.yf3{bottom:544.765800px;}
.y3{bottom:552.538950px;}
.yed{bottom:554.701050px;}
.ye5{bottom:554.750550px;}
.y70{bottom:554.948550px;}
.y65{bottom:555.031050px;}
.ycf{bottom:556.516050px;}
.y2f{bottom:566.499150px;}
.y1b{bottom:566.503650px;}
.ycb{bottom:568.544550px;}
.yc0{bottom:568.627050px;}
.yf1{bottom:574.272600px;}
.ye4{bottom:578.758050px;}
.yca{bottom:592.552050px;}
.ybf{bottom:592.634550px;}
.y63{bottom:592.915050px;}
.y2e{bottom:593.506650px;}
.y1a{bottom:593.511150px;}
.ye3{bottom:602.765550px;}
.y93{bottom:606.494550px;}
.yc9{bottom:616.559550px;}
.ybe{bottom:616.642050px;}
.y62{bottom:616.922550px;}
.yf2{bottom:619.604850px;}
.y2d{bottom:620.514150px;}
.ye2{bottom:626.773050px;}
.y92{bottom:630.502050px;}
.yc8{bottom:640.567050px;}
.ybd{bottom:640.649550px;}
.y64{bottom:640.913550px;}
.y61{bottom:640.930050px;}
.y2{bottom:646.757700px;}
.y19{bottom:647.506650px;}
.y2c{bottom:647.514150px;}
.yec{bottom:650.698050px;}
.ye1{bottom:650.780550px;}
.y91{bottom:654.509550px;}
.yc7{bottom:664.574550px;}
.ybc{bottom:664.657050px;}
.y60{bottom:664.937550px;}
.y2b{bottom:674.448150px;}
.y18{bottom:674.514150px;}
.yeb{bottom:674.705550px;}
.ye0{bottom:674.788050px;}
.y96{bottom:678.484050px;}
.y90{bottom:678.517050px;}
.yc6{bottom:688.582050px;}
.ybb{bottom:688.664550px;}
.y5f{bottom:688.945050px;}
.y17{bottom:701.436150px;}
.y2a{bottom:701.455650px;}
.y95{bottom:702.491550px;}
.y8f{bottom:702.524550px;}
.y1{bottom:704.357700px;}
.ydc{bottom:712.688550px;}
.y94{bottom:726.499050px;}
.y8e{bottom:726.532050px;}
.yb9{bottom:726.548550px;}
.y5d{bottom:726.829050px;}
.y16{bottom:728.443650px;}
.ydb{bottom:736.696050px;}
.yb8{bottom:750.556050px;}
.y5c{bottom:750.836550px;}
.y15{bottom:755.451150px;}
.yda{bottom:760.703550px;}
.ydf{bottom:772.682550px;}
.yb7{bottom:774.563550px;}
.y5e{bottom:774.827550px;}
.y5b{bottom:774.844050px;}
.y7{bottom:776.560050px;}
.y14{bottom:782.458650px;}
.yd9{bottom:784.711050px;}
.y83{bottom:788.473050px;}
.yb6{bottom:798.571050px;}
.y5a{bottom:798.851550px;}
.yde{bottom:808.685550px;}
.yd8{bottom:808.718550px;}
.y13{bottom:809.466150px;}
.yba{bottom:810.550050px;}
.y82{bottom:812.480550px;}
.y6{bottom:821.560050px;}
.yb5{bottom:822.578550px;}
.y59{bottom:822.859050px;}
.ydd{bottom:832.693050px;}
.yd7{bottom:832.726050px;}
.y12{bottom:836.473650px;}
.y81{bottom:836.488050px;}
.yb4{bottom:846.586050px;}
.y8c{bottom:860.413050px;}
.y80{bottom:860.495550px;}
.y4e{bottom:860.683050px;}
.y57{bottom:860.743050px;}
.y11{bottom:863.481150px;}
.y5{bottom:866.560050px;}
.yb3{bottom:870.593550px;}
.y8b{bottom:884.420550px;}
.y7f{bottom:884.503050px;}
.y4d{bottom:884.690550px;}
.y56{bottom:884.728050px;}
.y29{bottom:890.488650px;}
.yb2{bottom:894.601050px;}
.y8d{bottom:908.411550px;}
.y8a{bottom:908.428050px;}
.y7e{bottom:908.510550px;}
.y4c{bottom:908.698050px;}
.y55{bottom:908.735550px;}
.y4{bottom:911.560050px;}
.y10{bottom:917.476650px;}
.y28{bottom:917.496150px;}
.yd6{bottom:918.608550px;}
.y89{bottom:932.435550px;}
.y7d{bottom:932.518050px;}
.y4b{bottom:932.705550px;}
.y54{bottom:932.743050px;}
.yd5{bottom:942.616050px;}
.yf{bottom:944.484150px;}
.y88{bottom:956.443050px;}
.y7c{bottom:956.525550px;}
.y4a{bottom:956.713050px;}
.y53{bottom:956.735550px;}
.y58{bottom:956.740050px;}
.yd4{bottom:966.623550px;}
.ye{bottom:971.491650px;}
.y87{bottom:980.450550px;}
.yb1{bottom:980.500050px;}
.y7b{bottom:980.533050px;}
.y49{bottom:980.720550px;}
.y52{bottom:980.743050px;}
.yd{bottom:998.499150px;}
.y86{bottom:1004.458050px;}
.yb0{bottom:1004.507550px;}
.y7a{bottom:1004.540550px;}
.y51{bottom:1004.662050px;}
.y48{bottom:1004.728050px;}
.yc{bottom:1025.506650px;}
.y85{bottom:1028.465550px;}
.yaf{bottom:1028.515050px;}
.y79{bottom:1028.548050px;}
.y50{bottom:1028.669550px;}
.y47{bottom:1028.735550px;}
.y84{bottom:1052.473050px;}
.yb{bottom:1052.514150px;}
.yae{bottom:1052.522550px;}
.y78{bottom:1052.555550px;}
.y4f{bottom:1052.677050px;}
.y46{bottom:1052.743050px;}
.ya{bottom:1079.521650px;}
.y43{bottom:1102.535550px;}
.y45{bottom:1103.648550px;}
.y42{bottom:1128.029550px;}
.y44{bottom:1129.154550px;}
.y9{bottom:1136.285400px;}
.hc{height:22.051392px;}
.h18{height:34.945312px;}
.h17{height:40.380000px;}
.h6{height:47.388000px;}
.h12{height:49.500000px;}
.h13{height:52.008000px;}
.h19{height:56.316000px;}
.h14{height:56.736000px;}
.h11{height:58.500000px;}
.h9{height:61.464000px;}
.h8{height:61.807512px;}
.he{height:61.837512px;}
.hf{height:62.029512px;}
.hd{height:62.101512px;}
.ha{height:62.149512px;}
.h10{height:63.000000px;}
.h1a{height:76.500000px;}
.h15{height:79.794000px;}
.h7{height:81.000000px;}
.h16{height:99.990000px;}
.h4{height:112.500000px;}
.h3{height:113.472000px;}
.h2{height:144.000000px;}
.hb{height:157.500000px;}
.h5{height:675.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:530.892000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:80.361750px;}
.x6{left:103.154550px;}
.x1{left:106.299150px;}
.x38{left:119.036850px;}
.x31{left:150.680550px;}
.x30{left:152.379150px;}
.x35{left:154.376550px;}
.x20{left:155.860800px;}
.x26{left:157.494300px;}
.x23{left:159.573300px;}
.x34{left:161.702550px;}
.x21{left:162.708300px;}
.x2a{left:164.061150px;}
.x29{left:168.301650px;}
.x4{left:170.078700px;}
.xe{left:172.559550px;}
.x2f{left:174.505650px;}
.x2c{left:175.825650px;}
.x25{left:177.442800px;}
.x1c{left:178.515300px;}
.x18{left:181.377600px;}
.xd{left:183.598050px;}
.x19{left:186.608100px;}
.x33{left:187.772550px;}
.x1f{left:190.081800px;}
.x36{left:191.204550px;}
.xb{left:192.739050px;}
.x1d{left:194.140800px;}
.x8{left:195.283200px;}
.x28{left:196.681800px;}
.x37{left:198.002550px;}
.x17{left:199.412100px;}
.xf{left:201.748050px;}
.x24{left:203.727300px;}
.x1e{left:206.697300px;}
.x14{left:208.025100px;}
.x2d{left:209.980650px;}
.x2e{left:211.218150px;}
.x13{left:214.757100px;}
.xc{left:215.806050px;}
.x16{left:217.281600px;}
.x15{left:219.228600px;}
.x5{left:223.178700px;}
.x1a{left:224.673600px;}
.x2b{left:227.058150px;}
.x32{left:231.431550px;}
.x1b{left:233.476800px;}
.x10{left:236.777550px;}
.x27{left:239.383800px;}
.x22{left:243.789300px;}
.x7{left:249.631200px;}
.x9{left:331.657200px;}
.x11{left:358.653600px;}
.x2{left:515.125950px;}
.x39{left:560.363550px;}
.x3b{left:586.239750px;}
.x3a{left:687.924150px;}
.xa{left:706.576800px;}
.x12{left:736.025100px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.088000pt;}
.v3{vertical-align:24.698667pt;}
.v4{vertical-align:42.650667pt;}
.ls3{letter-spacing:-1.386667pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.293333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000096pt;}
.ls1{letter-spacing:0.000171pt;}
.ws3{word-spacing:-42.746667pt;}
.ws1{word-spacing:-30.533333pt;}
.ws1a{word-spacing:-18.650667pt;}
.ws34{word-spacing:-17.098667pt;}
.ws6b{word-spacing:-16.848000pt;}
.ws49{word-spacing:-15.781333pt;}
.ws2{word-spacing:-10.873339pt;}
.ws4{word-spacing:-6.691285pt;}
.ws2a{word-spacing:-4.645333pt;}
.ws4d{word-spacing:-4.165333pt;}
.ws5d{word-spacing:-3.813333pt;}
.ws29{word-spacing:-3.744000pt;}
.ws1f{word-spacing:-3.466667pt;}
.ws63{word-spacing:-3.285333pt;}
.ws2b{word-spacing:-3.050667pt;}
.ws2e{word-spacing:-2.842667pt;}
.ws41{word-spacing:-2.640000pt;}
.ws40{word-spacing:-2.581333pt;}
.ws15{word-spacing:-2.565333pt;}
.ws12{word-spacing:-2.218667pt;}
.ws10{word-spacing:-2.149333pt;}
.ws1e{word-spacing:-1.872000pt;}
.ws2c{word-spacing:-1.802667pt;}
.ws3b{word-spacing:-1.760000pt;}
.ws20{word-spacing:-1.594667pt;}
.ws37{word-spacing:-1.290667pt;}
.ws43{word-spacing:-1.232000pt;}
.ws5c{word-spacing:-1.173333pt;}
.ws4e{word-spacing:-1.114667pt;}
.ws16{word-spacing:-0.970667pt;}
.ws8{word-spacing:-0.346667pt;}
.ws59{word-spacing:-0.176000pt;}
.ws0{word-spacing:0.000000pt;}
.ws51{word-spacing:0.176000pt;}
.ws25{word-spacing:0.208000pt;}
.ws39{word-spacing:0.320000pt;}
.wsf{word-spacing:0.346667pt;}
.wsa{word-spacing:0.693333pt;}
.ws56{word-spacing:0.704000pt;}
.ws2f{word-spacing:0.762667pt;}
.ws53{word-spacing:1.232000pt;}
.ws35{word-spacing:1.386667pt;}
.ws36{word-spacing:1.642667pt;}
.ws67{word-spacing:1.701333pt;}
.ws44{word-spacing:1.818667pt;}
.ws4c{word-spacing:1.877333pt;}
.ws3e{word-spacing:2.112000pt;}
.ws11{word-spacing:2.426667pt;}
.ws3d{word-spacing:2.522667pt;}
.ws17{word-spacing:2.634667pt;}
.ws47{word-spacing:2.698667pt;}
.ws1d{word-spacing:2.773333pt;}
.ws68{word-spacing:3.109333pt;}
.wsd{word-spacing:3.258667pt;}
.ws23{word-spacing:3.536000pt;}
.ws9{word-spacing:3.813333pt;}
.ws62{word-spacing:3.989333pt;}
.ws22{word-spacing:4.090667pt;}
.ws52{word-spacing:4.165333pt;}
.ws32{word-spacing:4.298667pt;}
.ws33{word-spacing:4.368000pt;}
.wsc{word-spacing:4.576000pt;}
.ws5f{word-spacing:4.634667pt;}
.ws27{word-spacing:4.784000pt;}
.ws28{word-spacing:4.853333pt;}
.ws14{word-spacing:5.130667pt;}
.ws21{word-spacing:5.200000pt;}
.ws46{word-spacing:5.280000pt;}
.ws1c{word-spacing:5.338667pt;}
.ws55{word-spacing:5.690667pt;}
.ws24{word-spacing:5.754667pt;}
.ws2d{word-spacing:6.032000pt;}
.ws66{word-spacing:6.042667pt;}
.ws5a{word-spacing:6.394667pt;}
.ws45{word-spacing:6.570667pt;}
.ws3f{word-spacing:6.922667pt;}
.wse{word-spacing:6.933333pt;}
.ws19{word-spacing:7.141333pt;}
.ws6a{word-spacing:7.450667pt;}
.ws69{word-spacing:7.509333pt;}
.ws60{word-spacing:7.920000pt;}
.wsb{word-spacing:8.250667pt;}
.ws65{word-spacing:8.448000pt;}
.ws4a{word-spacing:8.624000pt;}
.ws4b{word-spacing:8.741333pt;}
.ws6{word-spacing:8.944000pt;}
.ws1b{word-spacing:9.290667pt;}
.ws13{word-spacing:9.568000pt;}
.ws61{word-spacing:10.090667pt;}
.ws50{word-spacing:10.266667pt;}
.ws38{word-spacing:11.029333pt;}
.ws57{word-spacing:11.674667pt;}
.ws18{word-spacing:11.786667pt;}
.ws31{word-spacing:11.925333pt;}
.ws42{word-spacing:12.613333pt;}
.ws58{word-spacing:13.317333pt;}
.ws5{word-spacing:14.005333pt;}
.ws4f{word-spacing:14.549333pt;}
.ws3c{word-spacing:14.666667pt;}
.ws30{word-spacing:14.768000pt;}
.ws26{word-spacing:14.976000pt;}
.ws64{word-spacing:15.312000pt;}
.ws5e{word-spacing:16.133333pt;}
.ws7{word-spacing:17.957333pt;}
.ws48{word-spacing:18.186667pt;}
.ws54{word-spacing:18.832000pt;}
.ws5b{word-spacing:21.178667pt;}
.ws3a{word-spacing:22.938667pt;}
._2{margin-left:-1987.437333pt;}
._8{margin-left:-1797.564800pt;}
._6{margin-left:-6.801600pt;}
._7{margin-left:-5.158933pt;}
._4{margin-left:-2.565333pt;}
._0{margin-left:-1.365333pt;}
._9{width:1.386667pt;}
._1{width:4.232533pt;}
._3{width:14.005333pt;}
._e{width:30.741333pt;}
._a{width:53.120000pt;}
._c{width:72.148800pt;}
._5{width:80.659733pt;}
._f{width:322.682667pt;}
._b{width:747.354667pt;}
._10{width:808.384000pt;}
._d{width:853.248000pt;}
.fsa{font-size:24.874667pt;}
.fs7{font-size:40.421333pt;}
.fsb{font-size:42.666667pt;}
.fs4{font-size:58.666667pt;}
.fsd{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fsc{font-size:74.666667pt;}
.fse{font-size:90.666667pt;}
.fs5{font-size:96.000000pt;}
.fs9{font-size:101.333333pt;}
.fs1{font-size:128.000000pt;}
.fs2{font-size:133.333333pt;}
.fs0{font-size:170.666667pt;}
.fs8{font-size:186.666667pt;}
.fs3{font-size:800.000000pt;}
.y0{bottom:0.000000pt;}
.yf0{bottom:3.466667pt;}
.y27{bottom:20.688000pt;}
.y41{bottom:21.532000pt;}
.yef{bottom:24.800000pt;}
.y26{bottom:33.488000pt;}
.y40{bottom:34.332133pt;}
.y25{bottom:46.288000pt;}
.y3f{bottom:47.132133pt;}
.yee{bottom:53.046400pt;}
.y8{bottom:65.888133pt;}
.y3e{bottom:95.525467pt;}
.y24{bottom:118.927600pt;}
.y3d{bottom:119.532133pt;}
.y3c{bottom:143.538800pt;}
.y3b{bottom:167.545467pt;}
.yad{bottom:169.623600pt;}
.yac{bottom:190.963600pt;}
.y3a{bottom:191.552133pt;}
.y39{bottom:215.558800pt;}
.yaa{bottom:224.638267pt;}
.y23{bottom:239.300000pt;}
.ya9{bottom:245.978267pt;}
.yab{bottom:256.640933pt;}
.yd2{bottom:258.312933pt;}
.y9e{bottom:262.859600pt;}
.y22{bottom:263.306667pt;}
.y38{bottom:263.554800pt;}
.ya8{bottom:267.318267pt;}
.yd1{bottom:279.652933pt;}
.y6f{bottom:279.960933pt;}
.y9d{bottom:284.199600pt;}
.y21{bottom:287.313333pt;}
.y37{bottom:287.561467pt;}
.ya7{bottom:288.658267pt;}
.yd3{bottom:300.978267pt;}
.yd0{bottom:300.992933pt;}
.y6e{bottom:301.300933pt;}
.y9c{bottom:305.539600pt;}
.y20{bottom:311.320000pt;}
.y36{bottom:311.568133pt;}
.ya5{bottom:322.332933pt;}
.y6d{bottom:322.640933pt;}
.y9b{bottom:326.879600pt;}
.y77{bottom:331.572933pt;}
.y1f{bottom:335.326667pt;}
.y35{bottom:335.525467pt;}
.ya4{bottom:343.672933pt;}
.y6c{bottom:343.980933pt;}
.y9a{bottom:348.219600pt;}
.y76{bottom:352.912933pt;}
.ya6{bottom:354.335600pt;}
.y1e{bottom:359.333333pt;}
.y34{bottom:359.532133pt;}
.ya3{bottom:365.012933pt;}
.y6b{bottom:365.320933pt;}
.y99{bottom:369.559600pt;}
.y75{bottom:374.252933pt;}
.y33{bottom:383.538800pt;}
.ya2{bottom:386.352933pt;}
.yea{bottom:386.411600pt;}
.y6a{bottom:386.660933pt;}
.y98{bottom:390.899600pt;}
.y74{bottom:395.592933pt;}
.yc5{bottom:398.746267pt;}
.y32{bottom:407.545467pt;}
.ye9{bottom:407.751600pt;}
.y69{bottom:408.000933pt;}
.y1d{bottom:409.790000pt;}
.y97{bottom:412.239600pt;}
.y73{bottom:416.932933pt;}
.yc4{bottom:420.086267pt;}
.ye8{bottom:429.091600pt;}
.y68{bottom:429.340933pt;}
.y31{bottom:431.552133pt;}
.yce{bottom:441.352933pt;}
.ya1{bottom:441.367600pt;}
.yc3{bottom:441.426267pt;}
.ye7{bottom:450.431600pt;}
.y72{bottom:450.607600pt;}
.y67{bottom:450.680933pt;}
.ycd{bottom:462.692933pt;}
.ya0{bottom:462.707600pt;}
.yc2{bottom:462.766267pt;}
.ye6{bottom:471.771600pt;}
.y71{bottom:471.947600pt;}
.y66{bottom:472.020933pt;}
.y30{bottom:479.548133pt;}
.y1c{bottom:479.552133pt;}
.ycc{bottom:484.032933pt;}
.y9f{bottom:484.047600pt;}
.yc1{bottom:484.106267pt;}
.yf3{bottom:484.236267pt;}
.y3{bottom:491.145733pt;}
.yed{bottom:493.067600pt;}
.ye5{bottom:493.111600pt;}
.y70{bottom:493.287600pt;}
.y65{bottom:493.360933pt;}
.ycf{bottom:494.680933pt;}
.y2f{bottom:503.554800pt;}
.y1b{bottom:503.558800pt;}
.ycb{bottom:505.372933pt;}
.yc0{bottom:505.446267pt;}
.yf1{bottom:510.464533pt;}
.ye4{bottom:514.451600pt;}
.yca{bottom:526.712933pt;}
.ybf{bottom:526.786267pt;}
.y63{bottom:527.035600pt;}
.y2e{bottom:527.561467pt;}
.y1a{bottom:527.565467pt;}
.ye3{bottom:535.791600pt;}
.y93{bottom:539.106267pt;}
.yc9{bottom:548.052933pt;}
.ybe{bottom:548.126267pt;}
.y62{bottom:548.375600pt;}
.yf2{bottom:550.759867pt;}
.y2d{bottom:551.568133pt;}
.ye2{bottom:557.131600pt;}
.y92{bottom:560.446267pt;}
.yc8{bottom:569.392933pt;}
.ybd{bottom:569.466267pt;}
.y64{bottom:569.700933pt;}
.y61{bottom:569.715600pt;}
.y2{bottom:574.895733pt;}
.y19{bottom:575.561467pt;}
.y2c{bottom:575.568133pt;}
.yec{bottom:578.398267pt;}
.ye1{bottom:578.471600pt;}
.y91{bottom:581.786267pt;}
.yc7{bottom:590.732933pt;}
.ybc{bottom:590.806267pt;}
.y60{bottom:591.055600pt;}
.y2b{bottom:599.509467pt;}
.y18{bottom:599.568133pt;}
.yeb{bottom:599.738267pt;}
.ye0{bottom:599.811600pt;}
.y96{bottom:603.096933pt;}
.y90{bottom:603.126267pt;}
.yc6{bottom:612.072933pt;}
.ybb{bottom:612.146267pt;}
.y5f{bottom:612.395600pt;}
.y17{bottom:623.498800pt;}
.y2a{bottom:623.516133pt;}
.y95{bottom:624.436933pt;}
.y8f{bottom:624.466267pt;}
.y1{bottom:626.095733pt;}
.ydc{bottom:633.500933pt;}
.y94{bottom:645.776933pt;}
.y8e{bottom:645.806267pt;}
.yb9{bottom:645.820933pt;}
.y5d{bottom:646.070267pt;}
.y16{bottom:647.505467pt;}
.ydb{bottom:654.840933pt;}
.yb8{bottom:667.160933pt;}
.y5c{bottom:667.410267pt;}
.y15{bottom:671.512133pt;}
.yda{bottom:676.180933pt;}
.ydf{bottom:686.828933pt;}
.yb7{bottom:688.500933pt;}
.y5e{bottom:688.735600pt;}
.y5b{bottom:688.750267pt;}
.y7{bottom:690.275600pt;}
.y14{bottom:695.518800pt;}
.yd9{bottom:697.520933pt;}
.y83{bottom:700.864933pt;}
.yb6{bottom:709.840933pt;}
.y5a{bottom:710.090267pt;}
.yde{bottom:718.831600pt;}
.yd8{bottom:718.860933pt;}
.y13{bottom:719.525467pt;}
.yba{bottom:720.488933pt;}
.y82{bottom:722.204933pt;}
.y6{bottom:730.275600pt;}
.yb5{bottom:731.180933pt;}
.y59{bottom:731.430267pt;}
.ydd{bottom:740.171600pt;}
.yd7{bottom:740.200933pt;}
.y12{bottom:743.532133pt;}
.y81{bottom:743.544933pt;}
.yb4{bottom:752.520933pt;}
.y8c{bottom:764.811600pt;}
.y80{bottom:764.884933pt;}
.y4e{bottom:765.051600pt;}
.y57{bottom:765.104933pt;}
.y11{bottom:767.538800pt;}
.y5{bottom:770.275600pt;}
.yb3{bottom:773.860933pt;}
.y8b{bottom:786.151600pt;}
.y7f{bottom:786.224933pt;}
.y4d{bottom:786.391600pt;}
.y56{bottom:786.424933pt;}
.y29{bottom:791.545467pt;}
.yb2{bottom:795.200933pt;}
.y8d{bottom:807.476933pt;}
.y8a{bottom:807.491600pt;}
.y7e{bottom:807.564933pt;}
.y4c{bottom:807.731600pt;}
.y55{bottom:807.764933pt;}
.y4{bottom:810.275600pt;}
.y10{bottom:815.534800pt;}
.y28{bottom:815.552133pt;}
.yd6{bottom:816.540933pt;}
.y89{bottom:828.831600pt;}
.y7d{bottom:828.904933pt;}
.y4b{bottom:829.071600pt;}
.y54{bottom:829.104933pt;}
.yd5{bottom:837.880933pt;}
.yf{bottom:839.541467pt;}
.y88{bottom:850.171600pt;}
.y7c{bottom:850.244933pt;}
.y4a{bottom:850.411600pt;}
.y53{bottom:850.431600pt;}
.y58{bottom:850.435600pt;}
.yd4{bottom:859.220933pt;}
.ye{bottom:863.548133pt;}
.y87{bottom:871.511600pt;}
.yb1{bottom:871.555600pt;}
.y7b{bottom:871.584933pt;}
.y49{bottom:871.751600pt;}
.y52{bottom:871.771600pt;}
.yd{bottom:887.554800pt;}
.y86{bottom:892.851600pt;}
.yb0{bottom:892.895600pt;}
.y7a{bottom:892.924933pt;}
.y51{bottom:893.032933pt;}
.y48{bottom:893.091600pt;}
.yc{bottom:911.561467pt;}
.y85{bottom:914.191600pt;}
.yaf{bottom:914.235600pt;}
.y79{bottom:914.264933pt;}
.y50{bottom:914.372933pt;}
.y47{bottom:914.431600pt;}
.y84{bottom:935.531600pt;}
.yb{bottom:935.568133pt;}
.yae{bottom:935.575600pt;}
.y78{bottom:935.604933pt;}
.y4f{bottom:935.712933pt;}
.y46{bottom:935.771600pt;}
.ya{bottom:959.574800pt;}
.y43{bottom:980.031600pt;}
.y45{bottom:981.020933pt;}
.y42{bottom:1002.692933pt;}
.y44{bottom:1003.692933pt;}
.y9{bottom:1010.031467pt;}
.hc{height:19.601237pt;}
.h18{height:31.062500pt;}
.h17{height:35.893333pt;}
.h6{height:42.122667pt;}
.h12{height:44.000000pt;}
.h13{height:46.229333pt;}
.h19{height:50.058667pt;}
.h14{height:50.432000pt;}
.h11{height:52.000000pt;}
.h9{height:54.634667pt;}
.h8{height:54.940011pt;}
.he{height:54.966677pt;}
.hf{height:55.137344pt;}
.hd{height:55.201344pt;}
.ha{height:55.244011pt;}
.h10{height:56.000000pt;}
.h1a{height:68.000000pt;}
.h15{height:70.928000pt;}
.h7{height:72.000000pt;}
.h16{height:88.880000pt;}
.h4{height:100.000000pt;}
.h3{height:100.864000pt;}
.h2{height:128.000000pt;}
.hb{height:140.000000pt;}
.h5{height:600.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:471.904000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:71.432667pt;}
.x6{left:91.692933pt;}
.x1{left:94.488133pt;}
.x38{left:105.810533pt;}
.x31{left:133.938267pt;}
.x30{left:135.448133pt;}
.x35{left:137.223600pt;}
.x20{left:138.542933pt;}
.x26{left:139.994933pt;}
.x23{left:141.842933pt;}
.x34{left:143.735600pt;}
.x21{left:144.629600pt;}
.x2a{left:145.832133pt;}
.x29{left:149.601467pt;}
.x4{left:151.181067pt;}
.xe{left:153.386267pt;}
.x2f{left:155.116133pt;}
.x2c{left:156.289467pt;}
.x25{left:157.726933pt;}
.x1c{left:158.680267pt;}
.x18{left:161.224533pt;}
.xd{left:163.198267pt;}
.x19{left:165.873867pt;}
.x33{left:166.908933pt;}
.x1f{left:168.961600pt;}
.x36{left:169.959600pt;}
.xb{left:171.323600pt;}
.x1d{left:172.569600pt;}
.x8{left:173.585067pt;}
.x28{left:174.828267pt;}
.x37{left:176.002267pt;}
.x17{left:177.255200pt;}
.xf{left:179.331600pt;}
.x24{left:181.090933pt;}
.x1e{left:183.730933pt;}
.x14{left:184.911200pt;}
.x2d{left:186.649467pt;}
.x2e{left:187.749467pt;}
.x13{left:190.895200pt;}
.xc{left:191.827600pt;}
.x16{left:193.139200pt;}
.x15{left:194.869867pt;}
.x5{left:198.381067pt;}
.x1a{left:199.709867pt;}
.x2b{left:201.829467pt;}
.x32{left:205.716933pt;}
.x1b{left:207.534933pt;}
.x10{left:210.468933pt;}
.x27{left:212.785600pt;}
.x22{left:216.701600pt;}
.x7{left:221.894400pt;}
.x9{left:294.806400pt;}
.x11{left:318.803200pt;}
.x2{left:457.889733pt;}
.x39{left:498.100933pt;}
.x3b{left:521.102000pt;}
.x3a{left:611.488133pt;}
.xa{left:628.068267pt;}
.x12{left:654.244533pt;}
}




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