
    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_7cbdb251c6a94d5e7d79f2a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_5fedafb5ef533c27d6114c54.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_19182d99c72930be294237b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.903809;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_d720a21ab45ddbe243947279.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.889000;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_c5e22b868d7a4e8ed9e70420.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.713000;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_f181c2b410e3d4287b413271.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_a6129621d5e435160f6fa45d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.729000;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_f485a68009d5a38f7b555343.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e8c3416ca8a2b6787c8f946f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a5ec47493d4575f08f7b92b8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.697754;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_735c7903eaa129ddd814f3a7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.687988;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;}
.m1{transform:matrix(0.236239,0.000000,-0.081799,0.236239,0,0);-ms-transform:matrix(0.236239,0.000000,-0.081799,0.236239,0,0);-webkit-transform:matrix(0.236239,0.000000,-0.081799,0.236239,0,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);}
.v6{vertical-align:-146.778000px;}
.va{vertical-align:-134.874000px;}
.ve{vertical-align:-48.300000px;}
.vc{vertical-align:-46.944000px;}
.v4{vertical-align:-34.014000px;}
.v1{vertical-align:-25.344000px;}
.v8{vertical-align:-19.728000px;}
.v7{vertical-align:-16.158000px;}
.v3{vertical-align:-14.970000px;}
.v2{vertical-align:-9.012000px;}
.vf{vertical-align:-7.824000px;}
.vd{vertical-align:-4.764000px;}
.vb{vertical-align:-3.060000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:35.718000px;}
.v9{vertical-align:109.704000px;}
.v5{vertical-align:121.608000px;}
.ls18{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.054000px;}
.ls15{letter-spacing:0.084000px;}
.ls8{letter-spacing:0.123000px;}
.ls6{letter-spacing:0.129000px;}
.ls7{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.340500px;}
.ls16{letter-spacing:0.346500px;}
.lsf{letter-spacing:8.800500px;}
.ls2{letter-spacing:8.862000px;}
.ls5{letter-spacing:8.982000px;}
.ls4{letter-spacing:9.030000px;}
.ls10{letter-spacing:9.048000px;}
.ls11{letter-spacing:9.102000px;}
.lse{letter-spacing:9.142500px;}
.ls13{letter-spacing:9.162000px;}
.ls12{letter-spacing:9.168000px;}
.ls3{letter-spacing:9.366000px;}
.lsd{letter-spacing:9.468996px;}
.ls1{letter-spacing:15.225006px;}
.lsa{letter-spacing:15.788544px;}
.lsb{letter-spacing:16.299012px;}
.lsc{letter-spacing:16.503648px;}
.ls9{letter-spacing:24.560004px;}
.ls0{letter-spacing:84.840504px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-110.072988px;}
.ws2{word-spacing:-108.000000px;}
.ws0{word-spacing:-71.986500px;}
.ws4{word-spacing:-63.877728px;}
.wsa{word-spacing:-59.832000px;}
.ws1{word-spacing:-54.000000px;}
.ws5{word-spacing:-29.916000px;}
.ws8{word-spacing:-26.570394px;}
.ws6{word-spacing:-20.964468px;}
.ws9{word-spacing:-0.216000px;}
.wsb{word-spacing:0.000000px;}
.ws7{word-spacing:2413.842000px;}
._f{margin-left:-479.676000px;}
._10{margin-left:-16.630380px;}
._4{margin-left:-9.072000px;}
._3{margin-left:-7.992000px;}
._5{margin-left:-6.912000px;}
._8{margin-left:-5.183190px;}
._6{margin-left:-3.240810px;}
._0{margin-left:-1.439892px;}
._9{width:1.301784px;}
._d{width:4.614000px;}
._7{width:5.907510px;}
._e{width:7.326000px;}
._1{width:8.580000px;}
._2{width:9.869892px;}
._c{width:15.935952px;}
._b{width:20.166024px;}
._a{width:24.765924px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,192,192);}
.fsc{font-size:23.982000px;}
.fse{font-size:36.054000px;}
.fs5{font-size:60.036000px;}
.fs10{font-size:75.684000px;}
.fs9{font-size:84.018000px;}
.fs11{font-size:95.922000px;}
.fs3{font-size:97.284000px;}
.fsf{font-size:108.000000px;}
.fsb{font-size:126.030000px;}
.fs0{font-size:216.000000px;}
.fsd{font-size:228.581843px;}
.fs8{font-size:229.776000px;}
.fs1{font-size:239.982000px;}
.fs2{font-size:287.946000px;}
.fsa{font-size:303.078000px;}
.fs4{font-size:360.054000px;}
.fs7{font-size:395.946000px;}
.fs6{font-size:600.036000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y21{bottom:61.567500px;}
.y7{bottom:63.013500px;}
.y20{bottom:65.650500px;}
.yd{bottom:78.150000px;}
.y6{bottom:116.971500px;}
.y1f{bottom:122.031000px;}
.y1e{bottom:126.112500px;}
.yc{bottom:132.108000px;}
.y5{bottom:170.928000px;}
.y1d{bottom:182.494500px;}
.yb{bottom:186.066000px;}
.y1c{bottom:186.576000px;}
.y4{bottom:224.886000px;}
.ya{bottom:240.022500px;}
.y1b{bottom:242.956500px;}
.y1a{bottom:247.039500px;}
.y2{bottom:276.589500px;}
.y3{bottom:278.844000px;}
.y8{bottom:291.727500px;}
.y9{bottom:293.980500px;}
.y19{bottom:303.420000px;}
.y18{bottom:307.501500px;}
.y17{bottom:363.883500px;}
.y16{bottom:367.965000px;}
.y15{bottom:424.345500px;}
.y14{bottom:428.428500px;}
.y13{bottom:484.809000px;}
.y12{bottom:488.890500px;}
.y50{bottom:497.692500px;}
.y51{bottom:499.648500px;}
.y80{bottom:511.213500px;}
.y81{bottom:513.169500px;}
.y11{bottom:545.272500px;}
.y10{bottom:549.354000px;}
.y4e{bottom:549.778500px;}
.y4f{bottom:552.033000px;}
.y7e{bottom:563.301000px;}
.y7f{bottom:565.554000px;}
.y4c{bottom:601.611000px;}
.y4d{bottom:603.864000px;}
.ye{bottom:609.009000px;}
.yf{bottom:612.028500px;}
.y7c{bottom:615.132000px;}
.y7d{bottom:617.385000px;}
.y4a{bottom:653.442000px;}
.y4b{bottom:655.695000px;}
.y7a{bottom:666.963000px;}
.y7b{bottom:669.217500px;}
.y148{bottom:695.281500px;}
.y49{bottom:707.527500px;}
.y48{bottom:713.778000px;}
.y79{bottom:721.048500px;}
.y78{bottom:727.299000px;}
.y147{bottom:752.172000px;}
.y13f{bottom:762.802500px;}
.y46{bottom:771.136500px;}
.y47{bottom:773.389500px;}
.y145{bottom:776.323500px;}
.y76{bottom:784.657500px;}
.y77{bottom:786.912000px;}
.y13e{bottom:816.802500px;}
.y44{bottom:822.967500px;}
.y45{bottom:825.222000px;}
.y144{bottom:830.323500px;}
.y74{bottom:836.488500px;}
.y75{bottom:838.743000px;}
.y10a{bottom:847.800000px;}
.y115{bottom:861.321000px;}
.y13d{bottom:870.802500px;}
.y42{bottom:874.800000px;}
.y43{bottom:877.053000px;}
.y143{bottom:884.323500px;}
.y72{bottom:888.321000px;}
.y73{bottom:890.574000px;}
.y109{bottom:901.800000px;}
.y114{bottom:915.321000px;}
.y13c{bottom:924.802500px;}
.y41{bottom:928.884000px;}
.y40{bottom:935.134500px;}
.y142{bottom:938.323500px;}
.y71{bottom:942.406500px;}
.y70{bottom:948.655500px;}
.y108{bottom:956.352000px;}
.y113{bottom:969.873000px;}
.y13b{bottom:978.802500px;}
.y141{bottom:992.323500px;}
.y3e{bottom:992.494500px;}
.y3f{bottom:994.747500px;}
.y6e{bottom:1006.015500px;}
.y6f{bottom:1008.268500px;}
.y107{bottom:1010.352000px;}
.y112{bottom:1023.873000px;}
.y3c{bottom:1044.325500px;}
.y13a{bottom:1045.558500px;}
.y3d{bottom:1046.578500px;}
.y6c{bottom:1057.846500px;}
.y140{bottom:1059.079500px;}
.y6d{bottom:1060.101000px;}
.y106{bottom:1064.352000px;}
.y111{bottom:1077.873000px;}
.y3b{bottom:1098.411000px;}
.y3a{bottom:1104.661500px;}
.y6b{bottom:1111.932000px;}
.y105{bottom:1116.396000px;}
.y6a{bottom:1118.182500px;}
.y104{bottom:1118.352000px;}
.y110{bottom:1129.917000px;}
.y10f{bottom:1131.873000px;}
.y38{bottom:1162.020000px;}
.y39{bottom:1164.273000px;}
.y103{bottom:1172.905500px;}
.y68{bottom:1175.541000px;}
.y69{bottom:1177.794000px;}
.y10e{bottom:1186.426500px;}
.y14c{bottom:1197.609000px;}
.y36{bottom:1213.851000px;}
.y37{bottom:1216.105500px;}
.y102{bottom:1226.905500px;}
.y66{bottom:1227.372000px;}
.y67{bottom:1229.626500px;}
.y10d{bottom:1240.426500px;}
.y14b{bottom:1258.072500px;}
.y35{bottom:1267.936500px;}
.y34{bottom:1274.187000px;}
.y101{bottom:1280.905500px;}
.y65{bottom:1281.457500px;}
.y64{bottom:1287.708000px;}
.y10c{bottom:1294.426500px;}
.y14a{bottom:1318.534500px;}
.y33{bottom:1333.800000px;}
.y100{bottom:1335.288000px;}
.y32{bottom:1340.050500px;}
.y63{bottom:1347.321000px;}
.y10b{bottom:1348.809000px;}
.y62{bottom:1353.571500px;}
.y149{bottom:1378.998000px;}
.y30{bottom:1397.409000px;}
.y31{bottom:1399.662000px;}
.y60{bottom:1410.930000px;}
.y61{bottom:1413.183000px;}
.y2e{bottom:1449.240000px;}
.y2f{bottom:1451.494500px;}
.y5e{bottom:1462.761000px;}
.y5f{bottom:1465.015500px;}
.y2d{bottom:1503.325500px;}
.y2c{bottom:1509.576000px;}
.y131{bottom:1516.251000px;}
.y5d{bottom:1516.846500px;}
.y5c{bottom:1523.097000px;}
.y138{bottom:1529.772000px;}
.y2a{bottom:1566.934500px;}
.y2b{bottom:1569.189000px;}
.y130{bottom:1570.251000px;}
.y5a{bottom:1580.455500px;}
.y5b{bottom:1582.710000px;}
.y137{bottom:1583.772000px;}
.y29{bottom:1621.020000px;}
.y12f{bottom:1624.251000px;}
.y28{bottom:1627.270500px;}
.y59{bottom:1634.541000px;}
.y136{bottom:1637.772000px;}
.y58{bottom:1640.791500px;}
.y12e{bottom:1676.295000px;}
.y12d{bottom:1678.251000px;}
.y26{bottom:1684.629000px;}
.y27{bottom:1686.883500px;}
.y135{bottom:1689.817500px;}
.y134{bottom:1691.772000px;}
.y56{bottom:1698.150000px;}
.y57{bottom:1700.404500px;}
.y12c{bottom:1732.804500px;}
.y25{bottom:1738.714500px;}
.y24{bottom:1744.965000px;}
.y133{bottom:1746.325500px;}
.y55{bottom:1752.235500px;}
.y54{bottom:1758.486000px;}
.y12b{bottom:1787.187000px;}
.y132{bottom:1800.708000px;}
.y22{bottom:1831.194000px;}
.y23{bottom:1834.936500px;}
.y52{bottom:1844.716500px;}
.y53{bottom:1848.457500px;}
.yec{bottom:2052.679500px;}
.yed{bottom:2054.934000px;}
.yfe{bottom:2067.817500px;}
.yff{bottom:2070.070500px;}
.yea{bottom:2101.279500px;}
.yeb{bottom:2103.534000px;}
.yfc{bottom:2116.417500px;}
.yfd{bottom:2118.670500px;}
.ye8{bottom:2149.837500px;}
.ye9{bottom:2152.090500px;}
.yfa{bottom:2164.974000px;}
.yfb{bottom:2167.228500px;}
.ye6{bottom:2198.989500px;}
.ye7{bottom:2201.244000px;}
.yf8{bottom:2214.127500px;}
.yf9{bottom:2216.380500px;}
.ye4{bottom:2247.589500px;}
.ye5{bottom:2249.844000px;}
.yf6{bottom:2262.727500px;}
.yf7{bottom:2264.980500px;}
.ye2{bottom:2296.189500px;}
.ye3{bottom:2298.444000px;}
.yf4{bottom:2311.327500px;}
.yf5{bottom:2313.580500px;}
.ye0{bottom:2344.789500px;}
.ye1{bottom:2347.044000px;}
.yf2{bottom:2359.927500px;}
.yf3{bottom:2362.180500px;}
.yde{bottom:2393.389500px;}
.ydf{bottom:2395.644000px;}
.yf0{bottom:2408.527500px;}
.yf1{bottom:2410.780500px;}
.ydc{bottom:2442.330000px;}
.ydd{bottom:2444.583000px;}
.yee{bottom:2457.466500px;}
.yef{bottom:2459.721000px;}
.y8e{bottom:2568.018000px;}
.y9b{bottom:2581.539000px;}
.y8d{bottom:2622.018000px;}
.y9a{bottom:2635.539000px;}
.y8c{bottom:2676.018000px;}
.y99{bottom:2689.539000px;}
.y8b{bottom:2730.018000px;}
.y98{bottom:2743.539000px;}
.y8a{bottom:2784.018000px;}
.y97{bottom:2797.539000px;}
.y89{bottom:2838.400500px;}
.y96{bottom:2851.923000px;}
.y88{bottom:2893.294500px;}
.y95{bottom:2906.815500px;}
.y87{bottom:2947.294500px;}
.y11b{bottom:2953.459500px;}
.y94{bottom:2960.815500px;}
.y121{bottom:2966.980500px;}
.y86{bottom:3001.294500px;}
.y11a{bottom:3007.459500px;}
.y93{bottom:3014.815500px;}
.y120{bottom:3020.980500px;}
.y85{bottom:3055.846500px;}
.y119{bottom:3061.459500px;}
.y92{bottom:3069.367500px;}
.y11f{bottom:3074.980500px;}
.y84{bottom:3109.846500px;}
.y118{bottom:3115.459500px;}
.y91{bottom:3123.367500px;}
.y11e{bottom:3128.980500px;}
.y83{bottom:3163.846500px;}
.y117{bottom:3169.842000px;}
.y90{bottom:3177.367500px;}
.y11d{bottom:3183.363000px;}
.y82{bottom:3218.229000px;}
.y116{bottom:3224.224500px;}
.y8f{bottom:3231.750000px;}
.y11c{bottom:3237.745500px;}
.y124{bottom:3532.365000px;}
.y128{bottom:3536.617500px;}
.y12a{bottom:3659.754000px;}
.ybf{bottom:3742.114500px;}
.yc0{bottom:3744.367500px;}
.yda{bottom:3755.635500px;}
.ydb{bottom:3757.888500px;}
.y126{bottom:3778.809000px;}
.ybe{bottom:3792.967500px;}
.ybd{bottom:3802.450500px;}
.yd9{bottom:3806.488500px;}
.yd8{bottom:3815.971500px;}
.ybb{bottom:3846.883500px;}
.ybc{bottom:3849.136500px;}
.yd6{bottom:3860.404500px;}
.yd7{bottom:3862.657500px;}
.y122{bottom:3864.018000px;}
.yb9{bottom:3895.483500px;}
.yba{bottom:3897.736500px;}
.yd4{bottom:3909.004500px;}
.yd5{bottom:3911.257500px;}
.yb7{bottom:3944.083500px;}
.yb8{bottom:3946.336500px;}
.yd2{bottom:3957.604500px;}
.yd3{bottom:3959.857500px;}
.yb6{bottom:3994.936500px;}
.y139{bottom:4003.738500px;}
.yb5{bottom:4004.418000px;}
.yd1{bottom:4008.457500px;}
.yd0{bottom:4017.939000px;}
.yb4{bottom:4051.105500px;}
.yb3{bottom:4060.587000px;}
.y146{bottom:4063.266000px;}
.ycf{bottom:4064.626500px;}
.yce{bottom:4074.108000px;}
.y127{bottom:4085.121000px;}
.yb1{bottom:4104.978000px;}
.yb2{bottom:4107.231000px;}
.ycc{bottom:4118.499000px;}
.y123{bottom:4119.136500px;}
.ycd{bottom:4120.752000px;}
.yb0{bottom:4154.088000px;}
.yaf{bottom:4154.385000px;}
.yae{bottom:4156.341000px;}
.yad{bottom:4166.163000px;}
.ycb{bottom:4167.609000px;}
.yca{bottom:4167.906000px;}
.yc9{bottom:4169.862000px;}
.yc8{bottom:4179.684000px;}
.yaa{bottom:4210.767000px;}
.yac{bottom:4211.064000px;}
.yab{bottom:4213.020000px;}
.yc5{bottom:4224.288000px;}
.yc7{bottom:4224.585000px;}
.yc6{bottom:4226.541000px;}
.ya9{bottom:4262.172000px;}
.ya8{bottom:4271.655000px;}
.yc4{bottom:4275.694500px;}
.yc3{bottom:4285.176000px;}
.y129{bottom:4293.297000px;}
.y125{bottom:4297.549500px;}
.ya6{bottom:4336.710000px;}
.ya7{bottom:4339.855500px;}
.yc1{bottom:4350.231000px;}
.yc2{bottom:4353.378000px;}
.ya4{bottom:4464.013500px;}
.ya5{bottom:4466.266500px;}
.ya0{bottom:4528.473000px;}
.ya1{bottom:4532.512500px;}
.ya3{bottom:4562.191500px;}
.ya2{bottom:4565.167500px;}
.y9e{bottom:4663.516500px;}
.y9f{bottom:4670.574000px;}
.y9c{bottom:4840.101000px;}
.y9d{bottom:4846.266000px;}
.h21{height:69.505980px;}
.h1e{height:78.257812px;}
.h20{height:90.553336px;}
.h1d{height:90.559336px;}
.h1f{height:91.237336px;}
.h1b{height:100.308000px;}
.h18{height:101.664000px;}
.h1c{height:101.670000px;}
.hc{height:114.588000px;}
.hb{height:114.594000px;}
.h6{height:123.264000px;}
.h7{height:123.270000px;}
.h19{height:139.596000px;}
.h8{height:147.528000px;}
.h3{height:148.608000px;}
.he{height:149.904000px;}
.hf{height:150.984000px;}
.h16{height:151.044000px;}
.hd{height:151.875000px;}
.h22{height:156.515625px;}
.h15{height:160.056000px;}
.h1a{height:160.721609px;}
.h4{height:165.107616px;}
.h13{height:170.264016px;}
.h5{height:199.834524px;}
.h17{height:210.336132px;}
.ha{height:249.877476px;}
.h9{height:251.677746px;}
.h14{height:292.604094px;}
.h12{height:293.395986px;}
.h11{height:437.426244px;}
.h10{height:444.626676px;}
.h2{height:5055.547500px;}
.h0{height:5055.590551px;}
.h1{height:5055.750000px;}
.w2{width:3575.862000px;}
.w0{width:3575.905512px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x4{left:50.556000px;}
.x3{left:52.809000px;}
.x2{left:65.692500px;}
.x1{left:67.947000px;}
.x46{left:75.472500px;}
.x45{left:77.725500px;}
.x7c{left:139.719000px;}
.x7b{left:141.973500px;}
.x27{left:150.222000px;}
.x62{left:152.475000px;}
.x26{left:153.964500px;}
.x61{left:155.622000px;}
.x3c{left:157.536000px;}
.x14{left:163.743000px;}
.x4a{left:165.997500px;}
.x13{left:167.485500px;}
.x49{left:169.143000px;}
.x4b{left:170.334000px;}
.x16{left:176.499000px;}
.x63{left:195.081000px;}
.x64{left:197.334000px;}
.x29{left:201.246000px;}
.x2c{left:203.499000px;}
.x28{left:205.285500px;}
.x4c{left:208.602000px;}
.x4d{left:210.855000px;}
.x38{left:212.896500px;}
.x17{left:214.767000px;}
.x1a{left:217.020000px;}
.x15{left:218.806500px;}
.x78{left:223.780500px;}
.x21{left:232.753500px;}
.x7e{left:238.705500px;}
.x32{left:240.321000px;}
.x35{left:244.275000px;}
.x20{left:253.842000px;}
.x25{left:257.797500px;}
.x7d{left:268.597500px;}
.x77{left:283.734000px;}
.x2d{left:354.402000px;}
.x1b{left:367.923000px;}
.x39{left:412.866000px;}
.x33{left:419.839500px;}
.x79{left:427.705500px;}
.x22{left:433.360500px;}
.x74{left:445.479000px;}
.x7f{left:453.600000px;}
.x5d{left:459.000000px;}
.x7a{left:468.736500px;}
.x65{left:488.848500px;}
.x66{left:496.758000px;}
.x34{left:499.138500px;}
.x4e{left:502.369500px;}
.x3a{left:504.496500px;}
.x4f{left:510.279000px;}
.x24{left:512.659500px;}
.x23{left:525.288000px;}
.x75{left:544.294500px;}
.x2e{left:552.543000px;}
.x5e{left:557.815500px;}
.x1c{left:566.064000px;}
.x5f{left:571.336500px;}
.x67{left:601.696500px;}
.x68{left:609.604500px;}
.x50{left:615.217500px;}
.x51{left:623.125500px;}
.x2f{left:644.470500px;}
.x1d{left:657.991500px;}
.x30{left:686.268000px;}
.x1e{left:699.789000px;}
.x76{left:788.230500px;}
.x60{left:801.751500px;}
.x31{left:839.169000px;}
.x1f{left:852.690000px;}
.x72{left:865.233000px;}
.x6f{left:869.740500px;}
.x6e{left:871.696500px;}
.x69{left:876.373500px;}
.x5b{left:878.754000px;}
.x58{left:883.261500px;}
.x57{left:885.217500px;}
.x52{left:889.894500px;}
.x53{left:891.340500px;}
.x73{left:897.802500px;}
.x71{left:904.308000px;}
.x70{left:906.562500px;}
.x5c{left:911.325000px;}
.x5a{left:917.830500px;}
.x59{left:920.083500px;}
.x3b{left:937.389000px;}
.x2a{left:972.808500px;}
.x18{left:986.329500px;}
.x2b{left:996.747000px;}
.x19{left:1010.268000px;}
.x3d{left:1061.589000px;}
.x3e{left:1093.435500px;}
.x6b{left:1105.681500px;}
.x6a{left:1107.637500px;}
.x54{left:1119.202500px;}
.x3f{left:1120.989000px;}
.x6d{left:1140.250500px;}
.x6c{left:1142.503500px;}
.x56{left:1153.771500px;}
.x55{left:1156.024500px;}
.x37{left:1282.308000px;}
.x9f{left:1290.897000px;}
.x36{left:1295.830500px;}
.x8a{left:1502.773500px;}
.x40{left:1572.081000px;}
.x41{left:1622.848500px;}
.x88{left:1634.541000px;}
.x89{left:1723.875000px;}
.x42{left:1843.186500px;}
.x43{left:1913.386500px;}
.x8b{left:1981.758000px;}
.x84{left:1998.978000px;}
.x83{left:2000.934000px;}
.x8c{left:2003.059500px;}
.x81{left:2012.499000px;}
.x80{left:2014.455000px;}
.x47{left:2028.826500px;}
.x9e{left:2031.591000px;}
.x48{left:2034.780000px;}
.x85{left:2059.483500px;}
.x82{left:2073.004500px;}
.x6{left:2250.057000px;}
.x5{left:2253.075000px;}
.x7{left:2262.813000px;}
.x8{left:2301.081000px;}
.xa0{left:2418.136500px;}
.x87{left:2420.688000px;}
.x9c{left:2424.897000px;}
.x86{left:2434.209000px;}
.x99{left:2438.419500px;}
.x9d{left:2463.165000px;}
.x9b{left:2467.246500px;}
.x9a{left:2476.686000px;}
.x98{left:2480.769000px;}
.x9{left:2497.479000px;}
.xf{left:2503.389000px;}
.xd{left:2526.094500px;}
.x8e{left:2548.800000px;}
.x11{left:2584.219500px;}
.xa{left:2591.787000px;}
.x10{left:2597.697000px;}
.xe{left:2620.402500px;}
.x12{left:2692.048500px;}
.x44{left:2815.738500px;}
.xb{left:2819.820000px;}
.x8d{left:2863.446000px;}
.xc{left:2927.650500px;}
.x95{left:3055.762500px;}
.x94{left:3057.718500px;}
.x92{left:3069.283500px;}
.x91{left:3071.239500px;}
.x96{left:3117.330000px;}
.x93{left:3130.852500px;}
.x97{left:3281.670000px;}
.x8f{left:3316.918500px;}
.x90{left:3329.716500px;}
@media print{
.v6{vertical-align:-130.469333pt;}
.va{vertical-align:-119.888000pt;}
.ve{vertical-align:-42.933333pt;}
.vc{vertical-align:-41.728000pt;}
.v4{vertical-align:-30.234667pt;}
.v1{vertical-align:-22.528000pt;}
.v8{vertical-align:-17.536000pt;}
.v7{vertical-align:-14.362667pt;}
.v3{vertical-align:-13.306667pt;}
.v2{vertical-align:-8.010667pt;}
.vf{vertical-align:-6.954667pt;}
.vd{vertical-align:-4.234667pt;}
.vb{vertical-align:-2.720000pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:31.749333pt;}
.v9{vertical-align:97.514667pt;}
.v5{vertical-align:108.096000pt;}
.ls18{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.048000pt;}
.ls15{letter-spacing:0.074667pt;}
.ls8{letter-spacing:0.109333pt;}
.ls6{letter-spacing:0.114667pt;}
.ls7{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.302667pt;}
.ls16{letter-spacing:0.308000pt;}
.lsf{letter-spacing:7.822667pt;}
.ls2{letter-spacing:7.877333pt;}
.ls5{letter-spacing:7.984000pt;}
.ls4{letter-spacing:8.026667pt;}
.ls10{letter-spacing:8.042667pt;}
.ls11{letter-spacing:8.090667pt;}
.lse{letter-spacing:8.126667pt;}
.ls13{letter-spacing:8.144000pt;}
.ls12{letter-spacing:8.149333pt;}
.ls3{letter-spacing:8.325333pt;}
.lsd{letter-spacing:8.416885pt;}
.ls1{letter-spacing:13.533339pt;}
.lsa{letter-spacing:14.034261pt;}
.lsb{letter-spacing:14.488011pt;}
.lsc{letter-spacing:14.669909pt;}
.ls9{letter-spacing:21.831115pt;}
.ls0{letter-spacing:75.413781pt;}
.ws3{word-spacing:-97.842656pt;}
.ws2{word-spacing:-96.000000pt;}
.ws0{word-spacing:-63.988000pt;}
.ws4{word-spacing:-56.780203pt;}
.wsa{word-spacing:-53.184000pt;}
.ws1{word-spacing:-48.000000pt;}
.ws5{word-spacing:-26.592000pt;}
.ws8{word-spacing:-23.618128pt;}
.ws6{word-spacing:-18.635083pt;}
.ws9{word-spacing:-0.192000pt;}
.wsb{word-spacing:0.000000pt;}
.ws7{word-spacing:2145.637333pt;}
._f{margin-left:-426.378667pt;}
._10{margin-left:-14.782560pt;}
._4{margin-left:-8.064000pt;}
._3{margin-left:-7.104000pt;}
._5{margin-left:-6.144000pt;}
._8{margin-left:-4.607280pt;}
._6{margin-left:-2.880720pt;}
._0{margin-left:-1.279904pt;}
._9{width:1.157141pt;}
._d{width:4.101333pt;}
._7{width:5.251120pt;}
._e{width:6.512000pt;}
._1{width:7.626667pt;}
._2{width:8.773237pt;}
._c{width:14.165291pt;}
._b{width:17.925355pt;}
._a{width:22.014155pt;}
.fsc{font-size:21.317333pt;}
.fse{font-size:32.048000pt;}
.fs5{font-size:53.365333pt;}
.fs10{font-size:67.274667pt;}
.fs9{font-size:74.682667pt;}
.fs11{font-size:85.264000pt;}
.fs3{font-size:86.474667pt;}
.fsf{font-size:96.000000pt;}
.fsb{font-size:112.026667pt;}
.fs0{font-size:192.000000pt;}
.fsd{font-size:203.183861pt;}
.fs8{font-size:204.245333pt;}
.fs1{font-size:213.317333pt;}
.fs2{font-size:255.952000pt;}
.fsa{font-size:269.402667pt;}
.fs4{font-size:320.048000pt;}
.fs7{font-size:351.952000pt;}
.fs6{font-size:533.365333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y21{bottom:54.726667pt;}
.y7{bottom:56.012000pt;}
.y20{bottom:58.356000pt;}
.yd{bottom:69.466667pt;}
.y6{bottom:103.974667pt;}
.y1f{bottom:108.472000pt;}
.y1e{bottom:112.100000pt;}
.yc{bottom:117.429333pt;}
.y5{bottom:151.936000pt;}
.y1d{bottom:162.217333pt;}
.yb{bottom:165.392000pt;}
.y1c{bottom:165.845333pt;}
.y4{bottom:199.898667pt;}
.ya{bottom:213.353333pt;}
.y1b{bottom:215.961333pt;}
.y1a{bottom:219.590667pt;}
.y2{bottom:245.857333pt;}
.y3{bottom:247.861333pt;}
.y8{bottom:259.313333pt;}
.y9{bottom:261.316000pt;}
.y19{bottom:269.706667pt;}
.y18{bottom:273.334667pt;}
.y17{bottom:323.452000pt;}
.y16{bottom:327.080000pt;}
.y15{bottom:377.196000pt;}
.y14{bottom:380.825333pt;}
.y13{bottom:430.941333pt;}
.y12{bottom:434.569333pt;}
.y50{bottom:442.393333pt;}
.y51{bottom:444.132000pt;}
.y80{bottom:454.412000pt;}
.y81{bottom:456.150667pt;}
.y11{bottom:484.686667pt;}
.y10{bottom:488.314667pt;}
.y4e{bottom:488.692000pt;}
.y4f{bottom:490.696000pt;}
.y7e{bottom:500.712000pt;}
.y7f{bottom:502.714667pt;}
.y4c{bottom:534.765333pt;}
.y4d{bottom:536.768000pt;}
.ye{bottom:541.341333pt;}
.yf{bottom:544.025333pt;}
.y7c{bottom:546.784000pt;}
.y7d{bottom:548.786667pt;}
.y4a{bottom:580.837333pt;}
.y4b{bottom:582.840000pt;}
.y7a{bottom:592.856000pt;}
.y7b{bottom:594.860000pt;}
.y148{bottom:618.028000pt;}
.y49{bottom:628.913333pt;}
.y48{bottom:634.469333pt;}
.y79{bottom:640.932000pt;}
.y78{bottom:646.488000pt;}
.y147{bottom:668.597333pt;}
.y13f{bottom:678.046667pt;}
.y46{bottom:685.454667pt;}
.y47{bottom:687.457333pt;}
.y145{bottom:690.065333pt;}
.y76{bottom:697.473333pt;}
.y77{bottom:699.477333pt;}
.y13e{bottom:726.046667pt;}
.y44{bottom:731.526667pt;}
.y45{bottom:733.530667pt;}
.y144{bottom:738.065333pt;}
.y74{bottom:743.545333pt;}
.y75{bottom:745.549333pt;}
.y10a{bottom:753.600000pt;}
.y115{bottom:765.618667pt;}
.y13d{bottom:774.046667pt;}
.y42{bottom:777.600000pt;}
.y43{bottom:779.602667pt;}
.y143{bottom:786.065333pt;}
.y72{bottom:789.618667pt;}
.y73{bottom:791.621333pt;}
.y109{bottom:801.600000pt;}
.y114{bottom:813.618667pt;}
.y13c{bottom:822.046667pt;}
.y41{bottom:825.674667pt;}
.y40{bottom:831.230667pt;}
.y142{bottom:834.065333pt;}
.y71{bottom:837.694667pt;}
.y70{bottom:843.249333pt;}
.y108{bottom:850.090667pt;}
.y113{bottom:862.109333pt;}
.y13b{bottom:870.046667pt;}
.y141{bottom:882.065333pt;}
.y3e{bottom:882.217333pt;}
.y3f{bottom:884.220000pt;}
.y6e{bottom:894.236000pt;}
.y6f{bottom:896.238667pt;}
.y107{bottom:898.090667pt;}
.y112{bottom:910.109333pt;}
.y3c{bottom:928.289333pt;}
.y13a{bottom:929.385333pt;}
.y3d{bottom:930.292000pt;}
.y6c{bottom:940.308000pt;}
.y140{bottom:941.404000pt;}
.y6d{bottom:942.312000pt;}
.y106{bottom:946.090667pt;}
.y111{bottom:958.109333pt;}
.y3b{bottom:976.365333pt;}
.y3a{bottom:981.921333pt;}
.y6b{bottom:988.384000pt;}
.y105{bottom:992.352000pt;}
.y6a{bottom:993.940000pt;}
.y104{bottom:994.090667pt;}
.y110{bottom:1004.370667pt;}
.y10f{bottom:1006.109333pt;}
.y38{bottom:1032.906667pt;}
.y39{bottom:1034.909333pt;}
.y103{bottom:1042.582667pt;}
.y68{bottom:1044.925333pt;}
.y69{bottom:1046.928000pt;}
.y10e{bottom:1054.601333pt;}
.y14c{bottom:1064.541333pt;}
.y36{bottom:1078.978667pt;}
.y37{bottom:1080.982667pt;}
.y102{bottom:1090.582667pt;}
.y66{bottom:1090.997333pt;}
.y67{bottom:1093.001333pt;}
.y10d{bottom:1102.601333pt;}
.y14b{bottom:1118.286667pt;}
.y35{bottom:1127.054667pt;}
.y34{bottom:1132.610667pt;}
.y101{bottom:1138.582667pt;}
.y65{bottom:1139.073333pt;}
.y64{bottom:1144.629333pt;}
.y10c{bottom:1150.601333pt;}
.y14a{bottom:1172.030667pt;}
.y33{bottom:1185.600000pt;}
.y100{bottom:1186.922667pt;}
.y32{bottom:1191.156000pt;}
.y63{bottom:1197.618667pt;}
.y10b{bottom:1198.941333pt;}
.y62{bottom:1203.174667pt;}
.y149{bottom:1225.776000pt;}
.y30{bottom:1242.141333pt;}
.y31{bottom:1244.144000pt;}
.y60{bottom:1254.160000pt;}
.y61{bottom:1256.162667pt;}
.y2e{bottom:1288.213333pt;}
.y2f{bottom:1290.217333pt;}
.y5e{bottom:1300.232000pt;}
.y5f{bottom:1302.236000pt;}
.y2d{bottom:1336.289333pt;}
.y2c{bottom:1341.845333pt;}
.y131{bottom:1347.778667pt;}
.y5d{bottom:1348.308000pt;}
.y5c{bottom:1353.864000pt;}
.y138{bottom:1359.797333pt;}
.y2a{bottom:1392.830667pt;}
.y2b{bottom:1394.834667pt;}
.y130{bottom:1395.778667pt;}
.y5a{bottom:1404.849333pt;}
.y5b{bottom:1406.853333pt;}
.y137{bottom:1407.797333pt;}
.y29{bottom:1440.906667pt;}
.y12f{bottom:1443.778667pt;}
.y28{bottom:1446.462667pt;}
.y59{bottom:1452.925333pt;}
.y136{bottom:1455.797333pt;}
.y58{bottom:1458.481333pt;}
.y12e{bottom:1490.040000pt;}
.y12d{bottom:1491.778667pt;}
.y26{bottom:1497.448000pt;}
.y27{bottom:1499.452000pt;}
.y135{bottom:1502.060000pt;}
.y134{bottom:1503.797333pt;}
.y56{bottom:1509.466667pt;}
.y57{bottom:1511.470667pt;}
.y12c{bottom:1540.270667pt;}
.y25{bottom:1545.524000pt;}
.y24{bottom:1551.080000pt;}
.y133{bottom:1552.289333pt;}
.y55{bottom:1557.542667pt;}
.y54{bottom:1563.098667pt;}
.y12b{bottom:1588.610667pt;}
.y132{bottom:1600.629333pt;}
.y22{bottom:1627.728000pt;}
.y23{bottom:1631.054667pt;}
.y52{bottom:1639.748000pt;}
.y53{bottom:1643.073333pt;}
.yec{bottom:1824.604000pt;}
.yed{bottom:1826.608000pt;}
.yfe{bottom:1838.060000pt;}
.yff{bottom:1840.062667pt;}
.yea{bottom:1867.804000pt;}
.yeb{bottom:1869.808000pt;}
.yfc{bottom:1881.260000pt;}
.yfd{bottom:1883.262667pt;}
.ye8{bottom:1910.966667pt;}
.ye9{bottom:1912.969333pt;}
.yfa{bottom:1924.421333pt;}
.yfb{bottom:1926.425333pt;}
.ye6{bottom:1954.657333pt;}
.ye7{bottom:1956.661333pt;}
.yf8{bottom:1968.113333pt;}
.yf9{bottom:1970.116000pt;}
.ye4{bottom:1997.857333pt;}
.ye5{bottom:1999.861333pt;}
.yf6{bottom:2011.313333pt;}
.yf7{bottom:2013.316000pt;}
.ye2{bottom:2041.057333pt;}
.ye3{bottom:2043.061333pt;}
.yf4{bottom:2054.513333pt;}
.yf5{bottom:2056.516000pt;}
.ye0{bottom:2084.257333pt;}
.ye1{bottom:2086.261333pt;}
.yf2{bottom:2097.713333pt;}
.yf3{bottom:2099.716000pt;}
.yde{bottom:2127.457333pt;}
.ydf{bottom:2129.461333pt;}
.yf0{bottom:2140.913333pt;}
.yf1{bottom:2142.916000pt;}
.ydc{bottom:2170.960000pt;}
.ydd{bottom:2172.962667pt;}
.yee{bottom:2184.414667pt;}
.yef{bottom:2186.418667pt;}
.y8e{bottom:2282.682667pt;}
.y9b{bottom:2294.701333pt;}
.y8d{bottom:2330.682667pt;}
.y9a{bottom:2342.701333pt;}
.y8c{bottom:2378.682667pt;}
.y99{bottom:2390.701333pt;}
.y8b{bottom:2426.682667pt;}
.y98{bottom:2438.701333pt;}
.y8a{bottom:2474.682667pt;}
.y97{bottom:2486.701333pt;}
.y89{bottom:2523.022667pt;}
.y96{bottom:2535.042667pt;}
.y88{bottom:2571.817333pt;}
.y95{bottom:2583.836000pt;}
.y87{bottom:2619.817333pt;}
.y11b{bottom:2625.297333pt;}
.y94{bottom:2631.836000pt;}
.y121{bottom:2637.316000pt;}
.y86{bottom:2667.817333pt;}
.y11a{bottom:2673.297333pt;}
.y93{bottom:2679.836000pt;}
.y120{bottom:2685.316000pt;}
.y85{bottom:2716.308000pt;}
.y119{bottom:2721.297333pt;}
.y92{bottom:2728.326667pt;}
.y11f{bottom:2733.316000pt;}
.y84{bottom:2764.308000pt;}
.y118{bottom:2769.297333pt;}
.y91{bottom:2776.326667pt;}
.y11e{bottom:2781.316000pt;}
.y83{bottom:2812.308000pt;}
.y117{bottom:2817.637333pt;}
.y90{bottom:2824.326667pt;}
.y11d{bottom:2829.656000pt;}
.y82{bottom:2860.648000pt;}
.y116{bottom:2865.977333pt;}
.y8f{bottom:2872.666667pt;}
.y11c{bottom:2877.996000pt;}
.y124{bottom:3139.880000pt;}
.y128{bottom:3143.660000pt;}
.y12a{bottom:3253.114667pt;}
.ybf{bottom:3326.324000pt;}
.yc0{bottom:3328.326667pt;}
.yda{bottom:3338.342667pt;}
.ydb{bottom:3340.345333pt;}
.y126{bottom:3358.941333pt;}
.ybe{bottom:3371.526667pt;}
.ybd{bottom:3379.956000pt;}
.yd9{bottom:3383.545333pt;}
.yd8{bottom:3391.974667pt;}
.ybb{bottom:3419.452000pt;}
.ybc{bottom:3421.454667pt;}
.yd6{bottom:3431.470667pt;}
.yd7{bottom:3433.473333pt;}
.y122{bottom:3434.682667pt;}
.yb9{bottom:3462.652000pt;}
.yba{bottom:3464.654667pt;}
.yd4{bottom:3474.670667pt;}
.yd5{bottom:3476.673333pt;}
.yb7{bottom:3505.852000pt;}
.yb8{bottom:3507.854667pt;}
.yd2{bottom:3517.870667pt;}
.yd3{bottom:3519.873333pt;}
.yb6{bottom:3551.054667pt;}
.y139{bottom:3558.878667pt;}
.yb5{bottom:3559.482667pt;}
.yd1{bottom:3563.073333pt;}
.yd0{bottom:3571.501333pt;}
.yb4{bottom:3600.982667pt;}
.yb3{bottom:3609.410667pt;}
.y146{bottom:3611.792000pt;}
.ycf{bottom:3613.001333pt;}
.yce{bottom:3621.429333pt;}
.y127{bottom:3631.218667pt;}
.yb1{bottom:3648.869333pt;}
.yb2{bottom:3650.872000pt;}
.ycc{bottom:3660.888000pt;}
.y123{bottom:3661.454667pt;}
.ycd{bottom:3662.890667pt;}
.yb0{bottom:3692.522667pt;}
.yaf{bottom:3692.786667pt;}
.yae{bottom:3694.525333pt;}
.yad{bottom:3703.256000pt;}
.ycb{bottom:3704.541333pt;}
.yca{bottom:3704.805333pt;}
.yc9{bottom:3706.544000pt;}
.yc8{bottom:3715.274667pt;}
.yaa{bottom:3742.904000pt;}
.yac{bottom:3743.168000pt;}
.yab{bottom:3744.906667pt;}
.yc5{bottom:3754.922667pt;}
.yc7{bottom:3755.186667pt;}
.yc6{bottom:3756.925333pt;}
.ya9{bottom:3788.597333pt;}
.ya8{bottom:3797.026667pt;}
.yc4{bottom:3800.617333pt;}
.yc3{bottom:3809.045333pt;}
.y129{bottom:3816.264000pt;}
.y125{bottom:3820.044000pt;}
.ya6{bottom:3854.853333pt;}
.ya7{bottom:3857.649333pt;}
.yc1{bottom:3866.872000pt;}
.yc2{bottom:3869.669333pt;}
.ya4{bottom:3968.012000pt;}
.ya5{bottom:3970.014667pt;}
.ya0{bottom:4025.309333pt;}
.ya1{bottom:4028.900000pt;}
.ya3{bottom:4055.281333pt;}
.ya2{bottom:4057.926667pt;}
.y9e{bottom:4145.348000pt;}
.y9f{bottom:4151.621333pt;}
.y9c{bottom:4302.312000pt;}
.y9d{bottom:4307.792000pt;}
.h21{height:61.783094pt;}
.h1e{height:69.562500pt;}
.h20{height:80.491854pt;}
.h1d{height:80.497188pt;}
.h1f{height:81.099854pt;}
.h1b{height:89.162667pt;}
.h18{height:90.368000pt;}
.h1c{height:90.373333pt;}
.hc{height:101.856000pt;}
.hb{height:101.861333pt;}
.h6{height:109.568000pt;}
.h7{height:109.573333pt;}
.h19{height:124.085333pt;}
.h8{height:131.136000pt;}
.h3{height:132.096000pt;}
.he{height:133.248000pt;}
.hf{height:134.208000pt;}
.h16{height:134.261333pt;}
.hd{height:135.000000pt;}
.h22{height:139.125000pt;}
.h15{height:142.272000pt;}
.h1a{height:142.863652pt;}
.h4{height:146.762325pt;}
.h13{height:151.345792pt;}
.h5{height:177.630688pt;}
.h17{height:186.965451pt;}
.ha{height:222.113312pt;}
.h9{height:223.713552pt;}
.h14{height:260.092528pt;}
.h12{height:260.796432pt;}
.h11{height:388.823328pt;}
.h10{height:395.223712pt;}
.h2{height:4493.820000pt;}
.h0{height:4493.858268pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.544000pt;}
.w0{width:3178.582677pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x4{left:44.938667pt;}
.x3{left:46.941333pt;}
.x2{left:58.393333pt;}
.x1{left:60.397333pt;}
.x46{left:67.086667pt;}
.x45{left:69.089333pt;}
.x7c{left:124.194667pt;}
.x7b{left:126.198667pt;}
.x27{left:133.530667pt;}
.x62{left:135.533333pt;}
.x26{left:136.857333pt;}
.x61{left:138.330667pt;}
.x3c{left:140.032000pt;}
.x14{left:145.549333pt;}
.x4a{left:147.553333pt;}
.x13{left:148.876000pt;}
.x49{left:150.349333pt;}
.x4b{left:151.408000pt;}
.x16{left:156.888000pt;}
.x63{left:173.405333pt;}
.x64{left:175.408000pt;}
.x29{left:178.885333pt;}
.x2c{left:180.888000pt;}
.x28{left:182.476000pt;}
.x4c{left:185.424000pt;}
.x4d{left:187.426667pt;}
.x38{left:189.241333pt;}
.x17{left:190.904000pt;}
.x1a{left:192.906667pt;}
.x15{left:194.494667pt;}
.x78{left:198.916000pt;}
.x21{left:206.892000pt;}
.x7e{left:212.182667pt;}
.x32{left:213.618667pt;}
.x35{left:217.133333pt;}
.x20{left:225.637333pt;}
.x25{left:229.153333pt;}
.x7d{left:238.753333pt;}
.x77{left:252.208000pt;}
.x2d{left:315.024000pt;}
.x1b{left:327.042667pt;}
.x39{left:366.992000pt;}
.x33{left:373.190667pt;}
.x79{left:380.182667pt;}
.x22{left:385.209333pt;}
.x74{left:395.981333pt;}
.x7f{left:403.200000pt;}
.x5d{left:408.000000pt;}
.x7a{left:416.654667pt;}
.x65{left:434.532000pt;}
.x66{left:441.562667pt;}
.x34{left:443.678667pt;}
.x4e{left:446.550667pt;}
.x3a{left:448.441333pt;}
.x4f{left:453.581333pt;}
.x24{left:455.697333pt;}
.x23{left:466.922667pt;}
.x75{left:483.817333pt;}
.x2e{left:491.149333pt;}
.x5e{left:495.836000pt;}
.x1c{left:503.168000pt;}
.x5f{left:507.854667pt;}
.x67{left:534.841333pt;}
.x68{left:541.870667pt;}
.x50{left:546.860000pt;}
.x51{left:553.889333pt;}
.x2f{left:572.862667pt;}
.x1d{left:584.881333pt;}
.x30{left:610.016000pt;}
.x1e{left:622.034667pt;}
.x76{left:700.649333pt;}
.x60{left:712.668000pt;}
.x31{left:745.928000pt;}
.x1f{left:757.946667pt;}
.x72{left:769.096000pt;}
.x6f{left:773.102667pt;}
.x6e{left:774.841333pt;}
.x69{left:778.998667pt;}
.x5b{left:781.114667pt;}
.x58{left:785.121333pt;}
.x57{left:786.860000pt;}
.x52{left:791.017333pt;}
.x53{left:792.302667pt;}
.x73{left:798.046667pt;}
.x71{left:803.829333pt;}
.x70{left:805.833333pt;}
.x5c{left:810.066667pt;}
.x5a{left:815.849333pt;}
.x59{left:817.852000pt;}
.x3b{left:833.234667pt;}
.x2a{left:864.718667pt;}
.x18{left:876.737333pt;}
.x2b{left:885.997333pt;}
.x19{left:898.016000pt;}
.x3d{left:943.634667pt;}
.x3e{left:971.942667pt;}
.x6b{left:982.828000pt;}
.x6a{left:984.566667pt;}
.x54{left:994.846667pt;}
.x3f{left:996.434667pt;}
.x6d{left:1013.556000pt;}
.x6c{left:1015.558667pt;}
.x56{left:1025.574667pt;}
.x55{left:1027.577333pt;}
.x37{left:1139.829333pt;}
.x9f{left:1147.464000pt;}
.x36{left:1151.849333pt;}
.x8a{left:1335.798667pt;}
.x40{left:1397.405333pt;}
.x41{left:1442.532000pt;}
.x88{left:1452.925333pt;}
.x89{left:1532.333333pt;}
.x42{left:1638.388000pt;}
.x43{left:1700.788000pt;}
.x8b{left:1761.562667pt;}
.x84{left:1776.869333pt;}
.x83{left:1778.608000pt;}
.x8c{left:1780.497333pt;}
.x81{left:1788.888000pt;}
.x80{left:1790.626667pt;}
.x47{left:1803.401333pt;}
.x9e{left:1805.858667pt;}
.x48{left:1808.693333pt;}
.x85{left:1830.652000pt;}
.x82{left:1842.670667pt;}
.x6{left:2000.050667pt;}
.x5{left:2002.733333pt;}
.x7{left:2011.389333pt;}
.x8{left:2045.405333pt;}
.xa0{left:2149.454667pt;}
.x87{left:2151.722667pt;}
.x9c{left:2155.464000pt;}
.x86{left:2163.741333pt;}
.x99{left:2167.484000pt;}
.x9d{left:2189.480000pt;}
.x9b{left:2193.108000pt;}
.x9a{left:2201.498667pt;}
.x98{left:2205.128000pt;}
.x9{left:2219.981333pt;}
.xf{left:2225.234667pt;}
.xd{left:2245.417333pt;}
.x8e{left:2265.600000pt;}
.x11{left:2297.084000pt;}
.xa{left:2303.810667pt;}
.x10{left:2309.064000pt;}
.xe{left:2329.246667pt;}
.x12{left:2392.932000pt;}
.x44{left:2502.878667pt;}
.xb{left:2506.506667pt;}
.x8d{left:2545.285333pt;}
.xc{left:2602.356000pt;}
.x95{left:2716.233333pt;}
.x94{left:2717.972000pt;}
.x92{left:2728.252000pt;}
.x91{left:2729.990667pt;}
.x96{left:2770.960000pt;}
.x93{left:2782.980000pt;}
.x97{left:2917.040000pt;}
.x8f{left:2948.372000pt;}
.x90{left:2959.748000pt;}
}




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