
    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_64002f8f28da7c47473ddb8b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_61e06fae9880ece7b3075e9a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.219727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1584f3f1f529d2b1394771b8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2ab2b6aeb80ac7173c6d0a7e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.157715;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_f75f95bcd099f4ea7ca5e327.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f09c7ebf69c9bfe54f240f7a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_025443a092bc3f76c325c02b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.219727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8f805efe2225c10f55dd7070.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_025443a092bc3f76c325c02b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.219727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-11.982000px;}
.v1{vertical-align:-10.951800px;}
.v8{vertical-align:-8.003400px;}
.v5{vertical-align:-5.970000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.994000px;}
.v7{vertical-align:13.956600px;}
.v6{vertical-align:14.979000px;}
.v2{vertical-align:17.231400px;}
.ls1c{letter-spacing:-2.760000px;}
.ls15{letter-spacing:-2.691000px;}
.ls6{letter-spacing:-2.604000px;}
.ls22{letter-spacing:-2.277000px;}
.ls21{letter-spacing:-2.001000px;}
.ls20{letter-spacing:-1.932000px;}
.ls5{letter-spacing:-1.836000px;}
.ls12{letter-spacing:-1.320000px;}
.lse{letter-spacing:-1.215000px;}
.ls28{letter-spacing:-0.972000px;}
.lsd{letter-spacing:-0.855000px;}
.ls17{letter-spacing:-0.627000px;}
.ls4{letter-spacing:-0.240000px;}
.ls27{letter-spacing:-0.171000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000300px;}
.ls19{letter-spacing:0.006816px;}
.ls2b{letter-spacing:0.007440px;}
.ls1e{letter-spacing:0.007776px;}
.ls1d{letter-spacing:0.008376px;}
.ls18{letter-spacing:0.025800px;}
.ls7{letter-spacing:1.092000px;}
.lsb{letter-spacing:2.400000px;}
.ls14{letter-spacing:3.300000px;}
.ls1b{letter-spacing:3.422400px;}
.lsf{letter-spacing:3.939900px;}
.ls0{letter-spacing:4.200000px;}
.ls1a{letter-spacing:4.275000px;}
.ls13{letter-spacing:4.326300px;}
.ls29{letter-spacing:4.347000px;}
.ls1f{letter-spacing:4.650000px;}
.ls9{letter-spacing:5.760000px;}
.ls8{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls11{letter-spacing:6.285900px;}
.lsa{letter-spacing:6.300000px;}
.ls24{letter-spacing:6.486000px;}
.ls23{letter-spacing:6.513600px;}
.ls25{letter-spacing:6.555000px;}
.ls16{letter-spacing:6.658500px;}
.lsc{letter-spacing:6.675000px;}
.ls2a{letter-spacing:7.200000px;}
.ls2c{letter-spacing:7.500000px;}
.ls26{letter-spacing:8.175000px;}
.ls3{letter-spacing:8.400000px;}
.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;}
}
.ws14{word-spacing:-41.760000px;}
.ws23{word-spacing:-29.250000px;}
.ws2b{word-spacing:-28.575000px;}
.ws28{word-spacing:-28.275000px;}
.wsc{word-spacing:-27.750000px;}
.ws1d{word-spacing:-25.725000px;}
.ws18{word-spacing:-25.350000px;}
.ws0{word-spacing:-24.840000px;}
.ws2c{word-spacing:-24.696000px;}
.ws15{word-spacing:-24.375000px;}
.ws2d{word-spacing:-22.860000px;}
.ws1{word-spacing:-22.740000px;}
.ws4{word-spacing:-22.620000px;}
.ws25{word-spacing:-22.050000px;}
.ws24{word-spacing:-21.789000px;}
.ws11{word-spacing:-19.389000px;}
.wse{word-spacing:-18.792000px;}
.wsd{word-spacing:-18.102000px;}
.wsf{word-spacing:-17.043000px;}
.ws3{word-spacing:-16.860000px;}
.ws29{word-spacing:-15.561000px;}
.ws1e{word-spacing:-15.111000px;}
.ws1f{word-spacing:-15.042000px;}
.ws2{word-spacing:-14.820000px;}
.ws22{word-spacing:-14.766000px;}
.ws1b{word-spacing:-14.283000px;}
.ws1a{word-spacing:-13.338000px;}
.ws10{word-spacing:-11.303787px;}
.ws2a{word-spacing:-10.320849px;}
.ws19{word-spacing:-9.936069px;}
.ws20{word-spacing:-8.846442px;}
.ws2e{word-spacing:-8.640060px;}
.ws7{word-spacing:-8.400000px;}
.ws21{word-spacing:-7.776054px;}
.ws27{word-spacing:-6.300000px;}
.ws6{word-spacing:-6.000000px;}
.wsb{word-spacing:-4.200000px;}
.ws12{word-spacing:-2.400000px;}
.wsa{word-spacing:-1.092000px;}
.ws5{word-spacing:0.000000px;}
.ws26{word-spacing:0.171000px;}
.ws8{word-spacing:0.240000px;}
.ws17{word-spacing:0.627000px;}
.ws13{word-spacing:0.855000px;}
.ws9{word-spacing:2.604000px;}
.ws16{word-spacing:2.691000px;}
.ws1c{word-spacing:8.153838px;}
._2c{margin-left:-15.615000px;}
._25{margin-left:-9.620100px;}
._8{margin-left:-8.482200px;}
._9{margin-left:-7.110000px;}
._21{margin-left:-6.062100px;}
._a{margin-left:-4.977000px;}
._7{margin-left:-3.912300px;}
._3{margin-left:-2.765700px;}
._6{margin-left:-1.143000px;}
._4{width:1.027500px;}
._1{width:2.400000px;}
._13{width:3.484500px;}
._b{width:4.914000px;}
._5{width:6.090000px;}
._c{width:7.848000px;}
._14{width:9.284700px;}
._12{width:10.429800px;}
._e{width:12.226200px;}
._18{width:13.248000px;}
._d{width:14.340000px;}
._1b{width:15.363300px;}
._1e{width:16.869900px;}
._1d{width:17.905500px;}
._27{width:19.258500px;}
._17{width:20.555100px;}
._2e{width:22.178100px;}
._11{width:23.680200px;}
._10{width:24.971100px;}
._2d{width:26.236440px;}
._22{width:27.704160px;}
._30{width:30.267600px;}
._28{width:32.041800px;}
._2f{width:36.470100px;}
._2b{width:38.772960px;}
._2a{width:42.408240px;}
._19{width:43.445160px;}
._29{width:51.742200px;}
._15{width:85.554000px;}
._f{width:244.608000px;}
._24{width:492.457200px;}
._26{width:494.430000px;}
._16{width:501.390000px;}
._23{width:503.040000px;}
._1c{width:504.647700px;}
._0{width:578.400000px;}
._1a{width:993.706200px;}
._1f{width:996.331200px;}
._20{width:1000.381200px;}
._2{width:1002.361200px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.482000px;}
.fse{font-size:34.980000px;}
.fsd{font-size:36.729000px;}
.fsa{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yf8{bottom:106.293300px;}
.y45{bottom:106.296300px;}
.y20{bottom:106.296750px;}
.y143{bottom:106.297650px;}
.y183{bottom:106.307700px;}
.y19f{bottom:106.309500px;}
.y1bb{bottom:106.322850px;}
.yaf{bottom:106.364700px;}
.y166{bottom:106.377300px;}
.y67{bottom:109.294800px;}
.yf7{bottom:123.546300px;}
.y44{bottom:126.544800px;}
.y165{bottom:126.939300px;}
.yae{bottom:127.064700px;}
.y182{bottom:127.066200px;}
.y142{bottom:127.256400px;}
.y1f{bottom:127.326750px;}
.yd2{bottom:127.798200px;}
.y19e{bottom:128.406750px;}
.y1ba{bottom:128.876850px;}
.y66{bottom:130.796700px;}
.y11d{bottom:140.796300px;}
.yf6{bottom:143.794800px;}
.y164{bottom:147.501300px;}
.yad{bottom:147.764700px;}
.y181{bottom:147.824700px;}
.y43{bottom:148.046700px;}
.y141{bottom:148.204800px;}
.y1d5{bottom:150.895500px;}
.y8c{bottom:153.351150px;}
.y1e{bottom:156.844650px;}
.y11c{bottom:158.049300px;}
.y11b{bottom:161.044800px;}
.y19d{bottom:163.261500px;}
.y1b9{bottom:164.188350px;}
.yf5{bottom:165.296700px;}
.yd1{bottom:166.550250px;}
.y163{bottom:168.063300px;}
.yac{bottom:168.464700px;}
.y140{bottom:169.163550px;}
.y1d4{bottom:171.145500px;}
.y8b{bottom:173.602650px;}
.y65{bottom:174.810750px;}
.y1d{bottom:176.374650px;}
.y180{bottom:181.340700px;}
.yd0{bottom:183.800250px;}
.y19c{bottom:185.358750px;}
.y1b8{bottom:186.742350px;}
.y162{bottom:188.625300px;}
.yab{bottom:189.164700px;}
.y13f{bottom:190.122300px;}
.y1d3{bottom:191.395500px;}
.y42{bottom:192.027150px;}
.y8a{bottom:193.854150px;}
.y1c{bottom:195.904650px;}
.y64{bottom:195.976500px;}
.y17f{bottom:202.099200px;}
.ycf{bottom:204.048750px;}
.y11a{bottom:205.122750px;}
.y161{bottom:209.187300px;}
.yf4{bottom:209.331900px;}
.yaa{bottom:209.864700px;}
.y13e{bottom:211.081050px;}
.y41{bottom:212.451150px;}
.y89{bottom:214.105650px;}
.y1b{bottom:215.434650px;}
.y63{bottom:217.142250px;}
.y1d2{bottom:220.150500px;}
.y19b{bottom:220.247550px;}
.y1b7{bottom:222.053850px;}
.y119{bottom:225.633000px;}
.yf3{bottom:229.721400px;}
.y160{bottom:229.749300px;}
.ya9{bottom:230.564700px;}
.y17e{bottom:231.362700px;}
.y13d{bottom:232.039800px;}
.y40{bottom:232.875150px;}
.y88{bottom:234.357150px;}
.y1a{bottom:234.964650px;}
.y62{bottom:238.308000px;}
.y1b6{bottom:244.607850px;}
.y118{bottom:246.143250px;}
.yce{bottom:248.070150px;}
.yf2{bottom:250.110900px;}
.ya8{bottom:251.264700px;}
.y13c{bottom:252.998550px;}
.y3f{bottom:253.299150px;}
.y19{bottom:254.494650px;}
.y87{bottom:254.608650px;}
.y19a{bottom:255.102300px;}
.y15f{bottom:258.815550px;}
.y61{bottom:259.472700px;}
.y1d1{bottom:261.655500px;}
.y117{bottom:266.653500px;}
.ycd{bottom:269.193900px;}
.yf1{bottom:270.500400px;}
.ya7{bottom:271.964700px;}
.y3e{bottom:273.723150px;}
.y13b{bottom:273.957300px;}
.y18{bottom:274.024650px;}
.y86{bottom:274.860150px;}
.y199{bottom:277.199550px;}
.y15e{bottom:279.377550px;}
.y1b5{bottom:279.919350px;}
.y60{bottom:280.637250px;}
.y116{bottom:287.163750px;}
.ycc{bottom:290.307900px;}
.yf0{bottom:290.915100px;}
.ya6{bottom:292.664700px;}
.y3d{bottom:294.147150px;}
.y13a{bottom:294.916050px;}
.y85{bottom:295.111650px;}
.y15d{bottom:299.939550px;}
.y5f{bottom:301.801950px;}
.y1b4{bottom:302.473350px;}
.y17{bottom:306.304650px;}
.y115{bottom:307.674000px;}
.yef{bottom:311.304600px;}
.ycb{bottom:311.421900px;}
.y1d0{bottom:311.665500px;}
.y198{bottom:312.054300px;}
.ya5{bottom:313.364700px;}
.y3c{bottom:314.558400px;}
.y84{bottom:315.363150px;}
.y139{bottom:315.874800px;}
.y5e{bottom:322.966650px;}
.y114{bottom:328.184250px;}
.y15c{bottom:329.005800px;}
.y1cf{bottom:331.165500px;}
.yee{bottom:331.694100px;}
.yca{bottom:332.555400px;}
.ya4{bottom:334.064700px;}
.y197{bottom:334.151550px;}
.y3b{bottom:334.982400px;}
.y83{bottom:335.614650px;}
.y138{bottom:336.833550px;}
.y1b3{bottom:337.784850px;}
.y5d{bottom:344.131350px;}
.y113{bottom:348.703050px;}
.y15b{bottom:349.567800px;}
.y1ce{bottom:350.671350px;}
.yed{bottom:352.083600px;}
.y17d{bottom:353.357100px;}
.yc9{bottom:353.669400px;}
.ya3{bottom:354.764700px;}
.y3a{bottom:355.380750px;}
.y16{bottom:355.594650px;}
.y82{bottom:355.866150px;}
.y137{bottom:357.792300px;}
.y1b2{bottom:360.338850px;}
.y5c{bottom:365.294850px;}
.y196{bottom:369.006300px;}
.y112{bottom:369.230250px;}
.y15a{bottom:370.129800px;}
.y1cd{bottom:370.171350px;}
.yec{bottom:372.473100px;}
.y17c{bottom:374.126100px;}
.yc8{bottom:374.783400px;}
.ya2{bottom:375.464700px;}
.y39{bottom:375.804750px;}
.y81{bottom:376.117650px;}
.y15{bottom:376.624650px;}
.y136{bottom:378.751050px;}
.y5b{bottom:386.460600px;}
.y1cc{bottom:389.671350px;}
.y111{bottom:389.740500px;}
.y159{bottom:390.691800px;}
.y195{bottom:391.103550px;}
.yeb{bottom:392.862600px;}
.y17b{bottom:394.895100px;}
.y1b1{bottom:395.650350px;}
.yc7{bottom:395.897400px;}
.ya1{bottom:396.164700px;}
.y80{bottom:396.369150px;}
.y135{bottom:399.709800px;}
.y38{bottom:404.733000px;}
.y14{bottom:406.143900px;}
.y5a{bottom:407.618850px;}
.y1cb{bottom:409.171350px;}
.y110{bottom:410.259300px;}
.y158{bottom:411.319950px;}
.yea{bottom:413.277450px;}
.y17a{bottom:415.664100px;}
.y7f{bottom:416.620650px;}
.ya0{bottom:416.864700px;}
.yc6{bottom:417.011400px;}
.y1b0{bottom:418.204350px;}
.y134{bottom:420.667650px;}
.y37{bottom:425.157000px;}
.y13{bottom:425.673900px;}
.y194{bottom:425.958300px;}
.y1ca{bottom:428.671350px;}
.y59{bottom:428.784600px;}
.y10f{bottom:430.812150px;}
.ye9{bottom:433.666950px;}
.y179{bottom:436.433100px;}
.y7e{bottom:436.872150px;}
.y9f{bottom:437.564700px;}
.yc5{bottom:438.125400px;}
.y157{bottom:440.386200px;}
.y133{bottom:441.623250px;}
.y12{bottom:445.203900px;}
.y36{bottom:445.581000px;}
.y193{bottom:448.055550px;}
.y1c9{bottom:448.171350px;}
.y58{bottom:449.950350px;}
.y10e{bottom:451.322400px;}
.y1af{bottom:453.515850px;}
.ye8{bottom:454.056450px;}
.y7d{bottom:457.123650px;}
.y178{bottom:457.202100px;}
.y9e{bottom:458.264700px;}
.yc4{bottom:459.245850px;}
.y156{bottom:460.948200px;}
.y132{bottom:462.582000px;}
.y11{bottom:464.733900px;}
.y35{bottom:465.985800px;}
.y1c8{bottom:467.671350px;}
.y57{bottom:471.116100px;}
.y10d{bottom:471.832650px;}
.ye7{bottom:474.445950px;}
.y7c{bottom:477.375150px;}
.y177{bottom:477.971100px;}
.y9d{bottom:478.964700px;}
.yc3{bottom:480.359850px;}
.y155{bottom:481.510200px;}
.y192{bottom:482.910300px;}
.y131{bottom:483.540750px;}
.y10{bottom:484.263900px;}
.y1c7{bottom:487.171350px;}
.y1ae{bottom:488.827350px;}
.y56{bottom:492.281850px;}
.y10c{bottom:492.342900px;}
.ye6{bottom:494.835450px;}
.y34{bottom:494.914050px;}
.y7b{bottom:497.642250px;}
.y176{bottom:498.740100px;}
.y9c{bottom:499.664700px;}
.yc2{bottom:501.499800px;}
.y154{bottom:502.072200px;}
.yf{bottom:503.793900px;}
.y130{bottom:504.499500px;}
.y191{bottom:505.007550px;}
.y1c6{bottom:506.671350px;}
.y1ad{bottom:511.381350px;}
.y10b{bottom:512.853150px;}
.y55{bottom:513.447600px;}
.ye5{bottom:515.224950px;}
.y33{bottom:515.325450px;}
.y7a{bottom:517.893750px;}
.y175{bottom:519.509100px;}
.yc1{bottom:522.613800px;}
.ye{bottom:523.323900px;}
.y12f{bottom:525.457500px;}
.y1c5{bottom:526.171350px;}
.y153{bottom:531.138450px;}
.y10a{bottom:533.380500px;}
.y1ac{bottom:533.935350px;}
.y54{bottom:534.613350px;}
.ye4{bottom:535.618650px;}
.y32{bottom:535.749450px;}
.y79{bottom:538.145250px;}
.y190{bottom:539.862300px;}
.y9b{bottom:541.627950px;}
.yc0{bottom:543.727800px;}
.y1c4{bottom:545.671350px;}
.y12e{bottom:546.415500px;}
.y152{bottom:551.700450px;}
.y109{bottom:553.890750px;}
.yd{bottom:555.603900px;}
.y53{bottom:555.773700px;}
.ye3{bottom:556.050300px;}
.y31{bottom:556.109850px;}
.y1ab{bottom:556.503150px;}
.y78{bottom:558.396750px;}
.y174{bottom:561.529650px;}
.y18f{bottom:561.959550px;}
.ybf{bottom:564.841800px;}
.y1c3{bottom:565.171350px;}
.y12d{bottom:567.370200px;}
.y151{bottom:572.262450px;}
.y108{bottom:574.409550px;}
.ye2{bottom:576.439800px;}
.y30{bottom:576.533850px;}
.y52{bottom:576.939450px;}
.y77{bottom:578.648250px;}
.y18e{bottom:584.056800px;}
.y1c2{bottom:584.671350px;}
.ybe{bottom:585.955800px;}
.y12c{bottom:588.328950px;}
.y1aa{bottom:591.814650px;}
.y150{bottom:592.824450px;}
.y107{bottom:595.047600px;}
.ye1{bottom:596.829300px;}
.y51{bottom:598.105200px;}
.y76{bottom:598.899750px;}
.y1c1{bottom:604.171350px;}
.yc{bottom:604.895250px;}
.y2f{bottom:605.462100px;}
.ybd{bottom:607.069800px;}
.y12b{bottom:609.287700px;}
.y9a{bottom:612.901350px;}
.y1a9{bottom:614.368650px;}
.y106{bottom:615.557850px;}
.ye0{bottom:617.218800px;}
.y18d{bottom:618.916650px;}
.y75{bottom:619.151250px;}
.y50{bottom:619.270950px;}
.y14f{bottom:621.890700px;}
.y1c0{bottom:623.671350px;}
.yb{bottom:625.164000px;}
.y2e{bottom:625.886100px;}
.ybc{bottom:628.183800px;}
.y12a{bottom:630.246450px;}
.y173{bottom:632.745750px;}
.y99{bottom:633.601350px;}
.y105{bottom:636.068100px;}
.ydf{bottom:637.608300px;}
.y74{bottom:639.431850px;}
.y4f{bottom:640.436700px;}
.y18c{bottom:641.017350px;}
.y14e{bottom:642.452700px;}
.ya{bottom:645.450000px;}
.y2d{bottom:646.310100px;}
.ybb{bottom:649.297800px;}
.y1a8{bottom:649.680150px;}
.y129{bottom:651.205200px;}
.y172{bottom:653.514750px;}
.y98{bottom:654.301350px;}
.y1bf{bottom:655.921350px;}
.y104{bottom:656.578350px;}
.yde{bottom:657.997800px;}
.y73{bottom:659.683350px;}
.y4e{bottom:661.602450px;}
.y14d{bottom:663.014700px;}
.y18b{bottom:663.133350px;}
.y2c{bottom:666.734100px;}
.y9{bottom:669.979350px;}
.yba{bottom:670.414950px;}
.y128{bottom:672.159900px;}
.y1a7{bottom:672.234150px;}
.y171{bottom:674.283750px;}
.y97{bottom:675.001350px;}
.y103{bottom:677.088600px;}
.ydd{bottom:678.387300px;}
.y72{bottom:679.934850px;}
.y2b{bottom:687.158100px;}
.yb9{bottom:691.545150px;}
.y14c{bottom:692.097450px;}
.y127{bottom:693.118650px;}
.y170{bottom:695.052750px;}
.y96{bottom:695.701350px;}
.y102{bottom:697.598850px;}
.y18a{bottom:697.988100px;}
.ydc{bottom:698.776800px;}
.y71{bottom:700.186350px;}
.y4d{bottom:704.026950px;}
.y1a6{bottom:707.545650px;}
.y2a{bottom:707.582100px;}
.y1be{bottom:709.437150px;}
.y8{bottom:709.754100px;}
.yb8{bottom:712.659150px;}
.y14b{bottom:712.659450px;}
.y126{bottom:714.077400px;}
.y16f{bottom:715.821750px;}
.y95{bottom:716.401350px;}
.y101{bottom:718.109100px;}
.ydb{bottom:719.166300px;}
.y70{bottom:720.437850px;}
.y29{bottom:728.006100px;}
.y1a5{bottom:730.099650px;}
.y189{bottom:732.842850px;}
.yb7{bottom:733.773150px;}
.y125{bottom:735.036150px;}
.y16e{bottom:736.590750px;}
.y94{bottom:737.101350px;}
.y100{bottom:738.619350px;}
.yda{bottom:739.555800px;}
.y6f{bottom:740.689350px;}
.y7{bottom:741.290100px;}
.y14a{bottom:741.725700px;}
.y28{bottom:748.430100px;}
.yb6{bottom:754.887150px;}
.y188{bottom:754.940100px;}
.y124{bottom:755.994900px;}
.y16d{bottom:757.359750px;}
.y93{bottom:757.801350px;}
.yff{bottom:759.129600px;}
.yd9{bottom:759.974850px;}
.y6e{bottom:760.940850px;}
.y149{bottom:762.320850px;}
.y1a4{bottom:765.411150px;}
.y27{bottom:768.854100px;}
.y4c{bottom:775.706850px;}
.yb5{bottom:776.001150px;}
.y123{bottom:776.952000px;}
.y16c{bottom:778.128750px;}
.y92{bottom:778.501350px;}
.yfe{bottom:779.639850px;}
.yd8{bottom:780.364350px;}
.y6d{bottom:781.192350px;}
.y148{bottom:782.882850px;}
.y1a3{bottom:787.965150px;}
.y26{bottom:789.258750px;}
.y187{bottom:789.794850px;}
.y4b{bottom:796.872600px;}
.yb4{bottom:797.131350px;}
.y122{bottom:797.910750px;}
.y16b{bottom:798.856350px;}
.y91{bottom:799.201350px;}
.yfd{bottom:800.150100px;}
.yd7{bottom:800.753850px;}
.y6c{bottom:801.443850px;}
.y6{bottom:802.571400px;}
.y186{bottom:811.892100px;}
.y147{bottom:811.949100px;}
.y4a{bottom:818.038350px;}
.y25{bottom:818.187000px;}
.yb3{bottom:818.245350px;}
.y121{bottom:818.868750px;}
.y16a{bottom:819.625350px;}
.y90{bottom:819.901350px;}
.yfc{bottom:820.660350px;}
.yd6{bottom:821.143350px;}
.y6b{bottom:821.695350px;}
.y1a2{bottom:823.276650px;}
.y5{bottom:832.106400px;}
.y146{bottom:832.511100px;}
.y24{bottom:838.604700px;}
.y49{bottom:839.204100px;}
.yb2{bottom:839.359350px;}
.y120{bottom:839.825850px;}
.y169{bottom:840.394350px;}
.y8f{bottom:840.601350px;}
.yfb{bottom:841.170600px;}
.yd5{bottom:841.532850px;}
.y6a{bottom:841.946850px;}
.y1a1{bottom:845.831250px;}
.y185{bottom:846.746850px;}
.y23{bottom:859.028700px;}
.y48{bottom:860.369850px;}
.yb1{bottom:860.473350px;}
.y11f{bottom:860.784600px;}
.y168{bottom:861.163350px;}
.y8e{bottom:861.301350px;}
.y145{bottom:861.577350px;}
.y4{bottom:861.641400px;}
.yfa{bottom:861.680850px;}
.yd4{bottom:861.922350px;}
.y69{bottom:862.198350px;}
.y1bd{bottom:863.189850px;}
.y184{bottom:868.844100px;}
.y1a0{bottom:881.144850px;}
.y47{bottom:881.535600px;}
.yb0{bottom:881.587350px;}
.y11e{bottom:881.742600px;}
.y167{bottom:881.932350px;}
.y8d{bottom:882.001350px;}
.y144{bottom:882.139350px;}
.yf9{bottom:882.191100px;}
.yd3{bottom:882.311850px;}
.y68{bottom:882.449850px;}
.y3{bottom:882.671400px;}
.y1bc{bottom:883.444350px;}
.y22{bottom:900.706200px;}
.y46{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:948.189000px;}
.h21{height:29.130073px;}
.h18{height:37.983820px;}
.h10{height:39.987727px;}
.h2b{height:43.466309px;}
.hb{height:44.414062px;}
.h8{height:47.605957px;}
.h1b{height:49.965820px;}
.h22{height:49.989820px;}
.h11{height:51.969727px;}
.h1a{height:51.981727px;}
.h4{height:55.517578px;}
.h31{height:57.720741px;}
.ha{height:57.744141px;}
.h3{height:58.293457px;}
.h2e{height:60.495148px;}
.h2d{height:60.556348px;}
.h30{height:60.576148px;}
.h2f{height:60.628948px;}
.h2c{height:60.631348px;}
.h9{height:63.845215px;}
.h17{height:63.850015px;}
.h15{height:63.854215px;}
.h25{height:63.861415px;}
.h13{height:63.866815px;}
.h29{height:63.886615px;}
.hf{height:63.896215px;}
.h1e{height:65.894562px;}
.h1c{height:66.287562px;}
.h19{height:66.327762px;}
.h20{height:66.337962px;}
.h1f{height:66.371562px;}
.h1d{height:66.388962px;}
.hd{height:66.405762px;}
.h23{height:66.408762px;}
.h28{height:66.409362px;}
.h16{height:66.409962px;}
.h24{height:66.412362px;}
.h27{height:66.418362px;}
.h26{height:66.421962px;}
.h14{height:66.435762px;}
.he{height:66.456162px;}
.h2a{height:66.571362px;}
.h2{height:69.396973px;}
.h12{height:74.948730px;}
.hc{height:77.954590px;}
.h7{height:80.841797px;}
.h5{height:99.931641px;}
.h6{height:103.939453px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.714250px;}
.xa{left:82.214250px;}
.xe{left:84.036600px;}
.x1{left:85.039350px;}
.x7{left:105.030600px;}
.x8{left:106.379250px;}
.xf{left:108.302850px;}
.xd{left:112.636950px;}
.xc{left:114.833700px;}
.xb{left:212.664000px;}
.x3{left:230.608200px;}
.x2{left:233.345250px;}
.x5{left:414.036900px;}
.x6{left:538.926900px;}
.x4{left:628.092150px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v1{vertical-align:-9.734933pt;}
.v8{vertical-align:-7.114133pt;}
.v5{vertical-align:-5.306667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.661333pt;}
.v7{vertical-align:12.405867pt;}
.v6{vertical-align:13.314667pt;}
.v2{vertical-align:15.316800pt;}
.ls1c{letter-spacing:-2.453333pt;}
.ls15{letter-spacing:-2.392000pt;}
.ls6{letter-spacing:-2.314667pt;}
.ls22{letter-spacing:-2.024000pt;}
.ls21{letter-spacing:-1.778667pt;}
.ls20{letter-spacing:-1.717333pt;}
.ls5{letter-spacing:-1.632000pt;}
.ls12{letter-spacing:-1.173333pt;}
.lse{letter-spacing:-1.080000pt;}
.ls28{letter-spacing:-0.864000pt;}
.lsd{letter-spacing:-0.760000pt;}
.ls17{letter-spacing:-0.557333pt;}
.ls4{letter-spacing:-0.213333pt;}
.ls27{letter-spacing:-0.152000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000267pt;}
.ls19{letter-spacing:0.006059pt;}
.ls2b{letter-spacing:0.006613pt;}
.ls1e{letter-spacing:0.006912pt;}
.ls1d{letter-spacing:0.007445pt;}
.ls18{letter-spacing:0.022933pt;}
.ls7{letter-spacing:0.970667pt;}
.lsb{letter-spacing:2.133333pt;}
.ls14{letter-spacing:2.933333pt;}
.ls1b{letter-spacing:3.042133pt;}
.lsf{letter-spacing:3.502133pt;}
.ls0{letter-spacing:3.733333pt;}
.ls1a{letter-spacing:3.800000pt;}
.ls13{letter-spacing:3.845600pt;}
.ls29{letter-spacing:3.864000pt;}
.ls1f{letter-spacing:4.133333pt;}
.ls9{letter-spacing:5.120000pt;}
.ls8{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls11{letter-spacing:5.587467pt;}
.lsa{letter-spacing:5.600000pt;}
.ls24{letter-spacing:5.765333pt;}
.ls23{letter-spacing:5.789867pt;}
.ls25{letter-spacing:5.826667pt;}
.ls16{letter-spacing:5.918667pt;}
.lsc{letter-spacing:5.933333pt;}
.ls2a{letter-spacing:6.400000pt;}
.ls2c{letter-spacing:6.666667pt;}
.ls26{letter-spacing:7.266667pt;}
.ls3{letter-spacing:7.466667pt;}
.ws14{word-spacing:-37.120000pt;}
.ws23{word-spacing:-26.000000pt;}
.ws2b{word-spacing:-25.400000pt;}
.ws28{word-spacing:-25.133333pt;}
.wsc{word-spacing:-24.666667pt;}
.ws1d{word-spacing:-22.866667pt;}
.ws18{word-spacing:-22.533333pt;}
.ws0{word-spacing:-22.080000pt;}
.ws2c{word-spacing:-21.952000pt;}
.ws15{word-spacing:-21.666667pt;}
.ws2d{word-spacing:-20.320000pt;}
.ws1{word-spacing:-20.213333pt;}
.ws4{word-spacing:-20.106667pt;}
.ws25{word-spacing:-19.600000pt;}
.ws24{word-spacing:-19.368000pt;}
.ws11{word-spacing:-17.234667pt;}
.wse{word-spacing:-16.704000pt;}
.wsd{word-spacing:-16.090667pt;}
.wsf{word-spacing:-15.149333pt;}
.ws3{word-spacing:-14.986667pt;}
.ws29{word-spacing:-13.832000pt;}
.ws1e{word-spacing:-13.432000pt;}
.ws1f{word-spacing:-13.370667pt;}
.ws2{word-spacing:-13.173333pt;}
.ws22{word-spacing:-13.125333pt;}
.ws1b{word-spacing:-12.696000pt;}
.ws1a{word-spacing:-11.856000pt;}
.ws10{word-spacing:-10.047811pt;}
.ws2a{word-spacing:-9.174088pt;}
.ws19{word-spacing:-8.832061pt;}
.ws20{word-spacing:-7.863504pt;}
.ws2e{word-spacing:-7.680053pt;}
.ws7{word-spacing:-7.466667pt;}
.ws21{word-spacing:-6.912048pt;}
.ws27{word-spacing:-5.600000pt;}
.ws6{word-spacing:-5.333333pt;}
.wsb{word-spacing:-3.733333pt;}
.ws12{word-spacing:-2.133333pt;}
.wsa{word-spacing:-0.970667pt;}
.ws5{word-spacing:0.000000pt;}
.ws26{word-spacing:0.152000pt;}
.ws8{word-spacing:0.213333pt;}
.ws17{word-spacing:0.557333pt;}
.ws13{word-spacing:0.760000pt;}
.ws9{word-spacing:2.314667pt;}
.ws16{word-spacing:2.392000pt;}
.ws1c{word-spacing:7.247856pt;}
._2c{margin-left:-13.880000pt;}
._25{margin-left:-8.551200pt;}
._8{margin-left:-7.539733pt;}
._9{margin-left:-6.320000pt;}
._21{margin-left:-5.388533pt;}
._a{margin-left:-4.424000pt;}
._7{margin-left:-3.477600pt;}
._3{margin-left:-2.458400pt;}
._6{margin-left:-1.016000pt;}
._4{width:0.913333pt;}
._1{width:2.133333pt;}
._13{width:3.097333pt;}
._b{width:4.368000pt;}
._5{width:5.413333pt;}
._c{width:6.976000pt;}
._14{width:8.253067pt;}
._12{width:9.270933pt;}
._e{width:10.867733pt;}
._18{width:11.776000pt;}
._d{width:12.746667pt;}
._1b{width:13.656267pt;}
._1e{width:14.995467pt;}
._1d{width:15.916000pt;}
._27{width:17.118667pt;}
._17{width:18.271200pt;}
._2e{width:19.713867pt;}
._11{width:21.049067pt;}
._10{width:22.196533pt;}
._2d{width:23.321280pt;}
._22{width:24.625920pt;}
._30{width:26.904533pt;}
._28{width:28.481600pt;}
._2f{width:32.417867pt;}
._2b{width:34.464853pt;}
._2a{width:37.696213pt;}
._19{width:38.617920pt;}
._29{width:45.993067pt;}
._15{width:76.048000pt;}
._f{width:217.429333pt;}
._24{width:437.739733pt;}
._26{width:439.493333pt;}
._16{width:445.680000pt;}
._23{width:447.146667pt;}
._1c{width:448.575733pt;}
._0{width:514.133333pt;}
._1a{width:883.294400pt;}
._1f{width:885.627733pt;}
._20{width:889.227733pt;}
._2{width:890.987733pt;}
.fsb{font-size:27.984000pt;}
.fse{font-size:31.093333pt;}
.fsd{font-size:32.648000pt;}
.fsa{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yf8{bottom:94.482933pt;}
.y45{bottom:94.485600pt;}
.y20{bottom:94.486000pt;}
.y143{bottom:94.486800pt;}
.y183{bottom:94.495733pt;}
.y19f{bottom:94.497333pt;}
.y1bb{bottom:94.509200pt;}
.yaf{bottom:94.546400pt;}
.y166{bottom:94.557600pt;}
.y67{bottom:97.150933pt;}
.yf7{bottom:109.818933pt;}
.y44{bottom:112.484267pt;}
.y165{bottom:112.834933pt;}
.yae{bottom:112.946400pt;}
.y182{bottom:112.947733pt;}
.y142{bottom:113.116800pt;}
.y1f{bottom:113.179333pt;}
.yd2{bottom:113.598400pt;}
.y19e{bottom:114.139333pt;}
.y1ba{bottom:114.557200pt;}
.y66{bottom:116.263733pt;}
.y11d{bottom:125.152267pt;}
.yf6{bottom:127.817600pt;}
.y164{bottom:131.112267pt;}
.yad{bottom:131.346400pt;}
.y181{bottom:131.399733pt;}
.y43{bottom:131.597067pt;}
.y141{bottom:131.737600pt;}
.y1d5{bottom:134.129333pt;}
.y8c{bottom:136.312133pt;}
.y1e{bottom:139.417467pt;}
.y11c{bottom:140.488267pt;}
.y11b{bottom:143.150933pt;}
.y19d{bottom:145.121333pt;}
.y1b9{bottom:145.945200pt;}
.yf5{bottom:146.930400pt;}
.yd1{bottom:148.044667pt;}
.y163{bottom:149.389600pt;}
.yac{bottom:149.746400pt;}
.y140{bottom:150.367600pt;}
.y1d4{bottom:152.129333pt;}
.y8b{bottom:154.313467pt;}
.y65{bottom:155.387333pt;}
.y1d{bottom:156.777467pt;}
.y180{bottom:161.191733pt;}
.yd0{bottom:163.378000pt;}
.y19c{bottom:164.763333pt;}
.y1b8{bottom:165.993200pt;}
.y162{bottom:167.666933pt;}
.yab{bottom:168.146400pt;}
.y13f{bottom:168.997600pt;}
.y1d3{bottom:170.129333pt;}
.y42{bottom:170.690800pt;}
.y8a{bottom:172.314800pt;}
.y1c{bottom:174.137467pt;}
.y64{bottom:174.201333pt;}
.y17f{bottom:179.643733pt;}
.ycf{bottom:181.376667pt;}
.y11a{bottom:182.331333pt;}
.y161{bottom:185.944267pt;}
.yf4{bottom:186.072800pt;}
.yaa{bottom:186.546400pt;}
.y13e{bottom:187.627600pt;}
.y41{bottom:188.845467pt;}
.y89{bottom:190.316133pt;}
.y1b{bottom:191.497467pt;}
.y63{bottom:193.015333pt;}
.y1d2{bottom:195.689333pt;}
.y19b{bottom:195.775600pt;}
.y1b7{bottom:197.381200pt;}
.y119{bottom:200.562667pt;}
.yf3{bottom:204.196800pt;}
.y160{bottom:204.221600pt;}
.ya9{bottom:204.946400pt;}
.y17e{bottom:205.655733pt;}
.y13d{bottom:206.257600pt;}
.y40{bottom:207.000133pt;}
.y88{bottom:208.317467pt;}
.y1a{bottom:208.857467pt;}
.y62{bottom:211.829333pt;}
.y1b6{bottom:217.429200pt;}
.y118{bottom:218.794000pt;}
.yce{bottom:220.506800pt;}
.yf2{bottom:222.320800pt;}
.ya8{bottom:223.346400pt;}
.y13c{bottom:224.887600pt;}
.y3f{bottom:225.154800pt;}
.y19{bottom:226.217467pt;}
.y87{bottom:226.318800pt;}
.y19a{bottom:226.757600pt;}
.y15f{bottom:230.058267pt;}
.y61{bottom:230.642400pt;}
.y1d1{bottom:232.582667pt;}
.y117{bottom:237.025333pt;}
.ycd{bottom:239.283467pt;}
.yf1{bottom:240.444800pt;}
.ya7{bottom:241.746400pt;}
.y3e{bottom:243.309467pt;}
.y13b{bottom:243.517600pt;}
.y18{bottom:243.577467pt;}
.y86{bottom:244.320133pt;}
.y199{bottom:246.399600pt;}
.y15e{bottom:248.335600pt;}
.y1b5{bottom:248.817200pt;}
.y60{bottom:249.455333pt;}
.y116{bottom:255.256667pt;}
.ycc{bottom:258.051467pt;}
.yf0{bottom:258.591200pt;}
.ya6{bottom:260.146400pt;}
.y3d{bottom:261.464133pt;}
.y13a{bottom:262.147600pt;}
.y85{bottom:262.321467pt;}
.y15d{bottom:266.612933pt;}
.y5f{bottom:268.268400pt;}
.y1b4{bottom:268.865200pt;}
.y17{bottom:272.270800pt;}
.y115{bottom:273.488000pt;}
.yef{bottom:276.715200pt;}
.ycb{bottom:276.819467pt;}
.y1d0{bottom:277.036000pt;}
.y198{bottom:277.381600pt;}
.ya5{bottom:278.546400pt;}
.y3c{bottom:279.607467pt;}
.y84{bottom:280.322800pt;}
.y139{bottom:280.777600pt;}
.y5e{bottom:287.081467pt;}
.y114{bottom:291.719333pt;}
.y15c{bottom:292.449600pt;}
.y1cf{bottom:294.369333pt;}
.yee{bottom:294.839200pt;}
.yca{bottom:295.604800pt;}
.ya4{bottom:296.946400pt;}
.y197{bottom:297.023600pt;}
.y3b{bottom:297.762133pt;}
.y83{bottom:298.324133pt;}
.y138{bottom:299.407600pt;}
.y1b3{bottom:300.253200pt;}
.y5d{bottom:305.894533pt;}
.y113{bottom:309.958267pt;}
.y15b{bottom:310.726933pt;}
.y1ce{bottom:311.707867pt;}
.yed{bottom:312.963200pt;}
.y17d{bottom:314.095200pt;}
.yc9{bottom:314.372800pt;}
.ya3{bottom:315.346400pt;}
.y3a{bottom:315.894000pt;}
.y16{bottom:316.084133pt;}
.y82{bottom:316.325467pt;}
.y137{bottom:318.037600pt;}
.y1b2{bottom:320.301200pt;}
.y5c{bottom:324.706533pt;}
.y196{bottom:328.005600pt;}
.y112{bottom:328.204667pt;}
.y15a{bottom:329.004267pt;}
.y1cd{bottom:329.041200pt;}
.yec{bottom:331.087200pt;}
.y17c{bottom:332.556533pt;}
.yc8{bottom:333.140800pt;}
.ya2{bottom:333.746400pt;}
.y39{bottom:334.048667pt;}
.y81{bottom:334.326800pt;}
.y15{bottom:334.777467pt;}
.y136{bottom:336.667600pt;}
.y5b{bottom:343.520533pt;}
.y1cc{bottom:346.374533pt;}
.y111{bottom:346.436000pt;}
.y159{bottom:347.281600pt;}
.y195{bottom:347.647600pt;}
.yeb{bottom:349.211200pt;}
.y17b{bottom:351.017867pt;}
.y1b1{bottom:351.689200pt;}
.yc7{bottom:351.908800pt;}
.ya1{bottom:352.146400pt;}
.y80{bottom:352.328133pt;}
.y135{bottom:355.297600pt;}
.y38{bottom:359.762667pt;}
.y14{bottom:361.016800pt;}
.y5a{bottom:362.327867pt;}
.y1cb{bottom:363.707867pt;}
.y110{bottom:364.674933pt;}
.y158{bottom:365.617733pt;}
.yea{bottom:367.357733pt;}
.y17a{bottom:369.479200pt;}
.y7f{bottom:370.329467pt;}
.ya0{bottom:370.546400pt;}
.yc6{bottom:370.676800pt;}
.y1b0{bottom:371.737200pt;}
.y134{bottom:373.926800pt;}
.y37{bottom:377.917333pt;}
.y13{bottom:378.376800pt;}
.y194{bottom:378.629600pt;}
.y1ca{bottom:381.041200pt;}
.y59{bottom:381.141867pt;}
.y10f{bottom:382.944133pt;}
.ye9{bottom:385.481733pt;}
.y179{bottom:387.940533pt;}
.y7e{bottom:388.330800pt;}
.y9f{bottom:388.946400pt;}
.yc5{bottom:389.444800pt;}
.y157{bottom:391.454400pt;}
.y133{bottom:392.554000pt;}
.y12{bottom:395.736800pt;}
.y36{bottom:396.072000pt;}
.y193{bottom:398.271600pt;}
.y1c9{bottom:398.374533pt;}
.y58{bottom:399.955867pt;}
.y10e{bottom:401.175467pt;}
.y1af{bottom:403.125200pt;}
.ye8{bottom:403.605733pt;}
.y7d{bottom:406.332133pt;}
.y178{bottom:406.401867pt;}
.y9e{bottom:407.346400pt;}
.yc4{bottom:408.218533pt;}
.y156{bottom:409.731733pt;}
.y132{bottom:411.184000pt;}
.y11{bottom:413.096800pt;}
.y35{bottom:414.209600pt;}
.y1c8{bottom:415.707867pt;}
.y57{bottom:418.769867pt;}
.y10d{bottom:419.406800pt;}
.ye7{bottom:421.729733pt;}
.y7c{bottom:424.333467pt;}
.y177{bottom:424.863200pt;}
.y9d{bottom:425.746400pt;}
.yc3{bottom:426.986533pt;}
.y155{bottom:428.009067pt;}
.y192{bottom:429.253600pt;}
.y131{bottom:429.814000pt;}
.y10{bottom:430.456800pt;}
.y1c7{bottom:433.041200pt;}
.y1ae{bottom:434.513200pt;}
.y56{bottom:437.583867pt;}
.y10c{bottom:437.638133pt;}
.ye6{bottom:439.853733pt;}
.y34{bottom:439.923600pt;}
.y7b{bottom:442.348667pt;}
.y176{bottom:443.324533pt;}
.y9c{bottom:444.146400pt;}
.yc2{bottom:445.777600pt;}
.y154{bottom:446.286400pt;}
.yf{bottom:447.816800pt;}
.y130{bottom:448.444000pt;}
.y191{bottom:448.895600pt;}
.y1c6{bottom:450.374533pt;}
.y1ad{bottom:454.561200pt;}
.y10b{bottom:455.869467pt;}
.y55{bottom:456.397867pt;}
.ye5{bottom:457.977733pt;}
.y33{bottom:458.067067pt;}
.y7a{bottom:460.350000pt;}
.y175{bottom:461.785867pt;}
.yc1{bottom:464.545600pt;}
.ye{bottom:465.176800pt;}
.y12f{bottom:467.073333pt;}
.y1c5{bottom:467.707867pt;}
.y153{bottom:472.123067pt;}
.y10a{bottom:474.116000pt;}
.y1ac{bottom:474.609200pt;}
.y54{bottom:475.211867pt;}
.ye4{bottom:476.105467pt;}
.y32{bottom:476.221733pt;}
.y79{bottom:478.351333pt;}
.y190{bottom:479.877600pt;}
.y9b{bottom:481.447067pt;}
.yc0{bottom:483.313600pt;}
.y1c4{bottom:485.041200pt;}
.y12e{bottom:485.702667pt;}
.y152{bottom:490.400400pt;}
.y109{bottom:492.347333pt;}
.yd{bottom:493.870133pt;}
.y53{bottom:494.021067pt;}
.ye3{bottom:494.266933pt;}
.y31{bottom:494.319867pt;}
.y1ab{bottom:494.669467pt;}
.y78{bottom:496.352667pt;}
.y174{bottom:499.137467pt;}
.y18f{bottom:499.519600pt;}
.ybf{bottom:502.081600pt;}
.y1c3{bottom:502.374533pt;}
.y12d{bottom:504.329067pt;}
.y151{bottom:508.677733pt;}
.y108{bottom:510.586267pt;}
.ye2{bottom:512.390933pt;}
.y30{bottom:512.474533pt;}
.y52{bottom:512.835067pt;}
.y77{bottom:514.354000pt;}
.y18e{bottom:519.161600pt;}
.y1c2{bottom:519.707867pt;}
.ybe{bottom:520.849600pt;}
.y12c{bottom:522.959067pt;}
.y1aa{bottom:526.057467pt;}
.y150{bottom:526.955067pt;}
.y107{bottom:528.931200pt;}
.ye1{bottom:530.514933pt;}
.y51{bottom:531.649067pt;}
.y76{bottom:532.355333pt;}
.y1c1{bottom:537.041200pt;}
.yc{bottom:537.684667pt;}
.y2f{bottom:538.188533pt;}
.ybd{bottom:539.617600pt;}
.y12b{bottom:541.589067pt;}
.y9a{bottom:544.801200pt;}
.y1a9{bottom:546.105467pt;}
.y106{bottom:547.162533pt;}
.ye0{bottom:548.638933pt;}
.y18d{bottom:550.148133pt;}
.y75{bottom:550.356667pt;}
.y50{bottom:550.463067pt;}
.y14f{bottom:552.791733pt;}
.y1c0{bottom:554.374533pt;}
.yb{bottom:555.701333pt;}
.y2e{bottom:556.343200pt;}
.ybc{bottom:558.385600pt;}
.y12a{bottom:560.219067pt;}
.y173{bottom:562.440667pt;}
.y99{bottom:563.201200pt;}
.y105{bottom:565.393867pt;}
.ydf{bottom:566.762933pt;}
.y74{bottom:568.383867pt;}
.y4f{bottom:569.277067pt;}
.y18c{bottom:569.793200pt;}
.y14e{bottom:571.069067pt;}
.ya{bottom:573.733333pt;}
.y2d{bottom:574.497867pt;}
.ybb{bottom:577.153600pt;}
.y1a8{bottom:577.493467pt;}
.y129{bottom:578.849067pt;}
.y172{bottom:580.902000pt;}
.y98{bottom:581.601200pt;}
.y1bf{bottom:583.041200pt;}
.y104{bottom:583.625200pt;}
.yde{bottom:584.886933pt;}
.y73{bottom:586.385200pt;}
.y4e{bottom:588.091067pt;}
.y14d{bottom:589.346400pt;}
.y18b{bottom:589.451867pt;}
.y2c{bottom:592.652533pt;}
.y9{bottom:595.537200pt;}
.yba{bottom:595.924400pt;}
.y128{bottom:597.475467pt;}
.y1a7{bottom:597.541467pt;}
.y171{bottom:599.363333pt;}
.y97{bottom:600.001200pt;}
.y103{bottom:601.856533pt;}
.ydd{bottom:603.010933pt;}
.y72{bottom:604.386533pt;}
.y2b{bottom:610.807200pt;}
.yb9{bottom:614.706800pt;}
.y14c{bottom:615.197733pt;}
.y127{bottom:616.105467pt;}
.y170{bottom:617.824667pt;}
.y96{bottom:618.401200pt;}
.y102{bottom:620.087867pt;}
.y18a{bottom:620.433867pt;}
.ydc{bottom:621.134933pt;}
.y71{bottom:622.387867pt;}
.y4d{bottom:625.801733pt;}
.y1a6{bottom:628.929467pt;}
.y2a{bottom:628.961867pt;}
.y1be{bottom:630.610800pt;}
.y8{bottom:630.892533pt;}
.yb8{bottom:633.474800pt;}
.y14b{bottom:633.475067pt;}
.y126{bottom:634.735467pt;}
.y16f{bottom:636.286000pt;}
.y95{bottom:636.801200pt;}
.y101{bottom:638.319200pt;}
.ydb{bottom:639.258933pt;}
.y70{bottom:640.389200pt;}
.y29{bottom:647.116533pt;}
.y1a5{bottom:648.977467pt;}
.y189{bottom:651.415867pt;}
.yb7{bottom:652.242800pt;}
.y125{bottom:653.365467pt;}
.y16e{bottom:654.747333pt;}
.y94{bottom:655.201200pt;}
.y100{bottom:656.550533pt;}
.yda{bottom:657.382933pt;}
.y6f{bottom:658.390533pt;}
.y7{bottom:658.924533pt;}
.y14a{bottom:659.311733pt;}
.y28{bottom:665.271200pt;}
.yb6{bottom:671.010800pt;}
.y188{bottom:671.057867pt;}
.y124{bottom:671.995467pt;}
.y16d{bottom:673.208667pt;}
.y93{bottom:673.601200pt;}
.yff{bottom:674.781867pt;}
.yd9{bottom:675.533200pt;}
.y6e{bottom:676.391867pt;}
.y149{bottom:677.618533pt;}
.y1a4{bottom:680.365467pt;}
.y27{bottom:683.425867pt;}
.y4c{bottom:689.517200pt;}
.yb5{bottom:689.778800pt;}
.y123{bottom:690.624000pt;}
.y16c{bottom:691.670000pt;}
.y92{bottom:692.001200pt;}
.yfe{bottom:693.013200pt;}
.yd8{bottom:693.657200pt;}
.y6d{bottom:694.393200pt;}
.y148{bottom:695.895867pt;}
.y1a3{bottom:700.413467pt;}
.y26{bottom:701.563333pt;}
.y187{bottom:702.039867pt;}
.y4b{bottom:708.331200pt;}
.yb4{bottom:708.561200pt;}
.y122{bottom:709.254000pt;}
.y16b{bottom:710.094533pt;}
.y91{bottom:710.401200pt;}
.yfd{bottom:711.244533pt;}
.yd7{bottom:711.781200pt;}
.y6c{bottom:712.394533pt;}
.y6{bottom:713.396800pt;}
.y186{bottom:721.681867pt;}
.y147{bottom:721.732533pt;}
.y4a{bottom:727.145200pt;}
.y25{bottom:727.277333pt;}
.yb3{bottom:727.329200pt;}
.y121{bottom:727.883333pt;}
.y16a{bottom:728.555867pt;}
.y90{bottom:728.801200pt;}
.yfc{bottom:729.475867pt;}
.yd6{bottom:729.905200pt;}
.y6b{bottom:730.395867pt;}
.y1a2{bottom:731.801467pt;}
.y5{bottom:739.650133pt;}
.y146{bottom:740.009867pt;}
.y24{bottom:745.426400pt;}
.y49{bottom:745.959200pt;}
.yb2{bottom:746.097200pt;}
.y120{bottom:746.511867pt;}
.y169{bottom:747.017200pt;}
.y8f{bottom:747.201200pt;}
.yfb{bottom:747.707200pt;}
.yd5{bottom:748.029200pt;}
.y6a{bottom:748.397200pt;}
.y1a1{bottom:751.850000pt;}
.y185{bottom:752.663867pt;}
.y23{bottom:763.581067pt;}
.y48{bottom:764.773200pt;}
.yb1{bottom:764.865200pt;}
.y11f{bottom:765.141867pt;}
.y168{bottom:765.478533pt;}
.y8e{bottom:765.601200pt;}
.y145{bottom:765.846533pt;}
.y4{bottom:765.903467pt;}
.yfa{bottom:765.938533pt;}
.yd4{bottom:766.153200pt;}
.y69{bottom:766.398533pt;}
.y1bd{bottom:767.279867pt;}
.y184{bottom:772.305867pt;}
.y1a0{bottom:783.239867pt;}
.y47{bottom:783.587200pt;}
.yb0{bottom:783.633200pt;}
.y11e{bottom:783.771200pt;}
.y167{bottom:783.939867pt;}
.y8d{bottom:784.001200pt;}
.y144{bottom:784.123867pt;}
.yf9{bottom:784.169867pt;}
.yd3{bottom:784.277200pt;}
.y68{bottom:784.399867pt;}
.y3{bottom:784.596800pt;}
.y1bc{bottom:785.283867pt;}
.y22{bottom:800.627733pt;}
.y46{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:842.834667pt;}
.h21{height:25.893398pt;}
.h18{height:33.763396pt;}
.h10{height:35.544646pt;}
.h2b{height:38.636719pt;}
.hb{height:39.479167pt;}
.h8{height:42.316406pt;}
.h1b{height:44.414062pt;}
.h22{height:44.435396pt;}
.h11{height:46.195312pt;}
.h1a{height:46.205979pt;}
.h4{height:49.348958pt;}
.h31{height:51.307325pt;}
.ha{height:51.328125pt;}
.h3{height:51.816406pt;}
.h2e{height:53.773465pt;}
.h2d{height:53.827865pt;}
.h30{height:53.845465pt;}
.h2f{height:53.892398pt;}
.h2c{height:53.894531pt;}
.h9{height:56.751302pt;}
.h17{height:56.755569pt;}
.h15{height:56.759302pt;}
.h25{height:56.765702pt;}
.h13{height:56.770502pt;}
.h29{height:56.788102pt;}
.hf{height:56.796635pt;}
.h1e{height:58.572944pt;}
.h1c{height:58.922277pt;}
.h19{height:58.958010pt;}
.h20{height:58.967077pt;}
.h1f{height:58.996944pt;}
.h1d{height:59.012410pt;}
.hd{height:59.027344pt;}
.h23{height:59.030010pt;}
.h28{height:59.030544pt;}
.h16{height:59.031077pt;}
.h24{height:59.033210pt;}
.h27{height:59.038544pt;}
.h26{height:59.041744pt;}
.h14{height:59.054010pt;}
.he{height:59.072144pt;}
.h2a{height:59.174544pt;}
.h2{height:61.686198pt;}
.h12{height:66.621094pt;}
.hc{height:69.292969pt;}
.h7{height:71.859375pt;}
.h5{height:88.828125pt;}
.h6{height:92.390625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.746000pt;}
.xa{left:73.079333pt;}
.xe{left:74.699200pt;}
.x1{left:75.590533pt;}
.x7{left:93.360533pt;}
.x8{left:94.559333pt;}
.xf{left:96.269200pt;}
.xd{left:100.121733pt;}
.xc{left:102.074400pt;}
.xb{left:189.034667pt;}
.x3{left:204.985067pt;}
.x2{left:207.418000pt;}
.x5{left:368.032800pt;}
.x6{left:479.046133pt;}
.x4{left:558.304133pt;}
}




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