
    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_442c7c05ccbfb260b7675ca9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_9ca4c911a9fde63a463e4056.woff')format("woff");}.ff2{font-family:ff2;line-height:1.219727;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_c350789e1e29d4f1b84493c5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_2be8fd2aa2e3b016b9910215.woff')format("woff");}.ff4{font-family:ff4;line-height:1.105957;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_5975cc519f4131ba27346c87.woff')format("woff");}.ff5{font-family:ff5;line-height:1.182129;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_d1f2a845ce6240e9e38dd32d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.105957;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_2be8fd2aa2e3b016b9910215.woff')format("woff");}.ff7{font-family:ff7;line-height:1.105957;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_964843d526695a895c0373ed.woff')format("woff");}.ff8{font-family:ff8;line-height:1.182129;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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:13.980000px;}
.v3{vertical-align:17.287200px;}
.v1{vertical-align:29.978400px;}
.ls7{letter-spacing:-10.152000px;}
.lsf{letter-spacing:-7.371000px;}
.ls17{letter-spacing:-6.642000px;}
.ls18{letter-spacing:-3.645000px;}
.ls6{letter-spacing:-3.456000px;}
.ls11{letter-spacing:-2.430000px;}
.ls16{letter-spacing:-2.109000px;}
.ls29{letter-spacing:-1.980000px;}
.ls21{letter-spacing:-1.932000px;}
.ls8{letter-spacing:-1.848000px;}
.ls19{letter-spacing:-1.701000px;}
.ls30{letter-spacing:-1.449000px;}
.ls27{letter-spacing:-1.215000px;}
.ls1a{letter-spacing:-1.053000px;}
.lse{letter-spacing:-0.855000px;}
.ls10{letter-spacing:-0.780000px;}
.ls2f{letter-spacing:-0.630000px;}
.ls26{letter-spacing:-0.627000px;}
.ls1b{letter-spacing:-0.276000px;}
.ls5{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.180000px;}
.ls2b{letter-spacing:-0.171000px;}
.ls2c{letter-spacing:-0.081000px;}
.ls1{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.004200px;}
.ls31{letter-spacing:0.004800px;}
.ls23{letter-spacing:0.015000px;}
.ls24{letter-spacing:0.042000px;}
.ls1d{letter-spacing:0.081000px;}
.ls2e{letter-spacing:0.189000px;}
.ls15{letter-spacing:0.552000px;}
.ls1c{letter-spacing:1.482000px;}
.lsc{letter-spacing:2.400000px;}
.ls13{letter-spacing:2.691000px;}
.ls20{letter-spacing:3.225000px;}
.lsd{letter-spacing:4.125000px;}
.ls28{letter-spacing:4.163400px;}
.ls25{letter-spacing:4.178400px;}
.ls22{letter-spacing:4.179000px;}
.ls0{letter-spacing:4.200000px;}
.ls1f{letter-spacing:4.554000px;}
.ls2a{letter-spacing:4.650000px;}
.ls9{letter-spacing:5.760000px;}
.lsa{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.lsb{letter-spacing:6.300000px;}
.ls12{letter-spacing:6.417000px;}
.ls33{letter-spacing:6.600000px;}
.ls2d{letter-spacing:7.698600px;}
.ls3{letter-spacing:8.400000px;}
.ls14{letter-spacing:8.970000px;}
.ls1e{letter-spacing:10.557000px;}
.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;}
}
.ws29{word-spacing:-25.725000px;}
.wsb{word-spacing:-25.200000px;}
.ws20{word-spacing:-24.300000px;}
.ws0{word-spacing:-23.220000px;}
.ws32{word-spacing:-22.860000px;}
.ws1c{word-spacing:-22.842000px;}
.ws4{word-spacing:-22.740000px;}
.ws2a{word-spacing:-22.680000px;}
.ws3{word-spacing:-22.620000px;}
.ws16{word-spacing:-21.708000px;}
.ws23{word-spacing:-21.546000px;}
.ws1{word-spacing:-20.196000px;}
.ws12{word-spacing:-19.389000px;}
.ws2{word-spacing:-18.900000px;}
.ws27{word-spacing:-18.546000px;}
.ws15{word-spacing:-18.306000px;}
.wsc{word-spacing:-18.102000px;}
.ws14{word-spacing:-17.577000px;}
.wse{word-spacing:-17.043000px;}
.ws1b{word-spacing:-16.767000px;}
.ws2f{word-spacing:-15.750000px;}
.ws2e{word-spacing:-15.561000px;}
.wsd{word-spacing:-15.390000px;}
.ws25{word-spacing:-14.820000px;}
.ws31{word-spacing:-14.112000px;}
.ws11{word-spacing:-14.040000px;}
.ws26{word-spacing:-12.840000px;}
.ws22{word-spacing:-11.844000px;}
.ws13{word-spacing:-11.303787px;}
.ws7{word-spacing:-8.400000px;}
.ws33{word-spacing:-6.600000px;}
.ws2d{word-spacing:-6.300000px;}
.ws6{word-spacing:-6.000000px;}
.wsa{word-spacing:-4.200000px;}
.wsf{word-spacing:-2.400000px;}
.ws1f{word-spacing:-1.482000px;}
.ws1e{word-spacing:-0.897000px;}
.ws5{word-spacing:0.000000px;}
.ws2c{word-spacing:0.171000px;}
.ws8{word-spacing:0.180000px;}
.ws9{word-spacing:0.240000px;}
.ws1d{word-spacing:0.276000px;}
.ws24{word-spacing:0.627000px;}
.ws30{word-spacing:0.630000px;}
.ws10{word-spacing:0.855000px;}
.ws21{word-spacing:1.932000px;}
.ws17{word-spacing:2.109000px;}
.ws1a{word-spacing:3.645000px;}
.ws28{word-spacing:4.071000px;}
.ws19{word-spacing:6.642000px;}
.ws2b{word-spacing:7.176000px;}
.ws18{word-spacing:7.371000px;}
._f{margin-left:-17.460000px;}
._21{margin-left:-10.583700px;}
._1a{margin-left:-8.317200px;}
._1b{margin-left:-7.173600px;}
._10{margin-left:-5.665500px;}
._5{margin-left:-3.981600px;}
._4{margin-left:-2.016000px;}
._e{margin-left:-1.002600px;}
._3{width:1.109100px;}
._1{width:2.400000px;}
._9{width:4.134000px;}
._6{width:6.013800px;}
._7{width:7.214400px;}
._8{width:8.631600px;}
._c{width:9.846600px;}
._b{width:11.523600px;}
._a{width:12.916800px;}
._d{width:14.099400px;}
._12{width:15.303000px;}
._14{width:16.596630px;}
._1d{width:17.670300px;}
._25{width:18.918900px;}
._22{width:20.115000px;}
._23{width:21.842100px;}
._19{width:23.378100px;}
._17{width:24.723000px;}
._27{width:31.367700px;}
._26{width:35.847000px;}
._13{width:43.445160px;}
._28{width:60.511200px;}
._11{width:85.554000px;}
._16{width:260.610000px;}
._20{width:456.726000px;}
._24{width:458.467200px;}
._15{width:460.057200px;}
._1c{width:461.528400px;}
._0{width:578.400000px;}
._2{width:955.711200px;}
._1e{width:958.831200px;}
._1f{width:962.881200px;}
._18{width:964.861200px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fse{font-size:34.980000px;}
.fsd{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:62.964000px;}
.fs2{font-size:63.000000px;}
.fsf{font-size:66.000000px;}
.fsc{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fsb{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yee{bottom:104.915400px;}
.yd8{bottom:106.165350px;}
.y182{bottom:106.166100px;}
.yb1{bottom:106.256550px;}
.y69{bottom:106.284450px;}
.y161{bottom:106.284750px;}
.y1a2{bottom:106.292100px;}
.y8e{bottom:106.293300px;}
.y1f{bottom:106.296450px;}
.y45{bottom:106.465350px;}
.y100{bottom:107.176350px;}
.y140{bottom:107.879700px;}
.y68{bottom:123.537450px;}
.y8d{bottom:123.546300px;}
.y1e{bottom:126.544950px;}
.yd7{bottom:126.589350px;}
.y181{bottom:126.609600px;}
.y160{bottom:126.744000px;}
.yb0{bottom:126.991050px;}
.y44{bottom:127.010100px;}
.yff{bottom:127.427850px;}
.y1a1{bottom:127.822350px;}
.y13f{bottom:128.131200px;}
.y111{bottom:130.511100px;}
.y67{bottom:140.790450px;}
.y124{bottom:140.851200px;}
.y8c{bottom:143.794800px;}
.yd6{bottom:147.013350px;}
.y43{bottom:147.554850px;}
.yfe{bottom:147.679350px;}
.yaf{bottom:147.725550px;}
.y13e{bottom:148.382700px;}
.y1a0{bottom:149.352600px;}
.y110{bottom:150.762600px;}
.yed{bottom:152.150250px;}
.y180{bottom:154.282350px;}
.y15f{bottom:154.432500px;}
.y1c0{bottom:156.214650px;}
.y66{bottom:158.043450px;}
.y123{bottom:161.102700px;}
.yd5{bottom:167.437350px;}
.yfd{bottom:167.930850px;}
.y42{bottom:168.099600px;}
.yae{bottom:168.460050px;}
.y13d{bottom:168.634200px;}
.y1d{bottom:170.539650px;}
.yec{bottom:172.401750px;}
.y17f{bottom:174.725850px;}
.y65{bottom:175.296450px;}
.y1bf{bottom:176.464650px;}
.y19f{bottom:178.112100px;}
.y122{bottom:181.354200px;}
.y10f{bottom:183.768450px;}
.yd4{bottom:187.861350px;}
.y8b{bottom:187.907400px;}
.yfc{bottom:188.182350px;}
.y41{bottom:188.644350px;}
.y13c{bottom:188.885700px;}
.yad{bottom:189.194550px;}
.y1c{bottom:190.159650px;}
.yeb{bottom:192.653250px;}
.y64{bottom:195.544950px;}
.y1be{bottom:196.714650px;}
.y19e{bottom:199.642350px;}
.y121{bottom:201.605700px;}
.y17e{bottom:202.398600px;}
.yd3{bottom:208.285350px;}
.yfb{bottom:208.433850px;}
.y8a{bottom:208.521150px;}
.y13b{bottom:209.137200px;}
.y40{bottom:209.189100px;}
.y1b{bottom:209.779650px;}
.yac{bottom:209.929050px;}
.yea{bottom:212.904750px;}
.y1bd{bottom:216.970500px;}
.y120{bottom:221.857200px;}
.y17d{bottom:222.842100px;}
.y15e{bottom:225.693000px;}
.y19d{bottom:228.401850px;}
.yfa{bottom:228.685350px;}
.yd2{bottom:228.709350px;}
.y89{bottom:229.134900px;}
.y13a{bottom:229.360200px;}
.y3f{bottom:229.733850px;}
.yab{bottom:230.663550px;}
.ye9{bottom:233.156250px;}
.y63{bottom:239.498550px;}
.y11f{bottom:242.108700px;}
.y1a{bottom:242.149650px;}
.y15d{bottom:246.151500px;}
.yf9{bottom:248.936850px;}
.yd1{bottom:249.133350px;}
.y139{bottom:249.611700px;}
.y88{bottom:249.748650px;}
.y19c{bottom:249.932100px;}
.y1bc{bottom:249.970500px;}
.y3e{bottom:250.278600px;}
.y17c{bottom:250.514850px;}
.yaa{bottom:251.398050px;}
.ye8{bottom:253.407750px;}
.y62{bottom:260.060550px;}
.y11e{bottom:262.360200px;}
.y15c{bottom:266.610000px;}
.yf8{bottom:269.188350px;}
.yd0{bottom:269.557350px;}
.y138{bottom:269.863200px;}
.y87{bottom:270.362400px;}
.y3d{bottom:270.823350px;}
.y17b{bottom:270.958350px;}
.ya9{bottom:272.132550px;}
.ye7{bottom:273.659250px;}
.y19b{bottom:278.691600px;}
.y61{bottom:280.622550px;}
.y11d{bottom:282.611700px;}
.y15b{bottom:287.068500px;}
.yf7{bottom:289.439850px;}
.ycf{bottom:289.981350px;}
.y137{bottom:290.114700px;}
.y86{bottom:290.976150px;}
.y3c{bottom:291.368100px;}
.y1bb{bottom:291.486300px;}
.y19{bottom:291.529650px;}
.ya8{bottom:292.867050px;}
.ye6{bottom:293.910750px;}
.y17a{bottom:298.631100px;}
.y19a{bottom:300.221850px;}
.y60{bottom:301.184550px;}
.y11c{bottom:302.863200px;}
.y15a{bottom:307.527000px;}
.y136{bottom:310.366200px;}
.yce{bottom:310.405350px;}
.y1ba{bottom:310.986300px;}
.y85{bottom:311.589900px;}
.y3b{bottom:311.912850px;}
.y18{bottom:312.649650px;}
.ya7{bottom:313.601550px;}
.ye5{bottom:314.162250px;}
.y179{bottom:319.074600px;}
.y5f{bottom:321.746550px;}
.y11b{bottom:323.114700px;}
.y159{bottom:327.985500px;}
.y199{bottom:328.981350px;}
.y1b9{bottom:330.486300px;}
.y135{bottom:330.617700px;}
.ycd{bottom:330.829350px;}
.yf6{bottom:330.953400px;}
.y84{bottom:332.203650px;}
.y3a{bottom:332.457600px;}
.y17{bottom:333.689400px;}
.ya6{bottom:334.336050px;}
.ye4{bottom:334.413750px;}
.y5e{bottom:342.308550px;}
.y11a{bottom:343.366200px;}
.y178{bottom:346.747350px;}
.y158{bottom:348.444000px;}
.y1b8{bottom:349.986300px;}
.y198{bottom:350.511600px;}
.y134{bottom:350.869200px;}
.ycc{bottom:351.253350px;}
.y83{bottom:352.817400px;}
.y39{bottom:353.002350px;}
.y16{bottom:353.309400px;}
.ye3{bottom:354.665250px;}
.yf5{bottom:354.949650px;}
.ya5{bottom:355.070550px;}
.y5d{bottom:362.870550px;}
.y119{bottom:363.617700px;}
.y177{bottom:367.190850px;}
.y157{bottom:368.902500px;}
.y1b7{bottom:369.486300px;}
.y133{bottom:371.120700px;}
.ycb{bottom:371.677350px;}
.y197{bottom:372.041850px;}
.y15{bottom:372.929400px;}
.y82{bottom:373.431150px;}
.y38{bottom:373.547100px;}
.ye2{bottom:374.916750px;}
.ya4{bottom:375.805050px;}
.y5c{bottom:383.432550px;}
.y118{bottom:383.869200px;}
.y1b6{bottom:388.986300px;}
.y156{bottom:389.361000px;}
.y132{bottom:391.372200px;}
.yca{bottom:392.101350px;}
.y14{bottom:392.549400px;}
.y81{bottom:394.044900px;}
.y37{bottom:394.091850px;}
.y176{bottom:394.863600px;}
.ye1{bottom:395.168250px;}
.ya3{bottom:396.539550px;}
.y196{bottom:400.801350px;}
.y5b{bottom:403.994550px;}
.y117{bottom:404.120700px;}
.y1b5{bottom:408.486300px;}
.y155{bottom:409.819500px;}
.y131{bottom:411.623700px;}
.y13{bottom:412.169400px;}
.yc9{bottom:412.525350px;}
.y36{bottom:414.636600px;}
.y80{bottom:414.658650px;}
.y175{bottom:415.307100px;}
.ye0{bottom:415.419750px;}
.yf4{bottom:417.217500px;}
.ya2{bottom:417.274050px;}
.y195{bottom:422.331600px;}
.y5a{bottom:424.556550px;}
.y1b4{bottom:427.986300px;}
.y154{bottom:430.278000px;}
.y12{bottom:431.789400px;}
.y130{bottom:431.875200px;}
.yc8{bottom:432.949350px;}
.y35{bottom:435.181350px;}
.y7f{bottom:435.272400px;}
.ydf{bottom:435.671250px;}
.y116{bottom:437.126700px;}
.ya1{bottom:438.008550px;}
.y174{bottom:442.979850px;}
.y59{bottom:445.118550px;}
.y1b3{bottom:447.486300px;}
.y153{bottom:450.736500px;}
.y194{bottom:451.091100px;}
.y11{bottom:451.409400px;}
.y12f{bottom:452.126700px;}
.yc7{bottom:453.373350px;}
.y34{bottom:455.726100px;}
.y7e{bottom:455.886150px;}
.yde{bottom:455.922750px;}
.ya0{bottom:458.743050px;}
.y173{bottom:463.423350px;}
.y1b2{bottom:466.986300px;}
.y10{bottom:471.029400px;}
.y152{bottom:471.195000px;}
.y12e{bottom:472.378200px;}
.y193{bottom:472.621350px;}
.yc6{bottom:473.797350px;}
.ydd{bottom:476.174250px;}
.y33{bottom:476.270850px;}
.y7d{bottom:476.499900px;}
.y10e{bottom:477.433350px;}
.y9f{bottom:479.477550px;}
.y1b1{bottom:486.486300px;}
.y58{bottom:486.939450px;}
.yf{bottom:490.649400px;}
.y172{bottom:491.096100px;}
.y151{bottom:491.653500px;}
.y12d{bottom:492.629700px;}
.yc5{bottom:494.221350px;}
.ydc{bottom:496.425750px;}
.y32{bottom:496.815600px;}
.y7c{bottom:497.113650px;}
.y10d{bottom:497.684850px;}
.y192{bottom:501.380850px;}
.y1b0{bottom:505.986300px;}
.ye{bottom:510.269400px;}
.y57{bottom:511.239450px;}
.y150{bottom:512.112000px;}
.y12c{bottom:512.881200px;}
.yc4{bottom:514.645350px;}
.y31{bottom:517.360350px;}
.y7b{bottom:517.727400px;}
.y10c{bottom:517.936350px;}
.y171{bottom:518.768850px;}
.y9e{bottom:521.469300px;}
.y191{bottom:522.911100px;}
.y1af{bottom:525.486300px;}
.yd{bottom:529.889400px;}
.y14f{bottom:532.570500px;}
.y12b{bottom:533.132700px;}
.ydb{bottom:533.683650px;}
.yc3{bottom:535.069350px;}
.y30{bottom:537.905100px;}
.y10b{bottom:538.187850px;}
.y7a{bottom:538.341150px;}
.y1ae{bottom:544.986300px;}
.y9d{bottom:545.951550px;}
.y170{bottom:546.441600px;}
.yc{bottom:549.509400px;}
.y190{bottom:551.670600px;}
.y14e{bottom:553.029000px;}
.y12a{bottom:553.384200px;}
.yc2{bottom:555.493350px;}
.y10a{bottom:558.439350px;}
.y2f{bottom:558.449850px;}
.y79{bottom:558.954900px;}
.y1ad{bottom:564.486300px;}
.y9c{bottom:570.433800px;}
.y18f{bottom:573.200850px;}
.y14d{bottom:573.487500px;}
.y129{bottom:573.635700px;}
.y56{bottom:573.786900px;}
.y16f{bottom:574.114350px;}
.yc1{bottom:575.917350px;}
.y109{bottom:578.690850px;}
.y2e{bottom:578.994600px;}
.y78{bottom:579.568650px;}
.yb{bottom:581.879400px;}
.y1ac{bottom:583.986300px;}
.y128{bottom:593.887200px;}
.y14c{bottom:593.946000px;}
.y55{bottom:594.348900px;}
.y16e{bottom:594.557850px;}
.yc0{bottom:596.341350px;}
.y108{bottom:598.942350px;}
.y77{bottom:600.182400px;}
.y18e{bottom:601.960350px;}
.y1ab{bottom:603.486300px;}
.y127{bottom:614.138700px;}
.y14b{bottom:614.404500px;}
.y54{bottom:614.910900px;}
.ybf{bottom:616.765350px;}
.y107{bottom:619.193850px;}
.y76{bottom:620.796150px;}
.y2d{bottom:620.806350px;}
.y16d{bottom:622.230600px;}
.y1aa{bottom:622.986300px;}
.y18d{bottom:623.490600px;}
.y9b{bottom:633.152850px;}
.y14a{bottom:634.863000px;}
.y53{bottom:635.472900px;}
.ybe{bottom:637.189350px;}
.y106{bottom:639.445350px;}
.ya{bottom:639.760500px;}
.y115{bottom:640.431450px;}
.y75{bottom:641.409900px;}
.y1a9{bottom:642.486300px;}
.y126{bottom:647.144550px;}
.y16c{bottom:649.903350px;}
.y18c{bottom:652.250100px;}
.y9a{bottom:653.887350px;}
.y149{bottom:655.321500px;}
.y52{bottom:655.957350px;}
.ybd{bottom:657.613350px;}
.y105{bottom:659.696850px;}
.y114{bottom:660.682950px;}
.y74{bottom:662.023650px;}
.y125{bottom:667.394550px;}
.y16b{bottom:670.346850px;}
.y18b{bottom:673.780350px;}
.y99{bottom:674.621850px;}
.y1a8{bottom:674.736300px;}
.y148{bottom:675.780000px;}
.y51{bottom:676.519350px;}
.ybc{bottom:678.037350px;}
.y104{bottom:679.948350px;}
.y113{bottom:680.934450px;}
.y73{bottom:682.656900px;}
.y2c{bottom:683.377950px;}
.y9{bottom:688.130100px;}
.y18a{bottom:695.310600px;}
.y98{bottom:695.356350px;}
.y147{bottom:696.238500px;}
.y50{bottom:697.081350px;}
.y16a{bottom:698.019600px;}
.ybb{bottom:698.461350px;}
.y103{bottom:700.199850px;}
.y72{bottom:703.270650px;}
.y2b{bottom:704.677950px;}
.y112{bottom:713.944050px;}
.y97{bottom:716.090850px;}
.y146{bottom:716.697000px;}
.y4f{bottom:717.643350px;}
.y169{bottom:718.463100px;}
.yba{bottom:718.885350px;}
.y8{bottom:719.747100px;}
.y102{bottom:720.437850px;}
.y71{bottom:723.884400px;}
.y189{bottom:724.070100px;}
.y2a{bottom:725.997750px;}
.y1a7{bottom:732.504000px;}
.y96{bottom:736.825350px;}
.y145{bottom:737.155500px;}
.y4e{bottom:738.205350px;}
.yb9{bottom:739.309350px;}
.y101{bottom:740.689350px;}
.y70{bottom:744.498150px;}
.y188{bottom:745.600350px;}
.y29{bottom:745.797750px;}
.y168{bottom:746.135850px;}
.y95{bottom:757.559850px;}
.y144{bottom:757.614000px;}
.y4d{bottom:758.767350px;}
.yb8{bottom:759.733350px;}
.yf3{bottom:760.940850px;}
.y6f{bottom:765.111900px;}
.y28{bottom:765.597750px;}
.y167{bottom:766.579350px;}
.y187{bottom:774.359850px;}
.y94{bottom:778.294350px;}
.y4c{bottom:779.329350px;}
.yb7{bottom:780.157350px;}
.y7{bottom:781.125600px;}
.yf2{bottom:781.192350px;}
.y27{bottom:785.397750px;}
.y6e{bottom:785.725650px;}
.y166{bottom:787.022850px;}
.y186{bottom:795.890100px;}
.y93{bottom:799.028850px;}
.y143{bottom:799.326450px;}
.y4b{bottom:799.891350px;}
.yb6{bottom:800.581350px;}
.yf1{bottom:801.443850px;}
.y26{bottom:805.197750px;}
.y165{bottom:807.466350px;}
.y1a6{bottom:808.237650px;}
.y6{bottom:810.735600px;}
.y92{bottom:819.763350px;}
.y4a{bottom:820.453350px;}
.yb5{bottom:821.005350px;}
.yf0{bottom:821.695350px;}
.y185{bottom:824.649600px;}
.y25{bottom:824.997750px;}
.y6d{bottom:827.623950px;}
.y1a5{bottom:828.492150px;}
.y5{bottom:831.855600px;}
.y164{bottom:835.139100px;}
.y91{bottom:840.497850px;}
.y49{bottom:841.015350px;}
.yb4{bottom:841.429350px;}
.yef{bottom:841.946850px;}
.y24{bottom:844.797750px;}
.y6c{bottom:851.984700px;}
.y184{bottom:853.409100px;}
.y163{bottom:855.582600px;}
.y1a4{bottom:855.960600px;}
.y90{bottom:861.232350px;}
.y4{bottom:861.465600px;}
.y48{bottom:861.577350px;}
.y142{bottom:861.784350px;}
.yb3{bottom:861.853350px;}
.yda{bottom:862.198350px;}
.y23{bottom:864.597750px;}
.y183{bottom:874.939350px;}
.y6b{bottom:876.345450px;}
.y8f{bottom:881.966850px;}
.y47{bottom:882.139350px;}
.y141{bottom:882.242850px;}
.yb2{bottom:882.277350px;}
.yd9{bottom:882.449850px;}
.y3{bottom:882.585600px;}
.y162{bottom:883.255350px;}
.y1a3{bottom:883.444350px;}
.y22{bottom:884.397750px;}
.y6a{bottom:900.706200px;}
.y46{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:904.197750px;}
.y20{bottom:948.189000px;}
.h9{height:37.983820px;}
.hb{height:44.414062px;}
.ha{height:49.965820px;}
.h11{height:51.969727px;}
.h4{height:55.517578px;}
.h13{height:57.729741px;}
.h8{height:57.744141px;}
.h3{height:58.293457px;}
.h15{height:60.631348px;}
.h16{height:61.069336px;}
.h17{height:63.518555px;}
.hd{height:63.845215px;}
.h12{height:63.899215px;}
.h14{height:63.923215px;}
.hf{height:64.155415px;}
.he{height:66.405762px;}
.h2{height:69.396973px;}
.hc{height:74.948730px;}
.h10{height:77.954590px;}
.h7{height:80.841797px;}
.h6{height:99.931641px;}
.h5{height:103.939453px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xc{left:80.939400px;}
.x7{left:82.845600px;}
.xe{left:84.000300px;}
.x1{left:85.039350px;}
.xa{left:103.726950px;}
.x8{left:105.029250px;}
.x6{left:106.365600px;}
.xd{left:200.573100px;}
.xb{left:201.931200px;}
.x9{left:212.664000px;}
.x4{left:230.001300px;}
.x5{left:231.330450px;}
.x2{left:232.601400px;}
.x3{left:233.748450px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.426667pt;}
.v3{vertical-align:15.366400pt;}
.v1{vertical-align:26.647467pt;}
.ls7{letter-spacing:-9.024000pt;}
.lsf{letter-spacing:-6.552000pt;}
.ls17{letter-spacing:-5.904000pt;}
.ls18{letter-spacing:-3.240000pt;}
.ls6{letter-spacing:-3.072000pt;}
.ls11{letter-spacing:-2.160000pt;}
.ls16{letter-spacing:-1.874667pt;}
.ls29{letter-spacing:-1.760000pt;}
.ls21{letter-spacing:-1.717333pt;}
.ls8{letter-spacing:-1.642667pt;}
.ls19{letter-spacing:-1.512000pt;}
.ls30{letter-spacing:-1.288000pt;}
.ls27{letter-spacing:-1.080000pt;}
.ls1a{letter-spacing:-0.936000pt;}
.lse{letter-spacing:-0.760000pt;}
.ls10{letter-spacing:-0.693333pt;}
.ls2f{letter-spacing:-0.560000pt;}
.ls26{letter-spacing:-0.557333pt;}
.ls1b{letter-spacing:-0.245333pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls2b{letter-spacing:-0.152000pt;}
.ls2c{letter-spacing:-0.072000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.003733pt;}
.ls31{letter-spacing:0.004267pt;}
.ls23{letter-spacing:0.013333pt;}
.ls24{letter-spacing:0.037333pt;}
.ls1d{letter-spacing:0.072000pt;}
.ls2e{letter-spacing:0.168000pt;}
.ls15{letter-spacing:0.490667pt;}
.ls1c{letter-spacing:1.317333pt;}
.lsc{letter-spacing:2.133333pt;}
.ls13{letter-spacing:2.392000pt;}
.ls20{letter-spacing:2.866667pt;}
.lsd{letter-spacing:3.666667pt;}
.ls28{letter-spacing:3.700800pt;}
.ls25{letter-spacing:3.714133pt;}
.ls22{letter-spacing:3.714667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls1f{letter-spacing:4.048000pt;}
.ls2a{letter-spacing:4.133333pt;}
.ls9{letter-spacing:5.120000pt;}
.lsa{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.lsb{letter-spacing:5.600000pt;}
.ls12{letter-spacing:5.704000pt;}
.ls33{letter-spacing:5.866667pt;}
.ls2d{letter-spacing:6.843200pt;}
.ls3{letter-spacing:7.466667pt;}
.ls14{letter-spacing:7.973333pt;}
.ls1e{letter-spacing:9.384000pt;}
.ws29{word-spacing:-22.866667pt;}
.wsb{word-spacing:-22.400000pt;}
.ws20{word-spacing:-21.600000pt;}
.ws0{word-spacing:-20.640000pt;}
.ws32{word-spacing:-20.320000pt;}
.ws1c{word-spacing:-20.304000pt;}
.ws4{word-spacing:-20.213333pt;}
.ws2a{word-spacing:-20.160000pt;}
.ws3{word-spacing:-20.106667pt;}
.ws16{word-spacing:-19.296000pt;}
.ws23{word-spacing:-19.152000pt;}
.ws1{word-spacing:-17.952000pt;}
.ws12{word-spacing:-17.234667pt;}
.ws2{word-spacing:-16.800000pt;}
.ws27{word-spacing:-16.485333pt;}
.ws15{word-spacing:-16.272000pt;}
.wsc{word-spacing:-16.090667pt;}
.ws14{word-spacing:-15.624000pt;}
.wse{word-spacing:-15.149333pt;}
.ws1b{word-spacing:-14.904000pt;}
.ws2f{word-spacing:-14.000000pt;}
.ws2e{word-spacing:-13.832000pt;}
.wsd{word-spacing:-13.680000pt;}
.ws25{word-spacing:-13.173333pt;}
.ws31{word-spacing:-12.544000pt;}
.ws11{word-spacing:-12.480000pt;}
.ws26{word-spacing:-11.413333pt;}
.ws22{word-spacing:-10.528000pt;}
.ws13{word-spacing:-10.047811pt;}
.ws7{word-spacing:-7.466667pt;}
.ws33{word-spacing:-5.866667pt;}
.ws2d{word-spacing:-5.600000pt;}
.ws6{word-spacing:-5.333333pt;}
.wsa{word-spacing:-3.733333pt;}
.wsf{word-spacing:-2.133333pt;}
.ws1f{word-spacing:-1.317333pt;}
.ws1e{word-spacing:-0.797333pt;}
.ws5{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.152000pt;}
.ws8{word-spacing:0.160000pt;}
.ws9{word-spacing:0.213333pt;}
.ws1d{word-spacing:0.245333pt;}
.ws24{word-spacing:0.557333pt;}
.ws30{word-spacing:0.560000pt;}
.ws10{word-spacing:0.760000pt;}
.ws21{word-spacing:1.717333pt;}
.ws17{word-spacing:1.874667pt;}
.ws1a{word-spacing:3.240000pt;}
.ws28{word-spacing:3.618667pt;}
.ws19{word-spacing:5.904000pt;}
.ws2b{word-spacing:6.378667pt;}
.ws18{word-spacing:6.552000pt;}
._f{margin-left:-15.520000pt;}
._21{margin-left:-9.407733pt;}
._1a{margin-left:-7.393067pt;}
._1b{margin-left:-6.376533pt;}
._10{margin-left:-5.036000pt;}
._5{margin-left:-3.539200pt;}
._4{margin-left:-1.792000pt;}
._e{margin-left:-0.891200pt;}
._3{width:0.985867pt;}
._1{width:2.133333pt;}
._9{width:3.674667pt;}
._6{width:5.345600pt;}
._7{width:6.412800pt;}
._8{width:7.672533pt;}
._c{width:8.752533pt;}
._b{width:10.243200pt;}
._a{width:11.481600pt;}
._d{width:12.532800pt;}
._12{width:13.602667pt;}
._14{width:14.752560pt;}
._1d{width:15.706933pt;}
._25{width:16.816800pt;}
._22{width:17.880000pt;}
._23{width:19.415200pt;}
._19{width:20.780533pt;}
._17{width:21.976000pt;}
._27{width:27.882400pt;}
._26{width:31.864000pt;}
._13{width:38.617920pt;}
._28{width:53.787733pt;}
._11{width:76.048000pt;}
._16{width:231.653333pt;}
._20{width:405.978667pt;}
._24{width:407.526400pt;}
._15{width:408.939733pt;}
._1c{width:410.247467pt;}
._0{width:514.133333pt;}
._2{width:849.521067pt;}
._1e{width:852.294400pt;}
._1f{width:855.894400pt;}
._18{width:857.654400pt;}
.fs7{font-size:27.984000pt;}
.fse{font-size:31.093333pt;}
.fsd{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:55.968000pt;}
.fs2{font-size:56.000000pt;}
.fsf{font-size:58.666667pt;}
.fsc{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fsb{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yee{bottom:93.258133pt;}
.yd8{bottom:94.369200pt;}
.y182{bottom:94.369867pt;}
.yb1{bottom:94.450267pt;}
.y69{bottom:94.475067pt;}
.y161{bottom:94.475333pt;}
.y1a2{bottom:94.481867pt;}
.y8e{bottom:94.482933pt;}
.y1f{bottom:94.485733pt;}
.y45{bottom:94.635867pt;}
.y100{bottom:95.267867pt;}
.y140{bottom:95.893067pt;}
.y68{bottom:109.811067pt;}
.y8d{bottom:109.818933pt;}
.y1e{bottom:112.484400pt;}
.yd7{bottom:112.523867pt;}
.y181{bottom:112.541867pt;}
.y160{bottom:112.661333pt;}
.yb0{bottom:112.880933pt;}
.y44{bottom:112.897867pt;}
.yff{bottom:113.269200pt;}
.y1a1{bottom:113.619867pt;}
.y13f{bottom:113.894400pt;}
.y111{bottom:116.009867pt;}
.y67{bottom:125.147067pt;}
.y124{bottom:125.201067pt;}
.y8c{bottom:127.817600pt;}
.yd6{bottom:130.678533pt;}
.y43{bottom:131.159867pt;}
.yfe{bottom:131.270533pt;}
.yaf{bottom:131.311600pt;}
.y13e{bottom:131.895733pt;}
.y1a0{bottom:132.757867pt;}
.y110{bottom:134.011200pt;}
.yed{bottom:135.244667pt;}
.y180{bottom:137.139867pt;}
.y15f{bottom:137.273333pt;}
.y1c0{bottom:138.857467pt;}
.y66{bottom:140.483067pt;}
.y123{bottom:143.202400pt;}
.yd5{bottom:148.833200pt;}
.yfd{bottom:149.271867pt;}
.y42{bottom:149.421867pt;}
.yae{bottom:149.742267pt;}
.y13d{bottom:149.897067pt;}
.y1d{bottom:151.590800pt;}
.yec{bottom:153.246000pt;}
.y17f{bottom:155.311867pt;}
.y65{bottom:155.819067pt;}
.y1bf{bottom:156.857467pt;}
.y19f{bottom:158.321867pt;}
.y122{bottom:161.203733pt;}
.y10f{bottom:163.349733pt;}
.yd4{bottom:166.987867pt;}
.y8b{bottom:167.028800pt;}
.yfc{bottom:167.273200pt;}
.y41{bottom:167.683867pt;}
.y13c{bottom:167.898400pt;}
.yad{bottom:168.172933pt;}
.y1c{bottom:169.030800pt;}
.yeb{bottom:171.247333pt;}
.y64{bottom:173.817733pt;}
.y1be{bottom:174.857467pt;}
.y19e{bottom:177.459867pt;}
.y121{bottom:179.205067pt;}
.y17e{bottom:179.909867pt;}
.yd3{bottom:185.142533pt;}
.yfb{bottom:185.274533pt;}
.y8a{bottom:185.352133pt;}
.y13b{bottom:185.899733pt;}
.y40{bottom:185.945867pt;}
.y1b{bottom:186.470800pt;}
.yac{bottom:186.603600pt;}
.yea{bottom:189.248667pt;}
.y1bd{bottom:192.862667pt;}
.y120{bottom:197.206400pt;}
.y17d{bottom:198.081867pt;}
.y15e{bottom:200.616000pt;}
.y19d{bottom:203.023867pt;}
.yfa{bottom:203.275867pt;}
.yd2{bottom:203.297200pt;}
.y89{bottom:203.675467pt;}
.y13a{bottom:203.875733pt;}
.y3f{bottom:204.207867pt;}
.yab{bottom:205.034267pt;}
.ye9{bottom:207.250000pt;}
.y63{bottom:212.887600pt;}
.y11f{bottom:215.207733pt;}
.y1a{bottom:215.244133pt;}
.y15d{bottom:218.801333pt;}
.yf9{bottom:221.277200pt;}
.yd1{bottom:221.451867pt;}
.y139{bottom:221.877067pt;}
.y88{bottom:221.998800pt;}
.y19c{bottom:222.161867pt;}
.y1bc{bottom:222.196000pt;}
.y3e{bottom:222.469867pt;}
.y17c{bottom:222.679867pt;}
.yaa{bottom:223.464933pt;}
.ye8{bottom:225.251333pt;}
.y62{bottom:231.164933pt;}
.y11e{bottom:233.209067pt;}
.y15c{bottom:236.986667pt;}
.yf8{bottom:239.278533pt;}
.yd0{bottom:239.606533pt;}
.y138{bottom:239.878400pt;}
.y87{bottom:240.322133pt;}
.y3d{bottom:240.731867pt;}
.y17b{bottom:240.851867pt;}
.ya9{bottom:241.895600pt;}
.ye7{bottom:243.252667pt;}
.y19b{bottom:247.725867pt;}
.y61{bottom:249.442267pt;}
.y11d{bottom:251.210400pt;}
.y15b{bottom:255.172000pt;}
.yf7{bottom:257.279867pt;}
.ycf{bottom:257.761200pt;}
.y137{bottom:257.879733pt;}
.y86{bottom:258.645467pt;}
.y3c{bottom:258.993867pt;}
.y1bb{bottom:259.098933pt;}
.y19{bottom:259.137467pt;}
.ya8{bottom:260.326267pt;}
.ye6{bottom:261.254000pt;}
.y17a{bottom:265.449867pt;}
.y19a{bottom:266.863867pt;}
.y60{bottom:267.719600pt;}
.y11c{bottom:269.211733pt;}
.y15a{bottom:273.357333pt;}
.y136{bottom:275.881067pt;}
.yce{bottom:275.915867pt;}
.y1ba{bottom:276.432267pt;}
.y85{bottom:276.968800pt;}
.y3b{bottom:277.255867pt;}
.y18{bottom:277.910800pt;}
.ya7{bottom:278.756933pt;}
.ye5{bottom:279.255333pt;}
.y179{bottom:283.621867pt;}
.y5f{bottom:285.996933pt;}
.y11b{bottom:287.213067pt;}
.y159{bottom:291.542667pt;}
.y199{bottom:292.427867pt;}
.y1b9{bottom:293.765600pt;}
.y135{bottom:293.882400pt;}
.ycd{bottom:294.070533pt;}
.yf6{bottom:294.180800pt;}
.y84{bottom:295.292133pt;}
.y3a{bottom:295.517867pt;}
.y17{bottom:296.612800pt;}
.ya6{bottom:297.187600pt;}
.ye4{bottom:297.256667pt;}
.y5e{bottom:304.274267pt;}
.y11a{bottom:305.214400pt;}
.y178{bottom:308.219867pt;}
.y158{bottom:309.728000pt;}
.y1b8{bottom:311.098933pt;}
.y198{bottom:311.565867pt;}
.y134{bottom:311.883733pt;}
.ycc{bottom:312.225200pt;}
.y83{bottom:313.615467pt;}
.y39{bottom:313.779867pt;}
.y16{bottom:314.052800pt;}
.ye3{bottom:315.258000pt;}
.yf5{bottom:315.510800pt;}
.ya5{bottom:315.618267pt;}
.y5d{bottom:322.551600pt;}
.y119{bottom:323.215733pt;}
.y177{bottom:326.391867pt;}
.y157{bottom:327.913333pt;}
.y1b7{bottom:328.432267pt;}
.y133{bottom:329.885067pt;}
.ycb{bottom:330.379867pt;}
.y197{bottom:330.703867pt;}
.y15{bottom:331.492800pt;}
.y82{bottom:331.938800pt;}
.y38{bottom:332.041867pt;}
.ye2{bottom:333.259333pt;}
.ya4{bottom:334.048933pt;}
.y5c{bottom:340.828933pt;}
.y118{bottom:341.217067pt;}
.y1b6{bottom:345.765600pt;}
.y156{bottom:346.098667pt;}
.y132{bottom:347.886400pt;}
.yca{bottom:348.534533pt;}
.y14{bottom:348.932800pt;}
.y81{bottom:350.262133pt;}
.y37{bottom:350.303867pt;}
.y176{bottom:350.989867pt;}
.ye1{bottom:351.260667pt;}
.ya3{bottom:352.479600pt;}
.y196{bottom:356.267867pt;}
.y5b{bottom:359.106267pt;}
.y117{bottom:359.218400pt;}
.y1b5{bottom:363.098933pt;}
.y155{bottom:364.284000pt;}
.y131{bottom:365.887733pt;}
.y13{bottom:366.372800pt;}
.yc9{bottom:366.689200pt;}
.y36{bottom:368.565867pt;}
.y80{bottom:368.585467pt;}
.y175{bottom:369.161867pt;}
.ye0{bottom:369.262000pt;}
.yf4{bottom:370.860000pt;}
.ya2{bottom:370.910267pt;}
.y195{bottom:375.405867pt;}
.y5a{bottom:377.383600pt;}
.y1b4{bottom:380.432267pt;}
.y154{bottom:382.469333pt;}
.y12{bottom:383.812800pt;}
.y130{bottom:383.889067pt;}
.yc8{bottom:384.843867pt;}
.y35{bottom:386.827867pt;}
.y7f{bottom:386.908800pt;}
.ydf{bottom:387.263333pt;}
.y116{bottom:388.557067pt;}
.ya1{bottom:389.340933pt;}
.y174{bottom:393.759867pt;}
.y59{bottom:395.660933pt;}
.y1b3{bottom:397.765600pt;}
.y153{bottom:400.654667pt;}
.y194{bottom:400.969867pt;}
.y11{bottom:401.252800pt;}
.y12f{bottom:401.890400pt;}
.yc7{bottom:402.998533pt;}
.y34{bottom:405.089867pt;}
.y7e{bottom:405.232133pt;}
.yde{bottom:405.264667pt;}
.ya0{bottom:407.771600pt;}
.y173{bottom:411.931867pt;}
.y1b2{bottom:415.098933pt;}
.y10{bottom:418.692800pt;}
.y152{bottom:418.840000pt;}
.y12e{bottom:419.891733pt;}
.y193{bottom:420.107867pt;}
.yc6{bottom:421.153200pt;}
.ydd{bottom:423.266000pt;}
.y33{bottom:423.351867pt;}
.y7d{bottom:423.555467pt;}
.y10e{bottom:424.385200pt;}
.y9f{bottom:426.202267pt;}
.y1b1{bottom:432.432267pt;}
.y58{bottom:432.835067pt;}
.yf{bottom:436.132800pt;}
.y172{bottom:436.529867pt;}
.y151{bottom:437.025333pt;}
.y12d{bottom:437.893067pt;}
.yc5{bottom:439.307867pt;}
.ydc{bottom:441.267333pt;}
.y32{bottom:441.613867pt;}
.y7c{bottom:441.878800pt;}
.y10d{bottom:442.386533pt;}
.y192{bottom:445.671867pt;}
.y1b0{bottom:449.765600pt;}
.ye{bottom:453.572800pt;}
.y57{bottom:454.435067pt;}
.y150{bottom:455.210667pt;}
.y12c{bottom:455.894400pt;}
.yc4{bottom:457.462533pt;}
.y31{bottom:459.875867pt;}
.y7b{bottom:460.202133pt;}
.y10c{bottom:460.387867pt;}
.y171{bottom:461.127867pt;}
.y9e{bottom:463.528267pt;}
.y191{bottom:464.809867pt;}
.y1af{bottom:467.098933pt;}
.yd{bottom:471.012800pt;}
.y14f{bottom:473.396000pt;}
.y12b{bottom:473.895733pt;}
.ydb{bottom:474.385467pt;}
.yc3{bottom:475.617200pt;}
.y30{bottom:478.137867pt;}
.y10b{bottom:478.389200pt;}
.y7a{bottom:478.525467pt;}
.y1ae{bottom:484.432267pt;}
.y9d{bottom:485.290267pt;}
.y170{bottom:485.725867pt;}
.yc{bottom:488.452800pt;}
.y190{bottom:490.373867pt;}
.y14e{bottom:491.581333pt;}
.y12a{bottom:491.897067pt;}
.yc2{bottom:493.771867pt;}
.y10a{bottom:496.390533pt;}
.y2f{bottom:496.399867pt;}
.y79{bottom:496.848800pt;}
.y1ad{bottom:501.765600pt;}
.y9c{bottom:507.052267pt;}
.y18f{bottom:509.511867pt;}
.y14d{bottom:509.766667pt;}
.y129{bottom:509.898400pt;}
.y56{bottom:510.032800pt;}
.y16f{bottom:510.323867pt;}
.yc1{bottom:511.926533pt;}
.y109{bottom:514.391867pt;}
.y2e{bottom:514.661867pt;}
.y78{bottom:515.172133pt;}
.yb{bottom:517.226133pt;}
.y1ac{bottom:519.098933pt;}
.y128{bottom:527.899733pt;}
.y14c{bottom:527.952000pt;}
.y55{bottom:528.310133pt;}
.y16e{bottom:528.495867pt;}
.yc0{bottom:530.081200pt;}
.y108{bottom:532.393200pt;}
.y77{bottom:533.495467pt;}
.y18e{bottom:535.075867pt;}
.y1ab{bottom:536.432267pt;}
.y127{bottom:545.901067pt;}
.y14b{bottom:546.137333pt;}
.y54{bottom:546.587467pt;}
.ybf{bottom:548.235867pt;}
.y107{bottom:550.394533pt;}
.y76{bottom:551.818800pt;}
.y2d{bottom:551.827867pt;}
.y16d{bottom:553.093867pt;}
.y1aa{bottom:553.765600pt;}
.y18d{bottom:554.213867pt;}
.y9b{bottom:562.802533pt;}
.y14a{bottom:564.322667pt;}
.y53{bottom:564.864800pt;}
.ybe{bottom:566.390533pt;}
.y106{bottom:568.395867pt;}
.ya{bottom:568.676000pt;}
.y115{bottom:569.272400pt;}
.y75{bottom:570.142133pt;}
.y1a9{bottom:571.098933pt;}
.y126{bottom:575.239600pt;}
.y16c{bottom:577.691867pt;}
.y18c{bottom:579.777867pt;}
.y9a{bottom:581.233200pt;}
.y149{bottom:582.508000pt;}
.y52{bottom:583.073200pt;}
.ybd{bottom:584.545200pt;}
.y105{bottom:586.397200pt;}
.y114{bottom:587.273733pt;}
.y74{bottom:588.465467pt;}
.y125{bottom:593.239600pt;}
.y16b{bottom:595.863867pt;}
.y18b{bottom:598.915867pt;}
.y99{bottom:599.663867pt;}
.y1a8{bottom:599.765600pt;}
.y148{bottom:600.693333pt;}
.y51{bottom:601.350533pt;}
.ybc{bottom:602.699867pt;}
.y104{bottom:604.398533pt;}
.y113{bottom:605.275067pt;}
.y73{bottom:606.806133pt;}
.y2c{bottom:607.447067pt;}
.y9{bottom:611.671200pt;}
.y18a{bottom:618.053867pt;}
.y98{bottom:618.094533pt;}
.y147{bottom:618.878667pt;}
.y50{bottom:619.627867pt;}
.y16a{bottom:620.461867pt;}
.ybb{bottom:620.854533pt;}
.y103{bottom:622.399867pt;}
.y72{bottom:625.129467pt;}
.y2b{bottom:626.380400pt;}
.y112{bottom:634.616933pt;}
.y97{bottom:636.525200pt;}
.y146{bottom:637.064000pt;}
.y4f{bottom:637.905200pt;}
.y169{bottom:638.633867pt;}
.yba{bottom:639.009200pt;}
.y8{bottom:639.775200pt;}
.y102{bottom:640.389200pt;}
.y71{bottom:643.452800pt;}
.y189{bottom:643.617867pt;}
.y2a{bottom:645.331333pt;}
.y1a7{bottom:651.114667pt;}
.y96{bottom:654.955867pt;}
.y145{bottom:655.249333pt;}
.y4e{bottom:656.182533pt;}
.yb9{bottom:657.163867pt;}
.y101{bottom:658.390533pt;}
.y70{bottom:661.776133pt;}
.y188{bottom:662.755867pt;}
.y29{bottom:662.931333pt;}
.y168{bottom:663.231867pt;}
.y95{bottom:673.386533pt;}
.y144{bottom:673.434667pt;}
.y4d{bottom:674.459867pt;}
.yb8{bottom:675.318533pt;}
.yf3{bottom:676.391867pt;}
.y6f{bottom:680.099467pt;}
.y28{bottom:680.531333pt;}
.y167{bottom:681.403867pt;}
.y187{bottom:688.319867pt;}
.y94{bottom:691.817200pt;}
.y4c{bottom:692.737200pt;}
.yb7{bottom:693.473200pt;}
.y7{bottom:694.333867pt;}
.yf2{bottom:694.393200pt;}
.y27{bottom:698.131333pt;}
.y6e{bottom:698.422800pt;}
.y166{bottom:699.575867pt;}
.y186{bottom:707.457867pt;}
.y93{bottom:710.247867pt;}
.y143{bottom:710.512400pt;}
.y4b{bottom:711.014533pt;}
.yb6{bottom:711.627867pt;}
.yf1{bottom:712.394533pt;}
.y26{bottom:715.731333pt;}
.y165{bottom:717.747867pt;}
.y1a6{bottom:718.433467pt;}
.y6{bottom:720.653867pt;}
.y92{bottom:728.678533pt;}
.y4a{bottom:729.291867pt;}
.yb5{bottom:729.782533pt;}
.yf0{bottom:730.395867pt;}
.y185{bottom:733.021867pt;}
.y25{bottom:733.331333pt;}
.y6d{bottom:735.665733pt;}
.y1a5{bottom:736.437467pt;}
.y5{bottom:739.427200pt;}
.y164{bottom:742.345867pt;}
.y91{bottom:747.109200pt;}
.y49{bottom:747.569200pt;}
.yb4{bottom:747.937200pt;}
.yef{bottom:748.397200pt;}
.y24{bottom:750.931333pt;}
.y6c{bottom:757.319733pt;}
.y184{bottom:758.585867pt;}
.y163{bottom:760.517867pt;}
.y1a4{bottom:760.853867pt;}
.y90{bottom:765.539867pt;}
.y4{bottom:765.747200pt;}
.y48{bottom:765.846533pt;}
.y142{bottom:766.030533pt;}
.yb3{bottom:766.091867pt;}
.yda{bottom:766.398533pt;}
.y23{bottom:768.531333pt;}
.y183{bottom:777.723867pt;}
.y6b{bottom:778.973733pt;}
.y8f{bottom:783.970533pt;}
.y47{bottom:784.123867pt;}
.y141{bottom:784.215867pt;}
.yb2{bottom:784.246533pt;}
.yd9{bottom:784.399867pt;}
.y3{bottom:784.520533pt;}
.y162{bottom:785.115867pt;}
.y1a3{bottom:785.283867pt;}
.y22{bottom:786.131333pt;}
.y6a{bottom:800.627733pt;}
.y46{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:803.731333pt;}
.y20{bottom:842.834667pt;}
.h9{height:33.763396pt;}
.hb{height:39.479167pt;}
.ha{height:44.414062pt;}
.h11{height:46.195312pt;}
.h4{height:49.348958pt;}
.h13{height:51.315325pt;}
.h8{height:51.328125pt;}
.h3{height:51.816406pt;}
.h15{height:53.894531pt;}
.h16{height:54.283854pt;}
.h17{height:56.460938pt;}
.hd{height:56.751302pt;}
.h12{height:56.799302pt;}
.h14{height:56.820635pt;}
.hf{height:57.027035pt;}
.he{height:59.027344pt;}
.h2{height:61.686198pt;}
.hc{height:66.621094pt;}
.h10{height:69.292969pt;}
.h7{height:71.859375pt;}
.h6{height:88.828125pt;}
.h5{height:92.390625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xc{left:71.946133pt;}
.x7{left:73.640533pt;}
.xe{left:74.666933pt;}
.x1{left:75.590533pt;}
.xa{left:92.201733pt;}
.x8{left:93.359333pt;}
.x6{left:94.547200pt;}
.xd{left:178.287200pt;}
.xb{left:179.494400pt;}
.x9{left:189.034667pt;}
.x4{left:204.445600pt;}
.x5{left:205.627067pt;}
.x2{left:206.756800pt;}
.x3{left:207.776400pt;}
}




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