
    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_918335825dc67284dd047d42.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_d8295d79928ac190d0019675.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d573af8ded6263e9b4a0ed23.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e0b257993a368c472a72ef85.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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_f450e95ce329e97ed17748aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084000;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.018000px;}
.v1{vertical-align:19.800000px;}
.ls1d{letter-spacing:-1.020000px;}
.ls1e{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.840000px;}
.ls1b{letter-spacing:-0.816000px;}
.ls15{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.660000px;}
.ls13{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.588000px;}
.ls14{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.480000px;}
.ls2a{letter-spacing:-0.384000px;}
.ls2b{letter-spacing:-0.336000px;}
.ls10{letter-spacing:-0.300000px;}
.ls2d{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.240000px;}
.ls2e{letter-spacing:-0.192000px;}
.lsd{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.168000px;}
.ls11{letter-spacing:-0.120000px;}
.ls19{letter-spacing:-0.096000px;}
.ls18{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.060000px;}
.ls20{letter-spacing:-0.054000px;}
.ls17{letter-spacing:-0.048000px;}
.lsa{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.060000px;}
.ls22{letter-spacing:0.096000px;}
.ls1c{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.192000px;}
.ls12{letter-spacing:0.240000px;}
.ls21{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.300000px;}
.ls23{letter-spacing:0.336000px;}
.ls28{letter-spacing:0.384000px;}
.ls29{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.528000px;}
.ls5{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.612000px;}
.ls6{letter-spacing:0.624000px;}
.ls27{letter-spacing:0.672000px;}
.ls24{letter-spacing:0.720000px;}
.ls2c{letter-spacing:1.104000px;}
.ls25{letter-spacing:1.152000px;}
.ls2{letter-spacing:1.500000px;}
.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;}
}
.ws23{word-spacing:-15.000000px;}
.ws0{word-spacing:-14.160000px;}
.ws27{word-spacing:-13.500000px;}
.ws26{word-spacing:-13.446000px;}
.ws32{word-spacing:-13.104000px;}
.ws34{word-spacing:-12.624000px;}
.ws2f{word-spacing:-12.528000px;}
.ws30{word-spacing:-12.480000px;}
.ws7{word-spacing:-12.000000px;}
.ws2b{word-spacing:-11.952000px;}
.ws43{word-spacing:-11.712000px;}
.ws31{word-spacing:-11.616000px;}
.ws24{word-spacing:-11.250000px;}
.ws2{word-spacing:-10.332000px;}
.ws2c{word-spacing:-10.125000px;}
.ws1{word-spacing:-9.912000px;}
.wsa{word-spacing:-9.612000px;}
.ws6{word-spacing:-9.540000px;}
.ws2d{word-spacing:-9.450000px;}
.wsb{word-spacing:-9.000000px;}
.ws22{word-spacing:-8.160000px;}
.ws33{word-spacing:-1.776000px;}
.ws12{word-spacing:-0.720000px;}
.ws13{word-spacing:-0.660000px;}
.ws4{word-spacing:-0.600000px;}
.ws1e{word-spacing:-0.576000px;}
.wse{word-spacing:-0.540000px;}
.ws1f{word-spacing:-0.528000px;}
.ws10{word-spacing:-0.480000px;}
.ws3d{word-spacing:-0.432000px;}
.ws3{word-spacing:-0.420000px;}
.ws3a{word-spacing:-0.384000px;}
.ws40{word-spacing:-0.336000px;}
.ws1d{word-spacing:-0.288000px;}
.ws19{word-spacing:-0.180000px;}
.ws17{word-spacing:-0.120000px;}
.ws16{word-spacing:-0.060000px;}
.ws36{word-spacing:-0.048000px;}
.wsf{word-spacing:0.000000px;}
.wsc{word-spacing:0.060000px;}
.ws41{word-spacing:0.096000px;}
.ws2a{word-spacing:0.180000px;}
.ws37{word-spacing:0.192000px;}
.ws29{word-spacing:0.240000px;}
.ws3b{word-spacing:0.288000px;}
.ws3c{word-spacing:0.336000px;}
.ws20{word-spacing:0.624000px;}
.ws1c{word-spacing:0.672000px;}
.ws18{word-spacing:0.720000px;}
.ws3e{word-spacing:0.768000px;}
.ws38{word-spacing:0.912000px;}
.ws21{word-spacing:1.008000px;}
.ws1b{word-spacing:1.020000px;}
.ws39{word-spacing:1.104000px;}
.ws35{word-spacing:1.152000px;}
.wsd{word-spacing:1.200000px;}
.ws14{word-spacing:1.260000px;}
.ws1a{word-spacing:1.320000px;}
.ws11{word-spacing:1.440000px;}
.ws9{word-spacing:2.568000px;}
.ws8{word-spacing:2.700000px;}
.ws5{word-spacing:3.660000px;}
.ws15{word-spacing:4.260000px;}
.ws25{word-spacing:30.000000px;}
.ws28{word-spacing:36.000000px;}
.ws2e{word-spacing:41.280000px;}
.ws3f{word-spacing:42.000000px;}
.ws42{word-spacing:42.720000px;}
._b{margin-left:-10.149000px;}
._3{margin-left:-6.660000px;}
._2{margin-left:-4.740000px;}
._4{margin-left:-3.480000px;}
._1{margin-left:-2.460000px;}
._0{margin-left:-1.200000px;}
._6{width:1.248000px;}
._8{width:48.024000px;}
._5{width:52.944000px;}
._7{width:54.000000px;}
._a{width:98.700000px;}
._9{width:1157.436000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:36.000000px;}
.fs8{font-size:37.800000px;}
.fs7{font-size:40.500000px;}
.fs1{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1d5{bottom:52.096500px;}
.y1f{bottom:54.051000px;}
.y184{bottom:54.129000px;}
.y54{bottom:54.373500px;}
.y15a{bottom:54.717000px;}
.y1e9{bottom:54.894000px;}
.y1af{bottom:56.697000px;}
.y120{bottom:57.790500px;}
.yd0{bottom:57.912000px;}
.yfc{bottom:60.814500px;}
.y146{bottom:64.918500px;}
.yf4{bottom:65.553000px;}
.y1d4{bottom:67.851000px;}
.y1e{bottom:68.307000px;}
.y183{bottom:68.385000px;}
.y159{bottom:68.961000px;}
.y1e8{bottom:69.150000px;}
.y53{bottom:70.128000px;}
.y1ae{bottom:72.303000px;}
.y11f{bottom:73.545000px;}
.ycf{bottom:73.666500px;}
.yfb{bottom:76.569000px;}
.y82{bottom:80.551500px;}
.y145{bottom:80.673000px;}
.yf3{bottom:81.307500px;}
.y1d{bottom:82.551000px;}
.y182{bottom:82.641000px;}
.y158{bottom:83.217000px;}
.y1d3{bottom:83.605500px;}
.y52{bottom:85.882500px;}
.yae{bottom:86.190000px;}
.y1ad{bottom:87.909000px;}
.y11e{bottom:89.299500px;}
.yce{bottom:89.421000px;}
.yfa{bottom:92.323500px;}
.y81{bottom:96.306000px;}
.y144{bottom:96.427500px;}
.y1c{bottom:96.789000px;}
.y181{bottom:96.885000px;}
.yf2{bottom:97.062000px;}
.y157{bottom:97.461000px;}
.y1d2{bottom:99.360000px;}
.y51{bottom:101.637000px;}
.y1ac{bottom:103.515000px;}
.y11d{bottom:105.054000px;}
.ycd{bottom:105.175500px;}
.yf9{bottom:108.078000px;}
.yad{bottom:110.571000px;}
.y1b{bottom:111.051000px;}
.y156{bottom:111.705000px;}
.y80{bottom:112.060500px;}
.y143{bottom:112.182000px;}
.yf1{bottom:112.816500px;}
.y1d1{bottom:115.114500px;}
.y50{bottom:117.391500px;}
.ycc{bottom:120.930000px;}
.y1a{bottom:125.301000px;}
.y155{bottom:125.961000px;}
.yac{bottom:126.325500px;}
.y1ab{bottom:127.734000px;}
.y180{bottom:129.052500px;}
.y1d0{bottom:130.869000px;}
.yf8{bottom:132.459000px;}
.y4f{bottom:133.146000px;}
.y7f{bottom:136.441500px;}
.y11c{bottom:136.549500px;}
.ycb{bottom:136.684500px;}
.y19{bottom:139.545000px;}
.y154{bottom:140.205000px;}
.yab{bottom:142.080000px;}
.y1aa{bottom:143.340000px;}
.yf0{bottom:143.448000px;}
.y142{bottom:143.677500px;}
.y17f{bottom:144.807000px;}
.yf7{bottom:148.213500px;}
.y4e{bottom:148.900500px;}
.y7e{bottom:152.196000px;}
.y11b{bottom:152.304000px;}
.yca{bottom:152.439000px;}
.y153{bottom:154.449000px;}
.y1cf{bottom:155.250000px;}
.yaa{bottom:157.834500px;}
.y1a9{bottom:158.946000px;}
.yef{bottom:159.202500px;}
.y141{bottom:159.432000px;}
.y17e{bottom:160.561500px;}
.yf6{bottom:163.968000px;}
.y4d{bottom:164.655000px;}
.y7d{bottom:167.950500px;}
.y11a{bottom:168.058500px;}
.yc9{bottom:168.193500px;}
.y152{bottom:168.705000px;}
.ya9{bottom:173.589000px;}
.y1a8{bottom:174.552000px;}
.yee{bottom:174.957000px;}
.y140{bottom:175.186500px;}
.y17d{bottom:176.316000px;}
.y1ce{bottom:179.625000px;}
.y4c{bottom:180.409500px;}
.y151{bottom:182.949000px;}
.y7c{bottom:183.705000px;}
.y119{bottom:183.813000px;}
.y18{bottom:186.765000px;}
.yf5{bottom:188.349000px;}
.ya8{bottom:189.343500px;}
.yed{bottom:190.711500px;}
.y13f{bottom:190.941000px;}
.y1cd{bottom:195.375000px;}
.y4b{bottom:196.164000px;}
.y150{bottom:197.193000px;}
.y1a7{bottom:198.771000px;}
.yc8{bottom:198.825000px;}
.y7b{bottom:199.459500px;}
.y17c{bottom:200.697000px;}
.y17{bottom:204.015000px;}
.ya7{bottom:205.098000px;}
.y14f{bottom:211.437000px;}
.y4a{bottom:211.918500px;}
.y1a6{bottom:214.377000px;}
.yc7{bottom:214.579500px;}
.y7a{bottom:215.214000px;}
.y118{bottom:215.308500px;}
.y17b{bottom:216.451500px;}
.ya6{bottom:220.852500px;}
.y16{bottom:221.265000px;}
.yec{bottom:221.343000px;}
.y13e{bottom:222.436500px;}
.y14e{bottom:225.693000px;}
.y49{bottom:227.673000px;}
.y1a5{bottom:229.983000px;}
.yc6{bottom:230.334000px;}
.y79{bottom:230.968500px;}
.y117{bottom:231.063000px;}
.y17a{bottom:232.206000px;}
.ya5{bottom:236.607000px;}
.yeb{bottom:237.097500px;}
.y13d{bottom:238.191000px;}
.y15{bottom:238.515000px;}
.y14d{bottom:239.937000px;}
.y1cc{bottom:240.729000px;}
.y48{bottom:243.427500px;}
.y1a4{bottom:245.589000px;}
.yc5{bottom:246.088500px;}
.y78{bottom:246.723000px;}
.y116{bottom:246.817500px;}
.y179{bottom:247.960500px;}
.ya4{bottom:252.361500px;}
.yea{bottom:252.852000px;}
.y13c{bottom:253.945500px;}
.y14c{bottom:254.181000px;}
.y14{bottom:255.765000px;}
.y47{bottom:259.182000px;}
.y77{bottom:262.477500px;}
.y115{bottom:262.572000px;}
.y1cb{bottom:265.110000px;}
.ya3{bottom:268.116000px;}
.y14b{bottom:268.437000px;}
.ye9{bottom:268.606500px;}
.y13b{bottom:269.700000px;}
.y1a3{bottom:269.808000px;}
.y178{bottom:272.341500px;}
.y13{bottom:273.015000px;}
.y46{bottom:274.936500px;}
.yc4{bottom:276.720000px;}
.y76{bottom:278.232000px;}
.y1ca{bottom:280.864500px;}
.y14a{bottom:282.681000px;}
.ya2{bottom:283.870500px;}
.y1a2{bottom:285.414000px;}
.y177{bottom:288.096000px;}
.y12{bottom:290.265000px;}
.y45{bottom:290.691000px;}
.yc3{bottom:292.474500px;}
.y75{bottom:293.986500px;}
.y114{bottom:294.067500px;}
.y1c9{bottom:296.619000px;}
.y149{bottom:296.925000px;}
.ye8{bottom:299.238000px;}
.ya1{bottom:299.625000px;}
.y1a1{bottom:301.020000px;}
.y13a{bottom:301.195500px;}
.y176{bottom:303.850500px;}
.y44{bottom:306.445500px;}
.y11{bottom:307.515000px;}
.yc2{bottom:308.229000px;}
.y74{bottom:309.741000px;}
.y113{bottom:309.822000px;}
.y148{bottom:311.181000px;}
.y1c8{bottom:312.373500px;}
.ye7{bottom:314.992500px;}
.ya0{bottom:315.379500px;}
.y1a0{bottom:316.626000px;}
.y139{bottom:316.950000px;}
.y175{bottom:319.605000px;}
.y43{bottom:322.200000px;}
.yc1{bottom:323.983500px;}
.y10{bottom:324.765000px;}
.y147{bottom:325.425000px;}
.y73{bottom:325.495500px;}
.y112{bottom:325.576500px;}
.ye6{bottom:330.747000px;}
.y9f{bottom:331.134000px;}
.y138{bottom:332.704500px;}
.y1c7{bottom:336.754500px;}
.y42{bottom:337.954500px;}
.y19f{bottom:340.845000px;}
.y72{bottom:341.250000px;}
.y111{bottom:341.331000px;}
.yf{bottom:342.015000px;}
.y174{bottom:343.986000px;}
.ye5{bottom:346.501500px;}
.y9e{bottom:346.888500px;}
.y137{bottom:348.459000px;}
.y1c6{bottom:352.509000px;}
.y41{bottom:353.709000px;}
.yc0{bottom:354.615000px;}
.y19e{bottom:356.451000px;}
.y71{bottom:357.004500px;}
.ye{bottom:359.265000px;}
.y173{bottom:359.740500px;}
.y9d{bottom:362.643000px;}
.y1c5{bottom:368.263500px;}
.y40{bottom:369.463500px;}
.ybf{bottom:370.369500px;}
.y19d{bottom:372.057000px;}
.y70{bottom:372.759000px;}
.y110{bottom:372.826500px;}
.y172{bottom:375.495000px;}
.yd{bottom:376.515000px;}
.ye4{bottom:377.133000px;}
.y9c{bottom:378.397500px;}
.y136{bottom:379.954500px;}
.y1c4{bottom:384.018000px;}
.y3f{bottom:385.218000px;}
.ybe{bottom:386.124000px;}
.y19c{bottom:387.663000px;}
.y6f{bottom:388.513500px;}
.y10f{bottom:388.581000px;}
.y171{bottom:391.249500px;}
.ye3{bottom:392.887500px;}
.yc{bottom:393.765000px;}
.y9b{bottom:394.152000px;}
.y135{bottom:395.709000px;}
.y3e{bottom:400.972500px;}
.ybd{bottom:401.878500px;}
.y6e{bottom:404.268000px;}
.y10e{bottom:404.335500px;}
.y1c3{bottom:408.399000px;}
.ye2{bottom:408.642000px;}
.y9a{bottom:409.906500px;}
.yb{bottom:411.015000px;}
.y134{bottom:411.463500px;}
.y19b{bottom:411.882000px;}
.y170{bottom:415.630500px;}
.y3d{bottom:416.727000px;}
.y6d{bottom:420.022500px;}
.y10d{bottom:420.090000px;}
.y1c2{bottom:424.153500px;}
.ye1{bottom:424.396500px;}
.y99{bottom:425.661000px;}
.y133{bottom:427.218000px;}
.y19a{bottom:427.488000px;}
.ya{bottom:428.265000px;}
.y16f{bottom:431.385000px;}
.ybc{bottom:432.478500px;}
.y3c{bottom:432.481500px;}
.y1e7{bottom:432.885000px;}
.y6c{bottom:435.777000px;}
.y1c1{bottom:439.908000px;}
.y98{bottom:441.415500px;}
.y199{bottom:443.094000px;}
.y9{bottom:445.515000px;}
.ybb{bottom:448.233000px;}
.y3b{bottom:448.236000px;}
.y6b{bottom:451.531500px;}
.y10c{bottom:451.585500px;}
.ye0{bottom:455.041500px;}
.y1c0{bottom:455.662500px;}
.y16e{bottom:455.760000px;}
.y97{bottom:457.170000px;}
.y198{bottom:458.700000px;}
.y132{bottom:458.713500px;}
.y8{bottom:462.765000px;}
.y3a{bottom:463.990500px;}
.y1e6{bottom:464.430000px;}
.y6a{bottom:467.286000px;}
.y10b{bottom:467.340000px;}
.ydf{bottom:470.796000px;}
.yba{bottom:472.614000px;}
.y96{bottom:472.924500px;}
.y131{bottom:474.468000px;}
.y39{bottom:479.745000px;}
.y7{bottom:480.015000px;}
.y1bf{bottom:480.043500px;}
.y1e5{bottom:480.176250px;}
.y197{bottom:482.919000px;}
.y69{bottom:483.040500px;}
.y10a{bottom:483.094500px;}
.yde{bottom:486.550500px;}
.y95{bottom:488.679000px;}
.y16d{bottom:488.680500px;}
.y130{bottom:490.222500px;}
.y1be{bottom:495.798000px;}
.y1e4{bottom:495.922500px;}
.y6{bottom:497.265000px;}
.y196{bottom:498.525000px;}
.y68{bottom:498.795000px;}
.y109{bottom:498.849000px;}
.ydd{bottom:502.305000px;}
.y38{bottom:504.120000px;}
.y94{bottom:504.433500px;}
.yb9{bottom:505.608000px;}
.y12f{bottom:505.977000px;}
.y1bd{bottom:511.552500px;}
.y1e3{bottom:511.668750px;}
.y16c{bottom:513.061500px;}
.y195{bottom:514.131000px;}
.y5{bottom:514.515000px;}
.y67{bottom:514.549500px;}
.y93{bottom:520.188000px;}
.yb8{bottom:521.362500px;}
.y37{bottom:521.370000px;}
.y1bc{bottom:527.307000px;}
.y1e2{bottom:527.415000px;}
.y16b{bottom:528.816000px;}
.y194{bottom:529.737000px;}
.y66{bottom:530.304000px;}
.y108{bottom:530.344500px;}
.y4{bottom:531.765000px;}
.ydc{bottom:532.936500px;}
.y92{bottom:535.942500px;}
.yb7{bottom:537.117000px;}
.y12e{bottom:537.472500px;}
.y1e1{bottom:543.161250px;}
.y16a{bottom:544.570500px;}
.y65{bottom:546.058500px;}
.y107{bottom:546.099000px;}
.ydb{bottom:548.691000px;}
.y3{bottom:549.015000px;}
.y1bb{bottom:551.688000px;}
.y91{bottom:551.697000px;}
.yb6{bottom:552.871500px;}
.y12d{bottom:553.227000px;}
.y193{bottom:553.956000px;}
.y36{bottom:557.734500px;}
.y1e0{bottom:558.907500px;}
.y169{bottom:560.325000px;}
.y64{bottom:561.813000px;}
.y106{bottom:561.853500px;}
.yda{bottom:564.445500px;}
.y2{bottom:566.265000px;}
.y1ba{bottom:567.442500px;}
.y90{bottom:567.451500px;}
.y12c{bottom:568.981500px;}
.y192{bottom:569.562000px;}
.y1df{bottom:574.653750px;}
.y168{bottom:576.079500px;}
.y63{bottom:577.567500px;}
.y105{bottom:577.608000px;}
.yd9{bottom:580.200000px;}
.y35{bottom:582.115500px;}
.y1b9{bottom:583.197000px;}
.y8f{bottom:583.206000px;}
.y1{bottom:583.515000px;}
.yb5{bottom:584.367000px;}
.y12b{bottom:584.736000px;}
.y191{bottom:585.168000px;}
.y1de{bottom:590.400000px;}
.y167{bottom:591.834000px;}
.y62{bottom:593.322000px;}
.y34{bottom:597.870000px;}
.y1b8{bottom:598.951500px;}
.y8e{bottom:598.960500px;}
.yb4{bottom:600.121500px;}
.y190{bottom:600.774000px;}
.y1dd{bottom:606.146250px;}
.y166{bottom:607.588500px;}
.y61{bottom:609.076500px;}
.y104{bottom:609.103500px;}
.yd8{bottom:610.831500px;}
.y8d{bottom:614.715000px;}
.yb3{bottom:615.876000px;}
.y12a{bottom:616.231500px;}
.y1dc{bottom:621.892500px;}
.y33{bottom:622.245000px;}
.y1b7{bottom:623.332500px;}
.y165{bottom:623.343000px;}
.y27{bottom:623.670000px;}
.y60{bottom:624.831000px;}
.y103{bottom:624.858000px;}
.y18f{bottom:624.993000px;}
.yd7{bottom:626.586000px;}
.y8c{bottom:630.469500px;}
.yb2{bottom:631.630500px;}
.y129{bottom:631.986000px;}
.y1db{bottom:637.638750px;}
.y1b6{bottom:639.087000px;}
.y164{bottom:639.097500px;}
.y5f{bottom:640.585500px;}
.y18e{bottom:640.599000px;}
.y102{bottom:640.612500px;}
.yd6{bottom:642.340500px;}
.y8b{bottom:646.224000px;}
.y128{bottom:647.740500px;}
.y1da{bottom:653.385000px;}
.y1b5{bottom:654.841500px;}
.y163{bottom:654.852000px;}
.y18d{bottom:656.205000px;}
.y5e{bottom:656.340000px;}
.y101{bottom:656.367000px;}
.yd5{bottom:658.095000px;}
.y32{bottom:658.635000px;}
.y8a{bottom:661.978500px;}
.yb1{bottom:663.126000px;}
.y127{bottom:663.495000px;}
.y1b4{bottom:670.596000px;}
.y162{bottom:670.606500px;}
.y18c{bottom:671.811000px;}
.y5d{bottom:672.094500px;}
.y31{bottom:675.885000px;}
.y89{bottom:677.733000px;}
.yb0{bottom:678.880500px;}
.y1d9{bottom:684.885000px;}
.y161{bottom:686.361000px;}
.y5c{bottom:687.849000px;}
.y100{bottom:687.862500px;}
.yd4{bottom:688.726500px;}
.y30{bottom:693.135000px;}
.y88{bottom:693.487500px;}
.yaf{bottom:694.635000px;}
.y26{bottom:694.833000px;}
.y1b3{bottom:694.977000px;}
.y126{bottom:694.990500px;}
.y18b{bottom:696.030000px;}
.y160{bottom:702.115500px;}
.y5b{bottom:703.603500px;}
.yff{bottom:703.617000px;}
.yd3{bottom:704.481000px;}
.y25{bottom:709.089000px;}
.y87{bottom:709.242000px;}
.y2f{bottom:710.385000px;}
.y1b2{bottom:710.731500px;}
.y125{bottom:710.745000px;}
.y18a{bottom:711.636000px;}
.y15f{bottom:717.870000px;}
.y1d8{bottom:717.885000px;}
.y5a{bottom:719.358000px;}
.yfe{bottom:719.371500px;}
.yd2{bottom:720.235500px;}
.y24{bottom:723.345000px;}
.y86{bottom:724.996500px;}
.y1b1{bottom:726.486000px;}
.y124{bottom:726.499500px;}
.y189{bottom:727.242000px;}
.y2e{bottom:727.635000px;}
.y59{bottom:735.112500px;}
.yfd{bottom:735.126000px;}
.yd1{bottom:735.990000px;}
.y85{bottom:740.751000px;}
.y23{bottom:741.345000px;}
.y1b0{bottom:742.240500px;}
.y15e{bottom:742.251000px;}
.y123{bottom:742.254000px;}
.y188{bottom:742.848000px;}
.y2d{bottom:744.885000px;}
.y58{bottom:750.867000px;}
.y1d7{bottom:750.880500px;}
.y84{bottom:756.505500px;}
.y15d{bottom:758.005500px;}
.y2c{bottom:762.135000px;}
.y57{bottom:766.621500px;}
.y1d6{bottom:766.635000px;}
.y187{bottom:767.067000px;}
.y83{bottom:772.260000px;}
.y122{bottom:773.749500px;}
.y15c{bottom:773.760000px;}
.y2b{bottom:779.385000px;}
.y56{bottom:782.376000px;}
.y186{bottom:782.673000px;}
.y22{bottom:786.345000px;}
.y121{bottom:789.504000px;}
.y2a{bottom:796.635000px;}
.y55{bottom:798.130500px;}
.y15b{bottom:798.135000px;}
.y185{bottom:798.279000px;}
.y21{bottom:810.345000px;}
.y29{bottom:813.885000px;}
.y20{bottom:861.345000px;}
.y28{bottom:924.000000px;}
.hf{height:43.401000px;}
.h9{height:47.085938px;}
.h4{height:47.109375px;}
.h5{height:47.133375px;}
.h6{height:48.375000px;}
.ha{height:52.971680px;}
.h8{height:52.998047px;}
.hb{height:53.124047px;}
.he{height:54.936633px;}
.hc{height:55.116633px;}
.hd{height:55.236633px;}
.h3{height:58.857422px;}
.h1{height:58.886719px;}
.h2{height:61.020703px;}
.h7{height:94.218750px;}
.h0{height:894.000000px;}
.w0{width:637.500000px;}
.x0{left:0.000000px;}
.x6{left:6.000000px;}
.x1{left:76.200000px;}
.x7{left:77.415000px;}
.x2{left:93.450000px;}
.x8{left:94.665000px;}
.x3{left:98.700000px;}
.xa{left:99.915000px;}
.x13{left:103.602000px;}
.x14{left:104.691000px;}
.xb{left:106.950000px;}
.x9{left:108.151500px;}
.xe{left:111.210000px;}
.x10{left:112.410000px;}
.xc{left:114.465000px;}
.x16{left:115.680000px;}
.x17{left:120.750000px;}
.xf{left:124.683000px;}
.x11{left:125.910000px;}
.x15{left:136.410000px;}
.x12{left:186.432000px;}
.xd{left:188.701500px;}
.x5{left:402.870000px;}
.x4{left:413.880000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.016000pt;}
.v1{vertical-align:17.600000pt;}
.ls1d{letter-spacing:-0.906667pt;}
.ls1e{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.746667pt;}
.ls1b{letter-spacing:-0.725333pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.586667pt;}
.ls13{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.522667pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.426667pt;}
.ls2a{letter-spacing:-0.341333pt;}
.ls2b{letter-spacing:-0.298667pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls2d{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.213333pt;}
.ls2e{letter-spacing:-0.170667pt;}
.lsd{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.149333pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls19{letter-spacing:-0.085333pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.053333pt;}
.ls20{letter-spacing:-0.048000pt;}
.ls17{letter-spacing:-0.042667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.053333pt;}
.ls22{letter-spacing:0.085333pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.170667pt;}
.ls12{letter-spacing:0.213333pt;}
.ls21{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.266667pt;}
.ls23{letter-spacing:0.298667pt;}
.ls28{letter-spacing:0.341333pt;}
.ls29{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.469333pt;}
.ls5{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.544000pt;}
.ls6{letter-spacing:0.554667pt;}
.ls27{letter-spacing:0.597333pt;}
.ls24{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.981333pt;}
.ls25{letter-spacing:1.024000pt;}
.ls2{letter-spacing:1.333333pt;}
.ws23{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.586667pt;}
.ws27{word-spacing:-12.000000pt;}
.ws26{word-spacing:-11.952000pt;}
.ws32{word-spacing:-11.648000pt;}
.ws34{word-spacing:-11.221333pt;}
.ws2f{word-spacing:-11.136000pt;}
.ws30{word-spacing:-11.093333pt;}
.ws7{word-spacing:-10.666667pt;}
.ws2b{word-spacing:-10.624000pt;}
.ws43{word-spacing:-10.410667pt;}
.ws31{word-spacing:-10.325333pt;}
.ws24{word-spacing:-10.000000pt;}
.ws2{word-spacing:-9.184000pt;}
.ws2c{word-spacing:-9.000000pt;}
.ws1{word-spacing:-8.810667pt;}
.wsa{word-spacing:-8.544000pt;}
.ws6{word-spacing:-8.480000pt;}
.ws2d{word-spacing:-8.400000pt;}
.wsb{word-spacing:-8.000000pt;}
.ws22{word-spacing:-7.253333pt;}
.ws33{word-spacing:-1.578667pt;}
.ws12{word-spacing:-0.640000pt;}
.ws13{word-spacing:-0.586667pt;}
.ws4{word-spacing:-0.533333pt;}
.ws1e{word-spacing:-0.512000pt;}
.wse{word-spacing:-0.480000pt;}
.ws1f{word-spacing:-0.469333pt;}
.ws10{word-spacing:-0.426667pt;}
.ws3d{word-spacing:-0.384000pt;}
.ws3{word-spacing:-0.373333pt;}
.ws3a{word-spacing:-0.341333pt;}
.ws40{word-spacing:-0.298667pt;}
.ws1d{word-spacing:-0.256000pt;}
.ws19{word-spacing:-0.160000pt;}
.ws17{word-spacing:-0.106667pt;}
.ws16{word-spacing:-0.053333pt;}
.ws36{word-spacing:-0.042667pt;}
.wsf{word-spacing:0.000000pt;}
.wsc{word-spacing:0.053333pt;}
.ws41{word-spacing:0.085333pt;}
.ws2a{word-spacing:0.160000pt;}
.ws37{word-spacing:0.170667pt;}
.ws29{word-spacing:0.213333pt;}
.ws3b{word-spacing:0.256000pt;}
.ws3c{word-spacing:0.298667pt;}
.ws20{word-spacing:0.554667pt;}
.ws1c{word-spacing:0.597333pt;}
.ws18{word-spacing:0.640000pt;}
.ws3e{word-spacing:0.682667pt;}
.ws38{word-spacing:0.810667pt;}
.ws21{word-spacing:0.896000pt;}
.ws1b{word-spacing:0.906667pt;}
.ws39{word-spacing:0.981333pt;}
.ws35{word-spacing:1.024000pt;}
.wsd{word-spacing:1.066667pt;}
.ws14{word-spacing:1.120000pt;}
.ws1a{word-spacing:1.173333pt;}
.ws11{word-spacing:1.280000pt;}
.ws9{word-spacing:2.282667pt;}
.ws8{word-spacing:2.400000pt;}
.ws5{word-spacing:3.253333pt;}
.ws15{word-spacing:3.786667pt;}
.ws25{word-spacing:26.666667pt;}
.ws28{word-spacing:32.000000pt;}
.ws2e{word-spacing:36.693333pt;}
.ws3f{word-spacing:37.333333pt;}
.ws42{word-spacing:37.973333pt;}
._b{margin-left:-9.021333pt;}
._3{margin-left:-5.920000pt;}
._2{margin-left:-4.213333pt;}
._4{margin-left:-3.093333pt;}
._1{margin-left:-2.186667pt;}
._0{margin-left:-1.066667pt;}
._6{width:1.109333pt;}
._8{width:42.688000pt;}
._5{width:47.061333pt;}
._7{width:48.000000pt;}
._a{width:87.733333pt;}
._9{width:1028.832000pt;}
.fs3{font-size:32.000000pt;}
.fs8{font-size:33.600000pt;}
.fs7{font-size:36.000000pt;}
.fs1{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1d5{bottom:46.308000pt;}
.y1f{bottom:48.045333pt;}
.y184{bottom:48.114667pt;}
.y54{bottom:48.332000pt;}
.y15a{bottom:48.637333pt;}
.y1e9{bottom:48.794667pt;}
.y1af{bottom:50.397333pt;}
.y120{bottom:51.369333pt;}
.yd0{bottom:51.477333pt;}
.yfc{bottom:54.057333pt;}
.y146{bottom:57.705333pt;}
.yf4{bottom:58.269333pt;}
.y1d4{bottom:60.312000pt;}
.y1e{bottom:60.717333pt;}
.y183{bottom:60.786667pt;}
.y159{bottom:61.298667pt;}
.y1e8{bottom:61.466667pt;}
.y53{bottom:62.336000pt;}
.y1ae{bottom:64.269333pt;}
.y11f{bottom:65.373333pt;}
.ycf{bottom:65.481333pt;}
.yfb{bottom:68.061333pt;}
.y82{bottom:71.601333pt;}
.y145{bottom:71.709333pt;}
.yf3{bottom:72.273333pt;}
.y1d{bottom:73.378667pt;}
.y182{bottom:73.458667pt;}
.y158{bottom:73.970667pt;}
.y1d3{bottom:74.316000pt;}
.y52{bottom:76.340000pt;}
.yae{bottom:76.613333pt;}
.y1ad{bottom:78.141333pt;}
.y11e{bottom:79.377333pt;}
.yce{bottom:79.485333pt;}
.yfa{bottom:82.065333pt;}
.y81{bottom:85.605333pt;}
.y144{bottom:85.713333pt;}
.y1c{bottom:86.034667pt;}
.y181{bottom:86.120000pt;}
.yf2{bottom:86.277333pt;}
.y157{bottom:86.632000pt;}
.y1d2{bottom:88.320000pt;}
.y51{bottom:90.344000pt;}
.y1ac{bottom:92.013333pt;}
.y11d{bottom:93.381333pt;}
.ycd{bottom:93.489333pt;}
.yf9{bottom:96.069333pt;}
.yad{bottom:98.285333pt;}
.y1b{bottom:98.712000pt;}
.y156{bottom:99.293333pt;}
.y80{bottom:99.609333pt;}
.y143{bottom:99.717333pt;}
.yf1{bottom:100.281333pt;}
.y1d1{bottom:102.324000pt;}
.y50{bottom:104.348000pt;}
.ycc{bottom:107.493333pt;}
.y1a{bottom:111.378667pt;}
.y155{bottom:111.965333pt;}
.yac{bottom:112.289333pt;}
.y1ab{bottom:113.541333pt;}
.y180{bottom:114.713333pt;}
.y1d0{bottom:116.328000pt;}
.yf8{bottom:117.741333pt;}
.y4f{bottom:118.352000pt;}
.y7f{bottom:121.281333pt;}
.y11c{bottom:121.377333pt;}
.ycb{bottom:121.497333pt;}
.y19{bottom:124.040000pt;}
.y154{bottom:124.626667pt;}
.yab{bottom:126.293333pt;}
.y1aa{bottom:127.413333pt;}
.yf0{bottom:127.509333pt;}
.y142{bottom:127.713333pt;}
.y17f{bottom:128.717333pt;}
.yf7{bottom:131.745333pt;}
.y4e{bottom:132.356000pt;}
.y7e{bottom:135.285333pt;}
.y11b{bottom:135.381333pt;}
.yca{bottom:135.501333pt;}
.y153{bottom:137.288000pt;}
.y1cf{bottom:138.000000pt;}
.yaa{bottom:140.297333pt;}
.y1a9{bottom:141.285333pt;}
.yef{bottom:141.513333pt;}
.y141{bottom:141.717333pt;}
.y17e{bottom:142.721333pt;}
.yf6{bottom:145.749333pt;}
.y4d{bottom:146.360000pt;}
.y7d{bottom:149.289333pt;}
.y11a{bottom:149.385333pt;}
.yc9{bottom:149.505333pt;}
.y152{bottom:149.960000pt;}
.ya9{bottom:154.301333pt;}
.y1a8{bottom:155.157333pt;}
.yee{bottom:155.517333pt;}
.y140{bottom:155.721333pt;}
.y17d{bottom:156.725333pt;}
.y1ce{bottom:159.666667pt;}
.y4c{bottom:160.364000pt;}
.y151{bottom:162.621333pt;}
.y7c{bottom:163.293333pt;}
.y119{bottom:163.389333pt;}
.y18{bottom:166.013333pt;}
.yf5{bottom:167.421333pt;}
.ya8{bottom:168.305333pt;}
.yed{bottom:169.521333pt;}
.y13f{bottom:169.725333pt;}
.y1cd{bottom:173.666667pt;}
.y4b{bottom:174.368000pt;}
.y150{bottom:175.282667pt;}
.y1a7{bottom:176.685333pt;}
.yc8{bottom:176.733333pt;}
.y7b{bottom:177.297333pt;}
.y17c{bottom:178.397333pt;}
.y17{bottom:181.346667pt;}
.ya7{bottom:182.309333pt;}
.y14f{bottom:187.944000pt;}
.y4a{bottom:188.372000pt;}
.y1a6{bottom:190.557333pt;}
.yc7{bottom:190.737333pt;}
.y7a{bottom:191.301333pt;}
.y118{bottom:191.385333pt;}
.y17b{bottom:192.401333pt;}
.ya6{bottom:196.313333pt;}
.y16{bottom:196.680000pt;}
.yec{bottom:196.749333pt;}
.y13e{bottom:197.721333pt;}
.y14e{bottom:200.616000pt;}
.y49{bottom:202.376000pt;}
.y1a5{bottom:204.429333pt;}
.yc6{bottom:204.741333pt;}
.y79{bottom:205.305333pt;}
.y117{bottom:205.389333pt;}
.y17a{bottom:206.405333pt;}
.ya5{bottom:210.317333pt;}
.yeb{bottom:210.753333pt;}
.y13d{bottom:211.725333pt;}
.y15{bottom:212.013333pt;}
.y14d{bottom:213.277333pt;}
.y1cc{bottom:213.981333pt;}
.y48{bottom:216.380000pt;}
.y1a4{bottom:218.301333pt;}
.yc5{bottom:218.745333pt;}
.y78{bottom:219.309333pt;}
.y116{bottom:219.393333pt;}
.y179{bottom:220.409333pt;}
.ya4{bottom:224.321333pt;}
.yea{bottom:224.757333pt;}
.y13c{bottom:225.729333pt;}
.y14c{bottom:225.938667pt;}
.y14{bottom:227.346667pt;}
.y47{bottom:230.384000pt;}
.y77{bottom:233.313333pt;}
.y115{bottom:233.397333pt;}
.y1cb{bottom:235.653333pt;}
.ya3{bottom:238.325333pt;}
.y14b{bottom:238.610667pt;}
.ye9{bottom:238.761333pt;}
.y13b{bottom:239.733333pt;}
.y1a3{bottom:239.829333pt;}
.y178{bottom:242.081333pt;}
.y13{bottom:242.680000pt;}
.y46{bottom:244.388000pt;}
.yc4{bottom:245.973333pt;}
.y76{bottom:247.317333pt;}
.y1ca{bottom:249.657333pt;}
.y14a{bottom:251.272000pt;}
.ya2{bottom:252.329333pt;}
.y1a2{bottom:253.701333pt;}
.y177{bottom:256.085333pt;}
.y12{bottom:258.013333pt;}
.y45{bottom:258.392000pt;}
.yc3{bottom:259.977333pt;}
.y75{bottom:261.321333pt;}
.y114{bottom:261.393333pt;}
.y1c9{bottom:263.661333pt;}
.y149{bottom:263.933333pt;}
.ye8{bottom:265.989333pt;}
.ya1{bottom:266.333333pt;}
.y1a1{bottom:267.573333pt;}
.y13a{bottom:267.729333pt;}
.y176{bottom:270.089333pt;}
.y44{bottom:272.396000pt;}
.y11{bottom:273.346667pt;}
.yc2{bottom:273.981333pt;}
.y74{bottom:275.325333pt;}
.y113{bottom:275.397333pt;}
.y148{bottom:276.605333pt;}
.y1c8{bottom:277.665333pt;}
.ye7{bottom:279.993333pt;}
.ya0{bottom:280.337333pt;}
.y1a0{bottom:281.445333pt;}
.y139{bottom:281.733333pt;}
.y175{bottom:284.093333pt;}
.y43{bottom:286.400000pt;}
.yc1{bottom:287.985333pt;}
.y10{bottom:288.680000pt;}
.y147{bottom:289.266667pt;}
.y73{bottom:289.329333pt;}
.y112{bottom:289.401333pt;}
.ye6{bottom:293.997333pt;}
.y9f{bottom:294.341333pt;}
.y138{bottom:295.737333pt;}
.y1c7{bottom:299.337333pt;}
.y42{bottom:300.404000pt;}
.y19f{bottom:302.973333pt;}
.y72{bottom:303.333333pt;}
.y111{bottom:303.405333pt;}
.yf{bottom:304.013333pt;}
.y174{bottom:305.765333pt;}
.ye5{bottom:308.001333pt;}
.y9e{bottom:308.345333pt;}
.y137{bottom:309.741333pt;}
.y1c6{bottom:313.341333pt;}
.y41{bottom:314.408000pt;}
.yc0{bottom:315.213333pt;}
.y19e{bottom:316.845333pt;}
.y71{bottom:317.337333pt;}
.ye{bottom:319.346667pt;}
.y173{bottom:319.769333pt;}
.y9d{bottom:322.349333pt;}
.y1c5{bottom:327.345333pt;}
.y40{bottom:328.412000pt;}
.ybf{bottom:329.217333pt;}
.y19d{bottom:330.717333pt;}
.y70{bottom:331.341333pt;}
.y110{bottom:331.401333pt;}
.y172{bottom:333.773333pt;}
.yd{bottom:334.680000pt;}
.ye4{bottom:335.229333pt;}
.y9c{bottom:336.353333pt;}
.y136{bottom:337.737333pt;}
.y1c4{bottom:341.349333pt;}
.y3f{bottom:342.416000pt;}
.ybe{bottom:343.221333pt;}
.y19c{bottom:344.589333pt;}
.y6f{bottom:345.345333pt;}
.y10f{bottom:345.405333pt;}
.y171{bottom:347.777333pt;}
.ye3{bottom:349.233333pt;}
.yc{bottom:350.013333pt;}
.y9b{bottom:350.357333pt;}
.y135{bottom:351.741333pt;}
.y3e{bottom:356.420000pt;}
.ybd{bottom:357.225333pt;}
.y6e{bottom:359.349333pt;}
.y10e{bottom:359.409333pt;}
.y1c3{bottom:363.021333pt;}
.ye2{bottom:363.237333pt;}
.y9a{bottom:364.361333pt;}
.yb{bottom:365.346667pt;}
.y134{bottom:365.745333pt;}
.y19b{bottom:366.117333pt;}
.y170{bottom:369.449333pt;}
.y3d{bottom:370.424000pt;}
.y6d{bottom:373.353333pt;}
.y10d{bottom:373.413333pt;}
.y1c2{bottom:377.025333pt;}
.ye1{bottom:377.241333pt;}
.y99{bottom:378.365333pt;}
.y133{bottom:379.749333pt;}
.y19a{bottom:379.989333pt;}
.ya{bottom:380.680000pt;}
.y16f{bottom:383.453333pt;}
.ybc{bottom:384.425333pt;}
.y3c{bottom:384.428000pt;}
.y1e7{bottom:384.786667pt;}
.y6c{bottom:387.357333pt;}
.y1c1{bottom:391.029333pt;}
.y98{bottom:392.369333pt;}
.y199{bottom:393.861333pt;}
.y9{bottom:396.013333pt;}
.ybb{bottom:398.429333pt;}
.y3b{bottom:398.432000pt;}
.y6b{bottom:401.361333pt;}
.y10c{bottom:401.409333pt;}
.ye0{bottom:404.481333pt;}
.y1c0{bottom:405.033333pt;}
.y16e{bottom:405.120000pt;}
.y97{bottom:406.373333pt;}
.y198{bottom:407.733333pt;}
.y132{bottom:407.745333pt;}
.y8{bottom:411.346667pt;}
.y3a{bottom:412.436000pt;}
.y1e6{bottom:412.826667pt;}
.y6a{bottom:415.365333pt;}
.y10b{bottom:415.413333pt;}
.ydf{bottom:418.485333pt;}
.yba{bottom:420.101333pt;}
.y96{bottom:420.377333pt;}
.y131{bottom:421.749333pt;}
.y39{bottom:426.440000pt;}
.y7{bottom:426.680000pt;}
.y1bf{bottom:426.705333pt;}
.y1e5{bottom:426.823333pt;}
.y197{bottom:429.261333pt;}
.y69{bottom:429.369333pt;}
.y10a{bottom:429.417333pt;}
.yde{bottom:432.489333pt;}
.y95{bottom:434.381333pt;}
.y16d{bottom:434.382667pt;}
.y130{bottom:435.753333pt;}
.y1be{bottom:440.709333pt;}
.y1e4{bottom:440.820000pt;}
.y6{bottom:442.013333pt;}
.y196{bottom:443.133333pt;}
.y68{bottom:443.373333pt;}
.y109{bottom:443.421333pt;}
.ydd{bottom:446.493333pt;}
.y38{bottom:448.106667pt;}
.y94{bottom:448.385333pt;}
.yb9{bottom:449.429333pt;}
.y12f{bottom:449.757333pt;}
.y1bd{bottom:454.713333pt;}
.y1e3{bottom:454.816667pt;}
.y16c{bottom:456.054667pt;}
.y195{bottom:457.005333pt;}
.y5{bottom:457.346667pt;}
.y67{bottom:457.377333pt;}
.y93{bottom:462.389333pt;}
.yb8{bottom:463.433333pt;}
.y37{bottom:463.440000pt;}
.y1bc{bottom:468.717333pt;}
.y1e2{bottom:468.813333pt;}
.y16b{bottom:470.058667pt;}
.y194{bottom:470.877333pt;}
.y66{bottom:471.381333pt;}
.y108{bottom:471.417333pt;}
.y4{bottom:472.680000pt;}
.ydc{bottom:473.721333pt;}
.y92{bottom:476.393333pt;}
.yb7{bottom:477.437333pt;}
.y12e{bottom:477.753333pt;}
.y1e1{bottom:482.810000pt;}
.y16a{bottom:484.062667pt;}
.y65{bottom:485.385333pt;}
.y107{bottom:485.421333pt;}
.ydb{bottom:487.725333pt;}
.y3{bottom:488.013333pt;}
.y1bb{bottom:490.389333pt;}
.y91{bottom:490.397333pt;}
.yb6{bottom:491.441333pt;}
.y12d{bottom:491.757333pt;}
.y193{bottom:492.405333pt;}
.y36{bottom:495.764000pt;}
.y1e0{bottom:496.806667pt;}
.y169{bottom:498.066667pt;}
.y64{bottom:499.389333pt;}
.y106{bottom:499.425333pt;}
.yda{bottom:501.729333pt;}
.y2{bottom:503.346667pt;}
.y1ba{bottom:504.393333pt;}
.y90{bottom:504.401333pt;}
.y12c{bottom:505.761333pt;}
.y192{bottom:506.277333pt;}
.y1df{bottom:510.803333pt;}
.y168{bottom:512.070667pt;}
.y63{bottom:513.393333pt;}
.y105{bottom:513.429333pt;}
.yd9{bottom:515.733333pt;}
.y35{bottom:517.436000pt;}
.y1b9{bottom:518.397333pt;}
.y8f{bottom:518.405333pt;}
.y1{bottom:518.680000pt;}
.yb5{bottom:519.437333pt;}
.y12b{bottom:519.765333pt;}
.y191{bottom:520.149333pt;}
.y1de{bottom:524.800000pt;}
.y167{bottom:526.074667pt;}
.y62{bottom:527.397333pt;}
.y34{bottom:531.440000pt;}
.y1b8{bottom:532.401333pt;}
.y8e{bottom:532.409333pt;}
.yb4{bottom:533.441333pt;}
.y190{bottom:534.021333pt;}
.y1dd{bottom:538.796667pt;}
.y166{bottom:540.078667pt;}
.y61{bottom:541.401333pt;}
.y104{bottom:541.425333pt;}
.yd8{bottom:542.961333pt;}
.y8d{bottom:546.413333pt;}
.yb3{bottom:547.445333pt;}
.y12a{bottom:547.761333pt;}
.y1dc{bottom:552.793333pt;}
.y33{bottom:553.106667pt;}
.y1b7{bottom:554.073333pt;}
.y165{bottom:554.082667pt;}
.y27{bottom:554.373333pt;}
.y60{bottom:555.405333pt;}
.y103{bottom:555.429333pt;}
.y18f{bottom:555.549333pt;}
.yd7{bottom:556.965333pt;}
.y8c{bottom:560.417333pt;}
.yb2{bottom:561.449333pt;}
.y129{bottom:561.765333pt;}
.y1db{bottom:566.790000pt;}
.y1b6{bottom:568.077333pt;}
.y164{bottom:568.086667pt;}
.y5f{bottom:569.409333pt;}
.y18e{bottom:569.421333pt;}
.y102{bottom:569.433333pt;}
.yd6{bottom:570.969333pt;}
.y8b{bottom:574.421333pt;}
.y128{bottom:575.769333pt;}
.y1da{bottom:580.786667pt;}
.y1b5{bottom:582.081333pt;}
.y163{bottom:582.090667pt;}
.y18d{bottom:583.293333pt;}
.y5e{bottom:583.413333pt;}
.y101{bottom:583.437333pt;}
.yd5{bottom:584.973333pt;}
.y32{bottom:585.453333pt;}
.y8a{bottom:588.425333pt;}
.yb1{bottom:589.445333pt;}
.y127{bottom:589.773333pt;}
.y1b4{bottom:596.085333pt;}
.y162{bottom:596.094667pt;}
.y18c{bottom:597.165333pt;}
.y5d{bottom:597.417333pt;}
.y31{bottom:600.786667pt;}
.y89{bottom:602.429333pt;}
.yb0{bottom:603.449333pt;}
.y1d9{bottom:608.786667pt;}
.y161{bottom:610.098667pt;}
.y5c{bottom:611.421333pt;}
.y100{bottom:611.433333pt;}
.yd4{bottom:612.201333pt;}
.y30{bottom:616.120000pt;}
.y88{bottom:616.433333pt;}
.yaf{bottom:617.453333pt;}
.y26{bottom:617.629333pt;}
.y1b3{bottom:617.757333pt;}
.y126{bottom:617.769333pt;}
.y18b{bottom:618.693333pt;}
.y160{bottom:624.102667pt;}
.y5b{bottom:625.425333pt;}
.yff{bottom:625.437333pt;}
.yd3{bottom:626.205333pt;}
.y25{bottom:630.301333pt;}
.y87{bottom:630.437333pt;}
.y2f{bottom:631.453333pt;}
.y1b2{bottom:631.761333pt;}
.y125{bottom:631.773333pt;}
.y18a{bottom:632.565333pt;}
.y15f{bottom:638.106667pt;}
.y1d8{bottom:638.120000pt;}
.y5a{bottom:639.429333pt;}
.yfe{bottom:639.441333pt;}
.yd2{bottom:640.209333pt;}
.y24{bottom:642.973333pt;}
.y86{bottom:644.441333pt;}
.y1b1{bottom:645.765333pt;}
.y124{bottom:645.777333pt;}
.y189{bottom:646.437333pt;}
.y2e{bottom:646.786667pt;}
.y59{bottom:653.433333pt;}
.yfd{bottom:653.445333pt;}
.yd1{bottom:654.213333pt;}
.y85{bottom:658.445333pt;}
.y23{bottom:658.973333pt;}
.y1b0{bottom:659.769333pt;}
.y15e{bottom:659.778667pt;}
.y123{bottom:659.781333pt;}
.y188{bottom:660.309333pt;}
.y2d{bottom:662.120000pt;}
.y58{bottom:667.437333pt;}
.y1d7{bottom:667.449333pt;}
.y84{bottom:672.449333pt;}
.y15d{bottom:673.782667pt;}
.y2c{bottom:677.453333pt;}
.y57{bottom:681.441333pt;}
.y1d6{bottom:681.453333pt;}
.y187{bottom:681.837333pt;}
.y83{bottom:686.453333pt;}
.y122{bottom:687.777333pt;}
.y15c{bottom:687.786667pt;}
.y2b{bottom:692.786667pt;}
.y56{bottom:695.445333pt;}
.y186{bottom:695.709333pt;}
.y22{bottom:698.973333pt;}
.y121{bottom:701.781333pt;}
.y2a{bottom:708.120000pt;}
.y55{bottom:709.449333pt;}
.y15b{bottom:709.453333pt;}
.y185{bottom:709.581333pt;}
.y21{bottom:720.306667pt;}
.y29{bottom:723.453333pt;}
.y20{bottom:765.640000pt;}
.y28{bottom:821.333333pt;}
.hf{height:38.578667pt;}
.h9{height:41.854167pt;}
.h4{height:41.875000pt;}
.h5{height:41.896333pt;}
.h6{height:43.000000pt;}
.ha{height:47.085938pt;}
.h8{height:47.109375pt;}
.hb{height:47.221375pt;}
.he{height:48.832562pt;}
.hc{height:48.992563pt;}
.hd{height:49.099229pt;}
.h3{height:52.317708pt;}
.h1{height:52.343750pt;}
.h2{height:54.240625pt;}
.h7{height:83.750000pt;}
.h0{height:794.666667pt;}
.w0{width:566.666667pt;}
.x0{left:0.000000pt;}
.x6{left:5.333333pt;}
.x1{left:67.733333pt;}
.x7{left:68.813333pt;}
.x2{left:83.066667pt;}
.x8{left:84.146667pt;}
.x3{left:87.733333pt;}
.xa{left:88.813333pt;}
.x13{left:92.090667pt;}
.x14{left:93.058667pt;}
.xb{left:95.066667pt;}
.x9{left:96.134667pt;}
.xe{left:98.853333pt;}
.x10{left:99.920000pt;}
.xc{left:101.746667pt;}
.x16{left:102.826667pt;}
.x17{left:107.333333pt;}
.xf{left:110.829333pt;}
.x11{left:111.920000pt;}
.x15{left:121.253333pt;}
.x12{left:165.717333pt;}
.xd{left:167.734667pt;}
.x5{left:358.106667pt;}
.x4{left:367.893333pt;}
}




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