
    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_0895e7102328c0669221bf0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090820;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_bedb11ca3a1cce1c701f3d36.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_410cb055d953020999ff4de0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090820;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_debeb60ba2be194da8057a48.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_64b7b6ee4fb5d4aa82d3db3f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a323f2dd892ee694af2abee0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.136230;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;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.223200px;}
.lsa{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.115200px;}
.lsb{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:9.540000px;}
.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;}
}
.ws8{word-spacing:-54.000000px;}
.wsc{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws4{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.238800px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.716800px;}
.ws7{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:405.324000px;}
._21{margin-left:-5.677200px;}
._13{margin-left:-4.608000px;}
._18{margin-left:-3.576000px;}
._2{margin-left:-2.520000px;}
._0{margin-left:-1.152000px;}
._1{width:1.248000px;}
._9{width:2.448000px;}
._f{width:4.176000px;}
._a{width:6.120000px;}
._8{width:7.128000px;}
._16{width:8.136000px;}
._7{width:9.144000px;}
._11{width:10.512000px;}
._12{width:11.712000px;}
._10{width:12.744000px;}
._3{width:14.112000px;}
._4{width:15.120000px;}
._d{width:16.416000px;}
._5{width:19.224000px;}
._14{width:20.376000px;}
._e{width:21.960000px;}
._15{width:23.304000px;}
._17{width:24.480000px;}
._b{width:26.208000px;}
._c{width:27.336000px;}
._1c{width:28.368000px;}
._6{width:29.448000px;}
._27{width:30.528000px;}
._36{width:32.040000px;}
._24{width:33.552000px;}
._1b{width:34.848000px;}
._1a{width:36.288000px;}
._19{width:37.296000px;}
._29{width:41.533200px;}
._37{width:42.624000px;}
._38{width:43.848000px;}
._26{width:51.192000px;}
._25{width:52.632000px;}
._22{width:62.867520px;}
._2b{width:68.671200px;}
._28{width:78.166080px;}
._20{width:85.337280px;}
._1f{width:86.412960px;}
._1e{width:94.719600px;}
._1d{width:95.974560px;}
._2e{width:107.335920px;}
._3a{width:111.384000px;}
._23{width:115.231200px;}
._30{width:128.663280px;}
._35{width:134.161200px;}
._31{width:141.989760px;}
._39{width:149.400000px;}
._32{width:163.682640px;}
._34{width:182.088720px;}
._2c{width:251.410320px;}
._2d{width:255.593520px;}
._2f{width:282.186720px;}
._2a{width:293.839920px;}
._33{width:311.409360px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y12b{bottom:3.240000px;}
.y8{bottom:4.680000px;}
.y6{bottom:5.400000px;}
.y101{bottom:5.730000px;}
.ya9{bottom:12.060000px;}
.yad{bottom:12.240000px;}
.yd6{bottom:12.270000px;}
.y121{bottom:12.285000px;}
.y10{bottom:12.600000px;}
.ye{bottom:12.780000px;}
.y12{bottom:12.960000px;}
.y12a{bottom:20.520000px;}
.y3{bottom:21.960000px;}
.yfb{bottom:23.295000px;}
.y7{bottom:24.300000px;}
.y5{bottom:26.100000px;}
.yab{bottom:29.340000px;}
.yac{bottom:29.520000px;}
.y120{bottom:29.565000px;}
.y2{bottom:42.660000px;}
.y117{bottom:46.620000px;}
.y11f{bottom:46.665000px;}
.y111{bottom:46.800000px;}
.y128{bottom:46.830000px;}
.yc{bottom:56.700000px;}
.yfc{bottom:60.735000px;}
.y116{bottom:63.900000px;}
.y127{bottom:63.930000px;}
.y11e{bottom:63.945000px;}
.y110{bottom:64.080000px;}
.yb{bottom:72.180000px;}
.y115{bottom:81.180000px;}
.y126{bottom:81.210000px;}
.y102{bottom:90.825000px;}
.yfa{bottom:97.455000px;}
.yfd{bottom:98.175000px;}
.y118{bottom:98.325000px;}
.y11a{bottom:98.460000px;}
.y125{bottom:98.490000px;}
.y114{bottom:98.505000px;}
.y15a{bottom:111.960000px;}
.y129{bottom:113.040000px;}
.y113{bottom:115.605000px;}
.y3c{bottom:117.360000px;}
.yca{bottom:117.720000px;}
.y104{bottom:118.155000px;}
.y8e{bottom:118.260000px;}
.ya7{bottom:120.420000px;}
.y143{bottom:124.920000px;}
.y18d{bottom:126.360000px;}
.y6a{bottom:127.260000px;}
.y159{bottom:132.660000px;}
.yfe{bottom:135.645000px;}
.y3b{bottom:138.060000px;}
.y8d{bottom:138.960000px;}
.yc9{bottom:147.420000px;}
.y105{bottom:148.755000px;}
.ya6{bottom:150.120000px;}
.y158{bottom:153.360000px;}
.y142{bottom:154.620000px;}
.y18c{bottom:156.060000px;}
.y124{bottom:156.600000px;}
.y69{bottom:156.960000px;}
.y3a{bottom:158.760000px;}
.y8c{bottom:159.660000px;}
.yc8{bottom:168.120000px;}
.y10a{bottom:168.510000px;}
.yff{bottom:173.085000px;}
.y141{bottom:175.320000px;}
.y18b{bottom:176.760000px;}
.y68{bottom:177.660000px;}
.y106{bottom:179.310000px;}
.y39{bottom:179.460000px;}
.ya5{bottom:179.820000px;}
.y8b{bottom:180.360000px;}
.y157{bottom:183.060000px;}
.y177{bottom:188.460000px;}
.yc7{bottom:188.820000px;}
.y140{bottom:196.020000px;}
.y67{bottom:198.390000px;}
.y38{bottom:200.190000px;}
.y8a{bottom:201.090000px;}
.yf9{bottom:202.320000px;}
.y156{bottom:203.790000px;}
.y18a{bottom:206.490000px;}
.y176{bottom:209.190000px;}
.ya4{bottom:209.550000px;}
.y107{bottom:209.880000px;}
.y100{bottom:210.525000px;}
.y10c{bottom:215.205000px;}
.y13f{bottom:216.750000px;}
.y66{bottom:219.090000px;}
.y37{bottom:220.890000px;}
.y89{bottom:221.790000px;}
.y155{bottom:224.490000px;}
.y189{bottom:227.190000px;}
.y175{bottom:229.890000px;}
.ya3{bottom:230.250000px;}
.y13e{bottom:237.450000px;}
.yf7{bottom:239.250000px;}
.y65{bottom:239.790000px;}
.y108{bottom:240.480000px;}
.y36{bottom:241.590000px;}
.y10b{bottom:249.510000px;}
.ya2{bottom:250.950000px;}
.y88{bottom:251.490000px;}
.y154{bottom:254.190000px;}
.y188{bottom:256.890000px;}
.y13d{bottom:258.150000px;}
.y174{bottom:259.590000px;}
.yc6{bottom:259.950000px;}
.ye6{bottom:260.130000px;}
.y64{bottom:260.490000px;}
.y35{bottom:262.290000px;}
.y109{bottom:271.050000px;}
.ya1{bottom:271.650000px;}
.y87{bottom:272.190000px;}
.y153{bottom:274.890000px;}
.y187{bottom:277.590000px;}
.y123{bottom:278.130000px;}
.y13c{bottom:278.850000px;}
.y173{bottom:280.290000px;}
.y63{bottom:281.190000px;}
.y34{bottom:282.990000px;}
.yc5{bottom:289.650000px;}
.ye5{bottom:289.830000px;}
.ya0{bottom:292.350000px;}
.y86{bottom:292.890000px;}
.y186{bottom:298.290000px;}
.y13b{bottom:299.550000px;}
.y62{bottom:301.890000px;}
.y33{bottom:303.690000px;}
.y152{bottom:304.590000px;}
.y172{bottom:309.990000px;}
.yf6{bottom:310.350000px;}
.ye4{bottom:310.530000px;}
.y9f{bottom:313.050000px;}
.y85{bottom:313.590000px;}
.yc4{bottom:316.290000px;}
.y61{bottom:322.590000px;}
.y32{bottom:324.390000px;}
.y151{bottom:325.290000px;}
.y185{bottom:327.990000px;}
.y13a{bottom:329.250000px;}
.y171{bottom:330.690000px;}
.yf5{bottom:331.050000px;}
.ye3{bottom:331.230000px;}
.y9e{bottom:333.750000px;}
.y84{bottom:334.290000px;}
.y60{bottom:343.290000px;}
.y31{bottom:345.090000px;}
.y184{bottom:348.690000px;}
.y139{bottom:349.950000px;}
.yc3{bottom:351.390000px;}
.yf4{bottom:351.750000px;}
.ye2{bottom:351.930000px;}
.y9d{bottom:354.450000px;}
.y83{bottom:354.990000px;}
.y5f{bottom:363.990000px;}
.y30{bottom:365.790000px;}
.y138{bottom:370.650000px;}
.yf3{bottom:372.450000px;}
.ye1{bottom:372.630000px;}
.y150{bottom:375.690000px;}
.y183{bottom:378.390000px;}
.y170{bottom:381.090000px;}
.y122{bottom:382.350000px;}
.y9c{bottom:384.150000px;}
.y5e{bottom:384.690000px;}
.y2f{bottom:386.490000px;}
.yc2{bottom:386.670000px;}
.y137{bottom:391.350000px;}
.ye0{bottom:393.330000px;}
.y182{bottom:399.090000px;}
.y16f{bottom:401.790000px;}
.yf2{bottom:402.150000px;}
.y82{bottom:405.390000px;}
.y2e{bottom:407.190000px;}
.y136{bottom:412.050000px;}
.y9b{bottom:413.850000px;}
.ydf{bottom:414.030000px;}
.y5d{bottom:414.390000px;}
.yc1{bottom:421.950000px;}
.yf1{bottom:422.850000px;}
.y14f{bottom:426.090000px;}
.y2d{bottom:427.890000px;}
.y181{bottom:428.790000px;}
.y16e{bottom:431.490000px;}
.y135{bottom:432.750000px;}
.y9a{bottom:434.550000px;}
.yde{bottom:434.730000px;}
.y11d{bottom:434.910000px;}
.y81{bottom:435.090000px;}
.yf0{bottom:443.595000px;}
.y5c{bottom:444.135000px;}
.y2c{bottom:448.635000px;}
.y180{bottom:449.535000px;}
.y134{bottom:453.495000px;}
.ydd{bottom:455.475000px;}
.y80{bottom:455.835000px;}
.yc0{bottom:457.275000px;}
.y99{bottom:460.335000px;}
.y16d{bottom:461.235000px;}
.yef{bottom:464.295000px;}
.y2b{bottom:469.335000px;}
.y17f{bottom:470.235000px;}
.y5b{bottom:473.835000px;}
.ydc{bottom:476.175000px;}
.y7f{bottom:476.535000px;}
.y133{bottom:483.195000px;}
.yee{bottom:484.995000px;}
.y2a{bottom:490.035000px;}
.y16c{bottom:490.935000px;}
.y5a{bottom:494.535000px;}
.y14e{bottom:497.235000px;}
.y17e{bottom:499.935000px;}
.yed{bottom:505.695000px;}
.ydb{bottom:505.875000px;}
.y7e{bottom:506.235000px;}
.ybf{bottom:510.555000px;}
.y29{bottom:510.735000px;}
.y16b{bottom:511.635000px;}
.y132{bottom:512.715000px;}
.y17d{bottom:520.635000px;}
.y11c{bottom:521.895000px;}
.y59{bottom:524.235000px;}
.y7d{bottom:526.935000px;}
.y28{bottom:531.435000px;}
.yec{bottom:535.395000px;}
.yda{bottom:535.575000px;}
.y131{bottom:539.355000px;}
.y16a{bottom:541.335000px;}
.y58{bottom:544.935000px;}
.y7c{bottom:547.635000px;}
.yeb{bottom:556.095000px;}
.ybe{bottom:559.515000px;}
.y27{bottom:561.135000px;}
.yd9{bottom:562.035000px;}
.y57{bottom:565.635000px;}
.y14d{bottom:568.335000px;}
.y17c{bottom:571.035000px;}
.y7b{bottom:577.335000px;}
.yea{bottom:581.835000px;}
.y103{bottom:582.120000px;}
.y56{bottom:586.335000px;}
.ybd{bottom:589.215000px;}
.y26{bottom:590.835000px;}
.y169{bottom:591.735000px;}
.y130{bottom:592.455000px;}
.yd8{bottom:597.315000px;}
.y7a{bottom:598.035000px;}
.y55{bottom:607.035000px;}
.y11b{bottom:608.835000px;}
.y168{bottom:612.435000px;}
.yf{bottom:617.295000px;}
.yd{bottom:617.475000px;}
.y79{bottom:618.735000px;}
.ybc{bottom:618.915000px;}
.y25{bottom:620.535000px;}
.y17b{bottom:621.435000px;}
.y54{bottom:627.735000px;}
.yd7{bottom:632.595000px;}
.y78{bottom:639.435000px;}
.y167{bottom:642.135000px;}
.y24{bottom:648.075000px;}
.y53{bottom:648.435000px;}
.ybb{bottom:648.615000px;}
.y14c{bottom:657.435000px;}
.y166{bottom:662.835000px;}
.yd5{bottom:667.875000px;}
.y52{bottom:669.135000px;}
.yba{bottom:669.315000px;}
.y23{bottom:670.935000px;}
.y17a{bottom:671.835000px;}
.y14b{bottom:678.165000px;}
.y12f{bottom:679.605000px;}
.y51{bottom:689.865000px;}
.yb9{bottom:690.045000px;}
.y165{bottom:692.565000px;}
.y119{bottom:695.985000px;}
.y22{bottom:698.505000px;}
.y14a{bottom:698.865000px;}
.yd4{bottom:703.185000px;}
.y50{bottom:710.565000px;}
.yb8{bottom:710.745000px;}
.y164{bottom:713.265000px;}
.y149{bottom:719.565000px;}
.y21{bottom:721.365000px;}
.y4f{bottom:731.265000px;}
.yb7{bottom:731.445000px;}
.y179{bottom:733.965000px;}
.yd3{bottom:738.285000px;}
.y148{bottom:740.265000px;}
.y163{bottom:742.965000px;}
.y20{bottom:748.905000px;}
.y4e{bottom:751.965000px;}
.yb6{bottom:752.145000px;}
.y147{bottom:760.965000px;}
.y162{bottom:763.665000px;}
.y1f{bottom:771.765000px;}
.y4d{bottom:772.665000px;}
.yb5{bottom:772.845000px;}
.yd2{bottom:773.565000px;}
.y77{bottom:781.665000px;}
.y161{bottom:784.365000px;}
.y4c{bottom:793.365000px;}
.yb4{bottom:793.545000px;}
.y1e{bottom:799.305000px;}
.y12e{bottom:801.105000px;}
.y76{bottom:802.365000px;}
.y160{bottom:805.065000px;}
.yd1{bottom:808.845000px;}
.y146{bottom:811.365000px;}
.y4b{bottom:814.065000px;}
.y112{bottom:817.485000px;}
.y1d{bottom:822.165000px;}
.y75{bottom:823.065000px;}
.yb3{bottom:823.245000px;}
.y145{bottom:832.065000px;}
.y4a{bottom:834.765000px;}
.y74{bottom:843.765000px;}
.yd0{bottom:844.125000px;}
.y1c{bottom:849.705000px;}
.yb2{bottom:852.765000px;}
.y49{bottom:855.465000px;}
.y98{bottom:864.465000px;}
.y1b{bottom:872.565000px;}
.y73{bottom:873.465000px;}
.y48{bottom:876.165000px;}
.yb1{bottom:879.405000px;}
.y97{bottom:885.165000px;}
.ye9{bottom:887.325000px;}
.y1a{bottom:893.265000px;}
.y72{bottom:894.165000px;}
.ycf{bottom:896.505000px;}
.y47{bottom:896.865000px;}
.y15f{bottom:905.865000px;}
.ye8{bottom:908.025000px;}
.yb0{bottom:914.550000px;}
.y71{bottom:914.910000px;}
.y46{bottom:917.610000px;}
.y12d{bottom:922.650000px;}
.y19{bottom:923.010000px;}
.y144{bottom:923.910000px;}
.y15e{bottom:926.610000px;}
.yce{bottom:931.830000px;}
.ye7{bottom:933.810000px;}
.yf8{bottom:934.020000px;}
.y70{bottom:935.610000px;}
.y45{bottom:938.310000px;}
.y96{bottom:944.610000px;}
.yaf{bottom:949.830000px;}
.y18{bottom:952.710000px;}
.y10f{bottom:956.130000px;}
.y15d{bottom:956.310000px;}
.y44{bottom:959.010000px;}
.y6f{bottom:965.310000px;}
.ycd{bottom:967.110000px;}
.y17{bottom:973.410000px;}
.y95{bottom:974.310000px;}
.y15c{bottom:977.010000px;}
.y43{bottom:979.710000px;}
.yae{bottom:985.110000px;}
.y6e{bottom:986.010000px;}
.y18e{bottom:988.710000px;}
.y94{bottom:995.010000px;}
.y15b{bottom:997.710000px;}
.ycc{bottom:1002.390000px;}
.y16{bottom:1003.110000px;}
.y6d{bottom:1006.710000px;}
.y42{bottom:1009.410000px;}
.y93{bottom:1015.710000px;}
.y178{bottom:1018.410000px;}
.y15{bottom:1023.810000px;}
.y6c{bottom:1027.410000px;}
.y92{bottom:1036.410000px;}
.yaa{bottom:1037.670000px;}
.y41{bottom:1039.110000px;}
.y10e{bottom:1043.970000px;}
.y12c{bottom:1044.150000px;}
.y6b{bottom:1048.110000px;}
.y14{bottom:1053.510000px;}
.y91{bottom:1057.110000px;}
.y40{bottom:1068.810000px;}
.ycb{bottom:1073.670000px;}
.y90{bottom:1077.810000px;}
.y13{bottom:1079.250000px;}
.y3f{bottom:1089.510000px;}
.ya8{bottom:1090.950000px;}
.y8f{bottom:1098.510000px;}
.y10d{bottom:1110.210000px;}
.y11{bottom:1117.950000px;}
.y3e{bottom:1119.210000px;}
.y3d{bottom:1139.910000px;}
.y1{bottom:1182.060000px;}
.ya{bottom:1193.400000px;}
.y4{bottom:1198.080000px;}
.y9{bottom:1208.880000px;}
.h6{height:19.620000px;}
.hb{height:28.080000px;}
.ha{height:28.260000px;}
.h10{height:35.100000px;}
.h14{height:35.136000px;}
.h13{height:35.280000px;}
.h15{height:35.316000px;}
.hd{height:38.700000px;}
.hc{height:38.736000px;}
.hf{height:42.327773px;}
.h5{height:43.560000px;}
.h7{height:52.290000px;}
.h11{height:52.380000px;}
.h8{height:52.435898px;}
.h12{height:52.560000px;}
.h17{height:53.709961px;}
.h9{height:58.121719px;}
.h18{height:59.439023px;}
.h2{height:60.120000px;}
.h3{height:63.000000px;}
.h4{height:63.175781px;}
.he{height:65.970000px;}
.h1e{height:86.940000px;}
.h1f{height:86.976000px;}
.h1a{height:87.120000px;}
.h1d{height:87.156000px;}
.h20{height:104.220000px;}
.h22{height:112.536000px;}
.h1c{height:121.500000px;}
.h21{height:121.536000px;}
.h1b{height:138.636000px;}
.h16{height:222.660000px;}
.h19{height:292.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:84.990000px;}
.w17{width:87.660000px;}
.w15{width:97.560000px;}
.w13{width:97.956000px;}
.w3{width:101.376000px;}
.wf{width:105.300000px;}
.w1b{width:106.200000px;}
.w11{width:106.740000px;}
.w19{width:116.820000px;}
.w1a{width:117.036000px;}
.wd{width:120.456000px;}
.w6{width:124.416000px;}
.w18{width:127.656000px;}
.w10{width:185.070000px;}
.w5{width:188.130000px;}
.w4{width:196.050000px;}
.we{width:199.110000px;}
.w14{width:202.170000px;}
.w9{width:223.770000px;}
.w12{width:228.090000px;}
.wc{width:246.810000px;}
.wb{width:279.930000px;}
.wa{width:286.095000px;}
.w16{width:371.160000px;}
.w2{width:618.450000px;}
.w1c{width:672.405000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.x20{left:8.100000px;}
.xc{left:10.800000px;}
.xe{left:14.940000px;}
.x30{left:16.560000px;}
.x5{left:20.340000px;}
.x34{left:21.750000px;}
.x3{left:23.436000px;}
.x2e{left:24.945000px;}
.x7{left:29.340000px;}
.x33{left:30.345000px;}
.x32{left:37.185000px;}
.x31{left:44.025000px;}
.xd{left:52.200000px;}
.x1{left:67.500000px;}
.x35{left:87.660000px;}
.x11{left:90.900000px;}
.xa{left:106.235987px;}
.x2f{left:112.650000px;}
.x1a{left:114.695987px;}
.x2c{left:120.990000px;}
.x1c{left:122.075987px;}
.x16{left:123.695987px;}
.x18{left:126.035987px;}
.x14{left:129.455987px;}
.x12{left:184.185000px;}
.x36{left:201.990000px;}
.x1e{left:206.669987px;}
.x1b{left:209.729987px;}
.x15{left:214.049987px;}
.x17{left:226.109987px;}
.x1d{left:243.029987px;}
.x2b{left:260.820000px;}
.x2{left:270.435000px;}
.x2d{left:274.395000px;}
.xf{left:275.970000px;}
.x24{left:299.415000px;}
.x29{left:301.394987px;}
.x2a{left:302.654987px;}
.x27{left:316.515000px;}
.x37{left:329.655000px;}
.x21{left:361.155000px;}
.x19{left:383.834987px;}
.x25{left:406.155000px;}
.x13{left:446.474987px;}
.x8{left:451.155000px;}
.x1f{left:477.464987px;}
.x22{left:481.605000px;}
.x10{left:562.065000px;}
.x38{left:563.505000px;}
.x28{left:632.084987px;}
.x26{left:634.245000px;}
.x23{left:680.730000px;}
.x9{left:737.610000px;}
.x4{left:761.010000px;}
.xb{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.198400pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.102400pt;}
.lsb{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:8.480000pt;}
.ws8{word-spacing:-48.000000pt;}
.wsc{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.081600pt;}
.ws7{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:360.288000pt;}
._21{margin-left:-5.046400pt;}
._13{margin-left:-4.096000pt;}
._18{margin-left:-3.178667pt;}
._2{margin-left:-2.240000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.109333pt;}
._9{width:2.176000pt;}
._f{width:3.712000pt;}
._a{width:5.440000pt;}
._8{width:6.336000pt;}
._16{width:7.232000pt;}
._7{width:8.128000pt;}
._11{width:9.344000pt;}
._12{width:10.410667pt;}
._10{width:11.328000pt;}
._3{width:12.544000pt;}
._4{width:13.440000pt;}
._d{width:14.592000pt;}
._5{width:17.088000pt;}
._14{width:18.112000pt;}
._e{width:19.520000pt;}
._15{width:20.714667pt;}
._17{width:21.760000pt;}
._b{width:23.296000pt;}
._c{width:24.298667pt;}
._1c{width:25.216000pt;}
._6{width:26.176000pt;}
._27{width:27.136000pt;}
._36{width:28.480000pt;}
._24{width:29.824000pt;}
._1b{width:30.976000pt;}
._1a{width:32.256000pt;}
._19{width:33.152000pt;}
._29{width:36.918400pt;}
._37{width:37.888000pt;}
._38{width:38.976000pt;}
._26{width:45.504000pt;}
._25{width:46.784000pt;}
._22{width:55.882240pt;}
._2b{width:61.041067pt;}
._28{width:69.480960pt;}
._20{width:75.855360pt;}
._1f{width:76.811520pt;}
._1e{width:84.195200pt;}
._1d{width:85.310720pt;}
._2e{width:95.409707pt;}
._3a{width:99.008000pt;}
._23{width:102.427733pt;}
._30{width:114.367360pt;}
._35{width:119.254400pt;}
._31{width:126.213120pt;}
._39{width:132.800000pt;}
._32{width:145.495680pt;}
._34{width:161.856640pt;}
._2c{width:223.475840pt;}
._2d{width:227.194240pt;}
._2f{width:250.832640pt;}
._2a{width:261.191040pt;}
._33{width:276.808320pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y12b{bottom:2.880000pt;}
.y8{bottom:4.160000pt;}
.y6{bottom:4.800000pt;}
.y101{bottom:5.093333pt;}
.ya9{bottom:10.720000pt;}
.yad{bottom:10.880000pt;}
.yd6{bottom:10.906667pt;}
.y121{bottom:10.920000pt;}
.y10{bottom:11.200000pt;}
.ye{bottom:11.360000pt;}
.y12{bottom:11.520000pt;}
.y12a{bottom:18.240000pt;}
.y3{bottom:19.520000pt;}
.yfb{bottom:20.706667pt;}
.y7{bottom:21.600000pt;}
.y5{bottom:23.200000pt;}
.yab{bottom:26.080000pt;}
.yac{bottom:26.240000pt;}
.y120{bottom:26.280000pt;}
.y2{bottom:37.920000pt;}
.y117{bottom:41.440000pt;}
.y11f{bottom:41.480000pt;}
.y111{bottom:41.600000pt;}
.y128{bottom:41.626667pt;}
.yc{bottom:50.400000pt;}
.yfc{bottom:53.986667pt;}
.y116{bottom:56.800000pt;}
.y127{bottom:56.826667pt;}
.y11e{bottom:56.840000pt;}
.y110{bottom:56.960000pt;}
.yb{bottom:64.160000pt;}
.y115{bottom:72.160000pt;}
.y126{bottom:72.186667pt;}
.y102{bottom:80.733333pt;}
.yfa{bottom:86.626667pt;}
.yfd{bottom:87.266667pt;}
.y118{bottom:87.400000pt;}
.y11a{bottom:87.520000pt;}
.y125{bottom:87.546667pt;}
.y114{bottom:87.560000pt;}
.y15a{bottom:99.520000pt;}
.y129{bottom:100.480000pt;}
.y113{bottom:102.760000pt;}
.y3c{bottom:104.320000pt;}
.yca{bottom:104.640000pt;}
.y104{bottom:105.026667pt;}
.y8e{bottom:105.120000pt;}
.ya7{bottom:107.040000pt;}
.y143{bottom:111.040000pt;}
.y18d{bottom:112.320000pt;}
.y6a{bottom:113.120000pt;}
.y159{bottom:117.920000pt;}
.yfe{bottom:120.573333pt;}
.y3b{bottom:122.720000pt;}
.y8d{bottom:123.520000pt;}
.yc9{bottom:131.040000pt;}
.y105{bottom:132.226667pt;}
.ya6{bottom:133.440000pt;}
.y158{bottom:136.320000pt;}
.y142{bottom:137.440000pt;}
.y18c{bottom:138.720000pt;}
.y124{bottom:139.200000pt;}
.y69{bottom:139.520000pt;}
.y3a{bottom:141.120000pt;}
.y8c{bottom:141.920000pt;}
.yc8{bottom:149.440000pt;}
.y10a{bottom:149.786667pt;}
.yff{bottom:153.853333pt;}
.y141{bottom:155.840000pt;}
.y18b{bottom:157.120000pt;}
.y68{bottom:157.920000pt;}
.y106{bottom:159.386667pt;}
.y39{bottom:159.520000pt;}
.ya5{bottom:159.840000pt;}
.y8b{bottom:160.320000pt;}
.y157{bottom:162.720000pt;}
.y177{bottom:167.520000pt;}
.yc7{bottom:167.840000pt;}
.y140{bottom:174.240000pt;}
.y67{bottom:176.346667pt;}
.y38{bottom:177.946667pt;}
.y8a{bottom:178.746667pt;}
.yf9{bottom:179.840000pt;}
.y156{bottom:181.146667pt;}
.y18a{bottom:183.546667pt;}
.y176{bottom:185.946667pt;}
.ya4{bottom:186.266667pt;}
.y107{bottom:186.560000pt;}
.y100{bottom:187.133333pt;}
.y10c{bottom:191.293333pt;}
.y13f{bottom:192.666667pt;}
.y66{bottom:194.746667pt;}
.y37{bottom:196.346667pt;}
.y89{bottom:197.146667pt;}
.y155{bottom:199.546667pt;}
.y189{bottom:201.946667pt;}
.y175{bottom:204.346667pt;}
.ya3{bottom:204.666667pt;}
.y13e{bottom:211.066667pt;}
.yf7{bottom:212.666667pt;}
.y65{bottom:213.146667pt;}
.y108{bottom:213.760000pt;}
.y36{bottom:214.746667pt;}
.y10b{bottom:221.786667pt;}
.ya2{bottom:223.066667pt;}
.y88{bottom:223.546667pt;}
.y154{bottom:225.946667pt;}
.y188{bottom:228.346667pt;}
.y13d{bottom:229.466667pt;}
.y174{bottom:230.746667pt;}
.yc6{bottom:231.066667pt;}
.ye6{bottom:231.226667pt;}
.y64{bottom:231.546667pt;}
.y35{bottom:233.146667pt;}
.y109{bottom:240.933333pt;}
.ya1{bottom:241.466667pt;}
.y87{bottom:241.946667pt;}
.y153{bottom:244.346667pt;}
.y187{bottom:246.746667pt;}
.y123{bottom:247.226667pt;}
.y13c{bottom:247.866667pt;}
.y173{bottom:249.146667pt;}
.y63{bottom:249.946667pt;}
.y34{bottom:251.546667pt;}
.yc5{bottom:257.466667pt;}
.ye5{bottom:257.626667pt;}
.ya0{bottom:259.866667pt;}
.y86{bottom:260.346667pt;}
.y186{bottom:265.146667pt;}
.y13b{bottom:266.266667pt;}
.y62{bottom:268.346667pt;}
.y33{bottom:269.946667pt;}
.y152{bottom:270.746667pt;}
.y172{bottom:275.546667pt;}
.yf6{bottom:275.866667pt;}
.ye4{bottom:276.026667pt;}
.y9f{bottom:278.266667pt;}
.y85{bottom:278.746667pt;}
.yc4{bottom:281.146667pt;}
.y61{bottom:286.746667pt;}
.y32{bottom:288.346667pt;}
.y151{bottom:289.146667pt;}
.y185{bottom:291.546667pt;}
.y13a{bottom:292.666667pt;}
.y171{bottom:293.946667pt;}
.yf5{bottom:294.266667pt;}
.ye3{bottom:294.426667pt;}
.y9e{bottom:296.666667pt;}
.y84{bottom:297.146667pt;}
.y60{bottom:305.146667pt;}
.y31{bottom:306.746667pt;}
.y184{bottom:309.946667pt;}
.y139{bottom:311.066667pt;}
.yc3{bottom:312.346667pt;}
.yf4{bottom:312.666667pt;}
.ye2{bottom:312.826667pt;}
.y9d{bottom:315.066667pt;}
.y83{bottom:315.546667pt;}
.y5f{bottom:323.546667pt;}
.y30{bottom:325.146667pt;}
.y138{bottom:329.466667pt;}
.yf3{bottom:331.066667pt;}
.ye1{bottom:331.226667pt;}
.y150{bottom:333.946667pt;}
.y183{bottom:336.346667pt;}
.y170{bottom:338.746667pt;}
.y122{bottom:339.866667pt;}
.y9c{bottom:341.466667pt;}
.y5e{bottom:341.946667pt;}
.y2f{bottom:343.546667pt;}
.yc2{bottom:343.706667pt;}
.y137{bottom:347.866667pt;}
.ye0{bottom:349.626667pt;}
.y182{bottom:354.746667pt;}
.y16f{bottom:357.146667pt;}
.yf2{bottom:357.466667pt;}
.y82{bottom:360.346667pt;}
.y2e{bottom:361.946667pt;}
.y136{bottom:366.266667pt;}
.y9b{bottom:367.866667pt;}
.ydf{bottom:368.026667pt;}
.y5d{bottom:368.346667pt;}
.yc1{bottom:375.066667pt;}
.yf1{bottom:375.866667pt;}
.y14f{bottom:378.746667pt;}
.y2d{bottom:380.346667pt;}
.y181{bottom:381.146667pt;}
.y16e{bottom:383.546667pt;}
.y135{bottom:384.666667pt;}
.y9a{bottom:386.266667pt;}
.yde{bottom:386.426667pt;}
.y11d{bottom:386.586667pt;}
.y81{bottom:386.746667pt;}
.yf0{bottom:394.306667pt;}
.y5c{bottom:394.786667pt;}
.y2c{bottom:398.786667pt;}
.y180{bottom:399.586667pt;}
.y134{bottom:403.106667pt;}
.ydd{bottom:404.866667pt;}
.y80{bottom:405.186667pt;}
.yc0{bottom:406.466667pt;}
.y99{bottom:409.186667pt;}
.y16d{bottom:409.986667pt;}
.yef{bottom:412.706667pt;}
.y2b{bottom:417.186667pt;}
.y17f{bottom:417.986667pt;}
.y5b{bottom:421.186667pt;}
.ydc{bottom:423.266667pt;}
.y7f{bottom:423.586667pt;}
.y133{bottom:429.506667pt;}
.yee{bottom:431.106667pt;}
.y2a{bottom:435.586667pt;}
.y16c{bottom:436.386667pt;}
.y5a{bottom:439.586667pt;}
.y14e{bottom:441.986667pt;}
.y17e{bottom:444.386667pt;}
.yed{bottom:449.506667pt;}
.ydb{bottom:449.666667pt;}
.y7e{bottom:449.986667pt;}
.ybf{bottom:453.826667pt;}
.y29{bottom:453.986667pt;}
.y16b{bottom:454.786667pt;}
.y132{bottom:455.746667pt;}
.y17d{bottom:462.786667pt;}
.y11c{bottom:463.906667pt;}
.y59{bottom:465.986667pt;}
.y7d{bottom:468.386667pt;}
.y28{bottom:472.386667pt;}
.yec{bottom:475.906667pt;}
.yda{bottom:476.066667pt;}
.y131{bottom:479.426667pt;}
.y16a{bottom:481.186667pt;}
.y58{bottom:484.386667pt;}
.y7c{bottom:486.786667pt;}
.yeb{bottom:494.306667pt;}
.ybe{bottom:497.346667pt;}
.y27{bottom:498.786667pt;}
.yd9{bottom:499.586667pt;}
.y57{bottom:502.786667pt;}
.y14d{bottom:505.186667pt;}
.y17c{bottom:507.586667pt;}
.y7b{bottom:513.186667pt;}
.yea{bottom:517.186667pt;}
.y103{bottom:517.440000pt;}
.y56{bottom:521.186667pt;}
.ybd{bottom:523.746667pt;}
.y26{bottom:525.186667pt;}
.y169{bottom:525.986667pt;}
.y130{bottom:526.626667pt;}
.yd8{bottom:530.946667pt;}
.y7a{bottom:531.586667pt;}
.y55{bottom:539.586667pt;}
.y11b{bottom:541.186667pt;}
.y168{bottom:544.386667pt;}
.yf{bottom:548.706667pt;}
.yd{bottom:548.866667pt;}
.y79{bottom:549.986667pt;}
.ybc{bottom:550.146667pt;}
.y25{bottom:551.586667pt;}
.y17b{bottom:552.386667pt;}
.y54{bottom:557.986667pt;}
.yd7{bottom:562.306667pt;}
.y78{bottom:568.386667pt;}
.y167{bottom:570.786667pt;}
.y24{bottom:576.066667pt;}
.y53{bottom:576.386667pt;}
.ybb{bottom:576.546667pt;}
.y14c{bottom:584.386667pt;}
.y166{bottom:589.186667pt;}
.yd5{bottom:593.666667pt;}
.y52{bottom:594.786667pt;}
.yba{bottom:594.946667pt;}
.y23{bottom:596.386667pt;}
.y17a{bottom:597.186667pt;}
.y14b{bottom:602.813333pt;}
.y12f{bottom:604.093333pt;}
.y51{bottom:613.213333pt;}
.yb9{bottom:613.373333pt;}
.y165{bottom:615.613333pt;}
.y119{bottom:618.653333pt;}
.y22{bottom:620.893333pt;}
.y14a{bottom:621.213333pt;}
.yd4{bottom:625.053333pt;}
.y50{bottom:631.613333pt;}
.yb8{bottom:631.773333pt;}
.y164{bottom:634.013333pt;}
.y149{bottom:639.613333pt;}
.y21{bottom:641.213333pt;}
.y4f{bottom:650.013333pt;}
.yb7{bottom:650.173333pt;}
.y179{bottom:652.413333pt;}
.yd3{bottom:656.253333pt;}
.y148{bottom:658.013333pt;}
.y163{bottom:660.413333pt;}
.y20{bottom:665.693333pt;}
.y4e{bottom:668.413333pt;}
.yb6{bottom:668.573333pt;}
.y147{bottom:676.413333pt;}
.y162{bottom:678.813333pt;}
.y1f{bottom:686.013333pt;}
.y4d{bottom:686.813333pt;}
.yb5{bottom:686.973333pt;}
.yd2{bottom:687.613333pt;}
.y77{bottom:694.813333pt;}
.y161{bottom:697.213333pt;}
.y4c{bottom:705.213333pt;}
.yb4{bottom:705.373333pt;}
.y1e{bottom:710.493333pt;}
.y12e{bottom:712.093333pt;}
.y76{bottom:713.213333pt;}
.y160{bottom:715.613333pt;}
.yd1{bottom:718.973333pt;}
.y146{bottom:721.213333pt;}
.y4b{bottom:723.613333pt;}
.y112{bottom:726.653333pt;}
.y1d{bottom:730.813333pt;}
.y75{bottom:731.613333pt;}
.yb3{bottom:731.773333pt;}
.y145{bottom:739.613333pt;}
.y4a{bottom:742.013333pt;}
.y74{bottom:750.013333pt;}
.yd0{bottom:750.333333pt;}
.y1c{bottom:755.293333pt;}
.yb2{bottom:758.013333pt;}
.y49{bottom:760.413333pt;}
.y98{bottom:768.413333pt;}
.y1b{bottom:775.613333pt;}
.y73{bottom:776.413333pt;}
.y48{bottom:778.813333pt;}
.yb1{bottom:781.693333pt;}
.y97{bottom:786.813333pt;}
.ye9{bottom:788.733333pt;}
.y1a{bottom:794.013333pt;}
.y72{bottom:794.813333pt;}
.ycf{bottom:796.893333pt;}
.y47{bottom:797.213333pt;}
.y15f{bottom:805.213333pt;}
.ye8{bottom:807.133333pt;}
.yb0{bottom:812.933333pt;}
.y71{bottom:813.253333pt;}
.y46{bottom:815.653333pt;}
.y12d{bottom:820.133333pt;}
.y19{bottom:820.453333pt;}
.y144{bottom:821.253333pt;}
.y15e{bottom:823.653333pt;}
.yce{bottom:828.293333pt;}
.ye7{bottom:830.053333pt;}
.yf8{bottom:830.240000pt;}
.y70{bottom:831.653333pt;}
.y45{bottom:834.053333pt;}
.y96{bottom:839.653333pt;}
.yaf{bottom:844.293333pt;}
.y18{bottom:846.853333pt;}
.y10f{bottom:849.893333pt;}
.y15d{bottom:850.053333pt;}
.y44{bottom:852.453333pt;}
.y6f{bottom:858.053333pt;}
.ycd{bottom:859.653333pt;}
.y17{bottom:865.253333pt;}
.y95{bottom:866.053333pt;}
.y15c{bottom:868.453333pt;}
.y43{bottom:870.853333pt;}
.yae{bottom:875.653333pt;}
.y6e{bottom:876.453333pt;}
.y18e{bottom:878.853333pt;}
.y94{bottom:884.453333pt;}
.y15b{bottom:886.853333pt;}
.ycc{bottom:891.013333pt;}
.y16{bottom:891.653333pt;}
.y6d{bottom:894.853333pt;}
.y42{bottom:897.253333pt;}
.y93{bottom:902.853333pt;}
.y178{bottom:905.253333pt;}
.y15{bottom:910.053333pt;}
.y6c{bottom:913.253333pt;}
.y92{bottom:921.253333pt;}
.yaa{bottom:922.373333pt;}
.y41{bottom:923.653333pt;}
.y10e{bottom:927.973333pt;}
.y12c{bottom:928.133333pt;}
.y6b{bottom:931.653333pt;}
.y14{bottom:936.453333pt;}
.y91{bottom:939.653333pt;}
.y40{bottom:950.053333pt;}
.ycb{bottom:954.373333pt;}
.y90{bottom:958.053333pt;}
.y13{bottom:959.333333pt;}
.y3f{bottom:968.453333pt;}
.ya8{bottom:969.733333pt;}
.y8f{bottom:976.453333pt;}
.y10d{bottom:986.853333pt;}
.y11{bottom:993.733333pt;}
.y3e{bottom:994.853333pt;}
.y3d{bottom:1013.253333pt;}
.y1{bottom:1050.720000pt;}
.ya{bottom:1060.800000pt;}
.y4{bottom:1064.960000pt;}
.y9{bottom:1074.560000pt;}
.h6{height:17.440000pt;}
.hb{height:24.960000pt;}
.ha{height:25.120000pt;}
.h10{height:31.200000pt;}
.h14{height:31.232000pt;}
.h13{height:31.360000pt;}
.h15{height:31.392000pt;}
.hd{height:34.400000pt;}
.hc{height:34.432000pt;}
.hf{height:37.624687pt;}
.h5{height:38.720000pt;}
.h7{height:46.480000pt;}
.h11{height:46.560000pt;}
.h8{height:46.609688pt;}
.h12{height:46.720000pt;}
.h17{height:47.742188pt;}
.h9{height:51.663750pt;}
.h18{height:52.834688pt;}
.h2{height:53.440000pt;}
.h3{height:56.000000pt;}
.h4{height:56.156250pt;}
.he{height:58.640000pt;}
.h1e{height:77.280000pt;}
.h1f{height:77.312000pt;}
.h1a{height:77.440000pt;}
.h1d{height:77.472000pt;}
.h20{height:92.640000pt;}
.h22{height:100.032000pt;}
.h1c{height:108.000000pt;}
.h21{height:108.032000pt;}
.h1b{height:123.232000pt;}
.h16{height:197.920000pt;}
.h19{height:259.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:75.546667pt;}
.w17{width:77.920000pt;}
.w15{width:86.720000pt;}
.w13{width:87.072000pt;}
.w3{width:90.112000pt;}
.wf{width:93.600000pt;}
.w1b{width:94.400000pt;}
.w11{width:94.880000pt;}
.w19{width:103.840000pt;}
.w1a{width:104.032000pt;}
.wd{width:107.072000pt;}
.w6{width:110.592000pt;}
.w18{width:113.472000pt;}
.w10{width:164.506667pt;}
.w5{width:167.226667pt;}
.w4{width:174.266667pt;}
.we{width:176.986667pt;}
.w14{width:179.706667pt;}
.w9{width:198.906667pt;}
.w12{width:202.746667pt;}
.wc{width:219.386667pt;}
.wb{width:248.826667pt;}
.wa{width:254.306667pt;}
.w16{width:329.920000pt;}
.w2{width:549.733333pt;}
.w1c{width:597.693333pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.x20{left:7.200000pt;}
.xc{left:9.600000pt;}
.xe{left:13.280000pt;}
.x30{left:14.720000pt;}
.x5{left:18.080000pt;}
.x34{left:19.333333pt;}
.x3{left:20.832000pt;}
.x2e{left:22.173333pt;}
.x7{left:26.080000pt;}
.x33{left:26.973333pt;}
.x32{left:33.053333pt;}
.x31{left:39.133333pt;}
.xd{left:46.400000pt;}
.x1{left:60.000000pt;}
.x35{left:77.920000pt;}
.x11{left:80.800000pt;}
.xa{left:94.431988pt;}
.x2f{left:100.133333pt;}
.x1a{left:101.951988pt;}
.x2c{left:107.546667pt;}
.x1c{left:108.511988pt;}
.x16{left:109.951988pt;}
.x18{left:112.031988pt;}
.x14{left:115.071988pt;}
.x12{left:163.720000pt;}
.x36{left:179.546667pt;}
.x1e{left:183.706655pt;}
.x1b{left:186.426655pt;}
.x15{left:190.266655pt;}
.x17{left:200.986655pt;}
.x1d{left:216.026655pt;}
.x2b{left:231.840000pt;}
.x2{left:240.386667pt;}
.x2d{left:243.906667pt;}
.xf{left:245.306667pt;}
.x24{left:266.146667pt;}
.x29{left:267.906655pt;}
.x2a{left:269.026655pt;}
.x27{left:281.346667pt;}
.x37{left:293.026667pt;}
.x21{left:321.026667pt;}
.x19{left:341.186655pt;}
.x25{left:361.026667pt;}
.x13{left:396.866655pt;}
.x8{left:401.026667pt;}
.x1f{left:424.413322pt;}
.x22{left:428.093333pt;}
.x10{left:499.613333pt;}
.x38{left:500.893333pt;}
.x28{left:561.853322pt;}
.x26{left:563.773333pt;}
.x23{left:605.093333pt;}
.x9{left:655.653333pt;}
.x4{left:676.453333pt;}
.xb{left:718.213333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  