
    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_2a9469269922544cddb3dba1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:251.196000px;}
.ls7{letter-spacing:279.336000px;}
.ls4{letter-spacing:399.636000px;}
.ls5{letter-spacing:461.016000px;}
.ls2{letter-spacing:468.936000px;}
.ls3{letter-spacing:503.136000px;}
.ls1{letter-spacing:517.476000px;}
.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;}
}
.ws10{word-spacing:-532.488000px;}
.ws38{word-spacing:-518.148000px;}
.ws1c{word-spacing:-483.948000px;}
.ws43{word-spacing:-476.028000px;}
.ws41{word-spacing:-414.648000px;}
.ws4d{word-spacing:-294.348000px;}
.ws49{word-spacing:-266.208000px;}
.wsb{word-spacing:-21.684000px;}
.ws9{word-spacing:0.000000px;}
.ws3d{word-spacing:150.552000px;}
.ws6{word-spacing:162.072000px;}
.ws35{word-spacing:191.640000px;}
.ws5c{word-spacing:220.020000px;}
.ws5f{word-spacing:221.232000px;}
.ws1e{word-spacing:226.824000px;}
.ws59{word-spacing:228.492000px;}
.ws6a{word-spacing:229.692000px;}
.ws44{word-spacing:231.648000px;}
.ws66{word-spacing:234.084000px;}
.ws1f{word-spacing:234.300000px;}
.ws26{word-spacing:236.184000px;}
.ws23{word-spacing:240.600000px;}
.ws18{word-spacing:240.708000px;}
.ws14{word-spacing:241.404000px;}
.ws3a{word-spacing:243.168000px;}
.ws28{word-spacing:243.840000px;}
.ws58{word-spacing:247.404000px;}
.ws13{word-spacing:249.396000px;}
.ws46{word-spacing:250.692000px;}
.ws2a{word-spacing:257.580000px;}
.ws24{word-spacing:258.912000px;}
.ws50{word-spacing:262.800000px;}
.ws11{word-spacing:264.912000px;}
.wsd{word-spacing:270.324000px;}
.ws4f{word-spacing:276.132000px;}
.ws67{word-spacing:278.544000px;}
.ws2d{word-spacing:281.496000px;}
.ws3c{word-spacing:282.744000px;}
.ws5a{word-spacing:283.188000px;}
.ws15{word-spacing:286.884000px;}
.ws57{word-spacing:287.772000px;}
.ws4e{word-spacing:289.788000px;}
.ws29{word-spacing:292.788000px;}
.ws32{word-spacing:296.364000px;}
.ws51{word-spacing:311.256000px;}
.ws33{word-spacing:316.980000px;}
.ws1b{word-spacing:318.576000px;}
.ws19{word-spacing:318.672000px;}
.ws5b{word-spacing:320.568000px;}
.ws5e{word-spacing:322.524000px;}
.ws45{word-spacing:324.384000px;}
.ws47{word-spacing:326.700000px;}
.ws55{word-spacing:327.768000px;}
.ws69{word-spacing:331.980000px;}
.ws42{word-spacing:341.604000px;}
.ws36{word-spacing:342.216000px;}
.ws8{word-spacing:342.876000px;}
.ws30{word-spacing:344.028000px;}
.ws34{word-spacing:345.552000px;}
.wsc{word-spacing:347.988000px;}
.ws62{word-spacing:350.364000px;}
.ws56{word-spacing:351.564000px;}
.ws3e{word-spacing:354.600000px;}
.ws1d{word-spacing:355.728000px;}
.ws3f{word-spacing:356.472000px;}
.ws61{word-spacing:358.056000px;}
.ws22{word-spacing:359.052000px;}
.ws3{word-spacing:366.900000px;}
.ws52{word-spacing:367.488000px;}
.ws2b{word-spacing:371.076000px;}
.ws68{word-spacing:372.792000px;}
.ws4{word-spacing:373.320000px;}
.ws2e{word-spacing:375.444000px;}
.ws1{word-spacing:378.048000px;}
.ws25{word-spacing:378.744000px;}
.ws4b{word-spacing:380.124000px;}
.ws12{word-spacing:385.140000px;}
.ws0{word-spacing:386.700000px;}
.ws2f{word-spacing:389.028000px;}
.ws54{word-spacing:393.564000px;}
.ws2c{word-spacing:393.960000px;}
.ws5{word-spacing:394.884000px;}
.ws20{word-spacing:396.924000px;}
.ws37{word-spacing:401.124000px;}
.ws48{word-spacing:402.216000px;}
.ws60{word-spacing:408.300000px;}
.ws21{word-spacing:415.404000px;}
.wsa{word-spacing:423.324000px;}
.ws39{word-spacing:424.848000px;}
.wse{word-spacing:432.060000px;}
.ws5d{word-spacing:438.384000px;}
.ws65{word-spacing:444.828000px;}
.wsf{word-spacing:446.004000px;}
.ws7{word-spacing:453.900000px;}
.ws40{word-spacing:454.788000px;}
.ws4a{word-spacing:467.208000px;}
.ws63{word-spacing:470.544000px;}
.ws4c{word-spacing:477.360000px;}
.ws2{word-spacing:479.784000px;}
.ws27{word-spacing:495.348000px;}
.ws53{word-spacing:498.948000px;}
.ws3b{word-spacing:499.608000px;}
.ws1a{word-spacing:502.860000px;}
.ws16{word-spacing:524.100000px;}
.ws64{word-spacing:525.648000px;}
.ws17{word-spacing:538.644000px;}
.ws31{word-spacing:545.268000px;}
._4{margin-left:-517.476000px;}
._1f{margin-left:-503.136000px;}
._9{margin-left:-468.936000px;}
._28{margin-left:-461.016000px;}
._27{margin-left:-399.636000px;}
._31{margin-left:-279.336000px;}
._2d{margin-left:-251.136000px;}
._12{margin-left:-3.900000px;}
._3{margin-left:-2.340000px;}
._a{margin-left:-1.170000px;}
._2e{width:1.170000px;}
._21{width:228.156000px;}
._6{width:241.476000px;}
._20{width:243.180000px;}
._3b{width:251.328000px;}
._36{width:258.588000px;}
._41{width:259.668000px;}
._29{width:261.684000px;}
._c{width:264.276000px;}
._3a{width:266.328000px;}
._e{width:270.636000px;}
._35{width:273.528000px;}
._2a{width:277.524000px;}
._b{width:279.396000px;}
._d{width:285.636000px;}
._15{width:287.616000px;}
._10{width:288.948000px;}
._13{width:292.044000px;}
._3f{width:294.840000px;}
._14{width:302.616000px;}
._f{width:303.948000px;}
._32{width:307.836000px;}
._24{width:312.720000px;}
._37{width:313.860000px;}
._40{width:323.580000px;}
._1a{width:326.436000px;}
._23{width:327.780000px;}
._1d{width:347.016000px;}
._38{width:352.536000px;}
._2c{width:354.420000px;}
._1b{width:357.180000px;}
._1c{width:362.016000px;}
._39{width:367.560000px;}
._2b{width:369.420000px;}
._1e{width:372.228000px;}
._11{width:378.756000px;}
._25{width:386.508000px;}
._3c{width:396.120000px;}
._33{width:397.500000px;}
._16{width:401.148000px;}
._0{width:403.296000px;}
._3d{width:411.936000px;}
._5{width:415.176000px;}
._17{width:421.200000px;}
._34{width:423.636000px;}
._1{width:424.896000px;}
._18{width:436.956000px;}
._2{width:453.336000px;}
._3e{width:475.656000px;}
._26{width:485.616000px;}
._30{width:507.396000px;}
._2f{width:522.396000px;}
._22{width:530.436000px;}
._8{width:532.956000px;}
._7{width:554.136000px;}
._19{width:575.976000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(77,77,77);}
.fs0{font-size:54.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y62{bottom:11.850000px;}
.y61{bottom:30.780000px;}
.y6e{bottom:46.035000px;}
.y5c{bottom:54.975000px;}
.y6d{bottom:71.955000px;}
.y6c{bottom:97.875000px;}
.y196{bottom:104.610000px;}
.y159{bottom:105.150000px;}
.yfd{bottom:107.100000px;}
.yc3{bottom:107.505000px;}
.ye1{bottom:107.655000px;}
.y5d{bottom:114.615000px;}
.y120{bottom:115.980000px;}
.y6b{bottom:123.795000px;}
.ya7{bottom:125.985000px;}
.y1b5{bottom:126.495000px;}
.y176{bottom:131.985000px;}
.y13b{bottom:135.645000px;}
.y8a{bottom:143.685000px;}
.y6a{bottom:149.715000px;}
.y63{bottom:153.225000px;}
.y197{bottom:154.245000px;}
.y15a{bottom:155.340000px;}
.yfe{bottom:159.240000px;}
.yc4{bottom:160.050000px;}
.ye2{bottom:160.350000px;}
.y5e{bottom:174.270000px;}
.y69{bottom:175.635000px;}
.y121{bottom:176.970000px;}
.ya8{bottom:196.995000px;}
.y1b6{bottom:198.015000px;}
.y68{bottom:201.555000px;}
.y198{bottom:203.880000px;}
.y15b{bottom:205.515000px;}
.y177{bottom:208.980000px;}
.yff{bottom:211.365000px;}
.yc5{bottom:212.580000px;}
.ye3{bottom:213.030000px;}
.y13c{bottom:216.330000px;}
.y67{bottom:227.475000px;}
.y8b{bottom:232.380000px;}
.y5f{bottom:233.910000px;}
.y122{bottom:237.975000px;}
.y66{bottom:253.395000px;}
.y199{bottom:253.515000px;}
.y15c{bottom:255.690000px;}
.y100{bottom:263.490000px;}
.yc6{bottom:265.125000px;}
.ye4{bottom:265.725000px;}
.ya9{bottom:268.020000px;}
.y1b7{bottom:269.535000px;}
.y65{bottom:279.315000px;}
.y178{bottom:285.990000px;}
.y60{bottom:293.550000px;}
.y13d{bottom:297.015000px;}
.y123{bottom:298.980000px;}
.y19a{bottom:303.150000px;}
.y15d{bottom:305.880000px;}
.y64{bottom:307.155000px;}
.y6f{bottom:323.385000px;}
.y4c{bottom:357.450000px;}
.y4b{bottom:376.380000px;}
.y58{bottom:391.635000px;}
.y47{bottom:400.575000px;}
.y57{bottom:417.555000px;}
.y56{bottom:443.475000px;}
.y1b0{bottom:448.995000px;}
.ya1{bottom:450.960000px;}
.y192{bottom:455.130000px;}
.y119{bottom:462.195000px;}
.ybf{bottom:462.660000px;}
.y1ac{bottom:463.020000px;}
.ydb{bottom:464.370000px;}
.y84{bottom:466.560000px;}
.y154{bottom:467.805000px;}
.y136{bottom:468.975000px;}
.y55{bottom:469.395000px;}
.y170{bottom:471.135000px;}
.yfa{bottom:475.605000px;}
.ybc{bottom:477.420000px;}
.y11d{bottom:477.585000px;}
.y48{bottom:477.600000px;}
.y18f{bottom:479.190000px;}
.y87{bottom:482.385000px;}
.y173{bottom:482.685000px;}
.yde{bottom:483.810000px;}
.y5a{bottom:484.380000px;}
.y157{bottom:485.310000px;}
.y139{bottom:485.730000px;}
.yf8{bottom:490.020000px;}
.ya5{bottom:491.925000px;}
.y54{bottom:495.315000px;}
.y1b1{bottom:497.400000px;}
.y4d{bottom:498.825000px;}
.ya2{bottom:501.330000px;}
.y193{bottom:509.700000px;}
.y53{bottom:521.235000px;}
.y11a{bottom:523.830000px;}
.yc0{bottom:524.745000px;}
.y1ad{bottom:525.480000px;}
.ydc{bottom:528.150000px;}
.y85{bottom:532.545000px;}
.y155{bottom:535.020000px;}
.y137{bottom:537.390000px;}
.y171{bottom:541.710000px;}
.y1b2{bottom:545.820000px;}
.y52{bottom:547.155000px;}
.yfb{bottom:550.620000px;}
.ya3{bottom:551.715000px;}
.ybd{bottom:554.265000px;}
.y11e{bottom:554.595000px;}
.y49{bottom:554.625000px;}
.y190{bottom:557.805000px;}
.y88{bottom:564.180000px;}
.y194{bottom:564.255000px;}
.y174{bottom:564.780000px;}
.ydf{bottom:567.060000px;}
.y5b{bottom:568.170000px;}
.y158{bottom:570.045000px;}
.y13a{bottom:570.900000px;}
.y51{bottom:573.075000px;}
.yf9{bottom:579.450000px;}
.ya6{bottom:583.275000px;}
.y11b{bottom:585.450000px;}
.yc1{bottom:586.815000px;}
.y1ae{bottom:587.925000px;}
.ydd{bottom:591.945000px;}
.y1b3{bottom:594.240000px;}
.y86{bottom:598.530000px;}
.y50{bottom:598.995000px;}
.ya4{bottom:602.085000px;}
.y156{bottom:602.250000px;}
.y138{bottom:605.790000px;}
.y172{bottom:612.270000px;}
.y195{bottom:618.825000px;}
.y4f{bottom:624.915000px;}
.yfc{bottom:625.650000px;}
.ybe{bottom:631.110000px;}
.y11f{bottom:631.605000px;}
.y4a{bottom:631.635000px;}
.y191{bottom:636.435000px;}
.y1b4{bottom:642.660000px;}
.y89{bottom:645.990000px;}
.y175{bottom:646.890000px;}
.y11c{bottom:647.085000px;}
.yc2{bottom:648.900000px;}
.ye0{bottom:650.295000px;}
.y1af{bottom:650.385000px;}
.y4e{bottom:652.755000px;}
.y59{bottom:668.985000px;}
.y35{bottom:703.050000px;}
.y34{bottom:721.980000px;}
.y41{bottom:737.235000px;}
.y30{bottom:746.175000px;}
.y40{bottom:763.155000px;}
.y3f{bottom:789.075000px;}
.y168{bottom:792.960000px;}
.y10f{bottom:795.360000px;}
.y114{bottom:795.990000px;}
.y18b{bottom:798.990000px;}
.y80{bottom:802.095000px;}
.yd7{bottom:804.210000px;}
.y187{bottom:804.465000px;}
.y130{bottom:804.585000px;}
.y43{bottom:804.630000px;}
.yb8{bottom:804.855000px;}
.y150{bottom:806.490000px;}
.yf4{bottom:806.700000px;}
.y14d{bottom:809.025000px;}
.y9b{bottom:812.655000px;}
.y16d{bottom:813.270000px;}
.y3e{bottom:814.995000px;}
.y1a9{bottom:816.675000px;}
.y1a6{bottom:822.930000px;}
.y31{bottom:823.365000px;}
.yd4{bottom:825.075000px;}
.yb5{bottom:826.785000px;}
.y9e{bottom:827.295000px;}
.y7d{bottom:829.695000px;}
.yf2{bottom:830.580000px;}
.y134{bottom:834.690000px;}
.y169{bottom:839.745000px;}
.y3d{bottom:840.915000px;}
.y36{bottom:844.425000px;}
.y110{bottom:844.560000px;}
.y115{bottom:845.805000px;}
.y18c{bottom:851.790000px;}
.y81{bottom:858.015000px;}
.yd8{bottom:862.230000px;}
.y188{bottom:862.755000px;}
.y131{bottom:863.010000px;}
.y44{bottom:863.070000px;}
.yb9{bottom:863.535000px;}
.y151{bottom:866.820000px;}
.y3c{bottom:866.835000px;}
.yf5{bottom:867.225000px;}
.y14e{bottom:871.875000px;}
.y9c{bottom:879.150000px;}
.y16e{bottom:880.350000px;}
.y16a{bottom:886.530000px;}
.y1aa{bottom:887.175000px;}
.y3b{bottom:892.755000px;}
.y111{bottom:893.745000px;}
.y116{bottom:895.620000px;}
.y1a7{bottom:899.670000px;}
.y32{bottom:900.570000px;}
.yd5{bottom:903.990000px;}
.y18d{bottom:904.605000px;}
.yb6{bottom:907.395000px;}
.y9f{bottom:908.430000px;}
.y7e{bottom:913.215000px;}
.y82{bottom:913.950000px;}
.yf3{bottom:914.985000px;}
.y3a{bottom:918.675000px;}
.yd9{bottom:920.265000px;}
.y189{bottom:921.060000px;}
.y132{bottom:921.420000px;}
.y45{bottom:921.525000px;}
.yba{bottom:922.215000px;}
.y135{bottom:923.220000px;}
.y152{bottom:927.135000px;}
.yf6{bottom:927.750000px;}
.y16b{bottom:933.315000px;}
.y14f{bottom:934.740000px;}
.y112{bottom:942.930000px;}
.y39{bottom:944.595000px;}
.y117{bottom:945.435000px;}
.y9d{bottom:945.630000px;}
.y16f{bottom:947.445000px;}
.y18e{bottom:957.420000px;}
.y1ab{bottom:957.675000px;}
.y83{bottom:969.870000px;}
.y38{bottom:970.515000px;}
.y1a8{bottom:976.425000px;}
.y33{bottom:977.760000px;}
.yda{bottom:978.300000px;}
.y18a{bottom:979.350000px;}
.y133{bottom:979.830000px;}
.y46{bottom:979.980000px;}
.y16c{bottom:980.100000px;}
.ybb{bottom:980.895000px;}
.yd6{bottom:982.890000px;}
.y153{bottom:987.450000px;}
.yb7{bottom:988.005000px;}
.yf7{bottom:988.290000px;}
.ya0{bottom:989.550000px;}
.y113{bottom:992.130000px;}
.y118{bottom:995.250000px;}
.y7f{bottom:996.735000px;}
.y37{bottom:998.355000px;}
.y42{bottom:1014.585000px;}
.y1d{bottom:1048.650000px;}
.y1c{bottom:1067.580000px;}
.y29{bottom:1082.835000px;}
.y17{bottom:1091.775000px;}
.y28{bottom:1108.755000px;}
.y27{bottom:1134.675000px;}
.y2b{bottom:1139.805000px;}
.y148{bottom:1141.155000px;}
.y108{bottom:1144.875000px;}
.y1a0{bottom:1151.190000px;}
.y95{bottom:1151.265000px;}
.y18{bottom:1151.760000px;}
.yef{bottom:1154.685000px;}
.yd1{bottom:1154.865000px;}
.y10c{bottom:1157.430000px;}
.yec{bottom:1157.535000px;}
.y145{bottom:1158.720000px;}
.y26{bottom:1160.595000px;}
.y162{bottom:1160.850000px;}
.y7a{bottom:1162.230000px;}
.yb0{bottom:1162.530000px;}
.y165{bottom:1162.560000px;}
.y184{bottom:1163.910000px;}
.y181{bottom:1165.635000px;}
.y12d{bottom:1169.340000px;}
.yce{bottom:1170.270000px;}
.y1a4{bottom:1170.990000px;}
.y77{bottom:1175.265000px;}
.y12b{bottom:1179.030000px;}
.y99{bottom:1179.765000px;}
.yb3{bottom:1184.265000px;}
.y25{bottom:1186.515000px;}
.y2c{bottom:1187.835000px;}
.y1e{bottom:1190.025000px;}
.y149{bottom:1190.535000px;}
.y109{bottom:1197.975000px;}
.y1a1{bottom:1210.590000px;}
.y96{bottom:1210.755000px;}
.y19{bottom:1211.760000px;}
.y24{bottom:1212.435000px;}
.yf0{bottom:1217.610000px;}
.yd2{bottom:1217.955000px;}
.y10d{bottom:1223.085000px;}
.yed{bottom:1223.295000px;}
.y146{bottom:1225.665000px;}
.y163{bottom:1229.940000px;}
.y7b{bottom:1232.700000px;}
.yb1{bottom:1233.300000px;}
.y166{bottom:1233.330000px;}
.y2d{bottom:1235.850000px;}
.y185{bottom:1236.060000px;}
.y23{bottom:1238.355000px;}
.y182{bottom:1239.480000px;}
.y14a{bottom:1239.915000px;}
.y12e{bottom:1246.905000px;}
.ycf{bottom:1248.780000px;}
.y1a5{bottom:1250.190000px;}
.y10a{bottom:1251.075000px;}
.y78{bottom:1258.740000px;}
.y22{bottom:1264.275000px;}
.y12c{bottom:1266.285000px;}
.y9a{bottom:1267.755000px;}
.y1a2{bottom:1270.005000px;}
.y97{bottom:1270.245000px;}
.y1a{bottom:1271.745000px;}
.yb4{bottom:1276.755000px;}
.yf1{bottom:1280.520000px;}
.yd3{bottom:1281.045000px;}
.y2e{bottom:1283.880000px;}
.y10e{bottom:1288.740000px;}
.yee{bottom:1289.055000px;}
.y14b{bottom:1289.310000px;}
.y21{bottom:1290.195000px;}
.y147{bottom:1292.610000px;}
.y164{bottom:1299.015000px;}
.y7c{bottom:1303.155000px;}
.yb2{bottom:1304.055000px;}
.y167{bottom:1304.115000px;}
.y10b{bottom:1304.175000px;}
.y186{bottom:1308.195000px;}
.y183{bottom:1313.340000px;}
.y20{bottom:1316.115000px;}
.y12f{bottom:1324.470000px;}
.yd0{bottom:1327.275000px;}
.y1a3{bottom:1329.405000px;}
.y98{bottom:1329.735000px;}
.y1b{bottom:1331.730000px;}
.y2f{bottom:1331.910000px;}
.y14c{bottom:1338.690000px;}
.y79{bottom:1342.230000px;}
.y1f{bottom:1343.955000px;}
.y2a{bottom:1360.185000px;}
.y6{bottom:1394.250000px;}
.y5{bottom:1413.180000px;}
.y12{bottom:1428.435000px;}
.y1{bottom:1437.375000px;}
.y11{bottom:1454.355000px;}
.y10{bottom:1480.275000px;}
.y8c{bottom:1485.225000px;}
.y179{bottom:1486.590000px;}
.y124{bottom:1490.340000px;}
.y13e{bottom:1490.715000px;}
.ye5{bottom:1496.850000px;}
.y73{bottom:1497.000000px;}
.y91{bottom:1498.500000px;}
.yc7{bottom:1499.955000px;}
.y101{bottom:1500.075000px;}
.y2{bottom:1501.365000px;}
.yad{bottom:1502.835000px;}
.yaa{bottom:1503.555000px;}
.ycb{bottom:1503.900000px;}
.y142{bottom:1505.310000px;}
.y105{bottom:1505.970000px;}
.yf{bottom:1506.195000px;}
.y14{bottom:1509.510000px;}
.y70{bottom:1509.930000px;}
.y128{bottom:1513.800000px;}
.y19d{bottom:1516.485000px;}
.y17e{bottom:1517.415000px;}
.ye9{bottom:1520.895000px;}
.y160{bottom:1523.025000px;}
.y15e{bottom:1523.955000px;}
.y19b{bottom:1524.390000px;}
.ye{bottom:1532.115000px;}
.y8d{bottom:1533.075000px;}
.y7{bottom:1535.625000px;}
.y17a{bottom:1535.820000px;}
.y125{bottom:1543.305000px;}
.y13f{bottom:1544.070000px;}
.ye6{bottom:1556.325000px;}
.y74{bottom:1556.625000px;}
.yd{bottom:1558.035000px;}
.y92{bottom:1559.640000px;}
.yc8{bottom:1562.550000px;}
.y102{bottom:1562.760000px;}
.y3{bottom:1565.355000px;}
.yae{bottom:1568.310000px;}
.yab{bottom:1569.720000px;}
.ycc{bottom:1570.425000px;}
.y143{bottom:1573.230000px;}
.y106{bottom:1574.565000px;}
.y8e{bottom:1580.925000px;}
.y15{bottom:1581.630000px;}
.y71{bottom:1582.470000px;}
.yc{bottom:1583.955000px;}
.y17b{bottom:1585.035000px;}
.y129{bottom:1590.225000px;}
.y19e{bottom:1595.595000px;}
.y126{bottom:1596.270000px;}
.y140{bottom:1597.425000px;}
.y17f{bottom:1597.455000px;}
.yea{bottom:1604.400000px;}
.y161{bottom:1608.675000px;}
.yb{bottom:1609.875000px;}
.y15f{bottom:1610.550000px;}
.y19c{bottom:1611.405000px;}
.ye7{bottom:1615.815000px;}
.y75{bottom:1616.250000px;}
.y93{bottom:1620.765000px;}
.yc9{bottom:1625.130000px;}
.y103{bottom:1625.460000px;}
.y8f{bottom:1628.760000px;}
.y4{bottom:1629.345000px;}
.yaf{bottom:1633.770000px;}
.y17c{bottom:1634.265000px;}
.ya{bottom:1635.795000px;}
.yac{bottom:1635.900000px;}
.ycd{bottom:1636.935000px;}
.y144{bottom:1641.165000px;}
.y107{bottom:1643.145000px;}
.y127{bottom:1649.250000px;}
.y141{bottom:1650.765000px;}
.y16{bottom:1653.765000px;}
.y72{bottom:1655.025000px;}
.y9{bottom:1661.715000px;}
.y12a{bottom:1666.650000px;}
.y19f{bottom:1674.705000px;}
.ye8{bottom:1675.290000px;}
.y76{bottom:1675.890000px;}
.y90{bottom:1676.610000px;}
.y180{bottom:1677.480000px;}
.y94{bottom:1681.905000px;}
.y17d{bottom:1683.480000px;}
.yca{bottom:1687.725000px;}
.yeb{bottom:1687.920000px;}
.y104{bottom:1688.160000px;}
.y8{bottom:1689.555000px;}
.y13{bottom:1705.785000px;}
.h1{height:56.320312px;}
.h2{height:68.835938px;}
.h3{height:81.351562px;}
.h0{height:1728.000000px;}
.w0{width:1296.000000px;}
.x0{left:0.000000px;}
.x4{left:20.070000px;}
.x1{left:27.810000px;}
.x10{left:35.310000px;}
.x2e{left:42.825000px;}
.x13{left:50.220000px;}
.x5e{left:51.315000px;}
.x7{left:53.970000px;}
.x63{left:56.475000px;}
.x31{left:57.720000px;}
.x57{left:59.010000px;}
.x62{left:60.765000px;}
.x19{left:62.595000px;}
.x1e{left:65.625000px;}
.x42{left:67.575000px;}
.x1b{left:68.985000px;}
.x40{left:73.110000px;}
.x2f{left:75.060000px;}
.x20{left:76.485000px;}
.x35{left:78.120000px;}
.x5a{left:83.625000px;}
.x44{left:85.035000px;}
.x3a{left:87.000000px;}
.x29{left:90.225000px;}
.x60{left:94.230000px;}
.x59{left:105.225000px;}
.x5c{left:107.520000px;}
.x4b{left:108.840000px;}
.x3c{left:110.985000px;}
.x37{left:113.235000px;}
.x21{left:114.870000px;}
.x68{left:122.100000px;}
.x64{left:125.460000px;}
.x2{left:132.165000px;}
.x2c{left:137.160000px;}
.x17{left:139.605000px;}
.x38{left:141.285000px;}
.x50{left:143.250000px;}
.x47{left:146.610000px;}
.x66{left:157.260000px;}
.x27{left:158.550000px;}
.x4e{left:160.650000px;}
.x52{left:165.090000px;}
.x11{left:168.930000px;}
.x33{left:175.350000px;}
.x49{left:245.430000px;}
.x12{left:249.180000px;}
.x3{left:251.070000px;}
.x30{left:252.945000px;}
.x1a{left:253.980000px;}
.x3f{left:256.050000px;}
.x1f{left:257.730000px;}
.x67{left:261.495000px;}
.x5{left:504.000000px;}
.x6{left:538.140000px;}
.xc{left:668.070000px;}
.x9{left:675.810000px;}
.x8{left:683.310000px;}
.x34{left:684.630000px;}
.x22{left:690.825000px;}
.x32{left:695.565000px;}
.x1c{left:696.990000px;}
.xf{left:698.220000px;}
.x46{left:700.920000px;}
.x16{left:701.970000px;}
.x56{left:703.035000px;}
.x51{left:704.085000px;}
.x25{left:705.720000px;}
.x4c{left:707.400000px;}
.x3e{left:709.470000px;}
.x53{left:711.915000px;}
.x18{left:717.555000px;}
.x3b{left:721.410000px;}
.x48{left:730.335000px;}
.x58{left:736.200000px;}
.x4f{left:738.045000px;}
.x28{left:747.870000px;}
.x61{left:752.625000px;}
.x5b{left:757.470000px;}
.x2a{left:758.580000px;}
.x43{left:759.735000px;}
.x45{left:763.635000px;}
.x5f{left:767.130000px;}
.x23{left:770.265000px;}
.x4d{left:775.410000px;}
.x65{left:781.995000px;}
.xa{left:786.360000px;}
.x5d{left:789.030000px;}
.x39{left:791.940000px;}
.x55{left:794.280000px;}
.x2d{left:797.640000px;}
.x14{left:799.425000px;}
.x54{left:803.490000px;}
.x26{left:805.725000px;}
.x4a{left:811.320000px;}
.x36{left:822.330000px;}
.x2b{left:888.840000px;}
.x1d{left:892.605000px;}
.x41{left:894.480000px;}
.xb{left:897.180000px;}
.x15{left:899.070000px;}
.x24{left:900.945000px;}
.x3d{left:902.820000px;}
.xd{left:1152.000000px;}
.xe{left:1186.140000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:223.285333pt;}
.ls7{letter-spacing:248.298667pt;}
.ls4{letter-spacing:355.232000pt;}
.ls5{letter-spacing:409.792000pt;}
.ls2{letter-spacing:416.832000pt;}
.ls3{letter-spacing:447.232000pt;}
.ls1{letter-spacing:459.978667pt;}
.ws10{word-spacing:-473.322667pt;}
.ws38{word-spacing:-460.576000pt;}
.ws1c{word-spacing:-430.176000pt;}
.ws43{word-spacing:-423.136000pt;}
.ws41{word-spacing:-368.576000pt;}
.ws4d{word-spacing:-261.642667pt;}
.ws49{word-spacing:-236.629333pt;}
.wsb{word-spacing:-19.274667pt;}
.ws9{word-spacing:0.000000pt;}
.ws3d{word-spacing:133.824000pt;}
.ws6{word-spacing:144.064000pt;}
.ws35{word-spacing:170.346667pt;}
.ws5c{word-spacing:195.573333pt;}
.ws5f{word-spacing:196.650667pt;}
.ws1e{word-spacing:201.621333pt;}
.ws59{word-spacing:203.104000pt;}
.ws6a{word-spacing:204.170667pt;}
.ws44{word-spacing:205.909333pt;}
.ws66{word-spacing:208.074667pt;}
.ws1f{word-spacing:208.266667pt;}
.ws26{word-spacing:209.941333pt;}
.ws23{word-spacing:213.866667pt;}
.ws18{word-spacing:213.962667pt;}
.ws14{word-spacing:214.581333pt;}
.ws3a{word-spacing:216.149333pt;}
.ws28{word-spacing:216.746667pt;}
.ws58{word-spacing:219.914667pt;}
.ws13{word-spacing:221.685333pt;}
.ws46{word-spacing:222.837333pt;}
.ws2a{word-spacing:228.960000pt;}
.ws24{word-spacing:230.144000pt;}
.ws50{word-spacing:233.600000pt;}
.ws11{word-spacing:235.477333pt;}
.wsd{word-spacing:240.288000pt;}
.ws4f{word-spacing:245.450667pt;}
.ws67{word-spacing:247.594667pt;}
.ws2d{word-spacing:250.218667pt;}
.ws3c{word-spacing:251.328000pt;}
.ws5a{word-spacing:251.722667pt;}
.ws15{word-spacing:255.008000pt;}
.ws57{word-spacing:255.797333pt;}
.ws4e{word-spacing:257.589333pt;}
.ws29{word-spacing:260.256000pt;}
.ws32{word-spacing:263.434667pt;}
.ws51{word-spacing:276.672000pt;}
.ws33{word-spacing:281.760000pt;}
.ws1b{word-spacing:283.178667pt;}
.ws19{word-spacing:283.264000pt;}
.ws5b{word-spacing:284.949333pt;}
.ws5e{word-spacing:286.688000pt;}
.ws45{word-spacing:288.341333pt;}
.ws47{word-spacing:290.400000pt;}
.ws55{word-spacing:291.349333pt;}
.ws69{word-spacing:295.093333pt;}
.ws42{word-spacing:303.648000pt;}
.ws36{word-spacing:304.192000pt;}
.ws8{word-spacing:304.778667pt;}
.ws30{word-spacing:305.802667pt;}
.ws34{word-spacing:307.157333pt;}
.wsc{word-spacing:309.322667pt;}
.ws62{word-spacing:311.434667pt;}
.ws56{word-spacing:312.501333pt;}
.ws3e{word-spacing:315.200000pt;}
.ws1d{word-spacing:316.202667pt;}
.ws3f{word-spacing:316.864000pt;}
.ws61{word-spacing:318.272000pt;}
.ws22{word-spacing:319.157333pt;}
.ws3{word-spacing:326.133333pt;}
.ws52{word-spacing:326.656000pt;}
.ws2b{word-spacing:329.845333pt;}
.ws68{word-spacing:331.370667pt;}
.ws4{word-spacing:331.840000pt;}
.ws2e{word-spacing:333.728000pt;}
.ws1{word-spacing:336.042667pt;}
.ws25{word-spacing:336.661333pt;}
.ws4b{word-spacing:337.888000pt;}
.ws12{word-spacing:342.346667pt;}
.ws0{word-spacing:343.733333pt;}
.ws2f{word-spacing:345.802667pt;}
.ws54{word-spacing:349.834667pt;}
.ws2c{word-spacing:350.186667pt;}
.ws5{word-spacing:351.008000pt;}
.ws20{word-spacing:352.821333pt;}
.ws37{word-spacing:356.554667pt;}
.ws48{word-spacing:357.525333pt;}
.ws60{word-spacing:362.933333pt;}
.ws21{word-spacing:369.248000pt;}
.wsa{word-spacing:376.288000pt;}
.ws39{word-spacing:377.642667pt;}
.wse{word-spacing:384.053333pt;}
.ws5d{word-spacing:389.674667pt;}
.ws65{word-spacing:395.402667pt;}
.wsf{word-spacing:396.448000pt;}
.ws7{word-spacing:403.466667pt;}
.ws40{word-spacing:404.256000pt;}
.ws4a{word-spacing:415.296000pt;}
.ws63{word-spacing:418.261333pt;}
.ws4c{word-spacing:424.320000pt;}
.ws2{word-spacing:426.474667pt;}
.ws27{word-spacing:440.309333pt;}
.ws53{word-spacing:443.509333pt;}
.ws3b{word-spacing:444.096000pt;}
.ws1a{word-spacing:446.986667pt;}
.ws16{word-spacing:465.866667pt;}
.ws64{word-spacing:467.242667pt;}
.ws17{word-spacing:478.794667pt;}
.ws31{word-spacing:484.682667pt;}
._4{margin-left:-459.978667pt;}
._1f{margin-left:-447.232000pt;}
._9{margin-left:-416.832000pt;}
._28{margin-left:-409.792000pt;}
._27{margin-left:-355.232000pt;}
._31{margin-left:-248.298667pt;}
._2d{margin-left:-223.232000pt;}
._12{margin-left:-3.466667pt;}
._3{margin-left:-2.080000pt;}
._a{margin-left:-1.040000pt;}
._2e{width:1.040000pt;}
._21{width:202.805333pt;}
._6{width:214.645333pt;}
._20{width:216.160000pt;}
._3b{width:223.402667pt;}
._36{width:229.856000pt;}
._41{width:230.816000pt;}
._29{width:232.608000pt;}
._c{width:234.912000pt;}
._3a{width:236.736000pt;}
._e{width:240.565333pt;}
._35{width:243.136000pt;}
._2a{width:246.688000pt;}
._b{width:248.352000pt;}
._d{width:253.898667pt;}
._15{width:255.658667pt;}
._10{width:256.842667pt;}
._13{width:259.594667pt;}
._3f{width:262.080000pt;}
._14{width:268.992000pt;}
._f{width:270.176000pt;}
._32{width:273.632000pt;}
._24{width:277.973333pt;}
._37{width:278.986667pt;}
._40{width:287.626667pt;}
._1a{width:290.165333pt;}
._23{width:291.360000pt;}
._1d{width:308.458667pt;}
._38{width:313.365333pt;}
._2c{width:315.040000pt;}
._1b{width:317.493333pt;}
._1c{width:321.792000pt;}
._39{width:326.720000pt;}
._2b{width:328.373333pt;}
._1e{width:330.869333pt;}
._11{width:336.672000pt;}
._25{width:343.562667pt;}
._3c{width:352.106667pt;}
._33{width:353.333333pt;}
._16{width:356.576000pt;}
._0{width:358.485333pt;}
._3d{width:366.165333pt;}
._5{width:369.045333pt;}
._17{width:374.400000pt;}
._34{width:376.565333pt;}
._1{width:377.685333pt;}
._18{width:388.405333pt;}
._2{width:402.965333pt;}
._3e{width:422.805333pt;}
._26{width:431.658667pt;}
._30{width:451.018667pt;}
._2f{width:464.352000pt;}
._22{width:471.498667pt;}
._8{width:473.738667pt;}
._7{width:492.565333pt;}
._19{width:511.978667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:10.533333pt;}
.y61{bottom:27.360000pt;}
.y6e{bottom:40.920000pt;}
.y5c{bottom:48.866667pt;}
.y6d{bottom:63.960000pt;}
.y6c{bottom:87.000000pt;}
.y196{bottom:92.986667pt;}
.y159{bottom:93.466667pt;}
.yfd{bottom:95.200000pt;}
.yc3{bottom:95.560000pt;}
.ye1{bottom:95.693333pt;}
.y5d{bottom:101.880000pt;}
.y120{bottom:103.093333pt;}
.y6b{bottom:110.040000pt;}
.ya7{bottom:111.986667pt;}
.y1b5{bottom:112.440000pt;}
.y176{bottom:117.320000pt;}
.y13b{bottom:120.573333pt;}
.y8a{bottom:127.720000pt;}
.y6a{bottom:133.080000pt;}
.y63{bottom:136.200000pt;}
.y197{bottom:137.106667pt;}
.y15a{bottom:138.080000pt;}
.yfe{bottom:141.546667pt;}
.yc4{bottom:142.266667pt;}
.ye2{bottom:142.533333pt;}
.y5e{bottom:154.906667pt;}
.y69{bottom:156.120000pt;}
.y121{bottom:157.306667pt;}
.ya8{bottom:175.106667pt;}
.y1b6{bottom:176.013333pt;}
.y68{bottom:179.160000pt;}
.y198{bottom:181.226667pt;}
.y15b{bottom:182.680000pt;}
.y177{bottom:185.760000pt;}
.yff{bottom:187.880000pt;}
.yc5{bottom:188.960000pt;}
.ye3{bottom:189.360000pt;}
.y13c{bottom:192.293333pt;}
.y67{bottom:202.200000pt;}
.y8b{bottom:206.560000pt;}
.y5f{bottom:207.920000pt;}
.y122{bottom:211.533333pt;}
.y66{bottom:225.240000pt;}
.y199{bottom:225.346667pt;}
.y15c{bottom:227.280000pt;}
.y100{bottom:234.213333pt;}
.yc6{bottom:235.666667pt;}
.ye4{bottom:236.200000pt;}
.ya9{bottom:238.240000pt;}
.y1b7{bottom:239.586667pt;}
.y65{bottom:248.280000pt;}
.y178{bottom:254.213333pt;}
.y60{bottom:260.933333pt;}
.y13d{bottom:264.013333pt;}
.y123{bottom:265.760000pt;}
.y19a{bottom:269.466667pt;}
.y15d{bottom:271.893333pt;}
.y64{bottom:273.026667pt;}
.y6f{bottom:287.453333pt;}
.y4c{bottom:317.733333pt;}
.y4b{bottom:334.560000pt;}
.y58{bottom:348.120000pt;}
.y47{bottom:356.066667pt;}
.y57{bottom:371.160000pt;}
.y56{bottom:394.200000pt;}
.y1b0{bottom:399.106667pt;}
.ya1{bottom:400.853333pt;}
.y192{bottom:404.560000pt;}
.y119{bottom:410.840000pt;}
.ybf{bottom:411.253333pt;}
.y1ac{bottom:411.573333pt;}
.ydb{bottom:412.773333pt;}
.y84{bottom:414.720000pt;}
.y154{bottom:415.826667pt;}
.y136{bottom:416.866667pt;}
.y55{bottom:417.240000pt;}
.y170{bottom:418.786667pt;}
.yfa{bottom:422.760000pt;}
.ybc{bottom:424.373333pt;}
.y11d{bottom:424.520000pt;}
.y48{bottom:424.533333pt;}
.y18f{bottom:425.946667pt;}
.y87{bottom:428.786667pt;}
.y173{bottom:429.053333pt;}
.yde{bottom:430.053333pt;}
.y5a{bottom:430.560000pt;}
.y157{bottom:431.386667pt;}
.y139{bottom:431.760000pt;}
.yf8{bottom:435.573333pt;}
.ya5{bottom:437.266667pt;}
.y54{bottom:440.280000pt;}
.y1b1{bottom:442.133333pt;}
.y4d{bottom:443.400000pt;}
.ya2{bottom:445.626667pt;}
.y193{bottom:453.066667pt;}
.y53{bottom:463.320000pt;}
.y11a{bottom:465.626667pt;}
.yc0{bottom:466.440000pt;}
.y1ad{bottom:467.093333pt;}
.ydc{bottom:469.466667pt;}
.y85{bottom:473.373333pt;}
.y155{bottom:475.573333pt;}
.y137{bottom:477.680000pt;}
.y171{bottom:481.520000pt;}
.y1b2{bottom:485.173333pt;}
.y52{bottom:486.360000pt;}
.yfb{bottom:489.440000pt;}
.ya3{bottom:490.413333pt;}
.ybd{bottom:492.680000pt;}
.y11e{bottom:492.973333pt;}
.y49{bottom:493.000000pt;}
.y190{bottom:495.826667pt;}
.y88{bottom:501.493333pt;}
.y194{bottom:501.560000pt;}
.y174{bottom:502.026667pt;}
.ydf{bottom:504.053333pt;}
.y5b{bottom:505.040000pt;}
.y158{bottom:506.706667pt;}
.y13a{bottom:507.466667pt;}
.y51{bottom:509.400000pt;}
.yf9{bottom:515.066667pt;}
.ya6{bottom:518.466667pt;}
.y11b{bottom:520.400000pt;}
.yc1{bottom:521.613333pt;}
.y1ae{bottom:522.600000pt;}
.ydd{bottom:526.173333pt;}
.y1b3{bottom:528.213333pt;}
.y86{bottom:532.026667pt;}
.y50{bottom:532.440000pt;}
.ya4{bottom:535.186667pt;}
.y156{bottom:535.333333pt;}
.y138{bottom:538.480000pt;}
.y172{bottom:544.240000pt;}
.y195{bottom:550.066667pt;}
.y4f{bottom:555.480000pt;}
.yfc{bottom:556.133333pt;}
.ybe{bottom:560.986667pt;}
.y11f{bottom:561.426667pt;}
.y4a{bottom:561.453333pt;}
.y191{bottom:565.720000pt;}
.y1b4{bottom:571.253333pt;}
.y89{bottom:574.213333pt;}
.y175{bottom:575.013333pt;}
.y11c{bottom:575.186667pt;}
.yc2{bottom:576.800000pt;}
.ye0{bottom:578.040000pt;}
.y1af{bottom:578.120000pt;}
.y4e{bottom:580.226667pt;}
.y59{bottom:594.653333pt;}
.y35{bottom:624.933333pt;}
.y34{bottom:641.760000pt;}
.y41{bottom:655.320000pt;}
.y30{bottom:663.266667pt;}
.y40{bottom:678.360000pt;}
.y3f{bottom:701.400000pt;}
.y168{bottom:704.853333pt;}
.y10f{bottom:706.986667pt;}
.y114{bottom:707.546667pt;}
.y18b{bottom:710.213333pt;}
.y80{bottom:712.973333pt;}
.yd7{bottom:714.853333pt;}
.y187{bottom:715.080000pt;}
.y130{bottom:715.186667pt;}
.y43{bottom:715.226667pt;}
.yb8{bottom:715.426667pt;}
.y150{bottom:716.880000pt;}
.yf4{bottom:717.066667pt;}
.y14d{bottom:719.133333pt;}
.y9b{bottom:722.360000pt;}
.y16d{bottom:722.906667pt;}
.y3e{bottom:724.440000pt;}
.y1a9{bottom:725.933333pt;}
.y1a6{bottom:731.493333pt;}
.y31{bottom:731.880000pt;}
.yd4{bottom:733.400000pt;}
.yb5{bottom:734.920000pt;}
.y9e{bottom:735.373333pt;}
.y7d{bottom:737.506667pt;}
.yf2{bottom:738.293333pt;}
.y134{bottom:741.946667pt;}
.y169{bottom:746.440000pt;}
.y3d{bottom:747.480000pt;}
.y36{bottom:750.600000pt;}
.y110{bottom:750.720000pt;}
.y115{bottom:751.826667pt;}
.y18c{bottom:757.146667pt;}
.y81{bottom:762.680000pt;}
.yd8{bottom:766.426667pt;}
.y188{bottom:766.893333pt;}
.y131{bottom:767.120000pt;}
.y44{bottom:767.173333pt;}
.yb9{bottom:767.586667pt;}
.y151{bottom:770.506667pt;}
.y3c{bottom:770.520000pt;}
.yf5{bottom:770.866667pt;}
.y14e{bottom:775.000000pt;}
.y9c{bottom:781.466667pt;}
.y16e{bottom:782.533333pt;}
.y16a{bottom:788.026667pt;}
.y1aa{bottom:788.600000pt;}
.y3b{bottom:793.560000pt;}
.y111{bottom:794.440000pt;}
.y116{bottom:796.106667pt;}
.y1a7{bottom:799.706667pt;}
.y32{bottom:800.506667pt;}
.yd5{bottom:803.546667pt;}
.y18d{bottom:804.093333pt;}
.yb6{bottom:806.573333pt;}
.y9f{bottom:807.493333pt;}
.y7e{bottom:811.746667pt;}
.y82{bottom:812.400000pt;}
.yf3{bottom:813.320000pt;}
.y3a{bottom:816.600000pt;}
.yd9{bottom:818.013333pt;}
.y189{bottom:818.720000pt;}
.y132{bottom:819.040000pt;}
.y45{bottom:819.133333pt;}
.yba{bottom:819.746667pt;}
.y135{bottom:820.640000pt;}
.y152{bottom:824.120000pt;}
.yf6{bottom:824.666667pt;}
.y16b{bottom:829.613333pt;}
.y14f{bottom:830.880000pt;}
.y112{bottom:838.160000pt;}
.y39{bottom:839.640000pt;}
.y117{bottom:840.386667pt;}
.y9d{bottom:840.560000pt;}
.y16f{bottom:842.173333pt;}
.y18e{bottom:851.040000pt;}
.y1ab{bottom:851.266667pt;}
.y83{bottom:862.106667pt;}
.y38{bottom:862.680000pt;}
.y1a8{bottom:867.933333pt;}
.y33{bottom:869.120000pt;}
.yda{bottom:869.600000pt;}
.y18a{bottom:870.533333pt;}
.y133{bottom:870.960000pt;}
.y46{bottom:871.093333pt;}
.y16c{bottom:871.200000pt;}
.ybb{bottom:871.906667pt;}
.yd6{bottom:873.680000pt;}
.y153{bottom:877.733333pt;}
.yb7{bottom:878.226667pt;}
.yf7{bottom:878.480000pt;}
.ya0{bottom:879.600000pt;}
.y113{bottom:881.893333pt;}
.y118{bottom:884.666667pt;}
.y7f{bottom:885.986667pt;}
.y37{bottom:887.426667pt;}
.y42{bottom:901.853333pt;}
.y1d{bottom:932.133333pt;}
.y1c{bottom:948.960000pt;}
.y29{bottom:962.520000pt;}
.y17{bottom:970.466667pt;}
.y28{bottom:985.560000pt;}
.y27{bottom:1008.600000pt;}
.y2b{bottom:1013.160000pt;}
.y148{bottom:1014.360000pt;}
.y108{bottom:1017.666667pt;}
.y1a0{bottom:1023.280000pt;}
.y95{bottom:1023.346667pt;}
.y18{bottom:1023.786667pt;}
.yef{bottom:1026.386667pt;}
.yd1{bottom:1026.546667pt;}
.y10c{bottom:1028.826667pt;}
.yec{bottom:1028.920000pt;}
.y145{bottom:1029.973333pt;}
.y26{bottom:1031.640000pt;}
.y162{bottom:1031.866667pt;}
.y7a{bottom:1033.093333pt;}
.yb0{bottom:1033.360000pt;}
.y165{bottom:1033.386667pt;}
.y184{bottom:1034.586667pt;}
.y181{bottom:1036.120000pt;}
.y12d{bottom:1039.413333pt;}
.yce{bottom:1040.240000pt;}
.y1a4{bottom:1040.880000pt;}
.y77{bottom:1044.680000pt;}
.y12b{bottom:1048.026667pt;}
.y99{bottom:1048.680000pt;}
.yb3{bottom:1052.680000pt;}
.y25{bottom:1054.680000pt;}
.y2c{bottom:1055.853333pt;}
.y1e{bottom:1057.800000pt;}
.y149{bottom:1058.253333pt;}
.y109{bottom:1064.866667pt;}
.y1a1{bottom:1076.080000pt;}
.y96{bottom:1076.226667pt;}
.y19{bottom:1077.120000pt;}
.y24{bottom:1077.720000pt;}
.yf0{bottom:1082.320000pt;}
.yd2{bottom:1082.626667pt;}
.y10d{bottom:1087.186667pt;}
.yed{bottom:1087.373333pt;}
.y146{bottom:1089.480000pt;}
.y163{bottom:1093.280000pt;}
.y7b{bottom:1095.733333pt;}
.yb1{bottom:1096.266667pt;}
.y166{bottom:1096.293333pt;}
.y2d{bottom:1098.533333pt;}
.y185{bottom:1098.720000pt;}
.y23{bottom:1100.760000pt;}
.y182{bottom:1101.760000pt;}
.y14a{bottom:1102.146667pt;}
.y12e{bottom:1108.360000pt;}
.ycf{bottom:1110.026667pt;}
.y1a5{bottom:1111.280000pt;}
.y10a{bottom:1112.066667pt;}
.y78{bottom:1118.880000pt;}
.y22{bottom:1123.800000pt;}
.y12c{bottom:1125.586667pt;}
.y9a{bottom:1126.893333pt;}
.y1a2{bottom:1128.893333pt;}
.y97{bottom:1129.106667pt;}
.y1a{bottom:1130.440000pt;}
.yb4{bottom:1134.893333pt;}
.yf1{bottom:1138.240000pt;}
.yd3{bottom:1138.706667pt;}
.y2e{bottom:1141.226667pt;}
.y10e{bottom:1145.546667pt;}
.yee{bottom:1145.826667pt;}
.y14b{bottom:1146.053333pt;}
.y21{bottom:1146.840000pt;}
.y147{bottom:1148.986667pt;}
.y164{bottom:1154.680000pt;}
.y7c{bottom:1158.360000pt;}
.yb2{bottom:1159.160000pt;}
.y167{bottom:1159.213333pt;}
.y10b{bottom:1159.266667pt;}
.y186{bottom:1162.840000pt;}
.y183{bottom:1167.413333pt;}
.y20{bottom:1169.880000pt;}
.y12f{bottom:1177.306667pt;}
.yd0{bottom:1179.800000pt;}
.y1a3{bottom:1181.693333pt;}
.y98{bottom:1181.986667pt;}
.y1b{bottom:1183.760000pt;}
.y2f{bottom:1183.920000pt;}
.y14c{bottom:1189.946667pt;}
.y79{bottom:1193.093333pt;}
.y1f{bottom:1194.626667pt;}
.y2a{bottom:1209.053333pt;}
.y6{bottom:1239.333333pt;}
.y5{bottom:1256.160000pt;}
.y12{bottom:1269.720000pt;}
.y1{bottom:1277.666667pt;}
.y11{bottom:1292.760000pt;}
.y10{bottom:1315.800000pt;}
.y8c{bottom:1320.200000pt;}
.y179{bottom:1321.413333pt;}
.y124{bottom:1324.746667pt;}
.y13e{bottom:1325.080000pt;}
.ye5{bottom:1330.533333pt;}
.y73{bottom:1330.666667pt;}
.y91{bottom:1332.000000pt;}
.yc7{bottom:1333.293333pt;}
.y101{bottom:1333.400000pt;}
.y2{bottom:1334.546667pt;}
.yad{bottom:1335.853333pt;}
.yaa{bottom:1336.493333pt;}
.ycb{bottom:1336.800000pt;}
.y142{bottom:1338.053333pt;}
.y105{bottom:1338.640000pt;}
.yf{bottom:1338.840000pt;}
.y14{bottom:1341.786667pt;}
.y70{bottom:1342.160000pt;}
.y128{bottom:1345.600000pt;}
.y19d{bottom:1347.986667pt;}
.y17e{bottom:1348.813333pt;}
.ye9{bottom:1351.906667pt;}
.y160{bottom:1353.800000pt;}
.y15e{bottom:1354.626667pt;}
.y19b{bottom:1355.013333pt;}
.ye{bottom:1361.880000pt;}
.y8d{bottom:1362.733333pt;}
.y7{bottom:1365.000000pt;}
.y17a{bottom:1365.173333pt;}
.y125{bottom:1371.826667pt;}
.y13f{bottom:1372.506667pt;}
.ye6{bottom:1383.400000pt;}
.y74{bottom:1383.666667pt;}
.yd{bottom:1384.920000pt;}
.y92{bottom:1386.346667pt;}
.yc8{bottom:1388.933333pt;}
.y102{bottom:1389.120000pt;}
.y3{bottom:1391.426667pt;}
.yae{bottom:1394.053333pt;}
.yab{bottom:1395.306667pt;}
.ycc{bottom:1395.933333pt;}
.y143{bottom:1398.426667pt;}
.y106{bottom:1399.613333pt;}
.y8e{bottom:1405.266667pt;}
.y15{bottom:1405.893333pt;}
.y71{bottom:1406.640000pt;}
.yc{bottom:1407.960000pt;}
.y17b{bottom:1408.920000pt;}
.y129{bottom:1413.533333pt;}
.y19e{bottom:1418.306667pt;}
.y126{bottom:1418.906667pt;}
.y140{bottom:1419.933333pt;}
.y17f{bottom:1419.960000pt;}
.yea{bottom:1426.133333pt;}
.y161{bottom:1429.933333pt;}
.yb{bottom:1431.000000pt;}
.y15f{bottom:1431.600000pt;}
.y19c{bottom:1432.360000pt;}
.ye7{bottom:1436.280000pt;}
.y75{bottom:1436.666667pt;}
.y93{bottom:1440.680000pt;}
.yc9{bottom:1444.560000pt;}
.y103{bottom:1444.853333pt;}
.y8f{bottom:1447.786667pt;}
.y4{bottom:1448.306667pt;}
.yaf{bottom:1452.240000pt;}
.y17c{bottom:1452.680000pt;}
.ya{bottom:1454.040000pt;}
.yac{bottom:1454.133333pt;}
.ycd{bottom:1455.053333pt;}
.y144{bottom:1458.813333pt;}
.y107{bottom:1460.573333pt;}
.y127{bottom:1466.000000pt;}
.y141{bottom:1467.346667pt;}
.y16{bottom:1470.013333pt;}
.y72{bottom:1471.133333pt;}
.y9{bottom:1477.080000pt;}
.y12a{bottom:1481.466667pt;}
.y19f{bottom:1488.626667pt;}
.ye8{bottom:1489.146667pt;}
.y76{bottom:1489.680000pt;}
.y90{bottom:1490.320000pt;}
.y180{bottom:1491.093333pt;}
.y94{bottom:1495.026667pt;}
.y17d{bottom:1496.426667pt;}
.yca{bottom:1500.200000pt;}
.yeb{bottom:1500.373333pt;}
.y104{bottom:1500.586667pt;}
.y8{bottom:1501.826667pt;}
.y13{bottom:1516.253333pt;}
.h1{height:50.062500pt;}
.h2{height:61.187500pt;}
.h3{height:72.312500pt;}
.h0{height:1536.000000pt;}
.w0{width:1152.000000pt;}
.x0{left:0.000000pt;}
.x4{left:17.840000pt;}
.x1{left:24.720000pt;}
.x10{left:31.386667pt;}
.x2e{left:38.066667pt;}
.x13{left:44.640000pt;}
.x5e{left:45.613333pt;}
.x7{left:47.973333pt;}
.x63{left:50.200000pt;}
.x31{left:51.306667pt;}
.x57{left:52.453333pt;}
.x62{left:54.013333pt;}
.x19{left:55.640000pt;}
.x1e{left:58.333333pt;}
.x42{left:60.066667pt;}
.x1b{left:61.320000pt;}
.x40{left:64.986667pt;}
.x2f{left:66.720000pt;}
.x20{left:67.986667pt;}
.x35{left:69.440000pt;}
.x5a{left:74.333333pt;}
.x44{left:75.586667pt;}
.x3a{left:77.333333pt;}
.x29{left:80.200000pt;}
.x60{left:83.760000pt;}
.x59{left:93.533333pt;}
.x5c{left:95.573333pt;}
.x4b{left:96.746667pt;}
.x3c{left:98.653333pt;}
.x37{left:100.653333pt;}
.x21{left:102.106667pt;}
.x68{left:108.533333pt;}
.x64{left:111.520000pt;}
.x2{left:117.480000pt;}
.x2c{left:121.920000pt;}
.x17{left:124.093333pt;}
.x38{left:125.586667pt;}
.x50{left:127.333333pt;}
.x47{left:130.320000pt;}
.x66{left:139.786667pt;}
.x27{left:140.933333pt;}
.x4e{left:142.800000pt;}
.x52{left:146.746667pt;}
.x11{left:150.160000pt;}
.x33{left:155.866667pt;}
.x49{left:218.160000pt;}
.x12{left:221.493333pt;}
.x3{left:223.173333pt;}
.x30{left:224.840000pt;}
.x1a{left:225.760000pt;}
.x3f{left:227.600000pt;}
.x1f{left:229.093333pt;}
.x67{left:232.440000pt;}
.x5{left:448.000000pt;}
.x6{left:478.346667pt;}
.xc{left:593.840000pt;}
.x9{left:600.720000pt;}
.x8{left:607.386667pt;}
.x34{left:608.560000pt;}
.x22{left:614.066667pt;}
.x32{left:618.280000pt;}
.x1c{left:619.546667pt;}
.xf{left:620.640000pt;}
.x46{left:623.040000pt;}
.x16{left:623.973333pt;}
.x56{left:624.920000pt;}
.x51{left:625.853333pt;}
.x25{left:627.306667pt;}
.x4c{left:628.800000pt;}
.x3e{left:630.640000pt;}
.x53{left:632.813333pt;}
.x18{left:637.826667pt;}
.x3b{left:641.253333pt;}
.x48{left:649.186667pt;}
.x58{left:654.400000pt;}
.x4f{left:656.040000pt;}
.x28{left:664.773333pt;}
.x61{left:669.000000pt;}
.x5b{left:673.306667pt;}
.x2a{left:674.293333pt;}
.x43{left:675.320000pt;}
.x45{left:678.786667pt;}
.x5f{left:681.893333pt;}
.x23{left:684.680000pt;}
.x4d{left:689.253333pt;}
.x65{left:695.106667pt;}
.xa{left:698.986667pt;}
.x5d{left:701.360000pt;}
.x39{left:703.946667pt;}
.x55{left:706.026667pt;}
.x2d{left:709.013333pt;}
.x14{left:710.600000pt;}
.x54{left:714.213333pt;}
.x26{left:716.200000pt;}
.x4a{left:721.173333pt;}
.x36{left:730.960000pt;}
.x2b{left:790.080000pt;}
.x1d{left:793.426667pt;}
.x41{left:795.093333pt;}
.xb{left:797.493333pt;}
.x15{left:799.173333pt;}
.x24{left:800.840000pt;}
.x3d{left:802.506667pt;}
.xd{left:1024.000000pt;}
.xe{left:1054.346667pt;}
}




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