
    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_6bf336bdf62e1582de459adf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_e23e5c822e48e8f00fef1062.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e81886ad7f729af1173e3dd4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_7e53f31a2214dcf045bc57de.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_f2ab434d94d91b363f01f7f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_de0cc0d44de14d60f7298d83.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692383;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.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,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);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-39.960000px;}
.v2{vertical-align:-21.978000px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:19.980000px;}
.v8{vertical-align:22.977000px;}
.v1{vertical-align:25.974000px;}
.v5{vertical-align:35.716800px;}
.v6{vertical-align:55.696800px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000300px;}
.ls3{letter-spacing:0.011400px;}
.ls2{letter-spacing:0.012000px;}
.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;}
}
.ws1{word-spacing:-21.000000px;}
.ws3{word-spacing:-17.250000px;}
.ws6{word-spacing:-15.000000px;}
.ws0{word-spacing:-11.368500px;}
.ws5{word-spacing:-10.056750px;}
.ws2{word-spacing:-9.619500px;}
.ws8{word-spacing:-8.745000px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:268.140660px;}
.ws7{word-spacing:825.351600px;}
._11{margin-left:-17.860372px;}
._22{margin-left:-16.781741px;}
._a{margin-left:-14.995800px;}
._2f{margin-left:-11.360700px;}
._3{margin-left:-8.632200px;}
._1e{margin-left:-7.549500px;}
._30{margin-left:-6.313500px;}
._5{margin-left:-5.313000px;}
._4{margin-left:-4.183200px;}
._0{margin-left:-2.501400px;}
._2{margin-left:-1.014000px;}
._1{width:1.663200px;}
._b{width:2.928000px;}
._c{width:4.218000px;}
._6{width:5.646000px;}
._7{width:6.738000px;}
._8{width:8.032200px;}
._9{width:9.245400px;}
._d{width:10.588800px;}
._f{width:12.551100px;}
._19{width:14.227500px;}
._1c{width:15.635400px;}
._17{width:18.606000px;}
._1a{width:20.486100px;}
._1b{width:21.989700px;}
._1f{width:23.749800px;}
._2c{width:25.012500px;}
._1d{width:26.305800px;}
._16{width:27.903600px;}
._18{width:29.120700px;}
._10{width:30.225600px;}
._2b{width:31.457100px;}
._13{width:32.919900px;}
._14{width:34.730537px;}
._20{width:36.266400px;}
._e{width:38.488200px;}
._15{width:40.054500px;}
._2d{width:41.096400px;}
._2e{width:43.625100px;}
._12{width:56.055300px;}
._21{width:58.932600px;}
._28{width:169.400400px;}
._2a{width:216.678600px;}
._23{width:233.996700px;}
._26{width:260.628000px;}
._29{width:290.598600px;}
._25{width:449.184600px;}
._27{width:502.158600px;}
._24{width:553.760400px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:34.980000px;}
.fs5{font-size:38.478000px;}
.fs6{font-size:40.227000px;}
.fs3{font-size:45.474000px;}
.fs7{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:69.000000px;}
.fs2{font-size:78.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:110.975700px;}
.y1{bottom:111.082050px;}
.y9e{bottom:111.637950px;}
.y2{bottom:112.488300px;}
.yb3{bottom:148.242750px;}
.y3d{bottom:152.959200px;}
.ye3{bottom:153.043350px;}
.y2a{bottom:153.237150px;}
.y111{bottom:153.321300px;}
.y6e{bottom:154.303350px;}
.yb2{bottom:157.171800px;}
.y9c{bottom:166.581300px;}
.y3c{bottom:173.659200px;}
.ye2{bottom:173.743350px;}
.y29{bottom:173.937150px;}
.y110{bottom:174.021300px;}
.y6d{bottom:175.003350px;}
.yb1{bottom:183.959250px;}
.y9b{bottom:187.281300px;}
.yb0{bottom:192.888450px;}
.y3b{bottom:194.359200px;}
.ye1{bottom:194.443200px;}
.y28{bottom:194.637150px;}
.y10f{bottom:194.721150px;}
.y6c{bottom:195.703350px;}
.y9a{bottom:207.981300px;}
.y3a{bottom:215.059200px;}
.ye0{bottom:215.143200px;}
.y27{bottom:215.337150px;}
.y10e{bottom:215.421150px;}
.y6b{bottom:216.403350px;}
.yaf{bottom:219.675750px;}
.yae{bottom:228.604950px;}
.y99{bottom:228.681300px;}
.y13f{bottom:233.617350px;}
.y39{bottom:235.759200px;}
.ydf{bottom:235.843350px;}
.y26{bottom:236.037150px;}
.y10d{bottom:236.121300px;}
.y6a{bottom:237.103350px;}
.y98{bottom:249.381300px;}
.y13e{bottom:254.317500px;}
.yad{bottom:255.392250px;}
.y38{bottom:256.459200px;}
.yde{bottom:256.543350px;}
.y25{bottom:256.737150px;}
.y10c{bottom:256.821300px;}
.y69{bottom:257.803350px;}
.yac{bottom:264.321450px;}
.y97{bottom:270.081300px;}
.y37{bottom:277.159200px;}
.ydd{bottom:277.243350px;}
.y24{bottom:277.437150px;}
.y10b{bottom:277.521300px;}
.y68{bottom:278.503350px;}
.y96{bottom:290.781300px;}
.yaa{bottom:294.747450px;}
.y13d{bottom:295.717500px;}
.y36{bottom:297.859200px;}
.ydc{bottom:297.943200px;}
.y23{bottom:298.137150px;}
.y10a{bottom:298.221150px;}
.y67{bottom:299.203350px;}
.yab{bottom:299.742450px;}
.y95{bottom:311.481300px;}
.y35{bottom:318.559200px;}
.ydb{bottom:318.643200px;}
.y22{bottom:318.837150px;}
.y109{bottom:318.921150px;}
.y66{bottom:319.903350px;}
.ya9{bottom:330.217500px;}
.y94{bottom:332.181300px;}
.y13c{bottom:337.117350px;}
.y34{bottom:339.259200px;}
.yda{bottom:339.343350px;}
.y21{bottom:339.537150px;}
.y108{bottom:339.621300px;}
.y65{bottom:340.603350px;}
.y93{bottom:352.881300px;}
.y13b{bottom:357.817500px;}
.y33{bottom:359.959200px;}
.yd9{bottom:360.043350px;}
.y20{bottom:360.237150px;}
.y107{bottom:360.321300px;}
.y64{bottom:361.303350px;}
.ya6{bottom:370.255050px;}
.y92{bottom:373.581300px;}
.y13a{bottom:378.517350px;}
.y32{bottom:380.659200px;}
.yd8{bottom:380.743350px;}
.y1f{bottom:380.937150px;}
.y106{bottom:381.021300px;}
.y63{bottom:382.003350px;}
.ya8{bottom:390.677100px;}
.ya5{bottom:390.955050px;}
.y91{bottom:394.281300px;}
.y139{bottom:399.217500px;}
.y31{bottom:401.359200px;}
.yd7{bottom:401.443200px;}
.y1e{bottom:401.637150px;}
.y105{bottom:401.721150px;}
.ya7{bottom:411.377100px;}
.ya4{bottom:411.655050px;}
.y62{bottom:414.703350px;}
.y90{bottom:414.981300px;}
.y138{bottom:419.917350px;}
.y30{bottom:422.059200px;}
.yd6{bottom:422.143350px;}
.y1d{bottom:422.337150px;}
.y104{bottom:422.421300px;}
.y61{bottom:435.403350px;}
.y8f{bottom:435.681300px;}
.y137{bottom:440.617350px;}
.y2f{bottom:442.759200px;}
.yd5{bottom:442.843350px;}
.y1c{bottom:443.037150px;}
.y103{bottom:443.121300px;}
.ya3{bottom:448.671450px;}
.y60{bottom:456.103350px;}
.y8e{bottom:456.381300px;}
.y136{bottom:461.317500px;}
.y2e{bottom:463.459200px;}
.yd4{bottom:463.543350px;}
.y1b{bottom:463.737150px;}
.y102{bottom:463.821300px;}
.ya2{bottom:466.671450px;}
.y5f{bottom:476.803350px;}
.y8d{bottom:477.081300px;}
.y135{bottom:482.017350px;}
.y2d{bottom:484.159200px;}
.yd3{bottom:484.243350px;}
.y1a{bottom:484.437150px;}
.y101{bottom:484.521300px;}
.ya1{bottom:484.671450px;}
.y5e{bottom:497.503350px;}
.y8c{bottom:497.781300px;}
.ya0{bottom:502.671450px;}
.y134{bottom:502.717500px;}
.y2c{bottom:504.859200px;}
.yd2{bottom:504.943200px;}
.y19{bottom:505.137150px;}
.y100{bottom:505.221150px;}
.y5d{bottom:518.203350px;}
.y8b{bottom:518.481300px;}
.y9f{bottom:520.671450px;}
.y2b{bottom:525.559200px;}
.yd1{bottom:525.643350px;}
.y18{bottom:525.837150px;}
.yff{bottom:525.921300px;}
.y5c{bottom:538.903350px;}
.y8a{bottom:539.181300px;}
.yd0{bottom:546.343350px;}
.yfe{bottom:546.621300px;}
.y5b{bottom:559.603350px;}
.y89{bottom:559.881300px;}
.y133{bottom:564.817500px;}
.ycf{bottom:567.043350px;}
.yfd{bottom:567.321300px;}
.y5a{bottom:580.303350px;}
.y88{bottom:580.581300px;}
.yce{bottom:587.743350px;}
.yfc{bottom:588.021300px;}
.y132{bottom:591.261600px;}
.y59{bottom:601.003350px;}
.y87{bottom:601.281300px;}
.y17{bottom:607.647750px;}
.ycd{bottom:608.443200px;}
.yfb{bottom:608.721150px;}
.y131{bottom:611.961750px;}
.y58{bottom:621.703350px;}
.y86{bottom:621.981300px;}
.y16{bottom:625.647750px;}
.ycc{bottom:629.143350px;}
.yfa{bottom:629.421300px;}
.y57{bottom:642.403350px;}
.y85{bottom:642.681300px;}
.y15{bottom:643.647750px;}
.y130{bottom:647.617350px;}
.ycb{bottom:649.843350px;}
.yf9{bottom:650.121300px;}
.y56{bottom:663.103350px;}
.y84{bottom:663.381300px;}
.yca{bottom:670.543350px;}
.yf8{bottom:670.821300px;}
.y14{bottom:673.647750px;}
.y55{bottom:683.803350px;}
.y83{bottom:684.081300px;}
.y12f{bottom:689.017350px;}
.yc9{bottom:691.243350px;}
.yf7{bottom:691.521300px;}
.y13{bottom:703.647750px;}
.y54{bottom:704.503350px;}
.y82{bottom:704.781300px;}
.yc8{bottom:711.943200px;}
.yf6{bottom:712.221150px;}
.y12{bottom:721.647750px;}
.y53{bottom:725.203350px;}
.y81{bottom:725.481300px;}
.y12e{bottom:730.417350px;}
.yc7{bottom:732.643350px;}
.yf5{bottom:732.921300px;}
.y11{bottom:739.647750px;}
.y52{bottom:745.903350px;}
.y80{bottom:746.181300px;}
.yc6{bottom:753.343350px;}
.y10{bottom:757.647750px;}
.y51{bottom:766.603350px;}
.y7f{bottom:766.881300px;}
.yc5{bottom:774.043350px;}
.yf4{bottom:774.321300px;}
.yf{bottom:775.647750px;}
.y50{bottom:787.303350px;}
.y7e{bottom:787.581300px;}
.ye{bottom:793.647750px;}
.y12d{bottom:794.107350px;}
.yc4{bottom:794.743350px;}
.yf3{bottom:795.021300px;}
.y4f{bottom:808.003350px;}
.y7d{bottom:808.281300px;}
.yd{bottom:811.647750px;}
.yc3{bottom:815.443200px;}
.yf2{bottom:815.721150px;}
.y4e{bottom:828.703350px;}
.y7c{bottom:828.981300px;}
.yc{bottom:829.647750px;}
.yc2{bottom:836.143200px;}
.yf1{bottom:836.421150px;}
.yb{bottom:847.647750px;}
.y4d{bottom:849.403350px;}
.y7b{bottom:849.681300px;}
.y11f{bottom:856.190550px;}
.y12c{bottom:856.207350px;}
.yc1{bottom:856.843350px;}
.yf0{bottom:857.121300px;}
.y4c{bottom:870.103350px;}
.y7a{bottom:870.381300px;}
.y11e{bottom:876.890550px;}
.y12b{bottom:876.907500px;}
.yc0{bottom:877.543350px;}
.yef{bottom:877.821300px;}
.y4b{bottom:890.803350px;}
.y79{bottom:891.081300px;}
.y11d{bottom:897.590550px;}
.y12a{bottom:897.607500px;}
.ybf{bottom:898.243350px;}
.yee{bottom:898.521300px;}
.ya{bottom:899.839050px;}
.y4a{bottom:911.503350px;}
.y78{bottom:911.781300px;}
.y11c{bottom:918.290550px;}
.y129{bottom:918.307500px;}
.ybe{bottom:918.943350px;}
.yed{bottom:919.221300px;}
.y9{bottom:926.283300px;}
.y49{bottom:932.203350px;}
.y77{bottom:932.481300px;}
.y11b{bottom:938.990550px;}
.y128{bottom:939.007350px;}
.ybd{bottom:939.643350px;}
.yec{bottom:939.921300px;}
.y8{bottom:941.239050px;}
.y48{bottom:952.903350px;}
.y76{bottom:953.181300px;}
.y11a{bottom:959.690700px;}
.y127{bottom:959.707500px;}
.ybc{bottom:960.343350px;}
.yeb{bottom:960.621300px;}
.y7{bottom:967.433550px;}
.y47{bottom:973.603350px;}
.y75{bottom:973.881300px;}
.y119{bottom:980.390550px;}
.y126{bottom:980.407500px;}
.ybb{bottom:981.043350px;}
.yea{bottom:981.321300px;}
.y6{bottom:991.639050px;}
.y46{bottom:994.303350px;}
.y74{bottom:994.581300px;}
.y118{bottom:1001.090550px;}
.y125{bottom:1001.107500px;}
.yba{bottom:1001.743350px;}
.ye9{bottom:1002.021300px;}
.y45{bottom:1015.003350px;}
.y73{bottom:1015.281300px;}
.y5{bottom:1016.839050px;}
.y117{bottom:1021.790550px;}
.y124{bottom:1021.807500px;}
.yb9{bottom:1022.443350px;}
.ye8{bottom:1022.721300px;}
.y44{bottom:1035.703350px;}
.y72{bottom:1035.981300px;}
.y116{bottom:1042.490550px;}
.y123{bottom:1042.507350px;}
.yb8{bottom:1043.143350px;}
.ye7{bottom:1043.421300px;}
.y4{bottom:1054.039050px;}
.y43{bottom:1056.403350px;}
.y71{bottom:1056.681300px;}
.y115{bottom:1063.190700px;}
.y122{bottom:1063.207500px;}
.yb7{bottom:1063.843350px;}
.ye6{bottom:1064.121300px;}
.y42{bottom:1077.103350px;}
.y70{bottom:1077.381300px;}
.y114{bottom:1083.890550px;}
.y121{bottom:1083.907500px;}
.yb6{bottom:1084.543350px;}
.ye5{bottom:1084.821300px;}
.y41{bottom:1097.803350px;}
.y6f{bottom:1098.081300px;}
.y113{bottom:1104.590550px;}
.y120{bottom:1104.607500px;}
.yb5{bottom:1105.243350px;}
.ye4{bottom:1105.521300px;}
.y3e{bottom:1106.290350px;}
.y40{bottom:1134.453750px;}
.y112{bottom:1134.880500px;}
.yb4{bottom:1135.307400px;}
.y3{bottom:1140.322950px;}
.y9d{bottom:1140.826950px;}
.hc{height:32.900859px;}
.h7{height:33.912495px;}
.h9{height:35.453972px;}
.h3{height:45.826172px;}
.h2{height:47.437500px;}
.h8{height:47.909180px;}
.ha{height:52.880859px;}
.hb{height:59.667480px;}
.h4{height:60.812988px;}
.h5{height:67.450195px;}
.h6{height:72.638672px;}
.he{height:88.597059px;}
.hd{height:88.597659px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:63.779550px;}
.x21{left:67.343700px;}
.x3{left:68.669250px;}
.x19{left:72.254550px;}
.xd{left:89.291400px;}
.xc{left:105.661500px;}
.xb{left:128.628600px;}
.x13{left:131.811000px;}
.x7{left:144.267300px;}
.x20{left:166.459500px;}
.x1e{left:173.265150px;}
.x9{left:196.154400px;}
.x6{left:201.612750px;}
.x1f{left:222.522150px;}
.x16{left:225.521100px;}
.x1c{left:227.221950px;}
.x17{left:240.283950px;}
.x1b{left:267.332850px;}
.x11{left:276.899850px;}
.x1a{left:283.415100px;}
.x22{left:318.685800px;}
.xa{left:323.638650px;}
.x8{left:376.179900px;}
.x4{left:434.593800px;}
.xf{left:435.826800px;}
.x5{left:442.873800px;}
.x10{left:457.978950px;}
.xe{left:461.338650px;}
.x15{left:478.346400px;}
.x12{left:501.732300px;}
.x14{left:503.858250px;}
.x1d{left:531.064950px;}
.x18{left:615.673800px;}
.x1{left:766.985550px;}
@media print{
.v4{vertical-align:-35.520000pt;}
.v2{vertical-align:-19.536000pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:17.760000pt;}
.v8{vertical-align:20.424000pt;}
.v1{vertical-align:23.088000pt;}
.v5{vertical-align:31.748267pt;}
.v6{vertical-align:49.508267pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000267pt;}
.ls3{letter-spacing:0.010133pt;}
.ls2{letter-spacing:0.010667pt;}
.ws1{word-spacing:-18.666667pt;}
.ws3{word-spacing:-15.333333pt;}
.ws6{word-spacing:-13.333333pt;}
.ws0{word-spacing:-10.105333pt;}
.ws5{word-spacing:-8.939333pt;}
.ws2{word-spacing:-8.550667pt;}
.ws8{word-spacing:-7.773333pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:238.347253pt;}
.ws7{word-spacing:733.645867pt;}
._11{margin-left:-15.875886pt;}
._22{margin-left:-14.917103pt;}
._a{margin-left:-13.329600pt;}
._2f{margin-left:-10.098400pt;}
._3{margin-left:-7.673067pt;}
._1e{margin-left:-6.710667pt;}
._30{margin-left:-5.612000pt;}
._5{margin-left:-4.722667pt;}
._4{margin-left:-3.718400pt;}
._0{margin-left:-2.223467pt;}
._2{margin-left:-0.901333pt;}
._1{width:1.478400pt;}
._b{width:2.602667pt;}
._c{width:3.749333pt;}
._6{width:5.018667pt;}
._7{width:5.989333pt;}
._8{width:7.139733pt;}
._9{width:8.218133pt;}
._d{width:9.412267pt;}
._f{width:11.156533pt;}
._19{width:12.646667pt;}
._1c{width:13.898133pt;}
._17{width:16.538667pt;}
._1a{width:18.209867pt;}
._1b{width:19.546400pt;}
._1f{width:21.110933pt;}
._2c{width:22.233333pt;}
._1d{width:23.382933pt;}
._16{width:24.803200pt;}
._18{width:25.885067pt;}
._10{width:26.867200pt;}
._2b{width:27.961867pt;}
._13{width:29.262133pt;}
._14{width:30.871588pt;}
._20{width:32.236800pt;}
._e{width:34.211733pt;}
._15{width:35.604000pt;}
._2d{width:36.530133pt;}
._2e{width:38.777867pt;}
._12{width:49.826933pt;}
._21{width:52.384533pt;}
._28{width:150.578133pt;}
._2a{width:192.603200pt;}
._23{width:207.997067pt;}
._26{width:231.669333pt;}
._29{width:258.309867pt;}
._25{width:399.275200pt;}
._27{width:446.363200pt;}
._24{width:492.231467pt;}
.fs8{font-size:31.093333pt;}
.fs5{font-size:34.202667pt;}
.fs6{font-size:35.757333pt;}
.fs3{font-size:40.421333pt;}
.fs7{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:61.333333pt;}
.fs2{font-size:69.333333pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:98.645067pt;}
.y1{bottom:98.739600pt;}
.y9e{bottom:99.233733pt;}
.y2{bottom:99.989600pt;}
.yb3{bottom:131.771333pt;}
.y3d{bottom:135.963733pt;}
.ye3{bottom:136.038533pt;}
.y2a{bottom:136.210800pt;}
.y111{bottom:136.285600pt;}
.y6e{bottom:137.158533pt;}
.yb2{bottom:139.708267pt;}
.y9c{bottom:148.072267pt;}
.y3c{bottom:154.363733pt;}
.ye2{bottom:154.438533pt;}
.y29{bottom:154.610800pt;}
.y110{bottom:154.685600pt;}
.y6d{bottom:155.558533pt;}
.yb1{bottom:163.519333pt;}
.y9b{bottom:166.472267pt;}
.yb0{bottom:171.456400pt;}
.y3b{bottom:172.763733pt;}
.ye1{bottom:172.838400pt;}
.y28{bottom:173.010800pt;}
.y10f{bottom:173.085467pt;}
.y6c{bottom:173.958533pt;}
.y9a{bottom:184.872267pt;}
.y3a{bottom:191.163733pt;}
.ye0{bottom:191.238400pt;}
.y27{bottom:191.410800pt;}
.y10e{bottom:191.485467pt;}
.y6b{bottom:192.358533pt;}
.yaf{bottom:195.267333pt;}
.yae{bottom:203.204400pt;}
.y99{bottom:203.272267pt;}
.y13f{bottom:207.659867pt;}
.y39{bottom:209.563733pt;}
.ydf{bottom:209.638533pt;}
.y26{bottom:209.810800pt;}
.y10d{bottom:209.885600pt;}
.y6a{bottom:210.758533pt;}
.y98{bottom:221.672267pt;}
.y13e{bottom:226.060000pt;}
.yad{bottom:227.015333pt;}
.y38{bottom:227.963733pt;}
.yde{bottom:228.038533pt;}
.y25{bottom:228.210800pt;}
.y10c{bottom:228.285600pt;}
.y69{bottom:229.158533pt;}
.yac{bottom:234.952400pt;}
.y97{bottom:240.072267pt;}
.y37{bottom:246.363733pt;}
.ydd{bottom:246.438533pt;}
.y24{bottom:246.610800pt;}
.y10b{bottom:246.685600pt;}
.y68{bottom:247.558533pt;}
.y96{bottom:258.472267pt;}
.yaa{bottom:261.997733pt;}
.y13d{bottom:262.860000pt;}
.y36{bottom:264.763733pt;}
.ydc{bottom:264.838400pt;}
.y23{bottom:265.010800pt;}
.y10a{bottom:265.085467pt;}
.y67{bottom:265.958533pt;}
.yab{bottom:266.437733pt;}
.y95{bottom:276.872267pt;}
.y35{bottom:283.163733pt;}
.ydb{bottom:283.238400pt;}
.y22{bottom:283.410800pt;}
.y109{bottom:283.485467pt;}
.y66{bottom:284.358533pt;}
.ya9{bottom:293.526667pt;}
.y94{bottom:295.272267pt;}
.y13c{bottom:299.659867pt;}
.y34{bottom:301.563733pt;}
.yda{bottom:301.638533pt;}
.y21{bottom:301.810800pt;}
.y108{bottom:301.885600pt;}
.y65{bottom:302.758533pt;}
.y93{bottom:313.672267pt;}
.y13b{bottom:318.060000pt;}
.y33{bottom:319.963733pt;}
.yd9{bottom:320.038533pt;}
.y20{bottom:320.210800pt;}
.y107{bottom:320.285600pt;}
.y64{bottom:321.158533pt;}
.ya6{bottom:329.115600pt;}
.y92{bottom:332.072267pt;}
.y13a{bottom:336.459867pt;}
.y32{bottom:338.363733pt;}
.yd8{bottom:338.438533pt;}
.y1f{bottom:338.610800pt;}
.y106{bottom:338.685600pt;}
.y63{bottom:339.558533pt;}
.ya8{bottom:347.268533pt;}
.ya5{bottom:347.515600pt;}
.y91{bottom:350.472267pt;}
.y139{bottom:354.860000pt;}
.y31{bottom:356.763733pt;}
.yd7{bottom:356.838400pt;}
.y1e{bottom:357.010800pt;}
.y105{bottom:357.085467pt;}
.ya7{bottom:365.668533pt;}
.ya4{bottom:365.915600pt;}
.y62{bottom:368.625200pt;}
.y90{bottom:368.872267pt;}
.y138{bottom:373.259867pt;}
.y30{bottom:375.163733pt;}
.yd6{bottom:375.238533pt;}
.y1d{bottom:375.410800pt;}
.y104{bottom:375.485600pt;}
.y61{bottom:387.025200pt;}
.y8f{bottom:387.272267pt;}
.y137{bottom:391.659867pt;}
.y2f{bottom:393.563733pt;}
.yd5{bottom:393.638533pt;}
.y1c{bottom:393.810800pt;}
.y103{bottom:393.885600pt;}
.ya3{bottom:398.819067pt;}
.y60{bottom:405.425200pt;}
.y8e{bottom:405.672267pt;}
.y136{bottom:410.060000pt;}
.y2e{bottom:411.963733pt;}
.yd4{bottom:412.038533pt;}
.y1b{bottom:412.210800pt;}
.y102{bottom:412.285600pt;}
.ya2{bottom:414.819067pt;}
.y5f{bottom:423.825200pt;}
.y8d{bottom:424.072267pt;}
.y135{bottom:428.459867pt;}
.y2d{bottom:430.363733pt;}
.yd3{bottom:430.438533pt;}
.y1a{bottom:430.610800pt;}
.y101{bottom:430.685600pt;}
.ya1{bottom:430.819067pt;}
.y5e{bottom:442.225200pt;}
.y8c{bottom:442.472267pt;}
.ya0{bottom:446.819067pt;}
.y134{bottom:446.860000pt;}
.y2c{bottom:448.763733pt;}
.yd2{bottom:448.838400pt;}
.y19{bottom:449.010800pt;}
.y100{bottom:449.085467pt;}
.y5d{bottom:460.625200pt;}
.y8b{bottom:460.872267pt;}
.y9f{bottom:462.819067pt;}
.y2b{bottom:467.163733pt;}
.yd1{bottom:467.238533pt;}
.y18{bottom:467.410800pt;}
.yff{bottom:467.485600pt;}
.y5c{bottom:479.025200pt;}
.y8a{bottom:479.272267pt;}
.yd0{bottom:485.638533pt;}
.yfe{bottom:485.885600pt;}
.y5b{bottom:497.425200pt;}
.y89{bottom:497.672267pt;}
.y133{bottom:502.060000pt;}
.ycf{bottom:504.038533pt;}
.yfd{bottom:504.285600pt;}
.y5a{bottom:515.825200pt;}
.y88{bottom:516.072267pt;}
.yce{bottom:522.438533pt;}
.yfc{bottom:522.685600pt;}
.y132{bottom:525.565867pt;}
.y59{bottom:534.225200pt;}
.y87{bottom:534.472267pt;}
.y17{bottom:540.131333pt;}
.ycd{bottom:540.838400pt;}
.yfb{bottom:541.085467pt;}
.y131{bottom:543.966000pt;}
.y58{bottom:552.625200pt;}
.y86{bottom:552.872267pt;}
.y16{bottom:556.131333pt;}
.ycc{bottom:559.238533pt;}
.yfa{bottom:559.485600pt;}
.y57{bottom:571.025200pt;}
.y85{bottom:571.272267pt;}
.y15{bottom:572.131333pt;}
.y130{bottom:575.659867pt;}
.ycb{bottom:577.638533pt;}
.yf9{bottom:577.885600pt;}
.y56{bottom:589.425200pt;}
.y84{bottom:589.672267pt;}
.yca{bottom:596.038533pt;}
.yf8{bottom:596.285600pt;}
.y14{bottom:598.798000pt;}
.y55{bottom:607.825200pt;}
.y83{bottom:608.072267pt;}
.y12f{bottom:612.459867pt;}
.yc9{bottom:614.438533pt;}
.yf7{bottom:614.685600pt;}
.y13{bottom:625.464667pt;}
.y54{bottom:626.225200pt;}
.y82{bottom:626.472267pt;}
.yc8{bottom:632.838400pt;}
.yf6{bottom:633.085467pt;}
.y12{bottom:641.464667pt;}
.y53{bottom:644.625200pt;}
.y81{bottom:644.872267pt;}
.y12e{bottom:649.259867pt;}
.yc7{bottom:651.238533pt;}
.yf5{bottom:651.485600pt;}
.y11{bottom:657.464667pt;}
.y52{bottom:663.025200pt;}
.y80{bottom:663.272267pt;}
.yc6{bottom:669.638533pt;}
.y10{bottom:673.464667pt;}
.y51{bottom:681.425200pt;}
.y7f{bottom:681.672267pt;}
.yc5{bottom:688.038533pt;}
.yf4{bottom:688.285600pt;}
.yf{bottom:689.464667pt;}
.y50{bottom:699.825200pt;}
.y7e{bottom:700.072267pt;}
.ye{bottom:705.464667pt;}
.y12d{bottom:705.873200pt;}
.yc4{bottom:706.438533pt;}
.yf3{bottom:706.685600pt;}
.y4f{bottom:718.225200pt;}
.y7d{bottom:718.472267pt;}
.yd{bottom:721.464667pt;}
.yc3{bottom:724.838400pt;}
.yf2{bottom:725.085467pt;}
.y4e{bottom:736.625200pt;}
.y7c{bottom:736.872267pt;}
.yc{bottom:737.464667pt;}
.yc2{bottom:743.238400pt;}
.yf1{bottom:743.485467pt;}
.yb{bottom:753.464667pt;}
.y4d{bottom:755.025200pt;}
.y7b{bottom:755.272267pt;}
.y11f{bottom:761.058267pt;}
.y12c{bottom:761.073200pt;}
.yc1{bottom:761.638533pt;}
.yf0{bottom:761.885600pt;}
.y4c{bottom:773.425200pt;}
.y7a{bottom:773.672267pt;}
.y11e{bottom:779.458267pt;}
.y12b{bottom:779.473333pt;}
.yc0{bottom:780.038533pt;}
.yef{bottom:780.285600pt;}
.y4b{bottom:791.825200pt;}
.y79{bottom:792.072267pt;}
.y11d{bottom:797.858267pt;}
.y12a{bottom:797.873333pt;}
.ybf{bottom:798.438533pt;}
.yee{bottom:798.685600pt;}
.ya{bottom:799.856933pt;}
.y4a{bottom:810.225200pt;}
.y78{bottom:810.472267pt;}
.y11c{bottom:816.258267pt;}
.y129{bottom:816.273333pt;}
.ybe{bottom:816.838533pt;}
.yed{bottom:817.085600pt;}
.y9{bottom:823.362933pt;}
.y49{bottom:828.625200pt;}
.y77{bottom:828.872267pt;}
.y11b{bottom:834.658267pt;}
.y128{bottom:834.673200pt;}
.ybd{bottom:835.238533pt;}
.yec{bottom:835.485600pt;}
.y8{bottom:836.656933pt;}
.y48{bottom:847.025200pt;}
.y76{bottom:847.272267pt;}
.y11a{bottom:853.058400pt;}
.y127{bottom:853.073333pt;}
.ybc{bottom:853.638533pt;}
.yeb{bottom:853.885600pt;}
.y7{bottom:859.940933pt;}
.y47{bottom:865.425200pt;}
.y75{bottom:865.672267pt;}
.y119{bottom:871.458267pt;}
.y126{bottom:871.473333pt;}
.ybb{bottom:872.038533pt;}
.yea{bottom:872.285600pt;}
.y6{bottom:881.456933pt;}
.y46{bottom:883.825200pt;}
.y74{bottom:884.072267pt;}
.y118{bottom:889.858267pt;}
.y125{bottom:889.873333pt;}
.yba{bottom:890.438533pt;}
.ye9{bottom:890.685600pt;}
.y45{bottom:902.225200pt;}
.y73{bottom:902.472267pt;}
.y5{bottom:903.856933pt;}
.y117{bottom:908.258267pt;}
.y124{bottom:908.273333pt;}
.yb9{bottom:908.838533pt;}
.ye8{bottom:909.085600pt;}
.y44{bottom:920.625200pt;}
.y72{bottom:920.872267pt;}
.y116{bottom:926.658267pt;}
.y123{bottom:926.673200pt;}
.yb8{bottom:927.238533pt;}
.ye7{bottom:927.485600pt;}
.y4{bottom:936.923600pt;}
.y43{bottom:939.025200pt;}
.y71{bottom:939.272267pt;}
.y115{bottom:945.058400pt;}
.y122{bottom:945.073333pt;}
.yb7{bottom:945.638533pt;}
.ye6{bottom:945.885600pt;}
.y42{bottom:957.425200pt;}
.y70{bottom:957.672267pt;}
.y114{bottom:963.458267pt;}
.y121{bottom:963.473333pt;}
.yb6{bottom:964.038533pt;}
.ye5{bottom:964.285600pt;}
.y41{bottom:975.825200pt;}
.y6f{bottom:976.072267pt;}
.y113{bottom:981.858267pt;}
.y120{bottom:981.873333pt;}
.yb5{bottom:982.438533pt;}
.ye4{bottom:982.685600pt;}
.y3e{bottom:983.369200pt;}
.y40{bottom:1008.403333pt;}
.y112{bottom:1008.782667pt;}
.yb4{bottom:1009.162133pt;}
.y3{bottom:1013.620400pt;}
.y9d{bottom:1014.068400pt;}
.hc{height:29.245208pt;}
.h7{height:30.144440pt;}
.h9{height:31.514642pt;}
.h3{height:40.734375pt;}
.h2{height:42.166667pt;}
.h8{height:42.585938pt;}
.ha{height:47.005208pt;}
.hb{height:53.037760pt;}
.h4{height:54.055990pt;}
.h5{height:59.955729pt;}
.h6{height:64.567708pt;}
.he{height:78.752942pt;}
.hd{height:78.753475pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:56.692933pt;}
.x21{left:59.861067pt;}
.x3{left:61.039333pt;}
.x19{left:64.226267pt;}
.xd{left:79.370133pt;}
.xc{left:93.921333pt;}
.xb{left:114.336533pt;}
.x13{left:117.165333pt;}
.x7{left:128.237600pt;}
.x20{left:147.964000pt;}
.x1e{left:154.013467pt;}
.x9{left:174.359467pt;}
.x6{left:179.211333pt;}
.x1f{left:197.797467pt;}
.x16{left:200.463200pt;}
.x1c{left:201.975067pt;}
.x17{left:213.585733pt;}
.x1b{left:237.629200pt;}
.x11{left:246.133200pt;}
.x1a{left:251.924533pt;}
.x22{left:283.276267pt;}
.xa{left:287.678800pt;}
.x8{left:334.382133pt;}
.x4{left:386.305600pt;}
.xf{left:387.401600pt;}
.x5{left:393.665600pt;}
.x10{left:407.092400pt;}
.xe{left:410.078800pt;}
.x15{left:425.196800pt;}
.x12{left:445.984267pt;}
.x14{left:447.874000pt;}
.x1d{left:472.057733pt;}
.x18{left:547.265600pt;}
.x1{left:681.764933pt;}
}




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