
    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_34b025d07b9a4c61013056f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6c7af754d1bdf1a65e254769.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.171875;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_0125b27fe747cadd35877174.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_7d03c8abc23e40c6435f7925.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_f677d9e5f5eac379c4269790.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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_40cae7694a492693d22c85ee.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960449;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_dffa569648677104fcb8df7f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104492;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;}
.v1{vertical-align:54.720000px;}
.ls7{letter-spacing:-1.548000px;}
.lsa{letter-spacing:-1.134000px;}
.ls8{letter-spacing:-0.828000px;}
.lsf{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.414600px;}
.lsb{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.262200px;}
.ls2{letter-spacing:-0.229800px;}
.lse{letter-spacing:-0.152400px;}
.ls5{letter-spacing:-0.109200px;}
.ls1{letter-spacing:-0.030240px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.305400px;}
.ls11{letter-spacing:3.186000px;}
.ls10{letter-spacing:20.465280px;}
.ls4{letter-spacing:88.145280px;}
.ls13{letter-spacing:102.545280px;}
.ls12{letter-spacing:139.241280px;}
.ls14{letter-spacing:2991.605760px;}
.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;}
}
.ws0{word-spacing:-18.808440px;}
.ws3{word-spacing:-18.720120px;}
.ws4{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.305520px;}
.ws9{word-spacing:-18.262320px;}
.ws8{word-spacing:-18.152520px;}
.ws6{word-spacing:-18.109320px;}
.wsa{word-spacing:-17.694720px;}
.ws5{word-spacing:-17.586720px;}
.ws7{word-spacing:-15.226440px;}
.ws1{word-spacing:0.000000px;}
._7{margin-left:-17.183520px;}
._5{margin-left:-15.301920px;}
._6{margin-left:-14.252640px;}
._a{margin-left:-11.992800px;}
._3{margin-left:-10.206120px;}
._9{margin-left:-9.023640px;}
._8{margin-left:-7.692960px;}
._2{margin-left:-5.217120px;}
._1d{margin-left:-4.162560px;}
._4{margin-left:-2.819040px;}
._0{margin-left:-1.126080px;}
._b{width:1.161720px;}
._f{width:2.878920px;}
._14{width:4.636800px;}
._11{width:6.208800px;}
._10{width:7.418880px;}
._12{width:8.478720px;}
._d{width:10.134720px;}
._15{width:11.191680px;}
._e{width:12.254400px;}
._16{width:13.288320px;}
._13{width:14.399040px;}
._1e{width:15.464520px;}
._21{width:16.493760px;}
._2e{width:19.533960px;}
._18{width:20.534400px;}
._19{width:21.682560px;}
._1c{width:23.612160px;}
._1f{width:25.497480px;}
._1a{width:26.893440px;}
._1b{width:28.284480px;}
._17{width:29.543040px;}
._22{width:31.000320px;}
._23{width:32.391360px;}
._2d{width:33.453840px;}
._c{width:34.559520px;}
._20{width:36.167040px;}
._2c{width:37.340640px;}
._33{width:38.352960px;}
._2b{width:41.996160px;}
._2a{width:43.056000px;}
._31{width:44.513280px;}
._30{width:45.639360px;}
._25{width:50.643720px;}
._24{width:52.064640px;}
._26{width:61.926240px;}
._27{width:76.374720px;}
._32{width:102.215280px;}
._28{width:120.424320px;}
._1{width:124.535520px;}
._2f{width:138.935520px;}
._29{width:227.136960px;}
.fc3{color:transparent;}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.fs2{font-size:156.240000px;}
.y167{bottom:-1.155000px;}
.y0{bottom:0.000000px;}
.y158{bottom:0.870000px;}
.y16b{bottom:4.965000px;}
.y15c{bottom:7.710000px;}
.y15f{bottom:8.790000px;}
.y163{bottom:10.725000px;}
.y104{bottom:12.960000px;}
.y113{bottom:12.990000px;}
.y166{bottom:32.685000px;}
.y11f{bottom:41.394000px;}
.y106{bottom:41.400000px;}
.y112{bottom:41.430000px;}
.y10d{bottom:41.445000px;}
.y10b{bottom:41.580000px;}
.y161{bottom:54.105000px;}
.y165{bottom:54.285000px;}
.y156{bottom:56.310000px;}
.y2{bottom:57.456000px;}
.y15a{bottom:63.150000px;}
.y15d{bottom:64.410000px;}
.y109{bottom:69.840000px;}
.y11c{bottom:69.885000px;}
.y1{bottom:77.616000px;}
.y169{bottom:82.185000px;}
.y11b{bottom:98.325000px;}
.y1fb{bottom:111.636000px;}
.y1f5{bottom:113.256000px;}
.y15{bottom:114.336000px;}
.yb4{bottom:114.696000px;}
.yce{bottom:116.136000px;}
.y11e{bottom:119.916000px;}
.y139{bottom:121.176000px;}
.y35{bottom:121.356000px;}
.y102{bottom:122.076000px;}
.y8a{bottom:122.256000px;}
.y1b2{bottom:123.696000px;}
.y1e2{bottom:126.576000px;}
.y11a{bottom:126.765000px;}
.y174{bottom:127.116000px;}
.yeb{bottom:129.816000px;}
.y99{bottom:130.716000px;}
.y1c4{bottom:134.316000px;}
.y20c{bottom:138.636000px;}
.y1f4{bottom:141.876000px;}
.y54{bottom:142.956000px;}
.yb3{bottom:143.136000px;}
.y6a{bottom:144.396000px;}
.ycd{bottom:144.756000px;}
.y14{bottom:147.996000px;}
.y89{bottom:150.690000px;}
.y1fa{bottom:152.130000px;}
.y1b1{bottom:152.310000px;}
.y1e1{bottom:155.190000px;}
.y119{bottom:155.205000px;}
.y173{bottom:155.910000px;}
.yea{bottom:158.250000px;}
.y98{bottom:159.330000px;}
.y154{bottom:161.490000px;}
.y34{bottom:161.670000px;}
.y101{bottom:162.570000px;}
.y1c3{bottom:162.750000px;}
.y210{bottom:167.070000px;}
.y20b{bottom:167.250000px;}
.y1f3{bottom:170.310000px;}
.y53{bottom:171.570000px;}
.y19a{bottom:173.190000px;}
.y11d{bottom:177.510000px;}
.y1b0{bottom:180.750000px;}
.y13{bottom:183.450000px;}
.y118{bottom:183.645000px;}
.y172{bottom:184.350000px;}
.y69{bottom:184.890000px;}
.ycc{bottom:185.070000px;}
.ye9{bottom:186.690000px;}
.y97{bottom:187.770000px;}
.y153{bottom:189.930000px;}
.y88{bottom:191.010000px;}
.y1e0{bottom:195.330000px;}
.y1f2{bottom:198.750000px;}
.yb2{bottom:200.010000px;}
.y199{bottom:201.810000px;}
.y33{bottom:202.170000px;}
.y100{bottom:203.070000px;}
.y20a{bottom:207.390000px;}
.y1af{bottom:209.190000px;}
.y52{bottom:211.890000px;}
.y117{bottom:212.265000px;}
.y68{bottom:213.510000px;}
.ycb{bottom:213.690000px;}
.ye8{bottom:215.130000px;}
.y96{bottom:216.210000px;}
.y152{bottom:218.550000px;}
.y87{bottom:219.630000px;}
.y171{bottom:221.070000px;}
.y12{bottom:223.050000px;}
.y1df{bottom:223.950000px;}
.y1f1{bottom:227.190000px;}
.y198{bottom:230.250000px;}
.y138{bottom:230.790000px;}
.y1c2{bottom:231.690000px;}
.y115{bottom:235.290000px;}
.y209{bottom:236.010000px;}
.y1ae{bottom:237.630000px;}
.yb1{bottom:240.330000px;}
.y116{bottom:240.705000px;}
.y67{bottom:241.950000px;}
.yca{bottom:242.130000px;}
.y32{bottom:242.670000px;}
.yff{bottom:243.390000px;}
.ye7{bottom:243.570000px;}
.y95{bottom:244.650000px;}
.y151{bottom:246.990000px;}
.y20f{bottom:247.890000px;}
.y86{bottom:248.070000px;}
.y51{bottom:252.390000px;}
.y1de{bottom:252.570000px;}
.y1f0{bottom:255.630000px;}
.y197{bottom:258.690000px;}
.y1c1{bottom:260.130000px;}
.y11{bottom:261.210000px;}
.y208{bottom:264.630000px;}
.y1ad{bottom:266.070000px;}
.yb0{bottom:268.950000px;}
.yc9{bottom:270.570000px;}
.y137{bottom:271.110000px;}
.ye6{bottom:272.010000px;}
.y150{bottom:275.475000px;}
.y1f9{bottom:277.995000px;}
.y66{bottom:282.315000px;}
.y31{bottom:283.215000px;}
.y1ef{bottom:284.115000px;}
.y94{bottom:285.015000px;}
.y85{bottom:288.435000px;}
.y1c0{bottom:288.615000px;}
.y1dd{bottom:292.755000px;}
.y50{bottom:292.935000px;}
.y1ac{bottom:294.555000px;}
.y10{bottom:294.915000px;}
.yc8{bottom:299.055000px;}
.y136{bottom:299.775000px;}
.ye5{bottom:300.675000px;}
.y14f{bottom:303.915000px;}
.y207{bottom:304.815000px;}
.y1f8{bottom:306.615000px;}
.yaf{bottom:309.315000px;}
.yfe{bottom:312.375000px;}
.y1ee{bottom:312.555000px;}
.y84{bottom:317.055000px;}
.y1dc{bottom:321.375000px;}
.y4f{bottom:321.555000px;}
.y65{bottom:322.815000px;}
.y30{bottom:323.715000px;}
.y93{bottom:325.515000px;}
.yc7{bottom:327.495000px;}
.y196{bottom:327.675000px;}
.y135{bottom:328.215000px;}
.yf{bottom:328.575000px;}
.y1bf{bottom:328.935000px;}
.ye4{bottom:329.115000px;}
.y14e{bottom:332.355000px;}
.y206{bottom:333.435000px;}
.y1ab{bottom:334.875000px;}
.y1f7{bottom:335.055000px;}
.yae{bottom:337.935000px;}
.yfd{bottom:340.995000px;}
.y83{bottom:345.495000px;}
.y4e{bottom:349.995000px;}
.y1ed{bottom:352.875000px;}
.y92{bottom:354.135000px;}
.y134{bottom:356.655000px;}
.y2f{bottom:357.375000px;}
.ye3{bottom:357.555000px;}
.y14d{bottom:360.795000px;}
.y205{bottom:362.055000px;}
.ye{bottom:362.955000px;}
.y64{bottom:363.135000px;}
.y1aa{bottom:363.495000px;}
.yad{bottom:366.375000px;}
.yc6{bottom:367.815000px;}
.y195{bottom:367.995000px;}
.yfc{bottom:369.435000px;}
.y82{bottom:373.935000px;}
.y1db{bottom:378.435000px;}
.y1ec{bottom:381.495000px;}
.y91{bottom:382.575000px;}
.y1cb{bottom:385.815000px;}
.ye2{bottom:385.995000px;}
.y14c{bottom:389.235000px;}
.y4d{bottom:390.315000px;}
.y204{bottom:390.495000px;}
.y2e{bottom:391.035000px;}
.y63{bottom:391.755000px;}
.y1a9{bottom:391.935000px;}
.y185{bottom:393.375000px;}
.yac{bottom:394.815000px;}
.yc5{bottom:396.435000px;}
.y194{bottom:396.615000px;}
.y133{bottom:396.975000px;}
.yfb{bottom:398.055000px;}
.yd{bottom:398.595000px;}
.y1da{bottom:406.875000px;}
.y1eb{bottom:409.935000px;}
.y81{bottom:414.255000px;}
.y14b{bottom:417.855000px;}
.y4c{bottom:418.935000px;}
.y2d{bottom:419.295000px;}
.y1a8{bottom:420.375000px;}
.y90{bottom:422.895000px;}
.yab{bottom:423.435000px;}
.yc4{bottom:424.875000px;}
.y193{bottom:425.055000px;}
.ye1{bottom:426.315000px;}
.yfa{bottom:426.495000px;}
.y62{bottom:428.655000px;}
.y203{bottom:430.635000px;}
.y1be{bottom:432.255000px;}
.y184{bottom:433.875000px;}
.yc{bottom:434.415000px;}
.y1d9{bottom:435.315000px;}
.y132{bottom:437.475000px;}
.y1ea{bottom:438.375000px;}
.y80{bottom:442.875000px;}
.y1a7{bottom:448.815000px;}
.y2c{bottom:452.775000px;}
.yc3{bottom:453.315000px;}
.y192{bottom:453.495000px;}
.ye0{bottom:454.935000px;}
.y4b{bottom:459.255000px;}
.y202{bottom:459.435000px;}
.y1bd{bottom:460.875000px;}
.y183{bottom:462.495000px;}
.y8f{bottom:463.395000px;}
.yaa{bottom:463.575000px;}
.y14a{bottom:463.935000px;}
.yf9{bottom:466.635000px;}
.y1e9{bottom:466.815000px;}
.y7f{bottom:471.315000px;}
.yb{bottom:475.455000px;}
.y1d8{bottom:475.635000px;}
.y131{bottom:477.795000px;}
.y2b{bottom:481.035000px;}
.yc2{bottom:481.755000px;}
.y191{bottom:481.935000px;}
.ydf{bottom:483.375000px;}
.y4a{bottom:487.875000px;}
.y1a6{bottom:489.135000px;}
.y1bc{bottom:489.315000px;}
.y182{bottom:490.935000px;}
.y114{bottom:492.195000px;}
.y149{bottom:492.735000px;}
.yf8{bottom:495.435000px;}
.y20e{bottom:499.755000px;}
.y8e{bottom:503.715000px;}
.ya9{bottom:504.075000px;}
.y1d7{bottom:504.255000px;}
.yc1{bottom:510.375000px;}
.y190{bottom:510.555000px;}
.y7e{bottom:511.635000px;}
.yde{bottom:511.815000px;}
.y2a{bottom:514.515000px;}
.y49{bottom:516.315000px;}
.y1a5{bottom:517.755000px;}
.y130{bottom:518.295000px;}
.y181{bottom:519.375000px;}
.y148{bottom:521.175000px;}
.yf7{bottom:523.875000px;}
.y201{bottom:528.015000px;}
.ya{bottom:530.895000px;}
.y8d{bottom:532.515000px;}
.ya8{bottom:532.695000px;}
.y20d{bottom:540.075000px;}
.ydd{bottom:540.255000px;}
.y29{bottom:542.595000px;}
.y1a4{bottom:546.195000px;}
.y180{bottom:547.815000px;}
.y111{bottom:549.795000px;}
.y18f{bottom:550.695000px;}
.y7d{bottom:552.135000px;}
.yf6{bottom:552.315000px;}
.yc0{bottom:556.665000px;}
.y200{bottom:556.845000px;}
.y12f{bottom:558.825000px;}
.y1d6{bottom:561.165000px;}
.y48{bottom:562.605000px;}
.y1e8{bottom:564.045000px;}
.y147{bottom:567.465000px;}
.ydc{bottom:568.725000px;}
.y8c{bottom:569.265000px;}
.ya7{bottom:573.045000px;}
.y1a3{bottom:574.845000px;}
.y28{bottom:576.285000px;}
.y18e{bottom:579.345000px;}
.y7c{bottom:580.785000px;}
.ybf{bottom:585.285000px;}
.y1bb{bottom:586.545000px;}
.y9{bottom:588.705000px;}
.y47{bottom:591.225000px;}
.y1e7{bottom:592.845000px;}
.y1ff{bottom:596.985000px;}
.ydb{bottom:597.165000px;}
.yf5{bottom:598.605000px;}
.y12e{bottom:599.325000px;}
.y1d5{bottom:601.485000px;}
.y27{bottom:604.365000px;}
.y17f{bottom:604.725000px;}
.y110{bottom:607.605000px;}
.y146{bottom:607.965000px;}
.y170{bottom:609.045000px;}
.y7b{bottom:609.225000px;}
.ya6{bottom:613.545000px;}
.ybe{bottom:613.725000px;}
.y1a2{bottom:614.985000px;}
.y1ba{bottom:615.165000px;}
.y1e6{bottom:621.285000px;}
.y1fe{bottom:625.605000px;}
.yf4{bottom:627.225000px;}
.y1d4{bottom:630.105000px;}
.y46{bottom:631.545000px;}
.y26{bottom:632.445000px;}
.y17e{bottom:633.165000px;}
.yda{bottom:637.485000px;}
.y7a{bottom:637.665000px;}
.y168{bottom:638.460000px;}
.y12d{bottom:639.645000px;}
.y8{bottom:640.005000px;}
.ya5{bottom:642.165000px;}
.y1a1{bottom:643.605000px;}
.y18d{bottom:648.105000px;}
.y145{bottom:648.285000px;}
.y1ca{bottom:649.545000px;}
.y1e5{bottom:649.725000px;}
.yf3{bottom:655.665000px;}
.y1d3{bottom:658.545000px;}
.y45{bottom:660.165000px;}
.y25{bottom:660.345000px;}
.y17d{bottom:661.605000px;}
.y1fd{bottom:665.925000px;}
.yd9{bottom:666.105000px;}
.ya4{bottom:670.605000px;}
.y1a0{bottom:672.225000px;}
.y18c{bottom:676.725000px;}
.y16a{bottom:677.265000px;}
.y79{bottom:677.985000px;}
.y1c9{bottom:678.165000px;}
.y12c{bottom:680.145000px;}
.yf2{bottom:684.105000px;}
.y1d2{bottom:686.985000px;}
.y24{bottom:688.425000px;}
.y44{bottom:688.605000px;}
.y144{bottom:688.785000px;}
.y7{bottom:691.485000px;}
.y10f{bottom:693.645000px;}
.yd8{bottom:694.545000px;}
.ya3{bottom:699.045000px;}
.y19f{bottom:700.665000px;}
.y17c{bottom:701.925000px;}
.y18b{bottom:705.345000px;}
.y78{bottom:706.605000px;}
.y12b{bottom:708.765000px;}
.yf1{bottom:712.545000px;}
.y1d1{bottom:715.425000px;}
.y23{bottom:716.325000px;}
.yd7{bottom:722.985000px;}
.ybd{bottom:727.485000px;}
.y43{bottom:728.925000px;}
.y19e{bottom:729.105000px;}
.y143{bottom:729.285000px;}
.y17b{bottom:730.545000px;}
.y18a{bottom:733.785000px;}
.y77{bottom:735.045000px;}
.ya2{bottom:739.365000px;}
.y1b9{bottom:740.805000px;}
.yf0{bottom:740.985000px;}
.y1d0{bottom:743.865000px;}
.y6{bottom:746.565000px;}
.y1e4{bottom:746.925000px;}
.y12a{bottom:749.085000px;}
.y22{bottom:749.805000px;}
.y10e{bottom:751.425000px;}
.yd6{bottom:751.605000px;}
.y42{bottom:757.545000px;}
.y17a{bottom:758.985000px;}
.y189{bottom:762.225000px;}
.y76{bottom:763.485000px;}
.ybc{bottom:767.805000px;}
.y1f6{bottom:769.425000px;}
.yef{bottom:769.605000px;}
.y142{bottom:769.785000px;}
.y61{bottom:770.865000px;}
.y1cf{bottom:772.305000px;}
.y19d{bottom:775.365000px;}
.y1e3{bottom:775.545000px;}
.y129{bottom:777.705000px;}
.y21{bottom:778.065000px;}
.ya1{bottom:779.865000px;}
.yd5{bottom:780.045000px;}
.y5{bottom:780.405000px;}
.y41{bottom:785.985000px;}
.y179{bottom:787.605000px;}
.y16f{bottom:791.745000px;}
.y75{bottom:791.925000px;}
.y164{bottom:792.360000px;}
.y160{bottom:792.540000px;}
.yee{bottom:798.045000px;}
.y60{bottom:799.485000px;}
.y1ce{bottom:800.925000px;}
.y188{bottom:802.545000px;}
.y1c8{bottom:803.805000px;}
.y19c{bottom:803.985000px;}
.ybb{bottom:808.305000px;}
.ya0{bottom:808.485000px;}
.y10c{bottom:809.025000px;}
.y4{bottom:809.925000px;}
.y141{bottom:810.105000px;}
.y20{bottom:811.545000px;}
.y40{bottom:814.425000px;}
.y178{bottom:816.045000px;}
.y128{bottom:818.025000px;}
.yd4{bottom:820.185000px;}
.y16e{bottom:820.365000px;}
.y162{bottom:825.045000px;}
.yed{bottom:826.485000px;}
.y5f{bottom:827.925000px;}
.y187{bottom:831.165000px;}
.y74{bottom:832.245000px;}
.y19b{bottom:832.425000px;}
.y9f{bottom:836.925000px;}
.y1f{bottom:839.850000px;}
.y3f{bottom:842.910000px;}
.y177{bottom:844.530000px;}
.y1cd{bottom:847.230000px;}
.yd3{bottom:849.030000px;}
.y140{bottom:850.650000px;}
.y1b8{bottom:854.970000px;}
.y5e{bottom:856.410000px;}
.y127{bottom:858.570000px;}
.y1c7{bottom:860.910000px;}
.y9e{bottom:865.410000px;}
.y10a{bottom:866.670000px;}
.y186{bottom:868.110000px;}
.y3e{bottom:871.350000px;}
.y73{bottom:872.790000px;}
.y176{bottom:872.970000px;}
.y1e{bottom:873.330000px;}
.yd2{bottom:877.470000px;}
.y1cc{bottom:884.310000px;}
.y5d{bottom:885.030000px;}
.y16d{bottom:889.170000px;}
.y1c6{bottom:889.350000px;}
.y13f{bottom:891.150000px;}
.y9d{bottom:893.850000px;}
.y1b7{bottom:895.290000px;}
.y126{bottom:899.070000px;}
.y72{bottom:901.410000px;}
.y1d{bottom:901.590000px;}
.y3d{bottom:911.670000px;}
.y5c{bottom:913.470000px;}
.yd1{bottom:917.610000px;}
.y16c{bottom:917.790000px;}
.yba{bottom:922.290000px;}
.y159{bottom:923.040000px;}
.y1b6{bottom:923.910000px;}
.y108{bottom:924.450000px;}
.y125{bottom:927.690000px;}
.y1c{bottom:929.490000px;}
.y1c5{bottom:929.670000px;}
.y71{bottom:929.850000px;}
.y13e{bottom:931.650000px;}
.y9c{bottom:934.170000px;}
.y3c{bottom:940.290000px;}
.y5b{bottom:941.910000px;}
.yd0{bottom:946.410000px;}
.y1b5{bottom:952.350000px;}
.y124{bottom:956.130000px;}
.y1b{bottom:957.390000px;}
.y70{bottom:958.290000px;}
.yb9{bottom:962.610000px;}
.y15b{bottom:964.590000px;}
.y15e{bottom:965.670000px;}
.y5a{bottom:970.350000px;}
.y13d{bottom:972.150000px;}
.y9b{bottom:974.670000px;}
.ycf{bottom:974.850000px;}
.y3b{bottom:980.610000px;}
.y1b4{bottom:980.790000px;}
.y123{bottom:984.570000px;}
.y1a{bottom:985.470000px;}
.y1fc{bottom:986.550000px;}
.y6f{bottom:986.730000px;}
.yec{bottom:998.610000px;}
.y59{bottom:998.790000px;}
.yb8{bottom:1003.110000px;}
.y3a{bottom:1009.230000px;}
.y107{bottom:1010.490000px;}
.y122{bottom:1013.010000px;}
.y19{bottom:1013.370000px;}
.y13c{bottom:1014.270000px;}
.y9a{bottom:1014.990000px;}
.y6e{bottom:1015.170000px;}
.y1b3{bottom:1027.050000px;}
.y58{bottom:1027.230000px;}
.yb7{bottom:1031.730000px;}
.y39{bottom:1037.670000px;}
.y6d{bottom:1043.790000px;}
.y18{bottom:1047.030000px;}
.y121{bottom:1053.330000px;}
.y8b{bottom:1055.490000px;}
.y57{bottom:1055.670000px;}
.y155{bottom:1055.880000px;}
.y13b{bottom:1056.570000px;}
.y38{bottom:1066.110000px;}
.y17{bottom:1067.550000px;}
.y105{bottom:1068.270000px;}
.y120{bottom:1069.710000px;}
.yb6{bottom:1072.050000px;}
.y6c{bottom:1072.230000px;}
.y175{bottom:1083.930000px;}
.y56{bottom:1084.110000px;}
.y157{bottom:1090.590000px;}
.y37{bottom:1094.550000px;}
.y13a{bottom:1098.690000px;}
.y6b{bottom:1100.670000px;}
.y16{bottom:1107.150000px;}
.yb5{bottom:1112.370000px;}
.y55{bottom:1112.550000px;}
.y103{bottom:1127.340000px;}
.y3{bottom:1141.020000px;}
.y36{bottom:1141.200000px;}
.hb{height:28.440000px;}
.hd{height:56.880000px;}
.hc{height:56.916000px;}
.hf{height:57.060000px;}
.h9{height:59.415469px;}
.h2{height:65.884219px;}
.h4{height:67.824844px;}
.h8{height:69.086250px;}
.h14{height:69.840000px;}
.h15{height:70.020000px;}
.h11{height:72.000000px;}
.h7{height:73.722656px;}
.h12{height:78.840000px;}
.h13{height:80.100000px;}
.he{height:85.320000px;}
.h3{height:86.255508px;}
.ha{height:91.177734px;}
.h16{height:97.920000px;}
.h17{height:123.806250px;}
.h6{height:134.912461px;}
.h5{height:159.978164px;}
.h10{height:256.170000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:106.560000px;}
.wa{width:107.640000px;}
.wb{width:157.140000px;}
.w3{width:158.430000px;}
.w4{width:158.580000px;}
.w5{width:158.610000px;}
.w9{width:159.480000px;}
.w6{width:161.640000px;}
.w7{width:161.820000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.x15{left:13.935000px;}
.x12{left:16.095000px;}
.x1e{left:22.605000px;}
.x18{left:23.685000px;}
.x20{left:25.095000px;}
.x19{left:39.705000px;}
.x1c{left:48.495000px;}
.x14{left:63.075000px;}
.x22{left:65.055000px;}
.x2{left:127.655987px;}
.x3{left:154.649987px;}
.x5{left:187.769987px;}
.x6{left:201.989987px;}
.x7{left:204.869987px;}
.xf{left:287.535000px;}
.x9{left:292.394987px;}
.x11{left:328.500000px;}
.x1a{left:330.840000px;}
.x1f{left:333.000000px;}
.x16{left:356.294987px;}
.x1b{left:364.754987px;}
.xa{left:367.994987px;}
.x13{left:380.954987px;}
.x21{left:385.274987px;}
.x8{left:446.474987px;}
.x23{left:507.884987px;}
.x24{left:542.804987px;}
.x1d{left:579.420000px;}
.x17{left:580.500000px;}
.x4{left:602.924987px;}
.x10{left:606.165000px;}
.xb{left:728.069987px;}
.x25{left:732.929987px;}
.xd{left:748.769987px;}
.x1{left:757.229987px;}
.xc{left:825.269987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:48.640000pt;}
.ls7{letter-spacing:-1.376000pt;}
.lsa{letter-spacing:-1.008000pt;}
.ls8{letter-spacing:-0.736000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.368533pt;}
.lsb{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.233067pt;}
.ls2{letter-spacing:-0.204267pt;}
.lse{letter-spacing:-0.135467pt;}
.ls5{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:-0.026880pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.271467pt;}
.ls11{letter-spacing:2.832000pt;}
.ls10{letter-spacing:18.191360pt;}
.ls4{letter-spacing:78.351360pt;}
.ls13{letter-spacing:91.151360pt;}
.ls12{letter-spacing:123.770027pt;}
.ls14{letter-spacing:2659.205120pt;}
.ws0{word-spacing:-16.718613pt;}
.ws3{word-spacing:-16.640107pt;}
.ws4{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.271573pt;}
.ws9{word-spacing:-16.233173pt;}
.ws8{word-spacing:-16.135573pt;}
.ws6{word-spacing:-16.097173pt;}
.wsa{word-spacing:-15.728640pt;}
.ws5{word-spacing:-15.632640pt;}
.ws7{word-spacing:-13.534613pt;}
.ws1{word-spacing:0.000000pt;}
._7{margin-left:-15.274240pt;}
._5{margin-left:-13.601707pt;}
._6{margin-left:-12.669013pt;}
._a{margin-left:-10.660267pt;}
._3{margin-left:-9.072107pt;}
._9{margin-left:-8.021013pt;}
._8{margin-left:-6.838187pt;}
._2{margin-left:-4.637440pt;}
._1d{margin-left:-3.700053pt;}
._4{margin-left:-2.505813pt;}
._0{margin-left:-1.000960pt;}
._b{width:1.032640pt;}
._f{width:2.559040pt;}
._14{width:4.121600pt;}
._11{width:5.518933pt;}
._10{width:6.594560pt;}
._12{width:7.536640pt;}
._d{width:9.008640pt;}
._15{width:9.948160pt;}
._e{width:10.892800pt;}
._16{width:11.811840pt;}
._13{width:12.799147pt;}
._1e{width:13.746240pt;}
._21{width:14.661120pt;}
._2e{width:17.363520pt;}
._18{width:18.252800pt;}
._19{width:19.273387pt;}
._1c{width:20.988587pt;}
._1f{width:22.664427pt;}
._1a{width:23.905280pt;}
._1b{width:25.141760pt;}
._17{width:26.260480pt;}
._22{width:27.555840pt;}
._23{width:28.792320pt;}
._2d{width:29.736747pt;}
._c{width:30.719573pt;}
._20{width:32.148480pt;}
._2c{width:33.191680pt;}
._33{width:34.091520pt;}
._2b{width:37.329920pt;}
._2a{width:38.272000pt;}
._31{width:39.567360pt;}
._30{width:40.568320pt;}
._25{width:45.016640pt;}
._24{width:46.279680pt;}
._26{width:55.045547pt;}
._27{width:67.888640pt;}
._32{width:90.858027pt;}
._28{width:107.043840pt;}
._1{width:110.698240pt;}
._2f{width:123.498240pt;}
._29{width:201.899520pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.fs2{font-size:138.880000pt;}
.y167{bottom:-1.026667pt;}
.y0{bottom:0.000000pt;}
.y158{bottom:0.773333pt;}
.y16b{bottom:4.413333pt;}
.y15c{bottom:6.853333pt;}
.y15f{bottom:7.813333pt;}
.y163{bottom:9.533333pt;}
.y104{bottom:11.520000pt;}
.y113{bottom:11.546667pt;}
.y166{bottom:29.053333pt;}
.y11f{bottom:36.794667pt;}
.y106{bottom:36.800000pt;}
.y112{bottom:36.826667pt;}
.y10d{bottom:36.840000pt;}
.y10b{bottom:36.960000pt;}
.y161{bottom:48.093333pt;}
.y165{bottom:48.253333pt;}
.y156{bottom:50.053333pt;}
.y2{bottom:51.072000pt;}
.y15a{bottom:56.133333pt;}
.y15d{bottom:57.253333pt;}
.y109{bottom:62.080000pt;}
.y11c{bottom:62.120000pt;}
.y1{bottom:68.992000pt;}
.y169{bottom:73.053333pt;}
.y11b{bottom:87.400000pt;}
.y1fb{bottom:99.232000pt;}
.y1f5{bottom:100.672000pt;}
.y15{bottom:101.632000pt;}
.yb4{bottom:101.952000pt;}
.yce{bottom:103.232000pt;}
.y11e{bottom:106.592000pt;}
.y139{bottom:107.712000pt;}
.y35{bottom:107.872000pt;}
.y102{bottom:108.512000pt;}
.y8a{bottom:108.672000pt;}
.y1b2{bottom:109.952000pt;}
.y1e2{bottom:112.512000pt;}
.y11a{bottom:112.680000pt;}
.y174{bottom:112.992000pt;}
.yeb{bottom:115.392000pt;}
.y99{bottom:116.192000pt;}
.y1c4{bottom:119.392000pt;}
.y20c{bottom:123.232000pt;}
.y1f4{bottom:126.112000pt;}
.y54{bottom:127.072000pt;}
.yb3{bottom:127.232000pt;}
.y6a{bottom:128.352000pt;}
.ycd{bottom:128.672000pt;}
.y14{bottom:131.552000pt;}
.y89{bottom:133.946667pt;}
.y1fa{bottom:135.226667pt;}
.y1b1{bottom:135.386667pt;}
.y1e1{bottom:137.946667pt;}
.y119{bottom:137.960000pt;}
.y173{bottom:138.586667pt;}
.yea{bottom:140.666667pt;}
.y98{bottom:141.626667pt;}
.y154{bottom:143.546667pt;}
.y34{bottom:143.706667pt;}
.y101{bottom:144.506667pt;}
.y1c3{bottom:144.666667pt;}
.y210{bottom:148.506667pt;}
.y20b{bottom:148.666667pt;}
.y1f3{bottom:151.386667pt;}
.y53{bottom:152.506667pt;}
.y19a{bottom:153.946667pt;}
.y11d{bottom:157.786667pt;}
.y1b0{bottom:160.666667pt;}
.y13{bottom:163.066667pt;}
.y118{bottom:163.240000pt;}
.y172{bottom:163.866667pt;}
.y69{bottom:164.346667pt;}
.ycc{bottom:164.506667pt;}
.ye9{bottom:165.946667pt;}
.y97{bottom:166.906667pt;}
.y153{bottom:168.826667pt;}
.y88{bottom:169.786667pt;}
.y1e0{bottom:173.626667pt;}
.y1f2{bottom:176.666667pt;}
.yb2{bottom:177.786667pt;}
.y199{bottom:179.386667pt;}
.y33{bottom:179.706667pt;}
.y100{bottom:180.506667pt;}
.y20a{bottom:184.346667pt;}
.y1af{bottom:185.946667pt;}
.y52{bottom:188.346667pt;}
.y117{bottom:188.680000pt;}
.y68{bottom:189.786667pt;}
.ycb{bottom:189.946667pt;}
.ye8{bottom:191.226667pt;}
.y96{bottom:192.186667pt;}
.y152{bottom:194.266667pt;}
.y87{bottom:195.226667pt;}
.y171{bottom:196.506667pt;}
.y12{bottom:198.266667pt;}
.y1df{bottom:199.066667pt;}
.y1f1{bottom:201.946667pt;}
.y198{bottom:204.666667pt;}
.y138{bottom:205.146667pt;}
.y1c2{bottom:205.946667pt;}
.y115{bottom:209.146667pt;}
.y209{bottom:209.786667pt;}
.y1ae{bottom:211.226667pt;}
.yb1{bottom:213.626667pt;}
.y116{bottom:213.960000pt;}
.y67{bottom:215.066667pt;}
.yca{bottom:215.226667pt;}
.y32{bottom:215.706667pt;}
.yff{bottom:216.346667pt;}
.ye7{bottom:216.506667pt;}
.y95{bottom:217.466667pt;}
.y151{bottom:219.546667pt;}
.y20f{bottom:220.346667pt;}
.y86{bottom:220.506667pt;}
.y51{bottom:224.346667pt;}
.y1de{bottom:224.506667pt;}
.y1f0{bottom:227.226667pt;}
.y197{bottom:229.946667pt;}
.y1c1{bottom:231.226667pt;}
.y11{bottom:232.186667pt;}
.y208{bottom:235.226667pt;}
.y1ad{bottom:236.506667pt;}
.yb0{bottom:239.066667pt;}
.yc9{bottom:240.506667pt;}
.y137{bottom:240.986667pt;}
.ye6{bottom:241.786667pt;}
.y150{bottom:244.866667pt;}
.y1f9{bottom:247.106667pt;}
.y66{bottom:250.946667pt;}
.y31{bottom:251.746667pt;}
.y1ef{bottom:252.546667pt;}
.y94{bottom:253.346667pt;}
.y85{bottom:256.386667pt;}
.y1c0{bottom:256.546667pt;}
.y1dd{bottom:260.226667pt;}
.y50{bottom:260.386667pt;}
.y1ac{bottom:261.826667pt;}
.y10{bottom:262.146667pt;}
.yc8{bottom:265.826667pt;}
.y136{bottom:266.466667pt;}
.ye5{bottom:267.266667pt;}
.y14f{bottom:270.146667pt;}
.y207{bottom:270.946667pt;}
.y1f8{bottom:272.546667pt;}
.yaf{bottom:274.946667pt;}
.yfe{bottom:277.666667pt;}
.y1ee{bottom:277.826667pt;}
.y84{bottom:281.826667pt;}
.y1dc{bottom:285.666667pt;}
.y4f{bottom:285.826667pt;}
.y65{bottom:286.946667pt;}
.y30{bottom:287.746667pt;}
.y93{bottom:289.346667pt;}
.yc7{bottom:291.106667pt;}
.y196{bottom:291.266667pt;}
.y135{bottom:291.746667pt;}
.yf{bottom:292.066667pt;}
.y1bf{bottom:292.386667pt;}
.ye4{bottom:292.546667pt;}
.y14e{bottom:295.426667pt;}
.y206{bottom:296.386667pt;}
.y1ab{bottom:297.666667pt;}
.y1f7{bottom:297.826667pt;}
.yae{bottom:300.386667pt;}
.yfd{bottom:303.106667pt;}
.y83{bottom:307.106667pt;}
.y4e{bottom:311.106667pt;}
.y1ed{bottom:313.666667pt;}
.y92{bottom:314.786667pt;}
.y134{bottom:317.026667pt;}
.y2f{bottom:317.666667pt;}
.ye3{bottom:317.826667pt;}
.y14d{bottom:320.706667pt;}
.y205{bottom:321.826667pt;}
.ye{bottom:322.626667pt;}
.y64{bottom:322.786667pt;}
.y1aa{bottom:323.106667pt;}
.yad{bottom:325.666667pt;}
.yc6{bottom:326.946667pt;}
.y195{bottom:327.106667pt;}
.yfc{bottom:328.386667pt;}
.y82{bottom:332.386667pt;}
.y1db{bottom:336.386667pt;}
.y1ec{bottom:339.106667pt;}
.y91{bottom:340.066667pt;}
.y1cb{bottom:342.946667pt;}
.ye2{bottom:343.106667pt;}
.y14c{bottom:345.986667pt;}
.y4d{bottom:346.946667pt;}
.y204{bottom:347.106667pt;}
.y2e{bottom:347.586667pt;}
.y63{bottom:348.226667pt;}
.y1a9{bottom:348.386667pt;}
.y185{bottom:349.666667pt;}
.yac{bottom:350.946667pt;}
.yc5{bottom:352.386667pt;}
.y194{bottom:352.546667pt;}
.y133{bottom:352.866667pt;}
.yfb{bottom:353.826667pt;}
.yd{bottom:354.306667pt;}
.y1da{bottom:361.666667pt;}
.y1eb{bottom:364.386667pt;}
.y81{bottom:368.226667pt;}
.y14b{bottom:371.426667pt;}
.y4c{bottom:372.386667pt;}
.y2d{bottom:372.706667pt;}
.y1a8{bottom:373.666667pt;}
.y90{bottom:375.906667pt;}
.yab{bottom:376.386667pt;}
.yc4{bottom:377.666667pt;}
.y193{bottom:377.826667pt;}
.ye1{bottom:378.946667pt;}
.yfa{bottom:379.106667pt;}
.y62{bottom:381.026667pt;}
.y203{bottom:382.786667pt;}
.y1be{bottom:384.226667pt;}
.y184{bottom:385.666667pt;}
.yc{bottom:386.146667pt;}
.y1d9{bottom:386.946667pt;}
.y132{bottom:388.866667pt;}
.y1ea{bottom:389.666667pt;}
.y80{bottom:393.666667pt;}
.y1a7{bottom:398.946667pt;}
.y2c{bottom:402.466667pt;}
.yc3{bottom:402.946667pt;}
.y192{bottom:403.106667pt;}
.ye0{bottom:404.386667pt;}
.y4b{bottom:408.226667pt;}
.y202{bottom:408.386667pt;}
.y1bd{bottom:409.666667pt;}
.y183{bottom:411.106667pt;}
.y8f{bottom:411.906667pt;}
.yaa{bottom:412.066667pt;}
.y14a{bottom:412.386667pt;}
.yf9{bottom:414.786667pt;}
.y1e9{bottom:414.946667pt;}
.y7f{bottom:418.946667pt;}
.yb{bottom:422.626667pt;}
.y1d8{bottom:422.786667pt;}
.y131{bottom:424.706667pt;}
.y2b{bottom:427.586667pt;}
.yc2{bottom:428.226667pt;}
.y191{bottom:428.386667pt;}
.ydf{bottom:429.666667pt;}
.y4a{bottom:433.666667pt;}
.y1a6{bottom:434.786667pt;}
.y1bc{bottom:434.946667pt;}
.y182{bottom:436.386667pt;}
.y114{bottom:437.506667pt;}
.y149{bottom:437.986667pt;}
.yf8{bottom:440.386667pt;}
.y20e{bottom:444.226667pt;}
.y8e{bottom:447.746667pt;}
.ya9{bottom:448.066667pt;}
.y1d7{bottom:448.226667pt;}
.yc1{bottom:453.666667pt;}
.y190{bottom:453.826667pt;}
.y7e{bottom:454.786667pt;}
.yde{bottom:454.946667pt;}
.y2a{bottom:457.346667pt;}
.y49{bottom:458.946667pt;}
.y1a5{bottom:460.226667pt;}
.y130{bottom:460.706667pt;}
.y181{bottom:461.666667pt;}
.y148{bottom:463.266667pt;}
.yf7{bottom:465.666667pt;}
.y201{bottom:469.346667pt;}
.ya{bottom:471.906667pt;}
.y8d{bottom:473.346667pt;}
.ya8{bottom:473.506667pt;}
.y20d{bottom:480.066667pt;}
.ydd{bottom:480.226667pt;}
.y29{bottom:482.306667pt;}
.y1a4{bottom:485.506667pt;}
.y180{bottom:486.946667pt;}
.y111{bottom:488.706667pt;}
.y18f{bottom:489.506667pt;}
.y7d{bottom:490.786667pt;}
.yf6{bottom:490.946667pt;}
.yc0{bottom:494.813333pt;}
.y200{bottom:494.973333pt;}
.y12f{bottom:496.733333pt;}
.y1d6{bottom:498.813333pt;}
.y48{bottom:500.093333pt;}
.y1e8{bottom:501.373333pt;}
.y147{bottom:504.413333pt;}
.ydc{bottom:505.533333pt;}
.y8c{bottom:506.013333pt;}
.ya7{bottom:509.373333pt;}
.y1a3{bottom:510.973333pt;}
.y28{bottom:512.253333pt;}
.y18e{bottom:514.973333pt;}
.y7c{bottom:516.253333pt;}
.ybf{bottom:520.253333pt;}
.y1bb{bottom:521.373333pt;}
.y9{bottom:523.293333pt;}
.y47{bottom:525.533333pt;}
.y1e7{bottom:526.973333pt;}
.y1ff{bottom:530.653333pt;}
.ydb{bottom:530.813333pt;}
.yf5{bottom:532.093333pt;}
.y12e{bottom:532.733333pt;}
.y1d5{bottom:534.653333pt;}
.y27{bottom:537.213333pt;}
.y17f{bottom:537.533333pt;}
.y110{bottom:540.093333pt;}
.y146{bottom:540.413333pt;}
.y170{bottom:541.373333pt;}
.y7b{bottom:541.533333pt;}
.ya6{bottom:545.373333pt;}
.ybe{bottom:545.533333pt;}
.y1a2{bottom:546.653333pt;}
.y1ba{bottom:546.813333pt;}
.y1e6{bottom:552.253333pt;}
.y1fe{bottom:556.093333pt;}
.yf4{bottom:557.533333pt;}
.y1d4{bottom:560.093333pt;}
.y46{bottom:561.373333pt;}
.y26{bottom:562.173333pt;}
.y17e{bottom:562.813333pt;}
.yda{bottom:566.653333pt;}
.y7a{bottom:566.813333pt;}
.y168{bottom:567.520000pt;}
.y12d{bottom:568.573333pt;}
.y8{bottom:568.893333pt;}
.ya5{bottom:570.813333pt;}
.y1a1{bottom:572.093333pt;}
.y18d{bottom:576.093333pt;}
.y145{bottom:576.253333pt;}
.y1ca{bottom:577.373333pt;}
.y1e5{bottom:577.533333pt;}
.yf3{bottom:582.813333pt;}
.y1d3{bottom:585.373333pt;}
.y45{bottom:586.813333pt;}
.y25{bottom:586.973333pt;}
.y17d{bottom:588.093333pt;}
.y1fd{bottom:591.933333pt;}
.yd9{bottom:592.093333pt;}
.ya4{bottom:596.093333pt;}
.y1a0{bottom:597.533333pt;}
.y18c{bottom:601.533333pt;}
.y16a{bottom:602.013333pt;}
.y79{bottom:602.653333pt;}
.y1c9{bottom:602.813333pt;}
.y12c{bottom:604.573333pt;}
.yf2{bottom:608.093333pt;}
.y1d2{bottom:610.653333pt;}
.y24{bottom:611.933333pt;}
.y44{bottom:612.093333pt;}
.y144{bottom:612.253333pt;}
.y7{bottom:614.653333pt;}
.y10f{bottom:616.573333pt;}
.yd8{bottom:617.373333pt;}
.ya3{bottom:621.373333pt;}
.y19f{bottom:622.813333pt;}
.y17c{bottom:623.933333pt;}
.y18b{bottom:626.973333pt;}
.y78{bottom:628.093333pt;}
.y12b{bottom:630.013333pt;}
.yf1{bottom:633.373333pt;}
.y1d1{bottom:635.933333pt;}
.y23{bottom:636.733333pt;}
.yd7{bottom:642.653333pt;}
.ybd{bottom:646.653333pt;}
.y43{bottom:647.933333pt;}
.y19e{bottom:648.093333pt;}
.y143{bottom:648.253333pt;}
.y17b{bottom:649.373333pt;}
.y18a{bottom:652.253333pt;}
.y77{bottom:653.373333pt;}
.ya2{bottom:657.213333pt;}
.y1b9{bottom:658.493333pt;}
.yf0{bottom:658.653333pt;}
.y1d0{bottom:661.213333pt;}
.y6{bottom:663.613333pt;}
.y1e4{bottom:663.933333pt;}
.y12a{bottom:665.853333pt;}
.y22{bottom:666.493333pt;}
.y10e{bottom:667.933333pt;}
.yd6{bottom:668.093333pt;}
.y42{bottom:673.373333pt;}
.y17a{bottom:674.653333pt;}
.y189{bottom:677.533333pt;}
.y76{bottom:678.653333pt;}
.ybc{bottom:682.493333pt;}
.y1f6{bottom:683.933333pt;}
.yef{bottom:684.093333pt;}
.y142{bottom:684.253333pt;}
.y61{bottom:685.213333pt;}
.y1cf{bottom:686.493333pt;}
.y19d{bottom:689.213333pt;}
.y1e3{bottom:689.373333pt;}
.y129{bottom:691.293333pt;}
.y21{bottom:691.613333pt;}
.ya1{bottom:693.213333pt;}
.yd5{bottom:693.373333pt;}
.y5{bottom:693.693333pt;}
.y41{bottom:698.653333pt;}
.y179{bottom:700.093333pt;}
.y16f{bottom:703.773333pt;}
.y75{bottom:703.933333pt;}
.y164{bottom:704.320000pt;}
.y160{bottom:704.480000pt;}
.yee{bottom:709.373333pt;}
.y60{bottom:710.653333pt;}
.y1ce{bottom:711.933333pt;}
.y188{bottom:713.373333pt;}
.y1c8{bottom:714.493333pt;}
.y19c{bottom:714.653333pt;}
.ybb{bottom:718.493333pt;}
.ya0{bottom:718.653333pt;}
.y10c{bottom:719.133333pt;}
.y4{bottom:719.933333pt;}
.y141{bottom:720.093333pt;}
.y20{bottom:721.373333pt;}
.y40{bottom:723.933333pt;}
.y178{bottom:725.373333pt;}
.y128{bottom:727.133333pt;}
.yd4{bottom:729.053333pt;}
.y16e{bottom:729.213333pt;}
.y162{bottom:733.373333pt;}
.yed{bottom:734.653333pt;}
.y5f{bottom:735.933333pt;}
.y187{bottom:738.813333pt;}
.y74{bottom:739.773333pt;}
.y19b{bottom:739.933333pt;}
.y9f{bottom:743.933333pt;}
.y1f{bottom:746.533333pt;}
.y3f{bottom:749.253333pt;}
.y177{bottom:750.693333pt;}
.y1cd{bottom:753.093333pt;}
.yd3{bottom:754.693333pt;}
.y140{bottom:756.133333pt;}
.y1b8{bottom:759.973333pt;}
.y5e{bottom:761.253333pt;}
.y127{bottom:763.173333pt;}
.y1c7{bottom:765.253333pt;}
.y9e{bottom:769.253333pt;}
.y10a{bottom:770.373333pt;}
.y186{bottom:771.653333pt;}
.y3e{bottom:774.533333pt;}
.y73{bottom:775.813333pt;}
.y176{bottom:775.973333pt;}
.y1e{bottom:776.293333pt;}
.yd2{bottom:779.973333pt;}
.y1cc{bottom:786.053333pt;}
.y5d{bottom:786.693333pt;}
.y16d{bottom:790.373333pt;}
.y1c6{bottom:790.533333pt;}
.y13f{bottom:792.133333pt;}
.y9d{bottom:794.533333pt;}
.y1b7{bottom:795.813333pt;}
.y126{bottom:799.173333pt;}
.y72{bottom:801.253333pt;}
.y1d{bottom:801.413333pt;}
.y3d{bottom:810.373333pt;}
.y5c{bottom:811.973333pt;}
.yd1{bottom:815.653333pt;}
.y16c{bottom:815.813333pt;}
.yba{bottom:819.813333pt;}
.y159{bottom:820.480000pt;}
.y1b6{bottom:821.253333pt;}
.y108{bottom:821.733333pt;}
.y125{bottom:824.613333pt;}
.y1c{bottom:826.213333pt;}
.y1c5{bottom:826.373333pt;}
.y71{bottom:826.533333pt;}
.y13e{bottom:828.133333pt;}
.y9c{bottom:830.373333pt;}
.y3c{bottom:835.813333pt;}
.y5b{bottom:837.253333pt;}
.yd0{bottom:841.253333pt;}
.y1b5{bottom:846.533333pt;}
.y124{bottom:849.893333pt;}
.y1b{bottom:851.013333pt;}
.y70{bottom:851.813333pt;}
.yb9{bottom:855.653333pt;}
.y15b{bottom:857.413333pt;}
.y15e{bottom:858.373333pt;}
.y5a{bottom:862.533333pt;}
.y13d{bottom:864.133333pt;}
.y9b{bottom:866.373333pt;}
.ycf{bottom:866.533333pt;}
.y3b{bottom:871.653333pt;}
.y1b4{bottom:871.813333pt;}
.y123{bottom:875.173333pt;}
.y1a{bottom:875.973333pt;}
.y1fc{bottom:876.933333pt;}
.y6f{bottom:877.093333pt;}
.yec{bottom:887.653333pt;}
.y59{bottom:887.813333pt;}
.yb8{bottom:891.653333pt;}
.y3a{bottom:897.093333pt;}
.y107{bottom:898.213333pt;}
.y122{bottom:900.453333pt;}
.y19{bottom:900.773333pt;}
.y13c{bottom:901.573333pt;}
.y9a{bottom:902.213333pt;}
.y6e{bottom:902.373333pt;}
.y1b3{bottom:912.933333pt;}
.y58{bottom:913.093333pt;}
.yb7{bottom:917.093333pt;}
.y39{bottom:922.373333pt;}
.y6d{bottom:927.813333pt;}
.y18{bottom:930.693333pt;}
.y121{bottom:936.293333pt;}
.y8b{bottom:938.213333pt;}
.y57{bottom:938.373333pt;}
.y155{bottom:938.560000pt;}
.y13b{bottom:939.173333pt;}
.y38{bottom:947.653333pt;}
.y17{bottom:948.933333pt;}
.y105{bottom:949.573333pt;}
.y120{bottom:950.853333pt;}
.yb6{bottom:952.933333pt;}
.y6c{bottom:953.093333pt;}
.y175{bottom:963.493333pt;}
.y56{bottom:963.653333pt;}
.y157{bottom:969.413333pt;}
.y37{bottom:972.933333pt;}
.y13a{bottom:976.613333pt;}
.y6b{bottom:978.373333pt;}
.y16{bottom:984.133333pt;}
.yb5{bottom:988.773333pt;}
.y55{bottom:988.933333pt;}
.y103{bottom:1002.080000pt;}
.y3{bottom:1014.240000pt;}
.y36{bottom:1014.400000pt;}
.hb{height:25.280000pt;}
.hd{height:50.560000pt;}
.hc{height:50.592000pt;}
.hf{height:50.720000pt;}
.h9{height:52.813750pt;}
.h2{height:58.563750pt;}
.h4{height:60.288750pt;}
.h8{height:61.410000pt;}
.h14{height:62.080000pt;}
.h15{height:62.240000pt;}
.h11{height:64.000000pt;}
.h7{height:65.531250pt;}
.h12{height:70.080000pt;}
.h13{height:71.200000pt;}
.he{height:75.840000pt;}
.h3{height:76.671562pt;}
.ha{height:81.046875pt;}
.h16{height:87.040000pt;}
.h17{height:110.050000pt;}
.h6{height:119.922187pt;}
.h5{height:142.202812pt;}
.h10{height:227.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:94.720000pt;}
.wa{width:95.680000pt;}
.wb{width:139.680000pt;}
.w3{width:140.826667pt;}
.w4{width:140.960000pt;}
.w5{width:140.986667pt;}
.w9{width:141.760000pt;}
.w6{width:143.680000pt;}
.w7{width:143.840000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.x15{left:12.386667pt;}
.x12{left:14.306667pt;}
.x1e{left:20.093333pt;}
.x18{left:21.053333pt;}
.x20{left:22.306667pt;}
.x19{left:35.293333pt;}
.x1c{left:43.106667pt;}
.x14{left:56.066667pt;}
.x22{left:57.826667pt;}
.x2{left:113.471988pt;}
.x3{left:137.466655pt;}
.x5{left:166.906655pt;}
.x6{left:179.546655pt;}
.x7{left:182.106655pt;}
.xf{left:255.586667pt;}
.x9{left:259.906655pt;}
.x11{left:292.000000pt;}
.x1a{left:294.080000pt;}
.x1f{left:296.000000pt;}
.x16{left:316.706655pt;}
.x1b{left:324.226655pt;}
.xa{left:327.106655pt;}
.x13{left:338.626655pt;}
.x21{left:342.466655pt;}
.x8{left:396.866655pt;}
.x23{left:451.453322pt;}
.x24{left:482.493322pt;}
.x1d{left:515.040000pt;}
.x17{left:516.000000pt;}
.x4{left:535.933322pt;}
.x10{left:538.813333pt;}
.xb{left:647.173322pt;}
.x25{left:651.493322pt;}
.xd{left:665.573322pt;}
.x1{left:673.093322pt;}
.xc{left:733.573322pt;}
}




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