
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_337b737bb85a41359b5beb01.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_1b9ac63b9017563f3ecf0956.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_3072784579ba7f225b243c10.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_029c302f77e9e8baf3e9bad2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_2b3c82b3cf1ffc2c5e87942f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_129afab2ec28b2ee481129a2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a87cf71d0ee5002d87b9c3eb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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);}
.v1{vertical-align:-66.960000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.642000px;}
.ls11{letter-spacing:-0.567600px;}
.lsa{letter-spacing:-0.414600px;}
.ls9{letter-spacing:-0.274800px;}
.lse{letter-spacing:-0.262200px;}
.ls15{letter-spacing:-0.152400px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.lsd{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.262080px;}
.ls6{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.567600px;}
.ls2{letter-spacing:5.040000px;}
.ls14{letter-spacing:6.785280px;}
.ls10{letter-spacing:11.520000px;}
.ls13{letter-spacing:39.905280px;}
.ls7{letter-spacing:59.345280px;}
.ls8{letter-spacing:64.026720px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.wsc{word-spacing:-59.760000px;}
.ws8{word-spacing:-28.712400px;}
.ws1{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.127600px;}
.ws3{word-spacing:-16.865400px;}
.wse{word-spacing:-16.712400px;}
.wsd{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.407600px;}
.wsf{word-spacing:-16.297800px;}
.ws9{word-spacing:-16.145400px;}
.ws10{word-spacing:-15.992400px;}
.ws11{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.300000px;}
.ws7{word-spacing:-13.939200px;}
.ws6{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._1f{margin-left:-2.223360px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._8{width:2.980800px;}
._7{width:4.038240px;}
._6{width:5.306880px;}
._13{width:6.422880px;}
._5{width:7.683840px;}
._9{width:8.740800px;}
._a{width:10.168320px;}
._12{width:11.525760px;}
._4{width:12.737280px;}
._1e{width:13.872000px;}
._3{width:15.079680px;}
._c{width:17.676000px;}
._b{width:19.157760px;}
._11{width:20.198880px;}
._1d{width:21.687840px;}
._17{width:22.786560px;}
._18{width:23.912640px;}
._1c{width:25.355520px;}
._1a{width:26.974080px;}
._d{width:28.152000px;}
._1b{width:29.557440px;}
._23{width:31.530240px;}
._34{width:32.935680px;}
._30{width:34.231680px;}
._15{width:35.372160px;}
._f{width:36.696960px;}
._10{width:37.704960px;}
._19{width:38.736000px;}
._16{width:40.340160px;}
._29{width:41.765760px;}
._2a{width:43.421760px;}
._3a{width:44.461440px;}
._24{width:46.221120px;}
._2f{width:47.361600px;}
._e{width:48.965760px;}
._14{width:50.541120px;}
._35{width:52.770240px;}
._21{width:54.238080px;}
._20{width:55.676160px;}
._3e{width:56.712960px;}
._33{width:58.040640px;}
._25{width:60.212160px;}
._26{width:61.272000px;}
._32{width:62.478720px;}
._31{width:63.656640px;}
._2e{width:64.915200px;}
._2b{width:66.902400px;}
._3b{width:67.976640px;}
._39{width:69.572160px;}
._27{width:73.893120px;}
._28{width:75.096960px;}
._2d{width:76.176000px;}
._22{width:77.515200px;}
._38{width:78.583680px;}
._37{width:86.310720px;}
._36{width:87.871680px;}
._2c{width:101.413440px;}
._3d{width:124.332480px;}
._3c{width:125.345280px;}
._2{width:961.680000px;}
.fc8{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(13,13,13);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y91{bottom:13.500000px;}
.ybd{bottom:13.530000px;}
.ye3{bottom:13.545000px;}
.y9e{bottom:13.680000px;}
.yb1{bottom:13.725000px;}
.ya{bottom:20.880000px;}
.y37{bottom:30.600000px;}
.ye9{bottom:41.934000px;}
.yd3{bottom:41.940000px;}
.yd0{bottom:41.970000px;}
.yd8{bottom:41.985000px;}
.yef{bottom:42.120000px;}
.y93{bottom:42.660000px;}
.y97{bottom:42.705000px;}
.y9b{bottom:42.840000px;}
.ya3{bottom:42.870000px;}
.y36{bottom:46.980000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y35{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.yce{bottom:71.130000px;}
.ye6{bottom:71.280000px;}
.yab{bottom:71.820000px;}
.yb4{bottom:72.000000px;}
.ybb{bottom:72.030000px;}
.yaf{bottom:72.045000px;}
.y34{bottom:79.056000px;}
.y30{bottom:97.596000px;}
.y107{bottom:98.676000px;}
.yed{bottom:100.260000px;}
.yf3{bottom:100.305000px;}
.yd6{bottom:100.440000px;}
.yb7{bottom:102.276000px;}
.y6e{bottom:105.156000px;}
.ye8{bottom:109.116000px;}
.y5d{bottom:109.836000px;}
.y8e{bottom:113.076000px;}
.ycc{bottom:122.256000px;}
.y2f{bottom:126.036000px;}
.y106{bottom:127.116000px;}
.yd1{bottom:128.700000px;}
.yf2{bottom:128.745000px;}
.ydb{bottom:128.880000px;}
.yf9{bottom:128.910000px;}
.yd5{bottom:128.925000px;}
.yb8{bottom:131.616000px;}
.y6d{bottom:133.596000px;}
.y5c{bottom:138.456000px;}
.y8d{bottom:141.516000px;}
.ycb{bottom:150.690000px;}
.y2e{bottom:154.470000px;}
.y105{bottom:155.550000px;}
.yb3{bottom:160.770000px;}
.y6c{bottom:161.670000px;}
.ye5{bottom:166.710000px;}
.y5b{bottom:166.890000px;}
.y75{bottom:170.310000px;}
.yca{bottom:179.130000px;}
.y2d{bottom:182.910000px;}
.y108{bottom:183.630000px;}
.y104{bottom:183.990000px;}
.yb6{bottom:189.930000px;}
.y6b{bottom:190.470000px;}
.y10c{bottom:194.970000px;}
.y5a{bottom:195.330000px;}
.ye7{bottom:196.050000px;}
.y74{bottom:198.750000px;}
.yc9{bottom:207.570000px;}
.y2c{bottom:211.350000px;}
.y103{bottom:212.430000px;}
.y6a{bottom:219.090000px;}
.yb5{bottom:219.270000px;}
.y73{bottom:223.410000px;}
.y59{bottom:223.770000px;}
.yc8{bottom:236.010000px;}
.y2b{bottom:239.790000px;}
.y102{bottom:241.050000px;}
.y69{bottom:247.530000px;}
.yae{bottom:248.430000px;}
.y58{bottom:252.210000px;}
.y8c{bottom:257.790000px;}
.yc7{bottom:264.450000px;}
.ye4{bottom:267.150000px;}
.y2a{bottom:268.230000px;}
.y101{bottom:269.490000px;}
.y68{bottom:275.970000px;}
.yb2{bottom:277.590000px;}
.y57{bottom:280.650000px;}
.ye0{bottom:282.810000px;}
.y8b{bottom:286.230000px;}
.yc6{bottom:293.070000px;}
.y29{bottom:296.850000px;}
.y100{bottom:297.930000px;}
.y67{bottom:304.050000px;}
.yb0{bottom:306.750000px;}
.y56{bottom:309.090000px;}
.ye2{bottom:312.150000px;}
.y8a{bottom:315.030000px;}
.yc5{bottom:321.555000px;}
.y28{bottom:325.335000px;}
.yff{bottom:326.415000px;}
.y66{bottom:333.075000px;}
.yaa{bottom:336.135000px;}
.y55{bottom:337.575000px;}
.y89{bottom:343.515000px;}
.yc4{bottom:349.995000px;}
.y27{bottom:353.775000px;}
.yfe{bottom:354.855000px;}
.y65{bottom:362.235000px;}
.yad{bottom:365.295000px;}
.y54{bottom:366.015000px;}
.ye1{bottom:369.795000px;}
.y88{bottom:371.955000px;}
.yc3{bottom:374.475000px;}
.y26{bottom:382.215000px;}
.yfd{bottom:383.295000px;}
.y64{bottom:391.035000px;}
.yac{bottom:394.455000px;}
.y53{bottom:394.635000px;}
.y87{bottom:400.395000px;}
.y25{bottom:410.655000px;}
.yfc{bottom:411.735000px;}
.y63{bottom:419.655000px;}
.y52{bottom:423.075000px;}
.ya9{bottom:423.795000px;}
.yde{bottom:427.395000px;}
.y86{bottom:428.835000px;}
.y24{bottom:438.735000px;}
.y31{bottom:439.095000px;}
.yfb{bottom:440.175000px;}
.y72{bottom:440.355000px;}
.y62{bottom:449.175000px;}
.y51{bottom:451.155000px;}
.y10a{bottom:451.515000px;}
.ya8{bottom:452.955000px;}
.yf8{bottom:455.835000px;}
.ydf{bottom:456.735000px;}
.y85{bottom:457.455000px;}
.y71{bottom:468.795000px;}
.y23{bottom:471.315000px;}
.y61{bottom:477.615000px;}
.y50{bottom:479.595000px;}
.y109{bottom:479.955000px;}
.yfa{bottom:485.175000px;}
.y84{bottom:485.895000px;}
.y70{bottom:493.275000px;}
.ya7{bottom:495.615000px;}
.y22{bottom:499.755000px;}
.y60{bottom:507.135000px;}
.y4f{bottom:508.395000px;}
.y83{bottom:514.335000px;}
.ya6{bottom:524.055000px;}
.y21{bottom:528.195000px;}
.y5f{bottom:535.755000px;}
.y4e{bottom:536.835000px;}
.ya2{bottom:539.715000px;}
.y82{bottom:542.775000px;}
.y20{bottom:556.635000px;}
.y5e{bottom:564.915000px;}
.y4d{bottom:565.275000px;}
.ya5{bottom:569.085000px;}
.y81{bottom:571.245000px;}
.yda{bottom:571.965000px;}
.y1f{bottom:585.105000px;}
.y10e{bottom:593.385000px;}
.y4c{bottom:593.745000px;}
.ya4{bottom:598.245000px;}
.y80{bottom:599.685000px;}
.yf5{bottom:600.585000px;}
.ydd{bottom:601.305000px;}
.y1e{bottom:613.725000px;}
.y10d{bottom:621.825000px;}
.y4b{bottom:622.185000px;}
.y9f{bottom:627.405000px;}
.y7f{bottom:628.125000px;}
.yf7{bottom:629.745000px;}
.y1d{bottom:642.165000px;}
.y4a{bottom:650.805000px;}
.y7e{bottom:656.565000px;}
.ya1{bottom:656.745000px;}
.ydc{bottom:658.905000px;}
.yc2{bottom:661.065000px;}
.y1c{bottom:670.605000px;}
.y10b{bottom:678.885000px;}
.y49{bottom:679.245000px;}
.y7d{bottom:685.005000px;}
.yc1{bottom:685.725000px;}
.ya0{bottom:685.905000px;}
.yf6{bottom:687.345000px;}
.y1b{bottom:699.045000px;}
.y48{bottom:707.685000px;}
.y7c{bottom:713.265000px;}
.y9a{bottom:715.065000px;}
.yd4{bottom:716.505000px;}
.y1a{bottom:727.485000px;}
.y47{bottom:736.125000px;}
.y7b{bottom:742.065000px;}
.y9d{bottom:744.225000px;}
.yf1{bottom:745.125000px;}
.yd9{bottom:745.845000px;}
.y19{bottom:755.925000px;}
.y46{bottom:764.565000px;}
.y7a{bottom:770.505000px;}
.y9c{bottom:773.565000px;}
.yf4{bottom:774.285000px;}
.y18{bottom:784.365000px;}
.y45{bottom:793.005000px;}
.y79{bottom:798.945000px;}
.y96{bottom:802.725000px;}
.yd7{bottom:803.445000px;}
.y17{bottom:818.745000px;}
.y44{bottom:821.490000px;}
.y78{bottom:827.070000px;}
.y99{bottom:831.930000px;}
.y16{bottom:847.230000px;}
.y43{bottom:849.930000px;}
.y77{bottom:855.870000px;}
.y98{bottom:861.270000px;}
.y15{bottom:875.850000px;}
.y42{bottom:878.370000px;}
.y76{bottom:880.350000px;}
.yec{bottom:889.710000px;}
.y92{bottom:890.430000px;}
.y14{bottom:904.290000px;}
.y41{bottom:906.990000px;}
.yf0{bottom:918.870000px;}
.y95{bottom:919.590000px;}
.y13{bottom:932.730000px;}
.y40{bottom:935.430000px;}
.yd2{bottom:948.030000px;}
.y94{bottom:948.750000px;}
.yc0{bottom:960.090000px;}
.y12{bottom:961.170000px;}
.y3f{bottom:963.870000px;}
.yee{bottom:976.470000px;}
.y90{bottom:978.090000px;}
.y11{bottom:983.310000px;}
.ybf{bottom:988.530000px;}
.y3e{bottom:992.310000px;}
.yba{bottom:1004.190000px;}
.ycd{bottom:1005.810000px;}
.y10{bottom:1011.750000px;}
.y6f{bottom:1020.390000px;}
.y3d{bottom:1020.750000px;}
.y4{bottom:1032.810000px;}
.ybe{bottom:1033.530000px;}
.yeb{bottom:1034.250000px;}
.ycf{bottom:1034.970000px;}
.y3c{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.ybc{bottom:1062.690000px;}
.yea{bottom:1063.410000px;}
.y2{bottom:1072.620000px;}
.y3b{bottom:1077.660000px;}
.yb9{bottom:1091.880000px;}
.y8f{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h14{height:28.440000px;}
.h17{height:28.476000px;}
.h19{height:28.620000px;}
.h1a{height:28.656000px;}
.h6{height:33.480000px;}
.hb{height:41.250937px;}
.h13{height:47.901094px;}
.h1{height:48.045938px;}
.he{height:52.971680px;}
.hd{height:53.709961px;}
.h7{height:54.421875px;}
.h20{height:56.880000px;}
.h1e{height:56.916000px;}
.h24{height:57.060000px;}
.h1b{height:57.780000px;}
.h2{height:58.621992px;}
.h11{height:60.679688px;}
.h9{height:63.019687px;}
.hc{height:64.745156px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h12{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h1d{height:86.076000px;}
.h23{height:86.220000px;}
.h15{height:86.760000px;}
.h18{height:86.940000px;}
.h16{height:86.976000px;}
.h1c{height:111.043849px;}
.h10{height:111.043854px;}
.h1f{height:143.640000px;}
.h25{height:143.676000px;}
.h22{height:143.820000px;}
.h21{height:143.856000px;}
.h4{height:167.250000px;}
.hf{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w18{width:30.996000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w22{width:41.796000px;}
.wa{width:52.380000px;}
.w12{width:52.416000px;}
.w1c{width:63.000000px;}
.w1b{width:63.036000px;}
.w19{width:73.620000px;}
.w1a{width:73.800000px;}
.wd{width:74.520000px;}
.w24{width:75.420000px;}
.wc{width:84.240000px;}
.w1f{width:84.276000px;}
.w27{width:84.636000px;}
.w25{width:94.860000px;}
.w1e{width:94.896000px;}
.w26{width:95.076000px;}
.w1d{width:105.660000px;}
.w14{width:105.696000px;}
.w13{width:116.100000px;}
.wb{width:116.316000px;}
.w28{width:126.540000px;}
.w11{width:126.720000px;}
.w16{width:126.936000px;}
.w20{width:137.340000px;}
.w15{width:137.520000px;}
.w9{width:137.556000px;}
.w23{width:190.650000px;}
.we{width:201.270000px;}
.w21{width:211.890000px;}
.w17{width:222.510000px;}
.w10{width:265.215000px;}
.w8{width:339.555000px;}
.w3{width:361.335000px;}
.wf{width:807.450000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x26{left:-3.060000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x7{left:10.800000px;}
.x13{left:12.240000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.xd{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x28{left:139.536000px;}
.x1f{left:182.010000px;}
.x18{left:192.630000px;}
.xf{left:214.589986px;}
.x29{left:266.970000px;}
.x21{left:277.770000px;}
.xe{left:306.074986px;}
.x22{left:309.675000px;}
.x1a{left:320.295000px;}
.x19{left:373.935000px;}
.x23{left:384.015000px;}
.x12{left:394.635000px;}
.x1b{left:447.915000px;}
.x24{left:458.535000px;}
.x8{left:482.144986px;}
.x1c{left:501.045000px;}
.xc{left:509.144986px;}
.x5{left:521.025000px;}
.x25{left:522.285000px;}
.x14{left:532.905000px;}
.x20{left:551.264986px;}
.x15{left:586.005000px;}
.x1d{left:617.865000px;}
.x27{left:628.665000px;}
.x10{left:665.204986px;}
.x16{left:703.050000px;}
.x2a{left:713.670000px;}
.x1e{left:724.290000px;}
.x17{left:788.190000px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.570667pt;}
.ls11{letter-spacing:-0.504533pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls9{letter-spacing:-0.244267pt;}
.lse{letter-spacing:-0.233067pt;}
.ls15{letter-spacing:-0.135467pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.lsd{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.232960pt;}
.ls6{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.504533pt;}
.ls2{letter-spacing:4.480000pt;}
.ls14{letter-spacing:6.031360pt;}
.ls10{letter-spacing:10.240000pt;}
.ls13{letter-spacing:35.471360pt;}
.ls7{letter-spacing:52.751360pt;}
.ls8{letter-spacing:56.912640pt;}
.ls0{letter-spacing:184.370347pt;}
.wsb{word-spacing:-58.880000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws8{word-spacing:-25.522133pt;}
.ws1{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.224533pt;}
.ws3{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.855467pt;}
.wsd{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.584533pt;}
.wsf{word-spacing:-14.486933pt;}
.ws9{word-spacing:-14.351467pt;}
.ws10{word-spacing:-14.215467pt;}
.ws11{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws7{word-spacing:-12.390400pt;}
.ws6{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._1f{margin-left:-1.976320pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._8{width:2.649600pt;}
._7{width:3.589547pt;}
._6{width:4.717227pt;}
._13{width:5.709227pt;}
._5{width:6.830080pt;}
._9{width:7.769600pt;}
._a{width:9.038507pt;}
._12{width:10.245120pt;}
._4{width:11.322027pt;}
._1e{width:12.330667pt;}
._3{width:13.404160pt;}
._c{width:15.712000pt;}
._b{width:17.029120pt;}
._11{width:17.954560pt;}
._1d{width:19.278080pt;}
._17{width:20.254720pt;}
._18{width:21.255680pt;}
._1c{width:22.538240pt;}
._1a{width:23.976960pt;}
._d{width:25.024000pt;}
._1b{width:26.273280pt;}
._23{width:28.026880pt;}
._34{width:29.276160pt;}
._30{width:30.428160pt;}
._15{width:31.441920pt;}
._f{width:32.619520pt;}
._10{width:33.515520pt;}
._19{width:34.432000pt;}
._16{width:35.857920pt;}
._29{width:37.125120pt;}
._2a{width:38.597120pt;}
._3a{width:39.521280pt;}
._24{width:41.085440pt;}
._2f{width:42.099200pt;}
._e{width:43.525120pt;}
._14{width:44.925440pt;}
._35{width:46.906880pt;}
._21{width:48.211627pt;}
._20{width:49.489920pt;}
._3e{width:50.411520pt;}
._33{width:51.591680pt;}
._25{width:53.521920pt;}
._26{width:54.464000pt;}
._32{width:55.536640pt;}
._31{width:56.583680pt;}
._2e{width:57.702400pt;}
._2b{width:59.468800pt;}
._3b{width:60.423680pt;}
._39{width:61.841920pt;}
._27{width:65.682773pt;}
._28{width:66.752853pt;}
._2d{width:67.712000pt;}
._22{width:68.902400pt;}
._38{width:69.852160pt;}
._37{width:76.720640pt;}
._36{width:78.108160pt;}
._2c{width:90.145280pt;}
._3d{width:110.517760pt;}
._3c{width:111.418027pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y91{bottom:12.000000pt;}
.ybd{bottom:12.026667pt;}
.ye3{bottom:12.040000pt;}
.y9e{bottom:12.160000pt;}
.yb1{bottom:12.200000pt;}
.ya{bottom:18.560000pt;}
.y37{bottom:27.200000pt;}
.ye9{bottom:37.274667pt;}
.yd3{bottom:37.280000pt;}
.yd0{bottom:37.306667pt;}
.yd8{bottom:37.320000pt;}
.yef{bottom:37.440000pt;}
.y93{bottom:37.920000pt;}
.y97{bottom:37.960000pt;}
.y9b{bottom:38.080000pt;}
.ya3{bottom:38.106667pt;}
.y36{bottom:41.760000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y35{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.yce{bottom:63.226667pt;}
.ye6{bottom:63.360000pt;}
.yab{bottom:63.840000pt;}
.yb4{bottom:64.000000pt;}
.ybb{bottom:64.026667pt;}
.yaf{bottom:64.040000pt;}
.y34{bottom:70.272000pt;}
.y30{bottom:86.752000pt;}
.y107{bottom:87.712000pt;}
.yed{bottom:89.120000pt;}
.yf3{bottom:89.160000pt;}
.yd6{bottom:89.280000pt;}
.yb7{bottom:90.912000pt;}
.y6e{bottom:93.472000pt;}
.ye8{bottom:96.992000pt;}
.y5d{bottom:97.632000pt;}
.y8e{bottom:100.512000pt;}
.ycc{bottom:108.672000pt;}
.y2f{bottom:112.032000pt;}
.y106{bottom:112.992000pt;}
.yd1{bottom:114.400000pt;}
.yf2{bottom:114.440000pt;}
.ydb{bottom:114.560000pt;}
.yf9{bottom:114.586667pt;}
.yd5{bottom:114.600000pt;}
.yb8{bottom:116.992000pt;}
.y6d{bottom:118.752000pt;}
.y5c{bottom:123.072000pt;}
.y8d{bottom:125.792000pt;}
.ycb{bottom:133.946667pt;}
.y2e{bottom:137.306667pt;}
.y105{bottom:138.266667pt;}
.yb3{bottom:142.906667pt;}
.y6c{bottom:143.706667pt;}
.ye5{bottom:148.186667pt;}
.y5b{bottom:148.346667pt;}
.y75{bottom:151.386667pt;}
.yca{bottom:159.226667pt;}
.y2d{bottom:162.586667pt;}
.y108{bottom:163.226667pt;}
.y104{bottom:163.546667pt;}
.yb6{bottom:168.826667pt;}
.y6b{bottom:169.306667pt;}
.y10c{bottom:173.306667pt;}
.y5a{bottom:173.626667pt;}
.ye7{bottom:174.266667pt;}
.y74{bottom:176.666667pt;}
.yc9{bottom:184.506667pt;}
.y2c{bottom:187.866667pt;}
.y103{bottom:188.826667pt;}
.y6a{bottom:194.746667pt;}
.yb5{bottom:194.906667pt;}
.y73{bottom:198.586667pt;}
.y59{bottom:198.906667pt;}
.yc8{bottom:209.786667pt;}
.y2b{bottom:213.146667pt;}
.y102{bottom:214.266667pt;}
.y69{bottom:220.026667pt;}
.yae{bottom:220.826667pt;}
.y58{bottom:224.186667pt;}
.y8c{bottom:229.146667pt;}
.yc7{bottom:235.066667pt;}
.ye4{bottom:237.466667pt;}
.y2a{bottom:238.426667pt;}
.y101{bottom:239.546667pt;}
.y68{bottom:245.306667pt;}
.yb2{bottom:246.746667pt;}
.y57{bottom:249.466667pt;}
.ye0{bottom:251.386667pt;}
.y8b{bottom:254.426667pt;}
.yc6{bottom:260.506667pt;}
.y29{bottom:263.866667pt;}
.y100{bottom:264.826667pt;}
.y67{bottom:270.266667pt;}
.yb0{bottom:272.666667pt;}
.y56{bottom:274.746667pt;}
.ye2{bottom:277.466667pt;}
.y8a{bottom:280.026667pt;}
.yc5{bottom:285.826667pt;}
.y28{bottom:289.186667pt;}
.yff{bottom:290.146667pt;}
.y66{bottom:296.066667pt;}
.yaa{bottom:298.786667pt;}
.y55{bottom:300.066667pt;}
.y89{bottom:305.346667pt;}
.yc4{bottom:311.106667pt;}
.y27{bottom:314.466667pt;}
.yfe{bottom:315.426667pt;}
.y65{bottom:321.986667pt;}
.yad{bottom:324.706667pt;}
.y54{bottom:325.346667pt;}
.ye1{bottom:328.706667pt;}
.y88{bottom:330.626667pt;}
.yc3{bottom:332.866667pt;}
.y26{bottom:339.746667pt;}
.yfd{bottom:340.706667pt;}
.y64{bottom:347.586667pt;}
.yac{bottom:350.626667pt;}
.y53{bottom:350.786667pt;}
.y87{bottom:355.906667pt;}
.y25{bottom:365.026667pt;}
.yfc{bottom:365.986667pt;}
.y63{bottom:373.026667pt;}
.y52{bottom:376.066667pt;}
.ya9{bottom:376.706667pt;}
.yde{bottom:379.906667pt;}
.y86{bottom:381.186667pt;}
.y24{bottom:389.986667pt;}
.y31{bottom:390.306667pt;}
.yfb{bottom:391.266667pt;}
.y72{bottom:391.426667pt;}
.y62{bottom:399.266667pt;}
.y51{bottom:401.026667pt;}
.y10a{bottom:401.346667pt;}
.ya8{bottom:402.626667pt;}
.yf8{bottom:405.186667pt;}
.ydf{bottom:405.986667pt;}
.y85{bottom:406.626667pt;}
.y71{bottom:416.706667pt;}
.y23{bottom:418.946667pt;}
.y61{bottom:424.546667pt;}
.y50{bottom:426.306667pt;}
.y109{bottom:426.626667pt;}
.yfa{bottom:431.266667pt;}
.y84{bottom:431.906667pt;}
.y70{bottom:438.466667pt;}
.ya7{bottom:440.546667pt;}
.y22{bottom:444.226667pt;}
.y60{bottom:450.786667pt;}
.y4f{bottom:451.906667pt;}
.y83{bottom:457.186667pt;}
.ya6{bottom:465.826667pt;}
.y21{bottom:469.506667pt;}
.y5f{bottom:476.226667pt;}
.y4e{bottom:477.186667pt;}
.ya2{bottom:479.746667pt;}
.y82{bottom:482.466667pt;}
.y20{bottom:494.786667pt;}
.y5e{bottom:502.146667pt;}
.y4d{bottom:502.466667pt;}
.ya5{bottom:505.853333pt;}
.y81{bottom:507.773333pt;}
.yda{bottom:508.413333pt;}
.y1f{bottom:520.093333pt;}
.y10e{bottom:527.453333pt;}
.y4c{bottom:527.773333pt;}
.ya4{bottom:531.773333pt;}
.y80{bottom:533.053333pt;}
.yf5{bottom:533.853333pt;}
.ydd{bottom:534.493333pt;}
.y1e{bottom:545.533333pt;}
.y10d{bottom:552.733333pt;}
.y4b{bottom:553.053333pt;}
.y9f{bottom:557.693333pt;}
.y7f{bottom:558.333333pt;}
.yf7{bottom:559.773333pt;}
.y1d{bottom:570.813333pt;}
.y4a{bottom:578.493333pt;}
.y7e{bottom:583.613333pt;}
.ya1{bottom:583.773333pt;}
.ydc{bottom:585.693333pt;}
.yc2{bottom:587.613333pt;}
.y1c{bottom:596.093333pt;}
.y10b{bottom:603.453333pt;}
.y49{bottom:603.773333pt;}
.y7d{bottom:608.893333pt;}
.yc1{bottom:609.533333pt;}
.ya0{bottom:609.693333pt;}
.yf6{bottom:610.973333pt;}
.y1b{bottom:621.373333pt;}
.y48{bottom:629.053333pt;}
.y7c{bottom:634.013333pt;}
.y9a{bottom:635.613333pt;}
.yd4{bottom:636.893333pt;}
.y1a{bottom:646.653333pt;}
.y47{bottom:654.333333pt;}
.y7b{bottom:659.613333pt;}
.y9d{bottom:661.533333pt;}
.yf1{bottom:662.333333pt;}
.yd9{bottom:662.973333pt;}
.y19{bottom:671.933333pt;}
.y46{bottom:679.613333pt;}
.y7a{bottom:684.893333pt;}
.y9c{bottom:687.613333pt;}
.yf4{bottom:688.253333pt;}
.y18{bottom:697.213333pt;}
.y45{bottom:704.893333pt;}
.y79{bottom:710.173333pt;}
.y96{bottom:713.533333pt;}
.yd7{bottom:714.173333pt;}
.y17{bottom:727.773333pt;}
.y44{bottom:730.213333pt;}
.y78{bottom:735.173333pt;}
.y99{bottom:739.493333pt;}
.y16{bottom:753.093333pt;}
.y43{bottom:755.493333pt;}
.y77{bottom:760.773333pt;}
.y98{bottom:765.573333pt;}
.y15{bottom:778.533333pt;}
.y42{bottom:780.773333pt;}
.y76{bottom:782.533333pt;}
.yec{bottom:790.853333pt;}
.y92{bottom:791.493333pt;}
.y14{bottom:803.813333pt;}
.y41{bottom:806.213333pt;}
.yf0{bottom:816.773333pt;}
.y95{bottom:817.413333pt;}
.y13{bottom:829.093333pt;}
.y40{bottom:831.493333pt;}
.yd2{bottom:842.693333pt;}
.y94{bottom:843.333333pt;}
.yc0{bottom:853.413333pt;}
.y12{bottom:854.373333pt;}
.y3f{bottom:856.773333pt;}
.yee{bottom:867.973333pt;}
.y90{bottom:869.413333pt;}
.y11{bottom:874.053333pt;}
.ybf{bottom:878.693333pt;}
.y3e{bottom:882.053333pt;}
.yba{bottom:892.613333pt;}
.ycd{bottom:894.053333pt;}
.y10{bottom:899.333333pt;}
.y6f{bottom:907.013333pt;}
.y3d{bottom:907.333333pt;}
.y4{bottom:918.053333pt;}
.ybe{bottom:918.693333pt;}
.yeb{bottom:919.333333pt;}
.ycf{bottom:919.973333pt;}
.y3c{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.ybc{bottom:944.613333pt;}
.yea{bottom:945.253333pt;}
.y2{bottom:953.440000pt;}
.y3b{bottom:957.920000pt;}
.yb9{bottom:970.560000pt;}
.y8f{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h14{height:25.280000pt;}
.h17{height:25.312000pt;}
.h19{height:25.440000pt;}
.h1a{height:25.472000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.h13{height:42.578750pt;}
.h1{height:42.707500pt;}
.he{height:47.085938pt;}
.hd{height:47.742188pt;}
.h7{height:48.375000pt;}
.h20{height:50.560000pt;}
.h1e{height:50.592000pt;}
.h24{height:50.720000pt;}
.h1b{height:51.360000pt;}
.h2{height:52.108438pt;}
.h11{height:53.937500pt;}
.h9{height:56.017500pt;}
.hc{height:57.551250pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h12{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h1d{height:76.512000pt;}
.h23{height:76.640000pt;}
.h15{height:77.120000pt;}
.h18{height:77.280000pt;}
.h16{height:77.312000pt;}
.h1c{height:98.705643pt;}
.h10{height:98.705648pt;}
.h1f{height:127.680000pt;}
.h25{height:127.712000pt;}
.h22{height:127.840000pt;}
.h21{height:127.872000pt;}
.h4{height:148.666667pt;}
.hf{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w18{width:27.552000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w22{width:37.152000pt;}
.wa{width:46.560000pt;}
.w12{width:46.592000pt;}
.w1c{width:56.000000pt;}
.w1b{width:56.032000pt;}
.w19{width:65.440000pt;}
.w1a{width:65.600000pt;}
.wd{width:66.240000pt;}
.w24{width:67.040000pt;}
.wc{width:74.880000pt;}
.w1f{width:74.912000pt;}
.w27{width:75.232000pt;}
.w25{width:84.320000pt;}
.w1e{width:84.352000pt;}
.w26{width:84.512000pt;}
.w1d{width:93.920000pt;}
.w14{width:93.952000pt;}
.w13{width:103.200000pt;}
.wb{width:103.392000pt;}
.w28{width:112.480000pt;}
.w11{width:112.640000pt;}
.w16{width:112.832000pt;}
.w20{width:122.080000pt;}
.w15{width:122.240000pt;}
.w9{width:122.272000pt;}
.w23{width:169.466667pt;}
.we{width:178.906667pt;}
.w21{width:188.346667pt;}
.w17{width:197.786667pt;}
.w10{width:235.746667pt;}
.w8{width:301.826667pt;}
.w3{width:321.186667pt;}
.wf{width:717.733333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x26{left:-2.720000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x7{left:9.600000pt;}
.x13{left:10.880000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.xd{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x28{left:124.032000pt;}
.x1f{left:161.786667pt;}
.x18{left:171.226667pt;}
.xf{left:190.746655pt;}
.x29{left:237.306667pt;}
.x21{left:246.906667pt;}
.xe{left:272.066655pt;}
.x22{left:275.266667pt;}
.x1a{left:284.706667pt;}
.x19{left:332.386667pt;}
.x23{left:341.346667pt;}
.x12{left:350.786667pt;}
.x1b{left:398.146667pt;}
.x24{left:407.586667pt;}
.x8{left:428.573321pt;}
.x1c{left:445.373333pt;}
.xc{left:452.573321pt;}
.x5{left:463.133333pt;}
.x25{left:464.253333pt;}
.x14{left:473.693333pt;}
.x20{left:490.013321pt;}
.x15{left:520.893333pt;}
.x1d{left:549.213333pt;}
.x27{left:558.813333pt;}
.x10{left:591.293321pt;}
.x16{left:624.933333pt;}
.x2a{left:634.373333pt;}
.x1e{left:643.813333pt;}
.x17{left:700.613333pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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