
    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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_0182e52ca6d4ec90184a0d40.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d257d470e76a7d3a9c7f5c94.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_b60c8066bd0f38099d6da9c6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_93b6863ac9fc52b50ad8cdae.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b1c7153e55e014142daf4ec9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_687128085b5fe916675ae79f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3a93570cbc378ca2a32e8151.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_12a72d53675a6a106b79d7a8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-82.800000px;}
.v1{vertical-align:-79.920000px;}
.vb{vertical-align:-20.880000px;}
.v5{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v6{vertical-align:5.760000px;}
.va{vertical-align:20.880000px;}
.v7{vertical-align:27.360000px;}
.v9{vertical-align:30.240000px;}
.v8{vertical-align:92.160000px;}
.ls28{letter-spacing:-1.650000px;}
.ls18{letter-spacing:-1.470000px;}
.ls15{letter-spacing:-1.386000px;}
.ls1a{letter-spacing:-1.320000px;}
.ls22{letter-spacing:-1.224000px;}
.ls17{letter-spacing:-1.140000px;}
.ls27{letter-spacing:-1.134000px;}
.ls2b{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.936000px;}
.ls25{letter-spacing:-0.504000px;}
.ls2d{letter-spacing:-0.432000px;}
.ls1b{letter-spacing:-0.421800px;}
.lsa{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.277800px;}
.ls26{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.106800px;}
.ls19{letter-spacing:-0.027360px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.054720px;}
.ls5{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.152640px;}
.ls9{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.864000px;}
.ls20{letter-spacing:1.386720px;}
.ls21{letter-spacing:2.106720px;}
.lse{letter-spacing:3.600000px;}
.ls23{letter-spacing:13.800000px;}
.ls24{letter-spacing:14.520000px;}
.ls2c{letter-spacing:15.984000px;}
.ls4{letter-spacing:90.144000px;}
.ls1c{letter-spacing:98.028000px;}
.ls1d{letter-spacing:98.208000px;}
.ls13{letter-spacing:110.448000px;}
.ls11{letter-spacing:116.067360px;}
.ls2{letter-spacing:116.964000px;}
.ls1e{letter-spacing:155.808000px;}
.ls12{letter-spacing:220.347360px;}
.ls10{letter-spacing:220.527360px;}
.lsf{letter-spacing:221.787360px;}
.lsb{letter-spacing:306.120000px;}
.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;}
}
.wse{word-spacing:-74.880000px;}
.ws21{word-spacing:-24.840000px;}
.ws22{word-spacing:-23.940000px;}
.wsf{word-spacing:-22.618080px;}
.ws11{word-spacing:-22.340280px;}
.ws17{word-spacing:-22.196280px;}
.ws23{word-spacing:-21.617280px;}
.ws12{word-spacing:-21.478080px;}
.ws0{word-spacing:-20.016000px;}
.wsd{word-spacing:-18.864000px;}
.ws7{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws1b{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws24{word-spacing:-17.568000px;}
.wsc{word-spacing:-17.064000px;}
.ws20{word-spacing:-16.506480px;}
.ws13{word-spacing:-15.812640px;}
.ws15{word-spacing:-15.785280px;}
.ws19{word-spacing:-15.228000px;}
.ws1f{word-spacing:-14.963280px;}
.ws1a{word-spacing:-14.508000px;}
.ws16{word-spacing:-14.492640px;}
.ws10{word-spacing:-14.426640px;}
.ws14{word-spacing:-14.342640px;}
.ws18{word-spacing:-13.788000px;}
.ws3{word-spacing:-12.420000px;}
.wsa{word-spacing:-12.060000px;}
.ws1d{word-spacing:-10.008000px;}
.ws1e{word-spacing:-9.207360px;}
.ws1c{word-spacing:-8.073360px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-3.538080px;}
._6{margin-left:-2.383680px;}
._0{margin-left:-1.192320px;}
._2{width:1.359360px;}
._5{width:2.408640px;}
._12{width:3.958560px;}
._4{width:6.592320px;}
._3{width:7.920000px;}
._9{width:11.426880px;}
._c{width:12.871680px;}
._e{width:47.043840px;}
._d{width:51.776640px;}
._11{width:56.497440px;}
._10{width:96.817440px;}
._7{width:162.584640px;}
._8{width:163.840320px;}
._13{width:252.588000px;}
._1{width:992.124480px;}
._b{width:1122.190560px;}
._a{width:1329.600000px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(0,128,0);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,128,128);}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.120000px;}
.fsd{font-size:36.000000px;}
.fs4{font-size:48.240000px;}
.fsb{font-size:48.384000px;}
.fsc{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:74.880000px;}
.fsf{font-size:77.760000px;}
.fs6{font-size:81.360000px;}
.fsa{font-size:81.504000px;}
.fs1{font-size:83.520000px;}
.fse{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y64{bottom:1.440000px;}
.y8a{bottom:1.725000px;}
.y87{bottom:1.905000px;}
.yc1{bottom:1.950000px;}
.ybd{bottom:2.130000px;}
.y8f{bottom:2.670000px;}
.y81{bottom:2.805000px;}
.y7d{bottom:2.850000px;}
.y83{bottom:2.985000px;}
.yb6{bottom:3.030000px;}
.y85{bottom:3.165000px;}
.yba{bottom:3.210000px;}
.y96{bottom:3.345000px;}
.yc3{bottom:3.390000px;}
.yc8{bottom:3.525000px;}
.yb4{bottom:4.110000px;}
.yb8{bottom:4.290000px;}
.y7f{bottom:4.425000px;}
.y7b{bottom:4.650000px;}
.ycb{bottom:8.610000px;}
.y62{bottom:130.176000px;}
.yb2{bottom:141.336000px;}
.y61{bottom:150.870000px;}
.yb1{bottom:162.030000px;}
.y60{bottom:171.570000px;}
.y3b{bottom:174.450000px;}
.y79{bottom:178.410000px;}
.yb0{bottom:182.730000px;}
.y5f{bottom:192.270000px;}
.y3a{bottom:195.150000px;}
.y78{bottom:199.110000px;}
.yaf{bottom:203.430000px;}
.y39{bottom:215.670000px;}
.y77{bottom:219.810000px;}
.yae{bottom:224.130000px;}
.y5e{bottom:233.670000px;}
.y38{bottom:236.370000px;}
.y76{bottom:240.510000px;}
.yad{bottom:244.830000px;}
.y5d{bottom:254.370000px;}
.y37{bottom:257.070000px;}
.yac{bottom:265.530000px;}
.y5c{bottom:275.070000px;}
.y36{bottom:277.770000px;}
.y75{bottom:281.910000px;}
.yab{bottom:286.230000px;}
.y5b{bottom:295.770000px;}
.y35{bottom:298.470000px;}
.y74{bottom:302.610000px;}
.yaa{bottom:306.930000px;}
.y5a{bottom:316.470000px;}
.y34{bottom:319.215000px;}
.y73{bottom:323.355000px;}
.ya9{bottom:327.675000px;}
.y59{bottom:337.215000px;}
.y33{bottom:339.915000px;}
.y72{bottom:344.055000px;}
.ya8{bottom:348.375000px;}
.y32{bottom:360.615000px;}
.y71{bottom:364.755000px;}
.ya7{bottom:369.075000px;}
.y58{bottom:378.435000px;}
.y31{bottom:381.315000px;}
.ya6{bottom:389.775000px;}
.y57{bottom:399.135000px;}
.y30{bottom:402.015000px;}
.y70{bottom:406.155000px;}
.ya5{bottom:410.475000px;}
.y56{bottom:419.835000px;}
.y2f{bottom:422.715000px;}
.y6f{bottom:426.855000px;}
.ya4{bottom:431.175000px;}
.y55{bottom:440.535000px;}
.y2e{bottom:443.415000px;}
.y6e{bottom:447.555000px;}
.ya3{bottom:451.875000px;}
.y54{bottom:461.235000px;}
.y2d{bottom:464.115000px;}
.y6d{bottom:468.255000px;}
.y53{bottom:481.935000px;}
.y2c{bottom:484.995000px;}
.ya2{bottom:493.275000px;}
.y12{bottom:496.230000px;}
.y52{bottom:502.635000px;}
.y6c{bottom:509.475000px;}
.y11{bottom:518.550000px;}
.y51{bottom:523.335000px;}
.ya1{bottom:538.995000px;}
.y10{bottom:540.870000px;}
.y6b{bottom:545.115000px;}
.y2b{bottom:546.915000px;}
.yf{bottom:563.190000px;}
.y6a{bottom:565.815000px;}
.y2a{bottom:567.615000px;}
.ya0{bottom:577.905000px;}
.y50{bottom:585.285000px;}
.ye{bottom:585.540000px;}
.y69{bottom:586.545000px;}
.y29{bottom:588.345000px;}
.y9f{bottom:598.605000px;}
.y4f{bottom:606.165000px;}
.y68{bottom:607.065000px;}
.y28{bottom:609.045000px;}
.y9e{bottom:619.305000px;}
.yd{bottom:620.100000px;}
.y4e{bottom:626.865000px;}
.y67{bottom:629.565000px;}
.y27{bottom:629.745000px;}
.y66{bottom:643.065000px;}
.y4d{bottom:647.565000px;}
.y26{bottom:650.445000px;}
.y8c{bottom:651.060000px;}
.y99{bottom:651.960000px;}
.yc{bottom:654.300000px;}
.y8b{bottom:655.560000px;}
.y98{bottom:656.100000px;}
.y9d{bottom:660.705000px;}
.y4c{bottom:668.265000px;}
.y25{bottom:671.145000px;}
.y89{bottom:673.380000px;}
.y63{bottom:673.845000px;}
.y97{bottom:674.100000px;}
.y88{bottom:677.520000px;}
.y95{bottom:678.240000px;}
.y9c{bottom:682.125000px;}
.yb{bottom:688.860000px;}
.y4b{bottom:688.965000px;}
.y24{bottom:691.845000px;}
.y86{bottom:695.340000px;}
.y94{bottom:696.240000px;}
.y84{bottom:699.660000px;}
.y93{bottom:700.560000px;}
.y9b{bottom:705.165000px;}
.y4a{bottom:709.665000px;}
.y23{bottom:712.545000px;}
.y9a{bottom:716.865000px;}
.y82{bottom:717.300000px;}
.y92{bottom:718.020000px;}
.ya{bottom:723.090000px;}
.y49{bottom:730.365000px;}
.ycd{bottom:730.905000px;}
.y22{bottom:733.245000px;}
.yda{bottom:748.365000px;}
.y48{bottom:751.065000px;}
.y21{bottom:753.945000px;}
.y9{bottom:757.290000px;}
.yc9{bottom:757.440000px;}
.yc7{bottom:762.300000px;}
.yd9{bottom:769.065000px;}
.y47{bottom:771.765000px;}
.y20{bottom:774.645000px;}
.yd8{bottom:789.765000px;}
.y8{bottom:791.490000px;}
.y46{bottom:792.465000px;}
.y1f{bottom:795.345000px;}
.y80{bottom:807.300000px;}
.yd7{bottom:810.465000px;}
.y45{bottom:813.165000px;}
.y7e{bottom:813.780000px;}
.y1e{bottom:816.045000px;}
.y7{bottom:821.010000px;}
.y91{bottom:821.340000px;}
.y90{bottom:827.460000px;}
.yd6{bottom:831.210000px;}
.y1d{bottom:836.790000px;}
.yc6{bottom:838.980000px;}
.yc5{bottom:844.200000px;}
.yd5{bottom:851.910000px;}
.y44{bottom:854.790000px;}
.y1c{bottom:857.490000px;}
.yd4{bottom:872.610000px;}
.yc4{bottom:887.220000px;}
.yd3{bottom:893.310000px;}
.y43{bottom:900.330000px;}
.y1b{bottom:919.410000px;}
.y42{bottom:939.210000px;}
.y1a{bottom:940.290000px;}
.yd2{bottom:955.410000px;}
.yc2{bottom:959.220000px;}
.y41{bottom:959.910000px;}
.y19{bottom:960.990000px;}
.y6{bottom:971.565000px;}
.yd1{bottom:976.290000px;}
.y40{bottom:980.790000px;}
.y18{bottom:981.690000px;}
.yc0{bottom:981.900000px;}
.ybf{bottom:986.580000px;}
.y7c{bottom:990.000000px;}
.y8e{bottom:990.360000px;}
.y7a{bottom:996.120000px;}
.y8d{bottom:996.480000px;}
.yd0{bottom:996.990000px;}
.y3f{bottom:1001.490000px;}
.y17{bottom:1002.390000px;}
.y5{bottom:1005.405000px;}
.y3e{bottom:1022.190000px;}
.y16{bottom:1023.090000px;}
.yca{bottom:1026.360000px;}
.y65{bottom:1027.770000px;}
.ycc{bottom:1037.340000px;}
.ybe{bottom:1037.880000px;}
.yb9{bottom:1038.240000px;}
.ycf{bottom:1038.390000px;}
.yb5{bottom:1038.960000px;}
.y4{bottom:1039.245000px;}
.y3d{bottom:1042.890000px;}
.y15{bottom:1043.790000px;}
.ybb{bottom:1046.160000px;}
.yb7{bottom:1049.040000px;}
.yb3{bottom:1052.280000px;}
.ybc{bottom:1055.520000px;}
.yce{bottom:1063.230000px;}
.y3c{bottom:1063.590000px;}
.y3{bottom:1072.725000px;}
.y14{bottom:1085.040000px;}
.y2{bottom:1106.610000px;}
.y13{bottom:1125.720000px;}
.y1{bottom:1140.450000px;}
.h14{height:9.360000px;}
.h21{height:9.540000px;}
.h20{height:9.720000px;}
.h25{height:10.620000px;}
.h12{height:13.860000px;}
.h10{height:14.040000px;}
.h13{height:15.840000px;}
.h19{height:16.020000px;}
.h1f{height:16.380000px;}
.h24{height:17.280000px;}
.h22{height:17.460000px;}
.h1d{height:19.260000px;}
.h16{height:22.680000px;}
.hf{height:22.860000px;}
.h27{height:33.120000px;}
.h15{height:34.543125px;}
.h26{height:37.546875px;}
.h2{height:50.229844px;}
.h11{height:50.312812px;}
.h18{height:50.463000px;}
.h1a{height:56.320312px;}
.hc{height:58.651172px;}
.hd{height:59.324063px;}
.h6{height:60.226875px;}
.h23{height:62.327813px;}
.h1e{height:64.783125px;}
.h8{height:70.664062px;}
.he{height:72.090000px;}
.h7{height:72.562500px;}
.h9{height:74.704922px;}
.h4{height:75.093750px;}
.h1c{height:78.097500px;}
.h2a{height:81.101250px;}
.hb{height:84.855938px;}
.h17{height:85.006125px;}
.h3{height:87.108750px;}
.h28{height:93.867188px;}
.h29{height:131.256000px;}
.h1b{height:148.480312px;}
.ha{height:215.130000px;}
.h5{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:6.120000px;}
.wc{width:6.300000px;}
.w1f{width:6.840000px;}
.w11{width:8.460000px;}
.w9{width:8.640000px;}
.wb{width:11.880000px;}
.w19{width:16.200000px;}
.w1b{width:20.880000px;}
.w1a{width:23.400000px;}
.w23{width:24.660000px;}
.w18{width:25.740000px;}
.w15{width:25.920000px;}
.w5{width:25.956000px;}
.w16{width:30.780000px;}
.w17{width:30.960000px;}
.w8{width:59.040000px;}
.w10{width:65.700000px;}
.w21{width:68.580000px;}
.w1e{width:70.020000px;}
.wa{width:70.200000px;}
.w12{width:70.380000px;}
.w20{width:70.920000px;}
.w22{width:77.940000px;}
.w1d{width:79.020000px;}
.w7{width:84.060000px;}
.w1c{width:99.900000px;}
.wd{width:115.920000px;}
.w14{width:116.100000px;}
.we{width:134.820000px;}
.w6{width:144.720000px;}
.wf{width:151.380000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x2b{left:4.755000px;}
.x2f{left:7.125000px;}
.x31{left:8.175000px;}
.x33{left:19.440000px;}
.x8{left:20.550000px;}
.x3{left:80.999986px;}
.x5{left:108.035986px;}
.x1{left:127.475987px;}
.x19{left:137.736000px;}
.xa{left:156.269986px;}
.x6{left:162.029986px;}
.x32{left:163.470000px;}
.x1b{left:188.129986px;}
.x2{left:206.354987px;}
.x1f{left:214.200000px;}
.x1c{left:232.949986px;}
.x20{left:251.280000px;}
.xd{left:277.740000px;}
.xb{left:279.569986px;}
.x30{left:281.160000px;}
.x25{left:292.680000px;}
.x11{left:303.300000px;}
.x12{left:313.200000px;}
.x26{left:321.840000px;}
.x1e{left:323.894986px;}
.xe{left:345.420000px;}
.x4{left:364.034986px;}
.xf{left:367.020000px;}
.xc{left:378.794986px;}
.x21{left:403.560000px;}
.x27{left:414.540000px;}
.x2c{left:420.480000px;}
.x28{left:422.820000px;}
.x10{left:424.080000px;}
.x2d{left:432.540000px;}
.x29{left:433.620000px;}
.x9{left:443.054986px;}
.x2a{left:444.780000px;}
.x7{left:470.235000px;}
.x2e{left:489.060000px;}
.x1d{left:510.584986px;}
.x13{left:604.800000px;}
.x17{left:636.660000px;}
.x22{left:645.300000px;}
.x18{left:646.920000px;}
.x23{left:659.880000px;}
.x14{left:678.960000px;}
.x24{left:686.520000px;}
.x15{left:693.540000px;}
.x1a{left:717.449986px;}
.x16{left:757.800000px;}
@media print{
.v4{vertical-align:-73.600000pt;}
.v1{vertical-align:-71.040000pt;}
.vb{vertical-align:-18.560000pt;}
.v5{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v6{vertical-align:5.120000pt;}
.va{vertical-align:18.560000pt;}
.v7{vertical-align:24.320000pt;}
.v9{vertical-align:26.880000pt;}
.v8{vertical-align:81.920000pt;}
.ls28{letter-spacing:-1.466667pt;}
.ls18{letter-spacing:-1.306667pt;}
.ls15{letter-spacing:-1.232000pt;}
.ls1a{letter-spacing:-1.173333pt;}
.ls22{letter-spacing:-1.088000pt;}
.ls17{letter-spacing:-1.013333pt;}
.ls27{letter-spacing:-1.008000pt;}
.ls2b{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls25{letter-spacing:-0.448000pt;}
.ls2d{letter-spacing:-0.384000pt;}
.ls1b{letter-spacing:-0.374933pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.246933pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.094933pt;}
.ls19{letter-spacing:-0.024320pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.048640pt;}
.ls5{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.135680pt;}
.ls9{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.768000pt;}
.ls20{letter-spacing:1.232640pt;}
.ls21{letter-spacing:1.872640pt;}
.lse{letter-spacing:3.200000pt;}
.ls23{letter-spacing:12.266667pt;}
.ls24{letter-spacing:12.906667pt;}
.ls2c{letter-spacing:14.208000pt;}
.ls4{letter-spacing:80.128000pt;}
.ls1c{letter-spacing:87.136000pt;}
.ls1d{letter-spacing:87.296000pt;}
.ls13{letter-spacing:98.176000pt;}
.ls11{letter-spacing:103.170987pt;}
.ls2{letter-spacing:103.968000pt;}
.ls1e{letter-spacing:138.496000pt;}
.ls12{letter-spacing:195.864320pt;}
.ls10{letter-spacing:196.024320pt;}
.lsf{letter-spacing:197.144320pt;}
.lsb{letter-spacing:272.106667pt;}
.wse{word-spacing:-66.560000pt;}
.ws21{word-spacing:-22.080000pt;}
.ws22{word-spacing:-21.280000pt;}
.wsf{word-spacing:-20.104960pt;}
.ws11{word-spacing:-19.858027pt;}
.ws17{word-spacing:-19.730027pt;}
.ws23{word-spacing:-19.215360pt;}
.ws12{word-spacing:-19.091627pt;}
.ws0{word-spacing:-17.792000pt;}
.wsd{word-spacing:-16.768000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws1b{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws24{word-spacing:-15.616000pt;}
.wsc{word-spacing:-15.168000pt;}
.ws20{word-spacing:-14.672427pt;}
.ws13{word-spacing:-14.055680pt;}
.ws15{word-spacing:-14.031360pt;}
.ws19{word-spacing:-13.536000pt;}
.ws1f{word-spacing:-13.300693pt;}
.ws1a{word-spacing:-12.896000pt;}
.ws16{word-spacing:-12.882347pt;}
.ws10{word-spacing:-12.823680pt;}
.ws14{word-spacing:-12.749013pt;}
.ws18{word-spacing:-12.256000pt;}
.ws3{word-spacing:-11.040000pt;}
.wsa{word-spacing:-10.720000pt;}
.ws1d{word-spacing:-8.896000pt;}
.ws1e{word-spacing:-8.184320pt;}
.ws1c{word-spacing:-7.176320pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-3.144960pt;}
._6{margin-left:-2.118827pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.208320pt;}
._5{width:2.141013pt;}
._12{width:3.518720pt;}
._4{width:5.859840pt;}
._3{width:7.040000pt;}
._9{width:10.157227pt;}
._c{width:11.441493pt;}
._e{width:41.816747pt;}
._d{width:46.023680pt;}
._11{width:50.219947pt;}
._10{width:86.059947pt;}
._7{width:144.519680pt;}
._8{width:145.635840pt;}
._13{width:224.522667pt;}
._1{width:881.888427pt;}
._b{width:997.502720pt;}
._a{width:1181.866667pt;}
.fs9{font-size:29.440000pt;}
.fsd{font-size:32.000000pt;}
.fs4{font-size:42.880000pt;}
.fsb{font-size:43.008000pt;}
.fsc{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:66.560000pt;}
.fsf{font-size:69.120000pt;}
.fs6{font-size:72.320000pt;}
.fsa{font-size:72.448000pt;}
.fs1{font-size:74.240000pt;}
.fse{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:1.280000pt;}
.y8a{bottom:1.533333pt;}
.y87{bottom:1.693333pt;}
.yc1{bottom:1.733333pt;}
.ybd{bottom:1.893333pt;}
.y8f{bottom:2.373333pt;}
.y81{bottom:2.493333pt;}
.y7d{bottom:2.533333pt;}
.y83{bottom:2.653333pt;}
.yb6{bottom:2.693333pt;}
.y85{bottom:2.813333pt;}
.yba{bottom:2.853333pt;}
.y96{bottom:2.973333pt;}
.yc3{bottom:3.013333pt;}
.yc8{bottom:3.133333pt;}
.yb4{bottom:3.653333pt;}
.yb8{bottom:3.813333pt;}
.y7f{bottom:3.933333pt;}
.y7b{bottom:4.133333pt;}
.ycb{bottom:7.653333pt;}
.y62{bottom:115.712000pt;}
.yb2{bottom:125.632000pt;}
.y61{bottom:134.106667pt;}
.yb1{bottom:144.026667pt;}
.y60{bottom:152.506667pt;}
.y3b{bottom:155.066667pt;}
.y79{bottom:158.586667pt;}
.yb0{bottom:162.426667pt;}
.y5f{bottom:170.906667pt;}
.y3a{bottom:173.466667pt;}
.y78{bottom:176.986667pt;}
.yaf{bottom:180.826667pt;}
.y39{bottom:191.706667pt;}
.y77{bottom:195.386667pt;}
.yae{bottom:199.226667pt;}
.y5e{bottom:207.706667pt;}
.y38{bottom:210.106667pt;}
.y76{bottom:213.786667pt;}
.yad{bottom:217.626667pt;}
.y5d{bottom:226.106667pt;}
.y37{bottom:228.506667pt;}
.yac{bottom:236.026667pt;}
.y5c{bottom:244.506667pt;}
.y36{bottom:246.906667pt;}
.y75{bottom:250.586667pt;}
.yab{bottom:254.426667pt;}
.y5b{bottom:262.906667pt;}
.y35{bottom:265.306667pt;}
.y74{bottom:268.986667pt;}
.yaa{bottom:272.826667pt;}
.y5a{bottom:281.306667pt;}
.y34{bottom:283.746667pt;}
.y73{bottom:287.426667pt;}
.ya9{bottom:291.266667pt;}
.y59{bottom:299.746667pt;}
.y33{bottom:302.146667pt;}
.y72{bottom:305.826667pt;}
.ya8{bottom:309.666667pt;}
.y32{bottom:320.546667pt;}
.y71{bottom:324.226667pt;}
.ya7{bottom:328.066667pt;}
.y58{bottom:336.386667pt;}
.y31{bottom:338.946667pt;}
.ya6{bottom:346.466667pt;}
.y57{bottom:354.786667pt;}
.y30{bottom:357.346667pt;}
.y70{bottom:361.026667pt;}
.ya5{bottom:364.866667pt;}
.y56{bottom:373.186667pt;}
.y2f{bottom:375.746667pt;}
.y6f{bottom:379.426667pt;}
.ya4{bottom:383.266667pt;}
.y55{bottom:391.586667pt;}
.y2e{bottom:394.146667pt;}
.y6e{bottom:397.826667pt;}
.ya3{bottom:401.666667pt;}
.y54{bottom:409.986667pt;}
.y2d{bottom:412.546667pt;}
.y6d{bottom:416.226667pt;}
.y53{bottom:428.386667pt;}
.y2c{bottom:431.106667pt;}
.ya2{bottom:438.466667pt;}
.y12{bottom:441.093333pt;}
.y52{bottom:446.786667pt;}
.y6c{bottom:452.866667pt;}
.y11{bottom:460.933333pt;}
.y51{bottom:465.186667pt;}
.ya1{bottom:479.106667pt;}
.y10{bottom:480.773333pt;}
.y6b{bottom:484.546667pt;}
.y2b{bottom:486.146667pt;}
.yf{bottom:500.613333pt;}
.y6a{bottom:502.946667pt;}
.y2a{bottom:504.546667pt;}
.ya0{bottom:513.693333pt;}
.y50{bottom:520.253333pt;}
.ye{bottom:520.480000pt;}
.y69{bottom:521.373333pt;}
.y29{bottom:522.973333pt;}
.y9f{bottom:532.093333pt;}
.y4f{bottom:538.813333pt;}
.y68{bottom:539.613333pt;}
.y28{bottom:541.373333pt;}
.y9e{bottom:550.493333pt;}
.yd{bottom:551.200000pt;}
.y4e{bottom:557.213333pt;}
.y67{bottom:559.613333pt;}
.y27{bottom:559.773333pt;}
.y66{bottom:571.613333pt;}
.y4d{bottom:575.613333pt;}
.y26{bottom:578.173333pt;}
.y8c{bottom:578.720000pt;}
.y99{bottom:579.520000pt;}
.yc{bottom:581.600000pt;}
.y8b{bottom:582.720000pt;}
.y98{bottom:583.200000pt;}
.y9d{bottom:587.293333pt;}
.y4c{bottom:594.013333pt;}
.y25{bottom:596.573333pt;}
.y89{bottom:598.560000pt;}
.y63{bottom:598.973333pt;}
.y97{bottom:599.200000pt;}
.y88{bottom:602.240000pt;}
.y95{bottom:602.880000pt;}
.y9c{bottom:606.333333pt;}
.yb{bottom:612.320000pt;}
.y4b{bottom:612.413333pt;}
.y24{bottom:614.973333pt;}
.y86{bottom:618.080000pt;}
.y94{bottom:618.880000pt;}
.y84{bottom:621.920000pt;}
.y93{bottom:622.720000pt;}
.y9b{bottom:626.813333pt;}
.y4a{bottom:630.813333pt;}
.y23{bottom:633.373333pt;}
.y9a{bottom:637.213333pt;}
.y82{bottom:637.600000pt;}
.y92{bottom:638.240000pt;}
.ya{bottom:642.746667pt;}
.y49{bottom:649.213333pt;}
.ycd{bottom:649.693333pt;}
.y22{bottom:651.773333pt;}
.yda{bottom:665.213333pt;}
.y48{bottom:667.613333pt;}
.y21{bottom:670.173333pt;}
.y9{bottom:673.146667pt;}
.yc9{bottom:673.280000pt;}
.yc7{bottom:677.600000pt;}
.yd9{bottom:683.613333pt;}
.y47{bottom:686.013333pt;}
.y20{bottom:688.573333pt;}
.yd8{bottom:702.013333pt;}
.y8{bottom:703.546667pt;}
.y46{bottom:704.413333pt;}
.y1f{bottom:706.973333pt;}
.y80{bottom:717.600000pt;}
.yd7{bottom:720.413333pt;}
.y45{bottom:722.813333pt;}
.y7e{bottom:723.360000pt;}
.y1e{bottom:725.373333pt;}
.y7{bottom:729.786667pt;}
.y91{bottom:730.080000pt;}
.y90{bottom:735.520000pt;}
.yd6{bottom:738.853333pt;}
.y1d{bottom:743.813333pt;}
.yc6{bottom:745.760000pt;}
.yc5{bottom:750.400000pt;}
.yd5{bottom:757.253333pt;}
.y44{bottom:759.813333pt;}
.y1c{bottom:762.213333pt;}
.yd4{bottom:775.653333pt;}
.yc4{bottom:788.640000pt;}
.yd3{bottom:794.053333pt;}
.y43{bottom:800.293333pt;}
.y1b{bottom:817.253333pt;}
.y42{bottom:834.853333pt;}
.y1a{bottom:835.813333pt;}
.yd2{bottom:849.253333pt;}
.yc2{bottom:852.640000pt;}
.y41{bottom:853.253333pt;}
.y19{bottom:854.213333pt;}
.y6{bottom:863.613333pt;}
.yd1{bottom:867.813333pt;}
.y40{bottom:871.813333pt;}
.y18{bottom:872.613333pt;}
.yc0{bottom:872.800000pt;}
.ybf{bottom:876.960000pt;}
.y7c{bottom:880.000000pt;}
.y8e{bottom:880.320000pt;}
.y7a{bottom:885.440000pt;}
.y8d{bottom:885.760000pt;}
.yd0{bottom:886.213333pt;}
.y3f{bottom:890.213333pt;}
.y17{bottom:891.013333pt;}
.y5{bottom:893.693333pt;}
.y3e{bottom:908.613333pt;}
.y16{bottom:909.413333pt;}
.yca{bottom:912.320000pt;}
.y65{bottom:913.573333pt;}
.ycc{bottom:922.080000pt;}
.ybe{bottom:922.560000pt;}
.yb9{bottom:922.880000pt;}
.ycf{bottom:923.013333pt;}
.yb5{bottom:923.520000pt;}
.y4{bottom:923.773333pt;}
.y3d{bottom:927.013333pt;}
.y15{bottom:927.813333pt;}
.ybb{bottom:929.920000pt;}
.yb7{bottom:932.480000pt;}
.yb3{bottom:935.360000pt;}
.ybc{bottom:938.240000pt;}
.yce{bottom:945.093333pt;}
.y3c{bottom:945.413333pt;}
.y3{bottom:953.533333pt;}
.y14{bottom:964.480000pt;}
.y2{bottom:983.653333pt;}
.y13{bottom:1000.640000pt;}
.y1{bottom:1013.733333pt;}
.h14{height:8.320000pt;}
.h21{height:8.480000pt;}
.h20{height:8.640000pt;}
.h25{height:9.440000pt;}
.h12{height:12.320000pt;}
.h10{height:12.480000pt;}
.h13{height:14.080000pt;}
.h19{height:14.240000pt;}
.h1f{height:14.560000pt;}
.h24{height:15.360000pt;}
.h22{height:15.520000pt;}
.h1d{height:17.120000pt;}
.h16{height:20.160000pt;}
.hf{height:20.320000pt;}
.h27{height:29.440000pt;}
.h15{height:30.705000pt;}
.h26{height:33.375000pt;}
.h2{height:44.648750pt;}
.h11{height:44.722500pt;}
.h18{height:44.856000pt;}
.h1a{height:50.062500pt;}
.hc{height:52.134375pt;}
.hd{height:52.732500pt;}
.h6{height:53.535000pt;}
.h23{height:55.402500pt;}
.h1e{height:57.585000pt;}
.h8{height:62.812500pt;}
.he{height:64.080000pt;}
.h7{height:64.500000pt;}
.h9{height:66.404375pt;}
.h4{height:66.750000pt;}
.h1c{height:69.420000pt;}
.h2a{height:72.090000pt;}
.hb{height:75.427500pt;}
.h17{height:75.561000pt;}
.h3{height:77.430000pt;}
.h28{height:83.437500pt;}
.h29{height:116.672000pt;}
.h1b{height:131.982500pt;}
.ha{height:191.226667pt;}
.h5{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:5.440000pt;}
.wc{width:5.600000pt;}
.w1f{width:6.080000pt;}
.w11{width:7.520000pt;}
.w9{width:7.680000pt;}
.wb{width:10.560000pt;}
.w19{width:14.400000pt;}
.w1b{width:18.560000pt;}
.w1a{width:20.800000pt;}
.w23{width:21.920000pt;}
.w18{width:22.880000pt;}
.w15{width:23.040000pt;}
.w5{width:23.072000pt;}
.w16{width:27.360000pt;}
.w17{width:27.520000pt;}
.w8{width:52.480000pt;}
.w10{width:58.400000pt;}
.w21{width:60.960000pt;}
.w1e{width:62.240000pt;}
.wa{width:62.400000pt;}
.w12{width:62.560000pt;}
.w20{width:63.040000pt;}
.w22{width:69.280000pt;}
.w1d{width:70.240000pt;}
.w7{width:74.720000pt;}
.w1c{width:88.800000pt;}
.wd{width:103.040000pt;}
.w14{width:103.200000pt;}
.we{width:119.840000pt;}
.w6{width:128.640000pt;}
.wf{width:134.560000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:4.226667pt;}
.x2f{left:6.333333pt;}
.x31{left:7.266667pt;}
.x33{left:17.280000pt;}
.x8{left:18.266667pt;}
.x3{left:71.999988pt;}
.x5{left:96.031988pt;}
.x1{left:113.311988pt;}
.x19{left:122.432000pt;}
.xa{left:138.906655pt;}
.x6{left:144.026655pt;}
.x32{left:145.306667pt;}
.x1b{left:167.226655pt;}
.x2{left:183.426655pt;}
.x1f{left:190.400000pt;}
.x1c{left:207.066655pt;}
.x20{left:223.360000pt;}
.xd{left:246.880000pt;}
.xb{left:248.506655pt;}
.x30{left:249.920000pt;}
.x25{left:260.160000pt;}
.x11{left:269.600000pt;}
.x12{left:278.400000pt;}
.x26{left:286.080000pt;}
.x1e{left:287.906655pt;}
.xe{left:307.040000pt;}
.x4{left:323.586655pt;}
.xf{left:326.240000pt;}
.xc{left:336.706655pt;}
.x21{left:358.720000pt;}
.x27{left:368.480000pt;}
.x2c{left:373.760000pt;}
.x28{left:375.840000pt;}
.x10{left:376.960000pt;}
.x2d{left:384.480000pt;}
.x29{left:385.440000pt;}
.x9{left:393.826655pt;}
.x2a{left:395.360000pt;}
.x7{left:417.986667pt;}
.x2e{left:434.720000pt;}
.x1d{left:453.853321pt;}
.x13{left:537.600000pt;}
.x17{left:565.920000pt;}
.x22{left:573.600000pt;}
.x18{left:575.040000pt;}
.x23{left:586.560000pt;}
.x14{left:603.520000pt;}
.x24{left:610.240000pt;}
.x15{left:616.480000pt;}
.x1a{left:637.733321pt;}
.x16{left:673.600000pt;}
}




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