
    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_47625d012cda94a5fc10325d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.903000;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_4c3c4f7c6e2f8edafb5955e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_0d757cd61b38457102cca69b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_ad9152b242a72b826b95c130.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.701000;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_849e25b929e2ef1c49c67ff1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_7cd383b9ef7f74e54db4963d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.067000;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_216cc483aa22056f1b407e5f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.686000;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_a1e903066b104e77c4074b83.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_c4344a1cfc1ad8110e332b7e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921875;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_dd2d068b205fdf48e07f547f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.664000;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_80a7cbb8254544689f3cd55f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_8c73142c92b28496407826c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.158528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158528,0.000000,0.000000,0.250000,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);}
.v5{vertical-align:-37.800000px;}
.v3{vertical-align:-18.900000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.900000px;}
.v2{vertical-align:23.988000px;}
.v1{vertical-align:36.375600px;}
.v6{vertical-align:37.800000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000300px;}
.lsa{letter-spacing:0.451200px;}
.ls0{letter-spacing:0.606000px;}
.ls8{letter-spacing:0.630000px;}
.ls4{letter-spacing:2.412000px;}
.ls1{letter-spacing:5.610000px;}
.ls2{letter-spacing:5.610600px;}
.ls5{letter-spacing:23.215800px;}
.ls6{letter-spacing:38.935200px;}
.ls7{letter-spacing:204.378000px;}
.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;}
}
.ws7{word-spacing:-63.000000px;}
.ws0{word-spacing:-31.110000px;}
.ws3{word-spacing:-20.130000px;}
.wsc{word-spacing:-16.380000px;}
.ws5{word-spacing:-15.750000px;}
.ws4{word-spacing:-14.091000px;}
.ws1{word-spacing:-12.750000px;}
.wsd{word-spacing:-10.237500px;}
.ws2{word-spacing:-8.925000px;}
.wsb{word-spacing:-0.026437px;}
.ws6{word-spacing:0.000000px;}
.ws8{word-spacing:17.132625px;}
.ws9{word-spacing:64.747500px;}
.wsa{word-spacing:168.591620px;}
._11{margin-left:-15.750000px;}
._13{margin-left:-4.815000px;}
._8{margin-left:-3.357000px;}
._3{margin-left:-1.683000px;}
._0{width:1.220400px;}
._1{width:2.302200px;}
._2{width:3.409800px;}
._a{width:4.457400px;}
._4{width:5.607000px;}
._9{width:6.867000px;}
._10{width:7.873200px;}
._7{width:8.876400px;}
._6{width:10.017000px;}
._e{width:11.340000px;}
._c{width:12.411000px;}
._b{width:13.797000px;}
._15{width:14.868000px;}
._17{width:16.344000px;}
._d{width:18.130200px;}
._5{width:19.467000px;}
._f{width:21.105000px;}
._16{width:22.491000px;}
._18{width:23.625000px;}
._12{width:26.145000px;}
._14{width:33.574125px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:26.437200px;}
.fs3{font-size:35.700000px;}
.fs6{font-size:36.375000px;}
.fs9{font-size:40.950000px;}
.fs4{font-size:46.200000px;}
.fs2{font-size:51.000000px;}
.fs8{font-size:57.363600px;}
.fs5{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:82.357800px;}
.y2d{bottom:82.357950px;}
.y71{bottom:82.358100px;}
.y62{bottom:124.583700px;}
.y66{bottom:124.586850px;}
.y6f{bottom:126.954750px;}
.ydd{bottom:127.240050px;}
.y2a{bottom:127.240200px;}
.ya1{bottom:127.480350px;}
.y63{bottom:130.583850px;}
.y64{bottom:132.036900px;}
.y6e{bottom:139.704750px;}
.ya0{bottom:140.230350px;}
.y61{bottom:140.333700px;}
.ydc{bottom:143.740050px;}
.y29{bottom:143.740200px;}
.y65{bottom:149.802600px;}
.y6d{bottom:152.454750px;}
.y9f{bottom:152.980350px;}
.ydb{bottom:160.240050px;}
.y28{bottom:160.240200px;}
.y6c{bottom:165.204750px;}
.y9e{bottom:165.730350px;}
.yda{bottom:176.740050px;}
.y27{bottom:176.740200px;}
.y6b{bottom:177.954750px;}
.y9d{bottom:178.480350px;}
.y9c{bottom:191.230350px;}
.yd9{bottom:193.240050px;}
.y26{bottom:193.240200px;}
.y9b{bottom:203.980350px;}
.yd8{bottom:209.740050px;}
.y25{bottom:209.740200px;}
.yd7{bottom:226.240050px;}
.y2b{bottom:226.240200px;}
.yd6{bottom:242.740050px;}
.y24{bottom:242.740200px;}
.y7a{bottom:242.740350px;}
.yd5{bottom:259.240050px;}
.y5e{bottom:259.240200px;}
.y79{bottom:259.240350px;}
.y100{bottom:274.990050px;}
.yd4{bottom:275.740050px;}
.y5d{bottom:275.740200px;}
.y78{bottom:275.740350px;}
.yff{bottom:287.740050px;}
.y13f{bottom:288.039300px;}
.yd3{bottom:292.240050px;}
.y5c{bottom:292.240200px;}
.y77{bottom:292.240350px;}
.y1f{bottom:292.416150px;}
.yfe{bottom:300.490050px;}
.y13e{bottom:300.789300px;}
.yd2{bottom:308.740050px;}
.y60{bottom:308.740200px;}
.y76{bottom:308.740350px;}
.yfd{bottom:313.240050px;}
.y13d{bottom:313.539300px;}
.y1e{bottom:317.916150px;}
.yd1{bottom:325.240050px;}
.y5b{bottom:325.240200px;}
.y75{bottom:325.240350px;}
.yfc{bottom:325.990050px;}
.y1d{bottom:330.666150px;}
.yfb{bottom:338.740050px;}
.y13c{bottom:339.039300px;}
.yd0{bottom:341.740050px;}
.y5f{bottom:341.740200px;}
.y74{bottom:341.740350px;}
.y1c{bottom:343.416150px;}
.yfa{bottom:351.490050px;}
.y13b{bottom:351.789300px;}
.y1b{bottom:356.166150px;}
.ycf{bottom:358.240050px;}
.y5a{bottom:358.240200px;}
.y73{bottom:358.240350px;}
.yf9{bottom:364.240050px;}
.y13a{bottom:364.539300px;}
.y1a{bottom:368.916150px;}
.yce{bottom:374.740050px;}
.y59{bottom:374.740200px;}
.y72{bottom:374.740350px;}
.yf8{bottom:376.990050px;}
.y139{bottom:377.289300px;}
.y19{bottom:381.666150px;}
.yf7{bottom:389.740050px;}
.y138{bottom:390.039300px;}
.ycd{bottom:391.240050px;}
.y58{bottom:391.240200px;}
.y18{bottom:394.416150px;}
.yf6{bottom:402.490050px;}
.y137{bottom:402.789300px;}
.y17{bottom:407.166150px;}
.ycc{bottom:407.740050px;}
.y57{bottom:407.740200px;}
.yf5{bottom:415.240050px;}
.y136{bottom:415.539300px;}
.y16{bottom:419.916150px;}
.ycb{bottom:424.240050px;}
.y56{bottom:424.240200px;}
.yf4{bottom:427.990050px;}
.y135{bottom:428.289300px;}
.y15{bottom:432.666150px;}
.yca{bottom:440.740050px;}
.y55{bottom:440.740200px;}
.y134{bottom:441.039300px;}
.y14{bottom:445.416150px;}
.yf3{bottom:453.490050px;}
.y133{bottom:453.789300px;}
.yc9{bottom:457.240050px;}
.y54{bottom:457.240200px;}
.y13{bottom:458.166150px;}
.yf2{bottom:466.240050px;}
.y132{bottom:466.539300px;}
.yc8{bottom:473.740050px;}
.y53{bottom:473.740200px;}
.yf1{bottom:478.990050px;}
.y131{bottom:479.289300px;}
.y12{bottom:483.666150px;}
.yc7{bottom:490.240050px;}
.y52{bottom:490.240200px;}
.yf0{bottom:491.740050px;}
.y130{bottom:492.039300px;}
.y11{bottom:496.416150px;}
.y8c{bottom:498.593550px;}
.yef{bottom:504.490050px;}
.y12f{bottom:504.789300px;}
.yc6{bottom:506.740050px;}
.y51{bottom:506.740200px;}
.y10{bottom:509.166150px;}
.y8b{bottom:511.343550px;}
.yee{bottom:517.240050px;}
.y12e{bottom:517.539300px;}
.yf{bottom:521.916150px;}
.yc5{bottom:523.240050px;}
.y50{bottom:523.240200px;}
.y8a{bottom:524.093550px;}
.yed{bottom:529.990050px;}
.y12d{bottom:530.289300px;}
.ye{bottom:534.666150px;}
.y89{bottom:536.843550px;}
.yc4{bottom:539.740050px;}
.y4f{bottom:539.740200px;}
.yec{bottom:542.740050px;}
.y12c{bottom:543.039300px;}
.yd{bottom:547.416150px;}
.y88{bottom:549.593550px;}
.yeb{bottom:555.490050px;}
.y12b{bottom:555.789300px;}
.yc3{bottom:556.240050px;}
.y4e{bottom:556.240200px;}
.yc{bottom:560.166150px;}
.y87{bottom:562.343550px;}
.yea{bottom:568.240050px;}
.y12a{bottom:568.539300px;}
.yc2{bottom:572.740050px;}
.y4d{bottom:572.740200px;}
.yb{bottom:572.916150px;}
.y86{bottom:575.093550px;}
.ye9{bottom:580.990050px;}
.y129{bottom:581.289300px;}
.ya{bottom:585.666150px;}
.y85{bottom:587.843550px;}
.yc1{bottom:589.240050px;}
.y4c{bottom:589.240200px;}
.ye8{bottom:593.740050px;}
.y128{bottom:594.039300px;}
.y9{bottom:598.416150px;}
.y84{bottom:600.593550px;}
.yc0{bottom:605.740050px;}
.y4b{bottom:605.740200px;}
.ye7{bottom:606.490050px;}
.y127{bottom:606.789300px;}
.y8{bottom:611.166150px;}
.y83{bottom:613.343550px;}
.ye6{bottom:619.240050px;}
.y126{bottom:619.539300px;}
.ybf{bottom:622.240050px;}
.y4a{bottom:622.240200px;}
.y7{bottom:623.916150px;}
.y82{bottom:626.093550px;}
.ye5{bottom:631.990050px;}
.y125{bottom:632.289300px;}
.ybe{bottom:638.740050px;}
.y49{bottom:638.740200px;}
.y81{bottom:638.843550px;}
.ye4{bottom:644.740050px;}
.y124{bottom:645.039300px;}
.y9a{bottom:646.830900px;}
.y80{bottom:651.593550px;}
.ybd{bottom:655.240050px;}
.y48{bottom:655.240200px;}
.ye3{bottom:657.490050px;}
.y123{bottom:657.789300px;}
.y99{bottom:659.580900px;}
.y7f{bottom:664.343550px;}
.ye2{bottom:670.240050px;}
.y122{bottom:670.539300px;}
.ybc{bottom:671.740050px;}
.y47{bottom:671.740200px;}
.y98{bottom:672.330900px;}
.y97{bottom:676.072950px;}
.y7e{bottom:677.093550px;}
.ye1{bottom:682.990050px;}
.y121{bottom:683.289300px;}
.ybb{bottom:688.240050px;}
.y46{bottom:688.240200px;}
.y96{bottom:688.822950px;}
.y7d{bottom:689.843550px;}
.ye0{bottom:695.740050px;}
.y120{bottom:696.039300px;}
.y95{bottom:701.572950px;}
.y7c{bottom:702.593550px;}
.yba{bottom:704.740050px;}
.y45{bottom:704.740200px;}
.ydf{bottom:708.490050px;}
.y11f{bottom:708.789300px;}
.y94{bottom:714.322950px;}
.y7b{bottom:715.343550px;}
.yb9{bottom:721.240050px;}
.y44{bottom:721.240200px;}
.y11e{bottom:721.539300px;}
.y93{bottom:727.072950px;}
.y11d{bottom:734.289300px;}
.yb8{bottom:737.740050px;}
.y43{bottom:737.740200px;}
.y92{bottom:739.822950px;}
.y11c{bottom:747.039300px;}
.y91{bottom:752.572950px;}
.yb7{bottom:754.240050px;}
.y42{bottom:754.240200px;}
.y11b{bottom:759.789300px;}
.y6{bottom:764.225100px;}
.y90{bottom:765.322950px;}
.yb6{bottom:770.740050px;}
.y41{bottom:770.740200px;}
.y11a{bottom:772.539300px;}
.y5{bottom:776.975100px;}
.y8f{bottom:778.072950px;}
.y119{bottom:785.289300px;}
.yb5{bottom:787.240050px;}
.y40{bottom:787.240200px;}
.y8e{bottom:790.822950px;}
.y118{bottom:798.039300px;}
.y4{bottom:802.480950px;}
.y8d{bottom:803.572950px;}
.yb4{bottom:803.740050px;}
.y3f{bottom:803.740200px;}
.y6a{bottom:808.551150px;}
.y117{bottom:810.789300px;}
.yb3{bottom:820.240050px;}
.y3e{bottom:820.240200px;}
.y69{bottom:821.301150px;}
.y116{bottom:823.539300px;}
.y68{bottom:834.051150px;}
.y115{bottom:836.289300px;}
.yb2{bottom:836.740050px;}
.y3d{bottom:836.740200px;}
.y114{bottom:849.039300px;}
.yb1{bottom:853.240050px;}
.y3c{bottom:853.240200px;}
.y3{bottom:855.696750px;}
.y113{bottom:861.789300px;}
.yb0{bottom:869.740050px;}
.y3b{bottom:869.740200px;}
.y112{bottom:874.539300px;}
.y2{bottom:883.334250px;}
.yaf{bottom:886.240050px;}
.y3a{bottom:886.240200px;}
.y111{bottom:887.289300px;}
.y110{bottom:900.039300px;}
.yae{bottom:902.740050px;}
.y39{bottom:902.740200px;}
.y1{bottom:910.971750px;}
.y10f{bottom:912.789300px;}
.yad{bottom:919.240050px;}
.y38{bottom:919.240200px;}
.y10e{bottom:925.539300px;}
.yac{bottom:935.740050px;}
.y37{bottom:935.740200px;}
.y10d{bottom:938.289300px;}
.y10c{bottom:951.039300px;}
.yab{bottom:952.240050px;}
.y36{bottom:952.240200px;}
.y10b{bottom:963.789300px;}
.yaa{bottom:968.740050px;}
.y35{bottom:968.740200px;}
.y10a{bottom:976.539300px;}
.ya9{bottom:985.240050px;}
.y34{bottom:985.240200px;}
.y109{bottom:989.289300px;}
.ya8{bottom:1001.740050px;}
.y33{bottom:1001.740200px;}
.y108{bottom:1002.039300px;}
.y107{bottom:1014.789300px;}
.ya7{bottom:1018.240050px;}
.y32{bottom:1018.240200px;}
.y106{bottom:1027.539300px;}
.ya6{bottom:1034.740050px;}
.y31{bottom:1034.740200px;}
.y105{bottom:1040.289300px;}
.ya5{bottom:1051.240050px;}
.y30{bottom:1051.240200px;}
.y104{bottom:1053.039300px;}
.y103{bottom:1065.789300px;}
.ya4{bottom:1067.740050px;}
.y2f{bottom:1067.740200px;}
.y23{bottom:1072.166700px;}
.y102{bottom:1078.539300px;}
.ya3{bottom:1084.240050px;}
.y2e{bottom:1084.240200px;}
.y101{bottom:1091.289300px;}
.y22{bottom:1091.366700px;}
.y21{bottom:1110.566850px;}
.y20{bottom:1129.766850px;}
.y2c{bottom:1132.860150px;}
.y70{bottom:1132.860300px;}
.yde{bottom:1132.872900px;}
.y67{bottom:1132.873050px;}
.h8{height:17.263492px;}
.hd{height:34.986000px;}
.h6{height:41.139000px;}
.hb{height:41.531246px;}
.hc{height:43.344000px;}
.h4{height:45.390000px;}
.h9{height:45.612000px;}
.h5{height:56.070000px;}
.h3{height:58.740000px;}
.h7{height:60.128475px;}
.ha{height:62.711100px;}
.h2{height:69.666000px;}
.h1{height:1215.750000px;}
.h0{height:1216.063500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.xd{left:97.795200px;}
.xf{left:119.055150px;}
.x7{left:120.624300px;}
.x2{left:129.143250px;}
.x20{left:174.918750px;}
.x1{left:191.808450px;}
.x1e{left:198.301500px;}
.x5{left:201.228300px;}
.x4{left:231.686400px;}
.x6{left:242.964300px;}
.x1b{left:290.093400px;}
.x3{left:352.993200px;}
.x1f{left:402.014250px;}
.x1a{left:446.219250px;}
.xe{left:450.708600px;}
.x1d{left:464.273250px;}
.x10{left:471.968550px;}
.x11{left:493.228350px;}
.x9{left:496.338900px;}
.x1c{left:500.049750px;}
.xb{left:564.118800px;}
.x12{left:593.630250px;}
.x15{left:606.989700px;}
.x18{left:618.942000px;}
.x16{left:627.937200px;}
.x13{left:638.911500px;}
.x8{left:642.586500px;}
.x17{left:655.833450px;}
.x14{left:664.458450px;}
.xa{left:679.156650px;}
.x19{left:693.892350px;}
@media print{
.v5{vertical-align:-33.600000pt;}
.v3{vertical-align:-16.800000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.800000pt;}
.v2{vertical-align:21.322667pt;}
.v1{vertical-align:32.333867pt;}
.v6{vertical-align:33.600000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000267pt;}
.lsa{letter-spacing:0.401067pt;}
.ls0{letter-spacing:0.538667pt;}
.ls8{letter-spacing:0.560000pt;}
.ls4{letter-spacing:2.144000pt;}
.ls1{letter-spacing:4.986667pt;}
.ls2{letter-spacing:4.987200pt;}
.ls5{letter-spacing:20.636267pt;}
.ls6{letter-spacing:34.609067pt;}
.ls7{letter-spacing:181.669333pt;}
.ws7{word-spacing:-56.000000pt;}
.ws0{word-spacing:-27.653333pt;}
.ws3{word-spacing:-17.893333pt;}
.wsc{word-spacing:-14.560000pt;}
.ws5{word-spacing:-14.000000pt;}
.ws4{word-spacing:-12.525333pt;}
.ws1{word-spacing:-11.333333pt;}
.wsd{word-spacing:-9.100000pt;}
.ws2{word-spacing:-7.933333pt;}
.wsb{word-spacing:-0.023500pt;}
.ws6{word-spacing:0.000000pt;}
.ws8{word-spacing:15.229000pt;}
.ws9{word-spacing:57.553333pt;}
.wsa{word-spacing:149.859218pt;}
._11{margin-left:-14.000000pt;}
._13{margin-left:-4.280000pt;}
._8{margin-left:-2.984000pt;}
._3{margin-left:-1.496000pt;}
._0{width:1.084800pt;}
._1{width:2.046400pt;}
._2{width:3.030933pt;}
._a{width:3.962133pt;}
._4{width:4.984000pt;}
._9{width:6.104000pt;}
._10{width:6.998400pt;}
._7{width:7.890133pt;}
._6{width:8.904000pt;}
._e{width:10.080000pt;}
._c{width:11.032000pt;}
._b{width:12.264000pt;}
._15{width:13.216000pt;}
._17{width:14.528000pt;}
._d{width:16.115733pt;}
._5{width:17.304000pt;}
._f{width:18.760000pt;}
._16{width:19.992000pt;}
._18{width:21.000000pt;}
._12{width:23.240000pt;}
._14{width:29.843667pt;}
.fs7{font-size:23.499733pt;}
.fs3{font-size:31.733333pt;}
.fs6{font-size:32.333333pt;}
.fs9{font-size:36.400000pt;}
.fs4{font-size:41.066667pt;}
.fs2{font-size:45.333333pt;}
.fs8{font-size:50.989867pt;}
.fs5{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:73.206933pt;}
.y2d{bottom:73.207067pt;}
.y71{bottom:73.207200pt;}
.y62{bottom:110.741067pt;}
.y66{bottom:110.743867pt;}
.y6f{bottom:112.848667pt;}
.ydd{bottom:113.102267pt;}
.y2a{bottom:113.102400pt;}
.ya1{bottom:113.315867pt;}
.y63{bottom:116.074533pt;}
.y64{bottom:117.366133pt;}
.y6e{bottom:124.182000pt;}
.ya0{bottom:124.649200pt;}
.y61{bottom:124.741067pt;}
.ydc{bottom:127.768933pt;}
.y29{bottom:127.769067pt;}
.y65{bottom:133.157867pt;}
.y6d{bottom:135.515333pt;}
.y9f{bottom:135.982533pt;}
.ydb{bottom:142.435600pt;}
.y28{bottom:142.435733pt;}
.y6c{bottom:146.848667pt;}
.y9e{bottom:147.315867pt;}
.yda{bottom:157.102267pt;}
.y27{bottom:157.102400pt;}
.y6b{bottom:158.182000pt;}
.y9d{bottom:158.649200pt;}
.y9c{bottom:169.982533pt;}
.yd9{bottom:171.768933pt;}
.y26{bottom:171.769067pt;}
.y9b{bottom:181.315867pt;}
.yd8{bottom:186.435600pt;}
.y25{bottom:186.435733pt;}
.yd7{bottom:201.102267pt;}
.y2b{bottom:201.102400pt;}
.yd6{bottom:215.768933pt;}
.y24{bottom:215.769067pt;}
.y7a{bottom:215.769200pt;}
.yd5{bottom:230.435600pt;}
.y5e{bottom:230.435733pt;}
.y79{bottom:230.435867pt;}
.y100{bottom:244.435600pt;}
.yd4{bottom:245.102267pt;}
.y5d{bottom:245.102400pt;}
.y78{bottom:245.102533pt;}
.yff{bottom:255.768933pt;}
.y13f{bottom:256.034933pt;}
.yd3{bottom:259.768933pt;}
.y5c{bottom:259.769067pt;}
.y77{bottom:259.769200pt;}
.y1f{bottom:259.925467pt;}
.yfe{bottom:267.102267pt;}
.y13e{bottom:267.368267pt;}
.yd2{bottom:274.435600pt;}
.y60{bottom:274.435733pt;}
.y76{bottom:274.435867pt;}
.yfd{bottom:278.435600pt;}
.y13d{bottom:278.701600pt;}
.y1e{bottom:282.592133pt;}
.yd1{bottom:289.102267pt;}
.y5b{bottom:289.102400pt;}
.y75{bottom:289.102533pt;}
.yfc{bottom:289.768933pt;}
.y1d{bottom:293.925467pt;}
.yfb{bottom:301.102267pt;}
.y13c{bottom:301.368267pt;}
.yd0{bottom:303.768933pt;}
.y5f{bottom:303.769067pt;}
.y74{bottom:303.769200pt;}
.y1c{bottom:305.258800pt;}
.yfa{bottom:312.435600pt;}
.y13b{bottom:312.701600pt;}
.y1b{bottom:316.592133pt;}
.ycf{bottom:318.435600pt;}
.y5a{bottom:318.435733pt;}
.y73{bottom:318.435867pt;}
.yf9{bottom:323.768933pt;}
.y13a{bottom:324.034933pt;}
.y1a{bottom:327.925467pt;}
.yce{bottom:333.102267pt;}
.y59{bottom:333.102400pt;}
.y72{bottom:333.102533pt;}
.yf8{bottom:335.102267pt;}
.y139{bottom:335.368267pt;}
.y19{bottom:339.258800pt;}
.yf7{bottom:346.435600pt;}
.y138{bottom:346.701600pt;}
.ycd{bottom:347.768933pt;}
.y58{bottom:347.769067pt;}
.y18{bottom:350.592133pt;}
.yf6{bottom:357.768933pt;}
.y137{bottom:358.034933pt;}
.y17{bottom:361.925467pt;}
.ycc{bottom:362.435600pt;}
.y57{bottom:362.435733pt;}
.yf5{bottom:369.102267pt;}
.y136{bottom:369.368267pt;}
.y16{bottom:373.258800pt;}
.ycb{bottom:377.102267pt;}
.y56{bottom:377.102400pt;}
.yf4{bottom:380.435600pt;}
.y135{bottom:380.701600pt;}
.y15{bottom:384.592133pt;}
.yca{bottom:391.768933pt;}
.y55{bottom:391.769067pt;}
.y134{bottom:392.034933pt;}
.y14{bottom:395.925467pt;}
.yf3{bottom:403.102267pt;}
.y133{bottom:403.368267pt;}
.yc9{bottom:406.435600pt;}
.y54{bottom:406.435733pt;}
.y13{bottom:407.258800pt;}
.yf2{bottom:414.435600pt;}
.y132{bottom:414.701600pt;}
.yc8{bottom:421.102267pt;}
.y53{bottom:421.102400pt;}
.yf1{bottom:425.768933pt;}
.y131{bottom:426.034933pt;}
.y12{bottom:429.925467pt;}
.yc7{bottom:435.768933pt;}
.y52{bottom:435.769067pt;}
.yf0{bottom:437.102267pt;}
.y130{bottom:437.368267pt;}
.y11{bottom:441.258800pt;}
.y8c{bottom:443.194267pt;}
.yef{bottom:448.435600pt;}
.y12f{bottom:448.701600pt;}
.yc6{bottom:450.435600pt;}
.y51{bottom:450.435733pt;}
.y10{bottom:452.592133pt;}
.y8b{bottom:454.527600pt;}
.yee{bottom:459.768933pt;}
.y12e{bottom:460.034933pt;}
.yf{bottom:463.925467pt;}
.yc5{bottom:465.102267pt;}
.y50{bottom:465.102400pt;}
.y8a{bottom:465.860933pt;}
.yed{bottom:471.102267pt;}
.y12d{bottom:471.368267pt;}
.ye{bottom:475.258800pt;}
.y89{bottom:477.194267pt;}
.yc4{bottom:479.768933pt;}
.y4f{bottom:479.769067pt;}
.yec{bottom:482.435600pt;}
.y12c{bottom:482.701600pt;}
.yd{bottom:486.592133pt;}
.y88{bottom:488.527600pt;}
.yeb{bottom:493.768933pt;}
.y12b{bottom:494.034933pt;}
.yc3{bottom:494.435600pt;}
.y4e{bottom:494.435733pt;}
.yc{bottom:497.925467pt;}
.y87{bottom:499.860933pt;}
.yea{bottom:505.102267pt;}
.y12a{bottom:505.368267pt;}
.yc2{bottom:509.102267pt;}
.y4d{bottom:509.102400pt;}
.yb{bottom:509.258800pt;}
.y86{bottom:511.194267pt;}
.ye9{bottom:516.435600pt;}
.y129{bottom:516.701600pt;}
.ya{bottom:520.592133pt;}
.y85{bottom:522.527600pt;}
.yc1{bottom:523.768933pt;}
.y4c{bottom:523.769067pt;}
.ye8{bottom:527.768933pt;}
.y128{bottom:528.034933pt;}
.y9{bottom:531.925467pt;}
.y84{bottom:533.860933pt;}
.yc0{bottom:538.435600pt;}
.y4b{bottom:538.435733pt;}
.ye7{bottom:539.102267pt;}
.y127{bottom:539.368267pt;}
.y8{bottom:543.258800pt;}
.y83{bottom:545.194267pt;}
.ye6{bottom:550.435600pt;}
.y126{bottom:550.701600pt;}
.ybf{bottom:553.102267pt;}
.y4a{bottom:553.102400pt;}
.y7{bottom:554.592133pt;}
.y82{bottom:556.527600pt;}
.ye5{bottom:561.768933pt;}
.y125{bottom:562.034933pt;}
.ybe{bottom:567.768933pt;}
.y49{bottom:567.769067pt;}
.y81{bottom:567.860933pt;}
.ye4{bottom:573.102267pt;}
.y124{bottom:573.368267pt;}
.y9a{bottom:574.960800pt;}
.y80{bottom:579.194267pt;}
.ybd{bottom:582.435600pt;}
.y48{bottom:582.435733pt;}
.ye3{bottom:584.435600pt;}
.y123{bottom:584.701600pt;}
.y99{bottom:586.294133pt;}
.y7f{bottom:590.527600pt;}
.ye2{bottom:595.768933pt;}
.y122{bottom:596.034933pt;}
.ybc{bottom:597.102267pt;}
.y47{bottom:597.102400pt;}
.y98{bottom:597.627467pt;}
.y97{bottom:600.953733pt;}
.y7e{bottom:601.860933pt;}
.ye1{bottom:607.102267pt;}
.y121{bottom:607.368267pt;}
.ybb{bottom:611.768933pt;}
.y46{bottom:611.769067pt;}
.y96{bottom:612.287067pt;}
.y7d{bottom:613.194267pt;}
.ye0{bottom:618.435600pt;}
.y120{bottom:618.701600pt;}
.y95{bottom:623.620400pt;}
.y7c{bottom:624.527600pt;}
.yba{bottom:626.435600pt;}
.y45{bottom:626.435733pt;}
.ydf{bottom:629.768933pt;}
.y11f{bottom:630.034933pt;}
.y94{bottom:634.953733pt;}
.y7b{bottom:635.860933pt;}
.yb9{bottom:641.102267pt;}
.y44{bottom:641.102400pt;}
.y11e{bottom:641.368267pt;}
.y93{bottom:646.287067pt;}
.y11d{bottom:652.701600pt;}
.yb8{bottom:655.768933pt;}
.y43{bottom:655.769067pt;}
.y92{bottom:657.620400pt;}
.y11c{bottom:664.034933pt;}
.y91{bottom:668.953733pt;}
.yb7{bottom:670.435600pt;}
.y42{bottom:670.435733pt;}
.y11b{bottom:675.368267pt;}
.y6{bottom:679.311200pt;}
.y90{bottom:680.287067pt;}
.yb6{bottom:685.102267pt;}
.y41{bottom:685.102400pt;}
.y11a{bottom:686.701600pt;}
.y5{bottom:690.644533pt;}
.y8f{bottom:691.620400pt;}
.y119{bottom:698.034933pt;}
.yb5{bottom:699.768933pt;}
.y40{bottom:699.769067pt;}
.y8e{bottom:702.953733pt;}
.y118{bottom:709.368267pt;}
.y4{bottom:713.316400pt;}
.y8d{bottom:714.287067pt;}
.yb4{bottom:714.435600pt;}
.y3f{bottom:714.435733pt;}
.y6a{bottom:718.712133pt;}
.y117{bottom:720.701600pt;}
.yb3{bottom:729.102267pt;}
.y3e{bottom:729.102400pt;}
.y69{bottom:730.045467pt;}
.y116{bottom:732.034933pt;}
.y68{bottom:741.378800pt;}
.y115{bottom:743.368267pt;}
.yb2{bottom:743.768933pt;}
.y3d{bottom:743.769067pt;}
.y114{bottom:754.701600pt;}
.yb1{bottom:758.435600pt;}
.y3c{bottom:758.435733pt;}
.y3{bottom:760.619333pt;}
.y113{bottom:766.034933pt;}
.yb0{bottom:773.102267pt;}
.y3b{bottom:773.102400pt;}
.y112{bottom:777.368267pt;}
.y2{bottom:785.186000pt;}
.yaf{bottom:787.768933pt;}
.y3a{bottom:787.769067pt;}
.y111{bottom:788.701600pt;}
.y110{bottom:800.034933pt;}
.yae{bottom:802.435600pt;}
.y39{bottom:802.435733pt;}
.y1{bottom:809.752667pt;}
.y10f{bottom:811.368267pt;}
.yad{bottom:817.102267pt;}
.y38{bottom:817.102400pt;}
.y10e{bottom:822.701600pt;}
.yac{bottom:831.768933pt;}
.y37{bottom:831.769067pt;}
.y10d{bottom:834.034933pt;}
.y10c{bottom:845.368267pt;}
.yab{bottom:846.435600pt;}
.y36{bottom:846.435733pt;}
.y10b{bottom:856.701600pt;}
.yaa{bottom:861.102267pt;}
.y35{bottom:861.102400pt;}
.y10a{bottom:868.034933pt;}
.ya9{bottom:875.768933pt;}
.y34{bottom:875.769067pt;}
.y109{bottom:879.368267pt;}
.ya8{bottom:890.435600pt;}
.y33{bottom:890.435733pt;}
.y108{bottom:890.701600pt;}
.y107{bottom:902.034933pt;}
.ya7{bottom:905.102267pt;}
.y32{bottom:905.102400pt;}
.y106{bottom:913.368267pt;}
.ya6{bottom:919.768933pt;}
.y31{bottom:919.769067pt;}
.y105{bottom:924.701600pt;}
.ya5{bottom:934.435600pt;}
.y30{bottom:934.435733pt;}
.y104{bottom:936.034933pt;}
.y103{bottom:947.368267pt;}
.ya4{bottom:949.102267pt;}
.y2f{bottom:949.102400pt;}
.y23{bottom:953.037067pt;}
.y102{bottom:958.701600pt;}
.ya3{bottom:963.768933pt;}
.y2e{bottom:963.769067pt;}
.y101{bottom:970.034933pt;}
.y22{bottom:970.103733pt;}
.y21{bottom:987.170533pt;}
.y20{bottom:1004.237200pt;}
.y2c{bottom:1006.986800pt;}
.y70{bottom:1006.986933pt;}
.yde{bottom:1006.998133pt;}
.y67{bottom:1006.998267pt;}
.h8{height:15.345326pt;}
.hd{height:31.098667pt;}
.h6{height:36.568000pt;}
.hb{height:36.916663pt;}
.hc{height:38.528000pt;}
.h4{height:40.346667pt;}
.h9{height:40.544000pt;}
.h5{height:49.840000pt;}
.h3{height:52.213333pt;}
.h7{height:53.447533pt;}
.ha{height:55.743200pt;}
.h2{height:61.925333pt;}
.h1{height:1080.666667pt;}
.h0{height:1080.945333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.xd{left:86.929067pt;}
.xf{left:105.826800pt;}
.x7{left:107.221600pt;}
.x2{left:114.794000pt;}
.x20{left:155.483333pt;}
.x1{left:170.496400pt;}
.x1e{left:176.268000pt;}
.x5{left:178.869600pt;}
.x4{left:205.943467pt;}
.x6{left:215.968267pt;}
.x1b{left:257.860800pt;}
.x3{left:313.771733pt;}
.x1f{left:357.346000pt;}
.x1a{left:396.639333pt;}
.xe{left:400.629867pt;}
.x1d{left:412.687333pt;}
.x10{left:419.527600pt;}
.x11{left:438.425200pt;}
.x9{left:441.190133pt;}
.x1c{left:444.488667pt;}
.xb{left:501.438933pt;}
.x12{left:527.671333pt;}
.x15{left:539.546400pt;}
.x18{left:550.170667pt;}
.x16{left:558.166400pt;}
.x13{left:567.921333pt;}
.x8{left:571.188000pt;}
.x17{left:582.963067pt;}
.x14{left:590.629733pt;}
.xa{left:603.694800pt;}
.x19{left:616.793200pt;}
}




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