
    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_abe900b99947f2a74e2ed1fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_749251ed65d970901c68e9f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_43af2bb635a723bce9cc2852.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1f717f0ddb6e831038c0f608.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9c4cd38af93c1bda08c67c42.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_7c00af41e880ed899c11be74.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_3025ed9e07ec4500fcf5610a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2b890e32539a7aa70e1f222b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_df053581ca89f9842ba650c6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.720000px;}
.ls26{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.864000px;}
.ls15{letter-spacing:0.900000px;}
.lsd{letter-spacing:1.440000px;}
.lsb{letter-spacing:1.584000px;}
.ls24{letter-spacing:3.600000px;}
.ls22{letter-spacing:5.040000px;}
.ls17{letter-spacing:5.220000px;}
.ls1f{letter-spacing:5.760000px;}
.ls23{letter-spacing:6.480000px;}
.ls25{letter-spacing:7.920000px;}
.ls21{letter-spacing:8.640000px;}
.lse{letter-spacing:9.360000px;}
.ls1e{letter-spacing:10.800000px;}
.ls12{letter-spacing:12.960000px;}
.ls11{letter-spacing:14.400000px;}
.ls27{letter-spacing:15.840000px;}
.ls1d{letter-spacing:20.880000px;}
.ls1b{letter-spacing:23.040000px;}
.ls19{letter-spacing:26.784000px;}
.ls7{letter-spacing:33.960000px;}
.ls18{letter-spacing:54.864000px;}
.ls4{letter-spacing:62.765760px;}
.ls14{letter-spacing:64.224000px;}
.ls5{letter-spacing:75.029760px;}
.ls6{letter-spacing:87.269760px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.wsa{word-spacing:-18.864000px;}
.wsb{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.432000px;}
.wsc{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.424000px;}
.wse{word-spacing:-17.280000px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-16.272000px;}
._12{margin-left:-12.776400px;}
._13{margin-left:-10.500000px;}
._14{margin-left:-9.077760px;}
._15{margin-left:-6.540000px;}
._4{margin-left:-4.896000px;}
._5{margin-left:-3.600000px;}
._8{margin-left:-2.497680px;}
._0{margin-left:-1.263600px;}
._1{width:1.656480px;}
._9{width:3.106560px;}
._3{width:4.735200px;}
._2{width:5.808000px;}
._6{width:6.840000px;}
._7{width:7.872000px;}
._e{width:8.952000px;}
._10{width:10.331040px;}
._a{width:11.664000px;}
._b{width:12.671520px;}
._f{width:14.184480px;}
._17{width:16.031520px;}
._18{width:19.224000px;}
._19{width:20.580000px;}
._1e{width:21.747600px;}
._1d{width:22.908000px;}
._16{width:24.528000px;}
._c{width:25.992000px;}
._d{width:27.567600px;}
._24{width:28.848000px;}
._22{width:30.024000px;}
._1a{width:31.296000px;}
._1b{width:32.484000px;}
._1c{width:33.855600px;}
._23{width:34.992000px;}
._21{width:36.498240px;}
._20{width:37.512000px;}
._25{width:39.600000px;}
._1f{width:40.680000px;}
._3b{width:42.264000px;}
._41{width:45.864000px;}
._42{width:46.944000px;}
._2b{width:49.248000px;}
._37{width:50.328000px;}
._38{width:52.067520px;}
._44{width:53.892000px;}
._34{width:65.520000px;}
._35{width:66.566640px;}
._36{width:67.596000px;}
._2a{width:81.792000px;}
._26{width:82.872000px;}
._3f{width:92.232000px;}
._3c{width:93.528000px;}
._2d{width:145.428480px;}
._2e{width:146.474400px;}
._48{width:151.856640px;}
._49{width:152.907600px;}
._30{width:181.800000px;}
._4a{width:214.992000px;}
._4b{width:216.720000px;}
._46{width:223.560000px;}
._2c{width:224.568000px;}
._31{width:235.440000px;}
._4c{width:248.040000px;}
._47{width:279.720000px;}
._29{width:300.600000px;}
._45{width:322.308000px;}
._3a{width:328.752000px;}
._4e{width:365.292000px;}
._3d{width:596.088000px;}
._28{width:636.168000px;}
._27{width:637.416000px;}
._43{width:670.980000px;}
._3e{width:756.072000px;}
._33{width:807.264000px;}
._32{width:808.500000px;}
._4d{width:1730.808000px;}
._40{width:1742.007600px;}
._2f{width:1748.772000px;}
._39{width:1820.160000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(60,66,69);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:56.880000px;}
.y14{bottom:77.616000px;}
.y185{bottom:111.456000px;}
.yc7{bottom:112.356000px;}
.y15f{bottom:114.336000px;}
.yc9{bottom:117.216000px;}
.ye9{bottom:119.196000px;}
.y95{bottom:121.356000px;}
.yb6{bottom:124.236000px;}
.y1be{bottom:125.676000px;}
.y1cb{bottom:128.196000px;}
.y195{bottom:129.276000px;}
.y32{bottom:131.436000px;}
.y1ad{bottom:131.976000px;}
.y12f{bottom:133.236000px;}
.y6b{bottom:136.296000px;}
.y10b{bottom:138.456000px;}
.y56{bottom:140.256000px;}
.y13{bottom:140.796000px;}
.yc6{bottom:143.316000px;}
.y15e{bottom:145.296000px;}
.y114{bottom:145.476000px;}
.ya9{bottom:148.356000px;}
.ye8{bottom:150.150000px;}
.y142{bottom:150.330000px;}
.y94{bottom:152.310000px;}
.y16f{bottom:152.490000px;}
.y184{bottom:154.650000px;}
.yb5{bottom:155.370000px;}
.y1bd{bottom:156.630000px;}
.y197{bottom:157.350000px;}
.y1ca{bottom:159.150000px;}
.y194{bottom:160.230000px;}
.y160{bottom:162.390000px;}
.y1ac{bottom:163.110000px;}
.y12e{bottom:164.370000px;}
.y122{bottom:164.550000px;}
.y6a{bottom:167.430000px;}
.y148{bottom:169.410000px;}
.y55{bottom:173.010000px;}
.y31{bottom:174.450000px;}
.y15d{bottom:176.430000px;}
.ya8{bottom:179.310000px;}
.ye7{bottom:181.290000px;}
.ycc{bottom:181.470000px;}
.y93{bottom:183.450000px;}
.yb4{bottom:186.330000px;}
.y113{bottom:188.490000px;}
.y1c9{bottom:190.290000px;}
.y193{bottom:191.370000px;}
.y108{bottom:192.450000px;}
.yb2{bottom:193.350000px;}
.y12d{bottom:195.330000px;}
.y121{bottom:195.510000px;}
.y183{bottom:197.670000px;}
.y69{bottom:198.390000px;}
.y1bc{bottom:199.650000px;}
.y147{bottom:200.550000px;}
.y54{bottom:201.090000px;}
.y178{bottom:202.530000px;}
.yc5{bottom:205.410000px;}
.y1ab{bottom:206.130000px;}
.y15c{bottom:207.390000px;}
.ya7{bottom:210.450000px;}
.ye6{bottom:212.250000px;}
.y141{bottom:212.430000px;}
.y92{bottom:214.410000px;}
.y77{bottom:214.590000px;}
.y30{bottom:217.470000px;}
.y1c8{bottom:221.250000px;}
.ycb{bottom:224.490000px;}
.y120{bottom:226.650000px;}
.y53{bottom:229.350000px;}
.y1bb{bottom:230.790000px;}
.y112{bottom:231.510000px;}
.y192{bottom:234.390000px;}
.y107{bottom:235.470000px;}
.yb1{bottom:236.550000px;}
.y1aa{bottom:237.270000px;}
.y12c{bottom:238.350000px;}
.y182{bottom:240.690000px;}
.ya6{bottom:241.410000px;}
.y140{bottom:243.570000px;}
.y91{bottom:245.550000px;}
.y2f{bottom:248.430000px;}
.yc8{bottom:253.470000px;}
.ye5{bottom:255.270000px;}
.y19a{bottom:255.450000px;}
.y52{bottom:257.610000px;}
.y68{bottom:260.490000px;}
.y1ba{bottom:261.750000px;}
.y111{bottom:262.650000px;}
.y1c7{bottom:264.450000px;}
.y191{bottom:265.350000px;}
.y106{bottom:266.430000px;}
.yca{bottom:267.510000px;}
.y1a9{bottom:268.230000px;}
.y12b{bottom:269.490000px;}
.y11f{bottom:269.670000px;}
.yab{bottom:272.550000px;}
.yed{bottom:274.530000px;}
.yb0{bottom:279.570000px;}
.y181{bottom:283.710000px;}
.ya5{bottom:284.430000px;}
.y51{bottom:285.690000px;}
.ye4{bottom:286.410000px;}
.y13f{bottom:286.590000px;}
.y90{bottom:288.570000px;}
.y16e{bottom:288.750000px;}
.y2e{bottom:291.450000px;}
.y1b9{bottom:292.890000px;}
.y146{bottom:293.610000px;}
.y1c6{bottom:295.410000px;}
.y190{bottom:296.490000px;}
.y105{bottom:297.570000px;}
.y10a{bottom:298.650000px;}
.y1a8{bottom:299.370000px;}
.y12a{bottom:300.450000px;}
.y76{bottom:300.630000px;}
.y67{bottom:303.510000px;}
.y110{bottom:305.670000px;}
.yc4{bottom:310.530000px;}
.y15b{bottom:312.510000px;}
.y11e{bottom:312.690000px;}
.y50{bottom:313.950000px;}
.ya4{bottom:315.570000px;}
.ye3{bottom:317.370000px;}
.yec{bottom:317.550000px;}
.y8f{bottom:319.530000px;}
.y16d{bottom:319.710000px;}
.yaf{bottom:322.590000px;}
.y1c5{bottom:326.370000px;}
.y180{bottom:326.730000px;}
.y18f{bottom:327.450000px;}
.y104{bottom:328.530000px;}
.y196{bottom:329.610000px;}
.y129{bottom:331.590000px;}
.y2d{bottom:334.650000px;}
.y1b8{bottom:335.910000px;}
.y145{bottom:336.675000px;}
.yc3{bottom:341.715000px;}
.y4f{bottom:342.255000px;}
.y1a7{bottom:342.435000px;}
.y75{bottom:343.695000px;}
.y12{bottom:344.055000px;}
.ya3{bottom:346.575000px;}
.ye2{bottom:348.555000px;}
.y10f{bottom:348.735000px;}
.y16c{bottom:350.895000px;}
.yb3{bottom:353.595000px;}
.y11d{bottom:355.755000px;}
.y1c4{bottom:357.555000px;}
.yeb{bottom:360.795000px;}
.y8e{bottom:362.595000px;}
.y177{bottom:362.775000px;}
.y2c{bottom:365.655000px;}
.y1b7{bottom:366.915000px;}
.y150{bottom:367.815000px;}
.y17f{bottom:369.795000px;}
.y4e{bottom:370.335000px;}
.y18e{bottom:370.695000px;}
.y103{bottom:371.595000px;}
.yc2{bottom:372.675000px;}
.y1a6{bottom:373.395000px;}
.y15a{bottom:374.655000px;}
.ya2{bottom:377.715000px;}
.ye1{bottom:379.515000px;}
.y13e{bottom:379.695000px;}
.y16b{bottom:381.855000px;}
.y109{bottom:384.735000px;}
.y74{bottom:386.895000px;}
.y11{bottom:387.075000px;}
.y1c3{bottom:388.515000px;}
.y10e{bottom:391.755000px;}
.y8d{bottom:393.735000px;}
.y2b{bottom:396.795000px;}
.y1b6{bottom:398.055000px;}
.y4d{bottom:398.595000px;}
.y11c{bottom:398.775000px;}
.y18d{bottom:401.655000px;}
.y102{bottom:402.735000px;}
.yea{bottom:403.815000px;}
.y1a5{bottom:404.535000px;}
.y128{bottom:405.795000px;}
.ya1{bottom:408.675000px;}
.ye0{bottom:410.655000px;}
.y13d{bottom:410.835000px;}
.y17e{bottom:412.995000px;}
.yc1{bottom:415.695000px;}
.y14e{bottom:422.895000px;}
.y8c{bottom:424.695000px;}
.y16a{bottom:424.875000px;}
.y4c{bottom:426.855000px;}
.y2a{bottom:427.755000px;}
.y73{bottom:429.915000px;}
.y10{bottom:430.095000px;}
.y1c2{bottom:431.715000px;}
.y18c{bottom:432.795000px;}
.y101{bottom:433.695000px;}
.y10d{bottom:434.775000px;}
.y1a4{bottom:435.495000px;}
.y127{bottom:436.755000px;}
.yaa{bottom:439.815000px;}
.y1b5{bottom:441.075000px;}
.y11b{bottom:441.795000px;}
.yc0{bottom:446.835000px;}
.y176{bottom:448.995000px;}
.ya0{bottom:451.695000px;}
.ydf{bottom:453.675000px;}
.y13c{bottom:453.855000px;}
.y4b{bottom:454.935000px;}
.y8b{bottom:455.835000px;}
.y169{bottom:456.015000px;}
.y29{bottom:458.895000px;}
.y1c1{bottom:462.675000px;}
.y18b{bottom:463.755000px;}
.y100{bottom:464.835000px;}
.y14d{bottom:465.915000px;}
.y1a3{bottom:466.635000px;}
.y126{bottom:467.895000px;}
.y66{bottom:470.775000px;}
.y1b4{bottom:472.035000px;}
.y72{bottom:472.935000px;}
.yf{bottom:473.115000px;}
.ybf{bottom:477.795000px;}
.y9f{bottom:482.835000px;}
.y4a{bottom:483.195000px;}
.yde{bottom:484.635000px;}
.y11a{bottom:484.995000px;}
.y28{bottom:489.855000px;}
.y175{bottom:492.015000px;}
.y1c0{bottom:493.095000px;}
.y18a{bottom:494.895000px;}
.y199{bottom:496.875000px;}
.y8a{bottom:498.855000px;}
.y168{bottom:499.035000px;}
.y65{bottom:501.915000px;}
.y1b3{bottom:503.175000px;}
.yff{bottom:507.855000px;}
.y10c{bottom:508.935000px;}
.y1a2{bottom:509.655000px;}
.y159{bottom:510.915000px;}
.y49{bottom:511.455000px;}
.y9e{bottom:513.795000px;}
.ydd{bottom:515.775000px;}
.y71{bottom:515.955000px;}
.ye{bottom:516.135000px;}
.y27{bottom:520.995000px;}
.y174{bottom:522.975000px;}
.y189{bottom:525.855000px;}
.y144{bottom:528.015000px;}
.y89{bottom:529.995000px;}
.y64{bottom:532.875000px;}
.y1b2{bottom:534.135000px;}
.yfe{bottom:538.995000px;}
.y48{bottom:539.535000px;}
.y198{bottom:539.895000px;}
.y1a1{bottom:540.615000px;}
.y125{bottom:541.875000px;}
.y17d{bottom:542.055000px;}
.y9d{bottom:544.935000px;}
.y13b{bottom:546.915000px;}
.y26{bottom:551.955000px;}
.y188{bottom:556.995000px;}
.ydc{bottom:558.795000px;}
.y70{bottom:558.975000px;}
.yd{bottom:559.155000px;}
.y88{bottom:560.955000px;}
.y63{bottom:564.015000px;}
.y1bf{bottom:564.735000px;}
.y1b1{bottom:565.275000px;}
.y173{bottom:565.995000px;}
.y47{bottom:567.795000px;}
.yfd{bottom:569.955000px;}
.y143{bottom:571.035000px;}
.y1a0{bottom:571.215000px;}
.y124{bottom:573.015000px;}
.y9c{bottom:575.895000px;}
.y25{bottom:582.915000px;}
.y17c{bottom:585.075000px;}
.y187{bottom:587.955000px;}
.ydb{bottom:589.755000px;}
.y13a{bottom:590.115000px;}
.y87{bottom:591.915000px;}
.y62{bottom:594.975000px;}
.y46{bottom:596.055000px;}
.y1b0{bottom:596.235000px;}
.yfc{bottom:600.915000px;}
.y6f{bottom:601.995000px;}
.yc{bottom:602.355000px;}
.y123{bottom:604.005000px;}
.y9b{bottom:607.065000px;}
.y172{bottom:609.045000px;}
.ybe{bottom:614.085000px;}
.y167{bottom:616.245000px;}
.y186{bottom:618.945000px;}
.yda{bottom:620.925000px;}
.y139{bottom:621.105000px;}
.y45{bottom:624.165000px;}
.y24{bottom:626.145000px;}
.y1af{bottom:627.405000px;}
.y17b{bottom:628.125000px;}
.y19f{bottom:630.645000px;}
.yfb{bottom:632.085000px;}
.y14f{bottom:633.165000px;}
.y86{bottom:635.145000px;}
.y61{bottom:638.025000px;}
.y6e{bottom:645.045000px;}
.yb{bottom:645.405000px;}
.y158{bottom:647.025000px;}
.y9a{bottom:650.085000px;}
.y138{bottom:652.245000px;}
.y44{bottom:652.425000px;}
.ybd{bottom:657.105000px;}
.y166{bottom:659.265000px;}
.yd9{bottom:663.945000px;}
.y85{bottom:666.105000px;}
.y23{bottom:669.165000px;}
.y1ae{bottom:669.885000px;}
.y17a{bottom:671.145000px;}
.y19e{bottom:672.405000px;}
.yfa{bottom:675.105000px;}
.y119{bottom:676.185000px;}
.y157{bottom:678.165000px;}
.y43{bottom:680.505000px;}
.y99{bottom:681.045000px;}
.y137{bottom:683.205000px;}
.y6d{bottom:688.245000px;}
.ya{bottom:688.425000px;}
.yd8{bottom:695.085000px;}
.y171{bottom:695.265000px;}
.y84{bottom:697.245000px;}
.y60{bottom:700.125000px;}
.y165{bottom:702.285000px;}
.y19d{bottom:702.825000px;}
.yf9{bottom:706.245000px;}
.y14c{bottom:707.145000px;}
.y42{bottom:708.765000px;}
.y156{bottom:709.125000px;}
.y22{bottom:712.185000px;}
.y179{bottom:714.345000px;}
.ybc{bottom:719.205000px;}
.y136{bottom:726.225000px;}
.y83{bottom:728.205000px;}
.y6c{bottom:731.265000px;}
.y9{bottom:731.445000px;}
.y19c{bottom:733.245000px;}
.y41{bottom:737.025000px;}
.yf8{bottom:737.205000px;}
.yd7{bottom:738.105000px;}
.y170{bottom:738.285000px;}
.y155{bottom:740.265000px;}
.y21{bottom:743.145000px;}
.y164{bottom:745.305000px;}
.ybb{bottom:750.345000px;}
.yb7{bottom:755.205000px;}
.y135{bottom:757.365000px;}
.yae{bottom:762.225000px;}
.y19b{bottom:762.945000px;}
.y40{bottom:765.105000px;}
.y82{bottom:771.225000px;}
.y5f{bottom:774.285000px;}
.y163{bottom:776.445000px;}
.yf7{bottom:780.225000px;}
.yd6{bottom:781.125000px;}
.y118{bottom:781.305000px;}
.y8{bottom:781.485000px;}
.y20{bottom:786.345000px;}
.y3f{bottom:793.365000px;}
.y134{bottom:800.385000px;}
.y81{bottom:802.365000px;}
.y5e{bottom:805.245000px;}
.yf6{bottom:811.365000px;}
.yd5{bottom:812.085000px;}
.y14b{bottom:812.445000px;}
.y154{bottom:814.245000px;}
.y1f{bottom:817.305000px;}
.y162{bottom:819.465000px;}
.y3e{bottom:821.625000px;}
.yba{bottom:824.325000px;}
.y133{bottom:831.345000px;}
.y80{bottom:833.325000px;}
.y7{bottom:835.305000px;}
.y5d{bottom:836.385000px;}
.yf5{bottom:842.325000px;}
.yd4{bottom:843.045000px;}
.y14a{bottom:843.405000px;}
.y153{bottom:845.385000px;}
.y1e{bottom:848.445000px;}
.y3d{bottom:849.705000px;}
.yb9{bottom:855.465000px;}
.y161{bottom:862.485000px;}
.y7f{bottom:864.465000px;}
.y5c{bottom:867.345000px;}
.y6{bottom:871.710000px;}
.yf4{bottom:873.510000px;}
.y132{bottom:874.590000px;}
.yd3{bottom:875.490000px;}
.y152{bottom:876.390000px;}
.y3c{bottom:878.010000px;}
.y1d{bottom:879.450000px;}
.y117{bottom:886.470000px;}
.yad{bottom:898.530000px;}
.y131{bottom:905.550000px;}
.y3b{bottom:906.270000px;}
.yd2{bottom:906.630000px;}
.y7e{bottom:907.530000px;}
.y1c{bottom:910.590000px;}
.yf3{bottom:916.530000px;}
.y149{bottom:917.610000px;}
.y98{bottom:922.470000px;}
.y5{bottom:924.630000px;}
.yac{bottom:929.490000px;}
.y3a{bottom:934.350000px;}
.yd1{bottom:937.590000px;}
.y7d{bottom:938.490000px;}
.y1b{bottom:941.550000px;}
.yf2{bottom:947.490000px;}
.y130{bottom:948.570000px;}
.y97{bottom:953.610000px;}
.yb8{bottom:960.630000px;}
.y39{bottom:962.610000px;}
.y7c{bottom:969.630000px;}
.yd0{bottom:969.990000px;}
.y4{bottom:971.070000px;}
.y1a{bottom:972.510000px;}
.yf1{bottom:978.630000px;}
.y151{bottom:981.510000px;}
.y96{bottom:984.570000px;}
.y38{bottom:990.870000px;}
.y116{bottom:991.590000px;}
.ycf{bottom:1000.950000px;}
.y19{bottom:1003.650000px;}
.yf0{bottom:1009.590000px;}
.y7b{bottom:1012.650000px;}
.y5b{bottom:1015.710000px;}
.y37{bottom:1018.950000px;}
.y115{bottom:1022.730000px;}
.y3{bottom:1029.750000px;}
.yce{bottom:1033.350000px;}
.y18{bottom:1034.610000px;}
.yef{bottom:1040.730000px;}
.y7a{bottom:1043.610000px;}
.y5a{bottom:1046.670000px;}
.y36{bottom:1047.210000px;}
.ycd{bottom:1064.310000px;}
.y17{bottom:1065.750000px;}
.yee{bottom:1071.690000px;}
.y79{bottom:1074.750000px;}
.y35{bottom:1075.470000px;}
.y59{bottom:1077.810000px;}
.y2{bottom:1088.250000px;}
.y16{bottom:1096.710000px;}
.y34{bottom:1103.550000px;}
.y78{bottom:1105.710000px;}
.y58{bottom:1108.770000px;}
.y33{bottom:1136.850000px;}
.y57{bottom:1139.760000px;}
.y1{bottom:1139.940000px;}
.h8{height:64.546875px;}
.hc{height:67.803750px;}
.hb{height:67.837500px;}
.h7{height:70.628906px;}
.h2{height:70.664062px;}
.h6{height:72.562500px;}
.ha{height:74.004654px;}
.h9{height:74.953125px;}
.h4{height:82.676953px;}
.h5{height:105.996094px;}
.h3{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x10{left:144.215987px;}
.x12{left:154.649987px;}
.x11{left:160.589987px;}
.x4{left:175.709987px;}
.x14{left:180.749987px;}
.x16{left:206.849987px;}
.x15{left:233.849987px;}
.x5{left:262.289987px;}
.x6{left:274.349987px;}
.x2{left:279.614987px;}
.xa{left:312.194987px;}
.xb{left:317.414987px;}
.xc{left:326.234987px;}
.xd{left:340.994987px;}
.x9{left:349.994987px;}
.x7{left:351.434987px;}
.x8{left:364.574987px;}
.xe{left:373.754987px;}
.x13{left:437.474987px;}
.xf{left:441.974987px;}
.x3{left:446.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls15{letter-spacing:0.800000pt;}
.lsd{letter-spacing:1.280000pt;}
.lsb{letter-spacing:1.408000pt;}
.ls24{letter-spacing:3.200000pt;}
.ls22{letter-spacing:4.480000pt;}
.ls17{letter-spacing:4.640000pt;}
.ls1f{letter-spacing:5.120000pt;}
.ls23{letter-spacing:5.760000pt;}
.ls25{letter-spacing:7.040000pt;}
.ls21{letter-spacing:7.680000pt;}
.lse{letter-spacing:8.320000pt;}
.ls1e{letter-spacing:9.600000pt;}
.ls12{letter-spacing:11.520000pt;}
.ls11{letter-spacing:12.800000pt;}
.ls27{letter-spacing:14.080000pt;}
.ls1d{letter-spacing:18.560000pt;}
.ls1b{letter-spacing:20.480000pt;}
.ls19{letter-spacing:23.808000pt;}
.ls7{letter-spacing:30.186667pt;}
.ls18{letter-spacing:48.768000pt;}
.ls4{letter-spacing:55.791787pt;}
.ls14{letter-spacing:57.088000pt;}
.ls5{letter-spacing:66.693120pt;}
.ls6{letter-spacing:77.573120pt;}
.ws9{word-spacing:-64.000000pt;}
.wsa{word-spacing:-16.768000pt;}
.wsb{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.384000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.488000pt;}
.wse{word-spacing:-15.360000pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-14.464000pt;}
._12{margin-left:-11.356800pt;}
._13{margin-left:-9.333333pt;}
._14{margin-left:-8.069120pt;}
._15{margin-left:-5.813333pt;}
._4{margin-left:-4.352000pt;}
._5{margin-left:-3.200000pt;}
._8{margin-left:-2.220160pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.472427pt;}
._9{width:2.761387pt;}
._3{width:4.209067pt;}
._2{width:5.162667pt;}
._6{width:6.080000pt;}
._7{width:6.997333pt;}
._e{width:7.957333pt;}
._10{width:9.183147pt;}
._a{width:10.368000pt;}
._b{width:11.263573pt;}
._f{width:12.608427pt;}
._17{width:14.250240pt;}
._18{width:17.088000pt;}
._19{width:18.293333pt;}
._1e{width:19.331200pt;}
._1d{width:20.362667pt;}
._16{width:21.802667pt;}
._c{width:23.104000pt;}
._d{width:24.504533pt;}
._24{width:25.642667pt;}
._22{width:26.688000pt;}
._1a{width:27.818667pt;}
._1b{width:28.874667pt;}
._1c{width:30.093867pt;}
._23{width:31.104000pt;}
._21{width:32.442880pt;}
._20{width:33.344000pt;}
._25{width:35.200000pt;}
._1f{width:36.160000pt;}
._3b{width:37.568000pt;}
._41{width:40.768000pt;}
._42{width:41.728000pt;}
._2b{width:43.776000pt;}
._37{width:44.736000pt;}
._38{width:46.282240pt;}
._44{width:47.904000pt;}
._34{width:58.240000pt;}
._35{width:59.170347pt;}
._36{width:60.085333pt;}
._2a{width:72.704000pt;}
._26{width:73.664000pt;}
._3f{width:81.984000pt;}
._3c{width:83.136000pt;}
._2d{width:129.269760pt;}
._2e{width:130.199467pt;}
._48{width:134.983680pt;}
._49{width:135.917867pt;}
._30{width:161.600000pt;}
._4a{width:191.104000pt;}
._4b{width:192.640000pt;}
._46{width:198.720000pt;}
._2c{width:199.616000pt;}
._31{width:209.280000pt;}
._4c{width:220.480000pt;}
._47{width:248.640000pt;}
._29{width:267.200000pt;}
._45{width:286.496000pt;}
._3a{width:292.224000pt;}
._4e{width:324.704000pt;}
._3d{width:529.856000pt;}
._28{width:565.482667pt;}
._27{width:566.592000pt;}
._43{width:596.426667pt;}
._3e{width:672.064000pt;}
._33{width:717.568000pt;}
._32{width:718.666667pt;}
._4d{width:1538.496000pt;}
._40{width:1548.451200pt;}
._2f{width:1554.464000pt;}
._39{width:1617.920000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:50.560000pt;}
.y14{bottom:68.992000pt;}
.y185{bottom:99.072000pt;}
.yc7{bottom:99.872000pt;}
.y15f{bottom:101.632000pt;}
.yc9{bottom:104.192000pt;}
.ye9{bottom:105.952000pt;}
.y95{bottom:107.872000pt;}
.yb6{bottom:110.432000pt;}
.y1be{bottom:111.712000pt;}
.y1cb{bottom:113.952000pt;}
.y195{bottom:114.912000pt;}
.y32{bottom:116.832000pt;}
.y1ad{bottom:117.312000pt;}
.y12f{bottom:118.432000pt;}
.y6b{bottom:121.152000pt;}
.y10b{bottom:123.072000pt;}
.y56{bottom:124.672000pt;}
.y13{bottom:125.152000pt;}
.yc6{bottom:127.392000pt;}
.y15e{bottom:129.152000pt;}
.y114{bottom:129.312000pt;}
.ya9{bottom:131.872000pt;}
.ye8{bottom:133.466667pt;}
.y142{bottom:133.626667pt;}
.y94{bottom:135.386667pt;}
.y16f{bottom:135.546667pt;}
.y184{bottom:137.466667pt;}
.yb5{bottom:138.106667pt;}
.y1bd{bottom:139.226667pt;}
.y197{bottom:139.866667pt;}
.y1ca{bottom:141.466667pt;}
.y194{bottom:142.426667pt;}
.y160{bottom:144.346667pt;}
.y1ac{bottom:144.986667pt;}
.y12e{bottom:146.106667pt;}
.y122{bottom:146.266667pt;}
.y6a{bottom:148.826667pt;}
.y148{bottom:150.586667pt;}
.y55{bottom:153.786667pt;}
.y31{bottom:155.066667pt;}
.y15d{bottom:156.826667pt;}
.ya8{bottom:159.386667pt;}
.ye7{bottom:161.146667pt;}
.ycc{bottom:161.306667pt;}
.y93{bottom:163.066667pt;}
.yb4{bottom:165.626667pt;}
.y113{bottom:167.546667pt;}
.y1c9{bottom:169.146667pt;}
.y193{bottom:170.106667pt;}
.y108{bottom:171.066667pt;}
.yb2{bottom:171.866667pt;}
.y12d{bottom:173.626667pt;}
.y121{bottom:173.786667pt;}
.y183{bottom:175.706667pt;}
.y69{bottom:176.346667pt;}
.y1bc{bottom:177.466667pt;}
.y147{bottom:178.266667pt;}
.y54{bottom:178.746667pt;}
.y178{bottom:180.026667pt;}
.yc5{bottom:182.586667pt;}
.y1ab{bottom:183.226667pt;}
.y15c{bottom:184.346667pt;}
.ya7{bottom:187.066667pt;}
.ye6{bottom:188.666667pt;}
.y141{bottom:188.826667pt;}
.y92{bottom:190.586667pt;}
.y77{bottom:190.746667pt;}
.y30{bottom:193.306667pt;}
.y1c8{bottom:196.666667pt;}
.ycb{bottom:199.546667pt;}
.y120{bottom:201.466667pt;}
.y53{bottom:203.866667pt;}
.y1bb{bottom:205.146667pt;}
.y112{bottom:205.786667pt;}
.y192{bottom:208.346667pt;}
.y107{bottom:209.306667pt;}
.yb1{bottom:210.266667pt;}
.y1aa{bottom:210.906667pt;}
.y12c{bottom:211.866667pt;}
.y182{bottom:213.946667pt;}
.ya6{bottom:214.586667pt;}
.y140{bottom:216.506667pt;}
.y91{bottom:218.266667pt;}
.y2f{bottom:220.826667pt;}
.yc8{bottom:225.306667pt;}
.ye5{bottom:226.906667pt;}
.y19a{bottom:227.066667pt;}
.y52{bottom:228.986667pt;}
.y68{bottom:231.546667pt;}
.y1ba{bottom:232.666667pt;}
.y111{bottom:233.466667pt;}
.y1c7{bottom:235.066667pt;}
.y191{bottom:235.866667pt;}
.y106{bottom:236.826667pt;}
.yca{bottom:237.786667pt;}
.y1a9{bottom:238.426667pt;}
.y12b{bottom:239.546667pt;}
.y11f{bottom:239.706667pt;}
.yab{bottom:242.266667pt;}
.yed{bottom:244.026667pt;}
.yb0{bottom:248.506667pt;}
.y181{bottom:252.186667pt;}
.ya5{bottom:252.826667pt;}
.y51{bottom:253.946667pt;}
.ye4{bottom:254.586667pt;}
.y13f{bottom:254.746667pt;}
.y90{bottom:256.506667pt;}
.y16e{bottom:256.666667pt;}
.y2e{bottom:259.066667pt;}
.y1b9{bottom:260.346667pt;}
.y146{bottom:260.986667pt;}
.y1c6{bottom:262.586667pt;}
.y190{bottom:263.546667pt;}
.y105{bottom:264.506667pt;}
.y10a{bottom:265.466667pt;}
.y1a8{bottom:266.106667pt;}
.y12a{bottom:267.066667pt;}
.y76{bottom:267.226667pt;}
.y67{bottom:269.786667pt;}
.y110{bottom:271.706667pt;}
.yc4{bottom:276.026667pt;}
.y15b{bottom:277.786667pt;}
.y11e{bottom:277.946667pt;}
.y50{bottom:279.066667pt;}
.ya4{bottom:280.506667pt;}
.ye3{bottom:282.106667pt;}
.yec{bottom:282.266667pt;}
.y8f{bottom:284.026667pt;}
.y16d{bottom:284.186667pt;}
.yaf{bottom:286.746667pt;}
.y1c5{bottom:290.106667pt;}
.y180{bottom:290.426667pt;}
.y18f{bottom:291.066667pt;}
.y104{bottom:292.026667pt;}
.y196{bottom:292.986667pt;}
.y129{bottom:294.746667pt;}
.y2d{bottom:297.466667pt;}
.y1b8{bottom:298.586667pt;}
.y145{bottom:299.266667pt;}
.yc3{bottom:303.746667pt;}
.y4f{bottom:304.226667pt;}
.y1a7{bottom:304.386667pt;}
.y75{bottom:305.506667pt;}
.y12{bottom:305.826667pt;}
.ya3{bottom:308.066667pt;}
.ye2{bottom:309.826667pt;}
.y10f{bottom:309.986667pt;}
.y16c{bottom:311.906667pt;}
.yb3{bottom:314.306667pt;}
.y11d{bottom:316.226667pt;}
.y1c4{bottom:317.826667pt;}
.yeb{bottom:320.706667pt;}
.y8e{bottom:322.306667pt;}
.y177{bottom:322.466667pt;}
.y2c{bottom:325.026667pt;}
.y1b7{bottom:326.146667pt;}
.y150{bottom:326.946667pt;}
.y17f{bottom:328.706667pt;}
.y4e{bottom:329.186667pt;}
.y18e{bottom:329.506667pt;}
.y103{bottom:330.306667pt;}
.yc2{bottom:331.266667pt;}
.y1a6{bottom:331.906667pt;}
.y15a{bottom:333.026667pt;}
.ya2{bottom:335.746667pt;}
.ye1{bottom:337.346667pt;}
.y13e{bottom:337.506667pt;}
.y16b{bottom:339.426667pt;}
.y109{bottom:341.986667pt;}
.y74{bottom:343.906667pt;}
.y11{bottom:344.066667pt;}
.y1c3{bottom:345.346667pt;}
.y10e{bottom:348.226667pt;}
.y8d{bottom:349.986667pt;}
.y2b{bottom:352.706667pt;}
.y1b6{bottom:353.826667pt;}
.y4d{bottom:354.306667pt;}
.y11c{bottom:354.466667pt;}
.y18d{bottom:357.026667pt;}
.y102{bottom:357.986667pt;}
.yea{bottom:358.946667pt;}
.y1a5{bottom:359.586667pt;}
.y128{bottom:360.706667pt;}
.ya1{bottom:363.266667pt;}
.ye0{bottom:365.026667pt;}
.y13d{bottom:365.186667pt;}
.y17e{bottom:367.106667pt;}
.yc1{bottom:369.506667pt;}
.y14e{bottom:375.906667pt;}
.y8c{bottom:377.506667pt;}
.y16a{bottom:377.666667pt;}
.y4c{bottom:379.426667pt;}
.y2a{bottom:380.226667pt;}
.y73{bottom:382.146667pt;}
.y10{bottom:382.306667pt;}
.y1c2{bottom:383.746667pt;}
.y18c{bottom:384.706667pt;}
.y101{bottom:385.506667pt;}
.y10d{bottom:386.466667pt;}
.y1a4{bottom:387.106667pt;}
.y127{bottom:388.226667pt;}
.yaa{bottom:390.946667pt;}
.y1b5{bottom:392.066667pt;}
.y11b{bottom:392.706667pt;}
.yc0{bottom:397.186667pt;}
.y176{bottom:399.106667pt;}
.ya0{bottom:401.506667pt;}
.ydf{bottom:403.266667pt;}
.y13c{bottom:403.426667pt;}
.y4b{bottom:404.386667pt;}
.y8b{bottom:405.186667pt;}
.y169{bottom:405.346667pt;}
.y29{bottom:407.906667pt;}
.y1c1{bottom:411.266667pt;}
.y18b{bottom:412.226667pt;}
.y100{bottom:413.186667pt;}
.y14d{bottom:414.146667pt;}
.y1a3{bottom:414.786667pt;}
.y126{bottom:415.906667pt;}
.y66{bottom:418.466667pt;}
.y1b4{bottom:419.586667pt;}
.y72{bottom:420.386667pt;}
.yf{bottom:420.546667pt;}
.ybf{bottom:424.706667pt;}
.y9f{bottom:429.186667pt;}
.y4a{bottom:429.506667pt;}
.yde{bottom:430.786667pt;}
.y11a{bottom:431.106667pt;}
.y28{bottom:435.426667pt;}
.y175{bottom:437.346667pt;}
.y1c0{bottom:438.306667pt;}
.y18a{bottom:439.906667pt;}
.y199{bottom:441.666667pt;}
.y8a{bottom:443.426667pt;}
.y168{bottom:443.586667pt;}
.y65{bottom:446.146667pt;}
.y1b3{bottom:447.266667pt;}
.yff{bottom:451.426667pt;}
.y10c{bottom:452.386667pt;}
.y1a2{bottom:453.026667pt;}
.y159{bottom:454.146667pt;}
.y49{bottom:454.626667pt;}
.y9e{bottom:456.706667pt;}
.ydd{bottom:458.466667pt;}
.y71{bottom:458.626667pt;}
.ye{bottom:458.786667pt;}
.y27{bottom:463.106667pt;}
.y174{bottom:464.866667pt;}
.y189{bottom:467.426667pt;}
.y144{bottom:469.346667pt;}
.y89{bottom:471.106667pt;}
.y64{bottom:473.666667pt;}
.y1b2{bottom:474.786667pt;}
.yfe{bottom:479.106667pt;}
.y48{bottom:479.586667pt;}
.y198{bottom:479.906667pt;}
.y1a1{bottom:480.546667pt;}
.y125{bottom:481.666667pt;}
.y17d{bottom:481.826667pt;}
.y9d{bottom:484.386667pt;}
.y13b{bottom:486.146667pt;}
.y26{bottom:490.626667pt;}
.y188{bottom:495.106667pt;}
.ydc{bottom:496.706667pt;}
.y70{bottom:496.866667pt;}
.yd{bottom:497.026667pt;}
.y88{bottom:498.626667pt;}
.y63{bottom:501.346667pt;}
.y1bf{bottom:501.986667pt;}
.y1b1{bottom:502.466667pt;}
.y173{bottom:503.106667pt;}
.y47{bottom:504.706667pt;}
.yfd{bottom:506.626667pt;}
.y143{bottom:507.586667pt;}
.y1a0{bottom:507.746667pt;}
.y124{bottom:509.346667pt;}
.y9c{bottom:511.906667pt;}
.y25{bottom:518.146667pt;}
.y17c{bottom:520.066667pt;}
.y187{bottom:522.626667pt;}
.ydb{bottom:524.226667pt;}
.y13a{bottom:524.546667pt;}
.y87{bottom:526.146667pt;}
.y62{bottom:528.866667pt;}
.y46{bottom:529.826667pt;}
.y1b0{bottom:529.986667pt;}
.yfc{bottom:534.146667pt;}
.y6f{bottom:535.106667pt;}
.yc{bottom:535.426667pt;}
.y123{bottom:536.893333pt;}
.y9b{bottom:539.613333pt;}
.y172{bottom:541.373333pt;}
.ybe{bottom:545.853333pt;}
.y167{bottom:547.773333pt;}
.y186{bottom:550.173333pt;}
.yda{bottom:551.933333pt;}
.y139{bottom:552.093333pt;}
.y45{bottom:554.813333pt;}
.y24{bottom:556.573333pt;}
.y1af{bottom:557.693333pt;}
.y17b{bottom:558.333333pt;}
.y19f{bottom:560.573333pt;}
.yfb{bottom:561.853333pt;}
.y14f{bottom:562.813333pt;}
.y86{bottom:564.573333pt;}
.y61{bottom:567.133333pt;}
.y6e{bottom:573.373333pt;}
.yb{bottom:573.693333pt;}
.y158{bottom:575.133333pt;}
.y9a{bottom:577.853333pt;}
.y138{bottom:579.773333pt;}
.y44{bottom:579.933333pt;}
.ybd{bottom:584.093333pt;}
.y166{bottom:586.013333pt;}
.yd9{bottom:590.173333pt;}
.y85{bottom:592.093333pt;}
.y23{bottom:594.813333pt;}
.y1ae{bottom:595.453333pt;}
.y17a{bottom:596.573333pt;}
.y19e{bottom:597.693333pt;}
.yfa{bottom:600.093333pt;}
.y119{bottom:601.053333pt;}
.y157{bottom:602.813333pt;}
.y43{bottom:604.893333pt;}
.y99{bottom:605.373333pt;}
.y137{bottom:607.293333pt;}
.y6d{bottom:611.773333pt;}
.ya{bottom:611.933333pt;}
.yd8{bottom:617.853333pt;}
.y171{bottom:618.013333pt;}
.y84{bottom:619.773333pt;}
.y60{bottom:622.333333pt;}
.y165{bottom:624.253333pt;}
.y19d{bottom:624.733333pt;}
.yf9{bottom:627.773333pt;}
.y14c{bottom:628.573333pt;}
.y42{bottom:630.013333pt;}
.y156{bottom:630.333333pt;}
.y22{bottom:633.053333pt;}
.y179{bottom:634.973333pt;}
.ybc{bottom:639.293333pt;}
.y136{bottom:645.533333pt;}
.y83{bottom:647.293333pt;}
.y6c{bottom:650.013333pt;}
.y9{bottom:650.173333pt;}
.y19c{bottom:651.773333pt;}
.y41{bottom:655.133333pt;}
.yf8{bottom:655.293333pt;}
.yd7{bottom:656.093333pt;}
.y170{bottom:656.253333pt;}
.y155{bottom:658.013333pt;}
.y21{bottom:660.573333pt;}
.y164{bottom:662.493333pt;}
.ybb{bottom:666.973333pt;}
.yb7{bottom:671.293333pt;}
.y135{bottom:673.213333pt;}
.yae{bottom:677.533333pt;}
.y19b{bottom:678.173333pt;}
.y40{bottom:680.093333pt;}
.y82{bottom:685.533333pt;}
.y5f{bottom:688.253333pt;}
.y163{bottom:690.173333pt;}
.yf7{bottom:693.533333pt;}
.yd6{bottom:694.333333pt;}
.y118{bottom:694.493333pt;}
.y8{bottom:694.653333pt;}
.y20{bottom:698.973333pt;}
.y3f{bottom:705.213333pt;}
.y134{bottom:711.453333pt;}
.y81{bottom:713.213333pt;}
.y5e{bottom:715.773333pt;}
.yf6{bottom:721.213333pt;}
.yd5{bottom:721.853333pt;}
.y14b{bottom:722.173333pt;}
.y154{bottom:723.773333pt;}
.y1f{bottom:726.493333pt;}
.y162{bottom:728.413333pt;}
.y3e{bottom:730.333333pt;}
.yba{bottom:732.733333pt;}
.y133{bottom:738.973333pt;}
.y80{bottom:740.733333pt;}
.y7{bottom:742.493333pt;}
.y5d{bottom:743.453333pt;}
.yf5{bottom:748.733333pt;}
.yd4{bottom:749.373333pt;}
.y14a{bottom:749.693333pt;}
.y153{bottom:751.453333pt;}
.y1e{bottom:754.173333pt;}
.y3d{bottom:755.293333pt;}
.yb9{bottom:760.413333pt;}
.y161{bottom:766.653333pt;}
.y7f{bottom:768.413333pt;}
.y5c{bottom:770.973333pt;}
.y6{bottom:774.853333pt;}
.yf4{bottom:776.453333pt;}
.y132{bottom:777.413333pt;}
.yd3{bottom:778.213333pt;}
.y152{bottom:779.013333pt;}
.y3c{bottom:780.453333pt;}
.y1d{bottom:781.733333pt;}
.y117{bottom:787.973333pt;}
.yad{bottom:798.693333pt;}
.y131{bottom:804.933333pt;}
.y3b{bottom:805.573333pt;}
.yd2{bottom:805.893333pt;}
.y7e{bottom:806.693333pt;}
.y1c{bottom:809.413333pt;}
.yf3{bottom:814.693333pt;}
.y149{bottom:815.653333pt;}
.y98{bottom:819.973333pt;}
.y5{bottom:821.893333pt;}
.yac{bottom:826.213333pt;}
.y3a{bottom:830.533333pt;}
.yd1{bottom:833.413333pt;}
.y7d{bottom:834.213333pt;}
.y1b{bottom:836.933333pt;}
.yf2{bottom:842.213333pt;}
.y130{bottom:843.173333pt;}
.y97{bottom:847.653333pt;}
.yb8{bottom:853.893333pt;}
.y39{bottom:855.653333pt;}
.y7c{bottom:861.893333pt;}
.yd0{bottom:862.213333pt;}
.y4{bottom:863.173333pt;}
.y1a{bottom:864.453333pt;}
.yf1{bottom:869.893333pt;}
.y151{bottom:872.453333pt;}
.y96{bottom:875.173333pt;}
.y38{bottom:880.773333pt;}
.y116{bottom:881.413333pt;}
.ycf{bottom:889.733333pt;}
.y19{bottom:892.133333pt;}
.yf0{bottom:897.413333pt;}
.y7b{bottom:900.133333pt;}
.y5b{bottom:902.853333pt;}
.y37{bottom:905.733333pt;}
.y115{bottom:909.093333pt;}
.y3{bottom:915.333333pt;}
.yce{bottom:918.533333pt;}
.y18{bottom:919.653333pt;}
.yef{bottom:925.093333pt;}
.y7a{bottom:927.653333pt;}
.y5a{bottom:930.373333pt;}
.y36{bottom:930.853333pt;}
.ycd{bottom:946.053333pt;}
.y17{bottom:947.333333pt;}
.yee{bottom:952.613333pt;}
.y79{bottom:955.333333pt;}
.y35{bottom:955.973333pt;}
.y59{bottom:958.053333pt;}
.y2{bottom:967.333333pt;}
.y16{bottom:974.853333pt;}
.y34{bottom:980.933333pt;}
.y78{bottom:982.853333pt;}
.y58{bottom:985.573333pt;}
.y33{bottom:1010.533333pt;}
.y57{bottom:1013.120000pt;}
.y1{bottom:1013.280000pt;}
.h8{height:57.375000pt;}
.hc{height:60.270000pt;}
.hb{height:60.300000pt;}
.h7{height:62.781250pt;}
.h2{height:62.812500pt;}
.h6{height:64.500000pt;}
.ha{height:65.781915pt;}
.h9{height:66.625000pt;}
.h4{height:73.490625pt;}
.h5{height:94.218750pt;}
.h3{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x10{left:128.191988pt;}
.x12{left:137.466655pt;}
.x11{left:142.746655pt;}
.x4{left:156.186655pt;}
.x14{left:160.666655pt;}
.x16{left:183.866655pt;}
.x15{left:207.866655pt;}
.x5{left:233.146655pt;}
.x6{left:243.866655pt;}
.x2{left:248.546655pt;}
.xa{left:277.506655pt;}
.xb{left:282.146655pt;}
.xc{left:289.986655pt;}
.xd{left:303.106655pt;}
.x9{left:311.106655pt;}
.x7{left:312.386655pt;}
.x8{left:324.066655pt;}
.xe{left:332.226655pt;}
.x13{left:388.866655pt;}
.xf{left:392.866655pt;}
.x3{left:396.866655pt;}
}




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