
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e5d76b6abf0beced9248087a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_87898a8d83fff3f979f3024a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5ca7ebcbb1af8cfae4484df7.woff2')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_b6bf0fe11590779afa3f7b00.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ad7650b4320b286d02428d0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_523c1155a26a22d2daf14d14.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_3e24b60a25065401e226fd21.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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_8baf1a7750aa5355a7ab6449.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983398;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_e06876e150c392641a92be36.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.983398;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls1a{letter-spacing:-0.786000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.529800px;}
.ls6{letter-spacing:-0.463800px;}
.lsc{letter-spacing:-0.240600px;}
.ls15{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.115800px;}
.ls19{letter-spacing:-0.082200px;}
.ls14{letter-spacing:-0.064800px;}
.ls16{letter-spacing:-0.058320px;}
.ls1c{letter-spacing:-0.001440px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.060600px;}
.ls9{letter-spacing:0.066000px;}
.ls21{letter-spacing:0.174000px;}
.ls1f{letter-spacing:0.174240px;}
.ls8{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.330000px;}
.ls10{letter-spacing:0.617760px;}
.ls1e{letter-spacing:0.780000px;}
.lsb{letter-spacing:1.026000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls20{letter-spacing:2.106720px;}
.ls3{letter-spacing:3.054240px;}
.ls17{letter-spacing:3.774240px;}
.lsf{letter-spacing:5.706720px;}
.lse{letter-spacing:6.654240px;}
.ls23{letter-spacing:12.186720px;}
.ls13{letter-spacing:14.346720px;}
.ls11{letter-spacing:15.066720px;}
.lsd{letter-spacing:21.546720px;}
.ls4{letter-spacing:38.106720px;}
.ls22{letter-spacing:42.570720px;}
.ls12{letter-spacing:45.306720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsd{word-spacing:-13.835760px;}
.wsb{word-spacing:-13.566360px;}
.ws5{word-spacing:-13.505760px;}
.wse{word-spacing:-13.504320px;}
.wsa{word-spacing:-13.447440px;}
.ws8{word-spacing:-13.440960px;}
.ws6{word-spacing:-13.389960px;}
.ws9{word-spacing:-13.319160px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.wsc{word-spacing:-8.704680px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-581.644560px;}
._2b{margin-left:-7.854480px;}
._c{margin-left:-3.313680px;}
._b{margin-left:-2.301360px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._6{width:2.974560px;}
._7{width:4.122480px;}
._8{width:5.428560px;}
._10{width:6.693120px;}
._9{width:8.187120px;}
._e{width:9.462000px;}
._f{width:10.637280px;}
._d{width:11.872320px;}
._11{width:15.159120px;}
._12{width:16.912080px;}
._13{width:18.407040px;}
._15{width:19.521600px;}
._24{width:20.807040px;}
._a{width:21.812400px;}
._1f{width:23.485680px;}
._1b{width:24.596880px;}
._22{width:26.095440px;}
._21{width:27.549120px;}
._16{width:30.504240px;}
._23{width:33.193440px;}
._1e{width:36.782400px;}
._1d{width:37.914480px;}
._14{width:43.472160px;}
._25{width:44.820000px;}
._17{width:47.160240px;}
._18{width:48.366480px;}
._26{width:50.515440px;}
._19{width:51.863760px;}
._29{width:64.942320px;}
._1a{width:72.048960px;}
._20{width:77.834160px;}
._1c{width:108.048960px;}
._2a{width:112.131360px;}
._27{width:155.984640px;}
._28{width:202.494240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y67{bottom:6.660000px;}
.y7d{bottom:6.690000px;}
.y69{bottom:9.360000px;}
.ye0{bottom:9.540000px;}
.y6b{bottom:9.570000px;}
.ye2{bottom:18.360000px;}
.ye4{bottom:19.260000px;}
.y81{bottom:27.540000px;}
.y89{bottom:27.714000px;}
.y66{bottom:27.720000px;}
.y7c{bottom:27.750000px;}
.y74{bottom:27.765000px;}
.y80{bottom:48.600000px;}
.y88{bottom:48.774000px;}
.y70{bottom:48.780000px;}
.y8b{bottom:48.810000px;}
.yc1{bottom:48.825000px;}
.y6{bottom:61.236000px;}
.y84{bottom:69.840000px;}
.yfc{bottom:90.036000px;}
.y7a{bottom:97.956000px;}
.yfb{bottom:101.016000px;}
.y30{bottom:103.356000px;}
.yba{bottom:104.076000px;}
.y64{bottom:109.296000px;}
.y79{bottom:119.016000px;}
.yfa{bottom:122.076000px;}
.y2f{bottom:124.416000px;}
.yb9{bottom:125.136000px;}
.yde{bottom:127.296000px;}
.y63{bottom:130.356000px;}
.y78{bottom:140.076000px;}
.yf9{bottom:143.136000px;}
.y87{bottom:143.316000px;}
.y2e{bottom:145.476000px;}
.yb8{bottom:146.196000px;}
.ydd{bottom:148.356000px;}
.y62{bottom:151.410000px;}
.y77{bottom:161.130000px;}
.yf8{bottom:164.190000px;}
.y2d{bottom:166.530000px;}
.yb7{bottom:167.250000px;}
.ydc{bottom:169.410000px;}
.y61{bottom:172.470000px;}
.y76{bottom:176.250000px;}
.yf7{bottom:185.250000px;}
.y2c{bottom:187.590000px;}
.yb6{bottom:188.310000px;}
.ydb{bottom:190.470000px;}
.y60{bottom:193.530000px;}
.y75{bottom:198.030000px;}
.yf6{bottom:206.310000px;}
.y86{bottom:206.490000px;}
.y2b{bottom:208.650000px;}
.yb5{bottom:209.370000px;}
.yda{bottom:211.530000px;}
.y5f{bottom:214.590000px;}
.yf5{bottom:227.370000px;}
.y2a{bottom:229.710000px;}
.yb4{bottom:230.430000px;}
.yd9{bottom:232.590000px;}
.y5e{bottom:235.650000px;}
.yf4{bottom:248.430000px;}
.y29{bottom:250.770000px;}
.yb3{bottom:251.490000px;}
.yd8{bottom:253.650000px;}
.y5d{bottom:256.710000px;}
.y73{bottom:261.210000px;}
.yf3{bottom:269.490000px;}
.y85{bottom:269.670000px;}
.y28{bottom:271.830000px;}
.yb2{bottom:272.550000px;}
.yd7{bottom:274.710000px;}
.y5c{bottom:277.770000px;}
.yf2{bottom:290.595000px;}
.y27{bottom:292.935000px;}
.yb1{bottom:293.655000px;}
.yd6{bottom:295.815000px;}
.y5b{bottom:298.875000px;}
.y72{bottom:303.375000px;}
.yf1{bottom:311.655000px;}
.y83{bottom:311.835000px;}
.y26{bottom:313.995000px;}
.yb0{bottom:314.715000px;}
.yd5{bottom:316.875000px;}
.y5a{bottom:319.935000px;}
.yf0{bottom:332.715000px;}
.y25{bottom:335.055000px;}
.yaf{bottom:335.775000px;}
.yd4{bottom:337.935000px;}
.y59{bottom:340.995000px;}
.y71{bottom:345.495000px;}
.yef{bottom:353.775000px;}
.y24{bottom:356.115000px;}
.yae{bottom:356.835000px;}
.yd3{bottom:358.995000px;}
.y58{bottom:362.055000px;}
.yee{bottom:374.835000px;}
.y23{bottom:377.175000px;}
.yad{bottom:377.895000px;}
.yd2{bottom:380.055000px;}
.y57{bottom:383.115000px;}
.y6f{bottom:387.615000px;}
.yed{bottom:395.895000px;}
.y82{bottom:396.075000px;}
.y22{bottom:398.055000px;}
.yac{bottom:398.955000px;}
.yd1{bottom:401.115000px;}
.y56{bottom:404.175000px;}
.yec{bottom:416.955000px;}
.y21{bottom:419.115000px;}
.yab{bottom:420.015000px;}
.yd0{bottom:422.175000px;}
.y55{bottom:425.235000px;}
.yaa{bottom:435.135000px;}
.yeb{bottom:438.015000px;}
.y20{bottom:440.175000px;}
.ycf{bottom:443.235000px;}
.y54{bottom:446.295000px;}
.y6e{bottom:450.795000px;}
.ya9{bottom:456.915000px;}
.yea{bottom:459.075000px;}
.y7f{bottom:459.255000px;}
.y1f{bottom:461.235000px;}
.yce{bottom:464.295000px;}
.y53{bottom:467.355000px;}
.ya8{bottom:477.975000px;}
.ye9{bottom:480.135000px;}
.y1e{bottom:482.295000px;}
.ycd{bottom:485.355000px;}
.y52{bottom:488.415000px;}
.y6d{bottom:492.915000px;}
.ya7{bottom:499.755000px;}
.ye8{bottom:501.195000px;}
.y1d{bottom:503.355000px;}
.ycc{bottom:506.415000px;}
.y51{bottom:509.475000px;}
.y6c{bottom:516.675000px;}
.y7e{bottom:522.255000px;}
.y1c{bottom:524.415000px;}
.ycb{bottom:527.475000px;}
.ya6{bottom:528.195000px;}
.y50{bottom:530.535000px;}
.ye7{bottom:543.315000px;}
.y1b{bottom:545.475000px;}
.yca{bottom:548.535000px;}
.ya5{bottom:549.255000px;}
.y4f{bottom:551.595000px;}
.y6a{bottom:558.795000px;}
.y7b{bottom:564.375000px;}
.y1a{bottom:566.565000px;}
.yc9{bottom:569.625000px;}
.ya4{bottom:570.345000px;}
.y4e{bottom:572.685000px;}
.y68{bottom:582.765000px;}
.ye6{bottom:585.465000px;}
.y19{bottom:587.625000px;}
.yc8{bottom:590.685000px;}
.ya3{bottom:591.405000px;}
.y4d{bottom:593.745000px;}
.ye5{bottom:606.525000px;}
.y65{bottom:607.425000px;}
.yc7{bottom:611.745000px;}
.ya2{bottom:612.465000px;}
.y4c{bottom:614.805000px;}
.ye3{bottom:621.645000px;}
.yc6{bottom:626.865000px;}
.y18{bottom:632.265000px;}
.ya1{bottom:633.525000px;}
.y4b{bottom:635.865000px;}
.yc5{bottom:648.645000px;}
.ya0{bottom:654.585000px;}
.ye1{bottom:655.305000px;}
.y4a{bottom:656.925000px;}
.y17{bottom:662.145000px;}
.y9f{bottom:675.645000px;}
.y49{bottom:677.985000px;}
.y16{bottom:683.205000px;}
.ydf{bottom:688.785000px;}
.yc4{bottom:690.765000px;}
.y9e{bottom:696.705000px;}
.y48{bottom:699.045000px;}
.y15{bottom:704.265000px;}
.y9d{bottom:717.765000px;}
.y47{bottom:720.105000px;}
.y14{bottom:725.325000px;}
.yc3{bottom:732.885000px;}
.y9c{bottom:738.825000px;}
.y46{bottom:741.165000px;}
.y13{bottom:746.385000px;}
.y9b{bottom:759.885000px;}
.y45{bottom:762.225000px;}
.y12{bottom:767.445000px;}
.y9a{bottom:780.945000px;}
.y44{bottom:783.285000px;}
.y11{bottom:788.505000px;}
.yc2{bottom:796.065000px;}
.y99{bottom:802.005000px;}
.y43{bottom:804.345000px;}
.y10{bottom:809.565000px;}
.y98{bottom:823.065000px;}
.y42{bottom:825.405000px;}
.yf{bottom:830.625000px;}
.yc0{bottom:838.185000px;}
.y97{bottom:844.125000px;}
.y41{bottom:846.465000px;}
.ye{bottom:851.730000px;}
.y96{bottom:865.230000px;}
.y40{bottom:867.570000px;}
.yd{bottom:874.950000px;}
.y95{bottom:886.290000px;}
.y3f{bottom:888.630000px;}
.yc{bottom:901.230000px;}
.ybf{bottom:901.410000px;}
.y94{bottom:907.350000px;}
.y3e{bottom:909.690000px;}
.yb{bottom:922.290000px;}
.y93{bottom:928.410000px;}
.y3d{bottom:930.570000px;}
.ya{bottom:939.030000px;}
.ybe{bottom:943.530000px;}
.y92{bottom:949.470000px;}
.y3c{bottom:951.630000px;}
.y9{bottom:961.350000px;}
.y91{bottom:970.530000px;}
.y3b{bottom:972.690000px;}
.ybd{bottom:985.650000px;}
.y8{bottom:986.550000px;}
.y90{bottom:991.590000px;}
.y3a{bottom:993.750000px;}
.y8f{bottom:1012.650000px;}
.y39{bottom:1014.810000px;}
.y7{bottom:1020.210000px;}
.ybc{bottom:1027.770000px;}
.y8e{bottom:1033.710000px;}
.y38{bottom:1035.870000px;}
.y8d{bottom:1048.830000px;}
.y37{bottom:1056.930000px;}
.y5{bottom:1060.350000px;}
.ybb{bottom:1069.890000px;}
.y8c{bottom:1070.610000px;}
.y36{bottom:1077.990000px;}
.y4{bottom:1092.570000px;}
.y35{bottom:1099.050000px;}
.y8a{bottom:1112.730000px;}
.y34{bottom:1120.110000px;}
.y3{bottom:1124.610000px;}
.y33{bottom:1141.200000px;}
.y2{bottom:1156.860000px;}
.y32{bottom:1162.260000px;}
.y1{bottom:1191.420000px;}
.y31{bottom:1193.220000px;}
.h10{height:21.060000px;}
.h16{height:21.096000px;}
.hc{height:23.760000px;}
.h17{height:23.940000px;}
.hd{height:23.976000px;}
.h18{height:32.760000px;}
.h19{height:33.660000px;}
.h7{height:38.671172px;}
.hb{height:42.120000px;}
.hf{height:42.156000px;}
.h12{height:48.088125px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h11{height:59.551172px;}
.h5{height:61.189805px;}
.ha{height:61.423863px;}
.h9{height:62.211094px;}
.h13{height:63.000000px;}
.he{height:63.180000px;}
.h15{height:63.216000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h14{height:84.240000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:52.776000px;}
.w5{width:56.340000px;}
.w9{width:62.856000px;}
.w13{width:64.260000px;}
.w4{width:64.296000px;}
.wa{width:64.620000px;}
.wf{width:68.220000px;}
.w17{width:72.000000px;}
.we{width:76.896000px;}
.w19{width:87.876000px;}
.w1a{width:124.740000px;}
.wc{width:125.820000px;}
.w7{width:128.880000px;}
.w11{width:132.840000px;}
.w6{width:136.836000px;}
.wb{width:145.116000px;}
.w10{width:168.150000px;}
.w15{width:169.200000px;}
.w18{width:213.690000px;}
.w16{width:222.510000px;}
.wd{width:348.375000px;}
.w8{width:386.715000px;}
.w3{width:394.635000px;}
.w12{width:493.305000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x5{left:14.040000px;}
.x13{left:18.540000px;}
.x7{left:19.800000px;}
.x1a{left:21.960000px;}
.xf{left:23.940000px;}
.x16{left:25.740000px;}
.x9{left:32.760000px;}
.xb{left:35.100000px;}
.x11{left:36.900000px;}
.x1c{left:38.160000px;}
.x1b{left:39.240000px;}
.x18{left:48.420000px;}
.x1{left:53.999987px;}
.xc{left:62.136000px;}
.x25{left:67.499987px;}
.x24{left:74.339987px;}
.x26{left:80.999987px;}
.x27{left:101.375987px;}
.x2{left:108.035987px;}
.x1f{left:276.510000px;}
.x20{left:340.815000px;}
.x14{left:402.375000px;}
.x21{left:412.815000px;}
.xd{left:440.715000px;}
.x4{left:448.635000px;}
.x15{left:479.265000px;}
.xe{left:503.565000px;}
.x6{left:512.925000px;}
.x17{left:547.485000px;}
.x10{left:568.185000px;}
.x8{left:569.265000px;}
.x1d{left:611.565000px;}
.x22{left:626.505000px;}
.x1e{left:664.350000px;}
.xa{left:706.110000px;}
.x12{left:713.310000px;}
.x23{left:714.390000px;}
.x19{left:715.650000px;}
.x28{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls1a{letter-spacing:-0.698667pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.470933pt;}
.ls6{letter-spacing:-0.412267pt;}
.lsc{letter-spacing:-0.213867pt;}
.ls15{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.102933pt;}
.ls19{letter-spacing:-0.073067pt;}
.ls14{letter-spacing:-0.057600pt;}
.ls16{letter-spacing:-0.051840pt;}
.ls1c{letter-spacing:-0.001280pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.053867pt;}
.ls9{letter-spacing:0.058667pt;}
.ls21{letter-spacing:0.154667pt;}
.ls1f{letter-spacing:0.154880pt;}
.ls8{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.293333pt;}
.ls10{letter-spacing:0.549120pt;}
.ls1e{letter-spacing:0.693333pt;}
.lsb{letter-spacing:0.912000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls20{letter-spacing:1.872640pt;}
.ls3{letter-spacing:2.714880pt;}
.ls17{letter-spacing:3.354880pt;}
.lsf{letter-spacing:5.072640pt;}
.lse{letter-spacing:5.914880pt;}
.ls23{letter-spacing:10.832640pt;}
.ls13{letter-spacing:12.752640pt;}
.ls11{letter-spacing:13.392640pt;}
.lsd{letter-spacing:19.152640pt;}
.ls4{letter-spacing:33.872640pt;}
.ls22{letter-spacing:37.840640pt;}
.ls12{letter-spacing:40.272640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsd{word-spacing:-12.298453pt;}
.wsb{word-spacing:-12.058987pt;}
.ws5{word-spacing:-12.005120pt;}
.wse{word-spacing:-12.003840pt;}
.wsa{word-spacing:-11.953280pt;}
.ws8{word-spacing:-11.947520pt;}
.ws6{word-spacing:-11.902187pt;}
.ws9{word-spacing:-11.839253pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.wsc{word-spacing:-7.737493pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.017387pt;}
._2b{margin-left:-6.981760pt;}
._c{margin-left:-2.945493pt;}
._b{margin-left:-2.045653pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._6{width:2.644053pt;}
._7{width:3.664427pt;}
._8{width:4.825387pt;}
._10{width:5.949440pt;}
._9{width:7.277440pt;}
._e{width:8.410667pt;}
._f{width:9.455360pt;}
._d{width:10.553173pt;}
._11{width:13.474773pt;}
._12{width:15.032960pt;}
._13{width:16.361813pt;}
._15{width:17.352533pt;}
._24{width:18.495147pt;}
._a{width:19.388800pt;}
._1f{width:20.876160pt;}
._1b{width:21.863893pt;}
._22{width:23.195947pt;}
._21{width:24.488107pt;}
._16{width:27.114880pt;}
._23{width:29.505280pt;}
._1e{width:32.695467pt;}
._1d{width:33.701760pt;}
._14{width:38.641920pt;}
._25{width:39.840000pt;}
._17{width:41.920213pt;}
._18{width:42.992427pt;}
._26{width:44.902613pt;}
._19{width:46.101120pt;}
._29{width:57.726507pt;}
._1a{width:64.043520pt;}
._20{width:69.185920pt;}
._1c{width:96.043520pt;}
._2a{width:99.672320pt;}
._27{width:138.653013pt;}
._28{width:179.994880pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:5.920000pt;}
.y7d{bottom:5.946667pt;}
.y69{bottom:8.320000pt;}
.ye0{bottom:8.480000pt;}
.y6b{bottom:8.506667pt;}
.ye2{bottom:16.320000pt;}
.ye4{bottom:17.120000pt;}
.y81{bottom:24.480000pt;}
.y89{bottom:24.634667pt;}
.y66{bottom:24.640000pt;}
.y7c{bottom:24.666667pt;}
.y74{bottom:24.680000pt;}
.y80{bottom:43.200000pt;}
.y88{bottom:43.354667pt;}
.y70{bottom:43.360000pt;}
.y8b{bottom:43.386667pt;}
.yc1{bottom:43.400000pt;}
.y6{bottom:54.432000pt;}
.y84{bottom:62.080000pt;}
.yfc{bottom:80.032000pt;}
.y7a{bottom:87.072000pt;}
.yfb{bottom:89.792000pt;}
.y30{bottom:91.872000pt;}
.yba{bottom:92.512000pt;}
.y64{bottom:97.152000pt;}
.y79{bottom:105.792000pt;}
.yfa{bottom:108.512000pt;}
.y2f{bottom:110.592000pt;}
.yb9{bottom:111.232000pt;}
.yde{bottom:113.152000pt;}
.y63{bottom:115.872000pt;}
.y78{bottom:124.512000pt;}
.yf9{bottom:127.232000pt;}
.y87{bottom:127.392000pt;}
.y2e{bottom:129.312000pt;}
.yb8{bottom:129.952000pt;}
.ydd{bottom:131.872000pt;}
.y62{bottom:134.586667pt;}
.y77{bottom:143.226667pt;}
.yf8{bottom:145.946667pt;}
.y2d{bottom:148.026667pt;}
.yb7{bottom:148.666667pt;}
.ydc{bottom:150.586667pt;}
.y61{bottom:153.306667pt;}
.y76{bottom:156.666667pt;}
.yf7{bottom:164.666667pt;}
.y2c{bottom:166.746667pt;}
.yb6{bottom:167.386667pt;}
.ydb{bottom:169.306667pt;}
.y60{bottom:172.026667pt;}
.y75{bottom:176.026667pt;}
.yf6{bottom:183.386667pt;}
.y86{bottom:183.546667pt;}
.y2b{bottom:185.466667pt;}
.yb5{bottom:186.106667pt;}
.yda{bottom:188.026667pt;}
.y5f{bottom:190.746667pt;}
.yf5{bottom:202.106667pt;}
.y2a{bottom:204.186667pt;}
.yb4{bottom:204.826667pt;}
.yd9{bottom:206.746667pt;}
.y5e{bottom:209.466667pt;}
.yf4{bottom:220.826667pt;}
.y29{bottom:222.906667pt;}
.yb3{bottom:223.546667pt;}
.yd8{bottom:225.466667pt;}
.y5d{bottom:228.186667pt;}
.y73{bottom:232.186667pt;}
.yf3{bottom:239.546667pt;}
.y85{bottom:239.706667pt;}
.y28{bottom:241.626667pt;}
.yb2{bottom:242.266667pt;}
.yd7{bottom:244.186667pt;}
.y5c{bottom:246.906667pt;}
.yf2{bottom:258.306667pt;}
.y27{bottom:260.386667pt;}
.yb1{bottom:261.026667pt;}
.yd6{bottom:262.946667pt;}
.y5b{bottom:265.666667pt;}
.y72{bottom:269.666667pt;}
.yf1{bottom:277.026667pt;}
.y83{bottom:277.186667pt;}
.y26{bottom:279.106667pt;}
.yb0{bottom:279.746667pt;}
.yd5{bottom:281.666667pt;}
.y5a{bottom:284.386667pt;}
.yf0{bottom:295.746667pt;}
.y25{bottom:297.826667pt;}
.yaf{bottom:298.466667pt;}
.yd4{bottom:300.386667pt;}
.y59{bottom:303.106667pt;}
.y71{bottom:307.106667pt;}
.yef{bottom:314.466667pt;}
.y24{bottom:316.546667pt;}
.yae{bottom:317.186667pt;}
.yd3{bottom:319.106667pt;}
.y58{bottom:321.826667pt;}
.yee{bottom:333.186667pt;}
.y23{bottom:335.266667pt;}
.yad{bottom:335.906667pt;}
.yd2{bottom:337.826667pt;}
.y57{bottom:340.546667pt;}
.y6f{bottom:344.546667pt;}
.yed{bottom:351.906667pt;}
.y82{bottom:352.066667pt;}
.y22{bottom:353.826667pt;}
.yac{bottom:354.626667pt;}
.yd1{bottom:356.546667pt;}
.y56{bottom:359.266667pt;}
.yec{bottom:370.626667pt;}
.y21{bottom:372.546667pt;}
.yab{bottom:373.346667pt;}
.yd0{bottom:375.266667pt;}
.y55{bottom:377.986667pt;}
.yaa{bottom:386.786667pt;}
.yeb{bottom:389.346667pt;}
.y20{bottom:391.266667pt;}
.ycf{bottom:393.986667pt;}
.y54{bottom:396.706667pt;}
.y6e{bottom:400.706667pt;}
.ya9{bottom:406.146667pt;}
.yea{bottom:408.066667pt;}
.y7f{bottom:408.226667pt;}
.y1f{bottom:409.986667pt;}
.yce{bottom:412.706667pt;}
.y53{bottom:415.426667pt;}
.ya8{bottom:424.866667pt;}
.ye9{bottom:426.786667pt;}
.y1e{bottom:428.706667pt;}
.ycd{bottom:431.426667pt;}
.y52{bottom:434.146667pt;}
.y6d{bottom:438.146667pt;}
.ya7{bottom:444.226667pt;}
.ye8{bottom:445.506667pt;}
.y1d{bottom:447.426667pt;}
.ycc{bottom:450.146667pt;}
.y51{bottom:452.866667pt;}
.y6c{bottom:459.266667pt;}
.y7e{bottom:464.226667pt;}
.y1c{bottom:466.146667pt;}
.ycb{bottom:468.866667pt;}
.ya6{bottom:469.506667pt;}
.y50{bottom:471.586667pt;}
.ye7{bottom:482.946667pt;}
.y1b{bottom:484.866667pt;}
.yca{bottom:487.586667pt;}
.ya5{bottom:488.226667pt;}
.y4f{bottom:490.306667pt;}
.y6a{bottom:496.706667pt;}
.y7b{bottom:501.666667pt;}
.y1a{bottom:503.613333pt;}
.yc9{bottom:506.333333pt;}
.ya4{bottom:506.973333pt;}
.y4e{bottom:509.053333pt;}
.y68{bottom:518.013333pt;}
.ye6{bottom:520.413333pt;}
.y19{bottom:522.333333pt;}
.yc8{bottom:525.053333pt;}
.ya3{bottom:525.693333pt;}
.y4d{bottom:527.773333pt;}
.ye5{bottom:539.133333pt;}
.y65{bottom:539.933333pt;}
.yc7{bottom:543.773333pt;}
.ya2{bottom:544.413333pt;}
.y4c{bottom:546.493333pt;}
.ye3{bottom:552.573333pt;}
.yc6{bottom:557.213333pt;}
.y18{bottom:562.013333pt;}
.ya1{bottom:563.133333pt;}
.y4b{bottom:565.213333pt;}
.yc5{bottom:576.573333pt;}
.ya0{bottom:581.853333pt;}
.ye1{bottom:582.493333pt;}
.y4a{bottom:583.933333pt;}
.y17{bottom:588.573333pt;}
.y9f{bottom:600.573333pt;}
.y49{bottom:602.653333pt;}
.y16{bottom:607.293333pt;}
.ydf{bottom:612.253333pt;}
.yc4{bottom:614.013333pt;}
.y9e{bottom:619.293333pt;}
.y48{bottom:621.373333pt;}
.y15{bottom:626.013333pt;}
.y9d{bottom:638.013333pt;}
.y47{bottom:640.093333pt;}
.y14{bottom:644.733333pt;}
.yc3{bottom:651.453333pt;}
.y9c{bottom:656.733333pt;}
.y46{bottom:658.813333pt;}
.y13{bottom:663.453333pt;}
.y9b{bottom:675.453333pt;}
.y45{bottom:677.533333pt;}
.y12{bottom:682.173333pt;}
.y9a{bottom:694.173333pt;}
.y44{bottom:696.253333pt;}
.y11{bottom:700.893333pt;}
.yc2{bottom:707.613333pt;}
.y99{bottom:712.893333pt;}
.y43{bottom:714.973333pt;}
.y10{bottom:719.613333pt;}
.y98{bottom:731.613333pt;}
.y42{bottom:733.693333pt;}
.yf{bottom:738.333333pt;}
.yc0{bottom:745.053333pt;}
.y97{bottom:750.333333pt;}
.y41{bottom:752.413333pt;}
.ye{bottom:757.093333pt;}
.y96{bottom:769.093333pt;}
.y40{bottom:771.173333pt;}
.yd{bottom:777.733333pt;}
.y95{bottom:787.813333pt;}
.y3f{bottom:789.893333pt;}
.yc{bottom:801.093333pt;}
.ybf{bottom:801.253333pt;}
.y94{bottom:806.533333pt;}
.y3e{bottom:808.613333pt;}
.yb{bottom:819.813333pt;}
.y93{bottom:825.253333pt;}
.y3d{bottom:827.173333pt;}
.ya{bottom:834.693333pt;}
.ybe{bottom:838.693333pt;}
.y92{bottom:843.973333pt;}
.y3c{bottom:845.893333pt;}
.y9{bottom:854.533333pt;}
.y91{bottom:862.693333pt;}
.y3b{bottom:864.613333pt;}
.ybd{bottom:876.133333pt;}
.y8{bottom:876.933333pt;}
.y90{bottom:881.413333pt;}
.y3a{bottom:883.333333pt;}
.y8f{bottom:900.133333pt;}
.y39{bottom:902.053333pt;}
.y7{bottom:906.853333pt;}
.ybc{bottom:913.573333pt;}
.y8e{bottom:918.853333pt;}
.y38{bottom:920.773333pt;}
.y8d{bottom:932.293333pt;}
.y37{bottom:939.493333pt;}
.y5{bottom:942.533333pt;}
.ybb{bottom:951.013333pt;}
.y8c{bottom:951.653333pt;}
.y36{bottom:958.213333pt;}
.y4{bottom:971.173333pt;}
.y35{bottom:976.933333pt;}
.y8a{bottom:989.093333pt;}
.y34{bottom:995.653333pt;}
.y3{bottom:999.653333pt;}
.y33{bottom:1014.400000pt;}
.y2{bottom:1028.320000pt;}
.y32{bottom:1033.120000pt;}
.y1{bottom:1059.040000pt;}
.y31{bottom:1060.640000pt;}
.h10{height:18.720000pt;}
.h16{height:18.752000pt;}
.hc{height:21.120000pt;}
.h17{height:21.280000pt;}
.hd{height:21.312000pt;}
.h18{height:29.120000pt;}
.h19{height:29.920000pt;}
.h7{height:34.374375pt;}
.hb{height:37.440000pt;}
.hf{height:37.472000pt;}
.h12{height:42.745000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h11{height:52.934375pt;}
.h5{height:54.390938pt;}
.ha{height:54.598989pt;}
.h9{height:55.298750pt;}
.h13{height:56.000000pt;}
.he{height:56.160000pt;}
.h15{height:56.192000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h14{height:74.880000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:46.912000pt;}
.w5{width:50.080000pt;}
.w9{width:55.872000pt;}
.w13{width:57.120000pt;}
.w4{width:57.152000pt;}
.wa{width:57.440000pt;}
.wf{width:60.640000pt;}
.w17{width:64.000000pt;}
.we{width:68.352000pt;}
.w19{width:78.112000pt;}
.w1a{width:110.880000pt;}
.wc{width:111.840000pt;}
.w7{width:114.560000pt;}
.w11{width:118.080000pt;}
.w6{width:121.632000pt;}
.wb{width:128.992000pt;}
.w10{width:149.466667pt;}
.w15{width:150.400000pt;}
.w18{width:189.946667pt;}
.w16{width:197.786667pt;}
.wd{width:309.666667pt;}
.w8{width:343.746667pt;}
.w3{width:350.786667pt;}
.w12{width:438.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x5{left:12.480000pt;}
.x13{left:16.480000pt;}
.x7{left:17.600000pt;}
.x1a{left:19.520000pt;}
.xf{left:21.280000pt;}
.x16{left:22.880000pt;}
.x9{left:29.120000pt;}
.xb{left:31.200000pt;}
.x11{left:32.800000pt;}
.x1c{left:33.920000pt;}
.x1b{left:34.880000pt;}
.x18{left:43.040000pt;}
.x1{left:47.999988pt;}
.xc{left:55.232000pt;}
.x25{left:59.999988pt;}
.x24{left:66.079988pt;}
.x26{left:71.999988pt;}
.x27{left:90.111988pt;}
.x2{left:96.031988pt;}
.x1f{left:245.786667pt;}
.x20{left:302.946667pt;}
.x14{left:357.666667pt;}
.x21{left:366.946667pt;}
.xd{left:391.746667pt;}
.x4{left:398.786667pt;}
.x15{left:426.013333pt;}
.xe{left:447.613333pt;}
.x6{left:455.933333pt;}
.x17{left:486.653333pt;}
.x10{left:505.053333pt;}
.x8{left:506.013333pt;}
.x1d{left:543.613333pt;}
.x22{left:556.893333pt;}
.x1e{left:590.533333pt;}
.xa{left:627.653333pt;}
.x12{left:634.053333pt;}
.x23{left:635.013333pt;}
.x19{left:636.133333pt;}
.x28{left:746.053322pt;}
}




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