
    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_989a9ebccae9149b6f96c1a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901855;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_1da94ce4ebcdac433656d304.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_a1efe1d19deba38570d85f09.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_cf6da33006c963759d6a2fc2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_936f9a42a43856e4492032db.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_026dc3c6900daee88507ec92.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675293;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_a4b3ff7be2de8589f7a93e92.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_d905aba3fe535076b5b079a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_92834fa9f9304021dbf8186f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.149414;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_16a52c07f27adbc74e17861e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ae03a81f59b06a7acf6f2db1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.754883;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_fee53fe2476206a4a4ccdf0f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941406;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850586;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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;}
.ls1c{letter-spacing:-0.828000px;}
.ls1d{letter-spacing:-0.457800px;}
.ls1b{letter-spacing:-0.414600px;}
.lsf{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.262200px;}
.ls1e{letter-spacing:-0.152400px;}
.ls13{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.058320px;}
.lsc{letter-spacing:-0.038160px;}
.ls7{letter-spacing:-0.034560px;}
.ls8{letter-spacing:-0.017280px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.064200px;}
.ls10{letter-spacing:0.109200px;}
.ls15{letter-spacing:0.190200px;}
.lsd{letter-spacing:0.262080px;}
.ls19{letter-spacing:0.262200px;}
.ls18{letter-spacing:0.305280px;}
.ls16{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.385920px;}
.ls4{letter-spacing:0.745920px;}
.ls1{letter-spacing:1.224000px;}
.ls0{letter-spacing:1.656000px;}
.ls14{letter-spacing:2.178720px;}
.ls2{letter-spacing:2.376000px;}
.ls1a{letter-spacing:20.322720px;}
.ls11{letter-spacing:61.344000px;}
.ls17{letter-spacing:64.062720px;}
.ls12{letter-spacing:95.760000px;}
.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;}
}
.ws13{word-spacing:-66.240000px;}
.ws9{word-spacing:-59.760000px;}
.ws1{word-spacing:-30.024000px;}
.ws2{word-spacing:-24.219360px;}
.ws4{word-spacing:-21.634560px;}
.ws3{word-spacing:-21.617280px;}
.ws5{word-spacing:-21.582720px;}
.ws12{word-spacing:-21.257400px;}
.ws17{word-spacing:-21.067200px;}
.ws16{word-spacing:-18.720120px;}
.ws14{word-spacing:-18.676920px;}
.ws10{word-spacing:-18.523920px;}
.wsd{word-spacing:-18.414720px;}
.ws11{word-spacing:-18.305520px;}
.wse{word-spacing:-18.152520px;}
.wsf{word-spacing:-18.109320px;}
.ws15{word-spacing:-18.000120px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.614080px;}
.ws8{word-spacing:-16.632000px;}
.wsa{word-spacing:-13.569960px;}
.wsb{word-spacing:-13.467600px;}
.wsc{word-spacing:-0.066240px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1.184640px;}
._1{width:1.296000px;}
._2{width:2.460720px;}
._3{width:4.432560px;}
._5{width:9.479520px;}
._17{width:34.703520px;}
._16{width:59.114880px;}
._15{width:64.961280px;}
._b{width:674.994240px;}
._c{width:682.346880px;}
._d{width:706.797120px;}
._6{width:845.885280px;}
._11{width:850.789920px;}
._9{width:975.807840px;}
._e{width:1352.463840px;}
._12{width:1881.497280px;}
._8{width:1907.287680px;}
._13{width:1966.284480px;}
._10{width:2195.616000px;}
._f{width:2291.266560px;}
._7{width:2401.662240px;}
._a{width:2414.097600px;}
._14{width:2548.890720px;}
._0{width:3123.540000px;}
.fca{color:rgb(0,0,255);}
.fc9{color:rgb(54,95,145);}
.fc8{color:rgb(62,92,126);}
.fc7{color:rgb(140,239,152);}
.fc5{color:rgb(31,73,125);}
.fc6{color:rgb(151,191,13);}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(1,32,48);}
.fc4{color:rgb(169,169,169);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.fs5{font-size:87.120000px;}
.fsb{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs8{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.420000px;}
.y50{bottom:3.600000px;}
.y2{bottom:3.960000px;}
.y6{bottom:5.580000px;}
.y5{bottom:8.100000px;}
.y7{bottom:8.280000px;}
.y28{bottom:17.460000px;}
.y2f{bottom:17.505000px;}
.y32{bottom:17.640000px;}
.y22{bottom:18.540000px;}
.y2d{bottom:18.720000px;}
.y4f{bottom:22.500000px;}
.y4{bottom:23.040000px;}
.y1f{bottom:30.420000px;}
.y27{bottom:37.080000px;}
.y29{bottom:37.260000px;}
.y31{bottom:37.440000px;}
.y20{bottom:42.300000px;}
.y24{bottom:47.160000px;}
.y1e{bottom:54.180000px;}
.y26{bottom:56.880000px;}
.ye4{bottom:59.400000px;}
.y1b{bottom:60.840000px;}
.y21{bottom:65.880000px;}
.y155{bottom:75.816000px;}
.y25{bottom:76.500000px;}
.y10d{bottom:81.036000px;}
.ye3{bottom:81.576000px;}
.y1a{bottom:81.936000px;}
.y48{bottom:88.236000px;}
.y19{bottom:94.176000px;}
.y93{bottom:95.976000px;}
.y154{bottom:96.336000px;}
.y10c{bottom:102.996000px;}
.ye2{bottom:103.356000px;}
.y18{bottom:106.236000px;}
.y133{bottom:112.536000px;}
.y92{bottom:117.756000px;}
.y182{bottom:122.076000px;}
.y10b{bottom:124.776000px;}
.y47{bottom:124.956000px;}
.ye1{bottom:125.136000px;}
.y17{bottom:127.296000px;}
.ybd{bottom:128.916000px;}
.y91{bottom:139.536000px;}
.y10a{bottom:146.556000px;}
.ye0{bottom:146.916000px;}
.y16{bottom:148.356000px;}
.y153{bottom:149.256000px;}
.y132{bottom:149.436000px;}
.ybc{bottom:150.870000px;}
.y181{bottom:158.970000px;}
.y90{bottom:161.490000px;}
.y46{bottom:161.850000px;}
.y15{bottom:167.250000px;}
.ydf{bottom:168.870000px;}
.y152{bottom:169.770000px;}
.y131{bottom:171.390000px;}
.ybb{bottom:172.830000px;}
.y109{bottom:183.270000px;}
.yde{bottom:190.650000px;}
.y130{bottom:193.170000px;}
.yba{bottom:194.610000px;}
.y180{bottom:195.690000px;}
.y8f{bottom:198.030000px;}
.y45{bottom:198.570000px;}
.y151{bottom:202.350000px;}
.ydd{bottom:212.430000px;}
.y12f{bottom:215.130000px;}
.yb9{bottom:216.390000px;}
.y8e{bottom:219.990000px;}
.y150{bottom:222.690000px;}
.y17f{bottom:232.590000px;}
.ydc{bottom:234.210000px;}
.y44{bottom:235.470000px;}
.y12e{bottom:236.910000px;}
.yb8{bottom:238.170000px;}
.y108{bottom:241.950000px;}
.y8d{bottom:243.030000px;}
.y14f{bottom:243.210000px;}
.y187{bottom:249.150000px;}
.ydb{bottom:255.990000px;}
.y12d{bottom:258.690000px;}
.y14e{bottom:263.730000px;}
.y107{bottom:263.910000px;}
.y17e{bottom:265.170000px;}
.y186{bottom:268.050000px;}
.y43{bottom:272.190000px;}
.yb7{bottom:274.890000px;}
.y8c{bottom:275.250000px;}
.yda{bottom:277.950000px;}
.y17d{bottom:285.510000px;}
.y106{bottom:285.690000px;}
.y14d{bottom:286.770000px;}
.y12c{bottom:295.410000px;}
.yb6{bottom:296.850000px;}
.y105{bottom:307.470000px;}
.y42{bottom:309.090000px;}
.yd9{bottom:314.490000px;}
.y12b{bottom:317.370000px;}
.y17c{bottom:318.090000px;}
.yb5{bottom:318.630000px;}
.y14c{bottom:318.990000px;}
.y8b{bottom:322.410000px;}
.y104{bottom:329.250000px;}
.yd8{bottom:336.450000px;}
.y17b{bottom:338.475000px;}
.y12a{bottom:339.195000px;}
.yb4{bottom:340.635000px;}
.y8a{bottom:345.495000px;}
.y41{bottom:346.035000px;}
.y103{bottom:351.075000px;}
.yd7{bottom:358.455000px;}
.y17a{bottom:358.995000px;}
.y129{bottom:360.975000px;}
.yb3{bottom:362.415000px;}
.y14b{bottom:366.195000px;}
.y89{bottom:368.535000px;}
.y102{bottom:373.035000px;}
.yd6{bottom:380.235000px;}
.y40{bottom:382.755000px;}
.yb2{bottom:384.195000px;}
.y14a{bottom:388.155000px;}
.y88{bottom:391.395000px;}
.y179{bottom:391.575000px;}
.y101{bottom:394.815000px;}
.yd5{bottom:402.015000px;}
.y128{bottom:404.715000px;}
.yb1{bottom:405.975000px;}
.y149{bottom:409.935000px;}
.y178{bottom:411.915000px;}
.y87{bottom:414.255000px;}
.y100{bottom:416.595000px;}
.y3f{bottom:419.655000px;}
.yd4{bottom:424.875000px;}
.yb0{bottom:427.755000px;}
.y148{bottom:431.715000px;}
.y177{bottom:432.435000px;}
.y86{bottom:437.295000px;}
.y127{bottom:441.255000px;}
.y184{bottom:441.945000px;}
.yaf{bottom:449.715000px;}
.y176{bottom:452.775000px;}
.yff{bottom:453.315000px;}
.y147{bottom:453.675000px;}
.y3e{bottom:456.375000px;}
.y85{bottom:460.155000px;}
.y126{bottom:463.215000px;}
.yd3{bottom:464.475000px;}
.yfe{bottom:475.275000px;}
.y175{bottom:475.995000px;}
.y3d{bottom:478.335000px;}
.y84{bottom:481.935000px;}
.y125{bottom:485.175000px;}
.yae{bottom:486.255000px;}
.yd2{bottom:486.435000px;}
.y146{bottom:490.215000px;}
.yfd{bottom:497.055000px;}
.y83{bottom:504.975000px;}
.y124{bottom:506.955000px;}
.yad{bottom:508.215000px;}
.y174{bottom:511.275000px;}
.y145{bottom:512.175000px;}
.y3c{bottom:515.055000px;}
.yfc{bottom:518.835000px;}
.y82{bottom:527.835000px;}
.yac{bottom:530.175000px;}
.y173{bottom:531.615000px;}
.y144{bottom:534.135000px;}
.y3b{bottom:537.015000px;}
.yfb{bottom:540.615000px;}
.y123{bottom:543.495000px;}
.y14{bottom:548.895000px;}
.y81{bottom:549.615000px;}
.yab{bottom:551.955000px;}
.y143{bottom:555.915000px;}
.y3a{bottom:556.995000px;}
.yfa{bottom:562.575000px;}
.y172{bottom:564.195000px;}
.y122{bottom:566.715000px;}
.y80{bottom:572.655000px;}
.yaa{bottom:573.735000px;}
.y142{bottom:577.695000px;}
.y39{bottom:581.295000px;}
.y13{bottom:584.355000px;}
.y171{bottom:584.535000px;}
.y68{bottom:585.615000px;}
.yd1{bottom:588.495000px;}
.y7f{bottom:594.435000px;}
.ya9{bottom:595.515000px;}
.yf9{bottom:599.115000px;}
.y141{bottom:599.475000px;}
.y18d{bottom:599.655000px;}
.y170{bottom:605.085000px;}
.y121{bottom:606.165000px;}
.yd0{bottom:610.665000px;}
.y38{bottom:614.805000px;}
.y185{bottom:616.965000px;}
.ya8{bottom:617.325000px;}
.yf8{bottom:621.105000px;}
.y140{bottom:621.465000px;}
.y67{bottom:622.365000px;}
.y16f{bottom:625.605000px;}
.y120{bottom:628.125000px;}
.y7e{bottom:632.265000px;}
.ycf{bottom:632.445000px;}
.y12{bottom:635.685000px;}
.y18c{bottom:636.405000px;}
.ya7{bottom:639.285000px;}
.yf7{bottom:643.065000px;}
.y16e{bottom:645.945000px;}
.y11f{bottom:650.085000px;}
.y66{bottom:651.705000px;}
.y7d{bottom:654.225000px;}
.y183{bottom:654.945000px;}
.y13f{bottom:658.005000px;}
.y11{bottom:661.605000px;}
.yf6{bottom:664.845000px;}
.y37{bottom:665.205000px;}
.y16d{bottom:666.465000px;}
.y11e{bottom:671.865000px;}
.y18b{bottom:673.305000px;}
.ya6{bottom:675.825000px;}
.y13e{bottom:679.965000px;}
.y65{bottom:681.045000px;}
.y16c{bottom:686.985000px;}
.y7c{bottom:690.765000px;}
.yce{bottom:690.945000px;}
.ya5{bottom:697.785000px;}
.yf5{bottom:701.385000px;}
.y13d{bottom:701.925000px;}
.y10{bottom:703.905000px;}
.y16b{bottom:707.505000px;}
.y11d{bottom:708.405000px;}
.y18a{bottom:710.025000px;}
.y64{bottom:710.385000px;}
.y36{bottom:712.185000px;}
.y7b{bottom:712.905000px;}
.ya4{bottom:719.745000px;}
.yf4{bottom:723.525000px;}
.y13c{bottom:723.705000px;}
.y189{bottom:725.685000px;}
.y16a{bottom:727.845000px;}
.y11c{bottom:730.545000px;}
.y35{bottom:734.145000px;}
.y7a{bottom:734.685000px;}
.y63{bottom:739.725000px;}
.ya3{bottom:741.525000px;}
.y188{bottom:744.765000px;}
.yf3{bottom:745.305000px;}
.y13b{bottom:745.485000px;}
.yf{bottom:746.025000px;}
.y169{bottom:748.365000px;}
.y11b{bottom:752.325000px;}
.y34{bottom:756.105000px;}
.y79{bottom:756.465000px;}
.ya2{bottom:763.305000px;}
.yf2{bottom:767.085000px;}
.y13a{bottom:767.265000px;}
.y168{bottom:768.885000px;}
.y62{bottom:769.065000px;}
.y11a{bottom:774.105000px;}
.y78{bottom:778.245000px;}
.ya1{bottom:785.085000px;}
.y167{bottom:789.405000px;}
.yf1{bottom:789.945000px;}
.y33{bottom:792.645000px;}
.y119{bottom:795.885000px;}
.y61{bottom:798.405000px;}
.y77{bottom:800.025000px;}
.ycd{bottom:800.205000px;}
.ye{bottom:802.725000px;}
.y139{bottom:803.985000px;}
.ya0{bottom:807.045000px;}
.y30{bottom:809.025000px;}
.y166{bottom:809.745000px;}
.y76{bottom:821.985000px;}
.yf0{bottom:822.345000px;}
.y55{bottom:824.505000px;}
.y138{bottom:825.945000px;}
.y60{bottom:827.565000px;}
.y9f{bottom:828.825000px;}
.y165{bottom:830.265000px;}
.y118{bottom:832.605000px;}
.ycc{bottom:836.745000px;}
.yd{bottom:843.405000px;}
.y75{bottom:843.765000px;}
.y137{bottom:847.725000px;}
.y54{bottom:849.165000px;}
.y9e{bottom:850.605000px;}
.y164{bottom:850.785000px;}
.y117{bottom:854.565000px;}
.y5f{bottom:856.905000px;}
.ycb{bottom:858.705000px;}
.y2e{bottom:861.405000px;}
.y74{bottom:865.545000px;}
.yef{bottom:869.325000px;}
.y136{bottom:869.505000px;}
.y163{bottom:871.350000px;}
.y9d{bottom:873.510000px;}
.y116{bottom:876.390000px;}
.yc{bottom:879.630000px;}
.yca{bottom:880.710000px;}
.y53{bottom:884.670000px;}
.y5e{bottom:886.290000px;}
.y73{bottom:887.370000px;}
.y135{bottom:891.510000px;}
.y162{bottom:891.690000px;}
.y2c{bottom:893.850000px;}
.y115{bottom:898.170000px;}
.yc9{bottom:902.490000px;}
.yee{bottom:906.270000px;}
.y72{bottom:909.330000px;}
.y161{bottom:912.210000px;}
.y9c{bottom:913.110000px;}
.y134{bottom:913.290000px;}
.y5d{bottom:915.630000px;}
.y52{bottom:920.130000px;}
.yc8{bottom:924.270000px;}
.yed{bottom:928.230000px;}
.y160{bottom:932.730000px;}
.y9b{bottom:935.070000px;}
.y114{bottom:941.910000px;}
.y2b{bottom:942.270000px;}
.y5c{bottom:944.970000px;}
.y71{bottom:945.870000px;}
.yc7{bottom:946.050000px;}
.yec{bottom:950.010000px;}
.y15f{bottom:953.250000px;}
.y51{bottom:955.590000px;}
.y9a{bottom:956.850000px;}
.y2a{bottom:966.750000px;}
.y70{bottom:967.830000px;}
.yc6{bottom:968.010000px;}
.yeb{bottom:971.970000px;}
.y5b{bottom:974.310000px;}
.y15e{bottom:974.850000px;}
.y113{bottom:978.450000px;}
.y23{bottom:980.250000px;}
.y6f{bottom:989.790000px;}
.y4e{bottom:991.050000px;}
.y99{bottom:993.570000px;}
.yea{bottom:993.750000px;}
.y15d{bottom:995.190000px;}
.y112{bottom:1000.590000px;}
.y5a{bottom:1003.650000px;}
.yc5{bottom:1004.550000px;}
.y6e{bottom:1011.570000px;}
.y98{bottom:1015.530000px;}
.y15c{bottom:1016.790000px;}
.y111{bottom:1022.370000px;}
.yb{bottom:1024.170000px;}
.yc4{bottom:1026.510000px;}
.y59{bottom:1032.990000px;}
.y6d{bottom:1033.350000px;}
.y97{bottom:1037.310000px;}
.y110{bottom:1044.150000px;}
.y4d{bottom:1045.590000px;}
.yc3{bottom:1048.470000px;}
.ye9{bottom:1052.250000px;}
.y6c{bottom:1055.130000px;}
.y58{bottom:1057.290000px;}
.y15b{bottom:1058.910000px;}
.y96{bottom:1059.090000px;}
.ya{bottom:1065.210000px;}
.y10f{bottom:1065.930000px;}
.yc2{bottom:1070.250000px;}
.y1d{bottom:1072.050000px;}
.ye8{bottom:1074.210000px;}
.y6b{bottom:1076.910000px;}
.y15a{bottom:1079.430000px;}
.y4c{bottom:1081.050000px;}
.yc1{bottom:1092.030000px;}
.ye7{bottom:1095.990000px;}
.y6a{bottom:1098.870000px;}
.y159{bottom:1099.770000px;}
.y10e{bottom:1102.650000px;}
.y95{bottom:1102.830000px;}
.y57{bottom:1105.710000px;}
.yc0{bottom:1113.810000px;}
.y9{bottom:1115.790000px;}
.y4a{bottom:1116.510000px;}
.ye6{bottom:1117.770000px;}
.y158{bottom:1120.290000px;}
.y69{bottom:1121.730000px;}
.ybf{bottom:1135.590000px;}
.y94{bottom:1139.400000px;}
.ye5{bottom:1139.580000px;}
.y157{bottom:1140.840000px;}
.y8{bottom:1151.640000px;}
.y56{bottom:1153.980000px;}
.ybe{bottom:1158.660000px;}
.y156{bottom:1161.360000px;}
.y49{bottom:1161.540000px;}
.y1c{bottom:1167.120000px;}
.y3{bottom:1180.440000px;}
.y1{bottom:1195.920000px;}
.h1a{height:18.900000px;}
.h1c{height:19.080000px;}
.h2{height:20.700000px;}
.hd{height:31.401562px;}
.h14{height:31.716000px;}
.h13{height:35.820000px;}
.h1b{height:37.980000px;}
.h5{height:39.471680px;}
.hc{height:40.605469px;}
.h6{height:41.726953px;}
.ha{height:47.988281px;}
.h4{height:48.418594px;}
.h16{height:48.871406px;}
.h19{height:49.809375px;}
.h3{height:50.273438px;}
.h15{height:51.660000px;}
.h17{height:52.628906px;}
.h8{height:58.471875px;}
.h12{height:59.439023px;}
.h1e{height:60.679688px;}
.h11{height:61.189805px;}
.hb{height:63.344531px;}
.hf{height:71.613281px;}
.h18{height:81.078047px;}
.h7{height:81.210938px;}
.he{height:83.016000px;}
.h10{height:90.900000px;}
.h1d{height:95.245664px;}
.h9{height:121.921875px;}
.h20{height:348.915000px;}
.h21{height:432.255000px;}
.h1f{height:485.175000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w8{width:55.080000px;}
.w7{width:55.296000px;}
.w12{width:57.276000px;}
.wc{width:57.996000px;}
.w5{width:68.760000px;}
.w14{width:76.716000px;}
.we{width:77.256000px;}
.w11{width:97.020000px;}
.wb{width:97.740000px;}
.w1e{width:100.800000px;}
.w19{width:101.160000px;}
.w1a{width:105.120000px;}
.w15{width:105.660000px;}
.wf{width:106.236000px;}
.w9{width:106.596000px;}
.w1b{width:116.136000px;}
.w16{width:116.856000px;}
.w10{width:136.656000px;}
.wa{width:137.376000px;}
.w1d{width:146.556000px;}
.w18{width:147.276000px;}
.w1c{width:149.616000px;}
.w17{width:150.510000px;}
.w1f{width:252.975000px;}
.w13{width:255.450000px;}
.wd{width:256.170000px;}
.w3{width:331.995000px;}
.w2{width:404.205000px;}
.w20{width:446.115000px;}
.w6{width:690.270000px;}
.w21{width:783.900000px;}
.w4{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:1.980000px;}
.x37{left:6.660000px;}
.x26{left:7.740000px;}
.x1c{left:9.000000px;}
.x6{left:10.440000px;}
.x1a{left:11.556000px;}
.x2c{left:14.400000px;}
.x27{left:17.280000px;}
.x3c{left:18.360000px;}
.x25{left:19.980000px;}
.xd{left:22.860000px;}
.x23{left:23.940000px;}
.xb{left:27.570000px;}
.x1e{left:31.500000px;}
.x7{left:34.380000px;}
.x24{left:38.736000px;}
.x2a{left:41.085000px;}
.x2f{left:44.274000px;}
.x31{left:50.400000px;}
.xe{left:53.999987px;}
.x21{left:55.260000px;}
.x39{left:70.559987px;}
.x30{left:73.260000px;}
.x3b{left:77.039987px;}
.x1{left:78.300000px;}
.x8{left:80.100000px;}
.x15{left:84.095987px;}
.x34{left:86.256000px;}
.xf{left:91.475987px;}
.x3a{left:108.035987px;}
.x28{left:118.980000px;}
.x29{left:135.576000px;}
.x32{left:138.995987px;}
.x9{left:164.010000px;}
.x36{left:184.350000px;}
.x1b{left:186.330000px;}
.x5{left:224.129987px;}
.x19{left:230.249987px;}
.x16{left:241.049987px;}
.x14{left:271.874987px;}
.x13{left:305.894987px;}
.x35{left:310.035000px;}
.x1d{left:323.715000px;}
.x4{left:329.835000px;}
.x38{left:350.174987px;}
.x33{left:354.134987px;}
.x2b{left:358.095000px;}
.x10{left:382.934987px;}
.x17{left:395.534987px;}
.x1f{left:421.455000px;}
.x11{left:446.324987px;}
.x20{left:479.445000px;}
.x3{left:482.505000px;}
.x2d{left:508.605000px;}
.x12{left:528.404987px;}
.x3e{left:606.750000px;}
.x2e{left:655.890000px;}
.x3f{left:668.670000px;}
.x22{left:735.630000px;}
.x3d{left:768.780000px;}
.xa{left:771.090000px;}
.x18{left:774.869987px;}
.xc{left:827.100000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.736000pt;}
.ls1d{letter-spacing:-0.406933pt;}
.ls1b{letter-spacing:-0.368533pt;}
.lsf{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.233067pt;}
.ls1e{letter-spacing:-0.135467pt;}
.ls13{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.051840pt;}
.lsc{letter-spacing:-0.033920pt;}
.ls7{letter-spacing:-0.030720pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.057067pt;}
.ls10{letter-spacing:0.097067pt;}
.ls15{letter-spacing:0.169067pt;}
.lsd{letter-spacing:0.232960pt;}
.ls19{letter-spacing:0.233067pt;}
.ls18{letter-spacing:0.271360pt;}
.ls16{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.343040pt;}
.ls4{letter-spacing:0.663040pt;}
.ls1{letter-spacing:1.088000pt;}
.ls0{letter-spacing:1.472000pt;}
.ls14{letter-spacing:1.936640pt;}
.ls2{letter-spacing:2.112000pt;}
.ls1a{letter-spacing:18.064640pt;}
.ls11{letter-spacing:54.528000pt;}
.ls17{letter-spacing:56.944640pt;}
.ls12{letter-spacing:85.120000pt;}
.ws13{word-spacing:-58.880000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws1{word-spacing:-26.688000pt;}
.ws2{word-spacing:-21.528320pt;}
.ws4{word-spacing:-19.230720pt;}
.ws3{word-spacing:-19.215360pt;}
.ws5{word-spacing:-19.184640pt;}
.ws12{word-spacing:-18.895467pt;}
.ws17{word-spacing:-18.726400pt;}
.ws16{word-spacing:-16.640107pt;}
.ws14{word-spacing:-16.601707pt;}
.ws10{word-spacing:-16.465707pt;}
.wsd{word-spacing:-16.368640pt;}
.ws11{word-spacing:-16.271573pt;}
.wse{word-spacing:-16.135573pt;}
.wsf{word-spacing:-16.097173pt;}
.ws15{word-spacing:-16.000107pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.656960pt;}
.ws8{word-spacing:-14.784000pt;}
.wsa{word-spacing:-12.062187pt;}
.wsb{word-spacing:-11.971200pt;}
.wsc{word-spacing:-0.058880pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1.053013pt;}
._1{width:1.152000pt;}
._2{width:2.187307pt;}
._3{width:3.940053pt;}
._5{width:8.426240pt;}
._17{width:30.847573pt;}
._16{width:52.546560pt;}
._15{width:57.743360pt;}
._b{width:599.994880pt;}
._c{width:606.530560pt;}
._d{width:628.264107pt;}
._6{width:751.898027pt;}
._11{width:756.257707pt;}
._9{width:867.384747pt;}
._e{width:1202.190080pt;}
._12{width:1672.442027pt;}
._8{width:1695.366827pt;}
._13{width:1747.808427pt;}
._10{width:1951.658667pt;}
._f{width:2036.681387pt;}
._7{width:2134.810880pt;}
._a{width:2145.864533pt;}
._14{width:2265.680640pt;}
._0{width:2776.480000pt;}
.fsa{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.fs5{font-size:77.440000pt;}
.fsb{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs8{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:3.040000pt;}
.y50{bottom:3.200000pt;}
.y2{bottom:3.520000pt;}
.y6{bottom:4.960000pt;}
.y5{bottom:7.200000pt;}
.y7{bottom:7.360000pt;}
.y28{bottom:15.520000pt;}
.y2f{bottom:15.560000pt;}
.y32{bottom:15.680000pt;}
.y22{bottom:16.480000pt;}
.y2d{bottom:16.640000pt;}
.y4f{bottom:20.000000pt;}
.y4{bottom:20.480000pt;}
.y1f{bottom:27.040000pt;}
.y27{bottom:32.960000pt;}
.y29{bottom:33.120000pt;}
.y31{bottom:33.280000pt;}
.y20{bottom:37.600000pt;}
.y24{bottom:41.920000pt;}
.y1e{bottom:48.160000pt;}
.y26{bottom:50.560000pt;}
.ye4{bottom:52.800000pt;}
.y1b{bottom:54.080000pt;}
.y21{bottom:58.560000pt;}
.y155{bottom:67.392000pt;}
.y25{bottom:68.000000pt;}
.y10d{bottom:72.032000pt;}
.ye3{bottom:72.512000pt;}
.y1a{bottom:72.832000pt;}
.y48{bottom:78.432000pt;}
.y19{bottom:83.712000pt;}
.y93{bottom:85.312000pt;}
.y154{bottom:85.632000pt;}
.y10c{bottom:91.552000pt;}
.ye2{bottom:91.872000pt;}
.y18{bottom:94.432000pt;}
.y133{bottom:100.032000pt;}
.y92{bottom:104.672000pt;}
.y182{bottom:108.512000pt;}
.y10b{bottom:110.912000pt;}
.y47{bottom:111.072000pt;}
.ye1{bottom:111.232000pt;}
.y17{bottom:113.152000pt;}
.ybd{bottom:114.592000pt;}
.y91{bottom:124.032000pt;}
.y10a{bottom:130.272000pt;}
.ye0{bottom:130.592000pt;}
.y16{bottom:131.872000pt;}
.y153{bottom:132.672000pt;}
.y132{bottom:132.832000pt;}
.ybc{bottom:134.106667pt;}
.y181{bottom:141.306667pt;}
.y90{bottom:143.546667pt;}
.y46{bottom:143.866667pt;}
.y15{bottom:148.666667pt;}
.ydf{bottom:150.106667pt;}
.y152{bottom:150.906667pt;}
.y131{bottom:152.346667pt;}
.ybb{bottom:153.626667pt;}
.y109{bottom:162.906667pt;}
.yde{bottom:169.466667pt;}
.y130{bottom:171.706667pt;}
.yba{bottom:172.986667pt;}
.y180{bottom:173.946667pt;}
.y8f{bottom:176.026667pt;}
.y45{bottom:176.506667pt;}
.y151{bottom:179.866667pt;}
.ydd{bottom:188.826667pt;}
.y12f{bottom:191.226667pt;}
.yb9{bottom:192.346667pt;}
.y8e{bottom:195.546667pt;}
.y150{bottom:197.946667pt;}
.y17f{bottom:206.746667pt;}
.ydc{bottom:208.186667pt;}
.y44{bottom:209.306667pt;}
.y12e{bottom:210.586667pt;}
.yb8{bottom:211.706667pt;}
.y108{bottom:215.066667pt;}
.y8d{bottom:216.026667pt;}
.y14f{bottom:216.186667pt;}
.y187{bottom:221.466667pt;}
.ydb{bottom:227.546667pt;}
.y12d{bottom:229.946667pt;}
.y14e{bottom:234.426667pt;}
.y107{bottom:234.586667pt;}
.y17e{bottom:235.706667pt;}
.y186{bottom:238.266667pt;}
.y43{bottom:241.946667pt;}
.yb7{bottom:244.346667pt;}
.y8c{bottom:244.666667pt;}
.yda{bottom:247.066667pt;}
.y17d{bottom:253.786667pt;}
.y106{bottom:253.946667pt;}
.y14d{bottom:254.906667pt;}
.y12c{bottom:262.586667pt;}
.yb6{bottom:263.866667pt;}
.y105{bottom:273.306667pt;}
.y42{bottom:274.746667pt;}
.yd9{bottom:279.546667pt;}
.y12b{bottom:282.106667pt;}
.y17c{bottom:282.746667pt;}
.yb5{bottom:283.226667pt;}
.y14c{bottom:283.546667pt;}
.y8b{bottom:286.586667pt;}
.y104{bottom:292.666667pt;}
.yd8{bottom:299.066667pt;}
.y17b{bottom:300.866667pt;}
.y12a{bottom:301.506667pt;}
.yb4{bottom:302.786667pt;}
.y8a{bottom:307.106667pt;}
.y41{bottom:307.586667pt;}
.y103{bottom:312.066667pt;}
.yd7{bottom:318.626667pt;}
.y17a{bottom:319.106667pt;}
.y129{bottom:320.866667pt;}
.yb3{bottom:322.146667pt;}
.y14b{bottom:325.506667pt;}
.y89{bottom:327.586667pt;}
.y102{bottom:331.586667pt;}
.yd6{bottom:337.986667pt;}
.y40{bottom:340.226667pt;}
.yb2{bottom:341.506667pt;}
.y14a{bottom:345.026667pt;}
.y88{bottom:347.906667pt;}
.y179{bottom:348.066667pt;}
.y101{bottom:350.946667pt;}
.yd5{bottom:357.346667pt;}
.y128{bottom:359.746667pt;}
.yb1{bottom:360.866667pt;}
.y149{bottom:364.386667pt;}
.y178{bottom:366.146667pt;}
.y87{bottom:368.226667pt;}
.y100{bottom:370.306667pt;}
.y3f{bottom:373.026667pt;}
.yd4{bottom:377.666667pt;}
.yb0{bottom:380.226667pt;}
.y148{bottom:383.746667pt;}
.y177{bottom:384.386667pt;}
.y86{bottom:388.706667pt;}
.y127{bottom:392.226667pt;}
.y184{bottom:392.840000pt;}
.yaf{bottom:399.746667pt;}
.y176{bottom:402.466667pt;}
.yff{bottom:402.946667pt;}
.y147{bottom:403.266667pt;}
.y3e{bottom:405.666667pt;}
.y85{bottom:409.026667pt;}
.y126{bottom:411.746667pt;}
.yd3{bottom:412.866667pt;}
.yfe{bottom:422.466667pt;}
.y175{bottom:423.106667pt;}
.y3d{bottom:425.186667pt;}
.y84{bottom:428.386667pt;}
.y125{bottom:431.266667pt;}
.yae{bottom:432.226667pt;}
.yd2{bottom:432.386667pt;}
.y146{bottom:435.746667pt;}
.yfd{bottom:441.826667pt;}
.y83{bottom:448.866667pt;}
.y124{bottom:450.626667pt;}
.yad{bottom:451.746667pt;}
.y174{bottom:454.466667pt;}
.y145{bottom:455.266667pt;}
.y3c{bottom:457.826667pt;}
.yfc{bottom:461.186667pt;}
.y82{bottom:469.186667pt;}
.yac{bottom:471.266667pt;}
.y173{bottom:472.546667pt;}
.y144{bottom:474.786667pt;}
.y3b{bottom:477.346667pt;}
.yfb{bottom:480.546667pt;}
.y123{bottom:483.106667pt;}
.y14{bottom:487.906667pt;}
.y81{bottom:488.546667pt;}
.yab{bottom:490.626667pt;}
.y143{bottom:494.146667pt;}
.y3a{bottom:495.106667pt;}
.yfa{bottom:500.066667pt;}
.y172{bottom:501.506667pt;}
.y122{bottom:503.746667pt;}
.y80{bottom:509.026667pt;}
.yaa{bottom:509.986667pt;}
.y142{bottom:513.506667pt;}
.y39{bottom:516.706667pt;}
.y13{bottom:519.426667pt;}
.y171{bottom:519.586667pt;}
.y68{bottom:520.546667pt;}
.yd1{bottom:523.106667pt;}
.y7f{bottom:528.386667pt;}
.ya9{bottom:529.346667pt;}
.yf9{bottom:532.546667pt;}
.y141{bottom:532.866667pt;}
.y18d{bottom:533.026667pt;}
.y170{bottom:537.853333pt;}
.y121{bottom:538.813333pt;}
.yd0{bottom:542.813333pt;}
.y38{bottom:546.493333pt;}
.y185{bottom:548.413333pt;}
.ya8{bottom:548.733333pt;}
.yf8{bottom:552.093333pt;}
.y140{bottom:552.413333pt;}
.y67{bottom:553.213333pt;}
.y16f{bottom:556.093333pt;}
.y120{bottom:558.333333pt;}
.y7e{bottom:562.013333pt;}
.ycf{bottom:562.173333pt;}
.y12{bottom:565.053333pt;}
.y18c{bottom:565.693333pt;}
.ya7{bottom:568.253333pt;}
.yf7{bottom:571.613333pt;}
.y16e{bottom:574.173333pt;}
.y11f{bottom:577.853333pt;}
.y66{bottom:579.293333pt;}
.y7d{bottom:581.533333pt;}
.y183{bottom:582.173333pt;}
.y13f{bottom:584.893333pt;}
.y11{bottom:588.093333pt;}
.yf6{bottom:590.973333pt;}
.y37{bottom:591.293333pt;}
.y16d{bottom:592.413333pt;}
.y11e{bottom:597.213333pt;}
.y18b{bottom:598.493333pt;}
.ya6{bottom:600.733333pt;}
.y13e{bottom:604.413333pt;}
.y65{bottom:605.373333pt;}
.y16c{bottom:610.653333pt;}
.y7c{bottom:614.013333pt;}
.yce{bottom:614.173333pt;}
.ya5{bottom:620.253333pt;}
.yf5{bottom:623.453333pt;}
.y13d{bottom:623.933333pt;}
.y10{bottom:625.693333pt;}
.y16b{bottom:628.893333pt;}
.y11d{bottom:629.693333pt;}
.y18a{bottom:631.133333pt;}
.y64{bottom:631.453333pt;}
.y36{bottom:633.053333pt;}
.y7b{bottom:633.693333pt;}
.ya4{bottom:639.773333pt;}
.yf4{bottom:643.133333pt;}
.y13c{bottom:643.293333pt;}
.y189{bottom:645.053333pt;}
.y16a{bottom:646.973333pt;}
.y11c{bottom:649.373333pt;}
.y35{bottom:652.573333pt;}
.y7a{bottom:653.053333pt;}
.y63{bottom:657.533333pt;}
.ya3{bottom:659.133333pt;}
.y188{bottom:662.013333pt;}
.yf3{bottom:662.493333pt;}
.y13b{bottom:662.653333pt;}
.yf{bottom:663.133333pt;}
.y169{bottom:665.213333pt;}
.y11b{bottom:668.733333pt;}
.y34{bottom:672.093333pt;}
.y79{bottom:672.413333pt;}
.ya2{bottom:678.493333pt;}
.yf2{bottom:681.853333pt;}
.y13a{bottom:682.013333pt;}
.y168{bottom:683.453333pt;}
.y62{bottom:683.613333pt;}
.y11a{bottom:688.093333pt;}
.y78{bottom:691.773333pt;}
.ya1{bottom:697.853333pt;}
.y167{bottom:701.693333pt;}
.yf1{bottom:702.173333pt;}
.y33{bottom:704.573333pt;}
.y119{bottom:707.453333pt;}
.y61{bottom:709.693333pt;}
.y77{bottom:711.133333pt;}
.ycd{bottom:711.293333pt;}
.ye{bottom:713.533333pt;}
.y139{bottom:714.653333pt;}
.ya0{bottom:717.373333pt;}
.y30{bottom:719.133333pt;}
.y166{bottom:719.773333pt;}
.y76{bottom:730.653333pt;}
.yf0{bottom:730.973333pt;}
.y55{bottom:732.893333pt;}
.y138{bottom:734.173333pt;}
.y60{bottom:735.613333pt;}
.y9f{bottom:736.733333pt;}
.y165{bottom:738.013333pt;}
.y118{bottom:740.093333pt;}
.ycc{bottom:743.773333pt;}
.yd{bottom:749.693333pt;}
.y75{bottom:750.013333pt;}
.y137{bottom:753.533333pt;}
.y54{bottom:754.813333pt;}
.y9e{bottom:756.093333pt;}
.y164{bottom:756.253333pt;}
.y117{bottom:759.613333pt;}
.y5f{bottom:761.693333pt;}
.ycb{bottom:763.293333pt;}
.y2e{bottom:765.693333pt;}
.y74{bottom:769.373333pt;}
.yef{bottom:772.733333pt;}
.y136{bottom:772.893333pt;}
.y163{bottom:774.533333pt;}
.y9d{bottom:776.453333pt;}
.y116{bottom:779.013333pt;}
.yc{bottom:781.893333pt;}
.yca{bottom:782.853333pt;}
.y53{bottom:786.373333pt;}
.y5e{bottom:787.813333pt;}
.y73{bottom:788.773333pt;}
.y135{bottom:792.453333pt;}
.y162{bottom:792.613333pt;}
.y2c{bottom:794.533333pt;}
.y115{bottom:798.373333pt;}
.yc9{bottom:802.213333pt;}
.yee{bottom:805.573333pt;}
.y72{bottom:808.293333pt;}
.y161{bottom:810.853333pt;}
.y9c{bottom:811.653333pt;}
.y134{bottom:811.813333pt;}
.y5d{bottom:813.893333pt;}
.y52{bottom:817.893333pt;}
.yc8{bottom:821.573333pt;}
.yed{bottom:825.093333pt;}
.y160{bottom:829.093333pt;}
.y9b{bottom:831.173333pt;}
.y114{bottom:837.253333pt;}
.y2b{bottom:837.573333pt;}
.y5c{bottom:839.973333pt;}
.y71{bottom:840.773333pt;}
.yc7{bottom:840.933333pt;}
.yec{bottom:844.453333pt;}
.y15f{bottom:847.333333pt;}
.y51{bottom:849.413333pt;}
.y9a{bottom:850.533333pt;}
.y2a{bottom:859.333333pt;}
.y70{bottom:860.293333pt;}
.yc6{bottom:860.453333pt;}
.yeb{bottom:863.973333pt;}
.y5b{bottom:866.053333pt;}
.y15e{bottom:866.533333pt;}
.y113{bottom:869.733333pt;}
.y23{bottom:871.333333pt;}
.y6f{bottom:879.813333pt;}
.y4e{bottom:880.933333pt;}
.y99{bottom:883.173333pt;}
.yea{bottom:883.333333pt;}
.y15d{bottom:884.613333pt;}
.y112{bottom:889.413333pt;}
.y5a{bottom:892.133333pt;}
.yc5{bottom:892.933333pt;}
.y6e{bottom:899.173333pt;}
.y98{bottom:902.693333pt;}
.y15c{bottom:903.813333pt;}
.y111{bottom:908.773333pt;}
.yb{bottom:910.373333pt;}
.yc4{bottom:912.453333pt;}
.y59{bottom:918.213333pt;}
.y6d{bottom:918.533333pt;}
.y97{bottom:922.053333pt;}
.y110{bottom:928.133333pt;}
.y4d{bottom:929.413333pt;}
.yc3{bottom:931.973333pt;}
.ye9{bottom:935.333333pt;}
.y6c{bottom:937.893333pt;}
.y58{bottom:939.813333pt;}
.y15b{bottom:941.253333pt;}
.y96{bottom:941.413333pt;}
.ya{bottom:946.853333pt;}
.y10f{bottom:947.493333pt;}
.yc2{bottom:951.333333pt;}
.y1d{bottom:952.933333pt;}
.ye8{bottom:954.853333pt;}
.y6b{bottom:957.253333pt;}
.y15a{bottom:959.493333pt;}
.y4c{bottom:960.933333pt;}
.yc1{bottom:970.693333pt;}
.ye7{bottom:974.213333pt;}
.y6a{bottom:976.773333pt;}
.y159{bottom:977.573333pt;}
.y10e{bottom:980.133333pt;}
.y95{bottom:980.293333pt;}
.y57{bottom:982.853333pt;}
.yc0{bottom:990.053333pt;}
.y9{bottom:991.813333pt;}
.y4a{bottom:992.453333pt;}
.ye6{bottom:993.573333pt;}
.y158{bottom:995.813333pt;}
.y69{bottom:997.093333pt;}
.ybf{bottom:1009.413333pt;}
.y94{bottom:1012.800000pt;}
.ye5{bottom:1012.960000pt;}
.y157{bottom:1014.080000pt;}
.y8{bottom:1023.680000pt;}
.y56{bottom:1025.760000pt;}
.ybe{bottom:1029.920000pt;}
.y156{bottom:1032.320000pt;}
.y49{bottom:1032.480000pt;}
.y1c{bottom:1037.440000pt;}
.y3{bottom:1049.280000pt;}
.y1{bottom:1063.040000pt;}
.h1a{height:16.800000pt;}
.h1c{height:16.960000pt;}
.h2{height:18.400000pt;}
.hd{height:27.912500pt;}
.h14{height:28.192000pt;}
.h13{height:31.840000pt;}
.h1b{height:33.760000pt;}
.h5{height:35.085938pt;}
.hc{height:36.093750pt;}
.h6{height:37.090625pt;}
.ha{height:42.656250pt;}
.h4{height:43.038750pt;}
.h16{height:43.441250pt;}
.h19{height:44.275000pt;}
.h3{height:44.687500pt;}
.h15{height:45.920000pt;}
.h17{height:46.781250pt;}
.h8{height:51.975000pt;}
.h12{height:52.834688pt;}
.h1e{height:53.937500pt;}
.h11{height:54.390938pt;}
.hb{height:56.306250pt;}
.hf{height:63.656250pt;}
.h18{height:72.069375pt;}
.h7{height:72.187500pt;}
.he{height:73.792000pt;}
.h10{height:80.800000pt;}
.h1d{height:84.662813pt;}
.h9{height:108.375000pt;}
.h20{height:310.146667pt;}
.h21{height:384.226667pt;}
.h1f{height:431.266667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w8{width:48.960000pt;}
.w7{width:49.152000pt;}
.w12{width:50.912000pt;}
.wc{width:51.552000pt;}
.w5{width:61.120000pt;}
.w14{width:68.192000pt;}
.we{width:68.672000pt;}
.w11{width:86.240000pt;}
.wb{width:86.880000pt;}
.w1e{width:89.600000pt;}
.w19{width:89.920000pt;}
.w1a{width:93.440000pt;}
.w15{width:93.920000pt;}
.wf{width:94.432000pt;}
.w9{width:94.752000pt;}
.w1b{width:103.232000pt;}
.w16{width:103.872000pt;}
.w10{width:121.472000pt;}
.wa{width:122.112000pt;}
.w1d{width:130.272000pt;}
.w18{width:130.912000pt;}
.w1c{width:132.992000pt;}
.w17{width:133.786667pt;}
.w1f{width:224.866667pt;}
.w13{width:227.066667pt;}
.wd{width:227.706667pt;}
.w3{width:295.106667pt;}
.w2{width:359.293333pt;}
.w20{width:396.546667pt;}
.w6{width:613.573333pt;}
.w21{width:696.800000pt;}
.w4{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:1.760000pt;}
.x37{left:5.920000pt;}
.x26{left:6.880000pt;}
.x1c{left:8.000000pt;}
.x6{left:9.280000pt;}
.x1a{left:10.272000pt;}
.x2c{left:12.800000pt;}
.x27{left:15.360000pt;}
.x3c{left:16.320000pt;}
.x25{left:17.760000pt;}
.xd{left:20.320000pt;}
.x23{left:21.280000pt;}
.xb{left:24.506667pt;}
.x1e{left:28.000000pt;}
.x7{left:30.560000pt;}
.x24{left:34.432000pt;}
.x2a{left:36.520000pt;}
.x2f{left:39.354667pt;}
.x31{left:44.800000pt;}
.xe{left:47.999988pt;}
.x21{left:49.120000pt;}
.x39{left:62.719988pt;}
.x30{left:65.120000pt;}
.x3b{left:68.479988pt;}
.x1{left:69.600000pt;}
.x8{left:71.200000pt;}
.x15{left:74.751988pt;}
.x34{left:76.672000pt;}
.xf{left:81.311988pt;}
.x3a{left:96.031988pt;}
.x28{left:105.760000pt;}
.x29{left:120.512000pt;}
.x32{left:123.551988pt;}
.x9{left:145.786667pt;}
.x36{left:163.866667pt;}
.x1b{left:165.626667pt;}
.x5{left:199.226655pt;}
.x19{left:204.666655pt;}
.x16{left:214.266655pt;}
.x14{left:241.666655pt;}
.x13{left:271.906655pt;}
.x35{left:275.586667pt;}
.x1d{left:287.746667pt;}
.x4{left:293.186667pt;}
.x38{left:311.266655pt;}
.x33{left:314.786655pt;}
.x2b{left:318.306667pt;}
.x10{left:340.386655pt;}
.x17{left:351.586655pt;}
.x1f{left:374.626667pt;}
.x11{left:396.733322pt;}
.x20{left:426.173333pt;}
.x3{left:428.893333pt;}
.x2d{left:452.093333pt;}
.x12{left:469.693322pt;}
.x3e{left:539.333333pt;}
.x2e{left:583.013333pt;}
.x3f{left:594.373333pt;}
.x22{left:653.893333pt;}
.x3d{left:683.360000pt;}
.xa{left:685.413333pt;}
.x18{left:688.773322pt;}
.xc{left:735.200000pt;}
}




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