
    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_e5c9ac6986328cf3b514b4f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_55b1547d490a76d8c9bbccb7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_86e95cc75178ab41ad449294.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3c618baa37650e5b44e36054.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_fbecd954700b1ccf1f919e95.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_05daf9e605c0f940fbb2d4f1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_84d8f096b84e6cfdf9956cfa.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d1021c046eab0dd3061ac712.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_50c9af45a8236df9c0c7afa7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_4c4e853b229f74055518ea2c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.130371;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:ffb;src:url('chunks/assets/font_85dedbcb981c587f57b2fd93.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.130371;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:ffc;src:url('chunks/assets/font_6d0dafee4d2810854914d8ed.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.174000px;}
.ls7{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.504000px;}
.ls4{letter-spacing:7.200000px;}
.ls8{letter-spacing:10.260000px;}
.ls6{letter-spacing:12.240000px;}
.ls5{letter-spacing:13.680000px;}
.ls9{letter-spacing:14.400000px;}
.ls2{letter-spacing:28.800000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.064000px;}
.ws0{word-spacing:-13.505760px;}
.ws3{word-spacing:-10.902240px;}
.ws2{word-spacing:0.000000px;}
._1e{margin-left:-5.112000px;}
._19{margin-left:-3.888000px;}
._12{margin-left:-2.808000px;}
._2{margin-left:-1.080000px;}
._0{width:1.055520px;}
._7{width:2.055840px;}
._8{width:3.489600px;}
._3{width:4.680000px;}
._4{width:5.904000px;}
._15{width:7.704000px;}
._9{width:9.144000px;}
._f{width:10.177920px;}
._5{width:11.232000px;}
._6{width:12.816000px;}
._1b{width:13.896000px;}
._d{width:15.048000px;}
._e{width:16.224480px;}
._16{width:19.368000px;}
._1f{width:20.592000px;}
._13{width:21.672000px;}
._14{width:22.680000px;}
._18{width:24.192000px;}
._1a{width:25.872480px;}
._17{width:27.792000px;}
._10{width:28.920000px;}
._11{width:30.000480px;}
._1c{width:31.464000px;}
._1d{width:32.544000px;}
._b{width:33.696000px;}
._c{width:34.716000px;}
._20{width:35.832000px;}
._a{width:36.864000px;}
._21{width:37.944000px;}
._22{width:39.240000px;}
._23{width:40.896000px;}
._24{width:42.480000px;}
._1{width:82.776000px;}
._25{width:1701.636000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs4{font-size:48.384000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:1.155000px;}
.yb8{bottom:1.185000px;}
.yb3{bottom:2.265000px;}
.ybb{bottom:3.525000px;}
.yd{bottom:4.319850px;}
.y8{bottom:4.500000px;}
.yd1{bottom:4.575000px;}
.yc5{bottom:4.755000px;}
.ybf{bottom:4.935000px;}
.yca{bottom:4.965000px;}
.ycf{bottom:5.115000px;}
.yc7{bottom:5.145000px;}
.y3{bottom:5.400000px;}
.ybd{bottom:5.505000px;}
.y9{bottom:6.300000px;}
.yc2{bottom:6.405000px;}
.ye3{bottom:6.840000px;}
.ydf{bottom:7.020000px;}
.ye1{bottom:8.280000px;}
.yf{bottom:12.600000px;}
.y6{bottom:14.400000px;}
.yb5{bottom:17.715000px;}
.yb2{bottom:17.925000px;}
.y7{bottom:19.080000px;}
.yc{bottom:20.160000px;}
.yb0{bottom:20.235000px;}
.y2{bottom:40.140000px;}
.y5{bottom:49.140000px;}
.ye2{bottom:79.200000px;}
.y94{bottom:118.260000px;}
.y102{bottom:123.840000px;}
.y68{bottom:124.560000px;}
.yae{bottom:127.440000px;}
.y39{bottom:138.060000px;}
.y93{bottom:138.960000px;}
.y67{bottom:145.260000px;}
.yad{bottom:148.140000px;}
.y101{bottom:153.540000px;}
.y121{bottom:158.760000px;}
.y92{bottom:159.660000px;}
.y66{bottom:165.960000px;}
.y38{bottom:167.760000px;}
.yac{bottom:168.840000px;}
.y120{bottom:179.460000px;}
.y91{bottom:180.360000px;}
.y100{bottom:183.240000px;}
.y65{bottom:186.660000px;}
.yab{bottom:189.540000px;}
.y37{bottom:197.490000px;}
.y64{bottom:207.390000px;}
.y11f{bottom:209.190000px;}
.y90{bottom:210.090000px;}
.yaa{bottom:210.270000px;}
.yff{bottom:212.970000px;}
.y36{bottom:218.190000px;}
.yd8{bottom:228.090000px;}
.y11e{bottom:229.890000px;}
.y8f{bottom:230.790000px;}
.y63{bottom:237.090000px;}
.y35{bottom:238.890000px;}
.ya9{bottom:239.970000px;}
.yfe{bottom:242.670000px;}
.yd7{bottom:248.790000px;}
.y8e{bottom:251.490000px;}
.y62{bottom:257.790000px;}
.y34{bottom:259.590000px;}
.ya8{bottom:269.670000px;}
.y8d{bottom:272.190000px;}
.yfd{bottom:272.370000px;}
.y61{bottom:278.490000px;}
.y33{bottom:280.290000px;}
.ya7{bottom:290.370000px;}
.y8c{bottom:292.890000px;}
.yfc{bottom:293.070000px;}
.y60{bottom:299.190000px;}
.y32{bottom:300.990000px;}
.y11d{bottom:309.990000px;}
.ya6{bottom:311.070000px;}
.y8b{bottom:313.590000px;}
.yfb{bottom:313.770000px;}
.y5f{bottom:319.890000px;}
.y31{bottom:321.690000px;}
.y11c{bottom:330.690000px;}
.ya5{bottom:331.770000px;}
.y8a{bottom:334.290000px;}
.yfa{bottom:334.470000px;}
.ydd{bottom:335.370000px;}
.y5e{bottom:340.590000px;}
.y30{bottom:342.390000px;}
.ye0{bottom:352.290000px;}
.ya4{bottom:352.470000px;}
.y89{bottom:354.990000px;}
.yf9{bottom:355.170000px;}
.yde{bottom:358.230000px;}
.y11b{bottom:360.390000px;}
.y5d{bottom:361.290000px;}
.y2f{bottom:363.090000px;}
.ydc{bottom:365.070000px;}
.yd6{bottom:370.290000px;}
.ya3{bottom:373.170000px;}
.y88{bottom:375.690000px;}
.yf8{bottom:375.870000px;}
.y11a{bottom:381.090000px;}
.y2e{bottom:383.790000px;}
.y5c{bottom:390.990000px;}
.y87{bottom:396.390000px;}
.yf7{bottom:396.570000px;}
.yd5{bottom:399.990000px;}
.ya2{bottom:402.870000px;}
.y2d{bottom:404.490000px;}
.y119{bottom:410.790000px;}
.y86{bottom:417.090000px;}
.yf6{bottom:417.270000px;}
.y5b{bottom:420.690000px;}
.y2c{bottom:425.190000px;}
.y118{bottom:431.490000px;}
.ya1{bottom:432.570000px;}
.y85{bottom:437.835000px;}
.yf5{bottom:438.015000px;}
.y5a{bottom:441.435000px;}
.y2b{bottom:445.935000px;}
.ya0{bottom:453.315000px;}
.y84{bottom:458.535000px;}
.yf4{bottom:458.715000px;}
.y117{bottom:461.235000px;}
.y59{bottom:462.135000px;}
.y2a{bottom:466.635000px;}
.y9f{bottom:474.015000px;}
.yf3{bottom:479.415000px;}
.y116{bottom:481.935000px;}
.y58{bottom:482.835000px;}
.y83{bottom:488.235000px;}
.y29{bottom:496.335000px;}
.y115{bottom:502.635000px;}
.y57{bottom:503.535000px;}
.y9e{bottom:503.715000px;}
.y82{bottom:508.935000px;}
.yf2{bottom:509.115000px;}
.y56{bottom:524.235000px;}
.y28{bottom:526.035000px;}
.y9d{bottom:529.455000px;}
.y81{bottom:529.635000px;}
.yf1{bottom:529.815000px;}
.y114{bottom:532.335000px;}
.yc0{bottom:536.580000px;}
.y55{bottom:544.935000px;}
.y80{bottom:550.335000px;}
.yf0{bottom:550.515000px;}
.y113{bottom:553.035000px;}
.y27{bottom:555.735000px;}
.yb4{bottom:565.020000px;}
.yd4{bottom:565.635000px;}
.yc4{bottom:570.780000px;}
.y7f{bottom:571.035000px;}
.yef{bottom:571.215000px;}
.y54{bottom:574.635000px;}
.yd0{bottom:578.340000px;}
.y112{bottom:582.735000px;}
.y26{bottom:585.435000px;}
.yd3{bottom:586.335000px;}
.y7e{bottom:591.735000px;}
.y53{bottom:595.335000px;}
.yee{bottom:600.915000px;}
.y111{bottom:603.435000px;}
.y25{bottom:606.135000px;}
.ybe{bottom:606.240000px;}
.yce{bottom:611.640000px;}
.y7d{bottom:612.435000px;}
.y52{bottom:616.035000px;}
.ye{bottom:617.475000px;}
.yed{bottom:621.615000px;}
.y110{bottom:624.135000px;}
.y24{bottom:626.835000px;}
.yc3{bottom:629.460000px;}
.y7c{bottom:633.135000px;}
.y51{bottom:636.735000px;}
.yec{bottom:642.315000px;}
.ycd{bottom:643.680000px;}
.y12e{bottom:643.935000px;}
.yaf{bottom:646.740000px;}
.y23{bottom:647.535000px;}
.y7b{bottom:653.835000px;}
.y50{bottom:657.435000px;}
.yeb{bottom:663.015000px;}
.y22{bottom:668.235000px;}
.y12d{bottom:673.635000px;}
.y7a{bottom:674.565000px;}
.y4f{bottom:678.165000px;}
.ycc{bottom:680.580000px;}
.yea{bottom:683.745000px;}
.y21{bottom:688.965000px;}
.y4e{bottom:698.865000px;}
.yb9{bottom:701.820000px;}
.y12c{bottom:703.365000px;}
.y79{bottom:704.265000px;}
.y20{bottom:709.665000px;}
.y4d{bottom:719.565000px;}
.yc6{bottom:722.340000px;}
.y78{bottom:724.965000px;}
.ydb{bottom:728.565000px;}
.y1f{bottom:730.365000px;}
.y12b{bottom:733.065000px;}
.ye9{bottom:733.965000px;}
.y4c{bottom:740.265000px;}
.y77{bottom:745.665000px;}
.yda{bottom:749.265000px;}
.y1e{bottom:751.065000px;}
.y10f{bottom:754.665000px;}
.yc8{bottom:757.980000px;}
.y12a{bottom:762.765000px;}
.ye8{bottom:763.665000px;}
.y76{bottom:766.365000px;}
.y4b{bottom:769.965000px;}
.y1d{bottom:771.765000px;}
.y10e{bottom:775.365000px;}
.y75{bottom:787.065000px;}
.yc1{bottom:788.760000px;}
.yc9{bottom:790.020000px;}
.y4a{bottom:790.665000px;}
.y1c{bottom:792.465000px;}
.ye7{bottom:793.365000px;}
.y10d{bottom:796.065000px;}
.yb1{bottom:797.940000px;}
.y74{bottom:807.765000px;}
.y49{bottom:811.365000px;}
.y1b{bottom:813.165000px;}
.ye6{bottom:814.065000px;}
.y129{bottom:822.165000px;}
.ycb{bottom:823.860000px;}
.y10c{bottom:825.765000px;}
.y73{bottom:828.465000px;}
.y48{bottom:832.065000px;}
.y1a{bottom:833.865000px;}
.ye5{bottom:834.765000px;}
.y10b{bottom:846.465000px;}
.y128{bottom:851.865000px;}
.ybc{bottom:852.300000px;}
.y47{bottom:852.765000px;}
.y72{bottom:858.165000px;}
.yb7{bottom:860.400000px;}
.y19{bottom:863.565000px;}
.ye4{bottom:864.465000px;}
.y104{bottom:866.265000px;}
.y46{bottom:873.465000px;}
.y103{bottom:875.085000px;}
.y10a{bottom:876.165000px;}
.y71{bottom:878.865000px;}
.y127{bottom:881.565000px;}
.yd9{bottom:882.465000px;}
.yba{bottom:888.840000px;}
.y18{bottom:893.265000px;}
.y45{bottom:894.165000px;}
.y109{bottom:896.865000px;}
.yd2{bottom:903.165000px;}
.y70{bottom:908.565000px;}
.y126{bottom:911.265000px;}
.y44{bottom:914.910000px;}
.y108{bottom:917.610000px;}
.y17{bottom:923.010000px;}
.y9c{bottom:923.910000px;}
.y6f{bottom:938.310000px;}
.y125{bottom:941.010000px;}
.y43{bottom:944.610000px;}
.y107{bottom:947.310000px;}
.y16{bottom:952.710000px;}
.y9b{bottom:953.610000px;}
.y6e{bottom:959.010000px;}
.y42{bottom:965.310000px;}
.y106{bottom:968.010000px;}
.y124{bottom:970.710000px;}
.y9a{bottom:974.310000px;}
.y15{bottom:982.410000px;}
.y41{bottom:986.010000px;}
.y6d{bottom:988.710000px;}
.y99{bottom:995.010000px;}
.y123{bottom:1000.410000px;}
.y40{bottom:1006.710000px;}
.y14{bottom:1012.110000px;}
.y98{bottom:1015.710000px;}
.y6c{bottom:1018.410000px;}
.y3f{bottom:1027.410000px;}
.y122{bottom:1030.110000px;}
.y97{bottom:1036.410000px;}
.y6b{bottom:1039.110000px;}
.y13{bottom:1041.810000px;}
.y3e{bottom:1048.110000px;}
.y96{bottom:1057.110000px;}
.y105{bottom:1059.810000px;}
.y3d{bottom:1068.810000px;}
.y12{bottom:1071.510000px;}
.y95{bottom:1077.810000px;}
.y3c{bottom:1089.510000px;}
.y6a{bottom:1098.510000px;}
.y11{bottom:1101.210000px;}
.y3b{bottom:1110.210000px;}
.y69{bottom:1119.210000px;}
.y10{bottom:1130.910000px;}
.y3a{bottom:1139.910000px;}
.y4{bottom:1191.780000px;}
.y1{bottom:1200.780000px;}
.yb{bottom:1246.320000px;}
.ya{bottom:1261.980000px;}
.h15{height:14.940000px;}
.h1c{height:16.200000px;}
.h17{height:16.380000px;}
.h18{height:16.560000px;}
.h1a{height:16.740000px;}
.h16{height:17.100000px;}
.h19{height:17.820000px;}
.h6{height:19.620000px;}
.h8{height:21.420000px;}
.h1f{height:22.500000px;}
.h1d{height:22.680000px;}
.h1e{height:23.940000px;}
.hb{height:28.260000px;}
.h11{height:29.520000px;}
.h14{height:29.700000px;}
.h12{height:42.327773px;}
.h13{height:45.931641px;}
.h1b{height:46.068750px;}
.h9{height:52.435898px;}
.h2{height:54.900000px;}
.he{height:61.171875px;}
.h7{height:61.189805px;}
.hc{height:61.734375px;}
.h10{height:63.070298px;}
.hd{height:63.175781px;}
.h4{height:63.900000px;}
.ha{height:65.884219px;}
.h5{height:67.824844px;}
.h3{height:73.722656px;}
.hf{height:124.560000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:20.700000px;}
.w3{width:75.240000px;}
.w8{width:84.990000px;}
.wa{width:109.800000px;}
.wc{width:109.980000px;}
.wb{width:115.020000px;}
.wf{width:116.280000px;}
.we{width:116.460000px;}
.wd{width:134.100000px;}
.w11{width:182.550000px;}
.w5{width:188.130000px;}
.w12{width:189.210000px;}
.w10{width:189.390000px;}
.w4{width:192.090000px;}
.w6{width:200.595000px;}
.w13{width:214.770000px;}
.w2{width:359.175000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.xd{left:10.800000px;}
.x1a{left:13.395000px;}
.x17{left:15.510000px;}
.x1c{left:18.105000px;}
.x1d{left:20.265000px;}
.x5{left:21.780000px;}
.x1f{left:27.645000px;}
.x20{left:29.085000px;}
.xa{left:31.185000px;}
.x25{left:32.730000px;}
.x23{left:37.230000px;}
.x15{left:39.270000px;}
.x24{left:42.270000px;}
.x18{left:43.950000px;}
.x22{left:45.510000px;}
.x7{left:47.340000px;}
.x3{left:51.120000px;}
.xb{left:106.235987px;}
.x13{left:118.800000px;}
.xe{left:130.175987px;}
.x2a{left:159.510000px;}
.x2{left:161.145000px;}
.x26{left:170.670000px;}
.x16{left:175.500000px;}
.x28{left:185.610000px;}
.x14{left:188.820000px;}
.x1{left:212.430000px;}
.x11{left:245.909987px;}
.x1e{left:310.320000px;}
.x19{left:332.280000px;}
.x10{left:374.114987px;}
.x8{left:420.375000px;}
.xf{left:446.474987px;}
.x1b{left:459.000000px;}
.x2b{left:546.045000px;}
.x29{left:572.145000px;}
.x27{left:577.725000px;}
.x21{left:634.320000px;}
.x9{left:656.205000px;}
.x4{left:761.010000px;}
.x12{left:770.009987px;}
.xc{left:807.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.154667pt;}
.ls7{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls4{letter-spacing:6.400000pt;}
.ls8{letter-spacing:9.120000pt;}
.ls6{letter-spacing:10.880000pt;}
.ls5{letter-spacing:12.160000pt;}
.ls9{letter-spacing:12.800000pt;}
.ls2{letter-spacing:25.600000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.168000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws3{word-spacing:-9.690880pt;}
.ws2{word-spacing:0.000000pt;}
._1e{margin-left:-4.544000pt;}
._19{margin-left:-3.456000pt;}
._12{margin-left:-2.496000pt;}
._2{margin-left:-0.960000pt;}
._0{width:0.938240pt;}
._7{width:1.827413pt;}
._8{width:3.101867pt;}
._3{width:4.160000pt;}
._4{width:5.248000pt;}
._15{width:6.848000pt;}
._9{width:8.128000pt;}
._f{width:9.047040pt;}
._5{width:9.984000pt;}
._6{width:11.392000pt;}
._1b{width:12.352000pt;}
._d{width:13.376000pt;}
._e{width:14.421760pt;}
._16{width:17.216000pt;}
._1f{width:18.304000pt;}
._13{width:19.264000pt;}
._14{width:20.160000pt;}
._18{width:21.504000pt;}
._1a{width:22.997760pt;}
._17{width:24.704000pt;}
._10{width:25.706667pt;}
._11{width:26.667093pt;}
._1c{width:27.968000pt;}
._1d{width:28.928000pt;}
._b{width:29.952000pt;}
._c{width:30.858667pt;}
._20{width:31.850667pt;}
._a{width:32.768000pt;}
._21{width:33.728000pt;}
._22{width:34.880000pt;}
._23{width:36.352000pt;}
._24{width:37.760000pt;}
._1{width:73.578667pt;}
._25{width:1512.565333pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:43.008000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:1.026667pt;}
.yb8{bottom:1.053333pt;}
.yb3{bottom:2.013333pt;}
.ybb{bottom:3.133333pt;}
.yd{bottom:3.839867pt;}
.y8{bottom:4.000000pt;}
.yd1{bottom:4.066667pt;}
.yc5{bottom:4.226667pt;}
.ybf{bottom:4.386667pt;}
.yca{bottom:4.413333pt;}
.ycf{bottom:4.546667pt;}
.yc7{bottom:4.573333pt;}
.y3{bottom:4.800000pt;}
.ybd{bottom:4.893333pt;}
.y9{bottom:5.600000pt;}
.yc2{bottom:5.693333pt;}
.ye3{bottom:6.080000pt;}
.ydf{bottom:6.240000pt;}
.ye1{bottom:7.360000pt;}
.yf{bottom:11.200000pt;}
.y6{bottom:12.800000pt;}
.yb5{bottom:15.746667pt;}
.yb2{bottom:15.933333pt;}
.y7{bottom:16.960000pt;}
.yc{bottom:17.920000pt;}
.yb0{bottom:17.986667pt;}
.y2{bottom:35.680000pt;}
.y5{bottom:43.680000pt;}
.ye2{bottom:70.400000pt;}
.y94{bottom:105.120000pt;}
.y102{bottom:110.080000pt;}
.y68{bottom:110.720000pt;}
.yae{bottom:113.280000pt;}
.y39{bottom:122.720000pt;}
.y93{bottom:123.520000pt;}
.y67{bottom:129.120000pt;}
.yad{bottom:131.680000pt;}
.y101{bottom:136.480000pt;}
.y121{bottom:141.120000pt;}
.y92{bottom:141.920000pt;}
.y66{bottom:147.520000pt;}
.y38{bottom:149.120000pt;}
.yac{bottom:150.080000pt;}
.y120{bottom:159.520000pt;}
.y91{bottom:160.320000pt;}
.y100{bottom:162.880000pt;}
.y65{bottom:165.920000pt;}
.yab{bottom:168.480000pt;}
.y37{bottom:175.546667pt;}
.y64{bottom:184.346667pt;}
.y11f{bottom:185.946667pt;}
.y90{bottom:186.746667pt;}
.yaa{bottom:186.906667pt;}
.yff{bottom:189.306667pt;}
.y36{bottom:193.946667pt;}
.yd8{bottom:202.746667pt;}
.y11e{bottom:204.346667pt;}
.y8f{bottom:205.146667pt;}
.y63{bottom:210.746667pt;}
.y35{bottom:212.346667pt;}
.ya9{bottom:213.306667pt;}
.yfe{bottom:215.706667pt;}
.yd7{bottom:221.146667pt;}
.y8e{bottom:223.546667pt;}
.y62{bottom:229.146667pt;}
.y34{bottom:230.746667pt;}
.ya8{bottom:239.706667pt;}
.y8d{bottom:241.946667pt;}
.yfd{bottom:242.106667pt;}
.y61{bottom:247.546667pt;}
.y33{bottom:249.146667pt;}
.ya7{bottom:258.106667pt;}
.y8c{bottom:260.346667pt;}
.yfc{bottom:260.506667pt;}
.y60{bottom:265.946667pt;}
.y32{bottom:267.546667pt;}
.y11d{bottom:275.546667pt;}
.ya6{bottom:276.506667pt;}
.y8b{bottom:278.746667pt;}
.yfb{bottom:278.906667pt;}
.y5f{bottom:284.346667pt;}
.y31{bottom:285.946667pt;}
.y11c{bottom:293.946667pt;}
.ya5{bottom:294.906667pt;}
.y8a{bottom:297.146667pt;}
.yfa{bottom:297.306667pt;}
.ydd{bottom:298.106667pt;}
.y5e{bottom:302.746667pt;}
.y30{bottom:304.346667pt;}
.ye0{bottom:313.146667pt;}
.ya4{bottom:313.306667pt;}
.y89{bottom:315.546667pt;}
.yf9{bottom:315.706667pt;}
.yde{bottom:318.426667pt;}
.y11b{bottom:320.346667pt;}
.y5d{bottom:321.146667pt;}
.y2f{bottom:322.746667pt;}
.ydc{bottom:324.506667pt;}
.yd6{bottom:329.146667pt;}
.ya3{bottom:331.706667pt;}
.y88{bottom:333.946667pt;}
.yf8{bottom:334.106667pt;}
.y11a{bottom:338.746667pt;}
.y2e{bottom:341.146667pt;}
.y5c{bottom:347.546667pt;}
.y87{bottom:352.346667pt;}
.yf7{bottom:352.506667pt;}
.yd5{bottom:355.546667pt;}
.ya2{bottom:358.106667pt;}
.y2d{bottom:359.546667pt;}
.y119{bottom:365.146667pt;}
.y86{bottom:370.746667pt;}
.yf6{bottom:370.906667pt;}
.y5b{bottom:373.946667pt;}
.y2c{bottom:377.946667pt;}
.y118{bottom:383.546667pt;}
.ya1{bottom:384.506667pt;}
.y85{bottom:389.186667pt;}
.yf5{bottom:389.346667pt;}
.y5a{bottom:392.386667pt;}
.y2b{bottom:396.386667pt;}
.ya0{bottom:402.946667pt;}
.y84{bottom:407.586667pt;}
.yf4{bottom:407.746667pt;}
.y117{bottom:409.986667pt;}
.y59{bottom:410.786667pt;}
.y2a{bottom:414.786667pt;}
.y9f{bottom:421.346667pt;}
.yf3{bottom:426.146667pt;}
.y116{bottom:428.386667pt;}
.y58{bottom:429.186667pt;}
.y83{bottom:433.986667pt;}
.y29{bottom:441.186667pt;}
.y115{bottom:446.786667pt;}
.y57{bottom:447.586667pt;}
.y9e{bottom:447.746667pt;}
.y82{bottom:452.386667pt;}
.yf2{bottom:452.546667pt;}
.y56{bottom:465.986667pt;}
.y28{bottom:467.586667pt;}
.y9d{bottom:470.626667pt;}
.y81{bottom:470.786667pt;}
.yf1{bottom:470.946667pt;}
.y114{bottom:473.186667pt;}
.yc0{bottom:476.960000pt;}
.y55{bottom:484.386667pt;}
.y80{bottom:489.186667pt;}
.yf0{bottom:489.346667pt;}
.y113{bottom:491.586667pt;}
.y27{bottom:493.986667pt;}
.yb4{bottom:502.240000pt;}
.yd4{bottom:502.786667pt;}
.yc4{bottom:507.360000pt;}
.y7f{bottom:507.586667pt;}
.yef{bottom:507.746667pt;}
.y54{bottom:510.786667pt;}
.yd0{bottom:514.080000pt;}
.y112{bottom:517.986667pt;}
.y26{bottom:520.386667pt;}
.yd3{bottom:521.186667pt;}
.y7e{bottom:525.986667pt;}
.y53{bottom:529.186667pt;}
.yee{bottom:534.146667pt;}
.y111{bottom:536.386667pt;}
.y25{bottom:538.786667pt;}
.ybe{bottom:538.880000pt;}
.yce{bottom:543.680000pt;}
.y7d{bottom:544.386667pt;}
.y52{bottom:547.586667pt;}
.ye{bottom:548.866667pt;}
.yed{bottom:552.546667pt;}
.y110{bottom:554.786667pt;}
.y24{bottom:557.186667pt;}
.yc3{bottom:559.520000pt;}
.y7c{bottom:562.786667pt;}
.y51{bottom:565.986667pt;}
.yec{bottom:570.946667pt;}
.ycd{bottom:572.160000pt;}
.y12e{bottom:572.386667pt;}
.yaf{bottom:574.880000pt;}
.y23{bottom:575.586667pt;}
.y7b{bottom:581.186667pt;}
.y50{bottom:584.386667pt;}
.yeb{bottom:589.346667pt;}
.y22{bottom:593.986667pt;}
.y12d{bottom:598.786667pt;}
.y7a{bottom:599.613333pt;}
.y4f{bottom:602.813333pt;}
.ycc{bottom:604.960000pt;}
.yea{bottom:607.773333pt;}
.y21{bottom:612.413333pt;}
.y4e{bottom:621.213333pt;}
.yb9{bottom:623.840000pt;}
.y12c{bottom:625.213333pt;}
.y79{bottom:626.013333pt;}
.y20{bottom:630.813333pt;}
.y4d{bottom:639.613333pt;}
.yc6{bottom:642.080000pt;}
.y78{bottom:644.413333pt;}
.ydb{bottom:647.613333pt;}
.y1f{bottom:649.213333pt;}
.y12b{bottom:651.613333pt;}
.ye9{bottom:652.413333pt;}
.y4c{bottom:658.013333pt;}
.y77{bottom:662.813333pt;}
.yda{bottom:666.013333pt;}
.y1e{bottom:667.613333pt;}
.y10f{bottom:670.813333pt;}
.yc8{bottom:673.760000pt;}
.y12a{bottom:678.013333pt;}
.ye8{bottom:678.813333pt;}
.y76{bottom:681.213333pt;}
.y4b{bottom:684.413333pt;}
.y1d{bottom:686.013333pt;}
.y10e{bottom:689.213333pt;}
.y75{bottom:699.613333pt;}
.yc1{bottom:701.120000pt;}
.yc9{bottom:702.240000pt;}
.y4a{bottom:702.813333pt;}
.y1c{bottom:704.413333pt;}
.ye7{bottom:705.213333pt;}
.y10d{bottom:707.613333pt;}
.yb1{bottom:709.280000pt;}
.y74{bottom:718.013333pt;}
.y49{bottom:721.213333pt;}
.y1b{bottom:722.813333pt;}
.ye6{bottom:723.613333pt;}
.y129{bottom:730.813333pt;}
.ycb{bottom:732.320000pt;}
.y10c{bottom:734.013333pt;}
.y73{bottom:736.413333pt;}
.y48{bottom:739.613333pt;}
.y1a{bottom:741.213333pt;}
.ye5{bottom:742.013333pt;}
.y10b{bottom:752.413333pt;}
.y128{bottom:757.213333pt;}
.ybc{bottom:757.600000pt;}
.y47{bottom:758.013333pt;}
.y72{bottom:762.813333pt;}
.yb7{bottom:764.800000pt;}
.y19{bottom:767.613333pt;}
.ye4{bottom:768.413333pt;}
.y104{bottom:770.013333pt;}
.y46{bottom:776.413333pt;}
.y103{bottom:777.853333pt;}
.y10a{bottom:778.813333pt;}
.y71{bottom:781.213333pt;}
.y127{bottom:783.613333pt;}
.yd9{bottom:784.413333pt;}
.yba{bottom:790.080000pt;}
.y18{bottom:794.013333pt;}
.y45{bottom:794.813333pt;}
.y109{bottom:797.213333pt;}
.yd2{bottom:802.813333pt;}
.y70{bottom:807.613333pt;}
.y126{bottom:810.013333pt;}
.y44{bottom:813.253333pt;}
.y108{bottom:815.653333pt;}
.y17{bottom:820.453333pt;}
.y9c{bottom:821.253333pt;}
.y6f{bottom:834.053333pt;}
.y125{bottom:836.453333pt;}
.y43{bottom:839.653333pt;}
.y107{bottom:842.053333pt;}
.y16{bottom:846.853333pt;}
.y9b{bottom:847.653333pt;}
.y6e{bottom:852.453333pt;}
.y42{bottom:858.053333pt;}
.y106{bottom:860.453333pt;}
.y124{bottom:862.853333pt;}
.y9a{bottom:866.053333pt;}
.y15{bottom:873.253333pt;}
.y41{bottom:876.453333pt;}
.y6d{bottom:878.853333pt;}
.y99{bottom:884.453333pt;}
.y123{bottom:889.253333pt;}
.y40{bottom:894.853333pt;}
.y14{bottom:899.653333pt;}
.y98{bottom:902.853333pt;}
.y6c{bottom:905.253333pt;}
.y3f{bottom:913.253333pt;}
.y122{bottom:915.653333pt;}
.y97{bottom:921.253333pt;}
.y6b{bottom:923.653333pt;}
.y13{bottom:926.053333pt;}
.y3e{bottom:931.653333pt;}
.y96{bottom:939.653333pt;}
.y105{bottom:942.053333pt;}
.y3d{bottom:950.053333pt;}
.y12{bottom:952.453333pt;}
.y95{bottom:958.053333pt;}
.y3c{bottom:968.453333pt;}
.y6a{bottom:976.453333pt;}
.y11{bottom:978.853333pt;}
.y3b{bottom:986.853333pt;}
.y69{bottom:994.853333pt;}
.y10{bottom:1005.253333pt;}
.y3a{bottom:1013.253333pt;}
.y4{bottom:1059.360000pt;}
.y1{bottom:1067.360000pt;}
.yb{bottom:1107.840000pt;}
.ya{bottom:1121.760000pt;}
.h15{height:13.280000pt;}
.h1c{height:14.400000pt;}
.h17{height:14.560000pt;}
.h18{height:14.720000pt;}
.h1a{height:14.880000pt;}
.h16{height:15.200000pt;}
.h19{height:15.840000pt;}
.h6{height:17.440000pt;}
.h8{height:19.040000pt;}
.h1f{height:20.000000pt;}
.h1d{height:20.160000pt;}
.h1e{height:21.280000pt;}
.hb{height:25.120000pt;}
.h11{height:26.240000pt;}
.h14{height:26.400000pt;}
.h12{height:37.624687pt;}
.h13{height:40.828125pt;}
.h1b{height:40.950000pt;}
.h9{height:46.609688pt;}
.h2{height:48.800000pt;}
.he{height:54.375000pt;}
.h7{height:54.390938pt;}
.hc{height:54.875000pt;}
.h10{height:56.062487pt;}
.hd{height:56.156250pt;}
.h4{height:56.800000pt;}
.ha{height:58.563750pt;}
.h5{height:60.288750pt;}
.h3{height:65.531250pt;}
.hf{height:110.720000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.400000pt;}
.w3{width:66.880000pt;}
.w8{width:75.546667pt;}
.wa{width:97.600000pt;}
.wc{width:97.760000pt;}
.wb{width:102.240000pt;}
.wf{width:103.360000pt;}
.we{width:103.520000pt;}
.wd{width:119.200000pt;}
.w11{width:162.266667pt;}
.w5{width:167.226667pt;}
.w12{width:168.186667pt;}
.w10{width:168.346667pt;}
.w4{width:170.746667pt;}
.w6{width:178.306667pt;}
.w13{width:190.906667pt;}
.w2{width:319.266667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.xd{left:9.600000pt;}
.x1a{left:11.906667pt;}
.x17{left:13.786667pt;}
.x1c{left:16.093333pt;}
.x1d{left:18.013333pt;}
.x5{left:19.360000pt;}
.x1f{left:24.573333pt;}
.x20{left:25.853333pt;}
.xa{left:27.720000pt;}
.x25{left:29.093333pt;}
.x23{left:33.093333pt;}
.x15{left:34.906667pt;}
.x24{left:37.573333pt;}
.x18{left:39.066667pt;}
.x22{left:40.453333pt;}
.x7{left:42.080000pt;}
.x3{left:45.440000pt;}
.xb{left:94.431988pt;}
.x13{left:105.600000pt;}
.xe{left:115.711988pt;}
.x2a{left:141.786667pt;}
.x2{left:143.240000pt;}
.x26{left:151.706667pt;}
.x16{left:156.000000pt;}
.x28{left:164.986667pt;}
.x14{left:167.840000pt;}
.x1{left:188.826667pt;}
.x11{left:218.586655pt;}
.x1e{left:275.840000pt;}
.x19{left:295.360000pt;}
.x10{left:332.546655pt;}
.x8{left:373.666667pt;}
.xf{left:396.866655pt;}
.x1b{left:408.000000pt;}
.x2b{left:485.373333pt;}
.x29{left:508.573333pt;}
.x27{left:513.533333pt;}
.x21{left:563.840000pt;}
.x9{left:583.293333pt;}
.x4{left:676.453333pt;}
.x12{left:684.453322pt;}
.xc{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; }
  