
    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_3f1222abe39cbf3ceaa80d72.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_18eaae703b5f54e0023f098f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_52877fc9f363f02fddb5bb3a.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_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b8a719afc0619a886367ac55.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_fcedbb6af5167f397d2f1272.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_39e39b13a0849b2ebc4fd103.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_edaf4cef84fdac7471421b1a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b2f05609fb6c58109951a646.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_5f33838cbd43998c47fae9fe.woff')format("woff");}.ffb{font-family:ffb;line-height:0.987305;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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;}
.ls6{letter-spacing:-20.760000px;}
.lsc{letter-spacing:-0.864000px;}
.ls4{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.174000px;}
.ls7{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.ls1{letter-spacing:52.560000px;}
.lsa{letter-spacing:1322.250240px;}
.ls9{letter-spacing:1431.096000px;}
.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;}
}
.ws0{word-spacing:-66.240000px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.360000px;}
.wsa{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.352000px;}
.ws9{word-spacing:-17.136000px;}
.ws8{word-spacing:0.000000px;}
._8{margin-left:-1349.568000px;}
._b{margin-left:-535.860000px;}
._a{margin-left:-413.526000px;}
._31{margin-left:-215.111280px;}
._2f{margin-left:-196.206720px;}
._32{margin-left:-57.276240px;}
._34{margin-left:-55.160640px;}
._30{margin-left:-50.834880px;}
._38{margin-left:-47.811840px;}
._39{margin-left:-27.329040px;}
._33{margin-left:-25.827120px;}
._36{margin-left:-18.894960px;}
._35{margin-left:-7.571520px;}
._37{margin-left:-6.538320px;}
._16{margin-left:-5.232000px;}
._10{margin-left:-3.720000px;}
._0{margin-left:-2.700000px;}
._1{margin-left:-1.026000px;}
._2{width:1.038000px;}
._7{width:2.059680px;}
._11{width:3.096000px;}
._15{width:4.176000px;}
._1d{width:5.490000px;}
._1c{width:6.768000px;}
._14{width:8.640000px;}
._13{width:9.936000px;}
._25{width:11.160000px;}
._3d{width:12.600000px;}
._3c{width:13.896000px;}
._21{width:15.426000px;}
._20{width:16.632000px;}
._27{width:19.440000px;}
._46{width:20.520000px;}
._12{width:21.780000px;}
._45{width:23.040000px;}
._23{width:24.264000px;}
._22{width:25.488000px;}
._1e{width:27.144000px;}
._1f{width:28.152000px;}
._4{width:29.754000px;}
._26{width:31.320000px;}
._43{width:32.400000px;}
._58{width:33.552000px;}
._48{width:34.776000px;}
._4c{width:36.000000px;}
._4b{width:37.152000px;}
._3e{width:38.520000px;}
._2b{width:40.248000px;}
._2c{width:41.256000px;}
._49{width:42.264000px;}
._4a{width:43.272000px;}
._51{width:44.280000px;}
._53{width:46.440000px;}
._5a{width:49.968000px;}
._17{width:51.336000px;}
._18{width:52.500000px;}
._4e{width:54.144000px;}
._5d{width:55.512000px;}
._5c{width:56.736000px;}
._3f{width:58.680000px;}
._61{width:59.688000px;}
._44{width:60.696000px;}
._52{width:62.280000px;}
._60{width:64.152000px;}
._24{width:65.664000px;}
._57{width:68.328000px;}
._2a{width:69.552000px;}
._f{width:71.136000px;}
._3b{width:73.152000px;}
._3a{width:74.520000px;}
._47{width:75.528000px;}
._55{width:80.118000px;}
._29{width:82.170000px;}
._28{width:83.232000px;}
._d{width:85.188000px;}
._62{width:87.048000px;}
._3{width:90.504000px;}
._19{width:92.496000px;}
._1a{width:94.224000px;}
._40{width:101.664000px;}
._e{width:104.592000px;}
._63{width:107.352000px;}
._5e{width:136.296000px;}
._54{width:142.128000px;}
._50{width:152.544000px;}
._4f{width:153.864000px;}
._56{width:158.544000px;}
._4d{width:168.192000px;}
._42{width:175.536000px;}
._41{width:176.976000px;}
._2e{width:180.120720px;}
._1b{width:182.680320px;}
._59{width:235.008000px;}
._5b{width:309.528000px;}
._c{width:413.652000px;}
._6{width:641.556000px;}
._9{width:783.120000px;}
._5f{width:907.848000px;}
._2d{width:1432.554240px;}
._5{width:1433.832000px;}
.fc7{color:transparent;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(19,20,74);}
.fc1{color:rgb(10,120,154);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(34,34,34);}
.fc2{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y4a{bottom:-5.400000px;}
.y0{bottom:0.000000px;}
.y48{bottom:3.600000px;}
.y46{bottom:56.160000px;}
.y6{bottom:57.600000px;}
.y45{bottom:69.660000px;}
.y5{bottom:76.860000px;}
.y4{bottom:91.980000px;}
.y47{bottom:98.280000px;}
.y49{bottom:104.580000px;}
.y3{bottom:107.280000px;}
.y2{bottom:122.400000px;}
.y1{bottom:137.520000px;}
.y44{bottom:148.500000px;}
.y31{bottom:158.430000px;}
.y42{bottom:165.270000px;}
.ye8{bottom:167.970000px;}
.y169{bottom:173.190000px;}
.y11a{bottom:175.710000px;}
.y30{bottom:178.770000px;}
.y9e{bottom:182.550000px;}
.y183{bottom:183.090000px;}
.y41{bottom:185.430000px;}
.ye7{bottom:188.310000px;}
.y168{bottom:195.150000px;}
.y79{bottom:197.130000px;}
.y2f{bottom:198.930000px;}
.y9d{bottom:202.890000px;}
.y182{bottom:204.870000px;}
.y119{bottom:205.050000px;}
.y40{bottom:205.770000px;}
.y141{bottom:206.670000px;}
.ye6{bottom:208.470000px;}
.y78{bottom:217.470000px;}
.y2e{bottom:219.270000px;}
.y9c{bottom:223.050000px;}
.y118{bottom:225.390000px;}
.y3f{bottom:225.930000px;}
.y181{bottom:226.830000px;}
.y140{bottom:228.450000px;}
.ye5{bottom:228.810000px;}
.y167{bottom:228.990000px;}
.y109{bottom:237.630000px;}
.y77{bottom:237.810000px;}
.y2d{bottom:239.430000px;}
.y9b{bottom:243.390000px;}
.y117{bottom:245.550000px;}
.y180{bottom:248.610000px;}
.ye4{bottom:248.970000px;}
.y13f{bottom:250.410000px;}
.y166{bottom:250.770000px;}
.y3e{bottom:255.090000px;}
.y76{bottom:257.970000px;}
.y9a{bottom:263.550000px;}
.y116{bottom:265.890000px;}
.y2c{bottom:268.590000px;}
.ye3{bottom:269.310000px;}
.y17f{bottom:270.570000px;}
.y165{bottom:272.550000px;}
.y3d{bottom:275.430000px;}
.y75{bottom:278.310000px;}
.y99{bottom:283.890000px;}
.y13e{bottom:284.250000px;}
.y115{bottom:286.050000px;}
.y2b{bottom:288.930000px;}
.y17e{bottom:292.350000px;}
.y164{bottom:294.510000px;}
.y3c{bottom:295.770000px;}
.ye2{bottom:298.470000px;}
.y98{bottom:304.050000px;}
.y13d{bottom:306.030000px;}
.y114{bottom:306.390000px;}
.y74{bottom:307.470000px;}
.y2a{bottom:309.270000px;}
.y3b{bottom:315.930000px;}
.y163{bottom:316.290000px;}
.ye1{bottom:318.810000px;}
.y97{bottom:324.390000px;}
.y17d{bottom:326.190000px;}
.y113{bottom:326.550000px;}
.y73{bottom:327.810000px;}
.y13c{bottom:327.990000px;}
.y29{bottom:329.430000px;}
.y3a{bottom:336.270000px;}
.ye0{bottom:338.970000px;}
.yb9{bottom:344.550000px;}
.y112{bottom:346.890000px;}
.y72{bottom:347.970000px;}
.y28{bottom:349.770000px;}
.y162{bottom:350.130000px;}
.y96{bottom:354.450000px;}
.y39{bottom:356.430000px;}
.ydf{bottom:359.310000px;}
.y71{bottom:368.310000px;}
.y27{bottom:369.930000px;}
.y13b{bottom:371.550000px;}
.y161{bottom:372.090000px;}
.yb8{bottom:373.710000px;}
.y38{bottom:376.770000px;}
.y111{bottom:376.950000px;}
.y95{bottom:378.210000px;}
.yde{bottom:379.470000px;}
.y17c{bottom:381.810000px;}
.y70{bottom:388.470000px;}
.y26{bottom:390.270000px;}
.y13a{bottom:393.510000px;}
.y160{bottom:393.870000px;}
.yb7{bottom:394.050000px;}
.ydd{bottom:399.810000px;}
.y17b{bottom:403.815000px;}
.y37{bottom:405.975000px;}
.y110{bottom:408.675000px;}
.y6f{bottom:408.855000px;}
.y94{bottom:409.755000px;}
.y25{bottom:410.475000px;}
.yb6{bottom:414.435000px;}
.y139{bottom:415.335000px;}
.y15f{bottom:415.875000px;}
.ydc{bottom:420.015000px;}
.y17a{bottom:425.595000px;}
.y36{bottom:426.315000px;}
.y6e{bottom:429.015000px;}
.y93{bottom:430.095000px;}
.y24{bottom:430.815000px;}
.yb5{bottom:434.595000px;}
.y15e{bottom:437.655000px;}
.ydb{bottom:440.355000px;}
.y35{bottom:446.475000px;}
.y138{bottom:449.175000px;}
.y6d{bottom:449.355000px;}
.y92{bottom:450.435000px;}
.y23{bottom:450.975000px;}
.yb4{bottom:454.935000px;}
.y179{bottom:459.435000px;}
.yda{bottom:460.515000px;}
.y34{bottom:466.815000px;}
.y10f{bottom:469.515000px;}
.y91{bottom:470.595000px;}
.y137{bottom:471.135000px;}
.y15d{bottom:471.495000px;}
.yb3{bottom:475.095000px;}
.y108{bottom:478.515000px;}
.y6c{bottom:479.235000px;}
.yd9{bottom:480.855000px;}
.y22{bottom:481.035000px;}
.y178{bottom:481.395000px;}
.y33{bottom:486.975000px;}
.y10e{bottom:489.855000px;}
.y90{bottom:490.935000px;}
.y136{bottom:492.915000px;}
.y15c{bottom:493.275000px;}
.yb2{bottom:495.435000px;}
.y107{bottom:498.855000px;}
.yd8{bottom:501.015000px;}
.y177{bottom:503.175000px;}
.y21{bottom:504.795000px;}
.y32{bottom:507.315000px;}
.yf5{bottom:510.015000px;}
.y6b{bottom:511.095000px;}
.y135{bottom:514.695000px;}
.y15b{bottom:515.235000px;}
.yb1{bottom:515.595000px;}
.y106{bottom:519.015000px;}
.y176{bottom:525.135000px;}
.yd7{bottom:530.175000px;}
.yf4{bottom:530.355000px;}
.y6a{bottom:531.435000px;}
.y20{bottom:536.475000px;}
.y134{bottom:536.655000px;}
.y105{bottom:539.355000px;}
.y10d{bottom:540.075000px;}
.yb0{bottom:544.755000px;}
.y175{bottom:546.915000px;}
.y15a{bottom:549.075000px;}
.yd6{bottom:550.515000px;}
.y69{bottom:551.595000px;}
.y104{bottom:559.515000px;}
.yaf{bottom:565.095000px;}
.y1f{bottom:565.635000px;}
.y133{bottom:570.495000px;}
.yd5{bottom:570.855000px;}
.y10c{bottom:571.755000px;}
.y68{bottom:571.935000px;}
.y103{bottom:579.855000px;}
.y174{bottom:580.755000px;}
.yae{bottom:585.435000px;}
.yd4{bottom:591.015000px;}
.y67{bottom:592.095000px;}
.y132{bottom:592.275000px;}
.y159{bottom:592.815000px;}
.y102{bottom:600.015000px;}
.y1e{bottom:601.095000px;}
.y173{bottom:602.535000px;}
.yad{bottom:605.595000px;}
.yd3{bottom:611.355000px;}
.y66{bottom:612.435000px;}
.y131{bottom:614.235000px;}
.y158{bottom:614.595000px;}
.y101{bottom:620.355000px;}
.y1d{bottom:624.495000px;}
.yac{bottom:625.935000px;}
.yd2{bottom:631.515000px;}
.y65{bottom:632.595000px;}
.y172{bottom:636.555000px;}
.y100{bottom:640.515000px;}
.yab{bottom:646.095000px;}
.y1c{bottom:647.715000px;}
.y130{bottom:648.075000px;}
.y157{bottom:648.435000px;}
.yd1{bottom:651.885000px;}
.y64{bottom:652.965000px;}
.y171{bottom:658.365000px;}
.yff{bottom:660.885000px;}
.yaa{bottom:666.465000px;}
.y12f{bottom:669.885000px;}
.y156{bottom:670.425000px;}
.yd0{bottom:672.045000px;}
.y63{bottom:673.125000px;}
.y1b{bottom:676.905000px;}
.y192{bottom:679.965000px;}
.y170{bottom:680.145000px;}
.yfe{bottom:681.045000px;}
.y8f{bottom:682.125000px;}
.ya9{bottom:686.625000px;}
.y12e{bottom:691.845000px;}
.y155{bottom:692.205000px;}
.ycf{bottom:692.385000px;}
.y62{bottom:693.465000px;}
.yfd{bottom:701.385000px;}
.y16f{bottom:702.105000px;}
.y8e{bottom:702.465000px;}
.y1a{bottom:706.065000px;}
.ya8{bottom:706.965000px;}
.yce{bottom:712.545000px;}
.y61{bottom:713.625000px;}
.y154{bottom:713.985000px;}
.yfc{bottom:721.545000px;}
.y8d{bottom:722.625000px;}
.y190{bottom:726.045000px;}
.y19{bottom:726.405000px;}
.ya7{bottom:727.125000px;}
.ycd{bottom:732.885000px;}
.y60{bottom:733.965000px;}
.y12d{bottom:735.405000px;}
.y153{bottom:735.945000px;}
.yfb{bottom:741.885000px;}
.y8c{bottom:742.965000px;}
.y18{bottom:746.745000px;}
.ya6{bottom:747.465000px;}
.y18f{bottom:748.005000px;}
.ycc{bottom:753.045000px;}
.y5f{bottom:754.125000px;}
.y12c{bottom:757.365000px;}
.y152{bottom:757.725000px;}
.yfa{bottom:762.045000px;}
.y8b{bottom:763.125000px;}
.y17{bottom:766.905000px;}
.ya5{bottom:767.625000px;}
.y18e{bottom:769.785000px;}
.ycb{bottom:773.385000px;}
.y5e{bottom:774.465000px;}
.y12b{bottom:779.145000px;}
.y16e{bottom:779.685000px;}
.yf3{bottom:782.205000px;}
.yf9{bottom:782.385000px;}
.y10b{bottom:783.285000px;}
.y8a{bottom:783.465000px;}
.y16{bottom:787.245000px;}
.y151{bottom:791.565000px;}
.yca{bottom:793.545000px;}
.y5d{bottom:794.625000px;}
.ya4{bottom:797.685000px;}
.y16d{bottom:801.465000px;}
.yf2{bottom:802.545000px;}
.y89{bottom:803.625000px;}
.yf8{bottom:812.265000px;}
.y12a{bottom:812.985000px;}
.y150{bottom:813.525000px;}
.yc9{bottom:813.885000px;}
.y5c{bottom:814.965000px;}
.y15{bottom:816.405000px;}
.ya3{bottom:821.445000px;}
.yf1{bottom:822.885000px;}
.y88{bottom:823.965000px;}
.y18d{bottom:825.405000px;}
.yc8{bottom:834.045000px;}
.y129{bottom:834.945000px;}
.y5b{bottom:835.125000px;}
.y14f{bottom:835.305000px;}
.y14{bottom:838.005000px;}
.yf0{bottom:843.045000px;}
.y87{bottom:844.125000px;}
.y18c{bottom:847.365000px;}
.ya2{bottom:853.125000px;}
.yc7{bottom:854.385000px;}
.y5a{bottom:855.465000px;}
.y128{bottom:856.725000px;}
.y16c{bottom:857.265000px;}
.y13{bottom:858.345000px;}
.yef{bottom:863.385000px;}
.y86{bottom:864.465000px;}
.y14e{bottom:869.145000px;}
.ya1{bottom:873.465000px;}
.yc6{bottom:874.545000px;}
.y59{bottom:875.625000px;}
.y12{bottom:878.505000px;}
.y127{bottom:878.685000px;}
.y16b{bottom:879.045000px;}
.yee{bottom:883.545000px;}
.y85{bottom:884.625000px;}
.y14d{bottom:891.105000px;}
.ya0{bottom:893.625000px;}
.y58{bottom:895.965000px;}
.y11{bottom:898.890000px;}
.y191{bottom:900.870000px;}
.y18b{bottom:903.030000px;}
.yed{bottom:903.930000px;}
.yc5{bottom:904.650000px;}
.y84{bottom:905.010000px;}
.y126{bottom:912.570000px;}
.y14c{bottom:912.930000px;}
.y10a{bottom:913.830000px;}
.y9f{bottom:914.010000px;}
.y57{bottom:916.170000px;}
.yec{bottom:924.090000px;}
.y18a{bottom:924.990000px;}
.yf7{bottom:925.170000px;}
.y10{bottom:928.770000px;}
.y83{bottom:934.170000px;}
.y125{bottom:934.350000px;}
.y14b{bottom:934.710000px;}
.yc4{bottom:936.330000px;}
.y56{bottom:936.510000px;}
.yf6{bottom:945.510000px;}
.y189{bottom:946.770000px;}
.yeb{bottom:954.150000px;}
.y82{bottom:954.510000px;}
.y124{bottom:956.130000px;}
.yc3{bottom:956.670000px;}
.yf{bottom:960.630000px;}
.y55{bottom:965.670000px;}
.y188{bottom:968.730000px;}
.y81{bottom:974.670000px;}
.yc2{bottom:977.010000px;}
.y123{bottom:977.910000px;}
.y16a{bottom:978.450000px;}
.yea{bottom:985.830000px;}
.y54{bottom:986.010000px;}
.ye{bottom:989.790000px;}
.y14a{bottom:990.510000px;}
.y80{bottom:995.010000px;}
.yc1{bottom:997.170000px;}
.y122{bottom:1001.490000px;}
.y53{bottom:1006.170000px;}
.yd{bottom:1010.130000px;}
.y149{bottom:1012.290000px;}
.y7f{bottom:1015.170000px;}
.yc0{bottom:1017.510000px;}
.y121{bottom:1023.450000px;}
.y52{bottom:1026.510000px;}
.y148{bottom:1034.250000px;}
.y7e{bottom:1035.510000px;}
.ybf{bottom:1037.670000px;}
.yc{bottom:1039.290000px;}
.y120{bottom:1045.230000px;}
.y187{bottom:1046.130000px;}
.y51{bottom:1046.670000px;}
.y7d{bottom:1055.670000px;}
.y147{bottom:1056.030000px;}
.ybe{bottom:1058.010000px;}
.y50{bottom:1067.010000px;}
.y186{bottom:1068.090000px;}
.yb{bottom:1068.630000px;}
.y7c{bottom:1076.010000px;}
.y146{bottom:1077.990000px;}
.ybd{bottom:1078.170000px;}
.y11f{bottom:1079.070000px;}
.y4f{bottom:1087.170000px;}
.ya{bottom:1088.970000px;}
.y185{bottom:1089.870000px;}
.y7b{bottom:1096.170000px;}
.y145{bottom:1099.770000px;}
.y11e{bottom:1101.030000px;}
.ybc{bottom:1107.330000px;}
.ye9{bottom:1107.510000px;}
.y9{bottom:1109.130000px;}
.y184{bottom:1111.830000px;}
.y4e{bottom:1116.330000px;}
.y7a{bottom:1116.510000px;}
.y11d{bottom:1122.810000px;}
.ybb{bottom:1127.670000px;}
.y144{bottom:1133.610000px;}
.y4d{bottom:1136.670000px;}
.y11c{bottom:1144.770000px;}
.y8{bottom:1149.120000px;}
.y143{bottom:1155.420000px;}
.yba{bottom:1156.860000px;}
.y4c{bottom:1157.040000px;}
.y11b{bottom:1174.680000px;}
.y4b{bottom:1177.200000px;}
.y142{bottom:1177.380000px;}
.y7{bottom:1183.320000px;}
.y43{bottom:1196.820000px;}
.hf{height:10.620000px;}
.hd{height:22.500000px;}
.h2{height:36.571289px;}
.h3{height:37.599609px;}
.hb{height:41.610234px;}
.h7{height:48.761719px;}
.h5{height:50.132812px;}
.h8{height:51.398851px;}
.ha{height:52.417969px;}
.h9{height:57.051211px;}
.hc{height:59.439023px;}
.h10{height:60.679688px;}
.h4{height:65.884219px;}
.h6{height:66.676641px;}
.he{height:83.787539px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.500000px;}
.w4{width:719.640000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:10.836000px;}
.xf{left:13.500000px;}
.x2{left:84.995987px;}
.x9{left:136.475987px;}
.x3{left:202.169987px;}
.x4{left:306.614987px;}
.x6{left:378.434987px;}
.x8{left:387.794987px;}
.xc{left:409.214987px;}
.x5{left:415.334987px;}
.x7{left:446.504987px;}
.xd{left:473.144987px;}
.xa{left:676.589987px;}
.xb{left:681.089987px;}
.x1{left:808.019987px;}
.xe{left:810.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-18.453333pt;}
.lsc{letter-spacing:-0.768000pt;}
.ls4{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.154667pt;}
.ls7{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1{letter-spacing:46.720000pt;}
.lsa{letter-spacing:1175.333547pt;}
.ls9{letter-spacing:1272.085333pt;}
.ws0{word-spacing:-58.880000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.320000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.424000pt;}
.ws9{word-spacing:-15.232000pt;}
.ws8{word-spacing:0.000000pt;}
._8{margin-left:-1199.616000pt;}
._b{margin-left:-476.320000pt;}
._a{margin-left:-367.578667pt;}
._31{margin-left:-191.210027pt;}
._2f{margin-left:-174.405973pt;}
._32{margin-left:-50.912213pt;}
._34{margin-left:-49.031680pt;}
._30{margin-left:-45.186560pt;}
._38{margin-left:-42.499413pt;}
._39{margin-left:-24.292480pt;}
._33{margin-left:-22.957440pt;}
._36{margin-left:-16.795520pt;}
._35{margin-left:-6.730240pt;}
._37{margin-left:-5.811840pt;}
._16{margin-left:-4.650667pt;}
._10{margin-left:-3.306667pt;}
._0{margin-left:-2.400000pt;}
._1{margin-left:-0.912000pt;}
._2{width:0.922667pt;}
._7{width:1.830827pt;}
._11{width:2.752000pt;}
._15{width:3.712000pt;}
._1d{width:4.880000pt;}
._1c{width:6.016000pt;}
._14{width:7.680000pt;}
._13{width:8.832000pt;}
._25{width:9.920000pt;}
._3d{width:11.200000pt;}
._3c{width:12.352000pt;}
._21{width:13.712000pt;}
._20{width:14.784000pt;}
._27{width:17.280000pt;}
._46{width:18.240000pt;}
._12{width:19.360000pt;}
._45{width:20.480000pt;}
._23{width:21.568000pt;}
._22{width:22.656000pt;}
._1e{width:24.128000pt;}
._1f{width:25.024000pt;}
._4{width:26.448000pt;}
._26{width:27.840000pt;}
._43{width:28.800000pt;}
._58{width:29.824000pt;}
._48{width:30.912000pt;}
._4c{width:32.000000pt;}
._4b{width:33.024000pt;}
._3e{width:34.240000pt;}
._2b{width:35.776000pt;}
._2c{width:36.672000pt;}
._49{width:37.568000pt;}
._4a{width:38.464000pt;}
._51{width:39.360000pt;}
._53{width:41.280000pt;}
._5a{width:44.416000pt;}
._17{width:45.632000pt;}
._18{width:46.666667pt;}
._4e{width:48.128000pt;}
._5d{width:49.344000pt;}
._5c{width:50.432000pt;}
._3f{width:52.160000pt;}
._61{width:53.056000pt;}
._44{width:53.952000pt;}
._52{width:55.360000pt;}
._60{width:57.024000pt;}
._24{width:58.368000pt;}
._57{width:60.736000pt;}
._2a{width:61.824000pt;}
._f{width:63.232000pt;}
._3b{width:65.024000pt;}
._3a{width:66.240000pt;}
._47{width:67.136000pt;}
._55{width:71.216000pt;}
._29{width:73.040000pt;}
._28{width:73.984000pt;}
._d{width:75.722667pt;}
._62{width:77.376000pt;}
._3{width:80.448000pt;}
._19{width:82.218667pt;}
._1a{width:83.754667pt;}
._40{width:90.368000pt;}
._e{width:92.970667pt;}
._63{width:95.424000pt;}
._5e{width:121.152000pt;}
._54{width:126.336000pt;}
._50{width:135.594667pt;}
._4f{width:136.768000pt;}
._56{width:140.928000pt;}
._4d{width:149.504000pt;}
._42{width:156.032000pt;}
._41{width:157.312000pt;}
._2e{width:160.107307pt;}
._1b{width:162.382507pt;}
._59{width:208.896000pt;}
._5b{width:275.136000pt;}
._c{width:367.690667pt;}
._6{width:570.272000pt;}
._9{width:696.106667pt;}
._5f{width:806.976000pt;}
._2d{width:1273.381547pt;}
._5{width:1274.517333pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y4a{bottom:-4.800000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:3.200000pt;}
.y46{bottom:49.920000pt;}
.y6{bottom:51.200000pt;}
.y45{bottom:61.920000pt;}
.y5{bottom:68.320000pt;}
.y4{bottom:81.760000pt;}
.y47{bottom:87.360000pt;}
.y49{bottom:92.960000pt;}
.y3{bottom:95.360000pt;}
.y2{bottom:108.800000pt;}
.y1{bottom:122.240000pt;}
.y44{bottom:132.000000pt;}
.y31{bottom:140.826667pt;}
.y42{bottom:146.906667pt;}
.ye8{bottom:149.306667pt;}
.y169{bottom:153.946667pt;}
.y11a{bottom:156.186667pt;}
.y30{bottom:158.906667pt;}
.y9e{bottom:162.266667pt;}
.y183{bottom:162.746667pt;}
.y41{bottom:164.826667pt;}
.ye7{bottom:167.386667pt;}
.y168{bottom:173.466667pt;}
.y79{bottom:175.226667pt;}
.y2f{bottom:176.826667pt;}
.y9d{bottom:180.346667pt;}
.y182{bottom:182.106667pt;}
.y119{bottom:182.266667pt;}
.y40{bottom:182.906667pt;}
.y141{bottom:183.706667pt;}
.ye6{bottom:185.306667pt;}
.y78{bottom:193.306667pt;}
.y2e{bottom:194.906667pt;}
.y9c{bottom:198.266667pt;}
.y118{bottom:200.346667pt;}
.y3f{bottom:200.826667pt;}
.y181{bottom:201.626667pt;}
.y140{bottom:203.066667pt;}
.ye5{bottom:203.386667pt;}
.y167{bottom:203.546667pt;}
.y109{bottom:211.226667pt;}
.y77{bottom:211.386667pt;}
.y2d{bottom:212.826667pt;}
.y9b{bottom:216.346667pt;}
.y117{bottom:218.266667pt;}
.y180{bottom:220.986667pt;}
.ye4{bottom:221.306667pt;}
.y13f{bottom:222.586667pt;}
.y166{bottom:222.906667pt;}
.y3e{bottom:226.746667pt;}
.y76{bottom:229.306667pt;}
.y9a{bottom:234.266667pt;}
.y116{bottom:236.346667pt;}
.y2c{bottom:238.746667pt;}
.ye3{bottom:239.386667pt;}
.y17f{bottom:240.506667pt;}
.y165{bottom:242.266667pt;}
.y3d{bottom:244.826667pt;}
.y75{bottom:247.386667pt;}
.y99{bottom:252.346667pt;}
.y13e{bottom:252.666667pt;}
.y115{bottom:254.266667pt;}
.y2b{bottom:256.826667pt;}
.y17e{bottom:259.866667pt;}
.y164{bottom:261.786667pt;}
.y3c{bottom:262.906667pt;}
.ye2{bottom:265.306667pt;}
.y98{bottom:270.266667pt;}
.y13d{bottom:272.026667pt;}
.y114{bottom:272.346667pt;}
.y74{bottom:273.306667pt;}
.y2a{bottom:274.906667pt;}
.y3b{bottom:280.826667pt;}
.y163{bottom:281.146667pt;}
.ye1{bottom:283.386667pt;}
.y97{bottom:288.346667pt;}
.y17d{bottom:289.946667pt;}
.y113{bottom:290.266667pt;}
.y73{bottom:291.386667pt;}
.y13c{bottom:291.546667pt;}
.y29{bottom:292.826667pt;}
.y3a{bottom:298.906667pt;}
.ye0{bottom:301.306667pt;}
.yb9{bottom:306.266667pt;}
.y112{bottom:308.346667pt;}
.y72{bottom:309.306667pt;}
.y28{bottom:310.906667pt;}
.y162{bottom:311.226667pt;}
.y96{bottom:315.066667pt;}
.y39{bottom:316.826667pt;}
.ydf{bottom:319.386667pt;}
.y71{bottom:327.386667pt;}
.y27{bottom:328.826667pt;}
.y13b{bottom:330.266667pt;}
.y161{bottom:330.746667pt;}
.yb8{bottom:332.186667pt;}
.y38{bottom:334.906667pt;}
.y111{bottom:335.066667pt;}
.y95{bottom:336.186667pt;}
.yde{bottom:337.306667pt;}
.y17c{bottom:339.386667pt;}
.y70{bottom:345.306667pt;}
.y26{bottom:346.906667pt;}
.y13a{bottom:349.786667pt;}
.y160{bottom:350.106667pt;}
.yb7{bottom:350.266667pt;}
.ydd{bottom:355.386667pt;}
.y17b{bottom:358.946667pt;}
.y37{bottom:360.866667pt;}
.y110{bottom:363.266667pt;}
.y6f{bottom:363.426667pt;}
.y94{bottom:364.226667pt;}
.y25{bottom:364.866667pt;}
.yb6{bottom:368.386667pt;}
.y139{bottom:369.186667pt;}
.y15f{bottom:369.666667pt;}
.ydc{bottom:373.346667pt;}
.y17a{bottom:378.306667pt;}
.y36{bottom:378.946667pt;}
.y6e{bottom:381.346667pt;}
.y93{bottom:382.306667pt;}
.y24{bottom:382.946667pt;}
.yb5{bottom:386.306667pt;}
.y15e{bottom:389.026667pt;}
.ydb{bottom:391.426667pt;}
.y35{bottom:396.866667pt;}
.y138{bottom:399.266667pt;}
.y6d{bottom:399.426667pt;}
.y92{bottom:400.386667pt;}
.y23{bottom:400.866667pt;}
.yb4{bottom:404.386667pt;}
.y179{bottom:408.386667pt;}
.yda{bottom:409.346667pt;}
.y34{bottom:414.946667pt;}
.y10f{bottom:417.346667pt;}
.y91{bottom:418.306667pt;}
.y137{bottom:418.786667pt;}
.y15d{bottom:419.106667pt;}
.yb3{bottom:422.306667pt;}
.y108{bottom:425.346667pt;}
.y6c{bottom:425.986667pt;}
.yd9{bottom:427.426667pt;}
.y22{bottom:427.586667pt;}
.y178{bottom:427.906667pt;}
.y33{bottom:432.866667pt;}
.y10e{bottom:435.426667pt;}
.y90{bottom:436.386667pt;}
.y136{bottom:438.146667pt;}
.y15c{bottom:438.466667pt;}
.yb2{bottom:440.386667pt;}
.y107{bottom:443.426667pt;}
.yd8{bottom:445.346667pt;}
.y177{bottom:447.266667pt;}
.y21{bottom:448.706667pt;}
.y32{bottom:450.946667pt;}
.yf5{bottom:453.346667pt;}
.y6b{bottom:454.306667pt;}
.y135{bottom:457.506667pt;}
.y15b{bottom:457.986667pt;}
.yb1{bottom:458.306667pt;}
.y106{bottom:461.346667pt;}
.y176{bottom:466.786667pt;}
.yd7{bottom:471.266667pt;}
.yf4{bottom:471.426667pt;}
.y6a{bottom:472.386667pt;}
.y20{bottom:476.866667pt;}
.y134{bottom:477.026667pt;}
.y105{bottom:479.426667pt;}
.y10d{bottom:480.066667pt;}
.yb0{bottom:484.226667pt;}
.y175{bottom:486.146667pt;}
.y15a{bottom:488.066667pt;}
.yd6{bottom:489.346667pt;}
.y69{bottom:490.306667pt;}
.y104{bottom:497.346667pt;}
.yaf{bottom:502.306667pt;}
.y1f{bottom:502.786667pt;}
.y133{bottom:507.106667pt;}
.yd5{bottom:507.426667pt;}
.y10c{bottom:508.226667pt;}
.y68{bottom:508.386667pt;}
.y103{bottom:515.426667pt;}
.y174{bottom:516.226667pt;}
.yae{bottom:520.386667pt;}
.yd4{bottom:525.346667pt;}
.y67{bottom:526.306667pt;}
.y132{bottom:526.466667pt;}
.y159{bottom:526.946667pt;}
.y102{bottom:533.346667pt;}
.y1e{bottom:534.306667pt;}
.y173{bottom:535.586667pt;}
.yad{bottom:538.306667pt;}
.yd3{bottom:543.426667pt;}
.y66{bottom:544.386667pt;}
.y131{bottom:545.986667pt;}
.y158{bottom:546.306667pt;}
.y101{bottom:551.426667pt;}
.y1d{bottom:555.106667pt;}
.yac{bottom:556.386667pt;}
.yd2{bottom:561.346667pt;}
.y65{bottom:562.306667pt;}
.y172{bottom:565.826667pt;}
.y100{bottom:569.346667pt;}
.yab{bottom:574.306667pt;}
.y1c{bottom:575.746667pt;}
.y130{bottom:576.066667pt;}
.y157{bottom:576.386667pt;}
.yd1{bottom:579.453333pt;}
.y64{bottom:580.413333pt;}
.y171{bottom:585.213333pt;}
.yff{bottom:587.453333pt;}
.yaa{bottom:592.413333pt;}
.y12f{bottom:595.453333pt;}
.y156{bottom:595.933333pt;}
.yd0{bottom:597.373333pt;}
.y63{bottom:598.333333pt;}
.y1b{bottom:601.693333pt;}
.y192{bottom:604.413333pt;}
.y170{bottom:604.573333pt;}
.yfe{bottom:605.373333pt;}
.y8f{bottom:606.333333pt;}
.ya9{bottom:610.333333pt;}
.y12e{bottom:614.973333pt;}
.y155{bottom:615.293333pt;}
.ycf{bottom:615.453333pt;}
.y62{bottom:616.413333pt;}
.yfd{bottom:623.453333pt;}
.y16f{bottom:624.093333pt;}
.y8e{bottom:624.413333pt;}
.y1a{bottom:627.613333pt;}
.ya8{bottom:628.413333pt;}
.yce{bottom:633.373333pt;}
.y61{bottom:634.333333pt;}
.y154{bottom:634.653333pt;}
.yfc{bottom:641.373333pt;}
.y8d{bottom:642.333333pt;}
.y190{bottom:645.373333pt;}
.y19{bottom:645.693333pt;}
.ya7{bottom:646.333333pt;}
.ycd{bottom:651.453333pt;}
.y60{bottom:652.413333pt;}
.y12d{bottom:653.693333pt;}
.y153{bottom:654.173333pt;}
.yfb{bottom:659.453333pt;}
.y8c{bottom:660.413333pt;}
.y18{bottom:663.773333pt;}
.ya6{bottom:664.413333pt;}
.y18f{bottom:664.893333pt;}
.ycc{bottom:669.373333pt;}
.y5f{bottom:670.333333pt;}
.y12c{bottom:673.213333pt;}
.y152{bottom:673.533333pt;}
.yfa{bottom:677.373333pt;}
.y8b{bottom:678.333333pt;}
.y17{bottom:681.693333pt;}
.ya5{bottom:682.333333pt;}
.y18e{bottom:684.253333pt;}
.ycb{bottom:687.453333pt;}
.y5e{bottom:688.413333pt;}
.y12b{bottom:692.573333pt;}
.y16e{bottom:693.053333pt;}
.yf3{bottom:695.293333pt;}
.yf9{bottom:695.453333pt;}
.y10b{bottom:696.253333pt;}
.y8a{bottom:696.413333pt;}
.y16{bottom:699.773333pt;}
.y151{bottom:703.613333pt;}
.yca{bottom:705.373333pt;}
.y5d{bottom:706.333333pt;}
.ya4{bottom:709.053333pt;}
.y16d{bottom:712.413333pt;}
.yf2{bottom:713.373333pt;}
.y89{bottom:714.333333pt;}
.yf8{bottom:722.013333pt;}
.y12a{bottom:722.653333pt;}
.y150{bottom:723.133333pt;}
.yc9{bottom:723.453333pt;}
.y5c{bottom:724.413333pt;}
.y15{bottom:725.693333pt;}
.ya3{bottom:730.173333pt;}
.yf1{bottom:731.453333pt;}
.y88{bottom:732.413333pt;}
.y18d{bottom:733.693333pt;}
.yc8{bottom:741.373333pt;}
.y129{bottom:742.173333pt;}
.y5b{bottom:742.333333pt;}
.y14f{bottom:742.493333pt;}
.y14{bottom:744.893333pt;}
.yf0{bottom:749.373333pt;}
.y87{bottom:750.333333pt;}
.y18c{bottom:753.213333pt;}
.ya2{bottom:758.333333pt;}
.yc7{bottom:759.453333pt;}
.y5a{bottom:760.413333pt;}
.y128{bottom:761.533333pt;}
.y16c{bottom:762.013333pt;}
.y13{bottom:762.973333pt;}
.yef{bottom:767.453333pt;}
.y86{bottom:768.413333pt;}
.y14e{bottom:772.573333pt;}
.ya1{bottom:776.413333pt;}
.yc6{bottom:777.373333pt;}
.y59{bottom:778.333333pt;}
.y12{bottom:780.893333pt;}
.y127{bottom:781.053333pt;}
.y16b{bottom:781.373333pt;}
.yee{bottom:785.373333pt;}
.y85{bottom:786.333333pt;}
.y14d{bottom:792.093333pt;}
.ya0{bottom:794.333333pt;}
.y58{bottom:796.413333pt;}
.y11{bottom:799.013333pt;}
.y191{bottom:800.773333pt;}
.y18b{bottom:802.693333pt;}
.yed{bottom:803.493333pt;}
.yc5{bottom:804.133333pt;}
.y84{bottom:804.453333pt;}
.y126{bottom:811.173333pt;}
.y14c{bottom:811.493333pt;}
.y10a{bottom:812.293333pt;}
.y9f{bottom:812.453333pt;}
.y57{bottom:814.373333pt;}
.yec{bottom:821.413333pt;}
.y18a{bottom:822.213333pt;}
.yf7{bottom:822.373333pt;}
.y10{bottom:825.573333pt;}
.y83{bottom:830.373333pt;}
.y125{bottom:830.533333pt;}
.y14b{bottom:830.853333pt;}
.yc4{bottom:832.293333pt;}
.y56{bottom:832.453333pt;}
.yf6{bottom:840.453333pt;}
.y189{bottom:841.573333pt;}
.yeb{bottom:848.133333pt;}
.y82{bottom:848.453333pt;}
.y124{bottom:849.893333pt;}
.yc3{bottom:850.373333pt;}
.yf{bottom:853.893333pt;}
.y55{bottom:858.373333pt;}
.y188{bottom:861.093333pt;}
.y81{bottom:866.373333pt;}
.yc2{bottom:868.453333pt;}
.y123{bottom:869.253333pt;}
.y16a{bottom:869.733333pt;}
.yea{bottom:876.293333pt;}
.y54{bottom:876.453333pt;}
.ye{bottom:879.813333pt;}
.y14a{bottom:880.453333pt;}
.y80{bottom:884.453333pt;}
.yc1{bottom:886.373333pt;}
.y122{bottom:890.213333pt;}
.y53{bottom:894.373333pt;}
.yd{bottom:897.893333pt;}
.y149{bottom:899.813333pt;}
.y7f{bottom:902.373333pt;}
.yc0{bottom:904.453333pt;}
.y121{bottom:909.733333pt;}
.y52{bottom:912.453333pt;}
.y148{bottom:919.333333pt;}
.y7e{bottom:920.453333pt;}
.ybf{bottom:922.373333pt;}
.yc{bottom:923.813333pt;}
.y120{bottom:929.093333pt;}
.y187{bottom:929.893333pt;}
.y51{bottom:930.373333pt;}
.y7d{bottom:938.373333pt;}
.y147{bottom:938.693333pt;}
.ybe{bottom:940.453333pt;}
.y50{bottom:948.453333pt;}
.y186{bottom:949.413333pt;}
.yb{bottom:949.893333pt;}
.y7c{bottom:956.453333pt;}
.y146{bottom:958.213333pt;}
.ybd{bottom:958.373333pt;}
.y11f{bottom:959.173333pt;}
.y4f{bottom:966.373333pt;}
.ya{bottom:967.973333pt;}
.y185{bottom:968.773333pt;}
.y7b{bottom:974.373333pt;}
.y145{bottom:977.573333pt;}
.y11e{bottom:978.693333pt;}
.ybc{bottom:984.293333pt;}
.ye9{bottom:984.453333pt;}
.y9{bottom:985.893333pt;}
.y184{bottom:988.293333pt;}
.y4e{bottom:992.293333pt;}
.y7a{bottom:992.453333pt;}
.y11d{bottom:998.053333pt;}
.ybb{bottom:1002.373333pt;}
.y144{bottom:1007.653333pt;}
.y4d{bottom:1010.373333pt;}
.y11c{bottom:1017.573333pt;}
.y8{bottom:1021.440000pt;}
.y143{bottom:1027.040000pt;}
.yba{bottom:1028.320000pt;}
.y4c{bottom:1028.480000pt;}
.y11b{bottom:1044.160000pt;}
.y4b{bottom:1046.400000pt;}
.y142{bottom:1046.560000pt;}
.y7{bottom:1051.840000pt;}
.y43{bottom:1063.840000pt;}
.hf{height:9.440000pt;}
.hd{height:20.000000pt;}
.h2{height:32.507812pt;}
.h3{height:33.421875pt;}
.hb{height:36.986875pt;}
.h7{height:43.343750pt;}
.h5{height:44.562500pt;}
.h8{height:45.687867pt;}
.ha{height:46.593750pt;}
.h9{height:50.712187pt;}
.hc{height:52.834688pt;}
.h10{height:53.937500pt;}
.h4{height:58.563750pt;}
.h6{height:59.268125pt;}
.he{height:74.477812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.000000pt;}
.w4{width:639.680000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:9.632000pt;}
.xf{left:12.000000pt;}
.x2{left:75.551988pt;}
.x9{left:121.311988pt;}
.x3{left:179.706655pt;}
.x4{left:272.546655pt;}
.x6{left:336.386655pt;}
.x8{left:344.706655pt;}
.xc{left:363.746655pt;}
.x5{left:369.186655pt;}
.x7{left:396.893322pt;}
.xd{left:420.573322pt;}
.xa{left:601.413322pt;}
.xb{left:605.413322pt;}
.x1{left:718.239988pt;}
.xe{left:720.320000pt;}
}




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