
    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_17fbed3ba1870e1e0ff7b517.woff')format("woff");}.ff1{font-family:ff1;line-height:1.196777;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_a46128a88d50b2337e0d1a25.woff')format("woff");}.ff2{font-family:ff2;line-height:1.167969;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_4ea0c2a8b50dfa3320757a98.woff')format("woff");}.ff3{font-family:ff3;line-height:0.976074;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.000000,-0.225000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.225000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.225000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.220993,0.000000,-0.046974,0.245547,0,0);-ms-transform:matrix(0.220993,0.000000,-0.046974,0.245547,0,0);-webkit-transform:matrix(0.220993,0.000000,-0.046974,0.245547,0,0);}
.m5{transform:matrix(0.220993,0.000000,-0.046973,0.245547,0,0);-ms-transform:matrix(0.220993,0.000000,-0.046973,0.245547,0,0);-webkit-transform:matrix(0.220993,0.000000,-0.046973,0.245547,0,0);}
.m4{transform:matrix(0.225000,0.000157,-0.000175,0.250000,0,0);-ms-transform:matrix(0.225000,0.000157,-0.000175,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000157,-0.000175,0.250000,0,0);}
.m0{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-15.840600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.840600px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.002400px;}
.ls5{letter-spacing:0.005280px;}
.ls7{letter-spacing:0.007200px;}
.ls8{letter-spacing:0.010560px;}
.ls4{letter-spacing:0.011040px;}
.ls6{letter-spacing:0.011520px;}
.lsc{letter-spacing:0.016800px;}
.ls9{letter-spacing:1.308000px;}
.lsb{letter-spacing:14.409600px;}
.ls2{letter-spacing:19.011333px;}
.ls0{letter-spacing:21.612133px;}
.ls3{letter-spacing:22.924800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-22.948800px;}
.ws8{word-spacing:-22.932000px;}
.ws0{word-spacing:-16.380000px;}
.ws4{word-spacing:-13.114563px;}
.ws5{word-spacing:-13.106403px;}
.ws3{word-spacing:-13.104003px;}
.ws6{word-spacing:-13.104000px;}
.ws1{word-spacing:-11.466000px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-12.482160px;}
._11{margin-left:-10.968000px;}
._c{margin-left:-9.636000px;}
._3{margin-left:-8.453640px;}
._15{margin-left:-6.846690px;}
._6{margin-left:-5.830560px;}
._f{margin-left:-4.455000px;}
._5{margin-left:-3.372930px;}
._1{margin-left:-1.822800px;}
._0{width:1.415250px;}
._4{width:2.549790px;}
._2{width:4.288440px;}
._8{width:5.434800px;}
._e{width:6.574800px;}
._a{width:8.195580px;}
._10{width:9.569400px;}
._9{width:10.652040px;}
._7{width:11.728800px;}
._d{width:13.645800px;}
._12{width:15.114000px;}
._b{width:18.073800px;}
._14{width:19.137000px;}
._18{width:21.354600px;}
._16{width:24.317910px;}
._17{width:25.863360px;}
._1a{width:29.973450px;}
._19{width:31.000650px;}
._1c{width:64.152120px;}
._1b{width:65.418420px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:42.000000px;}
.fs9{font-size:42.761616px;}
.fs6{font-size:48.000000px;}
.fsb{font-size:48.000012px;}
.fs1{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fsc{font-size:61.088017px;}
.fs7{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:13.423350px;}
.y5d{bottom:13.665705px;}
.y8c{bottom:13.798350px;}
.yab{bottom:14.179650px;}
.y123{bottom:15.268050px;}
.y101{bottom:15.268155px;}
.yd8{bottom:15.298350px;}
.yd1{bottom:15.298560px;}
.yfb{bottom:16.306350px;}
.yeb{bottom:16.306560px;}
.y27{bottom:16.683900px;}
.y141{bottom:17.246055px;}
.yc7{bottom:55.801350px;}
.y5c{bottom:56.043600px;}
.y8b{bottom:56.176350px;}
.yaa{bottom:56.557650px;}
.y100{bottom:57.646050px;}
.yd0{bottom:57.676350px;}
.yea{bottom:58.684350px;}
.y26{bottom:59.061450px;}
.y140{bottom:59.623950px;}
.yc6{bottom:67.801800px;}
.y5b{bottom:68.044050px;}
.y8a{bottom:68.176800px;}
.ya9{bottom:68.558100px;}
.yff{bottom:69.646500px;}
.ycf{bottom:69.676800px;}
.ye9{bottom:70.684800px;}
.y25{bottom:71.061900px;}
.y13f{bottom:71.624400px;}
.yd4{bottom:92.241307px;}
.yad{bottom:93.154500px;}
.ye8{bottom:93.899850px;}
.y11e{bottom:93.958800px;}
.y89{bottom:95.400300px;}
.yfa{bottom:96.374700px;}
.yd9{bottom:98.367600px;}
.yc5{bottom:99.607350px;}
.y5a{bottom:99.964500px;}
.yfe{bottom:104.517450px;}
.y11d{bottom:108.958800px;}
.yd3{bottom:110.411700px;}
.y88{bottom:113.400300px;}
.yf9{bottom:114.374700px;}
.y24{bottom:114.917100px;}
.yac{bottom:115.114500px;}
.yc4{bottom:117.607350px;}
.y59{bottom:117.964500px;}
.yfd{bottom:122.517450px;}
.y11c{bottom:123.958800px;}
.yf8{bottom:133.317450px;}
.yc3{bottom:135.607350px;}
.y58{bottom:135.964500px;}
.y11b{bottom:138.958800px;}
.ye7{bottom:140.517450px;}
.y23{bottom:144.917400px;}
.yf7{bottom:151.317450px;}
.yc2{bottom:153.607350px;}
.y87{bottom:153.958800px;}
.y57{bottom:153.964500px;}
.ye6{bottom:158.517450px;}
.ya8{bottom:167.400300px;}
.y11a{bottom:168.958800px;}
.yf6{bottom:169.317450px;}
.yc1{bottom:171.607350px;}
.y86{bottom:171.958800px;}
.y56{bottom:171.964500px;}
.y22{bottom:174.919200px;}
.ye5{bottom:176.517450px;}
.y119{bottom:183.958800px;}
.ya7{bottom:185.400300px;}
.yf5{bottom:187.317450px;}
.yc0{bottom:189.607350px;}
.y21{bottom:189.919050px;}
.y85{bottom:189.958800px;}
.y55{bottom:189.964500px;}
.ye4{bottom:194.517450px;}
.y118{bottom:198.958800px;}
.ya6{bottom:203.400300px;}
.y20{bottom:204.918900px;}
.yf4{bottom:205.317450px;}
.ybf{bottom:207.607350px;}
.y84{bottom:207.958800px;}
.y54{bottom:207.964500px;}
.ye3{bottom:212.517450px;}
.y117{bottom:213.958800px;}
.y1f{bottom:219.918750px;}
.ya5{bottom:221.400300px;}
.yf3{bottom:223.317450px;}
.y83{bottom:225.958800px;}
.y53{bottom:225.964500px;}
.y116{bottom:228.958800px;}
.ye2{bottom:230.517450px;}
.y1e{bottom:234.918600px;}
.yf2{bottom:241.317450px;}
.ybe{bottom:243.607350px;}
.y115{bottom:243.958800px;}
.ye1{bottom:248.517450px;}
.y1d{bottom:249.918450px;}
.ya4{bottom:257.400300px;}
.y114{bottom:258.958800px;}
.ybd{bottom:261.607350px;}
.y1c{bottom:264.918300px;}
.y82{bottom:266.517450px;}
.y52{bottom:266.523150px;}
.y113{bottom:273.958800px;}
.ya3{bottom:275.400300px;}
.ybc{bottom:279.607350px;}
.y1b{bottom:279.918150px;}
.y81{bottom:284.517450px;}
.y51{bottom:284.523150px;}
.y112{bottom:288.958800px;}
.ya2{bottom:293.400300px;}
.y1a{bottom:294.918000px;}
.ybb{bottom:297.606450px;}
.y80{bottom:302.517450px;}
.y50{bottom:302.523150px;}
.y111{bottom:303.958800px;}
.yf1{bottom:307.075950px;}
.y19{bottom:309.917850px;}
.ya1{bottom:311.400300px;}
.y110{bottom:318.958800px;}
.y7f{bottom:320.517450px;}
.y4f{bottom:320.523150px;}
.y18{bottom:324.917400px;}
.yf0{bottom:325.075950px;}
.ya0{bottom:329.400300px;}
.y10f{bottom:333.958800px;}
.yba{bottom:338.165850px;}
.y7e{bottom:338.517450px;}
.yef{bottom:343.075950px;}
.y9f{bottom:347.400300px;}
.y10e{bottom:348.958800px;}
.y17{bottom:354.918135px;}
.y7d{bottom:356.517450px;}
.y4e{bottom:356.523150px;}
.yee{bottom:361.075950px;}
.y10d{bottom:363.958800px;}
.y9e{bottom:365.400300px;}
.y16{bottom:369.917985px;}
.ye0{bottom:374.517450px;}
.y4d{bottom:374.523150px;}
.yb9{bottom:378.724350px;}
.y10c{bottom:378.958800px;}
.yed{bottom:379.075950px;}
.y9d{bottom:383.400300px;}
.y15{bottom:384.917835px;}
.y7c{bottom:392.517450px;}
.y4c{bottom:392.523150px;}
.y10b{bottom:393.958800px;}
.yb8{bottom:396.724350px;}
.yec{bottom:397.075950px;}
.y14{bottom:399.917820px;}
.y10a{bottom:408.958800px;}
.y7b{bottom:410.517450px;}
.y4b{bottom:410.523150px;}
.yb7{bottom:414.724350px;}
.y13{bottom:414.917805px;}
.y9c{bottom:423.958800px;}
.y7a{bottom:428.517450px;}
.y4a{bottom:428.523150px;}
.y12{bottom:429.917790px;}
.yb6{bottom:432.724350px;}
.yd7{bottom:433.075950px;}
.y9b{bottom:441.958800px;}
.y11{bottom:444.917775px;}
.y79{bottom:446.517450px;}
.y49{bottom:446.523150px;}
.yce{bottom:451.075950px;}
.y10{bottom:459.917760px;}
.y9a{bottom:459.958800px;}
.y78{bottom:464.517450px;}
.y48{bottom:464.523150px;}
.yca{bottom:468.656221px;}
.ycd{bottom:469.075950px;}
.y122{bottom:472.335450px;}
.yf{bottom:474.917745px;}
.y99{bottom:477.958800px;}
.y77{bottom:482.517450px;}
.y47{bottom:482.523150px;}
.yc9{bottom:486.820800px;}
.ycc{bottom:487.075950px;}
.ye{bottom:489.917730px;}
.y121{bottom:490.335450px;}
.y98{bottom:495.958800px;}
.yfc{bottom:500.517450px;}
.y46{bottom:500.523150px;}
.yd{bottom:504.917715px;}
.ycb{bottom:505.075950px;}
.y120{bottom:508.335450px;}
.y97{bottom:513.958800px;}
.ydf{bottom:518.517450px;}
.y45{bottom:518.523150px;}
.yc{bottom:519.917700px;}
.y76{bottom:523.075950px;}
.y96{bottom:531.958800px;}
.yde{bottom:536.517450px;}
.y44{bottom:536.523150px;}
.y75{bottom:541.075950px;}
.y11f{bottom:544.335450px;}
.y95{bottom:549.958800px;}
.ydd{bottom:554.517450px;}
.y43{bottom:554.523150px;}
.y74{bottom:559.075950px;}
.yd2{bottom:559.312200px;}
.y94{bottom:567.958800px;}
.ydc{bottom:572.517450px;}
.y42{bottom:572.523150px;}
.y73{bottom:577.075950px;}
.y93{bottom:585.958800px;}
.ydb{bottom:590.517450px;}
.y41{bottom:590.523150px;}
.yb{bottom:593.604000px;}
.y72{bottom:595.075950px;}
.y109{bottom:603.958800px;}
.yda{bottom:608.517450px;}
.y40{bottom:608.523150px;}
.y71{bottom:613.075950px;}
.y13e{bottom:621.355200px;}
.y108{bottom:621.958800px;}
.y92{bottom:626.517450px;}
.y3f{bottom:626.523150px;}
.y70{bottom:631.075950px;}
.y13d{bottom:636.355200px;}
.y107{bottom:639.958800px;}
.ya{bottom:642.564150px;}
.y91{bottom:644.517450px;}
.y6f{bottom:649.075950px;}
.y13c{bottom:651.355200px;}
.y106{bottom:657.958800px;}
.y90{bottom:662.517450px;}
.y3e{bottom:662.523150px;}
.y13b{bottom:666.355200px;}
.y6e{bottom:667.075950px;}
.y105{bottom:675.958800px;}
.y8f{bottom:680.517450px;}
.y3d{bottom:680.523150px;}
.y13a{bottom:681.355200px;}
.y9{bottom:683.604000px;}
.y6d{bottom:685.075950px;}
.y139{bottom:696.355200px;}
.y8e{bottom:698.517450px;}
.y3c{bottom:698.523150px;}
.y6c{bottom:703.075950px;}
.y138{bottom:711.355200px;}
.y104{bottom:716.517450px;}
.y3b{bottom:716.523150px;}
.yd6{bottom:721.075950px;}
.y137{bottom:726.355200px;}
.y103{bottom:734.517450px;}
.y3a{bottom:734.523150px;}
.y6b{bottom:739.075950px;}
.y136{bottom:741.355200px;}
.y102{bottom:752.517450px;}
.y39{bottom:752.523150px;}
.y135{bottom:756.355200px;}
.y6a{bottom:757.075950px;}
.y8{bottom:762.393000px;}
.y38{bottom:770.523150px;}
.y134{bottom:771.355200px;}
.y69{bottom:775.075950px;}
.y7{bottom:783.993000px;}
.y133{bottom:786.355200px;}
.y8d{bottom:793.075950px;}
.y132{bottom:801.355200px;}
.y37{bottom:806.523150px;}
.y68{bottom:811.075950px;}
.y131{bottom:816.355200px;}
.y6{bottom:822.272070px;}
.y36{bottom:824.523150px;}
.y67{bottom:829.075950px;}
.y130{bottom:831.355200px;}
.y2b{bottom:842.358600px;}
.y35{bottom:842.523150px;}
.y2{bottom:843.858150px;}
.y12f{bottom:846.355200px;}
.y66{bottom:847.075950px;}
.y34{bottom:860.523150px;}
.y12e{bottom:861.355200px;}
.y65{bottom:865.075950px;}
.y5{bottom:868.772160px;}
.y12d{bottom:876.355200px;}
.y33{bottom:878.523150px;}
.yb5{bottom:882.724350px;}
.y64{bottom:883.075950px;}
.y12c{bottom:891.355200px;}
.y32{bottom:896.523150px;}
.yb4{bottom:900.724350px;}
.y63{bottom:901.075950px;}
.y12b{bottom:906.355200px;}
.y31{bottom:914.523150px;}
.y4{bottom:915.272250px;}
.yb3{bottom:918.724350px;}
.y62{bottom:919.075950px;}
.y12a{bottom:921.355200px;}
.y30{bottom:932.523150px;}
.y129{bottom:936.355200px;}
.yb2{bottom:936.724350px;}
.yd5{bottom:937.075950px;}
.y2f{bottom:950.523150px;}
.y128{bottom:951.355200px;}
.yb1{bottom:954.724350px;}
.y61{bottom:955.075950px;}
.y127{bottom:966.355200px;}
.y2e{bottom:968.523150px;}
.yb0{bottom:972.724350px;}
.y60{bottom:973.075950px;}
.y126{bottom:981.355200px;}
.y29{bottom:983.599350px;}
.y2d{bottom:986.523150px;}
.yaf{bottom:990.724350px;}
.y5f{bottom:991.075950px;}
.y125{bottom:996.355200px;}
.y28{bottom:998.599350px;}
.y2c{bottom:1004.523150px;}
.yae{bottom:1008.724350px;}
.y5e{bottom:1009.075950px;}
.y124{bottom:1011.355200px;}
.y3{bottom:1025.753100px;}
.y1{bottom:1070.064600px;}
.y2a{bottom:1072.855500px;}
.h4{height:40.359375px;}
.hd{height:41.091240px;}
.he{height:46.125000px;}
.h13{height:46.125011px;}
.h12{height:46.125069px;}
.h3{height:49.007812px;}
.ha{height:51.890625px;}
.h8{height:53.346900px;}
.h2{height:57.656250px;}
.hf{height:57.656706px;}
.h14{height:58.701767px;}
.h11{height:61.965000px;}
.hc{height:63.415875px;}
.hb{height:63.420135px;}
.h9{height:63.421875px;}
.h6{height:69.187500px;}
.h10{height:80.718750px;}
.h7{height:92.250000px;}
.h5{height:149.906250px;}
.h1{height:1126.500000px;}
.h0{height:1126.771545px;}
.w0{width:850.393530px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.x14{left:56.256150px;}
.x15{left:66.678000px;}
.x1d{left:85.051800px;}
.xc{left:86.551800px;}
.x2b{left:89.794350px;}
.x5{left:91.120920px;}
.x7{left:92.284350px;}
.x21{left:95.141550px;}
.xd{left:97.231350px;}
.x2c{left:102.697050px;}
.x1e{left:106.312140px;}
.x16{left:148.825650px;}
.x20{left:150.316170px;}
.x2a{left:153.568200px;}
.x1f{left:155.485050px;}
.x23{left:160.314300px;}
.x18{left:161.755350px;}
.x17{left:170.085600px;}
.x4{left:175.476750px;}
.x29{left:194.749950px;}
.x9{left:265.654200px;}
.x27{left:268.878600px;}
.xa{left:275.897820px;}
.x2d{left:292.533750px;}
.x10{left:302.418438px;}
.x22{left:330.155634px;}
.x11{left:333.779100px;}
.xb{left:342.677760px;}
.x3{left:345.945600px;}
.x26{left:365.501388px;}
.x1b{left:366.942288px;}
.x2e{left:391.825950px;}
.x28{left:393.961404px;}
.x6{left:396.389130px;}
.x1c{left:398.306460px;}
.x13{left:484.201392px;}
.x12{left:491.874900px;}
.xe{left:594.125550px;}
.x8{left:608.094150px;}
.x24{left:657.208350px;}
.x19{left:658.649550px;}
.xf{left:660.329250px;}
.x25{left:723.412200px;}
.x1a{left:724.853100px;}
.x1{left:779.665050px;}
.x2{left:790.626000px;}
@media print{
.v2{vertical-align:-14.080533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.080533pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.002133pt;}
.ls5{letter-spacing:0.004693pt;}
.ls7{letter-spacing:0.006400pt;}
.ls8{letter-spacing:0.009387pt;}
.ls4{letter-spacing:0.009813pt;}
.ls6{letter-spacing:0.010240pt;}
.lsc{letter-spacing:0.014933pt;}
.ls9{letter-spacing:1.162667pt;}
.lsb{letter-spacing:12.808533pt;}
.ls2{letter-spacing:16.898963pt;}
.ls0{letter-spacing:19.210785pt;}
.ls3{letter-spacing:20.377600pt;}
.ws7{word-spacing:-20.398933pt;}
.ws8{word-spacing:-20.384000pt;}
.ws0{word-spacing:-14.560000pt;}
.ws4{word-spacing:-11.657390pt;}
.ws5{word-spacing:-11.650136pt;}
.ws3{word-spacing:-11.648003pt;}
.ws6{word-spacing:-11.648000pt;}
.ws1{word-spacing:-10.192000pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-11.095253pt;}
._11{margin-left:-9.749333pt;}
._c{margin-left:-8.565333pt;}
._3{margin-left:-7.514347pt;}
._15{margin-left:-6.085947pt;}
._6{margin-left:-5.182720pt;}
._f{margin-left:-3.960000pt;}
._5{margin-left:-2.998160pt;}
._1{margin-left:-1.620267pt;}
._0{width:1.258000pt;}
._4{width:2.266480pt;}
._2{width:3.811947pt;}
._8{width:4.830933pt;}
._e{width:5.844267pt;}
._a{width:7.284960pt;}
._10{width:8.506133pt;}
._9{width:9.468480pt;}
._7{width:10.425600pt;}
._d{width:12.129600pt;}
._12{width:13.434667pt;}
._b{width:16.065600pt;}
._14{width:17.010667pt;}
._18{width:18.981867pt;}
._16{width:21.615920pt;}
._17{width:22.989653pt;}
._1a{width:26.643067pt;}
._19{width:27.556133pt;}
._1c{width:57.024107pt;}
._1b{width:58.149707pt;}
.fs2{font-size:37.333333pt;}
.fs9{font-size:38.010325pt;}
.fs6{font-size:42.666667pt;}
.fsb{font-size:42.666677pt;}
.fs1{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fsc{font-size:54.300460pt;}
.fs7{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:11.931867pt;}
.y5d{bottom:12.147293pt;}
.y8c{bottom:12.265200pt;}
.yab{bottom:12.604133pt;}
.y123{bottom:13.571600pt;}
.y101{bottom:13.571693pt;}
.yd8{bottom:13.598533pt;}
.yd1{bottom:13.598720pt;}
.yfb{bottom:14.494533pt;}
.yeb{bottom:14.494720pt;}
.y27{bottom:14.830133pt;}
.y141{bottom:15.329827pt;}
.yc7{bottom:49.601200pt;}
.y5c{bottom:49.816533pt;}
.y8b{bottom:49.934533pt;}
.yaa{bottom:50.273467pt;}
.y100{bottom:51.240933pt;}
.yd0{bottom:51.267867pt;}
.yea{bottom:52.163867pt;}
.y26{bottom:52.499067pt;}
.y140{bottom:52.999067pt;}
.yc6{bottom:60.268267pt;}
.y5b{bottom:60.483600pt;}
.y8a{bottom:60.601600pt;}
.ya9{bottom:60.940533pt;}
.yff{bottom:61.908000pt;}
.ycf{bottom:61.934933pt;}
.ye9{bottom:62.830933pt;}
.y25{bottom:63.166133pt;}
.y13f{bottom:63.666133pt;}
.yd4{bottom:81.992273pt;}
.yad{bottom:82.804000pt;}
.ye8{bottom:83.466533pt;}
.y11e{bottom:83.518933pt;}
.y89{bottom:84.800267pt;}
.yfa{bottom:85.666400pt;}
.yd9{bottom:87.437867pt;}
.yc5{bottom:88.539867pt;}
.y5a{bottom:88.857333pt;}
.yfe{bottom:92.904400pt;}
.y11d{bottom:96.852267pt;}
.yd3{bottom:98.143733pt;}
.y88{bottom:100.800267pt;}
.yf9{bottom:101.666400pt;}
.y24{bottom:102.148533pt;}
.yac{bottom:102.324000pt;}
.yc4{bottom:104.539867pt;}
.y59{bottom:104.857333pt;}
.yfd{bottom:108.904400pt;}
.y11c{bottom:110.185600pt;}
.yf8{bottom:118.504400pt;}
.yc3{bottom:120.539867pt;}
.y58{bottom:120.857333pt;}
.y11b{bottom:123.518933pt;}
.ye7{bottom:124.904400pt;}
.y23{bottom:128.815467pt;}
.yf7{bottom:134.504400pt;}
.yc2{bottom:136.539867pt;}
.y87{bottom:136.852267pt;}
.y57{bottom:136.857333pt;}
.ye6{bottom:140.904400pt;}
.ya8{bottom:148.800267pt;}
.y11a{bottom:150.185600pt;}
.yf6{bottom:150.504400pt;}
.yc1{bottom:152.539867pt;}
.y86{bottom:152.852267pt;}
.y56{bottom:152.857333pt;}
.y22{bottom:155.483733pt;}
.ye5{bottom:156.904400pt;}
.y119{bottom:163.518933pt;}
.ya7{bottom:164.800267pt;}
.yf5{bottom:166.504400pt;}
.yc0{bottom:168.539867pt;}
.y21{bottom:168.816933pt;}
.y85{bottom:168.852267pt;}
.y55{bottom:168.857333pt;}
.ye4{bottom:172.904400pt;}
.y118{bottom:176.852267pt;}
.ya6{bottom:180.800267pt;}
.y20{bottom:182.150133pt;}
.yf4{bottom:182.504400pt;}
.ybf{bottom:184.539867pt;}
.y84{bottom:184.852267pt;}
.y54{bottom:184.857333pt;}
.ye3{bottom:188.904400pt;}
.y117{bottom:190.185600pt;}
.y1f{bottom:195.483333pt;}
.ya5{bottom:196.800267pt;}
.yf3{bottom:198.504400pt;}
.y83{bottom:200.852267pt;}
.y53{bottom:200.857333pt;}
.y116{bottom:203.518933pt;}
.ye2{bottom:204.904400pt;}
.y1e{bottom:208.816533pt;}
.yf2{bottom:214.504400pt;}
.ybe{bottom:216.539867pt;}
.y115{bottom:216.852267pt;}
.ye1{bottom:220.904400pt;}
.y1d{bottom:222.149733pt;}
.ya4{bottom:228.800267pt;}
.y114{bottom:230.185600pt;}
.ybd{bottom:232.539867pt;}
.y1c{bottom:235.482933pt;}
.y82{bottom:236.904400pt;}
.y52{bottom:236.909467pt;}
.y113{bottom:243.518933pt;}
.ya3{bottom:244.800267pt;}
.ybc{bottom:248.539867pt;}
.y1b{bottom:248.816133pt;}
.y81{bottom:252.904400pt;}
.y51{bottom:252.909467pt;}
.y112{bottom:256.852267pt;}
.ya2{bottom:260.800267pt;}
.y1a{bottom:262.149333pt;}
.ybb{bottom:264.539067pt;}
.y80{bottom:268.904400pt;}
.y50{bottom:268.909467pt;}
.y111{bottom:270.185600pt;}
.yf1{bottom:272.956400pt;}
.y19{bottom:275.482533pt;}
.ya1{bottom:276.800267pt;}
.y110{bottom:283.518933pt;}
.y7f{bottom:284.904400pt;}
.y4f{bottom:284.909467pt;}
.y18{bottom:288.815467pt;}
.yf0{bottom:288.956400pt;}
.ya0{bottom:292.800267pt;}
.y10f{bottom:296.852267pt;}
.yba{bottom:300.591867pt;}
.y7e{bottom:300.904400pt;}
.yef{bottom:304.956400pt;}
.y9f{bottom:308.800267pt;}
.y10e{bottom:310.185600pt;}
.y17{bottom:315.482787pt;}
.y7d{bottom:316.904400pt;}
.y4e{bottom:316.909467pt;}
.yee{bottom:320.956400pt;}
.y10d{bottom:323.518933pt;}
.y9e{bottom:324.800267pt;}
.y16{bottom:328.815987pt;}
.ye0{bottom:332.904400pt;}
.y4d{bottom:332.909467pt;}
.yb9{bottom:336.643867pt;}
.y10c{bottom:336.852267pt;}
.yed{bottom:336.956400pt;}
.y9d{bottom:340.800267pt;}
.y15{bottom:342.149187pt;}
.y7c{bottom:348.904400pt;}
.y4c{bottom:348.909467pt;}
.y10b{bottom:350.185600pt;}
.yb8{bottom:352.643867pt;}
.yec{bottom:352.956400pt;}
.y14{bottom:355.482507pt;}
.y10a{bottom:363.518933pt;}
.y7b{bottom:364.904400pt;}
.y4b{bottom:364.909467pt;}
.yb7{bottom:368.643867pt;}
.y13{bottom:368.815827pt;}
.y9c{bottom:376.852267pt;}
.y7a{bottom:380.904400pt;}
.y4a{bottom:380.909467pt;}
.y12{bottom:382.149147pt;}
.yb6{bottom:384.643867pt;}
.yd7{bottom:384.956400pt;}
.y9b{bottom:392.852267pt;}
.y11{bottom:395.482467pt;}
.y79{bottom:396.904400pt;}
.y49{bottom:396.909467pt;}
.yce{bottom:400.956400pt;}
.y10{bottom:408.815787pt;}
.y9a{bottom:408.852267pt;}
.y78{bottom:412.904400pt;}
.y48{bottom:412.909467pt;}
.yca{bottom:416.583308pt;}
.ycd{bottom:416.956400pt;}
.y122{bottom:419.853733pt;}
.yf{bottom:422.149107pt;}
.y99{bottom:424.852267pt;}
.y77{bottom:428.904400pt;}
.y47{bottom:428.909467pt;}
.yc9{bottom:432.729600pt;}
.ycc{bottom:432.956400pt;}
.ye{bottom:435.482427pt;}
.y121{bottom:435.853733pt;}
.y98{bottom:440.852267pt;}
.yfc{bottom:444.904400pt;}
.y46{bottom:444.909467pt;}
.yd{bottom:448.815747pt;}
.ycb{bottom:448.956400pt;}
.y120{bottom:451.853733pt;}
.y97{bottom:456.852267pt;}
.ydf{bottom:460.904400pt;}
.y45{bottom:460.909467pt;}
.yc{bottom:462.149067pt;}
.y76{bottom:464.956400pt;}
.y96{bottom:472.852267pt;}
.yde{bottom:476.904400pt;}
.y44{bottom:476.909467pt;}
.y75{bottom:480.956400pt;}
.y11f{bottom:483.853733pt;}
.y95{bottom:488.852267pt;}
.ydd{bottom:492.904400pt;}
.y43{bottom:492.909467pt;}
.y74{bottom:496.956400pt;}
.yd2{bottom:497.166400pt;}
.y94{bottom:504.852267pt;}
.ydc{bottom:508.904400pt;}
.y42{bottom:508.909467pt;}
.y73{bottom:512.956400pt;}
.y93{bottom:520.852267pt;}
.ydb{bottom:524.904400pt;}
.y41{bottom:524.909467pt;}
.yb{bottom:527.648000pt;}
.y72{bottom:528.956400pt;}
.y109{bottom:536.852267pt;}
.yda{bottom:540.904400pt;}
.y40{bottom:540.909467pt;}
.y71{bottom:544.956400pt;}
.y13e{bottom:552.315733pt;}
.y108{bottom:552.852267pt;}
.y92{bottom:556.904400pt;}
.y3f{bottom:556.909467pt;}
.y70{bottom:560.956400pt;}
.y13d{bottom:565.649067pt;}
.y107{bottom:568.852267pt;}
.ya{bottom:571.168133pt;}
.y91{bottom:572.904400pt;}
.y6f{bottom:576.956400pt;}
.y13c{bottom:578.982400pt;}
.y106{bottom:584.852267pt;}
.y90{bottom:588.904400pt;}
.y3e{bottom:588.909467pt;}
.y13b{bottom:592.315733pt;}
.y6e{bottom:592.956400pt;}
.y105{bottom:600.852267pt;}
.y8f{bottom:604.904400pt;}
.y3d{bottom:604.909467pt;}
.y13a{bottom:605.649067pt;}
.y9{bottom:607.648000pt;}
.y6d{bottom:608.956400pt;}
.y139{bottom:618.982400pt;}
.y8e{bottom:620.904400pt;}
.y3c{bottom:620.909467pt;}
.y6c{bottom:624.956400pt;}
.y138{bottom:632.315733pt;}
.y104{bottom:636.904400pt;}
.y3b{bottom:636.909467pt;}
.yd6{bottom:640.956400pt;}
.y137{bottom:645.649067pt;}
.y103{bottom:652.904400pt;}
.y3a{bottom:652.909467pt;}
.y6b{bottom:656.956400pt;}
.y136{bottom:658.982400pt;}
.y102{bottom:668.904400pt;}
.y39{bottom:668.909467pt;}
.y135{bottom:672.315733pt;}
.y6a{bottom:672.956400pt;}
.y8{bottom:677.682667pt;}
.y38{bottom:684.909467pt;}
.y134{bottom:685.649067pt;}
.y69{bottom:688.956400pt;}
.y7{bottom:696.882667pt;}
.y133{bottom:698.982400pt;}
.y8d{bottom:704.956400pt;}
.y132{bottom:712.315733pt;}
.y37{bottom:716.909467pt;}
.y68{bottom:720.956400pt;}
.y131{bottom:725.649067pt;}
.y6{bottom:730.908507pt;}
.y36{bottom:732.909467pt;}
.y67{bottom:736.956400pt;}
.y130{bottom:738.982400pt;}
.y2b{bottom:748.763200pt;}
.y35{bottom:748.909467pt;}
.y2{bottom:750.096133pt;}
.y12f{bottom:752.315733pt;}
.y66{bottom:752.956400pt;}
.y34{bottom:764.909467pt;}
.y12e{bottom:765.649067pt;}
.y65{bottom:768.956400pt;}
.y5{bottom:772.241920pt;}
.y12d{bottom:778.982400pt;}
.y33{bottom:780.909467pt;}
.yb5{bottom:784.643867pt;}
.y64{bottom:784.956400pt;}
.y12c{bottom:792.315733pt;}
.y32{bottom:796.909467pt;}
.yb4{bottom:800.643867pt;}
.y63{bottom:800.956400pt;}
.y12b{bottom:805.649067pt;}
.y31{bottom:812.909467pt;}
.y4{bottom:813.575333pt;}
.yb3{bottom:816.643867pt;}
.y62{bottom:816.956400pt;}
.y12a{bottom:818.982400pt;}
.y30{bottom:828.909467pt;}
.y129{bottom:832.315733pt;}
.yb2{bottom:832.643867pt;}
.yd5{bottom:832.956400pt;}
.y2f{bottom:844.909467pt;}
.y128{bottom:845.649067pt;}
.yb1{bottom:848.643867pt;}
.y61{bottom:848.956400pt;}
.y127{bottom:858.982400pt;}
.y2e{bottom:860.909467pt;}
.yb0{bottom:864.643867pt;}
.y60{bottom:864.956400pt;}
.y126{bottom:872.315733pt;}
.y29{bottom:874.310533pt;}
.y2d{bottom:876.909467pt;}
.yaf{bottom:880.643867pt;}
.y5f{bottom:880.956400pt;}
.y125{bottom:885.649067pt;}
.y28{bottom:887.643867pt;}
.y2c{bottom:892.909467pt;}
.yae{bottom:896.643867pt;}
.y5e{bottom:896.956400pt;}
.y124{bottom:898.982400pt;}
.y3{bottom:911.780533pt;}
.y1{bottom:951.168533pt;}
.y2a{bottom:953.649333pt;}
.h4{height:35.875000pt;}
.hd{height:36.525547pt;}
.he{height:41.000000pt;}
.h13{height:41.000010pt;}
.h12{height:41.000061pt;}
.h3{height:43.562500pt;}
.ha{height:46.125000pt;}
.h8{height:47.419467pt;}
.h2{height:51.250000pt;}
.hf{height:51.250405pt;}
.h14{height:52.179348pt;}
.h11{height:55.080000pt;}
.hc{height:56.369667pt;}
.hb{height:56.373453pt;}
.h9{height:56.375000pt;}
.h6{height:61.500000pt;}
.h10{height:71.750000pt;}
.h7{height:82.000000pt;}
.h5{height:133.250000pt;}
.h1{height:1001.333333pt;}
.h0{height:1001.574707pt;}
.w0{width:755.905360pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.x14{left:50.005467pt;}
.x15{left:59.269333pt;}
.x1d{left:75.601600pt;}
.xc{left:76.934933pt;}
.x2b{left:79.817200pt;}
.x5{left:80.996373pt;}
.x7{left:82.030533pt;}
.x21{left:84.570267pt;}
.xd{left:86.427867pt;}
.x2c{left:91.286267pt;}
.x1e{left:94.499680pt;}
.x16{left:132.289467pt;}
.x20{left:133.614373pt;}
.x2a{left:136.505067pt;}
.x1f{left:138.208933pt;}
.x23{left:142.501600pt;}
.x18{left:143.782533pt;}
.x17{left:151.187200pt;}
.x4{left:155.979333pt;}
.x29{left:173.111067pt;}
.x9{left:236.137067pt;}
.x27{left:239.003200pt;}
.xa{left:245.242507pt;}
.x2d{left:260.030000pt;}
.x10{left:268.816389pt;}
.x22{left:293.471675pt;}
.x11{left:296.692533pt;}
.xb{left:304.602453pt;}
.x3{left:307.507200pt;}
.x26{left:324.890123pt;}
.x1b{left:326.170923pt;}
.x2e{left:348.289733pt;}
.x28{left:350.187915pt;}
.x6{left:352.345893pt;}
.x1c{left:354.050187pt;}
.x13{left:430.401237pt;}
.x12{left:437.222133pt;}
.xe{left:528.111600pt;}
.x8{left:540.528133pt;}
.x24{left:584.185200pt;}
.x19{left:585.466267pt;}
.xf{left:586.959333pt;}
.x25{left:643.033067pt;}
.x1a{left:644.313867pt;}
.x1{left:693.035600pt;}
.x2{left:702.778667pt;}
}




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