
    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_c0c3d34b5cacf8b53b379f92.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893066;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_cbc7be0ef5d0db44cb8aaf89.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6185e484c0f95d679b3db4bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_5bbd6c6bd456264b94807f8d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f37b3d051833249d41c14e05.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_703fd26df45e38e8855ae02a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls2f{letter-spacing:-1.940400px;}
.ls2{letter-spacing:-1.920000px;}
.ls45{letter-spacing:-1.200000px;}
.ls29{letter-spacing:-1.194600px;}
.ls27{letter-spacing:-0.706200px;}
.ls3{letter-spacing:-0.660000px;}
.ls46{letter-spacing:-0.600000px;}
.ls41{letter-spacing:-0.369600px;}
.ls50{letter-spacing:-0.348000px;}
.ls26{letter-spacing:-0.330000px;}
.ls40{letter-spacing:-0.323400px;}
.ls33{letter-spacing:-0.316800px;}
.ls4e{letter-spacing:-0.312000px;}
.ls35{letter-spacing:-0.310200px;}
.ls30{letter-spacing:-0.303600px;}
.ls48{letter-spacing:-0.300000px;}
.ls36{letter-spacing:-0.297000px;}
.ls32{letter-spacing:-0.290400px;}
.ls34{letter-spacing:-0.283800px;}
.ls49{letter-spacing:-0.282000px;}
.ls3b{letter-spacing:-0.277200px;}
.ls4b{letter-spacing:-0.276000px;}
.ls42{letter-spacing:-0.270600px;}
.ls31{letter-spacing:-0.264000px;}
.ls4d{letter-spacing:-0.258000px;}
.ls4f{letter-spacing:-0.252000px;}
.ls38{letter-spacing:-0.250800px;}
.ls4c{letter-spacing:-0.246000px;}
.ls4a{letter-spacing:-0.228000px;}
.ls39{letter-spacing:-0.217800px;}
.ls3a{letter-spacing:-0.165000px;}
.ls37{letter-spacing:-0.059400px;}
.ls2e{letter-spacing:-0.052800px;}
.ls14{letter-spacing:-0.048000px;}
.ls2d{letter-spacing:-0.046200px;}
.ls11{letter-spacing:-0.039600px;}
.lsf{letter-spacing:-0.033000px;}
.ls13{letter-spacing:-0.030000px;}
.ls10{letter-spacing:-0.026400px;}
.ls25{letter-spacing:-0.019800px;}
.ls12{letter-spacing:-0.018000px;}
.ls24{letter-spacing:-0.013200px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.003000px;}
.ls9{letter-spacing:0.005400px;}
.ls44{letter-spacing:0.006000px;}
.ls6{letter-spacing:0.006600px;}
.ls0{letter-spacing:0.010800px;}
.ls15{letter-spacing:0.013200px;}
.ls3f{letter-spacing:0.018000px;}
.ls22{letter-spacing:0.019800px;}
.lsd{letter-spacing:0.024000px;}
.ls5{letter-spacing:0.026400px;}
.ls3e{letter-spacing:0.030000px;}
.ls23{letter-spacing:0.033000px;}
.lsc{letter-spacing:0.042000px;}
.lse{letter-spacing:0.048000px;}
.ls4{letter-spacing:0.052800px;}
.lsb{letter-spacing:0.054000px;}
.ls1b{letter-spacing:0.195000px;}
.ls2c{letter-spacing:0.217800px;}
.ls1f{letter-spacing:0.250800px;}
.ls1d{letter-spacing:0.264000px;}
.ls1e{letter-spacing:0.277200px;}
.ls1a{letter-spacing:0.283800px;}
.ls1c{letter-spacing:0.290400px;}
.ls19{letter-spacing:0.297000px;}
.ls18{letter-spacing:0.303600px;}
.ls21{letter-spacing:0.310200px;}
.ls17{letter-spacing:0.316800px;}
.ls20{letter-spacing:0.323400px;}
.ls16{letter-spacing:0.330000px;}
.ls28{letter-spacing:0.337200px;}
.ls2a{letter-spacing:0.356400px;}
.ls2b{letter-spacing:0.376200px;}
.ls47{letter-spacing:1.656000px;}
.ls3d{letter-spacing:1.788600px;}
.ls43{letter-spacing:1.854600px;}
.ls8{letter-spacing:7.029000px;}
.ls3c{letter-spacing:7.332600px;}
.lsa{letter-spacing:13.500000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws53{word-spacing:-60.000000px;}
.ws16{word-spacing:-16.830000px;}
.ws2{word-spacing:-16.500000px;}
.ws3b{word-spacing:-16.170000px;}
.ws1{word-spacing:-15.840000px;}
.wse{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws5{word-spacing:-9.619500px;}
.ws3{word-spacing:-7.870500px;}
.ws3e{word-spacing:-3.214200px;}
.ws5e{word-spacing:-3.186000px;}
.ws2b{word-spacing:-2.772000px;}
.ws24{word-spacing:-2.541000px;}
.ws38{word-spacing:-2.534400px;}
.ws5b{word-spacing:-2.412000px;}
.ws40{word-spacing:-2.019600px;}
.ws21{word-spacing:-1.914000px;}
.ws17{word-spacing:-1.676400px;}
.ws60{word-spacing:-1.608000px;}
.ws18{word-spacing:-0.957000px;}
.ws20{word-spacing:-0.858000px;}
.ws1d{word-spacing:-0.792000px;}
.ws59{word-spacing:-0.546000px;}
.ws48{word-spacing:-0.475200px;}
.ws58{word-spacing:-0.468000px;}
.ws9{word-spacing:-0.442200px;}
.ws51{word-spacing:-0.389400px;}
.ws52{word-spacing:-0.336600px;}
.ws2a{word-spacing:-0.290400px;}
.ws26{word-spacing:-0.283800px;}
.ws61{word-spacing:-0.078000px;}
.ws1f{word-spacing:-0.066000px;}
.ws54{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws30{word-spacing:0.033000px;}
.ws3d{word-spacing:0.138600px;}
.ws3c{word-spacing:0.145200px;}
.ws2e{word-spacing:0.217800px;}
.ws13{word-spacing:0.343200px;}
.ws37{word-spacing:0.501600px;}
.ws2c{word-spacing:0.759000px;}
.wsd{word-spacing:0.826200px;}
.ws28{word-spacing:1.240800px;}
.ws4f{word-spacing:1.247400px;}
.ws4d{word-spacing:1.301400px;}
.ws7{word-spacing:1.531200px;}
.ws50{word-spacing:1.636800px;}
.ws4e{word-spacing:1.788600px;}
.ws1a{word-spacing:1.834800px;}
.ws29{word-spacing:1.887600px;}
.ws8{word-spacing:1.914000px;}
.ws22{word-spacing:1.920600px;}
.ws57{word-spacing:1.968000px;}
.ws35{word-spacing:2.026200px;}
.ws2d{word-spacing:2.098800px;}
.wsb{word-spacing:2.230800px;}
.ws56{word-spacing:2.394000px;}
.ws45{word-spacing:2.409000px;}
.ws1e{word-spacing:2.461800px;}
.ws62{word-spacing:2.568000px;}
.ws41{word-spacing:2.818200px;}
.ws14{word-spacing:2.844600px;}
.ws63{word-spacing:3.000000px;}
.ws23{word-spacing:3.009600px;}
.ws49{word-spacing:3.174600px;}
.ws4a{word-spacing:3.359400px;}
.ws64{word-spacing:3.564000px;}
.ws3a{word-spacing:3.577200px;}
.ws39{word-spacing:3.748800px;}
.ws33{word-spacing:3.834600px;}
.ws36{word-spacing:3.874200px;}
.ws25{word-spacing:3.880800px;}
.ws32{word-spacing:4.032600px;}
.wsa{word-spacing:4.052400px;}
.ws34{word-spacing:4.065600px;}
.ws6{word-spacing:4.250400px;}
.ws44{word-spacing:4.395600px;}
.ws5d{word-spacing:4.584000px;}
.ws43{word-spacing:4.639800px;}
.ws5a{word-spacing:4.896000px;}
.ws12{word-spacing:4.983000px;}
.ws27{word-spacing:5.148000px;}
.ws3f{word-spacing:5.768400px;}
.ws47{word-spacing:5.953200px;}
.ws1c{word-spacing:5.959800px;}
.ws4c{word-spacing:6.098400px;}
.wsf{word-spacing:6.190800px;}
.ws19{word-spacing:6.415200px;}
.ws31{word-spacing:6.547200px;}
.wsc{word-spacing:7.029000px;}
.ws46{word-spacing:7.266600px;}
.ws2f{word-spacing:7.603200px;}
.ws10{word-spacing:7.880400px;}
.ws11{word-spacing:8.652600px;}
.ws1b{word-spacing:8.692200px;}
.ws4b{word-spacing:9.741600px;}
.ws55{word-spacing:9.858000px;}
.ws5c{word-spacing:11.214000px;}
.ws15{word-spacing:11.734800px;}
.ws42{word-spacing:11.761200px;}
.ws5f{word-spacing:15.648000px;}
._11{margin-left:-20.050800px;}
._f{margin-left:-18.709800px;}
._17{margin-left:-17.680800px;}
._12{margin-left:-16.674000px;}
._c{margin-left:-15.044400px;}
._10{margin-left:-12.674400px;}
._4{margin-left:-10.636800px;}
._e{margin-left:-7.957800px;}
._3{margin-left:-6.470400px;}
._0{margin-left:-5.299200px;}
._7{margin-left:-4.224000px;}
._6{margin-left:-2.936400px;}
._1{margin-left:-1.737600px;}
._2{width:1.920000px;}
._5{width:3.684000px;}
._a{width:4.710000px;}
._b{width:6.390600px;}
._9{width:7.626000px;}
._d{width:8.794800px;}
._16{width:9.856200px;}
._15{width:10.936200px;}
._14{width:12.513600px;}
._13{width:13.675200px;}
._19{width:16.262400px;}
._18{width:19.648200px;}
._8{width:25.248000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y145{bottom:68.944200px;}
.yc3{bottom:74.205300px;}
.y128{bottom:84.260400px;}
.y88{bottom:84.322800px;}
.y14f{bottom:84.327300px;}
.y49{bottom:85.827300px;}
.y1{bottom:86.191800px;}
.y174{bottom:87.844800px;}
.y144{bottom:88.744200px;}
.y10c{bottom:88.744800px;}
.y12d{bottom:88.760400px;}
.yeb{bottom:89.643150px;}
.y1b5{bottom:91.542150px;}
.y61{bottom:94.744800px;}
.yc2{bottom:94.900800px;}
.y87{bottom:100.278300px;}
.yb0{bottom:100.459800px;}
.y48{bottom:102.027300px;}
.y127{bottom:104.060400px;}
.y14e{bottom:105.022650px;}
.y173{bottom:107.643150px;}
.y143{bottom:108.544200px;}
.y10b{bottom:108.544800px;}
.y12c{bottom:108.560400px;}
.yea{bottom:109.443150px;}
.y1f{bottom:112.590600px;}
.y60{bottom:114.544800px;}
.y86{bottom:116.478300px;}
.y47{bottom:118.227300px;}
.yaf{bottom:120.259800px;}
.y126{bottom:123.860400px;}
.y172{bottom:127.443150px;}
.y142{bottom:128.344200px;}
.y10a{bottom:128.344800px;}
.yc1{bottom:128.359800px;}
.y12b{bottom:128.360400px;}
.ye9{bottom:129.244800px;}
.y1b4{bottom:131.142150px;}
.y85{bottom:132.678300px;}
.y1e{bottom:133.585800px;}
.y5f{bottom:134.344800px;}
.yae{bottom:138.259800px;}
.y46{bottom:138.922800px;}
.y125{bottom:143.660400px;}
.y171{bottom:147.244800px;}
.y141{bottom:148.144200px;}
.y109{bottom:148.144800px;}
.yc0{bottom:148.159800px;}
.y12a{bottom:148.160400px;}
.ye8{bottom:149.044800px;}
.y1b3{bottom:150.942150px;}
.y84{bottom:153.373800px;}
.y5e{bottom:154.144800px;}
.yad{bottom:156.259800px;}
.y191{bottom:156.906150px;}
.y45{bottom:159.373800px;}
.y124{bottom:163.460400px;}
.y170{bottom:167.044800px;}
.y140{bottom:167.944200px;}
.y108{bottom:167.944800px;}
.ybf{bottom:167.959800px;}
.y129{bottom:167.960400px;}
.ye7{bottom:168.844800px;}
.y1b2{bottom:170.742150px;}
.y1d{bottom:173.043300px;}
.y5d{bottom:173.944800px;}
.y123{bottom:183.260400px;}
.y190{bottom:183.658650px;}
.y16f{bottom:186.844800px;}
.y13f{bottom:187.744200px;}
.y107{bottom:187.744800px;}
.ybe{bottom:187.759800px;}
.yac{bottom:187.760400px;}
.ye6{bottom:188.644800px;}
.y44{bottom:189.244800px;}
.y1b1{bottom:190.542150px;}
.y1c{bottom:192.843300px;}
.y5c{bottom:193.744800px;}
.y83{bottom:196.759800px;}
.y122{bottom:203.060400px;}
.y18f{bottom:206.158650px;}
.y16e{bottom:206.644800px;}
.y13e{bottom:207.544200px;}
.y106{bottom:207.544800px;}
.ybd{bottom:207.559800px;}
.yab{bottom:207.560400px;}
.ye5{bottom:208.444800px;}
.y43{bottom:209.044800px;}
.y1b0{bottom:210.342150px;}
.y1b{bottom:212.643300px;}
.y5b{bottom:213.544800px;}
.y82{bottom:216.559800px;}
.y121{bottom:222.860400px;}
.y16d{bottom:226.443150px;}
.y13d{bottom:227.344200px;}
.y105{bottom:227.344800px;}
.ybc{bottom:227.359800px;}
.yaa{bottom:227.360400px;}
.ye4{bottom:228.244800px;}
.y42{bottom:228.844800px;}
.y1af{bottom:230.142150px;}
.y1a{bottom:232.443300px;}
.y18e{bottom:232.911150px;}
.y5a{bottom:233.344800px;}
.y81{bottom:236.359800px;}
.y120{bottom:242.660400px;}
.y16c{bottom:246.244800px;}
.y13c{bottom:247.144200px;}
.y104{bottom:247.144800px;}
.ybb{bottom:247.159800px;}
.ya9{bottom:247.160400px;}
.ye3{bottom:248.044800px;}
.y41{bottom:248.644800px;}
.y1ae{bottom:249.942150px;}
.y19{bottom:252.243300px;}
.y59{bottom:253.144800px;}
.y18d{bottom:255.411150px;}
.y80{bottom:256.159800px;}
.y11f{bottom:262.460400px;}
.y16b{bottom:266.044800px;}
.y13b{bottom:266.944200px;}
.y103{bottom:266.944800px;}
.yba{bottom:266.959800px;}
.ya8{bottom:266.960400px;}
.ye2{bottom:267.844800px;}
.y40{bottom:268.444800px;}
.y1ad{bottom:269.742150px;}
.y18{bottom:272.043300px;}
.y7f{bottom:275.959800px;}
.y18c{bottom:282.162150px;}
.y11e{bottom:282.260400px;}
.y16a{bottom:285.844800px;}
.y13a{bottom:286.744200px;}
.y102{bottom:286.744800px;}
.yb9{bottom:286.759800px;}
.ya7{bottom:286.760400px;}
.ye1{bottom:287.644800px;}
.y3f{bottom:288.244800px;}
.y1ac{bottom:289.542150px;}
.y17{bottom:291.843300px;}
.y58{bottom:292.744800px;}
.y7e{bottom:295.759800px;}
.y11d{bottom:302.060400px;}
.y169{bottom:305.644800px;}
.y139{bottom:306.544200px;}
.y101{bottom:306.544800px;}
.yb8{bottom:306.559800px;}
.ya6{bottom:306.560400px;}
.ye0{bottom:307.444800px;}
.y3e{bottom:308.044800px;}
.y18b{bottom:308.914650px;}
.y1ab{bottom:309.342150px;}
.y57{bottom:310.744800px;}
.y16{bottom:311.643300px;}
.y7d{bottom:315.559800px;}
.y11c{bottom:321.860400px;}
.y168{bottom:325.444800px;}
.y138{bottom:326.344200px;}
.y100{bottom:326.344800px;}
.yb7{bottom:326.359800px;}
.ya5{bottom:326.360400px;}
.ydf{bottom:327.244800px;}
.y3d{bottom:327.844800px;}
.y56{bottom:328.744800px;}
.y1aa{bottom:329.142150px;}
.y18a{bottom:331.414650px;}
.y15{bottom:331.443300px;}
.y7c{bottom:335.359800px;}
.y11b{bottom:341.660400px;}
.y167{bottom:345.244800px;}
.y137{bottom:346.144200px;}
.yff{bottom:346.144800px;}
.yb6{bottom:346.159800px;}
.ya4{bottom:346.160400px;}
.y55{bottom:346.744800px;}
.yde{bottom:347.044800px;}
.y3c{bottom:347.644800px;}
.y1a9{bottom:348.942150px;}
.y14{bottom:351.243300px;}
.y7b{bottom:355.159800px;}
.y189{bottom:358.165650px;}
.y11a{bottom:361.460400px;}
.y54{bottom:364.744800px;}
.y166{bottom:365.044800px;}
.y136{bottom:365.944200px;}
.yfe{bottom:365.944800px;}
.yb5{bottom:365.959800px;}
.ya3{bottom:365.960400px;}
.y3b{bottom:367.444800px;}
.y1a8{bottom:368.742150px;}
.y13{bottom:371.043300px;}
.y7a{bottom:374.959800px;}
.y188{bottom:380.665650px;}
.y119{bottom:381.260400px;}
.y53{bottom:382.744800px;}
.y165{bottom:384.844800px;}
.y135{bottom:385.744200px;}
.yfd{bottom:385.744800px;}
.yb4{bottom:385.759800px;}
.ya2{bottom:385.760400px;}
.ydd{bottom:386.644800px;}
.y3a{bottom:387.244800px;}
.y1a7{bottom:388.542150px;}
.y12{bottom:390.843300px;}
.y79{bottom:394.759800px;}
.y52{bottom:400.744800px;}
.y118{bottom:401.060400px;}
.y187{bottom:403.165650px;}
.ydc{bottom:404.644800px;}
.y134{bottom:405.544200px;}
.yfc{bottom:405.544800px;}
.yb3{bottom:405.559800px;}
.ya1{bottom:405.560400px;}
.y39{bottom:407.044800px;}
.y1a6{bottom:408.342150px;}
.y11{bottom:410.643300px;}
.y78{bottom:414.559800px;}
.y51{bottom:418.744800px;}
.y117{bottom:420.860400px;}
.ydb{bottom:422.644800px;}
.y164{bottom:424.444800px;}
.y133{bottom:425.344200px;}
.yfb{bottom:425.344800px;}
.yb2{bottom:425.359800px;}
.ya0{bottom:425.360400px;}
.y38{bottom:426.844800px;}
.y1a5{bottom:428.142150px;}
.y186{bottom:429.918150px;}
.y10{bottom:430.443300px;}
.y77{bottom:434.359800px;}
.y50{bottom:436.744800px;}
.yda{bottom:440.644800px;}
.y116{bottom:440.660400px;}
.y163{bottom:444.244800px;}
.y132{bottom:445.144200px;}
.yfa{bottom:445.144800px;}
.y14d{bottom:445.159800px;}
.y9f{bottom:445.160400px;}
.y37{bottom:446.644800px;}
.y1a4{bottom:447.942150px;}
.yf{bottom:450.243300px;}
.y76{bottom:454.159800px;}
.y4f{bottom:454.744800px;}
.y185{bottom:456.670650px;}
.yd9{bottom:458.644800px;}
.y115{bottom:460.460400px;}
.y162{bottom:464.044800px;}
.y131{bottom:464.944200px;}
.yf9{bottom:464.944800px;}
.y14c{bottom:464.959800px;}
.y9e{bottom:464.960400px;}
.y36{bottom:466.444800px;}
.y75{bottom:473.959800px;}
.yd8{bottom:476.644800px;}
.y184{bottom:479.170650px;}
.y114{bottom:480.260400px;}
.y161{bottom:483.844800px;}
.y130{bottom:484.744200px;}
.yf8{bottom:484.744800px;}
.y14b{bottom:484.759800px;}
.y9d{bottom:484.760400px;}
.y4e{bottom:486.244200px;}
.y35{bottom:486.244800px;}
.y74{bottom:493.759800px;}
.yd7{bottom:494.644800px;}
.ye{bottom:494.793300px;}
.y113{bottom:500.060400px;}
.y160{bottom:503.644800px;}
.y12f{bottom:504.544200px;}
.yf7{bottom:504.544800px;}
.y14a{bottom:504.559800px;}
.y9c{bottom:504.560400px;}
.y183{bottom:505.921650px;}
.y4d{bottom:506.044200px;}
.y34{bottom:506.044800px;}
.yd{bottom:508.593300px;}
.yd6{bottom:512.644800px;}
.y112{bottom:519.860400px;}
.yc{bottom:522.393300px;}
.y15f{bottom:523.444800px;}
.y12e{bottom:524.344200px;}
.yf6{bottom:524.344800px;}
.y149{bottom:524.359800px;}
.y9b{bottom:524.360400px;}
.y4c{bottom:525.844200px;}
.y33{bottom:525.844800px;}
.y1a3{bottom:527.142150px;}
.y182{bottom:528.421650px;}
.y73{bottom:533.359800px;}
.yb{bottom:536.193300px;}
.y111{bottom:539.660400px;}
.y15e{bottom:543.244800px;}
.yd5{bottom:544.144200px;}
.yf5{bottom:544.144800px;}
.y148{bottom:544.159800px;}
.y9a{bottom:544.160400px;}
.y4b{bottom:545.644200px;}
.y32{bottom:545.644800px;}
.ya{bottom:549.993300px;}
.y72{bottom:553.159800px;}
.y181{bottom:555.174150px;}
.y110{bottom:559.460400px;}
.y15d{bottom:563.044800px;}
.y9{bottom:563.793300px;}
.yd4{bottom:563.944200px;}
.yf4{bottom:563.944800px;}
.y147{bottom:563.959800px;}
.y99{bottom:563.960400px;}
.y31{bottom:565.444200px;}
.y1a2{bottom:566.742150px;}
.y71{bottom:571.159800px;}
.y8{bottom:577.593300px;}
.y10f{bottom:579.260400px;}
.y180{bottom:581.926650px;}
.y15c{bottom:582.844800px;}
.yd3{bottom:583.744200px;}
.yf3{bottom:583.744800px;}
.y146{bottom:583.759800px;}
.y98{bottom:583.760400px;}
.y30{bottom:585.244200px;}
.y1a1{bottom:586.542150px;}
.y70{bottom:589.159800px;}
.y7{bottom:591.393300px;}
.y10e{bottom:599.060400px;}
.y15b{bottom:602.644800px;}
.yd2{bottom:603.544200px;}
.yf2{bottom:603.544800px;}
.y97{bottom:603.560400px;}
.y2f{bottom:605.044200px;}
.y1a0{bottom:606.342150px;}
.y6f{bottom:607.159800px;}
.y17f{bottom:608.677650px;}
.y10d{bottom:618.860400px;}
.y15a{bottom:622.444800px;}
.yd1{bottom:623.344200px;}
.yf1{bottom:623.344800px;}
.y96{bottom:623.360400px;}
.y2e{bottom:624.844200px;}
.y19f{bottom:626.142150px;}
.y17e{bottom:635.430150px;}
.y6e{bottom:638.660400px;}
.y159{bottom:642.244800px;}
.yd0{bottom:643.144200px;}
.yf0{bottom:643.144800px;}
.y95{bottom:643.160400px;}
.y2d{bottom:644.644200px;}
.y19e{bottom:645.942150px;}
.y6{bottom:652.593300px;}
.y17d{bottom:657.930150px;}
.y6d{bottom:658.460400px;}
.y158{bottom:662.044800px;}
.ycf{bottom:662.944200px;}
.yef{bottom:662.944800px;}
.y94{bottom:662.960400px;}
.y2c{bottom:664.444200px;}
.y19d{bottom:665.742150px;}
.y5{bottom:670.593300px;}
.y6c{bottom:678.260400px;}
.yce{bottom:682.744200px;}
.yee{bottom:682.744800px;}
.y93{bottom:682.760400px;}
.y2b{bottom:684.244200px;}
.y17c{bottom:684.682650px;}
.y19c{bottom:685.542150px;}
.y6b{bottom:698.060400px;}
.y157{bottom:701.644800px;}
.ycd{bottom:702.544200px;}
.yed{bottom:702.544800px;}
.y92{bottom:702.560400px;}
.y2a{bottom:704.044200px;}
.y19b{bottom:705.342150px;}
.y17b{bottom:711.433650px;}
.y6a{bottom:717.860400px;}
.y156{bottom:721.444800px;}
.ycc{bottom:722.344200px;}
.yec{bottom:722.344800px;}
.y91{bottom:722.360400px;}
.y29{bottom:723.844200px;}
.y19a{bottom:725.142150px;}
.y69{bottom:737.660400px;}
.y17a{bottom:738.186150px;}
.y155{bottom:739.444800px;}
.ycb{bottom:742.144200px;}
.y90{bottom:742.160400px;}
.y28{bottom:743.644200px;}
.y199{bottom:744.942150px;}
.y4{bottom:752.493300px;}
.y154{bottom:757.444800px;}
.y68{bottom:757.460400px;}
.yca{bottom:761.944200px;}
.y8f{bottom:761.960400px;}
.y27{bottom:763.444200px;}
.y198{bottom:764.742150px;}
.y179{bottom:764.938650px;}
.y3{bottom:774.993300px;}
.y153{bottom:775.444800px;}
.y67{bottom:777.260400px;}
.yc9{bottom:781.744200px;}
.y8e{bottom:781.760400px;}
.y26{bottom:783.244200px;}
.y197{bottom:784.542150px;}
.y178{bottom:787.438650px;}
.y152{bottom:793.444800px;}
.y66{bottom:797.060400px;}
.y2{bottom:797.793300px;}
.yc8{bottom:801.544200px;}
.y8d{bottom:801.560400px;}
.y25{bottom:803.044200px;}
.y196{bottom:804.342150px;}
.y151{bottom:811.444800px;}
.y177{bottom:814.189650px;}
.y65{bottom:816.860400px;}
.yc7{bottom:821.344200px;}
.y8c{bottom:821.360400px;}
.y24{bottom:822.844200px;}
.y195{bottom:824.142150px;}
.y150{bottom:829.444800px;}
.y64{bottom:836.660400px;}
.y176{bottom:836.689650px;}
.yc6{bottom:841.144200px;}
.y8b{bottom:841.160400px;}
.y23{bottom:842.644200px;}
.y194{bottom:843.942150px;}
.y63{bottom:856.460400px;}
.yc5{bottom:860.944200px;}
.y8a{bottom:860.960400px;}
.y22{bottom:862.444200px;}
.y193{bottom:863.742150px;}
.y62{bottom:876.260400px;}
.yc4{bottom:880.744200px;}
.y89{bottom:880.760400px;}
.y21{bottom:882.244200px;}
.y192{bottom:883.542150px;}
.y175{bottom:885.042150px;}
.y4a{bottom:926.758650px;}
.yb1{bottom:926.758800px;}
.y20{bottom:927.999150px;}
.h8{height:29.399836px;}
.hc{height:29.531072px;}
.hd{height:29.531672px;}
.h11{height:29.532272px;}
.ha{height:37.303711px;}
.h9{height:47.381836px;}
.h10{height:47.513672px;}
.h2{height:47.961914px;}
.h5{height:52.646484px;}
.hf{height:52.792969px;}
.he{height:53.291016px;}
.h4{height:56.153528px;}
.h6{height:57.911133px;}
.hb{height:57.913533px;}
.h7{height:58.072266px;}
.h3{height:85.265625px;}
.h0{height:979.179300px;}
.h1{height:979.500000px;}
.w1{width:681.000000px;}
.w0{width:681.026550px;}
.x0{left:0.000000px;}
.x1{left:94.974150px;}
.xc{left:99.226050px;}
.x9{left:108.474150px;}
.x11{left:111.982200px;}
.x2{left:123.055050px;}
.x8{left:128.990550px;}
.xd{left:133.244100px;}
.x12{left:148.974150px;}
.x10{left:150.250050px;}
.xe{left:154.501050px;}
.x3{left:159.652650px;}
.x7{left:214.028550px;}
.xf{left:215.252550px;}
.x4{left:249.803850px;}
.xa{left:270.710550px;}
.x14{left:302.870550px;}
.x13{left:310.795050px;}
.x6{left:346.096050px;}
.x5{left:431.510550px;}
.xb{left:576.073050px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls2f{letter-spacing:-1.724800pt;}
.ls2{letter-spacing:-1.706667pt;}
.ls45{letter-spacing:-1.066667pt;}
.ls29{letter-spacing:-1.061867pt;}
.ls27{letter-spacing:-0.627733pt;}
.ls3{letter-spacing:-0.586667pt;}
.ls46{letter-spacing:-0.533333pt;}
.ls41{letter-spacing:-0.328533pt;}
.ls50{letter-spacing:-0.309333pt;}
.ls26{letter-spacing:-0.293333pt;}
.ls40{letter-spacing:-0.287467pt;}
.ls33{letter-spacing:-0.281600pt;}
.ls4e{letter-spacing:-0.277333pt;}
.ls35{letter-spacing:-0.275733pt;}
.ls30{letter-spacing:-0.269867pt;}
.ls48{letter-spacing:-0.266667pt;}
.ls36{letter-spacing:-0.264000pt;}
.ls32{letter-spacing:-0.258133pt;}
.ls34{letter-spacing:-0.252267pt;}
.ls49{letter-spacing:-0.250667pt;}
.ls3b{letter-spacing:-0.246400pt;}
.ls4b{letter-spacing:-0.245333pt;}
.ls42{letter-spacing:-0.240533pt;}
.ls31{letter-spacing:-0.234667pt;}
.ls4d{letter-spacing:-0.229333pt;}
.ls4f{letter-spacing:-0.224000pt;}
.ls38{letter-spacing:-0.222933pt;}
.ls4c{letter-spacing:-0.218667pt;}
.ls4a{letter-spacing:-0.202667pt;}
.ls39{letter-spacing:-0.193600pt;}
.ls3a{letter-spacing:-0.146667pt;}
.ls37{letter-spacing:-0.052800pt;}
.ls2e{letter-spacing:-0.046933pt;}
.ls14{letter-spacing:-0.042667pt;}
.ls2d{letter-spacing:-0.041067pt;}
.ls11{letter-spacing:-0.035200pt;}
.lsf{letter-spacing:-0.029333pt;}
.ls13{letter-spacing:-0.026667pt;}
.ls10{letter-spacing:-0.023467pt;}
.ls25{letter-spacing:-0.017600pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls24{letter-spacing:-0.011733pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.002667pt;}
.ls9{letter-spacing:0.004800pt;}
.ls44{letter-spacing:0.005333pt;}
.ls6{letter-spacing:0.005867pt;}
.ls0{letter-spacing:0.009600pt;}
.ls15{letter-spacing:0.011733pt;}
.ls3f{letter-spacing:0.016000pt;}
.ls22{letter-spacing:0.017600pt;}
.lsd{letter-spacing:0.021333pt;}
.ls5{letter-spacing:0.023467pt;}
.ls3e{letter-spacing:0.026667pt;}
.ls23{letter-spacing:0.029333pt;}
.lsc{letter-spacing:0.037333pt;}
.lse{letter-spacing:0.042667pt;}
.ls4{letter-spacing:0.046933pt;}
.lsb{letter-spacing:0.048000pt;}
.ls1b{letter-spacing:0.173333pt;}
.ls2c{letter-spacing:0.193600pt;}
.ls1f{letter-spacing:0.222933pt;}
.ls1d{letter-spacing:0.234667pt;}
.ls1e{letter-spacing:0.246400pt;}
.ls1a{letter-spacing:0.252267pt;}
.ls1c{letter-spacing:0.258133pt;}
.ls19{letter-spacing:0.264000pt;}
.ls18{letter-spacing:0.269867pt;}
.ls21{letter-spacing:0.275733pt;}
.ls17{letter-spacing:0.281600pt;}
.ls20{letter-spacing:0.287467pt;}
.ls16{letter-spacing:0.293333pt;}
.ls28{letter-spacing:0.299733pt;}
.ls2a{letter-spacing:0.316800pt;}
.ls2b{letter-spacing:0.334400pt;}
.ls47{letter-spacing:1.472000pt;}
.ls3d{letter-spacing:1.589867pt;}
.ls43{letter-spacing:1.648533pt;}
.ls8{letter-spacing:6.248000pt;}
.ls3c{letter-spacing:6.517867pt;}
.lsa{letter-spacing:12.000000pt;}
.ws53{word-spacing:-53.333333pt;}
.ws16{word-spacing:-14.960000pt;}
.ws2{word-spacing:-14.666667pt;}
.ws3b{word-spacing:-14.373333pt;}
.ws1{word-spacing:-14.080000pt;}
.wse{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws5{word-spacing:-8.550667pt;}
.ws3{word-spacing:-6.996000pt;}
.ws3e{word-spacing:-2.857067pt;}
.ws5e{word-spacing:-2.832000pt;}
.ws2b{word-spacing:-2.464000pt;}
.ws24{word-spacing:-2.258667pt;}
.ws38{word-spacing:-2.252800pt;}
.ws5b{word-spacing:-2.144000pt;}
.ws40{word-spacing:-1.795200pt;}
.ws21{word-spacing:-1.701333pt;}
.ws17{word-spacing:-1.490133pt;}
.ws60{word-spacing:-1.429333pt;}
.ws18{word-spacing:-0.850667pt;}
.ws20{word-spacing:-0.762667pt;}
.ws1d{word-spacing:-0.704000pt;}
.ws59{word-spacing:-0.485333pt;}
.ws48{word-spacing:-0.422400pt;}
.ws58{word-spacing:-0.416000pt;}
.ws9{word-spacing:-0.393067pt;}
.ws51{word-spacing:-0.346133pt;}
.ws52{word-spacing:-0.299200pt;}
.ws2a{word-spacing:-0.258133pt;}
.ws26{word-spacing:-0.252267pt;}
.ws61{word-spacing:-0.069333pt;}
.ws1f{word-spacing:-0.058667pt;}
.ws54{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws30{word-spacing:0.029333pt;}
.ws3d{word-spacing:0.123200pt;}
.ws3c{word-spacing:0.129067pt;}
.ws2e{word-spacing:0.193600pt;}
.ws13{word-spacing:0.305067pt;}
.ws37{word-spacing:0.445867pt;}
.ws2c{word-spacing:0.674667pt;}
.wsd{word-spacing:0.734400pt;}
.ws28{word-spacing:1.102933pt;}
.ws4f{word-spacing:1.108800pt;}
.ws4d{word-spacing:1.156800pt;}
.ws7{word-spacing:1.361067pt;}
.ws50{word-spacing:1.454933pt;}
.ws4e{word-spacing:1.589867pt;}
.ws1a{word-spacing:1.630933pt;}
.ws29{word-spacing:1.677867pt;}
.ws8{word-spacing:1.701333pt;}
.ws22{word-spacing:1.707200pt;}
.ws57{word-spacing:1.749333pt;}
.ws35{word-spacing:1.801067pt;}
.ws2d{word-spacing:1.865600pt;}
.wsb{word-spacing:1.982933pt;}
.ws56{word-spacing:2.128000pt;}
.ws45{word-spacing:2.141333pt;}
.ws1e{word-spacing:2.188267pt;}
.ws62{word-spacing:2.282667pt;}
.ws41{word-spacing:2.505067pt;}
.ws14{word-spacing:2.528533pt;}
.ws63{word-spacing:2.666667pt;}
.ws23{word-spacing:2.675200pt;}
.ws49{word-spacing:2.821867pt;}
.ws4a{word-spacing:2.986133pt;}
.ws64{word-spacing:3.168000pt;}
.ws3a{word-spacing:3.179733pt;}
.ws39{word-spacing:3.332267pt;}
.ws33{word-spacing:3.408533pt;}
.ws36{word-spacing:3.443733pt;}
.ws25{word-spacing:3.449600pt;}
.ws32{word-spacing:3.584533pt;}
.wsa{word-spacing:3.602133pt;}
.ws34{word-spacing:3.613867pt;}
.ws6{word-spacing:3.778133pt;}
.ws44{word-spacing:3.907200pt;}
.ws5d{word-spacing:4.074667pt;}
.ws43{word-spacing:4.124267pt;}
.ws5a{word-spacing:4.352000pt;}
.ws12{word-spacing:4.429333pt;}
.ws27{word-spacing:4.576000pt;}
.ws3f{word-spacing:5.127467pt;}
.ws47{word-spacing:5.291733pt;}
.ws1c{word-spacing:5.297600pt;}
.ws4c{word-spacing:5.420800pt;}
.wsf{word-spacing:5.502933pt;}
.ws19{word-spacing:5.702400pt;}
.ws31{word-spacing:5.819733pt;}
.wsc{word-spacing:6.248000pt;}
.ws46{word-spacing:6.459200pt;}
.ws2f{word-spacing:6.758400pt;}
.ws10{word-spacing:7.004800pt;}
.ws11{word-spacing:7.691200pt;}
.ws1b{word-spacing:7.726400pt;}
.ws4b{word-spacing:8.659200pt;}
.ws55{word-spacing:8.762667pt;}
.ws5c{word-spacing:9.968000pt;}
.ws15{word-spacing:10.430933pt;}
.ws42{word-spacing:10.454400pt;}
.ws5f{word-spacing:13.909333pt;}
._11{margin-left:-17.822933pt;}
._f{margin-left:-16.630933pt;}
._17{margin-left:-15.716267pt;}
._12{margin-left:-14.821333pt;}
._c{margin-left:-13.372800pt;}
._10{margin-left:-11.266133pt;}
._4{margin-left:-9.454933pt;}
._e{margin-left:-7.073600pt;}
._3{margin-left:-5.751467pt;}
._0{margin-left:-4.710400pt;}
._7{margin-left:-3.754667pt;}
._6{margin-left:-2.610133pt;}
._1{margin-left:-1.544533pt;}
._2{width:1.706667pt;}
._5{width:3.274667pt;}
._a{width:4.186667pt;}
._b{width:5.680533pt;}
._9{width:6.778667pt;}
._d{width:7.817600pt;}
._16{width:8.761067pt;}
._15{width:9.721067pt;}
._14{width:11.123200pt;}
._13{width:12.155733pt;}
._19{width:14.455467pt;}
._18{width:17.465067pt;}
._8{width:22.442667pt;}
.fs5{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y145{bottom:61.283733pt;}
.yc3{bottom:65.960267pt;}
.y128{bottom:74.898133pt;}
.y88{bottom:74.953600pt;}
.y14f{bottom:74.957600pt;}
.y49{bottom:76.290933pt;}
.y1{bottom:76.614933pt;}
.y174{bottom:78.084267pt;}
.y144{bottom:78.883733pt;}
.y10c{bottom:78.884267pt;}
.y12d{bottom:78.898133pt;}
.yeb{bottom:79.682800pt;}
.y1b5{bottom:81.370800pt;}
.y61{bottom:84.217600pt;}
.yc2{bottom:84.356267pt;}
.y87{bottom:89.136267pt;}
.yb0{bottom:89.297600pt;}
.y48{bottom:90.690933pt;}
.y127{bottom:92.498133pt;}
.y14e{bottom:93.353467pt;}
.y173{bottom:95.682800pt;}
.y143{bottom:96.483733pt;}
.y10b{bottom:96.484267pt;}
.y12c{bottom:96.498133pt;}
.yea{bottom:97.282800pt;}
.y1f{bottom:100.080533pt;}
.y60{bottom:101.817600pt;}
.y86{bottom:103.536267pt;}
.y47{bottom:105.090933pt;}
.yaf{bottom:106.897600pt;}
.y126{bottom:110.098133pt;}
.y172{bottom:113.282800pt;}
.y142{bottom:114.083733pt;}
.y10a{bottom:114.084267pt;}
.yc1{bottom:114.097600pt;}
.y12b{bottom:114.098133pt;}
.ye9{bottom:114.884267pt;}
.y1b4{bottom:116.570800pt;}
.y85{bottom:117.936267pt;}
.y1e{bottom:118.742933pt;}
.y5f{bottom:119.417600pt;}
.yae{bottom:122.897600pt;}
.y46{bottom:123.486933pt;}
.y125{bottom:127.698133pt;}
.y171{bottom:130.884267pt;}
.y141{bottom:131.683733pt;}
.y109{bottom:131.684267pt;}
.yc0{bottom:131.697600pt;}
.y12a{bottom:131.698133pt;}
.ye8{bottom:132.484267pt;}
.y1b3{bottom:134.170800pt;}
.y84{bottom:136.332267pt;}
.y5e{bottom:137.017600pt;}
.yad{bottom:138.897600pt;}
.y191{bottom:139.472133pt;}
.y45{bottom:141.665600pt;}
.y124{bottom:145.298133pt;}
.y170{bottom:148.484267pt;}
.y140{bottom:149.283733pt;}
.y108{bottom:149.284267pt;}
.ybf{bottom:149.297600pt;}
.y129{bottom:149.298133pt;}
.ye7{bottom:150.084267pt;}
.y1b2{bottom:151.770800pt;}
.y1d{bottom:153.816267pt;}
.y5d{bottom:154.617600pt;}
.y123{bottom:162.898133pt;}
.y190{bottom:163.252133pt;}
.y16f{bottom:166.084267pt;}
.y13f{bottom:166.883733pt;}
.y107{bottom:166.884267pt;}
.ybe{bottom:166.897600pt;}
.yac{bottom:166.898133pt;}
.ye6{bottom:167.684267pt;}
.y44{bottom:168.217600pt;}
.y1b1{bottom:169.370800pt;}
.y1c{bottom:171.416267pt;}
.y5c{bottom:172.217600pt;}
.y83{bottom:174.897600pt;}
.y122{bottom:180.498133pt;}
.y18f{bottom:183.252133pt;}
.y16e{bottom:183.684267pt;}
.y13e{bottom:184.483733pt;}
.y106{bottom:184.484267pt;}
.ybd{bottom:184.497600pt;}
.yab{bottom:184.498133pt;}
.ye5{bottom:185.284267pt;}
.y43{bottom:185.817600pt;}
.y1b0{bottom:186.970800pt;}
.y1b{bottom:189.016267pt;}
.y5b{bottom:189.817600pt;}
.y82{bottom:192.497600pt;}
.y121{bottom:198.098133pt;}
.y16d{bottom:201.282800pt;}
.y13d{bottom:202.083733pt;}
.y105{bottom:202.084267pt;}
.ybc{bottom:202.097600pt;}
.yaa{bottom:202.098133pt;}
.ye4{bottom:202.884267pt;}
.y42{bottom:203.417600pt;}
.y1af{bottom:204.570800pt;}
.y1a{bottom:206.616267pt;}
.y18e{bottom:207.032133pt;}
.y5a{bottom:207.417600pt;}
.y81{bottom:210.097600pt;}
.y120{bottom:215.698133pt;}
.y16c{bottom:218.884267pt;}
.y13c{bottom:219.683733pt;}
.y104{bottom:219.684267pt;}
.ybb{bottom:219.697600pt;}
.ya9{bottom:219.698133pt;}
.ye3{bottom:220.484267pt;}
.y41{bottom:221.017600pt;}
.y1ae{bottom:222.170800pt;}
.y19{bottom:224.216267pt;}
.y59{bottom:225.017600pt;}
.y18d{bottom:227.032133pt;}
.y80{bottom:227.697600pt;}
.y11f{bottom:233.298133pt;}
.y16b{bottom:236.484267pt;}
.y13b{bottom:237.283733pt;}
.y103{bottom:237.284267pt;}
.yba{bottom:237.297600pt;}
.ya8{bottom:237.298133pt;}
.ye2{bottom:238.084267pt;}
.y40{bottom:238.617600pt;}
.y1ad{bottom:239.770800pt;}
.y18{bottom:241.816267pt;}
.y7f{bottom:245.297600pt;}
.y18c{bottom:250.810800pt;}
.y11e{bottom:250.898133pt;}
.y16a{bottom:254.084267pt;}
.y13a{bottom:254.883733pt;}
.y102{bottom:254.884267pt;}
.yb9{bottom:254.897600pt;}
.ya7{bottom:254.898133pt;}
.ye1{bottom:255.684267pt;}
.y3f{bottom:256.217600pt;}
.y1ac{bottom:257.370800pt;}
.y17{bottom:259.416267pt;}
.y58{bottom:260.217600pt;}
.y7e{bottom:262.897600pt;}
.y11d{bottom:268.498133pt;}
.y169{bottom:271.684267pt;}
.y139{bottom:272.483733pt;}
.y101{bottom:272.484267pt;}
.yb8{bottom:272.497600pt;}
.ya6{bottom:272.498133pt;}
.ye0{bottom:273.284267pt;}
.y3e{bottom:273.817600pt;}
.y18b{bottom:274.590800pt;}
.y1ab{bottom:274.970800pt;}
.y57{bottom:276.217600pt;}
.y16{bottom:277.016267pt;}
.y7d{bottom:280.497600pt;}
.y11c{bottom:286.098133pt;}
.y168{bottom:289.284267pt;}
.y138{bottom:290.083733pt;}
.y100{bottom:290.084267pt;}
.yb7{bottom:290.097600pt;}
.ya5{bottom:290.098133pt;}
.ydf{bottom:290.884267pt;}
.y3d{bottom:291.417600pt;}
.y56{bottom:292.217600pt;}
.y1aa{bottom:292.570800pt;}
.y18a{bottom:294.590800pt;}
.y15{bottom:294.616267pt;}
.y7c{bottom:298.097600pt;}
.y11b{bottom:303.698133pt;}
.y167{bottom:306.884267pt;}
.y137{bottom:307.683733pt;}
.yff{bottom:307.684267pt;}
.yb6{bottom:307.697600pt;}
.ya4{bottom:307.698133pt;}
.y55{bottom:308.217600pt;}
.yde{bottom:308.484267pt;}
.y3c{bottom:309.017600pt;}
.y1a9{bottom:310.170800pt;}
.y14{bottom:312.216267pt;}
.y7b{bottom:315.697600pt;}
.y189{bottom:318.369467pt;}
.y11a{bottom:321.298133pt;}
.y54{bottom:324.217600pt;}
.y166{bottom:324.484267pt;}
.y136{bottom:325.283733pt;}
.yfe{bottom:325.284267pt;}
.yb5{bottom:325.297600pt;}
.ya3{bottom:325.298133pt;}
.y3b{bottom:326.617600pt;}
.y1a8{bottom:327.770800pt;}
.y13{bottom:329.816267pt;}
.y7a{bottom:333.297600pt;}
.y188{bottom:338.369467pt;}
.y119{bottom:338.898133pt;}
.y53{bottom:340.217600pt;}
.y165{bottom:342.084267pt;}
.y135{bottom:342.883733pt;}
.yfd{bottom:342.884267pt;}
.yb4{bottom:342.897600pt;}
.ya2{bottom:342.898133pt;}
.ydd{bottom:343.684267pt;}
.y3a{bottom:344.217600pt;}
.y1a7{bottom:345.370800pt;}
.y12{bottom:347.416267pt;}
.y79{bottom:350.897600pt;}
.y52{bottom:356.217600pt;}
.y118{bottom:356.498133pt;}
.y187{bottom:358.369467pt;}
.ydc{bottom:359.684267pt;}
.y134{bottom:360.483733pt;}
.yfc{bottom:360.484267pt;}
.yb3{bottom:360.497600pt;}
.ya1{bottom:360.498133pt;}
.y39{bottom:361.817600pt;}
.y1a6{bottom:362.970800pt;}
.y11{bottom:365.016267pt;}
.y78{bottom:368.497600pt;}
.y51{bottom:372.217600pt;}
.y117{bottom:374.098133pt;}
.ydb{bottom:375.684267pt;}
.y164{bottom:377.284267pt;}
.y133{bottom:378.083733pt;}
.yfb{bottom:378.084267pt;}
.yb2{bottom:378.097600pt;}
.ya0{bottom:378.098133pt;}
.y38{bottom:379.417600pt;}
.y1a5{bottom:380.570800pt;}
.y186{bottom:382.149467pt;}
.y10{bottom:382.616267pt;}
.y77{bottom:386.097600pt;}
.y50{bottom:388.217600pt;}
.yda{bottom:391.684267pt;}
.y116{bottom:391.698133pt;}
.y163{bottom:394.884267pt;}
.y132{bottom:395.683733pt;}
.yfa{bottom:395.684267pt;}
.y14d{bottom:395.697600pt;}
.y9f{bottom:395.698133pt;}
.y37{bottom:397.017600pt;}
.y1a4{bottom:398.170800pt;}
.yf{bottom:400.216267pt;}
.y76{bottom:403.697600pt;}
.y4f{bottom:404.217600pt;}
.y185{bottom:405.929467pt;}
.yd9{bottom:407.684267pt;}
.y115{bottom:409.298133pt;}
.y162{bottom:412.484267pt;}
.y131{bottom:413.283733pt;}
.yf9{bottom:413.284267pt;}
.y14c{bottom:413.297600pt;}
.y9e{bottom:413.298133pt;}
.y36{bottom:414.617600pt;}
.y75{bottom:421.297600pt;}
.yd8{bottom:423.684267pt;}
.y184{bottom:425.929467pt;}
.y114{bottom:426.898133pt;}
.y161{bottom:430.084267pt;}
.y130{bottom:430.883733pt;}
.yf8{bottom:430.884267pt;}
.y14b{bottom:430.897600pt;}
.y9d{bottom:430.898133pt;}
.y4e{bottom:432.217067pt;}
.y35{bottom:432.217600pt;}
.y74{bottom:438.897600pt;}
.yd7{bottom:439.684267pt;}
.ye{bottom:439.816267pt;}
.y113{bottom:444.498133pt;}
.y160{bottom:447.684267pt;}
.y12f{bottom:448.483733pt;}
.yf7{bottom:448.484267pt;}
.y14a{bottom:448.497600pt;}
.y9c{bottom:448.498133pt;}
.y183{bottom:449.708133pt;}
.y4d{bottom:449.817067pt;}
.y34{bottom:449.817600pt;}
.yd{bottom:452.082933pt;}
.yd6{bottom:455.684267pt;}
.y112{bottom:462.098133pt;}
.yc{bottom:464.349600pt;}
.y15f{bottom:465.284267pt;}
.y12e{bottom:466.083733pt;}
.yf6{bottom:466.084267pt;}
.y149{bottom:466.097600pt;}
.y9b{bottom:466.098133pt;}
.y4c{bottom:467.417067pt;}
.y33{bottom:467.417600pt;}
.y1a3{bottom:468.570800pt;}
.y182{bottom:469.708133pt;}
.y73{bottom:474.097600pt;}
.yb{bottom:476.616267pt;}
.y111{bottom:479.698133pt;}
.y15e{bottom:482.884267pt;}
.yd5{bottom:483.683733pt;}
.yf5{bottom:483.684267pt;}
.y148{bottom:483.697600pt;}
.y9a{bottom:483.698133pt;}
.y4b{bottom:485.017067pt;}
.y32{bottom:485.017600pt;}
.ya{bottom:488.882933pt;}
.y72{bottom:491.697600pt;}
.y181{bottom:493.488133pt;}
.y110{bottom:497.298133pt;}
.y15d{bottom:500.484267pt;}
.y9{bottom:501.149600pt;}
.yd4{bottom:501.283733pt;}
.yf4{bottom:501.284267pt;}
.y147{bottom:501.297600pt;}
.y99{bottom:501.298133pt;}
.y31{bottom:502.617067pt;}
.y1a2{bottom:503.770800pt;}
.y71{bottom:507.697600pt;}
.y8{bottom:513.416267pt;}
.y10f{bottom:514.898133pt;}
.y180{bottom:517.268133pt;}
.y15c{bottom:518.084267pt;}
.yd3{bottom:518.883733pt;}
.yf3{bottom:518.884267pt;}
.y146{bottom:518.897600pt;}
.y98{bottom:518.898133pt;}
.y30{bottom:520.217067pt;}
.y1a1{bottom:521.370800pt;}
.y70{bottom:523.697600pt;}
.y7{bottom:525.682933pt;}
.y10e{bottom:532.498133pt;}
.y15b{bottom:535.684267pt;}
.yd2{bottom:536.483733pt;}
.yf2{bottom:536.484267pt;}
.y97{bottom:536.498133pt;}
.y2f{bottom:537.817067pt;}
.y1a0{bottom:538.970800pt;}
.y6f{bottom:539.697600pt;}
.y17f{bottom:541.046800pt;}
.y10d{bottom:550.098133pt;}
.y15a{bottom:553.284267pt;}
.yd1{bottom:554.083733pt;}
.yf1{bottom:554.084267pt;}
.y96{bottom:554.098133pt;}
.y2e{bottom:555.417067pt;}
.y19f{bottom:556.570800pt;}
.y17e{bottom:564.826800pt;}
.y6e{bottom:567.698133pt;}
.y159{bottom:570.884267pt;}
.yd0{bottom:571.683733pt;}
.yf0{bottom:571.684267pt;}
.y95{bottom:571.698133pt;}
.y2d{bottom:573.017067pt;}
.y19e{bottom:574.170800pt;}
.y6{bottom:580.082933pt;}
.y17d{bottom:584.826800pt;}
.y6d{bottom:585.298133pt;}
.y158{bottom:588.484267pt;}
.ycf{bottom:589.283733pt;}
.yef{bottom:589.284267pt;}
.y94{bottom:589.298133pt;}
.y2c{bottom:590.617067pt;}
.y19d{bottom:591.770800pt;}
.y5{bottom:596.082933pt;}
.y6c{bottom:602.898133pt;}
.yce{bottom:606.883733pt;}
.yee{bottom:606.884267pt;}
.y93{bottom:606.898133pt;}
.y2b{bottom:608.217067pt;}
.y17c{bottom:608.606800pt;}
.y19c{bottom:609.370800pt;}
.y6b{bottom:620.498133pt;}
.y157{bottom:623.684267pt;}
.ycd{bottom:624.483733pt;}
.yed{bottom:624.484267pt;}
.y92{bottom:624.498133pt;}
.y2a{bottom:625.817067pt;}
.y19b{bottom:626.970800pt;}
.y17b{bottom:632.385467pt;}
.y6a{bottom:638.098133pt;}
.y156{bottom:641.284267pt;}
.ycc{bottom:642.083733pt;}
.yec{bottom:642.084267pt;}
.y91{bottom:642.098133pt;}
.y29{bottom:643.417067pt;}
.y19a{bottom:644.570800pt;}
.y69{bottom:655.698133pt;}
.y17a{bottom:656.165467pt;}
.y155{bottom:657.284267pt;}
.ycb{bottom:659.683733pt;}
.y90{bottom:659.698133pt;}
.y28{bottom:661.017067pt;}
.y199{bottom:662.170800pt;}
.y4{bottom:668.882933pt;}
.y154{bottom:673.284267pt;}
.y68{bottom:673.298133pt;}
.yca{bottom:677.283733pt;}
.y8f{bottom:677.298133pt;}
.y27{bottom:678.617067pt;}
.y198{bottom:679.770800pt;}
.y179{bottom:679.945467pt;}
.y3{bottom:688.882933pt;}
.y153{bottom:689.284267pt;}
.y67{bottom:690.898133pt;}
.yc9{bottom:694.883733pt;}
.y8e{bottom:694.898133pt;}
.y26{bottom:696.217067pt;}
.y197{bottom:697.370800pt;}
.y178{bottom:699.945467pt;}
.y152{bottom:705.284267pt;}
.y66{bottom:708.498133pt;}
.y2{bottom:709.149600pt;}
.yc8{bottom:712.483733pt;}
.y8d{bottom:712.498133pt;}
.y25{bottom:713.817067pt;}
.y196{bottom:714.970800pt;}
.y151{bottom:721.284267pt;}
.y177{bottom:723.724133pt;}
.y65{bottom:726.098133pt;}
.yc7{bottom:730.083733pt;}
.y8c{bottom:730.098133pt;}
.y24{bottom:731.417067pt;}
.y195{bottom:732.570800pt;}
.y150{bottom:737.284267pt;}
.y64{bottom:743.698133pt;}
.y176{bottom:743.724133pt;}
.yc6{bottom:747.683733pt;}
.y8b{bottom:747.698133pt;}
.y23{bottom:749.017067pt;}
.y194{bottom:750.170800pt;}
.y63{bottom:761.298133pt;}
.yc5{bottom:765.283733pt;}
.y8a{bottom:765.298133pt;}
.y22{bottom:766.617067pt;}
.y193{bottom:767.770800pt;}
.y62{bottom:778.898133pt;}
.yc4{bottom:782.883733pt;}
.y89{bottom:782.898133pt;}
.y21{bottom:784.217067pt;}
.y192{bottom:785.370800pt;}
.y175{bottom:786.704133pt;}
.y4a{bottom:823.785467pt;}
.yb1{bottom:823.785600pt;}
.y20{bottom:824.888133pt;}
.h8{height:26.133187pt;}
.hc{height:26.249842pt;}
.hd{height:26.250375pt;}
.h11{height:26.250908pt;}
.ha{height:33.158854pt;}
.h9{height:42.117188pt;}
.h10{height:42.234375pt;}
.h2{height:42.632812pt;}
.h5{height:46.796875pt;}
.hf{height:46.927083pt;}
.he{height:47.369792pt;}
.h4{height:49.914247pt;}
.h6{height:51.476562pt;}
.hb{height:51.478696pt;}
.h7{height:51.619792pt;}
.h3{height:75.791667pt;}
.h0{height:870.381600pt;}
.h1{height:870.666667pt;}
.w1{width:605.333333pt;}
.w0{width:605.356933pt;}
.x0{left:0.000000pt;}
.x1{left:84.421467pt;}
.xc{left:88.200933pt;}
.x9{left:96.421467pt;}
.x11{left:99.539733pt;}
.x2{left:109.382267pt;}
.x8{left:114.658267pt;}
.xd{left:118.439200pt;}
.x12{left:132.421467pt;}
.x10{left:133.555600pt;}
.xe{left:137.334267pt;}
.x3{left:141.913467pt;}
.x7{left:190.247600pt;}
.xf{left:191.335600pt;}
.x4{left:222.047867pt;}
.xa{left:240.631600pt;}
.x14{left:269.218267pt;}
.x13{left:276.262267pt;}
.x6{left:307.640933pt;}
.x5{left:383.564933pt;}
.xb{left:512.064933pt;}
}




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