
    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_5904f4aac9ef69e16cb12bbe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.111000;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_9ba7fcab0be49d798c9a5b51.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120000;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_0177338631e13265b0da0b33.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.111000;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_d72c797b3078b6d4d68d5932.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.140000;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_75a47e1e27f5d79eb99f9646.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.138000;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_22f04d1693d7ffc3c58f40d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.138000;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854004;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9145e6c78358d1acc9da9990.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.120000;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ea92fadaaf3f38fe7f53af6d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_35e847f88b6c05c5f7acdb79.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.051000;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.504000px;}
.ls17{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.054000px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000003px;}
.ls7{letter-spacing:0.036000px;}
.ls1a{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.100800px;}
.ls4{letter-spacing:0.135600px;}
.lsd{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.541440px;}
.ls20{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.809280px;}
.lsc{letter-spacing:28.920000px;}
.ls13{letter-spacing:28.944000px;}
.ls11{letter-spacing:31.104000px;}
.ls12{letter-spacing:33.960000px;}
.ls1d{letter-spacing:35.424000px;}
.ls1b{letter-spacing:36.144000px;}
.ls18{letter-spacing:36.864000px;}
.ls15{letter-spacing:43.344000px;}
.ls21{letter-spacing:54.840000px;}
.ls16{letter-spacing:55.386720px;}
.ls10{letter-spacing:64.002720px;}
.lsb{letter-spacing:845.724000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-72.000000px;}
.wsc{word-spacing:-59.760000px;}
.ws16{word-spacing:-18.720000px;}
.ws14{word-spacing:-18.648000px;}
.ws15{word-spacing:-18.576000px;}
.ws10{word-spacing:-18.504000px;}
.wsb{word-spacing:-18.432003px;}
.ws8{word-spacing:-18.432000px;}
.wse{word-spacing:-18.360000px;}
.ws12{word-spacing:-18.288000px;}
.ws18{word-spacing:-18.216000px;}
.ws17{word-spacing:-18.144000px;}
.ws13{word-spacing:-18.072000px;}
.ws9{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.496000px;}
.ws11{word-spacing:-17.136000px;}
.ws1{word-spacing:-15.298560px;}
.ws0{word-spacing:-15.238800px;}
.wsf{word-spacing:-14.616000px;}
.ws2{word-spacing:-13.122000px;}
.ws4{word-spacing:-13.068000px;}
.ws3{word-spacing:-13.050000px;}
.ws5{word-spacing:-12.485040px;}
.ws6{word-spacing:-12.450240px;}
.ws7{word-spacing:0.000000px;}
._12{margin-left:-12.299280px;}
._f{margin-left:-10.967280px;}
._11{margin-left:-9.396240px;}
._e{margin-left:-7.901520px;}
._4{margin-left:-6.710400px;}
._5{margin-left:-5.703840px;}
._1{margin-left:-4.361760px;}
._2{margin-left:-3.019680px;}
._3{margin-left:-1.845360px;}
._0{width:1.254960px;}
._13{width:3.240000px;}
._19{width:5.013360px;}
._18{width:6.120000px;}
._1b{width:8.045280px;}
._17{width:9.738720px;}
._16{width:11.088000px;}
._28{width:12.111840px;}
._1c{width:13.459920px;}
._d{width:14.957040px;}
._1a{width:16.272000px;}
._7{width:17.712000px;}
._8{width:19.632000px;}
._6{width:20.898000px;}
._1d{width:21.939360px;}
._1e{width:23.616000px;}
._24{width:24.932880px;}
._c{width:26.078400px;}
._b{width:27.216000px;}
._2d{width:28.351440px;}
._15{width:30.312000px;}
._14{width:31.320000px;}
._23{width:32.472000px;}
._2a{width:34.200000px;}
._1f{width:35.400000px;}
._35{width:36.432000px;}
._26{width:37.440000px;}
._25{width:39.024000px;}
._27{width:40.824000px;}
._9{width:42.228000px;}
._a{width:44.118000px;}
._29{width:47.664000px;}
._21{width:53.712000px;}
._22{width:55.473360px;}
._31{width:57.168000px;}
._2c{width:59.058720px;}
._2b{width:60.192000px;}
._20{width:65.160000px;}
._2e{width:67.298400px;}
._30{width:78.480000px;}
._33{width:87.696000px;}
._10{width:92.061120px;}
._2f{width:94.824000px;}
._34{width:121.896000px;}
._32{width:845.724000px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(243,112,33);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs7{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs3{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:23.220000px;}
.y12{bottom:23.400000px;}
.y1a5{bottom:25.020000px;}
.y1af{bottom:25.050000px;}
.ya{bottom:29.700000px;}
.yd{bottom:41.940000px;}
.y1a7{bottom:49.860000px;}
.y1a9{bottom:56.700000px;}
.yc{bottom:60.525000px;}
.y11{bottom:60.660000px;}
.y1aa{bottom:74.700000px;}
.y5{bottom:76.860000px;}
.y10{bottom:79.200000px;}
.y4{bottom:97.920000px;}
.y3{bottom:118.656000px;}
.y2{bottom:140.436000px;}
.y151{bottom:164.910000px;}
.y17c{bottom:171.750000px;}
.y109{bottom:173.550000px;}
.y27{bottom:173.730000px;}
.y190{bottom:174.990000px;}
.y140{bottom:176.970000px;}
.yd5{bottom:180.390000px;}
.yae{bottom:182.730000px;}
.y11b{bottom:187.230000px;}
.y14a{bottom:190.290000px;}
.y171{bottom:190.830000px;}
.y7e{bottom:192.630000px;}
.yea{bottom:194.070000px;}
.y93{bottom:196.950000px;}
.y26{bottom:197.850000px;}
.yc6{bottom:198.390000px;}
.y142{bottom:200.910000px;}
.y13d{bottom:201.450000px;}
.yfa{bottom:202.710000px;}
.y113{bottom:205.230000px;}
.y48{bottom:205.590000px;}
.y64{bottom:205.950000px;}
.yad{bottom:207.570000px;}
.y150{bottom:207.750000px;}
.y11a{bottom:212.070000px;}
.y12b{bottom:212.610000px;}
.y161{bottom:214.590000px;}
.y15b{bottom:215.130000px;}
.y108{bottom:216.390000px;}
.y18f{bottom:217.830000px;}
.ye9{bottom:218.910000px;}
.y25{bottom:221.790000px;}
.yc5{bottom:223.230000px;}
.yf9{bottom:227.550000px;}
.y47{bottom:230.430000px;}
.y63{bottom:230.790000px;}
.yac{bottom:232.410000px;}
.y149{bottom:233.130000px;}
.y170{bottom:233.670000px;}
.y7d{bottom:235.470000px;}
.y12a{bottom:237.450000px;}
.y107{bottom:241.230000px;}
.y18e{bottom:242.670000px;}
.ye8{bottom:243.750000px;}
.y13c{bottom:244.290000px;}
.y24{bottom:245.910000px;}
.y92{bottom:246.630000px;}
.yc4{bottom:248.070000px;}
.y14f{bottom:250.590000px;}
.yf8{bottom:252.390000px;}
.y119{bottom:254.910000px;}
.y46{bottom:255.270000px;}
.y62{bottom:255.630000px;}
.yab{bottom:257.250000px;}
.y160{bottom:257.430000px;}
.y15a{bottom:257.970000px;}
.y134{bottom:261.750000px;}
.y106{bottom:266.070000px;}
.y141{bottom:268.590000px;}
.y23{bottom:270.030000px;}
.y91{bottom:271.470000px;}
.yc3{bottom:272.910000px;}
.y148{bottom:275.970000px;}
.y16f{bottom:276.510000px;}
.y7c{bottom:278.310000px;}
.y45{bottom:280.110000px;}
.y129{bottom:280.290000px;}
.y18d{bottom:285.510000px;}
.ye7{bottom:286.590000px;}
.y13b{bottom:287.130000px;}
.yd4{bottom:290.910000px;}
.y14e{bottom:293.430000px;}
.y22{bottom:293.970000px;}
.yf7{bottom:295.230000px;}
.y118{bottom:297.750000px;}
.y61{bottom:298.470000px;}
.yaa{bottom:300.090000px;}
.y15f{bottom:300.270000px;}
.y159{bottom:300.810000px;}
.y44{bottom:304.950000px;}
.y18c{bottom:310.350000px;}
.ye6{bottom:311.430000px;}
.y90{bottom:314.310000px;}
.yc2{bottom:315.750000px;}
.y21{bottom:318.090000px;}
.y147{bottom:318.810000px;}
.y16e{bottom:319.350000px;}
.yf6{bottom:320.070000px;}
.y7b{bottom:321.150000px;}
.y128{bottom:323.130000px;}
.y133{bottom:329.430000px;}
.y43{bottom:329.790000px;}
.y13a{bottom:329.970000px;}
.yd3{bottom:333.750000px;}
.y14d{bottom:336.270000px;}
.y8f{bottom:339.150000px;}
.yc1{bottom:340.590000px;}
.y60{bottom:341.310000px;}
.y20{bottom:342.210000px;}
.ya9{bottom:342.930000px;}
.y15e{bottom:343.110000px;}
.y146{bottom:343.650000px;}
.yf5{bottom:344.910000px;}
.y7a{bottom:345.990000px;}
.y127{bottom:347.970000px;}
.y18b{bottom:353.190000px;}
.ye5{bottom:354.270000px;}
.y42{bottom:354.630000px;}
.y139{bottom:354.810000px;}
.y105{bottom:358.590000px;}
.y16d{bottom:362.190000px;}
.y8e{bottom:363.990000px;}
.yc0{bottom:365.430000px;}
.y1f{bottom:366.195000px;}
.ya8{bottom:367.815000px;}
.y158{bottom:368.535000px;}
.y17b{bottom:372.855000px;}
.yd2{bottom:376.635000px;}
.ye4{bottom:379.155000px;}
.y112{bottom:383.475000px;}
.y15d{bottom:385.995000px;}
.y145{bottom:386.895000px;}
.yf4{bottom:387.795000px;}
.y79{bottom:388.875000px;}
.y1e{bottom:390.315000px;}
.y126{bottom:390.855000px;}
.y5f{bottom:391.035000px;}
.ya7{bottom:392.655000px;}
.y18a{bottom:396.075000px;}
.y132{bottom:397.155000px;}
.y41{bottom:397.515000px;}
.y138{bottom:397.695000px;}
.y104{bottom:401.475000px;}
.ye3{bottom:403.995000px;}
.y16c{bottom:405.075000px;}
.y8d{bottom:406.875000px;}
.ybf{bottom:408.315000px;}
.y15c{bottom:410.835000px;}
.y157{bottom:411.735000px;}
.y1a3{bottom:411.915000px;}
.y78{bottom:413.715000px;}
.y1d{bottom:414.435000px;}
.y125{bottom:415.695000px;}
.ya6{bottom:417.495000px;}
.yd1{bottom:419.475000px;}
.y131{bottom:421.995000px;}
.y40{bottom:422.355000px;}
.y103{bottom:426.315000px;}
.y189{bottom:428.475000px;}
.y144{bottom:428.835000px;}
.y16b{bottom:429.915000px;}
.yf3{bottom:430.635000px;}
.y8c{bottom:431.715000px;}
.ybe{bottom:433.155000px;}
.y5e{bottom:433.875000px;}
.y1c{bottom:438.375000px;}
.y13f{bottom:439.995000px;}
.y137{bottom:440.535000px;}
.ye2{bottom:446.835000px;}
.y3f{bottom:447.195000px;}
.ya5{bottom:449.895000px;}
.y102{bottom:451.155000px;}
.y156{bottom:453.675000px;}
.y1a2{bottom:454.755000px;}
.yf2{bottom:455.475000px;}
.y77{bottom:456.555000px;}
.ybd{bottom:457.995000px;}
.y124{bottom:458.535000px;}
.yd0{bottom:462.315000px;}
.y1b{bottom:462.495000px;}
.y130{bottom:464.835000px;}
.y111{bottom:469.155000px;}
.ye1{bottom:471.675000px;}
.y3e{bottom:472.035000px;}
.y16a{bottom:472.755000px;}
.y101{bottom:475.995000px;}
.y5d{bottom:476.715000px;}
.y1a1{bottom:479.595000px;}
.yf1{bottom:480.315000px;}
.y76{bottom:481.395000px;}
.y188{bottom:482.295000px;}
.ybc{bottom:482.835000px;}
.y123{bottom:483.375000px;}
.y136{bottom:483.735000px;}
.y1a{bottom:486.615000px;}
.ycf{bottom:487.155000px;}
.y17a{bottom:490.935000px;}
.y110{bottom:493.995000px;}
.y155{bottom:496.515000px;}
.y3d{bottom:496.875000px;}
.y8b{bottom:499.395000px;}
.y5c{bottom:501.555000px;}
.ya4{bottom:503.715000px;}
.y1a0{bottom:504.435000px;}
.y75{bottom:506.235000px;}
.y187{bottom:507.135000px;}
.y12f{bottom:507.675000px;}
.y122{bottom:508.215000px;}
.y19{bottom:510.555000px;}
.ye0{bottom:514.515000px;}
.y169{bottom:515.595000px;}
.y100{bottom:518.835000px;}
.y3c{bottom:521.715000px;}
.yf0{bottom:523.155000px;}
.ybb{bottom:525.675000px;}
.y5b{bottom:526.395000px;}
.ya3{bottom:528.555000px;}
.y19f{bottom:529.275000px;}
.yce{bottom:529.995000px;}
.y186{bottom:531.975000px;}
.y18{bottom:534.675000px;}
.y8a{bottom:535.395000px;}
.y154{bottom:539.355000px;}
.yff{bottom:543.675000px;}
.y179{bottom:544.755000px;}
.y3b{bottom:546.555000px;}
.yef{bottom:547.995000px;}
.y74{bottom:549.075000px;}
.yba{bottom:550.515000px;}
.y121{bottom:551.055000px;}
.ya2{bottom:553.395000px;}
.y19e{bottom:554.115000px;}
.ydf{bottom:557.355000px;}
.y168{bottom:558.435000px;}
.y17{bottom:558.795000px;}
.y10f{bottom:561.675000px;}
.yfe{bottom:568.515000px;}
.y5a{bottom:569.235000px;}
.y178{bottom:569.595000px;}
.ycd{bottom:572.835000px;}
.y185{bottom:574.815000px;}
.yb9{bottom:575.355000px;}
.ya1{bottom:578.235000px;}
.y19d{bottom:578.955000px;}
.y153{bottom:582.195000px;}
.y16{bottom:582.735000px;}
.y10e{bottom:586.515000px;}
.y3a{bottom:589.395000px;}
.yee{bottom:590.835000px;}
.y73{bottom:591.915000px;}
.y12e{bottom:593.355000px;}
.y120{bottom:593.895000px;}
.y177{bottom:594.435000px;}
.y89{bottom:597.675000px;}
.yb8{bottom:600.195000px;}
.y1b0{bottom:600.915000px;}
.y167{bottom:601.275000px;}
.y19c{bottom:603.795000px;}
.y117{bottom:604.515000px;}
.y15{bottom:606.855000px;}
.yfd{bottom:611.355000px;}
.y59{bottom:612.075000px;}
.y39{bottom:614.235000px;}
.ycc{bottom:615.675000px;}
.y184{bottom:617.655000px;}
.y14c{bottom:618.195000px;}
.y1ae{bottom:619.455000px;}
.y88{bottom:622.515000px;}
.y152{bottom:625.065000px;}
.y72{bottom:627.945000px;}
.y19b{bottom:628.665000px;}
.y10d{bottom:629.385000px;}
.y176{bottom:630.465000px;}
.y14{bottom:631.005000px;}
.y12d{bottom:636.225000px;}
.y58{bottom:636.945000px;}
.y11f{bottom:637.125000px;}
.y38{bottom:639.105000px;}
.yed{bottom:640.545000px;}
.y183{bottom:642.525000px;}
.yb7{bottom:643.065000px;}
.y166{bottom:644.145000px;}
.yfc{bottom:654.225000px;}
.ycb{bottom:658.545000px;}
.y13{bottom:661.065000px;}
.y57{bottom:661.785000px;}
.y1ad{bottom:663.225000px;}
.y37{bottom:663.945000px;}
.y87{bottom:665.385000px;}
.y143{bottom:667.905000px;}
.y19a{bottom:671.505000px;}
.y116{bottom:672.225000px;}
.ya0{bottom:676.545000px;}
.y11e{bottom:679.065000px;}
.yca{bottom:683.385000px;}
.y182{bottom:685.365000px;}
.yb6{bottom:685.905000px;}
.y56{bottom:686.625000px;}
.y165{bottom:686.985000px;}
.y36{bottom:688.785000px;}
.y71{bottom:690.225000px;}
.y175{bottom:692.745000px;}
.y199{bottom:696.345000px;}
.yfb{bottom:697.065000px;}
.y9f{bottom:701.385000px;}
.y13e{bottom:703.905000px;}
.y1ac{bottom:706.785000px;}
.yc9{bottom:708.225000px;}
.y181{bottom:710.205000px;}
.yde{bottom:710.745000px;}
.y35{bottom:713.625000px;}
.y70{bottom:715.065000px;}
.y198{bottom:721.185000px;}
.y11d{bottom:721.905000px;}
.yf{bottom:725.325000px;}
.y9e{bottom:726.225000px;}
.yb5{bottom:728.745000px;}
.y55{bottom:729.465000px;}
.y164{bottom:729.825000px;}
.y86{bottom:733.065000px;}
.y174{bottom:735.585000px;}
.y6f{bottom:739.905000px;}
.y135{bottom:746.745000px;}
.y1ab{bottom:750.345000px;}
.yc8{bottom:751.065000px;}
.y180{bottom:753.045000px;}
.ydd{bottom:753.585000px;}
.y34{bottom:756.465000px;}
.y85{bottom:757.905000px;}
.y197{bottom:764.025000px;}
.y115{bottom:764.745000px;}
.y9d{bottom:769.065000px;}
.yb4{bottom:771.585000px;}
.y54{bottom:772.305000px;}
.y163{bottom:773.025000px;}
.y17f{bottom:777.885000px;}
.y173{bottom:778.425000px;}
.y33{bottom:781.305000px;}
.y6e{bottom:782.745000px;}
.y10c{bottom:783.105000px;}
.y196{bottom:788.865000px;}
.y12c{bottom:789.585000px;}
.y9c{bottom:793.905000px;}
.ydc{bottom:796.425000px;}
.y53{bottom:797.145000px;}
.y162{bottom:797.325000px;}
.y84{bottom:800.745000px;}
.y32{bottom:806.145000px;}
.y114{bottom:807.585000px;}
.y195{bottom:814.065000px;}
.yb3{bottom:814.425000px;}
.y9b{bottom:818.745000px;}
.y17e{bottom:820.725000px;}
.y172{bottom:821.265000px;}
.y52{bottom:821.985000px;}
.y10b{bottom:825.045000px;}
.y6d{bottom:825.585000px;}
.y31{bottom:830.985000px;}
.y11c{bottom:832.425000px;}
.yb{bottom:834.405000px;}
.ydb{bottom:839.265000px;}
.y83{bottom:843.585000px;}
.y51{bottom:846.825000px;}
.y6c{bottom:850.425000px;}
.y17d{bottom:853.125000px;}
.y30{bottom:855.825000px;}
.yb2{bottom:857.265000px;}
.y10a{bottom:857.445000px;}
.y9a{bottom:861.585000px;}
.y14b{bottom:864.105000px;}
.y82{bottom:868.425000px;}
.y6b{bottom:875.265000px;}
.y2f{bottom:880.665000px;}
.yda{bottom:882.105000px;}
.y99{bottom:886.470000px;}
.y1a8{bottom:887.190000px;}
.y194{bottom:889.350000px;}
.y50{bottom:889.710000px;}
.yec{bottom:893.310000px;}
.yb1{bottom:900.150000px;}
.yd9{bottom:906.990000px;}
.y81{bottom:911.310000px;}
.y193{bottom:914.190000px;}
.y6a{bottom:918.150000px;}
.y2e{bottom:923.550000px;}
.y9{bottom:924.810000px;}
.yb0{bottom:924.990000px;}
.y4f{bottom:932.550000px;}
.y80{bottom:936.150000px;}
.yeb{bottom:942.990000px;}
.y2d{bottom:948.390000px;}
.yd8{bottom:949.830000px;}
.y98{bottom:954.150000px;}
.y4e{bottom:957.390000px;}
.y69{bottom:960.990000px;}
.yaf{bottom:967.830000px;}
.y2c{bottom:973.230000px;}
.y97{bottom:978.990000px;}
.y1a6{bottom:980.430000px;}
.y4d{bottom:982.230000px;}
.y68{bottom:985.830000px;}
.yd7{bottom:992.670000px;}
.y2b{bottom:998.070000px;}
.y8{bottom:1001.850000px;}
.y96{bottom:1003.830000px;}
.y4c{bottom:1007.070000px;}
.y67{bottom:1010.670000px;}
.y2a{bottom:1022.910000px;}
.y192{bottom:1025.070000px;}
.yc7{bottom:1028.670000px;}
.y4b{bottom:1031.910000px;}
.yd6{bottom:1035.510000px;}
.y7{bottom:1042.890000px;}
.y95{bottom:1046.670000px;}
.y1a4{bottom:1048.830000px;}
.y191{bottom:1049.910000px;}
.y66{bottom:1053.510000px;}
.y29{bottom:1058.910000px;}
.y94{bottom:1071.510000px;}
.y4a{bottom:1074.750000px;}
.y7f{bottom:1078.350000px;}
.y65{bottom:1096.350000px;}
.y6{bottom:1099.590000px;}
.y49{bottom:1110.750000px;}
.y28{bottom:1121.190000px;}
.y1{bottom:1160.280000px;}
.h10{height:42.840000px;}
.h13{height:42.876000px;}
.h5{height:43.020000px;}
.hb{height:44.670240px;}
.h8{height:50.004000px;}
.h6{height:50.247000px;}
.h3{height:55.337760px;}
.hf{height:66.024000px;}
.h2{height:66.672000px;}
.hc{height:66.996000px;}
.h11{height:67.680000px;}
.h12{height:67.716000px;}
.h7{height:73.836000px;}
.hd{height:77.248080px;}
.he{height:78.626953px;}
.h9{height:92.520000px;}
.ha{height:110.019600px;}
.h4{height:153.500400px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:61.560000px;}
.w7{width:98.280000px;}
.w4{width:126.036000px;}
.w5{width:157.860000px;}
.w6{width:243.075000px;}
.w8{width:337.350000px;}
.w9{width:337.575000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:6.840000px;}
.x8{left:108.035987px;}
.x9{left:109.476000px;}
.x4{left:114.155987px;}
.x6{left:117.215987px;}
.xf{left:126.035987px;}
.x11{left:135.035987px;}
.x15{left:139.535987px;}
.x10{left:144.035987px;}
.x12{left:162.029987px;}
.x16{left:166.529987px;}
.xb{left:172.650000px;}
.x13{left:189.029987px;}
.x14{left:216.029987px;}
.x7{left:226.469987px;}
.xc{left:300.315000px;}
.x3{left:352.154987px;}
.x1{left:363.494987px;}
.x5{left:394.094987px;}
.x2{left:446.474987px;}
.xd{left:459.615000px;}
.xe{left:704.310000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.048000pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000003pt;}
.ls7{letter-spacing:0.032000pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.089600pt;}
.ls4{letter-spacing:0.120533pt;}
.lsd{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.481280pt;}
.ls20{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.719360pt;}
.lsc{letter-spacing:25.706667pt;}
.ls13{letter-spacing:25.728000pt;}
.ls11{letter-spacing:27.648000pt;}
.ls12{letter-spacing:30.186667pt;}
.ls1d{letter-spacing:31.488000pt;}
.ls1b{letter-spacing:32.128000pt;}
.ls18{letter-spacing:32.768000pt;}
.ls15{letter-spacing:38.528000pt;}
.ls21{letter-spacing:48.746667pt;}
.ls16{letter-spacing:49.232640pt;}
.ls10{letter-spacing:56.891307pt;}
.lsb{letter-spacing:751.754667pt;}
.wsd{word-spacing:-64.000000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws16{word-spacing:-16.640000pt;}
.ws14{word-spacing:-16.576000pt;}
.ws15{word-spacing:-16.512000pt;}
.ws10{word-spacing:-16.448000pt;}
.wsb{word-spacing:-16.384003pt;}
.ws8{word-spacing:-16.384000pt;}
.wse{word-spacing:-16.320000pt;}
.ws12{word-spacing:-16.256000pt;}
.ws18{word-spacing:-16.192000pt;}
.ws17{word-spacing:-16.128000pt;}
.ws13{word-spacing:-16.064000pt;}
.ws9{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.552000pt;}
.ws11{word-spacing:-15.232000pt;}
.ws1{word-spacing:-13.598720pt;}
.ws0{word-spacing:-13.545600pt;}
.wsf{word-spacing:-12.992000pt;}
.ws2{word-spacing:-11.664000pt;}
.ws4{word-spacing:-11.616000pt;}
.ws3{word-spacing:-11.600000pt;}
.ws5{word-spacing:-11.097813pt;}
.ws6{word-spacing:-11.066880pt;}
.ws7{word-spacing:0.000000pt;}
._12{margin-left:-10.932693pt;}
._f{margin-left:-9.748693pt;}
._11{margin-left:-8.352213pt;}
._e{margin-left:-7.023573pt;}
._4{margin-left:-5.964800pt;}
._5{margin-left:-5.070080pt;}
._1{margin-left:-3.877120pt;}
._2{margin-left:-2.684160pt;}
._3{margin-left:-1.640320pt;}
._0{width:1.115520pt;}
._13{width:2.880000pt;}
._19{width:4.456320pt;}
._18{width:5.440000pt;}
._1b{width:7.151360pt;}
._17{width:8.656640pt;}
._16{width:9.856000pt;}
._28{width:10.766080pt;}
._1c{width:11.964373pt;}
._d{width:13.295147pt;}
._1a{width:14.464000pt;}
._7{width:15.744000pt;}
._8{width:17.450667pt;}
._6{width:18.576000pt;}
._1d{width:19.501653pt;}
._1e{width:20.992000pt;}
._24{width:22.162560pt;}
._c{width:23.180800pt;}
._b{width:24.192000pt;}
._2d{width:25.201280pt;}
._15{width:26.944000pt;}
._14{width:27.840000pt;}
._23{width:28.864000pt;}
._2a{width:30.400000pt;}
._1f{width:31.466667pt;}
._35{width:32.384000pt;}
._26{width:33.280000pt;}
._25{width:34.688000pt;}
._27{width:36.288000pt;}
._9{width:37.536000pt;}
._a{width:39.216000pt;}
._29{width:42.368000pt;}
._21{width:47.744000pt;}
._22{width:49.309653pt;}
._31{width:50.816000pt;}
._2c{width:52.496640pt;}
._2b{width:53.504000pt;}
._20{width:57.920000pt;}
._2e{width:59.820800pt;}
._30{width:69.760000pt;}
._33{width:77.952000pt;}
._10{width:81.832107pt;}
._2f{width:84.288000pt;}
._34{width:108.352000pt;}
._32{width:751.754667pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs7{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs3{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:20.640000pt;}
.y12{bottom:20.800000pt;}
.y1a5{bottom:22.240000pt;}
.y1af{bottom:22.266667pt;}
.ya{bottom:26.400000pt;}
.yd{bottom:37.280000pt;}
.y1a7{bottom:44.320000pt;}
.y1a9{bottom:50.400000pt;}
.yc{bottom:53.800000pt;}
.y11{bottom:53.920000pt;}
.y1aa{bottom:66.400000pt;}
.y5{bottom:68.320000pt;}
.y10{bottom:70.400000pt;}
.y4{bottom:87.040000pt;}
.y3{bottom:105.472000pt;}
.y2{bottom:124.832000pt;}
.y151{bottom:146.586667pt;}
.y17c{bottom:152.666667pt;}
.y109{bottom:154.266667pt;}
.y27{bottom:154.426667pt;}
.y190{bottom:155.546667pt;}
.y140{bottom:157.306667pt;}
.yd5{bottom:160.346667pt;}
.yae{bottom:162.426667pt;}
.y11b{bottom:166.426667pt;}
.y14a{bottom:169.146667pt;}
.y171{bottom:169.626667pt;}
.y7e{bottom:171.226667pt;}
.yea{bottom:172.506667pt;}
.y93{bottom:175.066667pt;}
.y26{bottom:175.866667pt;}
.yc6{bottom:176.346667pt;}
.y142{bottom:178.586667pt;}
.y13d{bottom:179.066667pt;}
.yfa{bottom:180.186667pt;}
.y113{bottom:182.426667pt;}
.y48{bottom:182.746667pt;}
.y64{bottom:183.066667pt;}
.yad{bottom:184.506667pt;}
.y150{bottom:184.666667pt;}
.y11a{bottom:188.506667pt;}
.y12b{bottom:188.986667pt;}
.y161{bottom:190.746667pt;}
.y15b{bottom:191.226667pt;}
.y108{bottom:192.346667pt;}
.y18f{bottom:193.626667pt;}
.ye9{bottom:194.586667pt;}
.y25{bottom:197.146667pt;}
.yc5{bottom:198.426667pt;}
.yf9{bottom:202.266667pt;}
.y47{bottom:204.826667pt;}
.y63{bottom:205.146667pt;}
.yac{bottom:206.586667pt;}
.y149{bottom:207.226667pt;}
.y170{bottom:207.706667pt;}
.y7d{bottom:209.306667pt;}
.y12a{bottom:211.066667pt;}
.y107{bottom:214.426667pt;}
.y18e{bottom:215.706667pt;}
.ye8{bottom:216.666667pt;}
.y13c{bottom:217.146667pt;}
.y24{bottom:218.586667pt;}
.y92{bottom:219.226667pt;}
.yc4{bottom:220.506667pt;}
.y14f{bottom:222.746667pt;}
.yf8{bottom:224.346667pt;}
.y119{bottom:226.586667pt;}
.y46{bottom:226.906667pt;}
.y62{bottom:227.226667pt;}
.yab{bottom:228.666667pt;}
.y160{bottom:228.826667pt;}
.y15a{bottom:229.306667pt;}
.y134{bottom:232.666667pt;}
.y106{bottom:236.506667pt;}
.y141{bottom:238.746667pt;}
.y23{bottom:240.026667pt;}
.y91{bottom:241.306667pt;}
.yc3{bottom:242.586667pt;}
.y148{bottom:245.306667pt;}
.y16f{bottom:245.786667pt;}
.y7c{bottom:247.386667pt;}
.y45{bottom:248.986667pt;}
.y129{bottom:249.146667pt;}
.y18d{bottom:253.786667pt;}
.ye7{bottom:254.746667pt;}
.y13b{bottom:255.226667pt;}
.yd4{bottom:258.586667pt;}
.y14e{bottom:260.826667pt;}
.y22{bottom:261.306667pt;}
.yf7{bottom:262.426667pt;}
.y118{bottom:264.666667pt;}
.y61{bottom:265.306667pt;}
.yaa{bottom:266.746667pt;}
.y15f{bottom:266.906667pt;}
.y159{bottom:267.386667pt;}
.y44{bottom:271.066667pt;}
.y18c{bottom:275.866667pt;}
.ye6{bottom:276.826667pt;}
.y90{bottom:279.386667pt;}
.yc2{bottom:280.666667pt;}
.y21{bottom:282.746667pt;}
.y147{bottom:283.386667pt;}
.y16e{bottom:283.866667pt;}
.yf6{bottom:284.506667pt;}
.y7b{bottom:285.466667pt;}
.y128{bottom:287.226667pt;}
.y133{bottom:292.826667pt;}
.y43{bottom:293.146667pt;}
.y13a{bottom:293.306667pt;}
.yd3{bottom:296.666667pt;}
.y14d{bottom:298.906667pt;}
.y8f{bottom:301.466667pt;}
.yc1{bottom:302.746667pt;}
.y60{bottom:303.386667pt;}
.y20{bottom:304.186667pt;}
.ya9{bottom:304.826667pt;}
.y15e{bottom:304.986667pt;}
.y146{bottom:305.466667pt;}
.yf5{bottom:306.586667pt;}
.y7a{bottom:307.546667pt;}
.y127{bottom:309.306667pt;}
.y18b{bottom:313.946667pt;}
.ye5{bottom:314.906667pt;}
.y42{bottom:315.226667pt;}
.y139{bottom:315.386667pt;}
.y105{bottom:318.746667pt;}
.y16d{bottom:321.946667pt;}
.y8e{bottom:323.546667pt;}
.yc0{bottom:324.826667pt;}
.y1f{bottom:325.506667pt;}
.ya8{bottom:326.946667pt;}
.y158{bottom:327.586667pt;}
.y17b{bottom:331.426667pt;}
.yd2{bottom:334.786667pt;}
.ye4{bottom:337.026667pt;}
.y112{bottom:340.866667pt;}
.y15d{bottom:343.106667pt;}
.y145{bottom:343.906667pt;}
.yf4{bottom:344.706667pt;}
.y79{bottom:345.666667pt;}
.y1e{bottom:346.946667pt;}
.y126{bottom:347.426667pt;}
.y5f{bottom:347.586667pt;}
.ya7{bottom:349.026667pt;}
.y18a{bottom:352.066667pt;}
.y132{bottom:353.026667pt;}
.y41{bottom:353.346667pt;}
.y138{bottom:353.506667pt;}
.y104{bottom:356.866667pt;}
.ye3{bottom:359.106667pt;}
.y16c{bottom:360.066667pt;}
.y8d{bottom:361.666667pt;}
.ybf{bottom:362.946667pt;}
.y15c{bottom:365.186667pt;}
.y157{bottom:365.986667pt;}
.y1a3{bottom:366.146667pt;}
.y78{bottom:367.746667pt;}
.y1d{bottom:368.386667pt;}
.y125{bottom:369.506667pt;}
.ya6{bottom:371.106667pt;}
.yd1{bottom:372.866667pt;}
.y131{bottom:375.106667pt;}
.y40{bottom:375.426667pt;}
.y103{bottom:378.946667pt;}
.y189{bottom:380.866667pt;}
.y144{bottom:381.186667pt;}
.y16b{bottom:382.146667pt;}
.yf3{bottom:382.786667pt;}
.y8c{bottom:383.746667pt;}
.ybe{bottom:385.026667pt;}
.y5e{bottom:385.666667pt;}
.y1c{bottom:389.666667pt;}
.y13f{bottom:391.106667pt;}
.y137{bottom:391.586667pt;}
.ye2{bottom:397.186667pt;}
.y3f{bottom:397.506667pt;}
.ya5{bottom:399.906667pt;}
.y102{bottom:401.026667pt;}
.y156{bottom:403.266667pt;}
.y1a2{bottom:404.226667pt;}
.yf2{bottom:404.866667pt;}
.y77{bottom:405.826667pt;}
.ybd{bottom:407.106667pt;}
.y124{bottom:407.586667pt;}
.yd0{bottom:410.946667pt;}
.y1b{bottom:411.106667pt;}
.y130{bottom:413.186667pt;}
.y111{bottom:417.026667pt;}
.ye1{bottom:419.266667pt;}
.y3e{bottom:419.586667pt;}
.y16a{bottom:420.226667pt;}
.y101{bottom:423.106667pt;}
.y5d{bottom:423.746667pt;}
.y1a1{bottom:426.306667pt;}
.yf1{bottom:426.946667pt;}
.y76{bottom:427.906667pt;}
.y188{bottom:428.706667pt;}
.ybc{bottom:429.186667pt;}
.y123{bottom:429.666667pt;}
.y136{bottom:429.986667pt;}
.y1a{bottom:432.546667pt;}
.ycf{bottom:433.026667pt;}
.y17a{bottom:436.386667pt;}
.y110{bottom:439.106667pt;}
.y155{bottom:441.346667pt;}
.y3d{bottom:441.666667pt;}
.y8b{bottom:443.906667pt;}
.y5c{bottom:445.826667pt;}
.ya4{bottom:447.746667pt;}
.y1a0{bottom:448.386667pt;}
.y75{bottom:449.986667pt;}
.y187{bottom:450.786667pt;}
.y12f{bottom:451.266667pt;}
.y122{bottom:451.746667pt;}
.y19{bottom:453.826667pt;}
.ye0{bottom:457.346667pt;}
.y169{bottom:458.306667pt;}
.y100{bottom:461.186667pt;}
.y3c{bottom:463.746667pt;}
.yf0{bottom:465.026667pt;}
.ybb{bottom:467.266667pt;}
.y5b{bottom:467.906667pt;}
.ya3{bottom:469.826667pt;}
.y19f{bottom:470.466667pt;}
.yce{bottom:471.106667pt;}
.y186{bottom:472.866667pt;}
.y18{bottom:475.266667pt;}
.y8a{bottom:475.906667pt;}
.y154{bottom:479.426667pt;}
.yff{bottom:483.266667pt;}
.y179{bottom:484.226667pt;}
.y3b{bottom:485.826667pt;}
.yef{bottom:487.106667pt;}
.y74{bottom:488.066667pt;}
.yba{bottom:489.346667pt;}
.y121{bottom:489.826667pt;}
.ya2{bottom:491.906667pt;}
.y19e{bottom:492.546667pt;}
.ydf{bottom:495.426667pt;}
.y168{bottom:496.386667pt;}
.y17{bottom:496.706667pt;}
.y10f{bottom:499.266667pt;}
.yfe{bottom:505.346667pt;}
.y5a{bottom:505.986667pt;}
.y178{bottom:506.306667pt;}
.ycd{bottom:509.186667pt;}
.y185{bottom:510.946667pt;}
.yb9{bottom:511.426667pt;}
.ya1{bottom:513.986667pt;}
.y19d{bottom:514.626667pt;}
.y153{bottom:517.506667pt;}
.y16{bottom:517.986667pt;}
.y10e{bottom:521.346667pt;}
.y3a{bottom:523.906667pt;}
.yee{bottom:525.186667pt;}
.y73{bottom:526.146667pt;}
.y12e{bottom:527.426667pt;}
.y120{bottom:527.906667pt;}
.y177{bottom:528.386667pt;}
.y89{bottom:531.266667pt;}
.yb8{bottom:533.506667pt;}
.y1b0{bottom:534.146667pt;}
.y167{bottom:534.466667pt;}
.y19c{bottom:536.706667pt;}
.y117{bottom:537.346667pt;}
.y15{bottom:539.426667pt;}
.yfd{bottom:543.426667pt;}
.y59{bottom:544.066667pt;}
.y39{bottom:545.986667pt;}
.ycc{bottom:547.266667pt;}
.y184{bottom:549.026667pt;}
.y14c{bottom:549.506667pt;}
.y1ae{bottom:550.626667pt;}
.y88{bottom:553.346667pt;}
.y152{bottom:555.613333pt;}
.y72{bottom:558.173333pt;}
.y19b{bottom:558.813333pt;}
.y10d{bottom:559.453333pt;}
.y176{bottom:560.413333pt;}
.y14{bottom:560.893333pt;}
.y12d{bottom:565.533333pt;}
.y58{bottom:566.173333pt;}
.y11f{bottom:566.333333pt;}
.y38{bottom:568.093333pt;}
.yed{bottom:569.373333pt;}
.y183{bottom:571.133333pt;}
.yb7{bottom:571.613333pt;}
.y166{bottom:572.573333pt;}
.yfc{bottom:581.533333pt;}
.ycb{bottom:585.373333pt;}
.y13{bottom:587.613333pt;}
.y57{bottom:588.253333pt;}
.y1ad{bottom:589.533333pt;}
.y37{bottom:590.173333pt;}
.y87{bottom:591.453333pt;}
.y143{bottom:593.693333pt;}
.y19a{bottom:596.893333pt;}
.y116{bottom:597.533333pt;}
.ya0{bottom:601.373333pt;}
.y11e{bottom:603.613333pt;}
.yca{bottom:607.453333pt;}
.y182{bottom:609.213333pt;}
.yb6{bottom:609.693333pt;}
.y56{bottom:610.333333pt;}
.y165{bottom:610.653333pt;}
.y36{bottom:612.253333pt;}
.y71{bottom:613.533333pt;}
.y175{bottom:615.773333pt;}
.y199{bottom:618.973333pt;}
.yfb{bottom:619.613333pt;}
.y9f{bottom:623.453333pt;}
.y13e{bottom:625.693333pt;}
.y1ac{bottom:628.253333pt;}
.yc9{bottom:629.533333pt;}
.y181{bottom:631.293333pt;}
.yde{bottom:631.773333pt;}
.y35{bottom:634.333333pt;}
.y70{bottom:635.613333pt;}
.y198{bottom:641.053333pt;}
.y11d{bottom:641.693333pt;}
.yf{bottom:644.733333pt;}
.y9e{bottom:645.533333pt;}
.yb5{bottom:647.773333pt;}
.y55{bottom:648.413333pt;}
.y164{bottom:648.733333pt;}
.y86{bottom:651.613333pt;}
.y174{bottom:653.853333pt;}
.y6f{bottom:657.693333pt;}
.y135{bottom:663.773333pt;}
.y1ab{bottom:666.973333pt;}
.yc8{bottom:667.613333pt;}
.y180{bottom:669.373333pt;}
.ydd{bottom:669.853333pt;}
.y34{bottom:672.413333pt;}
.y85{bottom:673.693333pt;}
.y197{bottom:679.133333pt;}
.y115{bottom:679.773333pt;}
.y9d{bottom:683.613333pt;}
.yb4{bottom:685.853333pt;}
.y54{bottom:686.493333pt;}
.y163{bottom:687.133333pt;}
.y17f{bottom:691.453333pt;}
.y173{bottom:691.933333pt;}
.y33{bottom:694.493333pt;}
.y6e{bottom:695.773333pt;}
.y10c{bottom:696.093333pt;}
.y196{bottom:701.213333pt;}
.y12c{bottom:701.853333pt;}
.y9c{bottom:705.693333pt;}
.ydc{bottom:707.933333pt;}
.y53{bottom:708.573333pt;}
.y162{bottom:708.733333pt;}
.y84{bottom:711.773333pt;}
.y32{bottom:716.573333pt;}
.y114{bottom:717.853333pt;}
.y195{bottom:723.613333pt;}
.yb3{bottom:723.933333pt;}
.y9b{bottom:727.773333pt;}
.y17e{bottom:729.533333pt;}
.y172{bottom:730.013333pt;}
.y52{bottom:730.653333pt;}
.y10b{bottom:733.373333pt;}
.y6d{bottom:733.853333pt;}
.y31{bottom:738.653333pt;}
.y11c{bottom:739.933333pt;}
.yb{bottom:741.693333pt;}
.ydb{bottom:746.013333pt;}
.y83{bottom:749.853333pt;}
.y51{bottom:752.733333pt;}
.y6c{bottom:755.933333pt;}
.y17d{bottom:758.333333pt;}
.y30{bottom:760.733333pt;}
.yb2{bottom:762.013333pt;}
.y10a{bottom:762.173333pt;}
.y9a{bottom:765.853333pt;}
.y14b{bottom:768.093333pt;}
.y82{bottom:771.933333pt;}
.y6b{bottom:778.013333pt;}
.y2f{bottom:782.813333pt;}
.yda{bottom:784.093333pt;}
.y99{bottom:787.973333pt;}
.y1a8{bottom:788.613333pt;}
.y194{bottom:790.533333pt;}
.y50{bottom:790.853333pt;}
.yec{bottom:794.053333pt;}
.yb1{bottom:800.133333pt;}
.yd9{bottom:806.213333pt;}
.y81{bottom:810.053333pt;}
.y193{bottom:812.613333pt;}
.y6a{bottom:816.133333pt;}
.y2e{bottom:820.933333pt;}
.y9{bottom:822.053333pt;}
.yb0{bottom:822.213333pt;}
.y4f{bottom:828.933333pt;}
.y80{bottom:832.133333pt;}
.yeb{bottom:838.213333pt;}
.y2d{bottom:843.013333pt;}
.yd8{bottom:844.293333pt;}
.y98{bottom:848.133333pt;}
.y4e{bottom:851.013333pt;}
.y69{bottom:854.213333pt;}
.yaf{bottom:860.293333pt;}
.y2c{bottom:865.093333pt;}
.y97{bottom:870.213333pt;}
.y1a6{bottom:871.493333pt;}
.y4d{bottom:873.093333pt;}
.y68{bottom:876.293333pt;}
.yd7{bottom:882.373333pt;}
.y2b{bottom:887.173333pt;}
.y8{bottom:890.533333pt;}
.y96{bottom:892.293333pt;}
.y4c{bottom:895.173333pt;}
.y67{bottom:898.373333pt;}
.y2a{bottom:909.253333pt;}
.y192{bottom:911.173333pt;}
.yc7{bottom:914.373333pt;}
.y4b{bottom:917.253333pt;}
.yd6{bottom:920.453333pt;}
.y7{bottom:927.013333pt;}
.y95{bottom:930.373333pt;}
.y1a4{bottom:932.293333pt;}
.y191{bottom:933.253333pt;}
.y66{bottom:936.453333pt;}
.y29{bottom:941.253333pt;}
.y94{bottom:952.453333pt;}
.y4a{bottom:955.333333pt;}
.y7f{bottom:958.533333pt;}
.y65{bottom:974.533333pt;}
.y6{bottom:977.413333pt;}
.y49{bottom:987.333333pt;}
.y28{bottom:996.613333pt;}
.y1{bottom:1031.360000pt;}
.h10{height:38.080000pt;}
.h13{height:38.112000pt;}
.h5{height:38.240000pt;}
.hb{height:39.706880pt;}
.h8{height:44.448000pt;}
.h6{height:44.664000pt;}
.h3{height:49.189120pt;}
.hf{height:58.688000pt;}
.h2{height:59.264000pt;}
.hc{height:59.552000pt;}
.h11{height:60.160000pt;}
.h12{height:60.192000pt;}
.h7{height:65.632000pt;}
.hd{height:68.664960pt;}
.he{height:69.890625pt;}
.h9{height:82.240000pt;}
.ha{height:97.795200pt;}
.h4{height:136.444800pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:54.720000pt;}
.w7{width:87.360000pt;}
.w4{width:112.032000pt;}
.w5{width:140.320000pt;}
.w6{width:216.066667pt;}
.w8{width:299.866667pt;}
.w9{width:300.066667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.080000pt;}
.x8{left:96.031988pt;}
.x9{left:97.312000pt;}
.x4{left:101.471988pt;}
.x6{left:104.191988pt;}
.xf{left:112.031988pt;}
.x11{left:120.031988pt;}
.x15{left:124.031988pt;}
.x10{left:128.031988pt;}
.x12{left:144.026655pt;}
.x16{left:148.026655pt;}
.xb{left:153.466667pt;}
.x13{left:168.026655pt;}
.x14{left:192.026655pt;}
.x7{left:201.306655pt;}
.xc{left:266.946667pt;}
.x3{left:313.026655pt;}
.x1{left:323.106655pt;}
.x5{left:350.306655pt;}
.x2{left:396.866655pt;}
.xd{left:408.546667pt;}
.xe{left:626.053333pt;}
}




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