
    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_5e5dd95cb9e79cca9cbb1cd6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_43d4a1dd9992a2c74e04a3f0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.015137;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_da84dad27063abc862e084d6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.717300;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_0d45dec81688dffd960a7b81.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_ba41fbfe083d97a03e7038f1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.767090;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_09cb9cff1d3a9128a011d9d9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_737580c5cdd4de24a8d929cc.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4d32daa350c7ccc4b44f6b9b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.724609;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_3096b31a1d56ade9c49ee546.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_602409420f48933c3008642f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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_0df3da5500100e0f82daf96f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.015137;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_130a82d628a37765c6402154.woff')format("woff");}.ffc{font-family:ffc;line-height:0.961914;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.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.va{vertical-align:-55.980000px;}
.v2{vertical-align:-29.520000px;}
.v1{vertical-align:-26.640000px;}
.v9{vertical-align:-23.040000px;}
.v7{vertical-align:-21.600008px;}
.v5{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.340000px;}
.vc{vertical-align:21.600000px;}
.v6{vertical-align:26.928000px;}
.vb{vertical-align:28.800000px;}
.v4{vertical-align:32.400000px;}
.v8{vertical-align:54.000000px;}
.ls14{letter-spacing:-0.395400px;}
.lsd{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.348600px;}
.ls3{letter-spacing:-0.333600px;}
.ls4{letter-spacing:-0.294000px;}
.lsb{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.208200px;}
.ls1a{letter-spacing:-0.189600px;}
.ls1d{letter-spacing:-0.181200px;}
.lse{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.145200px;}
.lsf{letter-spacing:-0.107400px;}
.ls12{letter-spacing:-0.090000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls21{letter-spacing:-0.061800px;}
.ls20{letter-spacing:-0.059040px;}
.lsa{letter-spacing:-0.011940px;}
.ls22{letter-spacing:-0.000720px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.018720px;}
.ls1{letter-spacing:0.023640px;}
.ls2{letter-spacing:0.026520px;}
.ls8{letter-spacing:0.066000px;}
.ls9{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.111000px;}
.ls11{letter-spacing:0.208200px;}
.ls6{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.219000px;}
.ls13{letter-spacing:0.238200px;}
.ls10{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.294000px;}
.ls5{letter-spacing:0.334200px;}
.ls1e{letter-spacing:0.360000px;}
.ls17{letter-spacing:125.206560px;}
.ls15{letter-spacing:1196.787456px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-120.240000px;}
.ws3{word-spacing:-108.000000px;}
.ws27{word-spacing:-90.072000px;}
.ws1b{word-spacing:-90.000000px;}
.ws17{word-spacing:-77.760000px;}
.ws4{word-spacing:-54.185760px;}
.ws9{word-spacing:-40.500000px;}
.ws8{word-spacing:-40.320000px;}
.wsb{word-spacing:-37.913760px;}
.wsa{word-spacing:-37.806360px;}
.ws1{word-spacing:-33.845760px;}
.wsf{word-spacing:-27.206784px;}
.ws10{word-spacing:-27.174240px;}
.ws26{word-spacing:-27.173520px;}
.ws25{word-spacing:-27.115200px;}
.ws5{word-spacing:-27.024060px;}
.ws1d{word-spacing:-27.000000px;}
.ws1f{word-spacing:-26.621280px;}
.ws20{word-spacing:-26.431680px;}
.ws1a{word-spacing:-25.020000px;}
.ws2{word-spacing:-24.408000px;}
.ws24{word-spacing:-20.372544px;}
.ws23{word-spacing:-20.160000px;}
.ws1c{word-spacing:-20.056032px;}
.ws13{word-spacing:-20.016000px;}
.ws22{word-spacing:-19.944000px;}
.ws18{word-spacing:-19.476000px;}
.ws11{word-spacing:-19.440000px;}
.wsd{word-spacing:-18.000000px;}
.ws21{word-spacing:-17.465640px;}
.ws14{word-spacing:-16.613280px;}
.ws15{word-spacing:-11.208960px;}
.wsc{word-spacing:-0.132000px;}
.ws6{word-spacing:-0.120240px;}
.ws0{word-spacing:0.000000px;}
.ws1e{word-spacing:12.729960px;}
.wse{word-spacing:72.396000px;}
.ws12{word-spacing:135.726000px;}
.ws19{word-spacing:483.384000px;}
.ws16{word-spacing:2810.644176px;}
._e{margin-left:-4193.400000px;}
._6{margin-left:-12.538080px;}
._1{margin-left:-10.152000px;}
._3{margin-left:-7.560000px;}
._4{margin-left:-5.616000px;}
._8{margin-left:-4.487760px;}
._7{margin-left:-2.989440px;}
._2{margin-left:-1.656000px;}
._0{width:1.080000px;}
._5{width:2.496000px;}
._9{width:4.033920px;}
._c{width:99.396000px;}
._d{width:108.036000px;}
._f{width:173.316000px;}
._10{width:523.284000px;}
._a{width:1263.541440px;}
._b{width:1532.044656px;}
.fc4{color:rgb(0,32,96);}
.fc2{color:transparent;}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:40.320000px;}
.fs1d{font-size:48.240000px;}
.fs14{font-size:54.000000px;}
.fs16{font-size:59.760000px;}
.fs1c{font-size:64.080000px;}
.fs1b{font-size:64.224000px;}
.fsc{font-size:72.000000px;}
.fs15{font-size:72.144000px;}
.fs13{font-size:77.760000px;}
.fs18{font-size:77.904000px;}
.fsd{font-size:79.920000px;}
.fs19{font-size:90.000000px;}
.fs1e{font-size:90.144000px;}
.fse{font-size:95.760000px;}
.fs1a{font-size:95.904000px;}
.fs0{font-size:108.000000px;}
.fs1{font-size:108.144000px;}
.fs9{font-size:120.240000px;}
.fsa{font-size:120.384000px;}
.fs2{font-size:144.000000px;}
.fs7{font-size:149.760000px;}
.fs8{font-size:149.904000px;}
.fs11{font-size:167.760000px;}
.fs12{font-size:167.904000px;}
.fsf{font-size:180.000000px;}
.fs10{font-size:180.144000px;}
.fsb{font-size:210.240000px;}
.fs6{font-size:239.760000px;}
.fs5{font-size:239.904000px;}
.fs3{font-size:264.240000px;}
.fs4{font-size:264.384000px;}
.fs1f{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y77{bottom:6.990000px;}
.y15{bottom:10.260000px;}
.y75{bottom:28.290000px;}
.y6a{bottom:28.410000px;}
.y61{bottom:43.170000px;}
.y14{bottom:46.296000px;}
.y6f{bottom:49.755000px;}
.y5{bottom:71.532000px;}
.y62{bottom:78.690000px;}
.y13{bottom:82.656000px;}
.y76{bottom:97.950000px;}
.y70{bottom:101.700000px;}
.y9c{bottom:108.036000px;}
.y4{bottom:114.732000px;}
.y63{bottom:120.570000px;}
.y5f{bottom:135.216000px;}
.y4a{bottom:136.548000px;}
.y6d{bottom:139.032000px;}
.y9b{bottom:140.436000px;}
.y6c{bottom:141.804000px;}
.y71{bottom:153.690000px;}
.y12{bottom:162.330000px;}
.y64{bottom:162.390000px;}
.y18{bottom:168.375000px;}
.y97{bottom:170.970000px;}
.y9a{bottom:172.875000px;}
.y65{bottom:204.270000px;}
.y72{bottom:205.665000px;}
.y96{bottom:206.970000px;}
.y11{bottom:207.330000px;}
.y6b{bottom:209.190000px;}
.y7c{bottom:210.090000px;}
.y17{bottom:213.375000px;}
.y7b{bottom:231.810000px;}
.y95{bottom:243.000000px;}
.y8{bottom:244.590000px;}
.y66{bottom:246.135000px;}
.y10{bottom:252.360000px;}
.y7a{bottom:253.545000px;}
.y73{bottom:257.610000px;}
.y16{bottom:258.375000px;}
.y49{bottom:261.285000px;}
.y44{bottom:270.255000px;}
.y34{bottom:271.410000px;}
.y24{bottom:274.785000px;}
.y79{bottom:275.295000px;}
.y60{bottom:279.000000px;}
.y67{bottom:287.970000px;}
.y4e{bottom:291.135000px;}
.y48{bottom:293.685000px;}
.y78{bottom:297.030000px;}
.yf{bottom:297.360000px;}
.y23{bottom:307.185000px;}
.y74{bottom:309.600000px;}
.y43{bottom:311.655000px;}
.y94{bottom:315.000000px;}
.y6e{bottom:315.180000px;}
.y7{bottom:323.820000px;}
.y88{bottom:326.235000px;}
.y68{bottom:329.835000px;}
.y22{bottom:339.450000px;}
.y42{bottom:340.455000px;}
.ye{bottom:342.360000px;}
.y54{bottom:356.790000px;}
.y69{bottom:371.700000px;}
.y47{bottom:375.270000px;}
.y2e{bottom:381.165000px;}
.y5d{bottom:383.190000px;}
.y93{bottom:386.385000px;}
.y53{bottom:389.190000px;}
.y41{bottom:391.575000px;}
.y81{bottom:399.675000px;}
.y21{bottom:401.730000px;}
.y6{bottom:403.020000px;}
.y2d{bottom:413.565000px;}
.y52{bottom:421.590000px;}
.y20{bottom:424.110000px;}
.y40{bottom:440.280000px;}
.y2b{bottom:443.415000px;}
.y80{bottom:444.705000px;}
.y2c{bottom:445.605000px;}
.y51{bottom:453.990000px;}
.y3a{bottom:454.890000px;}
.y99{bottom:458.205000px;}
.y1f{bottom:469.155000px;}
.y50{bottom:486.435000px;}
.y39{bottom:487.290000px;}
.y2a{bottom:488.415000px;}
.y7f{bottom:489.705000px;}
.y8b{bottom:493.665000px;}
.y3d{bottom:497.595000px;}
.y1b{bottom:511.845000px;}
.y1e{bottom:514.155000px;}
.y4f{bottom:518.835000px;}
.y92{bottom:519.585000px;}
.y38{bottom:519.690000px;}
.y8a{bottom:523.230000px;}
.y3f{bottom:527.400000px;}
.y3{bottom:529.950000px;}
.y29{bottom:533.445000px;}
.y7e{bottom:534.705000px;}
.y33{bottom:536.940000px;}
.y91{bottom:546.585000px;}
.y8d{bottom:551.235000px;}
.y37{bottom:552.090000px;}
.y98{bottom:555.450000px;}
.y1a{bottom:556.845000px;}
.yb{bottom:558.690000px;}
.y1d{bottom:559.155000px;}
.y2{bottom:562.395000px;}
.y4d{bottom:563.325000px;}
.y32{bottom:569.340000px;}
.y8c{bottom:573.015000px;}
.y5a{bottom:573.375000px;}
.y90{bottom:573.585000px;}
.y28{bottom:578.445000px;}
.y7d{bottom:579.705000px;}
.y36{bottom:584.490000px;}
.ya{bottom:591.090000px;}
.y1{bottom:594.795000px;}
.y3b{bottom:599.505000px;}
.y3c{bottom:600.045000px;}
.y19{bottom:601.890000px;}
.y1c{bottom:604.155000px;}
.y59{bottom:605.775000px;}
.y4c{bottom:613.725000px;}
.y31{bottom:616.350000px;}
.y86{bottom:616.680000px;}
.y35{bottom:616.935000px;}
.y84{bottom:620.025000px;}
.y3e{bottom:620.850000px;}
.y27{bottom:623.445000px;}
.y9{bottom:623.490000px;}
.y58{bottom:638.175000px;}
.y8f{bottom:644.430000px;}
.y85{bottom:649.080000px;}
.y83{bottom:652.470000px;}
.y57{bottom:670.605000px;}
.yd{bottom:672.735000px;}
.y46{bottom:678.885000px;}
.y5c{bottom:679.830000px;}
.y55{bottom:684.180000px;}
.y8e{bottom:689.430000px;}
.y30{bottom:690.915000px;}
.y26{bottom:692.025000px;}
.y87{bottom:702.825000px;}
.y56{bottom:703.005000px;}
.y4b{bottom:744.045000px;}
.yc{bottom:744.765000px;}
.y5e{bottom:753.765000px;}
.y82{bottom:755.610000px;}
.y89{bottom:755.925000px;}
.y45{bottom:756.150000px;}
.y5b{bottom:759.165000px;}
.y2f{bottom:762.915000px;}
.y25{bottom:764.025000px;}
.h20{height:39.471680px;}
.h22{height:43.681992px;}
.h16{height:52.628906px;}
.h21{height:52.734164px;}
.h1e{height:56.269688px;}
.h24{height:56.373891px;}
.h2b{height:56.861367px;}
.h26{height:65.786133px;}
.h28{height:69.996445px;}
.h29{height:70.101703px;}
.h12{height:70.510781px;}
.h2a{height:75.639727px;}
.h19{height:78.152344px;}
.h1a{height:78.256547px;}
.h30{height:78.943359px;}
.h2f{height:79.048617px;}
.h1{height:79.523438px;}
.h2{height:79.629469px;}
.h23{height:83.197688px;}
.h1b{height:84.501562px;}
.hc{height:84.604188px;}
.hb{height:84.705510px;}
.h2c{height:89.516602px;}
.h2d{height:89.659828px;}
.ha{height:90.884531px;}
.h3{height:104.203125px;}
.hf{height:107.419922px;}
.h13{height:110.378531px;}
.h10{height:110.583984px;}
.he{height:111.451430px;}
.h11{height:119.594180px;}
.h1d{height:123.116836px;}
.h1c{height:123.264281px;}
.h8{height:153.343125px;}
.h9{height:153.490570px;}
.h17{height:171.773789px;}
.h18{height:171.921234px;}
.h14{height:184.306641px;}
.h27{height:184.454086px;}
.h4{height:185.926568px;}
.h5{height:186.027891px;}
.h15{height:195.646641px;}
.hd{height:215.270156px;}
.h2e{height:243.474609px;}
.h7{height:245.496445px;}
.h6{height:245.643891px;}
.h25{height:332.460000px;}
.h1f{height:456.840000px;}
.h0{height:810.000000px;}
.w3{width:570.780000px;}
.w2{width:797.400000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5c{left:5.255979px;}
.x2{left:10.619979px;}
.x49{left:16.595988px;}
.x51{left:23.505000px;}
.x44{left:24.875988px;}
.x4{left:32.759979px;}
.x4f{left:35.640000px;}
.x6{left:39.491979px;}
.x3f{left:42.731979px;}
.x4e{left:45.645000px;}
.x23{left:48.203979px;}
.x64{left:51.299979px;}
.xe{left:52.379979px;}
.x5{left:53.531979px;}
.x10{left:56.519979px;}
.x1d{left:60.767979px;}
.x1{left:61.919979px;}
.x47{left:65.843988px;}
.x43{left:70.847988px;}
.x20{left:73.511979px;}
.x46{left:80.855988px;}
.xd{left:82.619979px;}
.x38{left:84.707979px;}
.x42{left:85.895988px;}
.x45{left:88.883988px;}
.x5a{left:96.407979px;}
.x21{left:111.311979px;}
.x7{left:114.551979px;}
.xf{left:119.159979px;}
.x50{left:136.545000px;}
.x18{left:153.254979px;}
.x1e{left:165.779979px;}
.x3{left:167.399979px;}
.x2f{left:177.149979px;}
.x41{left:201.959988px;}
.x52{left:219.855000px;}
.x57{left:228.134979px;}
.x36{left:231.659979px;}
.x3c{left:238.889979px;}
.xb{left:239.939979px;}
.xc{left:241.919979px;}
.x33{left:244.949979px;}
.x2d{left:248.834979px;}
.x24{left:264.629979px;}
.x11{left:267.839979px;}
.x40{left:291.779988px;}
.x3b{left:384.449979px;}
.x2e{left:393.689979px;}
.x5d{left:407.729979px;}
.x4a{left:411.509979px;}
.x13{left:443.549979px;}
.x48{left:444.959988px;}
.x31{left:481.469979px;}
.x30{left:498.959979px;}
.x66{left:514.514979px;}
.x5b{left:528.299979px;}
.x65{left:545.294979px;}
.x22{left:546.449979px;}
.x67{left:551.054979px;}
.x14{left:552.449979px;}
.x63{left:555.404979px;}
.x2b{left:582.089979px;}
.x58{left:593.999979px;}
.x39{left:602.489979px;}
.x3a{left:636.329979px;}
.x5f{left:645.299979px;}
.x28{left:660.269979px;}
.x4c{left:699.089979px;}
.x27{left:708.449979px;}
.x1b{left:728.024979px;}
.x25{left:741.704979px;}
.x5e{left:743.009979px;}
.x1a{left:744.044979px;}
.x19{left:758.264979px;}
.x15{left:773.819979px;}
.x16{left:786.419979px;}
.x4d{left:816.300000px;}
.x2a{left:842.549979px;}
.x29{left:844.169979px;}
.x1c{left:912.704979px;}
.x1f{left:922.349979px;}
.x4b{left:923.654979px;}
.x3d{left:930.854979px;}
.x53{left:935.669979px;}
.x34{left:940.469979px;}
.x3e{left:951.584979px;}
.x37{left:961.994979px;}
.x17{left:974.009979px;}
.x35{left:979.889979px;}
.x55{left:986.429979px;}
.x8{left:992.084979px;}
.x54{left:1000.109979px;}
.x9{left:1004.684979px;}
.x56{left:1026.029979px;}
.x26{left:1038.704979px;}
.x32{left:1042.169979px;}
.xa{left:1063.409979px;}
.x59{left:1119.599979px;}
.x12{left:1174.964979px;}
.x2c{left:1216.049979px;}
.x61{left:1236.344979px;}
.x60{left:1243.184979px;}
.x62{left:1245.344979px;}
@media print{
.va{vertical-align:-49.760000pt;}
.v2{vertical-align:-26.240000pt;}
.v1{vertical-align:-23.680000pt;}
.v9{vertical-align:-20.480000pt;}
.v7{vertical-align:-19.200007pt;}
.v5{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.080000pt;}
.vc{vertical-align:19.200000pt;}
.v6{vertical-align:23.936000pt;}
.vb{vertical-align:25.600000pt;}
.v4{vertical-align:28.800000pt;}
.v8{vertical-align:48.000000pt;}
.ls14{letter-spacing:-0.351467pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.309867pt;}
.ls3{letter-spacing:-0.296533pt;}
.ls4{letter-spacing:-0.261333pt;}
.lsb{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.185067pt;}
.ls1a{letter-spacing:-0.168533pt;}
.ls1d{letter-spacing:-0.161067pt;}
.lse{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.129067pt;}
.lsf{letter-spacing:-0.095467pt;}
.ls12{letter-spacing:-0.080000pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls21{letter-spacing:-0.054933pt;}
.ls20{letter-spacing:-0.052480pt;}
.lsa{letter-spacing:-0.010613pt;}
.ls22{letter-spacing:-0.000640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.016640pt;}
.ls1{letter-spacing:0.021013pt;}
.ls2{letter-spacing:0.023573pt;}
.ls8{letter-spacing:0.058667pt;}
.ls9{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.098667pt;}
.ls11{letter-spacing:0.185067pt;}
.ls6{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.194667pt;}
.ls13{letter-spacing:0.211733pt;}
.ls10{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.261333pt;}
.ls5{letter-spacing:0.297067pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls17{letter-spacing:111.294720pt;}
.ls15{letter-spacing:1063.811072pt;}
.ws7{word-spacing:-106.880000pt;}
.ws3{word-spacing:-96.000000pt;}
.ws27{word-spacing:-80.064000pt;}
.ws1b{word-spacing:-80.000000pt;}
.ws17{word-spacing:-69.120000pt;}
.ws4{word-spacing:-48.165120pt;}
.ws9{word-spacing:-36.000000pt;}
.ws8{word-spacing:-35.840000pt;}
.wsb{word-spacing:-33.701120pt;}
.wsa{word-spacing:-33.605653pt;}
.ws1{word-spacing:-30.085120pt;}
.wsf{word-spacing:-24.183808pt;}
.ws10{word-spacing:-24.154880pt;}
.ws26{word-spacing:-24.154240pt;}
.ws25{word-spacing:-24.102400pt;}
.ws5{word-spacing:-24.021387pt;}
.ws1d{word-spacing:-24.000000pt;}
.ws1f{word-spacing:-23.663360pt;}
.ws20{word-spacing:-23.494827pt;}
.ws1a{word-spacing:-22.240000pt;}
.ws2{word-spacing:-21.696000pt;}
.ws24{word-spacing:-18.108928pt;}
.ws23{word-spacing:-17.920000pt;}
.ws1c{word-spacing:-17.827584pt;}
.ws13{word-spacing:-17.792000pt;}
.ws22{word-spacing:-17.728000pt;}
.ws18{word-spacing:-17.312000pt;}
.ws11{word-spacing:-17.280000pt;}
.wsd{word-spacing:-16.000000pt;}
.ws21{word-spacing:-15.525013pt;}
.ws14{word-spacing:-14.767360pt;}
.ws15{word-spacing:-9.963520pt;}
.wsc{word-spacing:-0.117333pt;}
.ws6{word-spacing:-0.106880pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e{word-spacing:11.315520pt;}
.wse{word-spacing:64.352000pt;}
.ws12{word-spacing:120.645333pt;}
.ws19{word-spacing:429.674667pt;}
.ws16{word-spacing:2498.350379pt;}
._e{margin-left:-3727.466667pt;}
._6{margin-left:-11.144960pt;}
._1{margin-left:-9.024000pt;}
._3{margin-left:-6.720000pt;}
._4{margin-left:-4.992000pt;}
._8{margin-left:-3.989120pt;}
._7{margin-left:-2.657280pt;}
._2{margin-left:-1.472000pt;}
._0{width:0.960000pt;}
._5{width:2.218667pt;}
._9{width:3.585707pt;}
._c{width:88.352000pt;}
._d{width:96.032000pt;}
._f{width:154.058667pt;}
._10{width:465.141333pt;}
._a{width:1123.147947pt;}
._b{width:1361.817472pt;}
.fs17{font-size:35.840000pt;}
.fs1d{font-size:42.880000pt;}
.fs14{font-size:48.000000pt;}
.fs16{font-size:53.120000pt;}
.fs1c{font-size:56.960000pt;}
.fs1b{font-size:57.088000pt;}
.fsc{font-size:64.000000pt;}
.fs15{font-size:64.128000pt;}
.fs13{font-size:69.120000pt;}
.fs18{font-size:69.248000pt;}
.fsd{font-size:71.040000pt;}
.fs19{font-size:80.000000pt;}
.fs1e{font-size:80.128000pt;}
.fse{font-size:85.120000pt;}
.fs1a{font-size:85.248000pt;}
.fs0{font-size:96.000000pt;}
.fs1{font-size:96.128000pt;}
.fs9{font-size:106.880000pt;}
.fsa{font-size:107.008000pt;}
.fs2{font-size:128.000000pt;}
.fs7{font-size:133.120000pt;}
.fs8{font-size:133.248000pt;}
.fs11{font-size:149.120000pt;}
.fs12{font-size:149.248000pt;}
.fsf{font-size:160.000000pt;}
.fs10{font-size:160.128000pt;}
.fsb{font-size:186.880000pt;}
.fs6{font-size:213.120000pt;}
.fs5{font-size:213.248000pt;}
.fs3{font-size:234.880000pt;}
.fs4{font-size:235.008000pt;}
.fs1f{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:6.213333pt;}
.y15{bottom:9.120000pt;}
.y75{bottom:25.146667pt;}
.y6a{bottom:25.253333pt;}
.y61{bottom:38.373333pt;}
.y14{bottom:41.152000pt;}
.y6f{bottom:44.226667pt;}
.y5{bottom:63.584000pt;}
.y62{bottom:69.946667pt;}
.y13{bottom:73.472000pt;}
.y76{bottom:87.066667pt;}
.y70{bottom:90.400000pt;}
.y9c{bottom:96.032000pt;}
.y4{bottom:101.984000pt;}
.y63{bottom:107.173333pt;}
.y5f{bottom:120.192000pt;}
.y4a{bottom:121.376000pt;}
.y6d{bottom:123.584000pt;}
.y9b{bottom:124.832000pt;}
.y6c{bottom:126.048000pt;}
.y71{bottom:136.613333pt;}
.y12{bottom:144.293333pt;}
.y64{bottom:144.346667pt;}
.y18{bottom:149.666667pt;}
.y97{bottom:151.973333pt;}
.y9a{bottom:153.666667pt;}
.y65{bottom:181.573333pt;}
.y72{bottom:182.813333pt;}
.y96{bottom:183.973333pt;}
.y11{bottom:184.293333pt;}
.y6b{bottom:185.946667pt;}
.y7c{bottom:186.746667pt;}
.y17{bottom:189.666667pt;}
.y7b{bottom:206.053333pt;}
.y95{bottom:216.000000pt;}
.y8{bottom:217.413333pt;}
.y66{bottom:218.786667pt;}
.y10{bottom:224.320000pt;}
.y7a{bottom:225.373333pt;}
.y73{bottom:228.986667pt;}
.y16{bottom:229.666667pt;}
.y49{bottom:232.253333pt;}
.y44{bottom:240.226667pt;}
.y34{bottom:241.253333pt;}
.y24{bottom:244.253333pt;}
.y79{bottom:244.706667pt;}
.y60{bottom:248.000000pt;}
.y67{bottom:255.973333pt;}
.y4e{bottom:258.786667pt;}
.y48{bottom:261.053333pt;}
.y78{bottom:264.026667pt;}
.yf{bottom:264.320000pt;}
.y23{bottom:273.053333pt;}
.y74{bottom:275.200000pt;}
.y43{bottom:277.026667pt;}
.y94{bottom:280.000000pt;}
.y6e{bottom:280.160000pt;}
.y7{bottom:287.840000pt;}
.y88{bottom:289.986667pt;}
.y68{bottom:293.186667pt;}
.y22{bottom:301.733333pt;}
.y42{bottom:302.626667pt;}
.ye{bottom:304.320000pt;}
.y54{bottom:317.146667pt;}
.y69{bottom:330.400000pt;}
.y47{bottom:333.573333pt;}
.y2e{bottom:338.813333pt;}
.y5d{bottom:340.613333pt;}
.y93{bottom:343.453333pt;}
.y53{bottom:345.946667pt;}
.y41{bottom:348.066667pt;}
.y81{bottom:355.266667pt;}
.y21{bottom:357.093333pt;}
.y6{bottom:358.240000pt;}
.y2d{bottom:367.613333pt;}
.y52{bottom:374.746667pt;}
.y20{bottom:376.986667pt;}
.y40{bottom:391.360000pt;}
.y2b{bottom:394.146667pt;}
.y80{bottom:395.293333pt;}
.y2c{bottom:396.093333pt;}
.y51{bottom:403.546667pt;}
.y3a{bottom:404.346667pt;}
.y99{bottom:407.293333pt;}
.y1f{bottom:417.026667pt;}
.y50{bottom:432.386667pt;}
.y39{bottom:433.146667pt;}
.y2a{bottom:434.146667pt;}
.y7f{bottom:435.293333pt;}
.y8b{bottom:438.813333pt;}
.y3d{bottom:442.306667pt;}
.y1b{bottom:454.973333pt;}
.y1e{bottom:457.026667pt;}
.y4f{bottom:461.186667pt;}
.y92{bottom:461.853333pt;}
.y38{bottom:461.946667pt;}
.y8a{bottom:465.093333pt;}
.y3f{bottom:468.800000pt;}
.y3{bottom:471.066667pt;}
.y29{bottom:474.173333pt;}
.y7e{bottom:475.293333pt;}
.y33{bottom:477.280000pt;}
.y91{bottom:485.853333pt;}
.y8d{bottom:489.986667pt;}
.y37{bottom:490.746667pt;}
.y98{bottom:493.733333pt;}
.y1a{bottom:494.973333pt;}
.yb{bottom:496.613333pt;}
.y1d{bottom:497.026667pt;}
.y2{bottom:499.906667pt;}
.y4d{bottom:500.733333pt;}
.y32{bottom:506.080000pt;}
.y8c{bottom:509.346667pt;}
.y5a{bottom:509.666667pt;}
.y90{bottom:509.853333pt;}
.y28{bottom:514.173333pt;}
.y7d{bottom:515.293333pt;}
.y36{bottom:519.546667pt;}
.ya{bottom:525.413333pt;}
.y1{bottom:528.706667pt;}
.y3b{bottom:532.893333pt;}
.y3c{bottom:533.373333pt;}
.y19{bottom:535.013333pt;}
.y1c{bottom:537.026667pt;}
.y59{bottom:538.466667pt;}
.y4c{bottom:545.533333pt;}
.y31{bottom:547.866667pt;}
.y86{bottom:548.160000pt;}
.y35{bottom:548.386667pt;}
.y84{bottom:551.133333pt;}
.y3e{bottom:551.866667pt;}
.y27{bottom:554.173333pt;}
.y9{bottom:554.213333pt;}
.y58{bottom:567.266667pt;}
.y8f{bottom:572.826667pt;}
.y85{bottom:576.960000pt;}
.y83{bottom:579.973333pt;}
.y57{bottom:596.093333pt;}
.yd{bottom:597.986667pt;}
.y46{bottom:603.453333pt;}
.y5c{bottom:604.293333pt;}
.y55{bottom:608.160000pt;}
.y8e{bottom:612.826667pt;}
.y30{bottom:614.146667pt;}
.y26{bottom:615.133333pt;}
.y87{bottom:624.733333pt;}
.y56{bottom:624.893333pt;}
.y4b{bottom:661.373333pt;}
.yc{bottom:662.013333pt;}
.y5e{bottom:670.013333pt;}
.y82{bottom:671.653333pt;}
.y89{bottom:671.933333pt;}
.y45{bottom:672.133333pt;}
.y5b{bottom:674.813333pt;}
.y2f{bottom:678.146667pt;}
.y25{bottom:679.133333pt;}
.h20{height:35.085938pt;}
.h22{height:38.828437pt;}
.h16{height:46.781250pt;}
.h21{height:46.874812pt;}
.h1e{height:50.017500pt;}
.h24{height:50.110125pt;}
.h2b{height:50.543438pt;}
.h26{height:58.476563pt;}
.h28{height:62.219062pt;}
.h29{height:62.312625pt;}
.h12{height:62.676250pt;}
.h2a{height:67.235313pt;}
.h19{height:69.468750pt;}
.h1a{height:69.561375pt;}
.h30{height:70.171875pt;}
.h2f{height:70.265437pt;}
.h1{height:70.687500pt;}
.h2{height:70.781750pt;}
.h23{height:73.953500pt;}
.h1b{height:75.112500pt;}
.hc{height:75.203722pt;}
.hb{height:75.293787pt;}
.h2c{height:79.570312pt;}
.h2d{height:79.697625pt;}
.ha{height:80.786250pt;}
.h3{height:92.625000pt;}
.hf{height:95.484375pt;}
.h13{height:98.114250pt;}
.h10{height:98.296875pt;}
.he{height:99.067937pt;}
.h11{height:106.305937pt;}
.h1d{height:109.437187pt;}
.h1c{height:109.568250pt;}
.h8{height:136.305000pt;}
.h9{height:136.436062pt;}
.h17{height:152.687812pt;}
.h18{height:152.818875pt;}
.h14{height:163.828125pt;}
.h27{height:163.959187pt;}
.h4{height:165.268061pt;}
.h5{height:165.358125pt;}
.h15{height:173.908125pt;}
.hd{height:191.351250pt;}
.h2e{height:216.421875pt;}
.h7{height:218.219062pt;}
.h6{height:218.350125pt;}
.h25{height:295.520000pt;}
.h1f{height:406.080000pt;}
.h0{height:720.000000pt;}
.w3{width:507.360000pt;}
.w2{width:708.800000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5c{left:4.671981pt;}
.x2{left:9.439981pt;}
.x49{left:14.751989pt;}
.x51{left:20.893333pt;}
.x44{left:22.111989pt;}
.x4{left:29.119981pt;}
.x4f{left:31.680000pt;}
.x6{left:35.103981pt;}
.x3f{left:37.983981pt;}
.x4e{left:40.573333pt;}
.x23{left:42.847981pt;}
.x64{left:45.599981pt;}
.xe{left:46.559981pt;}
.x5{left:47.583981pt;}
.x10{left:50.239981pt;}
.x1d{left:54.015981pt;}
.x1{left:55.039981pt;}
.x47{left:58.527989pt;}
.x43{left:62.975989pt;}
.x20{left:65.343981pt;}
.x46{left:71.871989pt;}
.xd{left:73.439981pt;}
.x38{left:75.295981pt;}
.x42{left:76.351989pt;}
.x45{left:79.007989pt;}
.x5a{left:85.695981pt;}
.x21{left:98.943981pt;}
.x7{left:101.823981pt;}
.xf{left:105.919981pt;}
.x50{left:121.373333pt;}
.x18{left:136.226648pt;}
.x1e{left:147.359981pt;}
.x3{left:148.799981pt;}
.x2f{left:157.466648pt;}
.x41{left:179.519989pt;}
.x52{left:195.426667pt;}
.x57{left:202.786648pt;}
.x36{left:205.919981pt;}
.x3c{left:212.346648pt;}
.xb{left:213.279981pt;}
.xc{left:215.039981pt;}
.x33{left:217.733314pt;}
.x2d{left:221.186648pt;}
.x24{left:235.226648pt;}
.x11{left:238.079981pt;}
.x40{left:259.359989pt;}
.x3b{left:341.733314pt;}
.x2e{left:349.946648pt;}
.x5d{left:362.426648pt;}
.x4a{left:365.786648pt;}
.x13{left:394.266648pt;}
.x48{left:395.519989pt;}
.x31{left:427.973314pt;}
.x30{left:443.519981pt;}
.x66{left:457.346648pt;}
.x5b{left:469.599981pt;}
.x65{left:484.706648pt;}
.x22{left:485.733314pt;}
.x67{left:489.826648pt;}
.x14{left:491.066648pt;}
.x63{left:493.693314pt;}
.x2b{left:517.413314pt;}
.x58{left:527.999981pt;}
.x39{left:535.546648pt;}
.x3a{left:565.626648pt;}
.x5f{left:573.599981pt;}
.x28{left:586.906648pt;}
.x4c{left:621.413314pt;}
.x27{left:629.733314pt;}
.x1b{left:647.133314pt;}
.x25{left:659.293314pt;}
.x5e{left:660.453314pt;}
.x1a{left:661.373314pt;}
.x19{left:674.013314pt;}
.x15{left:687.839981pt;}
.x16{left:699.039981pt;}
.x4d{left:725.600000pt;}
.x2a{left:748.933314pt;}
.x29{left:750.373314pt;}
.x1c{left:811.293314pt;}
.x1f{left:819.866648pt;}
.x4b{left:821.026648pt;}
.x3d{left:827.426648pt;}
.x53{left:831.706648pt;}
.x34{left:835.973314pt;}
.x3e{left:845.853314pt;}
.x37{left:855.106648pt;}
.x17{left:865.786648pt;}
.x35{left:871.013314pt;}
.x55{left:876.826648pt;}
.x8{left:881.853314pt;}
.x54{left:888.986648pt;}
.x9{left:893.053314pt;}
.x56{left:912.026648pt;}
.x26{left:923.293314pt;}
.x32{left:926.373314pt;}
.xa{left:945.253314pt;}
.x59{left:995.199981pt;}
.x12{left:1044.413314pt;}
.x2c{left:1080.933314pt;}
.x61{left:1098.973314pt;}
.x60{left:1105.053314pt;}
.x62{left:1106.973314pt;}
}




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