
    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_82625f4961506670c7b25af4.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_a77ecd9b9bf2a1c067b83372.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_301b8611127b6adb7e2427be.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_960b4d6c33c281a1bb8c4e94.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_7b668ec8c1177a2d5052e982.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_2504ddc5f962721ef5f2fc55.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090820;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_60ac8d31d19da74b6fcb7b63.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_26dad0484c68f226b71221e0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_453f48c23ab8ccd9c3f707e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_9d2a26b5ccc37f7b0a6940d4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899902;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_c25608fa75403ea68db1d690.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.056152;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);}
.v4{vertical-align:-75.600000px;}
.v3{vertical-align:-72.000000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls21{letter-spacing:-1.512000px;}
.ls16{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.576000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls20{letter-spacing:-0.432000px;}
.ls1b{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.206400px;}
.ls1e{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.305400px;}
.ls7{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.612000px;}
.ls1f{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.864000px;}
.ls6{letter-spacing:1.080000px;}
.lse{letter-spacing:2.160000px;}
.lsf{letter-spacing:30.360000px;}
.ls0{letter-spacing:58.500000px;}
.ls14{letter-spacing:84.360000px;}
.ls19{letter-spacing:138.360000px;}
.ls15{letter-spacing:430.020000px;}
.ls17{letter-spacing:459.000000px;}
.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:-18.864000px;}
.ws11{word-spacing:-18.504000px;}
.wsb{word-spacing:-18.288000px;}
.ws13{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws14{word-spacing:-17.568000px;}
.ws12{word-spacing:-17.496000px;}
.ws9{word-spacing:-17.424000px;}
.wsf{word-spacing:-17.208000px;}
.ws15{word-spacing:-16.488000px;}
.ws5{word-spacing:-15.552000px;}
.ws6{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.146400px;}
.ws4{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws0{word-spacing:-12.186000px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
.wse{word-spacing:159.948000px;}
._1c{margin-left:-4.896000px;}
._10{margin-left:-3.705120px;}
._6{margin-left:-2.362080px;}
._1{margin-left:-1.152000px;}
._0{width:1.085520px;}
._4{width:3.041760px;}
._e{width:4.281120px;}
._d{width:5.378400px;}
._f{width:6.742080px;}
._7{width:8.246880px;}
._17{width:9.254880px;}
._5{width:10.267440px;}
._19{width:11.348160px;}
._3{width:12.542640px;}
._15{width:13.608000px;}
._16{width:14.760000px;}
._8{width:16.005840px;}
._a{width:17.390160px;}
._9{width:18.465840px;}
._18{width:19.656240px;}
._13{width:21.240000px;}
._14{width:22.248000px;}
._1d{width:24.336000px;}
._1e{width:25.373520px;}
._25{width:26.568000px;}
._26{width:27.696960px;}
._1f{width:30.600000px;}
._1a{width:32.976000px;}
._1b{width:34.200000px;}
._28{width:36.024000px;}
._27{width:37.128000px;}
._22{width:44.640000px;}
._23{width:47.211600px;}
._c{width:52.114800px;}
._b{width:53.660400px;}
._2{width:58.494480px;}
._20{width:119.124000px;}
._21{width:139.644000px;}
._24{width:846.156000px;}
._11{width:849.185760px;}
._12{width:1294.860000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:3.240000px;}
.yf{bottom:3.960000px;}
.y9{bottom:5.220000px;}
.y13{bottom:8.460000px;}
.y18{bottom:12.240000px;}
.y13d{bottom:13.245000px;}
.y7{bottom:17.100000px;}
.y2c{bottom:20.340000px;}
.y2e{bottom:20.520000px;}
.ye{bottom:24.660000px;}
.y12{bottom:25.605000px;}
.y137{bottom:30.810000px;}
.y17{bottom:34.740000px;}
.y2b{bottom:37.620000px;}
.y6{bottom:37.800000px;}
.y11{bottom:37.845000px;}
.yd{bottom:45.360000px;}
.y16{bottom:46.800000px;}
.y138{bottom:52.920000px;}
.y2a{bottom:54.900000px;}
.y3{bottom:56.700000px;}
.y5{bottom:59.760000px;}
.yc{bottom:66.060000px;}
.y15{bottom:69.300000px;}
.y29{bottom:72.180000px;}
.y139{bottom:75.030000px;}
.y37{bottom:75.060000px;}
.y2{bottom:75.600000px;}
.yb{bottom:86.760000px;}
.y28{bottom:89.460000px;}
.y13a{bottom:97.170000px;}
.y27{bottom:106.740000px;}
.y169{bottom:111.780000px;}
.yee{bottom:115.560000px;}
.y13b{bottom:119.265000px;}
.y90{bottom:120.060000px;}
.yba{bottom:121.860000px;}
.y26{bottom:123.840000px;}
.yd1{bottom:126.180000px;}
.yed{bottom:136.296000px;}
.y68{bottom:137.196000px;}
.y8f{bottom:140.796000px;}
.y25{bottom:141.120000px;}
.y13c{bottom:141.375000px;}
.yb9{bottom:142.596000px;}
.yd0{bottom:146.916000px;}
.y1aa{bottom:147.096000px;}
.y15d{bottom:149.976000px;}
.y168{bottom:150.510000px;}
.y33{bottom:155.010000px;}
.yec{bottom:156.990000px;}
.y67{bottom:157.890000px;}
.y24{bottom:158.430000px;}
.y167{bottom:163.110000px;}
.yb8{bottom:163.290000px;}
.y18d{bottom:165.990000px;}
.y13e{bottom:167.145000px;}
.ycf{bottom:167.610000px;}
.y8e{bottom:170.490000px;}
.y15c{bottom:170.670000px;}
.y32{bottom:172.290000px;}
.y23{bottom:175.710000px;}
.y1a9{bottom:176.790000px;}
.y66{bottom:178.590000px;}
.yb7{bottom:183.990000px;}
.yeb{bottom:186.690000px;}
.yce{bottom:188.310000px;}
.y31{bottom:189.570000px;}
.y15b{bottom:191.370000px;}
.y22{bottom:192.990000px;}
.y1a8{bottom:197.490000px;}
.y65{bottom:199.290000px;}
.y8d{bottom:200.190000px;}
.y125{bottom:203.610000px;}
.yb6{bottom:204.690000px;}
.y30{bottom:206.850000px;}
.yea{bottom:207.390000px;}
.ycd{bottom:209.010000px;}
.y21{bottom:210.270000px;}
.y15a{bottom:211.710000px;}
.y18c{bottom:216.390000px;}
.y64{bottom:219.990000px;}
.y8c{bottom:220.890000px;}
.yb5{bottom:225.390000px;}
.y1a7{bottom:227.190000px;}
.y20{bottom:227.370000px;}
.ye9{bottom:228.090000px;}
.ycc{bottom:229.710000px;}
.y159{bottom:230.790000px;}
.y124{bottom:235.290000px;}
.y18b{bottom:237.090000px;}
.y63{bottom:240.690000px;}
.y1f{bottom:244.650000px;}
.yb4{bottom:246.090000px;}
.y1a6{bottom:247.890000px;}
.ye8{bottom:248.790000px;}
.ycb{bottom:250.410000px;}
.y8b{bottom:250.590000px;}
.y104{bottom:256.170000px;}
.y62{bottom:261.390000px;}
.y1e{bottom:261.930000px;}
.y151{bottom:262.830000px;}
.yb3{bottom:266.790000px;}
.ye7{bottom:269.490000px;}
.yca{bottom:271.110000px;}
.y8a{bottom:271.290000px;}
.y103{bottom:276.870000px;}
.y1a5{bottom:277.590000px;}
.y135{bottom:278.310000px;}
.y1d{bottom:279.210000px;}
.y61{bottom:282.090000px;}
.y150{bottom:283.530000px;}
.yb2{bottom:287.490000px;}
.yc9{bottom:291.450000px;}
.y89{bottom:291.990000px;}
.y134{bottom:294.510000px;}
.y1c{bottom:296.490000px;}
.y102{bottom:297.570000px;}
.y1a4{bottom:298.290000px;}
.ye6{bottom:299.190000px;}
.y60{bottom:302.790000px;}
.y14f{bottom:304.230000px;}
.yb1{bottom:308.190000px;}
.y133{bottom:309.990000px;}
.yc8{bottom:310.530000px;}
.y88{bottom:312.510000px;}
.ye5{bottom:319.890000px;}
.y116{bottom:321.150000px;}
.y5f{bottom:323.490000px;}
.y14e{bottom:324.930000px;}
.y101{bottom:327.270000px;}
.y1a3{bottom:327.810000px;}
.yb0{bottom:328.890000px;}
.yc7{bottom:329.430000px;}
.y87{bottom:333.210000px;}
.y18a{bottom:337.890000px;}
.ye4{bottom:340.590000px;}
.y115{bottom:341.850000px;}
.y5e{bottom:344.190000px;}
.y14d{bottom:345.630000px;}
.y100{bottom:347.970000px;}
.yc6{bottom:348.510000px;}
.yaf{bottom:349.590000px;}
.y166{bottom:353.550000px;}
.y86{bottom:353.910000px;}
.y189{bottom:358.590000px;}
.y114{bottom:362.550000px;}
.y5d{bottom:364.890000px;}
.y14c{bottom:366.330000px;}
.yc5{bottom:367.410000px;}
.yff{bottom:368.670000px;}
.yae{bottom:370.290000px;}
.y165{bottom:372.450000px;}
.y85{bottom:374.610000px;}
.y1a2{bottom:378.210000px;}
.y188{bottom:379.290000px;}
.y113{bottom:383.250000px;}
.y5c{bottom:385.590000px;}
.yc4{bottom:386.310000px;}
.y14b{bottom:387.030000px;}
.y164{bottom:387.975000px;}
.yfe{bottom:389.415000px;}
.yad{bottom:391.035000px;}
.y1a1{bottom:398.955000px;}
.y187{bottom:400.035000px;}
.y84{bottom:404.355000px;}
.yc3{bottom:405.435000px;}
.y5b{bottom:406.335000px;}
.y14a{bottom:407.775000px;}
.yfd{bottom:410.115000px;}
.yac{bottom:411.555000px;}
.y112{bottom:412.995000px;}
.y1a0{bottom:419.655000px;}
.yc2{bottom:420.735000px;}
.y83{bottom:425.055000px;}
.y5a{bottom:427.035000px;}
.y149{bottom:428.475000px;}
.y186{bottom:429.735000px;}
.yab{bottom:432.255000px;}
.y111{bottom:433.695000px;}
.yfc{bottom:439.815000px;}
.y1b3{bottom:440.355000px;}
.y158{bottom:441.255000px;}
.y82{bottom:445.755000px;}
.y59{bottom:447.555000px;}
.y123{bottom:448.455000px;}
.y148{bottom:449.175000px;}
.y19f{bottom:449.355000px;}
.yaa{bottom:452.955000px;}
.y110{bottom:454.395000px;}
.y185{bottom:459.435000px;}
.yfb{bottom:460.515000px;}
.y1b2{bottom:461.055000px;}
.y81{bottom:466.455000px;}
.y157{bottom:467.175000px;}
.y58{bottom:468.255000px;}
.y34{bottom:469.155000px;}
.y147{bottom:469.875000px;}
.y19e{bottom:470.055000px;}
.ya9{bottom:473.655000px;}
.yfa{bottom:481.215000px;}
.y156{bottom:482.475000px;}
.y10f{bottom:484.095000px;}
.y1b{bottom:485.715000px;}
.y80{bottom:487.155000px;}
.y57{bottom:488.955000px;}
.y184{bottom:489.135000px;}
.y122{bottom:489.855000px;}
.y146{bottom:490.575000px;}
.y19d{bottom:490.755000px;}
.ya8{bottom:494.355000px;}
.y10e{bottom:504.795000px;}
.y132{bottom:507.315000px;}
.y56{bottom:509.655000px;}
.y121{bottom:510.555000px;}
.yf9{bottom:510.915000px;}
.y145{bottom:511.275000px;}
.y1b1{bottom:511.455000px;}
.ya7{bottom:515.055000px;}
.y7f{bottom:516.855000px;}
.y183{bottom:518.835000px;}
.y19c{bottom:520.455000px;}
.ye3{bottom:524.055000px;}
.y10d{bottom:525.495000px;}
.y131{bottom:526.575000px;}
.y55{bottom:530.355000px;}
.y144{bottom:530.535000px;}
.y120{bottom:531.255000px;}
.yf8{bottom:531.615000px;}
.y1b0{bottom:532.155000px;}
.ya6{bottom:535.755000px;}
.y182{bottom:539.535000px;}
.y19b{bottom:541.155000px;}
.y143{bottom:544.575000px;}
.ye2{bottom:544.755000px;}
.y10c{bottom:546.195000px;}
.y7e{bottom:546.555000px;}
.y130{bottom:547.275000px;}
.y54{bottom:551.055000px;}
.y11f{bottom:551.955000px;}
.yf7{bottom:552.315000px;}
.ya5{bottom:556.455000px;}
.y142{bottom:560.955000px;}
.y19a{bottom:561.855000px;}
.ye1{bottom:565.455000px;}
.y10b{bottom:566.895000px;}
.y12f{bottom:567.975000px;}
.y181{bottom:569.235000px;}
.y53{bottom:571.755000px;}
.y11e{bottom:572.655000px;}
.y7d{bottom:576.255000px;}
.ya4{bottom:577.155000px;}
.y163{bottom:579.315000px;}
.yf6{bottom:582.015000px;}
.y199{bottom:582.555000px;}
.ye0{bottom:586.155000px;}
.y12e{bottom:588.675000px;}
.y1af{bottom:591.555000px;}
.y52{bottom:592.455000px;}
.y11d{bottom:593.355000px;}
.y10a{bottom:596.595000px;}
.ya3{bottom:597.855000px;}
.y162{bottom:598.215000px;}
.y180{bottom:598.935000px;}
.yf5{bottom:602.715000px;}
.y7c{bottom:605.955000px;}
.ydf{bottom:606.855000px;}
.y12d{bottom:609.375000px;}
.y198{bottom:612.255000px;}
.y51{bottom:613.155000px;}
.y161{bottom:613.515000px;}
.y11c{bottom:614.055000px;}
.y109{bottom:617.295000px;}
.ya2{bottom:618.555000px;}
.y17f{bottom:619.635000px;}
.yf4{bottom:623.415000px;}
.yde{bottom:627.555000px;}
.y12c{bottom:630.075000px;}
.y197{bottom:632.955000px;}
.y50{bottom:633.855000px;}
.y11b{bottom:634.755000px;}
.y7b{bottom:635.655000px;}
.ya1{bottom:639.255000px;}
.yf3{bottom:644.145000px;}
.y108{bottom:647.025000px;}
.ydd{bottom:648.285000px;}
.y17e{bottom:649.365000px;}
.y196{bottom:653.685000px;}
.y4f{bottom:654.585000px;}
.y12b{bottom:659.805000px;}
.ya0{bottom:659.985000px;}
.y1ae{bottom:662.685000px;}
.y11a{bottom:664.485000px;}
.y7a{bottom:665.385000px;}
.yf2{bottom:673.845000px;}
.y4e{bottom:675.285000px;}
.y107{bottom:676.365000px;}
.ydc{bottom:677.985000px;}
.y17d{bottom:679.065000px;}
.y9f{bottom:680.685000px;}
.y195{bottom:683.385000px;}
.y119{bottom:685.005000px;}
.y12a{bottom:688.965000px;}
.y79{bottom:695.085000px;}
.y4d{bottom:695.985000px;}
.ydb{bottom:698.685000px;}
.y17c{bottom:699.765000px;}
.y106{bottom:700.845000px;}
.y9e{bottom:701.385000px;}
.yf1{bottom:703.185000px;}
.y194{bottom:704.085000px;}
.y129{bottom:704.445000px;}
.y2f{bottom:708.765000px;}
.y118{bottom:709.125000px;}
.y1ad{bottom:713.085000px;}
.y4c{bottom:716.685000px;}
.yda{bottom:719.385000px;}
.y17b{bottom:720.465000px;}
.y9d{bottom:722.085000px;}
.y78{bottom:724.785000px;}
.yf0{bottom:727.665000px;}
.y2d{bottom:728.205000px;}
.y155{bottom:728.385000px;}
.y1ac{bottom:733.785000px;}
.y4b{bottom:737.385000px;}
.yd9{bottom:740.085000px;}
.y17a{bottom:741.165000px;}
.y9c{bottom:742.785000px;}
.y154{bottom:743.685000px;}
.y77{bottom:754.485000px;}
.y4a{bottom:758.085000px;}
.yd8{bottom:760.785000px;}
.y179{bottom:761.865000px;}
.y19{bottom:771.405000px;}
.y9b{bottom:772.485000px;}
.y193{bottom:775.185000px;}
.y49{bottom:778.785000px;}
.y178{bottom:782.565000px;}
.y76{bottom:784.185000px;}
.yd7{bottom:790.485000px;}
.y9a{bottom:793.185000px;}
.y192{bottom:795.885000px;}
.y48{bottom:799.485000px;}
.y177{bottom:803.265000px;}
.y14{bottom:803.985000px;}
.y1ab{bottom:804.885000px;}
.y160{bottom:806.505000px;}
.y75{bottom:813.885000px;}
.y47{bottom:820.185000px;}
.y99{bottom:822.885000px;}
.y15f{bottom:823.425000px;}
.y176{bottom:823.965000px;}
.y191{bottom:825.585000px;}
.y74{bottom:834.585000px;}
.y46{bottom:840.885000px;}
.y98{bottom:843.585000px;}
.y175{bottom:844.665000px;}
.y190{bottom:846.285000px;}
.yd6{bottom:849.885000px;}
.y73{bottom:855.285000px;}
.y45{bottom:861.585000px;}
.y174{bottom:865.365000px;}
.yd5{bottom:870.585000px;}
.y97{bottom:873.285000px;}
.y141{bottom:874.725000px;}
.y72{bottom:875.985000px;}
.y10{bottom:882.105000px;}
.y44{bottom:882.285000px;}
.y173{bottom:886.065000px;}
.yd4{bottom:891.285000px;}
.y140{bottom:893.670000px;}
.y96{bottom:894.030000px;}
.y71{bottom:896.730000px;}
.y43{bottom:903.030000px;}
.y172{bottom:906.810000px;}
.y117{bottom:911.670000px;}
.yd3{bottom:912.030000px;}
.y95{bottom:914.730000px;}
.y105{bottom:917.250000px;}
.y70{bottom:917.430000px;}
.y13f{bottom:917.970000px;}
.yef{bottom:918.690000px;}
.y42{bottom:923.730000px;}
.y18f{bottom:926.430000px;}
.y171{bottom:927.510000px;}
.y128{bottom:928.770000px;}
.yd2{bottom:932.730000px;}
.y94{bottom:935.430000px;}
.ya{bottom:935.790000px;}
.y41{bottom:944.430000px;}
.y6f{bottom:947.130000px;}
.y127{bottom:947.670000px;}
.y170{bottom:948.210000px;}
.yc1{bottom:953.430000px;}
.y93{bottom:956.130000px;}
.y153{bottom:961.170000px;}
.y126{bottom:962.970000px;}
.y136{bottom:964.080000px;}
.y40{bottom:965.130000px;}
.y18e{bottom:967.830000px;}
.yc0{bottom:974.130000px;}
.y152{bottom:976.470000px;}
.y6e{bottom:976.830000px;}
.y16f{bottom:977.910000px;}
.y3f{bottom:985.830000px;}
.ybf{bottom:994.830000px;}
.y15e{bottom:996.270000px;}
.y6d{bottom:997.530000px;}
.y16e{bottom:998.610000px;}
.y3e{bottom:1006.530000px;}
.ybe{bottom:1015.530000px;}
.y6c{bottom:1018.230000px;}
.y3d{bottom:1027.230000px;}
.y16d{bottom:1033.170000px;}
.ybd{bottom:1036.230000px;}
.y6b{bottom:1038.930000px;}
.y8{bottom:1040.010000px;}
.y3c{bottom:1047.930000px;}
.y16c{bottom:1051.170000px;}
.ybc{bottom:1056.930000px;}
.y6a{bottom:1059.630000px;}
.y4{bottom:1061.250000px;}
.y3b{bottom:1068.630000px;}
.y16b{bottom:1069.170000px;}
.ybb{bottom:1077.630000px;}
.y69{bottom:1080.330000px;}
.y3a{bottom:1089.330000px;}
.y92{bottom:1098.330000px;}
.y16a{bottom:1099.590000px;}
.y39{bottom:1110.030000px;}
.y91{bottom:1119.030000px;}
.y38{bottom:1139.730000px;}
.y36{bottom:1175.940000px;}
.y35{bottom:1195.380000px;}
.y1{bottom:1196.820000px;}
.h13{height:17.280000px;}
.h7{height:21.240000px;}
.h10{height:26.280000px;}
.h12{height:34.560000px;}
.hf{height:38.158594px;}
.hd{height:39.183750px;}
.h1f{height:40.948242px;}
.h20{height:47.344922px;}
.h16{height:48.088125px;}
.h1d{height:52.971680px;}
.h22{height:52.998047px;}
.h15{height:53.302500px;}
.hb{height:53.676000px;}
.h1c{height:54.421875px;}
.h2{height:55.291992px;}
.h8{height:58.651172px;}
.h1a{height:59.383125px;}
.hc{height:60.226875px;}
.h17{height:64.546875px;}
.h21{height:64.978594px;}
.h3{height:65.010937px;}
.h19{height:66.757500px;}
.h6{height:70.664062px;}
.ha{height:72.562500px;}
.h18{height:74.953125px;}
.he{height:78.120000px;}
.h1b{height:82.676953px;}
.h23{height:93.983203px;}
.h4{height:95.256000px;}
.h5{height:96.508125px;}
.h9{height:103.500000px;}
.h1e{height:192.420000px;}
.h14{height:220.890000px;}
.h11{height:311.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:148.860000px;}
.wb{width:163.830000px;}
.wd{width:169.200000px;}
.we{width:170.490000px;}
.wc{width:173.190000px;}
.w5{width:206.670000px;}
.w4{width:208.650000px;}
.w6{width:264.990000px;}
.wa{width:336.960000px;}
.w9{width:531.645000px;}
.w3{width:680.325000px;}
.w7{width:680.505000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x2c{left:9.975000px;}
.x2b{left:20.190000px;}
.xe{left:22.680000px;}
.x12{left:27.585000px;}
.xa{left:41.040000px;}
.x8{left:53.994000px;}
.x7{left:82.254000px;}
.x10{left:95.934000px;}
.x4{left:106.416000px;}
.x6{left:109.434000px;}
.x1a{left:117.575987px;}
.x19{left:120.455987px;}
.x17{left:121.895987px;}
.x27{left:127.655987px;}
.x18{left:128.735987px;}
.x16{left:131.255987px;}
.xf{left:132.474000px;}
.x23{left:138.995987px;}
.x2d{left:142.485000px;}
.x26{left:146.195987px;}
.x14{left:148.895987px;}
.x25{left:150.869987px;}
.x3{left:159.509987px;}
.x2f{left:162.389987px;}
.x24{left:180.929987px;}
.x29{left:186.509987px;}
.x21{left:225.389987px;}
.x1b{left:229.889987px;}
.x1f{left:233.309987px;}
.x20{left:239.069987px;}
.x11{left:255.270000px;}
.x3b{left:271.695000px;}
.x2a{left:277.560000px;}
.x38{left:292.934987px;}
.x35{left:299.054987px;}
.x5{left:301.359000px;}
.x39{left:302.654987px;}
.x33{left:306.254987px;}
.x9{left:315.075000px;}
.xd{left:340.269000px;}
.x1{left:372.494987px;}
.x13{left:392.114987px;}
.x2{left:434.054987px;}
.x1c{left:446.504987px;}
.xb{left:521.745000px;}
.x22{left:615.704987px;}
.x2e{left:622.049987px;}
.x28{left:623.129987px;}
.x36{left:659.669987px;}
.x3a{left:671.549987px;}
.x37{left:674.969987px;}
.x30{left:683.789987px;}
.x34{left:686.669987px;}
.x32{left:691.889987px;}
.x31{left:694.229987px;}
.x15{left:765.509987px;}
.x1e{left:786.749987px;}
.x1d{left:788.189987px;}
@media print{
.v4{vertical-align:-67.200000pt;}
.v3{vertical-align:-64.000000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls21{letter-spacing:-1.344000pt;}
.ls16{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls20{letter-spacing:-0.384000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.271467pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.544000pt;}
.ls1f{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.768000pt;}
.ls6{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.920000pt;}
.lsf{letter-spacing:26.986667pt;}
.ls0{letter-spacing:52.000000pt;}
.ls14{letter-spacing:74.986667pt;}
.ls19{letter-spacing:122.986667pt;}
.ls15{letter-spacing:382.240000pt;}
.ls17{letter-spacing:408.000000pt;}
.ws8{word-spacing:-16.768000pt;}
.ws11{word-spacing:-16.448000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws13{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws14{word-spacing:-15.616000pt;}
.ws12{word-spacing:-15.552000pt;}
.ws9{word-spacing:-15.488000pt;}
.wsf{word-spacing:-15.296000pt;}
.ws15{word-spacing:-14.656000pt;}
.ws5{word-spacing:-13.824000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.463467pt;}
.ws4{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
.wse{word-spacing:142.176000pt;}
._1c{margin-left:-4.352000pt;}
._10{margin-left:-3.293440pt;}
._6{margin-left:-2.099627pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.964907pt;}
._4{width:2.703787pt;}
._e{width:3.805440pt;}
._d{width:4.780800pt;}
._f{width:5.992960pt;}
._7{width:7.330560pt;}
._17{width:8.226560pt;}
._5{width:9.126613pt;}
._19{width:10.087253pt;}
._3{width:11.149013pt;}
._15{width:12.096000pt;}
._16{width:13.120000pt;}
._8{width:14.227413pt;}
._a{width:15.457920pt;}
._9{width:16.414080pt;}
._18{width:17.472213pt;}
._13{width:18.880000pt;}
._14{width:19.776000pt;}
._1d{width:21.632000pt;}
._1e{width:22.554240pt;}
._25{width:23.616000pt;}
._26{width:24.619520pt;}
._1f{width:27.200000pt;}
._1a{width:29.312000pt;}
._1b{width:30.400000pt;}
._28{width:32.021333pt;}
._27{width:33.002667pt;}
._22{width:39.680000pt;}
._23{width:41.965867pt;}
._c{width:46.324267pt;}
._b{width:47.698133pt;}
._2{width:51.995093pt;}
._20{width:105.888000pt;}
._21{width:124.128000pt;}
._24{width:752.138667pt;}
._11{width:754.831787pt;}
._12{width:1150.986667pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:2.880000pt;}
.yf{bottom:3.520000pt;}
.y9{bottom:4.640000pt;}
.y13{bottom:7.520000pt;}
.y18{bottom:10.880000pt;}
.y13d{bottom:11.773333pt;}
.y7{bottom:15.200000pt;}
.y2c{bottom:18.080000pt;}
.y2e{bottom:18.240000pt;}
.ye{bottom:21.920000pt;}
.y12{bottom:22.760000pt;}
.y137{bottom:27.386667pt;}
.y17{bottom:30.880000pt;}
.y2b{bottom:33.440000pt;}
.y6{bottom:33.600000pt;}
.y11{bottom:33.640000pt;}
.yd{bottom:40.320000pt;}
.y16{bottom:41.600000pt;}
.y138{bottom:47.040000pt;}
.y2a{bottom:48.800000pt;}
.y3{bottom:50.400000pt;}
.y5{bottom:53.120000pt;}
.yc{bottom:58.720000pt;}
.y15{bottom:61.600000pt;}
.y29{bottom:64.160000pt;}
.y139{bottom:66.693333pt;}
.y37{bottom:66.720000pt;}
.y2{bottom:67.200000pt;}
.yb{bottom:77.120000pt;}
.y28{bottom:79.520000pt;}
.y13a{bottom:86.373333pt;}
.y27{bottom:94.880000pt;}
.y169{bottom:99.360000pt;}
.yee{bottom:102.720000pt;}
.y13b{bottom:106.013333pt;}
.y90{bottom:106.720000pt;}
.yba{bottom:108.320000pt;}
.y26{bottom:110.080000pt;}
.yd1{bottom:112.160000pt;}
.yed{bottom:121.152000pt;}
.y68{bottom:121.952000pt;}
.y8f{bottom:125.152000pt;}
.y25{bottom:125.440000pt;}
.y13c{bottom:125.666667pt;}
.yb9{bottom:126.752000pt;}
.yd0{bottom:130.592000pt;}
.y1aa{bottom:130.752000pt;}
.y15d{bottom:133.312000pt;}
.y168{bottom:133.786667pt;}
.y33{bottom:137.786667pt;}
.yec{bottom:139.546667pt;}
.y67{bottom:140.346667pt;}
.y24{bottom:140.826667pt;}
.y167{bottom:144.986667pt;}
.yb8{bottom:145.146667pt;}
.y18d{bottom:147.546667pt;}
.y13e{bottom:148.573333pt;}
.ycf{bottom:148.986667pt;}
.y8e{bottom:151.546667pt;}
.y15c{bottom:151.706667pt;}
.y32{bottom:153.146667pt;}
.y23{bottom:156.186667pt;}
.y1a9{bottom:157.146667pt;}
.y66{bottom:158.746667pt;}
.yb7{bottom:163.546667pt;}
.yeb{bottom:165.946667pt;}
.yce{bottom:167.386667pt;}
.y31{bottom:168.506667pt;}
.y15b{bottom:170.106667pt;}
.y22{bottom:171.546667pt;}
.y1a8{bottom:175.546667pt;}
.y65{bottom:177.146667pt;}
.y8d{bottom:177.946667pt;}
.y125{bottom:180.986667pt;}
.yb6{bottom:181.946667pt;}
.y30{bottom:183.866667pt;}
.yea{bottom:184.346667pt;}
.ycd{bottom:185.786667pt;}
.y21{bottom:186.906667pt;}
.y15a{bottom:188.186667pt;}
.y18c{bottom:192.346667pt;}
.y64{bottom:195.546667pt;}
.y8c{bottom:196.346667pt;}
.yb5{bottom:200.346667pt;}
.y1a7{bottom:201.946667pt;}
.y20{bottom:202.106667pt;}
.ye9{bottom:202.746667pt;}
.ycc{bottom:204.186667pt;}
.y159{bottom:205.146667pt;}
.y124{bottom:209.146667pt;}
.y18b{bottom:210.746667pt;}
.y63{bottom:213.946667pt;}
.y1f{bottom:217.466667pt;}
.yb4{bottom:218.746667pt;}
.y1a6{bottom:220.346667pt;}
.ye8{bottom:221.146667pt;}
.ycb{bottom:222.586667pt;}
.y8b{bottom:222.746667pt;}
.y104{bottom:227.706667pt;}
.y62{bottom:232.346667pt;}
.y1e{bottom:232.826667pt;}
.y151{bottom:233.626667pt;}
.yb3{bottom:237.146667pt;}
.ye7{bottom:239.546667pt;}
.yca{bottom:240.986667pt;}
.y8a{bottom:241.146667pt;}
.y103{bottom:246.106667pt;}
.y1a5{bottom:246.746667pt;}
.y135{bottom:247.386667pt;}
.y1d{bottom:248.186667pt;}
.y61{bottom:250.746667pt;}
.y150{bottom:252.026667pt;}
.yb2{bottom:255.546667pt;}
.yc9{bottom:259.066667pt;}
.y89{bottom:259.546667pt;}
.y134{bottom:261.786667pt;}
.y1c{bottom:263.546667pt;}
.y102{bottom:264.506667pt;}
.y1a4{bottom:265.146667pt;}
.ye6{bottom:265.946667pt;}
.y60{bottom:269.146667pt;}
.y14f{bottom:270.426667pt;}
.yb1{bottom:273.946667pt;}
.y133{bottom:275.546667pt;}
.yc8{bottom:276.026667pt;}
.y88{bottom:277.786667pt;}
.ye5{bottom:284.346667pt;}
.y116{bottom:285.466667pt;}
.y5f{bottom:287.546667pt;}
.y14e{bottom:288.826667pt;}
.y101{bottom:290.906667pt;}
.y1a3{bottom:291.386667pt;}
.yb0{bottom:292.346667pt;}
.yc7{bottom:292.826667pt;}
.y87{bottom:296.186667pt;}
.y18a{bottom:300.346667pt;}
.ye4{bottom:302.746667pt;}
.y115{bottom:303.866667pt;}
.y5e{bottom:305.946667pt;}
.y14d{bottom:307.226667pt;}
.y100{bottom:309.306667pt;}
.yc6{bottom:309.786667pt;}
.yaf{bottom:310.746667pt;}
.y166{bottom:314.266667pt;}
.y86{bottom:314.586667pt;}
.y189{bottom:318.746667pt;}
.y114{bottom:322.266667pt;}
.y5d{bottom:324.346667pt;}
.y14c{bottom:325.626667pt;}
.yc5{bottom:326.586667pt;}
.yff{bottom:327.706667pt;}
.yae{bottom:329.146667pt;}
.y165{bottom:331.066667pt;}
.y85{bottom:332.986667pt;}
.y1a2{bottom:336.186667pt;}
.y188{bottom:337.146667pt;}
.y113{bottom:340.666667pt;}
.y5c{bottom:342.746667pt;}
.yc4{bottom:343.386667pt;}
.y14b{bottom:344.026667pt;}
.y164{bottom:344.866667pt;}
.yfe{bottom:346.146667pt;}
.yad{bottom:347.586667pt;}
.y1a1{bottom:354.626667pt;}
.y187{bottom:355.586667pt;}
.y84{bottom:359.426667pt;}
.yc3{bottom:360.386667pt;}
.y5b{bottom:361.186667pt;}
.y14a{bottom:362.466667pt;}
.yfd{bottom:364.546667pt;}
.yac{bottom:365.826667pt;}
.y112{bottom:367.106667pt;}
.y1a0{bottom:373.026667pt;}
.yc2{bottom:373.986667pt;}
.y83{bottom:377.826667pt;}
.y5a{bottom:379.586667pt;}
.y149{bottom:380.866667pt;}
.y186{bottom:381.986667pt;}
.yab{bottom:384.226667pt;}
.y111{bottom:385.506667pt;}
.yfc{bottom:390.946667pt;}
.y1b3{bottom:391.426667pt;}
.y158{bottom:392.226667pt;}
.y82{bottom:396.226667pt;}
.y59{bottom:397.826667pt;}
.y123{bottom:398.626667pt;}
.y148{bottom:399.266667pt;}
.y19f{bottom:399.426667pt;}
.yaa{bottom:402.626667pt;}
.y110{bottom:403.906667pt;}
.y185{bottom:408.386667pt;}
.yfb{bottom:409.346667pt;}
.y1b2{bottom:409.826667pt;}
.y81{bottom:414.626667pt;}
.y157{bottom:415.266667pt;}
.y58{bottom:416.226667pt;}
.y34{bottom:417.026667pt;}
.y147{bottom:417.666667pt;}
.y19e{bottom:417.826667pt;}
.ya9{bottom:421.026667pt;}
.yfa{bottom:427.746667pt;}
.y156{bottom:428.866667pt;}
.y10f{bottom:430.306667pt;}
.y1b{bottom:431.746667pt;}
.y80{bottom:433.026667pt;}
.y57{bottom:434.626667pt;}
.y184{bottom:434.786667pt;}
.y122{bottom:435.426667pt;}
.y146{bottom:436.066667pt;}
.y19d{bottom:436.226667pt;}
.ya8{bottom:439.426667pt;}
.y10e{bottom:448.706667pt;}
.y132{bottom:450.946667pt;}
.y56{bottom:453.026667pt;}
.y121{bottom:453.826667pt;}
.yf9{bottom:454.146667pt;}
.y145{bottom:454.466667pt;}
.y1b1{bottom:454.626667pt;}
.ya7{bottom:457.826667pt;}
.y7f{bottom:459.426667pt;}
.y183{bottom:461.186667pt;}
.y19c{bottom:462.626667pt;}
.ye3{bottom:465.826667pt;}
.y10d{bottom:467.106667pt;}
.y131{bottom:468.066667pt;}
.y55{bottom:471.426667pt;}
.y144{bottom:471.586667pt;}
.y120{bottom:472.226667pt;}
.yf8{bottom:472.546667pt;}
.y1b0{bottom:473.026667pt;}
.ya6{bottom:476.226667pt;}
.y182{bottom:479.586667pt;}
.y19b{bottom:481.026667pt;}
.y143{bottom:484.066667pt;}
.ye2{bottom:484.226667pt;}
.y10c{bottom:485.506667pt;}
.y7e{bottom:485.826667pt;}
.y130{bottom:486.466667pt;}
.y54{bottom:489.826667pt;}
.y11f{bottom:490.626667pt;}
.yf7{bottom:490.946667pt;}
.ya5{bottom:494.626667pt;}
.y142{bottom:498.626667pt;}
.y19a{bottom:499.426667pt;}
.ye1{bottom:502.626667pt;}
.y10b{bottom:503.906667pt;}
.y12f{bottom:504.866667pt;}
.y181{bottom:505.986667pt;}
.y53{bottom:508.226667pt;}
.y11e{bottom:509.026667pt;}
.y7d{bottom:512.226667pt;}
.ya4{bottom:513.026667pt;}
.y163{bottom:514.946667pt;}
.yf6{bottom:517.346667pt;}
.y199{bottom:517.826667pt;}
.ye0{bottom:521.026667pt;}
.y12e{bottom:523.266667pt;}
.y1af{bottom:525.826667pt;}
.y52{bottom:526.626667pt;}
.y11d{bottom:527.426667pt;}
.y10a{bottom:530.306667pt;}
.ya3{bottom:531.426667pt;}
.y162{bottom:531.746667pt;}
.y180{bottom:532.386667pt;}
.yf5{bottom:535.746667pt;}
.y7c{bottom:538.626667pt;}
.ydf{bottom:539.426667pt;}
.y12d{bottom:541.666667pt;}
.y198{bottom:544.226667pt;}
.y51{bottom:545.026667pt;}
.y161{bottom:545.346667pt;}
.y11c{bottom:545.826667pt;}
.y109{bottom:548.706667pt;}
.ya2{bottom:549.826667pt;}
.y17f{bottom:550.786667pt;}
.yf4{bottom:554.146667pt;}
.yde{bottom:557.826667pt;}
.y12c{bottom:560.066667pt;}
.y197{bottom:562.626667pt;}
.y50{bottom:563.426667pt;}
.y11b{bottom:564.226667pt;}
.y7b{bottom:565.026667pt;}
.ya1{bottom:568.226667pt;}
.yf3{bottom:572.573333pt;}
.y108{bottom:575.133333pt;}
.ydd{bottom:576.253333pt;}
.y17e{bottom:577.213333pt;}
.y196{bottom:581.053333pt;}
.y4f{bottom:581.853333pt;}
.y12b{bottom:586.493333pt;}
.ya0{bottom:586.653333pt;}
.y1ae{bottom:589.053333pt;}
.y11a{bottom:590.653333pt;}
.y7a{bottom:591.453333pt;}
.yf2{bottom:598.973333pt;}
.y4e{bottom:600.253333pt;}
.y107{bottom:601.213333pt;}
.ydc{bottom:602.653333pt;}
.y17d{bottom:603.613333pt;}
.y9f{bottom:605.053333pt;}
.y195{bottom:607.453333pt;}
.y119{bottom:608.893333pt;}
.y12a{bottom:612.413333pt;}
.y79{bottom:617.853333pt;}
.y4d{bottom:618.653333pt;}
.ydb{bottom:621.053333pt;}
.y17c{bottom:622.013333pt;}
.y106{bottom:622.973333pt;}
.y9e{bottom:623.453333pt;}
.yf1{bottom:625.053333pt;}
.y194{bottom:625.853333pt;}
.y129{bottom:626.173333pt;}
.y2f{bottom:630.013333pt;}
.y118{bottom:630.333333pt;}
.y1ad{bottom:633.853333pt;}
.y4c{bottom:637.053333pt;}
.yda{bottom:639.453333pt;}
.y17b{bottom:640.413333pt;}
.y9d{bottom:641.853333pt;}
.y78{bottom:644.253333pt;}
.yf0{bottom:646.813333pt;}
.y2d{bottom:647.293333pt;}
.y155{bottom:647.453333pt;}
.y1ac{bottom:652.253333pt;}
.y4b{bottom:655.453333pt;}
.yd9{bottom:657.853333pt;}
.y17a{bottom:658.813333pt;}
.y9c{bottom:660.253333pt;}
.y154{bottom:661.053333pt;}
.y77{bottom:670.653333pt;}
.y4a{bottom:673.853333pt;}
.yd8{bottom:676.253333pt;}
.y179{bottom:677.213333pt;}
.y19{bottom:685.693333pt;}
.y9b{bottom:686.653333pt;}
.y193{bottom:689.053333pt;}
.y49{bottom:692.253333pt;}
.y178{bottom:695.613333pt;}
.y76{bottom:697.053333pt;}
.yd7{bottom:702.653333pt;}
.y9a{bottom:705.053333pt;}
.y192{bottom:707.453333pt;}
.y48{bottom:710.653333pt;}
.y177{bottom:714.013333pt;}
.y14{bottom:714.653333pt;}
.y1ab{bottom:715.453333pt;}
.y160{bottom:716.893333pt;}
.y75{bottom:723.453333pt;}
.y47{bottom:729.053333pt;}
.y99{bottom:731.453333pt;}
.y15f{bottom:731.933333pt;}
.y176{bottom:732.413333pt;}
.y191{bottom:733.853333pt;}
.y74{bottom:741.853333pt;}
.y46{bottom:747.453333pt;}
.y98{bottom:749.853333pt;}
.y175{bottom:750.813333pt;}
.y190{bottom:752.253333pt;}
.yd6{bottom:755.453333pt;}
.y73{bottom:760.253333pt;}
.y45{bottom:765.853333pt;}
.y174{bottom:769.213333pt;}
.yd5{bottom:773.853333pt;}
.y97{bottom:776.253333pt;}
.y141{bottom:777.533333pt;}
.y72{bottom:778.653333pt;}
.y10{bottom:784.093333pt;}
.y44{bottom:784.253333pt;}
.y173{bottom:787.613333pt;}
.yd4{bottom:792.253333pt;}
.y140{bottom:794.373333pt;}
.y96{bottom:794.693333pt;}
.y71{bottom:797.093333pt;}
.y43{bottom:802.693333pt;}
.y172{bottom:806.053333pt;}
.y117{bottom:810.373333pt;}
.yd3{bottom:810.693333pt;}
.y95{bottom:813.093333pt;}
.y105{bottom:815.333333pt;}
.y70{bottom:815.493333pt;}
.y13f{bottom:815.973333pt;}
.yef{bottom:816.613333pt;}
.y42{bottom:821.093333pt;}
.y18f{bottom:823.493333pt;}
.y171{bottom:824.453333pt;}
.y128{bottom:825.573333pt;}
.yd2{bottom:829.093333pt;}
.y94{bottom:831.493333pt;}
.ya{bottom:831.813333pt;}
.y41{bottom:839.493333pt;}
.y6f{bottom:841.893333pt;}
.y127{bottom:842.373333pt;}
.y170{bottom:842.853333pt;}
.yc1{bottom:847.493333pt;}
.y93{bottom:849.893333pt;}
.y153{bottom:854.373333pt;}
.y126{bottom:855.973333pt;}
.y136{bottom:856.960000pt;}
.y40{bottom:857.893333pt;}
.y18e{bottom:860.293333pt;}
.yc0{bottom:865.893333pt;}
.y152{bottom:867.973333pt;}
.y6e{bottom:868.293333pt;}
.y16f{bottom:869.253333pt;}
.y3f{bottom:876.293333pt;}
.ybf{bottom:884.293333pt;}
.y15e{bottom:885.573333pt;}
.y6d{bottom:886.693333pt;}
.y16e{bottom:887.653333pt;}
.y3e{bottom:894.693333pt;}
.ybe{bottom:902.693333pt;}
.y6c{bottom:905.093333pt;}
.y3d{bottom:913.093333pt;}
.y16d{bottom:918.373333pt;}
.ybd{bottom:921.093333pt;}
.y6b{bottom:923.493333pt;}
.y8{bottom:924.453333pt;}
.y3c{bottom:931.493333pt;}
.y16c{bottom:934.373333pt;}
.ybc{bottom:939.493333pt;}
.y6a{bottom:941.893333pt;}
.y4{bottom:943.333333pt;}
.y3b{bottom:949.893333pt;}
.y16b{bottom:950.373333pt;}
.ybb{bottom:957.893333pt;}
.y69{bottom:960.293333pt;}
.y3a{bottom:968.293333pt;}
.y92{bottom:976.293333pt;}
.y16a{bottom:977.413333pt;}
.y39{bottom:986.693333pt;}
.y91{bottom:994.693333pt;}
.y38{bottom:1013.093333pt;}
.y36{bottom:1045.280000pt;}
.y35{bottom:1062.560000pt;}
.y1{bottom:1063.840000pt;}
.h13{height:15.360000pt;}
.h7{height:18.880000pt;}
.h10{height:23.360000pt;}
.h12{height:30.720000pt;}
.hf{height:33.918750pt;}
.hd{height:34.830000pt;}
.h1f{height:36.398438pt;}
.h20{height:42.084375pt;}
.h16{height:42.745000pt;}
.h1d{height:47.085938pt;}
.h22{height:47.109375pt;}
.h15{height:47.380000pt;}
.hb{height:47.712000pt;}
.h1c{height:48.375000pt;}
.h2{height:49.148438pt;}
.h8{height:52.134375pt;}
.h1a{height:52.785000pt;}
.hc{height:53.535000pt;}
.h17{height:57.375000pt;}
.h21{height:57.758750pt;}
.h3{height:57.787500pt;}
.h19{height:59.340000pt;}
.h6{height:62.812500pt;}
.ha{height:64.500000pt;}
.h18{height:66.625000pt;}
.he{height:69.440000pt;}
.h1b{height:73.490625pt;}
.h23{height:83.540625pt;}
.h4{height:84.672000pt;}
.h5{height:85.785000pt;}
.h9{height:92.000000pt;}
.h1e{height:171.040000pt;}
.h14{height:196.346667pt;}
.h11{height:277.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:132.320000pt;}
.wb{width:145.626667pt;}
.wd{width:150.400000pt;}
.we{width:151.546667pt;}
.wc{width:153.946667pt;}
.w5{width:183.706667pt;}
.w4{width:185.466667pt;}
.w6{width:235.546667pt;}
.wa{width:299.520000pt;}
.w9{width:472.573333pt;}
.w3{width:604.733333pt;}
.w7{width:604.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x2c{left:8.866667pt;}
.x2b{left:17.946667pt;}
.xe{left:20.160000pt;}
.x12{left:24.520000pt;}
.xa{left:36.480000pt;}
.x8{left:47.994667pt;}
.x7{left:73.114667pt;}
.x10{left:85.274667pt;}
.x4{left:94.592000pt;}
.x6{left:97.274667pt;}
.x1a{left:104.511988pt;}
.x19{left:107.071988pt;}
.x17{left:108.351988pt;}
.x27{left:113.471988pt;}
.x18{left:114.431988pt;}
.x16{left:116.671988pt;}
.xf{left:117.754667pt;}
.x23{left:123.551988pt;}
.x2d{left:126.653333pt;}
.x26{left:129.951988pt;}
.x14{left:132.351988pt;}
.x25{left:134.106655pt;}
.x3{left:141.786655pt;}
.x2f{left:144.346655pt;}
.x24{left:160.826655pt;}
.x29{left:165.786655pt;}
.x21{left:200.346655pt;}
.x1b{left:204.346655pt;}
.x1f{left:207.386655pt;}
.x20{left:212.506655pt;}
.x11{left:226.906667pt;}
.x3b{left:241.506667pt;}
.x2a{left:246.720000pt;}
.x38{left:260.386655pt;}
.x35{left:265.826655pt;}
.x5{left:267.874667pt;}
.x39{left:269.026655pt;}
.x33{left:272.226655pt;}
.x9{left:280.066667pt;}
.xd{left:302.461333pt;}
.x1{left:331.106655pt;}
.x13{left:348.546655pt;}
.x2{left:385.826655pt;}
.x1c{left:396.893322pt;}
.xb{left:463.773333pt;}
.x22{left:547.293322pt;}
.x2e{left:552.933322pt;}
.x28{left:553.893322pt;}
.x36{left:586.373322pt;}
.x3a{left:596.933322pt;}
.x37{left:599.973322pt;}
.x30{left:607.813322pt;}
.x34{left:610.373322pt;}
.x32{left:615.013322pt;}
.x31{left:617.093322pt;}
.x15{left:680.453322pt;}
.x1e{left:699.333322pt;}
.x1d{left:700.613322pt;}
}




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