
    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_e72ea8e347ea8dbd4fec64ce.woff')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_f1c6c367cf1d1f2fcdb81025.woff')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_263648d6cb824ad12f53185f.woff')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_c7740fbeabe3b700cd05f504.woff')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_d0c7cbf13512a2d9c24f43b0.woff')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_1f039661180bc31085041b3a.woff')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_5f2d09a0c585ffac71973771.woff')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_1b3dec8e60fa7e0ecc101349.woff')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_0b2e9cc706308ae06f45b83c.woff')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_0fa7003e879a4e1f976b7103.woff')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_ebcf60e7b5fb8785ba47ab2b.woff')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_00365292bef13193c8745c6b.woff')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_c69766e5f0b62fe68185615c.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')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;}
@font-face{font-family:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')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;}
.ls14{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.127200px;}
.lsa{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.lsd{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.447840px;}
.ls5{letter-spacing:0.540000px;}
.ls13{letter-spacing:16.506720px;}
.lsc{letter-spacing:46.026720px;}
.lse{letter-spacing:55.386720px;}
.lsb{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;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws8{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.wsf{word-spacing:-15.199800px;}
.wse{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.505760px;}
.ws7{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._c{margin-left:-6.300720px;}
._5{margin-left:-4.840560px;}
._4{margin-left:-3.395520px;}
._2{margin-left:-2.160000px;}
._0{margin-left:-1.032000px;}
._1{width:1.008000px;}
._3{width:2.592000px;}
._8{width:4.370400px;}
._7{width:5.378400px;}
._e{width:7.194240px;}
._a{width:8.314560px;}
._b{width:9.326880px;}
._f{width:10.455120px;}
._9{width:11.585760px;}
._6{width:12.710880px;}
._11{width:13.848480px;}
._13{width:16.075440px;}
._12{width:17.218800px;}
._d{width:18.832320px;}
._18{width:20.369520px;}
._16{width:22.395840px;}
._15{width:23.817120px;}
._14{width:25.517520px;}
._17{width:26.873280px;}
._10{width:37.872720px;}
.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;}
.y47{bottom:3.240000px;}
.yc8{bottom:3.270000px;}
.y3{bottom:3.600000px;}
.y4c{bottom:3.960000px;}
.y19{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.y4a{bottom:10.620000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.196000px;}
.y46{bottom:20.520000px;}
.y4b{bottom:22.320000px;}
.y49{bottom:25.200000px;}
.y18{bottom:29.385000px;}
.yb{bottom:30.240000px;}
.y45{bottom:37.800000px;}
.y5{bottom:39.600000px;}
.y17{bottom:45.945000px;}
.ya{bottom:46.620000px;}
.y44{bottom:55.080000px;}
.y1{bottom:62.100000px;}
.y16{bottom:62.505000px;}
.y43{bottom:72.360000px;}
.y9{bottom:73.470000px;}
.y15{bottom:78.165000px;}
.y2f{bottom:79.920000px;}
.y14{bottom:88.065000px;}
.y42{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y2e{bottom:95.220000px;}
.y13{bottom:103.365000px;}
.y41{bottom:106.740000px;}
.y7{bottom:111.450000px;}
.y2d{bottom:112.860000px;}
.yc5{bottom:113.076000px;}
.y99{bottom:115.776000px;}
.y5b{bottom:117.576000px;}
.y12{bottom:122.265000px;}
.y40{bottom:124.020000px;}
.ye1{bottom:125.316000px;}
.y2c{bottom:130.140000px;}
.yc4{bottom:130.356000px;}
.y98{bottom:133.056000px;}
.y119{bottom:134.316000px;}
.y5a{bottom:134.676000px;}
.ye0{bottom:139.356000px;}
.y3f{bottom:141.300000px;}
.y2b{bottom:147.420000px;}
.yc3{bottom:147.636000px;}
.y11{bottom:148.005000px;}
.y97{bottom:150.330000px;}
.y118{bottom:151.590000px;}
.y59{bottom:151.950000px;}
.y3e{bottom:158.580000px;}
.yc2{bottom:164.910000px;}
.y2a{bottom:165.060000px;}
.y96{bottom:167.610000px;}
.y117{bottom:168.870000px;}
.y58{bottom:169.230000px;}
.y10{bottom:172.485000px;}
.y3d{bottom:175.860000px;}
.yc1{bottom:179.670000px;}
.y29{bottom:182.520000px;}
.y95{bottom:184.890000px;}
.y116{bottom:185.970000px;}
.y57{bottom:186.510000px;}
.y3c{bottom:192.990000px;}
.yc0{bottom:197.670000px;}
.y28{bottom:200.010000px;}
.y94{bottom:202.170000px;}
.y115{bottom:203.250000px;}
.y56{bottom:203.790000px;}
.y3b{bottom:210.270000px;}
.ybf{bottom:215.670000px;}
.y27{bottom:217.290000px;}
.y93{bottom:219.270000px;}
.y114{bottom:220.530000px;}
.y55{bottom:221.070000px;}
.y3a{bottom:227.550000px;}
.ybe{bottom:233.490000px;}
.y26{bottom:234.750000px;}
.y92{bottom:236.550000px;}
.y113{bottom:237.810000px;}
.y54{bottom:238.170000px;}
.y39{bottom:244.830000px;}
.y25{bottom:252.210000px;}
.y91{bottom:253.830000px;}
.ybd{bottom:254.730000px;}
.y112{bottom:255.090000px;}
.y53{bottom:255.450000px;}
.y38{bottom:262.110000px;}
.y24{bottom:269.490000px;}
.y90{bottom:271.110000px;}
.ybc{bottom:272.010000px;}
.y111{bottom:272.370000px;}
.y52{bottom:272.730000px;}
.y37{bottom:279.390000px;}
.ybb{bottom:286.770000px;}
.y23{bottom:286.950000px;}
.y8f{bottom:288.390000px;}
.y110{bottom:289.470000px;}
.y51{bottom:290.010000px;}
.y36{bottom:296.490000px;}
.y22{bottom:304.230000px;}
.yba{bottom:304.770000px;}
.y8e{bottom:305.670000px;}
.y10f{bottom:306.750000px;}
.y50{bottom:307.290000px;}
.y35{bottom:313.770000px;}
.y21{bottom:321.690000px;}
.y8d{bottom:322.770000px;}
.y10e{bottom:324.030000px;}
.y4f{bottom:324.570000px;}
.y34{bottom:331.050000px;}
.y20{bottom:339.330000px;}
.y8c{bottom:340.095000px;}
.yb9{bottom:340.815000px;}
.y10d{bottom:341.355000px;}
.y4e{bottom:341.715000px;}
.y33{bottom:348.330000px;}
.y8b{bottom:357.375000px;}
.y1f{bottom:357.510000px;}
.y10c{bottom:358.635000px;}
.yb8{bottom:358.815000px;}
.y4d{bottom:359.715000px;}
.y32{bottom:365.610000px;}
.y48{bottom:374.115000px;}
.y8a{bottom:374.655000px;}
.y10b{bottom:375.915000px;}
.yb7{bottom:380.055000px;}
.y31{bottom:382.890000px;}
.y1e{bottom:385.050000px;}
.y89{bottom:391.935000px;}
.y10a{bottom:393.015000px;}
.yb6{bottom:397.335000px;}
.y30{bottom:399.990000px;}
.y1d{bottom:402.690000px;}
.y88{bottom:409.035000px;}
.y109{bottom:410.295000px;}
.y1c{bottom:410.655000px;}
.yb5{bottom:412.095000px;}
.y87{bottom:426.315000px;}
.y108{bottom:427.575000px;}
.yb4{bottom:430.095000px;}
.y86{bottom:443.595000px;}
.y107{bottom:444.855000px;}
.yb3{bottom:448.095000px;}
.y85{bottom:460.875000px;}
.y106{bottom:462.135000px;}
.yb2{bottom:466.095000px;}
.ydf{bottom:476.895000px;}
.y84{bottom:478.155000px;}
.y105{bottom:479.415000px;}
.yb1{bottom:484.095000px;}
.yde{bottom:491.655000px;}
.y83{bottom:496.515000px;}
.yb0{bottom:502.095000px;}
.ydd{bottom:509.655000px;}
.y104{bottom:513.795000px;}
.y82{bottom:514.695000px;}
.yaf{bottom:523.335000px;}
.ydc{bottom:527.655000px;}
.y103{bottom:531.075000px;}
.y81{bottom:533.055000px;}
.yae{bottom:540.615000px;}
.ydb{bottom:545.655000px;}
.y102{bottom:548.355000px;}
.y80{bottom:550.335000px;}
.yad{bottom:555.375000px;}
.yda{bottom:563.655000px;}
.y101{bottom:565.635000px;}
.y7f{bottom:567.615000px;}
.yac{bottom:573.375000px;}
.yd9{bottom:581.655000px;}
.y100{bottom:582.735000px;}
.y7e{bottom:585.975000px;}
.yab{bottom:591.375000px;}
.yd8{bottom:599.655000px;}
.yff{bottom:600.015000px;}
.y7d{bottom:603.075000px;}
.yaa{bottom:609.405000px;}
.yfe{bottom:617.325000px;}
.yd7{bottom:620.925000px;}
.y7c{bottom:621.465000px;}
.ya9{bottom:627.405000px;}
.yfd{bottom:634.605000px;}
.yd6{bottom:638.205000px;}
.y7b{bottom:639.825000px;}
.ya8{bottom:648.645000px;}
.yfc{bottom:651.885000px;}
.yd5{bottom:655.485000px;}
.y7a{bottom:657.105000px;}
.ya7{bottom:665.925000px;}
.yfb{bottom:669.165000px;}
.yd4{bottom:669.345000px;}
.y79{bottom:674.385000px;}
.ya6{bottom:680.685000px;}
.yfa{bottom:686.265000px;}
.y78{bottom:691.665000px;}
.ya5{bottom:698.685000px;}
.yf9{bottom:703.545000px;}
.y77{bottom:708.765000px;}
.ya4{bottom:716.685000px;}
.yf8{bottom:720.825000px;}
.y76{bottom:726.045000px;}
.ya3{bottom:734.685000px;}
.yf7{bottom:738.105000px;}
.y75{bottom:743.325000px;}
.ya2{bottom:752.685000px;}
.yf6{bottom:755.385000px;}
.y74{bottom:760.605000px;}
.ya1{bottom:770.685000px;}
.yf5{bottom:772.665000px;}
.y73{bottom:777.885000px;}
.yf4{bottom:789.765000px;}
.ya0{bottom:791.925000px;}
.y72{bottom:795.165000px;}
.yf3{bottom:807.045000px;}
.y9f{bottom:809.025000px;}
.y71{bottom:812.265000px;}
.yf2{bottom:824.325000px;}
.y1a{bottom:824.685000px;}
.y9e{bottom:826.305000px;}
.y70{bottom:829.545000px;}
.yf1{bottom:841.605000px;}
.y9d{bottom:843.585000px;}
.y6f{bottom:846.825000px;}
.yf{bottom:854.205000px;}
.yf0{bottom:858.885000px;}
.y9c{bottom:860.865000px;}
.y6e{bottom:864.105000px;}
.yef{bottom:876.030000px;}
.y9b{bottom:879.270000px;}
.y6d{bottom:881.430000px;}
.yee{bottom:893.310000px;}
.y9a{bottom:897.450000px;}
.y6c{bottom:898.530000px;}
.yed{bottom:910.590000px;}
.y6b{bottom:915.810000px;}
.yec{bottom:927.870000px;}
.y6a{bottom:933.090000px;}
.yd3{bottom:942.090000px;}
.yeb{bottom:945.150000px;}
.y69{bottom:950.370000px;}
.yd2{bottom:959.370000px;}
.yea{bottom:962.430000px;}
.y68{bottom:967.650000px;}
.yd1{bottom:974.130000px;}
.ye9{bottom:979.530000px;}
.y67{bottom:984.930000px;}
.yd0{bottom:992.130000px;}
.ye8{bottom:996.810000px;}
.y66{bottom:1002.030000px;}
.ycf{bottom:1010.130000px;}
.ye7{bottom:1014.090000px;}
.y65{bottom:1019.310000px;}
.yce{bottom:1028.130000px;}
.ye6{bottom:1031.370000px;}
.y64{bottom:1036.590000px;}
.yd{bottom:1041.810000px;}
.ycd{bottom:1046.130000px;}
.y63{bottom:1053.870000px;}
.ycc{bottom:1064.130000px;}
.y6{bottom:1067.010000px;}
.y62{bottom:1071.150000px;}
.ye5{bottom:1082.130000px;}
.ycb{bottom:1085.370000px;}
.y61{bottom:1088.430000px;}
.ye4{bottom:1100.130000px;}
.yca{bottom:1102.650000px;}
.y60{bottom:1105.530000px;}
.yc9{bottom:1117.410000px;}
.ye3{bottom:1118.130000px;}
.y5f{bottom:1122.810000px;}
.yc7{bottom:1135.410000px;}
.ye2{bottom:1136.130000px;}
.y5e{bottom:1140.120000px;}
.yc6{bottom:1153.440000px;}
.y5d{bottom:1157.400000px;}
.y5c{bottom:1174.680000px;}
.h20{height:17.100000px;}
.h21{height:17.280000px;}
.h22{height:17.316000px;}
.hb{height:24.840000px;}
.h12{height:28.968750px;}
.h13{height:29.520000px;}
.h2{height:32.976000px;}
.h11{height:35.806641px;}
.h8{height:36.180000px;}
.h1d{height:36.540000px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.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;}
.h4{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:187.590000px;}
.h15{height:414.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w21{width:82.260000px;}
.w28{width:93.600000px;}
.w1c{width:122.400000px;}
.w24{width:130.320000px;}
.w18{width:137.016000px;}
.w5{width:151.950000px;}
.w14{width:152.490000px;}
.wb{width:157.710000px;}
.wd{width:163.260000px;}
.w19{width:167.250000px;}
.wf{width:176.970000px;}
.w15{width:180.570000px;}
.w25{width:181.110000px;}
.wc{width:182.730000px;}
.w13{width:183.450000px;}
.w17{width:193.170000px;}
.w1f{width:218.010000px;}
.w20{width:218.190000px;}
.w1d{width:220.710000px;}
.w8{width:223.275000px;}
.w1e{width:225.975000px;}
.w26{width:226.515000px;}
.w16{width:227.910000px;}
.w10{width:230.790000px;}
.wa{width:240.555000px;}
.w22{width:242.175000px;}
.w27{width:243.210000px;}
.w1b{width:243.435000px;}
.w12{width:245.010000px;}
.w1a{width:246.810000px;}
.we{width:337.395000px;}
.w23{width:372.675000px;}
.w11{width:500.685000px;}
.w9{width:524.055000px;}
.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;}
.x1a{left:7.560000px;}
.x2{left:8.640000px;}
.x13{left:12.600000px;}
.x10{left:68.976000px;}
.xe{left:71.136000px;}
.x1{left:72.360000px;}
.xf{left:73.836000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x14{left:108.035987px;}
.x15{left:135.035987px;}
.x16{left:162.029987px;}
.xd{left:169.050000px;}
.xc{left:212.655000px;}
.x11{left:215.175000px;}
.x6{left:224.850000px;}
.x1e{left:233.669987px;}
.x34{left:237.269987px;}
.x17{left:241.769987px;}
.x2a{left:247.889987px;}
.x35{left:255.090000px;}
.x21{left:257.430000px;}
.x33{left:265.349987px;}
.x23{left:267.150000px;}
.x2f{left:268.229987px;}
.x9{left:288.435000px;}
.x12{left:296.175000px;}
.x20{left:300.314987px;}
.x18{left:314.535000px;}
.x30{left:316.155000px;}
.x27{left:317.415000px;}
.x26{left:342.074987px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x24{left:405.075000px;}
.x1c{left:411.375000px;}
.x28{left:440.535000px;}
.x2e{left:446.474987px;}
.xa{left:455.700000px;}
.x19{left:473.145000px;}
.x36{left:482.325000px;}
.x2b{left:518.685000px;}
.x25{left:573.045000px;}
.x1f{left:574.845000px;}
.x1d{left:589.065000px;}
.x22{left:591.945000px;}
.x29{left:599.145000px;}
.x1b{left:656.610000px;}
.x31{left:689.550000px;}
.x2d{left:703.589987px;}
.x32{left:718.709987px;}
.x37{left:726.270000px;}
.x2c{left:737.610000px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.113067pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.lsd{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.398080pt;}
.ls5{letter-spacing:0.480000pt;}
.ls13{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.912640pt;}
.lse{letter-spacing:49.232640pt;}
.lsb{letter-spacing:56.912640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws8{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.wsf{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._c{margin-left:-5.600640pt;}
._5{margin-left:-4.302720pt;}
._4{margin-left:-3.018240pt;}
._2{margin-left:-1.920000pt;}
._0{margin-left:-0.917333pt;}
._1{width:0.896000pt;}
._3{width:2.304000pt;}
._8{width:3.884800pt;}
._7{width:4.780800pt;}
._e{width:6.394880pt;}
._a{width:7.390720pt;}
._b{width:8.290560pt;}
._f{width:9.293440pt;}
._9{width:10.298453pt;}
._6{width:11.298560pt;}
._11{width:12.309760pt;}
._13{width:14.289280pt;}
._12{width:15.305600pt;}
._d{width:16.739840pt;}
._18{width:18.106240pt;}
._16{width:19.907413pt;}
._15{width:21.170773pt;}
._14{width:22.682240pt;}
._17{width:23.887360pt;}
._10{width:33.664640pt;}
.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;}
.y47{bottom:2.880000pt;}
.yc8{bottom:2.906667pt;}
.y3{bottom:3.200000pt;}
.y4c{bottom:3.520000pt;}
.y19{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.y4a{bottom:9.440000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.952000pt;}
.y46{bottom:18.240000pt;}
.y4b{bottom:19.840000pt;}
.y49{bottom:22.400000pt;}
.y18{bottom:26.120000pt;}
.yb{bottom:26.880000pt;}
.y45{bottom:33.600000pt;}
.y5{bottom:35.200000pt;}
.y17{bottom:40.840000pt;}
.ya{bottom:41.440000pt;}
.y44{bottom:48.960000pt;}
.y1{bottom:55.200000pt;}
.y16{bottom:55.560000pt;}
.y43{bottom:64.320000pt;}
.y9{bottom:65.306667pt;}
.y15{bottom:69.480000pt;}
.y2f{bottom:71.040000pt;}
.y14{bottom:78.280000pt;}
.y42{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y2e{bottom:84.640000pt;}
.y13{bottom:91.880000pt;}
.y41{bottom:94.880000pt;}
.y7{bottom:99.066667pt;}
.y2d{bottom:100.320000pt;}
.yc5{bottom:100.512000pt;}
.y99{bottom:102.912000pt;}
.y5b{bottom:104.512000pt;}
.y12{bottom:108.680000pt;}
.y40{bottom:110.240000pt;}
.ye1{bottom:111.392000pt;}
.y2c{bottom:115.680000pt;}
.yc4{bottom:115.872000pt;}
.y98{bottom:118.272000pt;}
.y119{bottom:119.392000pt;}
.y5a{bottom:119.712000pt;}
.ye0{bottom:123.872000pt;}
.y3f{bottom:125.600000pt;}
.y2b{bottom:131.040000pt;}
.yc3{bottom:131.232000pt;}
.y11{bottom:131.560000pt;}
.y97{bottom:133.626667pt;}
.y118{bottom:134.746667pt;}
.y59{bottom:135.066667pt;}
.y3e{bottom:140.960000pt;}
.yc2{bottom:146.586667pt;}
.y2a{bottom:146.720000pt;}
.y96{bottom:148.986667pt;}
.y117{bottom:150.106667pt;}
.y58{bottom:150.426667pt;}
.y10{bottom:153.320000pt;}
.y3d{bottom:156.320000pt;}
.yc1{bottom:159.706667pt;}
.y29{bottom:162.240000pt;}
.y95{bottom:164.346667pt;}
.y116{bottom:165.306667pt;}
.y57{bottom:165.786667pt;}
.y3c{bottom:171.546667pt;}
.yc0{bottom:175.706667pt;}
.y28{bottom:177.786667pt;}
.y94{bottom:179.706667pt;}
.y115{bottom:180.666667pt;}
.y56{bottom:181.146667pt;}
.y3b{bottom:186.906667pt;}
.ybf{bottom:191.706667pt;}
.y27{bottom:193.146667pt;}
.y93{bottom:194.906667pt;}
.y114{bottom:196.026667pt;}
.y55{bottom:196.506667pt;}
.y3a{bottom:202.266667pt;}
.ybe{bottom:207.546667pt;}
.y26{bottom:208.666667pt;}
.y92{bottom:210.266667pt;}
.y113{bottom:211.386667pt;}
.y54{bottom:211.706667pt;}
.y39{bottom:217.626667pt;}
.y25{bottom:224.186667pt;}
.y91{bottom:225.626667pt;}
.ybd{bottom:226.426667pt;}
.y112{bottom:226.746667pt;}
.y53{bottom:227.066667pt;}
.y38{bottom:232.986667pt;}
.y24{bottom:239.546667pt;}
.y90{bottom:240.986667pt;}
.ybc{bottom:241.786667pt;}
.y111{bottom:242.106667pt;}
.y52{bottom:242.426667pt;}
.y37{bottom:248.346667pt;}
.ybb{bottom:254.906667pt;}
.y23{bottom:255.066667pt;}
.y8f{bottom:256.346667pt;}
.y110{bottom:257.306667pt;}
.y51{bottom:257.786667pt;}
.y36{bottom:263.546667pt;}
.y22{bottom:270.426667pt;}
.yba{bottom:270.906667pt;}
.y8e{bottom:271.706667pt;}
.y10f{bottom:272.666667pt;}
.y50{bottom:273.146667pt;}
.y35{bottom:278.906667pt;}
.y21{bottom:285.946667pt;}
.y8d{bottom:286.906667pt;}
.y10e{bottom:288.026667pt;}
.y4f{bottom:288.506667pt;}
.y34{bottom:294.266667pt;}
.y20{bottom:301.626667pt;}
.y8c{bottom:302.306667pt;}
.yb9{bottom:302.946667pt;}
.y10d{bottom:303.426667pt;}
.y4e{bottom:303.746667pt;}
.y33{bottom:309.626667pt;}
.y8b{bottom:317.666667pt;}
.y1f{bottom:317.786667pt;}
.y10c{bottom:318.786667pt;}
.yb8{bottom:318.946667pt;}
.y4d{bottom:319.746667pt;}
.y32{bottom:324.986667pt;}
.y48{bottom:332.546667pt;}
.y8a{bottom:333.026667pt;}
.y10b{bottom:334.146667pt;}
.yb7{bottom:337.826667pt;}
.y31{bottom:340.346667pt;}
.y1e{bottom:342.266667pt;}
.y89{bottom:348.386667pt;}
.y10a{bottom:349.346667pt;}
.yb6{bottom:353.186667pt;}
.y30{bottom:355.546667pt;}
.y1d{bottom:357.946667pt;}
.y88{bottom:363.586667pt;}
.y109{bottom:364.706667pt;}
.y1c{bottom:365.026667pt;}
.yb5{bottom:366.306667pt;}
.y87{bottom:378.946667pt;}
.y108{bottom:380.066667pt;}
.yb4{bottom:382.306667pt;}
.y86{bottom:394.306667pt;}
.y107{bottom:395.426667pt;}
.yb3{bottom:398.306667pt;}
.y85{bottom:409.666667pt;}
.y106{bottom:410.786667pt;}
.yb2{bottom:414.306667pt;}
.ydf{bottom:423.906667pt;}
.y84{bottom:425.026667pt;}
.y105{bottom:426.146667pt;}
.yb1{bottom:430.306667pt;}
.yde{bottom:437.026667pt;}
.y83{bottom:441.346667pt;}
.yb0{bottom:446.306667pt;}
.ydd{bottom:453.026667pt;}
.y104{bottom:456.706667pt;}
.y82{bottom:457.506667pt;}
.yaf{bottom:465.186667pt;}
.ydc{bottom:469.026667pt;}
.y103{bottom:472.066667pt;}
.y81{bottom:473.826667pt;}
.yae{bottom:480.546667pt;}
.ydb{bottom:485.026667pt;}
.y102{bottom:487.426667pt;}
.y80{bottom:489.186667pt;}
.yad{bottom:493.666667pt;}
.yda{bottom:501.026667pt;}
.y101{bottom:502.786667pt;}
.y7f{bottom:504.546667pt;}
.yac{bottom:509.666667pt;}
.yd9{bottom:517.026667pt;}
.y100{bottom:517.986667pt;}
.y7e{bottom:520.866667pt;}
.yab{bottom:525.666667pt;}
.yd8{bottom:533.026667pt;}
.yff{bottom:533.346667pt;}
.y7d{bottom:536.066667pt;}
.yaa{bottom:541.693333pt;}
.yfe{bottom:548.733333pt;}
.yd7{bottom:551.933333pt;}
.y7c{bottom:552.413333pt;}
.ya9{bottom:557.693333pt;}
.yfd{bottom:564.093333pt;}
.yd6{bottom:567.293333pt;}
.y7b{bottom:568.733333pt;}
.ya8{bottom:576.573333pt;}
.yfc{bottom:579.453333pt;}
.yd5{bottom:582.653333pt;}
.y7a{bottom:584.093333pt;}
.ya7{bottom:591.933333pt;}
.yfb{bottom:594.813333pt;}
.yd4{bottom:594.973333pt;}
.y79{bottom:599.453333pt;}
.ya6{bottom:605.053333pt;}
.yfa{bottom:610.013333pt;}
.y78{bottom:614.813333pt;}
.ya5{bottom:621.053333pt;}
.yf9{bottom:625.373333pt;}
.y77{bottom:630.013333pt;}
.ya4{bottom:637.053333pt;}
.yf8{bottom:640.733333pt;}
.y76{bottom:645.373333pt;}
.ya3{bottom:653.053333pt;}
.yf7{bottom:656.093333pt;}
.y75{bottom:660.733333pt;}
.ya2{bottom:669.053333pt;}
.yf6{bottom:671.453333pt;}
.y74{bottom:676.093333pt;}
.ya1{bottom:685.053333pt;}
.yf5{bottom:686.813333pt;}
.y73{bottom:691.453333pt;}
.yf4{bottom:702.013333pt;}
.ya0{bottom:703.933333pt;}
.y72{bottom:706.813333pt;}
.yf3{bottom:717.373333pt;}
.y9f{bottom:719.133333pt;}
.y71{bottom:722.013333pt;}
.yf2{bottom:732.733333pt;}
.y1a{bottom:733.053333pt;}
.y9e{bottom:734.493333pt;}
.y70{bottom:737.373333pt;}
.yf1{bottom:748.093333pt;}
.y9d{bottom:749.853333pt;}
.y6f{bottom:752.733333pt;}
.yf{bottom:759.293333pt;}
.yf0{bottom:763.453333pt;}
.y9c{bottom:765.213333pt;}
.y6e{bottom:768.093333pt;}
.yef{bottom:778.693333pt;}
.y9b{bottom:781.573333pt;}
.y6d{bottom:783.493333pt;}
.yee{bottom:794.053333pt;}
.y9a{bottom:797.733333pt;}
.y6c{bottom:798.693333pt;}
.yed{bottom:809.413333pt;}
.y6b{bottom:814.053333pt;}
.yec{bottom:824.773333pt;}
.y6a{bottom:829.413333pt;}
.yd3{bottom:837.413333pt;}
.yeb{bottom:840.133333pt;}
.y69{bottom:844.773333pt;}
.yd2{bottom:852.773333pt;}
.yea{bottom:855.493333pt;}
.y68{bottom:860.133333pt;}
.yd1{bottom:865.893333pt;}
.ye9{bottom:870.693333pt;}
.y67{bottom:875.493333pt;}
.yd0{bottom:881.893333pt;}
.ye8{bottom:886.053333pt;}
.y66{bottom:890.693333pt;}
.ycf{bottom:897.893333pt;}
.ye7{bottom:901.413333pt;}
.y65{bottom:906.053333pt;}
.yce{bottom:913.893333pt;}
.ye6{bottom:916.773333pt;}
.y64{bottom:921.413333pt;}
.yd{bottom:926.053333pt;}
.ycd{bottom:929.893333pt;}
.y63{bottom:936.773333pt;}
.ycc{bottom:945.893333pt;}
.y6{bottom:948.453333pt;}
.y62{bottom:952.133333pt;}
.ye5{bottom:961.893333pt;}
.ycb{bottom:964.773333pt;}
.y61{bottom:967.493333pt;}
.ye4{bottom:977.893333pt;}
.yca{bottom:980.133333pt;}
.y60{bottom:982.693333pt;}
.yc9{bottom:993.253333pt;}
.ye3{bottom:993.893333pt;}
.y5f{bottom:998.053333pt;}
.yc7{bottom:1009.253333pt;}
.ye2{bottom:1009.893333pt;}
.y5e{bottom:1013.440000pt;}
.yc6{bottom:1025.280000pt;}
.y5d{bottom:1028.800000pt;}
.y5c{bottom:1044.160000pt;}
.h20{height:15.200000pt;}
.h21{height:15.360000pt;}
.h22{height:15.392000pt;}
.hb{height:22.080000pt;}
.h12{height:25.750000pt;}
.h13{height:26.240000pt;}
.h2{height:29.312000pt;}
.h11{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1d{height:32.480000pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.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;}
.h4{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:166.746667pt;}
.h15{height:368.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w21{width:73.120000pt;}
.w28{width:83.200000pt;}
.w1c{width:108.800000pt;}
.w24{width:115.840000pt;}
.w18{width:121.792000pt;}
.w5{width:135.066667pt;}
.w14{width:135.546667pt;}
.wb{width:140.186667pt;}
.wd{width:145.120000pt;}
.w19{width:148.666667pt;}
.wf{width:157.306667pt;}
.w15{width:160.506667pt;}
.w25{width:160.986667pt;}
.wc{width:162.426667pt;}
.w13{width:163.066667pt;}
.w17{width:171.706667pt;}
.w1f{width:193.786667pt;}
.w20{width:193.946667pt;}
.w1d{width:196.186667pt;}
.w8{width:198.466667pt;}
.w1e{width:200.866667pt;}
.w26{width:201.346667pt;}
.w16{width:202.586667pt;}
.w10{width:205.146667pt;}
.wa{width:213.826667pt;}
.w22{width:215.266667pt;}
.w27{width:216.186667pt;}
.w1b{width:216.386667pt;}
.w12{width:217.786667pt;}
.w1a{width:219.386667pt;}
.we{width:299.906667pt;}
.w23{width:331.266667pt;}
.w11{width:445.053333pt;}
.w9{width:465.826667pt;}
.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;}
.x1a{left:6.720000pt;}
.x2{left:7.680000pt;}
.x13{left:11.200000pt;}
.x10{left:61.312000pt;}
.xe{left:63.232000pt;}
.x1{left:64.320000pt;}
.xf{left:65.632000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x14{left:96.031988pt;}
.x15{left:120.031988pt;}
.x16{left:144.026655pt;}
.xd{left:150.266667pt;}
.xc{left:189.026667pt;}
.x11{left:191.266667pt;}
.x6{left:199.866667pt;}
.x1e{left:207.706655pt;}
.x34{left:210.906655pt;}
.x17{left:214.906655pt;}
.x2a{left:220.346655pt;}
.x35{left:226.746667pt;}
.x21{left:228.826667pt;}
.x33{left:235.866655pt;}
.x23{left:237.466667pt;}
.x2f{left:238.426655pt;}
.x9{left:256.386667pt;}
.x12{left:263.266667pt;}
.x20{left:266.946655pt;}
.x18{left:279.586667pt;}
.x30{left:281.026667pt;}
.x27{left:282.146667pt;}
.x26{left:304.066655pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x24{left:360.066667pt;}
.x1c{left:365.666667pt;}
.x28{left:391.586667pt;}
.x2e{left:396.866655pt;}
.xa{left:405.066667pt;}
.x19{left:420.573333pt;}
.x36{left:428.733333pt;}
.x2b{left:461.053333pt;}
.x25{left:509.373333pt;}
.x1f{left:510.973333pt;}
.x1d{left:523.613333pt;}
.x22{left:526.173333pt;}
.x29{left:532.573333pt;}
.x1b{left:583.653333pt;}
.x31{left:612.933333pt;}
.x2d{left:625.413322pt;}
.x32{left:638.853322pt;}
.x37{left:645.573333pt;}
.x2c{left:655.653333pt;}
.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; }
  