
    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_5d566d56738fb98eefdbdf2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_851918bf6e1947ac18cddc2b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a6fa7bafc9d2facb3ff20ff1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_2f132c5875e9f9e99dbf358c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.928223;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_e564326325522cb7b663f869.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1a86cf515d766c951627b569.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.181200px;}
.lsb{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.206640px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:1.386720px;}
.ls12{letter-spacing:3.780000px;}
.lsf{letter-spacing:6.480000px;}
.ls2{letter-spacing:22.986720px;}
.ls7{letter-spacing:41.706720px;}
.ls8{letter-spacing:44.586720px;}
.ls10{letter-spacing:58.589280px;}
.ls9{letter-spacing:77.529600px;}
.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;}
}
.ws8{word-spacing:-16.506480px;}
.ws5{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.500000px;}
.ws9{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.wsb{word-spacing:-11.878800px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._13{margin-left:-7.865760px;}
._12{margin-left:-4.079760px;}
._b{margin-left:-3.075840px;}
._9{margin-left:-2.062080px;}
._1{margin-left:-1.010880px;}
._0{width:1.075680px;}
._2{width:2.868480px;}
._3{width:3.944160px;}
._7{width:5.916240px;}
._6{width:6.932160px;}
._10{width:7.954080px;}
._8{width:9.170160px;}
._5{width:10.471440px;}
._4{width:11.533680px;}
._a{width:12.908160px;}
._c{width:13.915200px;}
._14{width:14.958240px;}
._f{width:16.075440px;}
._11{width:17.808480px;}
._19{width:18.824400px;}
._e{width:22.589280px;}
._d{width:23.724720px;}
._1b{width:26.056080px;}
._1a{width:27.249840px;}
._1d{width:29.700720px;}
._20{width:36.573120px;}
._22{width:38.471280px;}
._21{width:39.635040px;}
._27{width:42.071040px;}
._1c{width:59.281920px;}
._16{width:63.001440px;}
._23{width:70.516800px;}
._24{width:71.652240px;}
._15{width:74.530800px;}
._17{width:114.480000px;}
._18{width:116.100000px;}
._1e{width:120.476160px;}
._1f{width:121.970160px;}
._25{width:148.863360px;}
._26{width:150.053760px;}
.fc6{color:rgb(33,37,41);}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(13,53,94);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:66.384000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y41{bottom:-14.250000px;}
.y87{bottom:-0.285000px;}
.y0{bottom:0.000000px;}
.yf1{bottom:2.520000px;}
.y40{bottom:5.220000px;}
.yaa{bottom:6.840000px;}
.ya8{bottom:7.020000px;}
.y7{bottom:7.920000px;}
.ya6{bottom:7.965000px;}
.y85{bottom:8.310000px;}
.y11c{bottom:8.460000px;}
.y9a{bottom:10.620000px;}
.yf9{bottom:10.800000px;}
.y7f{bottom:11.190000px;}
.ya4{bottom:11.520000px;}
.y1{bottom:12.420000px;}
.y121{bottom:12.960000px;}
.y11f{bottom:13.140000px;}
.yfb{bottom:14.940000px;}
.y109{bottom:14.985000px;}
.yf3{bottom:15.480000px;}
.y2{bottom:16.020000px;}
.y100{bottom:16.200000px;}
.yfe{bottom:16.374000px;}
.y10f{bottom:16.380000px;}
.yf5{bottom:18.360000px;}
.yeb{bottom:19.080000px;}
.y12f{bottom:19.980000px;}
.y12d{bottom:20.160000px;}
.y99{bottom:20.340000px;}
.y13a{bottom:23.220000px;}
.y138{bottom:23.445000px;}
.y14c{bottom:23.760000px;}
.yf7{bottom:24.660000px;}
.y6{bottom:25.380000px;}
.yed{bottom:25.560000px;}
.y11e{bottom:26.820000px;}
.y123{bottom:27.000000px;}
.y132{bottom:38.340000px;}
.y5{bottom:39.420000px;}
.y13d{bottom:44.820000px;}
.y150{bottom:45.720000px;}
.y131{bottom:52.020000px;}
.y13c{bottom:58.500000px;}
.y14f{bottom:59.580000px;}
.y4{bottom:108.000000px;}
.yd4{bottom:120.420000px;}
.y135{bottom:122.040000px;}
.y163{bottom:126.360000px;}
.y175{bottom:127.440000px;}
.y7a{bottom:133.950000px;}
.y3e{bottom:135.576000px;}
.y78{bottom:136.656000px;}
.ya1{bottom:136.836000px;}
.y88{bottom:137.010000px;}
.yfd{bottom:137.376000px;}
.y80{bottom:137.550000px;}
.yd3{bottom:137.556000px;}
.y134{bottom:139.356000px;}
.y162{bottom:143.676000px;}
.y174{bottom:144.756000px;}
.y3d{bottom:152.850000px;}
.ya0{bottom:154.110000px;}
.yd2{bottom:154.830000px;}
.y77{bottom:155.550000px;}
.y133{bottom:156.990000px;}
.y161{bottom:160.950000px;}
.y173{bottom:162.030000px;}
.yfc{bottom:165.810000px;}
.y3c{bottom:170.130000px;}
.y9f{bottom:171.210000px;}
.yd1{bottom:172.110000px;}
.y130{bottom:173.190000px;}
.y76{bottom:174.450000px;}
.y160{bottom:178.050000px;}
.y172{bottom:179.310000px;}
.y3b{bottom:187.410000px;}
.y9e{bottom:189.210000px;}
.yd0{bottom:189.390000px;}
.y75{bottom:192.270000px;}
.yfa{bottom:192.810000px;}
.y15f{bottom:195.330000px;}
.y171{bottom:196.590000px;}
.y3a{bottom:204.510000px;}
.y12e{bottom:205.230000px;}
.ycf{bottom:206.670000px;}
.y74{bottom:207.390000px;}
.y15e{bottom:212.610000px;}
.y9d{bottom:212.790000px;}
.y170{bottom:213.690000px;}
.yf8{bottom:219.810000px;}
.y39{bottom:221.790000px;}
.yce{bottom:223.770000px;}
.y79{bottom:227.520000px;}
.y73{bottom:228.810000px;}
.y15d{bottom:229.890000px;}
.y16f{bottom:230.970000px;}
.y12c{bottom:237.270000px;}
.y38{bottom:239.070000px;}
.ycd{bottom:241.050000px;}
.y9c{bottom:242.850000px;}
.y8b{bottom:246.090000px;}
.y15c{bottom:247.170000px;}
.y16e{bottom:248.250000px;}
.y72{bottom:252.210000px;}
.y37{bottom:256.350000px;}
.ycc{bottom:258.330000px;}
.y84{bottom:261.570000px;}
.y15b{bottom:264.270000px;}
.y16d{bottom:265.530000px;}
.y12b{bottom:272.010000px;}
.y71{bottom:272.910000px;}
.y36{bottom:273.630000px;}
.yde{bottom:275.250000px;}
.ycb{bottom:275.610000px;}
.y8a{bottom:275.790000px;}
.y7d{bottom:276.150000px;}
.y15a{bottom:281.550000px;}
.y16c{bottom:282.810000px;}
.y12a{bottom:286.950000px;}
.y83{bottom:287.490000px;}
.y35{bottom:290.910000px;}
.ydd{bottom:292.530000px;}
.yca{bottom:292.890000px;}
.yf6{bottom:293.070000px;}
.y70{bottom:293.610000px;}
.y159{bottom:298.830000px;}
.y16b{bottom:299.910000px;}
.y9b{bottom:302.970000px;}
.y7c{bottom:304.590000px;}
.y89{bottom:305.310000px;}
.y129{bottom:305.490000px;}
.y34{bottom:308.010000px;}
.ydc{bottom:309.630000px;}
.yc9{bottom:310.170000px;}
.y82{bottom:313.410000px;}
.y6f{bottom:314.310000px;}
.y158{bottom:316.110000px;}
.y16a{bottom:317.190000px;}
.y128{bottom:322.590000px;}
.y33{bottom:325.290000px;}
.ydb{bottom:326.910000px;}
.yc8{bottom:327.270000px;}
.yf4{bottom:329.790000px;}
.y7b{bottom:333.030000px;}
.y157{bottom:333.390000px;}
.y169{bottom:334.470000px;}
.y6e{bottom:335.010000px;}
.y81{bottom:339.330000px;}
.y127{bottom:339.870000px;}
.y32{bottom:342.570000px;}
.yda{bottom:344.190000px;}
.yc7{bottom:344.550000px;}
.y156{bottom:350.670000px;}
.y168{bottom:351.750000px;}
.y6d{bottom:355.710000px;}
.y126{bottom:357.150000px;}
.y31{bottom:359.850000px;}
.yf2{bottom:360.210000px;}
.yd9{bottom:361.470000px;}
.yc6{bottom:361.830000px;}
.y98{bottom:364.710000px;}
.y155{bottom:367.770000px;}
.y167{bottom:369.030000px;}
.y7e{bottom:374.400000px;}
.y125{bottom:374.430000px;}
.y6c{bottom:376.410000px;}
.y30{bottom:377.130000px;}
.yd8{bottom:378.750000px;}
.yc5{bottom:379.110000px;}
.y154{bottom:385.050000px;}
.y166{bottom:386.310000px;}
.yf0{bottom:387.795000px;}
.y86{bottom:390.960000px;}
.y124{bottom:392.115000px;}
.y2f{bottom:394.275000px;}
.yc4{bottom:396.435000px;}
.yd7{bottom:396.795000px;}
.y6b{bottom:397.155000px;}
.yef{bottom:402.375000px;}
.y165{bottom:403.455000px;}
.y122{bottom:408.135000px;}
.y2e{bottom:411.555000px;}
.yc3{bottom:413.715000px;}
.yd6{bottom:416.055000px;}
.y6a{bottom:417.855000px;}
.y153{bottom:419.655000px;}
.y164{bottom:420.735000px;}
.y97{bottom:423.435000px;}
.yd5{bottom:427.215000px;}
.y2d{bottom:428.835000px;}
.yc2{bottom:430.815000px;}
.y152{bottom:436.935000px;}
.y96{bottom:437.295000px;}
.y69{bottom:438.015000px;}
.yee{bottom:439.995000px;}
.y2c{bottom:446.115000px;}
.y120{bottom:447.195000px;}
.yc1{bottom:448.095000px;}
.y95{bottom:452.415000px;}
.y151{bottom:454.215000px;}
.y68{bottom:455.295000px;}
.y2b{bottom:463.395000px;}
.yc0{bottom:465.375000px;}
.y14e{bottom:468.975000px;}
.y94{bottom:472.395000px;}
.y67{bottom:472.575000px;}
.yec{bottom:477.435000px;}
.y2a{bottom:480.675000px;}
.ybf{bottom:482.655000px;}
.y11d{bottom:486.075000px;}
.y93{bottom:489.675000px;}
.y66{bottom:489.855000px;}
.y29{bottom:497.775000px;}
.ybe{bottom:499.935000px;}
.y14d{bottom:504.795000px;}
.y65{bottom:506.955000px;}
.y28{bottom:515.055000px;}
.ybd{bottom:517.215000px;}
.y64{bottom:524.235000px;}
.y11b{bottom:524.955000px;}
.y27{bottom:532.335000px;}
.ybc{bottom:534.315000px;}
.y14b{bottom:540.615000px;}
.y63{bottom:541.515000px;}
.y11a{bottom:547.995000px;}
.yea{bottom:548.715000px;}
.y26{bottom:549.615000px;}
.ybb{bottom:551.595000px;}
.y92{bottom:558.615000px;}
.y62{bottom:558.795000px;}
.y119{bottom:562.575000px;}
.ye9{bottom:563.835000px;}
.y25{bottom:566.895000px;}
.yba{bottom:568.875000px;}
.y91{bottom:575.895000px;}
.y61{bottom:576.075000px;}
.y14a{bottom:578.955000px;}
.y118{bottom:579.855000px;}
.y24{bottom:584.175000px;}
.ye8{bottom:584.355000px;}
.yb9{bottom:586.155000px;}
.y90{bottom:593.175000px;}
.y60{bottom:593.355000px;}
.y149{bottom:593.535000px;}
.y117{bottom:597.135000px;}
.y23{bottom:601.275000px;}
.ye7{bottom:603.255000px;}
.yb8{bottom:603.435000px;}
.y5f{bottom:610.455000px;}
.y148{bottom:610.815000px;}
.y116{bottom:614.235000px;}
.y22{bottom:618.555000px;}
.yb7{bottom:620.535000px;}
.ye6{bottom:622.155000px;}
.y5e{bottom:627.735000px;}
.y147{bottom:627.915000px;}
.y115{bottom:631.515000px;}
.y21{bottom:635.835000px;}
.yb6{bottom:637.815000px;}
.ye5{bottom:641.265000px;}
.y5d{bottom:645.045000px;}
.y146{bottom:645.225000px;}
.y114{bottom:648.825000px;}
.yb5{bottom:655.125000px;}
.y20{bottom:655.665000px;}
.ye4{bottom:660.165000px;}
.y8f{bottom:662.145000px;}
.y5c{bottom:662.325000px;}
.y145{bottom:662.505000px;}
.y113{bottom:666.105000px;}
.yb4{bottom:672.405000px;}
.y1f{bottom:672.945000px;}
.ye3{bottom:679.245000px;}
.y8e{bottom:679.425000px;}
.y5b{bottom:679.605000px;}
.y144{bottom:679.785000px;}
.y112{bottom:683.385000px;}
.yb3{bottom:689.685000px;}
.y1e{bottom:690.225000px;}
.y5a{bottom:696.705000px;}
.y143{bottom:697.065000px;}
.ye2{bottom:697.785000px;}
.y111{bottom:701.025000px;}
.yb2{bottom:706.965000px;}
.y1d{bottom:707.505000px;}
.y59{bottom:713.985000px;}
.y142{bottom:714.165000px;}
.ye1{bottom:715.425000px;}
.y110{bottom:717.045000px;}
.y1c{bottom:724.785000px;}
.yb1{bottom:727.665000px;}
.y58{bottom:731.265000px;}
.y141{bottom:731.445000px;}
.ye0{bottom:733.245000px;}
.y1b{bottom:742.065000px;}
.y10e{bottom:744.045000px;}
.ydf{bottom:744.585000px;}
.yb0{bottom:745.845000px;}
.y57{bottom:748.545000px;}
.y140{bottom:748.725000px;}
.y1a{bottom:759.165000px;}
.yaf{bottom:764.025000px;}
.y8d{bottom:765.645000px;}
.y56{bottom:765.825000px;}
.y13f{bottom:766.005000px;}
.y10d{bottom:772.485000px;}
.y19{bottom:776.445000px;}
.yae{bottom:782.385000px;}
.y8c{bottom:782.925000px;}
.y55{bottom:783.105000px;}
.y13e{bottom:783.285000px;}
.y18{bottom:793.725000px;}
.y10c{bottom:799.485000px;}
.y54{bottom:800.205000px;}
.yad{bottom:800.565000px;}
.y17{bottom:811.005000px;}
.y13b{bottom:815.325000px;}
.y53{bottom:817.485000px;}
.yac{bottom:818.745000px;}
.y10b{bottom:826.485000px;}
.y16{bottom:828.285000px;}
.y52{bottom:834.765000px;}
.yab{bottom:836.925000px;}
.y15{bottom:845.565000px;}
.y139{bottom:850.605000px;}
.y51{bottom:852.045000px;}
.y10a{bottom:853.485000px;}
.ya9{bottom:855.285000px;}
.y14{bottom:863.385000px;}
.y50{bottom:869.325000px;}
.ya7{bottom:873.465000px;}
.y108{bottom:880.485000px;}
.y137{bottom:885.885000px;}
.y4f{bottom:886.605000px;}
.y13{bottom:887.145000px;}
.ya5{bottom:891.645000px;}
.y4e{bottom:903.750000px;}
.y12{bottom:904.470000px;}
.y107{bottom:907.530000px;}
.ya3{bottom:912.390000px;}
.y4d{bottom:921.030000px;}
.y136{bottom:923.730000px;}
.y11{bottom:928.050000px;}
.y106{bottom:934.530000px;}
.y4c{bottom:938.310000px;}
.y10{bottom:945.150000px;}
.y4b{bottom:955.590000px;}
.ya2{bottom:958.290000px;}
.y105{bottom:961.530000px;}
.yf{bottom:962.430000px;}
.y4a{bottom:972.870000px;}
.y178{bottom:975.930000px;}
.ye{bottom:984.930000px;}
.y104{bottom:988.530000px;}
.y49{bottom:989.970000px;}
.y177{bottom:995.010000px;}
.yd{bottom:1002.210000px;}
.y48{bottom:1007.250000px;}
.y176{bottom:1010.310000px;}
.yc{bottom:1014.990000px;}
.y103{bottom:1015.530000px;}
.y47{bottom:1024.530000px;}
.yb{bottom:1035.690000px;}
.y46{bottom:1041.810000px;}
.y102{bottom:1042.530000px;}
.ya{bottom:1056.930000px;}
.y45{bottom:1059.090000px;}
.y101{bottom:1069.530000px;}
.y44{bottom:1076.370000px;}
.y9{bottom:1081.050000px;}
.y43{bottom:1093.470000px;}
.yff{bottom:1096.530000px;}
.y8{bottom:1105.170000px;}
.y42{bottom:1110.750000px;}
.y3f{bottom:1147.500000px;}
.y3{bottom:1154.160000px;}
.h27{height:13.860000px;}
.h18{height:15.120000px;}
.h21{height:18.180000px;}
.h22{height:18.360000px;}
.h20{height:19.296000px;}
.h31{height:19.800000px;}
.he{height:20.520000px;}
.h2f{height:26.100000px;}
.h30{height:26.136000px;}
.h2c{height:26.280000px;}
.h28{height:26.820000px;}
.h15{height:27.000000px;}
.hb{height:27.432422px;}
.h2e{height:27.540000px;}
.h2d{height:27.720000px;}
.h2{height:28.260000px;}
.h29{height:29.700000px;}
.h1d{height:30.060000px;}
.h23{height:30.240000px;}
.h33{height:31.320000px;}
.h1c{height:34.036523px;}
.h36{height:34.560000px;}
.h35{height:34.596000px;}
.h13{height:34.884492px;}
.h38{height:35.100000px;}
.h25{height:35.120039px;}
.h2b{height:35.820000px;}
.h2a{height:36.000000px;}
.h1f{height:36.540000px;}
.h26{height:36.720000px;}
.h24{height:36.900000px;}
.h3{height:38.100586px;}
.h32{height:38.160000px;}
.h8{height:39.049805px;}
.h1e{height:42.164648px;}
.h6{height:43.215117px;}
.hd{height:43.506914px;}
.h16{height:46.736719px;}
.h19{height:46.838320px;}
.hf{height:47.901094px;}
.h3a{height:49.255313px;}
.h1b{height:49.536000px;}
.h7{height:50.800781px;}
.hc{height:52.066406px;}
.h11{height:52.417969px;}
.ha{height:57.796523px;}
.h9{height:59.436914px;}
.h4{height:59.439023px;}
.h12{height:61.329023px;}
.h34{height:63.360000px;}
.h10{height:65.884219px;}
.h37{height:69.840000px;}
.h39{height:70.920000px;}
.h5{height:72.360000px;}
.h14{height:149.580000px;}
.h17{height:151.740000px;}
.h1a{height:152.640000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:34.020000px;}
.w1d{width:66.420000px;}
.w1a{width:75.420000px;}
.w18{width:81.900000px;}
.w19{width:84.456000px;}
.wa{width:84.996000px;}
.w1c{width:92.916000px;}
.w29{width:95.040000px;}
.w28{width:97.236000px;}
.w27{width:99.000000px;}
.w2b{width:100.116000px;}
.w2a{width:100.296000px;}
.w13{width:101.340000px;}
.w20{width:103.860000px;}
.w1f{width:103.896000px;}
.w21{width:104.076000px;}
.w22{width:105.120000px;}
.w23{width:105.156000px;}
.w24{width:105.300000px;}
.w25{width:105.336000px;}
.w14{width:111.276000px;}
.w15{width:112.680000px;}
.w11{width:114.876000px;}
.we{width:117.000000px;}
.w1e{width:131.976000px;}
.w26{width:133.776000px;}
.w1b{width:137.556000px;}
.wc{width:150.690000px;}
.wb{width:154.440000px;}
.w5{width:154.470000px;}
.w10{width:163.470000px;}
.w8{width:179.280000px;}
.w6{width:180.180000px;}
.wd{width:194.610000px;}
.w7{width:212.940000px;}
.w9{width:214.920000px;}
.wf{width:234.615000px;}
.w17{width:291.315000px;}
.w12{width:308.415000px;}
.w16{width:379.335000px;}
.w4{width:671.550000px;}
.w1{width:893.250000px;}
.w3{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.x2{left:9.000000px;}
.x18{left:11.016000px;}
.x12{left:16.200000px;}
.x24{left:29.340000px;}
.x3a{left:33.300000px;}
.x27{left:37.110000px;}
.x38{left:40.680000px;}
.x1d{left:51.735000px;}
.x46{left:57.060000px;}
.x45{left:63.180000px;}
.x20{left:73.230000px;}
.x13{left:77.214000px;}
.x1a{left:80.850000px;}
.x3{left:95.795987px;}
.x4{left:97.236000px;}
.x5{left:111.594000px;}
.x17{left:113.760000px;}
.x11{left:117.035987px;}
.x15{left:122.795987px;}
.x19{left:124.775987px;}
.x8{left:126.755987px;}
.x21{left:130.895987px;}
.x40{left:141.696000px;}
.x14{left:144.035987px;}
.x3b{left:145.476000px;}
.x23{left:164.910000px;}
.xf{left:178.949987px;}
.x47{left:196.769987px;}
.x36{left:198.930000px;}
.x3f{left:219.809987px;}
.xb{left:234.569987px;}
.x29{left:244.650000px;}
.x41{left:246.810000px;}
.x25{left:249.915000px;}
.xc{left:267.734987px;}
.x48{left:278.355000px;}
.x37{left:283.395000px;}
.xd{left:284.474987px;}
.x2d{left:286.634987px;}
.x30{left:288.254987px;}
.x34{left:290.054987px;}
.x16{left:312.194987px;}
.xe{left:342.974987px;}
.x1b{left:346.860000px;}
.x42{left:351.975000px;}
.x3c{left:353.235000px;}
.xa{left:357.734987px;}
.x2f{left:358.814987px;}
.x1c{left:360.540000px;}
.x9{left:371.774987px;}
.x49{left:377.355000px;}
.x22{left:388.874987px;}
.x26{left:404.355000px;}
.x10{left:416.414987px;}
.x31{left:425.445000px;}
.x7{left:457.304987px;}
.x4a{left:474.585000px;}
.x2a{left:479.265000px;}
.x35{left:496.365000px;}
.x32{left:526.785000px;}
.x4d{left:549.464987px;}
.x28{left:555.045000px;}
.x3d{left:560.985000px;}
.x43{left:562.425000px;}
.x4b{left:569.625000px;}
.x1e{left:590.220000px;}
.x1f{left:614.849987px;}
.x33{left:638.070000px;}
.x2b{left:642.750000px;}
.x39{left:655.710000px;}
.x3e{left:665.070000px;}
.x44{left:667.590000px;}
.x4c{left:669.930000px;}
.x2c{left:723.569987px;}
.x2e{left:778.499987px;}
.x1{left:790.380000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.161067pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.183680pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:1.232640pt;}
.ls12{letter-spacing:3.360000pt;}
.lsf{letter-spacing:5.760000pt;}
.ls2{letter-spacing:20.432640pt;}
.ls7{letter-spacing:37.072640pt;}
.ls8{letter-spacing:39.632640pt;}
.ls10{letter-spacing:52.079360pt;}
.ls9{letter-spacing:68.915200pt;}
.ws8{word-spacing:-14.672427pt;}
.ws5{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsd{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.wsb{word-spacing:-10.558933pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._13{margin-left:-6.991787pt;}
._12{margin-left:-3.626453pt;}
._b{margin-left:-2.734080pt;}
._9{margin-left:-1.832960pt;}
._1{margin-left:-0.898560pt;}
._0{width:0.956160pt;}
._2{width:2.549760pt;}
._3{width:3.505920pt;}
._7{width:5.258880pt;}
._6{width:6.161920pt;}
._10{width:7.070293pt;}
._8{width:8.151253pt;}
._5{width:9.307947pt;}
._4{width:10.252160pt;}
._a{width:11.473920pt;}
._c{width:12.369067pt;}
._14{width:13.296213pt;}
._f{width:14.289280pt;}
._11{width:15.829760pt;}
._19{width:16.732800pt;}
._e{width:20.079360pt;}
._d{width:21.088640pt;}
._1b{width:23.160960pt;}
._1a{width:24.222080pt;}
._1d{width:26.400640pt;}
._20{width:32.509440pt;}
._22{width:34.196693pt;}
._21{width:35.231147pt;}
._27{width:37.396480pt;}
._1c{width:52.695040pt;}
._16{width:56.001280pt;}
._23{width:62.681600pt;}
._24{width:63.690880pt;}
._15{width:66.249600pt;}
._17{width:101.760000pt;}
._18{width:103.200000pt;}
._1e{width:107.089920pt;}
._1f{width:108.417920pt;}
._25{width:132.322987pt;}
._26{width:133.381120pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:59.008000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y41{bottom:-12.666667pt;}
.y87{bottom:-0.253333pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:2.240000pt;}
.y40{bottom:4.640000pt;}
.yaa{bottom:6.080000pt;}
.ya8{bottom:6.240000pt;}
.y7{bottom:7.040000pt;}
.ya6{bottom:7.080000pt;}
.y85{bottom:7.386667pt;}
.y11c{bottom:7.520000pt;}
.y9a{bottom:9.440000pt;}
.yf9{bottom:9.600000pt;}
.y7f{bottom:9.946667pt;}
.ya4{bottom:10.240000pt;}
.y1{bottom:11.040000pt;}
.y121{bottom:11.520000pt;}
.y11f{bottom:11.680000pt;}
.yfb{bottom:13.280000pt;}
.y109{bottom:13.320000pt;}
.yf3{bottom:13.760000pt;}
.y2{bottom:14.240000pt;}
.y100{bottom:14.400000pt;}
.yfe{bottom:14.554667pt;}
.y10f{bottom:14.560000pt;}
.yf5{bottom:16.320000pt;}
.yeb{bottom:16.960000pt;}
.y12f{bottom:17.760000pt;}
.y12d{bottom:17.920000pt;}
.y99{bottom:18.080000pt;}
.y13a{bottom:20.640000pt;}
.y138{bottom:20.840000pt;}
.y14c{bottom:21.120000pt;}
.yf7{bottom:21.920000pt;}
.y6{bottom:22.560000pt;}
.yed{bottom:22.720000pt;}
.y11e{bottom:23.840000pt;}
.y123{bottom:24.000000pt;}
.y132{bottom:34.080000pt;}
.y5{bottom:35.040000pt;}
.y13d{bottom:39.840000pt;}
.y150{bottom:40.640000pt;}
.y131{bottom:46.240000pt;}
.y13c{bottom:52.000000pt;}
.y14f{bottom:52.960000pt;}
.y4{bottom:96.000000pt;}
.yd4{bottom:107.040000pt;}
.y135{bottom:108.480000pt;}
.y163{bottom:112.320000pt;}
.y175{bottom:113.280000pt;}
.y7a{bottom:119.066667pt;}
.y3e{bottom:120.512000pt;}
.y78{bottom:121.472000pt;}
.ya1{bottom:121.632000pt;}
.y88{bottom:121.786667pt;}
.yfd{bottom:122.112000pt;}
.y80{bottom:122.266667pt;}
.yd3{bottom:122.272000pt;}
.y134{bottom:123.872000pt;}
.y162{bottom:127.712000pt;}
.y174{bottom:128.672000pt;}
.y3d{bottom:135.866667pt;}
.ya0{bottom:136.986667pt;}
.yd2{bottom:137.626667pt;}
.y77{bottom:138.266667pt;}
.y133{bottom:139.546667pt;}
.y161{bottom:143.066667pt;}
.y173{bottom:144.026667pt;}
.yfc{bottom:147.386667pt;}
.y3c{bottom:151.226667pt;}
.y9f{bottom:152.186667pt;}
.yd1{bottom:152.986667pt;}
.y130{bottom:153.946667pt;}
.y76{bottom:155.066667pt;}
.y160{bottom:158.266667pt;}
.y172{bottom:159.386667pt;}
.y3b{bottom:166.586667pt;}
.y9e{bottom:168.186667pt;}
.yd0{bottom:168.346667pt;}
.y75{bottom:170.906667pt;}
.yfa{bottom:171.386667pt;}
.y15f{bottom:173.626667pt;}
.y171{bottom:174.746667pt;}
.y3a{bottom:181.786667pt;}
.y12e{bottom:182.426667pt;}
.ycf{bottom:183.706667pt;}
.y74{bottom:184.346667pt;}
.y15e{bottom:188.986667pt;}
.y9d{bottom:189.146667pt;}
.y170{bottom:189.946667pt;}
.yf8{bottom:195.386667pt;}
.y39{bottom:197.146667pt;}
.yce{bottom:198.906667pt;}
.y79{bottom:202.240000pt;}
.y73{bottom:203.386667pt;}
.y15d{bottom:204.346667pt;}
.y16f{bottom:205.306667pt;}
.y12c{bottom:210.906667pt;}
.y38{bottom:212.506667pt;}
.ycd{bottom:214.266667pt;}
.y9c{bottom:215.866667pt;}
.y8b{bottom:218.746667pt;}
.y15c{bottom:219.706667pt;}
.y16e{bottom:220.666667pt;}
.y72{bottom:224.186667pt;}
.y37{bottom:227.866667pt;}
.ycc{bottom:229.626667pt;}
.y84{bottom:232.506667pt;}
.y15b{bottom:234.906667pt;}
.y16d{bottom:236.026667pt;}
.y12b{bottom:241.786667pt;}
.y71{bottom:242.586667pt;}
.y36{bottom:243.226667pt;}
.yde{bottom:244.666667pt;}
.ycb{bottom:244.986667pt;}
.y8a{bottom:245.146667pt;}
.y7d{bottom:245.466667pt;}
.y15a{bottom:250.266667pt;}
.y16c{bottom:251.386667pt;}
.y12a{bottom:255.066667pt;}
.y83{bottom:255.546667pt;}
.y35{bottom:258.586667pt;}
.ydd{bottom:260.026667pt;}
.yca{bottom:260.346667pt;}
.yf6{bottom:260.506667pt;}
.y70{bottom:260.986667pt;}
.y159{bottom:265.626667pt;}
.y16b{bottom:266.586667pt;}
.y9b{bottom:269.306667pt;}
.y7c{bottom:270.746667pt;}
.y89{bottom:271.386667pt;}
.y129{bottom:271.546667pt;}
.y34{bottom:273.786667pt;}
.ydc{bottom:275.226667pt;}
.yc9{bottom:275.706667pt;}
.y82{bottom:278.586667pt;}
.y6f{bottom:279.386667pt;}
.y158{bottom:280.986667pt;}
.y16a{bottom:281.946667pt;}
.y128{bottom:286.746667pt;}
.y33{bottom:289.146667pt;}
.ydb{bottom:290.586667pt;}
.yc8{bottom:290.906667pt;}
.yf4{bottom:293.146667pt;}
.y7b{bottom:296.026667pt;}
.y157{bottom:296.346667pt;}
.y169{bottom:297.306667pt;}
.y6e{bottom:297.786667pt;}
.y81{bottom:301.626667pt;}
.y127{bottom:302.106667pt;}
.y32{bottom:304.506667pt;}
.yda{bottom:305.946667pt;}
.yc7{bottom:306.266667pt;}
.y156{bottom:311.706667pt;}
.y168{bottom:312.666667pt;}
.y6d{bottom:316.186667pt;}
.y126{bottom:317.466667pt;}
.y31{bottom:319.866667pt;}
.yf2{bottom:320.186667pt;}
.yd9{bottom:321.306667pt;}
.yc6{bottom:321.626667pt;}
.y98{bottom:324.186667pt;}
.y155{bottom:326.906667pt;}
.y167{bottom:328.026667pt;}
.y7e{bottom:332.800000pt;}
.y125{bottom:332.826667pt;}
.y6c{bottom:334.586667pt;}
.y30{bottom:335.226667pt;}
.yd8{bottom:336.666667pt;}
.yc5{bottom:336.986667pt;}
.y154{bottom:342.266667pt;}
.y166{bottom:343.386667pt;}
.yf0{bottom:344.706667pt;}
.y86{bottom:347.520000pt;}
.y124{bottom:348.546667pt;}
.y2f{bottom:350.466667pt;}
.yc4{bottom:352.386667pt;}
.yd7{bottom:352.706667pt;}
.y6b{bottom:353.026667pt;}
.yef{bottom:357.666667pt;}
.y165{bottom:358.626667pt;}
.y122{bottom:362.786667pt;}
.y2e{bottom:365.826667pt;}
.yc3{bottom:367.746667pt;}
.yd6{bottom:369.826667pt;}
.y6a{bottom:371.426667pt;}
.y153{bottom:373.026667pt;}
.y164{bottom:373.986667pt;}
.y97{bottom:376.386667pt;}
.yd5{bottom:379.746667pt;}
.y2d{bottom:381.186667pt;}
.yc2{bottom:382.946667pt;}
.y152{bottom:388.386667pt;}
.y96{bottom:388.706667pt;}
.y69{bottom:389.346667pt;}
.yee{bottom:391.106667pt;}
.y2c{bottom:396.546667pt;}
.y120{bottom:397.506667pt;}
.yc1{bottom:398.306667pt;}
.y95{bottom:402.146667pt;}
.y151{bottom:403.746667pt;}
.y68{bottom:404.706667pt;}
.y2b{bottom:411.906667pt;}
.yc0{bottom:413.666667pt;}
.y14e{bottom:416.866667pt;}
.y94{bottom:419.906667pt;}
.y67{bottom:420.066667pt;}
.yec{bottom:424.386667pt;}
.y2a{bottom:427.266667pt;}
.ybf{bottom:429.026667pt;}
.y11d{bottom:432.066667pt;}
.y93{bottom:435.266667pt;}
.y66{bottom:435.426667pt;}
.y29{bottom:442.466667pt;}
.ybe{bottom:444.386667pt;}
.y14d{bottom:448.706667pt;}
.y65{bottom:450.626667pt;}
.y28{bottom:457.826667pt;}
.ybd{bottom:459.746667pt;}
.y64{bottom:465.986667pt;}
.y11b{bottom:466.626667pt;}
.y27{bottom:473.186667pt;}
.ybc{bottom:474.946667pt;}
.y14b{bottom:480.546667pt;}
.y63{bottom:481.346667pt;}
.y11a{bottom:487.106667pt;}
.yea{bottom:487.746667pt;}
.y26{bottom:488.546667pt;}
.ybb{bottom:490.306667pt;}
.y92{bottom:496.546667pt;}
.y62{bottom:496.706667pt;}
.y119{bottom:500.066667pt;}
.ye9{bottom:501.186667pt;}
.y25{bottom:503.906667pt;}
.yba{bottom:505.666667pt;}
.y91{bottom:511.906667pt;}
.y61{bottom:512.066667pt;}
.y14a{bottom:514.626667pt;}
.y118{bottom:515.426667pt;}
.y24{bottom:519.266667pt;}
.ye8{bottom:519.426667pt;}
.yb9{bottom:521.026667pt;}
.y90{bottom:527.266667pt;}
.y60{bottom:527.426667pt;}
.y149{bottom:527.586667pt;}
.y117{bottom:530.786667pt;}
.y23{bottom:534.466667pt;}
.ye7{bottom:536.226667pt;}
.yb8{bottom:536.386667pt;}
.y5f{bottom:542.626667pt;}
.y148{bottom:542.946667pt;}
.y116{bottom:545.986667pt;}
.y22{bottom:549.826667pt;}
.yb7{bottom:551.586667pt;}
.ye6{bottom:553.026667pt;}
.y5e{bottom:557.986667pt;}
.y147{bottom:558.146667pt;}
.y115{bottom:561.346667pt;}
.y21{bottom:565.186667pt;}
.yb6{bottom:566.946667pt;}
.ye5{bottom:570.013333pt;}
.y5d{bottom:573.373333pt;}
.y146{bottom:573.533333pt;}
.y114{bottom:576.733333pt;}
.yb5{bottom:582.333333pt;}
.y20{bottom:582.813333pt;}
.ye4{bottom:586.813333pt;}
.y8f{bottom:588.573333pt;}
.y5c{bottom:588.733333pt;}
.y145{bottom:588.893333pt;}
.y113{bottom:592.093333pt;}
.yb4{bottom:597.693333pt;}
.y1f{bottom:598.173333pt;}
.ye3{bottom:603.773333pt;}
.y8e{bottom:603.933333pt;}
.y5b{bottom:604.093333pt;}
.y144{bottom:604.253333pt;}
.y112{bottom:607.453333pt;}
.yb3{bottom:613.053333pt;}
.y1e{bottom:613.533333pt;}
.y5a{bottom:619.293333pt;}
.y143{bottom:619.613333pt;}
.ye2{bottom:620.253333pt;}
.y111{bottom:623.133333pt;}
.yb2{bottom:628.413333pt;}
.y1d{bottom:628.893333pt;}
.y59{bottom:634.653333pt;}
.y142{bottom:634.813333pt;}
.ye1{bottom:635.933333pt;}
.y110{bottom:637.373333pt;}
.y1c{bottom:644.253333pt;}
.yb1{bottom:646.813333pt;}
.y58{bottom:650.013333pt;}
.y141{bottom:650.173333pt;}
.ye0{bottom:651.773333pt;}
.y1b{bottom:659.613333pt;}
.y10e{bottom:661.373333pt;}
.ydf{bottom:661.853333pt;}
.yb0{bottom:662.973333pt;}
.y57{bottom:665.373333pt;}
.y140{bottom:665.533333pt;}
.y1a{bottom:674.813333pt;}
.yaf{bottom:679.133333pt;}
.y8d{bottom:680.573333pt;}
.y56{bottom:680.733333pt;}
.y13f{bottom:680.893333pt;}
.y10d{bottom:686.653333pt;}
.y19{bottom:690.173333pt;}
.yae{bottom:695.453333pt;}
.y8c{bottom:695.933333pt;}
.y55{bottom:696.093333pt;}
.y13e{bottom:696.253333pt;}
.y18{bottom:705.533333pt;}
.y10c{bottom:710.653333pt;}
.y54{bottom:711.293333pt;}
.yad{bottom:711.613333pt;}
.y17{bottom:720.893333pt;}
.y13b{bottom:724.733333pt;}
.y53{bottom:726.653333pt;}
.yac{bottom:727.773333pt;}
.y10b{bottom:734.653333pt;}
.y16{bottom:736.253333pt;}
.y52{bottom:742.013333pt;}
.yab{bottom:743.933333pt;}
.y15{bottom:751.613333pt;}
.y139{bottom:756.093333pt;}
.y51{bottom:757.373333pt;}
.y10a{bottom:758.653333pt;}
.ya9{bottom:760.253333pt;}
.y14{bottom:767.453333pt;}
.y50{bottom:772.733333pt;}
.ya7{bottom:776.413333pt;}
.y108{bottom:782.653333pt;}
.y137{bottom:787.453333pt;}
.y4f{bottom:788.093333pt;}
.y13{bottom:788.573333pt;}
.ya5{bottom:792.573333pt;}
.y4e{bottom:803.333333pt;}
.y12{bottom:803.973333pt;}
.y107{bottom:806.693333pt;}
.ya3{bottom:811.013333pt;}
.y4d{bottom:818.693333pt;}
.y136{bottom:821.093333pt;}
.y11{bottom:824.933333pt;}
.y106{bottom:830.693333pt;}
.y4c{bottom:834.053333pt;}
.y10{bottom:840.133333pt;}
.y4b{bottom:849.413333pt;}
.ya2{bottom:851.813333pt;}
.y105{bottom:854.693333pt;}
.yf{bottom:855.493333pt;}
.y4a{bottom:864.773333pt;}
.y178{bottom:867.493333pt;}
.ye{bottom:875.493333pt;}
.y104{bottom:878.693333pt;}
.y49{bottom:879.973333pt;}
.y177{bottom:884.453333pt;}
.yd{bottom:890.853333pt;}
.y48{bottom:895.333333pt;}
.y176{bottom:898.053333pt;}
.yc{bottom:902.213333pt;}
.y103{bottom:902.693333pt;}
.y47{bottom:910.693333pt;}
.yb{bottom:920.613333pt;}
.y46{bottom:926.053333pt;}
.y102{bottom:926.693333pt;}
.ya{bottom:939.493333pt;}
.y45{bottom:941.413333pt;}
.y101{bottom:950.693333pt;}
.y44{bottom:956.773333pt;}
.y9{bottom:960.933333pt;}
.y43{bottom:971.973333pt;}
.yff{bottom:974.693333pt;}
.y8{bottom:982.373333pt;}
.y42{bottom:987.333333pt;}
.y3f{bottom:1020.000000pt;}
.y3{bottom:1025.920000pt;}
.h27{height:12.320000pt;}
.h18{height:13.440000pt;}
.h21{height:16.160000pt;}
.h22{height:16.320000pt;}
.h20{height:17.152000pt;}
.h31{height:17.600000pt;}
.he{height:18.240000pt;}
.h2f{height:23.200000pt;}
.h30{height:23.232000pt;}
.h2c{height:23.360000pt;}
.h28{height:23.840000pt;}
.h15{height:24.000000pt;}
.hb{height:24.384375pt;}
.h2e{height:24.480000pt;}
.h2d{height:24.640000pt;}
.h2{height:25.120000pt;}
.h29{height:26.400000pt;}
.h1d{height:26.720000pt;}
.h23{height:26.880000pt;}
.h33{height:27.840000pt;}
.h1c{height:30.254687pt;}
.h36{height:30.720000pt;}
.h35{height:30.752000pt;}
.h13{height:31.008437pt;}
.h38{height:31.200000pt;}
.h25{height:31.217812pt;}
.h2b{height:31.840000pt;}
.h2a{height:32.000000pt;}
.h1f{height:32.480000pt;}
.h26{height:32.640000pt;}
.h24{height:32.800000pt;}
.h3{height:33.867188pt;}
.h32{height:33.920000pt;}
.h8{height:34.710938pt;}
.h1e{height:37.479688pt;}
.h6{height:38.413438pt;}
.hd{height:38.672812pt;}
.h16{height:41.543750pt;}
.h19{height:41.634062pt;}
.hf{height:42.578750pt;}
.h3a{height:43.782500pt;}
.h1b{height:44.032000pt;}
.h7{height:45.156250pt;}
.hc{height:46.281250pt;}
.h11{height:46.593750pt;}
.ha{height:51.374688pt;}
.h9{height:52.832812pt;}
.h4{height:52.834688pt;}
.h12{height:54.514687pt;}
.h34{height:56.320000pt;}
.h10{height:58.563750pt;}
.h37{height:62.080000pt;}
.h39{height:63.040000pt;}
.h5{height:64.320000pt;}
.h14{height:132.960000pt;}
.h17{height:134.880000pt;}
.h1a{height:135.680000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:30.240000pt;}
.w1d{width:59.040000pt;}
.w1a{width:67.040000pt;}
.w18{width:72.800000pt;}
.w19{width:75.072000pt;}
.wa{width:75.552000pt;}
.w1c{width:82.592000pt;}
.w29{width:84.480000pt;}
.w28{width:86.432000pt;}
.w27{width:88.000000pt;}
.w2b{width:88.992000pt;}
.w2a{width:89.152000pt;}
.w13{width:90.080000pt;}
.w20{width:92.320000pt;}
.w1f{width:92.352000pt;}
.w21{width:92.512000pt;}
.w22{width:93.440000pt;}
.w23{width:93.472000pt;}
.w24{width:93.600000pt;}
.w25{width:93.632000pt;}
.w14{width:98.912000pt;}
.w15{width:100.160000pt;}
.w11{width:102.112000pt;}
.we{width:104.000000pt;}
.w1e{width:117.312000pt;}
.w26{width:118.912000pt;}
.w1b{width:122.272000pt;}
.wc{width:133.946667pt;}
.wb{width:137.280000pt;}
.w5{width:137.306667pt;}
.w10{width:145.306667pt;}
.w8{width:159.360000pt;}
.w6{width:160.160000pt;}
.wd{width:172.986667pt;}
.w7{width:189.280000pt;}
.w9{width:191.040000pt;}
.wf{width:208.546667pt;}
.w17{width:258.946667pt;}
.w12{width:274.146667pt;}
.w16{width:337.186667pt;}
.w4{width:596.933333pt;}
.w1{width:794.000000pt;}
.w3{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.x2{left:8.000000pt;}
.x18{left:9.792000pt;}
.x12{left:14.400000pt;}
.x24{left:26.080000pt;}
.x3a{left:29.600000pt;}
.x27{left:32.986667pt;}
.x38{left:36.160000pt;}
.x1d{left:45.986667pt;}
.x46{left:50.720000pt;}
.x45{left:56.160000pt;}
.x20{left:65.093333pt;}
.x13{left:68.634667pt;}
.x1a{left:71.866667pt;}
.x3{left:85.151988pt;}
.x4{left:86.432000pt;}
.x5{left:99.194667pt;}
.x17{left:101.120000pt;}
.x11{left:104.031988pt;}
.x15{left:109.151988pt;}
.x19{left:110.911988pt;}
.x8{left:112.671988pt;}
.x21{left:116.351988pt;}
.x40{left:125.952000pt;}
.x14{left:128.031988pt;}
.x3b{left:129.312000pt;}
.x23{left:146.586667pt;}
.xf{left:159.066655pt;}
.x47{left:174.906655pt;}
.x36{left:176.826667pt;}
.x3f{left:195.386655pt;}
.xb{left:208.506655pt;}
.x29{left:217.466667pt;}
.x41{left:219.386667pt;}
.x25{left:222.146667pt;}
.xc{left:237.986655pt;}
.x48{left:247.426667pt;}
.x37{left:251.906667pt;}
.xd{left:252.866655pt;}
.x2d{left:254.786655pt;}
.x30{left:256.226655pt;}
.x34{left:257.826655pt;}
.x16{left:277.506655pt;}
.xe{left:304.866655pt;}
.x1b{left:308.320000pt;}
.x42{left:312.866667pt;}
.x3c{left:313.986667pt;}
.xa{left:317.986655pt;}
.x2f{left:318.946655pt;}
.x1c{left:320.480000pt;}
.x9{left:330.466655pt;}
.x49{left:335.426667pt;}
.x22{left:345.666655pt;}
.x26{left:359.426667pt;}
.x10{left:370.146655pt;}
.x31{left:378.173333pt;}
.x7{left:406.493321pt;}
.x4a{left:421.853333pt;}
.x2a{left:426.013333pt;}
.x35{left:441.213333pt;}
.x32{left:468.253333pt;}
.x4d{left:488.413322pt;}
.x28{left:493.373333pt;}
.x3d{left:498.653333pt;}
.x43{left:499.933333pt;}
.x4b{left:506.333333pt;}
.x1e{left:524.640000pt;}
.x1f{left:546.533321pt;}
.x33{left:567.173333pt;}
.x2b{left:571.333333pt;}
.x39{left:582.853333pt;}
.x3e{left:591.173333pt;}
.x44{left:593.413333pt;}
.x4c{left:595.493333pt;}
.x2c{left:643.173321pt;}
.x2e{left:691.999988pt;}
.x1{left:702.560000pt;}
}




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