
    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_9bdfb14ccf6a6a5c35a3ddf8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_604549e737bc1f3911a82cac.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_bb6d4b7bbd0afc49c9f63c71.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_05aa313333fb782dd0513890.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_847738cdbb4c04a7ae31aa73.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.575000;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.229100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.320000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.023357px;}
.ls1{letter-spacing:0.118525px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-19.872000px;}
.ws0{word-spacing:-17.884800px;}
.ws1{word-spacing:-15.724644px;}
.wsa{word-spacing:-14.774238px;}
.wsb{word-spacing:-14.227044px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:53.395494px;}
.ws3{word-spacing:55.382694px;}
.ws5{word-spacing:57.237414px;}
.ws6{word-spacing:57.634854px;}
.ws7{word-spacing:58.827174px;}
.wsc{word-spacing:60.085734px;}
.ws9{word-spacing:62.602854px;}
.ws8{word-spacing:63.596454px;}
._10{margin-left:-16.597522px;}
._13{margin-left:-14.649706px;}
._e{margin-left:-7.422302px;}
._4{margin-left:-5.601741px;}
._5{margin-left:-4.536000px;}
._3{margin-left:-2.721537px;}
._1{margin-left:-1.670376px;}
._0{width:1.252782px;}
._2{width:3.032629px;}
._d{width:4.685507px;}
._8{width:5.745543px;}
._9{width:6.759269px;}
._7{width:8.613983px;}
._6{width:9.676704px;}
._a{width:11.666726px;}
._b{width:13.106780px;}
._c{width:14.419934px;}
._19{width:15.834032px;}
._f{width:17.406652px;}
._11{width:18.656317px;}
._12{width:20.234225px;}
._18{width:25.565527px;}
._17{width:27.497933px;}
._16{width:29.093027px;}
._14{width:30.207977px;}
._15{width:31.884109px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.759400px;}
.fs5{font-size:54.719400px;}
.fs4{font-size:60.479400px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:89.279400px;}
.y0{bottom:0.000000px;}
.y3{bottom:204.480000px;}
.y1{bottom:216.000000px;}
.y2{bottom:217.080000px;}
.y21{bottom:270.000000px;}
.y16f{bottom:270.360000px;}
.y6b{bottom:270.720000px;}
.y158{bottom:271.080000px;}
.y137{bottom:271.800000px;}
.yae{bottom:286.200000px;}
.yfb{bottom:286.560000px;}
.y16e{bottom:286.920000px;}
.y157{bottom:287.280000px;}
.y136{bottom:288.360000px;}
.y42{bottom:288.720000px;}
.y20{bottom:289.080000px;}
.y6a{bottom:289.440000px;}
.yfa{bottom:303.120000px;}
.y11a{bottom:303.480000px;}
.y156{bottom:303.840000px;}
.yad{bottom:304.920000px;}
.y41{bottom:307.800000px;}
.y1f{bottom:308.160000px;}
.y16d{bottom:310.320000px;}
.ydf{bottom:320.760000px;}
.y135{bottom:321.480000px;}
.yac{bottom:323.640000px;}
.y4e{bottom:326.520000px;}
.y1e{bottom:326.880000px;}
.yf9{bottom:328.320000px;}
.y119{bottom:328.680000px;}
.y155{bottom:329.040000px;}
.yde{bottom:339.840000px;}
.yab{bottom:342.360000px;}
.y40{bottom:343.440000px;}
.yf8{bottom:344.880000px;}
.y4d{bottom:345.240000px;}
.y69{bottom:345.600000px;}
.y1d{bottom:345.960000px;}
.y134{bottom:346.320000px;}
.y16c{bottom:350.280000px;}
.ydd{bottom:358.560000px;}
.yaa{bottom:361.080000px;}
.y154{bottom:361.800000px;}
.y118{bottom:362.160000px;}
.y83{bottom:362.520000px;}
.y133{bottom:362.880000px;}
.y4c{bottom:364.320000px;}
.y1c{bottom:365.040000px;}
.y16b{bottom:366.840000px;}
.yf7{bottom:369.720000px;}
.ydc{bottom:377.280000px;}
.y132{bottom:379.440000px;}
.ya9{bottom:379.800000px;}
.y4b{bottom:383.040000px;}
.y1b{bottom:384.120000px;}
.y153{bottom:385.560000px;}
.yf6{bottom:386.280000px;}
.y117{bottom:387.720000px;}
.y16a{bottom:392.040000px;}
.yc6{bottom:396.000000px;}
.ya8{bottom:398.520000px;}
.y3f{bottom:401.760000px;}
.y152{bottom:402.120000px;}
.y1a{bottom:403.200000px;}
.y17c{bottom:403.920000px;}
.y116{bottom:404.280000px;}
.ydb{bottom:408.600000px;}
.yf5{bottom:411.480000px;}
.y68{bottom:414.720000px;}
.ya7{bottom:417.240000px;}
.y82{bottom:417.600000px;}
.y151{bottom:418.320000px;}
.y4a{bottom:419.040000px;}
.y3e{bottom:420.480000px;}
.y131{bottom:420.840000px;}
.y115{bottom:421.200000px;}
.y19{bottom:421.920000px;}
.yda{bottom:427.320000px;}
.yf4{bottom:428.040000px;}
.y67{bottom:433.440000px;}
.y98{bottom:434.880000px;}
.ya6{bottom:435.960000px;}
.y81{bottom:436.320000px;}
.y3d{bottom:439.560000px;}
.y18{bottom:441.000000px;}
.y150{bottom:442.080000px;}
.y17b{bottom:445.320000px;}
.yd9{bottom:446.040000px;}
.y114{bottom:446.400000px;}
.y169{bottom:450.000000px;}
.y66{bottom:452.160000px;}
.yf3{bottom:453.240000px;}
.y97{bottom:453.960000px;}
.y80{bottom:455.040000px;}
.y3c{bottom:458.280000px;}
.y17{bottom:460.080000px;}
.y17a{bottom:461.880000px;}
.y130{bottom:462.600000px;}
.y113{bottom:463.320000px;}
.yd8{bottom:464.760000px;}
.ya5{bottom:467.640000px;}
.yf2{bottom:469.800000px;}
.yba{bottom:470.880000px;}
.y96{bottom:473.040000px;}
.y7f{bottom:473.760000px;}
.y14f{bottom:474.840000px;}
.y3b{bottom:477.000000px;}
.y12f{bottom:478.800000px;}
.y112{bottom:479.880000px;}
.y65{bottom:483.840000px;}
.ya4{bottom:486.360000px;}
.y179{bottom:487.080000px;}
.yb9{bottom:489.600000px;}
.y168{bottom:491.400000px;}
.y16{bottom:491.760000px;}
.y95{bottom:492.120000px;}
.y7e{bottom:492.480000px;}
.yf1{bottom:494.640000px;}
.y3a{bottom:496.080000px;}
.yd7{bottom:496.440000px;}
.y14e{bottom:498.600000px;}
.y64{bottom:502.560000px;}
.y178{bottom:503.280000px;}
.y12e{bottom:504.000000px;}
.ya3{bottom:505.080000px;}
.yb8{bottom:508.320000px;}
.y15{bottom:510.840000px;}
.y7d{bottom:511.200000px;}
.y39{bottom:514.800000px;}
.yd6{bottom:515.160000px;}
.y167{bottom:516.600000px;}
.y177{bottom:519.840000px;}
.y12d{bottom:520.560000px;}
.y63{bottom:521.280000px;}
.y111{bottom:522.000000px;}
.ya2{bottom:523.800000px;}
.yb7{bottom:527.040000px;}
.y14{bottom:529.920000px;}
.y14d{bottom:531.360000px;}
.y166{bottom:532.800000px;}
.y38{bottom:533.520000px;}
.yd5{bottom:533.880000px;}
.yf0{bottom:536.400000px;}
.y12c{bottom:537.120000px;}
.y110{bottom:538.560000px;}
.y62{bottom:540.000000px;}
.ya1{bottom:542.520000px;}
.y176{bottom:545.040000px;}
.yb6{bottom:545.760000px;}
.y7c{bottom:548.640000px;}
.y13{bottom:549.000000px;}
.y165{bottom:549.360000px;}
.y37{bottom:552.600000px;}
.yef{bottom:552.960000px;}
.y12b{bottom:553.320000px;}
.y14c{bottom:556.560000px;}
.ya0{bottom:561.240000px;}
.y10f{bottom:564.120000px;}
.yc5{bottom:564.840000px;}
.y49{bottom:565.200000px;}
.yd4{bottom:565.560000px;}
.y7b{bottom:567.360000px;}
.yee{bottom:569.520000px;}
.y175{bottom:569.880000px;}
.y36{bottom:571.320000px;}
.y14b{bottom:572.760000px;}
.y164{bottom:574.560000px;}
.y61{bottom:575.640000px;}
.yb5{bottom:577.440000px;}
.y12a{bottom:578.520000px;}
.y9f{bottom:579.960000px;}
.y12{bottom:580.680000px;}
.yc4{bottom:583.560000px;}
.y48{bottom:584.280000px;}
.y7a{bottom:586.080000px;}
.y174{bottom:586.440000px;}
.y14a{bottom:589.320000px;}
.y163{bottom:590.760000px;}
.yed{bottom:594.720000px;}
.y129{bottom:595.080000px;}
.yb4{bottom:596.160000px;}
.y9e{bottom:598.680000px;}
.y11{bottom:599.760000px;}
.yc3{bottom:602.280000px;}
.y35{bottom:603.000000px;}
.y79{bottom:604.800000px;}
.y10e{bottom:605.880000px;}
.y162{bottom:607.320000px;}
.yec{bottom:611.280000px;}
.y149{bottom:614.520000px;}
.yb3{bottom:614.880000px;}
.y10{bottom:618.480000px;}
.y94{bottom:618.840000px;}
.yc2{bottom:621.000000px;}
.y34{bottom:621.720000px;}
.y10d{bottom:622.800000px;}
.y78{bottom:623.520000px;}
.y173{bottom:627.840000px;}
.y60{bottom:630.360000px;}
.y148{bottom:631.080000px;}
.y161{bottom:632.520000px;}
.yb2{bottom:633.600000px;}
.y9d{bottom:634.680000px;}
.yeb{bottom:636.120000px;}
.y128{bottom:636.480000px;}
.yf{bottom:637.560000px;}
.yc1{bottom:639.720000px;}
.y33{bottom:640.800000px;}
.y77{bottom:642.600000px;}
.y172{bottom:644.400000px;}
.y10c{bottom:648.000000px;}
.y5f{bottom:649.080000px;}
.y93{bottom:650.520000px;}
.yb1{bottom:652.320000px;}
.yea{bottom:652.680000px;}
.yd3{bottom:653.040000px;}
.y147{bottom:655.920000px;}
.ye{bottom:656.640000px;}
.y32{bottom:659.520000px;}
.y76{bottom:661.320000px;}
.y10b{bottom:664.920000px;}
.y160{bottom:665.280000px;}
.y5e{bottom:667.800000px;}
.y92{bottom:669.600000px;}
.yb0{bottom:671.040000px;}
.yd2{bottom:671.760000px;}
.y47{bottom:672.120000px;}
.y146{bottom:672.480000px;}
.yd{bottom:675.720000px;}
.y31{bottom:678.240000px;}
.y75{bottom:680.040000px;}
.y10a{bottom:681.480000px;}
.ye9{bottom:682.200000px;}
.y171{bottom:685.800000px;}
.y5d{bottom:686.520000px;}
.y91{bottom:688.680000px;}
.y145{bottom:689.040000px;}
.yc0{bottom:689.760000px;}
.y15f{bottom:690.480000px;}
.yd1{bottom:690.840000px;}
.y46{bottom:691.200000px;}
.y9c{bottom:692.640000px;}
.y127{bottom:694.440000px;}
.yc{bottom:694.800000px;}
.y30{bottom:697.320000px;}
.y74{bottom:698.760000px;}
.ycd{bottom:702.720000px;}
.y5c{bottom:705.600000px;}
.yaf{bottom:707.040000px;}
.y90{bottom:707.760000px;}
.ybf{bottom:708.840000px;}
.yd0{bottom:709.560000px;}
.y45{bottom:709.920000px;}
.y126{bottom:711.000000px;}
.y9b{bottom:711.360000px;}
.yb{bottom:713.520000px;}
.y144{bottom:713.880000px;}
.ycc{bottom:721.440000px;}
.y109{bottom:723.600000px;}
.y5b{bottom:724.320000px;}
.y8f{bottom:726.840000px;}
.ybe{bottom:727.560000px;}
.ycf{bottom:728.280000px;}
.y2f{bottom:729.000000px;}
.y73{bottom:730.080000px;}
.y143{bottom:730.440000px;}
.ya{bottom:732.600000px;}
.y125{bottom:735.840000px;}
.ye8{bottom:736.920000px;}
.ycb{bottom:740.160000px;}
.y108{bottom:740.520000px;}
.y5a{bottom:743.040000px;}
.ybd{bottom:746.280000px;}
.y142{bottom:747.000000px;}
.y2e{bottom:747.720000px;}
.y72{bottom:748.800000px;}
.y124{bottom:752.400000px;}
.ye7{bottom:755.640000px;}
.y8e{bottom:758.520000px;}
.yca{bottom:758.880000px;}
.y59{bottom:761.760000px;}
.yce{bottom:763.200000px;}
.y141{bottom:763.560000px;}
.ybc{bottom:765.000000px;}
.y107{bottom:765.720000px;}
.y2d{bottom:766.440000px;}
.y71{bottom:767.520000px;}
.y123{bottom:768.960000px;}
.ye6{bottom:774.720000px;}
.y8d{bottom:777.600000px;}
.y58{bottom:780.480000px;}
.y106{bottom:782.280000px;}
.y2c{bottom:785.520000px;}
.y70{bottom:786.600000px;}
.y15e{bottom:786.960000px;}
.y140{bottom:788.400000px;}
.ye5{bottom:793.440000px;}
.y122{bottom:793.800000px;}
.y8c{bottom:796.320000px;}
.y9{bottom:798.120000px;}
.y57{bottom:799.200000px;}
.ybb{bottom:800.640000px;}
.y15d{bottom:803.520000px;}
.y2b{bottom:804.240000px;}
.y13f{bottom:804.960000px;}
.y121{bottom:810.360000px;}
.ye4{bottom:812.160000px;}
.yc9{bottom:815.040000px;}
.y8b{bottom:815.400000px;}
.y6f{bottom:817.920000px;}
.y8{bottom:820.080000px;}
.y44{bottom:822.960000px;}
.y105{bottom:824.400000px;}
.y120{bottom:826.920000px;}
.y13e{bottom:829.800000px;}
.y56{bottom:830.520000px;}
.yc8{bottom:833.760000px;}
.y8a{bottom:834.480000px;}
.y2a{bottom:835.920000px;}
.y6e{bottom:836.640000px;}
.y104{bottom:841.320000px;}
.y7{bottom:842.040000px;}
.ye3{bottom:843.120000px;}
.y15c{bottom:844.920000px;}
.y13d{bottom:846.360000px;}
.y55{bottom:849.600000px;}
.y11f{bottom:851.760000px;}
.y89{bottom:853.560000px;}
.y29{bottom:854.640000px;}
.y6d{bottom:855.360000px;}
.y15b{bottom:861.480000px;}
.ye2{bottom:861.840000px;}
.y103{bottom:866.520000px;}
.y54{bottom:868.320000px;}
.yc7{bottom:869.760000px;}
.y88{bottom:872.640000px;}
.y28{bottom:873.720000px;}
.y6c{bottom:874.080000px;}
.ye1{bottom:880.560000px;}
.y102{bottom:883.440000px;}
.y11e{bottom:884.880000px;}
.y13c{bottom:886.320000px;}
.y53{bottom:887.040000px;}
.y6{bottom:891.000000px;}
.y27{bottom:892.440000px;}
.y9a{bottom:892.800000px;}
.y11d{bottom:901.440000px;}
.y13b{bottom:902.880000px;}
.y87{bottom:904.320000px;}
.y52{bottom:905.760000px;}
.y101{bottom:908.640000px;}
.y170{bottom:910.080000px;}
.y26{bottom:911.160000px;}
.y99{bottom:911.520000px;}
.y5{bottom:918.360000px;}
.y13a{bottom:919.440000px;}
.y86{bottom:923.400000px;}
.y51{bottom:924.480000px;}
.y100{bottom:925.200000px;}
.y11c{bottom:926.280000px;}
.y15a{bottom:928.080000px;}
.y43{bottom:930.240000px;}
.yff{bottom:942.120000px;}
.y85{bottom:942.480000px;}
.y25{bottom:942.840000px;}
.y50{bottom:943.200000px;}
.y139{bottom:944.280000px;}
.y4{bottom:945.360000px;}
.ye0{bottom:948.960000px;}
.y11b{bottom:959.400000px;}
.y138{bottom:960.840000px;}
.y24{bottom:961.560000px;}
.y4f{bottom:961.920000px;}
.yfe{bottom:967.320000px;}
.y159{bottom:968.040000px;}
.y84{bottom:980.280000px;}
.y23{bottom:980.640000px;}
.yfd{bottom:984.240000px;}
.y22{bottom:999.360000px;}
.yfc{bottom:1000.800000px;}
.h2{height:44.557280px;}
.h6{height:58.385600px;}
.h5{height:64.531520px;}
.h1{height:70.678080px;}
.h3{height:76.824000px;}
.h4{height:95.261120px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:178.560000px;}
.x4{left:191.160000px;}
.x9{left:212.400000px;}
.x6{left:214.920000px;}
.xc{left:225.360000px;}
.xa{left:448.560000px;}
.x2{left:450.000000px;}
.x3{left:515.880000px;}
.xb{left:625.680000px;}
.x1{left:696.240000px;}
.x7{left:697.320000px;}
.x8{left:699.840000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.840000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.020762pt;}
.ls1{letter-spacing:0.105355pt;}
.ws4{word-spacing:-17.664000pt;}
.ws0{word-spacing:-15.897600pt;}
.ws1{word-spacing:-13.977461pt;}
.wsa{word-spacing:-13.132656pt;}
.wsb{word-spacing:-12.646261pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:47.462661pt;}
.ws3{word-spacing:49.229061pt;}
.ws5{word-spacing:50.877701pt;}
.ws6{word-spacing:51.230981pt;}
.ws7{word-spacing:52.290821pt;}
.wsc{word-spacing:53.409541pt;}
.ws9{word-spacing:55.646981pt;}
.ws8{word-spacing:56.530181pt;}
._10{margin-left:-14.753353pt;}
._13{margin-left:-13.021961pt;}
._e{margin-left:-6.597602pt;}
._4{margin-left:-4.979325pt;}
._5{margin-left:-4.032000pt;}
._3{margin-left:-2.419144pt;}
._1{margin-left:-1.484779pt;}
._0{width:1.113584pt;}
._2{width:2.695670pt;}
._d{width:4.164895pt;}
._8{width:5.107149pt;}
._9{width:6.008239pt;}
._7{width:7.656874pt;}
._6{width:8.601515pt;}
._a{width:10.370423pt;}
._b{width:11.650471pt;}
._c{width:12.817719pt;}
._19{width:14.074695pt;}
._f{width:15.472579pt;}
._11{width:16.583393pt;}
._12{width:17.985978pt;}
._18{width:22.724913pt;}
._17{width:24.442607pt;}
._16{width:25.860469pt;}
._14{width:26.851535pt;}
._15{width:28.341430pt;}
.fs1{font-size:37.119467pt;}
.fs5{font-size:48.639467pt;}
.fs4{font-size:53.759467pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:79.359467pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:181.760000pt;}
.y1{bottom:192.000000pt;}
.y2{bottom:192.960000pt;}
.y21{bottom:240.000000pt;}
.y16f{bottom:240.320000pt;}
.y6b{bottom:240.640000pt;}
.y158{bottom:240.960000pt;}
.y137{bottom:241.600000pt;}
.yae{bottom:254.400000pt;}
.yfb{bottom:254.720000pt;}
.y16e{bottom:255.040000pt;}
.y157{bottom:255.360000pt;}
.y136{bottom:256.320000pt;}
.y42{bottom:256.640000pt;}
.y20{bottom:256.960000pt;}
.y6a{bottom:257.280000pt;}
.yfa{bottom:269.440000pt;}
.y11a{bottom:269.760000pt;}
.y156{bottom:270.080000pt;}
.yad{bottom:271.040000pt;}
.y41{bottom:273.600000pt;}
.y1f{bottom:273.920000pt;}
.y16d{bottom:275.840000pt;}
.ydf{bottom:285.120000pt;}
.y135{bottom:285.760000pt;}
.yac{bottom:287.680000pt;}
.y4e{bottom:290.240000pt;}
.y1e{bottom:290.560000pt;}
.yf9{bottom:291.840000pt;}
.y119{bottom:292.160000pt;}
.y155{bottom:292.480000pt;}
.yde{bottom:302.080000pt;}
.yab{bottom:304.320000pt;}
.y40{bottom:305.280000pt;}
.yf8{bottom:306.560000pt;}
.y4d{bottom:306.880000pt;}
.y69{bottom:307.200000pt;}
.y1d{bottom:307.520000pt;}
.y134{bottom:307.840000pt;}
.y16c{bottom:311.360000pt;}
.ydd{bottom:318.720000pt;}
.yaa{bottom:320.960000pt;}
.y154{bottom:321.600000pt;}
.y118{bottom:321.920000pt;}
.y83{bottom:322.240000pt;}
.y133{bottom:322.560000pt;}
.y4c{bottom:323.840000pt;}
.y1c{bottom:324.480000pt;}
.y16b{bottom:326.080000pt;}
.yf7{bottom:328.640000pt;}
.ydc{bottom:335.360000pt;}
.y132{bottom:337.280000pt;}
.ya9{bottom:337.600000pt;}
.y4b{bottom:340.480000pt;}
.y1b{bottom:341.440000pt;}
.y153{bottom:342.720000pt;}
.yf6{bottom:343.360000pt;}
.y117{bottom:344.640000pt;}
.y16a{bottom:348.480000pt;}
.yc6{bottom:352.000000pt;}
.ya8{bottom:354.240000pt;}
.y3f{bottom:357.120000pt;}
.y152{bottom:357.440000pt;}
.y1a{bottom:358.400000pt;}
.y17c{bottom:359.040000pt;}
.y116{bottom:359.360000pt;}
.ydb{bottom:363.200000pt;}
.yf5{bottom:365.760000pt;}
.y68{bottom:368.640000pt;}
.ya7{bottom:370.880000pt;}
.y82{bottom:371.200000pt;}
.y151{bottom:371.840000pt;}
.y4a{bottom:372.480000pt;}
.y3e{bottom:373.760000pt;}
.y131{bottom:374.080000pt;}
.y115{bottom:374.400000pt;}
.y19{bottom:375.040000pt;}
.yda{bottom:379.840000pt;}
.yf4{bottom:380.480000pt;}
.y67{bottom:385.280000pt;}
.y98{bottom:386.560000pt;}
.ya6{bottom:387.520000pt;}
.y81{bottom:387.840000pt;}
.y3d{bottom:390.720000pt;}
.y18{bottom:392.000000pt;}
.y150{bottom:392.960000pt;}
.y17b{bottom:395.840000pt;}
.yd9{bottom:396.480000pt;}
.y114{bottom:396.800000pt;}
.y169{bottom:400.000000pt;}
.y66{bottom:401.920000pt;}
.yf3{bottom:402.880000pt;}
.y97{bottom:403.520000pt;}
.y80{bottom:404.480000pt;}
.y3c{bottom:407.360000pt;}
.y17{bottom:408.960000pt;}
.y17a{bottom:410.560000pt;}
.y130{bottom:411.200000pt;}
.y113{bottom:411.840000pt;}
.yd8{bottom:413.120000pt;}
.ya5{bottom:415.680000pt;}
.yf2{bottom:417.600000pt;}
.yba{bottom:418.560000pt;}
.y96{bottom:420.480000pt;}
.y7f{bottom:421.120000pt;}
.y14f{bottom:422.080000pt;}
.y3b{bottom:424.000000pt;}
.y12f{bottom:425.600000pt;}
.y112{bottom:426.560000pt;}
.y65{bottom:430.080000pt;}
.ya4{bottom:432.320000pt;}
.y179{bottom:432.960000pt;}
.yb9{bottom:435.200000pt;}
.y168{bottom:436.800000pt;}
.y16{bottom:437.120000pt;}
.y95{bottom:437.440000pt;}
.y7e{bottom:437.760000pt;}
.yf1{bottom:439.680000pt;}
.y3a{bottom:440.960000pt;}
.yd7{bottom:441.280000pt;}
.y14e{bottom:443.200000pt;}
.y64{bottom:446.720000pt;}
.y178{bottom:447.360000pt;}
.y12e{bottom:448.000000pt;}
.ya3{bottom:448.960000pt;}
.yb8{bottom:451.840000pt;}
.y15{bottom:454.080000pt;}
.y7d{bottom:454.400000pt;}
.y39{bottom:457.600000pt;}
.yd6{bottom:457.920000pt;}
.y167{bottom:459.200000pt;}
.y177{bottom:462.080000pt;}
.y12d{bottom:462.720000pt;}
.y63{bottom:463.360000pt;}
.y111{bottom:464.000000pt;}
.ya2{bottom:465.600000pt;}
.yb7{bottom:468.480000pt;}
.y14{bottom:471.040000pt;}
.y14d{bottom:472.320000pt;}
.y166{bottom:473.600000pt;}
.y38{bottom:474.240000pt;}
.yd5{bottom:474.560000pt;}
.yf0{bottom:476.800000pt;}
.y12c{bottom:477.440000pt;}
.y110{bottom:478.720000pt;}
.y62{bottom:480.000000pt;}
.ya1{bottom:482.240000pt;}
.y176{bottom:484.480000pt;}
.yb6{bottom:485.120000pt;}
.y7c{bottom:487.680000pt;}
.y13{bottom:488.000000pt;}
.y165{bottom:488.320000pt;}
.y37{bottom:491.200000pt;}
.yef{bottom:491.520000pt;}
.y12b{bottom:491.840000pt;}
.y14c{bottom:494.720000pt;}
.ya0{bottom:498.880000pt;}
.y10f{bottom:501.440000pt;}
.yc5{bottom:502.080000pt;}
.y49{bottom:502.400000pt;}
.yd4{bottom:502.720000pt;}
.y7b{bottom:504.320000pt;}
.yee{bottom:506.240000pt;}
.y175{bottom:506.560000pt;}
.y36{bottom:507.840000pt;}
.y14b{bottom:509.120000pt;}
.y164{bottom:510.720000pt;}
.y61{bottom:511.680000pt;}
.yb5{bottom:513.280000pt;}
.y12a{bottom:514.240000pt;}
.y9f{bottom:515.520000pt;}
.y12{bottom:516.160000pt;}
.yc4{bottom:518.720000pt;}
.y48{bottom:519.360000pt;}
.y7a{bottom:520.960000pt;}
.y174{bottom:521.280000pt;}
.y14a{bottom:523.840000pt;}
.y163{bottom:525.120000pt;}
.yed{bottom:528.640000pt;}
.y129{bottom:528.960000pt;}
.yb4{bottom:529.920000pt;}
.y9e{bottom:532.160000pt;}
.y11{bottom:533.120000pt;}
.yc3{bottom:535.360000pt;}
.y35{bottom:536.000000pt;}
.y79{bottom:537.600000pt;}
.y10e{bottom:538.560000pt;}
.y162{bottom:539.840000pt;}
.yec{bottom:543.360000pt;}
.y149{bottom:546.240000pt;}
.yb3{bottom:546.560000pt;}
.y10{bottom:549.760000pt;}
.y94{bottom:550.080000pt;}
.yc2{bottom:552.000000pt;}
.y34{bottom:552.640000pt;}
.y10d{bottom:553.600000pt;}
.y78{bottom:554.240000pt;}
.y173{bottom:558.080000pt;}
.y60{bottom:560.320000pt;}
.y148{bottom:560.960000pt;}
.y161{bottom:562.240000pt;}
.yb2{bottom:563.200000pt;}
.y9d{bottom:564.160000pt;}
.yeb{bottom:565.440000pt;}
.y128{bottom:565.760000pt;}
.yf{bottom:566.720000pt;}
.yc1{bottom:568.640000pt;}
.y33{bottom:569.600000pt;}
.y77{bottom:571.200000pt;}
.y172{bottom:572.800000pt;}
.y10c{bottom:576.000000pt;}
.y5f{bottom:576.960000pt;}
.y93{bottom:578.240000pt;}
.yb1{bottom:579.840000pt;}
.yea{bottom:580.160000pt;}
.yd3{bottom:580.480000pt;}
.y147{bottom:583.040000pt;}
.ye{bottom:583.680000pt;}
.y32{bottom:586.240000pt;}
.y76{bottom:587.840000pt;}
.y10b{bottom:591.040000pt;}
.y160{bottom:591.360000pt;}
.y5e{bottom:593.600000pt;}
.y92{bottom:595.200000pt;}
.yb0{bottom:596.480000pt;}
.yd2{bottom:597.120000pt;}
.y47{bottom:597.440000pt;}
.y146{bottom:597.760000pt;}
.yd{bottom:600.640000pt;}
.y31{bottom:602.880000pt;}
.y75{bottom:604.480000pt;}
.y10a{bottom:605.760000pt;}
.ye9{bottom:606.400000pt;}
.y171{bottom:609.600000pt;}
.y5d{bottom:610.240000pt;}
.y91{bottom:612.160000pt;}
.y145{bottom:612.480000pt;}
.yc0{bottom:613.120000pt;}
.y15f{bottom:613.760000pt;}
.yd1{bottom:614.080000pt;}
.y46{bottom:614.400000pt;}
.y9c{bottom:615.680000pt;}
.y127{bottom:617.280000pt;}
.yc{bottom:617.600000pt;}
.y30{bottom:619.840000pt;}
.y74{bottom:621.120000pt;}
.ycd{bottom:624.640000pt;}
.y5c{bottom:627.200000pt;}
.yaf{bottom:628.480000pt;}
.y90{bottom:629.120000pt;}
.ybf{bottom:630.080000pt;}
.yd0{bottom:630.720000pt;}
.y45{bottom:631.040000pt;}
.y126{bottom:632.000000pt;}
.y9b{bottom:632.320000pt;}
.yb{bottom:634.240000pt;}
.y144{bottom:634.560000pt;}
.ycc{bottom:641.280000pt;}
.y109{bottom:643.200000pt;}
.y5b{bottom:643.840000pt;}
.y8f{bottom:646.080000pt;}
.ybe{bottom:646.720000pt;}
.ycf{bottom:647.360000pt;}
.y2f{bottom:648.000000pt;}
.y73{bottom:648.960000pt;}
.y143{bottom:649.280000pt;}
.ya{bottom:651.200000pt;}
.y125{bottom:654.080000pt;}
.ye8{bottom:655.040000pt;}
.ycb{bottom:657.920000pt;}
.y108{bottom:658.240000pt;}
.y5a{bottom:660.480000pt;}
.ybd{bottom:663.360000pt;}
.y142{bottom:664.000000pt;}
.y2e{bottom:664.640000pt;}
.y72{bottom:665.600000pt;}
.y124{bottom:668.800000pt;}
.ye7{bottom:671.680000pt;}
.y8e{bottom:674.240000pt;}
.yca{bottom:674.560000pt;}
.y59{bottom:677.120000pt;}
.yce{bottom:678.400000pt;}
.y141{bottom:678.720000pt;}
.ybc{bottom:680.000000pt;}
.y107{bottom:680.640000pt;}
.y2d{bottom:681.280000pt;}
.y71{bottom:682.240000pt;}
.y123{bottom:683.520000pt;}
.ye6{bottom:688.640000pt;}
.y8d{bottom:691.200000pt;}
.y58{bottom:693.760000pt;}
.y106{bottom:695.360000pt;}
.y2c{bottom:698.240000pt;}
.y70{bottom:699.200000pt;}
.y15e{bottom:699.520000pt;}
.y140{bottom:700.800000pt;}
.ye5{bottom:705.280000pt;}
.y122{bottom:705.600000pt;}
.y8c{bottom:707.840000pt;}
.y9{bottom:709.440000pt;}
.y57{bottom:710.400000pt;}
.ybb{bottom:711.680000pt;}
.y15d{bottom:714.240000pt;}
.y2b{bottom:714.880000pt;}
.y13f{bottom:715.520000pt;}
.y121{bottom:720.320000pt;}
.ye4{bottom:721.920000pt;}
.yc9{bottom:724.480000pt;}
.y8b{bottom:724.800000pt;}
.y6f{bottom:727.040000pt;}
.y8{bottom:728.960000pt;}
.y44{bottom:731.520000pt;}
.y105{bottom:732.800000pt;}
.y120{bottom:735.040000pt;}
.y13e{bottom:737.600000pt;}
.y56{bottom:738.240000pt;}
.yc8{bottom:741.120000pt;}
.y8a{bottom:741.760000pt;}
.y2a{bottom:743.040000pt;}
.y6e{bottom:743.680000pt;}
.y104{bottom:747.840000pt;}
.y7{bottom:748.480000pt;}
.ye3{bottom:749.440000pt;}
.y15c{bottom:751.040000pt;}
.y13d{bottom:752.320000pt;}
.y55{bottom:755.200000pt;}
.y11f{bottom:757.120000pt;}
.y89{bottom:758.720000pt;}
.y29{bottom:759.680000pt;}
.y6d{bottom:760.320000pt;}
.y15b{bottom:765.760000pt;}
.ye2{bottom:766.080000pt;}
.y103{bottom:770.240000pt;}
.y54{bottom:771.840000pt;}
.yc7{bottom:773.120000pt;}
.y88{bottom:775.680000pt;}
.y28{bottom:776.640000pt;}
.y6c{bottom:776.960000pt;}
.ye1{bottom:782.720000pt;}
.y102{bottom:785.280000pt;}
.y11e{bottom:786.560000pt;}
.y13c{bottom:787.840000pt;}
.y53{bottom:788.480000pt;}
.y6{bottom:792.000000pt;}
.y27{bottom:793.280000pt;}
.y9a{bottom:793.600000pt;}
.y11d{bottom:801.280000pt;}
.y13b{bottom:802.560000pt;}
.y87{bottom:803.840000pt;}
.y52{bottom:805.120000pt;}
.y101{bottom:807.680000pt;}
.y170{bottom:808.960000pt;}
.y26{bottom:809.920000pt;}
.y99{bottom:810.240000pt;}
.y5{bottom:816.320000pt;}
.y13a{bottom:817.280000pt;}
.y86{bottom:820.800000pt;}
.y51{bottom:821.760000pt;}
.y100{bottom:822.400000pt;}
.y11c{bottom:823.360000pt;}
.y15a{bottom:824.960000pt;}
.y43{bottom:826.880000pt;}
.yff{bottom:837.440000pt;}
.y85{bottom:837.760000pt;}
.y25{bottom:838.080000pt;}
.y50{bottom:838.400000pt;}
.y139{bottom:839.360000pt;}
.y4{bottom:840.320000pt;}
.ye0{bottom:843.520000pt;}
.y11b{bottom:852.800000pt;}
.y138{bottom:854.080000pt;}
.y24{bottom:854.720000pt;}
.y4f{bottom:855.040000pt;}
.yfe{bottom:859.840000pt;}
.y159{bottom:860.480000pt;}
.y84{bottom:871.360000pt;}
.y23{bottom:871.680000pt;}
.yfd{bottom:874.880000pt;}
.y22{bottom:888.320000pt;}
.yfc{bottom:889.600000pt;}
.h2{height:39.606471pt;}
.h6{height:51.898311pt;}
.h5{height:57.361351pt;}
.h1{height:62.824960pt;}
.h3{height:68.288000pt;}
.h4{height:84.676551pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:158.720000pt;}
.x4{left:169.920000pt;}
.x9{left:188.800000pt;}
.x6{left:191.040000pt;}
.xc{left:200.320000pt;}
.xa{left:398.720000pt;}
.x2{left:400.000000pt;}
.x3{left:458.560000pt;}
.xb{left:556.160000pt;}
.x1{left:618.880000pt;}
.x7{left:619.840000pt;}
.x8{left:622.080000pt;}
}




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