
    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_328c3d3bd845b86af7cdc149.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.125000;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_8da2773d0f783b38537c0c6c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.125000;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_607268b986351154e09284f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976074;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_f64dbc563df2cbca750041fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_fa56bde734428cf8dbdc34ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;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_a263abbe8200a2c29cd1ec97.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.171444;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_31f4db52c290b9522243558b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979004;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_2b9c63df7e30d10ca5ba3830.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.125000;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_48a266f504b8ddeaeec1e7d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.125000;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_b00165a7d6d1919617237f6d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005000;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);}
.v3{vertical-align:-25.974000px;}
.v1{vertical-align:-4.358400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:36.000000px;}
.ls1{letter-spacing:-5.070000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.637500px;}
.ls2{letter-spacing:1.657200px;}
.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;}
}
.ws1{word-spacing:-21.684000px;}
.ws9e{word-spacing:-14.587500px;}
.ws5b{word-spacing:-14.508000px;}
.ws9d{word-spacing:-13.950000px;}
.ws0{word-spacing:-12.276000px;}
.ws2{word-spacing:-11.160000px;}
.ws5c{word-spacing:-9.438000px;}
.wsd{word-spacing:-3.432000px;}
.ws69{word-spacing:-2.808000px;}
.ws52{word-spacing:-2.730000px;}
.ws30{word-spacing:-2.652000px;}
.ws55{word-spacing:-2.496000px;}
.ws53{word-spacing:-2.418000px;}
.ws6b{word-spacing:-2.262000px;}
.ws3c{word-spacing:-2.184000px;}
.ws7a{word-spacing:-2.106000px;}
.ws86{word-spacing:-2.028000px;}
.ws88{word-spacing:-1.950000px;}
.wsa2{word-spacing:-1.875000px;}
.ws75{word-spacing:-1.872000px;}
.ws5d{word-spacing:-1.794000px;}
.ws1d{word-spacing:-1.716000px;}
.ws70{word-spacing:-1.638000px;}
.ws7e{word-spacing:-1.560000px;}
.ws5f{word-spacing:-1.404000px;}
.ws8e{word-spacing:-1.326000px;}
.ws4c{word-spacing:-1.248000px;}
.ws9c{word-spacing:-1.170000px;}
.ws28{word-spacing:-1.092000px;}
.ws6a{word-spacing:-1.014000px;}
.ws32{word-spacing:-0.936000px;}
.ws93{word-spacing:-0.858000px;}
.ws7d{word-spacing:-0.780000px;}
.ws8d{word-spacing:-0.702000px;}
.ws39{word-spacing:-0.624000px;}
.ws54{word-spacing:-0.546000px;}
.ws90{word-spacing:-0.468000px;}
.wse{word-spacing:-0.390000px;}
.ws42{word-spacing:-0.312000px;}
.ws60{word-spacing:-0.156000px;}
.ws98{word-spacing:-0.078000px;}
.ws3{word-spacing:0.000000px;}
.ws43{word-spacing:0.078000px;}
.ws3f{word-spacing:0.156000px;}
.ws7c{word-spacing:0.234000px;}
.ws5a{word-spacing:0.312000px;}
.ws2f{word-spacing:0.390000px;}
.wsc{word-spacing:0.468000px;}
.ws8f{word-spacing:0.546000px;}
.ws65{word-spacing:0.624000px;}
.ws81{word-spacing:0.702000px;}
.ws5e{word-spacing:0.780000px;}
.ws8b{word-spacing:0.858000px;}
.ws6e{word-spacing:0.936000px;}
.ws40{word-spacing:1.014000px;}
.ws67{word-spacing:1.092000px;}
.ws6d{word-spacing:1.170000px;}
.ws84{word-spacing:1.248000px;}
.wsa4{word-spacing:1.275000px;}
.ws21{word-spacing:1.326000px;}
.wsa{word-spacing:1.404000px;}
.ws56{word-spacing:1.482000px;}
.wsa1{word-spacing:1.500000px;}
.ws23{word-spacing:1.560000px;}
.ws37{word-spacing:1.638000px;}
.ws41{word-spacing:1.716000px;}
.ws24{word-spacing:1.794000px;}
.ws5{word-spacing:1.872000px;}
.ws3d{word-spacing:1.950000px;}
.ws48{word-spacing:2.028000px;}
.wsa6{word-spacing:2.175000px;}
.ws83{word-spacing:2.262000px;}
.ws3a{word-spacing:2.340000px;}
.ws71{word-spacing:2.418000px;}
.ws79{word-spacing:2.496000px;}
.ws46{word-spacing:2.574000px;}
.ws58{word-spacing:2.652000px;}
.ws35{word-spacing:2.730000px;}
.ws47{word-spacing:2.808000px;}
.ws33{word-spacing:2.886000px;}
.ws1f{word-spacing:2.964000px;}
.ws4a{word-spacing:3.042000px;}
.ws73{word-spacing:3.120000px;}
.ws31{word-spacing:3.198000px;}
.ws97{word-spacing:3.354000px;}
.ws59{word-spacing:3.432000px;}
.ws49{word-spacing:3.510000px;}
.ws89{word-spacing:3.588000px;}
.ws3e{word-spacing:3.666000px;}
.ws4e{word-spacing:3.744000px;}
.ws14{word-spacing:3.822000px;}
.ws80{word-spacing:3.900000px;}
.ws4d{word-spacing:3.978000px;}
.ws2d{word-spacing:4.056000px;}
.ws26{word-spacing:4.134000px;}
.ws45{word-spacing:4.212000px;}
.ws3b{word-spacing:4.290000px;}
.ws9a{word-spacing:4.368000px;}
.ws96{word-spacing:4.446000px;}
.ws91{word-spacing:4.524000px;}
.ws76{word-spacing:4.602000px;}
.ws8a{word-spacing:4.680000px;}
.ws7b{word-spacing:4.758000px;}
.ws64{word-spacing:4.836000px;}
.wsa0{word-spacing:5.025000px;}
.ws7f{word-spacing:5.070000px;}
.ws22{word-spacing:5.148000px;}
.ws1c{word-spacing:5.304000px;}
.ws36{word-spacing:5.382000px;}
.ws95{word-spacing:5.460000px;}
.ws6f{word-spacing:5.538000px;}
.ws38{word-spacing:5.616000px;}
.ws68{word-spacing:5.694000px;}
.ws57{word-spacing:5.772000px;}
.ws10{word-spacing:5.850000px;}
.ws85{word-spacing:5.928000px;}
.ws44{word-spacing:6.006000px;}
.ws9b{word-spacing:6.084000px;}
.ws82{word-spacing:6.162000px;}
.wsa5{word-spacing:6.225000px;}
.ws2e{word-spacing:6.240000px;}
.ws4f{word-spacing:6.318000px;}
.ws61{word-spacing:6.396000px;}
.ws27{word-spacing:6.474000px;}
.ws63{word-spacing:6.630000px;}
.ws34{word-spacing:6.708000px;}
.ws78{word-spacing:6.786000px;}
.ws74{word-spacing:6.942000px;}
.ws51{word-spacing:7.020000px;}
.ws2b{word-spacing:7.098000px;}
.ws87{word-spacing:7.176000px;}
.ws92{word-spacing:7.254000px;}
.ws72{word-spacing:7.410000px;}
.ws62{word-spacing:7.488000px;}
.ws6c{word-spacing:7.566000px;}
.ws20{word-spacing:7.644000px;}
.ws99{word-spacing:7.722000px;}
.ws9f{word-spacing:7.875000px;}
.ws94{word-spacing:8.112000px;}
.ws2a{word-spacing:8.190000px;}
.ws29{word-spacing:8.580000px;}
.ws50{word-spacing:8.658000px;}
.ws4b{word-spacing:8.736000px;}
.ws6{word-spacing:8.970000px;}
.ws18{word-spacing:9.360000px;}
.ws17{word-spacing:9.438000px;}
.ws8c{word-spacing:9.750000px;}
.ws77{word-spacing:9.828000px;}
.ws4{word-spacing:10.140000px;}
.wsf{word-spacing:11.388000px;}
.ws2c{word-spacing:11.544000px;}
.ws13{word-spacing:11.700000px;}
.ws12{word-spacing:11.778000px;}
.wsb{word-spacing:13.806000px;}
.ws1e{word-spacing:14.196000px;}
.ws19{word-spacing:15.600000px;}
.ws7{word-spacing:16.692000px;}
.ws1b{word-spacing:17.628000px;}
.ws8{word-spacing:20.904000px;}
.ws25{word-spacing:21.762000px;}
.ws11{word-spacing:23.088000px;}
.ws9{word-spacing:24.882000px;}
.ws1a{word-spacing:25.584000px;}
.ws16{word-spacing:26.052000px;}
.ws15{word-spacing:26.910000px;}
.wsa3{word-spacing:30.900000px;}
.ws66{word-spacing:201.474000px;}
._1b{margin-left:-193.226400px;}
._8{margin-left:-11.340000px;}
._c{margin-left:-9.786000px;}
._6{margin-left:-8.361000px;}
._5{margin-left:-7.182000px;}
._d{margin-left:-5.368800px;}
._1{margin-left:-3.816000px;}
._4{margin-left:-2.439000px;}
._3{margin-left:-1.197000px;}
._2{width:1.269000px;}
._7{width:2.619000px;}
._12{width:3.841200px;}
._14{width:5.081400px;}
._e{width:6.970800px;}
._f{width:8.566200px;}
._b{width:9.726600px;}
._9{width:19.887600px;}
._a{width:23.384400px;}
._19{width:191.646000px;}
._10{width:193.284000px;}
._1c{width:194.688000px;}
._11{width:196.092000px;}
._15{width:197.730000px;}
._13{width:199.524000px;}
._17{width:200.850000px;}
._16{width:202.020000px;}
._18{width:203.190000px;}
._1a{width:204.282000px;}
._0{width:1674.012600px;}
.fc5{color:rgb(95,43,132);}
.fc4{color:rgb(148,76,189);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(140,149,156);}
.fc1{color:rgb(137,58,182);}
.fc0{color:rgb(138,148,157);}
.fs5{font-size:45.474000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:75.000000px;}
.fs4{font-size:78.000000px;}
.fs0{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:33.670800px;}
.y2{bottom:34.760400px;}
.y37{bottom:86.444250px;}
.y36{bottom:99.944250px;}
.y88{bottom:104.937150px;}
.y62{bottom:105.190650px;}
.yff{bottom:105.785700px;}
.yd9{bottom:106.000200px;}
.y35{bottom:119.937750px;}
.y87{bottom:128.937150px;}
.y61{bottom:129.190650px;}
.yfe{bottom:129.785700px;}
.yd8{bottom:130.000200px;}
.yb0{bottom:130.000350px;}
.y86{bottom:152.937150px;}
.y60{bottom:153.190650px;}
.yfd{bottom:153.785700px;}
.yd7{bottom:154.000200px;}
.yaf{bottom:154.000350px;}
.y26{bottom:162.594000px;}
.y34{bottom:162.594150px;}
.y85{bottom:176.937150px;}
.y5f{bottom:177.190650px;}
.yfc{bottom:177.785700px;}
.yd6{bottom:178.000200px;}
.yae{bottom:178.000350px;}
.y25{bottom:185.994000px;}
.y33{bottom:185.994150px;}
.y84{bottom:200.937150px;}
.y5e{bottom:201.190650px;}
.yfb{bottom:201.785700px;}
.yd5{bottom:202.000200px;}
.yad{bottom:202.000350px;}
.y83{bottom:224.937150px;}
.y5d{bottom:225.190650px;}
.yfa{bottom:225.785700px;}
.yd4{bottom:226.000200px;}
.yac{bottom:226.000350px;}
.y24{bottom:232.794000px;}
.y82{bottom:248.937150px;}
.y5c{bottom:249.190650px;}
.yf9{bottom:249.785700px;}
.yd3{bottom:250.000200px;}
.yab{bottom:250.000350px;}
.y23{bottom:256.194000px;}
.y32{bottom:256.194150px;}
.y81{bottom:272.937150px;}
.y5b{bottom:273.190650px;}
.yd2{bottom:274.000200px;}
.yaa{bottom:274.000350px;}
.y22{bottom:279.594000px;}
.y31{bottom:279.594150px;}
.y80{bottom:296.937150px;}
.y5a{bottom:297.190650px;}
.yf8{bottom:297.785700px;}
.yd1{bottom:298.000200px;}
.ya9{bottom:298.000350px;}
.y21{bottom:302.994000px;}
.y30{bottom:302.994150px;}
.y7f{bottom:320.937150px;}
.y59{bottom:321.190650px;}
.yd0{bottom:322.000200px;}
.ya8{bottom:322.000350px;}
.y1{bottom:325.497600px;}
.y20{bottom:326.394000px;}
.y2f{bottom:326.394150px;}
.y3a{bottom:326.737800px;}
.y7e{bottom:344.937150px;}
.y58{bottom:345.190650px;}
.ycf{bottom:346.000200px;}
.ya7{bottom:346.000350px;}
.y1f{bottom:349.794000px;}
.y7d{bottom:368.937150px;}
.y57{bottom:369.190650px;}
.yf7{bottom:369.785700px;}
.yce{bottom:370.000200px;}
.ya6{bottom:370.000350px;}
.y1e{bottom:373.194000px;}
.y2e{bottom:373.194150px;}
.y7c{bottom:392.937150px;}
.y56{bottom:393.190650px;}
.yf6{bottom:393.785700px;}
.ycd{bottom:394.000200px;}
.ya5{bottom:394.000350px;}
.y1d{bottom:396.594000px;}
.y2d{bottom:396.594150px;}
.y7b{bottom:416.937150px;}
.y55{bottom:417.190650px;}
.yf5{bottom:417.785700px;}
.ycc{bottom:418.000200px;}
.ya4{bottom:418.000350px;}
.y1c{bottom:419.994000px;}
.y2c{bottom:419.994150px;}
.y7a{bottom:440.937150px;}
.y54{bottom:441.190650px;}
.yf4{bottom:441.785700px;}
.ycb{bottom:442.000200px;}
.ya3{bottom:442.000350px;}
.y1b{bottom:443.394000px;}
.y2b{bottom:443.394150px;}
.y112{bottom:458.753700px;}
.y79{bottom:464.937150px;}
.y53{bottom:465.190650px;}
.yf3{bottom:465.785700px;}
.yca{bottom:466.000200px;}
.ya2{bottom:466.000350px;}
.y1a{bottom:466.794000px;}
.y111{bottom:481.253700px;}
.y78{bottom:488.937150px;}
.y52{bottom:489.190650px;}
.yf2{bottom:489.785700px;}
.yc9{bottom:490.000200px;}
.ya1{bottom:490.000350px;}
.y19{bottom:490.194000px;}
.y2a{bottom:490.194150px;}
.y77{bottom:512.937150px;}
.y51{bottom:513.190650px;}
.y18{bottom:513.594000px;}
.y29{bottom:513.594150px;}
.yf1{bottom:513.785700px;}
.yc8{bottom:514.000200px;}
.ya0{bottom:514.000350px;}
.y110{bottom:526.253700px;}
.y76{bottom:536.937150px;}
.y17{bottom:536.994000px;}
.y28{bottom:536.994150px;}
.y50{bottom:537.190650px;}
.yf0{bottom:537.785700px;}
.yc7{bottom:538.000200px;}
.y9f{bottom:538.000350px;}
.y16{bottom:560.394000px;}
.y27{bottom:560.394150px;}
.y75{bottom:560.937150px;}
.y4f{bottom:561.190650px;}
.yef{bottom:561.785700px;}
.yc6{bottom:562.000200px;}
.y9e{bottom:562.000350px;}
.y10f{bottom:571.253700px;}
.y15{bottom:583.794000px;}
.y74{bottom:584.937150px;}
.y4e{bottom:585.190650px;}
.yee{bottom:585.785700px;}
.yc5{bottom:586.000200px;}
.y9d{bottom:586.000350px;}
.y10e{bottom:593.753700px;}
.y14{bottom:607.194000px;}
.y73{bottom:608.937150px;}
.y4d{bottom:609.190650px;}
.yed{bottom:609.785700px;}
.yc4{bottom:610.000200px;}
.y9c{bottom:610.000350px;}
.y13{bottom:630.594000px;}
.y72{bottom:632.937150px;}
.y4c{bottom:633.190650px;}
.yec{bottom:633.785700px;}
.yc3{bottom:634.000200px;}
.y9b{bottom:634.000350px;}
.y10d{bottom:638.753700px;}
.y12{bottom:653.994000px;}
.y4b{bottom:657.190650px;}
.yeb{bottom:657.785700px;}
.yc2{bottom:658.000200px;}
.y9a{bottom:658.000350px;}
.y10c{bottom:661.253700px;}
.y11{bottom:677.394000px;}
.y71{bottom:680.937150px;}
.y4a{bottom:681.190650px;}
.yea{bottom:681.785700px;}
.yc1{bottom:682.000200px;}
.y99{bottom:682.000350px;}
.y10{bottom:700.794000px;}
.y49{bottom:705.190650px;}
.ye9{bottom:705.785700px;}
.yc0{bottom:706.000200px;}
.y98{bottom:706.000350px;}
.y10b{bottom:706.253700px;}
.yf{bottom:724.194000px;}
.y10a{bottom:728.753700px;}
.y48{bottom:729.190650px;}
.ye8{bottom:729.785700px;}
.ybf{bottom:730.000200px;}
.y97{bottom:730.000350px;}
.ye{bottom:747.594000px;}
.y109{bottom:751.253700px;}
.y70{bottom:752.937150px;}
.y47{bottom:753.190650px;}
.ye7{bottom:753.785700px;}
.ybe{bottom:754.000200px;}
.y96{bottom:754.000350px;}
.y108{bottom:773.753700px;}
.y6f{bottom:776.937150px;}
.y46{bottom:777.190650px;}
.ye6{bottom:777.785700px;}
.ybd{bottom:778.000200px;}
.y95{bottom:778.000350px;}
.y39{bottom:786.112800px;}
.yd{bottom:797.488350px;}
.y38{bottom:799.612800px;}
.y6e{bottom:800.937150px;}
.y45{bottom:801.190650px;}
.ye5{bottom:801.785700px;}
.ybc{bottom:802.000200px;}
.y94{bottom:802.000350px;}
.yc{bottom:817.288350px;}
.y107{bottom:818.753700px;}
.y6d{bottom:824.937150px;}
.y44{bottom:825.190650px;}
.ye4{bottom:825.785700px;}
.ybb{bottom:826.000200px;}
.y93{bottom:826.000350px;}
.yb{bottom:837.088350px;}
.y6c{bottom:848.937150px;}
.y43{bottom:849.190650px;}
.ye3{bottom:849.785700px;}
.yba{bottom:850.000200px;}
.y92{bottom:850.000350px;}
.ya{bottom:856.888350px;}
.y106{bottom:863.753700px;}
.y6b{bottom:872.937150px;}
.y42{bottom:873.190650px;}
.ye2{bottom:873.785700px;}
.yb9{bottom:874.000200px;}
.y91{bottom:874.000350px;}
.y9{bottom:876.688350px;}
.y6a{bottom:896.937150px;}
.y41{bottom:897.190650px;}
.ye1{bottom:897.785700px;}
.yb8{bottom:898.000200px;}
.y90{bottom:898.000350px;}
.y8{bottom:903.688350px;}
.y105{bottom:908.753700px;}
.y69{bottom:920.937150px;}
.y40{bottom:921.190650px;}
.ye0{bottom:921.785700px;}
.yb7{bottom:922.000200px;}
.y8f{bottom:922.000350px;}
.y7{bottom:923.488350px;}
.y68{bottom:944.937150px;}
.y3f{bottom:945.190650px;}
.ydf{bottom:945.785700px;}
.yb6{bottom:946.000200px;}
.y8e{bottom:946.000350px;}
.y104{bottom:953.753700px;}
.y67{bottom:968.937150px;}
.y3e{bottom:969.190650px;}
.yde{bottom:969.785700px;}
.yb5{bottom:970.000200px;}
.y8d{bottom:970.000350px;}
.y6{bottom:970.428450px;}
.y103{bottom:976.253700px;}
.y66{bottom:992.937150px;}
.y3d{bottom:993.190650px;}
.ydd{bottom:993.785700px;}
.yb4{bottom:994.000200px;}
.y8c{bottom:994.000350px;}
.y5{bottom:997.428450px;}
.y102{bottom:998.753700px;}
.y65{bottom:1016.937150px;}
.ydc{bottom:1017.785700px;}
.yb3{bottom:1018.000200px;}
.y8b{bottom:1018.000350px;}
.y101{bottom:1021.253700px;}
.y4{bottom:1040.753100px;}
.y64{bottom:1040.937150px;}
.y3c{bottom:1041.190650px;}
.ydb{bottom:1041.785700px;}
.yb2{bottom:1042.000200px;}
.y8a{bottom:1042.000350px;}
.y63{bottom:1064.937150px;}
.yda{bottom:1065.785700px;}
.yb1{bottom:1066.000200px;}
.y89{bottom:1066.000350px;}
.y100{bottom:1066.253700px;}
.y3{bottom:1067.753100px;}
.hb{height:42.381768px;}
.hc{height:55.920000px;}
.he{height:58.110000px;}
.ha{height:58.500000px;}
.hd{height:59.071289px;}
.h8{height:59.957333px;}
.h7{height:61.512000px;}
.h3{height:64.441406px;}
.h4{height:67.500000px;}
.h9{height:69.811523px;}
.hf{height:69.900000px;}
.h6{height:72.696000px;}
.h2{height:80.551758px;}
.h5{height:81.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:34.901550px;}
.x11{left:46.151550px;}
.x10{left:83.976300px;}
.xd{left:85.039350px;}
.x2{left:86.102400px;}
.x13{left:127.559100px;}
.x3{left:159.993750px;}
.x4{left:180.613350px;}
.x5{left:233.874000px;}
.x6{left:269.436750px;}
.x9{left:352.659600px;}
.x8{left:359.295450px;}
.x7{left:379.432200px;}
.xc{left:381.405300px;}
.xb{left:398.069850px;}
.xa{left:420.360750px;}
.xe{left:471.968550px;}
.xf{left:681.378000px;}
.x12{left:702.081600px;}
.x1{left:836.574900px;}
@media print{
.v3{vertical-align:-23.088000pt;}
.v1{vertical-align:-3.874133pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:32.000000pt;}
.ls1{letter-spacing:-4.506667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.566667pt;}
.ls2{letter-spacing:1.473067pt;}
.ws1{word-spacing:-19.274667pt;}
.ws9e{word-spacing:-12.966667pt;}
.ws5b{word-spacing:-12.896000pt;}
.ws9d{word-spacing:-12.400000pt;}
.ws0{word-spacing:-10.912000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws5c{word-spacing:-8.389333pt;}
.wsd{word-spacing:-3.050667pt;}
.ws69{word-spacing:-2.496000pt;}
.ws52{word-spacing:-2.426667pt;}
.ws30{word-spacing:-2.357333pt;}
.ws55{word-spacing:-2.218667pt;}
.ws53{word-spacing:-2.149333pt;}
.ws6b{word-spacing:-2.010667pt;}
.ws3c{word-spacing:-1.941333pt;}
.ws7a{word-spacing:-1.872000pt;}
.ws86{word-spacing:-1.802667pt;}
.ws88{word-spacing:-1.733333pt;}
.wsa2{word-spacing:-1.666667pt;}
.ws75{word-spacing:-1.664000pt;}
.ws5d{word-spacing:-1.594667pt;}
.ws1d{word-spacing:-1.525333pt;}
.ws70{word-spacing:-1.456000pt;}
.ws7e{word-spacing:-1.386667pt;}
.ws5f{word-spacing:-1.248000pt;}
.ws8e{word-spacing:-1.178667pt;}
.ws4c{word-spacing:-1.109333pt;}
.ws9c{word-spacing:-1.040000pt;}
.ws28{word-spacing:-0.970667pt;}
.ws6a{word-spacing:-0.901333pt;}
.ws32{word-spacing:-0.832000pt;}
.ws93{word-spacing:-0.762667pt;}
.ws7d{word-spacing:-0.693333pt;}
.ws8d{word-spacing:-0.624000pt;}
.ws39{word-spacing:-0.554667pt;}
.ws54{word-spacing:-0.485333pt;}
.ws90{word-spacing:-0.416000pt;}
.wse{word-spacing:-0.346667pt;}
.ws42{word-spacing:-0.277333pt;}
.ws60{word-spacing:-0.138667pt;}
.ws98{word-spacing:-0.069333pt;}
.ws3{word-spacing:0.000000pt;}
.ws43{word-spacing:0.069333pt;}
.ws3f{word-spacing:0.138667pt;}
.ws7c{word-spacing:0.208000pt;}
.ws5a{word-spacing:0.277333pt;}
.ws2f{word-spacing:0.346667pt;}
.wsc{word-spacing:0.416000pt;}
.ws8f{word-spacing:0.485333pt;}
.ws65{word-spacing:0.554667pt;}
.ws81{word-spacing:0.624000pt;}
.ws5e{word-spacing:0.693333pt;}
.ws8b{word-spacing:0.762667pt;}
.ws6e{word-spacing:0.832000pt;}
.ws40{word-spacing:0.901333pt;}
.ws67{word-spacing:0.970667pt;}
.ws6d{word-spacing:1.040000pt;}
.ws84{word-spacing:1.109333pt;}
.wsa4{word-spacing:1.133333pt;}
.ws21{word-spacing:1.178667pt;}
.wsa{word-spacing:1.248000pt;}
.ws56{word-spacing:1.317333pt;}
.wsa1{word-spacing:1.333333pt;}
.ws23{word-spacing:1.386667pt;}
.ws37{word-spacing:1.456000pt;}
.ws41{word-spacing:1.525333pt;}
.ws24{word-spacing:1.594667pt;}
.ws5{word-spacing:1.664000pt;}
.ws3d{word-spacing:1.733333pt;}
.ws48{word-spacing:1.802667pt;}
.wsa6{word-spacing:1.933333pt;}
.ws83{word-spacing:2.010667pt;}
.ws3a{word-spacing:2.080000pt;}
.ws71{word-spacing:2.149333pt;}
.ws79{word-spacing:2.218667pt;}
.ws46{word-spacing:2.288000pt;}
.ws58{word-spacing:2.357333pt;}
.ws35{word-spacing:2.426667pt;}
.ws47{word-spacing:2.496000pt;}
.ws33{word-spacing:2.565333pt;}
.ws1f{word-spacing:2.634667pt;}
.ws4a{word-spacing:2.704000pt;}
.ws73{word-spacing:2.773333pt;}
.ws31{word-spacing:2.842667pt;}
.ws97{word-spacing:2.981333pt;}
.ws59{word-spacing:3.050667pt;}
.ws49{word-spacing:3.120000pt;}
.ws89{word-spacing:3.189333pt;}
.ws3e{word-spacing:3.258667pt;}
.ws4e{word-spacing:3.328000pt;}
.ws14{word-spacing:3.397333pt;}
.ws80{word-spacing:3.466667pt;}
.ws4d{word-spacing:3.536000pt;}
.ws2d{word-spacing:3.605333pt;}
.ws26{word-spacing:3.674667pt;}
.ws45{word-spacing:3.744000pt;}
.ws3b{word-spacing:3.813333pt;}
.ws9a{word-spacing:3.882667pt;}
.ws96{word-spacing:3.952000pt;}
.ws91{word-spacing:4.021333pt;}
.ws76{word-spacing:4.090667pt;}
.ws8a{word-spacing:4.160000pt;}
.ws7b{word-spacing:4.229333pt;}
.ws64{word-spacing:4.298667pt;}
.wsa0{word-spacing:4.466667pt;}
.ws7f{word-spacing:4.506667pt;}
.ws22{word-spacing:4.576000pt;}
.ws1c{word-spacing:4.714667pt;}
.ws36{word-spacing:4.784000pt;}
.ws95{word-spacing:4.853333pt;}
.ws6f{word-spacing:4.922667pt;}
.ws38{word-spacing:4.992000pt;}
.ws68{word-spacing:5.061333pt;}
.ws57{word-spacing:5.130667pt;}
.ws10{word-spacing:5.200000pt;}
.ws85{word-spacing:5.269333pt;}
.ws44{word-spacing:5.338667pt;}
.ws9b{word-spacing:5.408000pt;}
.ws82{word-spacing:5.477333pt;}
.wsa5{word-spacing:5.533333pt;}
.ws2e{word-spacing:5.546667pt;}
.ws4f{word-spacing:5.616000pt;}
.ws61{word-spacing:5.685333pt;}
.ws27{word-spacing:5.754667pt;}
.ws63{word-spacing:5.893333pt;}
.ws34{word-spacing:5.962667pt;}
.ws78{word-spacing:6.032000pt;}
.ws74{word-spacing:6.170667pt;}
.ws51{word-spacing:6.240000pt;}
.ws2b{word-spacing:6.309333pt;}
.ws87{word-spacing:6.378667pt;}
.ws92{word-spacing:6.448000pt;}
.ws72{word-spacing:6.586667pt;}
.ws62{word-spacing:6.656000pt;}
.ws6c{word-spacing:6.725333pt;}
.ws20{word-spacing:6.794667pt;}
.ws99{word-spacing:6.864000pt;}
.ws9f{word-spacing:7.000000pt;}
.ws94{word-spacing:7.210667pt;}
.ws2a{word-spacing:7.280000pt;}
.ws29{word-spacing:7.626667pt;}
.ws50{word-spacing:7.696000pt;}
.ws4b{word-spacing:7.765333pt;}
.ws6{word-spacing:7.973333pt;}
.ws18{word-spacing:8.320000pt;}
.ws17{word-spacing:8.389333pt;}
.ws8c{word-spacing:8.666667pt;}
.ws77{word-spacing:8.736000pt;}
.ws4{word-spacing:9.013333pt;}
.wsf{word-spacing:10.122667pt;}
.ws2c{word-spacing:10.261333pt;}
.ws13{word-spacing:10.400000pt;}
.ws12{word-spacing:10.469333pt;}
.wsb{word-spacing:12.272000pt;}
.ws1e{word-spacing:12.618667pt;}
.ws19{word-spacing:13.866667pt;}
.ws7{word-spacing:14.837333pt;}
.ws1b{word-spacing:15.669333pt;}
.ws8{word-spacing:18.581333pt;}
.ws25{word-spacing:19.344000pt;}
.ws11{word-spacing:20.522667pt;}
.ws9{word-spacing:22.117333pt;}
.ws1a{word-spacing:22.741333pt;}
.ws16{word-spacing:23.157333pt;}
.ws15{word-spacing:23.920000pt;}
.wsa3{word-spacing:27.466667pt;}
.ws66{word-spacing:179.088000pt;}
._1b{margin-left:-171.756800pt;}
._8{margin-left:-10.080000pt;}
._c{margin-left:-8.698667pt;}
._6{margin-left:-7.432000pt;}
._5{margin-left:-6.384000pt;}
._d{margin-left:-4.772267pt;}
._1{margin-left:-3.392000pt;}
._4{margin-left:-2.168000pt;}
._3{margin-left:-1.064000pt;}
._2{width:1.128000pt;}
._7{width:2.328000pt;}
._12{width:3.414400pt;}
._14{width:4.516800pt;}
._e{width:6.196267pt;}
._f{width:7.614400pt;}
._b{width:8.645867pt;}
._9{width:17.677867pt;}
._a{width:20.786133pt;}
._19{width:170.352000pt;}
._10{width:171.808000pt;}
._1c{width:173.056000pt;}
._11{width:174.304000pt;}
._15{width:175.760000pt;}
._13{width:177.354667pt;}
._17{width:178.533333pt;}
._16{width:179.573333pt;}
._18{width:180.613333pt;}
._1a{width:181.584000pt;}
._0{width:1488.011200pt;}
.fs5{font-size:40.421333pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:66.666667pt;}
.fs4{font-size:69.333333pt;}
.fs0{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:29.929600pt;}
.y2{bottom:30.898133pt;}
.y37{bottom:76.839333pt;}
.y36{bottom:88.839333pt;}
.y88{bottom:93.277467pt;}
.y62{bottom:93.502800pt;}
.yff{bottom:94.031733pt;}
.yd9{bottom:94.222400pt;}
.y35{bottom:106.611333pt;}
.y87{bottom:114.610800pt;}
.y61{bottom:114.836133pt;}
.yfe{bottom:115.365067pt;}
.yd8{bottom:115.555733pt;}
.yb0{bottom:115.555867pt;}
.y86{bottom:135.944133pt;}
.y60{bottom:136.169467pt;}
.yfd{bottom:136.698400pt;}
.yd7{bottom:136.889067pt;}
.yaf{bottom:136.889200pt;}
.y26{bottom:144.528000pt;}
.y34{bottom:144.528133pt;}
.y85{bottom:157.277467pt;}
.y5f{bottom:157.502800pt;}
.yfc{bottom:158.031733pt;}
.yd6{bottom:158.222400pt;}
.yae{bottom:158.222533pt;}
.y25{bottom:165.328000pt;}
.y33{bottom:165.328133pt;}
.y84{bottom:178.610800pt;}
.y5e{bottom:178.836133pt;}
.yfb{bottom:179.365067pt;}
.yd5{bottom:179.555733pt;}
.yad{bottom:179.555867pt;}
.y83{bottom:199.944133pt;}
.y5d{bottom:200.169467pt;}
.yfa{bottom:200.698400pt;}
.yd4{bottom:200.889067pt;}
.yac{bottom:200.889200pt;}
.y24{bottom:206.928000pt;}
.y82{bottom:221.277467pt;}
.y5c{bottom:221.502800pt;}
.yf9{bottom:222.031733pt;}
.yd3{bottom:222.222400pt;}
.yab{bottom:222.222533pt;}
.y23{bottom:227.728000pt;}
.y32{bottom:227.728133pt;}
.y81{bottom:242.610800pt;}
.y5b{bottom:242.836133pt;}
.yd2{bottom:243.555733pt;}
.yaa{bottom:243.555867pt;}
.y22{bottom:248.528000pt;}
.y31{bottom:248.528133pt;}
.y80{bottom:263.944133pt;}
.y5a{bottom:264.169467pt;}
.yf8{bottom:264.698400pt;}
.yd1{bottom:264.889067pt;}
.ya9{bottom:264.889200pt;}
.y21{bottom:269.328000pt;}
.y30{bottom:269.328133pt;}
.y7f{bottom:285.277467pt;}
.y59{bottom:285.502800pt;}
.yd0{bottom:286.222400pt;}
.ya8{bottom:286.222533pt;}
.y1{bottom:289.331200pt;}
.y20{bottom:290.128000pt;}
.y2f{bottom:290.128133pt;}
.y3a{bottom:290.433600pt;}
.y7e{bottom:306.610800pt;}
.y58{bottom:306.836133pt;}
.ycf{bottom:307.555733pt;}
.ya7{bottom:307.555867pt;}
.y1f{bottom:310.928000pt;}
.y7d{bottom:327.944133pt;}
.y57{bottom:328.169467pt;}
.yf7{bottom:328.698400pt;}
.yce{bottom:328.889067pt;}
.ya6{bottom:328.889200pt;}
.y1e{bottom:331.728000pt;}
.y2e{bottom:331.728133pt;}
.y7c{bottom:349.277467pt;}
.y56{bottom:349.502800pt;}
.yf6{bottom:350.031733pt;}
.ycd{bottom:350.222400pt;}
.ya5{bottom:350.222533pt;}
.y1d{bottom:352.528000pt;}
.y2d{bottom:352.528133pt;}
.y7b{bottom:370.610800pt;}
.y55{bottom:370.836133pt;}
.yf5{bottom:371.365067pt;}
.ycc{bottom:371.555733pt;}
.ya4{bottom:371.555867pt;}
.y1c{bottom:373.328000pt;}
.y2c{bottom:373.328133pt;}
.y7a{bottom:391.944133pt;}
.y54{bottom:392.169467pt;}
.yf4{bottom:392.698400pt;}
.ycb{bottom:392.889067pt;}
.ya3{bottom:392.889200pt;}
.y1b{bottom:394.128000pt;}
.y2b{bottom:394.128133pt;}
.y112{bottom:407.781067pt;}
.y79{bottom:413.277467pt;}
.y53{bottom:413.502800pt;}
.yf3{bottom:414.031733pt;}
.yca{bottom:414.222400pt;}
.ya2{bottom:414.222533pt;}
.y1a{bottom:414.928000pt;}
.y111{bottom:427.781067pt;}
.y78{bottom:434.610800pt;}
.y52{bottom:434.836133pt;}
.yf2{bottom:435.365067pt;}
.yc9{bottom:435.555733pt;}
.ya1{bottom:435.555867pt;}
.y19{bottom:435.728000pt;}
.y2a{bottom:435.728133pt;}
.y77{bottom:455.944133pt;}
.y51{bottom:456.169467pt;}
.y18{bottom:456.528000pt;}
.y29{bottom:456.528133pt;}
.yf1{bottom:456.698400pt;}
.yc8{bottom:456.889067pt;}
.ya0{bottom:456.889200pt;}
.y110{bottom:467.781067pt;}
.y76{bottom:477.277467pt;}
.y17{bottom:477.328000pt;}
.y28{bottom:477.328133pt;}
.y50{bottom:477.502800pt;}
.yf0{bottom:478.031733pt;}
.yc7{bottom:478.222400pt;}
.y9f{bottom:478.222533pt;}
.y16{bottom:498.128000pt;}
.y27{bottom:498.128133pt;}
.y75{bottom:498.610800pt;}
.y4f{bottom:498.836133pt;}
.yef{bottom:499.365067pt;}
.yc6{bottom:499.555733pt;}
.y9e{bottom:499.555867pt;}
.y10f{bottom:507.781067pt;}
.y15{bottom:518.928000pt;}
.y74{bottom:519.944133pt;}
.y4e{bottom:520.169467pt;}
.yee{bottom:520.698400pt;}
.yc5{bottom:520.889067pt;}
.y9d{bottom:520.889200pt;}
.y10e{bottom:527.781067pt;}
.y14{bottom:539.728000pt;}
.y73{bottom:541.277467pt;}
.y4d{bottom:541.502800pt;}
.yed{bottom:542.031733pt;}
.yc4{bottom:542.222400pt;}
.y9c{bottom:542.222533pt;}
.y13{bottom:560.528000pt;}
.y72{bottom:562.610800pt;}
.y4c{bottom:562.836133pt;}
.yec{bottom:563.365067pt;}
.yc3{bottom:563.555733pt;}
.y9b{bottom:563.555867pt;}
.y10d{bottom:567.781067pt;}
.y12{bottom:581.328000pt;}
.y4b{bottom:584.169467pt;}
.yeb{bottom:584.698400pt;}
.yc2{bottom:584.889067pt;}
.y9a{bottom:584.889200pt;}
.y10c{bottom:587.781067pt;}
.y11{bottom:602.128000pt;}
.y71{bottom:605.277467pt;}
.y4a{bottom:605.502800pt;}
.yea{bottom:606.031733pt;}
.yc1{bottom:606.222400pt;}
.y99{bottom:606.222533pt;}
.y10{bottom:622.928000pt;}
.y49{bottom:626.836133pt;}
.ye9{bottom:627.365067pt;}
.yc0{bottom:627.555733pt;}
.y98{bottom:627.555867pt;}
.y10b{bottom:627.781067pt;}
.yf{bottom:643.728000pt;}
.y10a{bottom:647.781067pt;}
.y48{bottom:648.169467pt;}
.ye8{bottom:648.698400pt;}
.ybf{bottom:648.889067pt;}
.y97{bottom:648.889200pt;}
.ye{bottom:664.528000pt;}
.y109{bottom:667.781067pt;}
.y70{bottom:669.277467pt;}
.y47{bottom:669.502800pt;}
.ye7{bottom:670.031733pt;}
.ybe{bottom:670.222400pt;}
.y96{bottom:670.222533pt;}
.y108{bottom:687.781067pt;}
.y6f{bottom:690.610800pt;}
.y46{bottom:690.836133pt;}
.ye6{bottom:691.365067pt;}
.ybd{bottom:691.555733pt;}
.y95{bottom:691.555867pt;}
.y39{bottom:698.766933pt;}
.yd{bottom:708.878533pt;}
.y38{bottom:710.766933pt;}
.y6e{bottom:711.944133pt;}
.y45{bottom:712.169467pt;}
.ye5{bottom:712.698400pt;}
.ybc{bottom:712.889067pt;}
.y94{bottom:712.889200pt;}
.yc{bottom:726.478533pt;}
.y107{bottom:727.781067pt;}
.y6d{bottom:733.277467pt;}
.y44{bottom:733.502800pt;}
.ye4{bottom:734.031733pt;}
.ybb{bottom:734.222400pt;}
.y93{bottom:734.222533pt;}
.yb{bottom:744.078533pt;}
.y6c{bottom:754.610800pt;}
.y43{bottom:754.836133pt;}
.ye3{bottom:755.365067pt;}
.yba{bottom:755.555733pt;}
.y92{bottom:755.555867pt;}
.ya{bottom:761.678533pt;}
.y106{bottom:767.781067pt;}
.y6b{bottom:775.944133pt;}
.y42{bottom:776.169467pt;}
.ye2{bottom:776.698400pt;}
.yb9{bottom:776.889067pt;}
.y91{bottom:776.889200pt;}
.y9{bottom:779.278533pt;}
.y6a{bottom:797.277467pt;}
.y41{bottom:797.502800pt;}
.ye1{bottom:798.031733pt;}
.yb8{bottom:798.222400pt;}
.y90{bottom:798.222533pt;}
.y8{bottom:803.278533pt;}
.y105{bottom:807.781067pt;}
.y69{bottom:818.610800pt;}
.y40{bottom:818.836133pt;}
.ye0{bottom:819.365067pt;}
.yb7{bottom:819.555733pt;}
.y8f{bottom:819.555867pt;}
.y7{bottom:820.878533pt;}
.y68{bottom:839.944133pt;}
.y3f{bottom:840.169467pt;}
.ydf{bottom:840.698400pt;}
.yb6{bottom:840.889067pt;}
.y8e{bottom:840.889200pt;}
.y104{bottom:847.781067pt;}
.y67{bottom:861.277467pt;}
.y3e{bottom:861.502800pt;}
.yde{bottom:862.031733pt;}
.yb5{bottom:862.222400pt;}
.y8d{bottom:862.222533pt;}
.y6{bottom:862.603067pt;}
.y103{bottom:867.781067pt;}
.y66{bottom:882.610800pt;}
.y3d{bottom:882.836133pt;}
.ydd{bottom:883.365067pt;}
.yb4{bottom:883.555733pt;}
.y8c{bottom:883.555867pt;}
.y5{bottom:886.603067pt;}
.y102{bottom:887.781067pt;}
.y65{bottom:903.944133pt;}
.ydc{bottom:904.698400pt;}
.yb3{bottom:904.889067pt;}
.y8b{bottom:904.889200pt;}
.y101{bottom:907.781067pt;}
.y4{bottom:925.113867pt;}
.y64{bottom:925.277467pt;}
.y3c{bottom:925.502800pt;}
.ydb{bottom:926.031733pt;}
.yb2{bottom:926.222400pt;}
.y8a{bottom:926.222533pt;}
.y63{bottom:946.610800pt;}
.yda{bottom:947.365067pt;}
.yb1{bottom:947.555733pt;}
.y89{bottom:947.555867pt;}
.y100{bottom:947.781067pt;}
.y3{bottom:949.113867pt;}
.hb{height:37.672683pt;}
.hc{height:49.706667pt;}
.he{height:51.653333pt;}
.ha{height:52.000000pt;}
.hd{height:52.507812pt;}
.h8{height:53.295407pt;}
.h7{height:54.677333pt;}
.h3{height:57.281250pt;}
.h4{height:60.000000pt;}
.h9{height:62.054688pt;}
.hf{height:62.133333pt;}
.h6{height:64.618667pt;}
.h2{height:71.601562pt;}
.h5{height:72.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:31.023600pt;}
.x11{left:41.023600pt;}
.x10{left:74.645600pt;}
.xd{left:75.590533pt;}
.x2{left:76.535467pt;}
.x13{left:113.385867pt;}
.x3{left:142.216667pt;}
.x4{left:160.545200pt;}
.x5{left:207.888000pt;}
.x6{left:239.499333pt;}
.x9{left:313.475200pt;}
.x8{left:319.373733pt;}
.x7{left:337.273067pt;}
.xc{left:339.026933pt;}
.xb{left:353.839867pt;}
.xa{left:373.654000pt;}
.xe{left:419.527600pt;}
.xf{left:605.669333pt;}
.x12{left:624.072533pt;}
.x1{left:743.622133pt;}
}




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