
    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_73e3766d9d6785ac8204642b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_badfdbca689be8299e50260d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.014160;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_e65e86dc2b09d4feb548980d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_dcdae2d5eac153be6fe2510e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.149414;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_d937f97a35b277dd560023f2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_6295a78ba9572cd68fa1f1d9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.057617;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_2e98f569c177bf8080ab599c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.021484;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_99afefaae7cf43504a58242b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.006836;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_8503dc946df6f97972839edc.woff')format("woff");}.ffa{font-family:ffa;line-height:1.021484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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:ffc;src:url('chunks/assets/font_6aac33b20f8a31cfd60c787c.woff')format("woff");}.ffc{font-family:ffc;line-height:1.057617;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:ffd;src:url('chunks/assets/font_859c72d942ed727e728fa5e8.woff')format("woff");}.ffd{font-family:ffd;line-height:0.740234;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:ffe;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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:fff;src:url('chunks/assets/font_868112290bde75c7a7ff9b03.woff')format("woff");}.fff{font-family:fff;line-height:0.739746;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsf{letter-spacing:-1.080000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.239040px;}
.ls15{letter-spacing:0.252000px;}
.ls1a{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.321120px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.720000px;}
.ls18{letter-spacing:2.520000px;}
.ls20{letter-spacing:2.880000px;}
.ls5{letter-spacing:3.600000px;}
.ls19{letter-spacing:4.320000px;}
.ls22{letter-spacing:5.040000px;}
.ls21{letter-spacing:5.760000px;}
.ls1f{letter-spacing:7.344000px;}
.ls24{letter-spacing:13.680000px;}
.ls23{letter-spacing:17.424000px;}
.ls3{letter-spacing:20.160000px;}
.ls1c{letter-spacing:21.600000px;}
.ls11{letter-spacing:30.960000px;}
.ls4{letter-spacing:33.984000px;}
.ls1b{letter-spacing:36.000000px;}
.lsc{letter-spacing:108.864000px;}
.lsd{letter-spacing:110.304000px;}
.ls1d{letter-spacing:116.100000px;}
.lsb{letter-spacing:129.744000px;}
.ls9{letter-spacing:151.344000px;}
.ls8{letter-spacing:159.984000px;}
.lse{letter-spacing:224.244000px;}
.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;}
}
.ws0{word-spacing:-21.420000px;}
.wsa{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.640000px;}
.ws8{word-spacing:-16.920000px;}
.ws4{word-spacing:-10.440000px;}
.ws2{word-spacing:0.000000px;}
._23{margin-left:-6.132720px;}
._e{margin-left:-4.536000px;}
._7{margin-left:-2.880000px;}
._0{margin-left:-1.595760px;}
._1{width:1.379760px;}
._4{width:2.592000px;}
._15{width:4.320000px;}
._27{width:5.400000px;}
._a{width:6.408000px;}
._d{width:7.992000px;}
._f{width:9.155760px;}
._12{width:10.872000px;}
._9{width:12.168000px;}
._6{width:13.248000px;}
._5{width:14.760000px;}
._25{width:16.632000px;}
._1f{width:19.019760px;}
._10{width:20.160000px;}
._3{width:21.384000px;}
._2{width:22.392000px;}
._c{width:23.904000px;}
._b{width:25.200000px;}
._1e{width:27.000000px;}
._2e{width:28.523760px;}
._20{width:30.168000px;}
._1b{width:31.967760px;}
._8{width:33.264000px;}
._11{width:34.355760px;}
._17{width:35.496000px;}
._16{width:36.504000px;}
._42{width:38.160000px;}
._36{width:39.312000px;}
._24{width:40.464000px;}
._1c{width:41.544000px;}
._1d{width:42.972000px;}
._3e{width:44.568000px;}
._14{width:46.152000px;}
._13{width:47.171760px;}
._21{width:49.032000px;}
._22{width:50.412000px;}
._28{width:52.488000px;}
._19{width:54.072000px;}
._1a{width:55.080000px;}
._29{width:56.520000px;}
._3d{width:57.828240px;}
._3f{width:59.400000px;}
._2a{width:61.344000px;}
._2b{width:64.728000px;}
._18{width:65.880000px;}
._43{width:68.040000px;}
._3c{width:69.347760px;}
._3b{width:70.416000px;}
._2d{width:71.507760px;}
._2c{width:72.720000px;}
._40{width:74.376000px;}
._41{width:75.456000px;}
._2f{width:77.544000px;}
._26{width:85.536000px;}
._31{width:111.612720px;}
._37{width:115.344000px;}
._30{width:120.960000px;}
._32{width:122.244240px;}
._35{width:128.304000px;}
._38{width:138.888000px;}
._33{width:159.840000px;}
._34{width:186.336000px;}
._39{width:204.192000px;}
._3a{width:243.875760px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y115{bottom:1.080000px;}
.y90{bottom:5.394000px;}
.y55{bottom:5.400000px;}
.y78{bottom:5.430000px;}
.y6b{bottom:5.445000px;}
.y53{bottom:8.100000px;}
.y97{bottom:10.620000px;}
.y51{bottom:12.780000px;}
.y11e{bottom:18.000000px;}
.y94{bottom:29.520000px;}
.y6d{bottom:29.694000px;}
.y5d{bottom:29.700000px;}
.y77{bottom:29.730000px;}
.y6a{bottom:29.745000px;}
.y10a{bottom:53.820000px;}
.y10d{bottom:53.994000px;}
.y63{bottom:54.000000px;}
.y108{bottom:54.030000px;}
.y72{bottom:54.045000px;}
.y3{bottom:58.356000px;}
.y119{bottom:78.294000px;}
.y107{bottom:78.330000px;}
.y71{bottom:78.345000px;}
.y2{bottom:78.516000px;}
.y54{bottom:97.416000px;}
.y92{bottom:98.496000px;}
.yf6{bottom:101.376000px;}
.y118{bottom:102.639000px;}
.y132{bottom:103.536000px;}
.y113{bottom:104.976000px;}
.y116{bottom:105.156000px;}
.ye2{bottom:106.776000px;}
.y83{bottom:107.676000px;}
.yab{bottom:108.396000px;}
.ye5{bottom:110.556000px;}
.yd0{bottom:112.176000px;}
.y12b{bottom:113.436000px;}
.yc1{bottom:113.796000px;}
.y3c{bottom:114.336000px;}
.y11c{bottom:119.196000px;}
.y1f{bottom:120.996000px;}
.y52{bottom:122.436000px;}
.y91{bottom:123.516000px;}
.y117{bottom:126.939000px;}
.y10c{bottom:127.296000px;}
.y131{bottom:127.836000px;}
.y112{bottom:129.276000px;}
.y82{bottom:131.976000px;}
.yaa{bottom:133.416000px;}
.ye4{bottom:134.856000px;}
.ycf{bottom:137.196000px;}
.y12a{bottom:138.456000px;}
.y3b{bottom:138.636000px;}
.yc0{bottom:138.816000px;}
.y11b{bottom:143.496000px;}
.y6c{bottom:144.036000px;}
.y1e{bottom:145.296000px;}
.y8f{bottom:148.536000px;}
.y50{bottom:150.150000px;}
.yf5{bottom:150.690000px;}
.y130{bottom:152.130000px;}
.y111{bottom:153.570000px;}
.y81{bottom:156.090000px;}
.ya9{bottom:158.430000px;}
.ye3{bottom:159.150000px;}
.yce{bottom:162.390000px;}
.y3a{bottom:162.930000px;}
.y135{bottom:163.110000px;}
.y129{bottom:163.470000px;}
.ybf{bottom:163.830000px;}
.y11a{bottom:167.790000px;}
.y1d{bottom:169.590000px;}
.y110{bottom:172.470000px;}
.y8e{bottom:173.550000px;}
.y12f{bottom:176.430000px;}
.y80{bottom:180.390000px;}
.ya8{bottom:183.450000px;}
.y39{bottom:187.230000px;}
.ycd{bottom:187.410000px;}
.y4f{bottom:187.950000px;}
.y128{bottom:188.490000px;}
.ybe{bottom:188.850000px;}
.y69{bottom:193.350000px;}
.y1c{bottom:193.890000px;}
.y8d{bottom:198.615000px;}
.yf4{bottom:200.055000px;}
.y12e{bottom:200.775000px;}
.y10b{bottom:200.955000px;}
.ye9{bottom:203.115000px;}
.y7f{bottom:204.735000px;}
.ye1{bottom:205.455000px;}
.ya7{bottom:208.515000px;}
.y38{bottom:211.575000px;}
.y4e{bottom:212.295000px;}
.ycc{bottom:212.475000px;}
.y127{bottom:213.555000px;}
.ybd{bottom:213.915000px;}
.y1b{bottom:218.235000px;}
.y8c{bottom:223.635000px;}
.y12d{bottom:225.075000px;}
.y7e{bottom:229.035000px;}
.ye0{bottom:229.755000px;}
.ya6{bottom:233.535000px;}
.y37{bottom:235.875000px;}
.y4d{bottom:236.595000px;}
.ycb{bottom:237.495000px;}
.y126{bottom:238.575000px;}
.ybc{bottom:238.935000px;}
.y1a{bottom:242.535000px;}
.y68{bottom:242.715000px;}
.y12c{bottom:243.975000px;}
.y134{bottom:247.935000px;}
.y8b{bottom:248.655000px;}
.yf3{bottom:249.375000px;}
.y114{bottom:251.715000px;}
.ye8{bottom:252.435000px;}
.y7d{bottom:253.335000px;}
.ydf{bottom:254.055000px;}
.ya5{bottom:258.735000px;}
.y36{bottom:260.175000px;}
.y4c{bottom:260.895000px;}
.yca{bottom:262.515000px;}
.y125{bottom:263.595000px;}
.ybb{bottom:263.955000px;}
.y19{bottom:266.835000px;}
.yf2{bottom:274.395000px;}
.y109{bottom:274.575000px;}
.y7c{bottom:277.635000px;}
.yde{bottom:278.355000px;}
.ya4{bottom:283.755000px;}
.y133{bottom:284.295000px;}
.y35{bottom:284.475000px;}
.y4b{bottom:285.195000px;}
.yc9{bottom:287.535000px;}
.y124{bottom:288.615000px;}
.yba{bottom:288.975000px;}
.y18{bottom:290.955000px;}
.y67{bottom:292.035000px;}
.y8a{bottom:297.975000px;}
.ye7{bottom:301.755000px;}
.y7b{bottom:301.935000px;}
.ydd{bottom:302.655000px;}
.y34{bottom:308.595000px;}
.ya3{bottom:308.775000px;}
.y4a{bottom:309.495000px;}
.yc8{bottom:312.555000px;}
.y123{bottom:313.635000px;}
.yb9{bottom:313.995000px;}
.y17{bottom:315.255000px;}
.y7a{bottom:326.235000px;}
.ydc{bottom:326.955000px;}
.y33{bottom:332.895000px;}
.y49{bottom:333.795000px;}
.yc7{bottom:337.575000px;}
.y122{bottom:338.835000px;}
.yb8{bottom:339.015000px;}
.y16{bottom:339.555000px;}
.y66{bottom:341.355000px;}
.y79{bottom:345.855000px;}
.y89{bottom:347.295000px;}
.y106{bottom:348.015000px;}
.ye6{bottom:351.075000px;}
.ydb{bottom:351.255000px;}
.yf1{bottom:353.415000px;}
.y32{bottom:357.195000px;}
.y48{bottom:358.095000px;}
.ya2{bottom:358.815000px;}
.yc6{bottom:362.595000px;}
.y15{bottom:363.855000px;}
.yb7{bottom:364.215000px;}
.y88{bottom:372.315000px;}
.yda{bottom:375.555000px;}
.yf0{bottom:377.715000px;}
.y31{bottom:381.495000px;}
.y47{bottom:382.215000px;}
.ya1{bottom:383.835000px;}
.yc5{bottom:387.615000px;}
.y14{bottom:388.155000px;}
.yb6{bottom:389.235000px;}
.y121{bottom:393.555000px;}
.y76{bottom:395.175000px;}
.y65{bottom:396.075000px;}
.y87{bottom:397.335000px;}
.yd9{bottom:399.885000px;}
.yef{bottom:402.045000px;}
.y30{bottom:405.825000px;}
.y46{bottom:406.545000px;}
.ya0{bottom:408.885000px;}
.y13{bottom:412.485000px;}
.yc4{bottom:412.665000px;}
.y120{bottom:417.705000px;}
.yb5{bottom:419.685000px;}
.y64{bottom:420.405000px;}
.y86{bottom:422.385000px;}
.yd8{bottom:424.185000px;}
.yee{bottom:426.345000px;}
.y2f{bottom:430.125000px;}
.y45{bottom:430.845000px;}
.y9f{bottom:433.905000px;}
.y12{bottom:436.785000px;}
.y11f{bottom:437.505000px;}
.yc3{bottom:437.685000px;}
.y62{bottom:440.025000px;}
.yb4{bottom:443.985000px;}
.y75{bottom:444.525000px;}
.y85{bottom:447.585000px;}
.yd7{bottom:448.485000px;}
.yed{bottom:450.645000px;}
.y105{bottom:451.365000px;}
.y2e{bottom:454.425000px;}
.y44{bottom:455.145000px;}
.y9e{bottom:458.925000px;}
.y11{bottom:461.085000px;}
.yc2{bottom:462.705000px;}
.yb3{bottom:468.105000px;}
.y84{bottom:472.605000px;}
.yec{bottom:474.945000px;}
.y104{bottom:475.665000px;}
.y2d{bottom:478.725000px;}
.y43{bottom:479.445000px;}
.y9d{bottom:483.945000px;}
.y10{bottom:485.385000px;}
.yb2{bottom:487.905000px;}
.y74{bottom:493.845000px;}
.yd6{bottom:496.905000px;}
.yeb{bottom:499.065000px;}
.y103{bottom:499.965000px;}
.y2c{bottom:503.025000px;}
.y42{bottom:503.745000px;}
.y9c{bottom:508.965000px;}
.yf{bottom:509.685000px;}
.y11d{bottom:510.945000px;}
.yb1{bottom:512.925000px;}
.y61{bottom:513.645000px;}
.yd5{bottom:521.205000px;}
.yea{bottom:523.365000px;}
.y102{bottom:524.265000px;}
.y2b{bottom:527.325000px;}
.y41{bottom:528.045000px;}
.ye{bottom:533.985000px;}
.yb0{bottom:537.945000px;}
.y60{bottom:538.665000px;}
.yfa{bottom:542.985000px;}
.y73{bottom:543.165000px;}
.yd4{bottom:545.505000px;}
.y101{bottom:548.565000px;}
.y2a{bottom:551.625000px;}
.y40{bottom:552.345000px;}
.y9b{bottom:559.005000px;}
.yd{bottom:560.085000px;}
.yaf{bottom:562.965000px;}
.y5f{bottom:563.685000px;}
.yd3{bottom:569.805000px;}
.y100{bottom:572.865000px;}
.y29{bottom:575.745000px;}
.y3f{bottom:576.645000px;}
.yc{bottom:584.385000px;}
.yae{bottom:587.985000px;}
.y5e{bottom:588.705000px;}
.yf9{bottom:592.305000px;}
.y70{bottom:592.485000px;}
.yd2{bottom:594.105000px;}
.yff{bottom:597.165000px;}
.y28{bottom:600.090000px;}
.y3e{bottom:600.990000px;}
.y9a{bottom:608.370000px;}
.yad{bottom:613.050000px;}
.yb{bottom:613.590000px;}
.y5c{bottom:613.770000px;}
.yd1{bottom:618.450000px;}
.y3d{bottom:619.890000px;}
.yfe{bottom:621.510000px;}
.y27{bottom:624.390000px;}
.y99{bottom:633.570000px;}
.ya{bottom:637.890000px;}
.yac{bottom:638.070000px;}
.yf8{bottom:641.670000px;}
.yfd{bottom:645.810000px;}
.y26{bottom:648.690000px;}
.y98{bottom:658.590000px;}
.y9{bottom:662.190000px;}
.y5b{bottom:663.090000px;}
.yfc{bottom:665.430000px;}
.y10f{bottom:666.150000px;}
.y25{bottom:672.990000px;}
.y96{bottom:683.610000px;}
.y8{bottom:686.490000px;}
.y5a{bottom:688.110000px;}
.y6f{bottom:690.450000px;}
.yf7{bottom:690.990000px;}
.y24{bottom:697.290000px;}
.y7{bottom:710.790000px;}
.y59{bottom:713.130000px;}
.y95{bottom:713.850000px;}
.yfb{bottom:714.750000px;}
.y23{bottom:721.590000px;}
.y58{bottom:738.150000px;}
.y93{bottom:739.050000px;}
.y10e{bottom:739.770000px;}
.y6{bottom:739.950000px;}
.y22{bottom:745.890000px;}
.y57{bottom:763.170000px;}
.y6e{bottom:764.070000px;}
.y5{bottom:764.250000px;}
.y21{bottom:770.190000px;}
.y56{bottom:788.370000px;}
.y4{bottom:789.450000px;}
.y20{bottom:794.490000px;}
.y1{bottom:820.980000px;}
.h15{height:24.120000px;}
.hc{height:24.156000px;}
.hb{height:24.300000px;}
.he{height:24.336000px;}
.ha{height:27.000000px;}
.h16{height:29.520000px;}
.h9{height:31.680000px;}
.h14{height:48.420000px;}
.h11{height:48.456000px;}
.hd{height:48.600000px;}
.h10{height:48.636000px;}
.h8{height:52.558594px;}
.h2{height:52.769531px;}
.h7{height:53.015625px;}
.h6{height:55.863281px;}
.h5{height:62.028281px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h12{height:72.720000px;}
.h17{height:72.756000px;}
.hf{height:72.900000px;}
.h18{height:72.936000px;}
.h13{height:97.236000px;}
.h1a{height:145.836000px;}
.h1b{height:301.575000px;}
.h19{height:415.155000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w7{width:41.040000px;}
.wa{width:56.160000px;}
.w11{width:58.320000px;}
.w1d{width:61.416000px;}
.w18{width:64.980000px;}
.w3{width:66.420000px;}
.w14{width:68.040000px;}
.we{width:86.760000px;}
.w1a{width:95.580000px;}
.w22{width:100.116000px;}
.w21{width:101.340000px;}
.w16{width:104.076000px;}
.w1c{width:105.516000px;}
.w28{width:111.816000px;}
.w27{width:111.996000px;}
.w10{width:113.076000px;}
.w1e{width:114.516000px;}
.w19{width:115.596000px;}
.w1b{width:118.476000px;}
.w8{width:122.436000px;}
.w29{width:126.216000px;}
.w2a{width:135.396000px;}
.w23{width:140.076000px;}
.w13{width:141.696000px;}
.w15{width:142.596000px;}
.w24{width:154.695000px;}
.w17{width:173.235000px;}
.w12{width:173.415000px;}
.w5{width:185.835000px;}
.wc{width:192.135000px;}
.wb{width:233.535000px;}
.w25{width:243.075000px;}
.w26{width:243.975000px;}
.w4{width:244.515000px;}
.w1f{width:250.485000px;}
.w20{width:257.835000px;}
.wf{width:297.105000px;}
.w9{width:333.465000px;}
.wd{width:426.570000px;}
.w6{width:431.070000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x30{left:17.459991px;}
.x16{left:26.454000px;}
.x15{left:31.494000px;}
.xe{left:32.939991px;}
.xd{left:43.559991px;}
.x17{left:45.039000px;}
.x29{left:51.299991px;}
.x31{left:54.179991px;}
.xf{left:57.995991px;}
.x3{left:64.835991px;}
.xb{left:71.675991px;}
.x25{left:73.656000px;}
.x34{left:75.455991px;}
.x20{left:78.335991px;}
.x1a{left:80.496000px;}
.x9{left:82.835991px;}
.x3f{left:86.075991px;}
.x3e{left:91.835991px;}
.x5{left:96.875991px;}
.x18{left:107.316000px;}
.x2f{left:117.935991px;}
.x21{left:124.596000px;}
.x1f{left:128.735991px;}
.x11{left:132.155991px;}
.xa{left:136.835991px;}
.x3d{left:139.175991px;}
.x26{left:142.416000px;}
.x24{left:145.835991px;}
.x1c{left:153.030000px;}
.x2a{left:161.850000px;}
.x35{left:167.610000px;}
.x8{left:180.254991px;}
.x3b{left:189.075000px;}
.x7{left:199.514991px;}
.x19{left:230.475000px;}
.x22{left:247.935000px;}
.x6{left:255.134991px;}
.x4{left:256.934991px;}
.x36{left:268.455000px;}
.x38{left:270.969000px;}
.x3a{left:272.055000px;}
.x2b{left:281.055000px;}
.x27{left:285.915000px;}
.x40{left:290.234991px;}
.x32{left:298.005000px;}
.x2{left:302.144991px;}
.x33{left:306.105000px;}
.x12{left:314.744991px;}
.x39{left:319.965000px;}
.xc{left:358.484991px;}
.x1b{left:371.805000px;}
.x1{left:373.604991px;}
.x14{left:378.105000px;}
.x2c{left:387.285000px;}
.x28{left:390.705000px;}
.x37{left:409.245000px;}
.x23{left:422.250000px;}
.x3c{left:428.550000px;}
.x10{left:441.149991px;}
.x2d{left:449.430000px;}
.x1d{left:450.870000px;}
.x2e{left:537.479991px;}
.x1e{left:557.819991px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.212480pt;}
.ls15{letter-spacing:0.224000pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.285440pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls18{letter-spacing:2.240000pt;}
.ls20{letter-spacing:2.560000pt;}
.ls5{letter-spacing:3.200000pt;}
.ls19{letter-spacing:3.840000pt;}
.ls22{letter-spacing:4.480000pt;}
.ls21{letter-spacing:5.120000pt;}
.ls1f{letter-spacing:6.528000pt;}
.ls24{letter-spacing:12.160000pt;}
.ls23{letter-spacing:15.488000pt;}
.ls3{letter-spacing:17.920000pt;}
.ls1c{letter-spacing:19.200000pt;}
.ls11{letter-spacing:27.520000pt;}
.ls4{letter-spacing:30.208000pt;}
.ls1b{letter-spacing:32.000000pt;}
.lsc{letter-spacing:96.768000pt;}
.lsd{letter-spacing:98.048000pt;}
.ls1d{letter-spacing:103.200000pt;}
.lsb{letter-spacing:115.328000pt;}
.ls9{letter-spacing:134.528000pt;}
.ls8{letter-spacing:142.208000pt;}
.lse{letter-spacing:199.328000pt;}
.ws0{word-spacing:-19.040000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.680000pt;}
.ws8{word-spacing:-15.040000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws2{word-spacing:0.000000pt;}
._23{margin-left:-5.451307pt;}
._e{margin-left:-4.032000pt;}
._7{margin-left:-2.560000pt;}
._0{margin-left:-1.418453pt;}
._1{width:1.226453pt;}
._4{width:2.304000pt;}
._15{width:3.840000pt;}
._27{width:4.800000pt;}
._a{width:5.696000pt;}
._d{width:7.104000pt;}
._f{width:8.138453pt;}
._12{width:9.664000pt;}
._9{width:10.816000pt;}
._6{width:11.776000pt;}
._5{width:13.120000pt;}
._25{width:14.784000pt;}
._1f{width:16.906453pt;}
._10{width:17.920000pt;}
._3{width:19.008000pt;}
._2{width:19.904000pt;}
._c{width:21.248000pt;}
._b{width:22.400000pt;}
._1e{width:24.000000pt;}
._2e{width:25.354453pt;}
._20{width:26.816000pt;}
._1b{width:28.415787pt;}
._8{width:29.568000pt;}
._11{width:30.538453pt;}
._17{width:31.552000pt;}
._16{width:32.448000pt;}
._42{width:33.920000pt;}
._36{width:34.944000pt;}
._24{width:35.968000pt;}
._1c{width:36.928000pt;}
._1d{width:38.197333pt;}
._3e{width:39.616000pt;}
._14{width:41.024000pt;}
._13{width:41.930453pt;}
._21{width:43.584000pt;}
._22{width:44.810667pt;}
._28{width:46.656000pt;}
._19{width:48.064000pt;}
._1a{width:48.960000pt;}
._29{width:50.240000pt;}
._3d{width:51.402880pt;}
._3f{width:52.800000pt;}
._2a{width:54.528000pt;}
._2b{width:57.536000pt;}
._18{width:58.560000pt;}
._43{width:60.480000pt;}
._3c{width:61.642453pt;}
._3b{width:62.592000pt;}
._2d{width:63.562453pt;}
._2c{width:64.640000pt;}
._40{width:66.112000pt;}
._41{width:67.072000pt;}
._2f{width:68.928000pt;}
._26{width:76.032000pt;}
._31{width:99.211307pt;}
._37{width:102.528000pt;}
._30{width:107.520000pt;}
._32{width:108.661547pt;}
._35{width:114.048000pt;}
._38{width:123.456000pt;}
._33{width:142.080000pt;}
._34{width:165.632000pt;}
._39{width:181.504000pt;}
._3a{width:216.778453pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:0.960000pt;}
.y90{bottom:4.794667pt;}
.y55{bottom:4.800000pt;}
.y78{bottom:4.826667pt;}
.y6b{bottom:4.840000pt;}
.y53{bottom:7.200000pt;}
.y97{bottom:9.440000pt;}
.y51{bottom:11.360000pt;}
.y11e{bottom:16.000000pt;}
.y94{bottom:26.240000pt;}
.y6d{bottom:26.394667pt;}
.y5d{bottom:26.400000pt;}
.y77{bottom:26.426667pt;}
.y6a{bottom:26.440000pt;}
.y10a{bottom:47.840000pt;}
.y10d{bottom:47.994667pt;}
.y63{bottom:48.000000pt;}
.y108{bottom:48.026667pt;}
.y72{bottom:48.040000pt;}
.y3{bottom:51.872000pt;}
.y119{bottom:69.594667pt;}
.y107{bottom:69.626667pt;}
.y71{bottom:69.640000pt;}
.y2{bottom:69.792000pt;}
.y54{bottom:86.592000pt;}
.y92{bottom:87.552000pt;}
.yf6{bottom:90.112000pt;}
.y118{bottom:91.234667pt;}
.y132{bottom:92.032000pt;}
.y113{bottom:93.312000pt;}
.y116{bottom:93.472000pt;}
.ye2{bottom:94.912000pt;}
.y83{bottom:95.712000pt;}
.yab{bottom:96.352000pt;}
.ye5{bottom:98.272000pt;}
.yd0{bottom:99.712000pt;}
.y12b{bottom:100.832000pt;}
.yc1{bottom:101.152000pt;}
.y3c{bottom:101.632000pt;}
.y11c{bottom:105.952000pt;}
.y1f{bottom:107.552000pt;}
.y52{bottom:108.832000pt;}
.y91{bottom:109.792000pt;}
.y117{bottom:112.834667pt;}
.y10c{bottom:113.152000pt;}
.y131{bottom:113.632000pt;}
.y112{bottom:114.912000pt;}
.y82{bottom:117.312000pt;}
.yaa{bottom:118.592000pt;}
.ye4{bottom:119.872000pt;}
.ycf{bottom:121.952000pt;}
.y12a{bottom:123.072000pt;}
.y3b{bottom:123.232000pt;}
.yc0{bottom:123.392000pt;}
.y11b{bottom:127.552000pt;}
.y6c{bottom:128.032000pt;}
.y1e{bottom:129.152000pt;}
.y8f{bottom:132.032000pt;}
.y50{bottom:133.466667pt;}
.yf5{bottom:133.946667pt;}
.y130{bottom:135.226667pt;}
.y111{bottom:136.506667pt;}
.y81{bottom:138.746667pt;}
.ya9{bottom:140.826667pt;}
.ye3{bottom:141.466667pt;}
.yce{bottom:144.346667pt;}
.y3a{bottom:144.826667pt;}
.y135{bottom:144.986667pt;}
.y129{bottom:145.306667pt;}
.ybf{bottom:145.626667pt;}
.y11a{bottom:149.146667pt;}
.y1d{bottom:150.746667pt;}
.y110{bottom:153.306667pt;}
.y8e{bottom:154.266667pt;}
.y12f{bottom:156.826667pt;}
.y80{bottom:160.346667pt;}
.ya8{bottom:163.066667pt;}
.y39{bottom:166.426667pt;}
.ycd{bottom:166.586667pt;}
.y4f{bottom:167.066667pt;}
.y128{bottom:167.546667pt;}
.ybe{bottom:167.866667pt;}
.y69{bottom:171.866667pt;}
.y1c{bottom:172.346667pt;}
.y8d{bottom:176.546667pt;}
.yf4{bottom:177.826667pt;}
.y12e{bottom:178.466667pt;}
.y10b{bottom:178.626667pt;}
.ye9{bottom:180.546667pt;}
.y7f{bottom:181.986667pt;}
.ye1{bottom:182.626667pt;}
.ya7{bottom:185.346667pt;}
.y38{bottom:188.066667pt;}
.y4e{bottom:188.706667pt;}
.ycc{bottom:188.866667pt;}
.y127{bottom:189.826667pt;}
.ybd{bottom:190.146667pt;}
.y1b{bottom:193.986667pt;}
.y8c{bottom:198.786667pt;}
.y12d{bottom:200.066667pt;}
.y7e{bottom:203.586667pt;}
.ye0{bottom:204.226667pt;}
.ya6{bottom:207.586667pt;}
.y37{bottom:209.666667pt;}
.y4d{bottom:210.306667pt;}
.ycb{bottom:211.106667pt;}
.y126{bottom:212.066667pt;}
.ybc{bottom:212.386667pt;}
.y1a{bottom:215.586667pt;}
.y68{bottom:215.746667pt;}
.y12c{bottom:216.866667pt;}
.y134{bottom:220.386667pt;}
.y8b{bottom:221.026667pt;}
.yf3{bottom:221.666667pt;}
.y114{bottom:223.746667pt;}
.ye8{bottom:224.386667pt;}
.y7d{bottom:225.186667pt;}
.ydf{bottom:225.826667pt;}
.ya5{bottom:229.986667pt;}
.y36{bottom:231.266667pt;}
.y4c{bottom:231.906667pt;}
.yca{bottom:233.346667pt;}
.y125{bottom:234.306667pt;}
.ybb{bottom:234.626667pt;}
.y19{bottom:237.186667pt;}
.yf2{bottom:243.906667pt;}
.y109{bottom:244.066667pt;}
.y7c{bottom:246.786667pt;}
.yde{bottom:247.426667pt;}
.ya4{bottom:252.226667pt;}
.y133{bottom:252.706667pt;}
.y35{bottom:252.866667pt;}
.y4b{bottom:253.506667pt;}
.yc9{bottom:255.586667pt;}
.y124{bottom:256.546667pt;}
.yba{bottom:256.866667pt;}
.y18{bottom:258.626667pt;}
.y67{bottom:259.586667pt;}
.y8a{bottom:264.866667pt;}
.ye7{bottom:268.226667pt;}
.y7b{bottom:268.386667pt;}
.ydd{bottom:269.026667pt;}
.y34{bottom:274.306667pt;}
.ya3{bottom:274.466667pt;}
.y4a{bottom:275.106667pt;}
.yc8{bottom:277.826667pt;}
.y123{bottom:278.786667pt;}
.yb9{bottom:279.106667pt;}
.y17{bottom:280.226667pt;}
.y7a{bottom:289.986667pt;}
.ydc{bottom:290.626667pt;}
.y33{bottom:295.906667pt;}
.y49{bottom:296.706667pt;}
.yc7{bottom:300.066667pt;}
.y122{bottom:301.186667pt;}
.yb8{bottom:301.346667pt;}
.y16{bottom:301.826667pt;}
.y66{bottom:303.426667pt;}
.y79{bottom:307.426667pt;}
.y89{bottom:308.706667pt;}
.y106{bottom:309.346667pt;}
.ye6{bottom:312.066667pt;}
.ydb{bottom:312.226667pt;}
.yf1{bottom:314.146667pt;}
.y32{bottom:317.506667pt;}
.y48{bottom:318.306667pt;}
.ya2{bottom:318.946667pt;}
.yc6{bottom:322.306667pt;}
.y15{bottom:323.426667pt;}
.yb7{bottom:323.746667pt;}
.y88{bottom:330.946667pt;}
.yda{bottom:333.826667pt;}
.yf0{bottom:335.746667pt;}
.y31{bottom:339.106667pt;}
.y47{bottom:339.746667pt;}
.ya1{bottom:341.186667pt;}
.yc5{bottom:344.546667pt;}
.y14{bottom:345.026667pt;}
.yb6{bottom:345.986667pt;}
.y121{bottom:349.826667pt;}
.y76{bottom:351.266667pt;}
.y65{bottom:352.066667pt;}
.y87{bottom:353.186667pt;}
.yd9{bottom:355.453333pt;}
.yef{bottom:357.373333pt;}
.y30{bottom:360.733333pt;}
.y46{bottom:361.373333pt;}
.ya0{bottom:363.453333pt;}
.y13{bottom:366.653333pt;}
.yc4{bottom:366.813333pt;}
.y120{bottom:371.293333pt;}
.yb5{bottom:373.053333pt;}
.y64{bottom:373.693333pt;}
.y86{bottom:375.453333pt;}
.yd8{bottom:377.053333pt;}
.yee{bottom:378.973333pt;}
.y2f{bottom:382.333333pt;}
.y45{bottom:382.973333pt;}
.y9f{bottom:385.693333pt;}
.y12{bottom:388.253333pt;}
.y11f{bottom:388.893333pt;}
.yc3{bottom:389.053333pt;}
.y62{bottom:391.133333pt;}
.yb4{bottom:394.653333pt;}
.y75{bottom:395.133333pt;}
.y85{bottom:397.853333pt;}
.yd7{bottom:398.653333pt;}
.yed{bottom:400.573333pt;}
.y105{bottom:401.213333pt;}
.y2e{bottom:403.933333pt;}
.y44{bottom:404.573333pt;}
.y9e{bottom:407.933333pt;}
.y11{bottom:409.853333pt;}
.yc2{bottom:411.293333pt;}
.yb3{bottom:416.093333pt;}
.y84{bottom:420.093333pt;}
.yec{bottom:422.173333pt;}
.y104{bottom:422.813333pt;}
.y2d{bottom:425.533333pt;}
.y43{bottom:426.173333pt;}
.y9d{bottom:430.173333pt;}
.y10{bottom:431.453333pt;}
.yb2{bottom:433.693333pt;}
.y74{bottom:438.973333pt;}
.yd6{bottom:441.693333pt;}
.yeb{bottom:443.613333pt;}
.y103{bottom:444.413333pt;}
.y2c{bottom:447.133333pt;}
.y42{bottom:447.773333pt;}
.y9c{bottom:452.413333pt;}
.yf{bottom:453.053333pt;}
.y11d{bottom:454.173333pt;}
.yb1{bottom:455.933333pt;}
.y61{bottom:456.573333pt;}
.yd5{bottom:463.293333pt;}
.yea{bottom:465.213333pt;}
.y102{bottom:466.013333pt;}
.y2b{bottom:468.733333pt;}
.y41{bottom:469.373333pt;}
.ye{bottom:474.653333pt;}
.yb0{bottom:478.173333pt;}
.y60{bottom:478.813333pt;}
.yfa{bottom:482.653333pt;}
.y73{bottom:482.813333pt;}
.yd4{bottom:484.893333pt;}
.y101{bottom:487.613333pt;}
.y2a{bottom:490.333333pt;}
.y40{bottom:490.973333pt;}
.y9b{bottom:496.893333pt;}
.yd{bottom:497.853333pt;}
.yaf{bottom:500.413333pt;}
.y5f{bottom:501.053333pt;}
.yd3{bottom:506.493333pt;}
.y100{bottom:509.213333pt;}
.y29{bottom:511.773333pt;}
.y3f{bottom:512.573333pt;}
.yc{bottom:519.453333pt;}
.yae{bottom:522.653333pt;}
.y5e{bottom:523.293333pt;}
.yf9{bottom:526.493333pt;}
.y70{bottom:526.653333pt;}
.yd2{bottom:528.093333pt;}
.yff{bottom:530.813333pt;}
.y28{bottom:533.413333pt;}
.y3e{bottom:534.213333pt;}
.y9a{bottom:540.773333pt;}
.yad{bottom:544.933333pt;}
.yb{bottom:545.413333pt;}
.y5c{bottom:545.573333pt;}
.yd1{bottom:549.733333pt;}
.y3d{bottom:551.013333pt;}
.yfe{bottom:552.453333pt;}
.y27{bottom:555.013333pt;}
.y99{bottom:563.173333pt;}
.ya{bottom:567.013333pt;}
.yac{bottom:567.173333pt;}
.yf8{bottom:570.373333pt;}
.yfd{bottom:574.053333pt;}
.y26{bottom:576.613333pt;}
.y98{bottom:585.413333pt;}
.y9{bottom:588.613333pt;}
.y5b{bottom:589.413333pt;}
.yfc{bottom:591.493333pt;}
.y10f{bottom:592.133333pt;}
.y25{bottom:598.213333pt;}
.y96{bottom:607.653333pt;}
.y8{bottom:610.213333pt;}
.y5a{bottom:611.653333pt;}
.y6f{bottom:613.733333pt;}
.yf7{bottom:614.213333pt;}
.y24{bottom:619.813333pt;}
.y7{bottom:631.813333pt;}
.y59{bottom:633.893333pt;}
.y95{bottom:634.533333pt;}
.yfb{bottom:635.333333pt;}
.y23{bottom:641.413333pt;}
.y58{bottom:656.133333pt;}
.y93{bottom:656.933333pt;}
.y10e{bottom:657.573333pt;}
.y6{bottom:657.733333pt;}
.y22{bottom:663.013333pt;}
.y57{bottom:678.373333pt;}
.y6e{bottom:679.173333pt;}
.y5{bottom:679.333333pt;}
.y21{bottom:684.613333pt;}
.y56{bottom:700.773333pt;}
.y4{bottom:701.733333pt;}
.y20{bottom:706.213333pt;}
.y1{bottom:729.760000pt;}
.h15{height:21.440000pt;}
.hc{height:21.472000pt;}
.hb{height:21.600000pt;}
.he{height:21.632000pt;}
.ha{height:24.000000pt;}
.h16{height:26.240000pt;}
.h9{height:28.160000pt;}
.h14{height:43.040000pt;}
.h11{height:43.072000pt;}
.hd{height:43.200000pt;}
.h10{height:43.232000pt;}
.h8{height:46.718750pt;}
.h2{height:46.906250pt;}
.h7{height:47.125000pt;}
.h6{height:49.656250pt;}
.h5{height:55.136250pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h12{height:64.640000pt;}
.h17{height:64.672000pt;}
.hf{height:64.800000pt;}
.h18{height:64.832000pt;}
.h13{height:86.432000pt;}
.h1a{height:129.632000pt;}
.h1b{height:268.066667pt;}
.h19{height:369.026667pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w7{width:36.480000pt;}
.wa{width:49.920000pt;}
.w11{width:51.840000pt;}
.w1d{width:54.592000pt;}
.w18{width:57.760000pt;}
.w3{width:59.040000pt;}
.w14{width:60.480000pt;}
.we{width:77.120000pt;}
.w1a{width:84.960000pt;}
.w22{width:88.992000pt;}
.w21{width:90.080000pt;}
.w16{width:92.512000pt;}
.w1c{width:93.792000pt;}
.w28{width:99.392000pt;}
.w27{width:99.552000pt;}
.w10{width:100.512000pt;}
.w1e{width:101.792000pt;}
.w19{width:102.752000pt;}
.w1b{width:105.312000pt;}
.w8{width:108.832000pt;}
.w29{width:112.192000pt;}
.w2a{width:120.352000pt;}
.w23{width:124.512000pt;}
.w13{width:125.952000pt;}
.w15{width:126.752000pt;}
.w24{width:137.506667pt;}
.w17{width:153.986667pt;}
.w12{width:154.146667pt;}
.w5{width:165.186667pt;}
.wc{width:170.786667pt;}
.wb{width:207.586667pt;}
.w25{width:216.066667pt;}
.w26{width:216.866667pt;}
.w4{width:217.346667pt;}
.w1f{width:222.653333pt;}
.w20{width:229.186667pt;}
.wf{width:264.093333pt;}
.w9{width:296.413333pt;}
.wd{width:379.173333pt;}
.w6{width:383.173333pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x30{left:15.519992pt;}
.x16{left:23.514667pt;}
.x15{left:27.994667pt;}
.xe{left:29.279992pt;}
.xd{left:38.719992pt;}
.x17{left:40.034667pt;}
.x29{left:45.599992pt;}
.x31{left:48.159992pt;}
.xf{left:51.551992pt;}
.x3{left:57.631992pt;}
.xb{left:63.711992pt;}
.x25{left:65.472000pt;}
.x34{left:67.071992pt;}
.x20{left:69.631992pt;}
.x1a{left:71.552000pt;}
.x9{left:73.631992pt;}
.x3f{left:76.511992pt;}
.x3e{left:81.631992pt;}
.x5{left:86.111992pt;}
.x18{left:95.392000pt;}
.x2f{left:104.831992pt;}
.x21{left:110.752000pt;}
.x1f{left:114.431992pt;}
.x11{left:117.471992pt;}
.xa{left:121.631992pt;}
.x3d{left:123.711992pt;}
.x26{left:126.592000pt;}
.x24{left:129.631992pt;}
.x1c{left:136.026667pt;}
.x2a{left:143.866667pt;}
.x35{left:148.986667pt;}
.x8{left:160.226658pt;}
.x3b{left:168.066667pt;}
.x7{left:177.346658pt;}
.x19{left:204.866667pt;}
.x22{left:220.386667pt;}
.x6{left:226.786658pt;}
.x4{left:228.386658pt;}
.x36{left:238.626667pt;}
.x38{left:240.861333pt;}
.x3a{left:241.826667pt;}
.x2b{left:249.826667pt;}
.x27{left:254.146667pt;}
.x40{left:257.986658pt;}
.x32{left:264.893333pt;}
.x2{left:268.573325pt;}
.x33{left:272.093333pt;}
.x12{left:279.773325pt;}
.x39{left:284.413333pt;}
.xc{left:318.653325pt;}
.x1b{left:330.493333pt;}
.x1{left:332.093325pt;}
.x14{left:336.093333pt;}
.x2c{left:344.253333pt;}
.x28{left:347.293333pt;}
.x37{left:363.773333pt;}
.x23{left:375.333333pt;}
.x3c{left:380.933333pt;}
.x10{left:392.133325pt;}
.x2d{left:399.493333pt;}
.x1d{left:400.773333pt;}
.x2e{left:477.759992pt;}
.x1e{left:495.839992pt;}
}




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