
    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_089f5851d79b7407f96873af.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_18b53a3ee90e34bcdf034175.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_c08c401689d4a1490660d12e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_cdcf634900ac80b2299d32ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_956f59f0a16ab01ff763cd5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.041625px;}
.ls4{letter-spacing:0.425781px;}
.ls1{letter-spacing:0.523498px;}
.ls6{letter-spacing:14.006900px;}
.ls8{letter-spacing:15.446900px;}
.lsc{letter-spacing:18.326900px;}
.ls7{letter-spacing:34.166900px;}
.ls3{letter-spacing:37.766900px;}
.lsa{letter-spacing:41.366900px;}
.ls5{letter-spacing:56.486900px;}
.ls2{letter-spacing:56.607242px;}
.lsb{letter-spacing:60.806900px;}
.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;}
}
.ws2{word-spacing:-81.996750px;}
.ws1{word-spacing:-20.499188px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-2.869958px;}
._1{margin-left:-1.311981px;}
._0{width:1.967971px;}
._30{width:3.144588px;}
._12{width:4.170303px;}
._1e{width:5.600372px;}
._1c{width:6.611499px;}
._25{width:7.649704px;}
._10{width:8.787425px;}
._11{width:10.112875px;}
._24{width:11.228734px;}
._22{width:12.547778px;}
._23{width:14.165899px;}
._c{width:15.454498px;}
._b{width:17.219958px;}
._18{width:18.341246px;}
._51{width:19.431308px;}
._f{width:21.578935px;}
._6{width:23.187784px;}
._7{width:24.608347px;}
._1d{width:25.798901px;}
._26{width:27.865763px;}
._d{width:29.462457px;}
._e{width:30.624201px;}
._1f{width:32.207427px;}
._15{width:33.978060px;}
._2f{width:35.501069px;}
._4c{width:36.609482px;}
._19{width:37.637789px;}
._43{width:38.856210px;}
._32{width:40.355632px;}
._31{width:41.883043px;}
._39{width:43.489026px;}
._34{width:45.334274px;}
._35{width:46.660988px;}
._2e{width:47.951763px;}
._16{width:49.198050px;}
._17{width:50.318818px;}
._5a{width:51.359113px;}
._36{width:52.409088px;}
._8{width:53.722925px;}
._45{width:55.106654px;}
._55{width:56.724389px;}
._3a{width:58.068112px;}
._3b{width:59.553045px;}
._49{width:60.673398px;}
._1b{width:61.977084px;}
._1a{width:63.790269px;}
._53{width:64.823572px;}
._3d{width:65.947167px;}
._3e{width:67.552880px;}
._38{width:69.572984px;}
._37{width:70.846506px;}
._46{width:72.044345px;}
._29{width:73.550157px;}
._2a{width:74.836111px;}
._2b{width:76.810168px;}
._47{width:78.907785px;}
._48{width:80.193495px;}
._2d{width:81.417681px;}
._2c{width:82.458015px;}
._33{width:83.566539px;}
._4d{width:84.792647px;}
._44{width:87.148307px;}
._5{width:88.427083px;}
._4{width:89.546255px;}
._28{width:90.909390px;}
._27{width:92.820664px;}
._21{width:94.550597px;}
._20{width:95.876975px;}
._5b{width:96.944214px;}
._3f{width:98.144400px;}
._52{width:101.751257px;}
._58{width:103.807886px;}
._59{width:104.828394px;}
._4f{width:108.158197px;}
._50{width:110.735098px;}
._4e{width:117.183877px;}
._4a{width:118.525495px;}
._14{width:119.866773px;}
._13{width:121.600573px;}
._40{width:122.882363px;}
._4b{width:125.701018px;}
._3c{width:144.292533px;}
._9{width:150.689243px;}
._a{width:151.793950px;}
._57{width:159.005504px;}
._56{width:160.093209px;}
._42{width:173.901046px;}
._41{width:175.098968px;}
._54{width:180.689768px;}
._3{width:819.824073px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:58.168800px;}
.fs3{font-size:64.476000px;}
.fs4{font-size:81.990450px;}
.fs1{font-size:81.996750px;}
.fs0{font-size:81.998807px;}
.y0{bottom:0.000000px;}
.y112{bottom:84.600000px;}
.y194{bottom:164.520000px;}
.y161{bottom:168.840000px;}
.y1b{bottom:176.035460px;}
.y16e{bottom:179.100000px;}
.y18e{bottom:182.340000px;}
.y42{bottom:184.140000px;}
.y111{bottom:189.360000px;}
.y146{bottom:190.080000px;}
.y176{bottom:191.520000px;}
.y160{bottom:195.840000px;}
.yab{bottom:197.640000px;}
.y1a{bottom:199.620628px;}
.y16d{bottom:206.280000px;}
.y41{bottom:207.540000px;}
.y18d{bottom:209.340000px;}
.y90{bottom:211.500000px;}
.yc9{bottom:213.480000px;}
.y110{bottom:216.360000px;}
.y145{bottom:217.260000px;}
.y175{bottom:218.700000px;}
.y1a4{bottom:220.680000px;}
.y15f{bottom:222.840000px;}
.y19{bottom:223.011858px;}
.yaa{bottom:224.820000px;}
.ye1{bottom:226.620000px;}
.y40{bottom:231.120000px;}
.y16c{bottom:233.280000px;}
.y18c{bottom:236.340000px;}
.y8f{bottom:238.680000px;}
.yc8{bottom:240.300000px;}
.y10f{bottom:243.360000px;}
.y144{bottom:245.700000px;}
.y18{bottom:246.415601px;}
.y1a3{bottom:247.680000px;}
.y15e{bottom:250.020000px;}
.ya9{bottom:253.080000px;}
.ye0{bottom:253.620000px;}
.y3f{bottom:254.520000px;}
.y16b{bottom:260.100000px;}
.y18b{bottom:263.520000px;}
.y8e{bottom:265.680000px;}
.yc7{bottom:267.480000px;}
.y17{bottom:269.994512px;}
.y10e{bottom:270.540000px;}
.y193{bottom:272.160000px;}
.y196{bottom:272.340000px;}
.y143{bottom:272.700000px;}
.y1a2{bottom:274.860000px;}
.y15d{bottom:277.020000px;}
.y3e{bottom:278.100000px;}
.ya8{bottom:280.080000px;}
.ydf{bottom:282.060000px;}
.y16a{bottom:287.280000px;}
.y18a{bottom:290.520000px;}
.y8d{bottom:292.500000px;}
.y16{bottom:293.398255px;}
.yc6{bottom:294.480000px;}
.y10d{bottom:297.540000px;}
.y192{bottom:299.160000px;}
.y142{bottom:299.700000px;}
.y3d{bottom:301.500000px;}
.y1a1{bottom:301.860000px;}
.y15c{bottom:304.200000px;}
.ya7{bottom:307.260000px;}
.yde{bottom:309.240000px;}
.y19e{bottom:313.740000px;}
.y169{bottom:314.280000px;}
.y15{bottom:317.152334px;}
.y189{bottom:317.160000px;}
.y8c{bottom:319.680000px;}
.yc5{bottom:321.480000px;}
.y10c{bottom:324.540000px;}
.y3c{bottom:325.080000px;}
.y141{bottom:326.700000px;}
.y1a0{bottom:328.860000px;}
.y15b{bottom:332.460000px;}
.ya6{bottom:334.260000px;}
.ydd{bottom:337.680000px;}
.y14{bottom:340.556077px;}
.y168{bottom:341.280000px;}
.y8b{bottom:346.680000px;}
.y3b{bottom:348.660000px;}
.y11b{bottom:351.000000px;}
.y10b{bottom:351.540000px;}
.y140{bottom:353.160000px;}
.y174{bottom:353.700000px;}
.y19d{bottom:355.860000px;}
.y188{bottom:359.100000px;}
.y15a{bottom:359.640000px;}
.ya5{bottom:361.260000px;}
.y13{bottom:364.134988px;}
.ydc{bottom:364.860000px;}
.y167{bottom:368.280000px;}
.yf9{bottom:371.340000px;}
.y3a{bottom:372.060000px;}
.y8a{bottom:373.680000px;}
.yc4{bottom:375.660000px;}
.y11a{bottom:378.000000px;}
.y10a{bottom:378.540000px;}
.y173{bottom:380.700000px;}
.y19c{bottom:383.040000px;}
.y187{bottom:386.100000px;}
.y12{bottom:387.538731px;}
.ya4{bottom:387.900000px;}
.y159{bottom:388.080000px;}
.ydb{bottom:393.120000px;}
.y13f{bottom:395.460000px;}
.y39{bottom:395.640000px;}
.yf8{bottom:398.160000px;}
.y89{bottom:400.680000px;}
.yc3{bottom:402.660000px;}
.y109{bottom:405.540000px;}
.y172{bottom:407.880000px;}
.y19b{bottom:410.040000px;}
.y11{bottom:410.929962px;}
.y186{bottom:413.100000px;}
.y158{bottom:416.520000px;}
.y38{bottom:419.040000px;}
.yda{bottom:420.300000px;}
.y13e{bottom:422.460000px;}
.y5f{bottom:424.080000px;}
.yf7{bottom:425.160000px;}
.y88{bottom:427.860000px;}
.yc2{bottom:429.660000px;}
.y108{bottom:432.540000px;}
.y10{bottom:434.515129px;}
.y171{bottom:434.880000px;}
.y19a{bottom:437.040000px;}
.y185{bottom:440.280000px;}
.y37{bottom:442.620000px;}
.y157{bottom:443.700000px;}
.yd9{bottom:448.740000px;}
.y13d{bottom:449.460000px;}
.ya3{bottom:450.360000px;}
.y5e{bottom:451.080000px;}
.yf6{bottom:452.340000px;}
.y87{bottom:454.860000px;}
.yc1{bottom:456.840000px;}
.yf{bottom:457.374599px;}
.y107{bottom:459.540000px;}
.y170{bottom:461.520000px;}
.y199{bottom:464.040000px;}
.y36{bottom:466.020000px;}
.y184{bottom:467.280000px;}
.y156{bottom:471.960000px;}
.y5d{bottom:474.660000px;}
.yd8{bottom:475.920000px;}
.y13c{bottom:476.460000px;}
.ya2{bottom:477.360000px;}
.yf5{bottom:479.340000px;}
.ye{bottom:481.679207px;}
.y86{bottom:481.860000px;}
.yc0{bottom:483.660000px;}
.y106{bottom:486.720000px;}
.y35{bottom:489.600000px;}
.y198{bottom:491.040000px;}
.y183{bottom:494.280000px;}
.y5c{bottom:498.060000px;}
.y155{bottom:499.140000px;}
.y13b{bottom:503.460000px;}
.yd7{bottom:504.180000px;}
.ya1{bottom:504.360000px;}
.yd{bottom:505.070438px;}
.yf4{bottom:506.340000px;}
.y85{bottom:509.040000px;}
.ybf{bottom:510.660000px;}
.y34{bottom:513.180000px;}
.y105{bottom:513.720000px;}
.y190{bottom:518.040000px;}
.y5b{bottom:521.100000px;}
.y182{bottom:521.280000px;}
.y154{bottom:526.140000px;}
.yc{bottom:528.655605px;}
.y166{bottom:529.920000px;}
.y13a{bottom:530.460000px;}
.yd6{bottom:531.180000px;}
.ya0{bottom:531.540000px;}
.yf3{bottom:533.340000px;}
.y84{bottom:535.860000px;}
.y33{bottom:536.580000px;}
.ybe{bottom:537.840000px;}
.y104{bottom:540.720000px;}
.y5a{bottom:545.040000px;}
.y181{bottom:548.460000px;}
.yb{bottom:552.059348px;}
.y153{bottom:553.140000px;}
.y139{bottom:557.460000px;}
.yd5{bottom:558.360000px;}
.y9f{bottom:558.540000px;}
.y32{bottom:560.160000px;}
.yf2{bottom:560.520000px;}
.y83{bottom:562.860000px;}
.ybd{bottom:564.840000px;}
.y71{bottom:566.460000px;}
.y103{bottom:567.900000px;}
.y59{bottom:568.620000px;}
.ya{bottom:570.595913px;}
.y165{bottom:572.220000px;}
.y180{bottom:575.280000px;}
.y152{bottom:580.320000px;}
.y31{bottom:583.560000px;}
.y18f{bottom:584.100000px;}
.y138{bottom:584.640000px;}
.y9e{bottom:585.540000px;}
.yd4{bottom:586.800000px;}
.yf1{bottom:587.520000px;}
.y82{bottom:589.860000px;}
.ybc{bottom:591.840000px;}
.y58{bottom:592.200000px;}
.y70{bottom:593.640000px;}
.y102{bottom:594.720000px;}
.y125{bottom:596.340000px;}
.y164{bottom:599.220000px;}
.y17f{bottom:602.280000px;}
.y30{bottom:607.140000px;}
.y151{bottom:607.320000px;}
.y137{bottom:611.640000px;}
.y9d{bottom:612.720000px;}
.yd3{bottom:613.980000px;}
.y57{bottom:615.600000px;}
.yf0{bottom:615.960000px;}
.y81{bottom:617.040000px;}
.ybb{bottom:619.020000px;}
.y101{bottom:621.720000px;}
.y6f{bottom:622.080000px;}
.y124{bottom:624.780000px;}
.y163{bottom:626.220000px;}
.y17e{bottom:629.460000px;}
.y2f{bottom:630.540000px;}
.y150{bottom:634.140000px;}
.y136{bottom:638.640000px;}
.y56{bottom:639.180000px;}
.y9c{bottom:639.720000px;}
.yd2{bottom:642.240000px;}
.yef{bottom:642.960000px;}
.y80{bottom:644.040000px;}
.yba{bottom:647.280000px;}
.y100{bottom:648.180000px;}
.y119{bottom:648.720000px;}
.y6e{bottom:650.520000px;}
.y123{bottom:651.960000px;}
.y162{bottom:653.400000px;}
.y2e{bottom:654.120000px;}
.y17d{bottom:656.460000px;}
.y14f{bottom:661.140000px;}
.y55{bottom:662.580000px;}
.y19f{bottom:665.280000px;}
.y135{bottom:665.640000px;}
.y9b{bottom:666.720000px;}
.yd1{bottom:669.420000px;}
.y7f{bottom:671.040000px;}
.yee{bottom:671.580000px;}
.yb9{bottom:675.900000px;}
.y2d{bottom:677.700000px;}
.y6d{bottom:679.140000px;}
.y122{bottom:680.220000px;}
.y17c{bottom:683.460000px;}
.y54{bottom:686.160000px;}
.y14e{bottom:688.320000px;}
.y134{bottom:692.820000px;}
.y9a{bottom:695.160000px;}
.yd0{bottom:697.860000px;}
.y7e{bottom:698.040000px;}
.yed{bottom:698.580000px;}
.y2c{bottom:701.100000px;}
.yff{bottom:702.900000px;}
.yb8{bottom:704.340000px;}
.y121{bottom:707.220000px;}
.y6c{bottom:707.580000px;}
.y53{bottom:709.740000px;}
.y17b{bottom:710.460000px;}
.y14d{bottom:714.780000px;}
.y133{bottom:719.640000px;}
.y99{bottom:722.160000px;}
.y2b{bottom:724.680000px;}
.ycf{bottom:725.040000px;}
.y7d{bottom:725.220000px;}
.yec{bottom:727.020000px;}
.y118{bottom:729.900000px;}
.yfe{bottom:730.080000px;}
.yb7{bottom:731.520000px;}
.y52{bottom:733.140000px;}
.y120{bottom:734.220000px;}
.y6b{bottom:736.020000px;}
.y17a{bottom:737.640000px;}
.y195{bottom:746.280000px;}
.y132{bottom:746.640000px;}
.y2a{bottom:748.080000px;}
.y98{bottom:750.780000px;}
.y7c{bottom:752.220000px;}
.yce{bottom:753.300000px;}
.yeb{bottom:754.020000px;}
.y51{bottom:756.720000px;}
.y117{bottom:757.080000px;}
.yfd{bottom:758.520000px;}
.yb6{bottom:759.780000px;}
.y197{bottom:760.860000px;}
.y11f{bottom:761.400000px;}
.y6a{bottom:764.640000px;}
.y29{bottom:771.660000px;}
.y131{bottom:773.820000px;}
.y97{bottom:777.780000px;}
.y7b{bottom:779.040000px;}
.y50{bottom:780.120000px;}
.ycd{bottom:780.300000px;}
.yea{bottom:781.020000px;}
.y116{bottom:784.080000px;}
.yfc{bottom:785.520000px;}
.yb5{bottom:786.960000px;}
.y11e{bottom:788.400000px;}
.y179{bottom:791.640000px;}
.y69{bottom:793.080000px;}
.y28{bottom:795.240000px;}
.y130{bottom:800.820000px;}
.y4f{bottom:803.700000px;}
.y7a{bottom:806.220000px;}
.ycc{bottom:807.300000px;}
.ye9{bottom:808.200000px;}
.y115{bottom:810.540000px;}
.y14c{bottom:811.080000px;}
.yb4{bottom:813.960000px;}
.y11d{bottom:815.400000px;}
.y27{bottom:818.640000px;}
.y68{bottom:821.520000px;}
.y4e{bottom:827.100000px;}
.y12f{bottom:827.820000px;}
.y79{bottom:833.220000px;}
.ycb{bottom:834.480000px;}
.ye8{bottom:836.640000px;}
.y114{bottom:837.900000px;}
.yb3{bottom:840.960000px;}
.y26{bottom:842.220000px;}
.yfb{bottom:842.400000px;}
.y178{bottom:845.640000px;}
.y67{bottom:850.140000px;}
.y4d{bottom:850.680000px;}
.y191{bottom:854.460000px;}
.y12e{bottom:854.820000px;}
.y78{bottom:860.220000px;}
.yca{bottom:860.940000px;}
.ye7{bottom:863.820000px;}
.y113{bottom:865.080000px;}
.y25{bottom:865.620000px;}
.yb2{bottom:867.960000px;}
.y11c{bottom:869.040000px;}
.y96{bottom:869.580000px;}
.y177{bottom:872.100000px;}
.y4c{bottom:874.260000px;}
.y66{bottom:878.580000px;}
.y12d{bottom:882.000000px;}
.y77{bottom:887.220000px;}
.y24{bottom:889.200000px;}
.ye6{bottom:892.080000px;}
.yb1{bottom:894.600000px;}
.y95{bottom:896.580000px;}
.y9{bottom:897.658995px;}
.y4b{bottom:897.660000px;}
.y65{bottom:907.020000px;}
.y12c{bottom:909.000000px;}
.y23{bottom:913.320000px;}
.y76{bottom:914.400000px;}
.y14b{bottom:919.080000px;}
.ye5{bottom:920.700000px;}
.y8{bottom:921.061487px;}
.y4a{bottom:921.240000px;}
.yb0{bottom:921.600000px;}
.y94{bottom:923.400000px;}
.y64{bottom:935.640000px;}
.y12b{bottom:936.000000px;}
.y22{bottom:937.620000px;}
.y75{bottom:941.400000px;}
.y7{bottom:944.453969px;}
.y49{bottom:944.640000px;}
.y14a{bottom:946.260000px;}
.ye4{bottom:947.700000px;}
.yaf{bottom:948.600000px;}
.y93{bottom:950.580000px;}
.y21{bottom:961.200000px;}
.y12a{bottom:963.000000px;}
.y63{bottom:963.900000px;}
.y6{bottom:968.036633px;}
.y48{bottom:968.220000px;}
.y74{bottom:968.400000px;}
.y149{bottom:974.700000px;}
.yae{bottom:976.140000px;}
.y92{bottom:977.580000px;}
.y20{bottom:984.600000px;}
.y129{bottom:990.000000px;}
.y5{bottom:990.898605px;}
.y47{bottom:991.620000px;}
.y62{bottom:992.520000px;}
.y73{bottom:995.580000px;}
.y148{bottom:1001.700000px;}
.yad{bottom:1003.140000px;}
.y91{bottom:1004.580000px;}
.y1f{bottom:1008.180000px;}
.y4{bottom:1014.661443px;}
.y46{bottom:1015.200000px;}
.y16f{bottom:1016.460000px;}
.y128{bottom:1017.000000px;}
.y61{bottom:1021.140000px;}
.y72{bottom:1022.400000px;}
.y147{bottom:1028.700000px;}
.yac{bottom:1030.140000px;}
.y1e{bottom:1031.580000px;}
.y3{bottom:1038.594445px;}
.y45{bottom:1038.780000px;}
.y127{bottom:1044.000000px;}
.ye3{bottom:1057.140000px;}
.yfa{bottom:1058.220000px;}
.y1d{bottom:1058.760000px;}
.y60{bottom:1062.000000px;}
.y2{bottom:1062.177109px;}
.y44{bottom:1062.180000px;}
.y126{bottom:1070.640000px;}
.ye2{bottom:1084.320000px;}
.y1{bottom:1085.039081px;}
.y1c{bottom:1085.220000px;}
.y43{bottom:1085.760000px;}
.h7{height:42.973506px;}
.h4{height:55.572016px;}
.h3{height:55.573410px;}
.ha{height:56.968950px;}
.h5{height:56.973328px;}
.h2{height:56.974757px;}
.h6{height:59.853328px;}
.h8{height:892.980000px;}
.h9{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2{width:1262.880000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.x13{left:121.140000px;}
.x5{left:131.584098px;}
.x8{left:153.004300px;}
.x3{left:155.336499px;}
.xd{left:157.680000px;}
.xf{left:162.540000px;}
.xc{left:172.800000px;}
.xe{left:183.960000px;}
.x12{left:188.820000px;}
.x10{left:193.680000px;}
.x9{left:232.739499px;}
.xa{left:260.455638px;}
.x1{left:275.039392px;}
.x7{left:338.218978px;}
.x4{left:351.001032px;}
.xb{left:377.996492px;}
.x2{left:446.941515px;}
.x6{left:762.300183px;}
.x11{left:1116.180000px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.037000pt;}
.ls4{letter-spacing:0.378472pt;}
.ls1{letter-spacing:0.465331pt;}
.ls6{letter-spacing:12.450578pt;}
.ls8{letter-spacing:13.730578pt;}
.lsc{letter-spacing:16.290578pt;}
.ls7{letter-spacing:30.370578pt;}
.ls3{letter-spacing:33.570578pt;}
.lsa{letter-spacing:36.770578pt;}
.ls5{letter-spacing:50.210578pt;}
.ls2{letter-spacing:50.317549pt;}
.lsb{letter-spacing:54.050578pt;}
.ws2{word-spacing:-72.886000pt;}
.ws1{word-spacing:-18.221500pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-2.551074pt;}
._1{margin-left:-1.166205pt;}
._0{width:1.749308pt;}
._30{width:2.795190pt;}
._12{width:3.706936pt;}
._1e{width:4.978109pt;}
._1c{width:5.876888pt;}
._25{width:6.799737pt;}
._10{width:7.811045pt;}
._11{width:8.989222pt;}
._24{width:9.981097pt;}
._22{width:11.153580pt;}
._23{width:12.591911pt;}
._c{width:13.737332pt;}
._b{width:15.306629pt;}
._18{width:16.303330pt;}
._51{width:17.272274pt;}
._f{width:19.181275pt;}
._6{width:20.611364pt;}
._7{width:21.874086pt;}
._1d{width:22.932356pt;}
._26{width:24.769567pt;}
._d{width:26.188851pt;}
._e{width:27.221512pt;}
._1f{width:28.628824pt;}
._15{width:30.202720pt;}
._2f{width:31.556506pt;}
._4c{width:32.541762pt;}
._19{width:33.455813pt;}
._43{width:34.538853pt;}
._32{width:35.871673pt;}
._31{width:37.229372pt;}
._39{width:38.656912pt;}
._34{width:40.297132pt;}
._35{width:41.476434pt;}
._2e{width:42.623790pt;}
._16{width:43.731600pt;}
._17{width:44.727838pt;}
._5a{width:45.652545pt;}
._36{width:46.585856pt;}
._8{width:47.753711pt;}
._45{width:48.983692pt;}
._55{width:50.421679pt;}
._3a{width:51.616100pt;}
._3b{width:52.936040pt;}
._49{width:53.931910pt;}
._1b{width:55.090742pt;}
._1a{width:56.702461pt;}
._53{width:57.620953pt;}
._3d{width:58.619704pt;}
._3e{width:60.047004pt;}
._38{width:61.842652pt;}
._37{width:62.974672pt;}
._46{width:64.039418pt;}
._29{width:65.377917pt;}
._2a{width:66.520988pt;}
._2b{width:68.275705pt;}
._47{width:70.140253pt;}
._48{width:71.283107pt;}
._2d{width:72.371272pt;}
._2c{width:73.296013pt;}
._33{width:74.281368pt;}
._4d{width:75.371242pt;}
._44{width:77.465162pt;}
._5{width:78.601851pt;}
._4{width:79.596672pt;}
._28{width:80.808346pt;}
._27{width:82.507257pt;}
._21{width:84.044975pt;}
._20{width:85.223978pt;}
._5b{width:86.172635pt;}
._3f{width:87.239467pt;}
._52{width:90.445562pt;}
._58{width:92.273676pt;}
._59{width:93.180794pt;}
._4f{width:96.140620pt;}
._50{width:98.431198pt;}
._4e{width:104.163446pt;}
._4a{width:105.355996pt;}
._14{width:106.548243pt;}
._13{width:108.089398pt;}
._40{width:109.228767pt;}
._4b{width:111.734238pt;}
._3c{width:128.260029pt;}
._9{width:133.945994pt;}
._a{width:134.927956pt;}
._57{width:141.338226pt;}
._56{width:142.305075pt;}
._42{width:154.578708pt;}
._41{width:155.643527pt;}
._54{width:160.613127pt;}
._3{width:728.732509pt;}
.fs2{font-size:51.705600pt;}
.fs3{font-size:57.312000pt;}
.fs4{font-size:72.880400pt;}
.fs1{font-size:72.886000pt;}
.fs0{font-size:72.887828pt;}
.y0{bottom:0.000000pt;}
.y112{bottom:75.200000pt;}
.y194{bottom:146.240000pt;}
.y161{bottom:150.080000pt;}
.y1b{bottom:156.475965pt;}
.y16e{bottom:159.200000pt;}
.y18e{bottom:162.080000pt;}
.y42{bottom:163.680000pt;}
.y111{bottom:168.320000pt;}
.y146{bottom:168.960000pt;}
.y176{bottom:170.240000pt;}
.y160{bottom:174.080000pt;}
.yab{bottom:175.680000pt;}
.y1a{bottom:177.440558pt;}
.y16d{bottom:183.360000pt;}
.y41{bottom:184.480000pt;}
.y18d{bottom:186.080000pt;}
.y90{bottom:188.000000pt;}
.yc9{bottom:189.760000pt;}
.y110{bottom:192.320000pt;}
.y145{bottom:193.120000pt;}
.y175{bottom:194.400000pt;}
.y1a4{bottom:196.160000pt;}
.y15f{bottom:198.080000pt;}
.y19{bottom:198.232763pt;}
.yaa{bottom:199.840000pt;}
.ye1{bottom:201.440000pt;}
.y40{bottom:205.440000pt;}
.y16c{bottom:207.360000pt;}
.y18c{bottom:210.080000pt;}
.y8f{bottom:212.160000pt;}
.yc8{bottom:213.600000pt;}
.y10f{bottom:216.320000pt;}
.y144{bottom:218.400000pt;}
.y18{bottom:219.036090pt;}
.y1a3{bottom:220.160000pt;}
.y15e{bottom:222.240000pt;}
.ya9{bottom:224.960000pt;}
.ye0{bottom:225.440000pt;}
.y3f{bottom:226.240000pt;}
.y16b{bottom:231.200000pt;}
.y18b{bottom:234.240000pt;}
.y8e{bottom:236.160000pt;}
.yc7{bottom:237.760000pt;}
.y17{bottom:239.995122pt;}
.y10e{bottom:240.480000pt;}
.y193{bottom:241.920000pt;}
.y196{bottom:242.080000pt;}
.y143{bottom:242.400000pt;}
.y1a2{bottom:244.320000pt;}
.y15d{bottom:246.240000pt;}
.y3e{bottom:247.200000pt;}
.ya8{bottom:248.960000pt;}
.ydf{bottom:250.720000pt;}
.y16a{bottom:255.360000pt;}
.y18a{bottom:258.240000pt;}
.y8d{bottom:260.000000pt;}
.y16{bottom:260.798449pt;}
.yc6{bottom:261.760000pt;}
.y10d{bottom:264.480000pt;}
.y192{bottom:265.920000pt;}
.y142{bottom:266.400000pt;}
.y3d{bottom:268.000000pt;}
.y1a1{bottom:268.320000pt;}
.y15c{bottom:270.400000pt;}
.ya7{bottom:273.120000pt;}
.yde{bottom:274.880000pt;}
.y19e{bottom:278.880000pt;}
.y169{bottom:279.360000pt;}
.y15{bottom:281.913186pt;}
.y189{bottom:281.920000pt;}
.y8c{bottom:284.160000pt;}
.yc5{bottom:285.760000pt;}
.y10c{bottom:288.480000pt;}
.y3c{bottom:288.960000pt;}
.y141{bottom:290.400000pt;}
.y1a0{bottom:292.320000pt;}
.y15b{bottom:295.520000pt;}
.ya6{bottom:297.120000pt;}
.ydd{bottom:300.160000pt;}
.y14{bottom:302.716513pt;}
.y168{bottom:303.360000pt;}
.y8b{bottom:308.160000pt;}
.y3b{bottom:309.920000pt;}
.y11b{bottom:312.000000pt;}
.y10b{bottom:312.480000pt;}
.y140{bottom:313.920000pt;}
.y174{bottom:314.400000pt;}
.y19d{bottom:316.320000pt;}
.y188{bottom:319.200000pt;}
.y15a{bottom:319.680000pt;}
.ya5{bottom:321.120000pt;}
.y13{bottom:323.675545pt;}
.ydc{bottom:324.320000pt;}
.y167{bottom:327.360000pt;}
.yf9{bottom:330.080000pt;}
.y3a{bottom:330.720000pt;}
.y8a{bottom:332.160000pt;}
.yc4{bottom:333.920000pt;}
.y11a{bottom:336.000000pt;}
.y10a{bottom:336.480000pt;}
.y173{bottom:338.400000pt;}
.y19c{bottom:340.480000pt;}
.y187{bottom:343.200000pt;}
.y12{bottom:344.478872pt;}
.ya4{bottom:344.800000pt;}
.y159{bottom:344.960000pt;}
.ydb{bottom:349.440000pt;}
.y13f{bottom:351.520000pt;}
.y39{bottom:351.680000pt;}
.yf8{bottom:353.920000pt;}
.y89{bottom:356.160000pt;}
.yc3{bottom:357.920000pt;}
.y109{bottom:360.480000pt;}
.y172{bottom:362.560000pt;}
.y19b{bottom:364.480000pt;}
.y11{bottom:365.271077pt;}
.y186{bottom:367.200000pt;}
.y158{bottom:370.240000pt;}
.y38{bottom:372.480000pt;}
.yda{bottom:373.600000pt;}
.y13e{bottom:375.520000pt;}
.y5f{bottom:376.960000pt;}
.yf7{bottom:377.920000pt;}
.y88{bottom:380.320000pt;}
.yc2{bottom:381.920000pt;}
.y108{bottom:384.480000pt;}
.y10{bottom:386.235670pt;}
.y171{bottom:386.560000pt;}
.y19a{bottom:388.480000pt;}
.y185{bottom:391.360000pt;}
.y37{bottom:393.440000pt;}
.y157{bottom:394.400000pt;}
.yd9{bottom:398.880000pt;}
.y13d{bottom:399.520000pt;}
.ya3{bottom:400.320000pt;}
.y5e{bottom:400.960000pt;}
.yf6{bottom:402.080000pt;}
.y87{bottom:404.320000pt;}
.yc1{bottom:406.080000pt;}
.yf{bottom:406.555199pt;}
.y107{bottom:408.480000pt;}
.y170{bottom:410.240000pt;}
.y199{bottom:412.480000pt;}
.y36{bottom:414.240000pt;}
.y184{bottom:415.360000pt;}
.y156{bottom:419.520000pt;}
.y5d{bottom:421.920000pt;}
.yd8{bottom:423.040000pt;}
.y13c{bottom:423.520000pt;}
.ya2{bottom:424.320000pt;}
.yf5{bottom:426.080000pt;}
.ye{bottom:428.159295pt;}
.y86{bottom:428.320000pt;}
.yc0{bottom:429.920000pt;}
.y106{bottom:432.640000pt;}
.y35{bottom:435.200000pt;}
.y198{bottom:436.480000pt;}
.y183{bottom:439.360000pt;}
.y5c{bottom:442.720000pt;}
.y155{bottom:443.680000pt;}
.y13b{bottom:447.520000pt;}
.yd7{bottom:448.160000pt;}
.ya1{bottom:448.320000pt;}
.yd{bottom:448.951500pt;}
.yf4{bottom:450.080000pt;}
.y85{bottom:452.480000pt;}
.ybf{bottom:453.920000pt;}
.y34{bottom:456.160000pt;}
.y105{bottom:456.640000pt;}
.y190{bottom:460.480000pt;}
.y5b{bottom:463.200000pt;}
.y182{bottom:463.360000pt;}
.y154{bottom:467.680000pt;}
.yc{bottom:469.916093pt;}
.y166{bottom:471.040000pt;}
.y13a{bottom:471.520000pt;}
.yd6{bottom:472.160000pt;}
.ya0{bottom:472.480000pt;}
.yf3{bottom:474.080000pt;}
.y84{bottom:476.320000pt;}
.y33{bottom:476.960000pt;}
.ybe{bottom:478.080000pt;}
.y104{bottom:480.640000pt;}
.y5a{bottom:484.480000pt;}
.y181{bottom:487.520000pt;}
.yb{bottom:490.719420pt;}
.y153{bottom:491.680000pt;}
.y139{bottom:495.520000pt;}
.yd5{bottom:496.320000pt;}
.y9f{bottom:496.480000pt;}
.y32{bottom:497.920000pt;}
.yf2{bottom:498.240000pt;}
.y83{bottom:500.320000pt;}
.ybd{bottom:502.080000pt;}
.y71{bottom:503.520000pt;}
.y103{bottom:504.800000pt;}
.y59{bottom:505.440000pt;}
.ya{bottom:507.196367pt;}
.y165{bottom:508.640000pt;}
.y180{bottom:511.360000pt;}
.y152{bottom:515.840000pt;}
.y31{bottom:518.720000pt;}
.y18f{bottom:519.200000pt;}
.y138{bottom:519.680000pt;}
.y9e{bottom:520.480000pt;}
.yd4{bottom:521.600000pt;}
.yf1{bottom:522.240000pt;}
.y82{bottom:524.320000pt;}
.ybc{bottom:526.080000pt;}
.y58{bottom:526.400000pt;}
.y70{bottom:527.680000pt;}
.y102{bottom:528.640000pt;}
.y125{bottom:530.080000pt;}
.y164{bottom:532.640000pt;}
.y17f{bottom:535.360000pt;}
.y30{bottom:539.680000pt;}
.y151{bottom:539.840000pt;}
.y137{bottom:543.680000pt;}
.y9d{bottom:544.640000pt;}
.yd3{bottom:545.760000pt;}
.y57{bottom:547.200000pt;}
.yf0{bottom:547.520000pt;}
.y81{bottom:548.480000pt;}
.ybb{bottom:550.240000pt;}
.y101{bottom:552.640000pt;}
.y6f{bottom:552.960000pt;}
.y124{bottom:555.360000pt;}
.y163{bottom:556.640000pt;}
.y17e{bottom:559.520000pt;}
.y2f{bottom:560.480000pt;}
.y150{bottom:563.680000pt;}
.y136{bottom:567.680000pt;}
.y56{bottom:568.160000pt;}
.y9c{bottom:568.640000pt;}
.yd2{bottom:570.880000pt;}
.yef{bottom:571.520000pt;}
.y80{bottom:572.480000pt;}
.yba{bottom:575.360000pt;}
.y100{bottom:576.160000pt;}
.y119{bottom:576.640000pt;}
.y6e{bottom:578.240000pt;}
.y123{bottom:579.520000pt;}
.y162{bottom:580.800000pt;}
.y2e{bottom:581.440000pt;}
.y17d{bottom:583.520000pt;}
.y14f{bottom:587.680000pt;}
.y55{bottom:588.960000pt;}
.y19f{bottom:591.360000pt;}
.y135{bottom:591.680000pt;}
.y9b{bottom:592.640000pt;}
.yd1{bottom:595.040000pt;}
.y7f{bottom:596.480000pt;}
.yee{bottom:596.960000pt;}
.yb9{bottom:600.800000pt;}
.y2d{bottom:602.400000pt;}
.y6d{bottom:603.680000pt;}
.y122{bottom:604.640000pt;}
.y17c{bottom:607.520000pt;}
.y54{bottom:609.920000pt;}
.y14e{bottom:611.840000pt;}
.y134{bottom:615.840000pt;}
.y9a{bottom:617.920000pt;}
.yd0{bottom:620.320000pt;}
.y7e{bottom:620.480000pt;}
.yed{bottom:620.960000pt;}
.y2c{bottom:623.200000pt;}
.yff{bottom:624.800000pt;}
.yb8{bottom:626.080000pt;}
.y121{bottom:628.640000pt;}
.y6c{bottom:628.960000pt;}
.y53{bottom:630.880000pt;}
.y17b{bottom:631.520000pt;}
.y14d{bottom:635.360000pt;}
.y133{bottom:639.680000pt;}
.y99{bottom:641.920000pt;}
.y2b{bottom:644.160000pt;}
.ycf{bottom:644.480000pt;}
.y7d{bottom:644.640000pt;}
.yec{bottom:646.240000pt;}
.y118{bottom:648.800000pt;}
.yfe{bottom:648.960000pt;}
.yb7{bottom:650.240000pt;}
.y52{bottom:651.680000pt;}
.y120{bottom:652.640000pt;}
.y6b{bottom:654.240000pt;}
.y17a{bottom:655.680000pt;}
.y195{bottom:663.360000pt;}
.y132{bottom:663.680000pt;}
.y2a{bottom:664.960000pt;}
.y98{bottom:667.360000pt;}
.y7c{bottom:668.640000pt;}
.yce{bottom:669.600000pt;}
.yeb{bottom:670.240000pt;}
.y51{bottom:672.640000pt;}
.y117{bottom:672.960000pt;}
.yfd{bottom:674.240000pt;}
.yb6{bottom:675.360000pt;}
.y197{bottom:676.320000pt;}
.y11f{bottom:676.800000pt;}
.y6a{bottom:679.680000pt;}
.y29{bottom:685.920000pt;}
.y131{bottom:687.840000pt;}
.y97{bottom:691.360000pt;}
.y7b{bottom:692.480000pt;}
.y50{bottom:693.440000pt;}
.ycd{bottom:693.600000pt;}
.yea{bottom:694.240000pt;}
.y116{bottom:696.960000pt;}
.yfc{bottom:698.240000pt;}
.yb5{bottom:699.520000pt;}
.y11e{bottom:700.800000pt;}
.y179{bottom:703.680000pt;}
.y69{bottom:704.960000pt;}
.y28{bottom:706.880000pt;}
.y130{bottom:711.840000pt;}
.y4f{bottom:714.400000pt;}
.y7a{bottom:716.640000pt;}
.ycc{bottom:717.600000pt;}
.ye9{bottom:718.400000pt;}
.y115{bottom:720.480000pt;}
.y14c{bottom:720.960000pt;}
.yb4{bottom:723.520000pt;}
.y11d{bottom:724.800000pt;}
.y27{bottom:727.680000pt;}
.y68{bottom:730.240000pt;}
.y4e{bottom:735.200000pt;}
.y12f{bottom:735.840000pt;}
.y79{bottom:740.640000pt;}
.ycb{bottom:741.760000pt;}
.ye8{bottom:743.680000pt;}
.y114{bottom:744.800000pt;}
.yb3{bottom:747.520000pt;}
.y26{bottom:748.640000pt;}
.yfb{bottom:748.800000pt;}
.y178{bottom:751.680000pt;}
.y67{bottom:755.680000pt;}
.y4d{bottom:756.160000pt;}
.y191{bottom:759.520000pt;}
.y12e{bottom:759.840000pt;}
.y78{bottom:764.640000pt;}
.yca{bottom:765.280000pt;}
.ye7{bottom:767.840000pt;}
.y113{bottom:768.960000pt;}
.y25{bottom:769.440000pt;}
.yb2{bottom:771.520000pt;}
.y11c{bottom:772.480000pt;}
.y96{bottom:772.960000pt;}
.y177{bottom:775.200000pt;}
.y4c{bottom:777.120000pt;}
.y66{bottom:780.960000pt;}
.y12d{bottom:784.000000pt;}
.y77{bottom:788.640000pt;}
.y24{bottom:790.400000pt;}
.ye6{bottom:792.960000pt;}
.yb1{bottom:795.200000pt;}
.y95{bottom:796.960000pt;}
.y9{bottom:797.919107pt;}
.y4b{bottom:797.920000pt;}
.y65{bottom:806.240000pt;}
.y12c{bottom:808.000000pt;}
.y23{bottom:811.840000pt;}
.y76{bottom:812.800000pt;}
.y14b{bottom:816.960000pt;}
.ye5{bottom:818.400000pt;}
.y8{bottom:818.721321pt;}
.y4a{bottom:818.880000pt;}
.yb0{bottom:819.200000pt;}
.y94{bottom:820.800000pt;}
.y64{bottom:831.680000pt;}
.y12b{bottom:832.000000pt;}
.y22{bottom:833.440000pt;}
.y75{bottom:836.800000pt;}
.y7{bottom:839.514639pt;}
.y49{bottom:839.680000pt;}
.y14a{bottom:841.120000pt;}
.ye4{bottom:842.400000pt;}
.yaf{bottom:843.200000pt;}
.y93{bottom:844.960000pt;}
.y21{bottom:854.400000pt;}
.y12a{bottom:856.000000pt;}
.y63{bottom:856.800000pt;}
.y6{bottom:860.477007pt;}
.y48{bottom:860.640000pt;}
.y74{bottom:860.800000pt;}
.y149{bottom:866.400000pt;}
.yae{bottom:867.680000pt;}
.y92{bottom:868.960000pt;}
.y20{bottom:875.200000pt;}
.y129{bottom:880.000000pt;}
.y5{bottom:880.798760pt;}
.y47{bottom:881.440000pt;}
.y62{bottom:882.240000pt;}
.y73{bottom:884.960000pt;}
.y148{bottom:890.400000pt;}
.yad{bottom:891.680000pt;}
.y91{bottom:892.960000pt;}
.y1f{bottom:896.160000pt;}
.y4{bottom:901.921283pt;}
.y46{bottom:902.400000pt;}
.y16f{bottom:903.520000pt;}
.y128{bottom:904.000000pt;}
.y61{bottom:907.680000pt;}
.y72{bottom:908.800000pt;}
.y147{bottom:914.400000pt;}
.yac{bottom:915.680000pt;}
.y1e{bottom:916.960000pt;}
.y3{bottom:923.195062pt;}
.y45{bottom:923.360000pt;}
.y127{bottom:928.000000pt;}
.ye3{bottom:939.680000pt;}
.yfa{bottom:940.640000pt;}
.y1d{bottom:941.120000pt;}
.y60{bottom:944.000000pt;}
.y2{bottom:944.157431pt;}
.y44{bottom:944.160000pt;}
.y126{bottom:951.680000pt;}
.ye2{bottom:963.840000pt;}
.y1{bottom:964.479184pt;}
.y1c{bottom:964.640000pt;}
.y43{bottom:965.120000pt;}
.h7{height:38.198672pt;}
.h4{height:49.397348pt;}
.h3{height:49.398587pt;}
.ha{height:50.639067pt;}
.h5{height:50.642958pt;}
.h2{height:50.644228pt;}
.h6{height:53.202958pt;}
.h8{height:793.760000pt;}
.h9{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2{width:1122.560000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x13{left:107.680000pt;}
.x5{left:116.963643pt;}
.x8{left:136.003822pt;}
.x3{left:138.076888pt;}
.xd{left:140.160000pt;}
.xf{left:144.480000pt;}
.xc{left:153.600000pt;}
.xe{left:163.520000pt;}
.x12{left:167.840000pt;}
.x10{left:172.160000pt;}
.x9{left:206.879555pt;}
.xa{left:231.516123pt;}
.x1{left:244.479460pt;}
.x7{left:300.639091pt;}
.x4{left:312.000918pt;}
.xb{left:335.996882pt;}
.x2{left:397.281347pt;}
.x6{left:677.600162pt;}
.x11{left:992.160000pt;}
}




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