
    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_35bf649e8297e28f80533698.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.201172;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_179dc0c7870de0fff7eaf6b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_5c8491a909ab0d362f1a316a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_5a3902331cb4af98a32a4f14.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973145;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_743e45f02a0101be7ebe9f5e.woff2')format("woff");}.ff5{font-family:ff5;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: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_21442c6a01f5013c0be3e5b0.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_a3e23c5cef27895e2c6f09c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_be0708857af86f45dce9b66b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_050fa000d22e0d490d366526.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e0c38d6dbf61905484c4d455.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;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_11b41af87ff5d74e5ee07775.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ed52d98f05cd5b8cf9c2dbb5.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_00d334655208fd68f88934ff.woff2')format("woff");}.fff{font-family:fff;line-height:0.920410;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v3{vertical-align:-18.000000px;}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v4{vertical-align:56.880000px;}
.ls17{letter-spacing:-0.774000px;}
.ls10{letter-spacing:-0.756000px;}
.ls14{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.259800px;}
.ls16{letter-spacing:-0.243000px;}
.lse{letter-spacing:-0.166200px;}
.ls15{letter-spacing:-0.162000px;}
.lsb{letter-spacing:-0.127200px;}
.ls11{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.132600px;}
.ls19{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.206400px;}
.lsc{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.324864px;}
.ls5{letter-spacing:0.336000px;}
.ls6{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls7{letter-spacing:0.900000px;}
.ls1a{letter-spacing:16.506720px;}
.ls18{letter-spacing:46.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;}
}
.ws1{word-spacing:-53.982000px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.wsa{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.146400px;}
.ws4{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.166000px;}
.ws9{word-spacing:-14.053800px;}
.ws10{word-spacing:-12.236544px;}
.ws0{word-spacing:-12.186000px;}
.ws11{word-spacing:-11.718000px;}
.ws12{word-spacing:-11.668680px;}
.ws8{word-spacing:-11.592000px;}
.ws5{word-spacing:-9.720000px;}
.ws7{word-spacing:-7.920000px;}
.wsd{word-spacing:0.000000px;}
._3{margin-left:-3.032640px;}
._2{margin-left:-2.021760px;}
._0{margin-left:-1.014000px;}
._1{width:1.134000px;}
._4{width:2.165520px;}
._b{width:3.167280px;}
._16{width:4.268160px;}
._c{width:5.592240px;}
._f{width:6.827040px;}
._8{width:8.367840px;}
._7{width:9.442080px;}
._a{width:10.987200px;}
._6{width:12.071520px;}
._9{width:13.625280px;}
._1a{width:16.178160px;}
._19{width:17.190720px;}
._11{width:18.358320px;}
._10{width:19.362240px;}
._5{width:20.391840px;}
._27{width:22.170960px;}
._13{width:24.143040px;}
._12{width:25.278480px;}
._18{width:28.926720px;}
._17{width:30.119040px;}
._e{width:32.882400px;}
._d{width:34.003440px;}
._15{width:36.003600px;}
._14{width:37.092240px;}
._1f{width:57.429360px;}
._1e{width:58.480320px;}
._24{width:63.226080px;}
._20{width:65.020320px;}
._22{width:75.178080px;}
._23{width:77.986800px;}
._21{width:80.138160px;}
._29{width:82.588320px;}
._2a{width:98.784720px;}
._25{width:119.377680px;}
._28{width:154.899360px;}
._26{width:158.029200px;}
._1d{width:198.762000px;}
._1c{width:206.058000px;}
._1b{width:451.182000px;}
.fc7{color:rgb(54,95,145);}
.fc5{color:transparent;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(79,129,189);}
.fc2{color:rgb(36,64,97);}
.fc8{color:rgb(13,13,13);}
.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;}
.fs9{font-size:54.144000px;}
.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;}
.yaa{bottom:3.234000px;}
.y48{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.y1e{bottom:3.960000px;}
.yf{bottom:9.540000px;}
.yb7{bottom:12.240000px;}
.y20{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y6{bottom:17.280000px;}
.yb9{bottom:19.335000px;}
.y3{bottom:20.160000px;}
.yd7{bottom:20.340000px;}
.y47{bottom:20.520000px;}
.y4a{bottom:23.220000px;}
.yb6{bottom:26.460000px;}
.yb5{bottom:26.640000px;}
.y1d{bottom:28.080000px;}
.yc{bottom:30.240000px;}
.yb8{bottom:33.765000px;}
.y5{bottom:33.876000px;}
.y2{bottom:36.576000px;}
.ye5{bottom:37.620000px;}
.y46{bottom:37.800000px;}
.ye3{bottom:37.845000px;}
.y1{bottom:39.420000px;}
.y1c{bottom:42.300000px;}
.yb{bottom:46.620000px;}
.y45{bottom:54.945000px;}
.y1b{bottom:58.140000px;}
.y44{bottom:72.225000px;}
.ya{bottom:73.440000px;}
.y1a{bottom:73.980000px;}
.yb4{bottom:86.325000px;}
.y43{bottom:89.505000px;}
.y19{bottom:89.820000px;}
.y9{bottom:93.060000px;}
.yb3{bottom:100.545000px;}
.yb2{bottom:100.725000px;}
.ye0{bottom:104.796000px;}
.y18{bottom:104.940000px;}
.y53{bottom:106.776000px;}
.y42{bottom:106.785000px;}
.y8{bottom:111.450000px;}
.yac{bottom:113.076000px;}
.y17{bottom:115.380000px;}
.y105{bottom:120.996000px;}
.y52{bottom:124.056000px;}
.y41{bottom:124.065000px;}
.y106{bottom:129.816000px;}
.yab{bottom:131.076000px;}
.y16{bottom:132.705000px;}
.y104{bottom:138.276000px;}
.ydf{bottom:140.076000px;}
.y51{bottom:141.156000px;}
.y40{bottom:141.345000px;}
.y8e{bottom:147.096000px;}
.ya9{bottom:149.076000px;}
.y15{bottom:150.705000px;}
.y103{bottom:155.370000px;}
.yde{bottom:158.070000px;}
.y50{bottom:158.430000px;}
.y3f{bottom:158.445000px;}
.y8d{bottom:164.370000px;}
.ya8{bottom:167.070000px;}
.y14{bottom:169.605000px;}
.y102{bottom:172.650000px;}
.yb1{bottom:174.810000px;}
.y4f{bottom:175.710000px;}
.y3e{bottom:175.725000px;}
.y8c{bottom:181.470000px;}
.ya7{bottom:188.310000px;}
.y101{bottom:189.930000px;}
.y2f{bottom:192.825000px;}
.y4e{bottom:192.990000px;}
.y3d{bottom:193.005000px;}
.y13{bottom:195.345000px;}
.y8b{bottom:198.750000px;}
.ya6{bottom:205.590000px;}
.y100{bottom:207.210000px;}
.y2e{bottom:207.405000px;}
.y4d{bottom:210.270000px;}
.y3c{bottom:210.285000px;}
.ydd{bottom:210.630000px;}
.y8a{bottom:216.030000px;}
.y12{bottom:221.085000px;}
.ya5{bottom:222.690000px;}
.yff{bottom:224.490000px;}
.y2d{bottom:224.685000px;}
.y4c{bottom:227.550000px;}
.y3b{bottom:227.565000px;}
.y89{bottom:233.310000px;}
.ya4{bottom:239.970000px;}
.yfe{bottom:241.770000px;}
.y2c{bottom:241.965000px;}
.y4b{bottom:244.650000px;}
.y3a{bottom:244.665000px;}
.y11{bottom:245.565000px;}
.ydc{bottom:245.730000px;}
.yba{bottom:248.910000px;}
.y88{bottom:250.590000px;}
.ya3{bottom:257.250000px;}
.y49{bottom:258.690000px;}
.yfd{bottom:258.870000px;}
.y2b{bottom:259.065000px;}
.y39{bottom:261.945000px;}
.y87{bottom:267.870000px;}
.ya2{bottom:274.530000px;}
.yfc{bottom:276.150000px;}
.y2a{bottom:276.165000px;}
.y38{bottom:279.225000px;}
.ydb{bottom:281.010000px;}
.y86{bottom:284.970000px;}
.ya1{bottom:291.810000px;}
.y29{bottom:292.545000px;}
.y21{bottom:293.250000px;}
.yfb{bottom:293.430000px;}
.y37{bottom:296.505000px;}
.y85{bottom:302.250000px;}
.yb0{bottom:308.625000px;}
.y28{bottom:308.925000px;}
.ya0{bottom:309.090000px;}
.yfa{bottom:310.710000px;}
.y36{bottom:313.815000px;}
.y84{bottom:319.530000px;}
.yaf{bottom:322.845000px;}
.y27{bottom:325.335000px;}
.y9f{bottom:326.190000px;}
.yf9{bottom:327.990000px;}
.y35{bottom:331.095000px;}
.y83{bottom:336.855000px;}
.yae{bottom:337.245000px;}
.y26{bottom:341.715000px;}
.y9e{bottom:343.515000px;}
.yf8{bottom:345.315000px;}
.y34{bottom:348.195000px;}
.y82{bottom:354.135000px;}
.y25{bottom:358.095000px;}
.y9d{bottom:360.795000px;}
.yf7{bottom:362.415000px;}
.y33{bottom:365.475000px;}
.y81{bottom:371.415000px;}
.yf6{bottom:377.175000px;}
.y24{bottom:377.355000px;}
.y9c{bottom:378.075000px;}
.y32{bottom:382.755000px;}
.y80{bottom:388.515000px;}
.yf5{bottom:395.175000px;}
.y9b{bottom:395.355000px;}
.y31{bottom:400.035000px;}
.y23{bottom:403.095000px;}
.y7f{bottom:405.795000px;}
.y9a{bottom:412.635000px;}
.yf4{bottom:413.175000px;}
.y30{bottom:417.315000px;}
.y22{bottom:420.015000px;}
.y7e{bottom:423.075000px;}
.y99{bottom:429.735000px;}
.y7d{bottom:440.355000px;}
.y98{bottom:447.015000px;}
.yf3{bottom:451.515000px;}
.y7c{bottom:457.635000px;}
.y97{bottom:464.295000px;}
.yf2{bottom:468.795000px;}
.y7b{bottom:474.735000px;}
.y96{bottom:481.575000px;}
.yf1{bottom:486.075000px;}
.y7a{bottom:492.015000px;}
.y95{bottom:498.855000px;}
.yf0{bottom:503.355000px;}
.y79{bottom:509.295000px;}
.y94{bottom:515.955000px;}
.yef{bottom:520.635000px;}
.y78{bottom:526.575000px;}
.y93{bottom:533.235000px;}
.yee{bottom:537.735000px;}
.y77{bottom:543.855000px;}
.y92{bottom:550.515000px;}
.yed{bottom:555.015000px;}
.y76{bottom:561.135000px;}
.y91{bottom:567.795000px;}
.yec{bottom:572.295000px;}
.yda{bottom:575.895000px;}
.y75{bottom:578.235000px;}
.y90{bottom:585.075000px;}
.yeb{bottom:589.575000px;}
.yd9{bottom:593.895000px;}
.y74{bottom:595.515000px;}
.y8f{bottom:599.115000px;}
.yad{bottom:599.220000px;}
.yea{bottom:606.885000px;}
.yd8{bottom:611.925000px;}
.y73{bottom:612.825000px;}
.ye9{bottom:621.645000px;}
.yd6{bottom:629.925000px;}
.y72{bottom:630.105000px;}
.y71{bottom:647.385000px;}
.ye8{bottom:656.925000px;}
.y70{bottom:664.665000px;}
.yd5{bottom:665.025000px;}
.y6f{bottom:681.765000px;}
.yd4{bottom:683.025000px;}
.ye7{bottom:692.025000px;}
.y6e{bottom:699.045000px;}
.yd3{bottom:701.025000px;}
.y6d{bottom:716.325000px;}
.y1f{bottom:724.605000px;}
.y6c{bottom:733.605000px;}
.yd2{bottom:739.545000px;}
.ye6{bottom:744.585000px;}
.y6b{bottom:750.885000px;}
.y10{bottom:754.125000px;}
.yd1{bottom:756.825000px;}
.y6a{bottom:768.165000px;}
.yd0{bottom:774.105000px;}
.y69{bottom:785.265000px;}
.ycf{bottom:791.385000px;}
.ye4{bottom:797.145000px;}
.y68{bottom:802.545000px;}
.yce{bottom:808.485000px;}
.y67{bottom:819.825000px;}
.ycd{bottom:825.765000px;}
.y66{bottom:837.105000px;}
.ycc{bottom:843.045000px;}
.ye2{bottom:849.525000px;}
.y65{bottom:854.385000px;}
.ycb{bottom:860.325000px;}
.y64{bottom:871.530000px;}
.yca{bottom:877.650000px;}
.y63{bottom:888.810000px;}
.yc9{bottom:894.930000px;}
.ye1{bottom:902.130000px;}
.y62{bottom:906.090000px;}
.yc8{bottom:909.690000px;}
.y61{bottom:923.370000px;}
.yc7{bottom:927.690000px;}
.y60{bottom:940.650000px;}
.yc6{bottom:945.690000px;}
.y5f{bottom:957.930000px;}
.yc5{bottom:963.690000px;}
.y5e{bottom:975.030000px;}
.yc4{bottom:981.690000px;}
.y5d{bottom:992.310000px;}
.yc3{bottom:999.690000px;}
.y5c{bottom:1009.590000px;}
.ye{bottom:1014.810000px;}
.yc2{bottom:1017.690000px;}
.y5b{bottom:1026.870000px;}
.yc1{bottom:1035.690000px;}
.y7{bottom:1040.010000px;}
.y5a{bottom:1044.150000px;}
.yc0{bottom:1053.690000px;}
.y59{bottom:1061.430000px;}
.ybf{bottom:1071.690000px;}
.y58{bottom:1078.530000px;}
.ybe{bottom:1089.690000px;}
.y57{bottom:1095.810000px;}
.ybd{bottom:1107.690000px;}
.y56{bottom:1113.090000px;}
.ybc{bottom:1125.690000px;}
.y55{bottom:1130.370000px;}
.ybb{bottom:1143.720000px;}
.y54{bottom:1147.680000px;}
.h28{height:17.100000px;}
.h29{height:17.136000px;}
.h23{height:17.280000px;}
.hd{height:24.840000px;}
.h17{height:29.520000px;}
.h16{height:29.671875px;}
.h14{height:30.480469px;}
.h15{height:33.480703px;}
.h2a{height:34.380000px;}
.h22{height:34.560000px;}
.h9{height:36.180000px;}
.h1d{height:39.716016px;}
.h21{height:39.760312px;}
.h1b{height:40.843828px;}
.h20{height:41.726953px;}
.h1c{height:42.164648px;}
.h5{height:43.453125px;}
.h2e{height:43.506914px;}
.hf{height:44.002969px;}
.hb{height:44.820000px;}
.h25{height:45.720703px;}
.h26{height:45.842625px;}
.h1e{height:46.881563px;}
.h12{height:48.312422px;}
.h13{height:48.492422px;}
.h1f{height:49.255313px;}
.h2{height:49.536000px;}
.h7{height:50.273438px;}
.h18{height:50.800781px;}
.h2b{height:51.660000px;}
.h2d{height:51.840000px;}
.h2c{height:51.876000px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h11{height:59.439023px;}
.hc{height:60.960938px;}
.h10{height:63.180000px;}
.h6{height:67.824844px;}
.h19{height:73.722656px;}
.h27{height:102.600703px;}
.h8{height:121.536000px;}
.he{height:260.670000px;}
.h24{height:355.500000px;}
.h1a{height:431.355000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w14{width:79.740000px;}
.w11{width:80.280000px;}
.w12{width:80.316000px;}
.w10{width:86.976000px;}
.w13{width:92.376000px;}
.w19{width:123.480000px;}
.w18{width:123.696000px;}
.w17{width:123.840000px;}
.w15{width:123.876000px;}
.w16{width:124.056000px;}
.wf{width:148.680000px;}
.wd{width:148.716000px;}
.we{width:148.896000px;}
.w5{width:155.370000px;}
.w1a{width:185.970000px;}
.w1b{width:186.150000px;}
.wc{width:248.250000px;}
.wb{width:248.430000px;}
.wa{width:248.475000px;}
.w8{width:252.795000px;}
.w9{width:494.535000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3b{left:7.560000px;}
.x2{left:8.640000px;}
.x16{left:12.600000px;}
.xc{left:25.056000px;}
.xd{left:32.976000px;}
.x12{left:40.536000px;}
.x1{left:72.360000px;}
.x13{left:73.476000px;}
.x10{left:78.150000px;}
.x4{left:80.999987px;}
.x11{left:90.390000px;}
.x5{left:98.130000px;}
.x40{left:108.035987px;}
.x20{left:135.899987px;}
.x31{left:160.950000px;}
.x1f{left:195.269987px;}
.x39{left:197.850000px;}
.xe{left:216.075000px;}
.x2c{left:222.690000px;}
.x6{left:228.270000px;}
.x38{left:233.309987px;}
.x32{left:241.950000px;}
.x2b{left:243.569987px;}
.x1a{left:250.409987px;}
.x14{left:252.615000px;}
.x3d{left:260.130000px;}
.x30{left:261.749987px;}
.x23{left:265.424987px;}
.x3c{left:274.349987px;}
.x9{left:285.195000px;}
.x2a{left:293.729987px;}
.x22{left:313.769987px;}
.x21{left:315.749987px;}
.x1b{left:322.455000px;}
.x15{left:325.695000px;}
.x19{left:330.914987px;}
.xf{left:334.875000px;}
.x7{left:344.955000px;}
.x1d{left:352.724987px;}
.x1e{left:360.824987px;}
.x8{left:364.215000px;}
.x24{left:368.459987px;}
.x2d{left:372.135000px;}
.xb{left:373.575000px;}
.x25{left:390.959987px;}
.x3f{left:396.074987px;}
.x33{left:403.995000px;}
.x18{left:446.474987px;}
.xa{left:452.460000px;}
.x34{left:497.085000px;}
.x26{left:502.664987px;}
.x2e{left:521.565000px;}
.x27{left:566.714987px;}
.x1c{left:571.605000px;}
.x35{left:578.085000px;}
.x29{left:630.569987px;}
.x3e{left:633.705000px;}
.x28{left:636.149987px;}
.x36{left:659.130000px;}
.x2f{left:671.190000px;}
.x3a{left:696.390000px;}
.x37{left:740.130000px;}
.x3{left:745.890000px;}
.x17{left:762.809987px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v4{vertical-align:50.560000pt;}
.ls17{letter-spacing:-0.688000pt;}
.ls10{letter-spacing:-0.672000pt;}
.ls14{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls16{letter-spacing:-0.216000pt;}
.lse{letter-spacing:-0.147733pt;}
.ls15{letter-spacing:-0.144000pt;}
.lsb{letter-spacing:-0.113067pt;}
.ls11{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.117867pt;}
.ls19{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.183467pt;}
.lsc{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.288768pt;}
.ls5{letter-spacing:0.298667pt;}
.ls6{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls7{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:14.672640pt;}
.ls18{letter-spacing:40.912640pt;}
.ws1{word-spacing:-47.984000pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.wsa{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.463467pt;}
.ws4{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.592000pt;}
.ws9{word-spacing:-12.492267pt;}
.ws10{word-spacing:-10.876928pt;}
.ws0{word-spacing:-10.832000pt;}
.ws11{word-spacing:-10.416000pt;}
.ws12{word-spacing:-10.372160pt;}
.ws8{word-spacing:-10.304000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.040000pt;}
.wsd{word-spacing:0.000000pt;}
._3{margin-left:-2.695680pt;}
._2{margin-left:-1.797120pt;}
._0{margin-left:-0.901333pt;}
._1{width:1.008000pt;}
._4{width:1.924907pt;}
._b{width:2.815360pt;}
._16{width:3.793920pt;}
._c{width:4.970880pt;}
._f{width:6.068480pt;}
._8{width:7.438080pt;}
._7{width:8.392960pt;}
._a{width:9.766400pt;}
._6{width:10.730240pt;}
._9{width:12.111360pt;}
._1a{width:14.380587pt;}
._19{width:15.280640pt;}
._11{width:16.318507pt;}
._10{width:17.210880pt;}
._5{width:18.126080pt;}
._27{width:19.707520pt;}
._13{width:21.460480pt;}
._12{width:22.469760pt;}
._18{width:25.712640pt;}
._17{width:26.772480pt;}
._e{width:29.228800pt;}
._d{width:30.225280pt;}
._15{width:32.003200pt;}
._14{width:32.970880pt;}
._1f{width:51.048320pt;}
._1e{width:51.982507pt;}
._24{width:56.200960pt;}
._20{width:57.795840pt;}
._22{width:66.824960pt;}
._23{width:69.321600pt;}
._21{width:71.233920pt;}
._29{width:73.411840pt;}
._2a{width:87.808640pt;}
._25{width:106.113493pt;}
._28{width:137.688320pt;}
._26{width:140.470400pt;}
._1d{width:176.677333pt;}
._1c{width:183.162667pt;}
._1b{width:401.050667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.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;}
.yaa{bottom:2.874667pt;}
.y48{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.y1e{bottom:3.520000pt;}
.yf{bottom:8.480000pt;}
.yb7{bottom:10.880000pt;}
.y20{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y6{bottom:15.360000pt;}
.yb9{bottom:17.186667pt;}
.y3{bottom:17.920000pt;}
.yd7{bottom:18.080000pt;}
.y47{bottom:18.240000pt;}
.y4a{bottom:20.640000pt;}
.yb6{bottom:23.520000pt;}
.yb5{bottom:23.680000pt;}
.y1d{bottom:24.960000pt;}
.yc{bottom:26.880000pt;}
.yb8{bottom:30.013333pt;}
.y5{bottom:30.112000pt;}
.y2{bottom:32.512000pt;}
.ye5{bottom:33.440000pt;}
.y46{bottom:33.600000pt;}
.ye3{bottom:33.640000pt;}
.y1{bottom:35.040000pt;}
.y1c{bottom:37.600000pt;}
.yb{bottom:41.440000pt;}
.y45{bottom:48.840000pt;}
.y1b{bottom:51.680000pt;}
.y44{bottom:64.200000pt;}
.ya{bottom:65.280000pt;}
.y1a{bottom:65.760000pt;}
.yb4{bottom:76.733333pt;}
.y43{bottom:79.560000pt;}
.y19{bottom:79.840000pt;}
.y9{bottom:82.720000pt;}
.yb3{bottom:89.373333pt;}
.yb2{bottom:89.533333pt;}
.ye0{bottom:93.152000pt;}
.y18{bottom:93.280000pt;}
.y53{bottom:94.912000pt;}
.y42{bottom:94.920000pt;}
.y8{bottom:99.066667pt;}
.yac{bottom:100.512000pt;}
.y17{bottom:102.560000pt;}
.y105{bottom:107.552000pt;}
.y52{bottom:110.272000pt;}
.y41{bottom:110.280000pt;}
.y106{bottom:115.392000pt;}
.yab{bottom:116.512000pt;}
.y16{bottom:117.960000pt;}
.y104{bottom:122.912000pt;}
.ydf{bottom:124.512000pt;}
.y51{bottom:125.472000pt;}
.y40{bottom:125.640000pt;}
.y8e{bottom:130.752000pt;}
.ya9{bottom:132.512000pt;}
.y15{bottom:133.960000pt;}
.y103{bottom:138.106667pt;}
.yde{bottom:140.506667pt;}
.y50{bottom:140.826667pt;}
.y3f{bottom:140.840000pt;}
.y8d{bottom:146.106667pt;}
.ya8{bottom:148.506667pt;}
.y14{bottom:150.760000pt;}
.y102{bottom:153.466667pt;}
.yb1{bottom:155.386667pt;}
.y4f{bottom:156.186667pt;}
.y3e{bottom:156.200000pt;}
.y8c{bottom:161.306667pt;}
.ya7{bottom:167.386667pt;}
.y101{bottom:168.826667pt;}
.y2f{bottom:171.400000pt;}
.y4e{bottom:171.546667pt;}
.y3d{bottom:171.560000pt;}
.y13{bottom:173.640000pt;}
.y8b{bottom:176.666667pt;}
.ya6{bottom:182.746667pt;}
.y100{bottom:184.186667pt;}
.y2e{bottom:184.360000pt;}
.y4d{bottom:186.906667pt;}
.y3c{bottom:186.920000pt;}
.ydd{bottom:187.226667pt;}
.y8a{bottom:192.026667pt;}
.y12{bottom:196.520000pt;}
.ya5{bottom:197.946667pt;}
.yff{bottom:199.546667pt;}
.y2d{bottom:199.720000pt;}
.y4c{bottom:202.266667pt;}
.y3b{bottom:202.280000pt;}
.y89{bottom:207.386667pt;}
.ya4{bottom:213.306667pt;}
.yfe{bottom:214.906667pt;}
.y2c{bottom:215.080000pt;}
.y4b{bottom:217.466667pt;}
.y3a{bottom:217.480000pt;}
.y11{bottom:218.280000pt;}
.ydc{bottom:218.426667pt;}
.yba{bottom:221.253333pt;}
.y88{bottom:222.746667pt;}
.ya3{bottom:228.666667pt;}
.y49{bottom:229.946667pt;}
.yfd{bottom:230.106667pt;}
.y2b{bottom:230.280000pt;}
.y39{bottom:232.840000pt;}
.y87{bottom:238.106667pt;}
.ya2{bottom:244.026667pt;}
.yfc{bottom:245.466667pt;}
.y2a{bottom:245.480000pt;}
.y38{bottom:248.200000pt;}
.ydb{bottom:249.786667pt;}
.y86{bottom:253.306667pt;}
.ya1{bottom:259.386667pt;}
.y29{bottom:260.040000pt;}
.y21{bottom:260.666667pt;}
.yfb{bottom:260.826667pt;}
.y37{bottom:263.560000pt;}
.y85{bottom:268.666667pt;}
.yb0{bottom:274.333333pt;}
.y28{bottom:274.600000pt;}
.ya0{bottom:274.746667pt;}
.yfa{bottom:276.186667pt;}
.y36{bottom:278.946667pt;}
.y84{bottom:284.026667pt;}
.yaf{bottom:286.973333pt;}
.y27{bottom:289.186667pt;}
.y9f{bottom:289.946667pt;}
.yf9{bottom:291.546667pt;}
.y35{bottom:294.306667pt;}
.y83{bottom:299.426667pt;}
.yae{bottom:299.773333pt;}
.y26{bottom:303.746667pt;}
.y9e{bottom:305.346667pt;}
.yf8{bottom:306.946667pt;}
.y34{bottom:309.506667pt;}
.y82{bottom:314.786667pt;}
.y25{bottom:318.306667pt;}
.y9d{bottom:320.706667pt;}
.yf7{bottom:322.146667pt;}
.y33{bottom:324.866667pt;}
.y81{bottom:330.146667pt;}
.yf6{bottom:335.266667pt;}
.y24{bottom:335.426667pt;}
.y9c{bottom:336.066667pt;}
.y32{bottom:340.226667pt;}
.y80{bottom:345.346667pt;}
.yf5{bottom:351.266667pt;}
.y9b{bottom:351.426667pt;}
.y31{bottom:355.586667pt;}
.y23{bottom:358.306667pt;}
.y7f{bottom:360.706667pt;}
.y9a{bottom:366.786667pt;}
.yf4{bottom:367.266667pt;}
.y30{bottom:370.946667pt;}
.y22{bottom:373.346667pt;}
.y7e{bottom:376.066667pt;}
.y99{bottom:381.986667pt;}
.y7d{bottom:391.426667pt;}
.y98{bottom:397.346667pt;}
.yf3{bottom:401.346667pt;}
.y7c{bottom:406.786667pt;}
.y97{bottom:412.706667pt;}
.yf2{bottom:416.706667pt;}
.y7b{bottom:421.986667pt;}
.y96{bottom:428.066667pt;}
.yf1{bottom:432.066667pt;}
.y7a{bottom:437.346667pt;}
.y95{bottom:443.426667pt;}
.yf0{bottom:447.426667pt;}
.y79{bottom:452.706667pt;}
.y94{bottom:458.626667pt;}
.yef{bottom:462.786667pt;}
.y78{bottom:468.066667pt;}
.y93{bottom:473.986667pt;}
.yee{bottom:477.986667pt;}
.y77{bottom:483.426667pt;}
.y92{bottom:489.346667pt;}
.yed{bottom:493.346667pt;}
.y76{bottom:498.786667pt;}
.y91{bottom:504.706667pt;}
.yec{bottom:508.706667pt;}
.yda{bottom:511.906667pt;}
.y75{bottom:513.986667pt;}
.y90{bottom:520.066667pt;}
.yeb{bottom:524.066667pt;}
.yd9{bottom:527.906667pt;}
.y74{bottom:529.346667pt;}
.y8f{bottom:532.546667pt;}
.yad{bottom:532.640000pt;}
.yea{bottom:539.453333pt;}
.yd8{bottom:543.933333pt;}
.y73{bottom:544.733333pt;}
.ye9{bottom:552.573333pt;}
.yd6{bottom:559.933333pt;}
.y72{bottom:560.093333pt;}
.y71{bottom:575.453333pt;}
.ye8{bottom:583.933333pt;}
.y70{bottom:590.813333pt;}
.yd5{bottom:591.133333pt;}
.y6f{bottom:606.013333pt;}
.yd4{bottom:607.133333pt;}
.ye7{bottom:615.133333pt;}
.y6e{bottom:621.373333pt;}
.yd3{bottom:623.133333pt;}
.y6d{bottom:636.733333pt;}
.y1f{bottom:644.093333pt;}
.y6c{bottom:652.093333pt;}
.yd2{bottom:657.373333pt;}
.ye6{bottom:661.853333pt;}
.y6b{bottom:667.453333pt;}
.y10{bottom:670.333333pt;}
.yd1{bottom:672.733333pt;}
.y6a{bottom:682.813333pt;}
.yd0{bottom:688.093333pt;}
.y69{bottom:698.013333pt;}
.ycf{bottom:703.453333pt;}
.ye4{bottom:708.573333pt;}
.y68{bottom:713.373333pt;}
.yce{bottom:718.653333pt;}
.y67{bottom:728.733333pt;}
.ycd{bottom:734.013333pt;}
.y66{bottom:744.093333pt;}
.ycc{bottom:749.373333pt;}
.ye2{bottom:755.133333pt;}
.y65{bottom:759.453333pt;}
.ycb{bottom:764.733333pt;}
.y64{bottom:774.693333pt;}
.yca{bottom:780.133333pt;}
.y63{bottom:790.053333pt;}
.yc9{bottom:795.493333pt;}
.ye1{bottom:801.893333pt;}
.y62{bottom:805.413333pt;}
.yc8{bottom:808.613333pt;}
.y61{bottom:820.773333pt;}
.yc7{bottom:824.613333pt;}
.y60{bottom:836.133333pt;}
.yc6{bottom:840.613333pt;}
.y5f{bottom:851.493333pt;}
.yc5{bottom:856.613333pt;}
.y5e{bottom:866.693333pt;}
.yc4{bottom:872.613333pt;}
.y5d{bottom:882.053333pt;}
.yc3{bottom:888.613333pt;}
.y5c{bottom:897.413333pt;}
.ye{bottom:902.053333pt;}
.yc2{bottom:904.613333pt;}
.y5b{bottom:912.773333pt;}
.yc1{bottom:920.613333pt;}
.y7{bottom:924.453333pt;}
.y5a{bottom:928.133333pt;}
.yc0{bottom:936.613333pt;}
.y59{bottom:943.493333pt;}
.ybf{bottom:952.613333pt;}
.y58{bottom:958.693333pt;}
.ybe{bottom:968.613333pt;}
.y57{bottom:974.053333pt;}
.ybd{bottom:984.613333pt;}
.y56{bottom:989.413333pt;}
.ybc{bottom:1000.613333pt;}
.y55{bottom:1004.773333pt;}
.ybb{bottom:1016.640000pt;}
.y54{bottom:1020.160000pt;}
.h28{height:15.200000pt;}
.h29{height:15.232000pt;}
.h23{height:15.360000pt;}
.hd{height:22.080000pt;}
.h17{height:26.240000pt;}
.h16{height:26.375000pt;}
.h14{height:27.093750pt;}
.h15{height:29.760625pt;}
.h2a{height:30.560000pt;}
.h22{height:30.720000pt;}
.h9{height:32.160000pt;}
.h1d{height:35.303125pt;}
.h21{height:35.342500pt;}
.h1b{height:36.305625pt;}
.h20{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h5{height:38.625000pt;}
.h2e{height:38.672812pt;}
.hf{height:39.113750pt;}
.hb{height:39.840000pt;}
.h25{height:40.640625pt;}
.h26{height:40.749000pt;}
.h1e{height:41.672500pt;}
.h12{height:42.944375pt;}
.h13{height:43.104375pt;}
.h1f{height:43.782500pt;}
.h2{height:44.032000pt;}
.h7{height:44.687500pt;}
.h18{height:45.156250pt;}
.h2b{height:45.920000pt;}
.h2d{height:46.080000pt;}
.h2c{height:46.112000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h11{height:52.834688pt;}
.hc{height:54.187500pt;}
.h10{height:56.160000pt;}
.h6{height:60.288750pt;}
.h19{height:65.531250pt;}
.h27{height:91.200625pt;}
.h8{height:108.032000pt;}
.he{height:231.706667pt;}
.h24{height:316.000000pt;}
.h1a{height:383.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w14{width:70.880000pt;}
.w11{width:71.360000pt;}
.w12{width:71.392000pt;}
.w10{width:77.312000pt;}
.w13{width:82.112000pt;}
.w19{width:109.760000pt;}
.w18{width:109.952000pt;}
.w17{width:110.080000pt;}
.w15{width:110.112000pt;}
.w16{width:110.272000pt;}
.wf{width:132.160000pt;}
.wd{width:132.192000pt;}
.we{width:132.352000pt;}
.w5{width:138.106667pt;}
.w1a{width:165.306667pt;}
.w1b{width:165.466667pt;}
.wc{width:220.666667pt;}
.wb{width:220.826667pt;}
.wa{width:220.866667pt;}
.w8{width:224.706667pt;}
.w9{width:439.586667pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:6.720000pt;}
.x2{left:7.680000pt;}
.x16{left:11.200000pt;}
.xc{left:22.272000pt;}
.xd{left:29.312000pt;}
.x12{left:36.032000pt;}
.x1{left:64.320000pt;}
.x13{left:65.312000pt;}
.x10{left:69.466667pt;}
.x4{left:71.999988pt;}
.x11{left:80.346667pt;}
.x5{left:87.226667pt;}
.x40{left:96.031988pt;}
.x20{left:120.799988pt;}
.x31{left:143.066667pt;}
.x1f{left:173.573322pt;}
.x39{left:175.866667pt;}
.xe{left:192.066667pt;}
.x2c{left:197.946667pt;}
.x6{left:202.906667pt;}
.x38{left:207.386655pt;}
.x32{left:215.066667pt;}
.x2b{left:216.506655pt;}
.x1a{left:222.586655pt;}
.x14{left:224.546667pt;}
.x3d{left:231.226667pt;}
.x30{left:232.666655pt;}
.x23{left:235.933322pt;}
.x3c{left:243.866655pt;}
.x9{left:253.506667pt;}
.x2a{left:261.093322pt;}
.x22{left:278.906655pt;}
.x21{left:280.666655pt;}
.x1b{left:286.626667pt;}
.x15{left:289.506667pt;}
.x19{left:294.146655pt;}
.xf{left:297.666667pt;}
.x7{left:306.626667pt;}
.x1d{left:313.533322pt;}
.x1e{left:320.733322pt;}
.x8{left:323.746667pt;}
.x24{left:327.519988pt;}
.x2d{left:330.786667pt;}
.xb{left:332.066667pt;}
.x25{left:347.519988pt;}
.x3f{left:352.066655pt;}
.x33{left:359.106667pt;}
.x18{left:396.866655pt;}
.xa{left:402.186667pt;}
.x34{left:441.853333pt;}
.x26{left:446.813322pt;}
.x2e{left:463.613333pt;}
.x27{left:503.746655pt;}
.x1c{left:508.093333pt;}
.x35{left:513.853333pt;}
.x29{left:560.506655pt;}
.x3e{left:563.293333pt;}
.x28{left:565.466655pt;}
.x36{left:585.893333pt;}
.x2f{left:596.613333pt;}
.x3a{left:619.013333pt;}
.x37{left:657.893333pt;}
.x3{left:663.013333pt;}
.x17{left:678.053322pt;}
}




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