
    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_5f0e79fe0756689d5cf21525.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_8139652a9c71a98c59a94c76.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0562e1c1583ec6ab170a62b8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_437d1fa904c1422bdf033d78.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1326ba3da1a5f8a64ed0a54e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_afcb2df689f8de59c2671ac1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944336;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_12a179061d5897991569e641.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.944336;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_3e09af02d63937aa929022ed.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0755dad821fe45aace867ff3.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6e01e9ec06c2888e0dd39761.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f3f0fc570e187ea379a58454.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_1e90d208691f057ac452cb1f.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_b26965957ed58557ece81ff8.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff14{font-family:ff14;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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v1{vertical-align:20.880000px;}
.ls18{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.127200px;}
.ls17{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.038160px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.087600px;}
.ls13{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.ls14{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls7{letter-spacing:2.520000px;}
.ls16{letter-spacing:3.216000px;}
.lsd{letter-spacing:5.400000px;}
.lse{letter-spacing:46.026720px;}
.lsf{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;}
}
.wsb{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsa{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.wsf{word-spacing:-15.199800px;}
.ws10{word-spacing:-14.993280px;}
.wsc{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.854880px;}
.ws5{word-spacing:-12.816720px;}
.ws0{word-spacing:-12.186000px;}
.ws8{word-spacing:-9.732960px;}
.wsd{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._12{margin-left:-6.583680px;}
._3{margin-left:-5.557680px;}
._5{margin-left:-3.665760px;}
._2{margin-left:-2.274480px;}
._0{margin-left:-1.068000px;}
._1{width:1.152000px;}
._4{width:2.466000px;}
._7{width:3.495360px;}
._d{width:4.542480px;}
._9{width:5.557680px;}
._a{width:6.845760px;}
._c{width:7.962000px;}
._15{width:8.966160px;}
._f{width:9.969840px;}
._e{width:11.218320px;}
._10{width:12.226560px;}
._11{width:13.322880px;}
._8{width:16.594560px;}
._6{width:17.606880px;}
._17{width:19.123200px;}
._16{width:20.318400px;}
._b{width:31.656240px;}
._13{width:131.053680px;}
._14{width:150.475680px;}
.fc6{color:transparent;}
.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;}
.y19{bottom:0.180000px;}
.yfb{bottom:1.440000px;}
.yf6{bottom:1.620000px;}
.y4c{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y51{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y4f{bottom:10.620000px;}
.y1a{bottom:12.645000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.280000px;}
.y2{bottom:20.160000px;}
.yd5{bottom:20.340000px;}
.y4b{bottom:20.520000px;}
.y50{bottom:22.140000px;}
.y17{bottom:23.760000px;}
.y4e{bottom:25.200000px;}
.yb{bottom:30.240000px;}
.yd4{bottom:37.620000px;}
.yc4{bottom:37.665000px;}
.y4a{bottom:37.800000px;}
.ycc{bottom:38.520000px;}
.y16{bottom:40.320000px;}
.ya{bottom:46.650000px;}
.y15{bottom:53.280000px;}
.yb0{bottom:55.080000px;}
.y49{bottom:55.125000px;}
.y5{bottom:58.680000px;}
.y14{bottom:71.640000px;}
.y48{bottom:72.225000px;}
.yaf{bottom:72.360000px;}
.y9{bottom:73.470000px;}
.y1{bottom:81.216000px;}
.y47{bottom:89.505000px;}
.y13{bottom:90.000000px;}
.y8{bottom:93.090000px;}
.y46{bottom:106.785000px;}
.y12{bottom:108.900000px;}
.y7{bottom:111.450000px;}
.y45{bottom:124.065000px;}
.y123{bottom:125.316000px;}
.y96{bottom:129.816000px;}
.yb7{bottom:131.976000px;}
.y11{bottom:134.640000px;}
.y58{bottom:138.996000px;}
.y44{bottom:141.345000px;}
.y122{bottom:142.596000px;}
.y95{bottom:147.096000px;}
.ye9{bottom:148.536000px;}
.yb6{bottom:149.256000px;}
.y57{bottom:156.270000px;}
.y43{bottom:158.625000px;}
.y10{bottom:159.120000px;}
.y121{bottom:159.870000px;}
.y94{bottom:164.370000px;}
.ye8{bottom:165.810000px;}
.yb5{bottom:166.530000px;}
.y56{bottom:174.270000px;}
.y42{bottom:175.725000px;}
.y120{bottom:176.970000px;}
.y93{bottom:181.650000px;}
.ye7{bottom:183.090000px;}
.yb4{bottom:183.810000px;}
.y55{bottom:192.090000px;}
.y41{bottom:193.005000px;}
.y11f{bottom:194.250000px;}
.y92{bottom:198.750000px;}
.ye6{bottom:200.370000px;}
.yb3{bottom:201.090000px;}
.y54{bottom:209.370000px;}
.y40{bottom:210.285000px;}
.y11e{bottom:211.530000px;}
.y91{bottom:216.030000px;}
.ye5{bottom:217.470000px;}
.yb2{bottom:218.190000px;}
.y53{bottom:226.650000px;}
.y3f{bottom:227.565000px;}
.y11d{bottom:228.810000px;}
.y90{bottom:233.310000px;}
.ye4{bottom:234.750000px;}
.yb1{bottom:235.470000px;}
.y52{bottom:244.650000px;}
.y3e{bottom:244.845000px;}
.y11c{bottom:246.090000px;}
.yae{bottom:250.230000px;}
.y8f{bottom:250.590000px;}
.ye3{bottom:252.030000px;}
.y4d{bottom:259.050000px;}
.y3d{bottom:262.125000px;}
.y11b{bottom:263.370000px;}
.y8e{bottom:267.870000px;}
.ye2{bottom:269.310000px;}
.y3c{bottom:279.225000px;}
.y11a{bottom:280.470000px;}
.y8d{bottom:285.150000px;}
.ye1{bottom:286.590000px;}
.y2b{bottom:288.765000px;}
.y1b{bottom:295.590000px;}
.y3b{bottom:296.505000px;}
.y119{bottom:297.750000px;}
.y8c{bottom:302.250000px;}
.ye0{bottom:303.870000px;}
.y2a{bottom:303.885000px;}
.y3a{bottom:313.815000px;}
.y118{bottom:315.030000px;}
.y8b{bottom:319.530000px;}
.ydf{bottom:320.970000px;}
.y29{bottom:321.375000px;}
.y39{bottom:331.095000px;}
.y117{bottom:332.310000px;}
.y8a{bottom:336.855000px;}
.yde{bottom:338.295000px;}
.y28{bottom:338.655000px;}
.y38{bottom:348.375000px;}
.y116{bottom:349.635000px;}
.y89{bottom:354.135000px;}
.yad{bottom:354.495000px;}
.ydd{bottom:355.575000px;}
.y27{bottom:356.115000px;}
.y37{bottom:365.655000px;}
.y115{bottom:366.915000px;}
.y88{bottom:371.415000px;}
.yac{bottom:372.495000px;}
.y26{bottom:373.575000px;}
.ydc{bottom:378.075000px;}
.y36{bottom:382.755000px;}
.y114{bottom:384.015000px;}
.ydb{bottom:387.615000px;}
.y87{bottom:388.695000px;}
.yab{bottom:390.495000px;}
.y25{bottom:390.855000px;}
.y35{bottom:400.035000px;}
.y113{bottom:401.295000px;}
.y86{bottom:405.795000px;}
.y146{bottom:408.135000px;}
.y24{bottom:408.315000px;}
.yaa{bottom:408.495000px;}
.y34{bottom:417.315000px;}
.y112{bottom:418.575000px;}
.yda{bottom:422.895000px;}
.y85{bottom:423.075000px;}
.y145{bottom:425.415000px;}
.y23{bottom:425.775000px;}
.ya9{bottom:426.495000px;}
.y33{bottom:434.595000px;}
.y111{bottom:435.855000px;}
.y84{bottom:440.355000px;}
.yd9{bottom:440.895000px;}
.y144{bottom:442.515000px;}
.y22{bottom:443.055000px;}
.ya8{bottom:447.735000px;}
.y32{bottom:451.875000px;}
.y110{bottom:453.135000px;}
.y83{bottom:457.635000px;}
.yd8{bottom:458.895000px;}
.y143{bottom:459.795000px;}
.y21{bottom:460.515000px;}
.ya7{bottom:465.015000px;}
.y31{bottom:468.975000px;}
.y10f{bottom:470.415000px;}
.y82{bottom:474.915000px;}
.yd7{bottom:476.895000px;}
.y142{bottom:477.075000px;}
.y20{bottom:477.795000px;}
.ya6{bottom:482.295000px;}
.y30{bottom:486.255000px;}
.y10e{bottom:487.515000px;}
.y81{bottom:493.095000px;}
.y141{bottom:494.355000px;}
.yd6{bottom:494.895000px;}
.y1f{bottom:495.255000px;}
.ya5{bottom:499.575000px;}
.y2f{bottom:503.535000px;}
.y10d{bottom:504.795000px;}
.y80{bottom:511.455000px;}
.y140{bottom:511.635000px;}
.y1e{bottom:512.895000px;}
.ya4{bottom:516.855000px;}
.y2e{bottom:520.815000px;}
.y10c{bottom:522.075000px;}
.y13f{bottom:528.735000px;}
.y7f{bottom:529.815000px;}
.ya3{bottom:533.955000px;}
.y2d{bottom:538.095000px;}
.y10b{bottom:539.355000px;}
.y1d{bottom:540.255000px;}
.y13e{bottom:546.015000px;}
.y7e{bottom:548.175000px;}
.ya2{bottom:551.235000px;}
.y2c{bottom:555.375000px;}
.y10a{bottom:556.635000px;}
.y1c{bottom:557.895000px;}
.y13d{bottom:563.295000px;}
.ya1{bottom:565.995000px;}
.y7d{bottom:566.535000px;}
.yd3{bottom:568.515000px;}
.y109{bottom:573.735000px;}
.y13c{bottom:580.575000px;}
.y7c{bottom:584.715000px;}
.yd2{bottom:585.795000px;}
.y108{bottom:591.015000px;}
.y13b{bottom:597.855000px;}
.y7b{bottom:603.075000px;}
.y107{bottom:608.325000px;}
.y13a{bottom:615.165000px;}
.yd1{bottom:620.385000px;}
.y7a{bottom:621.465000px;}
.y106{bottom:625.605000px;}
.y139{bottom:632.265000px;}
.yd0{bottom:637.665000px;}
.y79{bottom:639.825000px;}
.y105{bottom:642.885000px;}
.y138{bottom:649.545000px;}
.ycf{bottom:654.765000px;}
.y78{bottom:657.105000px;}
.y104{bottom:660.165000px;}
.y137{bottom:666.825000px;}
.yce{bottom:672.045000px;}
.y103{bottom:674.925000px;}
.y77{bottom:675.105000px;}
.y136{bottom:684.105000px;}
.y102{bottom:692.925000px;}
.y76{bottom:693.465000px;}
.ycd{bottom:694.545000px;}
.y101{bottom:695.085000px;}
.y135{bottom:701.385000px;}
.ycb{bottom:704.085000px;}
.y75{bottom:711.645000px;}
.y100{bottom:713.085000px;}
.y134{bottom:718.665000px;}
.y74{bottom:730.005000px;}
.yff{bottom:731.085000px;}
.y133{bottom:735.765000px;}
.yca{bottom:739.365000px;}
.y73{bottom:748.365000px;}
.yfe{bottom:749.085000px;}
.y132{bottom:753.045000px;}
.yc9{bottom:757.365000px;}
.y72{bottom:766.725000px;}
.yfd{bottom:767.085000px;}
.y131{bottom:770.325000px;}
.yc8{bottom:775.365000px;}
.y71{bottom:785.085000px;}
.y130{bottom:787.605000px;}
.yc7{bottom:793.365000px;}
.yfc{bottom:803.085000px;}
.y70{bottom:803.265000px;}
.y12f{bottom:804.885000px;}
.yc6{bottom:811.365000px;}
.y6f{bottom:820.545000px;}
.yfa{bottom:821.085000px;}
.y12e{bottom:822.165000px;}
.yf9{bottom:823.425000px;}
.yc5{bottom:829.365000px;}
.y6e{bottom:837.825000px;}
.y12d{bottom:839.265000px;}
.yf8{bottom:841.425000px;}
.yc3{bottom:847.365000px;}
.y6d{bottom:855.105000px;}
.y12c{bottom:856.545000px;}
.yf7{bottom:859.245000px;}
.y18{bottom:864.825000px;}
.y6c{bottom:872.430000px;}
.y12b{bottom:873.870000px;}
.yf5{bottom:877.290000px;}
.yf4{bottom:879.630000px;}
.y6b{bottom:889.530000px;}
.y12a{bottom:891.150000px;}
.yf{bottom:894.570000px;}
.yf3{bottom:897.630000px;}
.yc2{bottom:903.030000px;}
.y6a{bottom:906.810000px;}
.y129{bottom:908.430000px;}
.yf2{bottom:915.630000px;}
.yc1{bottom:920.310000px;}
.y69{bottom:924.090000px;}
.y128{bottom:925.530000px;}
.yf1{bottom:933.630000px;}
.yc0{bottom:937.590000px;}
.y68{bottom:941.370000px;}
.y127{bottom:942.810000px;}
.yf0{bottom:951.630000px;}
.ybf{bottom:954.870000px;}
.y67{bottom:958.650000px;}
.y126{bottom:960.090000px;}
.yef{bottom:969.630000px;}
.y66{bottom:975.930000px;}
.ybe{bottom:977.370000px;}
.ybd{bottom:986.910000px;}
.yee{bottom:987.630000px;}
.y65{bottom:993.030000px;}
.y125{bottom:994.650000px;}
.ybc{bottom:1004.910000px;}
.yed{bottom:1005.630000px;}
.y64{bottom:1010.310000px;}
.y124{bottom:1011.930000px;}
.ybb{bottom:1022.910000px;}
.yec{bottom:1023.630000px;}
.y63{bottom:1027.590000px;}
.ya0{bottom:1029.030000px;}
.yba{bottom:1040.910000px;}
.yeb{bottom:1041.630000px;}
.y62{bottom:1044.870000px;}
.y9f{bottom:1046.310000px;}
.yb9{bottom:1058.910000px;}
.yea{bottom:1059.630000px;}
.y61{bottom:1062.150000px;}
.y9e{bottom:1063.590000px;}
.yd{bottom:1068.810000px;}
.yb8{bottom:1076.910000px;}
.y60{bottom:1079.430000px;}
.y9d{bottom:1080.870000px;}
.y6{bottom:1094.010000px;}
.y5f{bottom:1096.530000px;}
.y9c{bottom:1098.150000px;}
.y5e{bottom:1113.810000px;}
.y9b{bottom:1115.430000px;}
.y5d{bottom:1131.090000px;}
.y9a{bottom:1132.530000px;}
.y5c{bottom:1148.400000px;}
.y99{bottom:1149.840000px;}
.y5b{bottom:1165.680000px;}
.y98{bottom:1167.120000px;}
.y5a{bottom:1182.960000px;}
.y97{bottom:1184.400000px;}
.y59{bottom:1201.680000px;}
.h2b{height:1.440030px;}
.h29{height:1.620000px;}
.h28{height:17.100000px;}
.h20{height:17.280000px;}
.h2a{height:17.316000px;}
.hb{height:24.840000px;}
.h23{height:27.432422px;}
.h11{height:28.968750px;}
.h12{height:29.736000px;}
.h2{height:32.940000px;}
.h26{height:34.560000px;}
.h8{height:36.180000px;}
.h1b{height:36.540000px;}
.h18{height:38.818125px;}
.h1a{height:41.726953px;}
.h19{height:42.164648px;}
.h1f{height:43.506914px;}
.hd{height:44.002969px;}
.h1e{height:44.606953px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1d{height:48.027656px;}
.h1c{height:48.088125px;}
.h2c{height:48.147656px;}
.h22{height:48.312422px;}
.h27{height:51.660000px;}
.h24{height:51.696000px;}
.h25{height:52.560000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h21{height:103.536000px;}
.h7{height:121.536000px;}
.hc{height:174.240000px;}
.h14{height:569.235000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:61.596000px;}
.w15{width:63.900000px;}
.w2b{width:66.420000px;}
.w17{width:69.300000px;}
.w3{width:73.080000px;}
.w1e{width:74.736000px;}
.w18{width:76.356000px;}
.w14{width:78.480000px;}
.w1f{width:79.380000px;}
.w20{width:80.460000px;}
.w2d{width:82.080000px;}
.w2f{width:82.620000px;}
.w2a{width:82.800000px;}
.w29{width:82.836000px;}
.w30{width:83.016000px;}
.w2e{width:83.556000px;}
.w21{width:84.276000px;}
.w22{width:86.580000px;}
.w16{width:87.336000px;}
.w2c{width:94.356000px;}
.w1d{width:95.940000px;}
.w23{width:96.156000px;}
.w28{width:100.440000px;}
.w12{width:120.600000px;}
.w33{width:120.780000px;}
.w36{width:120.960000px;}
.w35{width:120.996000px;}
.w34{width:121.176000px;}
.wc{width:124.956000px;}
.w19{width:126.936000px;}
.w24{width:131.796000px;}
.wd{width:136.260000px;}
.wf{width:140.796000px;}
.w11{width:146.376000px;}
.wb{width:147.636000px;}
.w5{width:151.950000px;}
.w10{width:152.130000px;}
.w1a{width:154.830000px;}
.w26{width:161.490000px;}
.w1b{width:165.450000px;}
.w27{width:166.350000px;}
.w25{width:166.530000px;}
.we{width:166.710000px;}
.w1c{width:183.450000px;}
.w8{width:223.455000px;}
.w32{width:242.670000px;}
.w31{width:242.895000px;}
.wa{width:318.675000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w37{width:729.690000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.560000px;}
.x2{left:8.676000px;}
.xf{left:12.636000px;}
.xb{left:13.716000px;}
.xe{left:23.976000px;}
.x19{left:34.776000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x12{left:108.035987px;}
.xc{left:119.370000px;}
.x13{left:135.035987px;}
.x1a{left:194.609987px;}
.x23{left:209.370000px;}
.x10{left:215.175000px;}
.x5{left:232.950000px;}
.x2e{left:236.729987px;}
.x1b{left:249.150000px;}
.xd{left:258.915000px;}
.x8{left:272.235000px;}
.x26{left:284.835000px;}
.x2b{left:297.975000px;}
.x11{left:304.455000px;}
.x1f{left:311.475000px;}
.x2f{left:325.335000px;}
.x6{left:331.995000px;}
.x15{left:343.874987px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x29{left:381.675000px;}
.x1c{left:390.675000px;}
.x16{left:401.115000px;}
.x9{left:439.500000px;}
.x27{left:446.295000px;}
.x2c{left:448.815000px;}
.x20{left:455.475000px;}
.x24{left:531.285000px;}
.x1d{left:543.705000px;}
.x17{left:549.465000px;}
.x30{left:568.725000px;}
.x22{left:613.725000px;}
.x28{left:618.585000px;}
.x2d{left:626.685000px;}
.x18{left:675.150000px;}
.x1e{left:690.810000px;}
.x2a{left:710.970000px;}
.x25{left:715.470000px;}
.x14{left:724.469987px;}
.x3{left:739.050000px;}
@media print{
.v5{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v1{vertical-align:18.560000pt;}
.ls18{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.113067pt;}
.ls17{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.033920pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.077867pt;}
.ls13{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.ls14{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls7{letter-spacing:2.240000pt;}
.ls16{letter-spacing:2.858667pt;}
.lsd{letter-spacing:4.800000pt;}
.lse{letter-spacing:40.912640pt;}
.lsf{letter-spacing:56.912640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsa{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.wsf{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.327360pt;}
.wsc{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.ws12{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.426560pt;}
.ws5{word-spacing:-11.392640pt;}
.ws0{word-spacing:-10.832000pt;}
.ws8{word-spacing:-8.651520pt;}
.wsd{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._12{margin-left:-5.852160pt;}
._3{margin-left:-4.940160pt;}
._5{margin-left:-3.258453pt;}
._2{margin-left:-2.021760pt;}
._0{margin-left:-0.949333pt;}
._1{width:1.024000pt;}
._4{width:2.192000pt;}
._7{width:3.106987pt;}
._d{width:4.037760pt;}
._9{width:4.940160pt;}
._a{width:6.085120pt;}
._c{width:7.077333pt;}
._15{width:7.969920pt;}
._f{width:8.862080pt;}
._e{width:9.971840pt;}
._10{width:10.868053pt;}
._11{width:11.842560pt;}
._8{width:14.750720pt;}
._6{width:15.650560pt;}
._17{width:16.998400pt;}
._16{width:18.060800pt;}
._b{width:28.138880pt;}
._13{width:116.492160pt;}
._14{width:133.756160pt;}
.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;}
.y19{bottom:0.160000pt;}
.yfb{bottom:1.280000pt;}
.yf6{bottom:1.440000pt;}
.y4c{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y51{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y4f{bottom:9.440000pt;}
.y1a{bottom:11.240000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.920000pt;}
.yd5{bottom:18.080000pt;}
.y4b{bottom:18.240000pt;}
.y50{bottom:19.680000pt;}
.y17{bottom:21.120000pt;}
.y4e{bottom:22.400000pt;}
.yb{bottom:26.880000pt;}
.yd4{bottom:33.440000pt;}
.yc4{bottom:33.480000pt;}
.y4a{bottom:33.600000pt;}
.ycc{bottom:34.240000pt;}
.y16{bottom:35.840000pt;}
.ya{bottom:41.466667pt;}
.y15{bottom:47.360000pt;}
.yb0{bottom:48.960000pt;}
.y49{bottom:49.000000pt;}
.y5{bottom:52.160000pt;}
.y14{bottom:63.680000pt;}
.y48{bottom:64.200000pt;}
.yaf{bottom:64.320000pt;}
.y9{bottom:65.306667pt;}
.y1{bottom:72.192000pt;}
.y47{bottom:79.560000pt;}
.y13{bottom:80.000000pt;}
.y8{bottom:82.746667pt;}
.y46{bottom:94.920000pt;}
.y12{bottom:96.800000pt;}
.y7{bottom:99.066667pt;}
.y45{bottom:110.280000pt;}
.y123{bottom:111.392000pt;}
.y96{bottom:115.392000pt;}
.yb7{bottom:117.312000pt;}
.y11{bottom:119.680000pt;}
.y58{bottom:123.552000pt;}
.y44{bottom:125.640000pt;}
.y122{bottom:126.752000pt;}
.y95{bottom:130.752000pt;}
.ye9{bottom:132.032000pt;}
.yb6{bottom:132.672000pt;}
.y57{bottom:138.906667pt;}
.y43{bottom:141.000000pt;}
.y10{bottom:141.440000pt;}
.y121{bottom:142.106667pt;}
.y94{bottom:146.106667pt;}
.ye8{bottom:147.386667pt;}
.yb5{bottom:148.026667pt;}
.y56{bottom:154.906667pt;}
.y42{bottom:156.200000pt;}
.y120{bottom:157.306667pt;}
.y93{bottom:161.466667pt;}
.ye7{bottom:162.746667pt;}
.yb4{bottom:163.386667pt;}
.y55{bottom:170.746667pt;}
.y41{bottom:171.560000pt;}
.y11f{bottom:172.666667pt;}
.y92{bottom:176.666667pt;}
.ye6{bottom:178.106667pt;}
.yb3{bottom:178.746667pt;}
.y54{bottom:186.106667pt;}
.y40{bottom:186.920000pt;}
.y11e{bottom:188.026667pt;}
.y91{bottom:192.026667pt;}
.ye5{bottom:193.306667pt;}
.yb2{bottom:193.946667pt;}
.y53{bottom:201.466667pt;}
.y3f{bottom:202.280000pt;}
.y11d{bottom:203.386667pt;}
.y90{bottom:207.386667pt;}
.ye4{bottom:208.666667pt;}
.yb1{bottom:209.306667pt;}
.y52{bottom:217.466667pt;}
.y3e{bottom:217.640000pt;}
.y11c{bottom:218.746667pt;}
.yae{bottom:222.426667pt;}
.y8f{bottom:222.746667pt;}
.ye3{bottom:224.026667pt;}
.y4d{bottom:230.266667pt;}
.y3d{bottom:233.000000pt;}
.y11b{bottom:234.106667pt;}
.y8e{bottom:238.106667pt;}
.ye2{bottom:239.386667pt;}
.y3c{bottom:248.200000pt;}
.y11a{bottom:249.306667pt;}
.y8d{bottom:253.466667pt;}
.ye1{bottom:254.746667pt;}
.y2b{bottom:256.680000pt;}
.y1b{bottom:262.746667pt;}
.y3b{bottom:263.560000pt;}
.y119{bottom:264.666667pt;}
.y8c{bottom:268.666667pt;}
.ye0{bottom:270.106667pt;}
.y2a{bottom:270.120000pt;}
.y3a{bottom:278.946667pt;}
.y118{bottom:280.026667pt;}
.y8b{bottom:284.026667pt;}
.ydf{bottom:285.306667pt;}
.y29{bottom:285.666667pt;}
.y39{bottom:294.306667pt;}
.y117{bottom:295.386667pt;}
.y8a{bottom:299.426667pt;}
.yde{bottom:300.706667pt;}
.y28{bottom:301.026667pt;}
.y38{bottom:309.666667pt;}
.y116{bottom:310.786667pt;}
.y89{bottom:314.786667pt;}
.yad{bottom:315.106667pt;}
.ydd{bottom:316.066667pt;}
.y27{bottom:316.546667pt;}
.y37{bottom:325.026667pt;}
.y115{bottom:326.146667pt;}
.y88{bottom:330.146667pt;}
.yac{bottom:331.106667pt;}
.y26{bottom:332.066667pt;}
.ydc{bottom:336.066667pt;}
.y36{bottom:340.226667pt;}
.y114{bottom:341.346667pt;}
.ydb{bottom:344.546667pt;}
.y87{bottom:345.506667pt;}
.yab{bottom:347.106667pt;}
.y25{bottom:347.426667pt;}
.y35{bottom:355.586667pt;}
.y113{bottom:356.706667pt;}
.y86{bottom:360.706667pt;}
.y146{bottom:362.786667pt;}
.y24{bottom:362.946667pt;}
.yaa{bottom:363.106667pt;}
.y34{bottom:370.946667pt;}
.y112{bottom:372.066667pt;}
.yda{bottom:375.906667pt;}
.y85{bottom:376.066667pt;}
.y145{bottom:378.146667pt;}
.y23{bottom:378.466667pt;}
.ya9{bottom:379.106667pt;}
.y33{bottom:386.306667pt;}
.y111{bottom:387.426667pt;}
.y84{bottom:391.426667pt;}
.yd9{bottom:391.906667pt;}
.y144{bottom:393.346667pt;}
.y22{bottom:393.826667pt;}
.ya8{bottom:397.986667pt;}
.y32{bottom:401.666667pt;}
.y110{bottom:402.786667pt;}
.y83{bottom:406.786667pt;}
.yd8{bottom:407.906667pt;}
.y143{bottom:408.706667pt;}
.y21{bottom:409.346667pt;}
.ya7{bottom:413.346667pt;}
.y31{bottom:416.866667pt;}
.y10f{bottom:418.146667pt;}
.y82{bottom:422.146667pt;}
.yd7{bottom:423.906667pt;}
.y142{bottom:424.066667pt;}
.y20{bottom:424.706667pt;}
.ya6{bottom:428.706667pt;}
.y30{bottom:432.226667pt;}
.y10e{bottom:433.346667pt;}
.y81{bottom:438.306667pt;}
.y141{bottom:439.426667pt;}
.yd6{bottom:439.906667pt;}
.y1f{bottom:440.226667pt;}
.ya5{bottom:444.066667pt;}
.y2f{bottom:447.586667pt;}
.y10d{bottom:448.706667pt;}
.y80{bottom:454.626667pt;}
.y140{bottom:454.786667pt;}
.y1e{bottom:455.906667pt;}
.ya4{bottom:459.426667pt;}
.y2e{bottom:462.946667pt;}
.y10c{bottom:464.066667pt;}
.y13f{bottom:469.986667pt;}
.y7f{bottom:470.946667pt;}
.ya3{bottom:474.626667pt;}
.y2d{bottom:478.306667pt;}
.y10b{bottom:479.426667pt;}
.y1d{bottom:480.226667pt;}
.y13e{bottom:485.346667pt;}
.y7e{bottom:487.266667pt;}
.ya2{bottom:489.986667pt;}
.y2c{bottom:493.666667pt;}
.y10a{bottom:494.786667pt;}
.y1c{bottom:495.906667pt;}
.y13d{bottom:500.706667pt;}
.ya1{bottom:503.106667pt;}
.y7d{bottom:503.586667pt;}
.yd3{bottom:505.346667pt;}
.y109{bottom:509.986667pt;}
.y13c{bottom:516.066667pt;}
.y7c{bottom:519.746667pt;}
.yd2{bottom:520.706667pt;}
.y108{bottom:525.346667pt;}
.y13b{bottom:531.426667pt;}
.y7b{bottom:536.066667pt;}
.y107{bottom:540.733333pt;}
.y13a{bottom:546.813333pt;}
.yd1{bottom:551.453333pt;}
.y7a{bottom:552.413333pt;}
.y106{bottom:556.093333pt;}
.y139{bottom:562.013333pt;}
.yd0{bottom:566.813333pt;}
.y79{bottom:568.733333pt;}
.y105{bottom:571.453333pt;}
.y138{bottom:577.373333pt;}
.ycf{bottom:582.013333pt;}
.y78{bottom:584.093333pt;}
.y104{bottom:586.813333pt;}
.y137{bottom:592.733333pt;}
.yce{bottom:597.373333pt;}
.y103{bottom:599.933333pt;}
.y77{bottom:600.093333pt;}
.y136{bottom:608.093333pt;}
.y102{bottom:615.933333pt;}
.y76{bottom:616.413333pt;}
.ycd{bottom:617.373333pt;}
.y101{bottom:617.853333pt;}
.y135{bottom:623.453333pt;}
.ycb{bottom:625.853333pt;}
.y75{bottom:632.573333pt;}
.y100{bottom:633.853333pt;}
.y134{bottom:638.813333pt;}
.y74{bottom:648.893333pt;}
.yff{bottom:649.853333pt;}
.y133{bottom:654.013333pt;}
.yca{bottom:657.213333pt;}
.y73{bottom:665.213333pt;}
.yfe{bottom:665.853333pt;}
.y132{bottom:669.373333pt;}
.yc9{bottom:673.213333pt;}
.y72{bottom:681.533333pt;}
.yfd{bottom:681.853333pt;}
.y131{bottom:684.733333pt;}
.yc8{bottom:689.213333pt;}
.y71{bottom:697.853333pt;}
.y130{bottom:700.093333pt;}
.yc7{bottom:705.213333pt;}
.yfc{bottom:713.853333pt;}
.y70{bottom:714.013333pt;}
.y12f{bottom:715.453333pt;}
.yc6{bottom:721.213333pt;}
.y6f{bottom:729.373333pt;}
.yfa{bottom:729.853333pt;}
.y12e{bottom:730.813333pt;}
.yf9{bottom:731.933333pt;}
.yc5{bottom:737.213333pt;}
.y6e{bottom:744.733333pt;}
.y12d{bottom:746.013333pt;}
.yf8{bottom:747.933333pt;}
.yc3{bottom:753.213333pt;}
.y6d{bottom:760.093333pt;}
.y12c{bottom:761.373333pt;}
.yf7{bottom:763.773333pt;}
.y18{bottom:768.733333pt;}
.y6c{bottom:775.493333pt;}
.y12b{bottom:776.773333pt;}
.yf5{bottom:779.813333pt;}
.yf4{bottom:781.893333pt;}
.y6b{bottom:790.693333pt;}
.y12a{bottom:792.133333pt;}
.yf{bottom:795.173333pt;}
.yf3{bottom:797.893333pt;}
.yc2{bottom:802.693333pt;}
.y6a{bottom:806.053333pt;}
.y129{bottom:807.493333pt;}
.yf2{bottom:813.893333pt;}
.yc1{bottom:818.053333pt;}
.y69{bottom:821.413333pt;}
.y128{bottom:822.693333pt;}
.yf1{bottom:829.893333pt;}
.yc0{bottom:833.413333pt;}
.y68{bottom:836.773333pt;}
.y127{bottom:838.053333pt;}
.yf0{bottom:845.893333pt;}
.ybf{bottom:848.773333pt;}
.y67{bottom:852.133333pt;}
.y126{bottom:853.413333pt;}
.yef{bottom:861.893333pt;}
.y66{bottom:867.493333pt;}
.ybe{bottom:868.773333pt;}
.ybd{bottom:877.253333pt;}
.yee{bottom:877.893333pt;}
.y65{bottom:882.693333pt;}
.y125{bottom:884.133333pt;}
.ybc{bottom:893.253333pt;}
.yed{bottom:893.893333pt;}
.y64{bottom:898.053333pt;}
.y124{bottom:899.493333pt;}
.ybb{bottom:909.253333pt;}
.yec{bottom:909.893333pt;}
.y63{bottom:913.413333pt;}
.ya0{bottom:914.693333pt;}
.yba{bottom:925.253333pt;}
.yeb{bottom:925.893333pt;}
.y62{bottom:928.773333pt;}
.y9f{bottom:930.053333pt;}
.yb9{bottom:941.253333pt;}
.yea{bottom:941.893333pt;}
.y61{bottom:944.133333pt;}
.y9e{bottom:945.413333pt;}
.yd{bottom:950.053333pt;}
.yb8{bottom:957.253333pt;}
.y60{bottom:959.493333pt;}
.y9d{bottom:960.773333pt;}
.y6{bottom:972.453333pt;}
.y5f{bottom:974.693333pt;}
.y9c{bottom:976.133333pt;}
.y5e{bottom:990.053333pt;}
.y9b{bottom:991.493333pt;}
.y5d{bottom:1005.413333pt;}
.y9a{bottom:1006.693333pt;}
.y5c{bottom:1020.800000pt;}
.y99{bottom:1022.080000pt;}
.y5b{bottom:1036.160000pt;}
.y98{bottom:1037.440000pt;}
.y5a{bottom:1051.520000pt;}
.y97{bottom:1052.800000pt;}
.y59{bottom:1068.160000pt;}
.h2b{height:1.280027pt;}
.h29{height:1.440000pt;}
.h28{height:15.200000pt;}
.h20{height:15.360000pt;}
.h2a{height:15.392000pt;}
.hb{height:22.080000pt;}
.h23{height:24.384375pt;}
.h11{height:25.750000pt;}
.h12{height:26.432000pt;}
.h2{height:29.280000pt;}
.h26{height:30.720000pt;}
.h8{height:32.160000pt;}
.h1b{height:32.480000pt;}
.h18{height:34.505000pt;}
.h1a{height:37.090625pt;}
.h19{height:37.479688pt;}
.h1f{height:38.672812pt;}
.hd{height:39.113750pt;}
.h1e{height:39.650625pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1d{height:42.691250pt;}
.h1c{height:42.745000pt;}
.h2c{height:42.797917pt;}
.h22{height:42.944375pt;}
.h27{height:45.920000pt;}
.h24{height:45.952000pt;}
.h25{height:46.720000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h21{height:92.032000pt;}
.h7{height:108.032000pt;}
.hc{height:154.880000pt;}
.h14{height:505.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:54.752000pt;}
.w15{width:56.800000pt;}
.w2b{width:59.040000pt;}
.w17{width:61.600000pt;}
.w3{width:64.960000pt;}
.w1e{width:66.432000pt;}
.w18{width:67.872000pt;}
.w14{width:69.760000pt;}
.w1f{width:70.560000pt;}
.w20{width:71.520000pt;}
.w2d{width:72.960000pt;}
.w2f{width:73.440000pt;}
.w2a{width:73.600000pt;}
.w29{width:73.632000pt;}
.w30{width:73.792000pt;}
.w2e{width:74.272000pt;}
.w21{width:74.912000pt;}
.w22{width:76.960000pt;}
.w16{width:77.632000pt;}
.w2c{width:83.872000pt;}
.w1d{width:85.280000pt;}
.w23{width:85.472000pt;}
.w28{width:89.280000pt;}
.w12{width:107.200000pt;}
.w33{width:107.360000pt;}
.w36{width:107.520000pt;}
.w35{width:107.552000pt;}
.w34{width:107.712000pt;}
.wc{width:111.072000pt;}
.w19{width:112.832000pt;}
.w24{width:117.152000pt;}
.wd{width:121.120000pt;}
.wf{width:125.152000pt;}
.w11{width:130.112000pt;}
.wb{width:131.232000pt;}
.w5{width:135.066667pt;}
.w10{width:135.226667pt;}
.w1a{width:137.626667pt;}
.w26{width:143.546667pt;}
.w1b{width:147.066667pt;}
.w27{width:147.866667pt;}
.w25{width:148.026667pt;}
.we{width:148.186667pt;}
.w1c{width:163.066667pt;}
.w8{width:198.626667pt;}
.w32{width:215.706667pt;}
.w31{width:215.906667pt;}
.wa{width:283.266667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w37{width:648.613333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.720000pt;}
.x2{left:7.712000pt;}
.xf{left:11.232000pt;}
.xb{left:12.192000pt;}
.xe{left:21.312000pt;}
.x19{left:30.912000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x12{left:96.031988pt;}
.xc{left:106.106667pt;}
.x13{left:120.031988pt;}
.x1a{left:172.986655pt;}
.x23{left:186.106667pt;}
.x10{left:191.266667pt;}
.x5{left:207.066667pt;}
.x2e{left:210.426655pt;}
.x1b{left:221.466667pt;}
.xd{left:230.146667pt;}
.x8{left:241.986667pt;}
.x26{left:253.186667pt;}
.x2b{left:264.866667pt;}
.x11{left:270.626667pt;}
.x1f{left:276.866667pt;}
.x2f{left:289.186667pt;}
.x6{left:295.106667pt;}
.x15{left:305.666655pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x29{left:339.266667pt;}
.x1c{left:347.266667pt;}
.x16{left:356.546667pt;}
.x9{left:390.666667pt;}
.x27{left:396.706667pt;}
.x2c{left:398.946667pt;}
.x20{left:404.866667pt;}
.x24{left:472.253333pt;}
.x1d{left:483.293333pt;}
.x17{left:488.413333pt;}
.x30{left:505.533333pt;}
.x22{left:545.533333pt;}
.x28{left:549.853333pt;}
.x2d{left:557.053333pt;}
.x18{left:600.133333pt;}
.x1e{left:614.053333pt;}
.x2a{left:631.973333pt;}
.x25{left:635.973333pt;}
.x14{left:643.973322pt;}
.x3{left:656.933333pt;}
}




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