
    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_403a855ad769b4ffb088e3f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090820;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_8e44d9b3c92509ce2d7dc9c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_3cc660386032c34b1d1ff3e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.692871;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_3cc660386032c34b1d1ff3e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.692871;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_a7b55ff894662daa26e0fb39.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_b442a85c6fc48837df487ac3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_1b59c0b7088e6aed63469801.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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_a4dbdda6e9340727ca0f0480.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.281250;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_abd1ab398b68312295c88ca8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_a9f171792313f2bb858cd8b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.746094;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_3809fab7ffd60b889c690671.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.818359;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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_13d355f5e44c6b6500c0d5b3.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;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_098eb6222ed173007f670824.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;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.153262,-0.197512,0.197512,0.153262,0,0);-ms-transform:matrix(0.153262,-0.197512,0.197512,0.153262,0,0);-webkit-transform:matrix(0.153262,-0.197512,0.197512,0.153262,0,0);}
.m3{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.960000px;}
.v3{vertical-align:-25.200000px;}
.v4{vertical-align:-9.358800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.360000px;}
.v1{vertical-align:30.960000px;}
.v6{vertical-align:38.880000px;}
.v7{vertical-align:77.760000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.067680px;}
.lsd{letter-spacing:0.306325px;}
.ls8{letter-spacing:0.355680px;}
.ls2{letter-spacing:0.406080px;}
.ls1{letter-spacing:0.412859px;}
.ls3{letter-spacing:0.614316px;}
.lsa{letter-spacing:0.644385px;}
.ls9{letter-spacing:0.844449px;}
.ls4{letter-spacing:0.922800px;}
.lsb{letter-spacing:1.027696px;}
.ls7{letter-spacing:8.328000px;}
.lsc{letter-spacing:14.100000px;}
.ls6{letter-spacing:22.032000px;}
.lse{letter-spacing:80.466000px;}
.lsf{letter-spacing:190.836000px;}
.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:-40.033728px;}
.ws3{word-spacing:-40.030160px;}
.ws9{word-spacing:-24.027000px;}
.ws8{word-spacing:-16.987680px;}
.ws6{word-spacing:-16.920000px;}
.ws7{word-spacing:-14.043000px;}
.ws5{word-spacing:-11.335500px;}
.ws2{word-spacing:0.000000px;}
.ws1{word-spacing:302.400000px;}
.ws0{word-spacing:335.760000px;}
._26{margin-left:-36.665202px;}
._c{margin-left:-32.691582px;}
._27{margin-left:-26.766078px;}
._28{margin-left:-24.940026px;}
._4{margin-left:-16.133132px;}
._8{margin-left:-1.187730px;}
._7{width:1.029366px;}
._17{width:2.083914px;}
._1d{width:3.192102px;}
._a{width:4.196160px;}
._b{width:5.434225px;}
._9{width:6.889194px;}
._1c{width:8.189280px;}
._f{width:10.113984px;}
._e{width:11.423754px;}
._11{width:12.994560px;}
._10{width:14.604714px;}
._5{width:16.137019px;}
._1f{width:17.921034px;}
._16{width:19.288800px;}
._1e{width:20.478708px;}
._13{width:21.533508px;}
._14{width:22.787562px;}
._20{width:24.014892px;}
._19{width:25.853760px;}
._18{width:26.868960px;}
._22{width:28.041642px;}
._6{width:29.059794px;}
._21{width:30.726720px;}
._2{width:32.220000px;}
._d{width:34.516800px;}
._15{width:35.891172px;}
._25{width:36.965250px;}
._23{width:51.978240px;}
._24{width:53.197674px;}
._1a{width:58.935114px;}
._1b{width:60.438240px;}
._3{width:65.580000px;}
._1{width:88.920000px;}
._34{width:94.413600px;}
._2f{width:100.234080px;}
._2e{width:101.593920px;}
._33{width:107.881920px;}
._30{width:110.724480px;}
._32{width:121.485600px;}
._60{width:122.669520px;}
._3e{width:127.378080px;}
._40{width:132.314400px;}
._41{width:136.160640px;}
._56{width:138.676320px;}
._53{width:139.819680px;}
._2d{width:140.905440px;}
._35{width:142.534080px;}
._31{width:145.117440px;}
._43{width:146.833920px;}
._0{width:148.860000px;}
._46{width:154.919520px;}
._5b{width:156.150240px;}
._12{width:157.618632px;}
._67{width:161.200092px;}
._48{width:163.055286px;}
._36{width:166.749354px;}
._68{width:168.712074px;}
._38{width:172.787040px;}
._59{width:174.442494px;}
._5d{width:176.019336px;}
._4f{width:179.081280px;}
._4d{width:180.246006px;}
._3a{width:183.615840px;}
._3f{width:184.969440px;}
._6b{width:186.027588px;}
._61{width:190.789920px;}
._3b{width:192.278880px;}
._2b{width:195.069600px;}
._4e{width:203.175360px;}
._4c{width:208.251360px;}
._2a{width:213.924000px;}
._42{width:218.230290px;}
._64{width:221.169354px;}
._63{width:224.595354px;}
._5e{width:225.894480px;}
._52{width:227.269440px;}
._3d{width:232.345440px;}
._47{width:235.988640px;}
._2c{width:240.930234px;}
._37{width:242.023680px;}
._55{width:244.730880px;}
._45{width:249.062400px;}
._50{width:252.350388px;}
._5c{width:258.740640px;}
._58{width:261.312480px;}
._49{width:263.125674px;}
._4b{width:266.388480px;}
._6a{width:275.260560px;}
._62{width:279.634770px;}
._66{width:281.511120px;}
._5f{width:283.552080px;}
._69{width:284.697600px;}
._65{width:286.974000px;}
._54{width:288.925920px;}
._6c{width:290.160480px;}
._39{width:292.580640px;}
._44{width:296.559594px;}
._51{width:298.130400px;}
._4a{width:300.702240px;}
._3c{width:302.055840px;}
._57{width:303.883200px;}
._5a{width:311.666400px;}
._29{width:362.526000px;}
.fc4{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(229,229,229);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.546000px;}
.fs7{font-size:45.342000px;}
.fsb{font-size:48.054000px;}
.fs9{font-size:56.172000px;}
.fs1{font-size:60.000000px;}
.fsa{font-size:62.262000px;}
.fs5{font-size:67.679990px;}
.fs4{font-size:67.680000px;}
.fsc{font-size:72.000000px;}
.fs6{font-size:79.182000px;}
.fs3{font-size:83.685600px;}
.fs0{font-size:108.000000px;}
.fs2{font-size:287.983385px;}
.y0{bottom:0.000000px;}
.y1e{bottom:4.005073px;}
.y1a{bottom:9.936525px;}
.y3b{bottom:106.380000px;}
.y3a{bottom:123.480000px;}
.y80{bottom:128.519550px;}
.y56{bottom:137.519550px;}
.y71{bottom:137.519700px;}
.y6a{bottom:137.519850px;}
.y39{bottom:145.980000px;}
.y37{bottom:157.679700px;}
.y38{bottom:157.680000px;}
.y7f{bottom:167.399550px;}
.y53{bottom:176.399550px;}
.y65{bottom:176.399700px;}
.y69{bottom:176.399850px;}
.ybc{bottom:179.820000px;}
.ybb{bottom:205.559850px;}
.y7e{bottom:206.279550px;}
.y81{bottom:214.739550px;}
.y52{bottom:215.279550px;}
.y64{bottom:215.279700px;}
.y68{bottom:215.279850px;}
.y17{bottom:235.605465px;}
.yba{bottom:236.159850px;}
.y36{bottom:238.319700px;}
.y7d{bottom:245.159550px;}
.y51{bottom:254.159550px;}
.y63{bottom:254.159700px;}
.y67{bottom:254.159850px;}
.yb9{bottom:266.579850px;}
.y35{bottom:277.199700px;}
.y16{bottom:279.699006px;}
.y7c{bottom:284.039550px;}
.y74{bottom:292.499550px;}
.y50{bottom:293.039550px;}
.y62{bottom:293.039700px;}
.y66{bottom:293.039850px;}
.yb8{bottom:296.999850px;}
.y15{bottom:297.699006px;}
.y14{bottom:315.699006px;}
.y34{bottom:316.079700px;}
.y19{bottom:319.649835px;}
.y7b{bottom:323.099550px;}
.yb7{bottom:327.419850px;}
.y9a{bottom:331.559550px;}
.y4f{bottom:332.099550px;}
.y61{bottom:332.099700px;}
.y13{bottom:333.699006px;}
.y18{bottom:333.870930px;}
.y12{bottom:351.699006px;}
.y33{bottom:354.959700px;}
.yb6{bottom:357.839850px;}
.y7a{bottom:370.439550px;}
.y4e{bottom:370.979550px;}
.y60{bottom:370.979700px;}
.yb5{bottom:388.439850px;}
.y32{bottom:394.019700px;}
.y11{bottom:407.199006px;}
.y55{bottom:409.319550px;}
.y4d{bottom:409.859550px;}
.y5f{bottom:409.859700px;}
.yb4{bottom:418.859850px;}
.y10{bottom:425.199006px;}
.y31{bottom:432.899700px;}
.yf{bottom:443.199006px;}
.y79{bottom:448.199550px;}
.y4c{bottom:448.739550px;}
.y5e{bottom:448.739700px;}
.yb3{bottom:449.279850px;}
.ye{bottom:461.199006px;}
.y30{bottom:471.779700px;}
.yb2{bottom:479.699850px;}
.y73{bottom:487.079550px;}
.y4b{bottom:487.619550px;}
.y5d{bottom:487.619700px;}
.yb1{bottom:510.119850px;}
.y2f{bottom:510.659700px;}
.y78{bottom:526.139550px;}
.y4a{bottom:526.679550px;}
.y5c{bottom:526.679700px;}
.yd{bottom:527.199016px;}
.yb0{bottom:540.719850px;}
.y94{bottom:545.939700px;}
.y2e{bottom:549.539700px;}
.yc{bottom:555.699016px;}
.y77{bottom:565.019550px;}
.y49{bottom:565.559550px;}
.y5b{bottom:565.559700px;}
.yaf{bottom:576.179700px;}
.y9b{bottom:577.079700px;}
.yb{bottom:584.199016px;}
.y93{bottom:584.819700px;}
.yae{bottom:585.899700px;}
.y2d{bottom:588.599700px;}
.y76{bottom:603.899550px;}
.y48{bottom:604.439550px;}
.y5a{bottom:604.439700px;}
.y9c{bottom:609.479700px;}
.y9d{bottom:610.739700px;}
.y92{bottom:623.699700px;}
.y2c{bottom:627.479700px;}
.yad{bottom:631.799700px;}
.ya{bottom:632.199016px;}
.y99{bottom:642.779550px;}
.y47{bottom:643.319550px;}
.y59{bottom:643.319700px;}
.y75{bottom:662.039550px;}
.yac{bottom:662.219700px;}
.y91{bottom:662.579700px;}
.y2b{bottom:666.719700px;}
.y9{bottom:680.199016px;}
.y98{bottom:681.659550px;}
.y46{bottom:682.199550px;}
.y58{bottom:682.199700px;}
.yab{bottom:692.819700px;}
.y8e{bottom:703.979700px;}
.y8{bottom:708.699016px;}
.y8f{bottom:711.359700px;}
.y90{bottom:711.719700px;}
.y2a{bottom:713.339700px;}
.y45{bottom:721.259550px;}
.y57{bottom:721.259700px;}
.yaa{bottom:723.239700px;}
.y7{bottom:737.199016px;}
.y29{bottom:744.479700px;}
.y8b{bottom:747.719700px;}
.ya9{bottom:753.659700px;}
.y8c{bottom:755.099700px;}
.y8d{bottom:755.459700px;}
.y44{bottom:760.139550px;}
.y70{bottom:760.139700px;}
.y6{bottom:764.199016px;}
.y5{bottom:782.199016px;}
.ya8{bottom:784.079700px;}
.y8a{bottom:789.119550px;}
.y28{bottom:791.279700px;}
.y97{bottom:798.479550px;}
.y43{bottom:799.019550px;}
.y6f{bottom:799.019700px;}
.y4{bottom:800.199016px;}
.ya7{bottom:814.499700px;}
.y27{bottom:822.419700px;}
.y89{bottom:828.179550px;}
.y6b{bottom:837.359550px;}
.y42{bottom:837.899550px;}
.y6e{bottom:837.899700px;}
.y3{bottom:840.699016px;}
.ya6{bottom:845.099700px;}
.y2{bottom:858.699016px;}
.y88{bottom:867.059550px;}
.y26{bottom:869.039700px;}
.ya5{bottom:875.519700px;}
.y41{bottom:876.779550px;}
.y6d{bottom:876.779700px;}
.y23{bottom:901.439550px;}
.y87{bottom:905.939550px;}
.ya4{bottom:905.939700px;}
.y24{bottom:908.819700px;}
.y25{bottom:909.179700px;}
.y6c{bottom:915.299550px;}
.y40{bottom:915.839550px;}
.y1{bottom:931.785016px;}
.ya3{bottom:936.359700px;}
.y22{bottom:941.579550px;}
.y85{bottom:947.159550px;}
.y96{bottom:954.179550px;}
.y3f{bottom:954.719550px;}
.y86{bottom:955.079550px;}
.ya2{bottom:966.599550px;}
.y21{bottom:980.639550px;}
.y82{bottom:991.079550px;}
.y95{bottom:993.059550px;}
.y3e{bottom:993.599550px;}
.ya1{bottom:997.199550px;}
.y83{bottom:998.459550px;}
.y84{bottom:998.819550px;}
.ya0{bottom:1006.739550px;}
.y20{bottom:1022.939550px;}
.y72{bottom:1031.939550px;}
.y3d{bottom:1032.479550px;}
.y9f{bottom:1047.059550px;}
.y9e{bottom:1056.779550px;}
.y1f{bottom:1068.119550px;}
.y3c{bottom:1070.819550px;}
.y54{bottom:1071.359550px;}
.y1d{bottom:1118.834312px;}
.y1c{bottom:1123.019550px;}
.y1b{bottom:1151.014650px;}
.ha{height:19.079221px;}
.h13{height:33.851446px;}
.h1a{height:37.636043px;}
.h10{height:41.998913px;}
.h11{height:44.500693px;}
.h2{height:52.851562px;}
.h15{height:55.129746px;}
.h14{height:56.610844px;}
.h8{height:56.675746px;}
.h4{height:62.578125px;}
.h3{height:62.818125px;}
.h16{height:66.391172px;}
.hb{height:66.424209px;}
.h9{height:66.424219px;}
.h18{height:66.424819px;}
.h17{height:66.425419px;}
.h12{height:68.208750px;}
.h19{height:68.596043px;}
.h1b{height:69.316043px;}
.h1d{height:70.664062px;}
.hd{height:75.460693px;}
.hf{height:75.461293px;}
.he{height:76.180693px;}
.h1c{height:76.181293px;}
.hc{height:79.800609px;}
.h1{height:95.132812px;}
.h21{height:104.584219px;}
.h1e{height:105.304219px;}
.h20{height:106.024219px;}
.h1f{height:144.184219px;}
.h7{height:195.035622px;}
.h6{height:733.576170px;}
.h0{height:1063.500000px;}
.h5{height:1188.000000px;}
.w3{width:7.739684px;}
.w2{width:8.459655px;}
.w1{width:591.227055px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:48.953145px;}
.x1{left:105.000000px;}
.xc{left:138.780084px;}
.x7{left:140.400000px;}
.x18{left:158.758177px;}
.x1c{left:165.960167px;}
.x1b{left:167.039613px;}
.x1a{left:169.200000px;}
.x1d{left:171.540045px;}
.x2{left:179.052240px;}
.x14{left:181.440000px;}
.xe{left:204.840534px;}
.x19{left:250.199608px;}
.x12{left:264.780534px;}
.x1e{left:268.561354px;}
.x4{left:289.277790px;}
.x3{left:300.312540px;}
.x6{left:335.834850px;}
.xb{left:343.439850px;}
.x15{left:366.662907px;}
.x10{left:394.380534px;}
.xa{left:486.180245px;}
.xf{left:500.580534px;}
.x16{left:529.564804px;}
.x11{left:595.080384px;}
.xd{left:659.520384px;}
.x17{left:691.926230px;}
.x8{left:759.568983px;}
.x9{left:768.028638px;}
.x13{left:782.459700px;}
@media print{
.v2{vertical-align:-27.520000pt;}
.v3{vertical-align:-22.400000pt;}
.v4{vertical-align:-8.318933pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.320000pt;}
.v1{vertical-align:27.520000pt;}
.v6{vertical-align:34.560000pt;}
.v7{vertical-align:69.120000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.060160pt;}
.lsd{letter-spacing:0.272289pt;}
.ls8{letter-spacing:0.316160pt;}
.ls2{letter-spacing:0.360960pt;}
.ls1{letter-spacing:0.366986pt;}
.ls3{letter-spacing:0.546058pt;}
.lsa{letter-spacing:0.572787pt;}
.ls9{letter-spacing:0.750622pt;}
.ls4{letter-spacing:0.820267pt;}
.lsb{letter-spacing:0.913507pt;}
.ls7{letter-spacing:7.402667pt;}
.lsc{letter-spacing:12.533333pt;}
.ls6{letter-spacing:19.584000pt;}
.lse{letter-spacing:71.525333pt;}
.lsf{letter-spacing:169.632000pt;}
.ws4{word-spacing:-35.585536pt;}
.ws3{word-spacing:-35.582364pt;}
.ws9{word-spacing:-21.357333pt;}
.ws8{word-spacing:-15.100160pt;}
.ws6{word-spacing:-15.040000pt;}
.ws7{word-spacing:-12.482667pt;}
.ws5{word-spacing:-10.076000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1{word-spacing:268.800000pt;}
.ws0{word-spacing:298.453333pt;}
._26{margin-left:-32.591291pt;}
._c{margin-left:-29.059184pt;}
._27{margin-left:-23.792069pt;}
._28{margin-left:-22.168912pt;}
._4{margin-left:-14.340561pt;}
._8{margin-left:-1.055760pt;}
._7{width:0.914992pt;}
._17{width:1.852368pt;}
._1d{width:2.837424pt;}
._a{width:3.729920pt;}
._b{width:4.830422pt;}
._9{width:6.123728pt;}
._1c{width:7.279360pt;}
._f{width:8.990208pt;}
._e{width:10.154448pt;}
._11{width:11.550720pt;}
._10{width:12.981968pt;}
._5{width:14.344017pt;}
._1f{width:15.929808pt;}
._16{width:17.145600pt;}
._1e{width:18.203296pt;}
._13{width:19.140896pt;}
._14{width:20.255611pt;}
._20{width:21.346571pt;}
._19{width:22.981120pt;}
._18{width:23.883520pt;}
._22{width:24.925904pt;}
._6{width:25.830928pt;}
._21{width:27.312640pt;}
._2{width:28.640000pt;}
._d{width:30.681600pt;}
._15{width:31.903264pt;}
._25{width:32.858000pt;}
._23{width:46.202880pt;}
._24{width:47.286821pt;}
._1a{width:52.386768pt;}
._1b{width:53.722880pt;}
._3{width:58.293333pt;}
._1{width:79.040000pt;}
._34{width:83.923200pt;}
._2f{width:89.096960pt;}
._2e{width:90.305707pt;}
._33{width:95.895040pt;}
._30{width:98.421760pt;}
._32{width:107.987200pt;}
._60{width:109.039573pt;}
._3e{width:113.224960pt;}
._40{width:117.612800pt;}
._41{width:121.031680pt;}
._56{width:123.267840pt;}
._53{width:124.284160pt;}
._2d{width:125.249280pt;}
._35{width:126.696960pt;}
._31{width:128.993280pt;}
._43{width:130.519040pt;}
._0{width:132.320000pt;}
._46{width:137.706240pt;}
._5b{width:138.800213pt;}
._12{width:140.105451pt;}
._67{width:143.288971pt;}
._48{width:144.938032pt;}
._36{width:148.221648pt;}
._68{width:149.966288pt;}
._38{width:153.588480pt;}
._59{width:155.059995pt;}
._5d{width:156.461632pt;}
._4f{width:159.183360pt;}
._4d{width:160.218672pt;}
._3a{width:163.214080pt;}
._3f{width:164.417280pt;}
._6b{width:165.357856pt;}
._61{width:169.591040pt;}
._3b{width:170.914560pt;}
._2b{width:173.395200pt;}
._4e{width:180.600320pt;}
._4c{width:185.112320pt;}
._2a{width:190.154667pt;}
._42{width:193.982480pt;}
._64{width:196.594981pt;}
._63{width:199.640315pt;}
._5e{width:200.795093pt;}
._52{width:202.017280pt;}
._3d{width:206.529280pt;}
._47{width:209.767680pt;}
._2c{width:214.160208pt;}
._37{width:215.132160pt;}
._55{width:217.538560pt;}
._45{width:221.388800pt;}
._50{width:224.311456pt;}
._5c{width:229.991680pt;}
._58{width:232.277760pt;}
._49{width:233.889488pt;}
._4b{width:236.789760pt;}
._6a{width:244.676053pt;}
._62{width:248.564240pt;}
._66{width:250.232107pt;}
._5f{width:252.046293pt;}
._69{width:253.064533pt;}
._65{width:255.088000pt;}
._54{width:256.823040pt;}
._6c{width:257.920427pt;}
._39{width:260.071680pt;}
._44{width:263.608528pt;}
._51{width:265.004800pt;}
._4a{width:267.290880pt;}
._3c{width:268.494080pt;}
._57{width:270.118400pt;}
._5a{width:277.036800pt;}
._29{width:322.245333pt;}
.fs8{font-size:32.485333pt;}
.fs7{font-size:40.304000pt;}
.fsb{font-size:42.714667pt;}
.fs9{font-size:49.930667pt;}
.fs1{font-size:53.333333pt;}
.fsa{font-size:55.344000pt;}
.fs5{font-size:60.159991pt;}
.fs4{font-size:60.160000pt;}
.fsc{font-size:64.000000pt;}
.fs6{font-size:70.384000pt;}
.fs3{font-size:74.387200pt;}
.fs0{font-size:96.000000pt;}
.fs2{font-size:255.985231pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:3.560064pt;}
.y1a{bottom:8.832467pt;}
.y3b{bottom:94.560000pt;}
.y3a{bottom:109.760000pt;}
.y80{bottom:114.239600pt;}
.y56{bottom:122.239600pt;}
.y71{bottom:122.239733pt;}
.y6a{bottom:122.239867pt;}
.y39{bottom:129.760000pt;}
.y37{bottom:140.159733pt;}
.y38{bottom:140.160000pt;}
.y7f{bottom:148.799600pt;}
.y53{bottom:156.799600pt;}
.y65{bottom:156.799733pt;}
.y69{bottom:156.799867pt;}
.ybc{bottom:159.840000pt;}
.ybb{bottom:182.719867pt;}
.y7e{bottom:183.359600pt;}
.y81{bottom:190.879600pt;}
.y52{bottom:191.359600pt;}
.y64{bottom:191.359733pt;}
.y68{bottom:191.359867pt;}
.y17{bottom:209.427080pt;}
.yba{bottom:209.919867pt;}
.y36{bottom:211.839733pt;}
.y7d{bottom:217.919600pt;}
.y51{bottom:225.919600pt;}
.y63{bottom:225.919733pt;}
.y67{bottom:225.919867pt;}
.yb9{bottom:236.959867pt;}
.y35{bottom:246.399733pt;}
.y16{bottom:248.621338pt;}
.y7c{bottom:252.479600pt;}
.y74{bottom:259.999600pt;}
.y50{bottom:260.479600pt;}
.y62{bottom:260.479733pt;}
.y66{bottom:260.479867pt;}
.yb8{bottom:263.999867pt;}
.y15{bottom:264.621338pt;}
.y14{bottom:280.621338pt;}
.y34{bottom:280.959733pt;}
.y19{bottom:284.133187pt;}
.y7b{bottom:287.199600pt;}
.yb7{bottom:291.039867pt;}
.y9a{bottom:294.719600pt;}
.y4f{bottom:295.199600pt;}
.y61{bottom:295.199733pt;}
.y13{bottom:296.621338pt;}
.y18{bottom:296.774160pt;}
.y12{bottom:312.621338pt;}
.y33{bottom:315.519733pt;}
.yb6{bottom:318.079867pt;}
.y7a{bottom:329.279600pt;}
.y4e{bottom:329.759600pt;}
.y60{bottom:329.759733pt;}
.yb5{bottom:345.279867pt;}
.y32{bottom:350.239733pt;}
.y11{bottom:361.954672pt;}
.y55{bottom:363.839600pt;}
.y4d{bottom:364.319600pt;}
.y5f{bottom:364.319733pt;}
.yb4{bottom:372.319867pt;}
.y10{bottom:377.954672pt;}
.y31{bottom:384.799733pt;}
.yf{bottom:393.954672pt;}
.y79{bottom:398.399600pt;}
.y4c{bottom:398.879600pt;}
.y5e{bottom:398.879733pt;}
.yb3{bottom:399.359867pt;}
.ye{bottom:409.954672pt;}
.y30{bottom:419.359733pt;}
.yb2{bottom:426.399867pt;}
.y73{bottom:432.959600pt;}
.y4b{bottom:433.439600pt;}
.y5d{bottom:433.439733pt;}
.yb1{bottom:453.439867pt;}
.y2f{bottom:453.919733pt;}
.y78{bottom:467.679600pt;}
.y4a{bottom:468.159600pt;}
.y5c{bottom:468.159733pt;}
.yd{bottom:468.621348pt;}
.yb0{bottom:480.639867pt;}
.y94{bottom:485.279733pt;}
.y2e{bottom:488.479733pt;}
.yc{bottom:493.954681pt;}
.y77{bottom:502.239600pt;}
.y49{bottom:502.719600pt;}
.y5b{bottom:502.719733pt;}
.yaf{bottom:512.159733pt;}
.y9b{bottom:512.959733pt;}
.yb{bottom:519.288014pt;}
.y93{bottom:519.839733pt;}
.yae{bottom:520.799733pt;}
.y2d{bottom:523.199733pt;}
.y76{bottom:536.799600pt;}
.y48{bottom:537.279600pt;}
.y5a{bottom:537.279733pt;}
.y9c{bottom:541.759733pt;}
.y9d{bottom:542.879733pt;}
.y92{bottom:554.399733pt;}
.y2c{bottom:557.759733pt;}
.yad{bottom:561.599733pt;}
.ya{bottom:561.954681pt;}
.y99{bottom:571.359600pt;}
.y47{bottom:571.839600pt;}
.y59{bottom:571.839733pt;}
.y75{bottom:588.479600pt;}
.yac{bottom:588.639733pt;}
.y91{bottom:588.959733pt;}
.y2b{bottom:592.639733pt;}
.y9{bottom:604.621348pt;}
.y98{bottom:605.919600pt;}
.y46{bottom:606.399600pt;}
.y58{bottom:606.399733pt;}
.yab{bottom:615.839733pt;}
.y8e{bottom:625.759733pt;}
.y8{bottom:629.954681pt;}
.y8f{bottom:632.319733pt;}
.y90{bottom:632.639733pt;}
.y2a{bottom:634.079733pt;}
.y45{bottom:641.119600pt;}
.y57{bottom:641.119733pt;}
.yaa{bottom:642.879733pt;}
.y7{bottom:655.288014pt;}
.y29{bottom:661.759733pt;}
.y8b{bottom:664.639733pt;}
.ya9{bottom:669.919733pt;}
.y8c{bottom:671.199733pt;}
.y8d{bottom:671.519733pt;}
.y44{bottom:675.679600pt;}
.y70{bottom:675.679733pt;}
.y6{bottom:679.288014pt;}
.y5{bottom:695.288014pt;}
.ya8{bottom:696.959733pt;}
.y8a{bottom:701.439600pt;}
.y28{bottom:703.359733pt;}
.y97{bottom:709.759600pt;}
.y43{bottom:710.239600pt;}
.y6f{bottom:710.239733pt;}
.y4{bottom:711.288014pt;}
.ya7{bottom:723.999733pt;}
.y27{bottom:731.039733pt;}
.y89{bottom:736.159600pt;}
.y6b{bottom:744.319600pt;}
.y42{bottom:744.799600pt;}
.y6e{bottom:744.799733pt;}
.y3{bottom:747.288014pt;}
.ya6{bottom:751.199733pt;}
.y2{bottom:763.288014pt;}
.y88{bottom:770.719600pt;}
.y26{bottom:772.479733pt;}
.ya5{bottom:778.239733pt;}
.y41{bottom:779.359600pt;}
.y6d{bottom:779.359733pt;}
.y23{bottom:801.279600pt;}
.y87{bottom:805.279600pt;}
.ya4{bottom:805.279733pt;}
.y24{bottom:807.839733pt;}
.y25{bottom:808.159733pt;}
.y6c{bottom:813.599600pt;}
.y40{bottom:814.079600pt;}
.y1{bottom:828.253348pt;}
.ya3{bottom:832.319733pt;}
.y22{bottom:836.959600pt;}
.y85{bottom:841.919600pt;}
.y96{bottom:848.159600pt;}
.y3f{bottom:848.639600pt;}
.y86{bottom:848.959600pt;}
.ya2{bottom:859.199600pt;}
.y21{bottom:871.679600pt;}
.y82{bottom:880.959600pt;}
.y95{bottom:882.719600pt;}
.y3e{bottom:883.199600pt;}
.ya1{bottom:886.399600pt;}
.y83{bottom:887.519600pt;}
.y84{bottom:887.839600pt;}
.ya0{bottom:894.879600pt;}
.y20{bottom:909.279600pt;}
.y72{bottom:917.279600pt;}
.y3d{bottom:917.759600pt;}
.y9f{bottom:930.719600pt;}
.y9e{bottom:939.359600pt;}
.y1f{bottom:949.439600pt;}
.y3c{bottom:951.839600pt;}
.y54{bottom:952.319600pt;}
.y1d{bottom:994.519389pt;}
.y1c{bottom:998.239600pt;}
.y1b{bottom:1023.124133pt;}
.ha{height:16.959307pt;}
.h13{height:30.090174pt;}
.h1a{height:33.454260pt;}
.h10{height:37.332367pt;}
.h11{height:39.556172pt;}
.h2{height:46.979167pt;}
.h15{height:49.004219pt;}
.h14{height:50.320750pt;}
.h8{height:50.378441pt;}
.h4{height:55.625000pt;}
.h3{height:55.838333pt;}
.h16{height:59.014375pt;}
.hb{height:59.043741pt;}
.h9{height:59.043750pt;}
.h18{height:59.044283pt;}
.h17{height:59.044817pt;}
.h12{height:60.630000pt;}
.h19{height:60.974260pt;}
.h1b{height:61.614260pt;}
.h1d{height:62.812500pt;}
.hd{height:67.076172pt;}
.hf{height:67.076705pt;}
.he{height:67.716172pt;}
.h1c{height:67.716705pt;}
.hc{height:70.933875pt;}
.h1{height:84.562500pt;}
.h21{height:92.963750pt;}
.h1e{height:93.603750pt;}
.h20{height:94.243750pt;}
.h1f{height:128.163750pt;}
.h7{height:173.364998pt;}
.h6{height:652.067707pt;}
.h0{height:945.333333pt;}
.h5{height:1056.000000pt;}
.w3{width:6.879719pt;}
.w2{width:7.519693pt;}
.w1{width:525.535160pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:43.513907pt;}
.x1{left:93.333333pt;}
.xc{left:123.360074pt;}
.x7{left:124.800000pt;}
.x18{left:141.118380pt;}
.x1c{left:147.520149pt;}
.x1b{left:148.479656pt;}
.x1a{left:150.400000pt;}
.x1d{left:152.480040pt;}
.x2{left:159.157547pt;}
.x14{left:161.280000pt;}
.xe{left:182.080475pt;}
.x19{left:222.399652pt;}
.x12{left:235.360475pt;}
.x1e{left:238.721204pt;}
.x4{left:257.135813pt;}
.x3{left:266.944480pt;}
.x6{left:298.519867pt;}
.xb{left:305.279867pt;}
.x15{left:325.922584pt;}
.x10{left:350.560475pt;}
.xa{left:432.160217pt;}
.xf{left:444.960475pt;}
.x16{left:470.724270pt;}
.x11{left:528.960341pt;}
.xd{left:586.240341pt;}
.x17{left:615.045538pt;}
.x8{left:675.172429pt;}
.x9{left:682.692122pt;}
.x13{left:695.519733pt;}
}




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