
    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_e3edd55b47d27bbe979b3645.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_c2d68bcca40f8ba69afdb130.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_e85999e112e90c7b3321dc15.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_7a62402674ea31fd4866e5d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.738770;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_333236c034a95fc5992d92c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_9568e524250466e6b6d68359.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095215;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_810b379bfaa0af30dcb2f01e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.869760px;}
.lsc{letter-spacing:2.304000px;}
.ls3{letter-spacing:3.600000px;}
.lsd{letter-spacing:3.780000px;}
.lsf{letter-spacing:5.220000px;}
.ls1{letter-spacing:64.397280px;}
.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:-48.600000px;}
.ws0{word-spacing:-21.060000px;}
.ws8{word-spacing:-20.016000px;}
.ws4{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws5{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:100.392000px;}
.ws6{word-spacing:671.460000px;}
._22{margin-left:-5.232960px;}
._2{margin-left:-4.173120px;}
._1{margin-left:-2.715840px;}
._0{margin-left:-1.457280px;}
._3{width:1.126080px;}
._e{width:2.407680px;}
._18{width:3.706560px;}
._c{width:4.896000px;}
._d{width:5.904000px;}
._f{width:6.929280px;}
._a{width:7.992000px;}
._b{width:9.072000px;}
._1a{width:10.476000px;}
._14{width:11.501280px;}
._13{width:12.744000px;}
._15{width:13.861440px;}
._5{width:15.163200px;}
._6{width:16.957440px;}
._10{width:19.872000px;}
._17{width:21.024000px;}
._19{width:22.104000px;}
._16{width:23.688000px;}
._1b{width:25.395840px;}
._11{width:30.996000px;}
._12{width:32.292000px;}
._21{width:36.072000px;}
._8{width:37.512000px;}
._7{width:39.028320px;}
._1f{width:80.940000px;}
._4{width:89.403840px;}
._9{width:102.772800px;}
._20{width:109.008000px;}
._1e{width:112.428000px;}
._1d{width:134.508000px;}
._1c{width:168.468000px;}
.fc3{color:transparent;}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs6{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.ydc{bottom:-20.340000px;}
.ydf{bottom:-18.540000px;}
.ycb{bottom:-16.740000px;}
.yc8{bottom:-15.885000px;}
.yd7{bottom:-15.840000px;}
.yaf{bottom:-14.940000px;}
.y0{bottom:0.000000px;}
.ydb{bottom:0.360000px;}
.yd9{bottom:1.260000px;}
.yde{bottom:2.160000px;}
.ye2{bottom:2.700000px;}
.ye0{bottom:3.060000px;}
.yaa{bottom:3.390000px;}
.yca{bottom:3.960000px;}
.yac{bottom:4.680000px;}
.yc7{bottom:4.860000px;}
.yae{bottom:5.760000px;}
.yd5{bottom:5.865000px;}
.y7c{bottom:9.180000px;}
.y83{bottom:9.225000px;}
.y7a{bottom:9.360000px;}
.yc5{bottom:13.215000px;}
.ya1{bottom:26.355000px;}
.yd4{bottom:26.565000px;}
.yc4{bottom:33.945000px;}
.ycd{bottom:48.030000px;}
.ya2{bottom:51.270000px;}
.yba{bottom:55.410000px;}
.ya3{bottom:76.215000px;}
.ybb{bottom:79.485000px;}
.y6{bottom:82.116000px;}
.yce{bottom:87.660000px;}
.ya4{bottom:101.160000px;}
.ybc{bottom:103.575000px;}
.y5{bottom:108.756000px;}
.ya5{bottom:126.075000px;}
.ycf{bottom:127.335000px;}
.ybd{bottom:127.650000px;}
.y4{bottom:135.036000px;}
.ya6{bottom:151.020000px;}
.ybe{bottom:151.770000px;}
.y3{bottom:160.050000px;}
.yd0{bottom:166.965000px;}
.ybf{bottom:175.860000px;}
.ya7{bottom:175.965000px;}
.y2{bottom:179.130000px;}
.y105{bottom:199.650000px;}
.yc0{bottom:199.950000px;}
.y131{bottom:200.010000px;}
.ya8{bottom:200.910000px;}
.yd1{bottom:206.640000px;}
.y32{bottom:207.750000px;}
.y11c{bottom:210.450000px;}
.y88{bottom:217.290000px;}
.y4f{bottom:221.250000px;}
.yc1{bottom:224.025000px;}
.y159{bottom:225.570000px;}
.y104{bottom:225.750000px;}
.ya9{bottom:225.825000px;}
.yb8{bottom:227.910000px;}
.y31{bottom:228.450000px;}
.yb9{bottom:229.320000px;}
.y6b{bottom:230.610000px;}
.y87{bottom:232.230000px;}
.y130{bottom:237.090000px;}
.y103{bottom:240.510000px;}
.y11b{bottom:241.410000px;}
.y9f{bottom:244.650000px;}
.yd2{bottom:246.270000px;}
.yc2{bottom:248.145000px;}
.y30{bottom:249.150000px;}
.y4e{bottom:252.210000px;}
.y86{bottom:256.170000px;}
.y6a{bottom:261.750000px;}
.y102{bottom:264.450000px;}
.y158{bottom:266.970000px;}
.y12f{bottom:268.050000px;}
.y2f{bottom:269.850000px;}
.yc3{bottom:272.235000px;}
.y11a{bottom:272.550000px;}
.y85{bottom:280.110000px;}
.y9e{bottom:281.730000px;}
.y4d{bottom:283.350000px;}
.yd3{bottom:285.945000px;}
.y157{bottom:287.670000px;}
.y101{bottom:288.390000px;}
.y2e{bottom:290.550000px;}
.y69{bottom:292.710000px;}
.y12e{bottom:299.190000px;}
.y119{bottom:303.510000px;}
.y84{bottom:304.230000px;}
.y156{bottom:308.370000px;}
.y2d{bottom:311.250000px;}
.y100{bottom:312.510000px;}
.y4c{bottom:314.310000px;}
.yda{bottom:315.930000px;}
.ydd{bottom:317.190000px;}
.ye1{bottom:317.550000px;}
.y9d{bottom:318.810000px;}
.y68{bottom:323.850000px;}
.y82{bottom:328.170000px;}
.y155{bottom:329.070000px;}
.y12d{bottom:330.150000px;}
.y2c{bottom:331.950000px;}
.y118{bottom:334.650000px;}
.yff{bottom:336.495000px;}
.y4b{bottom:345.495000px;}
.y154{bottom:349.815000px;}
.y81{bottom:352.155000px;}
.y2b{bottom:352.695000px;}
.y67{bottom:354.855000px;}
.y9c{bottom:355.935000px;}
.yfe{bottom:360.435000px;}
.y12c{bottom:361.335000px;}
.yd8{bottom:362.955000px;}
.y117{bottom:365.655000px;}
.y153{bottom:370.515000px;}
.y2a{bottom:373.395000px;}
.y80{bottom:376.095000px;}
.y4a{bottom:376.455000px;}
.yfd{bottom:384.555000px;}
.y66{bottom:385.995000px;}
.y152{bottom:391.215000px;}
.y12b{bottom:392.295000px;}
.y9b{bottom:393.015000px;}
.y29{bottom:394.095000px;}
.y7f{bottom:400.215000px;}
.y116{bottom:402.735000px;}
.y49{bottom:407.595000px;}
.yfc{bottom:408.495000px;}
.y151{bottom:411.915000px;}
.y28{bottom:414.795000px;}
.y65{bottom:416.955000px;}
.y12a{bottom:423.435000px;}
.y7e{bottom:424.155000px;}
.y9a{bottom:430.095000px;}
.yfb{bottom:432.435000px;}
.y150{bottom:432.615000px;}
.y115{bottom:433.695000px;}
.y27{bottom:435.495000px;}
.y48{bottom:438.555000px;}
.y64{bottom:448.095000px;}
.y14f{bottom:453.315000px;}
.y129{bottom:454.395000px;}
.y26{bottom:456.195000px;}
.y114{bottom:464.835000px;}
.yfa{bottom:466.455000px;}
.y99{bottom:466.995000px;}
.y47{bottom:469.695000px;}
.y7d{bottom:472.215000px;}
.y14e{bottom:474.015000px;}
.y25{bottom:476.895000px;}
.y63{bottom:479.055000px;}
.yd6{bottom:481.575000px;}
.y128{bottom:485.535000px;}
.y14d{bottom:494.715000px;}
.y113{bottom:495.795000px;}
.y7b{bottom:496.155000px;}
.y24{bottom:497.595000px;}
.y46{bottom:500.655000px;}
.yf9{bottom:503.535000px;}
.y98{bottom:504.075000px;}
.y62{bottom:510.195000px;}
.y14c{bottom:515.415000px;}
.y127{bottom:516.495000px;}
.y23{bottom:518.295000px;}
.y79{bottom:520.095000px;}
.y112{bottom:526.935000px;}
.y45{bottom:531.795000px;}
.yf8{bottom:534.495000px;}
.yb7{bottom:534.855000px;}
.y14b{bottom:536.115000px;}
.y22{bottom:538.995000px;}
.y61{bottom:541.155000px;}
.y126{bottom:547.635000px;}
.y78{bottom:554.115000px;}
.y14a{bottom:556.815000px;}
.y111{bottom:557.895000px;}
.y21{bottom:559.695000px;}
.y44{bottom:562.755000px;}
.yf7{bottom:565.635000px;}
.yb6{bottom:571.935000px;}
.y97{bottom:572.115000px;}
.y60{bottom:572.295000px;}
.y149{bottom:577.515000px;}
.y20{bottom:580.395000px;}
.y125{bottom:584.715000px;}
.y110{bottom:589.035000px;}
.y77{bottom:591.195000px;}
.yf6{bottom:592.275000px;}
.y43{bottom:593.715000px;}
.y148{bottom:598.215000px;}
.y1f{bottom:601.095000px;}
.y5f{bottom:603.255000px;}
.yb5{bottom:609.045000px;}
.y124{bottom:615.705000px;}
.yf5{bottom:618.225000px;}
.y147{bottom:618.945000px;}
.y10f{bottom:620.025000px;}
.y1e{bottom:621.645000px;}
.y76{bottom:622.185000px;}
.y42{bottom:624.885000px;}
.y5e{bottom:634.245000px;}
.y146{bottom:639.645000px;}
.yb4{bottom:640.005000px;}
.yf4{bottom:641.445000px;}
.y1d{bottom:642.345000px;}
.y123{bottom:646.845000px;}
.y10e{bottom:651.165000px;}
.y75{bottom:653.325000px;}
.y41{bottom:655.845000px;}
.yf3{bottom:658.725000px;}
.y145{bottom:660.345000px;}
.y1c{bottom:663.045000px;}
.y5d{bottom:665.385000px;}
.yb3{bottom:666.645000px;}
.yf2{bottom:673.485000px;}
.y122{bottom:677.805000px;}
.y144{bottom:681.045000px;}
.y10d{bottom:682.125000px;}
.y1b{bottom:683.745000px;}
.y74{bottom:684.285000px;}
.y5c{bottom:686.085000px;}
.y40{bottom:686.985000px;}
.y96{bottom:692.025000px;}
.yb2{bottom:692.745000px;}
.yf1{bottom:697.605000px;}
.y143{bottom:701.745000px;}
.y1a{bottom:704.445000px;}
.y121{bottom:708.945000px;}
.y10c{bottom:713.265000px;}
.y73{bottom:715.425000px;}
.y5b{bottom:717.045000px;}
.y3f{bottom:717.945000px;}
.ycc{bottom:718.740000px;}
.yf0{bottom:721.545000px;}
.y142{bottom:722.445000px;}
.y19{bottom:725.145000px;}
.ya0{bottom:737.460000px;}
.y120{bottom:739.905000px;}
.y95{bottom:741.345000px;}
.y141{bottom:743.145000px;}
.y10b{bottom:744.225000px;}
.yef{bottom:745.485000px;}
.y18{bottom:745.845000px;}
.y72{bottom:746.385000px;}
.y5a{bottom:748.185000px;}
.y3e{bottom:749.085000px;}
.y140{bottom:763.845000px;}
.y94{bottom:764.565000px;}
.y17{bottom:766.545000px;}
.yee{bottom:769.605000px;}
.y11f{bottom:771.045000px;}
.y71{bottom:777.525000px;}
.y59{bottom:779.145000px;}
.y3d{bottom:780.045000px;}
.y10a{bottom:781.305000px;}
.y13f{bottom:784.545000px;}
.y16{bottom:787.245000px;}
.y93{bottom:787.785000px;}
.yed{bottom:793.545000px;}
.y11e{bottom:802.005000px;}
.y13e{bottom:805.245000px;}
.y15{bottom:807.945000px;}
.y70{bottom:808.485000px;}
.y58{bottom:810.285000px;}
.y3c{bottom:811.185000px;}
.y92{bottom:811.725000px;}
.y109{bottom:812.445000px;}
.yec{bottom:817.485000px;}
.yab{bottom:822.345000px;}
.y13d{bottom:825.945000px;}
.y14{bottom:828.645000px;}
.y6f{bottom:829.185000px;}
.y11d{bottom:833.145000px;}
.y91{bottom:838.545000px;}
.y57{bottom:841.245000px;}
.yeb{bottom:841.605000px;}
.y3b{bottom:842.145000px;}
.y108{bottom:843.405000px;}
.y13c{bottom:846.645000px;}
.y13{bottom:849.345000px;}
.y90{bottom:865.185000px;}
.yea{bottom:865.545000px;}
.y13b{bottom:867.345000px;}
.y6e{bottom:868.605000px;}
.y12{bottom:870.045000px;}
.yc6{bottom:870.630000px;}
.y56{bottom:872.430000px;}
.y3a{bottom:873.330000px;}
.y107{bottom:874.590000px;}
.y13a{bottom:888.090000px;}
.y11{bottom:890.790000px;}
.y8f{bottom:891.870000px;}
.ye9{bottom:899.610000px;}
.y6d{bottom:901.230000px;}
.y55{bottom:903.390000px;}
.y39{bottom:904.290000px;}
.y106{bottom:905.550000px;}
.y139{bottom:908.790000px;}
.y10{bottom:911.490000px;}
.y8e{bottom:918.510000px;}
.y138{bottom:929.490000px;}
.yf{bottom:932.190000px;}
.y54{bottom:934.530000px;}
.y38{bottom:935.430000px;}
.ye8{bottom:936.510000px;}
.y8d{bottom:945.330000px;}
.ye{bottom:953.430000px;}
.yad{bottom:956.310000px;}
.y137{bottom:956.670000px;}
.y53{bottom:961.710000px;}
.y6c{bottom:963.330000px;}
.y37{bottom:966.390000px;}
.ye7{bottom:967.650000px;}
.y8c{bottom:971.970000px;}
.yd{bottom:977.730000px;}
.y136{bottom:989.250000px;}
.yc9{bottom:989.790000px;}
.y8b{bottom:992.670000px;}
.y52{bottom:994.290000px;}
.y36{bottom:997.530000px;}
.ye6{bottom:998.610000px;}
.yc{bottom:1001.850000px;}
.y8a{bottom:1013.370000px;}
.yb{bottom:1025.430000px;}
.y135{bottom:1026.330000px;}
.y35{bottom:1028.490000px;}
.ye5{bottom:1029.750000px;}
.yb1{bottom:1044.510000px;}
.ya{bottom:1046.670000px;}
.y89{bottom:1050.450000px;}
.y34{bottom:1055.850000px;}
.y51{bottom:1056.390000px;}
.y134{bottom:1057.290000px;}
.ye4{bottom:1060.710000px;}
.y9{bottom:1070.790000px;}
.yb0{bottom:1081.410000px;}
.y33{bottom:1085.910000px;}
.y50{bottom:1087.530000px;}
.y133{bottom:1088.430000px;}
.ye3{bottom:1091.850000px;}
.y8{bottom:1094.910000px;}
.y132{bottom:1115.610000px;}
.y7{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h18{height:17.100000px;}
.h17{height:18.000000px;}
.h19{height:18.900000px;}
.h1b{height:19.476000px;}
.h1a{height:19.800000px;}
.h15{height:20.700000px;}
.h11{height:21.420000px;}
.h14{height:21.600000px;}
.h12{height:22.500000px;}
.h9{height:23.220000px;}
.hb{height:23.256000px;}
.h7{height:23.400000px;}
.hf{height:47.777344px;}
.he{height:47.904750px;}
.h8{height:53.077852px;}
.ha{height:53.573906px;}
.h5{height:54.773438px;}
.h3{height:59.383125px;}
.h10{height:63.703125px;}
.h6{height:63.949219px;}
.h2{height:64.546875px;}
.hc{height:65.884219px;}
.h1c{height:70.606406px;}
.h4{height:74.820586px;}
.hd{height:246.960000px;}
.h13{height:295.740000px;}
.h16{height:315.900000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:59.400000px;}
.wa{width:71.100000px;}
.wf{width:72.036000px;}
.wb{width:72.936000px;}
.w10{width:73.116000px;}
.w11{width:75.420000px;}
.w8{width:81.036000px;}
.wd{width:81.900000px;}
.w7{width:82.620000px;}
.w15{width:127.260000px;}
.w13{width:137.880000px;}
.w5{width:169.590000px;}
.w4{width:222.510000px;}
.w3{width:286.770000px;}
.w6{width:462.240000px;}
.w12{width:541.905000px;}
.w14{width:563.145000px;}
.wc{width:642.600000px;}
.w9{width:643.320000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:3.315000px;}
.xb{left:8.100000px;}
.x20{left:9.795000px;}
.x16{left:10.830000px;}
.x27{left:28.545000px;}
.x26{left:46.080000px;}
.x1b{left:53.325000px;}
.x21{left:58.065000px;}
.xe{left:105.885000px;}
.x18{left:118.155000px;}
.x28{left:121.860000px;}
.x5{left:127.655987px;}
.xf{left:132.510000px;}
.x35{left:140.795987px;}
.x1f{left:145.980000px;}
.x9{left:160.049987px;}
.x2{left:170.129987px;}
.x11{left:180.749987px;}
.x7{left:191.369987px;}
.x1d{left:194.789987px;}
.x1c{left:197.129987px;}
.x13{left:201.089987px;}
.x1a{left:239.070000px;}
.x33{left:241.229987px;}
.x15{left:245.340000px;}
.x6{left:290.774987px;}
.x8{left:298.334987px;}
.x2e{left:302.835000px;}
.xa{left:304.094987px;}
.x10{left:318.674987px;}
.x24{left:335.235000px;}
.x14{left:339.914987px;}
.x22{left:349.995000px;}
.x29{left:370.230000px;}
.x2a{left:388.230000px;}
.x30{left:393.915000px;}
.x12{left:399.854987px;}
.xc{left:415.155000px;}
.x23{left:443.595000px;}
.x2c{left:460.515000px;}
.x2b{left:465.015000px;}
.x1{left:489.164987px;}
.x31{left:495.285000px;}
.x19{left:552.345000px;}
.x2d{left:557.790000px;}
.x2f{left:593.025000px;}
.x25{left:600.045000px;}
.xd{left:638.385000px;}
.x34{left:670.290000px;}
.x32{left:688.470000px;}
.x36{left:691.530000px;}
.x4{left:712.769987px;}
.x1e{left:789.629987px;}
.x3{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.773120pt;}
.lsc{letter-spacing:2.048000pt;}
.ls3{letter-spacing:3.200000pt;}
.lsd{letter-spacing:3.360000pt;}
.lsf{letter-spacing:4.640000pt;}
.ls1{letter-spacing:57.242027pt;}
.ws1{word-spacing:-43.200000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws8{word-spacing:-17.792000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:89.237333pt;}
.ws6{word-spacing:596.853333pt;}
._22{margin-left:-4.651520pt;}
._2{margin-left:-3.709440pt;}
._1{margin-left:-2.414080pt;}
._0{margin-left:-1.295360pt;}
._3{width:1.000960pt;}
._e{width:2.140160pt;}
._18{width:3.294720pt;}
._c{width:4.352000pt;}
._d{width:5.248000pt;}
._f{width:6.159360pt;}
._a{width:7.104000pt;}
._b{width:8.064000pt;}
._1a{width:9.312000pt;}
._14{width:10.223360pt;}
._13{width:11.328000pt;}
._15{width:12.321280pt;}
._5{width:13.478400pt;}
._6{width:15.073280pt;}
._10{width:17.664000pt;}
._17{width:18.688000pt;}
._19{width:19.648000pt;}
._16{width:21.056000pt;}
._1b{width:22.574080pt;}
._11{width:27.552000pt;}
._12{width:28.704000pt;}
._21{width:32.064000pt;}
._8{width:33.344000pt;}
._7{width:34.691840pt;}
._1f{width:71.946667pt;}
._4{width:79.470080pt;}
._9{width:91.353600pt;}
._20{width:96.896000pt;}
._1e{width:99.936000pt;}
._1d{width:119.562667pt;}
._1c{width:149.749333pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.ydc{bottom:-18.080000pt;}
.ydf{bottom:-16.480000pt;}
.ycb{bottom:-14.880000pt;}
.yc8{bottom:-14.120000pt;}
.yd7{bottom:-14.080000pt;}
.yaf{bottom:-13.280000pt;}
.y0{bottom:0.000000pt;}
.ydb{bottom:0.320000pt;}
.yd9{bottom:1.120000pt;}
.yde{bottom:1.920000pt;}
.ye2{bottom:2.400000pt;}
.ye0{bottom:2.720000pt;}
.yaa{bottom:3.013333pt;}
.yca{bottom:3.520000pt;}
.yac{bottom:4.160000pt;}
.yc7{bottom:4.320000pt;}
.yae{bottom:5.120000pt;}
.yd5{bottom:5.213333pt;}
.y7c{bottom:8.160000pt;}
.y83{bottom:8.200000pt;}
.y7a{bottom:8.320000pt;}
.yc5{bottom:11.746667pt;}
.ya1{bottom:23.426667pt;}
.yd4{bottom:23.613333pt;}
.yc4{bottom:30.173333pt;}
.ycd{bottom:42.693333pt;}
.ya2{bottom:45.573333pt;}
.yba{bottom:49.253333pt;}
.ya3{bottom:67.746667pt;}
.ybb{bottom:70.653333pt;}
.y6{bottom:72.992000pt;}
.yce{bottom:77.920000pt;}
.ya4{bottom:89.920000pt;}
.ybc{bottom:92.066667pt;}
.y5{bottom:96.672000pt;}
.ya5{bottom:112.066667pt;}
.ycf{bottom:113.186667pt;}
.ybd{bottom:113.466667pt;}
.y4{bottom:120.032000pt;}
.ya6{bottom:134.240000pt;}
.ybe{bottom:134.906667pt;}
.y3{bottom:142.266667pt;}
.yd0{bottom:148.413333pt;}
.ybf{bottom:156.320000pt;}
.ya7{bottom:156.413333pt;}
.y2{bottom:159.226667pt;}
.y105{bottom:177.466667pt;}
.yc0{bottom:177.733333pt;}
.y131{bottom:177.786667pt;}
.ya8{bottom:178.586667pt;}
.yd1{bottom:183.680000pt;}
.y32{bottom:184.666667pt;}
.y11c{bottom:187.066667pt;}
.y88{bottom:193.146667pt;}
.y4f{bottom:196.666667pt;}
.yc1{bottom:199.133333pt;}
.y159{bottom:200.506667pt;}
.y104{bottom:200.666667pt;}
.ya9{bottom:200.733333pt;}
.yb8{bottom:202.586667pt;}
.y31{bottom:203.066667pt;}
.yb9{bottom:203.840000pt;}
.y6b{bottom:204.986667pt;}
.y87{bottom:206.426667pt;}
.y130{bottom:210.746667pt;}
.y103{bottom:213.786667pt;}
.y11b{bottom:214.586667pt;}
.y9f{bottom:217.466667pt;}
.yd2{bottom:218.906667pt;}
.yc2{bottom:220.573333pt;}
.y30{bottom:221.466667pt;}
.y4e{bottom:224.186667pt;}
.y86{bottom:227.706667pt;}
.y6a{bottom:232.666667pt;}
.y102{bottom:235.066667pt;}
.y158{bottom:237.306667pt;}
.y12f{bottom:238.266667pt;}
.y2f{bottom:239.866667pt;}
.yc3{bottom:241.986667pt;}
.y11a{bottom:242.266667pt;}
.y85{bottom:248.986667pt;}
.y9e{bottom:250.426667pt;}
.y4d{bottom:251.866667pt;}
.yd3{bottom:254.173333pt;}
.y157{bottom:255.706667pt;}
.y101{bottom:256.346667pt;}
.y2e{bottom:258.266667pt;}
.y69{bottom:260.186667pt;}
.y12e{bottom:265.946667pt;}
.y119{bottom:269.786667pt;}
.y84{bottom:270.426667pt;}
.y156{bottom:274.106667pt;}
.y2d{bottom:276.666667pt;}
.y100{bottom:277.786667pt;}
.y4c{bottom:279.386667pt;}
.yda{bottom:280.826667pt;}
.ydd{bottom:281.946667pt;}
.ye1{bottom:282.266667pt;}
.y9d{bottom:283.386667pt;}
.y68{bottom:287.866667pt;}
.y82{bottom:291.706667pt;}
.y155{bottom:292.506667pt;}
.y12d{bottom:293.466667pt;}
.y2c{bottom:295.066667pt;}
.y118{bottom:297.466667pt;}
.yff{bottom:299.106667pt;}
.y4b{bottom:307.106667pt;}
.y154{bottom:310.946667pt;}
.y81{bottom:313.026667pt;}
.y2b{bottom:313.506667pt;}
.y67{bottom:315.426667pt;}
.y9c{bottom:316.386667pt;}
.yfe{bottom:320.386667pt;}
.y12c{bottom:321.186667pt;}
.yd8{bottom:322.626667pt;}
.y117{bottom:325.026667pt;}
.y153{bottom:329.346667pt;}
.y2a{bottom:331.906667pt;}
.y80{bottom:334.306667pt;}
.y4a{bottom:334.626667pt;}
.yfd{bottom:341.826667pt;}
.y66{bottom:343.106667pt;}
.y152{bottom:347.746667pt;}
.y12b{bottom:348.706667pt;}
.y9b{bottom:349.346667pt;}
.y29{bottom:350.306667pt;}
.y7f{bottom:355.746667pt;}
.y116{bottom:357.986667pt;}
.y49{bottom:362.306667pt;}
.yfc{bottom:363.106667pt;}
.y151{bottom:366.146667pt;}
.y28{bottom:368.706667pt;}
.y65{bottom:370.626667pt;}
.y12a{bottom:376.386667pt;}
.y7e{bottom:377.026667pt;}
.y9a{bottom:382.306667pt;}
.yfb{bottom:384.386667pt;}
.y150{bottom:384.546667pt;}
.y115{bottom:385.506667pt;}
.y27{bottom:387.106667pt;}
.y48{bottom:389.826667pt;}
.y64{bottom:398.306667pt;}
.y14f{bottom:402.946667pt;}
.y129{bottom:403.906667pt;}
.y26{bottom:405.506667pt;}
.y114{bottom:413.186667pt;}
.yfa{bottom:414.626667pt;}
.y99{bottom:415.106667pt;}
.y47{bottom:417.506667pt;}
.y7d{bottom:419.746667pt;}
.y14e{bottom:421.346667pt;}
.y25{bottom:423.906667pt;}
.y63{bottom:425.826667pt;}
.yd6{bottom:428.066667pt;}
.y128{bottom:431.586667pt;}
.y14d{bottom:439.746667pt;}
.y113{bottom:440.706667pt;}
.y7b{bottom:441.026667pt;}
.y24{bottom:442.306667pt;}
.y46{bottom:445.026667pt;}
.yf9{bottom:447.586667pt;}
.y98{bottom:448.066667pt;}
.y62{bottom:453.506667pt;}
.y14c{bottom:458.146667pt;}
.y127{bottom:459.106667pt;}
.y23{bottom:460.706667pt;}
.y79{bottom:462.306667pt;}
.y112{bottom:468.386667pt;}
.y45{bottom:472.706667pt;}
.yf8{bottom:475.106667pt;}
.yb7{bottom:475.426667pt;}
.y14b{bottom:476.546667pt;}
.y22{bottom:479.106667pt;}
.y61{bottom:481.026667pt;}
.y126{bottom:486.786667pt;}
.y78{bottom:492.546667pt;}
.y14a{bottom:494.946667pt;}
.y111{bottom:495.906667pt;}
.y21{bottom:497.506667pt;}
.y44{bottom:500.226667pt;}
.yf7{bottom:502.786667pt;}
.yb6{bottom:508.386667pt;}
.y97{bottom:508.546667pt;}
.y60{bottom:508.706667pt;}
.y149{bottom:513.346667pt;}
.y20{bottom:515.906667pt;}
.y125{bottom:519.746667pt;}
.y110{bottom:523.586667pt;}
.y77{bottom:525.506667pt;}
.yf6{bottom:526.466667pt;}
.y43{bottom:527.746667pt;}
.y148{bottom:531.746667pt;}
.y1f{bottom:534.306667pt;}
.y5f{bottom:536.226667pt;}
.yb5{bottom:541.373333pt;}
.y124{bottom:547.293333pt;}
.yf5{bottom:549.533333pt;}
.y147{bottom:550.173333pt;}
.y10f{bottom:551.133333pt;}
.y1e{bottom:552.573333pt;}
.y76{bottom:553.053333pt;}
.y42{bottom:555.453333pt;}
.y5e{bottom:563.773333pt;}
.y146{bottom:568.573333pt;}
.yb4{bottom:568.893333pt;}
.yf4{bottom:570.173333pt;}
.y1d{bottom:570.973333pt;}
.y123{bottom:574.973333pt;}
.y10e{bottom:578.813333pt;}
.y75{bottom:580.733333pt;}
.y41{bottom:582.973333pt;}
.yf3{bottom:585.533333pt;}
.y145{bottom:586.973333pt;}
.y1c{bottom:589.373333pt;}
.y5d{bottom:591.453333pt;}
.yb3{bottom:592.573333pt;}
.yf2{bottom:598.653333pt;}
.y122{bottom:602.493333pt;}
.y144{bottom:605.373333pt;}
.y10d{bottom:606.333333pt;}
.y1b{bottom:607.773333pt;}
.y74{bottom:608.253333pt;}
.y5c{bottom:609.853333pt;}
.y40{bottom:610.653333pt;}
.y96{bottom:615.133333pt;}
.yb2{bottom:615.773333pt;}
.yf1{bottom:620.093333pt;}
.y143{bottom:623.773333pt;}
.y1a{bottom:626.173333pt;}
.y121{bottom:630.173333pt;}
.y10c{bottom:634.013333pt;}
.y73{bottom:635.933333pt;}
.y5b{bottom:637.373333pt;}
.y3f{bottom:638.173333pt;}
.ycc{bottom:638.880000pt;}
.yf0{bottom:641.373333pt;}
.y142{bottom:642.173333pt;}
.y19{bottom:644.573333pt;}
.ya0{bottom:655.520000pt;}
.y120{bottom:657.693333pt;}
.y95{bottom:658.973333pt;}
.y141{bottom:660.573333pt;}
.y10b{bottom:661.533333pt;}
.yef{bottom:662.653333pt;}
.y18{bottom:662.973333pt;}
.y72{bottom:663.453333pt;}
.y5a{bottom:665.053333pt;}
.y3e{bottom:665.853333pt;}
.y140{bottom:678.973333pt;}
.y94{bottom:679.613333pt;}
.y17{bottom:681.373333pt;}
.yee{bottom:684.093333pt;}
.y11f{bottom:685.373333pt;}
.y71{bottom:691.133333pt;}
.y59{bottom:692.573333pt;}
.y3d{bottom:693.373333pt;}
.y10a{bottom:694.493333pt;}
.y13f{bottom:697.373333pt;}
.y16{bottom:699.773333pt;}
.y93{bottom:700.253333pt;}
.yed{bottom:705.373333pt;}
.y11e{bottom:712.893333pt;}
.y13e{bottom:715.773333pt;}
.y15{bottom:718.173333pt;}
.y70{bottom:718.653333pt;}
.y58{bottom:720.253333pt;}
.y3c{bottom:721.053333pt;}
.y92{bottom:721.533333pt;}
.y109{bottom:722.173333pt;}
.yec{bottom:726.653333pt;}
.yab{bottom:730.973333pt;}
.y13d{bottom:734.173333pt;}
.y14{bottom:736.573333pt;}
.y6f{bottom:737.053333pt;}
.y11d{bottom:740.573333pt;}
.y91{bottom:745.373333pt;}
.y57{bottom:747.773333pt;}
.yeb{bottom:748.093333pt;}
.y3b{bottom:748.573333pt;}
.y108{bottom:749.693333pt;}
.y13c{bottom:752.573333pt;}
.y13{bottom:754.973333pt;}
.y90{bottom:769.053333pt;}
.yea{bottom:769.373333pt;}
.y13b{bottom:770.973333pt;}
.y6e{bottom:772.093333pt;}
.y12{bottom:773.373333pt;}
.yc6{bottom:773.893333pt;}
.y56{bottom:775.493333pt;}
.y3a{bottom:776.293333pt;}
.y107{bottom:777.413333pt;}
.y13a{bottom:789.413333pt;}
.y11{bottom:791.813333pt;}
.y8f{bottom:792.773333pt;}
.ye9{bottom:799.653333pt;}
.y6d{bottom:801.093333pt;}
.y55{bottom:803.013333pt;}
.y39{bottom:803.813333pt;}
.y106{bottom:804.933333pt;}
.y139{bottom:807.813333pt;}
.y10{bottom:810.213333pt;}
.y8e{bottom:816.453333pt;}
.y138{bottom:826.213333pt;}
.yf{bottom:828.613333pt;}
.y54{bottom:830.693333pt;}
.y38{bottom:831.493333pt;}
.ye8{bottom:832.453333pt;}
.y8d{bottom:840.293333pt;}
.ye{bottom:847.493333pt;}
.yad{bottom:850.053333pt;}
.y137{bottom:850.373333pt;}
.y53{bottom:854.853333pt;}
.y6c{bottom:856.293333pt;}
.y37{bottom:859.013333pt;}
.ye7{bottom:860.133333pt;}
.y8c{bottom:863.973333pt;}
.yd{bottom:869.093333pt;}
.y136{bottom:879.333333pt;}
.yc9{bottom:879.813333pt;}
.y8b{bottom:882.373333pt;}
.y52{bottom:883.813333pt;}
.y36{bottom:886.693333pt;}
.ye6{bottom:887.653333pt;}
.yc{bottom:890.533333pt;}
.y8a{bottom:900.773333pt;}
.yb{bottom:911.493333pt;}
.y135{bottom:912.293333pt;}
.y35{bottom:914.213333pt;}
.ye5{bottom:915.333333pt;}
.yb1{bottom:928.453333pt;}
.ya{bottom:930.373333pt;}
.y89{bottom:933.733333pt;}
.y34{bottom:938.533333pt;}
.y51{bottom:939.013333pt;}
.y134{bottom:939.813333pt;}
.ye4{bottom:942.853333pt;}
.y9{bottom:951.813333pt;}
.yb0{bottom:961.253333pt;}
.y33{bottom:965.253333pt;}
.y50{bottom:966.693333pt;}
.y133{bottom:967.493333pt;}
.ye3{bottom:970.533333pt;}
.y8{bottom:973.253333pt;}
.y132{bottom:991.653333pt;}
.y7{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h18{height:15.200000pt;}
.h17{height:16.000000pt;}
.h19{height:16.800000pt;}
.h1b{height:17.312000pt;}
.h1a{height:17.600000pt;}
.h15{height:18.400000pt;}
.h11{height:19.040000pt;}
.h14{height:19.200000pt;}
.h12{height:20.000000pt;}
.h9{height:20.640000pt;}
.hb{height:20.672000pt;}
.h7{height:20.800000pt;}
.hf{height:42.468750pt;}
.he{height:42.582000pt;}
.h8{height:47.180312pt;}
.ha{height:47.621250pt;}
.h5{height:48.687500pt;}
.h3{height:52.785000pt;}
.h10{height:56.625000pt;}
.h6{height:56.843750pt;}
.h2{height:57.375000pt;}
.hc{height:58.563750pt;}
.h1c{height:62.761250pt;}
.h4{height:66.507188pt;}
.hd{height:219.520000pt;}
.h13{height:262.880000pt;}
.h16{height:280.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:52.800000pt;}
.wa{width:63.200000pt;}
.wf{width:64.032000pt;}
.wb{width:64.832000pt;}
.w10{width:64.992000pt;}
.w11{width:67.040000pt;}
.w8{width:72.032000pt;}
.wd{width:72.800000pt;}
.w7{width:73.440000pt;}
.w15{width:113.120000pt;}
.w13{width:122.560000pt;}
.w5{width:150.746667pt;}
.w4{width:197.786667pt;}
.w3{width:254.906667pt;}
.w6{width:410.880000pt;}
.w12{width:481.693333pt;}
.w14{width:500.573333pt;}
.wc{width:571.200000pt;}
.w9{width:571.840000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:2.946667pt;}
.xb{left:7.200000pt;}
.x20{left:8.706667pt;}
.x16{left:9.626667pt;}
.x27{left:25.373333pt;}
.x26{left:40.960000pt;}
.x1b{left:47.400000pt;}
.x21{left:51.613333pt;}
.xe{left:94.120000pt;}
.x18{left:105.026667pt;}
.x28{left:108.320000pt;}
.x5{left:113.471988pt;}
.xf{left:117.786667pt;}
.x35{left:125.151988pt;}
.x1f{left:129.760000pt;}
.x9{left:142.266655pt;}
.x2{left:151.226655pt;}
.x11{left:160.666655pt;}
.x7{left:170.106655pt;}
.x1d{left:173.146655pt;}
.x1c{left:175.226655pt;}
.x13{left:178.746655pt;}
.x1a{left:212.506667pt;}
.x33{left:214.426655pt;}
.x15{left:218.080000pt;}
.x6{left:258.466655pt;}
.x8{left:265.186655pt;}
.x2e{left:269.186667pt;}
.xa{left:270.306655pt;}
.x10{left:283.266655pt;}
.x24{left:297.986667pt;}
.x14{left:302.146655pt;}
.x22{left:311.106667pt;}
.x29{left:329.093333pt;}
.x2a{left:345.093333pt;}
.x30{left:350.146667pt;}
.x12{left:355.426655pt;}
.xc{left:369.026667pt;}
.x23{left:394.306667pt;}
.x2c{left:409.346667pt;}
.x2b{left:413.346667pt;}
.x1{left:434.813322pt;}
.x31{left:440.253333pt;}
.x19{left:490.973333pt;}
.x2d{left:495.813333pt;}
.x2f{left:527.133333pt;}
.x25{left:533.373333pt;}
.xd{left:567.453333pt;}
.x34{left:595.813333pt;}
.x32{left:611.973333pt;}
.x36{left:614.693333pt;}
.x4{left:633.573322pt;}
.x1e{left:701.893322pt;}
.x3{left:718.373322pt;}
}




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