
    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_85f6ca3ae9e174841849f143.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_530426250337ac3717b1447e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5365feeeba90cfeb412b3ec7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8a88900d34e7aa85b0e50d90.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_2a1854aea0ea13319da53037.woff')format("woff");}.ff6{font-family:ff6;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_87baf20d335cdea7804b7c11.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fb11a4618c09135d550994da.woff')format("woff");}.ff8{font-family:ff8;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-69.120000px;}
.v1{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.106800px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:0.460200px;}
.ls11{letter-spacing:1.080000px;}
.ls0{letter-spacing:11.700000px;}
.ls13{letter-spacing:16.506720px;}
.ls5{letter-spacing:29.700000px;}
.ls12{letter-spacing:46.002720px;}
.ls9{letter-spacing:52.740000px;}
.ls4{letter-spacing:64.002720px;}
.lsb{letter-spacing:159.300000px;}
.ls8{letter-spacing:200.340000px;}
.lsd{letter-spacing:201.036000px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.020000px;}
.ws5{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.093600px;}
.ws2{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.833200px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-2.134800px;}
._2{margin-left:-1.008000px;}
._0{width:1.195200px;}
._1{width:2.985600px;}
._b{width:4.615920px;}
._6{width:6.020400px;}
._5{width:7.111440px;}
._7{width:8.724960px;}
._11{width:10.159200px;}
._3{width:11.234880px;}
._4{width:12.373920px;}
._10{width:13.780800px;}
._9{width:16.613280px;}
._a{width:17.644800px;}
._16{width:18.705120px;}
._f{width:19.712640px;}
._e{width:20.788560px;}
._12{width:22.365840px;}
._15{width:23.906880px;}
._13{width:24.950160px;}
._14{width:26.232480px;}
._d{width:27.668880px;}
._c{width:28.684800px;}
._17{width:29.804400px;}
._8{width:201.036000px;}
._19{width:456.627360px;}
._18{width:716.455920px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y147{bottom:-5.040000px;}
.y170{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.ye8{bottom:3.240000px;}
.yaf{bottom:3.420000px;}
.yb5{bottom:3.600000px;}
.yb3{bottom:3.780000px;}
.yb1{bottom:3.825000px;}
.yad{bottom:12.060000px;}
.y160{bottom:12.420000px;}
.ydb{bottom:20.520000px;}
.yae{bottom:20.700000px;}
.y163{bottom:20.880000px;}
.y161{bottom:21.060000px;}
.y5{bottom:35.640000px;}
.y4{bottom:55.260000px;}
.yc0{bottom:111.276000px;}
.ya7{bottom:114.156000px;}
.y11b{bottom:118.296000px;}
.y7c{bottom:119.196000px;}
.y15e{bottom:121.356000px;}
.y192{bottom:122.796000px;}
.y9b{bottom:123.156000px;}
.ya1{bottom:123.516000px;}
.y40{bottom:124.056000px;}
.yf0{bottom:127.296000px;}
.ybf{bottom:128.376000px;}
.ya6{bottom:131.256000px;}
.y14a{bottom:131.436000px;}
.y11a{bottom:135.576000px;}
.y7b{bottom:136.476000px;}
.y15d{bottom:138.456000px;}
.y191{bottom:140.076000px;}
.y9a{bottom:140.436000px;}
.ya0{bottom:140.796000px;}
.y3f{bottom:141.336000px;}
.yef{bottom:144.576000px;}
.ybe{bottom:146.016000px;}
.ya5{bottom:148.536000px;}
.y119{bottom:152.850000px;}
.y149{bottom:153.210000px;}
.y7a{bottom:153.390000px;}
.y15c{bottom:155.730000px;}
.y190{bottom:157.350000px;}
.y9f{bottom:157.710000px;}
.y99{bottom:158.070000px;}
.y3e{bottom:158.430000px;}
.yee{bottom:161.850000px;}
.ybd{bottom:163.290000px;}
.ya4{bottom:165.450000px;}
.y118{bottom:170.130000px;}
.y79{bottom:171.030000px;}
.y15b{bottom:173.010000px;}
.y18f{bottom:174.270000px;}
.y148{bottom:174.990000px;}
.y98{bottom:175.350000px;}
.y3d{bottom:175.710000px;}
.yed{bottom:178.590000px;}
.ya3{bottom:179.490000px;}
.ybc{bottom:180.570000px;}
.y117{bottom:186.870000px;}
.y78{bottom:188.310000px;}
.y15a{bottom:189.930000px;}
.y18e{bottom:191.730000px;}
.y97{bottom:192.630000px;}
.y3c{bottom:192.990000px;}
.y146{bottom:196.770000px;}
.ybb{bottom:197.850000px;}
.yec{bottom:200.370000px;}
.y77{bottom:205.590000px;}
.y159{bottom:207.570000px;}
.y116{bottom:208.650000px;}
.y18d{bottom:209.010000px;}
.y96{bottom:209.730000px;}
.y3b{bottom:210.270000px;}
.yba{bottom:215.130000px;}
.y145{bottom:218.370000px;}
.yeb{bottom:222.150000px;}
.y76{bottom:222.690000px;}
.y158{bottom:224.850000px;}
.y18c{bottom:226.290000px;}
.y95{bottom:227.010000px;}
.y3a{bottom:227.550000px;}
.y115{bottom:230.430000px;}
.yb9{bottom:232.230000px;}
.y157{bottom:238.350000px;}
.y75{bottom:239.970000px;}
.y144{bottom:242.850000px;}
.y18b{bottom:243.570000px;}
.yea{bottom:243.930000px;}
.y94{bottom:244.290000px;}
.y39{bottom:244.830000px;}
.yb8{bottom:249.510000px;}
.y114{bottom:252.210000px;}
.y74{bottom:257.250000px;}
.y143{bottom:260.130000px;}
.y18a{bottom:260.850000px;}
.y93{bottom:261.210000px;}
.y9e{bottom:261.570000px;}
.y38{bottom:261.930000px;}
.ye9{bottom:265.710000px;}
.yb7{bottom:266.430000px;}
.y113{bottom:273.990000px;}
.y73{bottom:274.170000px;}
.y142{bottom:277.230000px;}
.y189{bottom:278.130000px;}
.y92{bottom:278.850000px;}
.y37{bottom:279.210000px;}
.ye7{bottom:287.490000px;}
.yb6{bottom:288.210000px;}
.y72{bottom:291.810000px;}
.y141{bottom:294.510000px;}
.y188{bottom:295.230000px;}
.y91{bottom:296.130000px;}
.y36{bottom:296.490000px;}
.y112{bottom:298.290000px;}
.y71{bottom:308.910000px;}
.yb4{bottom:309.990000px;}
.y140{bottom:311.790000px;}
.y187{bottom:312.510000px;}
.y90{bottom:313.230000px;}
.y35{bottom:313.770000px;}
.y111{bottom:315.570000px;}
.y70{bottom:326.190000px;}
.ye6{bottom:328.710000px;}
.y13f{bottom:329.070000px;}
.y186{bottom:329.790000px;}
.y8f{bottom:330.510000px;}
.y34{bottom:331.050000px;}
.yb2{bottom:331.590000px;}
.y110{bottom:332.850000px;}
.y6f{bottom:343.470000px;}
.ye5{bottom:346.350000px;}
.y185{bottom:347.070000px;}
.y8e{bottom:347.790000px;}
.y33{bottom:347.970000px;}
.y10f{bottom:349.770000px;}
.yb0{bottom:353.370000px;}
.y6e{bottom:360.795000px;}
.ye4{bottom:363.495000px;}
.y13e{bottom:363.675000px;}
.y184{bottom:364.395000px;}
.y8d{bottom:365.115000px;}
.y32{bottom:365.475000px;}
.y10e{bottom:367.275000px;}
.yac{bottom:375.195000px;}
.y6d{bottom:378.075000px;}
.y13d{bottom:380.415000px;}
.ye3{bottom:380.775000px;}
.y183{bottom:381.495000px;}
.y8c{bottom:382.395000px;}
.y31{bottom:382.755000px;}
.y10d{bottom:384.555000px;}
.y6c{bottom:395.355000px;}
.ye2{bottom:398.055000px;}
.y182{bottom:398.415000px;}
.y8b{bottom:399.675000px;}
.y30{bottom:400.035000px;}
.y10c{bottom:401.835000px;}
.y13c{bottom:402.195000px;}
.y6b{bottom:412.455000px;}
.ye1{bottom:415.335000px;}
.y181{bottom:415.695000px;}
.y8a{bottom:416.775000px;}
.y2f{bottom:417.315000px;}
.y10b{bottom:419.115000px;}
.y13b{bottom:423.975000px;}
.y6a{bottom:429.735000px;}
.ye0{bottom:432.255000px;}
.y180{bottom:433.335000px;}
.yab{bottom:433.695000px;}
.y89{bottom:434.055000px;}
.y2e{bottom:434.595000px;}
.y10a{bottom:436.395000px;}
.y13a{bottom:445.755000px;}
.y69{bottom:447.015000px;}
.y17f{bottom:450.615000px;}
.y88{bottom:451.335000px;}
.y2d{bottom:451.695000px;}
.y109{bottom:453.495000px;}
.ydf{bottom:454.035000px;}
.y68{bottom:463.935000px;}
.y139{bottom:467.535000px;}
.y17e{bottom:467.895000px;}
.y9d{bottom:468.255000px;}
.y87{bottom:468.615000px;}
.y2c{bottom:468.975000px;}
.y108{bottom:470.775000px;}
.yde{bottom:475.635000px;}
.y67{bottom:481.575000px;}
.y17d{bottom:484.635000px;}
.y86{bottom:485.895000px;}
.y2b{bottom:486.255000px;}
.y107{bottom:487.695000px;}
.y138{bottom:491.835000px;}
.ydd{bottom:497.415000px;}
.y66{bottom:498.855000px;}
.yaa{bottom:502.635000px;}
.y85{bottom:502.995000px;}
.y2a{bottom:503.535000px;}
.y17c{bottom:506.415000px;}
.y137{bottom:509.115000px;}
.y106{bottom:509.475000px;}
.y65{bottom:517.035000px;}
.ydc{bottom:519.195000px;}
.y84{bottom:520.275000px;}
.y29{bottom:520.455000px;}
.y136{bottom:526.395000px;}
.y17b{bottom:528.195000px;}
.y105{bottom:531.255000px;}
.y64{bottom:534.315000px;}
.y83{bottom:537.555000px;}
.y28{bottom:538.095000px;}
.yda{bottom:540.975000px;}
.y135{bottom:543.495000px;}
.y17a{bottom:549.975000px;}
.y63{bottom:552.675000px;}
.y104{bottom:553.035000px;}
.y82{bottom:554.835000px;}
.y27{bottom:555.195000px;}
.y134{bottom:560.775000px;}
.y62{bottom:571.035000px;}
.ya9{bottom:571.755000px;}
.y81{bottom:572.115000px;}
.y26{bottom:572.475000px;}
.y179{bottom:574.275000px;}
.y103{bottom:574.635000px;}
.y133{bottom:578.055000px;}
.y61{bottom:588.315000px;}
.y80{bottom:589.395000px;}
.y25{bottom:589.755000px;}
.y178{bottom:591.555000px;}
.y132{bottom:595.335000px;}
.y102{bottom:599.115000px;}
.yd9{bottom:599.475000px;}
.y60{bottom:606.135000px;}
.y7f{bottom:606.495000px;}
.y24{bottom:607.035000px;}
.y177{bottom:608.835000px;}
.y131{bottom:612.255000px;}
.y101{bottom:616.425000px;}
.yd8{bottom:617.145000px;}
.y5f{bottom:623.805000px;}
.y23{bottom:623.985000px;}
.y176{bottom:626.145000px;}
.y130{bottom:629.925000px;}
.y100{bottom:633.525000px;}
.yd7{bottom:634.425000px;}
.y5e{bottom:641.085000px;}
.y22{bottom:641.625000px;}
.y175{bottom:643.065000px;}
.y12f{bottom:647.025000px;}
.yff{bottom:650.445000px;}
.yd6{bottom:651.525000px;}
.ya8{bottom:658.005000px;}
.y5d{bottom:658.365000px;}
.y21{bottom:658.725000px;}
.y174{bottom:660.525000px;}
.y12e{bottom:664.305000px;}
.yfe{bottom:668.085000px;}
.yd5{bottom:668.805000px;}
.y5c{bottom:675.645000px;}
.y20{bottom:676.005000px;}
.y173{bottom:677.805000px;}
.y12d{bottom:681.585000px;}
.yfd{bottom:685.365000px;}
.yd4{bottom:686.085000px;}
.y5b{bottom:692.925000px;}
.y1f{bottom:693.285000px;}
.y172{bottom:695.085000px;}
.y12c{bottom:698.865000px;}
.yfc{bottom:702.645000px;}
.yd3{bottom:703.005000px;}
.y5a{bottom:710.025000px;}
.y1e{bottom:710.565000px;}
.y171{bottom:712.365000px;}
.y12b{bottom:716.145000px;}
.yfb{bottom:719.925000px;}
.yd2{bottom:724.785000px;}
.y59{bottom:727.305000px;}
.y1d{bottom:727.845000px;}
.y16f{bottom:729.285000px;}
.y156{bottom:733.065000px;}
.y12a{bottom:733.425000px;}
.yfa{bottom:737.025000px;}
.y58{bottom:744.585000px;}
.y1c{bottom:745.125000px;}
.yd1{bottom:746.385000px;}
.y129{bottom:750.525000px;}
.y16e{bottom:750.885000px;}
.yf9{bottom:754.305000px;}
.y57{bottom:761.865000px;}
.y1b{bottom:762.225000px;}
.y128{bottom:767.805000px;}
.yd0{bottom:768.165000px;}
.yf8{bottom:771.585000px;}
.y16d{bottom:772.665000px;}
.y194{bottom:778.785000px;}
.y56{bottom:779.145000px;}
.y1a{bottom:779.505000px;}
.y127{bottom:785.085000px;}
.yf7{bottom:788.505000px;}
.ycf{bottom:789.945000px;}
.y16c{bottom:794.445000px;}
.y55{bottom:795.885000px;}
.y7e{bottom:796.245000px;}
.y19{bottom:796.785000px;}
.y126{bottom:802.365000px;}
.yf6{bottom:810.285000px;}
.yce{bottom:811.725000px;}
.y54{bottom:813.525000px;}
.y18{bottom:814.065000px;}
.y16b{bottom:816.225000px;}
.y125{bottom:819.645000px;}
.ya2{bottom:830.445000px;}
.y53{bottom:830.805000px;}
.y17{bottom:831.345000px;}
.yf5{bottom:831.885000px;}
.y124{bottom:836.745000px;}
.y16a{bottom:840.525000px;}
.y52{bottom:848.085000px;}
.y16{bottom:848.445000px;}
.ycd{bottom:853.305000px;}
.yf4{bottom:853.665000px;}
.y123{bottom:854.025000px;}
.y169{bottom:857.805000px;}
.y51{bottom:865.365000px;}
.y15{bottom:865.725000px;}
.ycc{bottom:870.225000px;}
.y122{bottom:871.305000px;}
.y168{bottom:875.130000px;}
.yf3{bottom:875.490000px;}
.y50{bottom:882.690000px;}
.y14{bottom:883.050000px;}
.ycb{bottom:887.910000px;}
.y121{bottom:888.630000px;}
.y167{bottom:892.410000px;}
.y4f{bottom:899.790000px;}
.y13{bottom:900.330000px;}
.yca{bottom:905.190000px;}
.y120{bottom:905.910000px;}
.y166{bottom:909.690000px;}
.y4e{bottom:917.070000px;}
.y12{bottom:917.250000px;}
.yc9{bottom:922.290000px;}
.y11f{bottom:923.190000px;}
.y165{bottom:926.790000px;}
.y4d{bottom:933.990000px;}
.y7d{bottom:934.350000px;}
.y11{bottom:935.610000px;}
.yc8{bottom:939.570000px;}
.y11e{bottom:940.290000px;}
.y164{bottom:943.710000px;}
.y4c{bottom:951.630000px;}
.y10{bottom:952.890000px;}
.yc7{bottom:956.850000px;}
.y11d{bottom:957.210000px;}
.y155{bottom:957.570000px;}
.yf2{bottom:968.550000px;}
.y4b{bottom:968.910000px;}
.yf{bottom:969.990000px;}
.yc6{bottom:973.770000px;}
.y154{bottom:974.850000px;}
.y11c{bottom:978.990000px;}
.y162{bottom:982.770000px;}
.y4a{bottom:986.190000px;}
.ye{bottom:987.270000px;}
.y153{bottom:992.130000px;}
.yc5{bottom:995.550000px;}
.y193{bottom:1002.930000px;}
.y49{bottom:1003.290000px;}
.yd{bottom:1004.550000px;}
.y152{bottom:1009.410000px;}
.yc4{bottom:1017.150000px;}
.y48{bottom:1020.570000px;}
.yc{bottom:1021.650000px;}
.y151{bottom:1026.690000px;}
.y195{bottom:1037.490000px;}
.y47{bottom:1037.850000px;}
.yc3{bottom:1038.930000px;}
.yb{bottom:1041.270000px;}
.y150{bottom:1043.430000px;}
.y46{bottom:1055.130000px;}
.ya{bottom:1058.550000px;}
.yc2{bottom:1060.710000px;}
.y14f{bottom:1061.070000px;}
.yf1{bottom:1072.050000px;}
.y45{bottom:1072.410000px;}
.y9{bottom:1076.190000px;}
.y14e{bottom:1077.990000px;}
.yc1{bottom:1082.490000px;}
.y44{bottom:1089.690000px;}
.y14d{bottom:1095.630000px;}
.y8{bottom:1096.890000px;}
.y15f{bottom:1099.770000px;}
.y43{bottom:1106.790000px;}
.y14c{bottom:1112.550000px;}
.y7{bottom:1117.590000px;}
.y42{bottom:1124.070000px;}
.y14b{bottom:1134.180000px;}
.y6{bottom:1138.320000px;}
.y9c{bottom:1141.020000px;}
.y41{bottom:1141.380000px;}
.y3{bottom:1161.360000px;}
.y2{bottom:1178.640000px;}
.y1{bottom:1195.920000px;}
.hc{height:17.100000px;}
.hb{height:17.280000px;}
.ha{height:17.316000px;}
.hd{height:34.380000px;}
.he{height:34.416000px;}
.h9{height:34.560000px;}
.h7{height:41.726953px;}
.h2{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:60.226875px;}
.h8{height:61.423863px;}
.h3{height:65.884219px;}
.h4{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:33.840000px;}
.w38{width:34.020000px;}
.w24{width:47.376000px;}
.w33{width:49.176000px;}
.w15{width:50.760000px;}
.w32{width:52.200000px;}
.w3c{width:59.040000px;}
.w3d{width:59.076000px;}
.w3e{width:59.220000px;}
.w2e{width:60.480000px;}
.w2d{width:60.516000px;}
.w2c{width:60.660000px;}
.w1b{width:65.880000px;}
.w22{width:67.320000px;}
.w21{width:69.660000px;}
.w2{width:70.920000px;}
.wc{width:76.140000px;}
.w37{width:79.920000px;}
.w1f{width:80.100000px;}
.w16{width:80.640000px;}
.w31{width:80.820000px;}
.w1c{width:84.780000px;}
.w29{width:86.040000px;}
.w1e{width:88.236000px;}
.w3a{width:89.820000px;}
.w20{width:104.976000px;}
.w39{width:108.756000px;}
.w25{width:110.520000px;}
.w34{width:113.580000px;}
.w19{width:117.396000px;}
.w41{width:118.080000px;}
.w13{width:121.680000px;}
.wf{width:122.436000px;}
.w42{width:123.156000px;}
.w28{width:131.976000px;}
.w6{width:132.120000px;}
.w30{width:134.856000px;}
.wa{width:141.660000px;}
.w5{width:142.236000px;}
.w10{width:144.900000px;}
.w35{width:145.620000px;}
.w4{width:151.050000px;}
.w14{width:153.180000px;}
.w9{width:156.090000px;}
.wd{width:156.810000px;}
.w1a{width:157.500000px;}
.wb{width:161.850000px;}
.w3f{width:164.730000px;}
.we{width:171.930000px;}
.w3{width:176.070000px;}
.w8{width:176.430000px;}
.w12{width:176.970000px;}
.w11{width:184.710000px;}
.w2a{width:188.490000px;}
.w17{width:198.570000px;}
.w26{width:207.030000px;}
.w43{width:210.090000px;}
.w36{width:210.135000px;}
.w40{width:220.890000px;}
.w2f{width:226.470000px;}
.w18{width:244.650000px;}
.w1d{width:257.970000px;}
.w27{width:266.250000px;}
.w3b{width:266.610000px;}
.w23{width:307.470000px;}
.w2b{width:428.295000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:1.080000px;}
.x44{left:4.500000px;}
.x26{left:7.920000px;}
.x37{left:10.080000px;}
.x4c{left:11.340000px;}
.x51{left:12.420000px;}
.x28{left:13.860000px;}
.x19{left:15.840000px;}
.x67{left:17.280000px;}
.x13{left:18.360000px;}
.x11{left:19.620000px;}
.x17{left:21.240000px;}
.x2f{left:22.320000px;}
.x6e{left:23.580000px;}
.x24{left:24.834000px;}
.x31{left:26.100000px;}
.x55{left:27.180000px;}
.x3f{left:29.160000px;}
.x46{left:30.780000px;}
.x7c{left:32.445000px;}
.x1c{left:34.020000px;}
.x56{left:35.460000px;}
.x58{left:37.620000px;}
.x4b{left:39.420000px;}
.x77{left:40.680000px;}
.x1a{left:41.760000px;}
.x35{left:44.100000px;}
.x70{left:45.354000px;}
.x4d{left:46.614000px;}
.x3d{left:48.240000px;}
.x40{left:51.300000px;}
.x29{left:52.380000px;}
.x33{left:54.180000px;}
.x14{left:56.160000px;}
.x16{left:58.500000px;}
.x1f{left:61.740000px;}
.x39{left:63.000000px;}
.x2c{left:64.800000px;}
.x1e{left:66.240000px;}
.x2b{left:68.445000px;}
.x57{left:70.374000px;}
.x2d{left:71.505000px;}
.x3b{left:73.440000px;}
.x20{left:74.880000px;}
.x38{left:76.680000px;}
.x1d{left:78.660000px;}
.x6a{left:82.794000px;}
.x47{left:86.070000px;}
.x85{left:90.354000px;}
.x86{left:91.614000px;}
.x82{left:92.874000px;}
.x48{left:94.314000px;}
.x41{left:101.196000px;}
.x10{left:105.876000px;}
.x21{left:106.956000px;}
.x5{left:108.036000px;}
.x5e{left:112.674000px;}
.x68{left:119.874000px;}
.x5a{left:125.814000px;}
.xd{left:135.036000px;}
.x23{left:143.136000px;}
.x66{left:151.014000px;}
.x42{left:154.290000px;}
.xe{left:162.030000px;}
.x12{left:179.130000px;}
.x61{left:182.019000px;}
.x30{left:184.350000px;}
.x72{left:188.130000px;}
.x1{left:237.990000px;}
.x78{left:254.730000px;}
.x7d{left:260.310000px;}
.x74{left:275.835000px;}
.x69{left:279.075000px;}
.x73{left:287.355000px;}
.xc{left:289.155000px;}
.x59{left:301.215000px;}
.x6{left:303.375000px;}
.x4e{left:307.155000px;}
.x76{left:308.415000px;}
.xa{left:311.835000px;}
.x71{left:317.955000px;}
.x25{left:321.915000px;}
.x3a{left:330.015000px;}
.x2e{left:334.515000px;}
.x6b{left:341.175000px;}
.x32{left:343.335000px;}
.x49{left:353.775000px;}
.x15{left:357.375000px;}
.x4f{left:367.275000px;}
.x7{left:373.395000px;}
.x5f{left:375.375000px;}
.x43{left:415.335000px;}
.x5b{left:416.775000px;}
.x8{left:425.775000px;}
.x7e{left:437.295000px;}
.x9{left:443.055000px;}
.x3{left:448.275000px;}
.x83{left:450.615000px;}
.x50{left:457.665000px;}
.xb{left:461.085000px;}
.x5c{left:466.485000px;}
.x2{left:473.505000px;}
.x6c{left:478.185000px;}
.x27{left:480.345000px;}
.x7f{left:498.705000px;}
.x3c{left:509.325000px;}
.x18{left:510.765000px;}
.x34{left:517.605000px;}
.x62{left:537.405000px;}
.x52{left:539.925000px;}
.x79{left:549.105000px;}
.x80{left:560.085000px;}
.x6d{left:561.345000px;}
.x84{left:576.105000px;}
.x5d{left:579.345000px;}
.x7a{left:585.465000px;}
.x60{left:597.705000px;}
.x63{left:600.225000px;}
.x45{left:616.065000px;}
.x81{left:621.645000px;}
.x2a{left:624.345000px;}
.x3e{left:633.210000px;}
.x36{left:642.390000px;}
.x53{left:647.250000px;}
.x1b{left:655.170000px;}
.x64{left:663.090000px;}
.x6f{left:667.230000px;}
.x7b{left:696.570000px;}
.x4a{left:701.610000px;}
.x54{left:719.070000px;}
.x65{left:725.910000px;}
.x75{left:735.990000px;}
.x4{left:758.130000px;}
.xf{left:782.970000px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v1{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.409067pt;}
.ls11{letter-spacing:0.960000pt;}
.ls0{letter-spacing:10.400000pt;}
.ls13{letter-spacing:14.672640pt;}
.ls5{letter-spacing:26.400000pt;}
.ls12{letter-spacing:40.891307pt;}
.ls9{letter-spacing:46.880000pt;}
.ls4{letter-spacing:56.891307pt;}
.lsb{letter-spacing:141.600000pt;}
.ls8{letter-spacing:178.080000pt;}
.lsd{letter-spacing:178.698667pt;}
.ws4{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.240000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.416533pt;}
.ws2{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.185067pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-1.897600pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.062400pt;}
._1{width:2.653867pt;}
._b{width:4.103040pt;}
._6{width:5.351467pt;}
._5{width:6.321280pt;}
._7{width:7.755520pt;}
._11{width:9.030400pt;}
._3{width:9.986560pt;}
._4{width:10.999040pt;}
._10{width:12.249600pt;}
._9{width:14.767360pt;}
._a{width:15.684267pt;}
._16{width:16.626773pt;}
._f{width:17.522347pt;}
._e{width:18.478720pt;}
._12{width:19.880747pt;}
._15{width:21.250560pt;}
._13{width:22.177920pt;}
._14{width:23.317760pt;}
._d{width:24.594560pt;}
._c{width:25.497600pt;}
._17{width:26.492800pt;}
._8{width:178.698667pt;}
._19{width:405.890987pt;}
._18{width:636.849707pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y147{bottom:-4.480000pt;}
.y170{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:2.880000pt;}
.yaf{bottom:3.040000pt;}
.yb5{bottom:3.200000pt;}
.yb3{bottom:3.360000pt;}
.yb1{bottom:3.400000pt;}
.yad{bottom:10.720000pt;}
.y160{bottom:11.040000pt;}
.ydb{bottom:18.240000pt;}
.yae{bottom:18.400000pt;}
.y163{bottom:18.560000pt;}
.y161{bottom:18.720000pt;}
.y5{bottom:31.680000pt;}
.y4{bottom:49.120000pt;}
.yc0{bottom:98.912000pt;}
.ya7{bottom:101.472000pt;}
.y11b{bottom:105.152000pt;}
.y7c{bottom:105.952000pt;}
.y15e{bottom:107.872000pt;}
.y192{bottom:109.152000pt;}
.y9b{bottom:109.472000pt;}
.ya1{bottom:109.792000pt;}
.y40{bottom:110.272000pt;}
.yf0{bottom:113.152000pt;}
.ybf{bottom:114.112000pt;}
.ya6{bottom:116.672000pt;}
.y14a{bottom:116.832000pt;}
.y11a{bottom:120.512000pt;}
.y7b{bottom:121.312000pt;}
.y15d{bottom:123.072000pt;}
.y191{bottom:124.512000pt;}
.y9a{bottom:124.832000pt;}
.ya0{bottom:125.152000pt;}
.y3f{bottom:125.632000pt;}
.yef{bottom:128.512000pt;}
.ybe{bottom:129.792000pt;}
.ya5{bottom:132.032000pt;}
.y119{bottom:135.866667pt;}
.y149{bottom:136.186667pt;}
.y7a{bottom:136.346667pt;}
.y15c{bottom:138.426667pt;}
.y190{bottom:139.866667pt;}
.y9f{bottom:140.186667pt;}
.y99{bottom:140.506667pt;}
.y3e{bottom:140.826667pt;}
.yee{bottom:143.866667pt;}
.ybd{bottom:145.146667pt;}
.ya4{bottom:147.066667pt;}
.y118{bottom:151.226667pt;}
.y79{bottom:152.026667pt;}
.y15b{bottom:153.786667pt;}
.y18f{bottom:154.906667pt;}
.y148{bottom:155.546667pt;}
.y98{bottom:155.866667pt;}
.y3d{bottom:156.186667pt;}
.yed{bottom:158.746667pt;}
.ya3{bottom:159.546667pt;}
.ybc{bottom:160.506667pt;}
.y117{bottom:166.106667pt;}
.y78{bottom:167.386667pt;}
.y15a{bottom:168.826667pt;}
.y18e{bottom:170.426667pt;}
.y97{bottom:171.226667pt;}
.y3c{bottom:171.546667pt;}
.y146{bottom:174.906667pt;}
.ybb{bottom:175.866667pt;}
.yec{bottom:178.106667pt;}
.y77{bottom:182.746667pt;}
.y159{bottom:184.506667pt;}
.y116{bottom:185.466667pt;}
.y18d{bottom:185.786667pt;}
.y96{bottom:186.426667pt;}
.y3b{bottom:186.906667pt;}
.yba{bottom:191.226667pt;}
.y145{bottom:194.106667pt;}
.yeb{bottom:197.466667pt;}
.y76{bottom:197.946667pt;}
.y158{bottom:199.866667pt;}
.y18c{bottom:201.146667pt;}
.y95{bottom:201.786667pt;}
.y3a{bottom:202.266667pt;}
.y115{bottom:204.826667pt;}
.yb9{bottom:206.426667pt;}
.y157{bottom:211.866667pt;}
.y75{bottom:213.306667pt;}
.y144{bottom:215.866667pt;}
.y18b{bottom:216.506667pt;}
.yea{bottom:216.826667pt;}
.y94{bottom:217.146667pt;}
.y39{bottom:217.626667pt;}
.yb8{bottom:221.786667pt;}
.y114{bottom:224.186667pt;}
.y74{bottom:228.666667pt;}
.y143{bottom:231.226667pt;}
.y18a{bottom:231.866667pt;}
.y93{bottom:232.186667pt;}
.y9e{bottom:232.506667pt;}
.y38{bottom:232.826667pt;}
.ye9{bottom:236.186667pt;}
.yb7{bottom:236.826667pt;}
.y113{bottom:243.546667pt;}
.y73{bottom:243.706667pt;}
.y142{bottom:246.426667pt;}
.y189{bottom:247.226667pt;}
.y92{bottom:247.866667pt;}
.y37{bottom:248.186667pt;}
.ye7{bottom:255.546667pt;}
.yb6{bottom:256.186667pt;}
.y72{bottom:259.386667pt;}
.y141{bottom:261.786667pt;}
.y188{bottom:262.426667pt;}
.y91{bottom:263.226667pt;}
.y36{bottom:263.546667pt;}
.y112{bottom:265.146667pt;}
.y71{bottom:274.586667pt;}
.yb4{bottom:275.546667pt;}
.y140{bottom:277.146667pt;}
.y187{bottom:277.786667pt;}
.y90{bottom:278.426667pt;}
.y35{bottom:278.906667pt;}
.y111{bottom:280.506667pt;}
.y70{bottom:289.946667pt;}
.ye6{bottom:292.186667pt;}
.y13f{bottom:292.506667pt;}
.y186{bottom:293.146667pt;}
.y8f{bottom:293.786667pt;}
.y34{bottom:294.266667pt;}
.yb2{bottom:294.746667pt;}
.y110{bottom:295.866667pt;}
.y6f{bottom:305.306667pt;}
.ye5{bottom:307.866667pt;}
.y185{bottom:308.506667pt;}
.y8e{bottom:309.146667pt;}
.y33{bottom:309.306667pt;}
.y10f{bottom:310.906667pt;}
.yb0{bottom:314.106667pt;}
.y6e{bottom:320.706667pt;}
.ye4{bottom:323.106667pt;}
.y13e{bottom:323.266667pt;}
.y184{bottom:323.906667pt;}
.y8d{bottom:324.546667pt;}
.y32{bottom:324.866667pt;}
.y10e{bottom:326.466667pt;}
.yac{bottom:333.506667pt;}
.y6d{bottom:336.066667pt;}
.y13d{bottom:338.146667pt;}
.ye3{bottom:338.466667pt;}
.y183{bottom:339.106667pt;}
.y8c{bottom:339.906667pt;}
.y31{bottom:340.226667pt;}
.y10d{bottom:341.826667pt;}
.y6c{bottom:351.426667pt;}
.ye2{bottom:353.826667pt;}
.y182{bottom:354.146667pt;}
.y8b{bottom:355.266667pt;}
.y30{bottom:355.586667pt;}
.y10c{bottom:357.186667pt;}
.y13c{bottom:357.506667pt;}
.y6b{bottom:366.626667pt;}
.ye1{bottom:369.186667pt;}
.y181{bottom:369.506667pt;}
.y8a{bottom:370.466667pt;}
.y2f{bottom:370.946667pt;}
.y10b{bottom:372.546667pt;}
.y13b{bottom:376.866667pt;}
.y6a{bottom:381.986667pt;}
.ye0{bottom:384.226667pt;}
.y180{bottom:385.186667pt;}
.yab{bottom:385.506667pt;}
.y89{bottom:385.826667pt;}
.y2e{bottom:386.306667pt;}
.y10a{bottom:387.906667pt;}
.y13a{bottom:396.226667pt;}
.y69{bottom:397.346667pt;}
.y17f{bottom:400.546667pt;}
.y88{bottom:401.186667pt;}
.y2d{bottom:401.506667pt;}
.y109{bottom:403.106667pt;}
.ydf{bottom:403.586667pt;}
.y68{bottom:412.386667pt;}
.y139{bottom:415.586667pt;}
.y17e{bottom:415.906667pt;}
.y9d{bottom:416.226667pt;}
.y87{bottom:416.546667pt;}
.y2c{bottom:416.866667pt;}
.y108{bottom:418.466667pt;}
.yde{bottom:422.786667pt;}
.y67{bottom:428.066667pt;}
.y17d{bottom:430.786667pt;}
.y86{bottom:431.906667pt;}
.y2b{bottom:432.226667pt;}
.y107{bottom:433.506667pt;}
.y138{bottom:437.186667pt;}
.ydd{bottom:442.146667pt;}
.y66{bottom:443.426667pt;}
.yaa{bottom:446.786667pt;}
.y85{bottom:447.106667pt;}
.y2a{bottom:447.586667pt;}
.y17c{bottom:450.146667pt;}
.y137{bottom:452.546667pt;}
.y106{bottom:452.866667pt;}
.y65{bottom:459.586667pt;}
.ydc{bottom:461.506667pt;}
.y84{bottom:462.466667pt;}
.y29{bottom:462.626667pt;}
.y136{bottom:467.906667pt;}
.y17b{bottom:469.506667pt;}
.y105{bottom:472.226667pt;}
.y64{bottom:474.946667pt;}
.y83{bottom:477.826667pt;}
.y28{bottom:478.306667pt;}
.yda{bottom:480.866667pt;}
.y135{bottom:483.106667pt;}
.y17a{bottom:488.866667pt;}
.y63{bottom:491.266667pt;}
.y104{bottom:491.586667pt;}
.y82{bottom:493.186667pt;}
.y27{bottom:493.506667pt;}
.y134{bottom:498.466667pt;}
.y62{bottom:507.586667pt;}
.ya9{bottom:508.226667pt;}
.y81{bottom:508.546667pt;}
.y26{bottom:508.866667pt;}
.y179{bottom:510.466667pt;}
.y103{bottom:510.786667pt;}
.y133{bottom:513.826667pt;}
.y61{bottom:522.946667pt;}
.y80{bottom:523.906667pt;}
.y25{bottom:524.226667pt;}
.y178{bottom:525.826667pt;}
.y132{bottom:529.186667pt;}
.y102{bottom:532.546667pt;}
.yd9{bottom:532.866667pt;}
.y60{bottom:538.786667pt;}
.y7f{bottom:539.106667pt;}
.y24{bottom:539.586667pt;}
.y177{bottom:541.186667pt;}
.y131{bottom:544.226667pt;}
.y101{bottom:547.933333pt;}
.yd8{bottom:548.573333pt;}
.y5f{bottom:554.493333pt;}
.y23{bottom:554.653333pt;}
.y176{bottom:556.573333pt;}
.y130{bottom:559.933333pt;}
.y100{bottom:563.133333pt;}
.yd7{bottom:563.933333pt;}
.y5e{bottom:569.853333pt;}
.y22{bottom:570.333333pt;}
.y175{bottom:571.613333pt;}
.y12f{bottom:575.133333pt;}
.yff{bottom:578.173333pt;}
.yd6{bottom:579.133333pt;}
.ya8{bottom:584.893333pt;}
.y5d{bottom:585.213333pt;}
.y21{bottom:585.533333pt;}
.y174{bottom:587.133333pt;}
.y12e{bottom:590.493333pt;}
.yfe{bottom:593.853333pt;}
.yd5{bottom:594.493333pt;}
.y5c{bottom:600.573333pt;}
.y20{bottom:600.893333pt;}
.y173{bottom:602.493333pt;}
.y12d{bottom:605.853333pt;}
.yfd{bottom:609.213333pt;}
.yd4{bottom:609.853333pt;}
.y5b{bottom:615.933333pt;}
.y1f{bottom:616.253333pt;}
.y172{bottom:617.853333pt;}
.y12c{bottom:621.213333pt;}
.yfc{bottom:624.573333pt;}
.yd3{bottom:624.893333pt;}
.y5a{bottom:631.133333pt;}
.y1e{bottom:631.613333pt;}
.y171{bottom:633.213333pt;}
.y12b{bottom:636.573333pt;}
.yfb{bottom:639.933333pt;}
.yd2{bottom:644.253333pt;}
.y59{bottom:646.493333pt;}
.y1d{bottom:646.973333pt;}
.y16f{bottom:648.253333pt;}
.y156{bottom:651.613333pt;}
.y12a{bottom:651.933333pt;}
.yfa{bottom:655.133333pt;}
.y58{bottom:661.853333pt;}
.y1c{bottom:662.333333pt;}
.yd1{bottom:663.453333pt;}
.y129{bottom:667.133333pt;}
.y16e{bottom:667.453333pt;}
.yf9{bottom:670.493333pt;}
.y57{bottom:677.213333pt;}
.y1b{bottom:677.533333pt;}
.y128{bottom:682.493333pt;}
.yd0{bottom:682.813333pt;}
.yf8{bottom:685.853333pt;}
.y16d{bottom:686.813333pt;}
.y194{bottom:692.253333pt;}
.y56{bottom:692.573333pt;}
.y1a{bottom:692.893333pt;}
.y127{bottom:697.853333pt;}
.yf7{bottom:700.893333pt;}
.ycf{bottom:702.173333pt;}
.y16c{bottom:706.173333pt;}
.y55{bottom:707.453333pt;}
.y7e{bottom:707.773333pt;}
.y19{bottom:708.253333pt;}
.y126{bottom:713.213333pt;}
.yf6{bottom:720.253333pt;}
.yce{bottom:721.533333pt;}
.y54{bottom:723.133333pt;}
.y18{bottom:723.613333pt;}
.y16b{bottom:725.533333pt;}
.y125{bottom:728.573333pt;}
.ya2{bottom:738.173333pt;}
.y53{bottom:738.493333pt;}
.y17{bottom:738.973333pt;}
.yf5{bottom:739.453333pt;}
.y124{bottom:743.773333pt;}
.y16a{bottom:747.133333pt;}
.y52{bottom:753.853333pt;}
.y16{bottom:754.173333pt;}
.ycd{bottom:758.493333pt;}
.yf4{bottom:758.813333pt;}
.y123{bottom:759.133333pt;}
.y169{bottom:762.493333pt;}
.y51{bottom:769.213333pt;}
.y15{bottom:769.533333pt;}
.ycc{bottom:773.533333pt;}
.y122{bottom:774.493333pt;}
.y168{bottom:777.893333pt;}
.yf3{bottom:778.213333pt;}
.y50{bottom:784.613333pt;}
.y14{bottom:784.933333pt;}
.ycb{bottom:789.253333pt;}
.y121{bottom:789.893333pt;}
.y167{bottom:793.253333pt;}
.y4f{bottom:799.813333pt;}
.y13{bottom:800.293333pt;}
.yca{bottom:804.613333pt;}
.y120{bottom:805.253333pt;}
.y166{bottom:808.613333pt;}
.y4e{bottom:815.173333pt;}
.y12{bottom:815.333333pt;}
.yc9{bottom:819.813333pt;}
.y11f{bottom:820.613333pt;}
.y165{bottom:823.813333pt;}
.y4d{bottom:830.213333pt;}
.y7d{bottom:830.533333pt;}
.y11{bottom:831.653333pt;}
.yc8{bottom:835.173333pt;}
.y11e{bottom:835.813333pt;}
.y164{bottom:838.853333pt;}
.y4c{bottom:845.893333pt;}
.y10{bottom:847.013333pt;}
.yc7{bottom:850.533333pt;}
.y11d{bottom:850.853333pt;}
.y155{bottom:851.173333pt;}
.yf2{bottom:860.933333pt;}
.y4b{bottom:861.253333pt;}
.yf{bottom:862.213333pt;}
.yc6{bottom:865.573333pt;}
.y154{bottom:866.533333pt;}
.y11c{bottom:870.213333pt;}
.y162{bottom:873.573333pt;}
.y4a{bottom:876.613333pt;}
.ye{bottom:877.573333pt;}
.y153{bottom:881.893333pt;}
.yc5{bottom:884.933333pt;}
.y193{bottom:891.493333pt;}
.y49{bottom:891.813333pt;}
.yd{bottom:892.933333pt;}
.y152{bottom:897.253333pt;}
.yc4{bottom:904.133333pt;}
.y48{bottom:907.173333pt;}
.yc{bottom:908.133333pt;}
.y151{bottom:912.613333pt;}
.y195{bottom:922.213333pt;}
.y47{bottom:922.533333pt;}
.yc3{bottom:923.493333pt;}
.yb{bottom:925.573333pt;}
.y150{bottom:927.493333pt;}
.y46{bottom:937.893333pt;}
.ya{bottom:940.933333pt;}
.yc2{bottom:942.853333pt;}
.y14f{bottom:943.173333pt;}
.yf1{bottom:952.933333pt;}
.y45{bottom:953.253333pt;}
.y9{bottom:956.613333pt;}
.y14e{bottom:958.213333pt;}
.yc1{bottom:962.213333pt;}
.y44{bottom:968.613333pt;}
.y14d{bottom:973.893333pt;}
.y8{bottom:975.013333pt;}
.y15f{bottom:977.573333pt;}
.y43{bottom:983.813333pt;}
.y14c{bottom:988.933333pt;}
.y7{bottom:993.413333pt;}
.y42{bottom:999.173333pt;}
.y14b{bottom:1008.160000pt;}
.y6{bottom:1011.840000pt;}
.y9c{bottom:1014.240000pt;}
.y41{bottom:1014.560000pt;}
.y3{bottom:1032.320000pt;}
.y2{bottom:1047.680000pt;}
.y1{bottom:1063.040000pt;}
.hc{height:15.200000pt;}
.hb{height:15.360000pt;}
.ha{height:15.392000pt;}
.hd{height:30.560000pt;}
.he{height:30.592000pt;}
.h9{height:30.720000pt;}
.h7{height:37.090625pt;}
.h2{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:53.535000pt;}
.h8{height:54.598989pt;}
.h3{height:58.563750pt;}
.h4{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:30.080000pt;}
.w38{width:30.240000pt;}
.w24{width:42.112000pt;}
.w33{width:43.712000pt;}
.w15{width:45.120000pt;}
.w32{width:46.400000pt;}
.w3c{width:52.480000pt;}
.w3d{width:52.512000pt;}
.w3e{width:52.640000pt;}
.w2e{width:53.760000pt;}
.w2d{width:53.792000pt;}
.w2c{width:53.920000pt;}
.w1b{width:58.560000pt;}
.w22{width:59.840000pt;}
.w21{width:61.920000pt;}
.w2{width:63.040000pt;}
.wc{width:67.680000pt;}
.w37{width:71.040000pt;}
.w1f{width:71.200000pt;}
.w16{width:71.680000pt;}
.w31{width:71.840000pt;}
.w1c{width:75.360000pt;}
.w29{width:76.480000pt;}
.w1e{width:78.432000pt;}
.w3a{width:79.840000pt;}
.w20{width:93.312000pt;}
.w39{width:96.672000pt;}
.w25{width:98.240000pt;}
.w34{width:100.960000pt;}
.w19{width:104.352000pt;}
.w41{width:104.960000pt;}
.w13{width:108.160000pt;}
.wf{width:108.832000pt;}
.w42{width:109.472000pt;}
.w28{width:117.312000pt;}
.w6{width:117.440000pt;}
.w30{width:119.872000pt;}
.wa{width:125.920000pt;}
.w5{width:126.432000pt;}
.w10{width:128.800000pt;}
.w35{width:129.440000pt;}
.w4{width:134.266667pt;}
.w14{width:136.160000pt;}
.w9{width:138.746667pt;}
.wd{width:139.386667pt;}
.w1a{width:140.000000pt;}
.wb{width:143.866667pt;}
.w3f{width:146.426667pt;}
.we{width:152.826667pt;}
.w3{width:156.506667pt;}
.w8{width:156.826667pt;}
.w12{width:157.306667pt;}
.w11{width:164.186667pt;}
.w2a{width:167.546667pt;}
.w17{width:176.506667pt;}
.w26{width:184.026667pt;}
.w43{width:186.746667pt;}
.w36{width:186.786667pt;}
.w40{width:196.346667pt;}
.w2f{width:201.306667pt;}
.w18{width:217.466667pt;}
.w1d{width:229.306667pt;}
.w27{width:236.666667pt;}
.w3b{width:236.986667pt;}
.w23{width:273.306667pt;}
.w2b{width:380.706667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:0.960000pt;}
.x44{left:4.000000pt;}
.x26{left:7.040000pt;}
.x37{left:8.960000pt;}
.x4c{left:10.080000pt;}
.x51{left:11.040000pt;}
.x28{left:12.320000pt;}
.x19{left:14.080000pt;}
.x67{left:15.360000pt;}
.x13{left:16.320000pt;}
.x11{left:17.440000pt;}
.x17{left:18.880000pt;}
.x2f{left:19.840000pt;}
.x6e{left:20.960000pt;}
.x24{left:22.074667pt;}
.x31{left:23.200000pt;}
.x55{left:24.160000pt;}
.x3f{left:25.920000pt;}
.x46{left:27.360000pt;}
.x7c{left:28.840000pt;}
.x1c{left:30.240000pt;}
.x56{left:31.520000pt;}
.x58{left:33.440000pt;}
.x4b{left:35.040000pt;}
.x77{left:36.160000pt;}
.x1a{left:37.120000pt;}
.x35{left:39.200000pt;}
.x70{left:40.314667pt;}
.x4d{left:41.434667pt;}
.x3d{left:42.880000pt;}
.x40{left:45.600000pt;}
.x29{left:46.560000pt;}
.x33{left:48.160000pt;}
.x14{left:49.920000pt;}
.x16{left:52.000000pt;}
.x1f{left:54.880000pt;}
.x39{left:56.000000pt;}
.x2c{left:57.600000pt;}
.x1e{left:58.880000pt;}
.x2b{left:60.840000pt;}
.x57{left:62.554667pt;}
.x2d{left:63.560000pt;}
.x3b{left:65.280000pt;}
.x20{left:66.560000pt;}
.x38{left:68.160000pt;}
.x1d{left:69.920000pt;}
.x6a{left:73.594667pt;}
.x47{left:76.506667pt;}
.x85{left:80.314667pt;}
.x86{left:81.434667pt;}
.x82{left:82.554667pt;}
.x48{left:83.834667pt;}
.x41{left:89.952000pt;}
.x10{left:94.112000pt;}
.x21{left:95.072000pt;}
.x5{left:96.032000pt;}
.x5e{left:100.154667pt;}
.x68{left:106.554667pt;}
.x5a{left:111.834667pt;}
.xd{left:120.032000pt;}
.x23{left:127.232000pt;}
.x66{left:134.234667pt;}
.x42{left:137.146667pt;}
.xe{left:144.026667pt;}
.x12{left:159.226667pt;}
.x61{left:161.794667pt;}
.x30{left:163.866667pt;}
.x72{left:167.226667pt;}
.x1{left:211.546667pt;}
.x78{left:226.426667pt;}
.x7d{left:231.386667pt;}
.x74{left:245.186667pt;}
.x69{left:248.066667pt;}
.x73{left:255.426667pt;}
.xc{left:257.026667pt;}
.x59{left:267.746667pt;}
.x6{left:269.666667pt;}
.x4e{left:273.026667pt;}
.x76{left:274.146667pt;}
.xa{left:277.186667pt;}
.x71{left:282.626667pt;}
.x25{left:286.146667pt;}
.x3a{left:293.346667pt;}
.x2e{left:297.346667pt;}
.x6b{left:303.266667pt;}
.x32{left:305.186667pt;}
.x49{left:314.466667pt;}
.x15{left:317.666667pt;}
.x4f{left:326.466667pt;}
.x7{left:331.906667pt;}
.x5f{left:333.666667pt;}
.x43{left:369.186667pt;}
.x5b{left:370.466667pt;}
.x8{left:378.466667pt;}
.x7e{left:388.706667pt;}
.x9{left:393.826667pt;}
.x3{left:398.466667pt;}
.x83{left:400.546667pt;}
.x50{left:406.813333pt;}
.xb{left:409.853333pt;}
.x5c{left:414.653333pt;}
.x2{left:420.893333pt;}
.x6c{left:425.053333pt;}
.x27{left:426.973333pt;}
.x7f{left:443.293333pt;}
.x3c{left:452.733333pt;}
.x18{left:454.013333pt;}
.x34{left:460.093333pt;}
.x62{left:477.693333pt;}
.x52{left:479.933333pt;}
.x79{left:488.093333pt;}
.x80{left:497.853333pt;}
.x6d{left:498.973333pt;}
.x84{left:512.093333pt;}
.x5d{left:514.973333pt;}
.x7a{left:520.413333pt;}
.x60{left:531.293333pt;}
.x63{left:533.533333pt;}
.x45{left:547.613333pt;}
.x81{left:552.573333pt;}
.x2a{left:554.973333pt;}
.x3e{left:562.853333pt;}
.x36{left:571.013333pt;}
.x53{left:575.333333pt;}
.x1b{left:582.373333pt;}
.x64{left:589.413333pt;}
.x6f{left:593.093333pt;}
.x7b{left:619.173333pt;}
.x4a{left:623.653333pt;}
.x54{left:639.173333pt;}
.x65{left:645.253333pt;}
.x75{left:654.213333pt;}
.x4{left:673.893333pt;}
.xf{left:695.973333pt;}
}




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