
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a99d0d24cabf81aea149666b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_aedebc782596eab72be0f1fe.woff')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_31909000889163def83b5fa7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ff5{font-family:ff5;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d96a69f7387aa5ea930e4165.woff')format("woff");}.ff6{font-family:ff6;line-height:0.927734;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_7e94e6770f00f556e8cef259.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_2672cede3d9e3974be3bc979.woff')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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:27.360000px;}
.ls9{letter-spacing:-0.864000px;}
.ls6{letter-spacing:-0.648000px;}
.lsc{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.211200px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.174000px;}
.lsb{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.280200px;}
.lsd{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls0{letter-spacing:71.429760px;}
.ls7{letter-spacing:1322.250240px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-72.000000px;}
.ws0{word-spacing:-23.728800px;}
.ws2{word-spacing:-21.060000px;}
.wsc{word-spacing:-18.360000px;}
.wsb{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.568000px;}
.ws5{word-spacing:-17.352000px;}
.ws7{word-spacing:-15.220200px;}
.ws6{word-spacing:0.000000px;}
._1a{margin-left:-5.418000px;}
._11{margin-left:-3.906000px;}
._0{margin-left:-2.700000px;}
._1{margin-left:-1.026000px;}
._2{width:1.038000px;}
._7{width:2.814720px;}
._12{width:3.935520px;}
._b{width:5.274000px;}
._a{width:6.498000px;}
._9{width:7.560000px;}
._19{width:8.568000px;}
._13{width:9.612000px;}
._10{width:11.412000px;}
._f{width:12.456000px;}
._17{width:13.752000px;}
._e{width:14.850000px;}
._d{width:16.128000px;}
._23{width:19.062000px;}
._c{width:20.088000px;}
._1b{width:21.756000px;}
._1d{width:23.544000px;}
._1c{width:24.624000px;}
._14{width:25.848000px;}
._18{width:27.000000px;}
._22{width:28.146000px;}
._4{width:29.754000px;}
._30{width:35.208000px;}
._1e{width:37.440000px;}
._27{width:41.353920px;}
._2a{width:46.612800px;}
._21{width:51.333840px;}
._20{width:52.409520px;}
._15{width:61.920000px;}
._8{width:72.018000px;}
._32{width:83.184000px;}
._31{width:84.240000px;}
._2f{width:87.168000px;}
._2e{width:88.344000px;}
._3{width:90.504000px;}
._26{width:96.333120px;}
._2b{width:107.687520px;}
._29{width:110.735280px;}
._34{width:112.980000px;}
._33{width:114.168000px;}
._1f{width:121.948080px;}
._2d{width:150.714720px;}
._24{width:169.731960px;}
._25{width:175.216320px;}
._35{width:177.336000px;}
._36{width:178.530000px;}
._16{width:180.120720px;}
._28{width:210.392880px;}
._2c{width:246.390480px;}
._6{width:641.556000px;}
._5{width:1433.832000px;}
.fc1{color:rgb(15,120,80);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y34{bottom:-5.400000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:3.960000px;}
.ya0{bottom:3.990000px;}
.yfa{bottom:20.700000px;}
.ya2{bottom:20.880000px;}
.yf5{bottom:20.910000px;}
.yf9{bottom:37.620000px;}
.yf2{bottom:37.800000px;}
.yf4{bottom:37.830000px;}
.y7{bottom:57.600000px;}
.y32{bottom:69.660000px;}
.y6{bottom:76.860000px;}
.y5{bottom:91.980000px;}
.y33{bottom:104.580000px;}
.y4{bottom:107.280000px;}
.y3{bottom:122.400000px;}
.y2{bottom:137.520000px;}
.y31{bottom:148.500000px;}
.y2f{bottom:154.650000px;}
.y63{bottom:170.130000px;}
.y2e{bottom:174.810000px;}
.ycb{bottom:176.970000px;}
.y11e{bottom:177.690000px;}
.y85{bottom:180.390000px;}
.y62{bottom:190.470000px;}
.y9e{bottom:190.650000px;}
.y2d{bottom:195.150000px;}
.yca{bottom:197.310000px;}
.y11d{bottom:198.030000px;}
.y84{bottom:200.550000px;}
.yf1{bottom:203.430000px;}
.y147{bottom:204.330000px;}
.y61{bottom:210.810000px;}
.yc9{bottom:217.470000px;}
.y11c{bottom:218.190000px;}
.y9d{bottom:219.810000px;}
.y146{bottom:224.670000px;}
.y2c{bottom:225.210000px;}
.y83{bottom:230.610000px;}
.yc8{bottom:237.810000px;}
.y60{bottom:239.970000px;}
.y9c{bottom:240.150000px;}
.y145{bottom:244.830000px;}
.y11b{bottom:248.250000px;}
.yf0{bottom:254.730000px;}
.y2b{bottom:256.890000px;}
.yc7{bottom:257.970000px;}
.y5f{bottom:260.310000px;}
.y9b{bottom:260.490000px;}
.y82{bottom:262.470000px;}
.y144{bottom:271.110000px;}
.yc6{bottom:278.310000px;}
.y11a{bottom:280.110000px;}
.y5e{bottom:280.470000px;}
.y9a{bottom:284.970000px;}
.yef{bottom:286.050000px;}
.y143{bottom:291.450000px;}
.y81{bottom:291.630000px;}
.y2a{bottom:292.350000px;}
.yc5{bottom:298.470000px;}
.y5d{bottom:300.810000px;}
.yee{bottom:306.390000px;}
.y119{bottom:309.270000px;}
.y80{bottom:311.970000px;}
.y29{bottom:315.570000px;}
.y142{bottom:317.550000px;}
.yc4{bottom:318.810000px;}
.y5c{bottom:320.970000px;}
.yed{bottom:326.550000px;}
.y118{bottom:329.610000px;}
.y7f{bottom:332.310000px;}
.y141{bottom:337.890000px;}
.y28{bottom:338.970000px;}
.y5b{bottom:341.310000px;}
.y117{bottom:349.950000px;}
.y7e{bottom:352.470000px;}
.yec{bottom:355.710000px;}
.y140{bottom:358.050000px;}
.yc3{bottom:359.310000px;}
.y27{bottom:362.190000px;}
.y116{bottom:370.110000px;}
.y5a{bottom:370.470000px;}
.y7d{bottom:372.810000px;}
.yc2{bottom:379.470000px;}
.y13f{bottom:384.330000px;}
.yeb{bottom:385.050000px;}
.y115{bottom:390.450000px;}
.y59{bottom:390.810000px;}
.y26{bottom:391.350000px;}
.y7c{bottom:392.970000px;}
.y13e{bottom:404.715000px;}
.yea{bottom:405.435000px;}
.yc1{bottom:408.675000px;}
.y58{bottom:411.015000px;}
.y25{bottom:411.735000px;}
.y7b{bottom:413.355000px;}
.y114{bottom:419.655000px;}
.ye9{bottom:425.595000px;}
.y13d{bottom:430.815000px;}
.y57{bottom:431.355000px;}
.y7a{bottom:433.515000px;}
.yc0{bottom:438.015000px;}
.y113{bottom:439.995000px;}
.y24{bottom:440.895000px;}
.ye8{bottom:445.935000px;}
.y13c{bottom:451.155000px;}
.y56{bottom:451.515000px;}
.y79{bottom:453.855000px;}
.ybf{bottom:458.355000px;}
.y112{bottom:460.155000px;}
.y23{bottom:461.235000px;}
.ye7{bottom:466.095000px;}
.y13b{bottom:471.495000px;}
.y78{bottom:474.015000px;}
.y111{bottom:480.495000px;}
.y22{bottom:481.395000px;}
.y55{bottom:481.575000px;}
.ye6{bottom:486.435000px;}
.ybe{bottom:488.235000px;}
.y77{bottom:494.355000px;}
.y13a{bottom:497.595000px;}
.y21{bottom:501.735000px;}
.ye5{bottom:506.595000px;}
.y110{bottom:509.655000px;}
.ybd{bottom:511.095000px;}
.y54{bottom:513.255000px;}
.y139{bottom:517.935000px;}
.y20{bottom:521.895000px;}
.y76{bottom:523.515000px;}
.ye4{bottom:526.935000px;}
.y10f{bottom:529.995000px;}
.ybc{bottom:540.255000px;}
.y1f{bottom:542.235000px;}
.y53{bottom:542.595000px;}
.y75{bottom:543.855000px;}
.y138{bottom:544.035000px;}
.y10e{bottom:550.155000px;}
.ye3{bottom:556.095000px;}
.ybb{bottom:560.595000px;}
.y1e{bottom:562.395000px;}
.y52{bottom:562.935000px;}
.y74{bottom:564.015000px;}
.y137{bottom:564.375000px;}
.y10d{bottom:570.495000px;}
.yba{bottom:580.935000px;}
.y1d{bottom:582.735000px;}
.y51{bottom:583.095000px;}
.y73{bottom:584.355000px;}
.y136{bottom:584.715000px;}
.ye2{bottom:585.255000px;}
.y10c{bottom:590.655000px;}
.yb9{bottom:601.095000px;}
.y1c{bottom:602.895000px;}
.y50{bottom:603.435000px;}
.y72{bottom:604.515000px;}
.ye1{bottom:605.595000px;}
.y135{bottom:610.815000px;}
.y10b{bottom:620.715000px;}
.yb8{bottom:621.435000px;}
.y1b{bottom:623.235000px;}
.y4f{bottom:623.595000px;}
.y71{bottom:624.855000px;}
.ye0{bottom:625.935000px;}
.y134{bottom:631.155000px;}
.yb7{bottom:641.595000px;}
.y1a{bottom:643.395000px;}
.y4e{bottom:643.935000px;}
.y70{bottom:645.015000px;}
.ydf{bottom:646.095000px;}
.y133{bottom:651.525000px;}
.y10a{bottom:652.425000px;}
.yb6{bottom:661.965000px;}
.y19{bottom:663.765000px;}
.y4d{bottom:664.125000px;}
.y6f{bottom:665.385000px;}
.yde{bottom:666.465000px;}
.y99{bottom:673.125000px;}
.y132{bottom:677.625000px;}
.y109{bottom:681.765000px;}
.yb5{bottom:682.125000px;}
.y18{bottom:683.925000px;}
.y4c{bottom:684.465000px;}
.y6e{bottom:685.545000px;}
.ydd{bottom:686.625000px;}
.y131{bottom:697.965000px;}
.y108{bottom:702.105000px;}
.y98{bottom:702.285000px;}
.yb4{bottom:702.465000px;}
.y17{bottom:704.265000px;}
.y4b{bottom:704.625000px;}
.y6d{bottom:705.885000px;}
.ydc{bottom:706.965000px;}
.y107{bottom:722.265000px;}
.y97{bottom:722.625000px;}
.y130{bottom:724.065000px;}
.y16{bottom:724.425000px;}
.y4a{bottom:724.965000px;}
.y6c{bottom:726.045000px;}
.ydb{bottom:727.125000px;}
.y106{bottom:742.605000px;}
.y96{bottom:742.965000px;}
.y12f{bottom:744.405000px;}
.y15{bottom:744.765000px;}
.y49{bottom:745.125000px;}
.y6b{bottom:746.385000px;}
.yb3{bottom:751.785000px;}
.yda{bottom:756.285000px;}
.y105{bottom:762.765000px;}
.y95{bottom:763.125000px;}
.y12e{bottom:764.745000px;}
.y14{bottom:764.925000px;}
.y48{bottom:765.465000px;}
.y6a{bottom:766.545000px;}
.yb2{bottom:772.125000px;}
.y104{bottom:783.105000px;}
.y94{bottom:783.465000px;}
.yd9{bottom:785.625000px;}
.y12d{bottom:790.845000px;}
.yb1{bottom:792.465000px;}
.y47{bottom:794.625000px;}
.y13{bottom:794.985000px;}
.y69{bottom:796.605000px;}
.y103{bottom:803.265000px;}
.y93{bottom:803.625000px;}
.yd8{bottom:805.965000px;}
.y12c{bottom:811.185000px;}
.yb0{bottom:812.625000px;}
.y46{bottom:814.965000px;}
.y68{bottom:819.465000px;}
.y92{bottom:823.965000px;}
.yd7{bottom:826.125000px;}
.y12{bottom:826.665000px;}
.y102{bottom:832.425000px;}
.yaf{bottom:832.965000px;}
.y45{bottom:835.125000px;}
.y12b{bottom:837.285000px;}
.y91{bottom:844.125000px;}
.yd6{bottom:846.465000px;}
.y67{bottom:848.625000px;}
.y101{bottom:852.765000px;}
.y44{bottom:855.465000px;}
.y11{bottom:856.005000px;}
.y12a{bottom:857.625000px;}
.yae{bottom:862.125000px;}
.y90{bottom:864.465000px;}
.yd5{bottom:866.625000px;}
.y66{bottom:868.965000px;}
.y100{bottom:873.105000px;}
.y43{bottom:875.625000px;}
.y10{bottom:876.345000px;}
.yad{bottom:882.465000px;}
.y129{bottom:883.905000px;}
.y8f{bottom:884.625000px;}
.yd4{bottom:886.965000px;}
.y65{bottom:889.125000px;}
.yff{bottom:893.265000px;}
.y42{bottom:895.965000px;}
.yf{bottom:896.685000px;}
.yac{bottom:902.670000px;}
.y128{bottom:904.290000px;}
.y8e{bottom:905.010000px;}
.yd3{bottom:907.170000px;}
.yfe{bottom:913.650000px;}
.y64{bottom:913.830000px;}
.y41{bottom:916.170000px;}
.yab{bottom:923.010000px;}
.y8d{bottom:925.170000px;}
.yd2{bottom:927.510000px;}
.ye{bottom:928.230000px;}
.y127{bottom:930.390000px;}
.yaa{bottom:943.170000px;}
.yfd{bottom:943.710000px;}
.y40{bottom:945.330000px;}
.y8c{bottom:945.510000px;}
.yd1{bottom:947.670000px;}
.yd{bottom:948.570000px;}
.y126{bottom:950.730000px;}
.y3f{bottom:965.670000px;}
.yc{bottom:968.910000px;}
.y125{bottom:971.070000px;}
.ya9{bottom:973.230000px;}
.y8b{bottom:974.670000px;}
.yfc{bottom:975.390000px;}
.yd0{bottom:976.830000px;}
.y3e{bottom:986.010000px;}
.y8a{bottom:995.010000px;}
.ya8{bottom:996.090000px;}
.y124{bottom:997.170000px;}
.yfb{bottom:1004.730000px;}
.y3d{bottom:1006.170000px;}
.yb{bottom:1011.210000px;}
.y89{bottom:1015.170000px;}
.y123{bottom:1017.510000px;}
.yf8{bottom:1021.110000px;}
.ya7{bottom:1025.250000px;}
.y3c{bottom:1026.510000px;}
.y88{bottom:1035.510000px;}
.ya{bottom:1038.210000px;}
.ya6{bottom:1041.630000px;}
.y122{bottom:1043.610000px;}
.y3b{bottom:1046.670000px;}
.y87{bottom:1055.670000px;}
.ya5{bottom:1059.270000px;}
.y121{bottom:1063.950000px;}
.y9{bottom:1065.210000px;}
.y3a{bottom:1067.010000px;}
.yf7{bottom:1072.410000px;}
.y86{bottom:1076.010000px;}
.ya4{bottom:1076.910000px;}
.ycf{bottom:1087.170000px;}
.y120{bottom:1090.230000px;}
.y39{bottom:1096.170000px;}
.y8{bottom:1099.590000px;}
.yf6{bottom:1106.970000px;}
.yce{bottom:1107.510000px;}
.y11f{bottom:1110.570000px;}
.ya1{bottom:1111.470000px;}
.y1{bottom:1115.250000px;}
.y38{bottom:1116.510000px;}
.ycd{bottom:1127.670000px;}
.y37{bottom:1136.670000px;}
.yf3{bottom:1141.350000px;}
.y9f{bottom:1145.850000px;}
.ycc{bottom:1148.040000px;}
.y36{bottom:1157.040000px;}
.y35{bottom:1177.200000px;}
.y30{bottom:1196.820000px;}
.he{height:10.620000px;}
.h13{height:16.920000px;}
.hf{height:16.956000px;}
.h11{height:33.660000px;}
.h12{height:33.840000px;}
.h3{height:36.571289px;}
.h4{height:37.599609px;}
.h10{height:40.472227px;}
.hc{height:41.610234px;}
.h9{height:48.761719px;}
.h5{height:50.132812px;}
.h14{height:50.580000px;}
.h15{height:50.796000px;}
.h8{height:56.437031px;}
.hb{height:57.051211px;}
.hd{height:59.439023px;}
.h6{height:64.853086px;}
.h2{height:65.884219px;}
.h7{height:66.676641px;}
.ha{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:143.280000px;}
.w4{width:158.400000px;}
.w9{width:167.250000px;}
.w8{width:179.490000px;}
.wa{width:229.170000px;}
.w5{width:254.415000px;}
.w6{width:286.230000px;}
.w3{width:719.640000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.740000px;}
.xf{left:10.836000px;}
.x2{left:84.995987px;}
.x7{left:99.035987px;}
.xa{left:101.915987px;}
.x4{left:119.015987px;}
.x3{left:144.215987px;}
.x17{left:152.849987px;}
.x19{left:157.169987px;}
.x1d{left:171.929987px;}
.x10{left:205.949987px;}
.x21{left:229.890000px;}
.x5{left:232.949987px;}
.x15{left:240.509987px;}
.x1b{left:245.010000px;}
.x20{left:249.329987px;}
.xb{left:250.409987px;}
.x8{left:252.749987px;}
.x13{left:255.809987px;}
.x12{left:266.834987px;}
.x16{left:268.634987px;}
.x1e{left:271.694987px;}
.x1f{left:284.114987px;}
.x18{left:288.434987px;}
.x14{left:323.894987px;}
.x6{left:359.714987px;}
.x24{left:362.594987px;}
.x9{left:376.274987px;}
.xd{left:390.134987px;}
.x23{left:396.074987px;}
.x25{left:397.514987px;}
.xc{left:409.214987px;}
.xe{left:446.504987px;}
.x1c{left:500.145000px;}
.x22{left:578.085000px;}
.x11{left:709.709987px;}
.x1{left:807.809987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.768000pt;}
.ls6{letter-spacing:-0.576000pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.187733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.154667pt;}
.lsb{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.249067pt;}
.lsd{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls0{letter-spacing:63.493120pt;}
.ls7{letter-spacing:1175.333547pt;}
.ws1{word-spacing:-64.000000pt;}
.ws0{word-spacing:-21.092267pt;}
.ws2{word-spacing:-18.720000pt;}
.wsc{word-spacing:-16.320000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.616000pt;}
.ws5{word-spacing:-15.424000pt;}
.ws7{word-spacing:-13.529067pt;}
.ws6{word-spacing:0.000000pt;}
._1a{margin-left:-4.816000pt;}
._11{margin-left:-3.472000pt;}
._0{margin-left:-2.400000pt;}
._1{margin-left:-0.912000pt;}
._2{width:0.922667pt;}
._7{width:2.501973pt;}
._12{width:3.498240pt;}
._b{width:4.688000pt;}
._a{width:5.776000pt;}
._9{width:6.720000pt;}
._19{width:7.616000pt;}
._13{width:8.544000pt;}
._10{width:10.144000pt;}
._f{width:11.072000pt;}
._17{width:12.224000pt;}
._e{width:13.200000pt;}
._d{width:14.336000pt;}
._23{width:16.944000pt;}
._c{width:17.856000pt;}
._1b{width:19.338667pt;}
._1d{width:20.928000pt;}
._1c{width:21.888000pt;}
._14{width:22.976000pt;}
._18{width:24.000000pt;}
._22{width:25.018667pt;}
._4{width:26.448000pt;}
._30{width:31.296000pt;}
._1e{width:33.280000pt;}
._27{width:36.759040pt;}
._2a{width:41.433600pt;}
._21{width:45.630080pt;}
._20{width:46.586240pt;}
._15{width:55.040000pt;}
._8{width:64.016000pt;}
._32{width:73.941333pt;}
._31{width:74.880000pt;}
._2f{width:77.482667pt;}
._2e{width:78.528000pt;}
._3{width:80.448000pt;}
._26{width:85.629440pt;}
._2b{width:95.722240pt;}
._29{width:98.431360pt;}
._34{width:100.426667pt;}
._33{width:101.482667pt;}
._1f{width:108.398293pt;}
._2d{width:133.968640pt;}
._24{width:150.872853pt;}
._25{width:155.747840pt;}
._35{width:157.632000pt;}
._36{width:158.693333pt;}
._16{width:160.107307pt;}
._28{width:187.015893pt;}
._2c{width:219.013760pt;}
._6{width:570.272000pt;}
._5{width:1274.517333pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y34{bottom:-4.800000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:3.520000pt;}
.ya0{bottom:3.546667pt;}
.yfa{bottom:18.400000pt;}
.ya2{bottom:18.560000pt;}
.yf5{bottom:18.586667pt;}
.yf9{bottom:33.440000pt;}
.yf2{bottom:33.600000pt;}
.yf4{bottom:33.626667pt;}
.y7{bottom:51.200000pt;}
.y32{bottom:61.920000pt;}
.y6{bottom:68.320000pt;}
.y5{bottom:81.760000pt;}
.y33{bottom:92.960000pt;}
.y4{bottom:95.360000pt;}
.y3{bottom:108.800000pt;}
.y2{bottom:122.240000pt;}
.y31{bottom:132.000000pt;}
.y2f{bottom:137.466667pt;}
.y63{bottom:151.226667pt;}
.y2e{bottom:155.386667pt;}
.ycb{bottom:157.306667pt;}
.y11e{bottom:157.946667pt;}
.y85{bottom:160.346667pt;}
.y62{bottom:169.306667pt;}
.y9e{bottom:169.466667pt;}
.y2d{bottom:173.466667pt;}
.yca{bottom:175.386667pt;}
.y11d{bottom:176.026667pt;}
.y84{bottom:178.266667pt;}
.yf1{bottom:180.826667pt;}
.y147{bottom:181.626667pt;}
.y61{bottom:187.386667pt;}
.yc9{bottom:193.306667pt;}
.y11c{bottom:193.946667pt;}
.y9d{bottom:195.386667pt;}
.y146{bottom:199.706667pt;}
.y2c{bottom:200.186667pt;}
.y83{bottom:204.986667pt;}
.yc8{bottom:211.386667pt;}
.y60{bottom:213.306667pt;}
.y9c{bottom:213.466667pt;}
.y145{bottom:217.626667pt;}
.y11b{bottom:220.666667pt;}
.yf0{bottom:226.426667pt;}
.y2b{bottom:228.346667pt;}
.yc7{bottom:229.306667pt;}
.y5f{bottom:231.386667pt;}
.y9b{bottom:231.546667pt;}
.y82{bottom:233.306667pt;}
.y144{bottom:240.986667pt;}
.yc6{bottom:247.386667pt;}
.y11a{bottom:248.986667pt;}
.y5e{bottom:249.306667pt;}
.y9a{bottom:253.306667pt;}
.yef{bottom:254.266667pt;}
.y143{bottom:259.066667pt;}
.y81{bottom:259.226667pt;}
.y2a{bottom:259.866667pt;}
.yc5{bottom:265.306667pt;}
.y5d{bottom:267.386667pt;}
.yee{bottom:272.346667pt;}
.y119{bottom:274.906667pt;}
.y80{bottom:277.306667pt;}
.y29{bottom:280.506667pt;}
.y142{bottom:282.266667pt;}
.yc4{bottom:283.386667pt;}
.y5c{bottom:285.306667pt;}
.yed{bottom:290.266667pt;}
.y118{bottom:292.986667pt;}
.y7f{bottom:295.386667pt;}
.y141{bottom:300.346667pt;}
.y28{bottom:301.306667pt;}
.y5b{bottom:303.386667pt;}
.y117{bottom:311.066667pt;}
.y7e{bottom:313.306667pt;}
.yec{bottom:316.186667pt;}
.y140{bottom:318.266667pt;}
.yc3{bottom:319.386667pt;}
.y27{bottom:321.946667pt;}
.y116{bottom:328.986667pt;}
.y5a{bottom:329.306667pt;}
.y7d{bottom:331.386667pt;}
.yc2{bottom:337.306667pt;}
.y13f{bottom:341.626667pt;}
.yeb{bottom:342.266667pt;}
.y115{bottom:347.066667pt;}
.y59{bottom:347.386667pt;}
.y26{bottom:347.866667pt;}
.y7c{bottom:349.306667pt;}
.y13e{bottom:359.746667pt;}
.yea{bottom:360.386667pt;}
.yc1{bottom:363.266667pt;}
.y58{bottom:365.346667pt;}
.y25{bottom:365.986667pt;}
.y7b{bottom:367.426667pt;}
.y114{bottom:373.026667pt;}
.ye9{bottom:378.306667pt;}
.y13d{bottom:382.946667pt;}
.y57{bottom:383.426667pt;}
.y7a{bottom:385.346667pt;}
.yc0{bottom:389.346667pt;}
.y113{bottom:391.106667pt;}
.y24{bottom:391.906667pt;}
.ye8{bottom:396.386667pt;}
.y13c{bottom:401.026667pt;}
.y56{bottom:401.346667pt;}
.y79{bottom:403.426667pt;}
.ybf{bottom:407.426667pt;}
.y112{bottom:409.026667pt;}
.y23{bottom:409.986667pt;}
.ye7{bottom:414.306667pt;}
.y13b{bottom:419.106667pt;}
.y78{bottom:421.346667pt;}
.y111{bottom:427.106667pt;}
.y22{bottom:427.906667pt;}
.y55{bottom:428.066667pt;}
.ye6{bottom:432.386667pt;}
.ybe{bottom:433.986667pt;}
.y77{bottom:439.426667pt;}
.y13a{bottom:442.306667pt;}
.y21{bottom:445.986667pt;}
.ye5{bottom:450.306667pt;}
.y110{bottom:453.026667pt;}
.ybd{bottom:454.306667pt;}
.y54{bottom:456.226667pt;}
.y139{bottom:460.386667pt;}
.y20{bottom:463.906667pt;}
.y76{bottom:465.346667pt;}
.ye4{bottom:468.386667pt;}
.y10f{bottom:471.106667pt;}
.ybc{bottom:480.226667pt;}
.y1f{bottom:481.986667pt;}
.y53{bottom:482.306667pt;}
.y75{bottom:483.426667pt;}
.y138{bottom:483.586667pt;}
.y10e{bottom:489.026667pt;}
.ye3{bottom:494.306667pt;}
.ybb{bottom:498.306667pt;}
.y1e{bottom:499.906667pt;}
.y52{bottom:500.386667pt;}
.y74{bottom:501.346667pt;}
.y137{bottom:501.666667pt;}
.y10d{bottom:507.106667pt;}
.yba{bottom:516.386667pt;}
.y1d{bottom:517.986667pt;}
.y51{bottom:518.306667pt;}
.y73{bottom:519.426667pt;}
.y136{bottom:519.746667pt;}
.ye2{bottom:520.226667pt;}
.y10c{bottom:525.026667pt;}
.yb9{bottom:534.306667pt;}
.y1c{bottom:535.906667pt;}
.y50{bottom:536.386667pt;}
.y72{bottom:537.346667pt;}
.ye1{bottom:538.306667pt;}
.y135{bottom:542.946667pt;}
.y10b{bottom:551.746667pt;}
.yb8{bottom:552.386667pt;}
.y1b{bottom:553.986667pt;}
.y4f{bottom:554.306667pt;}
.y71{bottom:555.426667pt;}
.ye0{bottom:556.386667pt;}
.y134{bottom:561.026667pt;}
.yb7{bottom:570.306667pt;}
.y1a{bottom:571.906667pt;}
.y4e{bottom:572.386667pt;}
.y70{bottom:573.346667pt;}
.ydf{bottom:574.306667pt;}
.y133{bottom:579.133333pt;}
.y10a{bottom:579.933333pt;}
.yb6{bottom:588.413333pt;}
.y19{bottom:590.013333pt;}
.y4d{bottom:590.333333pt;}
.y6f{bottom:591.453333pt;}
.yde{bottom:592.413333pt;}
.y99{bottom:598.333333pt;}
.y132{bottom:602.333333pt;}
.y109{bottom:606.013333pt;}
.yb5{bottom:606.333333pt;}
.y18{bottom:607.933333pt;}
.y4c{bottom:608.413333pt;}
.y6e{bottom:609.373333pt;}
.ydd{bottom:610.333333pt;}
.y131{bottom:620.413333pt;}
.y108{bottom:624.093333pt;}
.y98{bottom:624.253333pt;}
.yb4{bottom:624.413333pt;}
.y17{bottom:626.013333pt;}
.y4b{bottom:626.333333pt;}
.y6d{bottom:627.453333pt;}
.ydc{bottom:628.413333pt;}
.y107{bottom:642.013333pt;}
.y97{bottom:642.333333pt;}
.y130{bottom:643.613333pt;}
.y16{bottom:643.933333pt;}
.y4a{bottom:644.413333pt;}
.y6c{bottom:645.373333pt;}
.ydb{bottom:646.333333pt;}
.y106{bottom:660.093333pt;}
.y96{bottom:660.413333pt;}
.y12f{bottom:661.693333pt;}
.y15{bottom:662.013333pt;}
.y49{bottom:662.333333pt;}
.y6b{bottom:663.453333pt;}
.yb3{bottom:668.253333pt;}
.yda{bottom:672.253333pt;}
.y105{bottom:678.013333pt;}
.y95{bottom:678.333333pt;}
.y12e{bottom:679.773333pt;}
.y14{bottom:679.933333pt;}
.y48{bottom:680.413333pt;}
.y6a{bottom:681.373333pt;}
.yb2{bottom:686.333333pt;}
.y104{bottom:696.093333pt;}
.y94{bottom:696.413333pt;}
.yd9{bottom:698.333333pt;}
.y12d{bottom:702.973333pt;}
.yb1{bottom:704.413333pt;}
.y47{bottom:706.333333pt;}
.y13{bottom:706.653333pt;}
.y69{bottom:708.093333pt;}
.y103{bottom:714.013333pt;}
.y93{bottom:714.333333pt;}
.yd8{bottom:716.413333pt;}
.y12c{bottom:721.053333pt;}
.yb0{bottom:722.333333pt;}
.y46{bottom:724.413333pt;}
.y68{bottom:728.413333pt;}
.y92{bottom:732.413333pt;}
.yd7{bottom:734.333333pt;}
.y12{bottom:734.813333pt;}
.y102{bottom:739.933333pt;}
.yaf{bottom:740.413333pt;}
.y45{bottom:742.333333pt;}
.y12b{bottom:744.253333pt;}
.y91{bottom:750.333333pt;}
.yd6{bottom:752.413333pt;}
.y67{bottom:754.333333pt;}
.y101{bottom:758.013333pt;}
.y44{bottom:760.413333pt;}
.y11{bottom:760.893333pt;}
.y12a{bottom:762.333333pt;}
.yae{bottom:766.333333pt;}
.y90{bottom:768.413333pt;}
.yd5{bottom:770.333333pt;}
.y66{bottom:772.413333pt;}
.y100{bottom:776.093333pt;}
.y43{bottom:778.333333pt;}
.y10{bottom:778.973333pt;}
.yad{bottom:784.413333pt;}
.y129{bottom:785.693333pt;}
.y8f{bottom:786.333333pt;}
.yd4{bottom:788.413333pt;}
.y65{bottom:790.333333pt;}
.yff{bottom:794.013333pt;}
.y42{bottom:796.413333pt;}
.yf{bottom:797.053333pt;}
.yac{bottom:802.373333pt;}
.y128{bottom:803.813333pt;}
.y8e{bottom:804.453333pt;}
.yd3{bottom:806.373333pt;}
.yfe{bottom:812.133333pt;}
.y64{bottom:812.293333pt;}
.y41{bottom:814.373333pt;}
.yab{bottom:820.453333pt;}
.y8d{bottom:822.373333pt;}
.yd2{bottom:824.453333pt;}
.ye{bottom:825.093333pt;}
.y127{bottom:827.013333pt;}
.yaa{bottom:838.373333pt;}
.yfd{bottom:838.853333pt;}
.y40{bottom:840.293333pt;}
.y8c{bottom:840.453333pt;}
.yd1{bottom:842.373333pt;}
.yd{bottom:843.173333pt;}
.y126{bottom:845.093333pt;}
.y3f{bottom:858.373333pt;}
.yc{bottom:861.253333pt;}
.y125{bottom:863.173333pt;}
.ya9{bottom:865.093333pt;}
.y8b{bottom:866.373333pt;}
.yfc{bottom:867.013333pt;}
.yd0{bottom:868.293333pt;}
.y3e{bottom:876.453333pt;}
.y8a{bottom:884.453333pt;}
.ya8{bottom:885.413333pt;}
.y124{bottom:886.373333pt;}
.yfb{bottom:893.093333pt;}
.y3d{bottom:894.373333pt;}
.yb{bottom:898.853333pt;}
.y89{bottom:902.373333pt;}
.y123{bottom:904.453333pt;}
.yf8{bottom:907.653333pt;}
.ya7{bottom:911.333333pt;}
.y3c{bottom:912.453333pt;}
.y88{bottom:920.453333pt;}
.ya{bottom:922.853333pt;}
.ya6{bottom:925.893333pt;}
.y122{bottom:927.653333pt;}
.y3b{bottom:930.373333pt;}
.y87{bottom:938.373333pt;}
.ya5{bottom:941.573333pt;}
.y121{bottom:945.733333pt;}
.y9{bottom:946.853333pt;}
.y3a{bottom:948.453333pt;}
.yf7{bottom:953.253333pt;}
.y86{bottom:956.453333pt;}
.ya4{bottom:957.253333pt;}
.ycf{bottom:966.373333pt;}
.y120{bottom:969.093333pt;}
.y39{bottom:974.373333pt;}
.y8{bottom:977.413333pt;}
.yf6{bottom:983.973333pt;}
.yce{bottom:984.453333pt;}
.y11f{bottom:987.173333pt;}
.ya1{bottom:987.973333pt;}
.y1{bottom:991.333333pt;}
.y38{bottom:992.453333pt;}
.ycd{bottom:1002.373333pt;}
.y37{bottom:1010.373333pt;}
.yf3{bottom:1014.533333pt;}
.y9f{bottom:1018.533333pt;}
.ycc{bottom:1020.480000pt;}
.y36{bottom:1028.480000pt;}
.y35{bottom:1046.400000pt;}
.y30{bottom:1063.840000pt;}
.he{height:9.440000pt;}
.h13{height:15.040000pt;}
.hf{height:15.072000pt;}
.h11{height:29.920000pt;}
.h12{height:30.080000pt;}
.h3{height:32.507812pt;}
.h4{height:33.421875pt;}
.h10{height:35.975313pt;}
.hc{height:36.986875pt;}
.h9{height:43.343750pt;}
.h5{height:44.562500pt;}
.h14{height:44.960000pt;}
.h15{height:45.152000pt;}
.h8{height:50.166250pt;}
.hb{height:50.712187pt;}
.hd{height:52.834688pt;}
.h6{height:57.647187pt;}
.h2{height:58.563750pt;}
.h7{height:59.268125pt;}
.ha{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:127.360000pt;}
.w4{width:140.800000pt;}
.w9{width:148.666667pt;}
.w8{width:159.546667pt;}
.wa{width:203.706667pt;}
.w5{width:226.146667pt;}
.w6{width:254.426667pt;}
.w3{width:639.680000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.880000pt;}
.xf{left:9.632000pt;}
.x2{left:75.551988pt;}
.x7{left:88.031988pt;}
.xa{left:90.591988pt;}
.x4{left:105.791988pt;}
.x3{left:128.191988pt;}
.x17{left:135.866655pt;}
.x19{left:139.706655pt;}
.x1d{left:152.826655pt;}
.x10{left:183.066655pt;}
.x21{left:204.346667pt;}
.x5{left:207.066655pt;}
.x15{left:213.786655pt;}
.x1b{left:217.786667pt;}
.x20{left:221.626655pt;}
.xb{left:222.586655pt;}
.x8{left:224.666655pt;}
.x13{left:227.386655pt;}
.x12{left:237.186655pt;}
.x16{left:238.786655pt;}
.x1e{left:241.506655pt;}
.x1f{left:252.546655pt;}
.x18{left:256.386655pt;}
.x14{left:287.906655pt;}
.x6{left:319.746655pt;}
.x24{left:322.306655pt;}
.x9{left:334.466655pt;}
.xd{left:346.786655pt;}
.x23{left:352.066655pt;}
.x25{left:353.346655pt;}
.xc{left:363.746655pt;}
.xe{left:396.893322pt;}
.x1c{left:444.573333pt;}
.x22{left:513.853333pt;}
.x11{left:630.853322pt;}
.x1{left:718.053322pt;}
}




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