
    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_fecfe2f38270e38ce99a93eb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a4c5c1587a4b11da92b8fcea.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e2f19b0ffc04f0fad602ab44.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ca37f9eef3a8f40e848eaceb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a897018ac87a27b232bd89d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_a2ea941411aa1461cd43d862.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_febfe3794b62186d8ac4577f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_31c0001c19a003ba51e4489c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a801cffa5caedbe03862e920.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_fdf8518039dbe2d1ff5fa83a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.934082;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_74e93f220531e909c652050d.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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:ff10;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-2.076000px;}
.ls11{letter-spacing:-1.800000px;}
.ls9{letter-spacing:-1.356000px;}
.lsc{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.298200px;}
.ls7{letter-spacing:-0.127200px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.132600px;}
.lse{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.378000px;}
.ls3{letter-spacing:0.447840px;}
.ls10{letter-spacing:0.504000px;}
.ls14{letter-spacing:16.506720px;}
.ls12{letter-spacing:46.026720px;}
.lsf{letter-spacing:55.386720px;}
.lsd{letter-spacing:64.026720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws4{word-spacing:-22.231200px;}
.ws3{word-spacing:-21.511200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws8{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.wsc{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.505760px;}
.wse{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.582000px;}
.ws0{word-spacing:-12.186000px;}
.ws5{word-spacing:-8.786880px;}
.ws6{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._18{margin-left:-7.888320px;}
._14{margin-left:-6.625440px;}
._5{margin-left:-4.840560px;}
._4{margin-left:-3.305040px;}
._1{margin-left:-2.160000px;}
._3{margin-left:-1.151280px;}
._0{width:1.238640px;}
._2{width:2.592000px;}
._c{width:4.506960px;}
._b{width:5.557680px;}
._13{width:7.408080px;}
._a{width:8.545680px;}
._d{width:9.637680px;}
._17{width:10.756800px;}
._7{width:11.968320px;}
._f{width:13.087440px;}
._6{width:16.202400px;}
._15{width:17.569440px;}
._9{width:19.415280px;}
._8{width:20.501040px;}
._12{width:22.725120px;}
._16{width:24.262080px;}
._e{width:39.756720px;}
._11{width:43.469760px;}
._10{width:44.606880px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:3.240000px;}
.y9e{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y4f{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y4d{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y49{bottom:20.520000px;}
.y4e{bottom:22.365000px;}
.y18{bottom:23.985000px;}
.y4c{bottom:25.425000px;}
.yb{bottom:30.240000px;}
.y5{bottom:32.760000px;}
.y48{bottom:37.620000px;}
.y17{bottom:40.365000px;}
.ya{bottom:46.440000px;}
.y47{bottom:54.900000px;}
.y1{bottom:55.260000px;}
.y16{bottom:56.925000px;}
.y15{bottom:69.345000px;}
.y46{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y14{bottom:83.925000px;}
.y45{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.yc7{bottom:98.136000px;}
.y113{bottom:98.316000px;}
.y13{bottom:99.225000px;}
.yf7{bottom:103.356000px;}
.y44{bottom:106.740000px;}
.y99{bottom:106.956000px;}
.y7{bottom:111.270000px;}
.y2f{bottom:115.020000px;}
.y112{bottom:115.596000px;}
.y5b{bottom:115.776000px;}
.yc6{bottom:116.136000px;}
.y12{bottom:118.305000px;}
.yf6{bottom:121.356000px;}
.y43{bottom:124.020000px;}
.y98{bottom:124.236000px;}
.y2e{bottom:130.320000px;}
.y111{bottom:132.876000px;}
.y5a{bottom:133.056000px;}
.yc5{bottom:134.136000px;}
.yf5{bottom:139.356000px;}
.y42{bottom:141.120000px;}
.y97{bottom:141.516000px;}
.y11{bottom:144.045000px;}
.y2d{bottom:147.960000px;}
.y110{bottom:149.976000px;}
.y59{bottom:150.330000px;}
.yc4{bottom:152.130000px;}
.yf4{bottom:157.350000px;}
.y41{bottom:158.400000px;}
.y96{bottom:158.610000px;}
.y2c{bottom:165.240000px;}
.y10f{bottom:167.250000px;}
.y58{bottom:167.610000px;}
.y10{bottom:168.345000px;}
.yc3{bottom:170.130000px;}
.yf3{bottom:175.350000px;}
.y40{bottom:175.680000px;}
.y95{bottom:175.890000px;}
.y2b{bottom:182.520000px;}
.y10e{bottom:184.530000px;}
.y57{bottom:184.890000px;}
.yc2{bottom:188.130000px;}
.y3f{bottom:192.960000px;}
.y94{bottom:193.170000px;}
.yf2{bottom:193.350000px;}
.y2a{bottom:200.340000px;}
.y10d{bottom:201.810000px;}
.y56{bottom:202.170000px;}
.yc1{bottom:206.130000px;}
.y3e{bottom:210.240000px;}
.y93{bottom:210.450000px;}
.yf1{bottom:211.350000px;}
.y29{bottom:217.620000px;}
.y10c{bottom:219.090000px;}
.y55{bottom:219.270000px;}
.yc0{bottom:224.130000px;}
.y3d{bottom:227.340000px;}
.y92{bottom:227.730000px;}
.yf0{bottom:229.350000px;}
.y28{bottom:235.080000px;}
.y10b{bottom:236.370000px;}
.y54{bottom:236.550000px;}
.ybf{bottom:242.130000px;}
.y3c{bottom:244.620000px;}
.y91{bottom:245.010000px;}
.yef{bottom:247.350000px;}
.y27{bottom:252.570000px;}
.y10a{bottom:253.470000px;}
.y53{bottom:253.830000px;}
.y3b{bottom:261.930000px;}
.y90{bottom:262.110000px;}
.ybe{bottom:263.370000px;}
.yee{bottom:268.590000px;}
.y26{bottom:269.850000px;}
.y109{bottom:270.750000px;}
.y52{bottom:271.110000px;}
.y3a{bottom:279.210000px;}
.y8f{bottom:280.470000px;}
.yed{bottom:285.690000px;}
.y25{bottom:287.310000px;}
.y108{bottom:288.030000px;}
.y51{bottom:288.390000px;}
.ybd{bottom:295.230000px;}
.y39{bottom:296.490000px;}
.y8e{bottom:297.750000px;}
.yec{bottom:302.970000px;}
.y24{bottom:304.770000px;}
.y107{bottom:305.310000px;}
.y50{bottom:305.490000px;}
.ybc{bottom:313.230000px;}
.y38{bottom:313.770000px;}
.y8d{bottom:315.030000px;}
.yeb{bottom:317.010000px;}
.y4b{bottom:319.530000px;}
.y23{bottom:322.050000px;}
.y106{bottom:322.590000px;}
.y37{bottom:330.870000px;}
.ybb{bottom:331.230000px;}
.y8c{bottom:333.390000px;}
.y22{bottom:339.510000px;}
.y105{bottom:339.915000px;}
.y36{bottom:348.150000px;}
.y8b{bottom:351.615000px;}
.yba{bottom:352.515000px;}
.y1b{bottom:356.295000px;}
.y21{bottom:356.790000px;}
.y104{bottom:357.015000px;}
.y35{bottom:365.430000px;}
.y8a{bottom:368.895000px;}
.yb9{bottom:369.795000px;}
.y20{bottom:374.250000px;}
.y103{bottom:374.295000px;}
.y34{bottom:382.710000px;}
.yb8{bottom:384.555000px;}
.y89{bottom:386.175000px;}
.y102{bottom:391.575000px;}
.y1f{bottom:391.710000px;}
.y33{bottom:399.990000px;}
.yb7{bottom:402.555000px;}
.y88{bottom:403.455000px;}
.y101{bottom:408.855000px;}
.y1e{bottom:409.170000px;}
.y32{bottom:417.270000px;}
.yb6{bottom:420.555000px;}
.y87{bottom:420.735000px;}
.y100{bottom:426.135000px;}
.y31{bottom:434.370000px;}
.y1d{bottom:436.710000px;}
.y86{bottom:439.095000px;}
.yb5{bottom:441.795000px;}
.yff{bottom:443.415000px;}
.y30{bottom:451.650000px;}
.y1c{bottom:454.350000px;}
.y85{bottom:457.275000px;}
.yb4{bottom:459.075000px;}
.yfe{bottom:460.515000px;}
.yb3{bottom:473.835000px;}
.y84{bottom:474.555000px;}
.yfd{bottom:477.795000px;}
.y83{bottom:491.835000px;}
.yfc{bottom:495.075000px;}
.y82{bottom:509.115000px;}
.yb2{bottom:509.835000px;}
.yfb{bottom:512.355000px;}
.y81{bottom:526.395000px;}
.yfa{bottom:529.635000px;}
.yb1{bottom:531.075000px;}
.y80{bottom:544.755000px;}
.yf9{bottom:546.735000px;}
.yb0{bottom:548.355000px;}
.yea{bottom:558.795000px;}
.y7f{bottom:562.935000px;}
.yaf{bottom:563.115000px;}
.yf8{bottom:564.015000px;}
.ye9{bottom:573.555000px;}
.yae{bottom:581.115000px;}
.y7e{bottom:581.295000px;}
.ye8{bottom:591.555000px;}
.y7d{bottom:598.575000px;}
.yad{bottom:599.115000px;}
.ye7{bottom:609.585000px;}
.y7c{bottom:615.885000px;}
.yac{bottom:617.145000px;}
.ye6{bottom:627.585000px;}
.y7b{bottom:633.165000px;}
.yab{bottom:635.145000px;}
.ye5{bottom:645.585000px;}
.y7a{bottom:650.265000px;}
.yaa{bottom:653.145000px;}
.ye4{bottom:663.585000px;}
.y79{bottom:667.545000px;}
.ya9{bottom:671.145000px;}
.ye3{bottom:681.585000px;}
.y78{bottom:684.825000px;}
.ya8{bottom:689.145000px;}
.ye2{bottom:699.585000px;}
.y77{bottom:702.105000px;}
.ya7{bottom:707.145000px;}
.y76{bottom:719.385000px;}
.ye1{bottom:720.825000px;}
.ya6{bottom:728.385000px;}
.y75{bottom:736.665000px;}
.ye0{bottom:738.105000px;}
.ya5{bottom:745.665000px;}
.ydf{bottom:752.865000px;}
.y74{bottom:753.765000px;}
.ya4{bottom:760.425000px;}
.yde{bottom:770.865000px;}
.y73{bottom:771.045000px;}
.ya3{bottom:778.425000px;}
.y72{bottom:788.325000px;}
.ydd{bottom:788.865000px;}
.ya2{bottom:796.425000px;}
.y71{bottom:805.605000px;}
.ydc{bottom:810.105000px;}
.ya1{bottom:814.425000px;}
.y19{bottom:821.985000px;}
.y70{bottom:822.885000px;}
.ydb{bottom:827.385000px;}
.ya0{bottom:832.245000px;}
.y6f{bottom:839.985000px;}
.yda{bottom:842.145000px;}
.y9f{bottom:850.245000px;}
.yf{bottom:851.505000px;}
.y6e{bottom:857.265000px;}
.yd9{bottom:860.145000px;}
.y9d{bottom:868.245000px;}
.y6d{bottom:874.590000px;}
.yd8{bottom:878.190000px;}
.y9c{bottom:886.290000px;}
.y6c{bottom:891.870000px;}
.yd7{bottom:896.190000px;}
.y9b{bottom:904.290000px;}
.y6b{bottom:909.150000px;}
.yd6{bottom:917.430000px;}
.y9a{bottom:922.290000px;}
.y6a{bottom:926.430000px;}
.yd5{bottom:934.530000px;}
.y69{bottom:943.530000px;}
.yd4{bottom:949.290000px;}
.y68{bottom:960.810000px;}
.yd3{bottom:967.290000px;}
.y67{bottom:978.090000px;}
.yd2{bottom:985.290000px;}
.y66{bottom:995.370000px;}
.yd1{bottom:1006.530000px;}
.y65{bottom:1012.650000px;}
.yd0{bottom:1023.810000px;}
.y64{bottom:1029.930000px;}
.yd{bottom:1034.970000px;}
.ycf{bottom:1038.570000px;}
.y63{bottom:1047.030000px;}
.yce{bottom:1056.570000px;}
.y6{bottom:1060.350000px;}
.y62{bottom:1064.310000px;}
.ycd{bottom:1074.570000px;}
.y61{bottom:1081.590000px;}
.ycc{bottom:1092.570000px;}
.y60{bottom:1098.870000px;}
.ycb{bottom:1113.810000px;}
.y5f{bottom:1116.150000px;}
.yca{bottom:1131.090000px;}
.y5e{bottom:1133.430000px;}
.yc9{bottom:1145.880000px;}
.y5d{bottom:1150.560000px;}
.yc8{bottom:1163.880000px;}
.y5c{bottom:1167.840000px;}
.h22{height:17.100000px;}
.h23{height:17.136000px;}
.h20{height:17.280000px;}
.h21{height:17.316000px;}
.hb{height:25.020000px;}
.h11{height:28.968750px;}
.h13{height:29.520000px;}
.h2{height:33.156000px;}
.h8{height:36.180000px;}
.h1d{height:36.756000px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h4{height:43.453125px;}
.h1f{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1e{height:48.088125px;}
.h19{height:49.255313px;}
.h12{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:183.450000px;}
.h15{height:465.690000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:151.950000px;}
.w28{width:171.750000px;}
.w25{width:178.410000px;}
.w1b{width:180.390000px;}
.w13{width:180.930000px;}
.wf{width:181.830000px;}
.wb{width:186.330000px;}
.w16{width:206.490000px;}
.w1d{width:216.570000px;}
.w22{width:217.110000px;}
.w8{width:223.275000px;}
.w21{width:230.475000px;}
.w1c{width:231.375000px;}
.w29{width:235.650000px;}
.w10{width:237.675000px;}
.w26{width:244.650000px;}
.w14{width:248.430000px;}
.w19{width:249.510000px;}
.w15{width:255.495000px;}
.wc{width:255.810000px;}
.w20{width:264.810000px;}
.w17{width:283.170000px;}
.we{width:284.250000px;}
.w1e{width:297.210000px;}
.w23{width:297.570000px;}
.wa{width:303.015000px;}
.w12{width:315.615000px;}
.w24{width:321.915000px;}
.w11{width:325.650000px;}
.w27{width:337.575000px;}
.wd{width:461.625000px;}
.w1f{width:481.065000px;}
.w18{width:496.365000px;}
.w9{width:524.055000px;}
.w1a{width:565.485000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.560000px;}
.x2{left:8.640000px;}
.x14{left:12.600000px;}
.xc{left:32.256000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x15{left:108.035987px;}
.x10{left:110.190000px;}
.x16{left:135.035987px;}
.x11{left:151.230000px;}
.xf{left:161.670000px;}
.xe{left:187.050000px;}
.x12{left:215.175000px;}
.x1a{left:222.509987px;}
.x6{left:224.850000px;}
.x26{left:226.289987px;}
.x1c{left:230.969987px;}
.x1f{left:233.129987px;}
.x23{left:252.029987px;}
.x1d{left:255.810000px;}
.x29{left:265.709987px;}
.x17{left:281.414987px;}
.x9{left:288.435000px;}
.x2e{left:289.694987px;}
.x13{left:296.175000px;}
.x2a{left:305.355000px;}
.x32{left:314.174987px;}
.x2d{left:323.894987px;}
.x24{left:329.475000px;}
.xd{left:342.255000px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x18{left:376.995000px;}
.x20{left:389.775000px;}
.x2f{left:395.895000px;}
.x34{left:411.555000px;}
.x33{left:446.474987px;}
.xa{left:455.700000px;}
.x1e{left:494.205000px;}
.x2b{left:522.645000px;}
.x1b{left:535.605000px;}
.x25{left:536.685000px;}
.x2c{left:555.045000px;}
.x19{left:564.045000px;}
.x27{left:570.345000px;}
.x22{left:571.425000px;}
.x30{left:575.205000px;}
.x35{left:584.205000px;}
.x28{left:639.465000px;}
.x31{left:708.629987px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-1.845333pt;}
.ls11{letter-spacing:-1.600000pt;}
.ls9{letter-spacing:-1.205333pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.265067pt;}
.ls7{letter-spacing:-0.113067pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.117867pt;}
.lse{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.336000pt;}
.ls3{letter-spacing:0.398080pt;}
.ls10{letter-spacing:0.448000pt;}
.ls14{letter-spacing:14.672640pt;}
.ls12{letter-spacing:40.912640pt;}
.lsf{letter-spacing:49.232640pt;}
.lsd{letter-spacing:56.912640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.761067pt;}
.ws3{word-spacing:-19.121067pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws8{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.005120pt;}
.wse{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.184000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws5{word-spacing:-7.810560pt;}
.ws6{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._18{margin-left:-7.011840pt;}
._14{margin-left:-5.889280pt;}
._5{margin-left:-4.302720pt;}
._4{margin-left:-2.937813pt;}
._1{margin-left:-1.920000pt;}
._3{margin-left:-1.023360pt;}
._0{width:1.101013pt;}
._2{width:2.304000pt;}
._c{width:4.006187pt;}
._b{width:4.940160pt;}
._13{width:6.584960pt;}
._a{width:7.596160pt;}
._d{width:8.566827pt;}
._17{width:9.561600pt;}
._7{width:10.638507pt;}
._f{width:11.633280pt;}
._6{width:14.402133pt;}
._15{width:15.617280pt;}
._9{width:17.258027pt;}
._8{width:18.223147pt;}
._12{width:20.200107pt;}
._16{width:21.566293pt;}
._e{width:35.339307pt;}
._11{width:38.639787pt;}
._10{width:39.650560pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:2.880000pt;}
.y9e{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y4f{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y4d{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y49{bottom:18.240000pt;}
.y4e{bottom:19.880000pt;}
.y18{bottom:21.320000pt;}
.y4c{bottom:22.600000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:29.120000pt;}
.y48{bottom:33.440000pt;}
.y17{bottom:35.880000pt;}
.ya{bottom:41.280000pt;}
.y47{bottom:48.800000pt;}
.y1{bottom:49.120000pt;}
.y16{bottom:50.600000pt;}
.y15{bottom:61.640000pt;}
.y46{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y14{bottom:74.600000pt;}
.y45{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.yc7{bottom:87.232000pt;}
.y113{bottom:87.392000pt;}
.y13{bottom:88.200000pt;}
.yf7{bottom:91.872000pt;}
.y44{bottom:94.880000pt;}
.y99{bottom:95.072000pt;}
.y7{bottom:98.906667pt;}
.y2f{bottom:102.240000pt;}
.y112{bottom:102.752000pt;}
.y5b{bottom:102.912000pt;}
.yc6{bottom:103.232000pt;}
.y12{bottom:105.160000pt;}
.yf6{bottom:107.872000pt;}
.y43{bottom:110.240000pt;}
.y98{bottom:110.432000pt;}
.y2e{bottom:115.840000pt;}
.y111{bottom:118.112000pt;}
.y5a{bottom:118.272000pt;}
.yc5{bottom:119.232000pt;}
.yf5{bottom:123.872000pt;}
.y42{bottom:125.440000pt;}
.y97{bottom:125.792000pt;}
.y11{bottom:128.040000pt;}
.y2d{bottom:131.520000pt;}
.y110{bottom:133.312000pt;}
.y59{bottom:133.626667pt;}
.yc4{bottom:135.226667pt;}
.yf4{bottom:139.866667pt;}
.y41{bottom:140.800000pt;}
.y96{bottom:140.986667pt;}
.y2c{bottom:146.880000pt;}
.y10f{bottom:148.666667pt;}
.y58{bottom:148.986667pt;}
.y10{bottom:149.640000pt;}
.yc3{bottom:151.226667pt;}
.yf3{bottom:155.866667pt;}
.y40{bottom:156.160000pt;}
.y95{bottom:156.346667pt;}
.y2b{bottom:162.240000pt;}
.y10e{bottom:164.026667pt;}
.y57{bottom:164.346667pt;}
.yc2{bottom:167.226667pt;}
.y3f{bottom:171.520000pt;}
.y94{bottom:171.706667pt;}
.yf2{bottom:171.866667pt;}
.y2a{bottom:178.080000pt;}
.y10d{bottom:179.386667pt;}
.y56{bottom:179.706667pt;}
.yc1{bottom:183.226667pt;}
.y3e{bottom:186.880000pt;}
.y93{bottom:187.066667pt;}
.yf1{bottom:187.866667pt;}
.y29{bottom:193.440000pt;}
.y10c{bottom:194.746667pt;}
.y55{bottom:194.906667pt;}
.yc0{bottom:199.226667pt;}
.y3d{bottom:202.080000pt;}
.y92{bottom:202.426667pt;}
.yf0{bottom:203.866667pt;}
.y28{bottom:208.960000pt;}
.y10b{bottom:210.106667pt;}
.y54{bottom:210.266667pt;}
.ybf{bottom:215.226667pt;}
.y3c{bottom:217.440000pt;}
.y91{bottom:217.786667pt;}
.yef{bottom:219.866667pt;}
.y27{bottom:224.506667pt;}
.y10a{bottom:225.306667pt;}
.y53{bottom:225.626667pt;}
.y3b{bottom:232.826667pt;}
.y90{bottom:232.986667pt;}
.ybe{bottom:234.106667pt;}
.yee{bottom:238.746667pt;}
.y26{bottom:239.866667pt;}
.y109{bottom:240.666667pt;}
.y52{bottom:240.986667pt;}
.y3a{bottom:248.186667pt;}
.y8f{bottom:249.306667pt;}
.yed{bottom:253.946667pt;}
.y25{bottom:255.386667pt;}
.y108{bottom:256.026667pt;}
.y51{bottom:256.346667pt;}
.ybd{bottom:262.426667pt;}
.y39{bottom:263.546667pt;}
.y8e{bottom:264.666667pt;}
.yec{bottom:269.306667pt;}
.y24{bottom:270.906667pt;}
.y107{bottom:271.386667pt;}
.y50{bottom:271.546667pt;}
.ybc{bottom:278.426667pt;}
.y38{bottom:278.906667pt;}
.y8d{bottom:280.026667pt;}
.yeb{bottom:281.786667pt;}
.y4b{bottom:284.026667pt;}
.y23{bottom:286.266667pt;}
.y106{bottom:286.746667pt;}
.y37{bottom:294.106667pt;}
.ybb{bottom:294.426667pt;}
.y8c{bottom:296.346667pt;}
.y22{bottom:301.786667pt;}
.y105{bottom:302.146667pt;}
.y36{bottom:309.466667pt;}
.y8b{bottom:312.546667pt;}
.yba{bottom:313.346667pt;}
.y1b{bottom:316.706667pt;}
.y21{bottom:317.146667pt;}
.y104{bottom:317.346667pt;}
.y35{bottom:324.826667pt;}
.y8a{bottom:327.906667pt;}
.yb9{bottom:328.706667pt;}
.y20{bottom:332.666667pt;}
.y103{bottom:332.706667pt;}
.y34{bottom:340.186667pt;}
.yb8{bottom:341.826667pt;}
.y89{bottom:343.266667pt;}
.y102{bottom:348.066667pt;}
.y1f{bottom:348.186667pt;}
.y33{bottom:355.546667pt;}
.yb7{bottom:357.826667pt;}
.y88{bottom:358.626667pt;}
.y101{bottom:363.426667pt;}
.y1e{bottom:363.706667pt;}
.y32{bottom:370.906667pt;}
.yb6{bottom:373.826667pt;}
.y87{bottom:373.986667pt;}
.y100{bottom:378.786667pt;}
.y31{bottom:386.106667pt;}
.y1d{bottom:388.186667pt;}
.y86{bottom:390.306667pt;}
.yb5{bottom:392.706667pt;}
.yff{bottom:394.146667pt;}
.y30{bottom:401.466667pt;}
.y1c{bottom:403.866667pt;}
.y85{bottom:406.466667pt;}
.yb4{bottom:408.066667pt;}
.yfe{bottom:409.346667pt;}
.yb3{bottom:421.186667pt;}
.y84{bottom:421.826667pt;}
.yfd{bottom:424.706667pt;}
.y83{bottom:437.186667pt;}
.yfc{bottom:440.066667pt;}
.y82{bottom:452.546667pt;}
.yb2{bottom:453.186667pt;}
.yfb{bottom:455.426667pt;}
.y81{bottom:467.906667pt;}
.yfa{bottom:470.786667pt;}
.yb1{bottom:472.066667pt;}
.y80{bottom:484.226667pt;}
.yf9{bottom:485.986667pt;}
.yb0{bottom:487.426667pt;}
.yea{bottom:496.706667pt;}
.y7f{bottom:500.386667pt;}
.yaf{bottom:500.546667pt;}
.yf8{bottom:501.346667pt;}
.ye9{bottom:509.826667pt;}
.yae{bottom:516.546667pt;}
.y7e{bottom:516.706667pt;}
.ye8{bottom:525.826667pt;}
.y7d{bottom:532.066667pt;}
.yad{bottom:532.546667pt;}
.ye7{bottom:541.853333pt;}
.y7c{bottom:547.453333pt;}
.yac{bottom:548.573333pt;}
.ye6{bottom:557.853333pt;}
.y7b{bottom:562.813333pt;}
.yab{bottom:564.573333pt;}
.ye5{bottom:573.853333pt;}
.y7a{bottom:578.013333pt;}
.yaa{bottom:580.573333pt;}
.ye4{bottom:589.853333pt;}
.y79{bottom:593.373333pt;}
.ya9{bottom:596.573333pt;}
.ye3{bottom:605.853333pt;}
.y78{bottom:608.733333pt;}
.ya8{bottom:612.573333pt;}
.ye2{bottom:621.853333pt;}
.y77{bottom:624.093333pt;}
.ya7{bottom:628.573333pt;}
.y76{bottom:639.453333pt;}
.ye1{bottom:640.733333pt;}
.ya6{bottom:647.453333pt;}
.y75{bottom:654.813333pt;}
.ye0{bottom:656.093333pt;}
.ya5{bottom:662.813333pt;}
.ydf{bottom:669.213333pt;}
.y74{bottom:670.013333pt;}
.ya4{bottom:675.933333pt;}
.yde{bottom:685.213333pt;}
.y73{bottom:685.373333pt;}
.ya3{bottom:691.933333pt;}
.y72{bottom:700.733333pt;}
.ydd{bottom:701.213333pt;}
.ya2{bottom:707.933333pt;}
.y71{bottom:716.093333pt;}
.ydc{bottom:720.093333pt;}
.ya1{bottom:723.933333pt;}
.y19{bottom:730.653333pt;}
.y70{bottom:731.453333pt;}
.ydb{bottom:735.453333pt;}
.ya0{bottom:739.773333pt;}
.y6f{bottom:746.653333pt;}
.yda{bottom:748.573333pt;}
.y9f{bottom:755.773333pt;}
.yf{bottom:756.893333pt;}
.y6e{bottom:762.013333pt;}
.yd9{bottom:764.573333pt;}
.y9d{bottom:771.773333pt;}
.y6d{bottom:777.413333pt;}
.yd8{bottom:780.613333pt;}
.y9c{bottom:787.813333pt;}
.y6c{bottom:792.773333pt;}
.yd7{bottom:796.613333pt;}
.y9b{bottom:803.813333pt;}
.y6b{bottom:808.133333pt;}
.yd6{bottom:815.493333pt;}
.y9a{bottom:819.813333pt;}
.y6a{bottom:823.493333pt;}
.yd5{bottom:830.693333pt;}
.y69{bottom:838.693333pt;}
.yd4{bottom:843.813333pt;}
.y68{bottom:854.053333pt;}
.yd3{bottom:859.813333pt;}
.y67{bottom:869.413333pt;}
.yd2{bottom:875.813333pt;}
.y66{bottom:884.773333pt;}
.yd1{bottom:894.693333pt;}
.y65{bottom:900.133333pt;}
.yd0{bottom:910.053333pt;}
.y64{bottom:915.493333pt;}
.yd{bottom:919.973333pt;}
.ycf{bottom:923.173333pt;}
.y63{bottom:930.693333pt;}
.yce{bottom:939.173333pt;}
.y6{bottom:942.533333pt;}
.y62{bottom:946.053333pt;}
.ycd{bottom:955.173333pt;}
.y61{bottom:961.413333pt;}
.ycc{bottom:971.173333pt;}
.y60{bottom:976.773333pt;}
.ycb{bottom:990.053333pt;}
.y5f{bottom:992.133333pt;}
.yca{bottom:1005.413333pt;}
.y5e{bottom:1007.493333pt;}
.yc9{bottom:1018.560000pt;}
.y5d{bottom:1022.720000pt;}
.yc8{bottom:1034.560000pt;}
.y5c{bottom:1038.080000pt;}
.h22{height:15.200000pt;}
.h23{height:15.232000pt;}
.h20{height:15.360000pt;}
.h21{height:15.392000pt;}
.hb{height:22.240000pt;}
.h11{height:25.750000pt;}
.h13{height:26.240000pt;}
.h2{height:29.472000pt;}
.h8{height:32.160000pt;}
.h1d{height:32.672000pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h4{height:38.625000pt;}
.h1f{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1e{height:42.745000pt;}
.h19{height:43.782500pt;}
.h12{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:163.066667pt;}
.h15{height:413.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:135.066667pt;}
.w28{width:152.666667pt;}
.w25{width:158.586667pt;}
.w1b{width:160.346667pt;}
.w13{width:160.826667pt;}
.wf{width:161.626667pt;}
.wb{width:165.626667pt;}
.w16{width:183.546667pt;}
.w1d{width:192.506667pt;}
.w22{width:192.986667pt;}
.w8{width:198.466667pt;}
.w21{width:204.866667pt;}
.w1c{width:205.666667pt;}
.w29{width:209.466667pt;}
.w10{width:211.266667pt;}
.w26{width:217.466667pt;}
.w14{width:220.826667pt;}
.w19{width:221.786667pt;}
.w15{width:227.106667pt;}
.wc{width:227.386667pt;}
.w20{width:235.386667pt;}
.w17{width:251.706667pt;}
.we{width:252.666667pt;}
.w1e{width:264.186667pt;}
.w23{width:264.506667pt;}
.wa{width:269.346667pt;}
.w12{width:280.546667pt;}
.w24{width:286.146667pt;}
.w11{width:289.466667pt;}
.w27{width:300.066667pt;}
.wd{width:410.333333pt;}
.w1f{width:427.613333pt;}
.w18{width:441.213333pt;}
.w9{width:465.826667pt;}
.w1a{width:502.653333pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.720000pt;}
.x2{left:7.680000pt;}
.x14{left:11.200000pt;}
.xc{left:28.672000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x15{left:96.031988pt;}
.x10{left:97.946667pt;}
.x16{left:120.031988pt;}
.x11{left:134.426667pt;}
.xf{left:143.706667pt;}
.xe{left:166.266667pt;}
.x12{left:191.266667pt;}
.x1a{left:197.786655pt;}
.x6{left:199.866667pt;}
.x26{left:201.146655pt;}
.x1c{left:205.306655pt;}
.x1f{left:207.226655pt;}
.x23{left:224.026655pt;}
.x1d{left:227.386667pt;}
.x29{left:236.186655pt;}
.x17{left:250.146655pt;}
.x9{left:256.386667pt;}
.x2e{left:257.506655pt;}
.x13{left:263.266667pt;}
.x2a{left:271.426667pt;}
.x32{left:279.266655pt;}
.x2d{left:287.906655pt;}
.x24{left:292.866667pt;}
.xd{left:304.226667pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x18{left:335.106667pt;}
.x20{left:346.466667pt;}
.x2f{left:351.906667pt;}
.x34{left:365.826667pt;}
.x33{left:396.866655pt;}
.xa{left:405.066667pt;}
.x1e{left:439.293333pt;}
.x2b{left:464.573333pt;}
.x1b{left:476.093333pt;}
.x25{left:477.053333pt;}
.x2c{left:493.373333pt;}
.x19{left:501.373333pt;}
.x27{left:506.973333pt;}
.x22{left:507.933333pt;}
.x30{left:511.293333pt;}
.x35{left:519.293333pt;}
.x28{left:568.413333pt;}
.x31{left:629.893322pt;}
.x3{left:663.013333pt;}
}




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