
    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_2008496e7aaa21e0e3d56904.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ef26ea0bfc5de6e6fc057dc7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.152832;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_c8dc5cd78a103c6e20690a26.woff')format("woff");}.ff3{font-family:ff3;line-height:1.152832;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_7c2bdc303af065cec1ca9976.woff')format("woff");}.ff4{font-family:ff4;line-height:1.099609;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_45eb91ba20e69d43aa2de666.woff')format("woff");}.ff5{font-family:ff5;line-height:1.096680;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_056f5f0911517b180e2321c4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.927246;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_50ed6155ea9c3b4fcf63c9a2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.766602;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_90e214a20aedea73220b4363.woff')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_d260398646642899e31db18c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.096680;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_96e29c0c702bc6aeea362eac.woff')format("woff");}.ffa{font-family:ffa;line-height:1.088379;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bf452762182276da20350646.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_4f32fed19e1709460fcafb89.woff')format("woff");}.ffd{font-family:ffd;line-height:1.088379;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_181384f427ebbea942eb7788.woff')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.348600px;}
.ls6{letter-spacing:-0.306000px;}
.lsa{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.193200px;}
.ls5{letter-spacing:-0.169800px;}
.lsb{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.103800px;}
.ls4{letter-spacing:-0.090000px;}
.ls12{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.018000px;}
.lsd{letter-spacing:-0.010080px;}
.ls1c{letter-spacing:-0.000001px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.150000px;}
.ls2{letter-spacing:0.186600px;}
.ls11{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.243600px;}
.ls18{letter-spacing:0.256200px;}
.ls1a{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.325440px;}
.ls9{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.864000px;}
.ls0{letter-spacing:0.905760px;}
.ls10{letter-spacing:2.880000px;}
.ls1d{letter-spacing:12.960000px;}
.lsf{letter-spacing:33.264000px;}
.lse{letter-spacing:54.864000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.wsa{word-spacing:-18.509760px;}
.ws2{word-spacing:-17.801160px;}
.wsb{word-spacing:-16.488000px;}
.ws1{word-spacing:-16.204440px;}
.ws11{word-spacing:-16.128000px;}
.ws4{word-spacing:-15.840000px;}
.wsf{word-spacing:-15.226440px;}
.ws10{word-spacing:-14.777040px;}
.ws0{word-spacing:-14.706000px;}
.ws12{word-spacing:-12.204000px;}
.ws9{word-spacing:-0.432000px;}
.wse{word-spacing:-0.216000px;}
.ws7{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.072000px;}
.wsc{word-spacing:0.144000px;}
.ws5{word-spacing:0.216000px;}
.wsd{word-spacing:0.288000px;}
._23{margin-left:-10.602000px;}
._11{margin-left:-9.576000px;}
._13{margin-left:-8.136000px;}
._19{margin-left:-7.050490px;}
._1b{margin-left:-5.422325px;}
._d{margin-left:-4.420806px;}
._c{margin-left:-3.047999px;}
._25{margin-left:-2.032399px;}
._1{margin-left:-1.026000px;}
._0{width:1.092000px;}
._e{width:2.118600px;}
._3{width:3.628801px;}
._4{width:4.780800px;}
._5{width:6.208320px;}
._a{width:7.264680px;}
._b{width:8.580559px;}
._f{width:10.001040px;}
._7{width:11.751361px;}
._6{width:13.092240px;}
._18{width:14.236320px;}
._8{width:15.314520px;}
._1d{width:17.049480px;}
._1f{width:18.314558px;}
._1a{width:19.512000px;}
._24{width:20.837999px;}
._9{width:21.855601px;}
._1e{width:23.112000px;}
._12{width:24.868331px;}
._10{width:25.931999px;}
._1c{width:27.216000px;}
._22{width:28.463441px;}
._26{width:30.025676px;}
._2b{width:31.165732px;}
._2a{width:32.328000px;}
._27{width:33.696000px;}
._28{width:34.893994px;}
._29{width:36.000000px;}
._30{width:37.095517px;}
._15{width:38.632320px;}
._14{width:39.814320px;}
._2f{width:41.655203px;}
._2e{width:43.088797px;}
._16{width:44.341920px;}
._17{width:45.547920px;}
._2c{width:48.168000px;}
._2d{width:49.192399px;}
._35{width:61.848000px;}
._20{width:73.026000px;}
._21{width:74.700000px;}
._2{width:121.446000px;}
._33{width:246.312000px;}
._34{width:248.040000px;}
._31{width:848.316000px;}
._32{width:850.147200px;}
.fc5{color:rgb(112,48,160);}
.fc6{color:transparent;}
.fc4{color:rgb(196,89,17);}
.fc3{color:rgb(128,0,0);}
.fc2{color:rgb(192,0,0);}
.fc7{color:rgb(89,89,89);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.420000px;}
.y11{bottom:3.600000px;}
.y3b{bottom:3.960000px;}
.y11b{bottom:4.500000px;}
.y11c{bottom:4.680000px;}
.y39{bottom:4.875000px;}
.y117{bottom:5.220000px;}
.y11e{bottom:5.400000px;}
.y13a{bottom:7.905000px;}
.y12e{bottom:7.920000px;}
.y43{bottom:11.340000px;}
.y12{bottom:11.520000px;}
.y125{bottom:12.060000px;}
.yb{bottom:12.960000px;}
.y121{bottom:13.860000px;}
.y119{bottom:14.580000px;}
.y138{bottom:17.985000px;}
.y12c{bottom:18.000000px;}
.y41{bottom:21.420000px;}
.y10{bottom:21.600000px;}
.y126{bottom:22.140000px;}
.y158{bottom:22.605000px;}
.y16a{bottom:22.680000px;}
.y122{bottom:23.985000px;}
.y11a{bottom:24.660000px;}
.y139{bottom:28.065000px;}
.y12d{bottom:28.080000px;}
.y6{bottom:32.055000px;}
.y124{bottom:32.220000px;}
.ya{bottom:32.940000px;}
.y120{bottom:34.065000px;}
.y156{bottom:44.850000px;}
.y168{bottom:44.970000px;}
.y13{bottom:46.980000px;}
.y5{bottom:50.055000px;}
.y9{bottom:52.920000px;}
.y155{bottom:61.410000px;}
.y167{bottom:61.530000px;}
.yf{bottom:62.460000px;}
.y40{bottom:64.440000px;}
.y3{bottom:68.070000px;}
.y157{bottom:71.895000px;}
.y8{bottom:72.900000px;}
.y154{bottom:77.970000px;}
.y166{bottom:78.090000px;}
.y14d{bottom:95.550000px;}
.y15c{bottom:95.610000px;}
.ye{bottom:103.140000px;}
.y3f{bottom:104.760000px;}
.y169{bottom:106.380000px;}
.y15a{bottom:117.795000px;}
.y15d{bottom:119.730000px;}
.y14e{bottom:121.035000px;}
.yd{bottom:123.300000px;}
.y3e{bottom:126.720000px;}
.ya1{bottom:142.740000px;}
.y159{bottom:143.100000px;}
.y15e{bottom:143.850000px;}
.y14f{bottom:146.520000px;}
.y74{bottom:148.140000px;}
.y37{bottom:149.760000px;}
.y16c{bottom:149.970000px;}
.y110{bottom:154.800000px;}
.yc7{bottom:155.340000px;}
.yee{bottom:158.220000px;}
.y93{bottom:158.400000px;}
.ya0{bottom:162.540000px;}
.y15f{bottom:167.970000px;}
.y73{bottom:168.120000px;}
.y140{bottom:170.460000px;}
.y150{bottom:172.005000px;}
.y36{bottom:173.520000px;}
.y16b{bottom:175.290000px;}
.y9f{bottom:182.520000px;}
.y10f{bottom:186.480000px;}
.yc6{bottom:187.020000px;}
.ye5{bottom:187.740000px;}
.y72{bottom:187.920000px;}
.yca{bottom:189.000000px;}
.yed{bottom:189.900000px;}
.y92{bottom:190.080000px;}
.y13f{bottom:192.060000px;}
.y160{bottom:192.090000px;}
.y35{bottom:196.560000px;}
.y151{bottom:197.490000px;}
.y9e{bottom:202.500000px;}
.y112{bottom:203.220000px;}
.y71{bottom:207.900000px;}
.y13e{bottom:208.440000px;}
.y96{bottom:213.120000px;}
.y161{bottom:216.210000px;}
.y10e{bottom:218.160000px;}
.yc5{bottom:218.700000px;}
.y34{bottom:219.420000px;}
.yaf{bottom:219.600000px;}
.yc9{bottom:220.680000px;}
.y91{bottom:221.580000px;}
.y9d{bottom:222.480000px;}
.y152{bottom:222.990000px;}
.y70{bottom:227.880000px;}
.y95{bottom:228.600000px;}
.y162{bottom:240.330000px;}
.y33{bottom:242.490000px;}
.y6f{bottom:247.890000px;}
.y153{bottom:248.430000px;}
.y10d{bottom:249.870000px;}
.yc4{bottom:250.410000px;}
.ye4{bottom:251.130000px;}
.yae{bottom:251.310000px;}
.yc8{bottom:252.210000px;}
.y90{bottom:253.290000px;}
.y13d{bottom:256.005000px;}
.y9c{bottom:262.470000px;}
.y163{bottom:264.450000px;}
.y32{bottom:265.350000px;}
.y6e{bottom:267.870000px;}
.y10c{bottom:281.550000px;}
.yc3{bottom:282.090000px;}
.y9b{bottom:282.450000px;}
.ye3{bottom:282.810000px;}
.yad{bottom:282.990000px;}
.y8f{bottom:284.970000px;}
.y6d{bottom:287.850000px;}
.y31{bottom:288.390000px;}
.y164{bottom:288.570000px;}
.y9a{bottom:302.250000px;}
.y13c{bottom:303.705000px;}
.y99{bottom:307.470000px;}
.y6c{bottom:307.650000px;}
.y30{bottom:311.250000px;}
.y165{bottom:312.690000px;}
.y10b{bottom:313.050000px;}
.yc2{bottom:313.590000px;}
.ye2{bottom:314.490000px;}
.yac{bottom:314.670000px;}
.y8e{bottom:316.650000px;}
.y94{bottom:321.150000px;}
.y98{bottom:322.950000px;}
.y6b{bottom:327.630000px;}
.y2f{bottom:334.290000px;}
.y10a{bottom:344.730000px;}
.yc1{bottom:345.270000px;}
.ye1{bottom:345.990000px;}
.yab{bottom:346.350000px;}
.y6a{bottom:347.610000px;}
.yec{bottom:348.150000px;}
.y8d{bottom:348.330000px;}
.y13b{bottom:351.225000px;}
.y2e{bottom:357.150000px;}
.y14b{bottom:365.070000px;}
.y69{bottom:367.590000px;}
.y109{bottom:376.410000px;}
.yc0{bottom:376.950000px;}
.ye0{bottom:377.670000px;}
.yaa{bottom:378.030000px;}
.yeb{bottom:379.830000px;}
.y8c{bottom:380.010000px;}
.y2d{bottom:380.190000px;}
.y14a{bottom:387.030000px;}
.y68{bottom:387.570000px;}
.y137{bottom:398.925000px;}
.y2c{bottom:403.050000px;}
.y67{bottom:407.550000px;}
.y108{bottom:408.090000px;}
.y149{bottom:408.270000px;}
.ybf{bottom:408.630000px;}
.ya9{bottom:409.530000px;}
.yea{bottom:411.510000px;}
.y8b{bottom:411.690000px;}
.y2b{bottom:425.910000px;}
.y66{bottom:427.350000px;}
.y148{bottom:429.330000px;}
.y107{bottom:439.770000px;}
.ybe{bottom:440.310000px;}
.ydf{bottom:441.030000px;}
.ya8{bottom:442.290000px;}
.y8a{bottom:443.190000px;}
.y147{bottom:446.430000px;}
.y15b{bottom:446.580000px;}
.y65{bottom:447.330000px;}
.y2a{bottom:448.950000px;}
.y136{bottom:451.110000px;}
.y64{bottom:452.550000px;}
.y63{bottom:467.310000px;}
.y135{bottom:471.315000px;}
.y106{bottom:471.495000px;}
.y29{bottom:471.855000px;}
.ybd{bottom:472.035000px;}
.yde{bottom:472.755000px;}
.ya7{bottom:474.015000px;}
.y89{bottom:474.915000px;}
.y97{bottom:479.415000px;}
.y62{bottom:487.335000px;}
.y134{bottom:490.935000px;}
.y28{bottom:494.895000px;}
.y105{bottom:503.175000px;}
.ybc{bottom:503.715000px;}
.ydd{bottom:504.435000px;}
.ya6{bottom:505.695000px;}
.y113{bottom:506.415000px;}
.y88{bottom:506.595000px;}
.y61{bottom:507.315000px;}
.y133{bottom:511.995000px;}
.y27{bottom:517.755000px;}
.y60{bottom:527.295000px;}
.y132{bottom:529.815000px;}
.y104{bottom:534.675000px;}
.ybb{bottom:535.215000px;}
.ydc{bottom:535.935000px;}
.ya5{bottom:537.195000px;}
.y87{bottom:538.275000px;}
.y26{bottom:540.795000px;}
.y111{bottom:542.775000px;}
.y5f{bottom:547.275000px;}
.y25{bottom:563.655000px;}
.y103{bottom:566.355000px;}
.yba{bottom:566.895000px;}
.y5e{bottom:567.075000px;}
.ydb{bottom:567.795000px;}
.ya4{bottom:568.875000px;}
.ye9{bottom:569.775000px;}
.y86{bottom:569.955000px;}
.y5d{bottom:572.295000px;}
.y131{bottom:577.515000px;}
.y24{bottom:586.695000px;}
.y5c{bottom:587.055000px;}
.y102{bottom:598.035000px;}
.yb9{bottom:598.575000px;}
.yda{bottom:599.295000px;}
.ya3{bottom:600.555000px;}
.ye8{bottom:601.455000px;}
.y85{bottom:601.635000px;}
.y5b{bottom:607.035000px;}
.y23{bottom:609.555000px;}
.y130{bottom:625.035000px;}
.y5a{bottom:627.015000px;}
.y101{bottom:629.715000px;}
.yb8{bottom:630.255000px;}
.yd9{bottom:631.155000px;}
.ya2{bottom:632.055000px;}
.y22{bottom:632.595000px;}
.y84{bottom:633.135000px;}
.y59{bottom:646.995000px;}
.y21{bottom:655.455000px;}
.y100{bottom:661.395000px;}
.yb7{bottom:661.935000px;}
.yd8{bottom:662.655000px;}
.y83{bottom:664.815000px;}
.y58{bottom:666.975000px;}
.y12f{bottom:672.735000px;}
.y20{bottom:678.495000px;}
.y57{bottom:686.775000px;}
.y56{bottom:691.995000px;}
.yff{bottom:693.075000px;}
.yb6{bottom:693.615000px;}
.yd7{bottom:694.515000px;}
.ye7{bottom:696.345000px;}
.y82{bottom:696.525000px;}
.y1f{bottom:701.385000px;}
.y55{bottom:707.505000px;}
.y12b{bottom:720.285000px;}
.y1e{bottom:724.425000px;}
.yfe{bottom:724.785000px;}
.yb5{bottom:725.145000px;}
.yd6{bottom:726.045000px;}
.y81{bottom:728.205000px;}
.y1d{bottom:747.285000px;}
.yfd{bottom:756.285000px;}
.yb4{bottom:757.905000px;}
.y80{bottom:759.885000px;}
.y54{bottom:767.805000px;}
.y1c{bottom:770.145000px;}
.y12a{bottom:772.665000px;}
.y146{bottom:784.365000px;}
.yfc{bottom:787.965000px;}
.yb3{bottom:789.585000px;}
.ye6{bottom:791.385000px;}
.y7f{bottom:791.565000px;}
.y129{bottom:792.825000px;}
.y1b{bottom:793.185000px;}
.y52{bottom:799.485000px;}
.y53{bottom:803.985000px;}
.y145{bottom:806.325000px;}
.y128{bottom:812.265000px;}
.y1a{bottom:816.045000px;}
.yfb{bottom:819.645000px;}
.yb2{bottom:821.085000px;}
.yd5{bottom:821.265000px;}
.y7e{bottom:823.245000px;}
.y144{bottom:828.465000px;}
.y51{bottom:831.165000px;}
.y127{bottom:834.225000px;}
.y19{bottom:839.085000px;}
.yfa{bottom:840.525000px;}
.y143{bottom:849.525000px;}
.y123{bottom:852.045000px;}
.yd4{bottom:852.765000px;}
.yb1{bottom:853.845000px;}
.y7d{bottom:854.745000px;}
.yf9{bottom:861.405000px;}
.y18{bottom:861.945000px;}
.y50{bottom:862.665000px;}
.y142{bottom:870.585000px;}
.yf8{bottom:880.665000px;}
.yd3{bottom:884.445000px;}
.y17{bottom:884.985000px;}
.yb0{bottom:885.345000px;}
.y7c{bottom:886.425000px;}
.y141{bottom:887.685000px;}
.y14c{bottom:887.940000px;}
.y4f{bottom:894.345000px;}
.yf7{bottom:900.105000px;}
.y11f{bottom:907.665000px;}
.y16{bottom:907.845000px;}
.yd2{bottom:916.125000px;}
.y7b{bottom:918.105000px;}
.yf6{bottom:919.365000px;}
.y4e{bottom:926.070000px;}
.y15{bottom:930.930000px;}
.yf5{bottom:938.850000px;}
.yd1{bottom:947.850000px;}
.y7a{bottom:949.830000px;}
.y14{bottom:953.790000px;}
.y4c{bottom:957.750000px;}
.yf4{bottom:958.110000px;}
.y4d{bottom:962.250000px;}
.y11d{bottom:966.930000px;}
.yc{bottom:974.490000px;}
.yf3{bottom:977.550000px;}
.yd0{bottom:979.530000px;}
.y79{bottom:981.510000px;}
.y4a{bottom:989.430000px;}
.y7{bottom:990.690000px;}
.y4b{bottom:993.930000px;}
.yf2{bottom:996.810000px;}
.ycf{bottom:1011.030000px;}
.y78{bottom:1013.190000px;}
.yf1{bottom:1016.250000px;}
.y49{bottom:1017.510000px;}
.y118{bottom:1030.470000px;}
.yf0{bottom:1035.510000px;}
.yce{bottom:1043.790000px;}
.y48{bottom:1044.870000px;}
.yef{bottom:1053.330000px;}
.y47{bottom:1066.470000px;}
.y116{bottom:1071.510000px;}
.ycd{bottom:1075.470000px;}
.y77{bottom:1076.370000px;}
.y4{bottom:1089.315000px;}
.y2{bottom:1089.330000px;}
.y46{bottom:1091.130000px;}
.y115{bottom:1098.330000px;}
.ycc{bottom:1107.150000px;}
.y76{bottom:1108.050000px;}
.y45{bottom:1115.790000px;}
.y114{bottom:1118.490000px;}
.ycb{bottom:1138.650000px;}
.y44{bottom:1139.550000px;}
.y75{bottom:1139.730000px;}
.y3d{bottom:1162.440000px;}
.y3c{bottom:1182.780000px;}
.y3a{bottom:1200.600000px;}
.y1{bottom:1205.100000px;}
.y38{bottom:1216.570500px;}
.hf{height:19.980000px;}
.hd{height:20.475000px;}
.h1b{height:21.585000px;}
.h19{height:31.324219px;}
.h17{height:35.671641px;}
.h11{height:35.820000px;}
.h9{height:36.000000px;}
.h1d{height:40.125000px;}
.h16{height:41.974453px;}
.he{height:43.710938px;}
.h24{height:46.785000px;}
.h22{height:46.830000px;}
.h25{height:46.836000px;}
.h23{height:46.965000px;}
.h21{height:46.980000px;}
.h13{height:47.408203px;}
.h4{height:49.543945px;}
.hb{height:51.677227px;}
.h27{height:53.709961px;}
.h10{height:54.386719px;}
.h6{height:54.828633px;}
.h1f{height:54.900000px;}
.h1a{height:57.636562px;}
.h1e{height:58.522500px;}
.ha{height:59.439023px;}
.h29{height:59.582250px;}
.h8{height:60.773906px;}
.h14{height:62.648438px;}
.hc{height:63.210938px;}
.h2{height:65.884219px;}
.h1c{height:68.084282px;}
.h20{height:71.613281px;}
.h12{height:73.956797px;}
.h18{height:74.004654px;}
.h7{height:97.905000px;}
.h3{height:111.096000px;}
.h5{height:111.105000px;}
.h26{height:268.740000px;}
.h28{height:333.000000px;}
.h1{height:1263.000000px;}
.h15{height:1263.044865px;}
.h0{height:1263.060000px;}
.wc{width:49.671000px;}
.w11{width:49.851000px;}
.w5{width:95.205000px;}
.we{width:109.656000px;}
.wf{width:113.925000px;}
.w10{width:118.281000px;}
.w12{width:118.641000px;}
.wb{width:211.695000px;}
.wa{width:211.710000px;}
.w9{width:211.881000px;}
.wd{width:242.295000px;}
.w2{width:318.450000px;}
.w6{width:386.894400px;}
.w13{width:417.420000px;}
.w14{width:423.000000px;}
.w4{width:541.890000px;}
.w3{width:637.110000px;}
.w7{width:638.010000px;}
.w8{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:4.851000px;}
.x2{left:8.091000px;}
.x4{left:16.191000px;}
.x3e{left:33.090000px;}
.x6{left:38.880000px;}
.x35{left:41.580000px;}
.x34{left:48.420000px;}
.xc{left:63.540000px;}
.x19{left:66.060000px;}
.x20{left:68.580000px;}
.x36{left:72.150000px;}
.x30{left:79.725000px;}
.x37{left:81.000000px;}
.x42{left:84.315000px;}
.x2f{left:88.410000px;}
.x3{left:89.805000px;}
.x43{left:93.135000px;}
.x2e{left:96.690000px;}
.x2d{left:100.785000px;}
.x1{left:127.656000px;}
.x16{left:131.256000px;}
.x17{left:132.696000px;}
.x9{left:134.015100px;}
.x3f{left:137.055000px;}
.x38{left:139.215000px;}
.x39{left:141.555000px;}
.xd{left:150.690000px;}
.x1e{left:154.650000px;}
.xe{left:156.990000px;}
.x26{left:163.110000px;}
.x28{left:173.370000px;}
.x44{left:175.605000px;}
.x29{left:178.785000px;}
.x7{left:180.750000px;}
.x1f{left:182.910000px;}
.x27{left:190.110000px;}
.xf{left:192.990000px;}
.x3c{left:204.660000px;}
.x3a{left:206.280000px;}
.x3b{left:213.660000px;}
.x41{left:234.900000px;}
.x33{left:237.780000px;}
.x47{left:265.245000px;}
.x45{left:266.865000px;}
.x46{left:274.245000px;}
.x3d{left:278.310000px;}
.x1a{left:282.067500px;}
.x1b{left:288.795000px;}
.x24{left:340.995000px;}
.x15{left:343.695000px;}
.xa{left:348.360000px;}
.x40{left:370.230000px;}
.x48{left:375.915000px;}
.x2a{left:421.815000px;}
.x8{left:446.655000px;}
.x18{left:488.400000px;}
.x2b{left:532.200000px;}
.x25{left:553.620000px;}
.x21{left:555.742500px;}
.x22{left:562.425000px;}
.x10{left:568.905000px;}
.x12{left:627.225000px;}
.x13{left:641.422500px;}
.x2c{left:646.860000px;}
.x14{left:648.105000px;}
.x1c{left:652.942500px;}
.x31{left:655.305000px;}
.x32{left:658.005000px;}
.x1d{left:659.625000px;}
.x5{left:669.570000px;}
.x11{left:759.007500px;}
.xb{left:765.690000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.309867pt;}
.ls6{letter-spacing:-0.272000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.171733pt;}
.ls5{letter-spacing:-0.150933pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.092267pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.016000pt;}
.lsd{letter-spacing:-0.008960pt;}
.ls1c{letter-spacing:-0.000001pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.133333pt;}
.ls2{letter-spacing:0.165867pt;}
.ls11{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.216533pt;}
.ls18{letter-spacing:0.227733pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.289280pt;}
.ls9{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.768000pt;}
.ls0{letter-spacing:0.805120pt;}
.ls10{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:11.520000pt;}
.lsf{letter-spacing:29.568000pt;}
.lse{letter-spacing:48.768000pt;}
.ws8{word-spacing:-64.000000pt;}
.wsa{word-spacing:-16.453120pt;}
.ws2{word-spacing:-15.823253pt;}
.wsb{word-spacing:-14.656000pt;}
.ws1{word-spacing:-14.403947pt;}
.ws11{word-spacing:-14.336000pt;}
.ws4{word-spacing:-14.080000pt;}
.wsf{word-spacing:-13.534613pt;}
.ws10{word-spacing:-13.135147pt;}
.ws0{word-spacing:-13.072000pt;}
.ws12{word-spacing:-10.848000pt;}
.ws9{word-spacing:-0.384000pt;}
.wse{word-spacing:-0.192000pt;}
.ws7{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.064000pt;}
.wsc{word-spacing:0.128000pt;}
.ws5{word-spacing:0.192000pt;}
.wsd{word-spacing:0.256000pt;}
._23{margin-left:-9.424000pt;}
._11{margin-left:-8.512000pt;}
._13{margin-left:-7.232000pt;}
._19{margin-left:-6.267102pt;}
._1b{margin-left:-4.819844pt;}
._d{margin-left:-3.929605pt;}
._c{margin-left:-2.709332pt;}
._25{margin-left:-1.806577pt;}
._1{margin-left:-0.912000pt;}
._0{width:0.970667pt;}
._e{width:1.883200pt;}
._3{width:3.225601pt;}
._4{width:4.249600pt;}
._5{width:5.518507pt;}
._a{width:6.457494pt;}
._b{width:7.627163pt;}
._f{width:8.889813pt;}
._7{width:10.445654pt;}
._6{width:11.637547pt;}
._18{width:12.654507pt;}
._8{width:13.612906pt;}
._1d{width:15.155094pt;}
._1f{width:16.279607pt;}
._1a{width:17.344000pt;}
._24{width:18.522666pt;}
._9{width:19.427201pt;}
._1e{width:20.544000pt;}
._12{width:22.105183pt;}
._10{width:23.050666pt;}
._1c{width:24.192000pt;}
._22{width:25.300837pt;}
._26{width:26.689490pt;}
._2b{width:27.702873pt;}
._2a{width:28.736000pt;}
._27{width:29.952000pt;}
._28{width:31.016883pt;}
._29{width:32.000000pt;}
._30{width:32.973793pt;}
._15{width:34.339840pt;}
._14{width:35.390507pt;}
._2f{width:37.026847pt;}
._2e{width:38.301153pt;}
._16{width:39.415040pt;}
._17{width:40.487040pt;}
._2c{width:42.816000pt;}
._2d{width:43.726577pt;}
._35{width:54.976000pt;}
._20{width:64.912000pt;}
._21{width:66.400000pt;}
._2{width:107.952000pt;}
._33{width:218.944000pt;}
._34{width:220.480000pt;}
._31{width:754.058667pt;}
._32{width:755.686400pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:3.040000pt;}
.y11{bottom:3.200000pt;}
.y3b{bottom:3.520000pt;}
.y11b{bottom:4.000000pt;}
.y11c{bottom:4.160000pt;}
.y39{bottom:4.333333pt;}
.y117{bottom:4.640000pt;}
.y11e{bottom:4.800000pt;}
.y13a{bottom:7.026667pt;}
.y12e{bottom:7.040000pt;}
.y43{bottom:10.080000pt;}
.y12{bottom:10.240000pt;}
.y125{bottom:10.720000pt;}
.yb{bottom:11.520000pt;}
.y121{bottom:12.320000pt;}
.y119{bottom:12.960000pt;}
.y138{bottom:15.986667pt;}
.y12c{bottom:16.000000pt;}
.y41{bottom:19.040000pt;}
.y10{bottom:19.200000pt;}
.y126{bottom:19.680000pt;}
.y158{bottom:20.093333pt;}
.y16a{bottom:20.160000pt;}
.y122{bottom:21.320000pt;}
.y11a{bottom:21.920000pt;}
.y139{bottom:24.946667pt;}
.y12d{bottom:24.960000pt;}
.y6{bottom:28.493333pt;}
.y124{bottom:28.640000pt;}
.ya{bottom:29.280000pt;}
.y120{bottom:30.280000pt;}
.y156{bottom:39.866667pt;}
.y168{bottom:39.973333pt;}
.y13{bottom:41.760000pt;}
.y5{bottom:44.493333pt;}
.y9{bottom:47.040000pt;}
.y155{bottom:54.586667pt;}
.y167{bottom:54.693333pt;}
.yf{bottom:55.520000pt;}
.y40{bottom:57.280000pt;}
.y3{bottom:60.506667pt;}
.y157{bottom:63.906667pt;}
.y8{bottom:64.800000pt;}
.y154{bottom:69.306667pt;}
.y166{bottom:69.413333pt;}
.y14d{bottom:84.933333pt;}
.y15c{bottom:84.986667pt;}
.ye{bottom:91.680000pt;}
.y3f{bottom:93.120000pt;}
.y169{bottom:94.560000pt;}
.y15a{bottom:104.706667pt;}
.y15d{bottom:106.426667pt;}
.y14e{bottom:107.586667pt;}
.yd{bottom:109.600000pt;}
.y3e{bottom:112.640000pt;}
.ya1{bottom:126.880000pt;}
.y159{bottom:127.200000pt;}
.y15e{bottom:127.866667pt;}
.y14f{bottom:130.240000pt;}
.y74{bottom:131.680000pt;}
.y37{bottom:133.120000pt;}
.y16c{bottom:133.306667pt;}
.y110{bottom:137.600000pt;}
.yc7{bottom:138.080000pt;}
.yee{bottom:140.640000pt;}
.y93{bottom:140.800000pt;}
.ya0{bottom:144.480000pt;}
.y15f{bottom:149.306667pt;}
.y73{bottom:149.440000pt;}
.y140{bottom:151.520000pt;}
.y150{bottom:152.893333pt;}
.y36{bottom:154.240000pt;}
.y16b{bottom:155.813333pt;}
.y9f{bottom:162.240000pt;}
.y10f{bottom:165.760000pt;}
.yc6{bottom:166.240000pt;}
.ye5{bottom:166.880000pt;}
.y72{bottom:167.040000pt;}
.yca{bottom:168.000000pt;}
.yed{bottom:168.800000pt;}
.y92{bottom:168.960000pt;}
.y13f{bottom:170.720000pt;}
.y160{bottom:170.746667pt;}
.y35{bottom:174.720000pt;}
.y151{bottom:175.546667pt;}
.y9e{bottom:180.000000pt;}
.y112{bottom:180.640000pt;}
.y71{bottom:184.800000pt;}
.y13e{bottom:185.280000pt;}
.y96{bottom:189.440000pt;}
.y161{bottom:192.186667pt;}
.y10e{bottom:193.920000pt;}
.yc5{bottom:194.400000pt;}
.y34{bottom:195.040000pt;}
.yaf{bottom:195.200000pt;}
.yc9{bottom:196.160000pt;}
.y91{bottom:196.960000pt;}
.y9d{bottom:197.760000pt;}
.y152{bottom:198.213333pt;}
.y70{bottom:202.560000pt;}
.y95{bottom:203.200000pt;}
.y162{bottom:213.626667pt;}
.y33{bottom:215.546667pt;}
.y6f{bottom:220.346667pt;}
.y153{bottom:220.826667pt;}
.y10d{bottom:222.106667pt;}
.yc4{bottom:222.586667pt;}
.ye4{bottom:223.226667pt;}
.yae{bottom:223.386667pt;}
.yc8{bottom:224.186667pt;}
.y90{bottom:225.146667pt;}
.y13d{bottom:227.560000pt;}
.y9c{bottom:233.306667pt;}
.y163{bottom:235.066667pt;}
.y32{bottom:235.866667pt;}
.y6e{bottom:238.106667pt;}
.y10c{bottom:250.266667pt;}
.yc3{bottom:250.746667pt;}
.y9b{bottom:251.066667pt;}
.ye3{bottom:251.386667pt;}
.yad{bottom:251.546667pt;}
.y8f{bottom:253.306667pt;}
.y6d{bottom:255.866667pt;}
.y31{bottom:256.346667pt;}
.y164{bottom:256.506667pt;}
.y9a{bottom:268.666667pt;}
.y13c{bottom:269.960000pt;}
.y99{bottom:273.306667pt;}
.y6c{bottom:273.466667pt;}
.y30{bottom:276.666667pt;}
.y165{bottom:277.946667pt;}
.y10b{bottom:278.266667pt;}
.yc2{bottom:278.746667pt;}
.ye2{bottom:279.546667pt;}
.yac{bottom:279.706667pt;}
.y8e{bottom:281.466667pt;}
.y94{bottom:285.466667pt;}
.y98{bottom:287.066667pt;}
.y6b{bottom:291.226667pt;}
.y2f{bottom:297.146667pt;}
.y10a{bottom:306.426667pt;}
.yc1{bottom:306.906667pt;}
.ye1{bottom:307.546667pt;}
.yab{bottom:307.866667pt;}
.y6a{bottom:308.986667pt;}
.yec{bottom:309.466667pt;}
.y8d{bottom:309.626667pt;}
.y13b{bottom:312.200000pt;}
.y2e{bottom:317.466667pt;}
.y14b{bottom:324.506667pt;}
.y69{bottom:326.746667pt;}
.y109{bottom:334.586667pt;}
.yc0{bottom:335.066667pt;}
.ye0{bottom:335.706667pt;}
.yaa{bottom:336.026667pt;}
.yeb{bottom:337.626667pt;}
.y8c{bottom:337.786667pt;}
.y2d{bottom:337.946667pt;}
.y14a{bottom:344.026667pt;}
.y68{bottom:344.506667pt;}
.y137{bottom:354.600000pt;}
.y2c{bottom:358.266667pt;}
.y67{bottom:362.266667pt;}
.y108{bottom:362.746667pt;}
.y149{bottom:362.906667pt;}
.ybf{bottom:363.226667pt;}
.ya9{bottom:364.026667pt;}
.yea{bottom:365.786667pt;}
.y8b{bottom:365.946667pt;}
.y2b{bottom:378.586667pt;}
.y66{bottom:379.866667pt;}
.y148{bottom:381.626667pt;}
.y107{bottom:390.906667pt;}
.ybe{bottom:391.386667pt;}
.ydf{bottom:392.026667pt;}
.ya8{bottom:393.146667pt;}
.y8a{bottom:393.946667pt;}
.y147{bottom:396.826667pt;}
.y15b{bottom:396.960000pt;}
.y65{bottom:397.626667pt;}
.y2a{bottom:399.066667pt;}
.y136{bottom:400.986667pt;}
.y64{bottom:402.266667pt;}
.y63{bottom:415.386667pt;}
.y135{bottom:418.946667pt;}
.y106{bottom:419.106667pt;}
.y29{bottom:419.426667pt;}
.ybd{bottom:419.586667pt;}
.yde{bottom:420.226667pt;}
.ya7{bottom:421.346667pt;}
.y89{bottom:422.146667pt;}
.y97{bottom:426.146667pt;}
.y62{bottom:433.186667pt;}
.y134{bottom:436.386667pt;}
.y28{bottom:439.906667pt;}
.y105{bottom:447.266667pt;}
.ybc{bottom:447.746667pt;}
.ydd{bottom:448.386667pt;}
.ya6{bottom:449.506667pt;}
.y113{bottom:450.146667pt;}
.y88{bottom:450.306667pt;}
.y61{bottom:450.946667pt;}
.y133{bottom:455.106667pt;}
.y27{bottom:460.226667pt;}
.y60{bottom:468.706667pt;}
.y132{bottom:470.946667pt;}
.y104{bottom:475.266667pt;}
.ybb{bottom:475.746667pt;}
.ydc{bottom:476.386667pt;}
.ya5{bottom:477.506667pt;}
.y87{bottom:478.466667pt;}
.y26{bottom:480.706667pt;}
.y111{bottom:482.466667pt;}
.y5f{bottom:486.466667pt;}
.y25{bottom:501.026667pt;}
.y103{bottom:503.426667pt;}
.yba{bottom:503.906667pt;}
.y5e{bottom:504.066667pt;}
.ydb{bottom:504.706667pt;}
.ya4{bottom:505.666667pt;}
.ye9{bottom:506.466667pt;}
.y86{bottom:506.626667pt;}
.y5d{bottom:508.706667pt;}
.y131{bottom:513.346667pt;}
.y24{bottom:521.506667pt;}
.y5c{bottom:521.826667pt;}
.y102{bottom:531.586667pt;}
.yb9{bottom:532.066667pt;}
.yda{bottom:532.706667pt;}
.ya3{bottom:533.826667pt;}
.ye8{bottom:534.626667pt;}
.y85{bottom:534.786667pt;}
.y5b{bottom:539.586667pt;}
.y23{bottom:541.826667pt;}
.y130{bottom:555.586667pt;}
.y5a{bottom:557.346667pt;}
.y101{bottom:559.746667pt;}
.yb8{bottom:560.226667pt;}
.yd9{bottom:561.026667pt;}
.ya2{bottom:561.826667pt;}
.y22{bottom:562.306667pt;}
.y84{bottom:562.786667pt;}
.y59{bottom:575.106667pt;}
.y21{bottom:582.626667pt;}
.y100{bottom:587.906667pt;}
.yb7{bottom:588.386667pt;}
.yd8{bottom:589.026667pt;}
.y83{bottom:590.946667pt;}
.y58{bottom:592.866667pt;}
.y12f{bottom:597.986667pt;}
.y20{bottom:603.106667pt;}
.y57{bottom:610.466667pt;}
.y56{bottom:615.106667pt;}
.yff{bottom:616.066667pt;}
.yb6{bottom:616.546667pt;}
.yd7{bottom:617.346667pt;}
.ye7{bottom:618.973333pt;}
.y82{bottom:619.133333pt;}
.y1f{bottom:623.453333pt;}
.y55{bottom:628.893333pt;}
.y12b{bottom:640.253333pt;}
.y1e{bottom:643.933333pt;}
.yfe{bottom:644.253333pt;}
.yb5{bottom:644.573333pt;}
.yd6{bottom:645.373333pt;}
.y81{bottom:647.293333pt;}
.y1d{bottom:664.253333pt;}
.yfd{bottom:672.253333pt;}
.yb4{bottom:673.693333pt;}
.y80{bottom:675.453333pt;}
.y54{bottom:682.493333pt;}
.y1c{bottom:684.573333pt;}
.y12a{bottom:686.813333pt;}
.y146{bottom:697.213333pt;}
.yfc{bottom:700.413333pt;}
.yb3{bottom:701.853333pt;}
.ye6{bottom:703.453333pt;}
.y7f{bottom:703.613333pt;}
.y129{bottom:704.733333pt;}
.y1b{bottom:705.053333pt;}
.y52{bottom:710.653333pt;}
.y53{bottom:714.653333pt;}
.y145{bottom:716.733333pt;}
.y128{bottom:722.013333pt;}
.y1a{bottom:725.373333pt;}
.yfb{bottom:728.573333pt;}
.yb2{bottom:729.853333pt;}
.yd5{bottom:730.013333pt;}
.y7e{bottom:731.773333pt;}
.y144{bottom:736.413333pt;}
.y51{bottom:738.813333pt;}
.y127{bottom:741.533333pt;}
.y19{bottom:745.853333pt;}
.yfa{bottom:747.133333pt;}
.y143{bottom:755.133333pt;}
.y123{bottom:757.373333pt;}
.yd4{bottom:758.013333pt;}
.yb1{bottom:758.973333pt;}
.y7d{bottom:759.773333pt;}
.yf9{bottom:765.693333pt;}
.y18{bottom:766.173333pt;}
.y50{bottom:766.813333pt;}
.y142{bottom:773.853333pt;}
.yf8{bottom:782.813333pt;}
.yd3{bottom:786.173333pt;}
.y17{bottom:786.653333pt;}
.yb0{bottom:786.973333pt;}
.y7c{bottom:787.933333pt;}
.y141{bottom:789.053333pt;}
.y14c{bottom:789.280000pt;}
.y4f{bottom:794.973333pt;}
.yf7{bottom:800.093333pt;}
.y11f{bottom:806.813333pt;}
.y16{bottom:806.973333pt;}
.yd2{bottom:814.333333pt;}
.y7b{bottom:816.093333pt;}
.yf6{bottom:817.213333pt;}
.y4e{bottom:823.173333pt;}
.y15{bottom:827.493333pt;}
.yf5{bottom:834.533333pt;}
.yd1{bottom:842.533333pt;}
.y7a{bottom:844.293333pt;}
.y14{bottom:847.813333pt;}
.y4c{bottom:851.333333pt;}
.yf4{bottom:851.653333pt;}
.y4d{bottom:855.333333pt;}
.y11d{bottom:859.493333pt;}
.yc{bottom:866.213333pt;}
.yf3{bottom:868.933333pt;}
.yd0{bottom:870.693333pt;}
.y79{bottom:872.453333pt;}
.y4a{bottom:879.493333pt;}
.y7{bottom:880.613333pt;}
.y4b{bottom:883.493333pt;}
.yf2{bottom:886.053333pt;}
.ycf{bottom:898.693333pt;}
.y78{bottom:900.613333pt;}
.yf1{bottom:903.333333pt;}
.y49{bottom:904.453333pt;}
.y118{bottom:915.973333pt;}
.yf0{bottom:920.453333pt;}
.yce{bottom:927.813333pt;}
.y48{bottom:928.773333pt;}
.yef{bottom:936.293333pt;}
.y47{bottom:947.973333pt;}
.y116{bottom:952.453333pt;}
.ycd{bottom:955.973333pt;}
.y77{bottom:956.773333pt;}
.y4{bottom:968.280000pt;}
.y2{bottom:968.293333pt;}
.y46{bottom:969.893333pt;}
.y115{bottom:976.293333pt;}
.ycc{bottom:984.133333pt;}
.y76{bottom:984.933333pt;}
.y45{bottom:991.813333pt;}
.y114{bottom:994.213333pt;}
.ycb{bottom:1012.133333pt;}
.y44{bottom:1012.933333pt;}
.y75{bottom:1013.093333pt;}
.y3d{bottom:1033.280000pt;}
.y3c{bottom:1051.360000pt;}
.y3a{bottom:1067.200000pt;}
.y1{bottom:1071.200000pt;}
.y38{bottom:1081.396000pt;}
.hf{height:17.760000pt;}
.hd{height:18.200000pt;}
.h1b{height:19.186667pt;}
.h19{height:27.843750pt;}
.h17{height:31.708125pt;}
.h11{height:31.840000pt;}
.h9{height:32.000000pt;}
.h1d{height:35.666667pt;}
.h16{height:37.310625pt;}
.he{height:38.854167pt;}
.h24{height:41.586667pt;}
.h22{height:41.626667pt;}
.h25{height:41.632000pt;}
.h23{height:41.746667pt;}
.h21{height:41.760000pt;}
.h13{height:42.140625pt;}
.h4{height:44.039062pt;}
.hb{height:45.935313pt;}
.h27{height:47.742188pt;}
.h10{height:48.343750pt;}
.h6{height:48.736562pt;}
.h1f{height:48.800000pt;}
.h1a{height:51.232500pt;}
.h1e{height:52.020000pt;}
.ha{height:52.834688pt;}
.h29{height:52.962000pt;}
.h8{height:54.021250pt;}
.h14{height:55.687500pt;}
.hc{height:56.187500pt;}
.h2{height:58.563750pt;}
.h1c{height:60.519362pt;}
.h20{height:63.656250pt;}
.h12{height:65.739375pt;}
.h18{height:65.781915pt;}
.h7{height:87.026667pt;}
.h3{height:98.752000pt;}
.h5{height:98.760000pt;}
.h26{height:238.880000pt;}
.h28{height:296.000000pt;}
.h1{height:1122.666667pt;}
.h15{height:1122.706547pt;}
.h0{height:1122.720000pt;}
.wc{width:44.152000pt;}
.w11{width:44.312000pt;}
.w5{width:84.626667pt;}
.we{width:97.472000pt;}
.wf{width:101.266667pt;}
.w10{width:105.138667pt;}
.w12{width:105.458667pt;}
.wb{width:188.173333pt;}
.wa{width:188.186667pt;}
.w9{width:188.338667pt;}
.wd{width:215.373333pt;}
.w2{width:283.066667pt;}
.w6{width:343.906133pt;}
.w13{width:371.040000pt;}
.w14{width:376.000000pt;}
.w4{width:481.680000pt;}
.w3{width:566.320000pt;}
.w7{width:567.120000pt;}
.w8{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:4.312000pt;}
.x2{left:7.192000pt;}
.x4{left:14.392000pt;}
.x3e{left:29.413333pt;}
.x6{left:34.560000pt;}
.x35{left:36.960000pt;}
.x34{left:43.040000pt;}
.xc{left:56.480000pt;}
.x19{left:58.720000pt;}
.x20{left:60.960000pt;}
.x36{left:64.133333pt;}
.x30{left:70.866667pt;}
.x37{left:72.000000pt;}
.x42{left:74.946667pt;}
.x2f{left:78.586667pt;}
.x3{left:79.826667pt;}
.x43{left:82.786667pt;}
.x2e{left:85.946667pt;}
.x2d{left:89.586667pt;}
.x1{left:113.472000pt;}
.x16{left:116.672000pt;}
.x17{left:117.952000pt;}
.x9{left:119.124533pt;}
.x3f{left:121.826667pt;}
.x38{left:123.746667pt;}
.x39{left:125.826667pt;}
.xd{left:133.946667pt;}
.x1e{left:137.466667pt;}
.xe{left:139.546667pt;}
.x26{left:144.986667pt;}
.x28{left:154.106667pt;}
.x44{left:156.093333pt;}
.x29{left:158.920000pt;}
.x7{left:160.666667pt;}
.x1f{left:162.586667pt;}
.x27{left:168.986667pt;}
.xf{left:171.546667pt;}
.x3c{left:181.920000pt;}
.x3a{left:183.360000pt;}
.x3b{left:189.920000pt;}
.x41{left:208.800000pt;}
.x33{left:211.360000pt;}
.x47{left:235.773333pt;}
.x45{left:237.213333pt;}
.x46{left:243.773333pt;}
.x3d{left:247.386667pt;}
.x1a{left:250.726667pt;}
.x1b{left:256.706667pt;}
.x24{left:303.106667pt;}
.x15{left:305.506667pt;}
.xa{left:309.653333pt;}
.x40{left:329.093333pt;}
.x48{left:334.146667pt;}
.x2a{left:374.946667pt;}
.x8{left:397.026667pt;}
.x18{left:434.133333pt;}
.x2b{left:473.066667pt;}
.x25{left:492.106667pt;}
.x21{left:493.993333pt;}
.x22{left:499.933333pt;}
.x10{left:505.693333pt;}
.x12{left:557.533333pt;}
.x13{left:570.153333pt;}
.x2c{left:574.986667pt;}
.x14{left:576.093333pt;}
.x1c{left:580.393333pt;}
.x31{left:582.493333pt;}
.x32{left:584.893333pt;}
.x1d{left:586.333333pt;}
.x5{left:595.173333pt;}
.x11{left:674.673333pt;}
.xb{left:680.613333pt;}
}




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