
    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_dde2cd5e69e270a882bb8260.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_f6b5d552f6c9f3051e8336b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_a6df947f4e85d4a9126e9115.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_faa93b547bcc17a18f6bcc67.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_ff0e57fe9736060dce43ea08.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986816;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_7ff0f216c30c22c1c82588a5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986816;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_c96dfb636b516e007b43cbd1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_a317413979efc2e80be9c88c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_1644a018784f8b1e5d7de579.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_a89306fe303a3913aad2434b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.866699;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_0aa62672d8d259640f3347b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_6974cbf4a2e4f9789fe349b1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_60187cea4bc8d95f375c5b68.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.682617;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_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_5c9a89c4ccdcf295e3de2092.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f9b1f9db8f53d0e1fbe2756d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.896973;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;}
.m4{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-35.279986px;}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.010626px;}
.ls15{letter-spacing:0.021238px;}
.lsb{letter-spacing:0.088558px;}
.ls11{letter-spacing:0.205782px;}
.lsd{letter-spacing:0.730868px;}
.ls12{letter-spacing:0.731118px;}
.ls1{letter-spacing:0.903137px;}
.lse{letter-spacing:3.614548px;}
.ls7{letter-spacing:5.952498px;}
.ls8{letter-spacing:12.436404px;}
.ls10{letter-spacing:19.461860px;}
.lsf{letter-spacing:21.626263px;}
.ls5{letter-spacing:22.523014px;}
.ls14{letter-spacing:33.980686px;}
.ls6{letter-spacing:49.899504px;}
.ls3{letter-spacing:60.669760px;}
.ls4{letter-spacing:60.699778px;}
.lsc{letter-spacing:121.907951px;}
.lsa{letter-spacing:150.004140px;}
.ls2{letter-spacing:182.454487px;}
.ls0{letter-spacing:1631.263476px;}
.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;}
}
.ws9{word-spacing:-35.855986px;}
.ws2{word-spacing:-32.399987px;}
.ws8{word-spacing:-19.007992px;}
.ws7{word-spacing:-18.088551px;}
.wsa{word-spacing:-18.021231px;}
.ws6{word-spacing:-17.999993px;}
.ws1{word-spacing:-15.011994px;}
.ws3{word-spacing:-14.939994px;}
.ws0{word-spacing:-13.505755px;}
.ws4{word-spacing:-13.410715px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-5.092173px;}
._1{margin-left:-3.282801px;}
._3{margin-left:-1.570800px;}
._0{width:1.003097px;}
._a{width:2.028796px;}
._b{width:3.160471px;}
._15{width:4.205043px;}
._7{width:5.245548px;}
._6{width:6.740430px;}
._11{width:8.546571px;}
._e{width:9.837588px;}
._17{width:11.727771px;}
._10{width:12.899521px;}
._1b{width:14.280900px;}
._19{width:15.997429px;}
._14{width:17.092989px;}
._12{width:18.391098px;}
._13{width:19.415156px;}
._5{width:20.435155px;}
._d{width:21.581070px;}
._4{width:22.756034px;}
._f{width:23.760869px;}
._9{width:24.843454px;}
._8{width:26.254902px;}
._1f{width:31.596369px;}
._1c{width:33.387686px;}
._20{width:34.413637px;}
._1a{width:36.262174px;}
._22{width:38.332673px;}
._23{width:39.620754px;}
._21{width:42.014899px;}
._c{width:50.036466px;}
._1e{width:53.265542px;}
._1d{width:54.815061px;}
._18{width:83.833024px;}
._16{width:84.907352px;}
.fcd{color:rgb(0,112,192);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fca{color:rgb(0,176,80);}
.fc3{color:rgb(192,0,0);}
.fc7{color:rgb(83,129,53);}
.fcb{color:rgb(0,101,204);}
.fc6{color:rgb(15,17,21);}
.fc1{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fc4{color:rgb(0,32,96);}
.fc5{color:rgb(0,0,255);}
.fcc{color:transparent;}
.fs5{font-size:2.879999px;}
.fs2{font-size:48.239981px;}
.fs1{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs4{font-size:69.119972px;}
.fs3{font-size:71.999971px;}
.y6{bottom:-8.279991px;}
.y4a{bottom:-6.300686px;}
.y8d{bottom:-0.000751px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y42{bottom:3.239275px;}
.y40{bottom:3.958942px;}
.yb{bottom:3.960038px;}
.y75{bottom:4.319043px;}
.y7a{bottom:4.319088px;}
.y7e{bottom:4.319122px;}
.y82{bottom:4.319157px;}
.y86{bottom:4.319191px;}
.y89{bottom:4.319225px;}
.yc{bottom:33.240287px;}
.ya{bottom:51.960240px;}
.y8{bottom:55.920278px;}
.y9{bottom:57.000277px;}
.y96{bottom:127.019949px;}
.yb8{bottom:140.519944px;}
.y95{bottom:147.719941px;}
.y3a{bottom:156.179938px;}
.y70{bottom:162.479935px;}
.y94{bottom:168.419933px;}
.yb7{bottom:182.279927px;}
.y39{bottom:185.699926px;}
.y93{bottom:189.119924px;}
.y6f{bottom:204.059918px;}
.y92{bottom:209.819916px;}
.ycd{bottom:220.619912px;}
.y49{bottom:221.160600px;}
.yb6{bottom:223.859910px;}
.y6e{bottom:224.759910px;}
.y48{bottom:228.719909px;}
.y91{bottom:230.519908px;}
.yb5{bottom:244.559902px;}
.y47{bottom:245.999902px;}
.ycc{bottom:252.119899px;}
.yb4{bottom:265.259894px;}
.y46{bottom:266.519893px;}
.y1e{bottom:270.299892px;}
.y90{bottom:272.279891px;}
.y45{bottom:283.619887px;}
.yb3{bottom:285.959886px;}
.y6d{bottom:287.219885px;}
.ye6{bottom:290.819884px;}
.y44{bottom:297.479881px;}
.yb2{bottom:306.659877px;}
.y6c{bottom:307.919877px;}
.y41{bottom:308.820600px;}
.y43{bottom:312.059875px;}
.y8f{bottom:313.859874px;}
.ycb{bottom:315.119874px;}
.y6b{bottom:328.619869px;}
.y8e{bottom:335.099866px;}
.ye5{bottom:341.399863px;}
.yca{bottom:346.619861px;}
.yb1{bottom:348.419861px;}
.y38{bottom:359.039856px;}
.y6a{bottom:370.379852px;}
.y37{bottom:376.319849px;}
.y8c{bottom:376.320600px;}
.yc9{bottom:378.119849px;}
.y8b{bottom:381.539847px;}
.yb0{bottom:390.179844px;}
.y69{bottom:391.079844px;}
.ye4{bottom:394.139842px;}
.y1d{bottom:395.399842px;}
.y36{bottom:402.419839px;}
.y8a{bottom:409.619836px;}
.yaf{bottom:410.879836px;}
.y68{bottom:411.779835px;}
.y35{bottom:419.699832px;}
.yae{bottom:431.579827px;}
.y67{bottom:432.479827px;}
.y88{bottom:434.100600px;}
.y34{bottom:436.979825px;}
.yc8{bottom:441.119824px;}
.yad{bottom:452.279819px;}
.y66{bottom:453.179819px;}
.y33{bottom:454.259818px;}
.ye3{bottom:465.599814px;}
.y87{bottom:466.499813px;}
.yc7{bottom:472.619811px;}
.yac{bottom:472.979811px;}
.y32{bottom:480.539808px;}
.yab{bottom:493.679803px;}
.y65{bottom:494.759802px;}
.ye2{bottom:497.099801px;}
.y31{bottom:497.639801px;}
.yc6{bottom:504.119798px;}
.y30{bottom:514.919794px;}
.y64{bottom:515.459794px;}
.y1c{bottom:516.179794px;}
.y85{bottom:519.240600px;}
.ye1{bottom:528.599789px;}
.y2f{bottom:532.199787px;}
.yaa{bottom:535.259786px;}
.yc5{bottom:535.619786px;}
.y63{bottom:536.159786px;}
.y2e{bottom:549.479780px;}
.y84{bottom:551.639779px;}
.y62{bottom:556.859777px;}
.ye0{bottom:560.099776px;}
.y2d{bottom:566.759773px;}
.yc4{bottom:567.119773px;}
.ya9{bottom:577.019769px;}
.y61{bottom:577.559769px;}
.y83{bottom:579.899768px;}
.y1b{bottom:589.979764px;}
.ydf{bottom:591.599763px;}
.y2c{bottom:593.039763px;}
.ya8{bottom:597.719761px;}
.y60{bottom:598.259761px;}
.yc3{bottom:598.619761px;}
.y81{bottom:604.380600px;}
.y1a{bottom:608.339757px;}
.y2b{bottom:610.139756px;}
.ya7{bottom:618.419753px;}
.yde{bottom:623.099751px;}
.y19{bottom:626.699749px;}
.y2a{bottom:627.419749px;}
.yc2{bottom:630.119748px;}
.y80{bottom:636.779745px;}
.y5f{bottom:640.019744px;}
.y18{bottom:643.979742px;}
.y29{bottom:644.699742px;}
.ydd{bottom:654.599738px;}
.ya6{bottom:659.999736px;}
.y5e{bottom:660.719736px;}
.yc1{bottom:661.619735px;}
.y28{bottom:661.979735px;}
.y7f{bottom:665.039734px;}
.ydc{bottom:686.099726px;}
.y27{bottom:688.259725px;}
.y7d{bottom:689.520600px;}
.yc0{bottom:693.119723px;}
.ya5{bottom:701.759719px;}
.y5d{bottom:702.299719px;}
.y26{bottom:705.539718px;}
.y17{bottom:716.519713px;}
.ydb{bottom:717.599713px;}
.y7c{bottom:721.919711px;}
.ya4{bottom:722.459711px;}
.y25{bottom:722.639711px;}
.ybf{bottom:724.619710px;}
.ya3{bottom:743.159703px;}
.y5c{bottom:744.059702px;}
.y24{bottom:748.919700px;}
.yda{bottom:749.099700px;}
.y7b{bottom:749.999700px;}
.ya2{bottom:763.859694px;}
.y5b{bottom:764.759694px;}
.y23{bottom:766.199694px;}
.ybe{bottom:774.119690px;}
.y79{bottom:774.660600px;}
.yd9{bottom:780.599688px;}
.y22{bottom:783.479687px;}
.ya1{bottom:784.559686px;}
.y5a{bottom:785.459686px;}
.y16{bottom:789.239684px;}
.y21{bottom:800.759680px;}
.ya0{bottom:805.259678px;}
.y59{bottom:806.159678px;}
.y78{bottom:807.059677px;}
.y15{bottom:807.779677px;}
.yd8{bottom:812.099675px;}
.y20{bottom:817.859673px;}
.y9f{bottom:825.959670px;}
.ybd{bottom:826.499669px;}
.y58{bottom:826.859669px;}
.y77{bottom:835.139666px;}
.yd7{bottom:843.599663px;}
.y1f{bottom:843.959662px;}
.y14{bottom:845.219662px;}
.ybc{bottom:847.199661px;}
.y57{bottom:847.559661px;}
.y76{bottom:863.399655px;}
.y9e{bottom:867.719653px;}
.ybb{bottom:867.899653px;}
.y56{bottom:868.259653px;}
.yd6{bottom:875.099650px;}
.y13{bottom:881.039648px;}
.y74{bottom:887.880600px;}
.yba{bottom:888.599645px;}
.y55{bottom:888.959644px;}
.y12{bottom:904.979638px;}
.yd5{bottom:906.599637px;}
.y9d{bottom:909.299636px;}
.y54{bottom:909.659636px;}
.y73{bottom:920.279632px;}
.yb9{bottom:929.999628px;}
.y53{bottom:930.359628px;}
.yd4{bottom:938.099625px;}
.y11{bottom:940.439624px;}
.y9c{bottom:951.059620px;}
.y10{bottom:958.619617px;}
.y72{bottom:968.159613px;}
.yd3{bottom:969.599612px;}
.y9b{bottom:971.759611px;}
.y52{bottom:972.119611px;}
.yf{bottom:985.799606px;}
.y9a{bottom:992.459603px;}
.y51{bottom:992.819603px;}
.yd2{bottom:1001.099600px;}
.y71{bottom:1004.159598px;}
.ye{bottom:1005.779598px;}
.y99{bottom:1013.159595px;}
.y50{bottom:1013.519595px;}
.yd{bottom:1025.759590px;}
.yd1{bottom:1032.599587px;}
.y98{bottom:1033.859586px;}
.y4f{bottom:1034.219586px;}
.y97{bottom:1054.559578px;}
.y4e{bottom:1054.919578px;}
.y3e{bottom:1060.679576px;}
.yd0{bottom:1064.099574px;}
.y4d{bottom:1075.619570px;}
.y3d{bottom:1082.639567px;}
.ycf{bottom:1095.599562px;}
.y4c{bottom:1096.319561px;}
.y3c{bottom:1122.599551px;}
.yce{bottom:1127.099549px;}
.y4b{bottom:1137.899545px;}
.y3f{bottom:1140.780600px;}
.y3b{bottom:1144.559542px;}
.y4{bottom:1158.599537px;}
.y7{bottom:1182.719527px;}
.y3{bottom:1189.019524px;}
.y2{bottom:1206.299517px;}
.y1{bottom:1223.579511px;}
.h16{height:0.720000px;}
.h17{height:2.165624px;}
.h10{height:5.220000px;}
.h3{height:5.940000px;}
.hd{height:14.580000px;}
.h6{height:18.180000px;}
.h15{height:22.860000px;}
.he{height:32.976549px;}
.h5{height:34.625377px;}
.hf{height:35.120025px;}
.hc{height:35.991197px;}
.hb{height:36.624009px;}
.h4{height:36.914048px;}
.h9{height:38.759750px;}
.ha{height:39.313461px;}
.h19{height:39.830258px;}
.h8{height:40.851546px;}
.h1{height:41.522679px;}
.h2{height:42.894123px;}
.h7{height:44.936701px;}
.h1a{height:48.796855px;}
.h18{height:49.148418px;}
.h1b{height:49.992168px;}
.h12{height:50.027324px;}
.h14{height:51.974979px;}
.h11{height:52.417948px;}
.h13{height:54.140603px;}
.h0{height:1263.000000px;}
.w12{width:0.360000px;}
.w4{width:2.880000px;}
.w3{width:6.840000px;}
.w6{width:7.020000px;}
.w2{width:8.820000px;}
.w8{width:9.540000px;}
.wb{width:46.440000px;}
.w7{width:47.880000px;}
.wc{width:54.720000px;}
.w11{width:60.120000px;}
.w9{width:61.020000px;}
.w10{width:64.800000px;}
.we{width:69.840000px;}
.wa{width:72.540000px;}
.wd{width:76.320000px;}
.wf{width:81.540000px;}
.w5{width:86.580000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x1e{left:-4.680256px;}
.x0{left:0.000000px;}
.x3{left:79.199968px;}
.x4{left:104.399958px;}
.x10{left:106.019958px;}
.x1{left:107.999957px;}
.xe{left:112.139955px;}
.x32{left:116.460000px;}
.xb{left:123.299951px;}
.x24{left:124.919950px;}
.xc{left:125.999950px;}
.x12{left:127.079949px;}
.xd{left:131.939997px;}
.x22{left:134.999946px;}
.x8{left:141.472593px;}
.x23{left:161.999935px;}
.x11{left:166.859933px;}
.xf{left:168.839932px;}
.x25{left:172.800000px;}
.x2e{left:194.760000px;}
.x2f{left:205.560000px;}
.x1b{left:223.552411px;}
.x9{left:224.639910px;}
.xa{left:227.879909px;}
.x13{left:252.719909px;}
.x14{left:253.799898px;}
.x19{left:275.759890px;}
.x15{left:276.839889px;}
.x26{left:283.319887px;}
.x16{left:295.378888px;}
.x1f{left:298.620000px;}
.x21{left:301.859879px;}
.x27{left:344.340000px;}
.x1a{left:365.579870px;}
.x5{left:369.719852px;}
.x1c{left:376.379849px;}
.x20{left:385.199846px;}
.x28{left:515.159794px;}
.x17{left:552.059779px;}
.x18{left:555.119778px;}
.x2c{left:569.880000px;}
.x31{left:575.280000px;}
.x30{left:579.960000px;}
.x29{left:587.700000px;}
.x2d{left:591.480000px;}
.x1d{left:645.300000px;}
.x2{left:657.179737px;}
.x2a{left:682.019727px;}
.x2b{left:727.560000px;}
.x7{left:784.979686px;}
.x6{left:803.520000px;}
@media print{
.v2{vertical-align:-31.359987pt;}
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.009446pt;}
.ls15{letter-spacing:0.018878pt;}
.lsb{letter-spacing:0.078718pt;}
.ls11{letter-spacing:0.182917pt;}
.lsd{letter-spacing:0.649661pt;}
.ls12{letter-spacing:0.649882pt;}
.ls1{letter-spacing:0.802789pt;}
.lse{letter-spacing:3.212932pt;}
.ls7{letter-spacing:5.291110pt;}
.ls8{letter-spacing:11.054581pt;}
.ls10{letter-spacing:17.299431pt;}
.lsf{letter-spacing:19.223345pt;}
.ls5{letter-spacing:20.020457pt;}
.ls14{letter-spacing:30.205055pt;}
.ls6{letter-spacing:44.355115pt;}
.ls3{letter-spacing:53.928675pt;}
.ls4{letter-spacing:53.955358pt;}
.lsc{letter-spacing:108.362623pt;}
.lsa{letter-spacing:133.337013pt;}
.ls2{letter-spacing:162.181766pt;}
.ls0{letter-spacing:1450.011979pt;}
.ws9{word-spacing:-31.871987pt;}
.ws2{word-spacing:-28.799988pt;}
.ws8{word-spacing:-16.895993pt;}
.ws7{word-spacing:-16.078712pt;}
.wsa{word-spacing:-16.018872pt;}
.ws6{word-spacing:-15.999994pt;}
.ws1{word-spacing:-13.343995pt;}
.ws3{word-spacing:-13.279995pt;}
.ws0{word-spacing:-12.005115pt;}
.ws4{word-spacing:-11.920635pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-4.526376pt;}
._1{margin-left:-2.918046pt;}
._3{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._a{width:1.803374pt;}
._b{width:2.809308pt;}
._15{width:3.737816pt;}
._7{width:4.662710pt;}
._6{width:5.991493pt;}
._11{width:7.596952pt;}
._e{width:8.744523pt;}
._17{width:10.424685pt;}
._10{width:11.466241pt;}
._1b{width:12.694134pt;}
._19{width:14.219937pt;}
._14{width:15.193768pt;}
._12{width:16.347642pt;}
._13{width:17.257916pt;}
._5{width:18.164582pt;}
._d{width:19.183173pt;}
._4{width:20.227586pt;}
._f{width:21.120773pt;}
._9{width:22.083070pt;}
._8{width:23.337691pt;}
._1f{width:28.085661pt;}
._1c{width:29.677943pt;}
._20{width:30.589900pt;}
._1a{width:32.233043pt;}
._22{width:34.073487pt;}
._23{width:35.218448pt;}
._21{width:37.346577pt;}
._c{width:44.476859pt;}
._1e{width:47.347149pt;}
._1d{width:48.724499pt;}
._18{width:74.518243pt;}
._16{width:75.473202pt;}
.fs5{font-size:2.559999pt;}
.fs2{font-size:42.879983pt;}
.fs1{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs4{font-size:61.439975pt;}
.fs3{font-size:63.999974pt;}
.y6{bottom:-7.359992pt;}
.y4a{bottom:-5.600610pt;}
.y8d{bottom:-0.000667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y42{bottom:2.879356pt;}
.y40{bottom:3.519060pt;}
.yb{bottom:3.520033pt;}
.y75{bottom:3.839149pt;}
.y7a{bottom:3.839190pt;}
.y7e{bottom:3.839220pt;}
.y82{bottom:3.839250pt;}
.y86{bottom:3.839281pt;}
.y89{bottom:3.839311pt;}
.yc{bottom:29.546922pt;}
.ya{bottom:46.186880pt;}
.y8{bottom:49.706913pt;}
.y9{bottom:50.666913pt;}
.y96{bottom:112.906622pt;}
.yb8{bottom:124.906617pt;}
.y95{bottom:131.306614pt;}
.y3a{bottom:138.826611pt;}
.y70{bottom:144.426609pt;}
.y94{bottom:149.706607pt;}
.yb7{bottom:162.026602pt;}
.y39{bottom:165.066601pt;}
.y93{bottom:168.106599pt;}
.y6f{bottom:181.386594pt;}
.y92{bottom:186.506592pt;}
.ycd{bottom:196.106588pt;}
.y49{bottom:196.587200pt;}
.yb6{bottom:198.986587pt;}
.y6e{bottom:199.786587pt;}
.y48{bottom:203.306585pt;}
.y91{bottom:204.906585pt;}
.yb5{bottom:217.386580pt;}
.y47{bottom:218.666579pt;}
.ycc{bottom:224.106577pt;}
.yb4{bottom:235.786572pt;}
.y46{bottom:236.906572pt;}
.y1e{bottom:240.266571pt;}
.y90{bottom:242.026570pt;}
.y45{bottom:252.106566pt;}
.yb3{bottom:254.186565pt;}
.y6d{bottom:255.306565pt;}
.ye6{bottom:258.506563pt;}
.y44{bottom:264.426561pt;}
.yb2{bottom:272.586558pt;}
.y6c{bottom:273.706557pt;}
.y41{bottom:274.507200pt;}
.y43{bottom:277.386556pt;}
.y8f{bottom:278.986555pt;}
.ycb{bottom:280.106555pt;}
.y6b{bottom:292.106550pt;}
.y8e{bottom:297.866548pt;}
.ye5{bottom:303.466545pt;}
.yca{bottom:308.106543pt;}
.yb1{bottom:309.706543pt;}
.y38{bottom:319.146539pt;}
.y6a{bottom:329.226535pt;}
.y37{bottom:334.506533pt;}
.y8c{bottom:334.507200pt;}
.yc9{bottom:336.106532pt;}
.y8b{bottom:339.146531pt;}
.yb0{bottom:346.826528pt;}
.y69{bottom:347.626528pt;}
.ye4{bottom:350.346527pt;}
.y1d{bottom:351.466526pt;}
.y36{bottom:357.706524pt;}
.y8a{bottom:364.106521pt;}
.yaf{bottom:365.226521pt;}
.y68{bottom:366.026520pt;}
.y35{bottom:373.066517pt;}
.yae{bottom:383.626513pt;}
.y67{bottom:384.426513pt;}
.y88{bottom:385.867200pt;}
.y34{bottom:388.426511pt;}
.yc8{bottom:392.106510pt;}
.yad{bottom:402.026506pt;}
.y66{bottom:402.826506pt;}
.y33{bottom:403.786505pt;}
.ye3{bottom:413.866501pt;}
.y87{bottom:414.666501pt;}
.yc7{bottom:420.106499pt;}
.yac{bottom:420.426498pt;}
.y32{bottom:427.146496pt;}
.yab{bottom:438.826491pt;}
.y65{bottom:439.786491pt;}
.ye2{bottom:441.866490pt;}
.y31{bottom:442.346490pt;}
.yc6{bottom:448.106487pt;}
.y30{bottom:457.706484pt;}
.y64{bottom:458.186483pt;}
.y1c{bottom:458.826483pt;}
.y85{bottom:461.547200pt;}
.ye1{bottom:469.866479pt;}
.y2f{bottom:473.066477pt;}
.yaa{bottom:475.786476pt;}
.yc5{bottom:476.106476pt;}
.y63{bottom:476.586476pt;}
.y2e{bottom:488.426471pt;}
.y84{bottom:490.346471pt;}
.y62{bottom:494.986469pt;}
.ye0{bottom:497.866468pt;}
.y2d{bottom:503.786465pt;}
.yc4{bottom:504.106465pt;}
.ya9{bottom:512.906462pt;}
.y61{bottom:513.386461pt;}
.y83{bottom:515.466460pt;}
.y1b{bottom:524.426457pt;}
.ydf{bottom:525.866456pt;}
.y2c{bottom:527.146456pt;}
.ya8{bottom:531.306454pt;}
.y60{bottom:531.786454pt;}
.yc3{bottom:532.106454pt;}
.y81{bottom:537.227200pt;}
.y1a{bottom:540.746450pt;}
.y2b{bottom:542.346450pt;}
.ya7{bottom:549.706447pt;}
.yde{bottom:553.866445pt;}
.y19{bottom:557.066444pt;}
.y2a{bottom:557.706444pt;}
.yc2{bottom:560.106443pt;}
.y80{bottom:566.026440pt;}
.y5f{bottom:568.906439pt;}
.y18{bottom:572.426438pt;}
.y29{bottom:573.066437pt;}
.ydd{bottom:581.866434pt;}
.ya6{bottom:586.666432pt;}
.y5e{bottom:587.306432pt;}
.yc1{bottom:588.106431pt;}
.y28{bottom:588.426431pt;}
.y7f{bottom:591.146430pt;}
.ydc{bottom:609.866423pt;}
.y27{bottom:611.786422pt;}
.y7d{bottom:612.907200pt;}
.yc0{bottom:616.106420pt;}
.ya5{bottom:623.786417pt;}
.y5d{bottom:624.266417pt;}
.y26{bottom:627.146416pt;}
.y17{bottom:636.906412pt;}
.ydb{bottom:637.866412pt;}
.y7c{bottom:641.706410pt;}
.ya4{bottom:642.186410pt;}
.y25{bottom:642.346410pt;}
.ybf{bottom:644.106409pt;}
.ya3{bottom:660.586402pt;}
.y5c{bottom:661.386402pt;}
.y24{bottom:665.706400pt;}
.yda{bottom:665.866400pt;}
.y7b{bottom:666.666400pt;}
.ya2{bottom:678.986395pt;}
.y5b{bottom:679.786395pt;}
.y23{bottom:681.066394pt;}
.ybe{bottom:688.106391pt;}
.y79{bottom:688.587200pt;}
.yd9{bottom:693.866389pt;}
.y22{bottom:696.426388pt;}
.ya1{bottom:697.386388pt;}
.y5a{bottom:698.186387pt;}
.y16{bottom:701.546386pt;}
.y21{bottom:711.786382pt;}
.ya0{bottom:715.786380pt;}
.y59{bottom:716.586380pt;}
.y78{bottom:717.386380pt;}
.y15{bottom:718.026379pt;}
.yd8{bottom:721.866378pt;}
.y20{bottom:726.986376pt;}
.y9f{bottom:734.186373pt;}
.ybd{bottom:734.666373pt;}
.y58{bottom:734.986373pt;}
.y77{bottom:742.346370pt;}
.yd7{bottom:749.866367pt;}
.y1f{bottom:750.186367pt;}
.y14{bottom:751.306366pt;}
.ybc{bottom:753.066365pt;}
.y57{bottom:753.386365pt;}
.y76{bottom:767.466360pt;}
.y9e{bottom:771.306358pt;}
.ybb{bottom:771.466358pt;}
.y56{bottom:771.786358pt;}
.yd6{bottom:777.866356pt;}
.y13{bottom:783.146353pt;}
.y74{bottom:789.227200pt;}
.yba{bottom:789.866351pt;}
.y55{bottom:790.186351pt;}
.y12{bottom:804.426345pt;}
.yd5{bottom:805.866344pt;}
.y9d{bottom:808.266343pt;}
.y54{bottom:808.586343pt;}
.y73{bottom:818.026339pt;}
.yb9{bottom:826.666336pt;}
.y53{bottom:826.986336pt;}
.yd4{bottom:833.866333pt;}
.y11{bottom:835.946332pt;}
.y9c{bottom:845.386329pt;}
.y10{bottom:852.106326pt;}
.y72{bottom:860.586322pt;}
.yd3{bottom:861.866322pt;}
.y9b{bottom:863.786321pt;}
.y52{bottom:864.106321pt;}
.yf{bottom:876.266316pt;}
.y9a{bottom:882.186314pt;}
.y51{bottom:882.506314pt;}
.yd2{bottom:889.866311pt;}
.y71{bottom:892.586310pt;}
.ye{bottom:894.026309pt;}
.y99{bottom:900.586306pt;}
.y50{bottom:900.906306pt;}
.yd{bottom:911.786302pt;}
.yd1{bottom:917.866300pt;}
.y98{bottom:918.986299pt;}
.y4f{bottom:919.306299pt;}
.y97{bottom:937.386292pt;}
.y4e{bottom:937.706292pt;}
.y3e{bottom:942.826290pt;}
.yd0{bottom:945.866288pt;}
.y4d{bottom:956.106284pt;}
.y3d{bottom:962.346282pt;}
.ycf{bottom:973.866277pt;}
.y4c{bottom:974.506277pt;}
.y3c{bottom:997.866268pt;}
.yce{bottom:1001.866266pt;}
.y4b{bottom:1011.466262pt;}
.y3f{bottom:1014.027200pt;}
.y3b{bottom:1017.386260pt;}
.y4{bottom:1029.866255pt;}
.y7{bottom:1051.306246pt;}
.y3{bottom:1056.906244pt;}
.y2{bottom:1072.266238pt;}
.y1{bottom:1087.626232pt;}
.h16{height:0.640000pt;}
.h17{height:1.924999pt;}
.h10{height:4.640000pt;}
.h3{height:5.280000pt;}
.hd{height:12.960000pt;}
.h6{height:16.160000pt;}
.h15{height:20.320000pt;}
.he{height:29.312488pt;}
.h5{height:30.778113pt;}
.hf{height:31.217800pt;}
.hc{height:31.992175pt;}
.hb{height:32.554674pt;}
.h4{height:32.812487pt;}
.h9{height:34.453111pt;}
.ha{height:34.945299pt;}
.h19{height:35.404673pt;}
.h8{height:36.312485pt;}
.h1{height:36.909048pt;}
.h2{height:38.128110pt;}
.h7{height:39.943734pt;}
.h1a{height:43.374983pt;}
.h18{height:43.687483pt;}
.h1b{height:44.437482pt;}
.h12{height:44.468732pt;}
.h14{height:46.199982pt;}
.h11{height:46.593731pt;}
.h13{height:48.124981pt;}
.h0{height:1122.666667pt;}
.w12{width:0.320000pt;}
.w4{width:2.560000pt;}
.w3{width:6.080000pt;}
.w6{width:6.240000pt;}
.w2{width:7.840000pt;}
.w8{width:8.480000pt;}
.wb{width:41.280000pt;}
.w7{width:42.560000pt;}
.wc{width:48.640000pt;}
.w11{width:53.440000pt;}
.w9{width:54.240000pt;}
.w10{width:57.600000pt;}
.we{width:62.080000pt;}
.wa{width:64.480000pt;}
.wd{width:67.840000pt;}
.wf{width:72.480000pt;}
.w5{width:76.960000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x1e{left:-4.160228pt;}
.x0{left:0.000000pt;}
.x3{left:70.399972pt;}
.x4{left:92.799963pt;}
.x10{left:94.239962pt;}
.x1{left:95.999962pt;}
.xe{left:99.679960pt;}
.x32{left:103.520000pt;}
.xb{left:109.599956pt;}
.x24{left:111.039956pt;}
.xc{left:111.999955pt;}
.x12{left:112.959955pt;}
.xd{left:117.279998pt;}
.x22{left:119.999952pt;}
.x8{left:125.753416pt;}
.x23{left:143.999942pt;}
.x11{left:148.319941pt;}
.xf{left:150.079940pt;}
.x25{left:153.600000pt;}
.x2e{left:173.120000pt;}
.x2f{left:182.720000pt;}
.x1b{left:198.713254pt;}
.x9{left:199.679920pt;}
.xa{left:202.559919pt;}
.x13{left:224.639919pt;}
.x14{left:225.599910pt;}
.x19{left:245.119902pt;}
.x15{left:246.079902pt;}
.x26{left:251.839899pt;}
.x16{left:262.559012pt;}
.x1f{left:265.440000pt;}
.x21{left:268.319893pt;}
.x27{left:306.080000pt;}
.x1a{left:324.959885pt;}
.x5{left:328.639869pt;}
.x1c{left:334.559866pt;}
.x20{left:342.399863pt;}
.x28{left:457.919817pt;}
.x17{left:490.719804pt;}
.x18{left:493.439803pt;}
.x2c{left:506.560000pt;}
.x31{left:511.360000pt;}
.x30{left:515.520000pt;}
.x29{left:522.400000pt;}
.x2d{left:525.760000pt;}
.x1d{left:573.600000pt;}
.x2{left:584.159766pt;}
.x2a{left:606.239758pt;}
.x2b{left:646.720000pt;}
.x7{left:697.759721pt;}
.x6{left:714.240000pt;}
}




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