
    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_ee86d0f7f62e1b843356c62c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2f94f77a7ac5a913f421ba27.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_afa6677c5a1ba49449803ce6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0f5d679c407fd0895e6accf6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_b561ec312cc94527dffb68ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_782b16b3b355338617230a67.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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:ff9;src:url('chunks/assets/font_6b7949cedc4e40e76dc675f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dc373a899f34eac11b83bcea.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.720000px;}
.ls16{letter-spacing:2.160000px;}
.ls13{letter-spacing:2.880000px;}
.lsc{letter-spacing:8.640000px;}
.ls17{letter-spacing:12.240000px;}
.ls10{letter-spacing:12.960000px;}
.lsd{letter-spacing:16.680000px;}
.ls11{letter-spacing:18.720000px;}
.lse{letter-spacing:20.880000px;}
.ls2{letter-spacing:57.600000px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws7{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.432000px;}
.wsb{word-spacing:-18.216000px;}
.ws10{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.wsa{word-spacing:-16.560000px;}
.ws8{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.518000px;}
.ws2{word-spacing:-13.140000px;}
.ws4{word-spacing:-10.980000px;}
.ws5{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._1a{margin-left:-2.187120px;}
._0{margin-left:-1.134000px;}
._1{width:1.182000px;}
._2{width:2.700000px;}
._b{width:4.420800px;}
._9{width:5.976000px;}
._a{width:7.197600px;}
._6{width:8.809680px;}
._5{width:9.920160px;}
._7{width:11.234880px;}
._8{width:12.310560px;}
._10{width:13.565520px;}
._19{width:15.048000px;}
._12{width:16.074000px;}
._11{width:17.330400px;}
._14{width:18.764640px;}
._15{width:19.955040px;}
._16{width:21.752640px;}
._4{width:23.558160px;}
._3{width:24.561360px;}
._23{width:25.797120px;}
._1d{width:27.552000px;}
._1e{width:28.590000px;}
._e{width:30.059280px;}
._17{width:31.134960px;}
._f{width:32.628960px;}
._20{width:34.254000px;}
._1f{width:35.262000px;}
._21{width:36.267120px;}
._22{width:38.160000px;}
._1b{width:39.888000px;}
._13{width:40.995360px;}
._1c{width:42.306000px;}
._24{width:43.332000px;}
._25{width:44.550000px;}
._c{width:46.433520px;}
._d{width:47.509200px;}
._28{width:53.928000px;}
._2c{width:55.077120px;}
._2b{width:56.160000px;}
._27{width:57.513120px;}
._26{width:58.734000px;}
._2a{width:63.257520px;}
._29{width:64.437120px;}
._18{width:846.156000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:3.240000px;}
.y4{bottom:13.530000px;}
.y24{bottom:20.340000px;}
.y3d{bottom:20.520000px;}
.y5{bottom:21.090000px;}
.y3{bottom:29.010000px;}
.y23{bottom:37.620000px;}
.y3c{bottom:37.800000px;}
.y2{bottom:44.490000px;}
.y22{bottom:54.930000px;}
.y3b{bottom:55.080000px;}
.y8{bottom:57.420000px;}
.y40{bottom:57.600000px;}
.y21{bottom:72.210000px;}
.y3a{bottom:72.360000px;}
.y7{bottom:77.580000px;}
.y20{bottom:89.490000px;}
.y39{bottom:89.640000px;}
.y38{bottom:106.740000px;}
.y1f{bottom:106.770000px;}
.y122{bottom:114.660000px;}
.yfb{bottom:118.080000px;}
.y62{bottom:119.160000px;}
.y97{bottom:121.320000px;}
.y1e{bottom:123.870000px;}
.y37{bottom:124.020000px;}
.yb8{bottom:126.900000px;}
.y107{bottom:129.960000px;}
.y121{bottom:135.396000px;}
.yc4{bottom:136.296000px;}
.yfa{bottom:138.816000px;}
.y112{bottom:138.996000px;}
.y61{bottom:139.896000px;}
.y1d{bottom:141.150000px;}
.y36{bottom:141.300000px;}
.ye2{bottom:141.696000px;}
.y96{bottom:142.056000px;}
.y3e{bottom:145.476000px;}
.y106{bottom:150.690000px;}
.yc3{bottom:156.990000px;}
.y1c{bottom:158.430000px;}
.y35{bottom:158.580000px;}
.y111{bottom:159.690000px;}
.yb7{bottom:160.410000px;}
.y60{bottom:160.590000px;}
.y28{bottom:162.210000px;}
.ye1{bottom:162.390000px;}
.y120{bottom:165.090000px;}
.yf9{bottom:168.510000px;}
.y1b{bottom:175.710000px;}
.y34{bottom:175.860000px;}
.y87{bottom:177.690000px;}
.y105{bottom:180.390000px;}
.y5f{bottom:181.290000px;}
.ye0{bottom:183.090000px;}
.y11f{bottom:185.790000px;}
.y95{bottom:186.150000px;}
.yf8{bottom:189.210000px;}
.y1a{bottom:192.990000px;}
.y33{bottom:193.140000px;}
.y86{bottom:198.390000px;}
.y104{bottom:201.090000px;}
.y5e{bottom:201.990000px;}
.ydf{bottom:203.790000px;}
.y94{bottom:207.930000px;}
.yf7{bottom:209.910000px;}
.y19{bottom:210.090000px;}
.y32{bottom:210.240000px;}
.y11e{bottom:215.490000px;}
.y85{bottom:219.090000px;}
.y103{bottom:221.790000px;}
.y5d{bottom:222.690000px;}
.y18{bottom:227.370000px;}
.y31{bottom:227.565000px;}
.y93{bottom:229.710000px;}
.y110{bottom:230.790000px;}
.yde{bottom:233.490000px;}
.y11d{bottom:236.190000px;}
.yf6{bottom:239.610000px;}
.y84{bottom:239.790000px;}
.y102{bottom:242.490000px;}
.y17{bottom:244.650000px;}
.y30{bottom:244.845000px;}
.y10f{bottom:251.490000px;}
.y5c{bottom:252.390000px;}
.y83{bottom:260.490000px;}
.y16{bottom:261.930000px;}
.y2f{bottom:262.125000px;}
.y92{bottom:263.010000px;}
.ydd{bottom:263.190000px;}
.y11c{bottom:265.890000px;}
.yf5{bottom:269.310000px;}
.y10e{bottom:272.190000px;}
.y5b{bottom:273.090000px;}
.y15{bottom:279.210000px;}
.y2e{bottom:279.405000px;}
.y82{bottom:281.190000px;}
.ydc{bottom:283.890000px;}
.y11b{bottom:286.590000px;}
.yf4{bottom:290.010000px;}
.y101{bottom:292.890000px;}
.y5a{bottom:293.790000px;}
.y2d{bottom:296.505000px;}
.y14{bottom:296.535000px;}
.y81{bottom:301.890000px;}
.ydb{bottom:304.590000px;}
.yf3{bottom:310.710000px;}
.y10d{bottom:313.590000px;}
.y13{bottom:313.635000px;}
.y2c{bottom:313.785000px;}
.y59{bottom:314.490000px;}
.y11a{bottom:316.290000px;}
.y80{bottom:322.590000px;}
.yda{bottom:325.290000px;}
.y2b{bottom:331.065000px;}
.yf2{bottom:331.410000px;}
.y10c{bottom:334.290000px;}
.y58{bottom:335.190000px;}
.y119{bottom:336.990000px;}
.y7f{bottom:343.290000px;}
.yd9{bottom:345.990000px;}
.y2a{bottom:348.345000px;}
.yf1{bottom:352.110000px;}
.y10b{bottom:354.990000px;}
.y57{bottom:355.890000px;}
.yb6{bottom:363.990000px;}
.y29{bottom:365.625000px;}
.y118{bottom:366.690000px;}
.yf0{bottom:372.810000px;}
.y7e{bottom:372.990000px;}
.yd8{bottom:375.690000px;}
.y56{bottom:376.590000px;}
.yb5{bottom:384.690000px;}
.y117{bottom:387.435000px;}
.yef{bottom:393.555000px;}
.yc2{bottom:393.735000px;}
.yd7{bottom:396.435000px;}
.y55{bottom:397.335000px;}
.y7d{bottom:402.735000px;}
.yb4{bottom:405.435000px;}
.yc1{bottom:414.435000px;}
.yd6{bottom:417.135000px;}
.y54{bottom:418.035000px;}
.yee{bottom:423.255000px;}
.y7c{bottom:423.435000px;}
.yb3{bottom:426.135000px;}
.yc0{bottom:435.135000px;}
.yd5{bottom:437.835000px;}
.y7b{bottom:444.135000px;}
.y10a{bottom:446.835000px;}
.y53{bottom:447.735000px;}
.yed{bottom:452.955000px;}
.yb2{bottom:455.835000px;}
.y7a{bottom:464.835000px;}
.yd4{bottom:467.535000px;}
.y52{bottom:468.435000px;}
.yec{bottom:473.655000px;}
.yb1{bottom:476.535000px;}
.y79{bottom:485.535000px;}
.y136{bottom:487.875000px;}
.yd3{bottom:488.235000px;}
.y51{bottom:489.135000px;}
.yeb{bottom:494.355000px;}
.yb0{bottom:497.235000px;}
.yd2{bottom:508.935000px;}
.y50{bottom:509.835000px;}
.y78{bottom:515.235000px;}
.yaf{bottom:517.935000px;}
.yea{bottom:524.055000px;}
.y100{bottom:526.935000px;}
.y135{bottom:527.115000px;}
.yd1{bottom:529.635000px;}
.y4f{bottom:530.535000px;}
.ybf{bottom:535.935000px;}
.yae{bottom:538.635000px;}
.ye9{bottom:544.755000px;}
.y77{bottom:544.935000px;}
.yff{bottom:547.635000px;}
.yd0{bottom:550.335000px;}
.y4e{bottom:551.235000px;}
.y27{bottom:554.835000px;}
.y134{bottom:555.735000px;}
.ybe{bottom:556.635000px;}
.yad{bottom:559.335000px;}
.ye8{bottom:565.455000px;}
.y76{bottom:565.635000px;}
.yfe{bottom:568.335000px;}
.y4d{bottom:571.935000px;}
.y26{bottom:575.535000px;}
.ybd{bottom:577.335000px;}
.ycf{bottom:580.035000px;}
.y133{bottom:585.435000px;}
.ye7{bottom:586.155000px;}
.y75{bottom:586.335000px;}
.yac{bottom:589.035000px;}
.y4c{bottom:592.635000px;}
.ybc{bottom:598.035000px;}
.yce{bottom:600.735000px;}
.y12{bottom:601.275000px;}
.y132{bottom:606.135000px;}
.ye6{bottom:606.855000px;}
.y74{bottom:607.035000px;}
.yfd{bottom:609.735000px;}
.yab{bottom:618.735000px;}
.ycd{bottom:621.435000px;}
.y73{bottom:627.735000px;}
.yfc{bottom:630.435000px;}
.y131{bottom:635.835000px;}
.y4b{bottom:636.735000px;}
.yaa{bottom:639.435000px;}
.y72{bottom:648.465000px;}
.ye5{bottom:650.985000px;}
.ycc{bottom:651.165000px;}
.ya9{bottom:660.165000px;}
.y130{bottom:665.565000px;}
.y116{bottom:669.165000px;}
.y4a{bottom:670.245000px;}
.y71{bottom:678.165000px;}
.ya8{bottom:680.865000px;}
.y12f{bottom:686.265000px;}
.y115{bottom:689.865000px;}
.ye4{bottom:690.405000px;}
.y70{bottom:698.865000px;}
.ya7{bottom:701.565000px;}
.y12e{bottom:706.965000px;}
.y114{bottom:710.565000px;}
.y6f{bottom:719.565000px;}
.ycb{bottom:722.265000px;}
.y91{bottom:730.545000px;}
.ya6{bottom:731.265000px;}
.y12d{bottom:736.665000px;}
.y6e{bottom:740.265000px;}
.yca{bottom:742.965000px;}
.y90{bottom:751.245000px;}
.ya5{bottom:751.965000px;}
.y12c{bottom:757.365000px;}
.y6d{bottom:760.965000px;}
.yc9{bottom:763.665000px;}
.y8f{bottom:771.945000px;}
.ya4{bottom:772.665000px;}
.y6c{bottom:781.665000px;}
.y12b{bottom:787.065000px;}
.ybb{bottom:790.665000px;}
.y8e{bottom:792.645000px;}
.ya3{bottom:793.365000px;}
.y113{bottom:802.365000px;}
.y12a{bottom:807.765000px;}
.y6b{bottom:811.365000px;}
.y8d{bottom:813.345000px;}
.yc8{bottom:814.065000px;}
.ya2{bottom:823.065000px;}
.y6a{bottom:832.065000px;}
.y8c{bottom:834.045000px;}
.yc7{bottom:834.765000px;}
.y129{bottom:837.465000px;}
.ya1{bottom:843.765000px;}
.y69{bottom:852.765000px;}
.y8b{bottom:854.745000px;}
.y109{bottom:855.465000px;}
.y128{bottom:858.165000px;}
.ya0{bottom:864.465000px;}
.y68{bottom:873.465000px;}
.y9f{bottom:885.165000px;}
.y127{bottom:887.865000px;}
.y67{bottom:894.210000px;}
.y8a{bottom:898.890000px;}
.y9e{bottom:905.910000px;}
.y126{bottom:908.610000px;}
.yba{bottom:914.910000px;}
.y89{bottom:920.670000px;}
.y66{bottom:923.910000px;}
.yc6{bottom:926.610000px;}
.y9d{bottom:935.610000px;}
.y125{bottom:938.310000px;}
.y11{bottom:941.190000px;}
.y65{bottom:944.610000px;}
.y108{bottom:947.310000px;}
.y9c{bottom:956.310000px;}
.y88{bottom:957.030000px;}
.y10{bottom:963.690000px;}
.y49{bottom:965.310000px;}
.y124{bottom:968.010000px;}
.y9b{bottom:977.010000px;}
.yf{bottom:982.410000px;}
.y48{bottom:986.010000px;}
.y123{bottom:988.710000px;}
.y9a{bottom:997.710000px;}
.ye{bottom:1003.110000px;}
.y47{bottom:1006.710000px;}
.yd{bottom:1017.870000px;}
.y99{bottom:1018.410000px;}
.y46{bottom:1027.410000px;}
.ye3{bottom:1036.410000px;}
.yc{bottom:1038.570000px;}
.yc5{bottom:1039.110000px;}
.y45{bottom:1048.110000px;}
.yb9{bottom:1057.110000px;}
.yb{bottom:1059.270000px;}
.y44{bottom:1068.810000px;}
.y98{bottom:1077.810000px;}
.ya{bottom:1079.970000px;}
.y43{bottom:1089.510000px;}
.y64{bottom:1098.510000px;}
.y9{bottom:1100.670000px;}
.y42{bottom:1110.210000px;}
.y63{bottom:1119.210000px;}
.y6{bottom:1121.910000px;}
.y41{bottom:1139.910000px;}
.y1{bottom:1142.070000px;}
.y3f{bottom:1194.120000px;}
.h8{height:38.158594px;}
.h7{height:48.616875px;}
.hc{height:49.868086px;}
.h3{height:52.998047px;}
.h4{height:54.421875px;}
.h12{height:55.275469px;}
.h9{height:58.651172px;}
.hf{height:60.082031px;}
.hb{height:60.226875px;}
.h13{height:61.423863px;}
.h11{height:65.010937px;}
.h5{height:65.884219px;}
.h14{height:66.757500px;}
.h2{height:67.716000px;}
.h10{height:67.824844px;}
.he{height:70.664062px;}
.h6{height:72.562500px;}
.ha{height:327.675000px;}
.hd{height:379.650000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:18.540000px;}
.w9{width:23.760000px;}
.w3{width:74.700000px;}
.wa{width:178.230000px;}
.w8{width:183.450000px;}
.w4{width:247.710000px;}
.w2{width:374.295000px;}
.w6{width:521.205000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x4{left:66.600000px;}
.x1{left:98.136000px;}
.x7{left:106.235987px;}
.x19{left:112.175987px;}
.x9{left:122.975987px;}
.x16{left:131.975987px;}
.x1f{left:144.935987px;}
.xf{left:149.435987px;}
.x1d{left:153.389987px;}
.x1a{left:159.869987px;}
.x6{left:203.805000px;}
.x14{left:300.134987px;}
.xc{left:327.854987px;}
.x1b{left:371.234987px;}
.xa{left:378.614987px;}
.x12{left:396.974987px;}
.x10{left:402.374987px;}
.x17{left:418.034987px;}
.x8{left:433.874987px;}
.xb{left:446.504987px;}
.x3{left:472.425000px;}
.x5{left:547.125000px;}
.x18{left:577.724987px;}
.x1c{left:598.604987px;}
.x15{left:606.164987px;}
.xd{left:627.450000px;}
.x1e{left:633.209987px;}
.xe{left:645.990000px;}
.x11{left:651.210000px;}
.x13{left:677.669987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls16{letter-spacing:1.920000pt;}
.ls13{letter-spacing:2.560000pt;}
.lsc{letter-spacing:7.680000pt;}
.ls17{letter-spacing:10.880000pt;}
.ls10{letter-spacing:11.520000pt;}
.lsd{letter-spacing:14.826667pt;}
.ls11{letter-spacing:16.640000pt;}
.lse{letter-spacing:18.560000pt;}
.ls2{letter-spacing:51.200000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws7{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.384000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws10{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.wsa{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.016000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws4{word-spacing:-9.760000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._1a{margin-left:-1.944107pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.050667pt;}
._2{width:2.400000pt;}
._b{width:3.929600pt;}
._9{width:5.312000pt;}
._a{width:6.397867pt;}
._6{width:7.830827pt;}
._5{width:8.817920pt;}
._7{width:9.986560pt;}
._8{width:10.942720pt;}
._10{width:12.058240pt;}
._19{width:13.376000pt;}
._12{width:14.288000pt;}
._11{width:15.404800pt;}
._14{width:16.679680pt;}
._15{width:17.737813pt;}
._16{width:19.335680pt;}
._4{width:20.940587pt;}
._3{width:21.832320pt;}
._23{width:22.930773pt;}
._1d{width:24.490667pt;}
._1e{width:25.413333pt;}
._e{width:26.719360pt;}
._17{width:27.675520pt;}
._f{width:29.003520pt;}
._20{width:30.448000pt;}
._1f{width:31.344000pt;}
._21{width:32.237440pt;}
._22{width:33.920000pt;}
._1b{width:35.456000pt;}
._13{width:36.440320pt;}
._1c{width:37.605333pt;}
._24{width:38.517333pt;}
._25{width:39.600000pt;}
._c{width:41.274240pt;}
._d{width:42.230400pt;}
._28{width:47.936000pt;}
._2c{width:48.957440pt;}
._2b{width:49.920000pt;}
._27{width:51.122773pt;}
._26{width:52.208000pt;}
._2a{width:56.228907pt;}
._29{width:57.277440pt;}
._18{width:752.138667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:2.880000pt;}
.y4{bottom:12.026667pt;}
.y24{bottom:18.080000pt;}
.y3d{bottom:18.240000pt;}
.y5{bottom:18.746667pt;}
.y3{bottom:25.786667pt;}
.y23{bottom:33.440000pt;}
.y3c{bottom:33.600000pt;}
.y2{bottom:39.546667pt;}
.y22{bottom:48.826667pt;}
.y3b{bottom:48.960000pt;}
.y8{bottom:51.040000pt;}
.y40{bottom:51.200000pt;}
.y21{bottom:64.186667pt;}
.y3a{bottom:64.320000pt;}
.y7{bottom:68.960000pt;}
.y20{bottom:79.546667pt;}
.y39{bottom:79.680000pt;}
.y38{bottom:94.880000pt;}
.y1f{bottom:94.906667pt;}
.y122{bottom:101.920000pt;}
.yfb{bottom:104.960000pt;}
.y62{bottom:105.920000pt;}
.y97{bottom:107.840000pt;}
.y1e{bottom:110.106667pt;}
.y37{bottom:110.240000pt;}
.yb8{bottom:112.800000pt;}
.y107{bottom:115.520000pt;}
.y121{bottom:120.352000pt;}
.yc4{bottom:121.152000pt;}
.yfa{bottom:123.392000pt;}
.y112{bottom:123.552000pt;}
.y61{bottom:124.352000pt;}
.y1d{bottom:125.466667pt;}
.y36{bottom:125.600000pt;}
.ye2{bottom:125.952000pt;}
.y96{bottom:126.272000pt;}
.y3e{bottom:129.312000pt;}
.y106{bottom:133.946667pt;}
.yc3{bottom:139.546667pt;}
.y1c{bottom:140.826667pt;}
.y35{bottom:140.960000pt;}
.y111{bottom:141.946667pt;}
.yb7{bottom:142.586667pt;}
.y60{bottom:142.746667pt;}
.y28{bottom:144.186667pt;}
.ye1{bottom:144.346667pt;}
.y120{bottom:146.746667pt;}
.yf9{bottom:149.786667pt;}
.y1b{bottom:156.186667pt;}
.y34{bottom:156.320000pt;}
.y87{bottom:157.946667pt;}
.y105{bottom:160.346667pt;}
.y5f{bottom:161.146667pt;}
.ye0{bottom:162.746667pt;}
.y11f{bottom:165.146667pt;}
.y95{bottom:165.466667pt;}
.yf8{bottom:168.186667pt;}
.y1a{bottom:171.546667pt;}
.y33{bottom:171.680000pt;}
.y86{bottom:176.346667pt;}
.y104{bottom:178.746667pt;}
.y5e{bottom:179.546667pt;}
.ydf{bottom:181.146667pt;}
.y94{bottom:184.826667pt;}
.yf7{bottom:186.586667pt;}
.y19{bottom:186.746667pt;}
.y32{bottom:186.880000pt;}
.y11e{bottom:191.546667pt;}
.y85{bottom:194.746667pt;}
.y103{bottom:197.146667pt;}
.y5d{bottom:197.946667pt;}
.y18{bottom:202.106667pt;}
.y31{bottom:202.280000pt;}
.y93{bottom:204.186667pt;}
.y110{bottom:205.146667pt;}
.yde{bottom:207.546667pt;}
.y11d{bottom:209.946667pt;}
.yf6{bottom:212.986667pt;}
.y84{bottom:213.146667pt;}
.y102{bottom:215.546667pt;}
.y17{bottom:217.466667pt;}
.y30{bottom:217.640000pt;}
.y10f{bottom:223.546667pt;}
.y5c{bottom:224.346667pt;}
.y83{bottom:231.546667pt;}
.y16{bottom:232.826667pt;}
.y2f{bottom:233.000000pt;}
.y92{bottom:233.786667pt;}
.ydd{bottom:233.946667pt;}
.y11c{bottom:236.346667pt;}
.yf5{bottom:239.386667pt;}
.y10e{bottom:241.946667pt;}
.y5b{bottom:242.746667pt;}
.y15{bottom:248.186667pt;}
.y2e{bottom:248.360000pt;}
.y82{bottom:249.946667pt;}
.ydc{bottom:252.346667pt;}
.y11b{bottom:254.746667pt;}
.yf4{bottom:257.786667pt;}
.y101{bottom:260.346667pt;}
.y5a{bottom:261.146667pt;}
.y2d{bottom:263.560000pt;}
.y14{bottom:263.586667pt;}
.y81{bottom:268.346667pt;}
.ydb{bottom:270.746667pt;}
.yf3{bottom:276.186667pt;}
.y10d{bottom:278.746667pt;}
.y13{bottom:278.786667pt;}
.y2c{bottom:278.920000pt;}
.y59{bottom:279.546667pt;}
.y11a{bottom:281.146667pt;}
.y80{bottom:286.746667pt;}
.yda{bottom:289.146667pt;}
.y2b{bottom:294.280000pt;}
.yf2{bottom:294.586667pt;}
.y10c{bottom:297.146667pt;}
.y58{bottom:297.946667pt;}
.y119{bottom:299.546667pt;}
.y7f{bottom:305.146667pt;}
.yd9{bottom:307.546667pt;}
.y2a{bottom:309.640000pt;}
.yf1{bottom:312.986667pt;}
.y10b{bottom:315.546667pt;}
.y57{bottom:316.346667pt;}
.yb6{bottom:323.546667pt;}
.y29{bottom:325.000000pt;}
.y118{bottom:325.946667pt;}
.yf0{bottom:331.386667pt;}
.y7e{bottom:331.546667pt;}
.yd8{bottom:333.946667pt;}
.y56{bottom:334.746667pt;}
.yb5{bottom:341.946667pt;}
.y117{bottom:344.386667pt;}
.yef{bottom:349.826667pt;}
.yc2{bottom:349.986667pt;}
.yd7{bottom:352.386667pt;}
.y55{bottom:353.186667pt;}
.y7d{bottom:357.986667pt;}
.yb4{bottom:360.386667pt;}
.yc1{bottom:368.386667pt;}
.yd6{bottom:370.786667pt;}
.y54{bottom:371.586667pt;}
.yee{bottom:376.226667pt;}
.y7c{bottom:376.386667pt;}
.yb3{bottom:378.786667pt;}
.yc0{bottom:386.786667pt;}
.yd5{bottom:389.186667pt;}
.y7b{bottom:394.786667pt;}
.y10a{bottom:397.186667pt;}
.y53{bottom:397.986667pt;}
.yed{bottom:402.626667pt;}
.yb2{bottom:405.186667pt;}
.y7a{bottom:413.186667pt;}
.yd4{bottom:415.586667pt;}
.y52{bottom:416.386667pt;}
.yec{bottom:421.026667pt;}
.yb1{bottom:423.586667pt;}
.y79{bottom:431.586667pt;}
.y136{bottom:433.666667pt;}
.yd3{bottom:433.986667pt;}
.y51{bottom:434.786667pt;}
.yeb{bottom:439.426667pt;}
.yb0{bottom:441.986667pt;}
.yd2{bottom:452.386667pt;}
.y50{bottom:453.186667pt;}
.y78{bottom:457.986667pt;}
.yaf{bottom:460.386667pt;}
.yea{bottom:465.826667pt;}
.y100{bottom:468.386667pt;}
.y135{bottom:468.546667pt;}
.yd1{bottom:470.786667pt;}
.y4f{bottom:471.586667pt;}
.ybf{bottom:476.386667pt;}
.yae{bottom:478.786667pt;}
.ye9{bottom:484.226667pt;}
.y77{bottom:484.386667pt;}
.yff{bottom:486.786667pt;}
.yd0{bottom:489.186667pt;}
.y4e{bottom:489.986667pt;}
.y27{bottom:493.186667pt;}
.y134{bottom:493.986667pt;}
.ybe{bottom:494.786667pt;}
.yad{bottom:497.186667pt;}
.ye8{bottom:502.626667pt;}
.y76{bottom:502.786667pt;}
.yfe{bottom:505.186667pt;}
.y4d{bottom:508.386667pt;}
.y26{bottom:511.586667pt;}
.ybd{bottom:513.186667pt;}
.ycf{bottom:515.586667pt;}
.y133{bottom:520.386667pt;}
.ye7{bottom:521.026667pt;}
.y75{bottom:521.186667pt;}
.yac{bottom:523.586667pt;}
.y4c{bottom:526.786667pt;}
.ybc{bottom:531.586667pt;}
.yce{bottom:533.986667pt;}
.y12{bottom:534.466667pt;}
.y132{bottom:538.786667pt;}
.ye6{bottom:539.426667pt;}
.y74{bottom:539.586667pt;}
.yfd{bottom:541.986667pt;}
.yab{bottom:549.986667pt;}
.ycd{bottom:552.386667pt;}
.y73{bottom:557.986667pt;}
.yfc{bottom:560.386667pt;}
.y131{bottom:565.186667pt;}
.y4b{bottom:565.986667pt;}
.yaa{bottom:568.386667pt;}
.y72{bottom:576.413333pt;}
.ye5{bottom:578.653333pt;}
.ycc{bottom:578.813333pt;}
.ya9{bottom:586.813333pt;}
.y130{bottom:591.613333pt;}
.y116{bottom:594.813333pt;}
.y4a{bottom:595.773333pt;}
.y71{bottom:602.813333pt;}
.ya8{bottom:605.213333pt;}
.y12f{bottom:610.013333pt;}
.y115{bottom:613.213333pt;}
.ye4{bottom:613.693333pt;}
.y70{bottom:621.213333pt;}
.ya7{bottom:623.613333pt;}
.y12e{bottom:628.413333pt;}
.y114{bottom:631.613333pt;}
.y6f{bottom:639.613333pt;}
.ycb{bottom:642.013333pt;}
.y91{bottom:649.373333pt;}
.ya6{bottom:650.013333pt;}
.y12d{bottom:654.813333pt;}
.y6e{bottom:658.013333pt;}
.yca{bottom:660.413333pt;}
.y90{bottom:667.773333pt;}
.ya5{bottom:668.413333pt;}
.y12c{bottom:673.213333pt;}
.y6d{bottom:676.413333pt;}
.yc9{bottom:678.813333pt;}
.y8f{bottom:686.173333pt;}
.ya4{bottom:686.813333pt;}
.y6c{bottom:694.813333pt;}
.y12b{bottom:699.613333pt;}
.ybb{bottom:702.813333pt;}
.y8e{bottom:704.573333pt;}
.ya3{bottom:705.213333pt;}
.y113{bottom:713.213333pt;}
.y12a{bottom:718.013333pt;}
.y6b{bottom:721.213333pt;}
.y8d{bottom:722.973333pt;}
.yc8{bottom:723.613333pt;}
.ya2{bottom:731.613333pt;}
.y6a{bottom:739.613333pt;}
.y8c{bottom:741.373333pt;}
.yc7{bottom:742.013333pt;}
.y129{bottom:744.413333pt;}
.ya1{bottom:750.013333pt;}
.y69{bottom:758.013333pt;}
.y8b{bottom:759.773333pt;}
.y109{bottom:760.413333pt;}
.y128{bottom:762.813333pt;}
.ya0{bottom:768.413333pt;}
.y68{bottom:776.413333pt;}
.y9f{bottom:786.813333pt;}
.y127{bottom:789.213333pt;}
.y67{bottom:794.853333pt;}
.y8a{bottom:799.013333pt;}
.y9e{bottom:805.253333pt;}
.y126{bottom:807.653333pt;}
.yba{bottom:813.253333pt;}
.y89{bottom:818.373333pt;}
.y66{bottom:821.253333pt;}
.yc6{bottom:823.653333pt;}
.y9d{bottom:831.653333pt;}
.y125{bottom:834.053333pt;}
.y11{bottom:836.613333pt;}
.y65{bottom:839.653333pt;}
.y108{bottom:842.053333pt;}
.y9c{bottom:850.053333pt;}
.y88{bottom:850.693333pt;}
.y10{bottom:856.613333pt;}
.y49{bottom:858.053333pt;}
.y124{bottom:860.453333pt;}
.y9b{bottom:868.453333pt;}
.yf{bottom:873.253333pt;}
.y48{bottom:876.453333pt;}
.y123{bottom:878.853333pt;}
.y9a{bottom:886.853333pt;}
.ye{bottom:891.653333pt;}
.y47{bottom:894.853333pt;}
.yd{bottom:904.773333pt;}
.y99{bottom:905.253333pt;}
.y46{bottom:913.253333pt;}
.ye3{bottom:921.253333pt;}
.yc{bottom:923.173333pt;}
.yc5{bottom:923.653333pt;}
.y45{bottom:931.653333pt;}
.yb9{bottom:939.653333pt;}
.yb{bottom:941.573333pt;}
.y44{bottom:950.053333pt;}
.y98{bottom:958.053333pt;}
.ya{bottom:959.973333pt;}
.y43{bottom:968.453333pt;}
.y64{bottom:976.453333pt;}
.y9{bottom:978.373333pt;}
.y42{bottom:986.853333pt;}
.y63{bottom:994.853333pt;}
.y6{bottom:997.253333pt;}
.y41{bottom:1013.253333pt;}
.y1{bottom:1015.173333pt;}
.y3f{bottom:1061.440000pt;}
.h8{height:33.918750pt;}
.h7{height:43.215000pt;}
.hc{height:44.327188pt;}
.h3{height:47.109375pt;}
.h4{height:48.375000pt;}
.h12{height:49.133750pt;}
.h9{height:52.134375pt;}
.hf{height:53.406250pt;}
.hb{height:53.535000pt;}
.h13{height:54.598989pt;}
.h11{height:57.787500pt;}
.h5{height:58.563750pt;}
.h14{height:59.340000pt;}
.h2{height:60.192000pt;}
.h10{height:60.288750pt;}
.he{height:62.812500pt;}
.h6{height:64.500000pt;}
.ha{height:291.266667pt;}
.hd{height:337.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:16.480000pt;}
.w9{width:21.120000pt;}
.w3{width:66.400000pt;}
.wa{width:158.426667pt;}
.w8{width:163.066667pt;}
.w4{width:220.186667pt;}
.w2{width:332.706667pt;}
.w6{width:463.293333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x4{left:59.200000pt;}
.x1{left:87.232000pt;}
.x7{left:94.431988pt;}
.x19{left:99.711988pt;}
.x9{left:109.311988pt;}
.x16{left:117.311988pt;}
.x1f{left:128.831988pt;}
.xf{left:132.831988pt;}
.x1d{left:136.346655pt;}
.x1a{left:142.106655pt;}
.x6{left:181.160000pt;}
.x14{left:266.786655pt;}
.xc{left:291.426655pt;}
.x1b{left:329.986655pt;}
.xa{left:336.546655pt;}
.x12{left:352.866655pt;}
.x10{left:357.666655pt;}
.x17{left:371.586655pt;}
.x8{left:385.666655pt;}
.xb{left:396.893322pt;}
.x3{left:419.933333pt;}
.x5{left:486.333333pt;}
.x18{left:513.533322pt;}
.x1c{left:532.093322pt;}
.x15{left:538.813322pt;}
.xd{left:557.733333pt;}
.x1e{left:562.853322pt;}
.xe{left:574.213333pt;}
.x11{left:578.853333pt;}
.x13{left:602.373322pt;}
}




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