
    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_d705d0da8608edf94414feee.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_9b8b332c4dfb84f027b9be17.woff')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_a300c2fe98e58f3ad8cacd1e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_06b9ccac49f4d0a2f7717578.woff')format("woff");}.ff4{font-family:ff4;line-height:1.030273;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_f07e3d5db57a503fe4042801.woff')format("woff");}.ff5{font-family:ff5;line-height:1.030273;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_09de5ba45d2702c610ee56e2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.091797;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_499cb3517eb61e7aaec6a3c0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.091797;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_f2577798a7a7b7b8aed76386.woff')format("woff");}.ff9{font-family:ff9;line-height:1.091797;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_c1453ae5c63f58065d7c42f9.woff')format("woff");}.ffa{font-family:ffa;line-height:1.090332;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_6bc63815a6781a92363206d7.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8fc3ede9059933578552417e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.196289;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_4bb14ffc07c178179722752a.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4c14d2d8bfebae5bd7bea29f.woff')format("woff");}.ffe{font-family:ffe;line-height:1.196289;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:fff;src:url('chunks/assets/font_dd724073efb7f8c726f626b9.woff')format("woff");}.fff{font-family:fff;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-0.322800px;}
.lsf{letter-spacing:-0.310800px;}
.lsb{letter-spacing:-0.224400px;}
.ls14{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.201600px;}
.ls12{letter-spacing:-0.164400px;}
.ls4{letter-spacing:-0.092400px;}
.ls13{letter-spacing:-0.043200px;}
.lsd{letter-spacing:-0.040320px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.034560px;}
.ls11{letter-spacing:0.075000px;}
.ls10{letter-spacing:0.227400px;}
.ls5{letter-spacing:0.230400px;}
.ls0{letter-spacing:0.231840px;}
.ls1{letter-spacing:0.233280px;}
.lsc{letter-spacing:0.244800px;}
.lse{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.495360px;}
.ls8{letter-spacing:2.393280px;}
.ls9{letter-spacing:3.113280px;}
.ls7{letter-spacing:3.833280px;}
.lsa{letter-spacing:845.741280px;}
.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;}
}
.wsf{word-spacing:-66.240000px;}
.ws14{word-spacing:-15.226440px;}
.ws13{word-spacing:-15.137280px;}
.ws11{word-spacing:-15.102720px;}
.wsd{word-spacing:-15.045240px;}
.ws10{word-spacing:-14.970240px;}
.wse{word-spacing:-14.927040px;}
.wsc{word-spacing:-14.805840px;}
.ws2{word-spacing:-13.677120px;}
.ws0{word-spacing:-13.446720px;}
.ws6{word-spacing:-13.406400px;}
.ws1{word-spacing:-13.354320px;}
.ws3{word-spacing:-13.245120px;}
.ws5{word-spacing:-13.222320px;}
.wsb{word-spacing:-12.643080px;}
.wsa{word-spacing:-12.614280px;}
.ws9{word-spacing:-12.386880px;}
.ws7{word-spacing:-12.245640px;}
.ws8{word-spacing:-12.076080px;}
.ws12{word-spacing:-9.198480px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-12.382080px;}
._5{margin-left:-8.383200px;}
._6{margin-left:-4.661760px;}
._3{margin-left:-3.409200px;}
._0{margin-left:-2.252160px;}
._2{margin-left:-1.201680px;}
._1{width:1.218960px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(15,71,97);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:3.420000px;}
.y67{bottom:4.500000px;}
.y7b{bottom:4.530000px;}
.y85{bottom:4.545000px;}
.ya9{bottom:4.680000px;}
.y9c{bottom:4.860000px;}
.y76{bottom:5.040000px;}
.y86{bottom:5.085000px;}
.y41{bottom:5.220000px;}
.y46{bottom:5.265000px;}
.y49{bottom:5.400000px;}
.y42{bottom:7.380000px;}
.y75{bottom:10.620000px;}
.y69{bottom:10.800000px;}
.y12{bottom:18.000000px;}
.y16{bottom:18.045000px;}
.y3f{bottom:18.540000px;}
.y3c{bottom:29.880000px;}
.y2{bottom:30.060000px;}
.y10{bottom:30.600000px;}
.y3b{bottom:50.040000px;}
.y1{bottom:50.220000px;}
.y61{bottom:78.660000px;}
.y7f{bottom:83.700000px;}
.y60{bottom:100.800000px;}
.y7e{bottom:108.540000px;}
.y5f{bottom:122.940000px;}
.y7d{bottom:130.680000px;}
.yb2{bottom:138.960000px;}
.y5e{bottom:145.080000px;}
.y7c{bottom:152.640000px;}
.yb7{bottom:155.520000px;}
.y1b{bottom:161.670000px;}
.yb1{bottom:163.620000px;}
.y5d{bottom:167.220000px;}
.y7a{bottom:174.780000px;}
.yb6{bottom:180.210000px;}
.yb0{bottom:185.790000px;}
.y1a{bottom:185.970000px;}
.y5c{bottom:189.390000px;}
.y79{bottom:196.950000px;}
.yb5{bottom:202.350000px;}
.y97{bottom:205.230000px;}
.yaf{bottom:207.930000px;}
.y5b{bottom:211.530000px;}
.y78{bottom:219.090000px;}
.y96{bottom:224.490000px;}
.yae{bottom:230.070000px;}
.y19{bottom:230.250000px;}
.y5a{bottom:233.670000px;}
.y77{bottom:241.230000px;}
.y95{bottom:246.630000px;}
.yad{bottom:252.030000px;}
.y59{bottom:255.630000px;}
.y74{bottom:263.370000px;}
.y94{bottom:268.770000px;}
.yac{bottom:274.170000px;}
.y18{bottom:274.350000px;}
.y58{bottom:277.770000px;}
.y33{bottom:279.930000px;}
.y73{bottom:285.510000px;}
.y93{bottom:290.910000px;}
.yab{bottom:296.310000px;}
.y57{bottom:299.910000px;}
.y92{bottom:313.050000px;}
.yaa{bottom:318.450000px;}
.y17{bottom:318.630000px;}
.y56{bottom:322.050000px;}
.y32{bottom:325.290000px;}
.y72{bottom:331.230000px;}
.y91{bottom:335.190000px;}
.ya8{bottom:340.635000px;}
.y55{bottom:344.235000px;}
.y90{bottom:357.375000px;}
.y31{bottom:360.930000px;}
.y15{bottom:362.730000px;}
.y54{bottom:366.375000px;}
.y8f{bottom:379.515000px;}
.y71{bottom:383.295000px;}
.ya7{bottom:386.355000px;}
.y53{bottom:388.515000px;}
.y30{bottom:396.615000px;}
.y8e{bottom:401.475000px;}
.y14{bottom:406.875000px;}
.y70{bottom:407.955000px;}
.y52{bottom:410.655000px;}
.yb4{bottom:425.055000px;}
.y6f{bottom:430.095000px;}
.y2f{bottom:432.255000px;}
.y51{bottom:432.795000px;}
.ya6{bottom:438.375000px;}
.y8d{bottom:447.195000px;}
.y13{bottom:451.155000px;}
.y6e{bottom:452.235000px;}
.y50{bottom:454.935000px;}
.ya5{bottom:463.035000px;}
.y2e{bottom:467.895000px;}
.y6d{bottom:474.375000px;}
.y4f{bottom:477.075000px;}
.ya4{bottom:485.175000px;}
.y11{bottom:495.255000px;}
.y6c{bottom:496.545000px;}
.y4e{bottom:499.245000px;}
.yb3{bottom:501.945000px;}
.y2d{bottom:503.535000px;}
.ya3{bottom:507.345000px;}
.y6b{bottom:518.505000px;}
.y4d{bottom:521.205000px;}
.y8c{bottom:523.905000px;}
.ya2{bottom:529.485000px;}
.y2c{bottom:539.175000px;}
.y6a{bottom:540.645000px;}
.yf{bottom:541.335000px;}
.y4c{bottom:543.345000px;}
.y8b{bottom:546.045000px;}
.ya1{bottom:551.625000px;}
.y68{bottom:562.785000px;}
.y4b{bottom:565.485000px;}
.y8a{bottom:568.185000px;}
.ya0{bottom:573.765000px;}
.y2b{bottom:574.635000px;}
.y66{bottom:584.925000px;}
.y4a{bottom:587.625000px;}
.y89{bottom:590.325000px;}
.y9e{bottom:595.905000px;}
.y48{bottom:609.765000px;}
.y2a{bottom:610.275000px;}
.y88{bottom:612.465000px;}
.y9d{bottom:618.045000px;}
.ye{bottom:623.595000px;}
.y65{bottom:630.465000px;}
.y47{bottom:631.905000px;}
.y87{bottom:634.605000px;}
.y9b{bottom:640.005000px;}
.y29{bottom:645.945000px;}
.y45{bottom:654.045000px;}
.yd{bottom:656.205000px;}
.y84{bottom:656.745000px;}
.y44{bottom:676.230000px;}
.y83{bottom:678.930000px;}
.y28{bottom:681.585000px;}
.yc{bottom:684.285000px;}
.y9a{bottom:685.770000px;}
.y64{bottom:690.630000px;}
.y43{bottom:698.370000px;}
.y82{bottom:701.070000px;}
.y27{bottom:717.225000px;}
.y3e{bottom:720.510000px;}
.yb{bottom:726.405000px;}
.y99{bottom:745.710000px;}
.y81{bottom:746.610000px;}
.y40{bottom:746.970000px;}
.y63{bottom:749.490000px;}
.y26{bottom:752.865000px;}
.ya{bottom:779.325000px;}
.y25{bottom:788.505000px;}
.y3d{bottom:789.630000px;}
.y98{bottom:804.570000px;}
.y80{bottom:806.730000px;}
.y9{bottom:811.905000px;}
.y62{bottom:819.540000px;}
.y24{bottom:824.145000px;}
.y8{bottom:839.985000px;}
.y23{bottom:859.605000px;}
.y7{bottom:882.105000px;}
.y3a{bottom:886.110000px;}
.y22{bottom:895.290000px;}
.y39{bottom:912.390000px;}
.y21{bottom:930.930000px;}
.y6{bottom:943.890000px;}
.y38{bottom:951.630000px;}
.y20{bottom:966.570000px;}
.y5{bottom:992.670000px;}
.y1f{bottom:1002.210000px;}
.y37{bottom:1020.930000px;}
.y1e{bottom:1037.850000px;}
.y4{bottom:1041.630000px;}
.y36{bottom:1052.610000px;}
.y1d{bottom:1078.170000px;}
.y35{bottom:1080.690000px;}
.y3{bottom:1093.650000px;}
.y34{bottom:1122.810000px;}
.y1c{bottom:1136.310000px;}
.h13{height:21.240000px;}
.h14{height:21.276000px;}
.h10{height:21.420000px;}
.h12{height:21.456000px;}
.h11{height:25.740000px;}
.ha{height:43.740000px;}
.hb{height:43.776000px;}
.h9{height:43.920000px;}
.hf{height:47.880000px;}
.h18{height:48.224531px;}
.h3{height:57.410156px;}
.h7{height:57.457266px;}
.h2{height:57.507187px;}
.hc{height:62.402344px;}
.h16{height:65.884219px;}
.h17{height:67.824844px;}
.h8{height:68.940000px;}
.h15{height:73.010742px;}
.h5{height:73.134141px;}
.h6{height:80.937773px;}
.h4{height:101.628633px;}
.hd{height:892.980000px;}
.he{height:893.250000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w23{width:56.196000px;}
.w26{width:57.096000px;}
.w11{width:58.140000px;}
.w10{width:58.176000px;}
.w39{width:61.920000px;}
.w1c{width:62.820000px;}
.w20{width:63.360000px;}
.w1f{width:63.396000px;}
.w36{width:63.540000px;}
.w22{width:63.576000px;}
.w31{width:63.720000px;}
.w1d{width:63.900000px;}
.w33{width:63.936000px;}
.w2f{width:64.080000px;}
.w1b{width:73.476000px;}
.w21{width:73.980000px;}
.w1e{width:74.160000px;}
.w15{width:74.196000px;}
.w46{width:80.460000px;}
.w44{width:80.496000px;}
.w43{width:80.640000px;}
.w2e{width:95.220000px;}
.w35{width:95.256000px;}
.w45{width:99.540000px;}
.w47{width:99.720000px;}
.w48{width:99.756000px;}
.w37{width:105.300000px;}
.w30{width:105.336000px;}
.w34{width:105.480000px;}
.w32{width:105.660000px;}
.w42{width:106.776000px;}
.wc{width:126.576000px;}
.w16{width:127.440000px;}
.w1a{width:130.896000px;}
.w25{width:131.796000px;}
.w18{width:138.240000px;}
.w17{width:138.276000px;}
.w19{width:148.860000px;}
.wf{width:155.160000px;}
.w2c{width:159.330000px;}
.w28{width:159.660000px;}
.w3f{width:161.310000px;}
.w41{width:161.490000px;}
.w29{width:168.870000px;}
.w2b{width:169.920000px;}
.w2a{width:169.950000px;}
.w2d{width:176.970000px;}
.w40{width:180.360000px;}
.w3e{width:180.390000px;}
.w3d{width:188.310000px;}
.wd{width:192.780000px;}
.w12{width:193.140000px;}
.w6{width:221.790000px;}
.w3{width:221.970000px;}
.w8{width:254.910000px;}
.w5{width:255.090000px;}
.w7{width:256.215000px;}
.w4{width:256.575000px;}
.w3b{width:342.030000px;}
.w3c{width:342.255000px;}
.w3a{width:369.075000px;}
.we{width:584.745000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w14{width:895.470000px;}
.w24{width:896.370000px;}
.w13{width:1061.610000px;}
.w27{width:1082.700000px;}
.w38{width:1116.540000px;}
.wa{width:1263.000000px;}
.wb{width:1263.059981px;}
.w9{width:1263.060000px;}
.x0{left:0.000000px;}
.x3e{left:4.860000px;}
.x3d{left:10.080000px;}
.x1f{left:13.320000px;}
.x4a{left:14.400000px;}
.x4b{left:15.660000px;}
.x32{left:18.180000px;}
.x34{left:19.620000px;}
.x2d{left:20.880000px;}
.x30{left:22.320000px;}
.x33{left:23.940000px;}
.x16{left:25.020000px;}
.x6a{left:26.100000px;}
.x12{left:27.360000px;}
.x46{left:28.614000px;}
.x47{left:29.700000px;}
.x48{left:31.680000px;}
.xc{left:33.660000px;}
.x70{left:35.280000px;}
.x4e{left:36.576000px;}
.x13{left:37.800000px;}
.x45{left:39.060000px;}
.xe{left:40.500000px;}
.x66{left:41.790000px;}
.x15{left:42.840000px;}
.x14{left:44.460000px;}
.xd{left:48.600000px;}
.x24{left:50.220000px;}
.x5f{left:52.740000px;}
.x1e{left:53.999981px;}
.x31{left:58.680000px;}
.x10{left:61.020000px;}
.x2f{left:62.820000px;}
.x18{left:66.240000px;}
.x7{left:67.860000px;}
.x17{left:69.120000px;}
.x5e{left:71.145000px;}
.x19{left:74.700000px;}
.xf{left:76.500000px;}
.x3{left:80.855987px;}
.x21{left:83.160000px;}
.x4c{left:89.820000px;}
.x1d{left:92.339981px;}
.xb{left:102.240000px;}
.x9{left:107.130000px;}
.x61{left:117.000000px;}
.x2{left:119.195987px;}
.x11{left:127.440000px;}
.x37{left:128.556000px;}
.x4{left:131.255987px;}
.x1a{left:135.575987px;}
.x5{left:140.615987px;}
.x64{left:143.280000px;}
.x1b{left:152.129987px;}
.x62{left:160.770000px;}
.x4f{left:164.010000px;}
.x20{left:182.010000px;}
.x36{left:183.630000px;}
.x49{left:185.970000px;}
.x35{left:187.770000px;}
.x3f{left:191.730000px;}
.x6{left:224.849987px;}
.x38{left:255.990000px;}
.x55{left:259.230000px;}
.x8{left:302.835000px;}
.x67{left:305.670000px;}
.x50{left:324.570000px;}
.x40{left:330.510000px;}
.x4d{left:369.975000px;}
.x22{left:375.150000px;}
.x6b{left:386.175000px;}
.x60{left:388.875000px;}
.x39{left:394.275000px;}
.x1{left:419.144987px;}
.x56{left:429.375000px;}
.x25{left:433.695000px;}
.x41{left:468.795000px;}
.x63{left:486.615000px;}
.x26{left:492.195000px;}
.x51{left:494.175000px;}
.x3a{left:532.515000px;}
.x27{left:550.695000px;}
.xa{left:559.410000px;}
.x6c{left:566.895000px;}
.x57{left:599.475000px;}
.x1c{left:604.154981px;}
.x42{left:606.855000px;}
.x28{left:609.195000px;}
.x68{left:648.285000px;}
.x58{left:663.765000px;}
.x52{left:664.845000px;}
.x29{left:667.725000px;}
.x3b{left:670.785000px;}
.x2a{left:726.225000px;}
.x6d{left:728.565000px;}
.x43{left:745.125000px;}
.x59{left:769.605000px;}
.x2b{left:784.725000px;}
.x3c{left:819.645000px;}
.x65{left:829.005000px;}
.x5a{left:834.045000px;}
.x53{left:835.485000px;}
.x2c{left:843.225000px;}
.x44{left:893.985000px;}
.x2e{left:901.770000px;}
.x6e{left:909.510000px;}
.x5b{left:929.670000px;}
.x23{left:960.630000px;}
.x69{left:990.870000px;}
.x5c{left:993.570000px;}
.x54{left:995.550000px;}
.x6f{left:1071.150000px;}
.x5d{left:1099.230000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-0.286933pt;}
.lsf{letter-spacing:-0.276267pt;}
.lsb{letter-spacing:-0.199467pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.179200pt;}
.ls12{letter-spacing:-0.146133pt;}
.ls4{letter-spacing:-0.082133pt;}
.ls13{letter-spacing:-0.038400pt;}
.lsd{letter-spacing:-0.035840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.030720pt;}
.ls11{letter-spacing:0.066667pt;}
.ls10{letter-spacing:0.202133pt;}
.ls5{letter-spacing:0.204800pt;}
.ls0{letter-spacing:0.206080pt;}
.ls1{letter-spacing:0.207360pt;}
.lsc{letter-spacing:0.217600pt;}
.lse{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.440320pt;}
.ls8{letter-spacing:2.127360pt;}
.ls9{letter-spacing:2.767360pt;}
.ls7{letter-spacing:3.407360pt;}
.lsa{letter-spacing:751.770027pt;}
.wsf{word-spacing:-58.880000pt;}
.ws14{word-spacing:-13.534613pt;}
.ws13{word-spacing:-13.455360pt;}
.ws11{word-spacing:-13.424640pt;}
.wsd{word-spacing:-13.373547pt;}
.ws10{word-spacing:-13.306880pt;}
.wse{word-spacing:-13.268480pt;}
.wsc{word-spacing:-13.160747pt;}
.ws2{word-spacing:-12.157440pt;}
.ws0{word-spacing:-11.952640pt;}
.ws6{word-spacing:-11.916800pt;}
.ws1{word-spacing:-11.870507pt;}
.ws3{word-spacing:-11.773440pt;}
.ws5{word-spacing:-11.753173pt;}
.wsb{word-spacing:-11.238293pt;}
.wsa{word-spacing:-11.212693pt;}
.ws9{word-spacing:-11.010560pt;}
.ws7{word-spacing:-10.885013pt;}
.ws8{word-spacing:-10.734293pt;}
.ws12{word-spacing:-8.176427pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-11.006293pt;}
._5{margin-left:-7.451733pt;}
._6{margin-left:-4.143787pt;}
._3{margin-left:-3.030400pt;}
._0{margin-left:-2.001920pt;}
._2{margin-left:-1.068160pt;}
._1{width:1.083520pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:3.040000pt;}
.y67{bottom:4.000000pt;}
.y7b{bottom:4.026667pt;}
.y85{bottom:4.040000pt;}
.ya9{bottom:4.160000pt;}
.y9c{bottom:4.320000pt;}
.y76{bottom:4.480000pt;}
.y86{bottom:4.520000pt;}
.y41{bottom:4.640000pt;}
.y46{bottom:4.680000pt;}
.y49{bottom:4.800000pt;}
.y42{bottom:6.560000pt;}
.y75{bottom:9.440000pt;}
.y69{bottom:9.600000pt;}
.y12{bottom:16.000000pt;}
.y16{bottom:16.040000pt;}
.y3f{bottom:16.480000pt;}
.y3c{bottom:26.560000pt;}
.y2{bottom:26.720000pt;}
.y10{bottom:27.200000pt;}
.y3b{bottom:44.480000pt;}
.y1{bottom:44.640000pt;}
.y61{bottom:69.920000pt;}
.y7f{bottom:74.400000pt;}
.y60{bottom:89.600000pt;}
.y7e{bottom:96.480000pt;}
.y5f{bottom:109.280000pt;}
.y7d{bottom:116.160000pt;}
.yb2{bottom:123.520000pt;}
.y5e{bottom:128.960000pt;}
.y7c{bottom:135.680000pt;}
.yb7{bottom:138.240000pt;}
.y1b{bottom:143.706667pt;}
.yb1{bottom:145.440000pt;}
.y5d{bottom:148.640000pt;}
.y7a{bottom:155.360000pt;}
.yb6{bottom:160.186667pt;}
.yb0{bottom:165.146667pt;}
.y1a{bottom:165.306667pt;}
.y5c{bottom:168.346667pt;}
.y79{bottom:175.066667pt;}
.yb5{bottom:179.866667pt;}
.y97{bottom:182.426667pt;}
.yaf{bottom:184.826667pt;}
.y5b{bottom:188.026667pt;}
.y78{bottom:194.746667pt;}
.y96{bottom:199.546667pt;}
.yae{bottom:204.506667pt;}
.y19{bottom:204.666667pt;}
.y5a{bottom:207.706667pt;}
.y77{bottom:214.426667pt;}
.y95{bottom:219.226667pt;}
.yad{bottom:224.026667pt;}
.y59{bottom:227.226667pt;}
.y74{bottom:234.106667pt;}
.y94{bottom:238.906667pt;}
.yac{bottom:243.706667pt;}
.y18{bottom:243.866667pt;}
.y58{bottom:246.906667pt;}
.y33{bottom:248.826667pt;}
.y73{bottom:253.786667pt;}
.y93{bottom:258.586667pt;}
.yab{bottom:263.386667pt;}
.y57{bottom:266.586667pt;}
.y92{bottom:278.266667pt;}
.yaa{bottom:283.066667pt;}
.y17{bottom:283.226667pt;}
.y56{bottom:286.266667pt;}
.y32{bottom:289.146667pt;}
.y72{bottom:294.426667pt;}
.y91{bottom:297.946667pt;}
.ya8{bottom:302.786667pt;}
.y55{bottom:305.986667pt;}
.y90{bottom:317.666667pt;}
.y31{bottom:320.826667pt;}
.y15{bottom:322.426667pt;}
.y54{bottom:325.666667pt;}
.y8f{bottom:337.346667pt;}
.y71{bottom:340.706667pt;}
.ya7{bottom:343.426667pt;}
.y53{bottom:345.346667pt;}
.y30{bottom:352.546667pt;}
.y8e{bottom:356.866667pt;}
.y14{bottom:361.666667pt;}
.y70{bottom:362.626667pt;}
.y52{bottom:365.026667pt;}
.yb4{bottom:377.826667pt;}
.y6f{bottom:382.306667pt;}
.y2f{bottom:384.226667pt;}
.y51{bottom:384.706667pt;}
.ya6{bottom:389.666667pt;}
.y8d{bottom:397.506667pt;}
.y13{bottom:401.026667pt;}
.y6e{bottom:401.986667pt;}
.y50{bottom:404.386667pt;}
.ya5{bottom:411.586667pt;}
.y2e{bottom:415.906667pt;}
.y6d{bottom:421.666667pt;}
.y4f{bottom:424.066667pt;}
.ya4{bottom:431.266667pt;}
.y11{bottom:440.226667pt;}
.y6c{bottom:441.373333pt;}
.y4e{bottom:443.773333pt;}
.yb3{bottom:446.173333pt;}
.y2d{bottom:447.586667pt;}
.ya3{bottom:450.973333pt;}
.y6b{bottom:460.893333pt;}
.y4d{bottom:463.293333pt;}
.y8c{bottom:465.693333pt;}
.ya2{bottom:470.653333pt;}
.y2c{bottom:479.266667pt;}
.y6a{bottom:480.573333pt;}
.yf{bottom:481.186667pt;}
.y4c{bottom:482.973333pt;}
.y8b{bottom:485.373333pt;}
.ya1{bottom:490.333333pt;}
.y68{bottom:500.253333pt;}
.y4b{bottom:502.653333pt;}
.y8a{bottom:505.053333pt;}
.ya0{bottom:510.013333pt;}
.y2b{bottom:510.786667pt;}
.y66{bottom:519.933333pt;}
.y4a{bottom:522.333333pt;}
.y89{bottom:524.733333pt;}
.y9e{bottom:529.693333pt;}
.y48{bottom:542.013333pt;}
.y2a{bottom:542.466667pt;}
.y88{bottom:544.413333pt;}
.y9d{bottom:549.373333pt;}
.ye{bottom:554.306667pt;}
.y65{bottom:560.413333pt;}
.y47{bottom:561.693333pt;}
.y87{bottom:564.093333pt;}
.y9b{bottom:568.893333pt;}
.y29{bottom:574.173333pt;}
.y45{bottom:581.373333pt;}
.yd{bottom:583.293333pt;}
.y84{bottom:583.773333pt;}
.y44{bottom:601.093333pt;}
.y83{bottom:603.493333pt;}
.y28{bottom:605.853333pt;}
.yc{bottom:608.253333pt;}
.y9a{bottom:609.573333pt;}
.y64{bottom:613.893333pt;}
.y43{bottom:620.773333pt;}
.y82{bottom:623.173333pt;}
.y27{bottom:637.533333pt;}
.y3e{bottom:640.453333pt;}
.yb{bottom:645.693333pt;}
.y99{bottom:662.853333pt;}
.y81{bottom:663.653333pt;}
.y40{bottom:663.973333pt;}
.y63{bottom:666.213333pt;}
.y26{bottom:669.213333pt;}
.ya{bottom:692.733333pt;}
.y25{bottom:700.893333pt;}
.y3d{bottom:701.893333pt;}
.y98{bottom:715.173333pt;}
.y80{bottom:717.093333pt;}
.y9{bottom:721.693333pt;}
.y62{bottom:728.480000pt;}
.y24{bottom:732.573333pt;}
.y8{bottom:746.653333pt;}
.y23{bottom:764.093333pt;}
.y7{bottom:784.093333pt;}
.y3a{bottom:787.653333pt;}
.y22{bottom:795.813333pt;}
.y39{bottom:811.013333pt;}
.y21{bottom:827.493333pt;}
.y6{bottom:839.013333pt;}
.y38{bottom:845.893333pt;}
.y20{bottom:859.173333pt;}
.y5{bottom:882.373333pt;}
.y1f{bottom:890.853333pt;}
.y37{bottom:907.493333pt;}
.y1e{bottom:922.533333pt;}
.y4{bottom:925.893333pt;}
.y36{bottom:935.653333pt;}
.y1d{bottom:958.373333pt;}
.y35{bottom:960.613333pt;}
.y3{bottom:972.133333pt;}
.y34{bottom:998.053333pt;}
.y1c{bottom:1010.053333pt;}
.h13{height:18.880000pt;}
.h14{height:18.912000pt;}
.h10{height:19.040000pt;}
.h12{height:19.072000pt;}
.h11{height:22.880000pt;}
.ha{height:38.880000pt;}
.hb{height:38.912000pt;}
.h9{height:39.040000pt;}
.hf{height:42.560000pt;}
.h18{height:42.866250pt;}
.h3{height:51.031250pt;}
.h7{height:51.073125pt;}
.h2{height:51.117500pt;}
.hc{height:55.468750pt;}
.h16{height:58.563750pt;}
.h17{height:60.288750pt;}
.h8{height:61.280000pt;}
.h15{height:64.898438pt;}
.h5{height:65.008125pt;}
.h6{height:71.944688pt;}
.h4{height:90.336562pt;}
.hd{height:793.760000pt;}
.he{height:794.000000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w23{width:49.952000pt;}
.w26{width:50.752000pt;}
.w11{width:51.680000pt;}
.w10{width:51.712000pt;}
.w39{width:55.040000pt;}
.w1c{width:55.840000pt;}
.w20{width:56.320000pt;}
.w1f{width:56.352000pt;}
.w36{width:56.480000pt;}
.w22{width:56.512000pt;}
.w31{width:56.640000pt;}
.w1d{width:56.800000pt;}
.w33{width:56.832000pt;}
.w2f{width:56.960000pt;}
.w1b{width:65.312000pt;}
.w21{width:65.760000pt;}
.w1e{width:65.920000pt;}
.w15{width:65.952000pt;}
.w46{width:71.520000pt;}
.w44{width:71.552000pt;}
.w43{width:71.680000pt;}
.w2e{width:84.640000pt;}
.w35{width:84.672000pt;}
.w45{width:88.480000pt;}
.w47{width:88.640000pt;}
.w48{width:88.672000pt;}
.w37{width:93.600000pt;}
.w30{width:93.632000pt;}
.w34{width:93.760000pt;}
.w32{width:93.920000pt;}
.w42{width:94.912000pt;}
.wc{width:112.512000pt;}
.w16{width:113.280000pt;}
.w1a{width:116.352000pt;}
.w25{width:117.152000pt;}
.w18{width:122.880000pt;}
.w17{width:122.912000pt;}
.w19{width:132.320000pt;}
.wf{width:137.920000pt;}
.w2c{width:141.626667pt;}
.w28{width:141.920000pt;}
.w3f{width:143.386667pt;}
.w41{width:143.546667pt;}
.w29{width:150.106667pt;}
.w2b{width:151.040000pt;}
.w2a{width:151.066667pt;}
.w2d{width:157.306667pt;}
.w40{width:160.320000pt;}
.w3e{width:160.346667pt;}
.w3d{width:167.386667pt;}
.wd{width:171.360000pt;}
.w12{width:171.680000pt;}
.w6{width:197.146667pt;}
.w3{width:197.306667pt;}
.w8{width:226.586667pt;}
.w5{width:226.746667pt;}
.w7{width:227.746667pt;}
.w4{width:228.066667pt;}
.w3b{width:304.026667pt;}
.w3c{width:304.226667pt;}
.w3a{width:328.066667pt;}
.we{width:519.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w14{width:795.973333pt;}
.w24{width:796.773333pt;}
.w13{width:943.653333pt;}
.w27{width:962.400000pt;}
.w38{width:992.480000pt;}
.wa{width:1122.666667pt;}
.wb{width:1122.719983pt;}
.w9{width:1122.720000pt;}
.x0{left:0.000000pt;}
.x3e{left:4.320000pt;}
.x3d{left:8.960000pt;}
.x1f{left:11.840000pt;}
.x4a{left:12.800000pt;}
.x4b{left:13.920000pt;}
.x32{left:16.160000pt;}
.x34{left:17.440000pt;}
.x2d{left:18.560000pt;}
.x30{left:19.840000pt;}
.x33{left:21.280000pt;}
.x16{left:22.240000pt;}
.x6a{left:23.200000pt;}
.x12{left:24.320000pt;}
.x46{left:25.434667pt;}
.x47{left:26.400000pt;}
.x48{left:28.160000pt;}
.xc{left:29.920000pt;}
.x70{left:31.360000pt;}
.x4e{left:32.512000pt;}
.x13{left:33.600000pt;}
.x45{left:34.720000pt;}
.xe{left:36.000000pt;}
.x66{left:37.146667pt;}
.x15{left:38.080000pt;}
.x14{left:39.520000pt;}
.xd{left:43.200000pt;}
.x24{left:44.640000pt;}
.x5f{left:46.880000pt;}
.x1e{left:47.999983pt;}
.x31{left:52.160000pt;}
.x10{left:54.240000pt;}
.x2f{left:55.840000pt;}
.x18{left:58.880000pt;}
.x7{left:60.320000pt;}
.x17{left:61.440000pt;}
.x5e{left:63.240000pt;}
.x19{left:66.400000pt;}
.xf{left:68.000000pt;}
.x3{left:71.871988pt;}
.x21{left:73.920000pt;}
.x4c{left:79.840000pt;}
.x1d{left:82.079983pt;}
.xb{left:90.880000pt;}
.x9{left:95.226667pt;}
.x61{left:104.000000pt;}
.x2{left:105.951988pt;}
.x11{left:113.280000pt;}
.x37{left:114.272000pt;}
.x4{left:116.671988pt;}
.x1a{left:120.511988pt;}
.x5{left:124.991988pt;}
.x64{left:127.360000pt;}
.x1b{left:135.226655pt;}
.x62{left:142.906667pt;}
.x4f{left:145.786667pt;}
.x20{left:161.786667pt;}
.x36{left:163.226667pt;}
.x49{left:165.306667pt;}
.x35{left:166.906667pt;}
.x3f{left:170.426667pt;}
.x6{left:199.866655pt;}
.x38{left:227.546667pt;}
.x55{left:230.426667pt;}
.x8{left:269.186667pt;}
.x67{left:271.706667pt;}
.x50{left:288.506667pt;}
.x40{left:293.786667pt;}
.x4d{left:328.866667pt;}
.x22{left:333.466667pt;}
.x6b{left:343.266667pt;}
.x60{left:345.666667pt;}
.x39{left:350.466667pt;}
.x1{left:372.573322pt;}
.x56{left:381.666667pt;}
.x25{left:385.506667pt;}
.x41{left:416.706667pt;}
.x63{left:432.546667pt;}
.x26{left:437.506667pt;}
.x51{left:439.266667pt;}
.x3a{left:473.346667pt;}
.x27{left:489.506667pt;}
.xa{left:497.253333pt;}
.x6c{left:503.906667pt;}
.x57{left:532.866667pt;}
.x1c{left:537.026650pt;}
.x42{left:539.426667pt;}
.x28{left:541.506667pt;}
.x68{left:576.253333pt;}
.x58{left:590.013333pt;}
.x52{left:590.973333pt;}
.x29{left:593.533333pt;}
.x3b{left:596.253333pt;}
.x2a{left:645.533333pt;}
.x6d{left:647.613333pt;}
.x43{left:662.333333pt;}
.x59{left:684.093333pt;}
.x2b{left:697.533333pt;}
.x3c{left:728.573333pt;}
.x65{left:736.893333pt;}
.x5a{left:741.373333pt;}
.x53{left:742.653333pt;}
.x2c{left:749.533333pt;}
.x44{left:794.653333pt;}
.x2e{left:801.573333pt;}
.x6e{left:808.453333pt;}
.x5b{left:826.373333pt;}
.x23{left:853.893333pt;}
.x69{left:880.773333pt;}
.x5c{left:883.173333pt;}
.x54{left:884.933333pt;}
.x6f{left:952.133333pt;}
.x5d{left:977.093333pt;}
}




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