
    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_53b4c0ed536c97276c0ebd50.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_aa6801eeced4985e2d786b19.woff')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_988b9d7de19b20022c08e968.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_54e75b8dfeb4b2ee82ec374d.woff')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_ff74e3dcaa0ba3ad8e919548.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_df9d8aa1a77d7557c1ea7174.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6476de7215eeb9262c4700ba.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_3e6413a31e9c2c88f753f2d9.woff')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_0347987ecd6d4e19e5a5b91a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.128418;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_b921c63d6d8bea46c979e7c2.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2087af6e4ac287211a0790aa.woff')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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_0d9881c481c94827cd327bc7.woff')format("woff");}.ffc{font-family:ffc;line-height:1.435059;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:ffd;src:url('chunks/assets/font_d06e0dd5ac0d0d92ea9c1f24.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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:ffe;src:url('chunks/assets/font_a084b30fdc77c74d8e318ae4.woff')format("woff");}.ffe{font-family:ffe;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;}
.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:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls20{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.460200px;}
.ls12{letter-spacing:-0.413400px;}
.lsf{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.259800px;}
.ls19{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.235920px;}
.ls7{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.311760px;}
.ls1d{letter-spacing:0.319680px;}
.ls2{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.828000px;}
.lse{letter-spacing:0.900000px;}
.ls5{letter-spacing:2.424000px;}
.ls6{letter-spacing:2.748000px;}
.ls0{letter-spacing:2.880000px;}
.lsc{letter-spacing:3.060000px;}
.ls4{letter-spacing:3.144000px;}
.ls1c{letter-spacing:38.082720px;}
.ls1b{letter-spacing:41.682720px;}
.ls18{letter-spacing:64.026720px;}
.ls17{letter-spacing:129.546720px;}
.ls15{letter-spacing:146.082720px;}
.ls14{letter-spacing:162.642720px;}
.ls1e{letter-spacing:2196.060000px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws0{word-spacing:-19.642080px;}
.ws1{word-spacing:-18.922080px;}
.ws8{word-spacing:-15.768000px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.238800px;}
.ws4{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wse{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.wsd{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._25{margin-left:-2103.482400px;}
._21{margin-left:-2.380800px;}
._3{margin-left:-1.314720px;}
._1{width:1.842960px;}
._0{width:2.914560px;}
._2{width:4.384800px;}
._9{width:6.095520px;}
._b{width:7.111440px;}
._a{width:8.187120px;}
._6{width:10.159200px;}
._7{width:11.194320px;}
._11{width:13.216560px;}
._8{width:16.314480px;}
._10{width:17.688960px;}
._f{width:18.724080px;}
._13{width:20.318400px;}
._24{width:21.771840px;}
._12{width:23.394960px;}
._d{width:24.960480px;}
._c{width:26.124720px;}
._14{width:27.413520px;}
._23{width:28.804320px;}
._27{width:30.895920px;}
._28{width:32.150880px;}
._e{width:42.847920px;}
._1a{width:50.317920px;}
._1b{width:51.668640px;}
._18{width:54.853200px;}
._1e{width:58.573200px;}
._26{width:60.368400px;}
._1d{width:67.648320px;}
._19{width:69.433200px;}
._22{width:71.993280px;}
._20{width:104.320080px;}
._17{width:109.033200px;}
._1c{width:114.199920px;}
._1f{width:142.169040px;}
._16{width:164.349600px;}
._15{width:391.607280px;}
._4{width:1042.896000px;}
._5{width:1141.680000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs5{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.700000px;}
.yb0{bottom:3.240000px;}
.ye6{bottom:3.414000px;}
.y12{bottom:3.420000px;}
.ycd{bottom:3.450000px;}
.y34{bottom:3.600000px;}
.y18{bottom:3.780000px;}
.y6{bottom:4.140000px;}
.ye8{bottom:4.860000px;}
.y5{bottom:8.100000px;}
.y3{bottom:12.780000px;}
.y33{bottom:20.520000px;}
.y81{bottom:20.700000px;}
.ydb{bottom:20.745000px;}
.y17{bottom:20.880000px;}
.y2d{bottom:21.105000px;}
.y2a{bottom:22.500000px;}
.y2{bottom:28.980000px;}
.y113{bottom:37.800000px;}
.y80{bottom:37.980000px;}
.y2e{bottom:38.025000px;}
.y16{bottom:38.160000px;}
.y2c{bottom:38.385000px;}
.y29{bottom:39.600000px;}
.yda{bottom:55.305000px;}
.y15{bottom:55.440000px;}
.yb{bottom:56.700000px;}
.y28{bottom:56.880000px;}
.y14{bottom:72.360000px;}
.yd9{bottom:72.585000px;}
.y19{bottom:72.720000px;}
.ya{bottom:73.980000px;}
.y27{bottom:74.160000px;}
.y32{bottom:90.000000px;}
.y26{bottom:91.440000px;}
.y31{bottom:107.100000px;}
.y112{bottom:107.280000px;}
.y25{bottom:108.720000px;}
.ye9{bottom:111.456000px;}
.yae{bottom:120.096000px;}
.y106{bottom:123.336000px;}
.y111{bottom:124.020000px;}
.y30{bottom:124.380000px;}
.y24{bottom:126.000000px;}
.y56{bottom:126.756000px;}
.ye7{bottom:129.816000px;}
.yad{bottom:137.556000px;}
.y92{bottom:138.816000px;}
.y105{bottom:140.616000px;}
.y2f{bottom:141.300000px;}
.y23{bottom:143.100000px;}
.y55{bottom:144.036000px;}
.ye5{bottom:148.896000px;}
.yac{bottom:151.050000px;}
.y91{bottom:156.450000px;}
.y104{bottom:157.890000px;}
.y22{bottom:160.380000px;}
.y54{bottom:161.310000px;}
.ye4{bottom:166.890000px;}
.yab{bottom:168.330000px;}
.y90{bottom:173.550000px;}
.y103{bottom:175.170000px;}
.y21{bottom:177.705000px;}
.y53{bottom:178.590000px;}
.yaa{bottom:186.330000px;}
.ye3{bottom:187.950000px;}
.y8f{bottom:190.830000px;}
.y102{bottom:192.450000px;}
.y20{bottom:194.985000px;}
.y52{bottom:195.690000px;}
.ye2{bottom:204.690000px;}
.y8e{bottom:208.110000px;}
.y101{bottom:209.550000px;}
.y1f{bottom:212.265000px;}
.y51{bottom:212.970000px;}
.ye1{bottom:222.330000px;}
.y8d{bottom:225.030000px;}
.y100{bottom:226.830000px;}
.y1e{bottom:229.365000px;}
.y50{bottom:230.250000px;}
.ya9{bottom:238.890000px;}
.ye0{bottom:239.610000px;}
.y8c{bottom:242.670000px;}
.yff{bottom:244.110000px;}
.y1d{bottom:246.645000px;}
.y4f{bottom:247.530000px;}
.ydf{bottom:256.890000px;}
.y8b{bottom:259.950000px;}
.yfe{bottom:261.390000px;}
.y1c{bottom:263.925000px;}
.y4e{bottom:264.810000px;}
.yde{bottom:274.170000px;}
.y8a{bottom:277.050000px;}
.yfd{bottom:278.670000px;}
.y1b{bottom:281.205000px;}
.y4d{bottom:282.090000px;}
.ydd{bottom:287.670000px;}
.y89{bottom:294.330000px;}
.yfc{bottom:295.950000px;}
.y4c{bottom:299.190000px;}
.y88{bottom:311.610000px;}
.yfb{bottom:313.050000px;}
.y4b{bottom:316.110000px;}
.ydc{bottom:322.050000px;}
.y115{bottom:327.810000px;}
.y87{bottom:328.530000px;}
.ya8{bottom:328.890000px;}
.yfa{bottom:330.330000px;}
.y4a{bottom:333.390000px;}
.yd8{bottom:340.050000px;}
.y114{bottom:342.030000px;}
.ya7{bottom:345.810000px;}
.y86{bottom:346.170000px;}
.yf9{bottom:347.610000px;}
.y49{bottom:350.670000px;}
.y110{bottom:359.355000px;}
.y85{bottom:363.495000px;}
.yf8{bottom:364.575000px;}
.y48{bottom:367.995000px;}
.y84{bottom:380.595000px;}
.yf7{bottom:381.855000px;}
.y47{bottom:385.635000px;}
.y83{bottom:394.095000px;}
.ya6{bottom:397.875000px;}
.yf6{bottom:399.495000px;}
.y46{bottom:402.735000px;}
.y82{bottom:411.375000px;}
.ya5{bottom:415.155000px;}
.yf5{bottom:416.595000px;}
.y45{bottom:420.015000px;}
.yd7{bottom:427.215000px;}
.y7f{bottom:429.375000px;}
.ya4{bottom:432.435000px;}
.yf4{bottom:433.875000px;}
.y44{bottom:437.295000px;}
.ya3{bottom:449.715000px;}
.yf3{bottom:451.155000px;}
.y43{bottom:454.575000px;}
.yd6{bottom:465.375000px;}
.ya2{bottom:466.815000px;}
.yf2{bottom:468.435000px;}
.y42{bottom:471.855000px;}
.y7e{bottom:481.935000px;}
.yd5{bottom:482.655000px;}
.ya1{bottom:484.095000px;}
.yf1{bottom:485.715000px;}
.y41{bottom:489.135000px;}
.ya0{bottom:497.595000px;}
.y10f{bottom:498.135000px;}
.yd4{bottom:499.935000px;}
.yf0{bottom:502.455000px;}
.y40{bottom:506.235000px;}
.y9f{bottom:514.875000px;}
.yd3{bottom:517.215000px;}
.y10e{bottom:519.735000px;}
.y7d{bottom:520.095000px;}
.y3f{bottom:523.515000px;}
.y9e{bottom:532.875000px;}
.yd2{bottom:533.955000px;}
.y7c{bottom:537.375000px;}
.y3e{bottom:540.795000px;}
.yd1{bottom:551.595000px;}
.y10d{bottom:554.295000px;}
.y7b{bottom:554.655000px;}
.y3d{bottom:558.075000px;}
.y9d{bottom:568.155000px;}
.yd0{bottom:568.875000px;}
.y10c{bottom:571.575000px;}
.y7a{bottom:571.935000px;}
.y3c{bottom:575.355000px;}
.ycf{bottom:586.155000px;}
.y79{bottom:588.855000px;}
.y9c{bottom:589.215000px;}
.y3b{bottom:592.455000px;}
.yce{bottom:603.435000px;}
.y10b{bottom:606.135000px;}
.y78{bottom:606.315000px;}
.y3a{bottom:609.735000px;}
.ycc{bottom:616.935000px;}
.y77{bottom:623.265000px;}
.y9b{bottom:623.625000px;}
.y39{bottom:627.045000px;}
.ycb{bottom:634.245000px;}
.y76{bottom:640.545000px;}
.y9a{bottom:640.905000px;}
.y38{bottom:644.325000px;}
.yca{bottom:651.345000px;}
.y99{bottom:657.825000px;}
.y75{bottom:658.185000px;}
.y37{bottom:661.605000px;}
.yc9{bottom:668.625000px;}
.y10a{bottom:675.105000px;}
.y74{bottom:675.465000px;}
.y36{bottom:678.525000px;}
.yc8{bottom:686.625000px;}
.y109{bottom:692.385000px;}
.y73{bottom:692.745000px;}
.y35{bottom:695.625000px;}
.yc7{bottom:704.625000px;}
.y98{bottom:709.485000px;}
.y72{bottom:709.845000px;}
.y1a{bottom:710.385000px;}
.yc6{bottom:725.685000px;}
.y97{bottom:726.765000px;}
.y71{bottom:727.125000px;}
.yc5{bottom:742.965000px;}
.y108{bottom:744.045000px;}
.y70{bottom:744.405000px;}
.yc4{bottom:760.245000px;}
.y107{bottom:761.325000px;}
.y6f{bottom:761.685000px;}
.yc3{bottom:776.985000px;}
.y6e{bottom:778.605000px;}
.y96{bottom:778.965000px;}
.yc2{bottom:794.625000px;}
.y6d{bottom:795.705000px;}
.yef{bottom:796.065000px;}
.yc1{bottom:811.905000px;}
.y6c{bottom:813.345000px;}
.yc0{bottom:829.185000px;}
.yee{bottom:830.265000px;}
.y6b{bottom:830.625000px;}
.ybf{bottom:846.105000px;}
.yed{bottom:847.545000px;}
.y6a{bottom:847.905000px;}
.ybe{bottom:863.565000px;}
.y69{bottom:865.185000px;}
.y2b{bottom:866.265000px;}
.ybd{bottom:880.890000px;}
.y68{bottom:882.510000px;}
.ybc{bottom:898.170000px;}
.y67{bottom:899.610000px;}
.ybb{bottom:915.450000px;}
.y95{bottom:916.530000px;}
.y66{bottom:916.890000px;}
.y13{bottom:918.870000px;}
.yba{bottom:932.730000px;}
.y65{bottom:934.170000px;}
.yb9{bottom:946.230000px;}
.yec{bottom:951.090000px;}
.y64{bottom:951.450000px;}
.yb8{bottom:963.510000px;}
.y63{bottom:968.730000px;}
.yb7{bottom:980.610000px;}
.y62{bottom:986.010000px;}
.yb6{bottom:997.890000px;}
.y61{bottom:1003.110000px;}
.y11{bottom:1005.810000px;}
.yb5{bottom:1015.170000px;}
.y94{bottom:1020.030000px;}
.y60{bottom:1020.390000px;}
.y10{bottom:1027.230000px;}
.yb4{bottom:1032.450000px;}
.y93{bottom:1037.310000px;}
.y5f{bottom:1037.670000px;}
.yf{bottom:1044.510000px;}
.yb3{bottom:1049.730000px;}
.y5e{bottom:1054.950000px;}
.ye{bottom:1062.150000px;}
.yb2{bottom:1067.010000px;}
.yeb{bottom:1071.870000px;}
.y5d{bottom:1072.230000px;}
.yd{bottom:1080.330000px;}
.yb1{bottom:1085.010000px;}
.yea{bottom:1089.150000px;}
.y5c{bottom:1089.510000px;}
.yaf{bottom:1103.010000px;}
.yc{bottom:1104.450000px;}
.y5b{bottom:1106.610000px;}
.y5a{bottom:1123.890000px;}
.y9{bottom:1127.670000px;}
.y59{bottom:1141.200000px;}
.y8{bottom:1144.980000px;}
.y1{bottom:1158.480000px;}
.y58{bottom:1178.820000px;}
.y4{bottom:1179.360000px;}
.y57{bottom:1196.100000px;}
.h16{height:17.100000px;}
.hc{height:17.280000px;}
.h17{height:17.316000px;}
.h1a{height:18.360000px;}
.h6{height:20.880000px;}
.h5{height:23.400000px;}
.h12{height:34.380000px;}
.h15{height:34.416000px;}
.h14{height:34.560000px;}
.h7{height:36.651094px;}
.h8{height:40.500000px;}
.h1c{height:41.522695px;}
.h2{height:44.280000px;}
.h13{height:51.840000px;}
.h10{height:51.876000px;}
.h4{height:54.421875px;}
.he{height:58.621992px;}
.h9{height:58.651172px;}
.hb{height:60.226875px;}
.h18{height:61.423863px;}
.h1b{height:62.211094px;}
.h1d{height:65.518594px;}
.h3{height:66.757500px;}
.ha{height:84.898125px;}
.hd{height:86.220000px;}
.h19{height:86.436000px;}
.h1e{height:137.880000px;}
.h11{height:155.160000px;}
.hf{height:294.690000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:30.960000px;}
.w31{width:55.440000px;}
.w2c{width:93.996000px;}
.w2a{width:94.500000px;}
.w29{width:94.536000px;}
.w19{width:100.836000px;}
.w1b{width:101.196000px;}
.w2b{width:101.376000px;}
.wc{width:108.036000px;}
.w17{width:128.196000px;}
.w18{width:128.340000px;}
.wa{width:136.080000px;}
.we{width:136.440000px;}
.w1f{width:141.336000px;}
.w21{width:141.876000px;}
.w10{width:142.740000px;}
.w14{width:143.100000px;}
.wb{width:148.536000px;}
.w1e{width:155.190000px;}
.w12{width:162.030000px;}
.wd{width:168.330000px;}
.wf{width:168.690000px;}
.w2d{width:171.570000px;}
.w2f{width:171.930000px;}
.w11{width:175.530000px;}
.w6{width:176.250000px;}
.w32{width:182.190000px;}
.w24{width:191.190000px;}
.w16{width:203.610000px;}
.w1a{width:203.970000px;}
.w2{width:216.570000px;}
.w5{width:225.795000px;}
.w13{width:229.215000px;}
.w15{width:229.575000px;}
.w25{width:236.055000px;}
.w27{width:236.415000px;}
.w23{width:265.170000px;}
.w26{width:265.530000px;}
.w4{width:269.850000px;}
.w35{width:337.755000px;}
.w36{width:340.275000px;}
.w1d{width:392.655000px;}
.w20{width:393.015000px;}
.w8{width:470.805000px;}
.w3{width:495.645000px;}
.w33{width:499.605000px;}
.w2e{width:520.845000px;}
.w30{width:521.205000px;}
.w34{width:678.030000px;}
.w1c{width:690.090000px;}
.w22{width:693.150000px;}
.w9{width:710.250000px;}
.w28{width:717.090000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:1.260000px;}
.x2{left:4.680000px;}
.xf{left:7.020000px;}
.xc{left:8.100000px;}
.x1f{left:12.420000px;}
.x5{left:34.920000px;}
.x20{left:36.540000px;}
.x22{left:39.240000px;}
.x32{left:43.425000px;}
.x26{left:52.740000px;}
.x15{left:66.645000px;}
.x24{left:70.740000px;}
.x19{left:74.025000px;}
.x23{left:77.400000px;}
.x1a{left:83.925000px;}
.x28{left:86.625000px;}
.x1{left:90.396000px;}
.x29{left:91.470000px;}
.x2c{left:95.610000px;}
.x10{left:99.936000px;}
.x7{left:108.036000px;}
.x2a{left:113.985000px;}
.x2b{left:118.125000px;}
.x9{left:121.896000px;}
.x2d{left:135.036000px;}
.x39{left:146.556000px;}
.x38{left:148.536000px;}
.x35{left:155.370000px;}
.x36{left:162.030000px;}
.x34{left:213.330000px;}
.x3a{left:232.410000px;}
.x11{left:236.370000px;}
.x16{left:243.030000px;}
.x33{left:271.875000px;}
.xb{left:275.295000px;}
.xd{left:283.755000px;}
.x1b{left:303.915000px;}
.x3{left:306.975000px;}
.xe{left:314.715000px;}
.x2e{left:337.575000px;}
.x25{left:365.475000px;}
.xa{left:371.955000px;}
.x12{left:384.915000px;}
.x17{left:418.575000px;}
.x1c{left:432.105000px;}
.x3b{left:445.245000px;}
.x37{left:446.505000px;}
.x13{left:492.945000px;}
.x2f{left:526.605000px;}
.x27{left:556.665000px;}
.x1d{left:560.445000px;}
.x6{left:576.825000px;}
.x18{left:580.605000px;}
.x30{left:627.990000px;}
.x14{left:641.490000px;}
.x21{left:648.150000px;}
.x1e{left:708.990000px;}
.x31{left:722.490000px;}
.x8{left:770.040000px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.409067pt;}
.ls12{letter-spacing:-0.367467pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.230933pt;}
.ls19{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.209707pt;}
.ls7{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.277120pt;}
.ls1d{letter-spacing:0.284160pt;}
.ls2{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.736000pt;}
.lse{letter-spacing:0.800000pt;}
.ls5{letter-spacing:2.154667pt;}
.ls6{letter-spacing:2.442667pt;}
.ls0{letter-spacing:2.560000pt;}
.lsc{letter-spacing:2.720000pt;}
.ls4{letter-spacing:2.794667pt;}
.ls1c{letter-spacing:33.851307pt;}
.ls1b{letter-spacing:37.051307pt;}
.ls18{letter-spacing:56.912640pt;}
.ls17{letter-spacing:115.152640pt;}
.ls15{letter-spacing:129.851307pt;}
.ls14{letter-spacing:144.571307pt;}
.ls1e{letter-spacing:1952.053333pt;}
.wsc{word-spacing:-53.120000pt;}
.ws0{word-spacing:-17.459627pt;}
.ws1{word-spacing:-16.819627pt;}
.ws8{word-spacing:-14.016000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.wsd{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._25{margin-left:-1869.762133pt;}
._21{margin-left:-2.116267pt;}
._3{margin-left:-1.168640pt;}
._1{width:1.638187pt;}
._0{width:2.590720pt;}
._2{width:3.897600pt;}
._9{width:5.418240pt;}
._b{width:6.321280pt;}
._a{width:7.277440pt;}
._6{width:9.030400pt;}
._7{width:9.950507pt;}
._11{width:11.748053pt;}
._8{width:14.501760pt;}
._10{width:15.723520pt;}
._f{width:16.643627pt;}
._13{width:18.060800pt;}
._24{width:19.352747pt;}
._12{width:20.795520pt;}
._d{width:22.187093pt;}
._c{width:23.221973pt;}
._14{width:24.367573pt;}
._23{width:25.603840pt;}
._27{width:27.463040pt;}
._28{width:28.578560pt;}
._e{width:38.087040pt;}
._1a{width:44.727040pt;}
._1b{width:45.927680pt;}
._18{width:48.758400pt;}
._1e{width:52.065067pt;}
._26{width:53.660800pt;}
._1d{width:60.131840pt;}
._19{width:61.718400pt;}
._22{width:63.994027pt;}
._20{width:92.728960pt;}
._17{width:96.918400pt;}
._1c{width:101.511040pt;}
._1f{width:126.372480pt;}
._16{width:146.088533pt;}
._15{width:348.095360pt;}
._4{width:927.018667pt;}
._5{width:1014.826667pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.400000pt;}
.yb0{bottom:2.880000pt;}
.ye6{bottom:3.034667pt;}
.y12{bottom:3.040000pt;}
.ycd{bottom:3.066667pt;}
.y34{bottom:3.200000pt;}
.y18{bottom:3.360000pt;}
.y6{bottom:3.680000pt;}
.ye8{bottom:4.320000pt;}
.y5{bottom:7.200000pt;}
.y3{bottom:11.360000pt;}
.y33{bottom:18.240000pt;}
.y81{bottom:18.400000pt;}
.ydb{bottom:18.440000pt;}
.y17{bottom:18.560000pt;}
.y2d{bottom:18.760000pt;}
.y2a{bottom:20.000000pt;}
.y2{bottom:25.760000pt;}
.y113{bottom:33.600000pt;}
.y80{bottom:33.760000pt;}
.y2e{bottom:33.800000pt;}
.y16{bottom:33.920000pt;}
.y2c{bottom:34.120000pt;}
.y29{bottom:35.200000pt;}
.yda{bottom:49.160000pt;}
.y15{bottom:49.280000pt;}
.yb{bottom:50.400000pt;}
.y28{bottom:50.560000pt;}
.y14{bottom:64.320000pt;}
.yd9{bottom:64.520000pt;}
.y19{bottom:64.640000pt;}
.ya{bottom:65.760000pt;}
.y27{bottom:65.920000pt;}
.y32{bottom:80.000000pt;}
.y26{bottom:81.280000pt;}
.y31{bottom:95.200000pt;}
.y112{bottom:95.360000pt;}
.y25{bottom:96.640000pt;}
.ye9{bottom:99.072000pt;}
.yae{bottom:106.752000pt;}
.y106{bottom:109.632000pt;}
.y111{bottom:110.240000pt;}
.y30{bottom:110.560000pt;}
.y24{bottom:112.000000pt;}
.y56{bottom:112.672000pt;}
.ye7{bottom:115.392000pt;}
.yad{bottom:122.272000pt;}
.y92{bottom:123.392000pt;}
.y105{bottom:124.992000pt;}
.y2f{bottom:125.600000pt;}
.y23{bottom:127.200000pt;}
.y55{bottom:128.032000pt;}
.ye5{bottom:132.352000pt;}
.yac{bottom:134.266667pt;}
.y91{bottom:139.066667pt;}
.y104{bottom:140.346667pt;}
.y22{bottom:142.560000pt;}
.y54{bottom:143.386667pt;}
.ye4{bottom:148.346667pt;}
.yab{bottom:149.626667pt;}
.y90{bottom:154.266667pt;}
.y103{bottom:155.706667pt;}
.y21{bottom:157.960000pt;}
.y53{bottom:158.746667pt;}
.yaa{bottom:165.626667pt;}
.ye3{bottom:167.066667pt;}
.y8f{bottom:169.626667pt;}
.y102{bottom:171.066667pt;}
.y20{bottom:173.320000pt;}
.y52{bottom:173.946667pt;}
.ye2{bottom:181.946667pt;}
.y8e{bottom:184.986667pt;}
.y101{bottom:186.266667pt;}
.y1f{bottom:188.680000pt;}
.y51{bottom:189.306667pt;}
.ye1{bottom:197.626667pt;}
.y8d{bottom:200.026667pt;}
.y100{bottom:201.626667pt;}
.y1e{bottom:203.880000pt;}
.y50{bottom:204.666667pt;}
.ya9{bottom:212.346667pt;}
.ye0{bottom:212.986667pt;}
.y8c{bottom:215.706667pt;}
.yff{bottom:216.986667pt;}
.y1d{bottom:219.240000pt;}
.y4f{bottom:220.026667pt;}
.ydf{bottom:228.346667pt;}
.y8b{bottom:231.066667pt;}
.yfe{bottom:232.346667pt;}
.y1c{bottom:234.600000pt;}
.y4e{bottom:235.386667pt;}
.yde{bottom:243.706667pt;}
.y8a{bottom:246.266667pt;}
.yfd{bottom:247.706667pt;}
.y1b{bottom:249.960000pt;}
.y4d{bottom:250.746667pt;}
.ydd{bottom:255.706667pt;}
.y89{bottom:261.626667pt;}
.yfc{bottom:263.066667pt;}
.y4c{bottom:265.946667pt;}
.y88{bottom:276.986667pt;}
.yfb{bottom:278.266667pt;}
.y4b{bottom:280.986667pt;}
.ydc{bottom:286.266667pt;}
.y115{bottom:291.386667pt;}
.y87{bottom:292.026667pt;}
.ya8{bottom:292.346667pt;}
.yfa{bottom:293.626667pt;}
.y4a{bottom:296.346667pt;}
.yd8{bottom:302.266667pt;}
.y114{bottom:304.026667pt;}
.ya7{bottom:307.386667pt;}
.y86{bottom:307.706667pt;}
.yf9{bottom:308.986667pt;}
.y49{bottom:311.706667pt;}
.y110{bottom:319.426667pt;}
.y85{bottom:323.106667pt;}
.yf8{bottom:324.066667pt;}
.y48{bottom:327.106667pt;}
.y84{bottom:338.306667pt;}
.yf7{bottom:339.426667pt;}
.y47{bottom:342.786667pt;}
.y83{bottom:350.306667pt;}
.ya6{bottom:353.666667pt;}
.yf6{bottom:355.106667pt;}
.y46{bottom:357.986667pt;}
.y82{bottom:365.666667pt;}
.ya5{bottom:369.026667pt;}
.yf5{bottom:370.306667pt;}
.y45{bottom:373.346667pt;}
.yd7{bottom:379.746667pt;}
.y7f{bottom:381.666667pt;}
.ya4{bottom:384.386667pt;}
.yf4{bottom:385.666667pt;}
.y44{bottom:388.706667pt;}
.ya3{bottom:399.746667pt;}
.yf3{bottom:401.026667pt;}
.y43{bottom:404.066667pt;}
.yd6{bottom:413.666667pt;}
.ya2{bottom:414.946667pt;}
.yf2{bottom:416.386667pt;}
.y42{bottom:419.426667pt;}
.y7e{bottom:428.386667pt;}
.yd5{bottom:429.026667pt;}
.ya1{bottom:430.306667pt;}
.yf1{bottom:431.746667pt;}
.y41{bottom:434.786667pt;}
.ya0{bottom:442.306667pt;}
.y10f{bottom:442.786667pt;}
.yd4{bottom:444.386667pt;}
.yf0{bottom:446.626667pt;}
.y40{bottom:449.986667pt;}
.y9f{bottom:457.666667pt;}
.yd3{bottom:459.746667pt;}
.y10e{bottom:461.986667pt;}
.y7d{bottom:462.306667pt;}
.y3f{bottom:465.346667pt;}
.y9e{bottom:473.666667pt;}
.yd2{bottom:474.626667pt;}
.y7c{bottom:477.666667pt;}
.y3e{bottom:480.706667pt;}
.yd1{bottom:490.306667pt;}
.y10d{bottom:492.706667pt;}
.y7b{bottom:493.026667pt;}
.y3d{bottom:496.066667pt;}
.y9d{bottom:505.026667pt;}
.yd0{bottom:505.666667pt;}
.y10c{bottom:508.066667pt;}
.y7a{bottom:508.386667pt;}
.y3c{bottom:511.426667pt;}
.ycf{bottom:521.026667pt;}
.y79{bottom:523.426667pt;}
.y9c{bottom:523.746667pt;}
.y3b{bottom:526.626667pt;}
.yce{bottom:536.386667pt;}
.y10b{bottom:538.786667pt;}
.y78{bottom:538.946667pt;}
.y3a{bottom:541.986667pt;}
.ycc{bottom:548.386667pt;}
.y77{bottom:554.013333pt;}
.y9b{bottom:554.333333pt;}
.y39{bottom:557.373333pt;}
.ycb{bottom:563.773333pt;}
.y76{bottom:569.373333pt;}
.y9a{bottom:569.693333pt;}
.y38{bottom:572.733333pt;}
.yca{bottom:578.973333pt;}
.y99{bottom:584.733333pt;}
.y75{bottom:585.053333pt;}
.y37{bottom:588.093333pt;}
.yc9{bottom:594.333333pt;}
.y10a{bottom:600.093333pt;}
.y74{bottom:600.413333pt;}
.y36{bottom:603.133333pt;}
.yc8{bottom:610.333333pt;}
.y109{bottom:615.453333pt;}
.y73{bottom:615.773333pt;}
.y35{bottom:618.333333pt;}
.yc7{bottom:626.333333pt;}
.y98{bottom:630.653333pt;}
.y72{bottom:630.973333pt;}
.y1a{bottom:631.453333pt;}
.yc6{bottom:645.053333pt;}
.y97{bottom:646.013333pt;}
.y71{bottom:646.333333pt;}
.yc5{bottom:660.413333pt;}
.y108{bottom:661.373333pt;}
.y70{bottom:661.693333pt;}
.yc4{bottom:675.773333pt;}
.y107{bottom:676.733333pt;}
.y6f{bottom:677.053333pt;}
.yc3{bottom:690.653333pt;}
.y6e{bottom:692.093333pt;}
.y96{bottom:692.413333pt;}
.yc2{bottom:706.333333pt;}
.y6d{bottom:707.293333pt;}
.yef{bottom:707.613333pt;}
.yc1{bottom:721.693333pt;}
.y6c{bottom:722.973333pt;}
.yc0{bottom:737.053333pt;}
.yee{bottom:738.013333pt;}
.y6b{bottom:738.333333pt;}
.ybf{bottom:752.093333pt;}
.yed{bottom:753.373333pt;}
.y6a{bottom:753.693333pt;}
.ybe{bottom:767.613333pt;}
.y69{bottom:769.053333pt;}
.y2b{bottom:770.013333pt;}
.ybd{bottom:783.013333pt;}
.y68{bottom:784.453333pt;}
.ybc{bottom:798.373333pt;}
.y67{bottom:799.653333pt;}
.ybb{bottom:813.733333pt;}
.y95{bottom:814.693333pt;}
.y66{bottom:815.013333pt;}
.y13{bottom:816.773333pt;}
.yba{bottom:829.093333pt;}
.y65{bottom:830.373333pt;}
.yb9{bottom:841.093333pt;}
.yec{bottom:845.413333pt;}
.y64{bottom:845.733333pt;}
.yb8{bottom:856.453333pt;}
.y63{bottom:861.093333pt;}
.yb7{bottom:871.653333pt;}
.y62{bottom:876.453333pt;}
.yb6{bottom:887.013333pt;}
.y61{bottom:891.653333pt;}
.y11{bottom:894.053333pt;}
.yb5{bottom:902.373333pt;}
.y94{bottom:906.693333pt;}
.y60{bottom:907.013333pt;}
.y10{bottom:913.093333pt;}
.yb4{bottom:917.733333pt;}
.y93{bottom:922.053333pt;}
.y5f{bottom:922.373333pt;}
.yf{bottom:928.453333pt;}
.yb3{bottom:933.093333pt;}
.y5e{bottom:937.733333pt;}
.ye{bottom:944.133333pt;}
.yb2{bottom:948.453333pt;}
.yeb{bottom:952.773333pt;}
.y5d{bottom:953.093333pt;}
.yd{bottom:960.293333pt;}
.yb1{bottom:964.453333pt;}
.yea{bottom:968.133333pt;}
.y5c{bottom:968.453333pt;}
.yaf{bottom:980.453333pt;}
.yc{bottom:981.733333pt;}
.y5b{bottom:983.653333pt;}
.y5a{bottom:999.013333pt;}
.y9{bottom:1002.373333pt;}
.y59{bottom:1014.400000pt;}
.y8{bottom:1017.760000pt;}
.y1{bottom:1029.760000pt;}
.y58{bottom:1047.840000pt;}
.y4{bottom:1048.320000pt;}
.y57{bottom:1063.200000pt;}
.h16{height:15.200000pt;}
.hc{height:15.360000pt;}
.h17{height:15.392000pt;}
.h1a{height:16.320000pt;}
.h6{height:18.560000pt;}
.h5{height:20.800000pt;}
.h12{height:30.560000pt;}
.h15{height:30.592000pt;}
.h14{height:30.720000pt;}
.h7{height:32.578750pt;}
.h8{height:36.000000pt;}
.h1c{height:36.909063pt;}
.h2{height:39.360000pt;}
.h13{height:46.080000pt;}
.h10{height:46.112000pt;}
.h4{height:48.375000pt;}
.he{height:52.108438pt;}
.h9{height:52.134375pt;}
.hb{height:53.535000pt;}
.h18{height:54.598989pt;}
.h1b{height:55.298750pt;}
.h1d{height:58.238750pt;}
.h3{height:59.340000pt;}
.ha{height:75.465000pt;}
.hd{height:76.640000pt;}
.h19{height:76.832000pt;}
.h1e{height:122.560000pt;}
.h11{height:137.920000pt;}
.hf{height:261.946667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:27.520000pt;}
.w31{width:49.280000pt;}
.w2c{width:83.552000pt;}
.w2a{width:84.000000pt;}
.w29{width:84.032000pt;}
.w19{width:89.632000pt;}
.w1b{width:89.952000pt;}
.w2b{width:90.112000pt;}
.wc{width:96.032000pt;}
.w17{width:113.952000pt;}
.w18{width:114.080000pt;}
.wa{width:120.960000pt;}
.we{width:121.280000pt;}
.w1f{width:125.632000pt;}
.w21{width:126.112000pt;}
.w10{width:126.880000pt;}
.w14{width:127.200000pt;}
.wb{width:132.032000pt;}
.w1e{width:137.946667pt;}
.w12{width:144.026667pt;}
.wd{width:149.626667pt;}
.wf{width:149.946667pt;}
.w2d{width:152.506667pt;}
.w2f{width:152.826667pt;}
.w11{width:156.026667pt;}
.w6{width:156.666667pt;}
.w32{width:161.946667pt;}
.w24{width:169.946667pt;}
.w16{width:180.986667pt;}
.w1a{width:181.306667pt;}
.w2{width:192.506667pt;}
.w5{width:200.706667pt;}
.w13{width:203.746667pt;}
.w15{width:204.066667pt;}
.w25{width:209.826667pt;}
.w27{width:210.146667pt;}
.w23{width:235.706667pt;}
.w26{width:236.026667pt;}
.w4{width:239.866667pt;}
.w35{width:300.226667pt;}
.w36{width:302.466667pt;}
.w1d{width:349.026667pt;}
.w20{width:349.346667pt;}
.w8{width:418.493333pt;}
.w3{width:440.573333pt;}
.w33{width:444.093333pt;}
.w2e{width:462.973333pt;}
.w30{width:463.293333pt;}
.w34{width:602.693333pt;}
.w1c{width:613.413333pt;}
.w22{width:616.133333pt;}
.w9{width:631.333333pt;}
.w28{width:637.413333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:1.120000pt;}
.x2{left:4.160000pt;}
.xf{left:6.240000pt;}
.xc{left:7.200000pt;}
.x1f{left:11.040000pt;}
.x5{left:31.040000pt;}
.x20{left:32.480000pt;}
.x22{left:34.880000pt;}
.x32{left:38.600000pt;}
.x26{left:46.880000pt;}
.x15{left:59.240000pt;}
.x24{left:62.880000pt;}
.x19{left:65.800000pt;}
.x23{left:68.800000pt;}
.x1a{left:74.600000pt;}
.x28{left:77.000000pt;}
.x1{left:80.352000pt;}
.x29{left:81.306667pt;}
.x2c{left:84.986667pt;}
.x10{left:88.832000pt;}
.x7{left:96.032000pt;}
.x2a{left:101.320000pt;}
.x2b{left:105.000000pt;}
.x9{left:108.352000pt;}
.x2d{left:120.032000pt;}
.x39{left:130.272000pt;}
.x38{left:132.032000pt;}
.x35{left:138.106667pt;}
.x36{left:144.026667pt;}
.x34{left:189.626667pt;}
.x3a{left:206.586667pt;}
.x11{left:210.106667pt;}
.x16{left:216.026667pt;}
.x33{left:241.666667pt;}
.xb{left:244.706667pt;}
.xd{left:252.226667pt;}
.x1b{left:270.146667pt;}
.x3{left:272.866667pt;}
.xe{left:279.746667pt;}
.x2e{left:300.066667pt;}
.x25{left:324.866667pt;}
.xa{left:330.626667pt;}
.x12{left:342.146667pt;}
.x17{left:372.066667pt;}
.x1c{left:384.093333pt;}
.x3b{left:395.773333pt;}
.x37{left:396.893333pt;}
.x13{left:438.173333pt;}
.x2f{left:468.093333pt;}
.x27{left:494.813333pt;}
.x1d{left:498.173333pt;}
.x6{left:512.733333pt;}
.x18{left:516.093333pt;}
.x30{left:558.213333pt;}
.x14{left:570.213333pt;}
.x21{left:576.133333pt;}
.x1e{left:630.213333pt;}
.x31{left:642.213333pt;}
.x8{left:684.480000pt;}
}




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