
    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_08a6b4e658a0dc1d8873bbe5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_18a382d82c5e3fe2325c1bdd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_a4a22166cdb38cb1ec5e53c1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_b881a4dc12372bc3b6c9902f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_d2512d13b130e00b799ec9d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_b21da4da127d5ac4a2529739.woff')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_d34a4d1cde5f76bae970b8cc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_64a7ee0df4a98772f361283b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_8bbd8ab89d3583f1ef064b3e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_2214653e17a8296289082fc9.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_e5bcb2cd4e15b1a8e9f506de.woff')format("woff");}.ffb{font-family:ffb;line-height:0.916992;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_c1749b0fa796f7052bae1c41.woff')format("woff");}.ffc{font-family:ffc;line-height:1.123047;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:ffd;src:url('chunks/assets/font_ce4896e3657e4d948d8fa464.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_301d63bf2bc469df1fa5aaaa.woff')format("woff");}.ffe{font-family:ffe;line-height:0.853027;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);}
.v5{vertical-align:-54.000000px;}
.v4{vertical-align:-36.720000px;}
.v3{vertical-align:-17.280000px;}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.360000px;}
.ls1e{letter-spacing:-0.690000px;}
.lsb{letter-spacing:-0.461400px;}
.ls15{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.183600px;}
.ls6{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.073200px;}
.ls5{letter-spacing:-0.070800px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.028080px;}
.ls0{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.115920px;}
.ls19{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.187200px;}
.lsa{letter-spacing:0.249600px;}
.lsd{letter-spacing:0.252720px;}
.ls8{letter-spacing:0.341400px;}
.ls7{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.378600px;}
.ls16{letter-spacing:0.513360px;}
.ls1c{letter-spacing:1.980000px;}
.ls14{letter-spacing:2.700000px;}
.ls11{letter-spacing:3.806640px;}
.lsc{letter-spacing:8.460000px;}
.ls17{letter-spacing:9.900000px;}
.ls13{letter-spacing:10.620000px;}
.ls9{letter-spacing:19.980000px;}
.ls10{letter-spacing:26.586720px;}
.ls18{letter-spacing:32.940000px;}
.ls1b{letter-spacing:60.300000px;}
.ls1a{letter-spacing:61.020000px;}
.lsf{letter-spacing:125.621280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,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(192,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-84.240000px;}
.ws7{word-spacing:-83.778600px;}
.ws3{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.401400px;}
.ws2{word-spacing:-21.060000px;}
.ws9{word-spacing:-20.370000px;}
.ws5{word-spacing:-19.976160px;}
.ws0{word-spacing:-19.542960px;}
.ws1{word-spacing:-14.904000px;}
.ws4{word-spacing:0.000000px;}
._9{margin-left:-9.013680px;}
._10{margin-left:-7.918560px;}
._a{margin-left:-6.149520px;}
._8{margin-left:-4.212000px;}
._2{margin-left:-2.232240px;}
._0{margin-left:-1.095120px;}
._1{width:1.365120px;}
._5{width:2.542080px;}
._3{width:4.043520px;}
._c{width:5.078880px;}
._4{width:6.113280px;}
._f{width:7.194000px;}
._b{width:8.893440px;}
._21{width:9.940320px;}
._6{width:10.951200px;}
._7{width:12.196800px;}
._1c{width:14.068080px;}
._1d{width:15.078960px;}
._1e{width:16.089840px;}
._1f{width:17.774640px;}
._12{width:18.785520px;}
._13{width:19.863840px;}
._23{width:22.204800px;}
._25{width:23.235120px;}
._22{width:24.682320px;}
._24{width:25.777440px;}
._1b{width:27.293760px;}
._1a{width:28.810080px;}
._27{width:31.805520px;}
._26{width:33.264000px;}
._14{width:34.538400px;}
._d{width:36.391680px;}
._28{width:41.109120px;}
._17{width:42.878160px;}
._e{width:44.310240px;}
._2d{width:60.023280px;}
._2c{width:61.899360px;}
._29{width:71.604000px;}
._19{width:92.495520px;}
._20{width:94.433040px;}
._15{width:111.028320px;}
._16{width:113.387040px;}
._18{width:225.847440px;}
._2b{width:233.260560px;}
._11{width:237.893760px;}
._2a{width:256.173840px;}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(54,95,145);}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc9{color:rgb(36,63,96);}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(0,32,96);}
.fc3{color:rgb(204,153,0);}
.fc1{color:rgb(41,41,41);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:90.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y23{bottom:8.100000px;}
.y28{bottom:8.280000px;}
.y70{bottom:8.820000px;}
.y6e{bottom:9.000000px;}
.y73{bottom:9.180000px;}
.y53{bottom:9.360000px;}
.y6a{bottom:10.980000px;}
.y68{bottom:11.520000px;}
.y51{bottom:12.420000px;}
.y47{bottom:14.760000px;}
.y6{bottom:15.516000px;}
.y2a{bottom:21.960000px;}
.y25{bottom:22.140000px;}
.y52{bottom:25.380000px;}
.y54{bottom:26.280000px;}
.y2d{bottom:35.814000px;}
.y2b{bottom:35.820000px;}
.ya0{bottom:35.994000px;}
.y26{bottom:36.000000px;}
.y89{bottom:36.045000px;}
.y50{bottom:40.140000px;}
.y5{bottom:40.536000px;}
.y57{bottom:41.400000px;}
.y44{bottom:41.580000px;}
.y4d{bottom:49.680000px;}
.y80{bottom:63.540000px;}
.y4e{bottom:63.720000px;}
.y43{bottom:69.345000px;}
.y81{bottom:91.440000px;}
.y7e{bottom:91.470000px;}
.y46{bottom:94.176000px;}
.y42{bottom:97.245000px;}
.ye2{bottom:104.616000px;}
.y64{bottom:108.036000px;}
.yc1{bottom:111.996000px;}
.y9f{bottom:115.416000px;}
.y2c{bottom:125.136000px;}
.y45{bottom:129.276000px;}
.ye1{bottom:132.516000px;}
.yc0{bottom:139.716000px;}
.y63{bottom:146.916000px;}
.ye0{bottom:160.230000px;}
.ybf{bottom:167.610000px;}
.y9e{bottom:171.750000px;}
.y62{bottom:174.630000px;}
.y29{bottom:181.470000px;}
.ydf{bottom:189.030000px;}
.ybe{bottom:195.330000px;}
.y61{bottom:202.530000px;}
.y41{bottom:217.470000px;}
.yde{bottom:217.830000px;}
.ybd{bottom:223.050000px;}
.y9d{bottom:227.910000px;}
.y60{bottom:230.250000px;}
.y27{bottom:237.630000px;}
.ydd{bottom:245.910000px;}
.ybc{bottom:250.950000px;}
.y5f{bottom:257.970000px;}
.ydc{bottom:273.630000px;}
.ybb{bottom:278.670000px;}
.y9c{bottom:285.555000px;}
.y5e{bottom:285.735000px;}
.y24{bottom:294.015000px;}
.ydb{bottom:301.395000px;}
.yba{bottom:306.435000px;}
.yf7{bottom:307.335000px;}
.y5d{bottom:313.635000px;}
.yda{bottom:330.195000px;}
.y9b{bottom:334.515000px;}
.yf6{bottom:336.315000px;}
.y5c{bottom:341.355000px;}
.yb9{bottom:343.695000px;}
.y22{bottom:350.355000px;}
.yd9{bottom:358.095000px;}
.y9a{bottom:362.235000px;}
.yf5{bottom:364.215000px;}
.yb8{bottom:365.295000px;}
.y40{bottom:368.355000px;}
.y5b{bottom:369.075000px;}
.yd8{bottom:385.815000px;}
.y21{bottom:387.075000px;}
.y7f{bottom:388.875000px;}
.y99{bottom:389.955000px;}
.yf4{bottom:391.935000px;}
.yb7{bottom:393.015000px;}
.y5a{bottom:396.975000px;}
.yd7{bottom:413.715000px;}
.y20{bottom:414.795000px;}
.y98{bottom:417.855000px;}
.yb6{bottom:420.735000px;}
.y3f{bottom:424.695000px;}
.yf3{bottom:440.715000px;}
.yd6{bottom:441.435000px;}
.y1f{bottom:442.515000px;}
.y97{bottom:445.575000px;}
.yb5{bottom:448.635000px;}
.y59{bottom:452.415000px;}
.y3e{bottom:453.135000px;}
.yf2{bottom:468.435000px;}
.yd5{bottom:469.155000px;}
.y1e{bottom:470.235000px;}
.y96{bottom:473.295000px;}
.yb4{bottom:476.355000px;}
.y58{bottom:480.135000px;}
.y3d{bottom:481.755000px;}
.yd4{bottom:496.875000px;}
.y1d{bottom:498.135000px;}
.y56{bottom:500.655000px;}
.y95{bottom:501.015000px;}
.yb3{bottom:504.075000px;}
.y3c{bottom:510.195000px;}
.yf1{bottom:517.035000px;}
.yd3{bottom:524.775000px;}
.y1c{bottom:525.855000px;}
.y94{bottom:528.915000px;}
.yb2{bottom:531.795000px;}
.yf0{bottom:545.115000px;}
.yd2{bottom:552.495000px;}
.y1b{bottom:553.575000px;}
.y93{bottom:556.635000px;}
.yb1{bottom:559.695000px;}
.y55{bottom:565.665000px;}
.y3b{bottom:566.565000px;}
.yef{bottom:572.865000px;}
.yd1{bottom:580.245000px;}
.y1a{bottom:581.325000px;}
.y92{bottom:584.385000px;}
.yb0{bottom:587.445000px;}
.y3a{bottom:595.005000px;}
.yee{bottom:600.585000px;}
.yd0{bottom:608.145000px;}
.y19{bottom:609.225000px;}
.y91{bottom:612.285000px;}
.y7d{bottom:612.465000px;}
.yaf{bottom:615.165000px;}
.y4f{bottom:630.645000px;}
.ycf{bottom:635.865000px;}
.y18{bottom:636.945000px;}
.y90{bottom:640.005000px;}
.yae{bottom:643.065000px;}
.y7c{bottom:649.185000px;}
.yed{bottom:649.365000px;}
.y39{bottom:651.345000px;}
.yce{bottom:663.585000px;}
.y17{bottom:664.665000px;}
.y8f{bottom:667.725000px;}
.yad{bottom:670.785000px;}
.y7b{bottom:676.905000px;}
.yec{bottom:677.085000px;}
.ycd{bottom:691.305000px;}
.y16{bottom:692.565000px;}
.y8e{bottom:695.445000px;}
.y4c{bottom:695.625000px;}
.y7a{bottom:704.625000px;}
.y38{bottom:707.685000px;}
.ycc{bottom:719.205000px;}
.yac{bottom:719.565000px;}
.y15{bottom:720.285000px;}
.y8d{bottom:723.345000px;}
.yeb{bottom:725.865000px;}
.y79{bottom:732.525000px;}
.y37{bottom:744.225000px;}
.ycb{bottom:746.925000px;}
.yab{bottom:747.285000px;}
.y14{bottom:748.005000px;}
.y8c{bottom:751.065000px;}
.yea{bottom:753.765000px;}
.y78{bottom:760.245000px;}
.y36{bottom:772.125000px;}
.yca{bottom:774.645000px;}
.yaa{bottom:775.005000px;}
.y13{bottom:775.725000px;}
.y8b{bottom:778.785000px;}
.ye9{bottom:781.485000px;}
.y4b{bottom:787.785000px;}
.y77{bottom:787.965000px;}
.y35{bottom:799.845000px;}
.yc9{bottom:802.365000px;}
.y12{bottom:803.625000px;}
.y8a{bottom:806.505000px;}
.ye8{bottom:809.205000px;}
.y4a{bottom:815.505000px;}
.y76{bottom:815.685000px;}
.ya9{bottom:823.785000px;}
.y34{bottom:827.565000px;}
.y88{bottom:829.905000px;}
.yc8{bottom:830.265000px;}
.y11{bottom:831.345000px;}
.y75{bottom:836.205000px;}
.ye7{bottom:836.925000px;}
.y49{bottom:843.405000px;}
.ya8{bottom:851.550000px;}
.y33{bottom:855.330000px;}
.yc7{bottom:858.030000px;}
.y10{bottom:859.110000px;}
.y74{bottom:866.850000px;}
.y48{bottom:871.170000px;}
.ya7{bottom:882.330000px;}
.y32{bottom:883.230000px;}
.ye6{bottom:885.570000px;}
.yc6{bottom:885.750000px;}
.yf{bottom:887.010000px;}
.y87{bottom:889.350000px;}
.y6c{bottom:891.510000px;}
.y31{bottom:903.570000px;}
.ya6{bottom:913.290000px;}
.yc5{bottom:913.650000px;}
.ye{bottom:914.730000px;}
.y86{bottom:920.850000px;}
.ya5{bottom:941.010000px;}
.yc4{bottom:941.370000px;}
.yd{bottom:942.450000px;}
.y6b{bottom:947.850000px;}
.y72{bottom:950.910000px;}
.y85{bottom:952.350000px;}
.y30{bottom:959.910000px;}
.ya4{bottom:968.730000px;}
.yc3{bottom:969.090000px;}
.yc{bottom:970.170000px;}
.y69{bottom:980.610000px;}
.y71{bottom:981.510000px;}
.y84{bottom:991.950000px;}
.ya3{bottom:996.450000px;}
.ye5{bottom:996.810000px;}
.yc2{bottom:997.890000px;}
.yb{bottom:998.070000px;}
.y67{bottom:1011.930000px;}
.y6f{bottom:1012.290000px;}
.y2f{bottom:1016.070000px;}
.y83{bottom:1022.730000px;}
.ya2{bottom:1024.350000px;}
.ye4{bottom:1024.710000px;}
.ya{bottom:1025.790000px;}
.y6d{bottom:1042.350000px;}
.y66{bottom:1043.790000px;}
.ya1{bottom:1052.070000px;}
.ye3{bottom:1053.330000px;}
.y9{bottom:1053.510000px;}
.y2e{bottom:1072.410000px;}
.y8{bottom:1081.410000px;}
.y65{bottom:1100.130000px;}
.y82{bottom:1108.950000px;}
.y7{bottom:1109.130000px;}
.y4{bottom:1137.060000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1184.760000px;}
.y1{bottom:1210.680000px;}
.ha{height:27.720000px;}
.h10{height:27.900000px;}
.h1a{height:29.340000px;}
.h1b{height:29.880000px;}
.h1c{height:29.916000px;}
.h16{height:30.060000px;}
.h18{height:30.600000px;}
.h1f{height:30.780000px;}
.h17{height:31.140000px;}
.h19{height:32.040000px;}
.h11{height:34.380000px;}
.h22{height:45.956953px;}
.he{height:55.440000px;}
.hb{height:55.620000px;}
.hd{height:55.656000px;}
.h20{height:58.716000px;}
.hc{height:59.066719px;}
.h8{height:59.436914px;}
.h6{height:62.506080px;}
.h15{height:64.116000px;}
.h13{height:64.260000px;}
.h2{height:67.169883px;}
.h3{height:71.762695px;}
.h5{height:76.355508px;}
.h14{height:76.877227px;}
.h4{height:82.635820px;}
.h9{height:82.676953px;}
.h12{height:83.340000px;}
.h7{height:84.898125px;}
.h21{height:86.585445px;}
.h1e{height:111.060000px;}
.h1d{height:111.096000px;}
.hf{height:150.150000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:84.240000px;}
.w9{width:84.276000px;}
.wb{width:95.076000px;}
.wc{width:105.480000px;}
.wd{width:107.460000px;}
.w8{width:137.016000px;}
.w12{width:138.096000px;}
.w13{width:138.240000px;}
.w11{width:138.636000px;}
.w14{width:143.640000px;}
.w10{width:155.910000px;}
.w16{width:232.770000px;}
.w15{width:232.815000px;}
.w17{width:232.950000px;}
.w6{width:243.435000px;}
.we{width:271.830000px;}
.wf{width:272.055000px;}
.w3{width:349.635000px;}
.w4{width:349.815000px;}
.w7{width:452.415000px;}
.w5{width:700.890000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:7.776000px;}
.x37{left:10.440000px;}
.x1d{left:13.860000px;}
.x18{left:15.840000px;}
.x40{left:18.720000px;}
.x22{left:21.960000px;}
.x1f{left:23.760000px;}
.x42{left:26.460000px;}
.x15{left:27.720000px;}
.x3b{left:33.120000px;}
.x39{left:34.740000px;}
.x3a{left:46.116000px;}
.x36{left:47.376000px;}
.x50{left:54.360000px;}
.x1e{left:56.190000px;}
.x19{left:59.070000px;}
.x48{left:66.090000px;}
.x35{left:67.140000px;}
.x1c{left:72.570000px;}
.x16{left:74.730000px;}
.x21{left:76.530000px;}
.x29{left:79.770000px;}
.x5{left:84.239987px;}
.xc{left:85.499987px;}
.x3e{left:86.580000px;}
.x14{left:89.490000px;}
.x13{left:91.470000px;}
.x1a{left:93.990000px;}
.x6{left:95.615987px;}
.x4e{left:97.020000px;}
.x23{left:99.030000px;}
.x49{left:105.510000px;}
.x17{left:110.190000px;}
.x3d{left:111.450000px;}
.x4f{left:112.680000px;}
.x34{left:113.805000px;}
.x41{left:119.565000px;}
.x2b{left:121.500000px;}
.x3f{left:125.490000px;}
.x24{left:129.990000px;}
.x11{left:132.870000px;}
.x26{left:135.935987px;}
.x20{left:137.550000px;}
.x4{left:146.735987px;}
.x1b{left:150.870000px;}
.x43{left:157.349987px;}
.x4a{left:164.370000px;}
.x33{left:174.270000px;}
.x10{left:179.129987px;}
.x3c{left:189.930000px;}
.xb{left:198.029987px;}
.xe{left:201.629987px;}
.x38{left:206.130000px;}
.x2c{left:223.590000px;}
.x32{left:239.789987px;}
.x44{left:242.490000px;}
.x52{left:271.649987px;}
.x9{left:300.494987px;}
.x4b{left:306.794987px;}
.x2d{left:308.775000px;}
.xa{left:310.754987px;}
.x4c{left:319.575000px;}
.x54{left:326.414987px;}
.x2a{left:330.015000px;}
.x55{left:344.054987px;}
.x51{left:352.334987px;}
.x53{left:357.554987px;}
.x7{left:379.334987px;}
.x45{left:381.855000px;}
.x2e{left:393.735000px;}
.x57{left:397.154987px;}
.xd{left:409.034987px;}
.x12{left:436.215000px;}
.x8{left:446.474987px;}
.x2f{left:489.525000px;}
.x1{left:503.024987px;}
.x2{left:507.884987px;}
.x46{left:520.665000px;}
.x56{left:527.684987px;}
.x4d{left:553.065000px;}
.x30{left:595.725000px;}
.x28{left:615.390000px;}
.x3{left:632.084987px;}
.x47{left:659.670000px;}
.x31{left:680.910000px;}
.x25{left:728.609987px;}
.xf{left:744.449987px;}
@media print{
.v5{vertical-align:-48.000000pt;}
.v4{vertical-align:-32.640000pt;}
.v3{vertical-align:-15.360000pt;}
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.320000pt;}
.ls1e{letter-spacing:-0.613333pt;}
.lsb{letter-spacing:-0.410133pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.163200pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.065067pt;}
.ls5{letter-spacing:-0.062933pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.024960pt;}
.ls0{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.103040pt;}
.ls19{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.166400pt;}
.lsa{letter-spacing:0.221867pt;}
.lsd{letter-spacing:0.224640pt;}
.ls8{letter-spacing:0.303467pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.336533pt;}
.ls16{letter-spacing:0.456320pt;}
.ls1c{letter-spacing:1.760000pt;}
.ls14{letter-spacing:2.400000pt;}
.ls11{letter-spacing:3.383680pt;}
.lsc{letter-spacing:7.520000pt;}
.ls17{letter-spacing:8.800000pt;}
.ls13{letter-spacing:9.440000pt;}
.ls9{letter-spacing:17.760000pt;}
.ls10{letter-spacing:23.632640pt;}
.ls18{letter-spacing:29.280000pt;}
.ls1b{letter-spacing:53.600000pt;}
.ls1a{letter-spacing:54.240000pt;}
.lsf{letter-spacing:111.663360pt;}
.ws6{word-spacing:-74.880000pt;}
.ws7{word-spacing:-74.469867pt;}
.ws3{word-spacing:-19.040000pt;}
.ws8{word-spacing:-19.023467pt;}
.ws2{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.106667pt;}
.ws5{word-spacing:-17.756587pt;}
.ws0{word-spacing:-17.371520pt;}
.ws1{word-spacing:-13.248000pt;}
.ws4{word-spacing:0.000000pt;}
._9{margin-left:-8.012160pt;}
._10{margin-left:-7.038720pt;}
._a{margin-left:-5.466240pt;}
._8{margin-left:-3.744000pt;}
._2{margin-left:-1.984213pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.213440pt;}
._5{width:2.259627pt;}
._3{width:3.594240pt;}
._c{width:4.514560pt;}
._4{width:5.434027pt;}
._f{width:6.394667pt;}
._b{width:7.905280pt;}
._21{width:8.835840pt;}
._6{width:9.734400pt;}
._7{width:10.841600pt;}
._1c{width:12.504960pt;}
._1d{width:13.403520pt;}
._1e{width:14.302080pt;}
._1f{width:15.799680pt;}
._12{width:16.698240pt;}
._13{width:17.656747pt;}
._23{width:19.737600pt;}
._25{width:20.653440pt;}
._22{width:21.939840pt;}
._24{width:22.913280pt;}
._1b{width:24.261120pt;}
._1a{width:25.608960pt;}
._27{width:28.271573pt;}
._26{width:29.568000pt;}
._14{width:30.700800pt;}
._d{width:32.348160pt;}
._28{width:36.541440pt;}
._17{width:38.113920pt;}
._e{width:39.386880pt;}
._2d{width:53.354027pt;}
._2c{width:55.021653pt;}
._29{width:63.648000pt;}
._19{width:82.218240pt;}
._20{width:83.940480pt;}
._15{width:98.691840pt;}
._16{width:100.788480pt;}
._18{width:200.753280pt;}
._2b{width:207.342720pt;}
._11{width:211.461120pt;}
._2a{width:227.710080pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:80.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:7.200000pt;}
.y28{bottom:7.360000pt;}
.y70{bottom:7.840000pt;}
.y6e{bottom:8.000000pt;}
.y73{bottom:8.160000pt;}
.y53{bottom:8.320000pt;}
.y6a{bottom:9.760000pt;}
.y68{bottom:10.240000pt;}
.y51{bottom:11.040000pt;}
.y47{bottom:13.120000pt;}
.y6{bottom:13.792000pt;}
.y2a{bottom:19.520000pt;}
.y25{bottom:19.680000pt;}
.y52{bottom:22.560000pt;}
.y54{bottom:23.360000pt;}
.y2d{bottom:31.834667pt;}
.y2b{bottom:31.840000pt;}
.ya0{bottom:31.994667pt;}
.y26{bottom:32.000000pt;}
.y89{bottom:32.040000pt;}
.y50{bottom:35.680000pt;}
.y5{bottom:36.032000pt;}
.y57{bottom:36.800000pt;}
.y44{bottom:36.960000pt;}
.y4d{bottom:44.160000pt;}
.y80{bottom:56.480000pt;}
.y4e{bottom:56.640000pt;}
.y43{bottom:61.640000pt;}
.y81{bottom:81.280000pt;}
.y7e{bottom:81.306667pt;}
.y46{bottom:83.712000pt;}
.y42{bottom:86.440000pt;}
.ye2{bottom:92.992000pt;}
.y64{bottom:96.032000pt;}
.yc1{bottom:99.552000pt;}
.y9f{bottom:102.592000pt;}
.y2c{bottom:111.232000pt;}
.y45{bottom:114.912000pt;}
.ye1{bottom:117.792000pt;}
.yc0{bottom:124.192000pt;}
.y63{bottom:130.592000pt;}
.ye0{bottom:142.426667pt;}
.ybf{bottom:148.986667pt;}
.y9e{bottom:152.666667pt;}
.y62{bottom:155.226667pt;}
.y29{bottom:161.306667pt;}
.ydf{bottom:168.026667pt;}
.ybe{bottom:173.626667pt;}
.y61{bottom:180.026667pt;}
.y41{bottom:193.306667pt;}
.yde{bottom:193.626667pt;}
.ybd{bottom:198.266667pt;}
.y9d{bottom:202.586667pt;}
.y60{bottom:204.666667pt;}
.y27{bottom:211.226667pt;}
.ydd{bottom:218.586667pt;}
.ybc{bottom:223.066667pt;}
.y5f{bottom:229.306667pt;}
.ydc{bottom:243.226667pt;}
.ybb{bottom:247.706667pt;}
.y9c{bottom:253.826667pt;}
.y5e{bottom:253.986667pt;}
.y24{bottom:261.346667pt;}
.ydb{bottom:267.906667pt;}
.yba{bottom:272.386667pt;}
.yf7{bottom:273.186667pt;}
.y5d{bottom:278.786667pt;}
.yda{bottom:293.506667pt;}
.y9b{bottom:297.346667pt;}
.yf6{bottom:298.946667pt;}
.y5c{bottom:303.426667pt;}
.yb9{bottom:305.506667pt;}
.y22{bottom:311.426667pt;}
.yd9{bottom:318.306667pt;}
.y9a{bottom:321.986667pt;}
.yf5{bottom:323.746667pt;}
.yb8{bottom:324.706667pt;}
.y40{bottom:327.426667pt;}
.y5b{bottom:328.066667pt;}
.yd8{bottom:342.946667pt;}
.y21{bottom:344.066667pt;}
.y7f{bottom:345.666667pt;}
.y99{bottom:346.626667pt;}
.yf4{bottom:348.386667pt;}
.yb7{bottom:349.346667pt;}
.y5a{bottom:352.866667pt;}
.yd7{bottom:367.746667pt;}
.y20{bottom:368.706667pt;}
.y98{bottom:371.426667pt;}
.yb6{bottom:373.986667pt;}
.y3f{bottom:377.506667pt;}
.yf3{bottom:391.746667pt;}
.yd6{bottom:392.386667pt;}
.y1f{bottom:393.346667pt;}
.y97{bottom:396.066667pt;}
.yb5{bottom:398.786667pt;}
.y59{bottom:402.146667pt;}
.y3e{bottom:402.786667pt;}
.yf2{bottom:416.386667pt;}
.yd5{bottom:417.026667pt;}
.y1e{bottom:417.986667pt;}
.y96{bottom:420.706667pt;}
.yb4{bottom:423.426667pt;}
.y58{bottom:426.786667pt;}
.y3d{bottom:428.226667pt;}
.yd4{bottom:441.666667pt;}
.y1d{bottom:442.786667pt;}
.y56{bottom:445.026667pt;}
.y95{bottom:445.346667pt;}
.yb3{bottom:448.066667pt;}
.y3c{bottom:453.506667pt;}
.yf1{bottom:459.586667pt;}
.yd3{bottom:466.466667pt;}
.y1c{bottom:467.426667pt;}
.y94{bottom:470.146667pt;}
.yb2{bottom:472.706667pt;}
.yf0{bottom:484.546667pt;}
.yd2{bottom:491.106667pt;}
.y1b{bottom:492.066667pt;}
.y93{bottom:494.786667pt;}
.yb1{bottom:497.506667pt;}
.y55{bottom:502.813333pt;}
.y3b{bottom:503.613333pt;}
.yef{bottom:509.213333pt;}
.yd1{bottom:515.773333pt;}
.y1a{bottom:516.733333pt;}
.y92{bottom:519.453333pt;}
.yb0{bottom:522.173333pt;}
.y3a{bottom:528.893333pt;}
.yee{bottom:533.853333pt;}
.yd0{bottom:540.573333pt;}
.y19{bottom:541.533333pt;}
.y91{bottom:544.253333pt;}
.y7d{bottom:544.413333pt;}
.yaf{bottom:546.813333pt;}
.y4f{bottom:560.573333pt;}
.ycf{bottom:565.213333pt;}
.y18{bottom:566.173333pt;}
.y90{bottom:568.893333pt;}
.yae{bottom:571.613333pt;}
.y7c{bottom:577.053333pt;}
.yed{bottom:577.213333pt;}
.y39{bottom:578.973333pt;}
.yce{bottom:589.853333pt;}
.y17{bottom:590.813333pt;}
.y8f{bottom:593.533333pt;}
.yad{bottom:596.253333pt;}
.y7b{bottom:601.693333pt;}
.yec{bottom:601.853333pt;}
.ycd{bottom:614.493333pt;}
.y16{bottom:615.613333pt;}
.y8e{bottom:618.173333pt;}
.y4c{bottom:618.333333pt;}
.y7a{bottom:626.333333pt;}
.y38{bottom:629.053333pt;}
.ycc{bottom:639.293333pt;}
.yac{bottom:639.613333pt;}
.y15{bottom:640.253333pt;}
.y8d{bottom:642.973333pt;}
.yeb{bottom:645.213333pt;}
.y79{bottom:651.133333pt;}
.y37{bottom:661.533333pt;}
.ycb{bottom:663.933333pt;}
.yab{bottom:664.253333pt;}
.y14{bottom:664.893333pt;}
.y8c{bottom:667.613333pt;}
.yea{bottom:670.013333pt;}
.y78{bottom:675.773333pt;}
.y36{bottom:686.333333pt;}
.yca{bottom:688.573333pt;}
.yaa{bottom:688.893333pt;}
.y13{bottom:689.533333pt;}
.y8b{bottom:692.253333pt;}
.ye9{bottom:694.653333pt;}
.y4b{bottom:700.253333pt;}
.y77{bottom:700.413333pt;}
.y35{bottom:710.973333pt;}
.yc9{bottom:713.213333pt;}
.y12{bottom:714.333333pt;}
.y8a{bottom:716.893333pt;}
.ye8{bottom:719.293333pt;}
.y4a{bottom:724.893333pt;}
.y76{bottom:725.053333pt;}
.ya9{bottom:732.253333pt;}
.y34{bottom:735.613333pt;}
.y88{bottom:737.693333pt;}
.yc8{bottom:738.013333pt;}
.y11{bottom:738.973333pt;}
.y75{bottom:743.293333pt;}
.ye7{bottom:743.933333pt;}
.y49{bottom:749.693333pt;}
.ya8{bottom:756.933333pt;}
.y33{bottom:760.293333pt;}
.yc7{bottom:762.693333pt;}
.y10{bottom:763.653333pt;}
.y74{bottom:770.533333pt;}
.y48{bottom:774.373333pt;}
.ya7{bottom:784.293333pt;}
.y32{bottom:785.093333pt;}
.ye6{bottom:787.173333pt;}
.yc6{bottom:787.333333pt;}
.yf{bottom:788.453333pt;}
.y87{bottom:790.533333pt;}
.y6c{bottom:792.453333pt;}
.y31{bottom:803.173333pt;}
.ya6{bottom:811.813333pt;}
.yc5{bottom:812.133333pt;}
.ye{bottom:813.093333pt;}
.y86{bottom:818.533333pt;}
.ya5{bottom:836.453333pt;}
.yc4{bottom:836.773333pt;}
.yd{bottom:837.733333pt;}
.y6b{bottom:842.533333pt;}
.y72{bottom:845.253333pt;}
.y85{bottom:846.533333pt;}
.y30{bottom:853.253333pt;}
.ya4{bottom:861.093333pt;}
.yc3{bottom:861.413333pt;}
.yc{bottom:862.373333pt;}
.y69{bottom:871.653333pt;}
.y71{bottom:872.453333pt;}
.y84{bottom:881.733333pt;}
.ya3{bottom:885.733333pt;}
.ye5{bottom:886.053333pt;}
.yc2{bottom:887.013333pt;}
.yb{bottom:887.173333pt;}
.y67{bottom:899.493333pt;}
.y6f{bottom:899.813333pt;}
.y2f{bottom:903.173333pt;}
.y83{bottom:909.093333pt;}
.ya2{bottom:910.533333pt;}
.ye4{bottom:910.853333pt;}
.ya{bottom:911.813333pt;}
.y6d{bottom:926.533333pt;}
.y66{bottom:927.813333pt;}
.ya1{bottom:935.173333pt;}
.ye3{bottom:936.293333pt;}
.y9{bottom:936.453333pt;}
.y2e{bottom:953.253333pt;}
.y8{bottom:961.253333pt;}
.y65{bottom:977.893333pt;}
.y82{bottom:985.733333pt;}
.y7{bottom:985.893333pt;}
.y4{bottom:1010.720000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1053.120000pt;}
.y1{bottom:1076.160000pt;}
.ha{height:24.640000pt;}
.h10{height:24.800000pt;}
.h1a{height:26.080000pt;}
.h1b{height:26.560000pt;}
.h1c{height:26.592000pt;}
.h16{height:26.720000pt;}
.h18{height:27.200000pt;}
.h1f{height:27.360000pt;}
.h17{height:27.680000pt;}
.h19{height:28.480000pt;}
.h11{height:30.560000pt;}
.h22{height:40.850625pt;}
.he{height:49.280000pt;}
.hb{height:49.440000pt;}
.hd{height:49.472000pt;}
.h20{height:52.192000pt;}
.hc{height:52.503750pt;}
.h8{height:52.832812pt;}
.h6{height:55.560960pt;}
.h15{height:56.992000pt;}
.h13{height:57.120000pt;}
.h2{height:59.706562pt;}
.h3{height:63.789062pt;}
.h5{height:67.871563pt;}
.h14{height:68.335313pt;}
.h4{height:73.454062pt;}
.h9{height:73.490625pt;}
.h12{height:74.080000pt;}
.h7{height:75.465000pt;}
.h21{height:76.964840pt;}
.h1e{height:98.720000pt;}
.h1d{height:98.752000pt;}
.hf{height:133.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:74.880000pt;}
.w9{width:74.912000pt;}
.wb{width:84.512000pt;}
.wc{width:93.760000pt;}
.wd{width:95.520000pt;}
.w8{width:121.792000pt;}
.w12{width:122.752000pt;}
.w13{width:122.880000pt;}
.w11{width:123.232000pt;}
.w14{width:127.680000pt;}
.w10{width:138.586667pt;}
.w16{width:206.906667pt;}
.w15{width:206.946667pt;}
.w17{width:207.066667pt;}
.w6{width:216.386667pt;}
.we{width:241.626667pt;}
.wf{width:241.826667pt;}
.w3{width:310.786667pt;}
.w4{width:310.946667pt;}
.w7{width:402.146667pt;}
.w5{width:623.013333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:6.912000pt;}
.x37{left:9.280000pt;}
.x1d{left:12.320000pt;}
.x18{left:14.080000pt;}
.x40{left:16.640000pt;}
.x22{left:19.520000pt;}
.x1f{left:21.120000pt;}
.x42{left:23.520000pt;}
.x15{left:24.640000pt;}
.x3b{left:29.440000pt;}
.x39{left:30.880000pt;}
.x3a{left:40.992000pt;}
.x36{left:42.112000pt;}
.x50{left:48.320000pt;}
.x1e{left:49.946667pt;}
.x19{left:52.506667pt;}
.x48{left:58.746667pt;}
.x35{left:59.680000pt;}
.x1c{left:64.506667pt;}
.x16{left:66.426667pt;}
.x21{left:68.026667pt;}
.x29{left:70.906667pt;}
.x5{left:74.879988pt;}
.xc{left:75.999988pt;}
.x3e{left:76.960000pt;}
.x14{left:79.546667pt;}
.x13{left:81.306667pt;}
.x1a{left:83.546667pt;}
.x6{left:84.991988pt;}
.x4e{left:86.240000pt;}
.x23{left:88.026667pt;}
.x49{left:93.786667pt;}
.x17{left:97.946667pt;}
.x3d{left:99.066667pt;}
.x4f{left:100.160000pt;}
.x34{left:101.160000pt;}
.x41{left:106.280000pt;}
.x2b{left:108.000000pt;}
.x3f{left:111.546667pt;}
.x24{left:115.546667pt;}
.x11{left:118.106667pt;}
.x26{left:120.831988pt;}
.x20{left:122.266667pt;}
.x4{left:130.431988pt;}
.x1b{left:134.106667pt;}
.x43{left:139.866655pt;}
.x4a{left:146.106667pt;}
.x33{left:154.906667pt;}
.x10{left:159.226655pt;}
.x3c{left:168.826667pt;}
.xb{left:176.026655pt;}
.xe{left:179.226655pt;}
.x38{left:183.226667pt;}
.x2c{left:198.746667pt;}
.x32{left:213.146655pt;}
.x44{left:215.546667pt;}
.x52{left:241.466655pt;}
.x9{left:267.106655pt;}
.x4b{left:272.706655pt;}
.x2d{left:274.466667pt;}
.xa{left:276.226655pt;}
.x4c{left:284.066667pt;}
.x54{left:290.146655pt;}
.x2a{left:293.346667pt;}
.x55{left:305.826655pt;}
.x51{left:313.186655pt;}
.x53{left:317.826655pt;}
.x7{left:337.186655pt;}
.x45{left:339.426667pt;}
.x2e{left:349.986667pt;}
.x57{left:353.026655pt;}
.xd{left:363.586655pt;}
.x12{left:387.746667pt;}
.x8{left:396.866655pt;}
.x2f{left:435.133333pt;}
.x1{left:447.133322pt;}
.x2{left:451.453322pt;}
.x46{left:462.813333pt;}
.x56{left:469.053322pt;}
.x4d{left:491.613333pt;}
.x30{left:529.533333pt;}
.x28{left:547.013333pt;}
.x3{left:561.853322pt;}
.x47{left:586.373333pt;}
.x31{left:605.253333pt;}
.x25{left:647.653322pt;}
.xf{left:661.733322pt;}
}




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