
    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_fd0d534767f1eb0abda3c634.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a3e033f5b2825141bcfcbe76.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_656c8068863b6e1eefe0a98f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7855e842773bf35195ba33f6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_d6ec7add5a7efafe046de663.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_85d3715c3ded3bb71cedfb4a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_89f0c5fff52723bc3246ef49.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853516;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_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.773926;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-69.264000px;}
.v5{vertical-align:-66.240000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v3{vertical-align:30.240000px;}
.v2{vertical-align:35.280000px;}
.ls1c{letter-spacing:-1.182000px;}
.ls1d{letter-spacing:-0.978000px;}
.ls7{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.540000px;}
.ls2d{letter-spacing:-0.538800px;}
.ls14{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.269400px;}
.ls1b{letter-spacing:-0.259800px;}
.ls2e{letter-spacing:-0.223800px;}
.ls8{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.181200px;}
.ls12{letter-spacing:-0.144000px;}
.ls30{letter-spacing:-0.108000px;}
.ls1e{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.033840px;}
.lsa{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.135360px;}
.lsd{letter-spacing:0.153360px;}
.ls1f{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.206400px;}
.ls29{letter-spacing:0.206640px;}
.ls31{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.223800px;}
.ls6{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls2a{letter-spacing:0.306600px;}
.ls27{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.486600px;}
.ls2c{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.774000px;}
.ls15{letter-spacing:0.828000px;}
.ls2b{letter-spacing:1.620000px;}
.ls23{letter-spacing:2.340000px;}
.lse{letter-spacing:3.060000px;}
.ls26{letter-spacing:6.660000px;}
.ls2f{letter-spacing:6.840000px;}
.ls28{letter-spacing:10.260000px;}
.ls17{letter-spacing:16.740000px;}
.ls3{letter-spacing:66.162720px;}
.ls24{letter-spacing:191.676000px;}
.ls1a{letter-spacing:418.476000px;}
.ls19{letter-spacing:608.016000px;}
.lsf{letter-spacing:1941.060000px;}
.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;}
}
.ws1a{word-spacing:-59.760000px;}
.ws10{word-spacing:-15.714000px;}
.ws2{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.246600px;}
.ws7{word-spacing:-15.199800px;}
.ws18{word-spacing:-15.146400px;}
.wsf{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.796000px;}
.ws11{word-spacing:-14.680200px;}
.ws0{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.479800px;}
.ws12{word-spacing:-13.962000px;}
.ws4{word-spacing:-13.860000px;}
.ws20{word-spacing:-13.716000px;}
.ws21{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.392000px;}
.ws3{word-spacing:-13.284000px;}
.ws17{word-spacing:-12.420000px;}
.ws14{word-spacing:-12.283800px;}
.ws1b{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.878800px;}
.ws1e{word-spacing:-11.836200px;}
.ws16{word-spacing:-11.790600px;}
.ws1d{word-spacing:-11.700000px;}
.ws1c{word-spacing:-11.521200px;}
.ws9{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.187200px;}
.ws5{word-spacing:0.000000px;}
.wse{word-spacing:7.758720px;}
.wsb{word-spacing:23.974920px;}
._f{margin-left:-7.020000px;}
._1c{margin-left:-4.448400px;}
._13{margin-left:-3.210480px;}
._a{margin-left:-2.200320px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._d{width:4.387680px;}
._9{width:5.436000px;}
._4{width:6.840000px;}
._5{width:7.956000px;}
._e{width:9.442080px;}
._8{width:11.127360px;}
._7{width:12.150000px;}
._12{width:13.505760px;}
._25{width:14.737680px;}
._16{width:16.014240px;}
._19{width:17.702400px;}
._17{width:18.756000px;}
._1d{width:20.646720px;}
._1b{width:21.849360px;}
._1a{width:22.888080px;}
._26{width:24.409440px;}
._6{width:25.758000px;}
._1f{width:26.873280px;}
._c{width:30.521280px;}
._b{width:31.536000px;}
._20{width:33.506640px;}
._23{width:35.708160px;}
._21{width:36.793440px;}
._24{width:41.184480px;}
._1e{width:50.119920px;}
._2a{width:55.062720px;}
._29{width:56.177280px;}
._28{width:58.380000px;}
._22{width:59.828160px;}
._27{width:61.542480px;}
._14{width:509.086560px;}
._10{width:736.380000px;}
._15{width:865.686720px;}
._11{width:1073.100000px;}
._3{width:1101.912000px;}
._18{width:1866.720000px;}
.fc6{color:rgb(112,48,160);}
.fc5{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(0,176,240);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:2.520000px;}
.y2a{bottom:2.880000px;}
.y16e{bottom:3.060000px;}
.y10{bottom:3.240000px;}
.y111{bottom:3.780000px;}
.y32{bottom:9.000000px;}
.y38{bottom:12.240000px;}
.yec{bottom:16.200000px;}
.ye7{bottom:16.380000px;}
.yf6{bottom:16.425000px;}
.y29{bottom:18.540000px;}
.y10d{bottom:20.340000px;}
.y15{bottom:20.520000px;}
.y10e{bottom:20.880000px;}
.y10b{bottom:21.060000px;}
.y37{bottom:29.520000px;}
.y170{bottom:31.680000px;}
.y16c{bottom:33.300000px;}
.y17b{bottom:34.020000px;}
.y28{bottom:34.050000px;}
.y14{bottom:37.800000px;}
.ye5{bottom:43.920000px;}
.yf3{bottom:43.965000px;}
.y36{bottom:46.800000px;}
.y16b{bottom:48.780000px;}
.y18b{bottom:48.825000px;}
.y17a{bottom:49.500000px;}
.y27{bottom:49.530000px;}
.y13{bottom:55.080000px;}
.y35{bottom:64.080000px;}
.y16a{bottom:64.260000px;}
.y18a{bottom:64.305000px;}
.y181{bottom:64.440000px;}
.y179{bottom:64.980000px;}
.y26{bottom:65.010000px;}
.y31{bottom:65.880000px;}
.y114{bottom:72.405000px;}
.y169{bottom:79.740000px;}
.y180{bottom:79.920000px;}
.y189{bottom:79.965000px;}
.y178{bottom:80.640000px;}
.y25{bottom:80.670000px;}
.y12{bottom:81.180000px;}
.y5{bottom:88.200000px;}
.y34{bottom:90.360000px;}
.y168{bottom:95.400000px;}
.y188{bottom:95.445000px;}
.y177{bottom:96.120000px;}
.y24{bottom:96.150000px;}
.y167{bottom:110.880000px;}
.y17f{bottom:110.910000px;}
.y187{bottom:110.925000px;}
.y176{bottom:111.600000px;}
.y23{bottom:111.630000px;}
.yb6{bottom:112.860000px;}
.y107{bottom:116.280000px;}
.y162{bottom:121.320000px;}
.y166{bottom:126.360000px;}
.y186{bottom:126.405000px;}
.y17e{bottom:126.570000px;}
.y175{bottom:127.080000px;}
.y22{bottom:127.110000px;}
.y18f{bottom:129.780000px;}
.yb5{bottom:130.140000px;}
.y78{bottom:131.400000px;}
.y106{bottom:133.560000px;}
.y11f{bottom:134.460000px;}
.y161{bottom:135.036000px;}
.y48{bottom:141.516000px;}
.y165{bottom:141.840000px;}
.y17d{bottom:142.050000px;}
.y185{bottom:142.065000px;}
.y174{bottom:142.740000px;}
.y21{bottom:142.770000px;}
.yd0{bottom:144.756000px;}
.y18e{bottom:147.096000px;}
.yb4{bottom:147.456000px;}
.y77{bottom:148.716000px;}
.y160{bottom:148.896000px;}
.y105{bottom:150.870000px;}
.y11e{bottom:151.770000px;}
.y30{bottom:153.390000px;}
.y164{bottom:157.500000px;}
.y17c{bottom:157.530000px;}
.y184{bottom:157.545000px;}
.y173{bottom:158.220000px;}
.y20{bottom:158.250000px;}
.y47{bottom:158.790000px;}
.y18d{bottom:161.130000px;}
.y15f{bottom:162.750000px;}
.yb3{bottom:164.730000px;}
.y76{bottom:165.990000px;}
.y104{bottom:168.150000px;}
.y11d{bottom:169.050000px;}
.y2f{bottom:170.670000px;}
.y1f{bottom:173.730000px;}
.y172{bottom:173.745000px;}
.y46{bottom:175.890000px;}
.y15e{bottom:176.430000px;}
.yb2{bottom:181.830000px;}
.y75{bottom:183.270000px;}
.y103{bottom:185.250000px;}
.y11c{bottom:186.330000px;}
.y2e{bottom:187.950000px;}
.y1e{bottom:189.210000px;}
.y171{bottom:189.225000px;}
.y15d{bottom:190.290000px;}
.y45{bottom:193.170000px;}
.yb1{bottom:198.390000px;}
.y74{bottom:200.550000px;}
.y102{bottom:202.530000px;}
.y11b{bottom:203.250000px;}
.y15c{bottom:204.150000px;}
.y1d{bottom:204.690000px;}
.y2d{bottom:205.230000px;}
.y44{bottom:210.450000px;}
.yb0{bottom:212.250000px;}
.y73{bottom:216.930000px;}
.y15b{bottom:217.830000px;}
.y11a{bottom:218.730000px;}
.y101{bottom:219.810000px;}
.y1c{bottom:220.350000px;}
.y2c{bottom:222.510000px;}
.yaf{bottom:226.830000px;}
.y43{bottom:227.730000px;}
.y72{bottom:231.510000px;}
.y15a{bottom:231.690000px;}
.y119{bottom:234.570000px;}
.y1b{bottom:235.830000px;}
.y100{bottom:237.090000px;}
.yae{bottom:243.930000px;}
.y42{bottom:245.010000px;}
.y159{bottom:245.550000px;}
.y2b{bottom:248.610000px;}
.y71{bottom:248.790000px;}
.y1a{bottom:251.310000px;}
.y118{bottom:251.850000px;}
.yff{bottom:254.370000px;}
.y158{bottom:259.230000px;}
.yad{bottom:261.210000px;}
.y41{bottom:262.110000px;}
.y70{bottom:266.070000px;}
.y19{bottom:266.790000px;}
.y117{bottom:269.130000px;}
.yfe{bottom:271.650000px;}
.y157{bottom:273.090000px;}
.yac{bottom:278.490000px;}
.y40{bottom:279.390000px;}
.y6f{bottom:283.170000px;}
.y116{bottom:286.410000px;}
.y156{bottom:286.950000px;}
.yfd{bottom:288.750000px;}
.yab{bottom:295.770000px;}
.y3f{bottom:296.670000px;}
.y6e{bottom:300.450000px;}
.y155{bottom:300.630000px;}
.y115{bottom:303.510000px;}
.yfc{bottom:306.030000px;}
.yaa{bottom:312.330000px;}
.y3e{bottom:313.950000px;}
.y154{bottom:314.490000px;}
.y113{bottom:317.550000px;}
.y6d{bottom:317.730000px;}
.yfb{bottom:323.310000px;}
.ya9{bottom:326.730000px;}
.y153{bottom:328.350000px;}
.y3d{bottom:331.230000px;}
.y18c{bottom:332.130000px;}
.y6c{bottom:335.010000px;}
.yfa{bottom:340.590000px;}
.y152{bottom:342.030000px;}
.ya8{bottom:344.010000px;}
.ycf{bottom:346.710000px;}
.y183{bottom:347.610000px;}
.y3c{bottom:348.510000px;}
.y6b{bottom:352.290000px;}
.y17{bottom:353.730000px;}
.y151{bottom:355.890000px;}
.yf9{bottom:357.150000px;}
.ya7{bottom:360.570000px;}
.yce{bottom:363.990000px;}
.y3b{bottom:365.610000px;}
.y6a{bottom:369.570000px;}
.y150{bottom:369.750000px;}
.yf8{bottom:370.830000px;}
.ya6{bottom:371.910000px;}
.ycd{bottom:378.750000px;}
.ya5{bottom:379.470000px;}
.y3a{bottom:382.890000px;}
.y14f{bottom:383.430000px;}
.y69{bottom:386.670000px;}
.ycc{bottom:392.655000px;}
.yf7{bottom:396.795000px;}
.y14e{bottom:397.335000px;}
.ya4{bottom:399.495000px;}
.y39{bottom:400.215000px;}
.y68{bottom:403.995000px;}
.ycb{bottom:406.335000px;}
.yf4{bottom:410.655000px;}
.y14d{bottom:411.195000px;}
.ya3{bottom:414.075000px;}
.y33{bottom:416.415000px;}
.y112{bottom:418.395000px;}
.yca{bottom:420.195000px;}
.y67{bottom:420.555000px;}
.yf5{bottom:424.335000px;}
.y14c{bottom:424.875000px;}
.ya2{bottom:431.355000px;}
.yc9{bottom:434.055000px;}
.y66{bottom:434.415000px;}
.y110{bottom:435.675000px;}
.yef{bottom:438.195000px;}
.y14b{bottom:438.735000px;}
.yc8{bottom:448.455000px;}
.ya1{bottom:448.635000px;}
.y65{bottom:448.815000px;}
.yf2{bottom:452.055000px;}
.y14a{bottom:452.595000px;}
.y10f{bottom:452.955000px;}
.yc6{bottom:462.315000px;}
.y64{bottom:465.375000px;}
.yf0{bottom:465.735000px;}
.ya0{bottom:465.915000px;}
.y149{bottom:466.275000px;}
.y63{bottom:476.715000px;}
.yf1{bottom:479.595000px;}
.y148{bottom:480.135000px;}
.y9f{bottom:483.015000px;}
.y10c{bottom:487.515000px;}
.yea{bottom:493.275000px;}
.y147{bottom:493.995000px;}
.yc5{bottom:496.695000px;}
.y9e{bottom:500.295000px;}
.yee{bottom:507.135000px;}
.y146{bottom:507.675000px;}
.yc4{bottom:510.375000px;}
.y9d{bottom:517.575000px;}
.y182{bottom:518.655000px;}
.yeb{bottom:520.995000px;}
.y145{bottom:521.535000px;}
.y10a{bottom:521.895000px;}
.yc3{bottom:524.955000px;}
.y16{bottom:530.535000px;}
.y9c{bottom:534.135000px;}
.yed{bottom:534.675000px;}
.y144{bottom:535.395000px;}
.yc2{bottom:542.235000px;}
.y9b{bottom:545.475000px;}
.ye4{bottom:548.535000px;}
.y143{bottom:549.075000px;}
.y9a{bottom:553.035000px;}
.y109{bottom:557.175000px;}
.yc1{bottom:559.515000px;}
.ye9{bottom:562.395000px;}
.y142{bottom:562.935000px;}
.y99{bottom:573.195000px;}
.ye6{bottom:576.075000px;}
.yc0{bottom:576.615000px;}
.y141{bottom:576.795000px;}
.y108{bottom:578.055000px;}
.y98{bottom:587.775000px;}
.ye8{bottom:589.935000px;}
.y140{bottom:590.475000px;}
.ybf{bottom:593.895000px;}
.y13f{bottom:604.335000px;}
.ye3{bottom:604.515000px;}
.y97{bottom:605.055000px;}
.ybe{bottom:611.175000px;}
.y13e{bottom:618.195000px;}
.ye2{bottom:618.375000px;}
.y18{bottom:618.735000px;}
.y96{bottom:622.335000px;}
.ybd{bottom:628.455000px;}
.y13d{bottom:631.875000px;}
.y95{bottom:638.895000px;}
.ybc{bottom:645.765000px;}
.ye1{bottom:652.605000px;}
.y94{bottom:653.325000px;}
.y13c{bottom:659.625000px;}
.ybb{bottom:663.045000px;}
.ye0{bottom:666.465000px;}
.y93{bottom:670.605000px;}
.y13b{bottom:673.305000px;}
.yba{bottom:680.145000px;}
.ydf{bottom:681.045000px;}
.y13a{bottom:687.165000px;}
.y92{bottom:687.885000px;}
.yb9{bottom:697.425000px;}
.yde{bottom:698.145000px;}
.y139{bottom:701.025000px;}
.y91{bottom:705.165000px;}
.yb8{bottom:714.705000px;}
.ydd{bottom:715.425000px;}
.y16f{bottom:720.645000px;}
.y62{bottom:720.825000px;}
.y90{bottom:721.725000px;}
.y138{bottom:728.565000px;}
.yb7{bottom:731.985000px;}
.ydc{bottom:732.705000px;}
.y61{bottom:734.685000px;}
.y8f{bottom:736.125000px;}
.y137{bottom:742.425000px;}
.y60{bottom:749.265000px;}
.ydb{bottom:749.985000px;}
.y8e{bottom:753.405000px;}
.y136{bottom:756.105000px;}
.y5f{bottom:766.545000px;}
.yda{bottom:767.265000px;}
.y135{bottom:769.965000px;}
.y8d{bottom:770.685000px;}
.y5e{bottom:783.645000px;}
.y134{bottom:783.825000px;}
.yd9{bottom:784.545000px;}
.y8c{bottom:787.965000px;}
.y133{bottom:797.505000px;}
.y5d{bottom:800.925000px;}
.yd8{bottom:801.645000px;}
.y11{bottom:802.905000px;}
.y8b{bottom:805.245000px;}
.y132{bottom:811.365000px;}
.y5c{bottom:818.205000px;}
.yd7{bottom:818.925000px;}
.y8a{bottom:822.345000px;}
.y131{bottom:825.225000px;}
.y5b{bottom:835.485000px;}
.yd6{bottom:836.205000px;}
.y130{bottom:838.905000px;}
.y89{bottom:839.625000px;}
.y5a{bottom:852.765000px;}
.yd5{bottom:853.485000px;}
.y88{bottom:856.905000px;}
.y12f{bottom:866.445000px;}
.y59{bottom:869.865000px;}
.yd4{bottom:870.765000px;}
.y87{bottom:874.185000px;}
.y12e{bottom:880.305000px;}
.y58{bottom:887.145000px;}
.yd3{bottom:887.865000px;}
.y86{bottom:891.465000px;}
.y12d{bottom:894.210000px;}
.y57{bottom:904.470000px;}
.yd2{bottom:905.190000px;}
.y12c{bottom:907.890000px;}
.yf{bottom:908.070000px;}
.y85{bottom:908.610000px;}
.y56{bottom:921.750000px;}
.yd1{bottom:922.470000px;}
.y16d{bottom:923.370000px;}
.y84{bottom:925.890000px;}
.y12b{bottom:935.610000px;}
.y55{bottom:939.030000px;}
.ye{bottom:939.750000px;}
.y83{bottom:943.170000px;}
.y12a{bottom:949.290000px;}
.y54{bottom:956.310000px;}
.yd{bottom:957.030000px;}
.y82{bottom:959.730000px;}
.y129{bottom:963.150000px;}
.y53{bottom:973.410000px;}
.yc{bottom:973.590000px;}
.y81{bottom:974.310000px;}
.y128{bottom:977.010000px;}
.yb{bottom:987.990000px;}
.y52{bottom:990.690000px;}
.y80{bottom:991.410000px;}
.y127{bottom:1004.550000px;}
.ya{bottom:1005.270000px;}
.y51{bottom:1007.970000px;}
.y7f{bottom:1008.690000px;}
.y126{bottom:1018.410000px;}
.y9{bottom:1022.550000px;}
.y50{bottom:1025.250000px;}
.y7e{bottom:1025.970000px;}
.y125{bottom:1032.090000px;}
.y8{bottom:1039.830000px;}
.y4f{bottom:1042.530000px;}
.y7d{bottom:1043.250000px;}
.y124{bottom:1045.950000px;}
.y7{bottom:1059.090000px;}
.y4e{bottom:1059.810000px;}
.y7c{bottom:1060.530000px;}
.y123{bottom:1073.490000px;}
.y4d{bottom:1076.910000px;}
.y7b{bottom:1077.810000px;}
.y6{bottom:1086.630000px;}
.y122{bottom:1087.350000px;}
.y4c{bottom:1094.190000px;}
.y7a{bottom:1094.910000px;}
.y121{bottom:1101.210000px;}
.y4b{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y163{bottom:1112.910000px;}
.y120{bottom:1114.890000px;}
.y4a{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y2{bottom:1146.780000px;}
.y79{bottom:1160.640000px;}
.y49{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h2b{height:2.826563px;}
.h1b{height:13.680000px;}
.h1c{height:13.680150px;}
.h1a{height:13.860000px;}
.h19{height:13.860150px;}
.h1d{height:13.896000px;}
.h2f{height:15.480000px;}
.h2d{height:15.660000px;}
.h13{height:17.100000px;}
.h14{height:17.280000px;}
.h7{height:26.100000px;}
.h22{height:27.540000px;}
.h21{height:27.720000px;}
.h25{height:27.756000px;}
.h27{height:34.380000px;}
.h26{height:34.560000px;}
.h29{height:34.884492px;}
.hc{height:39.049805px;}
.h1e{height:43.215117px;}
.h6{height:47.344922px;}
.h1f{height:48.616875px;}
.h10{height:52.971680px;}
.hd{height:52.998047px;}
.h2c{height:54.421875px;}
.h23{height:55.080000px;}
.h20{height:55.260000px;}
.h24{height:55.296000px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h18{height:59.038594px;}
.h2{height:60.226875px;}
.h12{height:62.211094px;}
.h15{height:70.474219px;}
.h17{height:70.654219px;}
.h8{height:70.664062px;}
.h28{height:86.256000px;}
.hf{height:87.480000px;}
.h16{height:88.891172px;}
.h5{height:96.508125px;}
.h9{height:104.256000px;}
.h11{height:113.400000px;}
.h2a{height:171.000000px;}
.h30{height:171.030000px;}
.h2e{height:202.710000px;}
.he{height:271.650000px;}
.hb{height:288.435000px;}
.ha{height:376.635000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.060000px;}
.w8{width:29.880000px;}
.w7{width:30.060000px;}
.w19{width:30.420000px;}
.w18{width:34.020000px;}
.w1d{width:35.100000px;}
.w1a{width:35.640000px;}
.w1e{width:35.856000px;}
.w1f{width:36.180000px;}
.w1c{width:36.216000px;}
.w20{width:36.360000px;}
.w1b{width:36.540000px;}
.w11{width:45.720000px;}
.wc{width:50.076000px;}
.wd{width:70.740000px;}
.w14{width:70.920000px;}
.wb{width:76.860000px;}
.we{width:76.896000px;}
.w15{width:79.020000px;}
.w13{width:83.916000px;}
.w16{width:85.176000px;}
.w10{width:92.520000px;}
.wf{width:106.416000px;}
.w9{width:141.696000px;}
.w24{width:144.360000px;}
.w17{width:167.430000px;}
.w23{width:198.570000px;}
.w3{width:209.190000px;}
.w21{width:214.770000px;}
.w22{width:244.290000px;}
.w12{width:319.035000px;}
.wa{width:345.315000px;}
.w5{width:433.155000px;}
.w25{width:514.725000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.xb{left:10.620000px;}
.x24{left:15.660000px;}
.x26{left:17.460000px;}
.x1d{left:18.900000px;}
.x37{left:19.980000px;}
.x39{left:21.780000px;}
.x2d{left:22.860000px;}
.x38{left:25.380000px;}
.x2a{left:26.460000px;}
.x27{left:27.900000px;}
.x1f{left:28.980000px;}
.x36{left:30.060000px;}
.x1b{left:31.320000px;}
.x34{left:32.940000px;}
.x31{left:34.920000px;}
.x3a{left:37.800000px;}
.x19{left:44.100000px;}
.x30{left:46.080000px;}
.x22{left:50.040000px;}
.x25{left:52.200000px;}
.x23{left:55.440000px;}
.x2f{left:63.030000px;}
.x1a{left:71.640000px;}
.xd{left:106.560000px;}
.x8{left:125.496000px;}
.x1{left:127.655987px;}
.x5{left:129.995987px;}
.x4a{left:136.254000px;}
.x13{left:154.649987px;}
.x10{left:157.349987px;}
.x49{left:159.689987px;}
.x2{left:161.489987px;}
.x29{left:175.350000px;}
.xf{left:181.649987px;}
.x14{left:205.229987px;}
.x18{left:213.690000px;}
.x17{left:234.029987px;}
.x16{left:251.849987px;}
.x7{left:270.749987px;}
.x4b{left:272.010000px;}
.x2b{left:281.775000px;}
.x3b{left:295.095000px;}
.x12{left:296.354987px;}
.x3c{left:329.115000px;}
.xa{left:334.695000px;}
.x3{left:336.854987px;}
.x47{left:343.155000px;}
.xc{left:355.755000px;}
.x3d{left:359.535000px;}
.x2c{left:374.295000px;}
.x6{left:378.074987px;}
.x3e{left:395.175000px;}
.x2e{left:420.015000px;}
.xe{left:425.055000px;}
.x1c{left:432.255000px;}
.x4{left:457.274987px;}
.x3f{left:467.925000px;}
.x1e{left:482.325000px;}
.x32{left:503.925000px;}
.x40{left:538.125000px;}
.x20{left:553.065000px;}
.x41{left:573.225000px;}
.x33{left:574.845000px;}
.x48{left:587.445000px;}
.x42{left:608.325000px;}
.x21{left:623.805000px;}
.x28{left:633.884987px;}
.x43{left:643.425000px;}
.x35{left:653.865000px;}
.x11{left:658.049987px;}
.x44{left:679.110000px;}
.x45{left:715.290000px;}
.x46{left:750.390000px;}
.x15{left:756.870000px;}
@media print{
.v6{vertical-align:-61.568000pt;}
.v5{vertical-align:-58.880000pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v3{vertical-align:26.880000pt;}
.v2{vertical-align:31.360000pt;}
.ls1c{letter-spacing:-1.050667pt;}
.ls1d{letter-spacing:-0.869333pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls2d{letter-spacing:-0.478933pt;}
.ls14{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.239467pt;}
.ls1b{letter-spacing:-0.230933pt;}
.ls2e{letter-spacing:-0.198933pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.161067pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls30{letter-spacing:-0.096000pt;}
.ls1e{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.030080pt;}
.lsa{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.120320pt;}
.lsd{letter-spacing:0.136320pt;}
.ls1f{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.183467pt;}
.ls29{letter-spacing:0.183680pt;}
.ls31{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.198933pt;}
.ls6{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls2a{letter-spacing:0.272533pt;}
.ls27{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.432533pt;}
.ls2c{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.688000pt;}
.ls15{letter-spacing:0.736000pt;}
.ls2b{letter-spacing:1.440000pt;}
.ls23{letter-spacing:2.080000pt;}
.lse{letter-spacing:2.720000pt;}
.ls26{letter-spacing:5.920000pt;}
.ls2f{letter-spacing:6.080000pt;}
.ls28{letter-spacing:9.120000pt;}
.ls17{letter-spacing:14.880000pt;}
.ls3{letter-spacing:58.811307pt;}
.ls24{letter-spacing:170.378667pt;}
.ls1a{letter-spacing:371.978667pt;}
.ls19{letter-spacing:540.458667pt;}
.lsf{letter-spacing:1725.386667pt;}
.ws1a{word-spacing:-53.120000pt;}
.ws10{word-spacing:-13.968000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.552533pt;}
.ws7{word-spacing:-13.510933pt;}
.ws18{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.185067pt;}
.wsa{word-spacing:-13.152000pt;}
.ws11{word-spacing:-13.049067pt;}
.ws0{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.870933pt;}
.ws12{word-spacing:-12.410667pt;}
.ws4{word-spacing:-12.320000pt;}
.ws20{word-spacing:-12.192000pt;}
.ws21{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.904000pt;}
.ws3{word-spacing:-11.808000pt;}
.ws17{word-spacing:-11.040000pt;}
.ws14{word-spacing:-10.918933pt;}
.ws1b{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.558933pt;}
.ws1e{word-spacing:-10.521067pt;}
.ws16{word-spacing:-10.480533pt;}
.ws1d{word-spacing:-10.400000pt;}
.ws1c{word-spacing:-10.241067pt;}
.ws9{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.166400pt;}
.ws5{word-spacing:0.000000pt;}
.wse{word-spacing:6.896640pt;}
.wsb{word-spacing:21.311040pt;}
._f{margin-left:-6.240000pt;}
._1c{margin-left:-3.954133pt;}
._13{margin-left:-2.853760pt;}
._a{margin-left:-1.955840pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._d{width:3.900160pt;}
._9{width:4.832000pt;}
._4{width:6.080000pt;}
._5{width:7.072000pt;}
._e{width:8.392960pt;}
._8{width:9.890987pt;}
._7{width:10.800000pt;}
._12{width:12.005120pt;}
._25{width:13.100160pt;}
._16{width:14.234880pt;}
._19{width:15.735467pt;}
._17{width:16.672000pt;}
._1d{width:18.352640pt;}
._1b{width:19.421653pt;}
._1a{width:20.344960pt;}
._26{width:21.697280pt;}
._6{width:22.896000pt;}
._1f{width:23.887360pt;}
._c{width:27.130027pt;}
._b{width:28.032000pt;}
._20{width:29.783680pt;}
._23{width:31.740587pt;}
._21{width:32.705280pt;}
._24{width:36.608427pt;}
._1e{width:44.551040pt;}
._2a{width:48.944640pt;}
._29{width:49.935360pt;}
._28{width:51.893333pt;}
._22{width:53.180587pt;}
._27{width:54.704427pt;}
._14{width:452.521387pt;}
._10{width:654.560000pt;}
._15{width:769.499307pt;}
._11{width:953.866667pt;}
._3{width:979.477333pt;}
._18{width:1659.306667pt;}
.fs8{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:2.240000pt;}
.y2a{bottom:2.560000pt;}
.y16e{bottom:2.720000pt;}
.y10{bottom:2.880000pt;}
.y111{bottom:3.360000pt;}
.y32{bottom:8.000000pt;}
.y38{bottom:10.880000pt;}
.yec{bottom:14.400000pt;}
.ye7{bottom:14.560000pt;}
.yf6{bottom:14.600000pt;}
.y29{bottom:16.480000pt;}
.y10d{bottom:18.080000pt;}
.y15{bottom:18.240000pt;}
.y10e{bottom:18.560000pt;}
.y10b{bottom:18.720000pt;}
.y37{bottom:26.240000pt;}
.y170{bottom:28.160000pt;}
.y16c{bottom:29.600000pt;}
.y17b{bottom:30.240000pt;}
.y28{bottom:30.266667pt;}
.y14{bottom:33.600000pt;}
.ye5{bottom:39.040000pt;}
.yf3{bottom:39.080000pt;}
.y36{bottom:41.600000pt;}
.y16b{bottom:43.360000pt;}
.y18b{bottom:43.400000pt;}
.y17a{bottom:44.000000pt;}
.y27{bottom:44.026667pt;}
.y13{bottom:48.960000pt;}
.y35{bottom:56.960000pt;}
.y16a{bottom:57.120000pt;}
.y18a{bottom:57.160000pt;}
.y181{bottom:57.280000pt;}
.y179{bottom:57.760000pt;}
.y26{bottom:57.786667pt;}
.y31{bottom:58.560000pt;}
.y114{bottom:64.360000pt;}
.y169{bottom:70.880000pt;}
.y180{bottom:71.040000pt;}
.y189{bottom:71.080000pt;}
.y178{bottom:71.680000pt;}
.y25{bottom:71.706667pt;}
.y12{bottom:72.160000pt;}
.y5{bottom:78.400000pt;}
.y34{bottom:80.320000pt;}
.y168{bottom:84.800000pt;}
.y188{bottom:84.840000pt;}
.y177{bottom:85.440000pt;}
.y24{bottom:85.466667pt;}
.y167{bottom:98.560000pt;}
.y17f{bottom:98.586667pt;}
.y187{bottom:98.600000pt;}
.y176{bottom:99.200000pt;}
.y23{bottom:99.226667pt;}
.yb6{bottom:100.320000pt;}
.y107{bottom:103.360000pt;}
.y162{bottom:107.840000pt;}
.y166{bottom:112.320000pt;}
.y186{bottom:112.360000pt;}
.y17e{bottom:112.506667pt;}
.y175{bottom:112.960000pt;}
.y22{bottom:112.986667pt;}
.y18f{bottom:115.360000pt;}
.yb5{bottom:115.680000pt;}
.y78{bottom:116.800000pt;}
.y106{bottom:118.720000pt;}
.y11f{bottom:119.520000pt;}
.y161{bottom:120.032000pt;}
.y48{bottom:125.792000pt;}
.y165{bottom:126.080000pt;}
.y17d{bottom:126.266667pt;}
.y185{bottom:126.280000pt;}
.y174{bottom:126.880000pt;}
.y21{bottom:126.906667pt;}
.yd0{bottom:128.672000pt;}
.y18e{bottom:130.752000pt;}
.yb4{bottom:131.072000pt;}
.y77{bottom:132.192000pt;}
.y160{bottom:132.352000pt;}
.y105{bottom:134.106667pt;}
.y11e{bottom:134.906667pt;}
.y30{bottom:136.346667pt;}
.y164{bottom:140.000000pt;}
.y17c{bottom:140.026667pt;}
.y184{bottom:140.040000pt;}
.y173{bottom:140.640000pt;}
.y20{bottom:140.666667pt;}
.y47{bottom:141.146667pt;}
.y18d{bottom:143.226667pt;}
.y15f{bottom:144.666667pt;}
.yb3{bottom:146.426667pt;}
.y76{bottom:147.546667pt;}
.y104{bottom:149.466667pt;}
.y11d{bottom:150.266667pt;}
.y2f{bottom:151.706667pt;}
.y1f{bottom:154.426667pt;}
.y172{bottom:154.440000pt;}
.y46{bottom:156.346667pt;}
.y15e{bottom:156.826667pt;}
.yb2{bottom:161.626667pt;}
.y75{bottom:162.906667pt;}
.y103{bottom:164.666667pt;}
.y11c{bottom:165.626667pt;}
.y2e{bottom:167.066667pt;}
.y1e{bottom:168.186667pt;}
.y171{bottom:168.200000pt;}
.y15d{bottom:169.146667pt;}
.y45{bottom:171.706667pt;}
.yb1{bottom:176.346667pt;}
.y74{bottom:178.266667pt;}
.y102{bottom:180.026667pt;}
.y11b{bottom:180.666667pt;}
.y15c{bottom:181.466667pt;}
.y1d{bottom:181.946667pt;}
.y2d{bottom:182.426667pt;}
.y44{bottom:187.066667pt;}
.yb0{bottom:188.666667pt;}
.y73{bottom:192.826667pt;}
.y15b{bottom:193.626667pt;}
.y11a{bottom:194.426667pt;}
.y101{bottom:195.386667pt;}
.y1c{bottom:195.866667pt;}
.y2c{bottom:197.786667pt;}
.yaf{bottom:201.626667pt;}
.y43{bottom:202.426667pt;}
.y72{bottom:205.786667pt;}
.y15a{bottom:205.946667pt;}
.y119{bottom:208.506667pt;}
.y1b{bottom:209.626667pt;}
.y100{bottom:210.746667pt;}
.yae{bottom:216.826667pt;}
.y42{bottom:217.786667pt;}
.y159{bottom:218.266667pt;}
.y2b{bottom:220.986667pt;}
.y71{bottom:221.146667pt;}
.y1a{bottom:223.386667pt;}
.y118{bottom:223.866667pt;}
.yff{bottom:226.106667pt;}
.y158{bottom:230.426667pt;}
.yad{bottom:232.186667pt;}
.y41{bottom:232.986667pt;}
.y70{bottom:236.506667pt;}
.y19{bottom:237.146667pt;}
.y117{bottom:239.226667pt;}
.yfe{bottom:241.466667pt;}
.y157{bottom:242.746667pt;}
.yac{bottom:247.546667pt;}
.y40{bottom:248.346667pt;}
.y6f{bottom:251.706667pt;}
.y116{bottom:254.586667pt;}
.y156{bottom:255.066667pt;}
.yfd{bottom:256.666667pt;}
.yab{bottom:262.906667pt;}
.y3f{bottom:263.706667pt;}
.y6e{bottom:267.066667pt;}
.y155{bottom:267.226667pt;}
.y115{bottom:269.786667pt;}
.yfc{bottom:272.026667pt;}
.yaa{bottom:277.626667pt;}
.y3e{bottom:279.066667pt;}
.y154{bottom:279.546667pt;}
.y113{bottom:282.266667pt;}
.y6d{bottom:282.426667pt;}
.yfb{bottom:287.386667pt;}
.ya9{bottom:290.426667pt;}
.y153{bottom:291.866667pt;}
.y3d{bottom:294.426667pt;}
.y18c{bottom:295.226667pt;}
.y6c{bottom:297.786667pt;}
.yfa{bottom:302.746667pt;}
.y152{bottom:304.026667pt;}
.ya8{bottom:305.786667pt;}
.ycf{bottom:308.186667pt;}
.y183{bottom:308.986667pt;}
.y3c{bottom:309.786667pt;}
.y6b{bottom:313.146667pt;}
.y17{bottom:314.426667pt;}
.y151{bottom:316.346667pt;}
.yf9{bottom:317.466667pt;}
.ya7{bottom:320.506667pt;}
.yce{bottom:323.546667pt;}
.y3b{bottom:324.986667pt;}
.y6a{bottom:328.506667pt;}
.y150{bottom:328.666667pt;}
.yf8{bottom:329.626667pt;}
.ya6{bottom:330.586667pt;}
.ycd{bottom:336.666667pt;}
.ya5{bottom:337.306667pt;}
.y3a{bottom:340.346667pt;}
.y14f{bottom:340.826667pt;}
.y69{bottom:343.706667pt;}
.ycc{bottom:349.026667pt;}
.yf7{bottom:352.706667pt;}
.y14e{bottom:353.186667pt;}
.ya4{bottom:355.106667pt;}
.y39{bottom:355.746667pt;}
.y68{bottom:359.106667pt;}
.ycb{bottom:361.186667pt;}
.yf4{bottom:365.026667pt;}
.y14d{bottom:365.506667pt;}
.ya3{bottom:368.066667pt;}
.y33{bottom:370.146667pt;}
.y112{bottom:371.906667pt;}
.yca{bottom:373.506667pt;}
.y67{bottom:373.826667pt;}
.yf5{bottom:377.186667pt;}
.y14c{bottom:377.666667pt;}
.ya2{bottom:383.426667pt;}
.yc9{bottom:385.826667pt;}
.y66{bottom:386.146667pt;}
.y110{bottom:387.266667pt;}
.yef{bottom:389.506667pt;}
.y14b{bottom:389.986667pt;}
.yc8{bottom:398.626667pt;}
.ya1{bottom:398.786667pt;}
.y65{bottom:398.946667pt;}
.yf2{bottom:401.826667pt;}
.y14a{bottom:402.306667pt;}
.y10f{bottom:402.626667pt;}
.yc6{bottom:410.946667pt;}
.y64{bottom:413.666667pt;}
.yf0{bottom:413.986667pt;}
.ya0{bottom:414.146667pt;}
.y149{bottom:414.466667pt;}
.y63{bottom:423.746667pt;}
.yf1{bottom:426.306667pt;}
.y148{bottom:426.786667pt;}
.y9f{bottom:429.346667pt;}
.y10c{bottom:433.346667pt;}
.yea{bottom:438.466667pt;}
.y147{bottom:439.106667pt;}
.yc5{bottom:441.506667pt;}
.y9e{bottom:444.706667pt;}
.yee{bottom:450.786667pt;}
.y146{bottom:451.266667pt;}
.yc4{bottom:453.666667pt;}
.y9d{bottom:460.066667pt;}
.y182{bottom:461.026667pt;}
.yeb{bottom:463.106667pt;}
.y145{bottom:463.586667pt;}
.y10a{bottom:463.906667pt;}
.yc3{bottom:466.626667pt;}
.y16{bottom:471.586667pt;}
.y9c{bottom:474.786667pt;}
.yed{bottom:475.266667pt;}
.y144{bottom:475.906667pt;}
.yc2{bottom:481.986667pt;}
.y9b{bottom:484.866667pt;}
.ye4{bottom:487.586667pt;}
.y143{bottom:488.066667pt;}
.y9a{bottom:491.586667pt;}
.y109{bottom:495.266667pt;}
.yc1{bottom:497.346667pt;}
.ye9{bottom:499.906667pt;}
.y142{bottom:500.386667pt;}
.y99{bottom:509.506667pt;}
.ye6{bottom:512.066667pt;}
.yc0{bottom:512.546667pt;}
.y141{bottom:512.706667pt;}
.y108{bottom:513.826667pt;}
.y98{bottom:522.466667pt;}
.ye8{bottom:524.386667pt;}
.y140{bottom:524.866667pt;}
.ybf{bottom:527.906667pt;}
.y13f{bottom:537.186667pt;}
.ye3{bottom:537.346667pt;}
.y97{bottom:537.826667pt;}
.ybe{bottom:543.266667pt;}
.y13e{bottom:549.506667pt;}
.ye2{bottom:549.666667pt;}
.y18{bottom:549.986667pt;}
.y96{bottom:553.186667pt;}
.ybd{bottom:558.626667pt;}
.y13d{bottom:561.666667pt;}
.y95{bottom:567.906667pt;}
.ybc{bottom:574.013333pt;}
.ye1{bottom:580.093333pt;}
.y94{bottom:580.733333pt;}
.y13c{bottom:586.333333pt;}
.ybb{bottom:589.373333pt;}
.ye0{bottom:592.413333pt;}
.y93{bottom:596.093333pt;}
.y13b{bottom:598.493333pt;}
.yba{bottom:604.573333pt;}
.ydf{bottom:605.373333pt;}
.y13a{bottom:610.813333pt;}
.y92{bottom:611.453333pt;}
.yb9{bottom:619.933333pt;}
.yde{bottom:620.573333pt;}
.y139{bottom:623.133333pt;}
.y91{bottom:626.813333pt;}
.yb8{bottom:635.293333pt;}
.ydd{bottom:635.933333pt;}
.y16f{bottom:640.573333pt;}
.y62{bottom:640.733333pt;}
.y90{bottom:641.533333pt;}
.y138{bottom:647.613333pt;}
.yb7{bottom:650.653333pt;}
.ydc{bottom:651.293333pt;}
.y61{bottom:653.053333pt;}
.y8f{bottom:654.333333pt;}
.y137{bottom:659.933333pt;}
.y60{bottom:666.013333pt;}
.ydb{bottom:666.653333pt;}
.y8e{bottom:669.693333pt;}
.y136{bottom:672.093333pt;}
.y5f{bottom:681.373333pt;}
.yda{bottom:682.013333pt;}
.y135{bottom:684.413333pt;}
.y8d{bottom:685.053333pt;}
.y5e{bottom:696.573333pt;}
.y134{bottom:696.733333pt;}
.yd9{bottom:697.373333pt;}
.y8c{bottom:700.413333pt;}
.y133{bottom:708.893333pt;}
.y5d{bottom:711.933333pt;}
.yd8{bottom:712.573333pt;}
.y11{bottom:713.693333pt;}
.y8b{bottom:715.773333pt;}
.y132{bottom:721.213333pt;}
.y5c{bottom:727.293333pt;}
.yd7{bottom:727.933333pt;}
.y8a{bottom:730.973333pt;}
.y131{bottom:733.533333pt;}
.y5b{bottom:742.653333pt;}
.yd6{bottom:743.293333pt;}
.y130{bottom:745.693333pt;}
.y89{bottom:746.333333pt;}
.y5a{bottom:758.013333pt;}
.yd5{bottom:758.653333pt;}
.y88{bottom:761.693333pt;}
.y12f{bottom:770.173333pt;}
.y59{bottom:773.213333pt;}
.yd4{bottom:774.013333pt;}
.y87{bottom:777.053333pt;}
.y12e{bottom:782.493333pt;}
.y58{bottom:788.573333pt;}
.yd3{bottom:789.213333pt;}
.y86{bottom:792.413333pt;}
.y12d{bottom:794.853333pt;}
.y57{bottom:803.973333pt;}
.yd2{bottom:804.613333pt;}
.y12c{bottom:807.013333pt;}
.yf{bottom:807.173333pt;}
.y85{bottom:807.653333pt;}
.y56{bottom:819.333333pt;}
.yd1{bottom:819.973333pt;}
.y16d{bottom:820.773333pt;}
.y84{bottom:823.013333pt;}
.y12b{bottom:831.653333pt;}
.y55{bottom:834.693333pt;}
.ye{bottom:835.333333pt;}
.y83{bottom:838.373333pt;}
.y12a{bottom:843.813333pt;}
.y54{bottom:850.053333pt;}
.yd{bottom:850.693333pt;}
.y82{bottom:853.093333pt;}
.y129{bottom:856.133333pt;}
.y53{bottom:865.253333pt;}
.yc{bottom:865.413333pt;}
.y81{bottom:866.053333pt;}
.y128{bottom:868.453333pt;}
.yb{bottom:878.213333pt;}
.y52{bottom:880.613333pt;}
.y80{bottom:881.253333pt;}
.y127{bottom:892.933333pt;}
.ya{bottom:893.573333pt;}
.y51{bottom:895.973333pt;}
.y7f{bottom:896.613333pt;}
.y126{bottom:905.253333pt;}
.y9{bottom:908.933333pt;}
.y50{bottom:911.333333pt;}
.y7e{bottom:911.973333pt;}
.y125{bottom:917.413333pt;}
.y8{bottom:924.293333pt;}
.y4f{bottom:926.693333pt;}
.y7d{bottom:927.333333pt;}
.y124{bottom:929.733333pt;}
.y7{bottom:941.413333pt;}
.y4e{bottom:942.053333pt;}
.y7c{bottom:942.693333pt;}
.y123{bottom:954.213333pt;}
.y4d{bottom:957.253333pt;}
.y7b{bottom:958.053333pt;}
.y6{bottom:965.893333pt;}
.y122{bottom:966.533333pt;}
.y4c{bottom:972.613333pt;}
.y7a{bottom:973.253333pt;}
.y121{bottom:978.853333pt;}
.y4b{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y163{bottom:989.253333pt;}
.y120{bottom:991.013333pt;}
.y4a{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y2{bottom:1019.360000pt;}
.y79{bottom:1031.680000pt;}
.y49{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h2b{height:2.512500pt;}
.h1b{height:12.160000pt;}
.h1c{height:12.160133pt;}
.h1a{height:12.320000pt;}
.h19{height:12.320133pt;}
.h1d{height:12.352000pt;}
.h2f{height:13.760000pt;}
.h2d{height:13.920000pt;}
.h13{height:15.200000pt;}
.h14{height:15.360000pt;}
.h7{height:23.200000pt;}
.h22{height:24.480000pt;}
.h21{height:24.640000pt;}
.h25{height:24.672000pt;}
.h27{height:30.560000pt;}
.h26{height:30.720000pt;}
.h29{height:31.008437pt;}
.hc{height:34.710938pt;}
.h1e{height:38.413438pt;}
.h6{height:42.084375pt;}
.h1f{height:43.215000pt;}
.h10{height:47.085938pt;}
.hd{height:47.109375pt;}
.h2c{height:48.375000pt;}
.h23{height:48.960000pt;}
.h20{height:49.120000pt;}
.h24{height:49.152000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h18{height:52.478750pt;}
.h2{height:53.535000pt;}
.h12{height:55.298750pt;}
.h15{height:62.643750pt;}
.h17{height:62.803750pt;}
.h8{height:62.812500pt;}
.h28{height:76.672000pt;}
.hf{height:77.760000pt;}
.h16{height:79.014375pt;}
.h5{height:85.785000pt;}
.h9{height:92.672000pt;}
.h11{height:100.800000pt;}
.h2a{height:152.000000pt;}
.h30{height:152.026667pt;}
.h2e{height:180.186667pt;}
.he{height:241.466667pt;}
.hb{height:256.386667pt;}
.ha{height:334.786667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.720000pt;}
.w8{width:26.560000pt;}
.w7{width:26.720000pt;}
.w19{width:27.040000pt;}
.w18{width:30.240000pt;}
.w1d{width:31.200000pt;}
.w1a{width:31.680000pt;}
.w1e{width:31.872000pt;}
.w1f{width:32.160000pt;}
.w1c{width:32.192000pt;}
.w20{width:32.320000pt;}
.w1b{width:32.480000pt;}
.w11{width:40.640000pt;}
.wc{width:44.512000pt;}
.wd{width:62.880000pt;}
.w14{width:63.040000pt;}
.wb{width:68.320000pt;}
.we{width:68.352000pt;}
.w15{width:70.240000pt;}
.w13{width:74.592000pt;}
.w16{width:75.712000pt;}
.w10{width:82.240000pt;}
.wf{width:94.592000pt;}
.w9{width:125.952000pt;}
.w24{width:128.320000pt;}
.w17{width:148.826667pt;}
.w23{width:176.506667pt;}
.w3{width:185.946667pt;}
.w21{width:190.906667pt;}
.w22{width:217.146667pt;}
.w12{width:283.586667pt;}
.wa{width:306.946667pt;}
.w5{width:385.026667pt;}
.w25{width:457.533333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.xb{left:9.440000pt;}
.x24{left:13.920000pt;}
.x26{left:15.520000pt;}
.x1d{left:16.800000pt;}
.x37{left:17.760000pt;}
.x39{left:19.360000pt;}
.x2d{left:20.320000pt;}
.x38{left:22.560000pt;}
.x2a{left:23.520000pt;}
.x27{left:24.800000pt;}
.x1f{left:25.760000pt;}
.x36{left:26.720000pt;}
.x1b{left:27.840000pt;}
.x34{left:29.280000pt;}
.x31{left:31.040000pt;}
.x3a{left:33.600000pt;}
.x19{left:39.200000pt;}
.x30{left:40.960000pt;}
.x22{left:44.480000pt;}
.x25{left:46.400000pt;}
.x23{left:49.280000pt;}
.x2f{left:56.026667pt;}
.x1a{left:63.680000pt;}
.xd{left:94.720000pt;}
.x8{left:111.552000pt;}
.x1{left:113.471988pt;}
.x5{left:115.551988pt;}
.x4a{left:121.114667pt;}
.x13{left:137.466655pt;}
.x10{left:139.866655pt;}
.x49{left:141.946655pt;}
.x2{left:143.546655pt;}
.x29{left:155.866667pt;}
.xf{left:161.466655pt;}
.x14{left:182.426655pt;}
.x18{left:189.946667pt;}
.x17{left:208.026655pt;}
.x16{left:223.866655pt;}
.x7{left:240.666655pt;}
.x4b{left:241.786667pt;}
.x2b{left:250.466667pt;}
.x3b{left:262.306667pt;}
.x12{left:263.426655pt;}
.x3c{left:292.546667pt;}
.xa{left:297.506667pt;}
.x3{left:299.426655pt;}
.x47{left:305.026667pt;}
.xc{left:316.226667pt;}
.x3d{left:319.586667pt;}
.x2c{left:332.706667pt;}
.x6{left:336.066655pt;}
.x3e{left:351.266667pt;}
.x2e{left:373.346667pt;}
.xe{left:377.826667pt;}
.x1c{left:384.226667pt;}
.x4{left:406.466655pt;}
.x3f{left:415.933333pt;}
.x1e{left:428.733333pt;}
.x32{left:447.933333pt;}
.x40{left:478.333333pt;}
.x20{left:491.613333pt;}
.x41{left:509.533333pt;}
.x33{left:510.973333pt;}
.x48{left:522.173333pt;}
.x42{left:540.733333pt;}
.x21{left:554.493333pt;}
.x28{left:563.453322pt;}
.x43{left:571.933333pt;}
.x35{left:581.213333pt;}
.x11{left:584.933322pt;}
.x44{left:603.653333pt;}
.x45{left:635.813333pt;}
.x46{left:667.013333pt;}
.x15{left:672.773333pt;}
}




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