
    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_c6ada35edcc9cfe2fd1d1e51.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056152;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_7861dc943bc037097c220e3d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056152;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_adc6793fe41396da2ea360b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_929daab66ed41f5f384e7d78.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b3052a03071dcacd1be34d4d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_4743b2f26796b462a38b70bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.119629;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_36dd32234da091b0093d0457.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.072754;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_696caf9c7529d2e37c5ecfb6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e1e1940d894c67f71d8b1263.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.994629;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_9c5ad3b5a16b919aa8f6fda2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.072754;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_ee3186354e51253fc097b066.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.166504;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_410f2dd3237a7e11bf3b8188.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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:ffd;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.017280px;}
.ls8{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:31.104000px;}
.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;}
}
.ws10{word-spacing:-72.000000px;}
.wsd{word-spacing:-38.880000px;}
.ws7{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.064000px;}
.ws6{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.226440px;}
.ws4{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.ws3{word-spacing:-14.580000px;}
.wse{word-spacing:-12.204000px;}
.wsf{word-spacing:-12.186000px;}
.ws2{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._7{margin-left:-4.104000px;}
._3{margin-left:-2.430240px;}
._0{margin-left:-1.126080px;}
._1{width:1.183680px;}
._4{width:2.949600px;}
._2{width:4.253280px;}
._f{width:5.808960px;}
._c{width:7.056000px;}
._d{width:8.110080px;}
._e{width:9.212160px;}
._5{width:11.016000px;}
._6{width:12.136320px;}
._a{width:13.423680px;}
._b{width:14.656320px;}
._13{width:15.791040px;}
._12{width:16.952160px;}
._14{width:19.172160px;}
._8{width:20.592000px;}
._9{width:21.672000px;}
._10{width:42.120000px;}
._11{width:43.280640px;}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:3.240000px;}
.yb{bottom:3.600000px;}
.y5c{bottom:5.220000px;}
.yf5{bottom:5.760000px;}
.yf3{bottom:5.940000px;}
.y74{bottom:6.300000px;}
.yfd{bottom:7.740000px;}
.yec{bottom:8.100000px;}
.y5b{bottom:8.280000px;}
.yaa{bottom:9.180000px;}
.yfc{bottom:9.540000px;}
.y7d{bottom:11.520000px;}
.y5e{bottom:11.700000px;}
.y90{bottom:11.880000px;}
.y8{bottom:12.240000px;}
.y6f{bottom:13.860000px;}
.y71{bottom:14.940000px;}
.yea{bottom:16.740000px;}
.yaf{bottom:16.920000px;}
.yac{bottom:17.100000px;}
.y8e{bottom:20.340000px;}
.yef{bottom:20.385000px;}
.y91{bottom:20.520000px;}
.y59{bottom:20.745000px;}
.y8a{bottom:20.880000px;}
.ya{bottom:22.140000px;}
.y73{bottom:23.580000px;}
.yeb{bottom:25.380000px;}
.y7{bottom:32.220000px;}
.ye{bottom:34.200000px;}
.yee{bottom:34.965000px;}
.y9{bottom:36.180000px;}
.y72{bottom:40.860000px;}
.yf1{bottom:48.285000px;}
.yf0{bottom:50.625000px;}
.y38{bottom:54.360000px;}
.y6{bottom:55.440000px;}
.yd{bottom:56.520000px;}
.y5{bottom:74.340000px;}
.y4{bottom:93.450000px;}
.ye8{bottom:96.660000px;}
.y36{bottom:99.540000px;}
.y87{bottom:100.440000px;}
.y3{bottom:112.350000px;}
.ye7{bottom:113.940000px;}
.ya8{bottom:116.640000px;}
.y35{bottom:120.240000px;}
.y86{bottom:121.140000px;}
.ye6{bottom:131.220000px;}
.y2{bottom:131.430000px;}
.y34{bottom:140.976000px;}
.y85{bottom:141.876000px;}
.ye5{bottom:148.536000px;}
.ya7{bottom:149.436000px;}
.y33{bottom:161.670000px;}
.y84{bottom:162.570000px;}
.ye4{bottom:165.630000px;}
.ya6{bottom:182.010000px;}
.y32{bottom:182.370000px;}
.ye3{bottom:182.910000px;}
.y83{bottom:183.270000px;}
.ye2{bottom:200.190000px;}
.y31{bottom:203.070000px;}
.y82{bottom:203.970000px;}
.y62{bottom:211.530000px;}
.ya5{bottom:214.770000px;}
.ye1{bottom:217.470000px;}
.y30{bottom:223.770000px;}
.y81{bottom:224.670000px;}
.y61{bottom:230.430000px;}
.y2f{bottom:244.470000px;}
.y80{bottom:245.370000px;}
.ye0{bottom:245.730000px;}
.ya4{bottom:247.530000px;}
.y60{bottom:264.630000px;}
.y2e{bottom:264.990000px;}
.ydf{bottom:275.430000px;}
.ya3{bottom:280.110000px;}
.y2d{bottom:285.690000px;}
.y7f{bottom:286.950000px;}
.yde{bottom:294.870000px;}
.y5f{bottom:298.830000px;}
.y7e{bottom:305.850000px;}
.y2c{bottom:306.390000px;}
.ya2{bottom:312.870000px;}
.ydd{bottom:315.570000px;}
.y2b{bottom:327.090000px;}
.y5d{bottom:333.030000px;}
.ydc{bottom:336.270000px;}
.y7c{bottom:337.530000px;}
.ya1{bottom:345.630000px;}
.ydb{bottom:356.970000px;}
.y2a{bottom:359.850000px;}
.ya0{bottom:366.330000px;}
.y7b{bottom:369.030000px;}
.y58{bottom:370.650000px;}
.yda{bottom:377.670000px;}
.y9f{bottom:387.030000px;}
.y29{bottom:394.095000px;}
.y5a{bottom:395.355000px;}
.yd9{bottom:398.415000px;}
.y7a{bottom:400.575000px;}
.y9e{bottom:407.055000px;}
.yd8{bottom:419.115000px;}
.y28{bottom:424.155000px;}
.y9d{bottom:424.335000px;}
.y79{bottom:432.255000px;}
.y57{bottom:438.015000px;}
.yd7{bottom:439.815000px;}
.y27{bottom:444.855000px;}
.y9c{bottom:448.275000px;}
.yd6{bottom:460.515000px;}
.yab{bottom:464.835000px;}
.y78{bottom:465.015000px;}
.y26{bottom:465.555000px;}
.yb0{bottom:476.715000px;}
.y56{bottom:477.075000px;}
.yb6{bottom:479.415000px;}
.yd5{bottom:481.215000px;}
.y25{bottom:486.255000px;}
.y77{bottom:496.515000px;}
.y55{bottom:497.775000px;}
.yb2{bottom:499.755000px;}
.yd4{bottom:501.915000px;}
.y24{bottom:506.955000px;}
.yb4{bottom:517.755000px;}
.y54{bottom:518.475000px;}
.yb7{bottom:519.555000px;}
.yd3{bottom:522.615000px;}
.y23{bottom:527.655000px;}
.y76{bottom:528.195000px;}
.y53{bottom:539.175000px;}
.yd2{bottom:543.315000px;}
.y22{bottom:548.355000px;}
.y75{bottom:559.695000px;}
.y52{bottom:559.875000px;}
.yb1{bottom:560.055000px;}
.yd1{bottom:564.015000px;}
.y21{bottom:569.055000px;}
.yae{bottom:576.255000px;}
.yb3{bottom:576.435000px;}
.y51{bottom:580.575000px;}
.yd0{bottom:584.715000px;}
.y20{bottom:589.755000px;}
.y70{bottom:595.875000px;}
.yad{bottom:596.415000px;}
.y50{bottom:601.275000px;}
.ycf{bottom:605.415000px;}
.y1f{bottom:610.455000px;}
.yb5{bottom:621.255000px;}
.y4f{bottom:621.975000px;}
.yce{bottom:626.115000px;}
.y1e{bottom:631.155000px;}
.ycd{bottom:646.845000px;}
.ya9{bottom:647.025000px;}
.y1d{bottom:651.885000px;}
.y6e{bottom:657.105000px;}
.y4e{bottom:663.765000px;}
.ycc{bottom:667.545000px;}
.y1c{bottom:672.585000px;}
.y4d{bottom:684.465000px;}
.ycb{bottom:688.245000px;}
.y1b{bottom:693.285000px;}
.y4c{bottom:705.165000px;}
.yca{bottom:708.945000px;}
.y6d{bottom:710.745000px;}
.y4b{bottom:725.865000px;}
.y1a{bottom:727.665000px;}
.yc9{bottom:729.645000px;}
.y6c{bottom:740.625000px;}
.y4a{bottom:746.565000px;}
.y19{bottom:747.465000px;}
.yc8{bottom:750.345000px;}
.y9b{bottom:754.485000px;}
.y6b{bottom:761.325000px;}
.y49{bottom:767.085000px;}
.yc7{bottom:771.045000px;}
.y9a{bottom:775.185000px;}
.y6a{bottom:782.025000px;}
.y18{bottom:782.925000px;}
.yc6{bottom:791.025000px;}
.y99{bottom:795.885000px;}
.y69{bottom:802.725000px;}
.y48{bottom:808.845000px;}
.y17{bottom:813.525000px;}
.y98{bottom:816.585000px;}
.y68{bottom:823.605000px;}
.yc5{bottom:825.585000px;}
.y97{bottom:837.285000px;}
.y47{bottom:841.605000px;}
.yc4{bottom:842.865000px;}
.y16{bottom:844.125000px;}
.y67{bottom:844.665000px;}
.y96{bottom:857.985000px;}
.yc3{bottom:859.965000px;}
.y15{bottom:866.625000px;}
.y10b{bottom:874.005000px;}
.y46{bottom:874.185000px;}
.yed{bottom:874.905000px;}
.yc2{bottom:877.245000px;}
.y14{bottom:878.685000px;}
.y66{bottom:887.685000px;}
.yc1{bottom:894.570000px;}
.y45{bottom:894.930000px;}
.yfb{bottom:899.250000px;}
.y13{bottom:901.050000px;}
.y10a{bottom:904.650000px;}
.yc0{bottom:911.850000px;}
.y44{bottom:915.630000px;}
.y95{bottom:919.410000px;}
.yfa{bottom:919.770000px;}
.y109{bottom:921.930000px;}
.y12{bottom:925.890000px;}
.y65{bottom:928.230000px;}
.ybf{bottom:929.490000px;}
.y43{bottom:936.330000px;}
.y94{bottom:936.870000px;}
.y108{bottom:939.210000px;}
.yf9{bottom:940.470000px;}
.ybe{bottom:948.570000px;}
.y93{bottom:953.970000px;}
.y107{bottom:956.310000px;}
.y42{bottom:957.030000px;}
.y11{bottom:959.910000px;}
.yf8{bottom:960.990000px;}
.y64{bottom:966.210000px;}
.y92{bottom:971.250000px;}
.y106{bottom:973.590000px;}
.y41{bottom:977.730000px;}
.yf7{bottom:981.510000px;}
.y10{bottom:987.450000px;}
.ybd{bottom:988.710000px;}
.y63{bottom:990.150000px;}
.y105{bottom:990.870000px;}
.y40{bottom:998.430000px;}
.yf6{bottom:1002.210000px;}
.y8f{bottom:1005.810000px;}
.y104{bottom:1008.150000px;}
.y3f{bottom:1019.130000px;}
.yf4{bottom:1022.730000px;}
.y103{bottom:1025.430000px;}
.yf{bottom:1026.870000px;}
.ybc{bottom:1029.210000px;}
.y3e{bottom:1039.830000px;}
.y8d{bottom:1040.370000px;}
.y102{bottom:1042.710000px;}
.yf2{bottom:1043.250000px;}
.yc{bottom:1046.850000px;}
.y101{bottom:1059.810000px;}
.y3d{bottom:1060.530000px;}
.y1{bottom:1063.230000px;}
.ye9{bottom:1067.730000px;}
.ybb{bottom:1069.710000px;}
.y8b{bottom:1074.750000px;}
.y100{bottom:1077.090000px;}
.y3c{bottom:1081.230000px;}
.yff{bottom:1094.370000px;}
.y89{bottom:1095.450000px;}
.y3b{bottom:1101.930000px;}
.yba{bottom:1110.210000px;}
.yfe{bottom:1111.650000px;}
.y3a{bottom:1122.630000px;}
.yb9{bottom:1128.930000px;}
.y39{bottom:1143.330000px;}
.y88{bottom:1146.060000px;}
.yb8{bottom:1146.240000px;}
.y37{bottom:1197.360000px;}
.h1d{height:17.100000px;}
.h1a{height:17.280000px;}
.h28{height:19.800000px;}
.h26{height:19.980000px;}
.h11{height:21.276000px;}
.h1e{height:21.960000px;}
.h29{height:23.616000px;}
.h10{height:27.540000px;}
.h21{height:30.060000px;}
.h20{height:30.240000px;}
.h22{height:30.276000px;}
.h16{height:31.500000px;}
.h18{height:31.536000px;}
.h17{height:31.680000px;}
.hb{height:32.672109px;}
.h15{height:32.760000px;}
.h23{height:33.336562px;}
.h12{height:34.200000px;}
.h1b{height:34.380000px;}
.h1c{height:34.560000px;}
.h19{height:35.460000px;}
.h13{height:38.340000px;}
.h24{height:44.100000px;}
.hc{height:50.218242px;}
.hf{height:51.210352px;}
.h5{height:51.239531px;}
.he{height:52.236000px;}
.h27{height:54.216563px;}
.h1f{height:55.291992px;}
.h3{height:55.663594px;}
.h8{height:56.763281px;}
.h6{height:56.795625px;}
.h14{height:57.996000px;}
.h2a{height:59.439023px;}
.h4{height:60.835430px;}
.hd{height:61.734375px;}
.h7{height:65.884219px;}
.ha{height:68.722031px;}
.h9{height:82.059961px;}
.h2{height:146.736000px;}
.h25{height:188.310000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w16{width:31.860000px;}
.wb{width:63.720000px;}
.w9{width:74.340000px;}
.wf{width:74.376000px;}
.we{width:74.520000px;}
.wa{width:74.556000px;}
.w19{width:78.120000px;}
.w18{width:78.156000px;}
.w1a{width:78.336000px;}
.w12{width:84.996000px;}
.w11{width:85.140000px;}
.w1c{width:85.176000px;}
.w13{width:85.680000px;}
.w6{width:88.020000px;}
.w10{width:95.760000px;}
.w15{width:106.200000px;}
.w1d{width:106.380000px;}
.w17{width:117.036000px;}
.w14{width:148.896000px;}
.w1b{width:191.370000px;}
.w7{width:209.775000px;}
.w8{width:223.230000px;}
.w2{width:223.275000px;}
.wd{width:255.810000px;}
.w4{width:257.610000px;}
.w3{width:284.610000px;}
.wc{width:319.035000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x2e{left:9.900000px;}
.x19{left:11.520000px;}
.x3c{left:12.960000px;}
.x42{left:14.220000px;}
.x7{left:16.560000px;}
.x26{left:19.260000px;}
.x2f{left:20.880000px;}
.x8{left:22.500000px;}
.x21{left:23.760000px;}
.x25{left:26.280000px;}
.x23{left:27.720000px;}
.x37{left:29.340000px;}
.x24{left:31.725000px;}
.x1d{left:33.300000px;}
.x35{left:35.280000px;}
.x36{left:37.080000px;}
.x20{left:38.700000px;}
.x22{left:39.825000px;}
.x43{left:42.120000px;}
.xa{left:57.420000px;}
.xb{left:62.280000px;}
.x1{left:63.900000px;}
.x2d{left:68.220000px;}
.xf{left:73.259987px;}
.x58{left:75.465000px;}
.x1c{left:81.900000px;}
.x5{left:86.400000px;}
.x53{left:90.935987px;}
.x2b{left:103.005000px;}
.xc{left:105.525000px;}
.x12{left:114.695987px;}
.x54{left:117.935987px;}
.x2a{left:127.296000px;}
.x39{left:132.876000px;}
.x15{left:148.355987px;}
.x41{left:164.730000px;}
.x50{left:172.469987px;}
.x9{left:174.465000px;}
.x18{left:186.150000px;}
.x29{left:191.189987px;}
.x4{left:209.730000px;}
.x46{left:223.590000px;}
.x16{left:226.109987px;}
.x55{left:228.090000px;}
.x45{left:230.250000px;}
.x38{left:234.569987px;}
.x10{left:241.769987px;}
.x4e{left:253.830000px;}
.x17{left:259.229987px;}
.x30{left:265.530000px;}
.x1a{left:274.170000px;}
.x3a{left:281.775000px;}
.x3{left:287.175000px;}
.x47{left:291.135000px;}
.x14{left:297.074987px;}
.x59{left:313.095000px;}
.x49{left:320.475000px;}
.x28{left:333.074987px;}
.x31{left:339.915000px;}
.x52{left:348.194987px;}
.x48{left:350.715000px;}
.x3b{left:356.295000px;}
.x13{left:362.954987px;}
.x4f{left:364.934987px;}
.x51{left:380.594987px;}
.x11{left:385.814987px;}
.x4a{left:391.215000px;}
.x56{left:419.475000px;}
.x3d{left:430.635000px;}
.x32{left:435.675000px;}
.xd{left:438.194987px;}
.x4b{left:442.875000px;}
.xe{left:446.654987px;}
.x4c{left:475.665000px;}
.x1b{left:483.945000px;}
.x3e{left:505.185000px;}
.x2c{left:510.045000px;}
.x4d{left:535.245000px;}
.x1e{left:558.285000px;}
.x6{left:571.785000px;}
.x57{left:578.985000px;}
.x33{left:595.185000px;}
.x3f{left:611.385000px;}
.x1f{left:632.625000px;}
.x44{left:667.409987px;}
.x34{left:680.190000px;}
.x40{left:685.770000px;}
.x27{left:728.609987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.015360pt;}
.ls8{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:27.648000pt;}
.ws10{word-spacing:-64.000000pt;}
.wsd{word-spacing:-34.560000pt;}
.ws7{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.168000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws4{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.ws3{word-spacing:-12.960000pt;}
.wse{word-spacing:-10.848000pt;}
.wsf{word-spacing:-10.832000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._7{margin-left:-3.648000pt;}
._3{margin-left:-2.160213pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.052160pt;}
._4{width:2.621867pt;}
._2{width:3.780693pt;}
._f{width:5.163520pt;}
._c{width:6.272000pt;}
._d{width:7.208960pt;}
._e{width:8.188587pt;}
._5{width:9.792000pt;}
._6{width:10.787840pt;}
._a{width:11.932160pt;}
._b{width:13.027840pt;}
._13{width:14.036480pt;}
._12{width:15.068587pt;}
._14{width:17.041920pt;}
._8{width:18.304000pt;}
._9{width:19.264000pt;}
._10{width:37.440000pt;}
._11{width:38.471680pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:2.880000pt;}
.yb{bottom:3.200000pt;}
.y5c{bottom:4.640000pt;}
.yf5{bottom:5.120000pt;}
.yf3{bottom:5.280000pt;}
.y74{bottom:5.600000pt;}
.yfd{bottom:6.880000pt;}
.yec{bottom:7.200000pt;}
.y5b{bottom:7.360000pt;}
.yaa{bottom:8.160000pt;}
.yfc{bottom:8.480000pt;}
.y7d{bottom:10.240000pt;}
.y5e{bottom:10.400000pt;}
.y90{bottom:10.560000pt;}
.y8{bottom:10.880000pt;}
.y6f{bottom:12.320000pt;}
.y71{bottom:13.280000pt;}
.yea{bottom:14.880000pt;}
.yaf{bottom:15.040000pt;}
.yac{bottom:15.200000pt;}
.y8e{bottom:18.080000pt;}
.yef{bottom:18.120000pt;}
.y91{bottom:18.240000pt;}
.y59{bottom:18.440000pt;}
.y8a{bottom:18.560000pt;}
.ya{bottom:19.680000pt;}
.y73{bottom:20.960000pt;}
.yeb{bottom:22.560000pt;}
.y7{bottom:28.640000pt;}
.ye{bottom:30.400000pt;}
.yee{bottom:31.080000pt;}
.y9{bottom:32.160000pt;}
.y72{bottom:36.320000pt;}
.yf1{bottom:42.920000pt;}
.yf0{bottom:45.000000pt;}
.y38{bottom:48.320000pt;}
.y6{bottom:49.280000pt;}
.yd{bottom:50.240000pt;}
.y5{bottom:66.080000pt;}
.y4{bottom:83.066667pt;}
.ye8{bottom:85.920000pt;}
.y36{bottom:88.480000pt;}
.y87{bottom:89.280000pt;}
.y3{bottom:99.866667pt;}
.ye7{bottom:101.280000pt;}
.ya8{bottom:103.680000pt;}
.y35{bottom:106.880000pt;}
.y86{bottom:107.680000pt;}
.ye6{bottom:116.640000pt;}
.y2{bottom:116.826667pt;}
.y34{bottom:125.312000pt;}
.y85{bottom:126.112000pt;}
.ye5{bottom:132.032000pt;}
.ya7{bottom:132.832000pt;}
.y33{bottom:143.706667pt;}
.y84{bottom:144.506667pt;}
.ye4{bottom:147.226667pt;}
.ya6{bottom:161.786667pt;}
.y32{bottom:162.106667pt;}
.ye3{bottom:162.586667pt;}
.y83{bottom:162.906667pt;}
.ye2{bottom:177.946667pt;}
.y31{bottom:180.506667pt;}
.y82{bottom:181.306667pt;}
.y62{bottom:188.026667pt;}
.ya5{bottom:190.906667pt;}
.ye1{bottom:193.306667pt;}
.y30{bottom:198.906667pt;}
.y81{bottom:199.706667pt;}
.y61{bottom:204.826667pt;}
.y2f{bottom:217.306667pt;}
.y80{bottom:218.106667pt;}
.ye0{bottom:218.426667pt;}
.ya4{bottom:220.026667pt;}
.y60{bottom:235.226667pt;}
.y2e{bottom:235.546667pt;}
.ydf{bottom:244.826667pt;}
.ya3{bottom:248.986667pt;}
.y2d{bottom:253.946667pt;}
.y7f{bottom:255.066667pt;}
.yde{bottom:262.106667pt;}
.y5f{bottom:265.626667pt;}
.y7e{bottom:271.866667pt;}
.y2c{bottom:272.346667pt;}
.ya2{bottom:278.106667pt;}
.ydd{bottom:280.506667pt;}
.y2b{bottom:290.746667pt;}
.y5d{bottom:296.026667pt;}
.ydc{bottom:298.906667pt;}
.y7c{bottom:300.026667pt;}
.ya1{bottom:307.226667pt;}
.ydb{bottom:317.306667pt;}
.y2a{bottom:319.866667pt;}
.ya0{bottom:325.626667pt;}
.y7b{bottom:328.026667pt;}
.y58{bottom:329.466667pt;}
.yda{bottom:335.706667pt;}
.y9f{bottom:344.026667pt;}
.y29{bottom:350.306667pt;}
.y5a{bottom:351.426667pt;}
.yd9{bottom:354.146667pt;}
.y7a{bottom:356.066667pt;}
.y9e{bottom:361.826667pt;}
.yd8{bottom:372.546667pt;}
.y28{bottom:377.026667pt;}
.y9d{bottom:377.186667pt;}
.y79{bottom:384.226667pt;}
.y57{bottom:389.346667pt;}
.yd7{bottom:390.946667pt;}
.y27{bottom:395.426667pt;}
.y9c{bottom:398.466667pt;}
.yd6{bottom:409.346667pt;}
.yab{bottom:413.186667pt;}
.y78{bottom:413.346667pt;}
.y26{bottom:413.826667pt;}
.yb0{bottom:423.746667pt;}
.y56{bottom:424.066667pt;}
.yb6{bottom:426.146667pt;}
.yd5{bottom:427.746667pt;}
.y25{bottom:432.226667pt;}
.y77{bottom:441.346667pt;}
.y55{bottom:442.466667pt;}
.yb2{bottom:444.226667pt;}
.yd4{bottom:446.146667pt;}
.y24{bottom:450.626667pt;}
.yb4{bottom:460.226667pt;}
.y54{bottom:460.866667pt;}
.yb7{bottom:461.826667pt;}
.yd3{bottom:464.546667pt;}
.y23{bottom:469.026667pt;}
.y76{bottom:469.506667pt;}
.y53{bottom:479.266667pt;}
.yd2{bottom:482.946667pt;}
.y22{bottom:487.426667pt;}
.y75{bottom:497.506667pt;}
.y52{bottom:497.666667pt;}
.yb1{bottom:497.826667pt;}
.yd1{bottom:501.346667pt;}
.y21{bottom:505.826667pt;}
.yae{bottom:512.226667pt;}
.yb3{bottom:512.386667pt;}
.y51{bottom:516.066667pt;}
.yd0{bottom:519.746667pt;}
.y20{bottom:524.226667pt;}
.y70{bottom:529.666667pt;}
.yad{bottom:530.146667pt;}
.y50{bottom:534.466667pt;}
.ycf{bottom:538.146667pt;}
.y1f{bottom:542.626667pt;}
.yb5{bottom:552.226667pt;}
.y4f{bottom:552.866667pt;}
.yce{bottom:556.546667pt;}
.y1e{bottom:561.026667pt;}
.ycd{bottom:574.973333pt;}
.ya9{bottom:575.133333pt;}
.y1d{bottom:579.453333pt;}
.y6e{bottom:584.093333pt;}
.y4e{bottom:590.013333pt;}
.ycc{bottom:593.373333pt;}
.y1c{bottom:597.853333pt;}
.y4d{bottom:608.413333pt;}
.ycb{bottom:611.773333pt;}
.y1b{bottom:616.253333pt;}
.y4c{bottom:626.813333pt;}
.yca{bottom:630.173333pt;}
.y6d{bottom:631.773333pt;}
.y4b{bottom:645.213333pt;}
.y1a{bottom:646.813333pt;}
.yc9{bottom:648.573333pt;}
.y6c{bottom:658.333333pt;}
.y4a{bottom:663.613333pt;}
.y19{bottom:664.413333pt;}
.yc8{bottom:666.973333pt;}
.y9b{bottom:670.653333pt;}
.y6b{bottom:676.733333pt;}
.y49{bottom:681.853333pt;}
.yc7{bottom:685.373333pt;}
.y9a{bottom:689.053333pt;}
.y6a{bottom:695.133333pt;}
.y18{bottom:695.933333pt;}
.yc6{bottom:703.133333pt;}
.y99{bottom:707.453333pt;}
.y69{bottom:713.533333pt;}
.y48{bottom:718.973333pt;}
.y17{bottom:723.133333pt;}
.y98{bottom:725.853333pt;}
.y68{bottom:732.093333pt;}
.yc5{bottom:733.853333pt;}
.y97{bottom:744.253333pt;}
.y47{bottom:748.093333pt;}
.yc4{bottom:749.213333pt;}
.y16{bottom:750.333333pt;}
.y67{bottom:750.813333pt;}
.y96{bottom:762.653333pt;}
.yc3{bottom:764.413333pt;}
.y15{bottom:770.333333pt;}
.y10b{bottom:776.893333pt;}
.y46{bottom:777.053333pt;}
.yed{bottom:777.693333pt;}
.yc2{bottom:779.773333pt;}
.y14{bottom:781.053333pt;}
.y66{bottom:789.053333pt;}
.yc1{bottom:795.173333pt;}
.y45{bottom:795.493333pt;}
.yfb{bottom:799.333333pt;}
.y13{bottom:800.933333pt;}
.y10a{bottom:804.133333pt;}
.yc0{bottom:810.533333pt;}
.y44{bottom:813.893333pt;}
.y95{bottom:817.253333pt;}
.yfa{bottom:817.573333pt;}
.y109{bottom:819.493333pt;}
.y12{bottom:823.013333pt;}
.y65{bottom:825.093333pt;}
.ybf{bottom:826.213333pt;}
.y43{bottom:832.293333pt;}
.y94{bottom:832.773333pt;}
.y108{bottom:834.853333pt;}
.yf9{bottom:835.973333pt;}
.ybe{bottom:843.173333pt;}
.y93{bottom:847.973333pt;}
.y107{bottom:850.053333pt;}
.y42{bottom:850.693333pt;}
.y11{bottom:853.253333pt;}
.yf8{bottom:854.213333pt;}
.y64{bottom:858.853333pt;}
.y92{bottom:863.333333pt;}
.y106{bottom:865.413333pt;}
.y41{bottom:869.093333pt;}
.yf7{bottom:872.453333pt;}
.y10{bottom:877.733333pt;}
.ybd{bottom:878.853333pt;}
.y63{bottom:880.133333pt;}
.y105{bottom:880.773333pt;}
.y40{bottom:887.493333pt;}
.yf6{bottom:890.853333pt;}
.y8f{bottom:894.053333pt;}
.y104{bottom:896.133333pt;}
.y3f{bottom:905.893333pt;}
.yf4{bottom:909.093333pt;}
.y103{bottom:911.493333pt;}
.yf{bottom:912.773333pt;}
.ybc{bottom:914.853333pt;}
.y3e{bottom:924.293333pt;}
.y8d{bottom:924.773333pt;}
.y102{bottom:926.853333pt;}
.yf2{bottom:927.333333pt;}
.yc{bottom:930.533333pt;}
.y101{bottom:942.053333pt;}
.y3d{bottom:942.693333pt;}
.y1{bottom:945.093333pt;}
.ye9{bottom:949.093333pt;}
.ybb{bottom:950.853333pt;}
.y8b{bottom:955.333333pt;}
.y100{bottom:957.413333pt;}
.y3c{bottom:961.093333pt;}
.yff{bottom:972.773333pt;}
.y89{bottom:973.733333pt;}
.y3b{bottom:979.493333pt;}
.yba{bottom:986.853333pt;}
.yfe{bottom:988.133333pt;}
.y3a{bottom:997.893333pt;}
.yb9{bottom:1003.493333pt;}
.y39{bottom:1016.293333pt;}
.y88{bottom:1018.720000pt;}
.yb8{bottom:1018.880000pt;}
.y37{bottom:1064.320000pt;}
.h1d{height:15.200000pt;}
.h1a{height:15.360000pt;}
.h28{height:17.600000pt;}
.h26{height:17.760000pt;}
.h11{height:18.912000pt;}
.h1e{height:19.520000pt;}
.h29{height:20.992000pt;}
.h10{height:24.480000pt;}
.h21{height:26.720000pt;}
.h20{height:26.880000pt;}
.h22{height:26.912000pt;}
.h16{height:28.000000pt;}
.h18{height:28.032000pt;}
.h17{height:28.160000pt;}
.hb{height:29.041875pt;}
.h15{height:29.120000pt;}
.h23{height:29.632500pt;}
.h12{height:30.400000pt;}
.h1b{height:30.560000pt;}
.h1c{height:30.720000pt;}
.h19{height:31.520000pt;}
.h13{height:34.080000pt;}
.h24{height:39.200000pt;}
.hc{height:44.638438pt;}
.hf{height:45.520312pt;}
.h5{height:45.546250pt;}
.he{height:46.432000pt;}
.h27{height:48.192500pt;}
.h1f{height:49.148438pt;}
.h3{height:49.478750pt;}
.h8{height:50.456250pt;}
.h6{height:50.485000pt;}
.h14{height:51.552000pt;}
.h2a{height:52.834688pt;}
.h4{height:54.075937pt;}
.hd{height:54.875000pt;}
.h7{height:58.563750pt;}
.ha{height:61.086250pt;}
.h9{height:72.942188pt;}
.h2{height:130.432000pt;}
.h25{height:167.386667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w16{width:28.320000pt;}
.wb{width:56.640000pt;}
.w9{width:66.080000pt;}
.wf{width:66.112000pt;}
.we{width:66.240000pt;}
.wa{width:66.272000pt;}
.w19{width:69.440000pt;}
.w18{width:69.472000pt;}
.w1a{width:69.632000pt;}
.w12{width:75.552000pt;}
.w11{width:75.680000pt;}
.w1c{width:75.712000pt;}
.w13{width:76.160000pt;}
.w6{width:78.240000pt;}
.w10{width:85.120000pt;}
.w15{width:94.400000pt;}
.w1d{width:94.560000pt;}
.w17{width:104.032000pt;}
.w14{width:132.352000pt;}
.w1b{width:170.106667pt;}
.w7{width:186.466667pt;}
.w8{width:198.426667pt;}
.w2{width:198.466667pt;}
.wd{width:227.386667pt;}
.w4{width:228.986667pt;}
.w3{width:252.986667pt;}
.wc{width:283.586667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x2e{left:8.800000pt;}
.x19{left:10.240000pt;}
.x3c{left:11.520000pt;}
.x42{left:12.640000pt;}
.x7{left:14.720000pt;}
.x26{left:17.120000pt;}
.x2f{left:18.560000pt;}
.x8{left:20.000000pt;}
.x21{left:21.120000pt;}
.x25{left:23.360000pt;}
.x23{left:24.640000pt;}
.x37{left:26.080000pt;}
.x24{left:28.200000pt;}
.x1d{left:29.600000pt;}
.x35{left:31.360000pt;}
.x36{left:32.960000pt;}
.x20{left:34.400000pt;}
.x22{left:35.400000pt;}
.x43{left:37.440000pt;}
.xa{left:51.040000pt;}
.xb{left:55.360000pt;}
.x1{left:56.800000pt;}
.x2d{left:60.640000pt;}
.xf{left:65.119988pt;}
.x58{left:67.080000pt;}
.x1c{left:72.800000pt;}
.x5{left:76.800000pt;}
.x53{left:80.831988pt;}
.x2b{left:91.560000pt;}
.xc{left:93.800000pt;}
.x12{left:101.951988pt;}
.x54{left:104.831988pt;}
.x2a{left:113.152000pt;}
.x39{left:118.112000pt;}
.x15{left:131.871988pt;}
.x41{left:146.426667pt;}
.x50{left:153.306655pt;}
.x9{left:155.080000pt;}
.x18{left:165.466667pt;}
.x29{left:169.946655pt;}
.x4{left:186.426667pt;}
.x46{left:198.746667pt;}
.x16{left:200.986655pt;}
.x55{left:202.746667pt;}
.x45{left:204.666667pt;}
.x38{left:208.506655pt;}
.x10{left:214.906655pt;}
.x4e{left:225.626667pt;}
.x17{left:230.426655pt;}
.x30{left:236.026667pt;}
.x1a{left:243.706667pt;}
.x3a{left:250.466667pt;}
.x3{left:255.266667pt;}
.x47{left:258.786667pt;}
.x14{left:264.066655pt;}
.x59{left:278.306667pt;}
.x49{left:284.866667pt;}
.x28{left:296.066655pt;}
.x31{left:302.146667pt;}
.x52{left:309.506655pt;}
.x48{left:311.746667pt;}
.x3b{left:316.706667pt;}
.x13{left:322.626655pt;}
.x4f{left:324.386655pt;}
.x51{left:338.306655pt;}
.x11{left:342.946655pt;}
.x4a{left:347.746667pt;}
.x56{left:372.866667pt;}
.x3d{left:382.786667pt;}
.x32{left:387.266667pt;}
.xd{left:389.506655pt;}
.x4b{left:393.666667pt;}
.xe{left:397.026655pt;}
.x4c{left:422.813333pt;}
.x1b{left:430.173333pt;}
.x3e{left:449.053333pt;}
.x2c{left:453.373333pt;}
.x4d{left:475.773333pt;}
.x1e{left:496.253333pt;}
.x6{left:508.253333pt;}
.x57{left:514.653333pt;}
.x33{left:529.053333pt;}
.x3f{left:543.453333pt;}
.x1f{left:562.333333pt;}
.x44{left:593.253322pt;}
.x34{left:604.613333pt;}
.x40{left:609.573333pt;}
.x27{left:647.653322pt;}
}




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