
    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_33a28305a8c31276365782ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.097168;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_296317c1574fb551f1c5051c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_97dc62150ad9c505d55e8b2b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cdc69a6fef0f2b8866c8f2e5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_551c911b296e9c2706ac8b4b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c0a1ea9715a0df68e31b2083.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_7247b6b278621a2e4315b3d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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_3cb426ce875f10dc118ed1c0.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7beaa91433ffd717fa4f8dcb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.097168;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{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);}
.m3{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:-27.360000px;}
.v1{vertical-align:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.ls38{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-1.008000px;}
.ls22{letter-spacing:-0.936000px;}
.ls31{letter-spacing:-0.864000px;}
.ls17{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.513600px;}
.ls37{letter-spacing:-0.432000px;}
.ls24{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.341400px;}
.ls11{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.ls23{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.037440px;}
.lsb{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls35{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144000px;}
.ls34{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.216000px;}
.ls2e{letter-spacing:0.252000px;}
.ls3{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.378600px;}
.ls1d{letter-spacing:0.432000px;}
.ls33{letter-spacing:0.540000px;}
.ls14{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.792000px;}
.ls3b{letter-spacing:0.864000px;}
.ls5{letter-spacing:1.440000px;}
.ls6{letter-spacing:2.160000px;}
.ls2b{letter-spacing:2.880000px;}
.ls21{letter-spacing:3.600000px;}
.ls3f{letter-spacing:4.320000px;}
.ls47{letter-spacing:5.760000px;}
.ls36{letter-spacing:6.480000px;}
.ls3a{letter-spacing:7.200000px;}
.ls40{letter-spacing:7.920000px;}
.ls19{letter-spacing:8.640000px;}
.ls26{letter-spacing:9.360000px;}
.ls9{letter-spacing:12.240000px;}
.ls42{letter-spacing:12.960000px;}
.ls3d{letter-spacing:13.680000px;}
.ls3e{letter-spacing:14.400000px;}
.ls2c{letter-spacing:15.840000px;}
.ls32{letter-spacing:18.000000px;}
.ls46{letter-spacing:19.440000px;}
.ls8{letter-spacing:20.160000px;}
.ls25{letter-spacing:20.880000px;}
.ls1b{letter-spacing:21.600000px;}
.ls1a{letter-spacing:23.760000px;}
.ls20{letter-spacing:27.360000px;}
.ls1e{letter-spacing:28.080000px;}
.ls30{letter-spacing:30.960000px;}
.ls43{letter-spacing:33.120000px;}
.ls39{letter-spacing:34.680000px;}
.ls4a{letter-spacing:36.696000px;}
.ls3c{letter-spacing:37.440000px;}
.ls7{letter-spacing:39.600000px;}
.ls49{letter-spacing:44.640000px;}
.ls4b{letter-spacing:45.360000px;}
.ls2d{letter-spacing:46.080000px;}
.ls1f{letter-spacing:47.520000px;}
.ls1c{letter-spacing:51.120000px;}
.ls29{letter-spacing:56.880000px;}
.ls2a{letter-spacing:67.680000px;}
.ls41{letter-spacing:70.020000px;}
.ls4{letter-spacing:72.720000px;}
.ls27{letter-spacing:73.440000px;}
.ls28{letter-spacing:73.620000px;}
.ls44{letter-spacing:138.384000px;}
.ls45{letter-spacing:166.986720px;}
.ls48{letter-spacing:168.426720px;}
.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;}
}
.ws1b{word-spacing:-59.760000px;}
.ws0{word-spacing:-26.424000px;}
.ws2{word-spacing:-21.438600px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-21.022560px;}
.ws4{word-spacing:-20.718600px;}
.ws5{word-spacing:-20.546400px;}
.wsc{word-spacing:-18.792000px;}
.ws9{word-spacing:-18.720000px;}
.wsd{word-spacing:-18.576000px;}
.ws10{word-spacing:-18.360000px;}
.wsb{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.216000px;}
.wse{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws1a{word-spacing:-17.640000px;}
.ws15{word-spacing:-17.280000px;}
.ws1c{word-spacing:-16.920000px;}
.ws1{word-spacing:-14.970240px;}
.ws17{word-spacing:-12.420000px;}
.ws16{word-spacing:-12.060000px;}
.ws18{word-spacing:-11.700000px;}
.ws19{word-spacing:-10.980000px;}
.ws12{word-spacing:0.000000px;}
._37{margin-left:-30.144000px;}
._0{margin-left:-1.188000px;}
._2{width:1.080000px;}
._5{width:2.352000px;}
._12{width:3.684000px;}
._13{width:5.376000px;}
._24{width:6.408000px;}
._1e{width:8.112000px;}
._1f{width:9.456000px;}
._11{width:10.944000px;}
._10{width:12.504000px;}
._29{width:14.016000px;}
._b{width:15.492000px;}
._a{width:16.632000px;}
._1{width:18.648000px;}
._e{width:20.136000px;}
._f{width:21.168000px;}
._21{width:22.488000px;}
._20{width:24.048000px;}
._31{width:25.320000px;}
._26{width:26.496000px;}
._23{width:27.552000px;}
._22{width:28.872000px;}
._1d{width:29.880000px;}
._1c{width:31.296000px;}
._8{width:32.904000px;}
._9{width:34.044000px;}
._2a{width:35.484000px;}
._2d{width:36.492000px;}
._2e{width:37.512000px;}
._6{width:38.856000px;}
._7{width:39.948000px;}
._c{width:41.232000px;}
._d{width:42.576000px;}
._30{width:43.668000px;}
._1b{width:44.784000px;}
._1a{width:45.876000px;}
._25{width:47.520000px;}
._35{width:48.672000px;}
._16{width:50.832000px;}
._15{width:52.392000px;}
._2f{width:54.624000px;}
._27{width:56.964000px;}
._17{width:59.112000px;}
._18{width:60.492000px;}
._2c{width:62.436000px;}
._28{width:67.800000px;}
._33{width:69.096000px;}
._34{width:70.464000px;}
._4{width:72.168000px;}
._3{width:73.560000px;}
._19{width:78.552000px;}
._2b{width:79.608000px;}
._14{width:87.876000px;}
._3b{width:90.504000px;}
._3a{width:92.088000px;}
._36{width:96.960000px;}
._39{width:116.748000px;}
._38{width:118.080000px;}
._32{width:1581.216000px;}
.fc9{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(51,51,255);}
.fc8{color:rgb(64,64,64);}
.fc6{color:rgb(31,31,31);}
.fc5{color:rgb(10,10,10);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:75.893905px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:3.960000px;}
.y3{bottom:7.020000px;}
.y89{bottom:7.920000px;}
.y8d{bottom:7.965000px;}
.y8b{bottom:9.000000px;}
.y7{bottom:11.340000px;}
.y56{bottom:14.220000px;}
.y59{bottom:24.660000px;}
.y2{bottom:28.260000px;}
.y55{bottom:34.920000px;}
.y87{bottom:38.700000px;}
.y58{bottom:45.360000px;}
.y54{bottom:55.620000px;}
.y86{bottom:59.400000px;}
.y57{bottom:66.060000px;}
.y8{bottom:71.136000px;}
.y6{bottom:86.796000px;}
.y52{bottom:121.176000px;}
.y6f{bottom:125.496000px;}
.y94{bottom:126.576000px;}
.y80{bottom:136.296000px;}
.y30{bottom:137.196000px;}
.ybf{bottom:141.876000px;}
.y51{bottom:152.310000px;}
.y93{bottom:157.530000px;}
.y7f{bottom:167.430000px;}
.ya2{bottom:168.150000px;}
.y2f{bottom:168.330000px;}
.ybe{bottom:173.010000px;}
.y6e{bottom:175.350000px;}
.y50{bottom:183.270000px;}
.y92{bottom:188.670000px;}
.y7e{bottom:196.230000px;}
.y2e{bottom:199.290000px;}
.ybd{bottom:203.970000px;}
.y4f{bottom:214.410000px;}
.y91{bottom:219.630000px;}
.ya1{bottom:230.250000px;}
.y2d{bottom:230.430000px;}
.ybc{bottom:235.110000px;}
.y4e{bottom:245.370000px;}
.y90{bottom:250.770000px;}
.y2c{bottom:261.390000px;}
.ybb{bottom:266.070000px;}
.y4d{bottom:276.510000px;}
.y8f{bottom:284.070000px;}
.ya0{bottom:292.350000px;}
.y2b{bottom:292.530000px;}
.yba{bottom:297.210000px;}
.y8e{bottom:304.410000px;}
.y4c{bottom:307.470000px;}
.y2a{bottom:323.490000px;}
.yb9{bottom:328.170000px;}
.y8c{bottom:330.870000px;}
.y4b{bottom:338.655000px;}
.y9f{bottom:354.495000px;}
.y29{bottom:354.675000px;}
.y8a{bottom:356.295000px;}
.yb8{bottom:359.355000px;}
.y4a{bottom:369.615000px;}
.y88{bottom:382.935000px;}
.y9e{bottom:385.635000px;}
.y28{bottom:387.975000px;}
.yb7{bottom:390.315000px;}
.y49{bottom:400.755000px;}
.y85{bottom:408.315000px;}
.y27{bottom:414.615000px;}
.y9d{bottom:416.595000px;}
.yb6{bottom:421.455000px;}
.y48{bottom:431.715000px;}
.y26{bottom:438.375000px;}
.y9c{bottom:447.735000px;}
.yb5{bottom:452.415000px;}
.y25{bottom:462.315000px;}
.y47{bottom:462.855000px;}
.y6d{bottom:475.635000px;}
.y9b{bottom:478.695000px;}
.yb4{bottom:483.555000px;}
.y24{bottom:486.075000px;}
.y46{bottom:493.815000px;}
.y84{bottom:499.395000px;}
.y7d{bottom:506.235000px;}
.y6c{bottom:506.595000px;}
.y23{bottom:509.835000px;}
.yb3{bottom:514.515000px;}
.y45{bottom:524.955000px;}
.y22{bottom:533.595000px;}
.y7c{bottom:537.195000px;}
.y6b{bottom:537.735000px;}
.y9a{bottom:540.795000px;}
.y83{bottom:545.655000px;}
.y44{bottom:555.915000px;}
.y21{bottom:557.535000px;}
.y7b{bottom:568.335000px;}
.y6a{bottom:568.695000px;}
.y99{bottom:571.935000px;}
.yb2{bottom:576.615000px;}
.y82{bottom:578.955000px;}
.y20{bottom:581.295000px;}
.y43{bottom:587.055000px;}
.y7a{bottom:599.295000px;}
.y69{bottom:599.835000px;}
.y98{bottom:602.895000px;}
.y1f{bottom:605.085000px;}
.yb1{bottom:607.785000px;}
.y81{bottom:615.165000px;}
.y42{bottom:618.045000px;}
.y1e{bottom:629.025000px;}
.y79{bottom:630.465000px;}
.y68{bottom:630.825000px;}
.y97{bottom:634.065000px;}
.yb0{bottom:638.745000px;}
.y41{bottom:649.185000px;}
.y1d{bottom:653.145000px;}
.y78{bottom:661.425000px;}
.y67{bottom:661.965000px;}
.y96{bottom:665.025000px;}
.yaf{bottom:669.885000px;}
.y1c{bottom:676.905000px;}
.y40{bottom:680.145000px;}
.y77{bottom:692.385000px;}
.y66{bottom:692.925000px;}
.y95{bottom:693.825000px;}
.y1b{bottom:700.845000px;}
.y3f{bottom:711.285000px;}
.y76{bottom:721.365000px;}
.y65{bottom:724.065000px;}
.y1a{bottom:724.605000px;}
.yae{bottom:731.985000px;}
.y3e{bottom:742.245000px;}
.y19{bottom:748.365000px;}
.y64{bottom:755.025000px;}
.yad{bottom:762.945000px;}
.y18{bottom:772.125000px;}
.y3d{bottom:773.385000px;}
.y63{bottom:786.165000px;}
.yac{bottom:794.085000px;}
.y17{bottom:796.065000px;}
.y3c{bottom:804.345000px;}
.y62{bottom:817.125000px;}
.y16{bottom:819.825000px;}
.yab{bottom:825.045000px;}
.y3b{bottom:835.305000px;}
.y15{bottom:844.665000px;}
.y61{bottom:848.265000px;}
.yaa{bottom:856.005000px;}
.y3a{bottom:866.445000px;}
.y14{bottom:868.785000px;}
.y60{bottom:879.270000px;}
.ya9{bottom:887.190000px;}
.y13{bottom:892.770000px;}
.y39{bottom:897.450000px;}
.y5f{bottom:912.570000px;}
.y12{bottom:916.530000px;}
.ya8{bottom:918.150000px;}
.y38{bottom:928.590000px;}
.y5e{bottom:937.230000px;}
.y11{bottom:940.290000px;}
.ya7{bottom:949.290000px;}
.y37{bottom:959.550000px;}
.y5d{bottom:963.870000px;}
.y10{bottom:964.050000px;}
.y75{bottom:969.630000px;}
.ya6{bottom:980.250000px;}
.y5c{bottom:990.510000px;}
.y36{bottom:990.690000px;}
.yf{bottom:995.190000px;}
.y74{bottom:1000.770000px;}
.ya5{bottom:1011.390000px;}
.y5b{bottom:1017.150000px;}
.y35{bottom:1021.650000px;}
.ye{bottom:1025.790000px;}
.y73{bottom:1031.730000px;}
.y53{bottom:1043.970000px;}
.ya4{bottom:1044.690000px;}
.yd{bottom:1049.550000px;}
.y34{bottom:1052.790000px;}
.y72{bottom:1062.870000px;}
.yc{bottom:1073.490000px;}
.ya3{bottom:1080.870000px;}
.y33{bottom:1083.750000px;}
.yc0{bottom:1084.830000px;}
.y71{bottom:1093.830000px;}
.yb{bottom:1096.350000px;}
.y32{bottom:1114.890000px;}
.ya{bottom:1115.250000px;}
.y70{bottom:1124.790000px;}
.y9{bottom:1143.000000px;}
.y31{bottom:1145.880000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.h10{height:20.700000px;}
.h14{height:24.660000px;}
.h16{height:24.696000px;}
.h15{height:25.740000px;}
.h5{height:27.000000px;}
.h7{height:34.036523px;}
.h8{height:39.760312px;}
.hb{height:50.800781px;}
.ha{height:51.996094px;}
.h2{height:53.460000px;}
.h9{height:59.343750px;}
.h6{height:59.436914px;}
.hd{height:63.457031px;}
.hc{height:63.961367px;}
.h4{height:65.884219px;}
.h12{height:69.432187px;}
.he{height:69.876211px;}
.h11{height:74.244727px;}
.h13{height:76.140000px;}
.hf{height:82.800000px;}
.h3{height:95.185547px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:44.280000px;}
.wb{width:52.920000px;}
.w8{width:54.720000px;}
.wf{width:67.500000px;}
.wc{width:81.576000px;}
.wa{width:82.980000px;}
.we{width:88.236000px;}
.w9{width:92.556000px;}
.w5{width:106.416000px;}
.wd{width:109.080000px;}
.w10{width:125.820000px;}
.w12{width:131.580000px;}
.w11{width:131.616000px;}
.w13{width:176.430000px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.w2{width:498.675000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:1.080000px;}
.x29{left:2.520000px;}
.x21{left:3.960000px;}
.x1e{left:5.400000px;}
.x22{left:8.460000px;}
.x39{left:10.620000px;}
.x1d{left:12.960000px;}
.x2c{left:14.580000px;}
.x26{left:16.380000px;}
.x1f{left:17.640000px;}
.x35{left:19.620000px;}
.x30{left:22.365000px;}
.x2a{left:23.400000px;}
.x2e{left:25.200000px;}
.x27{left:26.460000px;}
.x23{left:27.540000px;}
.x24{left:31.140000px;}
.x34{left:32.400000px;}
.x37{left:35.145000px;}
.x3b{left:36.210000px;}
.x33{left:37.260000px;}
.x9{left:40.680000px;}
.x38{left:41.760000px;}
.x36{left:45.360000px;}
.x3a{left:49.860000px;}
.x4{left:82.260000px;}
.x6{left:84.960000px;}
.x44{left:98.676000px;}
.x1c{left:105.336000px;}
.x5{left:106.415987px;}
.xb{left:120.635987px;}
.x3f{left:140.255987px;}
.x12{left:148.895987px;}
.x20{left:153.390000px;}
.x18{left:159.509987px;}
.xe{left:169.769987px;}
.x10{left:183.629987px;}
.x1b{left:189.929987px;}
.x13{left:192.089987px;}
.x2{left:197.310000px;}
.xf{left:210.989987px;}
.x45{left:225.210000px;}
.xd{left:248.249987px;}
.x14{left:267.509987px;}
.x1{left:278.175000px;}
.x3d{left:282.134987px;}
.x43{left:285.194987px;}
.x4a{left:289.334987px;}
.x7{left:297.795000px;}
.x25{left:308.235000px;}
.x15{left:320.474987px;}
.x16{left:325.514987px;}
.xc{left:330.554987px;}
.x11{left:332.894987px;}
.x4b{left:355.034987px;}
.x46{left:357.555000px;}
.x41{left:389.414987px;}
.x8{left:390.855000px;}
.x28{left:394.995000px;}
.x17{left:402.554987px;}
.x2b{left:451.695000px;}
.x19{left:457.094987px;}
.x47{left:489.885000px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x2d{left:537.045000px;}
.x48{left:622.185000px;}
.x2f{left:649.905000px;}
.x40{left:690.989987px;}
.x49{left:699.629987px;}
.x3c{left:707.009987px;}
.x3e{left:708.989987px;}
.x1a{left:728.069987px;}
.x31{left:741.750000px;}
.x42{left:807.989987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v1{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.ls38{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.896000pt;}
.ls22{letter-spacing:-0.832000pt;}
.ls31{letter-spacing:-0.768000pt;}
.ls17{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.456533pt;}
.ls37{letter-spacing:-0.384000pt;}
.ls24{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.303467pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls23{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.033280pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls35{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128000pt;}
.ls34{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls2e{letter-spacing:0.224000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.336533pt;}
.ls1d{letter-spacing:0.384000pt;}
.ls33{letter-spacing:0.480000pt;}
.ls14{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.704000pt;}
.ls3b{letter-spacing:0.768000pt;}
.ls5{letter-spacing:1.280000pt;}
.ls6{letter-spacing:1.920000pt;}
.ls2b{letter-spacing:2.560000pt;}
.ls21{letter-spacing:3.200000pt;}
.ls3f{letter-spacing:3.840000pt;}
.ls47{letter-spacing:5.120000pt;}
.ls36{letter-spacing:5.760000pt;}
.ls3a{letter-spacing:6.400000pt;}
.ls40{letter-spacing:7.040000pt;}
.ls19{letter-spacing:7.680000pt;}
.ls26{letter-spacing:8.320000pt;}
.ls9{letter-spacing:10.880000pt;}
.ls42{letter-spacing:11.520000pt;}
.ls3d{letter-spacing:12.160000pt;}
.ls3e{letter-spacing:12.800000pt;}
.ls2c{letter-spacing:14.080000pt;}
.ls32{letter-spacing:16.000000pt;}
.ls46{letter-spacing:17.280000pt;}
.ls8{letter-spacing:17.920000pt;}
.ls25{letter-spacing:18.560000pt;}
.ls1b{letter-spacing:19.200000pt;}
.ls1a{letter-spacing:21.120000pt;}
.ls20{letter-spacing:24.320000pt;}
.ls1e{letter-spacing:24.960000pt;}
.ls30{letter-spacing:27.520000pt;}
.ls43{letter-spacing:29.440000pt;}
.ls39{letter-spacing:30.826667pt;}
.ls4a{letter-spacing:32.618667pt;}
.ls3c{letter-spacing:33.280000pt;}
.ls7{letter-spacing:35.200000pt;}
.ls49{letter-spacing:39.680000pt;}
.ls4b{letter-spacing:40.320000pt;}
.ls2d{letter-spacing:40.960000pt;}
.ls1f{letter-spacing:42.240000pt;}
.ls1c{letter-spacing:45.440000pt;}
.ls29{letter-spacing:50.560000pt;}
.ls2a{letter-spacing:60.160000pt;}
.ls41{letter-spacing:62.240000pt;}
.ls4{letter-spacing:64.640000pt;}
.ls27{letter-spacing:65.280000pt;}
.ls28{letter-spacing:65.440000pt;}
.ls44{letter-spacing:123.008000pt;}
.ls45{letter-spacing:148.432640pt;}
.ls48{letter-spacing:149.712640pt;}
.ws1b{word-spacing:-53.120000pt;}
.ws0{word-spacing:-23.488000pt;}
.ws2{word-spacing:-19.056533pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.686720pt;}
.ws4{word-spacing:-18.416533pt;}
.ws5{word-spacing:-18.263467pt;}
.wsc{word-spacing:-16.704000pt;}
.ws9{word-spacing:-16.640000pt;}
.wsd{word-spacing:-16.512000pt;}
.ws10{word-spacing:-16.320000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.192000pt;}
.wse{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws1a{word-spacing:-15.680000pt;}
.ws15{word-spacing:-15.360000pt;}
.ws1c{word-spacing:-15.040000pt;}
.ws1{word-spacing:-13.306880pt;}
.ws17{word-spacing:-11.040000pt;}
.ws16{word-spacing:-10.720000pt;}
.ws18{word-spacing:-10.400000pt;}
.ws19{word-spacing:-9.760000pt;}
.ws12{word-spacing:0.000000pt;}
._37{margin-left:-26.794667pt;}
._0{margin-left:-1.056000pt;}
._2{width:0.960000pt;}
._5{width:2.090667pt;}
._12{width:3.274667pt;}
._13{width:4.778667pt;}
._24{width:5.696000pt;}
._1e{width:7.210667pt;}
._1f{width:8.405333pt;}
._11{width:9.728000pt;}
._10{width:11.114667pt;}
._29{width:12.458667pt;}
._b{width:13.770667pt;}
._a{width:14.784000pt;}
._1{width:16.576000pt;}
._e{width:17.898667pt;}
._f{width:18.816000pt;}
._21{width:19.989333pt;}
._20{width:21.376000pt;}
._31{width:22.506667pt;}
._26{width:23.552000pt;}
._23{width:24.490667pt;}
._22{width:25.664000pt;}
._1d{width:26.560000pt;}
._1c{width:27.818667pt;}
._8{width:29.248000pt;}
._9{width:30.261333pt;}
._2a{width:31.541333pt;}
._2d{width:32.437333pt;}
._2e{width:33.344000pt;}
._6{width:34.538667pt;}
._7{width:35.509333pt;}
._c{width:36.650667pt;}
._d{width:37.845333pt;}
._30{width:38.816000pt;}
._1b{width:39.808000pt;}
._1a{width:40.778667pt;}
._25{width:42.240000pt;}
._35{width:43.264000pt;}
._16{width:45.184000pt;}
._15{width:46.570667pt;}
._2f{width:48.554667pt;}
._27{width:50.634667pt;}
._17{width:52.544000pt;}
._18{width:53.770667pt;}
._2c{width:55.498667pt;}
._28{width:60.266667pt;}
._33{width:61.418667pt;}
._34{width:62.634667pt;}
._4{width:64.149333pt;}
._3{width:65.386667pt;}
._19{width:69.824000pt;}
._2b{width:70.762667pt;}
._14{width:78.112000pt;}
._3b{width:80.448000pt;}
._3a{width:81.856000pt;}
._36{width:86.186667pt;}
._39{width:103.776000pt;}
._38{width:104.960000pt;}
._32{width:1405.525333pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:67.461249pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:3.520000pt;}
.y3{bottom:6.240000pt;}
.y89{bottom:7.040000pt;}
.y8d{bottom:7.080000pt;}
.y8b{bottom:8.000000pt;}
.y7{bottom:10.080000pt;}
.y56{bottom:12.640000pt;}
.y59{bottom:21.920000pt;}
.y2{bottom:25.120000pt;}
.y55{bottom:31.040000pt;}
.y87{bottom:34.400000pt;}
.y58{bottom:40.320000pt;}
.y54{bottom:49.440000pt;}
.y86{bottom:52.800000pt;}
.y57{bottom:58.720000pt;}
.y8{bottom:63.232000pt;}
.y6{bottom:77.152000pt;}
.y52{bottom:107.712000pt;}
.y6f{bottom:111.552000pt;}
.y94{bottom:112.512000pt;}
.y80{bottom:121.152000pt;}
.y30{bottom:121.952000pt;}
.ybf{bottom:126.112000pt;}
.y51{bottom:135.386667pt;}
.y93{bottom:140.026667pt;}
.y7f{bottom:148.826667pt;}
.ya2{bottom:149.466667pt;}
.y2f{bottom:149.626667pt;}
.ybe{bottom:153.786667pt;}
.y6e{bottom:155.866667pt;}
.y50{bottom:162.906667pt;}
.y92{bottom:167.706667pt;}
.y7e{bottom:174.426667pt;}
.y2e{bottom:177.146667pt;}
.ybd{bottom:181.306667pt;}
.y4f{bottom:190.586667pt;}
.y91{bottom:195.226667pt;}
.ya1{bottom:204.666667pt;}
.y2d{bottom:204.826667pt;}
.ybc{bottom:208.986667pt;}
.y4e{bottom:218.106667pt;}
.y90{bottom:222.906667pt;}
.y2c{bottom:232.346667pt;}
.ybb{bottom:236.506667pt;}
.y4d{bottom:245.786667pt;}
.y8f{bottom:252.506667pt;}
.ya0{bottom:259.866667pt;}
.y2b{bottom:260.026667pt;}
.yba{bottom:264.186667pt;}
.y8e{bottom:270.586667pt;}
.y4c{bottom:273.306667pt;}
.y2a{bottom:287.546667pt;}
.yb9{bottom:291.706667pt;}
.y8c{bottom:294.106667pt;}
.y4b{bottom:301.026667pt;}
.y9f{bottom:315.106667pt;}
.y29{bottom:315.266667pt;}
.y8a{bottom:316.706667pt;}
.yb8{bottom:319.426667pt;}
.y4a{bottom:328.546667pt;}
.y88{bottom:340.386667pt;}
.y9e{bottom:342.786667pt;}
.y28{bottom:344.866667pt;}
.yb7{bottom:346.946667pt;}
.y49{bottom:356.226667pt;}
.y85{bottom:362.946667pt;}
.y27{bottom:368.546667pt;}
.y9d{bottom:370.306667pt;}
.yb6{bottom:374.626667pt;}
.y48{bottom:383.746667pt;}
.y26{bottom:389.666667pt;}
.y9c{bottom:397.986667pt;}
.yb5{bottom:402.146667pt;}
.y25{bottom:410.946667pt;}
.y47{bottom:411.426667pt;}
.y6d{bottom:422.786667pt;}
.y9b{bottom:425.506667pt;}
.yb4{bottom:429.826667pt;}
.y24{bottom:432.066667pt;}
.y46{bottom:438.946667pt;}
.y84{bottom:443.906667pt;}
.y7d{bottom:449.986667pt;}
.y6c{bottom:450.306667pt;}
.y23{bottom:453.186667pt;}
.yb3{bottom:457.346667pt;}
.y45{bottom:466.626667pt;}
.y22{bottom:474.306667pt;}
.y7c{bottom:477.506667pt;}
.y6b{bottom:477.986667pt;}
.y9a{bottom:480.706667pt;}
.y83{bottom:485.026667pt;}
.y44{bottom:494.146667pt;}
.y21{bottom:495.586667pt;}
.y7b{bottom:505.186667pt;}
.y6a{bottom:505.506667pt;}
.y99{bottom:508.386667pt;}
.yb2{bottom:512.546667pt;}
.y82{bottom:514.626667pt;}
.y20{bottom:516.706667pt;}
.y43{bottom:521.826667pt;}
.y7a{bottom:532.706667pt;}
.y69{bottom:533.186667pt;}
.y98{bottom:535.906667pt;}
.y1f{bottom:537.853333pt;}
.yb1{bottom:540.253333pt;}
.y81{bottom:546.813333pt;}
.y42{bottom:549.373333pt;}
.y1e{bottom:559.133333pt;}
.y79{bottom:560.413333pt;}
.y68{bottom:560.733333pt;}
.y97{bottom:563.613333pt;}
.yb0{bottom:567.773333pt;}
.y41{bottom:577.053333pt;}
.y1d{bottom:580.573333pt;}
.y78{bottom:587.933333pt;}
.y67{bottom:588.413333pt;}
.y96{bottom:591.133333pt;}
.yaf{bottom:595.453333pt;}
.y1c{bottom:601.693333pt;}
.y40{bottom:604.573333pt;}
.y77{bottom:615.453333pt;}
.y66{bottom:615.933333pt;}
.y95{bottom:616.733333pt;}
.y1b{bottom:622.973333pt;}
.y3f{bottom:632.253333pt;}
.y76{bottom:641.213333pt;}
.y65{bottom:643.613333pt;}
.y1a{bottom:644.093333pt;}
.yae{bottom:650.653333pt;}
.y3e{bottom:659.773333pt;}
.y19{bottom:665.213333pt;}
.y64{bottom:671.133333pt;}
.yad{bottom:678.173333pt;}
.y18{bottom:686.333333pt;}
.y3d{bottom:687.453333pt;}
.y63{bottom:698.813333pt;}
.yac{bottom:705.853333pt;}
.y17{bottom:707.613333pt;}
.y3c{bottom:714.973333pt;}
.y62{bottom:726.333333pt;}
.y16{bottom:728.733333pt;}
.yab{bottom:733.373333pt;}
.y3b{bottom:742.493333pt;}
.y15{bottom:750.813333pt;}
.y61{bottom:754.013333pt;}
.yaa{bottom:760.893333pt;}
.y3a{bottom:770.173333pt;}
.y14{bottom:772.253333pt;}
.y60{bottom:781.573333pt;}
.ya9{bottom:788.613333pt;}
.y13{bottom:793.573333pt;}
.y39{bottom:797.733333pt;}
.y5f{bottom:811.173333pt;}
.y12{bottom:814.693333pt;}
.ya8{bottom:816.133333pt;}
.y38{bottom:825.413333pt;}
.y5e{bottom:833.093333pt;}
.y11{bottom:835.813333pt;}
.ya7{bottom:843.813333pt;}
.y37{bottom:852.933333pt;}
.y5d{bottom:856.773333pt;}
.y10{bottom:856.933333pt;}
.y75{bottom:861.893333pt;}
.ya6{bottom:871.333333pt;}
.y5c{bottom:880.453333pt;}
.y36{bottom:880.613333pt;}
.yf{bottom:884.613333pt;}
.y74{bottom:889.573333pt;}
.ya5{bottom:899.013333pt;}
.y5b{bottom:904.133333pt;}
.y35{bottom:908.133333pt;}
.ye{bottom:911.813333pt;}
.y73{bottom:917.093333pt;}
.y53{bottom:927.973333pt;}
.ya4{bottom:928.613333pt;}
.yd{bottom:932.933333pt;}
.y34{bottom:935.813333pt;}
.y72{bottom:944.773333pt;}
.yc{bottom:954.213333pt;}
.ya3{bottom:960.773333pt;}
.y33{bottom:963.333333pt;}
.yc0{bottom:964.293333pt;}
.y71{bottom:972.293333pt;}
.yb{bottom:974.533333pt;}
.y32{bottom:991.013333pt;}
.ya{bottom:991.333333pt;}
.y70{bottom:999.813333pt;}
.y9{bottom:1016.000000pt;}
.y31{bottom:1018.560000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.h10{height:18.400000pt;}
.h14{height:21.920000pt;}
.h16{height:21.952000pt;}
.h15{height:22.880000pt;}
.h5{height:24.000000pt;}
.h7{height:30.254687pt;}
.h8{height:35.342500pt;}
.hb{height:45.156250pt;}
.ha{height:46.218750pt;}
.h2{height:47.520000pt;}
.h9{height:52.750000pt;}
.h6{height:52.832812pt;}
.hd{height:56.406250pt;}
.hc{height:56.854549pt;}
.h4{height:58.563750pt;}
.h12{height:61.717500pt;}
.he{height:62.112188pt;}
.h11{height:65.995312pt;}
.h13{height:67.680000pt;}
.hf{height:73.600000pt;}
.h3{height:84.609375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:39.360000pt;}
.wb{width:47.040000pt;}
.w8{width:48.640000pt;}
.wf{width:60.000000pt;}
.wc{width:72.512000pt;}
.wa{width:73.760000pt;}
.we{width:78.432000pt;}
.w9{width:82.272000pt;}
.w5{width:94.592000pt;}
.wd{width:96.960000pt;}
.w10{width:111.840000pt;}
.w12{width:116.960000pt;}
.w11{width:116.992000pt;}
.w13{width:156.826667pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.w2{width:443.266667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:0.960000pt;}
.x29{left:2.240000pt;}
.x21{left:3.520000pt;}
.x1e{left:4.800000pt;}
.x22{left:7.520000pt;}
.x39{left:9.440000pt;}
.x1d{left:11.520000pt;}
.x2c{left:12.960000pt;}
.x26{left:14.560000pt;}
.x1f{left:15.680000pt;}
.x35{left:17.440000pt;}
.x30{left:19.880000pt;}
.x2a{left:20.800000pt;}
.x2e{left:22.400000pt;}
.x27{left:23.520000pt;}
.x23{left:24.480000pt;}
.x24{left:27.680000pt;}
.x34{left:28.800000pt;}
.x37{left:31.240000pt;}
.x3b{left:32.186667pt;}
.x33{left:33.120000pt;}
.x9{left:36.160000pt;}
.x38{left:37.120000pt;}
.x36{left:40.320000pt;}
.x3a{left:44.320000pt;}
.x4{left:73.120000pt;}
.x6{left:75.520000pt;}
.x44{left:87.712000pt;}
.x1c{left:93.632000pt;}
.x5{left:94.591988pt;}
.xb{left:107.231988pt;}
.x3f{left:124.671988pt;}
.x12{left:132.351988pt;}
.x20{left:136.346667pt;}
.x18{left:141.786655pt;}
.xe{left:150.906655pt;}
.x10{left:163.226655pt;}
.x1b{left:168.826655pt;}
.x13{left:170.746655pt;}
.x2{left:175.386667pt;}
.xf{left:187.546655pt;}
.x45{left:200.186667pt;}
.xd{left:220.666655pt;}
.x14{left:237.786655pt;}
.x1{left:247.266667pt;}
.x3d{left:250.786655pt;}
.x43{left:253.506655pt;}
.x4a{left:257.186655pt;}
.x7{left:264.706667pt;}
.x25{left:273.986667pt;}
.x15{left:284.866655pt;}
.x16{left:289.346655pt;}
.xc{left:293.826655pt;}
.x11{left:295.906655pt;}
.x4b{left:315.586655pt;}
.x46{left:317.826667pt;}
.x41{left:346.146655pt;}
.x8{left:347.426667pt;}
.x28{left:351.106667pt;}
.x17{left:357.826655pt;}
.x2b{left:401.506667pt;}
.x19{left:406.306655pt;}
.x47{left:435.453333pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x2d{left:477.373333pt;}
.x48{left:553.053333pt;}
.x2f{left:577.693333pt;}
.x40{left:614.213322pt;}
.x49{left:621.893322pt;}
.x3c{left:628.453322pt;}
.x3e{left:630.213322pt;}
.x1a{left:647.173322pt;}
.x31{left:659.333333pt;}
.x42{left:718.213322pt;}
}




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