
    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_c6799bb073d6d985e3a2c005.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_e43c3d47d70ce09ab1836d0f.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_8a983908815894b94f0bc624.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_52c3519003dd6d79bf9e68f7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9e96d137b604ab4aa7cdd9ee.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_86f226ca355e7173aa3c09d3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dfdb583d7ccc8574b1bf2381.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bb7d7b3cbdf89f8d44487a3c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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;}
.lsf{letter-spacing:-3.192000px;}
.lsc{letter-spacing:-2.400000px;}
.ls17{letter-spacing:-1.584000px;}
.ls3{letter-spacing:-1.200000px;}
.lsa{letter-spacing:-0.816000px;}
.lse{letter-spacing:-0.768000px;}
.lsd{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.408000px;}
.ls5{letter-spacing:-0.384000px;}
.ls16{letter-spacing:-0.024000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.024000px;}
.lsb{letter-spacing:0.138000px;}
.ls9{letter-spacing:0.372000px;}
.ls2{letter-spacing:0.384000px;}
.ls7{letter-spacing:0.408000px;}
.ls1{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.492000px;}
.ls8{letter-spacing:0.600000px;}
.ls15{letter-spacing:1.200000px;}
.ls12{letter-spacing:1.224000px;}
.ls11{letter-spacing:64.164000px;}
.ls10{letter-spacing:194.550000px;}
.ls13{letter-spacing:205.050000px;}
.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;}
}
.ws12{word-spacing:-72.000000px;}
.wse{word-spacing:-19.224000px;}
.ws1{word-spacing:-18.432000px;}
.ws8{word-spacing:-18.408000px;}
.ws2{word-spacing:-18.384000px;}
.ws6{word-spacing:-18.024000px;}
.ws3{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.976000px;}
.ws5{word-spacing:-17.616000px;}
.ws9{word-spacing:-17.592000px;}
.wsb{word-spacing:-17.568000px;}
.wsc{word-spacing:-17.232000px;}
.wsf{word-spacing:-17.184000px;}
.ws4{word-spacing:-16.800000px;}
.ws11{word-spacing:-16.416000px;}
.wsa{word-spacing:-15.600000px;}
.ws7{word-spacing:-15.000000px;}
.wsd{word-spacing:-14.808000px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-3.954000px;}
._5{margin-left:-2.292000px;}
._1{margin-left:-1.224000px;}
._0{width:1.152000px;}
._2{width:2.700000px;}
._6{width:3.714000px;}
._4{width:194.550000px;}
._8{width:205.050000px;}
._3{width:846.330000px;}
.fc2{color:transparent;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.ya2{bottom:-38.700000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:1.500000px;}
.y12d{bottom:1.800000px;}
.ycd{bottom:6.000000px;}
.y96{bottom:7.200000px;}
.y82{bottom:8.400000px;}
.y1dc{bottom:8.700000px;}
.y118{bottom:10.500000px;}
.yb8{bottom:10.515000px;}
.yf3{bottom:11.400000px;}
.yf1{bottom:11.685000px;}
.yd0{bottom:11.700000px;}
.y104{bottom:11.730000px;}
.y81{bottom:12.900000px;}
.yd3{bottom:12.930000px;}
.y153{bottom:14.100000px;}
.y158{bottom:14.385000px;}
.y156{bottom:14.400000px;}
.y154{bottom:14.415000px;}
.y162{bottom:14.685000px;}
.y160{bottom:14.700000px;}
.y17c{bottom:14.715000px;}
.y174{bottom:14.730000px;}
.y16e{bottom:14.745000px;}
.y8a{bottom:15.315000px;}
.yb6{bottom:16.500000px;}
.y65{bottom:16.545000px;}
.ya0{bottom:16.800000px;}
.y9d{bottom:21.000000px;}
.y10d{bottom:21.292500px;}
.y75{bottom:21.300000px;}
.y150{bottom:21.315000px;}
.y12c{bottom:21.630000px;}
.y1bc{bottom:22.200000px;}
.y1da{bottom:22.215000px;}
.y1d5{bottom:22.500000px;}
.y1d1{bottom:23.100000px;}
.y9f{bottom:32.400000px;}
.yb5{bottom:36.300000px;}
.y14e{bottom:41.100000px;}
.y11a{bottom:41.137500px;}
.y12b{bottom:41.445000px;}
.y184{bottom:45.315000px;}
.y15f{bottom:45.600000px;}
.y185{bottom:45.607500px;}
.y119{bottom:52.500000px;}
.y2{bottom:57.300000px;}
.y1d4{bottom:60.607500px;}
.y1d0{bottom:60.892500px;}
.y1bb{bottom:60.900000px;}
.y1{bottom:77.400000px;}
.y1db{bottom:99.037500px;}
.y1d3{bottom:99.637500px;}
.y1d2{bottom:105.637500px;}
.y1cf{bottom:110.737500px;}
.y102{bottom:111.937500px;}
.y1a9{bottom:115.837500px;}
.y111{bottom:116.137500px;}
.y88{bottom:117.037500px;}
.y94{bottom:117.337500px;}
.y9b{bottom:118.537500px;}
.y80{bottom:120.337500px;}
.y7f{bottom:121.237500px;}
.y1c6{bottom:121.537500px;}
.y165{bottom:123.337500px;}
.y10a{bottom:126.637500px;}
.y10c{bottom:129.337500px;}
.y116{bottom:132.337500px;}
.y4f{bottom:133.237500px;}
.yb3{bottom:137.737500px;}
.ycb{bottom:139.537500px;}
.y1ae{bottom:141.937500px;}
.y101{bottom:143.137500px;}
.y73{bottom:146.137500px;}
.y110{bottom:147.337500px;}
.y40{bottom:148.237500px;}
.y9a{bottom:149.737500px;}
.y164{bottom:155.130000px;}
.y1b9{bottom:157.530000px;}
.y117{bottom:159.630000px;}
.y1c5{bottom:160.245000px;}
.y1ba{bottom:161.430000px;}
.y1a8{bottom:162.030000px;}
.y1c1{bottom:162.330000px;}
.y63{bottom:163.245000px;}
.y4e{bottom:164.430000px;}
.yb2{bottom:168.630000px;}
.yca{bottom:170.430000px;}
.y100{bottom:174.030000px;}
.y14c{bottom:174.330000px;}
.y19f{bottom:176.430000px;}
.y10f{bottom:178.245000px;}
.y87{bottom:179.130000px;}
.y3f{bottom:179.430000px;}
.y1ad{bottom:183.930000px;}
.y163{bottom:186.930000px;}
.y183{bottom:189.630000px;}
.yb7{bottom:191.430000px;}
.y9c{bottom:192.030000px;}
.y129{bottom:192.330000px;}
.y62{bottom:194.445000px;}
.y1c4{bottom:195.030000px;}
.y115{bottom:195.330000px;}
.y99{bottom:195.630000px;}
.yb1{bottom:199.830000px;}
.yc9{bottom:201.630000px;}
.y74{bottom:203.730000px;}
.yff{bottom:205.245000px;}
.y19e{bottom:207.330000px;}
.y1a7{bottom:207.945000px;}
.y1c0{bottom:208.245000px;}
.y10e{bottom:209.445000px;}
.y3e{bottom:210.330000px;}
.y141{bottom:213.330000px;}
.y161{bottom:218.445000px;}
.ye8{bottom:222.945000px;}
.y128{bottom:223.245000px;}
.y93{bottom:225.330000px;}
.yb0{bottom:230.745000px;}
.yc8{bottom:232.530000px;}
.y1b4{bottom:235.245000px;}
.yfe{bottom:236.130000px;}
.y14b{bottom:236.445000px;}
.y98{bottom:237.630000px;}
.y19d{bottom:238.245000px;}
.y1a6{bottom:239.445000px;}
.y61{bottom:240.330000px;}
.y3d{bottom:241.245000px;}
.y1be{bottom:243.330000px;}
.y140{bottom:244.245000px;}
.y1d8{bottom:248.175000px;}
.yef{bottom:248.775000px;}
.y1bf{bottom:249.075000px;}
.y15e{bottom:250.275000px;}
.y182{bottom:252.375000px;}
.ye7{bottom:254.175000px;}
.y127{bottom:254.475000px;}
.y92{bottom:256.275000px;}
.yaf{bottom:261.975000px;}
.ycc{bottom:263.175000px;}
.yc7{bottom:263.775000px;}
.y14a{bottom:267.075000px;}
.yfd{bottom:267.375000px;}
.y19c{bottom:269.475000px;}
.y1a5{bottom:270.375000px;}
.y60{bottom:271.275000px;}
.y3c{bottom:272.475000px;}
.y13f{bottom:275.475000px;}
.y1b3{bottom:277.275000px;}
.yee{bottom:279.975000px;}
.ye6{bottom:285.075000px;}
.y126{bottom:285.375000px;}
.y91{bottom:287.475000px;}
.yae{bottom:292.875000px;}
.yc6{bottom:294.675000px;}
.yfc{bottom:298.275000px;}
.y19b{bottom:300.375000px;}
.y1a4{bottom:301.275000px;}
.y5f{bottom:302.475000px;}
.y3b{bottom:303.375000px;}
.y13e{bottom:306.375000px;}
.y1b7{bottom:309.075000px;}
.yed{bottom:310.875000px;}
.y1d6{bottom:311.175000px;}
.y15d{bottom:313.275000px;}
.y181{bottom:315.075000px;}
.ye5{bottom:316.275000px;}
.y125{bottom:316.575000px;}
.y90{bottom:318.375000px;}
.y1d7{bottom:320.475000px;}
.yad{bottom:324.075000px;}
.yc5{bottom:325.875000px;}
.y149{bottom:329.175000px;}
.y19a{bottom:331.575000px;}
.y1a3{bottom:332.475000px;}
.y5e{bottom:333.375000px;}
.y3a{bottom:334.575000px;}
.y13d{bottom:337.575000px;}
.yec{bottom:342.075000px;}
.yfb{bottom:344.475000px;}
.y15c{bottom:345.075000px;}
.ye4{bottom:347.175000px;}
.y124{bottom:347.475000px;}
.y86{bottom:349.275000px;}
.y8f{bottom:349.575000px;}
.yac{bottom:354.975000px;}
.yc4{bottom:356.775000px;}
.y199{bottom:362.475000px;}
.y1a2{bottom:363.375000px;}
.y5d{bottom:364.575000px;}
.y39{bottom:365.475000px;}
.y13c{bottom:368.475000px;}
.yeb{bottom:372.975000px;}
.yfa{bottom:375.375000px;}
.y180{bottom:376.575000px;}
.y15b{bottom:376.875000px;}
.ye3{bottom:378.375000px;}
.y4d{bottom:380.475000px;}
.y148{bottom:381.375000px;}
.y97{bottom:385.275000px;}
.yab{bottom:386.175000px;}
.yc3{bottom:387.975000px;}
.y17f{bottom:393.675000px;}
.y1a1{bottom:394.575000px;}
.y85{bottom:395.175000px;}
.y22{bottom:395.475000px;}
.y38{bottom:396.675000px;}
.yd2{bottom:397.275000px;}
.y123{bottom:399.675000px;}
.yea{bottom:404.205000px;}
.yf9{bottom:406.620000px;}
.y15a{bottom:408.705000px;}
.y4c{bottom:411.705000px;}
.y14f{bottom:412.005000px;}
.yaa{bottom:417.120000px;}
.yc2{bottom:418.905000px;}
.y89{bottom:421.005000px;}
.y7e{bottom:421.320000px;}
.ye2{bottom:424.320000px;}
.y198{bottom:424.620000px;}
.y17e{bottom:425.505000px;}
.y5c{bottom:426.705000px;}
.y37{bottom:427.620000px;}
.y122{bottom:430.620000px;}
.y159{bottom:440.505000px;}
.y84{bottom:441.405000px;}
.y21{bottom:441.705000px;}
.y4b{bottom:442.620000px;}
.yf0{bottom:446.820000px;}
.ya9{bottom:448.320000px;}
.yc1{bottom:450.120000px;}
.y7d{bottom:452.505000px;}
.ye1{bottom:455.205000px;}
.y197{bottom:455.820000px;}
.y1a0{bottom:456.705000px;}
.y17d{bottom:457.320000px;}
.y8e{bottom:457.620000px;}
.y1d9{bottom:457.905000px;}
.y36{bottom:458.820000px;}
.y121{bottom:461.820000px;}
.y157{bottom:472.320000px;}
.y5b{bottom:472.620000px;}
.y109{bottom:472.905000px;}
.y4a{bottom:473.820000px;}
.ya8{bottom:479.205000px;}
.yc0{bottom:481.005000px;}
.y7c{bottom:483.405000px;}
.yf8{bottom:483.705000px;}
.ye0{bottom:486.405000px;}
.y196{bottom:486.705000px;}
.y20{bottom:487.620000px;}
.y8d{bottom:488.820000px;}
.y17b{bottom:489.105000px;}
.y35{bottom:489.705000px;}
.y1ce{bottom:492.120000px;}
.y120{bottom:492.705000px;}
.y5a{bottom:503.820000px;}
.y155{bottom:504.105000px;}
.y49{bottom:504.705000px;}
.ya7{bottom:510.405000px;}
.y7b{bottom:514.605000px;}
.ydf{bottom:517.320000px;}
.y195{bottom:517.905000px;}
.y1f{bottom:518.820000px;}
.y8c{bottom:519.705000px;}
.y17a{bottom:520.905000px;}
.y13b{bottom:523.605000px;}
.y95{bottom:524.505000px;}
.ybf{bottom:527.205000px;}
.y1cd{bottom:531.105000px;}
.y59{bottom:534.705000px;}
.y108{bottom:535.005000px;}
.y34{bottom:535.905000px;}
.ya6{bottom:541.320000px;}
.y11f{bottom:544.905000px;}
.y7a{bottom:545.505000px;}
.yf7{bottom:545.820000px;}
.yde{bottom:548.505000px;}
.y194{bottom:548.820000px;}
.y1e{bottom:549.705000px;}
.y8b{bottom:550.905000px;}
.y179{bottom:552.705000px;}
.y13a{bottom:554.820000px;}
.y64{bottom:558.105000px;}
.ycf{bottom:565.350000px;}
.y58{bottom:565.950000px;}
.y33{bottom:566.850000px;}
.y152{bottom:567.750000px;}
.y1cc{bottom:569.850000px;}
.y1ac{bottom:571.350000px;}
.y11e{bottom:575.850000px;}
.y79{bottom:576.750000px;}
.ya5{bottom:578.850000px;}
.ydd{bottom:579.450000px;}
.y193{bottom:580.050000px;}
.y1d{bottom:580.950000px;}
.y48{bottom:581.850000px;}
.y72{bottom:583.050000px;}
.y178{bottom:584.550000px;}
.y139{bottom:585.750000px;}
.y1b6{bottom:587.550000px;}
.ybe{bottom:589.350000px;}
.yb4{bottom:593.250000px;}
.y57{bottom:596.850000px;}
.y107{bottom:597.150000px;}
.y32{bottom:598.050000px;}
.ya4{bottom:605.250000px;}
.y11d{bottom:607.050000px;}
.y78{bottom:607.650000px;}
.yf6{bottom:607.950000px;}
.y1cb{bottom:608.850000px;}
.y192{bottom:610.950000px;}
.y1c{bottom:611.850000px;}
.y47{bottom:613.050000px;}
.y71{bottom:613.950000px;}
.y177{bottom:616.350000px;}
.y138{bottom:616.950000px;}
.y1ab{bottom:617.250000px;}
.y1b5{bottom:618.450000px;}
.ybd{bottom:620.250000px;}
.ydc{bottom:625.650000px;}
.y56{bottom:628.050000px;}
.y151{bottom:628.650000px;}
.y31{bottom:628.950000px;}
.y11c{bottom:637.950000px;}
.y77{bottom:638.850000px;}
.y1bd{bottom:641.250000px;}
.y191{bottom:642.150000px;}
.y1b{bottom:643.050000px;}
.y46{bottom:643.950000px;}
.y70{bottom:645.150000px;}
.y1c3{bottom:645.450000px;}
.y1ca{bottom:647.550000px;}
.y137{bottom:647.850000px;}
.y176{bottom:648.150000px;}
.ybc{bottom:651.450000px;}
.ydb{bottom:656.550000px;}
.y55{bottom:658.950000px;}
.y106{bottom:659.250000px;}
.y30{bottom:660.150000px;}
.y1aa{bottom:663.450000px;}
.y1b2{bottom:664.650000px;}
.y11b{bottom:669.150000px;}
.yf5{bottom:670.050000px;}
.y190{bottom:673.050000px;}
.y1a{bottom:673.950000px;}
.y147{bottom:674.850000px;}
.y45{bottom:675.150000px;}
.y6f{bottom:676.050000px;}
.y76{bottom:676.350000px;}
.y136{bottom:679.050000px;}
.y175{bottom:679.950000px;}
.ybb{bottom:682.350000px;}
.y1c9{bottom:686.250000px;}
.yda{bottom:687.750000px;}
.y54{bottom:690.150000px;}
.y114{bottom:691.050000px;}
.y1c2{bottom:691.350000px;}
.y18f{bottom:704.250000px;}
.y19{bottom:705.150000px;}
.y2f{bottom:706.050000px;}
.y6e{bottom:707.250000px;}
.yf4{bottom:707.550000px;}
.y103{bottom:709.650000px;}
.y135{bottom:709.950000px;}
.y12a{bottom:710.250000px;}
.y1b1{bottom:710.550000px;}
.y173{bottom:711.750000px;}
.yba{bottom:713.550000px;}
.yd9{bottom:718.695000px;}
.y53{bottom:721.080000px;}
.y105{bottom:721.380000px;}
.y113{bottom:722.280000px;}
.y1c8{bottom:725.280000px;}
.y1b8{bottom:733.380000px;}
.y18e{bottom:735.195000px;}
.y18{bottom:736.080000px;}
.y146{bottom:736.980000px;}
.y2e{bottom:737.280000px;}
.y6d{bottom:738.195000px;}
.y172{bottom:743.595000px;}
.yce{bottom:745.380000px;}
.yd8{bottom:749.880000px;}
.yb9{bottom:751.080000px;}
.y52{bottom:752.280000px;}
.y112{bottom:753.195000px;}
.y1b0{bottom:756.780000px;}
.y134{bottom:762.195000px;}
.y1c7{bottom:763.980000px;}
.y18d{bottom:766.380000px;}
.y17{bottom:767.280000px;}
.y2d{bottom:768.195000px;}
.y6c{bottom:769.380000px;}
.yb{bottom:771.480000px;}
.y171{bottom:775.380000px;}
.y10b{bottom:779.895000px;}
.yd7{bottom:780.795000px;}
.y51{bottom:783.195000px;}
.y133{bottom:793.080000px;}
.y18c{bottom:797.295000px;}
.y16{bottom:798.195000px;}
.y1af{bottom:798.795000px;}
.y145{bottom:799.080000px;}
.y2c{bottom:799.380000px;}
.y6b{bottom:800.295000px;}
.y170{bottom:807.195000px;}
.ya3{bottom:809.295000px;}
.yd6{bottom:811.980000px;}
.y50{bottom:814.380000px;}
.ya{bottom:817.380000px;}
.y132{bottom:824.295000px;}
.y18b{bottom:828.480000px;}
.y15{bottom:829.380000px;}
.y2b{bottom:830.295000px;}
.y16f{bottom:838.995000px;}
.yd5{bottom:842.880000px;}
.y83{bottom:845.295000px;}
.y6a{bottom:846.480000px;}
.y131{bottom:855.195000px;}
.y18a{bottom:859.380000px;}
.y14{bottom:860.295000px;}
.y144{bottom:861.195000px;}
.y2a{bottom:861.480000px;}
.y9{bottom:863.580000px;}
.y16d{bottom:870.780000px;}
.yd1{bottom:876.525000px;}
.y69{bottom:877.425000px;}
.yd4{bottom:880.425000px;}
.yf2{bottom:883.425000px;}
.y130{bottom:886.425000px;}
.y13{bottom:891.525000px;}
.y29{bottom:892.425000px;}
.y16c{bottom:902.625000px;}
.ye9{bottom:903.525000px;}
.y189{bottom:905.325000px;}
.y44{bottom:907.425000px;}
.y68{bottom:908.625000px;}
.y8{bottom:909.525000px;}
.y12f{bottom:917.325000px;}
.y12{bottom:922.425000px;}
.y28{bottom:923.625000px;}
.y14d{bottom:925.425000px;}
.y16b{bottom:934.425000px;}
.y43{bottom:938.625000px;}
.y67{bottom:939.525000px;}
.y143{bottom:940.425000px;}
.y188{bottom:951.225000px;}
.y9e{bottom:951.825000px;}
.y11{bottom:953.625000px;}
.y7{bottom:955.425000px;}
.y142{bottom:958.125000px;}
.y12e{bottom:960.825000px;}
.y16a{bottom:966.225000px;}
.y27{bottom:969.525000px;}
.y10{bottom:984.525000px;}
.y66{bottom:985.425000px;}
.y187{bottom:997.725000px;}
.y26{bottom:1000.725000px;}
.y6{bottom:1001.325000px;}
.yf{bottom:1015.725000px;}
.y169{bottom:1029.255000px;}
.y25{bottom:1031.670000px;}
.y186{bottom:1043.670000px;}
.ye{bottom:1046.670000px;}
.y5{bottom:1047.570000px;}
.y168{bottom:1061.070000px;}
.y24{bottom:1062.855000px;}
.yd{bottom:1077.870000px;}
.y167{bottom:1092.870000px;}
.y4{bottom:1093.455000px;}
.y23{bottom:1093.755000px;}
.yc{bottom:1108.455000px;}
.y42{bottom:1108.755000px;}
.y166{bottom:1124.670000px;}
.y3{bottom:1139.655000px;}
.y41{bottom:1139.955000px;}
.h14{height:19.500000px;}
.hd{height:20.700000px;}
.hb{height:21.900000px;}
.h13{height:24.000000px;}
.h17{height:24.900000px;}
.h15{height:25.200000px;}
.h18{height:25.237500px;}
.ha{height:26.400000px;}
.h16{height:26.437500px;}
.hc{height:28.800000px;}
.h8{height:29.443359px;}
.h6{height:30.037500px;}
.h1f{height:30.900000px;}
.h20{height:30.937500px;}
.h24{height:31.200000px;}
.h22{height:31.237500px;}
.he{height:34.500000px;}
.h9{height:34.800000px;}
.h2a{height:38.700000px;}
.hf{height:44.400000px;}
.h2{height:45.729492px;}
.h12{height:49.800000px;}
.h10{height:52.971680px;}
.h11{height:52.998047px;}
.h1e{height:54.600000px;}
.h1b{height:54.637500px;}
.h1c{height:54.937500px;}
.h1d{height:58.857422px;}
.h7{height:58.886719px;}
.h25{height:61.837500px;}
.h21{height:62.100000px;}
.h23{height:62.137500px;}
.h19{height:64.546875px;}
.h3{height:70.628906px;}
.h4{height:70.664062px;}
.h5{height:72.562500px;}
.h1a{height:74.004654px;}
.h29{height:76.200000px;}
.h28{height:76.500000px;}
.h27{height:77.392500px;}
.h26{height:77.400000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w1f{width:84.300000px;}
.w1c{width:87.600000px;}
.w1e{width:95.137500px;}
.w1b{width:96.637500px;}
.w20{width:129.037500px;}
.w1d{width:129.337500px;}
.w4{width:167.730000px;}
.w7{width:214.875000px;}
.w19{width:217.575000px;}
.wb{width:226.575000px;}
.w16{width:229.275000px;}
.w22{width:236.775000px;}
.we{width:249.675000px;}
.wa{width:253.575000px;}
.w18{width:254.475000px;}
.w21{width:254.775000px;}
.w6{width:255.075000px;}
.wf{width:255.375000px;}
.w17{width:271.875000px;}
.w9{width:272.175000px;}
.w5{width:280.875000px;}
.w14{width:297.675000px;}
.w12{width:300.420000px;}
.w1a{width:337.020000px;}
.w2{width:341.505000px;}
.w8{width:346.620000px;}
.wc{width:357.405000px;}
.w10{width:360.105000px;}
.w3{width:389.820000px;}
.w15{width:394.905000px;}
.wd{width:436.005000px;}
.w13{width:637.995000px;}
.w11{width:639.195000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x45{left:7.800000px;}
.x11{left:10.785000px;}
.x4e{left:12.900000px;}
.x48{left:16.500000px;}
.x65{left:17.700000px;}
.x4b{left:21.000000px;}
.x18{left:22.800000px;}
.x51{left:27.000000px;}
.x5a{left:29.992500px;}
.x53{left:32.100000px;}
.x4d{left:34.800000px;}
.x63{left:37.485000px;}
.x49{left:39.300000px;}
.xc{left:41.092500px;}
.x47{left:44.130000px;}
.x55{left:46.530000px;}
.x4c{left:48.892500px;}
.x50{left:51.030000px;}
.x4a{left:52.792500px;}
.x54{left:55.530000px;}
.x2e{left:57.637500px;}
.x5c{left:60.037500px;}
.x4f{left:64.537500px;}
.x60{left:68.437500px;}
.x57{left:71.437500px;}
.x58{left:73.237500px;}
.x5e{left:77.737500px;}
.x59{left:85.837500px;}
.x5f{left:87.337500px;}
.x56{left:90.337500px;}
.x79{left:95.100000px;}
.x27{left:99.337500px;}
.x34{left:100.537500px;}
.x5d{left:105.337500px;}
.x5b{left:109.537500px;}
.x3d{left:112.837500px;}
.x66{left:114.637500px;}
.x41{left:120.037500px;}
.x14{left:121.245000px;}
.x2b{left:122.737500px;}
.x26{left:124.237500px;}
.x17{left:126.037500px;}
.x2{left:127.537500px;}
.xb{left:129.337500px;}
.x33{left:130.537500px;}
.x42{left:131.737500px;}
.x52{left:133.837500px;}
.x3b{left:154.530000px;}
.x8{left:180.675000px;}
.xe{left:192.075000px;}
.x28{left:206.475000px;}
.x6a{left:217.575000px;}
.x30{left:249.375000px;}
.x71{left:281.175000px;}
.x1e{left:282.375000px;}
.x5{left:307.905000px;}
.x70{left:310.905000px;}
.x72{left:317.820000px;}
.x6{left:327.120000px;}
.x73{left:331.620000px;}
.x7{left:343.320000px;}
.x16{left:352.320000px;}
.x69{left:354.120000px;}
.x22{left:367.905000px;}
.xd{left:376.020000px;}
.x2a{left:385.905000px;}
.x4{left:387.720000px;}
.x37{left:391.012500px;}
.x2d{left:398.505000px;}
.x67{left:401.820000px;}
.x15{left:405.405000px;}
.x1b{left:412.905000px;}
.x2f{left:417.450000px;}
.x21{left:421.050000px;}
.x36{left:426.750000px;}
.x38{left:436.050000px;}
.x29{left:439.050000px;}
.x32{left:444.450000px;}
.x3{left:446.550000px;}
.x2c{left:451.650000px;}
.x20{left:452.850000px;}
.x23{left:456.450000px;}
.x43{left:457.650000px;}
.x1a{left:466.050000px;}
.xa{left:484.050000px;}
.x3c{left:485.250000px;}
.x12{left:488.250000px;}
.x25{left:493.950000px;}
.x31{left:497.550000px;}
.x3e{left:498.750000px;}
.x3f{left:502.650000px;}
.x13{left:509.850000px;}
.x40{left:524.550000px;}
.x3a{left:532.350000px;}
.x9{left:537.150000px;}
.x24{left:547.095000px;}
.x62{left:553.395000px;}
.x44{left:554.895000px;}
.x75{left:560.595000px;}
.x78{left:572.895000px;}
.x61{left:574.095000px;}
.x35{left:578.595000px;}
.x39{left:585.495000px;}
.x6e{left:586.695000px;}
.x6c{left:591.195000px;}
.x6f{left:594.780000px;}
.x6d{left:595.995000px;}
.xf{left:604.695000px;}
.x10{left:607.095000px;}
.x76{left:622.095000px;}
.x77{left:628.695000px;}
.x64{left:638.595000px;}
.x46{left:643.095000px;}
.x74{left:673.725000px;}
.x1f{left:718.425000px;}
.x1c{left:729.525000px;}
.x1d{left:736.425000px;}
.x19{left:748.725000px;}
.x1{left:757.125000px;}
.x68{left:766.725000px;}
.x6b{left:768.825000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-2.837333pt;}
.lsc{letter-spacing:-2.133333pt;}
.ls17{letter-spacing:-1.408000pt;}
.ls3{letter-spacing:-1.066667pt;}
.lsa{letter-spacing:-0.725333pt;}
.lse{letter-spacing:-0.682667pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.362667pt;}
.ls5{letter-spacing:-0.341333pt;}
.ls16{letter-spacing:-0.021333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.021333pt;}
.lsb{letter-spacing:0.122667pt;}
.ls9{letter-spacing:0.330667pt;}
.ls2{letter-spacing:0.341333pt;}
.ls7{letter-spacing:0.362667pt;}
.ls1{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.437333pt;}
.ls8{letter-spacing:0.533333pt;}
.ls15{letter-spacing:1.066667pt;}
.ls12{letter-spacing:1.088000pt;}
.ls11{letter-spacing:57.034667pt;}
.ls10{letter-spacing:172.933333pt;}
.ls13{letter-spacing:182.266667pt;}
.ws12{word-spacing:-64.000000pt;}
.wse{word-spacing:-17.088000pt;}
.ws1{word-spacing:-16.384000pt;}
.ws8{word-spacing:-16.362667pt;}
.ws2{word-spacing:-16.341333pt;}
.ws6{word-spacing:-16.021333pt;}
.ws3{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.978667pt;}
.ws5{word-spacing:-15.658667pt;}
.ws9{word-spacing:-15.637333pt;}
.wsb{word-spacing:-15.616000pt;}
.wsc{word-spacing:-15.317333pt;}
.wsf{word-spacing:-15.274667pt;}
.ws4{word-spacing:-14.933333pt;}
.ws11{word-spacing:-14.592000pt;}
.wsa{word-spacing:-13.866667pt;}
.ws7{word-spacing:-13.333333pt;}
.wsd{word-spacing:-13.162667pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-3.514667pt;}
._5{margin-left:-2.037333pt;}
._1{margin-left:-1.088000pt;}
._0{width:1.024000pt;}
._2{width:2.400000pt;}
._6{width:3.301333pt;}
._4{width:172.933333pt;}
._8{width:182.266667pt;}
._3{width:752.293333pt;}
.fs3{font-size:26.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.ya2{bottom:-34.400000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:1.333333pt;}
.y12d{bottom:1.600000pt;}
.ycd{bottom:5.333333pt;}
.y96{bottom:6.400000pt;}
.y82{bottom:7.466667pt;}
.y1dc{bottom:7.733333pt;}
.y118{bottom:9.333333pt;}
.yb8{bottom:9.346667pt;}
.yf3{bottom:10.133333pt;}
.yf1{bottom:10.386667pt;}
.yd0{bottom:10.400000pt;}
.y104{bottom:10.426667pt;}
.y81{bottom:11.466667pt;}
.yd3{bottom:11.493333pt;}
.y153{bottom:12.533333pt;}
.y158{bottom:12.786667pt;}
.y156{bottom:12.800000pt;}
.y154{bottom:12.813333pt;}
.y162{bottom:13.053333pt;}
.y160{bottom:13.066667pt;}
.y17c{bottom:13.080000pt;}
.y174{bottom:13.093333pt;}
.y16e{bottom:13.106667pt;}
.y8a{bottom:13.613333pt;}
.yb6{bottom:14.666667pt;}
.y65{bottom:14.706667pt;}
.ya0{bottom:14.933333pt;}
.y9d{bottom:18.666667pt;}
.y10d{bottom:18.926667pt;}
.y75{bottom:18.933333pt;}
.y150{bottom:18.946667pt;}
.y12c{bottom:19.226667pt;}
.y1bc{bottom:19.733333pt;}
.y1da{bottom:19.746667pt;}
.y1d5{bottom:20.000000pt;}
.y1d1{bottom:20.533333pt;}
.y9f{bottom:28.800000pt;}
.yb5{bottom:32.266667pt;}
.y14e{bottom:36.533333pt;}
.y11a{bottom:36.566667pt;}
.y12b{bottom:36.840000pt;}
.y184{bottom:40.280000pt;}
.y15f{bottom:40.533333pt;}
.y185{bottom:40.540000pt;}
.y119{bottom:46.666667pt;}
.y2{bottom:50.933333pt;}
.y1d4{bottom:53.873333pt;}
.y1d0{bottom:54.126667pt;}
.y1bb{bottom:54.133333pt;}
.y1{bottom:68.800000pt;}
.y1db{bottom:88.033333pt;}
.y1d3{bottom:88.566667pt;}
.y1d2{bottom:93.900000pt;}
.y1cf{bottom:98.433333pt;}
.y102{bottom:99.500000pt;}
.y1a9{bottom:102.966667pt;}
.y111{bottom:103.233333pt;}
.y88{bottom:104.033333pt;}
.y94{bottom:104.300000pt;}
.y9b{bottom:105.366667pt;}
.y80{bottom:106.966667pt;}
.y7f{bottom:107.766667pt;}
.y1c6{bottom:108.033333pt;}
.y165{bottom:109.633333pt;}
.y10a{bottom:112.566667pt;}
.y10c{bottom:114.966667pt;}
.y116{bottom:117.633333pt;}
.y4f{bottom:118.433333pt;}
.yb3{bottom:122.433333pt;}
.ycb{bottom:124.033333pt;}
.y1ae{bottom:126.166667pt;}
.y101{bottom:127.233333pt;}
.y73{bottom:129.900000pt;}
.y110{bottom:130.966667pt;}
.y40{bottom:131.766667pt;}
.y9a{bottom:133.100000pt;}
.y164{bottom:137.893333pt;}
.y1b9{bottom:140.026667pt;}
.y117{bottom:141.893333pt;}
.y1c5{bottom:142.440000pt;}
.y1ba{bottom:143.493333pt;}
.y1a8{bottom:144.026667pt;}
.y1c1{bottom:144.293333pt;}
.y63{bottom:145.106667pt;}
.y4e{bottom:146.160000pt;}
.yb2{bottom:149.893333pt;}
.yca{bottom:151.493333pt;}
.y100{bottom:154.693333pt;}
.y14c{bottom:154.960000pt;}
.y19f{bottom:156.826667pt;}
.y10f{bottom:158.440000pt;}
.y87{bottom:159.226667pt;}
.y3f{bottom:159.493333pt;}
.y1ad{bottom:163.493333pt;}
.y163{bottom:166.160000pt;}
.y183{bottom:168.560000pt;}
.yb7{bottom:170.160000pt;}
.y9c{bottom:170.693333pt;}
.y129{bottom:170.960000pt;}
.y62{bottom:172.840000pt;}
.y1c4{bottom:173.360000pt;}
.y115{bottom:173.626667pt;}
.y99{bottom:173.893333pt;}
.yb1{bottom:177.626667pt;}
.yc9{bottom:179.226667pt;}
.y74{bottom:181.093333pt;}
.yff{bottom:182.440000pt;}
.y19e{bottom:184.293333pt;}
.y1a7{bottom:184.840000pt;}
.y1c0{bottom:185.106667pt;}
.y10e{bottom:186.173333pt;}
.y3e{bottom:186.960000pt;}
.y141{bottom:189.626667pt;}
.y161{bottom:194.173333pt;}
.ye8{bottom:198.173333pt;}
.y128{bottom:198.440000pt;}
.y93{bottom:200.293333pt;}
.yb0{bottom:205.106667pt;}
.yc8{bottom:206.693333pt;}
.y1b4{bottom:209.106667pt;}
.yfe{bottom:209.893333pt;}
.y14b{bottom:210.173333pt;}
.y98{bottom:211.226667pt;}
.y19d{bottom:211.773333pt;}
.y1a6{bottom:212.840000pt;}
.y61{bottom:213.626667pt;}
.y3d{bottom:214.440000pt;}
.y1be{bottom:216.293333pt;}
.y140{bottom:217.106667pt;}
.y1d8{bottom:220.600000pt;}
.yef{bottom:221.133333pt;}
.y1bf{bottom:221.400000pt;}
.y15e{bottom:222.466667pt;}
.y182{bottom:224.333333pt;}
.ye7{bottom:225.933333pt;}
.y127{bottom:226.200000pt;}
.y92{bottom:227.800000pt;}
.yaf{bottom:232.866667pt;}
.ycc{bottom:233.933333pt;}
.yc7{bottom:234.466667pt;}
.y14a{bottom:237.400000pt;}
.yfd{bottom:237.666667pt;}
.y19c{bottom:239.533333pt;}
.y1a5{bottom:240.333333pt;}
.y60{bottom:241.133333pt;}
.y3c{bottom:242.200000pt;}
.y13f{bottom:244.866667pt;}
.y1b3{bottom:246.466667pt;}
.yee{bottom:248.866667pt;}
.ye6{bottom:253.400000pt;}
.y126{bottom:253.666667pt;}
.y91{bottom:255.533333pt;}
.yae{bottom:260.333333pt;}
.yc6{bottom:261.933333pt;}
.yfc{bottom:265.133333pt;}
.y19b{bottom:267.000000pt;}
.y1a4{bottom:267.800000pt;}
.y5f{bottom:268.866667pt;}
.y3b{bottom:269.666667pt;}
.y13e{bottom:272.333333pt;}
.y1b7{bottom:274.733333pt;}
.yed{bottom:276.333333pt;}
.y1d6{bottom:276.600000pt;}
.y15d{bottom:278.466667pt;}
.y181{bottom:280.066667pt;}
.ye5{bottom:281.133333pt;}
.y125{bottom:281.400000pt;}
.y90{bottom:283.000000pt;}
.y1d7{bottom:284.866667pt;}
.yad{bottom:288.066667pt;}
.yc5{bottom:289.666667pt;}
.y149{bottom:292.600000pt;}
.y19a{bottom:294.733333pt;}
.y1a3{bottom:295.533333pt;}
.y5e{bottom:296.333333pt;}
.y3a{bottom:297.400000pt;}
.y13d{bottom:300.066667pt;}
.yec{bottom:304.066667pt;}
.yfb{bottom:306.200000pt;}
.y15c{bottom:306.733333pt;}
.ye4{bottom:308.600000pt;}
.y124{bottom:308.866667pt;}
.y86{bottom:310.466667pt;}
.y8f{bottom:310.733333pt;}
.yac{bottom:315.533333pt;}
.yc4{bottom:317.133333pt;}
.y199{bottom:322.200000pt;}
.y1a2{bottom:323.000000pt;}
.y5d{bottom:324.066667pt;}
.y39{bottom:324.866667pt;}
.y13c{bottom:327.533333pt;}
.yeb{bottom:331.533333pt;}
.yfa{bottom:333.666667pt;}
.y180{bottom:334.733333pt;}
.y15b{bottom:335.000000pt;}
.ye3{bottom:336.333333pt;}
.y4d{bottom:338.200000pt;}
.y148{bottom:339.000000pt;}
.y97{bottom:342.466667pt;}
.yab{bottom:343.266667pt;}
.yc3{bottom:344.866667pt;}
.y17f{bottom:349.933333pt;}
.y1a1{bottom:350.733333pt;}
.y85{bottom:351.266667pt;}
.y22{bottom:351.533333pt;}
.y38{bottom:352.600000pt;}
.yd2{bottom:353.133333pt;}
.y123{bottom:355.266667pt;}
.yea{bottom:359.293333pt;}
.yf9{bottom:361.440000pt;}
.y15a{bottom:363.293333pt;}
.y4c{bottom:365.960000pt;}
.y14f{bottom:366.226667pt;}
.yaa{bottom:370.773333pt;}
.yc2{bottom:372.360000pt;}
.y89{bottom:374.226667pt;}
.y7e{bottom:374.506667pt;}
.ye2{bottom:377.173333pt;}
.y198{bottom:377.440000pt;}
.y17e{bottom:378.226667pt;}
.y5c{bottom:379.293333pt;}
.y37{bottom:380.106667pt;}
.y122{bottom:382.773333pt;}
.y159{bottom:391.560000pt;}
.y84{bottom:392.360000pt;}
.y21{bottom:392.626667pt;}
.y4b{bottom:393.440000pt;}
.yf0{bottom:397.173333pt;}
.ya9{bottom:398.506667pt;}
.yc1{bottom:400.106667pt;}
.y7d{bottom:402.226667pt;}
.ye1{bottom:404.626667pt;}
.y197{bottom:405.173333pt;}
.y1a0{bottom:405.960000pt;}
.y17d{bottom:406.506667pt;}
.y8e{bottom:406.773333pt;}
.y1d9{bottom:407.026667pt;}
.y36{bottom:407.840000pt;}
.y121{bottom:410.506667pt;}
.y157{bottom:419.840000pt;}
.y5b{bottom:420.106667pt;}
.y109{bottom:420.360000pt;}
.y4a{bottom:421.173333pt;}
.ya8{bottom:425.960000pt;}
.yc0{bottom:427.560000pt;}
.y7c{bottom:429.693333pt;}
.yf8{bottom:429.960000pt;}
.ye0{bottom:432.360000pt;}
.y196{bottom:432.626667pt;}
.y20{bottom:433.440000pt;}
.y8d{bottom:434.506667pt;}
.y17b{bottom:434.760000pt;}
.y35{bottom:435.293333pt;}
.y1ce{bottom:437.440000pt;}
.y120{bottom:437.960000pt;}
.y5a{bottom:447.840000pt;}
.y155{bottom:448.093333pt;}
.y49{bottom:448.626667pt;}
.ya7{bottom:453.693333pt;}
.y7b{bottom:457.426667pt;}
.ydf{bottom:459.840000pt;}
.y195{bottom:460.360000pt;}
.y1f{bottom:461.173333pt;}
.y8c{bottom:461.960000pt;}
.y17a{bottom:463.026667pt;}
.y13b{bottom:465.426667pt;}
.y95{bottom:466.226667pt;}
.ybf{bottom:468.626667pt;}
.y1cd{bottom:472.093333pt;}
.y59{bottom:475.293333pt;}
.y108{bottom:475.560000pt;}
.y34{bottom:476.360000pt;}
.ya6{bottom:481.173333pt;}
.y11f{bottom:484.360000pt;}
.y7a{bottom:484.893333pt;}
.yf7{bottom:485.173333pt;}
.yde{bottom:487.560000pt;}
.y194{bottom:487.840000pt;}
.y1e{bottom:488.626667pt;}
.y8b{bottom:489.693333pt;}
.y179{bottom:491.293333pt;}
.y13a{bottom:493.173333pt;}
.y64{bottom:496.093333pt;}
.ycf{bottom:502.533333pt;}
.y58{bottom:503.066667pt;}
.y33{bottom:503.866667pt;}
.y152{bottom:504.666667pt;}
.y1cc{bottom:506.533333pt;}
.y1ac{bottom:507.866667pt;}
.y11e{bottom:511.866667pt;}
.y79{bottom:512.666667pt;}
.ya5{bottom:514.533333pt;}
.ydd{bottom:515.066667pt;}
.y193{bottom:515.600000pt;}
.y1d{bottom:516.400000pt;}
.y48{bottom:517.200000pt;}
.y72{bottom:518.266667pt;}
.y178{bottom:519.600000pt;}
.y139{bottom:520.666667pt;}
.y1b6{bottom:522.266667pt;}
.ybe{bottom:523.866667pt;}
.yb4{bottom:527.333333pt;}
.y57{bottom:530.533333pt;}
.y107{bottom:530.800000pt;}
.y32{bottom:531.600000pt;}
.ya4{bottom:538.000000pt;}
.y11d{bottom:539.600000pt;}
.y78{bottom:540.133333pt;}
.yf6{bottom:540.400000pt;}
.y1cb{bottom:541.200000pt;}
.y192{bottom:543.066667pt;}
.y1c{bottom:543.866667pt;}
.y47{bottom:544.933333pt;}
.y71{bottom:545.733333pt;}
.y177{bottom:547.866667pt;}
.y138{bottom:548.400000pt;}
.y1ab{bottom:548.666667pt;}
.y1b5{bottom:549.733333pt;}
.ybd{bottom:551.333333pt;}
.ydc{bottom:556.133333pt;}
.y56{bottom:558.266667pt;}
.y151{bottom:558.800000pt;}
.y31{bottom:559.066667pt;}
.y11c{bottom:567.066667pt;}
.y77{bottom:567.866667pt;}
.y1bd{bottom:570.000000pt;}
.y191{bottom:570.800000pt;}
.y1b{bottom:571.600000pt;}
.y46{bottom:572.400000pt;}
.y70{bottom:573.466667pt;}
.y1c3{bottom:573.733333pt;}
.y1ca{bottom:575.600000pt;}
.y137{bottom:575.866667pt;}
.y176{bottom:576.133333pt;}
.ybc{bottom:579.066667pt;}
.ydb{bottom:583.600000pt;}
.y55{bottom:585.733333pt;}
.y106{bottom:586.000000pt;}
.y30{bottom:586.800000pt;}
.y1aa{bottom:589.733333pt;}
.y1b2{bottom:590.800000pt;}
.y11b{bottom:594.800000pt;}
.yf5{bottom:595.600000pt;}
.y190{bottom:598.266667pt;}
.y1a{bottom:599.066667pt;}
.y147{bottom:599.866667pt;}
.y45{bottom:600.133333pt;}
.y6f{bottom:600.933333pt;}
.y76{bottom:601.200000pt;}
.y136{bottom:603.600000pt;}
.y175{bottom:604.400000pt;}
.ybb{bottom:606.533333pt;}
.y1c9{bottom:610.000000pt;}
.yda{bottom:611.333333pt;}
.y54{bottom:613.466667pt;}
.y114{bottom:614.266667pt;}
.y1c2{bottom:614.533333pt;}
.y18f{bottom:626.000000pt;}
.y19{bottom:626.800000pt;}
.y2f{bottom:627.600000pt;}
.y6e{bottom:628.666667pt;}
.yf4{bottom:628.933333pt;}
.y103{bottom:630.800000pt;}
.y135{bottom:631.066667pt;}
.y12a{bottom:631.333333pt;}
.y1b1{bottom:631.600000pt;}
.y173{bottom:632.666667pt;}
.yba{bottom:634.266667pt;}
.yd9{bottom:638.840000pt;}
.y53{bottom:640.960000pt;}
.y105{bottom:641.226667pt;}
.y113{bottom:642.026667pt;}
.y1c8{bottom:644.693333pt;}
.y1b8{bottom:651.893333pt;}
.y18e{bottom:653.506667pt;}
.y18{bottom:654.293333pt;}
.y146{bottom:655.093333pt;}
.y2e{bottom:655.360000pt;}
.y6d{bottom:656.173333pt;}
.y172{bottom:660.973333pt;}
.yce{bottom:662.560000pt;}
.yd8{bottom:666.560000pt;}
.yb9{bottom:667.626667pt;}
.y52{bottom:668.693333pt;}
.y112{bottom:669.506667pt;}
.y1b0{bottom:672.693333pt;}
.y134{bottom:677.506667pt;}
.y1c7{bottom:679.093333pt;}
.y18d{bottom:681.226667pt;}
.y17{bottom:682.026667pt;}
.y2d{bottom:682.840000pt;}
.y6c{bottom:683.893333pt;}
.yb{bottom:685.760000pt;}
.y171{bottom:689.226667pt;}
.y10b{bottom:693.240000pt;}
.yd7{bottom:694.040000pt;}
.y51{bottom:696.173333pt;}
.y133{bottom:704.960000pt;}
.y18c{bottom:708.706667pt;}
.y16{bottom:709.506667pt;}
.y1af{bottom:710.040000pt;}
.y145{bottom:710.293333pt;}
.y2c{bottom:710.560000pt;}
.y6b{bottom:711.373333pt;}
.y170{bottom:717.506667pt;}
.ya3{bottom:719.373333pt;}
.yd6{bottom:721.760000pt;}
.y50{bottom:723.893333pt;}
.ya{bottom:726.560000pt;}
.y132{bottom:732.706667pt;}
.y18b{bottom:736.426667pt;}
.y15{bottom:737.226667pt;}
.y2b{bottom:738.040000pt;}
.y16f{bottom:745.773333pt;}
.yd5{bottom:749.226667pt;}
.y83{bottom:751.373333pt;}
.y6a{bottom:752.426667pt;}
.y131{bottom:760.173333pt;}
.y18a{bottom:763.893333pt;}
.y14{bottom:764.706667pt;}
.y144{bottom:765.506667pt;}
.y2a{bottom:765.760000pt;}
.y9{bottom:767.626667pt;}
.y16d{bottom:774.026667pt;}
.yd1{bottom:779.133333pt;}
.y69{bottom:779.933333pt;}
.yd4{bottom:782.600000pt;}
.yf2{bottom:785.266667pt;}
.y130{bottom:787.933333pt;}
.y13{bottom:792.466667pt;}
.y29{bottom:793.266667pt;}
.y16c{bottom:802.333333pt;}
.ye9{bottom:803.133333pt;}
.y189{bottom:804.733333pt;}
.y44{bottom:806.600000pt;}
.y68{bottom:807.666667pt;}
.y8{bottom:808.466667pt;}
.y12f{bottom:815.400000pt;}
.y12{bottom:819.933333pt;}
.y28{bottom:821.000000pt;}
.y14d{bottom:822.600000pt;}
.y16b{bottom:830.600000pt;}
.y43{bottom:834.333333pt;}
.y67{bottom:835.133333pt;}
.y143{bottom:835.933333pt;}
.y188{bottom:845.533333pt;}
.y9e{bottom:846.066667pt;}
.y11{bottom:847.666667pt;}
.y7{bottom:849.266667pt;}
.y142{bottom:851.666667pt;}
.y12e{bottom:854.066667pt;}
.y16a{bottom:858.866667pt;}
.y27{bottom:861.800000pt;}
.y10{bottom:875.133333pt;}
.y66{bottom:875.933333pt;}
.y187{bottom:886.866667pt;}
.y26{bottom:889.533333pt;}
.y6{bottom:890.066667pt;}
.yf{bottom:902.866667pt;}
.y169{bottom:914.893333pt;}
.y25{bottom:917.040000pt;}
.y186{bottom:927.706667pt;}
.ye{bottom:930.373333pt;}
.y5{bottom:931.173333pt;}
.y168{bottom:943.173333pt;}
.y24{bottom:944.760000pt;}
.yd{bottom:958.106667pt;}
.y167{bottom:971.440000pt;}
.y4{bottom:971.960000pt;}
.y23{bottom:972.226667pt;}
.yc{bottom:985.293333pt;}
.y42{bottom:985.560000pt;}
.y166{bottom:999.706667pt;}
.y3{bottom:1013.026667pt;}
.y41{bottom:1013.293333pt;}
.h14{height:17.333333pt;}
.hd{height:18.400000pt;}
.hb{height:19.466667pt;}
.h13{height:21.333333pt;}
.h17{height:22.133333pt;}
.h15{height:22.400000pt;}
.h18{height:22.433333pt;}
.ha{height:23.466667pt;}
.h16{height:23.500000pt;}
.hc{height:25.600000pt;}
.h8{height:26.171875pt;}
.h6{height:26.700000pt;}
.h1f{height:27.466667pt;}
.h20{height:27.500000pt;}
.h24{height:27.733333pt;}
.h22{height:27.766667pt;}
.he{height:30.666667pt;}
.h9{height:30.933333pt;}
.h2a{height:34.400000pt;}
.hf{height:39.466667pt;}
.h2{height:40.648438pt;}
.h12{height:44.266667pt;}
.h10{height:47.085938pt;}
.h11{height:47.109375pt;}
.h1e{height:48.533333pt;}
.h1b{height:48.566667pt;}
.h1c{height:48.833333pt;}
.h1d{height:52.317708pt;}
.h7{height:52.343750pt;}
.h25{height:54.966667pt;}
.h21{height:55.200000pt;}
.h23{height:55.233333pt;}
.h19{height:57.375000pt;}
.h3{height:62.781250pt;}
.h4{height:62.812500pt;}
.h5{height:64.500000pt;}
.h1a{height:65.781915pt;}
.h29{height:67.733333pt;}
.h28{height:68.000000pt;}
.h27{height:68.793333pt;}
.h26{height:68.800000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w1f{width:74.933333pt;}
.w1c{width:77.866667pt;}
.w1e{width:84.566667pt;}
.w1b{width:85.900000pt;}
.w20{width:114.700000pt;}
.w1d{width:114.966667pt;}
.w4{width:149.093333pt;}
.w7{width:191.000000pt;}
.w19{width:193.400000pt;}
.wb{width:201.400000pt;}
.w16{width:203.800000pt;}
.w22{width:210.466667pt;}
.we{width:221.933333pt;}
.wa{width:225.400000pt;}
.w18{width:226.200000pt;}
.w21{width:226.466667pt;}
.w6{width:226.733333pt;}
.wf{width:227.000000pt;}
.w17{width:241.666667pt;}
.w9{width:241.933333pt;}
.w5{width:249.666667pt;}
.w14{width:264.600000pt;}
.w12{width:267.040000pt;}
.w1a{width:299.573333pt;}
.w2{width:303.560000pt;}
.w8{width:308.106667pt;}
.wc{width:317.693333pt;}
.w10{width:320.093333pt;}
.w3{width:346.506667pt;}
.w15{width:351.026667pt;}
.wd{width:387.560000pt;}
.w13{width:567.106667pt;}
.w11{width:568.173333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x45{left:6.933333pt;}
.x11{left:9.586667pt;}
.x4e{left:11.466667pt;}
.x48{left:14.666667pt;}
.x65{left:15.733333pt;}
.x4b{left:18.666667pt;}
.x18{left:20.266667pt;}
.x51{left:24.000000pt;}
.x5a{left:26.660000pt;}
.x53{left:28.533333pt;}
.x4d{left:30.933333pt;}
.x63{left:33.320000pt;}
.x49{left:34.933333pt;}
.xc{left:36.526667pt;}
.x47{left:39.226667pt;}
.x55{left:41.360000pt;}
.x4c{left:43.460000pt;}
.x50{left:45.360000pt;}
.x4a{left:46.926667pt;}
.x54{left:49.360000pt;}
.x2e{left:51.233333pt;}
.x5c{left:53.366667pt;}
.x4f{left:57.366667pt;}
.x60{left:60.833333pt;}
.x57{left:63.500000pt;}
.x58{left:65.100000pt;}
.x5e{left:69.100000pt;}
.x59{left:76.300000pt;}
.x5f{left:77.633333pt;}
.x56{left:80.300000pt;}
.x79{left:84.533333pt;}
.x27{left:88.300000pt;}
.x34{left:89.366667pt;}
.x5d{left:93.633333pt;}
.x5b{left:97.366667pt;}
.x3d{left:100.300000pt;}
.x66{left:101.900000pt;}
.x41{left:106.700000pt;}
.x14{left:107.773333pt;}
.x2b{left:109.100000pt;}
.x26{left:110.433333pt;}
.x17{left:112.033333pt;}
.x2{left:113.366667pt;}
.xb{left:114.966667pt;}
.x33{left:116.033333pt;}
.x42{left:117.100000pt;}
.x52{left:118.966667pt;}
.x3b{left:137.360000pt;}
.x8{left:160.600000pt;}
.xe{left:170.733333pt;}
.x28{left:183.533333pt;}
.x6a{left:193.400000pt;}
.x30{left:221.666667pt;}
.x71{left:249.933333pt;}
.x1e{left:251.000000pt;}
.x5{left:273.693333pt;}
.x70{left:276.360000pt;}
.x72{left:282.506667pt;}
.x6{left:290.773333pt;}
.x73{left:294.773333pt;}
.x7{left:305.173333pt;}
.x16{left:313.173333pt;}
.x69{left:314.773333pt;}
.x22{left:327.026667pt;}
.xd{left:334.240000pt;}
.x2a{left:343.026667pt;}
.x4{left:344.640000pt;}
.x37{left:347.566667pt;}
.x2d{left:354.226667pt;}
.x67{left:357.173333pt;}
.x15{left:360.360000pt;}
.x1b{left:367.026667pt;}
.x2f{left:371.066667pt;}
.x21{left:374.266667pt;}
.x36{left:379.333333pt;}
.x38{left:387.600000pt;}
.x29{left:390.266667pt;}
.x32{left:395.066667pt;}
.x3{left:396.933333pt;}
.x2c{left:401.466667pt;}
.x20{left:402.533333pt;}
.x23{left:405.733333pt;}
.x43{left:406.800000pt;}
.x1a{left:414.266667pt;}
.xa{left:430.266667pt;}
.x3c{left:431.333333pt;}
.x12{left:434.000000pt;}
.x25{left:439.066667pt;}
.x31{left:442.266667pt;}
.x3e{left:443.333333pt;}
.x3f{left:446.800000pt;}
.x13{left:453.200000pt;}
.x40{left:466.266667pt;}
.x3a{left:473.200000pt;}
.x9{left:477.466667pt;}
.x24{left:486.306667pt;}
.x62{left:491.906667pt;}
.x44{left:493.240000pt;}
.x75{left:498.306667pt;}
.x78{left:509.240000pt;}
.x61{left:510.306667pt;}
.x35{left:514.306667pt;}
.x39{left:520.440000pt;}
.x6e{left:521.506667pt;}
.x6c{left:525.506667pt;}
.x6f{left:528.693333pt;}
.x6d{left:529.773333pt;}
.xf{left:537.506667pt;}
.x10{left:539.640000pt;}
.x76{left:552.973333pt;}
.x77{left:558.840000pt;}
.x64{left:567.640000pt;}
.x46{left:571.640000pt;}
.x74{left:598.866667pt;}
.x1f{left:638.600000pt;}
.x1c{left:648.466667pt;}
.x1d{left:654.600000pt;}
.x19{left:665.533333pt;}
.x1{left:673.000000pt;}
.x68{left:681.533333pt;}
.x6b{left:683.400000pt;}
}




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