
    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_f6966a4b4f3d1144359cec93.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.073242;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_8218f4af58a9697441a91351.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_44e89ea0666f208bc6a55f50.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3512db580e95194db406094f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6965bfab7a5b9854e8b647cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9f6910467b44161a085bb7c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.786133;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_4b6f8e6ece8594ae1aeee496.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.786133;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_dd6b34a43cda76b5d936c662.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.073242;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;}
.ls10{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.223800px;}
.ls6{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.045360px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.720000px;}
.lsa{letter-spacing:2.880000px;}
.lsf{letter-spacing:5.760000px;}
.ls7{letter-spacing:6.480000px;}
.ls2{letter-spacing:26.640000px;}
.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;}
}
.ws7{word-spacing:-108.000000px;}
.ws5{word-spacing:-18.720000px;}
.ws2{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws8{word-spacing:-14.940000px;}
.ws9{word-spacing:-12.014640px;}
.wsa{word-spacing:-11.836200px;}
.wsc{word-spacing:-11.700000px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-4.392000px;}
._3{margin-left:-2.736000px;}
._0{margin-left:-1.152000px;}
._1{width:1.248000px;}
._4{width:2.424000px;}
._5{width:4.128000px;}
._e{width:5.424000px;}
._f{width:6.456000px;}
._10{width:7.560000px;}
._16{width:8.712000px;}
._7{width:10.152000px;}
._8{width:11.232000px;}
._9{width:12.648000px;}
._a{width:13.896000px;}
._b{width:14.904000px;}
._17{width:15.912000px;}
._2{width:16.992000px;}
._29{width:18.406080px;}
._14{width:19.728000px;}
._38{width:20.952000px;}
._1e{width:22.896000px;}
._11{width:24.192000px;}
._c{width:25.992000px;}
._d{width:27.072000px;}
._15{width:28.656000px;}
._1c{width:30.096000px;}
._1d{width:31.188000px;}
._13{width:33.624000px;}
._12{width:34.632000px;}
._2a{width:39.322080px;}
._25{width:40.756320px;}
._1a{width:43.848000px;}
._1b{width:45.192000px;}
._2c{width:53.395200px;}
._2b{width:54.620640px;}
._39{width:56.331360px;}
._23{width:60.775920px;}
._22{width:64.275840px;}
._24{width:66.453120px;}
._2f{width:80.352000px;}
._37{width:81.480000px;}
._30{width:83.372160px;}
._27{width:95.329680px;}
._26{width:96.333120px;}
._36{width:104.400000px;}
._31{width:119.818800px;}
._32{width:178.742160px;}
._28{width:199.485840px;}
._34{width:566.184000px;}
._2d{width:575.712000px;}
._33{width:585.540000px;}
._1f{width:594.180000px;}
._35{width:621.252000px;}
._21{width:740.052000px;}
._20{width:746.760000px;}
._2e{width:764.472000px;}
._18{width:773.832000px;}
._19{width:854.820000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.yb5{bottom:-21.060000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.y6{bottom:5.400000px;}
.yb4{bottom:12.060000px;}
.yf2{bottom:12.240000px;}
.y10d{bottom:12.270000px;}
.ye{bottom:12.600000px;}
.y3e{bottom:12.780000px;}
.y11{bottom:12.960000px;}
.yf1{bottom:21.240000px;}
.y3{bottom:21.960000px;}
.y192{bottom:24.120000px;}
.y7{bottom:24.300000px;}
.y5{bottom:26.100000px;}
.y189{bottom:29.520000px;}
.y10c{bottom:29.550000px;}
.y110{bottom:38.340000px;}
.yf0{bottom:38.520000px;}
.y118{bottom:39.060000px;}
.y2{bottom:42.660000px;}
.y10b{bottom:46.830000px;}
.y18f{bottom:50.400000px;}
.y10f{bottom:55.620000px;}
.y196{bottom:55.650000px;}
.yef{bottom:55.800000px;}
.y195{bottom:55.830000px;}
.y117{bottom:56.340000px;}
.yc{bottom:56.700000px;}
.y191{bottom:59.400000px;}
.y11d{bottom:64.620000px;}
.y197{bottom:64.650000px;}
.y18e{bottom:67.680000px;}
.yb{bottom:72.180000px;}
.y116{bottom:73.620000px;}
.y190{bottom:76.680000px;}
.y11c{bottom:81.900000px;}
.y194{bottom:81.930000px;}
.y18b{bottom:81.945000px;}
.y115{bottom:90.900000px;}
.y18d{bottom:93.960000px;}
.y11b{bottom:108.180000px;}
.y3c{bottom:109.440000px;}
.y10e{bottom:110.880000px;}
.y137{bottom:111.600000px;}
.y6f{bottom:112.860000px;}
.y3b{bottom:114.660000px;}
.y1d6{bottom:116.460000px;}
.y114{bottom:117.180000px;}
.yce{bottom:117.360000px;}
.y17b{bottom:119.160000px;}
.y14e{bottom:119.700000px;}
.yb3{bottom:122.400000px;}
.y11a{bottom:125.460000px;}
.y3a{bottom:127.080000px;}
.y93{bottom:127.620000px;}
.y198{bottom:128.340000px;}
.y1b0{bottom:128.700000px;}
.y166{bottom:130.140000px;}
.y136{bottom:132.300000px;}
.y6e{bottom:133.560000px;}
.y113{bottom:134.460000px;}
.y1be{bottom:135.360000px;}
.y1d5{bottom:137.160000px;}
.y17a{bottom:139.860000px;}
.yb2{bottom:143.100000px;}
.ye9{bottom:146.340000px;}
.ycd{bottom:147.060000px;}
.y92{bottom:148.320000px;}
.y14d{bottom:149.220000px;}
.y1af{bottom:149.400000px;}
.y119{bottom:151.560000px;}
.y112{bottom:151.740000px;}
.y135{bottom:153.000000px;}
.y6d{bottom:154.260000px;}
.y193{bottom:154.800000px;}
.y165{bottom:159.840000px;}
.y179{bottom:160.560000px;}
.y39{bottom:161.460000px;}
.yb1{bottom:163.800000px;}
.y1bd{bottom:165.060000px;}
.y1d4{bottom:166.860000px;}
.ye8{bottom:167.040000px;}
.y91{bottom:169.020000px;}
.y134{bottom:173.700000px;}
.y6c{bottom:174.960000px;}
.ycc{bottom:176.760000px;}
.y1ae{bottom:179.100000px;}
.y164{bottom:180.540000px;}
.y38{bottom:182.160000px;}
.yb0{bottom:184.500000px;}
.y1d3{bottom:187.560000px;}
.y90{bottom:189.720000px;}
.y10a{bottom:190.260000px;}
.y133{bottom:194.400000px;}
.y1bc{bottom:194.760000px;}
.y6b{bottom:195.660000px;}
.ye7{bottom:196.560000px;}
.ycb{bottom:197.490000px;}
.y37{bottom:202.890000px;}
.y1ad{bottom:208.830000px;}
.y163{bottom:210.090000px;}
.y8f{bottom:210.450000px;}
.yaf{bottom:214.230000px;}
.y132{bottom:215.130000px;}
.y6a{bottom:216.390000px;}
.y1d2{bottom:217.290000px;}
.y178{bottom:219.990000px;}
.yca{bottom:223.230000px;}
.y36{bottom:223.590000px;}
.y1bb{bottom:224.490000px;}
.y8e{bottom:231.150000px;}
.y131{bottom:235.830000px;}
.y1d1{bottom:237.990000px;}
.y1ac{bottom:238.530000px;}
.yae{bottom:243.930000px;}
.y1ba{bottom:245.190000px;}
.y69{bottom:246.090000px;}
.y177{bottom:249.690000px;}
.y14c{bottom:250.050000px;}
.y8d{bottom:251.850000px;}
.y35{bottom:253.290000px;}
.y130{bottom:256.530000px;}
.y18c{bottom:260.490000px;}
.y1b9{bottom:265.890000px;}
.y68{bottom:266.790000px;}
.y1d0{bottom:267.690000px;}
.y14b{bottom:270.750000px;}
.y8c{bottom:272.550000px;}
.y109{bottom:273.810000px;}
.y12f{bottom:277.230000px;}
.y176{bottom:279.390000px;}
.ye6{bottom:281.550000px;}
.y34{bottom:282.990000px;}
.y1b8{bottom:286.590000px;}
.y67{bottom:287.490000px;}
.y14a{bottom:291.450000px;}
.y8b{bottom:293.250000px;}
.y108{bottom:294.510000px;}
.y1cf{bottom:297.390000px;}
.y12e{bottom:297.930000px;}
.ye5{bottom:302.250000px;}
.y1b7{bottom:307.290000px;}
.y66{bottom:308.190000px;}
.y175{bottom:309.090000px;}
.y149{bottom:312.150000px;}
.y33{bottom:312.690000px;}
.y107{bottom:315.210000px;}
.y8a{bottom:322.950000px;}
.y1ce{bottom:327.090000px;}
.y12d{bottom:327.630000px;}
.y65{bottom:328.890000px;}
.y106{bottom:335.910000px;}
.y1b6{bottom:336.990000px;}
.y174{bottom:338.790000px;}
.y148{bottom:341.850000px;}
.y32{bottom:342.390000px;}
.ye4{bottom:343.650000px;}
.y89{bottom:348.690000px;}
.y64{bottom:349.590000px;}
.y12c{bottom:353.370000px;}
.yad{bottom:355.890000px;}
.y1cd{bottom:356.790000px;}
.yc9{bottom:357.690000px;}
.y162{bottom:358.050000px;}
.y31{bottom:363.090000px;}
.ye3{bottom:364.350000px;}
.y105{bottom:365.610000px;}
.y173{bottom:368.490000px;}
.y63{bottom:370.290000px;}
.y147{bottom:371.550000px;}
.yac{bottom:376.590000px;}
.y18a{bottom:378.210000px;}
.yc8{bottom:378.390000px;}
.y161{bottom:378.750000px;}
.y30{bottom:383.790000px;}
.ye2{bottom:385.050000px;}
.y104{bottom:386.310000px;}
.y1cc{bottom:386.490000px;}
.y62{bottom:390.990000px;}
.yab{bottom:397.290000px;}
.y172{bottom:398.190000px;}
.yc7{bottom:399.090000px;}
.y160{bottom:399.450000px;}
.y146{bottom:401.250000px;}
.y2f{bottom:404.490000px;}
.ye1{bottom:405.750000px;}
.y103{bottom:407.010000px;}
.y61{bottom:411.690000px;}
.y1cb{bottom:416.190000px;}
.yaa{bottom:417.990000px;}
.yc6{bottom:419.790000px;}
.y15f{bottom:420.150000px;}
.y171{bottom:423.930000px;}
.y2e{bottom:425.190000px;}
.ye0{bottom:426.450000px;}
.y145{bottom:430.950000px;}
.y1ab{bottom:431.490000px;}
.y60{bottom:432.390000px;}
.y102{bottom:436.755000px;}
.ya9{bottom:438.735000px;}
.yc5{bottom:440.535000px;}
.y2d{bottom:445.935000px;}
.y1b5{bottom:449.535000px;}
.y15e{bottom:449.895000px;}
.y5f{bottom:453.135000px;}
.ydf{bottom:456.195000px;}
.y101{bottom:457.455000px;}
.y88{bottom:458.535000px;}
.ya8{bottom:459.435000px;}
.y144{bottom:460.695000px;}
.yc4{bottom:461.235000px;}
.y2c{bottom:466.635000px;}
.y1b4{bottom:470.235000px;}
.y5e{bottom:473.835000px;}
.y100{bottom:478.155000px;}
.y87{bottom:479.235000px;}
.y15d{bottom:479.595000px;}
.ya7{bottom:480.135000px;}
.yc3{bottom:481.935000px;}
.y188{bottom:483.915000px;}
.yde{bottom:485.895000px;}
.y2b{bottom:487.335000px;}
.y143{bottom:490.395000px;}
.y1aa{bottom:490.935000px;}
.y5d{bottom:494.535000px;}
.y1ca{bottom:496.335000px;}
.yff{bottom:498.855000px;}
.y86{bottom:499.935000px;}
.y15c{bottom:500.295000px;}
.ya6{bottom:500.835000px;}
.ydd{bottom:506.595000px;}
.y2a{bottom:508.035000px;}
.yc2{bottom:511.635000px;}
.y5c{bottom:515.235000px;}
.y142{bottom:520.095000px;}
.y85{bottom:520.635000px;}
.ya5{bottom:521.535000px;}
.y1c9{bottom:526.035000px;}
.y170{bottom:526.935000px;}
.ydc{bottom:527.295000px;}
.yfe{bottom:528.555000px;}
.y29{bottom:528.735000px;}
.y15b{bottom:529.995000px;}
.y1a9{bottom:532.335000px;}
.y12b{bottom:535.215000px;}
.y5b{bottom:535.935000px;}
.y84{bottom:541.335000px;}
.ya4{bottom:542.235000px;}
.y16f{bottom:547.635000px;}
.ydb{bottom:547.995000px;}
.yfd{bottom:549.255000px;}
.y28{bottom:549.435000px;}
.y141{bottom:549.795000px;}
.y15a{bottom:550.695000px;}
.y1a8{bottom:553.035000px;}
.y1c8{bottom:555.735000px;}
.y12a{bottom:560.955000px;}
.y83{bottom:562.035000px;}
.ya3{bottom:562.935000px;}
.y187{bottom:563.475000px;}
.y5a{bottom:565.635000px;}
.yc1{bottom:567.075000px;}
.y16e{bottom:568.335000px;}
.y27{bottom:570.135000px;}
.y159{bottom:571.395000px;}
.yda{bottom:573.735000px;}
.yfc{bottom:578.955000px;}
.y140{bottom:579.495000px;}
.y82{bottom:582.735000px;}
.y1c7{bottom:585.435000px;}
.y59{bottom:586.335000px;}
.y26{bottom:590.835000px;}
.ya2{bottom:592.635000px;}
.y158{bottom:597.135000px;}
.y16d{bottom:598.035000px;}
.yfb{bottom:599.655000px;}
.y81{bottom:603.435000px;}
.y58{bottom:607.035000px;}
.y13f{bottom:609.195000px;}
.y25{bottom:611.535000px;}
.y186{bottom:612.435000px;}
.y1c6{bottom:615.135000px;}
.y3f{bottom:617.295000px;}
.y3d{bottom:617.475000px;}
.yfa{bottom:620.355000px;}
.ya1{bottom:622.335000px;}
.y1a7{bottom:624.135000px;}
.y57{bottom:627.735000px;}
.y13e{bottom:629.895000px;}
.y24{bottom:632.235000px;}
.y80{bottom:633.135000px;}
.yf{bottom:635.475000px;}
.yd{bottom:635.655000px;}
.yf9{bottom:641.055000px;}
.y1b3{bottom:642.135000px;}
.ya0{bottom:643.035000px;}
.y1a6{bottom:644.835000px;}
.y56{bottom:648.435000px;}
.y13d{bottom:650.595000px;}
.y23{bottom:652.935000px;}
.y7f{bottom:653.835000px;}
.yf8{bottom:661.755000px;}
.y185{bottom:662.835000px;}
.y9f{bottom:668.775000px;}
.y55{bottom:669.135000px;}
.y13c{bottom:671.295000px;}
.y22{bottom:673.635000px;}
.y16c{bottom:673.995000px;}
.y1a5{bottom:674.565000px;}
.yf7{bottom:682.485000px;}
.y7e{bottom:683.565000px;}
.yc0{bottom:692.565000px;}
.y21{bottom:694.365000px;}
.y1a4{bottom:695.265000px;}
.y54{bottom:698.865000px;}
.y13b{bottom:701.025000px;}
.yf6{bottom:703.185000px;}
.y1b2{bottom:704.265000px;}
.y129{bottom:708.945000px;}
.y7d{bottom:713.265000px;}
.y20{bottom:715.065000px;}
.yd9{bottom:717.225000px;}
.yf5{bottom:723.885000px;}
.y1a3{bottom:724.965000px;}
.y53{bottom:728.565000px;}
.y128{bottom:729.645000px;}
.y13a{bottom:730.725000px;}
.y7c{bottom:733.965000px;}
.y1f{bottom:735.765000px;}
.yd8{bottom:737.925000px;}
.y1a2{bottom:745.665000px;}
.y127{bottom:750.345000px;}
.yf4{bottom:753.585000px;}
.y157{bottom:754.125000px;}
.ybf{bottom:754.665000px;}
.y1e{bottom:756.465000px;}
.y52{bottom:758.265000px;}
.yd7{bottom:758.625000px;}
.y7b{bottom:759.705000px;}
.y184{bottom:763.665000px;}
.y1a1{bottom:766.365000px;}
.y126{bottom:771.045000px;}
.y156{bottom:774.825000px;}
.ybe{bottom:775.365000px;}
.y1d{bottom:777.165000px;}
.yd6{bottom:779.325000px;}
.yf3{bottom:780.045000px;}
.y183{bottom:784.365000px;}
.y9e{bottom:785.265000px;}
.y1a0{bottom:787.065000px;}
.y51{bottom:787.965000px;}
.y125{bottom:791.745000px;}
.y1c5{bottom:793.365000px;}
.y155{bottom:795.525000px;}
.yd5{bottom:800.025000px;}
.ybd{bottom:805.065000px;}
.y1c{bottom:806.865000px;}
.y50{bottom:808.665000px;}
.y9d{bottom:810.825000px;}
.y124{bottom:812.445000px;}
.y182{bottom:814.065000px;}
.yee{bottom:816.045000px;}
.y154{bottom:816.225000px;}
.y19f{bottom:816.765000px;}
.yd4{bottom:820.725000px;}
.y1c4{bottom:823.065000px;}
.y1b1{bottom:825.765000px;}
.y4f{bottom:829.365000px;}
.y123{bottom:833.145000px;}
.ybc{bottom:834.765000px;}
.y1b{bottom:836.565000px;}
.y153{bottom:836.925000px;}
.y19e{bottom:837.465000px;}
.yd3{bottom:841.425000px;}
.y4e{bottom:850.065000px;}
.y1c3{bottom:852.765000px;}
.y122{bottom:853.845000px;}
.ybb{bottom:855.465000px;}
.y16b{bottom:857.625000px;}
.y19d{bottom:858.165000px;}
.y181{bottom:864.465000px;}
.y1a{bottom:866.265000px;}
.y152{bottom:866.625000px;}
.y4d{bottom:870.765000px;}
.yd2{bottom:871.125000px;}
.yba{bottom:876.165000px;}
.y1c2{bottom:882.465000px;}
.y121{bottom:883.545000px;}
.y9c{bottom:884.625000px;}
.y180{bottom:885.165000px;}
.y16a{bottom:887.325000px;}
.y19c{bottom:887.865000px;}
.y4c{bottom:891.465000px;}
.y7a{bottom:894.165000px;}
.y19{bottom:895.965000px;}
.y151{bottom:896.325000px;}
.yb9{bottom:896.865000px;}
.yd1{bottom:900.825000px;}
.y1c1{bottom:903.165000px;}
.y9b{bottom:905.325000px;}
.y17f{bottom:905.865000px;}
.yed{bottom:908.565000px;}
.y4b{bottom:912.165000px;}
.y120{bottom:913.110000px;}
.y79{bottom:914.910000px;}
.y139{bottom:915.810000px;}
.y169{bottom:917.070000px;}
.yd0{bottom:921.570000px;}
.y150{bottom:922.110000px;}
.y1c0{bottom:923.910000px;}
.y18{bottom:925.710000px;}
.y9a{bottom:926.070000px;}
.yb8{bottom:926.610000px;}
.y4a{bottom:932.910000px;}
.y78{bottom:935.610000px;}
.yec{bottom:938.310000px;}
.y138{bottom:941.550000px;}
.y11f{bottom:942.810000px;}
.y1bf{bottom:944.610000px;}
.y99{bottom:946.770000px;}
.ycf{bottom:947.310000px;}
.y49{bottom:953.610000px;}
.y17{bottom:955.410000px;}
.y77{bottom:956.310000px;}
.y19b{bottom:959.010000px;}
.y11e{bottom:963.510000px;}
.y17e{bottom:965.310000px;}
.y98{bottom:967.470000px;}
.yeb{bottom:968.010000px;}
.y48{bottom:974.310000px;}
.y76{bottom:977.010000px;}
.y16{bottom:985.110000px;}
.yb7{bottom:986.010000px;}
.y97{bottom:988.170000px;}
.y19a{bottom:988.710000px;}
.y111{bottom:990.150000px;}
.y47{bottom:995.010000px;}
.y75{bottom:997.710000px;}
.y17d{bottom:1006.710000px;}
.y199{bottom:1009.410000px;}
.yb6{bottom:1011.750000px;}
.y14{bottom:1014.810000px;}
.y46{bottom:1015.710000px;}
.y96{bottom:1017.870000px;}
.y74{bottom:1018.410000px;}
.y15{bottom:1020.750000px;}
.y17c{bottom:1027.410000px;}
.y45{bottom:1036.410000px;}
.y73{bottom:1039.110000px;}
.y13{bottom:1040.550000px;}
.yea{bottom:1044.150000px;}
.y95{bottom:1047.570000px;}
.y168{bottom:1048.110000px;}
.y44{bottom:1057.110000px;}
.y72{bottom:1059.810000px;}
.y167{bottom:1068.810000px;}
.y94{bottom:1073.310000px;}
.y43{bottom:1077.810000px;}
.y12{bottom:1079.250000px;}
.y71{bottom:1080.510000px;}
.y14f{bottom:1089.510000px;}
.y42{bottom:1098.510000px;}
.y70{bottom:1110.210000px;}
.y10{bottom:1117.950000px;}
.y41{bottom:1119.210000px;}
.y40{bottom:1139.910000px;}
.y1{bottom:1182.060000px;}
.ya{bottom:1193.400000px;}
.y4{bottom:1198.080000px;}
.y9{bottom:1208.880000px;}
.h11{height:4.140000px;}
.h6{height:19.620000px;}
.ha{height:28.080000px;}
.hf{height:28.260000px;}
.he{height:32.444297px;}
.h15{height:35.280000px;}
.hc{height:38.700000px;}
.hb{height:38.736000px;}
.hd{height:41.362031px;}
.h5{height:43.560000px;}
.h14{height:49.255313px;}
.h8{height:49.868086px;}
.h7{height:51.239531px;}
.h1c{height:51.996094px;}
.h9{height:55.275469px;}
.h10{height:59.343750px;}
.h4{height:60.082031px;}
.h2{height:60.120000px;}
.h3{height:61.734375px;}
.h16{height:67.614961px;}
.h17{height:69.876000px;}
.h12{height:77.994141px;}
.h13{height:78.660000px;}
.h19{height:78.840000px;}
.h1a{height:104.976000px;}
.h1b{height:117.000000px;}
.h18{height:165.630000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:37.620000px;}
.wd{width:46.440000px;}
.w18{width:77.616000px;}
.w8{width:84.990000px;}
.w3{width:101.376000px;}
.w1a{width:120.240000px;}
.w6{width:124.416000px;}
.w19{width:133.056000px;}
.w16{width:149.076000px;}
.w17{width:157.680000px;}
.w5{width:188.130000px;}
.w4{width:196.050000px;}
.w11{width:215.670000px;}
.w13{width:216.210000px;}
.w10{width:219.810000px;}
.wf{width:222.330000px;}
.w9{width:223.770000px;}
.we{width:235.110000px;}
.w12{width:245.550000px;}
.wb{width:279.930000px;}
.wa{width:286.095000px;}
.w2{width:618.450000px;}
.w14{width:678.885000px;}
.wc{width:892.979973px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.x2c{left:7.740000px;}
.xc{left:10.800000px;}
.xe{left:14.940000px;}
.x5{left:20.340000px;}
.x3{left:23.436000px;}
.x7{left:29.340000px;}
.xd{left:52.200000px;}
.x1{left:67.500000px;}
.x11{left:90.900000px;}
.xa{left:106.235987px;}
.x1b{left:111.095987px;}
.x37{left:115.055987px;}
.x3c{left:119.375987px;}
.x40{left:125.495987px;}
.x1d{left:135.575987px;}
.x44{left:145.476000px;}
.x33{left:173.909987px;}
.x23{left:175.709987px;}
.x12{left:184.185000px;}
.x16{left:190.469987px;}
.x3f{left:196.949987px;}
.x13{left:202.889987px;}
.x25{left:206.849987px;}
.x2a{left:216.389987px;}
.x30{left:242.669987px;}
.x43{left:250.049987px;}
.x31{left:251.129987px;}
.x49{left:259.229987px;}
.x2{left:270.435000px;}
.xf{left:275.970000px;}
.x45{left:295.275000px;}
.x1a{left:322.274987px;}
.x2e{left:323.535000px;}
.x35{left:333.254987px;}
.x19{left:342.434987px;}
.x22{left:344.774987px;}
.x38{left:382.394987px;}
.x41{left:384.734987px;}
.x18{left:387.614987px;}
.x3d{left:405.254987px;}
.x3b{left:416.594987px;}
.x17{left:446.474987px;}
.x8{left:451.155000px;}
.x46{left:453.675000px;}
.x36{left:499.784987px;}
.x29{left:512.744987px;}
.x47{left:532.005000px;}
.x21{left:547.664987px;}
.x32{left:557.744987px;}
.x10{left:562.065000px;}
.x34{left:563.504987px;}
.x2d{left:566.205000px;}
.x28{left:568.004987px;}
.x2f{left:569.805000px;}
.x42{left:575.744987px;}
.x2b{left:583.664987px;}
.x27{left:601.664987px;}
.x26{left:611.744987px;}
.x24{left:632.084987px;}
.x3e{left:656.744987px;}
.x39{left:662.549987px;}
.x48{left:665.790000px;}
.x3a{left:676.049987px;}
.x14{left:683.969973px;}
.x15{left:690.089987px;}
.x1e{left:712.049987px;}
.x1c{left:733.289987px;}
.x9{left:737.610000px;}
.x4{left:761.010000px;}
.x1f{left:781.169987px;}
.x20{left:785.669987px;}
.xb{left:807.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.198933pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.040320pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsa{letter-spacing:2.560000pt;}
.lsf{letter-spacing:5.120000pt;}
.ls7{letter-spacing:5.760000pt;}
.ls2{letter-spacing:23.680000pt;}
.ws7{word-spacing:-96.000000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws2{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws9{word-spacing:-10.679680pt;}
.wsa{word-spacing:-10.521067pt;}
.wsc{word-spacing:-10.400000pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-3.904000pt;}
._3{margin-left:-2.432000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.109333pt;}
._4{width:2.154667pt;}
._5{width:3.669333pt;}
._e{width:4.821333pt;}
._f{width:5.738667pt;}
._10{width:6.720000pt;}
._16{width:7.744000pt;}
._7{width:9.024000pt;}
._8{width:9.984000pt;}
._9{width:11.242667pt;}
._a{width:12.352000pt;}
._b{width:13.248000pt;}
._17{width:14.144000pt;}
._2{width:15.104000pt;}
._29{width:16.360960pt;}
._14{width:17.536000pt;}
._38{width:18.624000pt;}
._1e{width:20.352000pt;}
._11{width:21.504000pt;}
._c{width:23.104000pt;}
._d{width:24.064000pt;}
._15{width:25.472000pt;}
._1c{width:26.752000pt;}
._1d{width:27.722667pt;}
._13{width:29.888000pt;}
._12{width:30.784000pt;}
._2a{width:34.952960pt;}
._25{width:36.227840pt;}
._1a{width:38.976000pt;}
._1b{width:40.170667pt;}
._2c{width:47.462400pt;}
._2b{width:48.551680pt;}
._39{width:50.072320pt;}
._23{width:54.023040pt;}
._22{width:57.134080pt;}
._24{width:59.069440pt;}
._2f{width:71.424000pt;}
._37{width:72.426667pt;}
._30{width:74.108587pt;}
._27{width:84.737493pt;}
._26{width:85.629440pt;}
._36{width:92.800000pt;}
._31{width:106.505600pt;}
._32{width:158.881920pt;}
._28{width:177.320747pt;}
._34{width:503.274667pt;}
._2d{width:511.744000pt;}
._33{width:520.480000pt;}
._1f{width:528.160000pt;}
._35{width:552.224000pt;}
._21{width:657.824000pt;}
._20{width:663.786667pt;}
._2e{width:679.530667pt;}
._18{width:687.850667pt;}
._19{width:759.840000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.yb5{bottom:-18.720000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.y6{bottom:4.800000pt;}
.yb4{bottom:10.720000pt;}
.yf2{bottom:10.880000pt;}
.y10d{bottom:10.906667pt;}
.ye{bottom:11.200000pt;}
.y3e{bottom:11.360000pt;}
.y11{bottom:11.520000pt;}
.yf1{bottom:18.880000pt;}
.y3{bottom:19.520000pt;}
.y192{bottom:21.440000pt;}
.y7{bottom:21.600000pt;}
.y5{bottom:23.200000pt;}
.y189{bottom:26.240000pt;}
.y10c{bottom:26.266667pt;}
.y110{bottom:34.080000pt;}
.yf0{bottom:34.240000pt;}
.y118{bottom:34.720000pt;}
.y2{bottom:37.920000pt;}
.y10b{bottom:41.626667pt;}
.y18f{bottom:44.800000pt;}
.y10f{bottom:49.440000pt;}
.y196{bottom:49.466667pt;}
.yef{bottom:49.600000pt;}
.y195{bottom:49.626667pt;}
.y117{bottom:50.080000pt;}
.yc{bottom:50.400000pt;}
.y191{bottom:52.800000pt;}
.y11d{bottom:57.440000pt;}
.y197{bottom:57.466667pt;}
.y18e{bottom:60.160000pt;}
.yb{bottom:64.160000pt;}
.y116{bottom:65.440000pt;}
.y190{bottom:68.160000pt;}
.y11c{bottom:72.800000pt;}
.y194{bottom:72.826667pt;}
.y18b{bottom:72.840000pt;}
.y115{bottom:80.800000pt;}
.y18d{bottom:83.520000pt;}
.y11b{bottom:96.160000pt;}
.y3c{bottom:97.280000pt;}
.y10e{bottom:98.560000pt;}
.y137{bottom:99.200000pt;}
.y6f{bottom:100.320000pt;}
.y3b{bottom:101.920000pt;}
.y1d6{bottom:103.520000pt;}
.y114{bottom:104.160000pt;}
.yce{bottom:104.320000pt;}
.y17b{bottom:105.920000pt;}
.y14e{bottom:106.400000pt;}
.yb3{bottom:108.800000pt;}
.y11a{bottom:111.520000pt;}
.y3a{bottom:112.960000pt;}
.y93{bottom:113.440000pt;}
.y198{bottom:114.080000pt;}
.y1b0{bottom:114.400000pt;}
.y166{bottom:115.680000pt;}
.y136{bottom:117.600000pt;}
.y6e{bottom:118.720000pt;}
.y113{bottom:119.520000pt;}
.y1be{bottom:120.320000pt;}
.y1d5{bottom:121.920000pt;}
.y17a{bottom:124.320000pt;}
.yb2{bottom:127.200000pt;}
.ye9{bottom:130.080000pt;}
.ycd{bottom:130.720000pt;}
.y92{bottom:131.840000pt;}
.y14d{bottom:132.640000pt;}
.y1af{bottom:132.800000pt;}
.y119{bottom:134.720000pt;}
.y112{bottom:134.880000pt;}
.y135{bottom:136.000000pt;}
.y6d{bottom:137.120000pt;}
.y193{bottom:137.600000pt;}
.y165{bottom:142.080000pt;}
.y179{bottom:142.720000pt;}
.y39{bottom:143.520000pt;}
.yb1{bottom:145.600000pt;}
.y1bd{bottom:146.720000pt;}
.y1d4{bottom:148.320000pt;}
.ye8{bottom:148.480000pt;}
.y91{bottom:150.240000pt;}
.y134{bottom:154.400000pt;}
.y6c{bottom:155.520000pt;}
.ycc{bottom:157.120000pt;}
.y1ae{bottom:159.200000pt;}
.y164{bottom:160.480000pt;}
.y38{bottom:161.920000pt;}
.yb0{bottom:164.000000pt;}
.y1d3{bottom:166.720000pt;}
.y90{bottom:168.640000pt;}
.y10a{bottom:169.120000pt;}
.y133{bottom:172.800000pt;}
.y1bc{bottom:173.120000pt;}
.y6b{bottom:173.920000pt;}
.ye7{bottom:174.720000pt;}
.ycb{bottom:175.546667pt;}
.y37{bottom:180.346667pt;}
.y1ad{bottom:185.626667pt;}
.y163{bottom:186.746667pt;}
.y8f{bottom:187.066667pt;}
.yaf{bottom:190.426667pt;}
.y132{bottom:191.226667pt;}
.y6a{bottom:192.346667pt;}
.y1d2{bottom:193.146667pt;}
.y178{bottom:195.546667pt;}
.yca{bottom:198.426667pt;}
.y36{bottom:198.746667pt;}
.y1bb{bottom:199.546667pt;}
.y8e{bottom:205.466667pt;}
.y131{bottom:209.626667pt;}
.y1d1{bottom:211.546667pt;}
.y1ac{bottom:212.026667pt;}
.yae{bottom:216.826667pt;}
.y1ba{bottom:217.946667pt;}
.y69{bottom:218.746667pt;}
.y177{bottom:221.946667pt;}
.y14c{bottom:222.266667pt;}
.y8d{bottom:223.866667pt;}
.y35{bottom:225.146667pt;}
.y130{bottom:228.026667pt;}
.y18c{bottom:231.546667pt;}
.y1b9{bottom:236.346667pt;}
.y68{bottom:237.146667pt;}
.y1d0{bottom:237.946667pt;}
.y14b{bottom:240.666667pt;}
.y8c{bottom:242.266667pt;}
.y109{bottom:243.386667pt;}
.y12f{bottom:246.426667pt;}
.y176{bottom:248.346667pt;}
.ye6{bottom:250.266667pt;}
.y34{bottom:251.546667pt;}
.y1b8{bottom:254.746667pt;}
.y67{bottom:255.546667pt;}
.y14a{bottom:259.066667pt;}
.y8b{bottom:260.666667pt;}
.y108{bottom:261.786667pt;}
.y1cf{bottom:264.346667pt;}
.y12e{bottom:264.826667pt;}
.ye5{bottom:268.666667pt;}
.y1b7{bottom:273.146667pt;}
.y66{bottom:273.946667pt;}
.y175{bottom:274.746667pt;}
.y149{bottom:277.466667pt;}
.y33{bottom:277.946667pt;}
.y107{bottom:280.186667pt;}
.y8a{bottom:287.066667pt;}
.y1ce{bottom:290.746667pt;}
.y12d{bottom:291.226667pt;}
.y65{bottom:292.346667pt;}
.y106{bottom:298.586667pt;}
.y1b6{bottom:299.546667pt;}
.y174{bottom:301.146667pt;}
.y148{bottom:303.866667pt;}
.y32{bottom:304.346667pt;}
.ye4{bottom:305.466667pt;}
.y89{bottom:309.946667pt;}
.y64{bottom:310.746667pt;}
.y12c{bottom:314.106667pt;}
.yad{bottom:316.346667pt;}
.y1cd{bottom:317.146667pt;}
.yc9{bottom:317.946667pt;}
.y162{bottom:318.266667pt;}
.y31{bottom:322.746667pt;}
.ye3{bottom:323.866667pt;}
.y105{bottom:324.986667pt;}
.y173{bottom:327.546667pt;}
.y63{bottom:329.146667pt;}
.y147{bottom:330.266667pt;}
.yac{bottom:334.746667pt;}
.y18a{bottom:336.186667pt;}
.yc8{bottom:336.346667pt;}
.y161{bottom:336.666667pt;}
.y30{bottom:341.146667pt;}
.ye2{bottom:342.266667pt;}
.y104{bottom:343.386667pt;}
.y1cc{bottom:343.546667pt;}
.y62{bottom:347.546667pt;}
.yab{bottom:353.146667pt;}
.y172{bottom:353.946667pt;}
.yc7{bottom:354.746667pt;}
.y160{bottom:355.066667pt;}
.y146{bottom:356.666667pt;}
.y2f{bottom:359.546667pt;}
.ye1{bottom:360.666667pt;}
.y103{bottom:361.786667pt;}
.y61{bottom:365.946667pt;}
.y1cb{bottom:369.946667pt;}
.yaa{bottom:371.546667pt;}
.yc6{bottom:373.146667pt;}
.y15f{bottom:373.466667pt;}
.y171{bottom:376.826667pt;}
.y2e{bottom:377.946667pt;}
.ye0{bottom:379.066667pt;}
.y145{bottom:383.066667pt;}
.y1ab{bottom:383.546667pt;}
.y60{bottom:384.346667pt;}
.y102{bottom:388.226667pt;}
.ya9{bottom:389.986667pt;}
.yc5{bottom:391.586667pt;}
.y2d{bottom:396.386667pt;}
.y1b5{bottom:399.586667pt;}
.y15e{bottom:399.906667pt;}
.y5f{bottom:402.786667pt;}
.ydf{bottom:405.506667pt;}
.y101{bottom:406.626667pt;}
.y88{bottom:407.586667pt;}
.ya8{bottom:408.386667pt;}
.y144{bottom:409.506667pt;}
.yc4{bottom:409.986667pt;}
.y2c{bottom:414.786667pt;}
.y1b4{bottom:417.986667pt;}
.y5e{bottom:421.186667pt;}
.y100{bottom:425.026667pt;}
.y87{bottom:425.986667pt;}
.y15d{bottom:426.306667pt;}
.ya7{bottom:426.786667pt;}
.yc3{bottom:428.386667pt;}
.y188{bottom:430.146667pt;}
.yde{bottom:431.906667pt;}
.y2b{bottom:433.186667pt;}
.y143{bottom:435.906667pt;}
.y1aa{bottom:436.386667pt;}
.y5d{bottom:439.586667pt;}
.y1ca{bottom:441.186667pt;}
.yff{bottom:443.426667pt;}
.y86{bottom:444.386667pt;}
.y15c{bottom:444.706667pt;}
.ya6{bottom:445.186667pt;}
.ydd{bottom:450.306667pt;}
.y2a{bottom:451.586667pt;}
.yc2{bottom:454.786667pt;}
.y5c{bottom:457.986667pt;}
.y142{bottom:462.306667pt;}
.y85{bottom:462.786667pt;}
.ya5{bottom:463.586667pt;}
.y1c9{bottom:467.586667pt;}
.y170{bottom:468.386667pt;}
.ydc{bottom:468.706667pt;}
.yfe{bottom:469.826667pt;}
.y29{bottom:469.986667pt;}
.y15b{bottom:471.106667pt;}
.y1a9{bottom:473.186667pt;}
.y12b{bottom:475.746667pt;}
.y5b{bottom:476.386667pt;}
.y84{bottom:481.186667pt;}
.ya4{bottom:481.986667pt;}
.y16f{bottom:486.786667pt;}
.ydb{bottom:487.106667pt;}
.yfd{bottom:488.226667pt;}
.y28{bottom:488.386667pt;}
.y141{bottom:488.706667pt;}
.y15a{bottom:489.506667pt;}
.y1a8{bottom:491.586667pt;}
.y1c8{bottom:493.986667pt;}
.y12a{bottom:498.626667pt;}
.y83{bottom:499.586667pt;}
.ya3{bottom:500.386667pt;}
.y187{bottom:500.866667pt;}
.y5a{bottom:502.786667pt;}
.yc1{bottom:504.066667pt;}
.y16e{bottom:505.186667pt;}
.y27{bottom:506.786667pt;}
.y159{bottom:507.906667pt;}
.yda{bottom:509.986667pt;}
.yfc{bottom:514.626667pt;}
.y140{bottom:515.106667pt;}
.y82{bottom:517.986667pt;}
.y1c7{bottom:520.386667pt;}
.y59{bottom:521.186667pt;}
.y26{bottom:525.186667pt;}
.ya2{bottom:526.786667pt;}
.y158{bottom:530.786667pt;}
.y16d{bottom:531.586667pt;}
.yfb{bottom:533.026667pt;}
.y81{bottom:536.386667pt;}
.y58{bottom:539.586667pt;}
.y13f{bottom:541.506667pt;}
.y25{bottom:543.586667pt;}
.y186{bottom:544.386667pt;}
.y1c6{bottom:546.786667pt;}
.y3f{bottom:548.706667pt;}
.y3d{bottom:548.866667pt;}
.yfa{bottom:551.426667pt;}
.ya1{bottom:553.186667pt;}
.y1a7{bottom:554.786667pt;}
.y57{bottom:557.986667pt;}
.y13e{bottom:559.906667pt;}
.y24{bottom:561.986667pt;}
.y80{bottom:562.786667pt;}
.yf{bottom:564.866667pt;}
.yd{bottom:565.026667pt;}
.yf9{bottom:569.826667pt;}
.y1b3{bottom:570.786667pt;}
.ya0{bottom:571.586667pt;}
.y1a6{bottom:573.186667pt;}
.y56{bottom:576.386667pt;}
.y13d{bottom:578.306667pt;}
.y23{bottom:580.386667pt;}
.y7f{bottom:581.186667pt;}
.yf8{bottom:588.226667pt;}
.y185{bottom:589.186667pt;}
.y9f{bottom:594.466667pt;}
.y55{bottom:594.786667pt;}
.y13c{bottom:596.706667pt;}
.y22{bottom:598.786667pt;}
.y16c{bottom:599.106667pt;}
.y1a5{bottom:599.613333pt;}
.yf7{bottom:606.653333pt;}
.y7e{bottom:607.613333pt;}
.yc0{bottom:615.613333pt;}
.y21{bottom:617.213333pt;}
.y1a4{bottom:618.013333pt;}
.y54{bottom:621.213333pt;}
.y13b{bottom:623.133333pt;}
.yf6{bottom:625.053333pt;}
.y1b2{bottom:626.013333pt;}
.y129{bottom:630.173333pt;}
.y7d{bottom:634.013333pt;}
.y20{bottom:635.613333pt;}
.yd9{bottom:637.533333pt;}
.yf5{bottom:643.453333pt;}
.y1a3{bottom:644.413333pt;}
.y53{bottom:647.613333pt;}
.y128{bottom:648.573333pt;}
.y13a{bottom:649.533333pt;}
.y7c{bottom:652.413333pt;}
.y1f{bottom:654.013333pt;}
.yd8{bottom:655.933333pt;}
.y1a2{bottom:662.813333pt;}
.y127{bottom:666.973333pt;}
.yf4{bottom:669.853333pt;}
.y157{bottom:670.333333pt;}
.ybf{bottom:670.813333pt;}
.y1e{bottom:672.413333pt;}
.y52{bottom:674.013333pt;}
.yd7{bottom:674.333333pt;}
.y7b{bottom:675.293333pt;}
.y184{bottom:678.813333pt;}
.y1a1{bottom:681.213333pt;}
.y126{bottom:685.373333pt;}
.y156{bottom:688.733333pt;}
.ybe{bottom:689.213333pt;}
.y1d{bottom:690.813333pt;}
.yd6{bottom:692.733333pt;}
.yf3{bottom:693.373333pt;}
.y183{bottom:697.213333pt;}
.y9e{bottom:698.013333pt;}
.y1a0{bottom:699.613333pt;}
.y51{bottom:700.413333pt;}
.y125{bottom:703.773333pt;}
.y1c5{bottom:705.213333pt;}
.y155{bottom:707.133333pt;}
.yd5{bottom:711.133333pt;}
.ybd{bottom:715.613333pt;}
.y1c{bottom:717.213333pt;}
.y50{bottom:718.813333pt;}
.y9d{bottom:720.733333pt;}
.y124{bottom:722.173333pt;}
.y182{bottom:723.613333pt;}
.yee{bottom:725.373333pt;}
.y154{bottom:725.533333pt;}
.y19f{bottom:726.013333pt;}
.yd4{bottom:729.533333pt;}
.y1c4{bottom:731.613333pt;}
.y1b1{bottom:734.013333pt;}
.y4f{bottom:737.213333pt;}
.y123{bottom:740.573333pt;}
.ybc{bottom:742.013333pt;}
.y1b{bottom:743.613333pt;}
.y153{bottom:743.933333pt;}
.y19e{bottom:744.413333pt;}
.yd3{bottom:747.933333pt;}
.y4e{bottom:755.613333pt;}
.y1c3{bottom:758.013333pt;}
.y122{bottom:758.973333pt;}
.ybb{bottom:760.413333pt;}
.y16b{bottom:762.333333pt;}
.y19d{bottom:762.813333pt;}
.y181{bottom:768.413333pt;}
.y1a{bottom:770.013333pt;}
.y152{bottom:770.333333pt;}
.y4d{bottom:774.013333pt;}
.yd2{bottom:774.333333pt;}
.yba{bottom:778.813333pt;}
.y1c2{bottom:784.413333pt;}
.y121{bottom:785.373333pt;}
.y9c{bottom:786.333333pt;}
.y180{bottom:786.813333pt;}
.y16a{bottom:788.733333pt;}
.y19c{bottom:789.213333pt;}
.y4c{bottom:792.413333pt;}
.y7a{bottom:794.813333pt;}
.y19{bottom:796.413333pt;}
.y151{bottom:796.733333pt;}
.yb9{bottom:797.213333pt;}
.yd1{bottom:800.733333pt;}
.y1c1{bottom:802.813333pt;}
.y9b{bottom:804.733333pt;}
.y17f{bottom:805.213333pt;}
.yed{bottom:807.613333pt;}
.y4b{bottom:810.813333pt;}
.y120{bottom:811.653333pt;}
.y79{bottom:813.253333pt;}
.y139{bottom:814.053333pt;}
.y169{bottom:815.173333pt;}
.yd0{bottom:819.173333pt;}
.y150{bottom:819.653333pt;}
.y1c0{bottom:821.253333pt;}
.y18{bottom:822.853333pt;}
.y9a{bottom:823.173333pt;}
.yb8{bottom:823.653333pt;}
.y4a{bottom:829.253333pt;}
.y78{bottom:831.653333pt;}
.yec{bottom:834.053333pt;}
.y138{bottom:836.933333pt;}
.y11f{bottom:838.053333pt;}
.y1bf{bottom:839.653333pt;}
.y99{bottom:841.573333pt;}
.ycf{bottom:842.053333pt;}
.y49{bottom:847.653333pt;}
.y17{bottom:849.253333pt;}
.y77{bottom:850.053333pt;}
.y19b{bottom:852.453333pt;}
.y11e{bottom:856.453333pt;}
.y17e{bottom:858.053333pt;}
.y98{bottom:859.973333pt;}
.yeb{bottom:860.453333pt;}
.y48{bottom:866.053333pt;}
.y76{bottom:868.453333pt;}
.y16{bottom:875.653333pt;}
.yb7{bottom:876.453333pt;}
.y97{bottom:878.373333pt;}
.y19a{bottom:878.853333pt;}
.y111{bottom:880.133333pt;}
.y47{bottom:884.453333pt;}
.y75{bottom:886.853333pt;}
.y17d{bottom:894.853333pt;}
.y199{bottom:897.253333pt;}
.yb6{bottom:899.333333pt;}
.y14{bottom:902.053333pt;}
.y46{bottom:902.853333pt;}
.y96{bottom:904.773333pt;}
.y74{bottom:905.253333pt;}
.y15{bottom:907.333333pt;}
.y17c{bottom:913.253333pt;}
.y45{bottom:921.253333pt;}
.y73{bottom:923.653333pt;}
.y13{bottom:924.933333pt;}
.yea{bottom:928.133333pt;}
.y95{bottom:931.173333pt;}
.y168{bottom:931.653333pt;}
.y44{bottom:939.653333pt;}
.y72{bottom:942.053333pt;}
.y167{bottom:950.053333pt;}
.y94{bottom:954.053333pt;}
.y43{bottom:958.053333pt;}
.y12{bottom:959.333333pt;}
.y71{bottom:960.453333pt;}
.y14f{bottom:968.453333pt;}
.y42{bottom:976.453333pt;}
.y70{bottom:986.853333pt;}
.y10{bottom:993.733333pt;}
.y41{bottom:994.853333pt;}
.y40{bottom:1013.253333pt;}
.y1{bottom:1050.720000pt;}
.ya{bottom:1060.800000pt;}
.y4{bottom:1064.960000pt;}
.y9{bottom:1074.560000pt;}
.h11{height:3.680000pt;}
.h6{height:17.440000pt;}
.ha{height:24.960000pt;}
.hf{height:25.120000pt;}
.he{height:28.839375pt;}
.h15{height:31.360000pt;}
.hc{height:34.400000pt;}
.hb{height:34.432000pt;}
.hd{height:36.766250pt;}
.h5{height:38.720000pt;}
.h14{height:43.782500pt;}
.h8{height:44.327188pt;}
.h7{height:45.546250pt;}
.h1c{height:46.218750pt;}
.h9{height:49.133750pt;}
.h10{height:52.750000pt;}
.h4{height:53.406250pt;}
.h2{height:53.440000pt;}
.h3{height:54.875000pt;}
.h16{height:60.102187pt;}
.h17{height:62.112000pt;}
.h12{height:69.328125pt;}
.h13{height:69.920000pt;}
.h19{height:70.080000pt;}
.h1a{height:93.312000pt;}
.h1b{height:104.000000pt;}
.h18{height:147.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:33.440000pt;}
.wd{width:41.280000pt;}
.w18{width:68.992000pt;}
.w8{width:75.546667pt;}
.w3{width:90.112000pt;}
.w1a{width:106.880000pt;}
.w6{width:110.592000pt;}
.w19{width:118.272000pt;}
.w16{width:132.512000pt;}
.w17{width:140.160000pt;}
.w5{width:167.226667pt;}
.w4{width:174.266667pt;}
.w11{width:191.706667pt;}
.w13{width:192.186667pt;}
.w10{width:195.386667pt;}
.wf{width:197.626667pt;}
.w9{width:198.906667pt;}
.we{width:208.986667pt;}
.w12{width:218.266667pt;}
.wb{width:248.826667pt;}
.wa{width:254.306667pt;}
.w2{width:549.733333pt;}
.w14{width:603.453333pt;}
.wc{width:793.759976pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.x2c{left:6.880000pt;}
.xc{left:9.600000pt;}
.xe{left:13.280000pt;}
.x5{left:18.080000pt;}
.x3{left:20.832000pt;}
.x7{left:26.080000pt;}
.xd{left:46.400000pt;}
.x1{left:60.000000pt;}
.x11{left:80.800000pt;}
.xa{left:94.431988pt;}
.x1b{left:98.751988pt;}
.x37{left:102.271988pt;}
.x3c{left:106.111988pt;}
.x40{left:111.551988pt;}
.x1d{left:120.511988pt;}
.x44{left:129.312000pt;}
.x33{left:154.586655pt;}
.x23{left:156.186655pt;}
.x12{left:163.720000pt;}
.x16{left:169.306655pt;}
.x3f{left:175.066655pt;}
.x13{left:180.346655pt;}
.x25{left:183.866655pt;}
.x2a{left:192.346655pt;}
.x30{left:215.706655pt;}
.x43{left:222.266655pt;}
.x31{left:223.226655pt;}
.x49{left:230.426655pt;}
.x2{left:240.386667pt;}
.xf{left:245.306667pt;}
.x45{left:262.466667pt;}
.x1a{left:286.466655pt;}
.x2e{left:287.586667pt;}
.x35{left:296.226655pt;}
.x19{left:304.386655pt;}
.x22{left:306.466655pt;}
.x38{left:339.906655pt;}
.x41{left:341.986655pt;}
.x18{left:344.546655pt;}
.x3d{left:360.226655pt;}
.x3b{left:370.306655pt;}
.x17{left:396.866655pt;}
.x8{left:401.026667pt;}
.x46{left:403.266667pt;}
.x36{left:444.253322pt;}
.x29{left:455.773322pt;}
.x47{left:472.893333pt;}
.x21{left:486.813322pt;}
.x32{left:495.773322pt;}
.x10{left:499.613333pt;}
.x34{left:500.893322pt;}
.x2d{left:503.293333pt;}
.x28{left:504.893322pt;}
.x2f{left:506.493333pt;}
.x42{left:511.773322pt;}
.x2b{left:518.813322pt;}
.x27{left:534.813322pt;}
.x26{left:543.773322pt;}
.x24{left:561.853322pt;}
.x3e{left:583.773322pt;}
.x39{left:588.933322pt;}
.x48{left:591.813333pt;}
.x3a{left:600.933322pt;}
.x14{left:607.973310pt;}
.x15{left:613.413322pt;}
.x1e{left:632.933322pt;}
.x1c{left:651.813322pt;}
.x9{left:655.653333pt;}
.x4{left:676.453333pt;}
.x1f{left:694.373322pt;}
.x20{left:698.373322pt;}
.xb{left:718.213333pt;}
}




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