
    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_0c012fed98dc7a393580cd34.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.997070;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_0bd41f1ce35d765c31fcead6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.127930;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_f1b1256bc04c8eef67178690.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.127930;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_90f25e334a396b4c89c8415a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4afbf0a8097f98e616062884.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.051270;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_73ac0e25d75f38780755e54b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.051270;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_f78aa317835206056971d313.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_34442fc2b5416fc5265359b3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b6770609aa1d38b576b78bc5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c0d6357f6f66d1d183cd74b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-34.140000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:64.800000px;}
.v2{vertical-align:76.020000px;}
.ls1d{letter-spacing:-0.367200px;}
.ls12{letter-spacing:-0.364800px;}
.ls2{letter-spacing:-0.339600px;}
.ls1c{letter-spacing:-0.324000px;}
.lsc{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.243600px;}
.ls20{letter-spacing:-0.148800px;}
.lsf{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.124200px;}
.ls10{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.018000px;}
.ls1e{letter-spacing:-0.015240px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000003px;}
.ls3{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.210000px;}
.lsb{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.368400px;}
.ls1f{letter-spacing:0.432000px;}
.ls6{letter-spacing:64.893600px;}
.ls7{letter-spacing:64.980000px;}
.ls9{letter-spacing:91.620000px;}
.ls1a{letter-spacing:97.200000px;}
.ls8{letter-spacing:105.225600px;}
.ls16{letter-spacing:105.249600px;}
.ls5{letter-spacing:105.276000px;}
.ls14{letter-spacing:105.300000px;}
.ls17{letter-spacing:111.549600px;}
.ls4{letter-spacing:111.600000px;}
.ls15{letter-spacing:111.693600px;}
.ls13{letter-spacing:111.744000px;}
.ls1b{letter-spacing:124.200000px;}
.lsa{letter-spacing:141.276000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-126.654120px;}
.ws1f{word-spacing:-36.739440px;}
.ws11{word-spacing:-36.324288px;}
.ws5{word-spacing:-36.288000px;}
.ws13{word-spacing:-33.203520px;}
.ws3{word-spacing:-31.536000px;}
.ws14{word-spacing:-28.855440px;}
.ws12{word-spacing:-27.594000px;}
.ws15{word-spacing:-27.216000px;}
.ws24{word-spacing:-26.364096px;}
.ws23{word-spacing:-26.239896px;}
.ws16{word-spacing:-23.652000px;}
.wsf{word-spacing:-20.016000px;}
.wsb{word-spacing:-15.624000px;}
.wsc{word-spacing:-1.680000px;}
.wsd{word-spacing:-1.152000px;}
.wsa{word-spacing:-1.080000px;}
.ws1{word-spacing:-0.910080px;}
.ws8{word-spacing:-0.864000px;}
.ws17{word-spacing:-0.498960px;}
.ws10{word-spacing:-0.432000px;}
.ws25{word-spacing:-0.298800px;}
.ws1c{word-spacing:-0.168000px;}
.ws1a{word-spacing:-0.024000px;}
.ws20{word-spacing:-0.010728px;}
.ws2{word-spacing:0.000000px;}
.ws21{word-spacing:0.222600px;}
.wse{word-spacing:0.353712px;}
.ws1b{word-spacing:0.552000px;}
.ws9{word-spacing:0.576000px;}
.ws0{word-spacing:0.597792px;}
.ws1d{word-spacing:0.612000px;}
.ws1e{word-spacing:0.720000px;}
.ws18{word-spacing:0.900000px;}
.ws19{word-spacing:1.332000px;}
.ws22{word-spacing:63.936000px;}
.ws6{word-spacing:64.224000px;}
.ws7{word-spacing:64.307088px;}
._11{margin-left:-28.355400px;}
._14{margin-left:-15.122880px;}
._16{margin-left:-8.192520px;}
._4{margin-left:-7.134048px;}
._1{margin-left:-5.040000px;}
._3{margin-left:-3.241296px;}
._0{margin-left:-2.160000px;}
._6{margin-left:-1.087536px;}
._2{width:1.740000px;}
._5{width:3.541104px;}
._12{width:4.857360px;}
._b{width:13.512000px;}
._a{width:14.747994px;}
._7{width:18.142320px;}
._8{width:29.149536px;}
._d{width:30.693936px;}
._e{width:32.878800px;}
._9{width:35.282592px;}
._c{width:53.032800px;}
._10{width:379.764000px;}
._f{width:414.180000px;}
._13{width:3426.072000px;}
._15{width:3442.288752px;}
.fc6{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(232,29,37);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(36,32,33);}
.fc0{color:rgb(255,255,255);}
.fs16{font-size:7.200000px;}
.fsd{font-size:72.000000px;}
.fs4{font-size:74.880000px;}
.fs10{font-size:108.000000px;}
.fs11{font-size:108.144000px;}
.fs17{font-size:120.240000px;}
.fs18{font-size:120.384000px;}
.fsc{font-size:126.000000px;}
.fsb{font-size:126.144000px;}
.fse{font-size:131.760000px;}
.fsf{font-size:131.904000px;}
.fs6{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fs2{font-size:149.760000px;}
.fs3{font-size:149.904000px;}
.fs12{font-size:156.240000px;}
.fs13{font-size:156.384000px;}
.fs9{font-size:162.000000px;}
.fsa{font-size:162.144000px;}
.fs15{font-size:167.760000px;}
.fs14{font-size:167.904000px;}
.fs5{font-size:257.760000px;}
.fs1{font-size:360.000000px;}
.fs0{font-size:360.144000px;}
.fs7{font-size:630.120000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:20.160000px;}
.y65{bottom:32.760000px;}
.y21{bottom:41.184000px;}
.y68{bottom:43.560000px;}
.y8{bottom:43.956000px;}
.y2b{bottom:83.664000px;}
.y67{bottom:86.760000px;}
.y8d{bottom:95.076000px;}
.yb1{bottom:102.024000px;}
.y69{bottom:104.184000px;}
.y5a{bottom:104.190000px;}
.y54{bottom:104.220000px;}
.y38{bottom:104.724000px;}
.ya5{bottom:104.796000px;}
.y2a{bottom:105.264000px;}
.ya7{bottom:109.476000px;}
.y20{bottom:124.884000px;}
.ycc{bottom:131.184000px;}
.y7{bottom:138.312000px;}
.y7b{bottom:141.120000px;}
.y8c{bottom:145.296000px;}
.y52{bottom:149.832000px;}
.y1f{bottom:158.910000px;}
.ycb{bottom:168.270000px;}
.y5b{bottom:178.020000px;}
.ybe{bottom:178.530000px;}
.y6{bottom:178.815000px;}
.y3f{bottom:182.130000px;}
.y51{bottom:185.475000px;}
.ycd{bottom:185.685000px;}
.y48{bottom:188.070000px;}
.yb0{bottom:189.360000px;}
.yc2{bottom:194.220000px;}
.y60{bottom:194.760000px;}
.y8b{bottom:195.735000px;}
.y37{bottom:198.690000px;}
.y1e{bottom:199.080000px;}
.y7a{bottom:201.090000px;}
.y66{bottom:201.390000px;}
.y62{bottom:201.420000px;}
.y29{bottom:202.140000px;}
.y64{bottom:205.560000px;}
.yb8{bottom:209.160000px;}
.y83{bottom:216.690000px;}
.y8e{bottom:216.900000px;}
.y5{bottom:219.345000px;}
.yaf{bottom:221.040000px;}
.y47{bottom:228.240000px;}
.y9d{bottom:229.935000px;}
.y3e{bottom:233.100000px;}
.ya4{bottom:233.460000px;}
.y61{bottom:233.820000px;}
.y36{bottom:237.570000px;}
.y1d{bottom:240.300000px;}
.yca{bottom:242.820000px;}
.ye{bottom:244.800000px;}
.y8a{bottom:246.135000px;}
.y63{bottom:248.760000px;}
.y4{bottom:259.845000px;}
.yb7{bottom:259.920000px;}
.y79{bottom:261.030000px;}
.y82{bottom:267.480000px;}
.y46{bottom:268.200000px;}
.y50{bottom:268.815000px;}
.y16{bottom:269.100000px;}
.y35{bottom:276.450000px;}
.ybd{bottom:280.620000px;}
.y28{bottom:283.320000px;}
.yc0{bottom:283.680000px;}
.y3d{bottom:284.040000px;}
.y55{bottom:286.020000px;}
.y89{bottom:296.535000px;}
.y58{bottom:298.620000px;}
.y78{bottom:299.910000px;}
.y4f{bottom:304.485000px;}
.y15{bottom:307.980000px;}
.y45{bottom:308.160000px;}
.yae{bottom:308.520000px;}
.yb6{bottom:310.860000px;}
.y34{bottom:315.360000px;}
.yc9{bottom:317.160000px;}
.y27{bottom:317.880000px;}
.y81{bottom:318.420000px;}
.yc1{bottom:322.920000px;}
.y1c{bottom:324.000000px;}
.y3{bottom:326.340000px;}
.y57{bottom:331.020000px;}
.ybc{bottom:331.380000px;}
.yd{bottom:334.620000px;}
.y3c{bottom:334.800000px;}
.yad{bottom:340.200000px;}
.y88{bottom:346.965000px;}
.ya3{bottom:348.300000px;}
.y44{bottom:349.380000px;}
.y9c{bottom:349.740000px;}
.y77{bottom:351.615000px;}
.yf{bottom:352.155000px;}
.y9e{bottom:352.950000px;}
.y33{bottom:354.240000px;}
.yc8{bottom:354.420000px;}
.y91{bottom:354.930000px;}
.yb5{bottom:361.800000px;}
.y5c{bottom:363.210000px;}
.y56{bottom:363.420000px;}
.y1b{bottom:363.960000px;}
.y80{bottom:369.360000px;}
.y93{bottom:371.130000px;}
.yac{bottom:371.880000px;}
.ybb{bottom:381.270000px;}
.y3b{bottom:385.770000px;}
.y90{bottom:387.330000px;}
.y4e{bottom:387.825000px;}
.y43{bottom:388.290000px;}
.y32{bottom:393.120000px;}
.y14{bottom:397.830000px;}
.y26{bottom:398.910000px;}
.y9b{bottom:400.710000px;}
.y92{bottom:403.530000px;}
.y1a{bottom:405.210000px;}
.yb4{bottom:412.590000px;}
.y2{bottom:418.140000px;}
.y8f{bottom:419.760000px;}
.y7f{bottom:420.120000px;}
.yba{bottom:421.410000px;}
.y4d{bottom:423.465000px;}
.yc{bottom:424.290000px;}
.ybf{bottom:424.650000px;}
.yc7{bottom:428.790000px;}
.y31{bottom:432.000000px;}
.y25{bottom:433.470000px;}
.y13{bottom:436.710000px;}
.y59{bottom:437.220000px;}
.y9a{bottom:451.470000px;}
.y76{bottom:454.710000px;}
.y4c{bottom:459.105000px;}
.yab{bottom:459.210000px;}
.yb9{bottom:461.370000px;}
.ya2{bottom:463.170000px;}
.yb3{bottom:463.530000px;}
.y30{bottom:470.880000px;}
.y7e{bottom:471.090000px;}
.y42{bottom:471.990000px;}
.y71{bottom:472.350000px;}
.y12{bottom:475.590000px;}
.y5f{bottom:476.430000px;}
.y24{bottom:480.090000px;}
.y3a{bottom:487.470000px;}
.y19{bottom:489.090000px;}
.y75{bottom:489.270000px;}
.yaa{bottom:490.890000px;}
.y99{bottom:502.410000px;}
.yc6{bottom:503.130000px;}
.ya1{bottom:508.530000px;}
.y5e{bottom:508.830000px;}
.y2f{bottom:509.790000px;}
.y1{bottom:509.970000px;}
.y70{bottom:511.230000px;}
.y41{bottom:512.130000px;}
.yb{bottom:514.110000px;}
.yb2{bottom:514.470000px;}
.y87{bottom:521.355000px;}
.y96{bottom:521.745000px;}
.y7d{bottom:522.030000px;}
.ya9{bottom:522.570000px;}
.y74{bottom:523.830000px;}
.y39{bottom:526.350000px;}
.y18{bottom:528.870000px;}
.y6d{bottom:530.130000px;}
.y98{bottom:537.990000px;}
.yc5{bottom:540.390000px;}
.y5d{bottom:541.230000px;}
.y4b{bottom:542.310000px;}
.y53{bottom:545.220000px;}
.y2e{bottom:548.670000px;}
.y6f{bottom:550.110000px;}
.y40{bottom:553.350000px;}
.y86{bottom:553.785000px;}
.ya0{bottom:553.890000px;}
.y95{bottom:554.190000px;}
.y73{bottom:558.435000px;}
.y6c{bottom:562.530000px;}
.y17{bottom:562.935000px;}
.y11{bottom:565.275000px;}
.y97{bottom:570.390000px;}
.y7c{bottom:572.790000px;}
.y23{bottom:573.195000px;}
.yc4{bottom:577.695000px;}
.y4a{bottom:577.950000px;}
.y94{bottom:586.590000px;}
.y2d{bottom:587.550000px;}
.y6b{bottom:594.930000px;}
.y9f{bottom:599.295000px;}
.y6e{bottom:601.815000px;}
.ya{bottom:603.975000px;}
.y10{bottom:604.155000px;}
.y72{bottom:605.595000px;}
.y22{bottom:607.755000px;}
.ya8{bottom:609.915000px;}
.yc3{bottom:614.775000px;}
.y85{bottom:618.585000px;}
.y49{bottom:625.650000px;}
.y6a{bottom:627.330000px;}
.y2c{bottom:638.310000px;}
.y84{bottom:650.985000px;}
.y9{bottom:699.090000px;}
.h24{height:7.161328px;}
.h23{height:21.780000px;}
.hf{height:52.628906px;}
.he{height:62.261719px;}
.h5{height:64.752187px;}
.h19{height:93.392578px;}
.h1c{height:93.517102px;}
.h16{height:93.656250px;}
.h18{height:93.781125px;}
.h2c{height:103.977070px;}
.h29{height:104.270625px;}
.h2b{height:105.257812px;}
.h2a{height:105.363070px;}
.hc{height:108.958008px;}
.hb{height:109.082531px;}
.h13{height:113.938945px;}
.h25{height:114.063469px;}
.h12{height:114.260625px;}
.h14{height:114.385500px;}
.h10{height:118.415039px;}
.h11{height:118.520297px;}
.h7{height:124.523438px;}
.h9{height:124.647961px;}
.ha{height:124.875000px;}
.hd{height:124.999875px;}
.h26{height:125.323242px;}
.h27{height:125.466469px;}
.h3{height:129.504375px;}
.h4{height:129.628898px;}
.h1d{height:135.489375px;}
.h1e{height:135.614250px;}
.h28{height:138.281719px;}
.h20{height:145.069805px;}
.h21{height:145.194328px;}
.h1f{height:145.604250px;}
.h22{height:158.192578px;}
.h6{height:202.507734px;}
.h15{height:226.980000px;}
.h2{height:282.832031px;}
.h1{height:282.945164px;}
.h1b{height:453.780000px;}
.h8{height:495.050332px;}
.h17{height:523.980000px;}
.h1a{height:631.980000px;}
.h0{height:810.000000px;}
.w5{width:132.336000px;}
.w4{width:173.340000px;}
.w3{width:285.120000px;}
.w2{width:366.300000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x18{left:10.944000px;}
.xe{left:59.183979px;}
.x3{left:61.595979px;}
.x17{left:66.960000px;}
.x3b{left:80.460000px;}
.x2{left:82.151979px;}
.x12{left:87.083979px;}
.xc{left:88.235979px;}
.x1f{left:100.619979px;}
.x24{left:103.823979px;}
.x11{left:114.119979px;}
.x8{left:115.235979px;}
.x1{left:121.319979px;}
.x5{left:124.703979px;}
.x14{left:127.619979px;}
.x23{left:129.095979px;}
.x3f{left:134.999979px;}
.x3c{left:139.859979px;}
.x13{left:141.119979px;}
.xd{left:142.307979px;}
.x4{left:144.539979px;}
.xb{left:162.569979px;}
.x9{left:169.229979px;}
.x28{left:208.694979px;}
.xa{left:209.774979px;}
.x29{left:211.034979px;}
.x2a{left:229.574979px;}
.x36{left:258.944979px;}
.x37{left:276.764979px;}
.x27{left:400.604979px;}
.x19{left:433.080000px;}
.x2c{left:459.614979px;}
.x2b{left:469.694979px;}
.x1b{left:484.529979px;}
.x1c{left:498.029979px;}
.x34{left:564.224979px;}
.x33{left:575.384979px;}
.x35{left:640.544979px;}
.x39{left:676.409979px;}
.x1a{left:718.020000px;}
.x2d{left:721.289979px;}
.x3d{left:727.814979px;}
.x3a{left:743.399979px;}
.x20{left:751.499979px;}
.x2e{left:757.649979px;}
.x6{left:761.609979px;}
.x21{left:778.529979px;}
.x3e{left:793.004979px;}
.x15{left:795.929979px;}
.x7{left:802.109979px;}
.x10{left:809.279979px;}
.x22{left:819.029979px;}
.xf{left:821.669979px;}
.x25{left:828.539979px;}
.x16{left:836.429979px;}
.x31{left:847.049979px;}
.x26{left:869.039979px;}
.x32{left:912.209979px;}
.x1d{left:958.139979px;}
.x2f{left:970.919979px;}
.x1e{left:998.639979px;}
.x30{left:1007.279979px;}
.x40{left:1156.784979px;}
.x38{left:1189.649979px;}
@media print{
.v3{vertical-align:-30.346667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:57.600000pt;}
.v2{vertical-align:67.573333pt;}
.ls1d{letter-spacing:-0.326400pt;}
.ls12{letter-spacing:-0.324267pt;}
.ls2{letter-spacing:-0.301867pt;}
.ls1c{letter-spacing:-0.288000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.216533pt;}
.ls20{letter-spacing:-0.132267pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.110400pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.016000pt;}
.ls1e{letter-spacing:-0.013547pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000003pt;}
.ls3{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.186667pt;}
.lsb{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.327467pt;}
.ls1f{letter-spacing:0.384000pt;}
.ls6{letter-spacing:57.683200pt;}
.ls7{letter-spacing:57.760000pt;}
.ls9{letter-spacing:81.440000pt;}
.ls1a{letter-spacing:86.400000pt;}
.ls8{letter-spacing:93.533867pt;}
.ls16{letter-spacing:93.555200pt;}
.ls5{letter-spacing:93.578667pt;}
.ls14{letter-spacing:93.600000pt;}
.ls17{letter-spacing:99.155200pt;}
.ls4{letter-spacing:99.200000pt;}
.ls15{letter-spacing:99.283200pt;}
.ls13{letter-spacing:99.328000pt;}
.ls1b{letter-spacing:110.400000pt;}
.lsa{letter-spacing:125.578667pt;}
.ws4{word-spacing:-112.581440pt;}
.ws1f{word-spacing:-32.657280pt;}
.ws11{word-spacing:-32.288256pt;}
.ws5{word-spacing:-32.256000pt;}
.ws13{word-spacing:-29.514240pt;}
.ws3{word-spacing:-28.032000pt;}
.ws14{word-spacing:-25.649280pt;}
.ws12{word-spacing:-24.528000pt;}
.ws15{word-spacing:-24.192000pt;}
.ws24{word-spacing:-23.434752pt;}
.ws23{word-spacing:-23.324352pt;}
.ws16{word-spacing:-21.024000pt;}
.wsf{word-spacing:-17.792000pt;}
.wsb{word-spacing:-13.888000pt;}
.wsc{word-spacing:-1.493333pt;}
.wsd{word-spacing:-1.024000pt;}
.wsa{word-spacing:-0.960000pt;}
.ws1{word-spacing:-0.808960pt;}
.ws8{word-spacing:-0.768000pt;}
.ws17{word-spacing:-0.443520pt;}
.ws10{word-spacing:-0.384000pt;}
.ws25{word-spacing:-0.265600pt;}
.ws1c{word-spacing:-0.149333pt;}
.ws1a{word-spacing:-0.021333pt;}
.ws20{word-spacing:-0.009536pt;}
.ws2{word-spacing:0.000000pt;}
.ws21{word-spacing:0.197867pt;}
.wse{word-spacing:0.314411pt;}
.ws1b{word-spacing:0.490667pt;}
.ws9{word-spacing:0.512000pt;}
.ws0{word-spacing:0.531371pt;}
.ws1d{word-spacing:0.544000pt;}
.ws1e{word-spacing:0.640000pt;}
.ws18{word-spacing:0.800000pt;}
.ws19{word-spacing:1.184000pt;}
.ws22{word-spacing:56.832000pt;}
.ws6{word-spacing:57.088000pt;}
.ws7{word-spacing:57.161856pt;}
._11{margin-left:-25.204800pt;}
._14{margin-left:-13.442560pt;}
._16{margin-left:-7.282240pt;}
._4{margin-left:-6.341376pt;}
._1{margin-left:-4.480000pt;}
._3{margin-left:-2.881152pt;}
._0{margin-left:-1.920000pt;}
._6{margin-left:-0.966699pt;}
._2{width:1.546667pt;}
._5{width:3.147648pt;}
._12{width:4.317653pt;}
._b{width:12.010667pt;}
._a{width:13.109328pt;}
._7{width:16.126507pt;}
._8{width:25.910699pt;}
._d{width:27.283499pt;}
._e{width:29.225600pt;}
._9{width:31.362304pt;}
._c{width:47.140267pt;}
._10{width:337.568000pt;}
._f{width:368.160000pt;}
._13{width:3045.397333pt;}
._15{width:3059.812224pt;}
.fs16{font-size:6.400000pt;}
.fsd{font-size:64.000000pt;}
.fs4{font-size:66.560000pt;}
.fs10{font-size:96.000000pt;}
.fs11{font-size:96.128000pt;}
.fs17{font-size:106.880000pt;}
.fs18{font-size:107.008000pt;}
.fsc{font-size:112.000000pt;}
.fsb{font-size:112.128000pt;}
.fse{font-size:117.120000pt;}
.fsf{font-size:117.248000pt;}
.fs6{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fs2{font-size:133.120000pt;}
.fs3{font-size:133.248000pt;}
.fs12{font-size:138.880000pt;}
.fs13{font-size:139.008000pt;}
.fs9{font-size:144.000000pt;}
.fsa{font-size:144.128000pt;}
.fs15{font-size:149.120000pt;}
.fs14{font-size:149.248000pt;}
.fs5{font-size:229.120000pt;}
.fs1{font-size:320.000000pt;}
.fs0{font-size:320.128000pt;}
.fs7{font-size:560.106667pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:17.920000pt;}
.y65{bottom:29.120000pt;}
.y21{bottom:36.608000pt;}
.y68{bottom:38.720000pt;}
.y8{bottom:39.072000pt;}
.y2b{bottom:74.368000pt;}
.y67{bottom:77.120000pt;}
.y8d{bottom:84.512000pt;}
.yb1{bottom:90.688000pt;}
.y69{bottom:92.608000pt;}
.y5a{bottom:92.613333pt;}
.y54{bottom:92.640000pt;}
.y38{bottom:93.088000pt;}
.ya5{bottom:93.152000pt;}
.y2a{bottom:93.568000pt;}
.ya7{bottom:97.312000pt;}
.y20{bottom:111.008000pt;}
.ycc{bottom:116.608000pt;}
.y7{bottom:122.944000pt;}
.y7b{bottom:125.440000pt;}
.y8c{bottom:129.152000pt;}
.y52{bottom:133.184000pt;}
.y1f{bottom:141.253333pt;}
.ycb{bottom:149.573333pt;}
.y5b{bottom:158.240000pt;}
.ybe{bottom:158.693333pt;}
.y6{bottom:158.946667pt;}
.y3f{bottom:161.893333pt;}
.y51{bottom:164.866667pt;}
.ycd{bottom:165.053333pt;}
.y48{bottom:167.173333pt;}
.yb0{bottom:168.320000pt;}
.yc2{bottom:172.640000pt;}
.y60{bottom:173.120000pt;}
.y8b{bottom:173.986667pt;}
.y37{bottom:176.613333pt;}
.y1e{bottom:176.960000pt;}
.y7a{bottom:178.746667pt;}
.y66{bottom:179.013333pt;}
.y62{bottom:179.040000pt;}
.y29{bottom:179.680000pt;}
.y64{bottom:182.720000pt;}
.yb8{bottom:185.920000pt;}
.y83{bottom:192.613333pt;}
.y8e{bottom:192.800000pt;}
.y5{bottom:194.973333pt;}
.yaf{bottom:196.480000pt;}
.y47{bottom:202.880000pt;}
.y9d{bottom:204.386667pt;}
.y3e{bottom:207.200000pt;}
.ya4{bottom:207.520000pt;}
.y61{bottom:207.840000pt;}
.y36{bottom:211.173333pt;}
.y1d{bottom:213.600000pt;}
.yca{bottom:215.840000pt;}
.ye{bottom:217.600000pt;}
.y8a{bottom:218.786667pt;}
.y63{bottom:221.120000pt;}
.y4{bottom:230.973333pt;}
.yb7{bottom:231.040000pt;}
.y79{bottom:232.026667pt;}
.y82{bottom:237.760000pt;}
.y46{bottom:238.400000pt;}
.y50{bottom:238.946667pt;}
.y16{bottom:239.200000pt;}
.y35{bottom:245.733333pt;}
.ybd{bottom:249.440000pt;}
.y28{bottom:251.840000pt;}
.yc0{bottom:252.160000pt;}
.y3d{bottom:252.480000pt;}
.y55{bottom:254.240000pt;}
.y89{bottom:263.586667pt;}
.y58{bottom:265.440000pt;}
.y78{bottom:266.586667pt;}
.y4f{bottom:270.653333pt;}
.y15{bottom:273.760000pt;}
.y45{bottom:273.920000pt;}
.yae{bottom:274.240000pt;}
.yb6{bottom:276.320000pt;}
.y34{bottom:280.320000pt;}
.yc9{bottom:281.920000pt;}
.y27{bottom:282.560000pt;}
.y81{bottom:283.040000pt;}
.yc1{bottom:287.040000pt;}
.y1c{bottom:288.000000pt;}
.y3{bottom:290.080000pt;}
.y57{bottom:294.240000pt;}
.ybc{bottom:294.560000pt;}
.yd{bottom:297.440000pt;}
.y3c{bottom:297.600000pt;}
.yad{bottom:302.400000pt;}
.y88{bottom:308.413333pt;}
.ya3{bottom:309.600000pt;}
.y44{bottom:310.560000pt;}
.y9c{bottom:310.880000pt;}
.y77{bottom:312.546667pt;}
.yf{bottom:313.026667pt;}
.y9e{bottom:313.733333pt;}
.y33{bottom:314.880000pt;}
.yc8{bottom:315.040000pt;}
.y91{bottom:315.493333pt;}
.yb5{bottom:321.600000pt;}
.y5c{bottom:322.853333pt;}
.y56{bottom:323.040000pt;}
.y1b{bottom:323.520000pt;}
.y80{bottom:328.320000pt;}
.y93{bottom:329.893333pt;}
.yac{bottom:330.560000pt;}
.ybb{bottom:338.906667pt;}
.y3b{bottom:342.906667pt;}
.y90{bottom:344.293333pt;}
.y4e{bottom:344.733333pt;}
.y43{bottom:345.146667pt;}
.y32{bottom:349.440000pt;}
.y14{bottom:353.626667pt;}
.y26{bottom:354.586667pt;}
.y9b{bottom:356.186667pt;}
.y92{bottom:358.693333pt;}
.y1a{bottom:360.186667pt;}
.yb4{bottom:366.746667pt;}
.y2{bottom:371.680000pt;}
.y8f{bottom:373.120000pt;}
.y7f{bottom:373.440000pt;}
.yba{bottom:374.586667pt;}
.y4d{bottom:376.413333pt;}
.yc{bottom:377.146667pt;}
.ybf{bottom:377.466667pt;}
.yc7{bottom:381.146667pt;}
.y31{bottom:384.000000pt;}
.y25{bottom:385.306667pt;}
.y13{bottom:388.186667pt;}
.y59{bottom:388.640000pt;}
.y9a{bottom:401.306667pt;}
.y76{bottom:404.186667pt;}
.y4c{bottom:408.093333pt;}
.yab{bottom:408.186667pt;}
.yb9{bottom:410.106667pt;}
.ya2{bottom:411.706667pt;}
.yb3{bottom:412.026667pt;}
.y30{bottom:418.560000pt;}
.y7e{bottom:418.746667pt;}
.y42{bottom:419.546667pt;}
.y71{bottom:419.866667pt;}
.y12{bottom:422.746667pt;}
.y5f{bottom:423.493333pt;}
.y24{bottom:426.746667pt;}
.y3a{bottom:433.306667pt;}
.y19{bottom:434.746667pt;}
.y75{bottom:434.906667pt;}
.yaa{bottom:436.346667pt;}
.y99{bottom:446.586667pt;}
.yc6{bottom:447.226667pt;}
.ya1{bottom:452.026667pt;}
.y5e{bottom:452.293333pt;}
.y2f{bottom:453.146667pt;}
.y1{bottom:453.306667pt;}
.y70{bottom:454.426667pt;}
.y41{bottom:455.226667pt;}
.yb{bottom:456.986667pt;}
.yb2{bottom:457.306667pt;}
.y87{bottom:463.426667pt;}
.y96{bottom:463.773333pt;}
.y7d{bottom:464.026667pt;}
.ya9{bottom:464.506667pt;}
.y74{bottom:465.626667pt;}
.y39{bottom:467.866667pt;}
.y18{bottom:470.106667pt;}
.y6d{bottom:471.226667pt;}
.y98{bottom:478.213333pt;}
.yc5{bottom:480.346667pt;}
.y5d{bottom:481.093333pt;}
.y4b{bottom:482.053333pt;}
.y53{bottom:484.640000pt;}
.y2e{bottom:487.706667pt;}
.y6f{bottom:488.986667pt;}
.y40{bottom:491.866667pt;}
.y86{bottom:492.253333pt;}
.ya0{bottom:492.346667pt;}
.y95{bottom:492.613333pt;}
.y73{bottom:496.386667pt;}
.y6c{bottom:500.026667pt;}
.y17{bottom:500.386667pt;}
.y11{bottom:502.466667pt;}
.y97{bottom:507.013333pt;}
.y7c{bottom:509.146667pt;}
.y23{bottom:509.506667pt;}
.yc4{bottom:513.506667pt;}
.y4a{bottom:513.733333pt;}
.y94{bottom:521.413333pt;}
.y2d{bottom:522.266667pt;}
.y6b{bottom:528.826667pt;}
.y9f{bottom:532.706667pt;}
.y6e{bottom:534.946667pt;}
.ya{bottom:536.866667pt;}
.y10{bottom:537.026667pt;}
.y72{bottom:538.306667pt;}
.y22{bottom:540.226667pt;}
.ya8{bottom:542.146667pt;}
.yc3{bottom:546.466667pt;}
.y85{bottom:549.853333pt;}
.y49{bottom:556.133333pt;}
.y6a{bottom:557.626667pt;}
.y2c{bottom:567.386667pt;}
.y84{bottom:578.653333pt;}
.y9{bottom:621.413333pt;}
.h24{height:6.365625pt;}
.h23{height:19.360000pt;}
.hf{height:46.781250pt;}
.he{height:55.343750pt;}
.h5{height:57.557500pt;}
.h19{height:83.015625pt;}
.h1c{height:83.126312pt;}
.h16{height:83.250000pt;}
.h18{height:83.361000pt;}
.h2c{height:92.424062pt;}
.h29{height:92.685000pt;}
.h2b{height:93.562500pt;}
.h2a{height:93.656062pt;}
.hc{height:96.851562pt;}
.hb{height:96.962250pt;}
.h13{height:101.279062pt;}
.h25{height:101.389750pt;}
.h12{height:101.565000pt;}
.h14{height:101.676000pt;}
.h10{height:105.257812pt;}
.h11{height:105.351375pt;}
.h7{height:110.687500pt;}
.h9{height:110.798187pt;}
.ha{height:111.000000pt;}
.hd{height:111.111000pt;}
.h26{height:111.398438pt;}
.h27{height:111.525750pt;}
.h3{height:115.115000pt;}
.h4{height:115.225687pt;}
.h1d{height:120.435000pt;}
.h1e{height:120.546000pt;}
.h28{height:122.917083pt;}
.h20{height:128.950937pt;}
.h21{height:129.061625pt;}
.h1f{height:129.426000pt;}
.h22{height:140.615625pt;}
.h6{height:180.006875pt;}
.h15{height:201.760000pt;}
.h2{height:251.406250pt;}
.h1{height:251.506812pt;}
.h1b{height:403.360000pt;}
.h8{height:440.044740pt;}
.h17{height:465.760000pt;}
.h1a{height:561.760000pt;}
.h0{height:720.000000pt;}
.w5{width:117.632000pt;}
.w4{width:154.080000pt;}
.w3{width:253.440000pt;}
.w2{width:325.600000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x18{left:9.728000pt;}
.xe{left:52.607981pt;}
.x3{left:54.751981pt;}
.x17{left:59.520000pt;}
.x3b{left:71.520000pt;}
.x2{left:73.023981pt;}
.x12{left:77.407981pt;}
.xc{left:78.431981pt;}
.x1f{left:89.439981pt;}
.x24{left:92.287981pt;}
.x11{left:101.439981pt;}
.x8{left:102.431981pt;}
.x1{left:107.839981pt;}
.x5{left:110.847981pt;}
.x14{left:113.439981pt;}
.x23{left:114.751981pt;}
.x3f{left:119.999981pt;}
.x3c{left:124.319981pt;}
.x13{left:125.439981pt;}
.xd{left:126.495981pt;}
.x4{left:128.479981pt;}
.xb{left:144.506648pt;}
.x9{left:150.426648pt;}
.x28{left:185.506648pt;}
.xa{left:186.466648pt;}
.x29{left:187.586648pt;}
.x2a{left:204.066648pt;}
.x36{left:230.173314pt;}
.x37{left:246.013314pt;}
.x27{left:356.093314pt;}
.x19{left:384.960000pt;}
.x2c{left:408.546648pt;}
.x2b{left:417.506648pt;}
.x1b{left:430.693314pt;}
.x1c{left:442.693314pt;}
.x34{left:501.533314pt;}
.x33{left:511.453314pt;}
.x35{left:569.373314pt;}
.x39{left:601.253314pt;}
.x1a{left:638.240000pt;}
.x2d{left:641.146648pt;}
.x3d{left:646.946648pt;}
.x3a{left:660.799981pt;}
.x20{left:667.999981pt;}
.x2e{left:673.466648pt;}
.x6{left:676.986648pt;}
.x21{left:692.026648pt;}
.x3e{left:704.893314pt;}
.x15{left:707.493314pt;}
.x7{left:712.986648pt;}
.x10{left:719.359981pt;}
.x22{left:728.026648pt;}
.xf{left:730.373314pt;}
.x25{left:736.479981pt;}
.x16{left:743.493314pt;}
.x31{left:752.933314pt;}
.x26{left:772.479981pt;}
.x32{left:810.853314pt;}
.x1d{left:851.679981pt;}
.x2f{left:863.039981pt;}
.x1e{left:887.679981pt;}
.x30{left:895.359981pt;}
.x40{left:1028.253314pt;}
.x38{left:1057.466648pt;}
}




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