
    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_18893093d36492c70d6e9660.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_09a7e674f15bfba2a6388d0c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1d5d0da2ac8e2dd186571090.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.119629;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_16cfef632bdd04fe35655a5b.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_3b6eacd7c2c214872e8c40e9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4255829f9f90bd8297ea9330.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8f74b6f497bd80abe0e78299.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.050293;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_a2ffea8d878ecccc38d3aec4.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9174c633afa66dfcaac44ac7.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls9{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.256200px;}
.ls12{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.864000px;}
.lse{letter-spacing:7.920000px;}
.ls7{letter-spacing:31.080000px;}
.lsc{letter-spacing:33.984000px;}
.ls2{letter-spacing:42.480000px;}
.lsa{letter-spacing:54.840000px;}
.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:-72.000000px;}
.wsa{word-spacing:-18.864000px;}
.wsd{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.280000px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.226440px;}
.ws1{word-spacing:-14.940000px;}
.ws0{word-spacing:0.000000px;}
._c{margin-left:-4.392000px;}
._9{margin-left:-2.778000px;}
._0{margin-left:-1.494000px;}
._2{width:1.254960px;}
._1{width:2.270880px;}
._d{width:3.308400px;}
._a{width:4.734000px;}
._7{width:5.808000px;}
._e{width:7.776000px;}
._f{width:8.784000px;}
._b{width:10.584000px;}
._6{width:11.664000px;}
._5{width:12.744000px;}
._14{width:14.256000px;}
._17{width:15.696000px;}
._8{width:16.842000px;}
._11{width:19.560000px;}
._12{width:21.240000px;}
._13{width:22.464000px;}
._15{width:23.567040px;}
._16{width:24.658800px;}
._1b{width:26.424000px;}
._18{width:28.080000px;}
._19{width:29.160000px;}
._1a{width:30.240000px;}
._21{width:31.296000px;}
._22{width:32.670000px;}
._1d{width:33.768000px;}
._10{width:35.064000px;}
._1f{width:36.624000px;}
._20{width:37.956000px;}
._27{width:39.780000px;}
._2b{width:41.052000px;}
._3{width:42.480000px;}
._4{width:43.560000px;}
._1e{width:46.584000px;}
._25{width:49.680000px;}
._26{width:51.312000px;}
._1c{width:64.704000px;}
._29{width:80.280000px;}
._2a{width:82.060080px;}
._28{width:139.440000px;}
._23{width:239.400000px;}
._24{width:240.995040px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y102{bottom:7.020000px;}
.yb1{bottom:7.380000px;}
.yb6{bottom:7.560000px;}
.yb3{bottom:31.140000px;}
.y10a{bottom:31.185000px;}
.y104{bottom:31.320000px;}
.y6{bottom:35.925007px;}
.y29{bottom:57.600000px;}
.y5{bottom:66.525004px;}
.y28{bottom:77.760000px;}
.y4{bottom:97.125005px;}
.y54{bottom:113.760000px;}
.y82{bottom:114.840000px;}
.yfe{bottom:115.380000px;}
.y132{bottom:125.820000px;}
.y53{bottom:137.520000px;}
.y81{bottom:138.600000px;}
.yfd{bottom:139.140000px;}
.y23{bottom:139.264499px;}
.y131{bottom:149.616000px;}
.y127{bottom:155.010000px;}
.yd3{bottom:155.370000px;}
.y52{bottom:161.310000px;}
.y80{bottom:162.390000px;}
.yfc{bottom:163.110000px;}
.yad{bottom:168.330000px;}
.y130{bottom:173.370000px;}
.y126{bottom:178.770000px;}
.yd2{bottom:179.130000px;}
.y51{bottom:185.070000px;}
.y7f{bottom:186.150000px;}
.yfb{bottom:186.870000px;}
.yac{bottom:193.350000px;}
.y1a{bottom:196.933500px;}
.y12f{bottom:197.130000px;}
.y125{bottom:202.530000px;}
.yd1{bottom:204.330000px;}
.y50{bottom:208.830000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y7e{bottom:210.090000px;}
.yfa{bottom:210.630000px;}
.yab{bottom:217.110000px;}
.y12e{bottom:221.070000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y124{bottom:226.290000px;}
.yd0{bottom:228.090000px;}
.y4f{bottom:232.770000px;}
.y7d{bottom:233.850000px;}
.yf9{bottom:234.390000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.yaa{bottom:242.310000px;}
.y12d{bottom:244.830000px;}
.y123{bottom:250.050000px;}
.ycf{bottom:253.110000px;}
.y4e{bottom:256.530000px;}
.y7c{bottom:257.250000px;}
.yf8{bottom:258.330000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.ya9{bottom:267.330000px;}
.y12c{bottom:268.590000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y122{bottom:273.990000px;}
.yce{bottom:276.870000px;}
.y4d{bottom:280.290000px;}
.y7b{bottom:281.370000px;}
.yf7{bottom:282.090000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.ya8{bottom:291.090000px;}
.y12b{bottom:292.350000px;}
.y121{bottom:297.750000px;}
.ycd{bottom:300.810000px;}
.y4c{bottom:304.050000px;}
.y7a{bottom:305.310000px;}
.yf6{bottom:305.850000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.ya7{bottom:316.290000px;}
.y120{bottom:321.510000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.ycc{bottom:324.570000px;}
.y4b{bottom:327.630000px;}
.y79{bottom:329.070000px;}
.yf5{bottom:329.790000px;}
.ya6{bottom:340.050000px;}
.y11f{bottom:345.270000px;}
.y11{bottom:348.133500px;}
.ycb{bottom:348.330000px;}
.y4a{bottom:351.750000px;}
.y78{bottom:352.830000px;}
.yf4{bottom:354.810000px;}
.ya5{bottom:363.810000px;}
.y11e{bottom:369.210000px;}
.yca{bottom:372.090000px;}
.y49{bottom:375.510000px;}
.y77{bottom:376.590000px;}
.yf3{bottom:378.570000px;}
.y10{bottom:386.785499px;}
.ya4{bottom:387.570000px;}
.y11d{bottom:393.015000px;}
.yc9{bottom:396.075000px;}
.y48{bottom:399.315000px;}
.y76{bottom:400.575000px;}
.yf2{bottom:403.815000px;}
.yf{bottom:408.044999px;}
.ya3{bottom:411.375000px;}
.y11c{bottom:416.775000px;}
.yc8{bottom:419.835000px;}
.y47{bottom:423.255000px;}
.y75{bottom:424.335000px;}
.yf1{bottom:428.835000px;}
.ya2{bottom:435.315000px;}
.y11b{bottom:440.535000px;}
.yc7{bottom:443.595000px;}
.y46{bottom:447.015000px;}
.y74{bottom:448.095000px;}
.yf0{bottom:452.595000px;}
.ya1{bottom:459.075000px;}
.y11a{bottom:464.475000px;}
.yc6{bottom:467.355000px;}
.y45{bottom:470.775000px;}
.y73{bottom:471.855000px;}
.yef{bottom:477.795000px;}
.ya0{bottom:482.835000px;}
.ye{bottom:484.864502px;}
.y119{bottom:488.235000px;}
.yc5{bottom:491.295000px;}
.y44{bottom:494.535000px;}
.y72{bottom:495.795000px;}
.yee{bottom:502.815000px;}
.yd{bottom:502.864502px;}
.y9f{bottom:506.595000px;}
.y118{bottom:511.995000px;}
.yc4{bottom:515.055000px;}
.y43{bottom:518.475000px;}
.y71{bottom:519.555000px;}
.yc{bottom:520.864502px;}
.yed{bottom:526.575000px;}
.y9e{bottom:530.535000px;}
.y117{bottom:535.395000px;}
.yc3{bottom:538.815000px;}
.yb{bottom:538.864499px;}
.y42{bottom:542.235000px;}
.y70{bottom:543.315000px;}
.yec{bottom:550.335000px;}
.y9d{bottom:554.295000px;}
.ya{bottom:556.864499px;}
.y116{bottom:559.335000px;}
.yc2{bottom:562.575000px;}
.y41{bottom:565.995000px;}
.y6f{bottom:567.075000px;}
.yeb{bottom:574.275000px;}
.y9c{bottom:578.055000px;}
.y115{bottom:583.455000px;}
.yc1{bottom:586.515000px;}
.y40{bottom:589.755000px;}
.y6e{bottom:591.015000px;}
.yea{bottom:598.035000px;}
.y9b{bottom:601.815000px;}
.y114{bottom:607.215000px;}
.yc0{bottom:610.275000px;}
.y3f{bottom:613.695000px;}
.y6d{bottom:614.775000px;}
.ye9{bottom:621.795000px;}
.y9a{bottom:625.755000px;}
.y113{bottom:630.975000px;}
.ybf{bottom:634.035000px;}
.y3e{bottom:637.455000px;}
.y6c{bottom:638.535000px;}
.y9{bottom:645.510000px;}
.ye8{bottom:645.585000px;}
.y99{bottom:649.545000px;}
.y112{bottom:654.945000px;}
.ybe{bottom:657.825000px;}
.y3d{bottom:661.245000px;}
.y6b{bottom:662.325000px;}
.y8{bottom:666.771000px;}
.ye7{bottom:669.525000px;}
.y98{bottom:673.305000px;}
.y111{bottom:678.705000px;}
.ybd{bottom:681.585000px;}
.y3c{bottom:685.005000px;}
.y6a{bottom:686.085000px;}
.ye6{bottom:693.285000px;}
.y12a{bottom:696.705000px;}
.y97{bottom:697.065000px;}
.y110{bottom:702.465000px;}
.ybc{bottom:705.525000px;}
.y3b{bottom:708.765000px;}
.y69{bottom:710.025000px;}
.ye5{bottom:717.045000px;}
.y129{bottom:720.645000px;}
.y96{bottom:721.005000px;}
.y10f{bottom:726.225000px;}
.y7{bottom:726.298500px;}
.ybb{bottom:729.285000px;}
.y3a{bottom:732.705000px;}
.y68{bottom:733.785000px;}
.ye4{bottom:740.805000px;}
.y95{bottom:744.765000px;}
.y10e{bottom:750.165000px;}
.y3{bottom:752.599495px;}
.yba{bottom:753.045000px;}
.y39{bottom:756.465000px;}
.y67{bottom:757.545000px;}
.ye3{bottom:764.745000px;}
.y94{bottom:768.525000px;}
.y10d{bottom:773.925000px;}
.yb9{bottom:776.805000px;}
.y38{bottom:780.225000px;}
.y66{bottom:781.305000px;}
.ye2{bottom:788.505000px;}
.y10c{bottom:791.025000px;}
.y93{bottom:792.285000px;}
.yb8{bottom:800.745000px;}
.y37{bottom:803.985000px;}
.y65{bottom:805.245000px;}
.ye1{bottom:812.265000px;}
.y10b{bottom:815.505000px;}
.y92{bottom:816.225000px;}
.yb7{bottom:817.845000px;}
.y36{bottom:827.925000px;}
.y64{bottom:829.005000px;}
.ye0{bottom:836.025000px;}
.y91{bottom:839.985000px;}
.y35{bottom:851.685000px;}
.y63{bottom:852.765000px;}
.ydf{bottom:859.785000px;}
.y90{bottom:863.745000px;}
.y109{bottom:863.925000px;}
.yb5{bottom:866.085000px;}
.y34{bottom:875.445000px;}
.y62{bottom:876.525000px;}
.y2{bottom:879.369000px;}
.yde{bottom:883.725000px;}
.y8f{bottom:887.505000px;}
.yb4{bottom:890.790000px;}
.y33{bottom:899.250000px;}
.y61{bottom:900.510000px;}
.ydd{bottom:907.530000px;}
.y8e{bottom:911.310000px;}
.y108{bottom:912.390000px;}
.y32{bottom:923.190000px;}
.y60{bottom:924.270000px;}
.ydc{bottom:931.290000px;}
.y8d{bottom:934.890000px;}
.y128{bottom:935.250000px;}
.y107{bottom:936.870000px;}
.yb2{bottom:939.210000px;}
.y31{bottom:946.950000px;}
.y5f{bottom:948.030000px;}
.ydb{bottom:955.050000px;}
.y8c{bottom:959.010000px;}
.y1{bottom:966.726000px;}
.y30{bottom:970.710000px;}
.y5e{bottom:971.790000px;}
.yda{bottom:978.990000px;}
.y8b{bottom:982.770000px;}
.y106{bottom:985.290000px;}
.yb0{bottom:987.450000px;}
.y2f{bottom:994.110000px;}
.y5d{bottom:995.730000px;}
.yd9{bottom:1002.750000px;}
.y8a{bottom:1006.530000px;}
.y105{bottom:1009.770000px;}
.y2e{bottom:1018.410000px;}
.yaf{bottom:1019.130000px;}
.y5c{bottom:1019.490000px;}
.yd8{bottom:1027.770000px;}
.y89{bottom:1030.470000px;}
.y103{bottom:1034.250000px;}
.y2d{bottom:1041.810000px;}
.yae{bottom:1042.890000px;}
.y5b{bottom:1043.250000px;}
.yd7{bottom:1051.710000px;}
.y88{bottom:1054.230000px;}
.y2c{bottom:1065.570000px;}
.y5a{bottom:1067.010000px;}
.yd6{bottom:1076.730000px;}
.y87{bottom:1077.990000px;}
.y101{bottom:1082.670000px;}
.y2b{bottom:1090.590000px;}
.y59{bottom:1090.950000px;}
.yd5{bottom:1100.490000px;}
.y86{bottom:1101.750000px;}
.y100{bottom:1114.350000px;}
.y58{bottom:1114.710000px;}
.y2a{bottom:1118.490000px;}
.yd4{bottom:1124.430000px;}
.y85{bottom:1125.690000px;}
.yff{bottom:1138.110000px;}
.y57{bottom:1138.470000px;}
.y27{bottom:1142.640000px;}
.y84{bottom:1146.780000px;}
.y26{bottom:1161.720000px;}
.y83{bottom:1169.640000px;}
.y56{bottom:1170.540000px;}
.y25{bottom:1179.000000px;}
.y55{bottom:1193.400000px;}
.y24{bottom:1196.280000px;}
.h11{height:23.760000px;}
.h13{height:23.976000px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h12{height:47.520000px;}
.h15{height:47.556000px;}
.h14{height:47.700000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.h9{height:58.651172px;}
.ha{height:65.884219px;}
.he{height:70.628906px;}
.hd{height:70.664062px;}
.hc{height:72.562500px;}
.h10{height:74.004654px;}
.hf{height:74.681367px;}
.h5{height:78.030000px;}
.hb{height:84.898125px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:72.576000px;}
.w6{width:76.716000px;}
.w7{width:88.380000px;}
.w8{width:88.416000px;}
.w9{width:88.560000px;}
.w5{width:307.470000px;}
.wc{width:337.215000px;}
.wb{width:337.710000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x19{left:10.620000px;}
.x17{left:84.054000px;}
.x1a{left:91.655987px;}
.x18{left:97.590000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:108.035987px;}
.x7{left:118.475987px;}
.x16{left:135.035987px;}
.xf{left:140.075987px;}
.xd{left:143.495987px;}
.x8{left:155.729987px;}
.xb{left:162.029987px;}
.x4{left:203.484001px;}
.xe{left:270.209987px;}
.xc{left:382.214987px;}
.xa{left:408.314987px;}
.x11{left:416.595000px;}
.x6{left:438.194987px;}
.x9{left:446.474987px;}
.x3{left:454.959000px;}
.x12{left:494.205000px;}
.x13{left:583.305000px;}
.x14{left:672.450000px;}
.x15{left:761.730000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.227733pt;}
.ls12{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.768000pt;}
.lse{letter-spacing:7.040000pt;}
.ls7{letter-spacing:27.626667pt;}
.lsc{letter-spacing:30.208000pt;}
.ls2{letter-spacing:37.760000pt;}
.lsa{letter-spacing:48.746667pt;}
.ws8{word-spacing:-64.000000pt;}
.wsa{word-spacing:-16.768000pt;}
.wsd{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.360000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws1{word-spacing:-13.280000pt;}
.ws0{word-spacing:0.000000pt;}
._c{margin-left:-3.904000pt;}
._9{margin-left:-2.469333pt;}
._0{margin-left:-1.328000pt;}
._2{width:1.115520pt;}
._1{width:2.018560pt;}
._d{width:2.940800pt;}
._a{width:4.208000pt;}
._7{width:5.162667pt;}
._e{width:6.912000pt;}
._f{width:7.808000pt;}
._b{width:9.408000pt;}
._6{width:10.368000pt;}
._5{width:11.328000pt;}
._14{width:12.672000pt;}
._17{width:13.952000pt;}
._8{width:14.970667pt;}
._11{width:17.386667pt;}
._12{width:18.880000pt;}
._13{width:19.968000pt;}
._15{width:20.948480pt;}
._16{width:21.918933pt;}
._1b{width:23.488000pt;}
._18{width:24.960000pt;}
._19{width:25.920000pt;}
._1a{width:26.880000pt;}
._21{width:27.818667pt;}
._22{width:29.040000pt;}
._1d{width:30.016000pt;}
._10{width:31.168000pt;}
._1f{width:32.554667pt;}
._20{width:33.738667pt;}
._27{width:35.360000pt;}
._2b{width:36.490667pt;}
._3{width:37.760000pt;}
._4{width:38.720000pt;}
._1e{width:41.408000pt;}
._25{width:44.160000pt;}
._26{width:45.610667pt;}
._1c{width:57.514667pt;}
._29{width:71.360000pt;}
._2a{width:72.942293pt;}
._28{width:123.946667pt;}
._23{width:212.800000pt;}
._24{width:214.217813pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y102{bottom:6.240000pt;}
.yb1{bottom:6.560000pt;}
.yb6{bottom:6.720000pt;}
.yb3{bottom:27.680000pt;}
.y10a{bottom:27.720000pt;}
.y104{bottom:27.840000pt;}
.y6{bottom:31.933340pt;}
.y29{bottom:51.200000pt;}
.y5{bottom:59.133337pt;}
.y28{bottom:69.120000pt;}
.y4{bottom:86.333337pt;}
.y54{bottom:101.120000pt;}
.y82{bottom:102.080000pt;}
.yfe{bottom:102.560000pt;}
.y132{bottom:111.840000pt;}
.y53{bottom:122.240000pt;}
.y81{bottom:123.200000pt;}
.yfd{bottom:123.680000pt;}
.y23{bottom:123.790666pt;}
.y131{bottom:132.992000pt;}
.y127{bottom:137.786667pt;}
.yd3{bottom:138.106667pt;}
.y52{bottom:143.386667pt;}
.y80{bottom:144.346667pt;}
.yfc{bottom:144.986667pt;}
.yad{bottom:149.626667pt;}
.y130{bottom:154.106667pt;}
.y126{bottom:158.906667pt;}
.yd2{bottom:159.226667pt;}
.y51{bottom:164.506667pt;}
.y7f{bottom:165.466667pt;}
.yfb{bottom:166.106667pt;}
.yac{bottom:171.866667pt;}
.y1a{bottom:175.052000pt;}
.y12f{bottom:175.226667pt;}
.y125{bottom:180.026667pt;}
.yd1{bottom:181.626667pt;}
.y50{bottom:185.626667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y7e{bottom:186.746667pt;}
.yfa{bottom:187.226667pt;}
.yab{bottom:192.986667pt;}
.y12e{bottom:196.506667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y124{bottom:201.146667pt;}
.yd0{bottom:202.746667pt;}
.y4f{bottom:206.906667pt;}
.y7d{bottom:207.866667pt;}
.yf9{bottom:208.346667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.yaa{bottom:215.386667pt;}
.y12d{bottom:217.626667pt;}
.y123{bottom:222.266667pt;}
.ycf{bottom:224.986667pt;}
.y4e{bottom:228.026667pt;}
.y7c{bottom:228.666667pt;}
.yf8{bottom:229.626667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.ya9{bottom:237.626667pt;}
.y12c{bottom:238.746667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y122{bottom:243.546667pt;}
.yce{bottom:246.106667pt;}
.y4d{bottom:249.146667pt;}
.y7b{bottom:250.106667pt;}
.yf7{bottom:250.746667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.ya8{bottom:258.746667pt;}
.y12b{bottom:259.866667pt;}
.y121{bottom:264.666667pt;}
.ycd{bottom:267.386667pt;}
.y4c{bottom:270.266667pt;}
.y7a{bottom:271.386667pt;}
.yf6{bottom:271.866667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.ya7{bottom:281.146667pt;}
.y120{bottom:285.786667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.ycc{bottom:288.506667pt;}
.y4b{bottom:291.226667pt;}
.y79{bottom:292.506667pt;}
.yf5{bottom:293.146667pt;}
.ya6{bottom:302.266667pt;}
.y11f{bottom:306.906667pt;}
.y11{bottom:309.452000pt;}
.ycb{bottom:309.626667pt;}
.y4a{bottom:312.666667pt;}
.y78{bottom:313.626667pt;}
.yf4{bottom:315.386667pt;}
.ya5{bottom:323.386667pt;}
.y11e{bottom:328.186667pt;}
.yca{bottom:330.746667pt;}
.y49{bottom:333.786667pt;}
.y77{bottom:334.746667pt;}
.yf3{bottom:336.506667pt;}
.y10{bottom:343.809333pt;}
.ya4{bottom:344.506667pt;}
.y11d{bottom:349.346667pt;}
.yc9{bottom:352.066667pt;}
.y48{bottom:354.946667pt;}
.y76{bottom:356.066667pt;}
.yf2{bottom:358.946667pt;}
.yf{bottom:362.706666pt;}
.ya3{bottom:365.666667pt;}
.y11c{bottom:370.466667pt;}
.yc8{bottom:373.186667pt;}
.y47{bottom:376.226667pt;}
.y75{bottom:377.186667pt;}
.yf1{bottom:381.186667pt;}
.ya2{bottom:386.946667pt;}
.y11b{bottom:391.586667pt;}
.yc7{bottom:394.306667pt;}
.y46{bottom:397.346667pt;}
.y74{bottom:398.306667pt;}
.yf0{bottom:402.306667pt;}
.ya1{bottom:408.066667pt;}
.y11a{bottom:412.866667pt;}
.yc6{bottom:415.426667pt;}
.y45{bottom:418.466667pt;}
.y73{bottom:419.426667pt;}
.yef{bottom:424.706667pt;}
.ya0{bottom:429.186667pt;}
.ye{bottom:430.990669pt;}
.y119{bottom:433.986667pt;}
.yc5{bottom:436.706667pt;}
.y44{bottom:439.586667pt;}
.y72{bottom:440.706667pt;}
.yee{bottom:446.946667pt;}
.yd{bottom:446.990669pt;}
.y9f{bottom:450.306667pt;}
.y118{bottom:455.106667pt;}
.yc4{bottom:457.826667pt;}
.y43{bottom:460.866667pt;}
.y71{bottom:461.826667pt;}
.yc{bottom:462.990669pt;}
.yed{bottom:468.066667pt;}
.y9e{bottom:471.586667pt;}
.y117{bottom:475.906667pt;}
.yc3{bottom:478.946667pt;}
.yb{bottom:478.990666pt;}
.y42{bottom:481.986667pt;}
.y70{bottom:482.946667pt;}
.yec{bottom:489.186667pt;}
.y9d{bottom:492.706667pt;}
.ya{bottom:494.990666pt;}
.y116{bottom:497.186667pt;}
.yc2{bottom:500.066667pt;}
.y41{bottom:503.106667pt;}
.y6f{bottom:504.066667pt;}
.yeb{bottom:510.466667pt;}
.y9c{bottom:513.826667pt;}
.y115{bottom:518.626667pt;}
.yc1{bottom:521.346667pt;}
.y40{bottom:524.226667pt;}
.y6e{bottom:525.346667pt;}
.yea{bottom:531.586667pt;}
.y9b{bottom:534.946667pt;}
.y114{bottom:539.746667pt;}
.yc0{bottom:542.466667pt;}
.y3f{bottom:545.506667pt;}
.y6d{bottom:546.466667pt;}
.ye9{bottom:552.706667pt;}
.y9a{bottom:556.226667pt;}
.y113{bottom:560.866667pt;}
.ybf{bottom:563.586667pt;}
.y3e{bottom:566.626667pt;}
.y6c{bottom:567.586667pt;}
.y9{bottom:573.786667pt;}
.ye8{bottom:573.853333pt;}
.y99{bottom:577.373333pt;}
.y112{bottom:582.173333pt;}
.ybe{bottom:584.733333pt;}
.y3d{bottom:587.773333pt;}
.y6b{bottom:588.733333pt;}
.y8{bottom:592.685334pt;}
.ye7{bottom:595.133333pt;}
.y98{bottom:598.493333pt;}
.y111{bottom:603.293333pt;}
.ybd{bottom:605.853333pt;}
.y3c{bottom:608.893333pt;}
.y6a{bottom:609.853333pt;}
.ye6{bottom:616.253333pt;}
.y12a{bottom:619.293333pt;}
.y97{bottom:619.613333pt;}
.y110{bottom:624.413333pt;}
.ybc{bottom:627.133333pt;}
.y3b{bottom:630.013333pt;}
.y69{bottom:631.133333pt;}
.ye5{bottom:637.373333pt;}
.y129{bottom:640.573333pt;}
.y96{bottom:640.893333pt;}
.y10f{bottom:645.533333pt;}
.y7{bottom:645.598667pt;}
.ybb{bottom:648.253333pt;}
.y3a{bottom:651.293333pt;}
.y68{bottom:652.253333pt;}
.ye4{bottom:658.493333pt;}
.y95{bottom:662.013333pt;}
.y10e{bottom:666.813333pt;}
.y3{bottom:668.977329pt;}
.yba{bottom:669.373333pt;}
.y39{bottom:672.413333pt;}
.y67{bottom:673.373333pt;}
.ye3{bottom:679.773333pt;}
.y94{bottom:683.133333pt;}
.y10d{bottom:687.933333pt;}
.yb9{bottom:690.493333pt;}
.y38{bottom:693.533333pt;}
.y66{bottom:694.493333pt;}
.ye2{bottom:700.893333pt;}
.y10c{bottom:703.133333pt;}
.y93{bottom:704.253333pt;}
.yb8{bottom:711.773333pt;}
.y37{bottom:714.653333pt;}
.y65{bottom:715.773333pt;}
.ye1{bottom:722.013333pt;}
.y10b{bottom:724.893333pt;}
.y92{bottom:725.533333pt;}
.yb7{bottom:726.973333pt;}
.y36{bottom:735.933333pt;}
.y64{bottom:736.893333pt;}
.ye0{bottom:743.133333pt;}
.y91{bottom:746.653333pt;}
.y35{bottom:757.053333pt;}
.y63{bottom:758.013333pt;}
.ydf{bottom:764.253333pt;}
.y90{bottom:767.773333pt;}
.y109{bottom:767.933333pt;}
.yb5{bottom:769.853333pt;}
.y34{bottom:778.173333pt;}
.y62{bottom:779.133333pt;}
.y2{bottom:781.661334pt;}
.yde{bottom:785.533333pt;}
.y8f{bottom:788.893333pt;}
.yb4{bottom:791.813333pt;}
.y33{bottom:799.333333pt;}
.y61{bottom:800.453333pt;}
.ydd{bottom:806.693333pt;}
.y8e{bottom:810.053333pt;}
.y108{bottom:811.013333pt;}
.y32{bottom:820.613333pt;}
.y60{bottom:821.573333pt;}
.ydc{bottom:827.813333pt;}
.y8d{bottom:831.013333pt;}
.y128{bottom:831.333333pt;}
.y107{bottom:832.773333pt;}
.yb2{bottom:834.853333pt;}
.y31{bottom:841.733333pt;}
.y5f{bottom:842.693333pt;}
.ydb{bottom:848.933333pt;}
.y8c{bottom:852.453333pt;}
.y1{bottom:859.312000pt;}
.y30{bottom:862.853333pt;}
.y5e{bottom:863.813333pt;}
.yda{bottom:870.213333pt;}
.y8b{bottom:873.573333pt;}
.y106{bottom:875.813333pt;}
.yb0{bottom:877.733333pt;}
.y2f{bottom:883.653333pt;}
.y5d{bottom:885.093333pt;}
.yd9{bottom:891.333333pt;}
.y8a{bottom:894.693333pt;}
.y105{bottom:897.573333pt;}
.y2e{bottom:905.253333pt;}
.yaf{bottom:905.893333pt;}
.y5c{bottom:906.213333pt;}
.yd8{bottom:913.573333pt;}
.y89{bottom:915.973333pt;}
.y103{bottom:919.333333pt;}
.y2d{bottom:926.053333pt;}
.yae{bottom:927.013333pt;}
.y5b{bottom:927.333333pt;}
.yd7{bottom:934.853333pt;}
.y88{bottom:937.093333pt;}
.y2c{bottom:947.173333pt;}
.y5a{bottom:948.453333pt;}
.yd6{bottom:957.093333pt;}
.y87{bottom:958.213333pt;}
.y101{bottom:962.373333pt;}
.y2b{bottom:969.413333pt;}
.y59{bottom:969.733333pt;}
.yd5{bottom:978.213333pt;}
.y86{bottom:979.333333pt;}
.y100{bottom:990.533333pt;}
.y58{bottom:990.853333pt;}
.y2a{bottom:994.213333pt;}
.yd4{bottom:999.493333pt;}
.y85{bottom:1000.613333pt;}
.yff{bottom:1011.653333pt;}
.y57{bottom:1011.973333pt;}
.y27{bottom:1015.680000pt;}
.y84{bottom:1019.360000pt;}
.y26{bottom:1032.640000pt;}
.y83{bottom:1039.680000pt;}
.y56{bottom:1040.480000pt;}
.y25{bottom:1048.000000pt;}
.y55{bottom:1060.800000pt;}
.y24{bottom:1063.360000pt;}
.h11{height:21.120000pt;}
.h13{height:21.312000pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h12{height:42.240000pt;}
.h15{height:42.272000pt;}
.h14{height:42.400000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.h9{height:52.134375pt;}
.ha{height:58.563750pt;}
.he{height:62.781250pt;}
.hd{height:62.812500pt;}
.hc{height:64.500000pt;}
.h10{height:65.781915pt;}
.hf{height:66.383437pt;}
.h5{height:69.360000pt;}
.hb{height:75.465000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:64.512000pt;}
.w6{width:68.192000pt;}
.w7{width:78.560000pt;}
.w8{width:78.592000pt;}
.w9{width:78.720000pt;}
.w5{width:273.306667pt;}
.wc{width:299.746667pt;}
.wb{width:300.186667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x19{left:9.440000pt;}
.x17{left:74.714667pt;}
.x1a{left:81.471988pt;}
.x18{left:86.746667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:96.031988pt;}
.x7{left:105.311988pt;}
.x16{left:120.031988pt;}
.xf{left:124.511988pt;}
.xd{left:127.551988pt;}
.x8{left:138.426655pt;}
.xb{left:144.026655pt;}
.x4{left:180.874667pt;}
.xe{left:240.186655pt;}
.xc{left:339.746655pt;}
.xa{left:362.946655pt;}
.x11{left:370.306667pt;}
.x6{left:389.506655pt;}
.x9{left:396.866655pt;}
.x3{left:404.408000pt;}
.x12{left:439.293333pt;}
.x13{left:518.493333pt;}
.x14{left:597.733333pt;}
.x15{left:677.093333pt;}
}




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