
    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_201ee71a405cf9973edc86fb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_d92cf63a075159cef8989ac4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_dc6ca1625cddb31a2f53dbe8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914551;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_fec566d2d9a3ea5256e07191.woff')format("woff");}.ff4{font-family:ff4;line-height:0.999512;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_173edf5583c797b97ab32f31.woff')format("woff");}.ff5{font-family:ff5;line-height:0.766602;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_1f0ffbd896fa3a0cfd8fbf3d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_52b44552cb689ee7cae4808f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_b9caddb439b164249245a60b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914551;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ffa{font-family:ffa;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.v3{vertical-align:24.000000px;}
.ls18{letter-spacing:-1.800000px;}
.ls11{letter-spacing:-1.188000px;}
.ls8{letter-spacing:-0.780000px;}
.ls7{letter-spacing:-0.600000px;}
.ls14{letter-spacing:-0.552000px;}
.ls9{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.480000px;}
.ls16{letter-spacing:-0.417600px;}
.ls1a{letter-spacing:-0.120000px;}
.ls2{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.120000px;}
.ls1b{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.195600px;}
.ls6{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.384000px;}
.ls15{letter-spacing:0.420000px;}
.ls13{letter-spacing:0.462000px;}
.lsa{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.554400px;}
.ls0{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.660000px;}
.ls12{letter-spacing:15.720000px;}
.lsb{letter-spacing:45.720000px;}
.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;}
}
.ws1{word-spacing:-18.384000px;}
.ws13{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.100000px;}
.wsd{word-spacing:-16.500000px;}
.wse{word-spacing:-15.900000px;}
.ws12{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.204000px;}
.ws4{word-spacing:-15.000000px;}
.ws16{word-spacing:-14.880000px;}
.ws5{word-spacing:-14.460000px;}
.ws2{word-spacing:-14.220000px;}
.ws7{word-spacing:-12.900000px;}
.ws8{word-spacing:-11.136000px;}
.ws10{word-spacing:-10.962000px;}
.ws9{word-spacing:-10.500000px;}
.ws15{word-spacing:-10.454400px;}
.wsb{word-spacing:-10.095600px;}
.ws11{word-spacing:-9.948000px;}
.ws3{word-spacing:-9.900000px;}
.ws14{word-spacing:-9.482400px;}
.wsa{word-spacing:-9.300000px;}
.wsc{word-spacing:-8.712000px;}
.ws6{word-spacing:0.000000px;}
._19{margin-left:-2.689200px;}
._1{margin-left:-1.638000px;}
._0{width:1.302000px;}
._6{width:2.448000px;}
._10{width:3.456000px;}
._c{width:4.488000px;}
._b{width:5.700000px;}
._7{width:6.768000px;}
._8{width:7.830000px;}
._13{width:9.240000px;}
._14{width:10.818000px;}
._11{width:12.618000px;}
._12{width:13.878000px;}
._15{width:15.114000px;}
._9{width:16.440000px;}
._a{width:17.580000px;}
._d{width:18.870000px;}
._18{width:20.220000px;}
._17{width:21.900000px;}
._1b{width:23.322000px;}
._1a{width:24.336000px;}
._16{width:25.980000px;}
._f{width:27.252000px;}
._e{width:28.386000px;}
._2{width:43.800000px;}
._4{width:336.180000px;}
._3{width:1162.530000px;}
._5{width:1184.820000px;}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fs9{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fsa{font-size:69.600000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:3.300000px;}
.yc5{bottom:3.585000px;}
.yb4{bottom:3.600000px;}
.y9b{bottom:3.615000px;}
.ycb{bottom:3.645000px;}
.yc7{bottom:3.900000px;}
.yf{bottom:3.915000px;}
.y11a{bottom:5.100000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y118{bottom:6.300000px;}
.yf7{bottom:7.200000px;}
.y7b{bottom:7.800000px;}
.y105{bottom:7.815000px;}
.y81{bottom:7.830000px;}
.y102{bottom:8.085000px;}
.y78{bottom:8.092500px;}
.y71{bottom:8.100000px;}
.y9d{bottom:8.115000px;}
.y76{bottom:8.130000px;}
.y127{bottom:8.400000px;}
.y125{bottom:9.000000px;}
.y114{bottom:9.045000px;}
.y11d{bottom:10.200000px;}
.y120{bottom:10.500000px;}
.y100{bottom:11.400000px;}
.y6f{bottom:11.700000px;}
.yb2{bottom:12.000000px;}
.y87{bottom:12.300000px;}
.y5{bottom:12.337500px;}
.yf1{bottom:12.645000px;}
.y107{bottom:14.100000px;}
.y10a{bottom:14.130000px;}
.yf5{bottom:15.900000px;}
.y123{bottom:17.385000px;}
.y12b{bottom:18.900000px;}
.y11b{bottom:18.915000px;}
.y129{bottom:20.100000px;}
.y90{bottom:20.715000px;}
.yf8{bottom:21.000000px;}
.y3d{bottom:21.330000px;}
.y116{bottom:21.600000px;}
.yef{bottom:21.615000px;}
.yeb{bottom:21.900000px;}
.yfe{bottom:21.915000px;}
.yfc{bottom:21.945000px;}
.yc3{bottom:22.500000px;}
.y126{bottom:22.800000px;}
.y113{bottom:22.845000px;}
.y11e{bottom:24.000000px;}
.y121{bottom:24.300000px;}
.y108{bottom:27.900000px;}
.y10b{bottom:27.945000px;}
.y3c{bottom:40.830000px;}
.y4{bottom:46.800000px;}
.y3b{bottom:55.530000px;}
.y1{bottom:57.037500px;}
.y3a{bottom:72.645000px;}
.y40{bottom:74.137500px;}
.y3{bottom:81.337500px;}
.y39{bottom:90.045000px;}
.y38{bottom:107.130000px;}
.y135{bottom:116.737500px;}
.y37{bottom:124.545000px;}
.y79{bottom:125.737500px;}
.yae{bottom:127.237500px;}
.y26{bottom:127.537500px;}
.y1a6{bottom:133.537500px;}
.y134{bottom:133.837500px;}
.y16d{bottom:137.437500px;}
.ye6{bottom:141.337500px;}
.y36{bottom:141.645000px;}
.y25{bottom:144.637500px;}
.yad{bottom:147.037500px;}
.y77{bottom:149.737500px;}
.y1a5{bottom:150.930000px;}
.y133{bottom:151.245000px;}
.y16c{bottom:157.830000px;}
.y35{bottom:159.045000px;}
.y24{bottom:162.030000px;}
.yac{bottom:164.130000px;}
.y1a4{bottom:168.045000px;}
.y132{bottom:168.330000px;}
.y75{bottom:173.745000px;}
.y16b{bottom:174.930000px;}
.y34{bottom:176.130000px;}
.y23{bottom:179.175000px;}
.yab{bottom:181.575000px;}
.ye5{bottom:182.775000px;}
.y1a3{bottom:185.475000px;}
.y131{bottom:185.775000px;}
.y16a{bottom:192.375000px;}
.y33{bottom:193.575000px;}
.y22{bottom:196.575000px;}
.y74{bottom:197.775000px;}
.yaa{bottom:198.675000px;}
.y1a2{bottom:202.575000px;}
.y130{bottom:202.875000px;}
.ye4{bottom:203.475000px;}
.y169{bottom:209.475000px;}
.y32{bottom:210.675000px;}
.y21{bottom:214.275000px;}
.ya9{bottom:216.075000px;}
.y1a1{bottom:219.975000px;}
.y12f{bottom:220.275000px;}
.y73{bottom:221.775000px;}
.ye3{bottom:224.175000px;}
.y168{bottom:226.875000px;}
.y31{bottom:228.075000px;}
.ya8{bottom:233.175000px;}
.y20{bottom:234.975000px;}
.y1a0{bottom:237.075000px;}
.y12e{bottom:237.975000px;}
.y167{bottom:243.975000px;}
.ye2{bottom:244.875000px;}
.y30{bottom:245.175000px;}
.y72{bottom:245.775000px;}
.ya7{bottom:250.575000px;}
.y19f{bottom:254.475000px;}
.y12d{bottom:258.075000px;}
.y166{bottom:261.375000px;}
.y2f{bottom:262.575000px;}
.ya6{bottom:264.975000px;}
.ye1{bottom:265.575000px;}
.y70{bottom:269.775000px;}
.y19e{bottom:271.575000px;}
.y12c{bottom:272.775000px;}
.y165{bottom:278.475000px;}
.y2e{bottom:279.675000px;}
.ye0{bottom:286.275000px;}
.ya5{bottom:287.475000px;}
.y19d{bottom:288.975000px;}
.y12a{bottom:293.475000px;}
.y6e{bottom:293.775000px;}
.y164{bottom:295.875000px;}
.y2d{bottom:297.075000px;}
.ydf{bottom:305.775000px;}
.y19c{bottom:306.075000px;}
.y1a8{bottom:309.675000px;}
.ya4{bottom:309.975000px;}
.y163{bottom:312.975000px;}
.y128{bottom:313.275000px;}
.y2c{bottom:314.175000px;}
.yde{bottom:320.175000px;}
.y6d{bottom:322.875000px;}
.y19b{bottom:323.475000px;}
.y1a7{bottom:327.375000px;}
.y27{bottom:330.075000px;}
.y162{bottom:330.375000px;}
.y2b{bottom:331.575000px;}
.ya3{bottom:332.475000px;}
.y6c{bottom:333.975000px;}
.ydd{bottom:337.575000px;}
.y19a{bottom:340.575000px;}
.y161{bottom:347.505000px;}
.y2a{bottom:348.675000px;}
.y6b{bottom:353.505000px;}
.ydc{bottom:354.705000px;}
.ya2{bottom:355.005000px;}
.y124{bottom:357.120000px;}
.y199{bottom:358.005000px;}
.y160{bottom:364.905000px;}
.y29{bottom:366.120000px;}
.y6a{bottom:368.205000px;}
.ydb{bottom:372.105000px;}
.y198{bottom:375.105000px;}
.ya1{bottom:377.505000px;}
.y122{bottom:380.820000px;}
.y15f{bottom:382.020000px;}
.y28{bottom:383.820000px;}
.y69{bottom:385.320000px;}
.yda{bottom:389.220000px;}
.y197{bottom:392.520000px;}
.y11f{bottom:398.820000px;}
.y15e{bottom:399.420000px;}
.ya0{bottom:400.005000px;}
.y68{bottom:402.720000px;}
.yd9{bottom:403.905000px;}
.y196{bottom:409.620000px;}
.y15d{bottom:416.505000px;}
.y67{bottom:419.820000px;}
.y9f{bottom:422.505000px;}
.yd8{bottom:423.705000px;}
.y11c{bottom:424.005000px;}
.y195{bottom:427.005000px;}
.y15c{bottom:433.920000px;}
.y66{bottom:437.205000px;}
.yd7{bottom:443.205000px;}
.y194{bottom:444.120000px;}
.y9e{bottom:445.005000px;}
.y119{bottom:448.905000px;}
.y15b{bottom:451.005000px;}
.y65{bottom:454.320000px;}
.y193{bottom:461.505000px;}
.yd6{bottom:463.005000px;}
.y9c{bottom:467.505000px;}
.y117{bottom:468.405000px;}
.y15a{bottom:468.420000px;}
.y64{bottom:471.720000px;}
.y192{bottom:478.620000px;}
.yd5{bottom:482.820000px;}
.y159{bottom:485.505000px;}
.y63{bottom:488.820000px;}
.y115{bottom:489.405000px;}
.y9a{bottom:490.005000px;}
.y191{bottom:496.005000px;}
.yd4{bottom:502.605000px;}
.y158{bottom:502.920000px;}
.y62{bottom:506.520000px;}
.y112{bottom:511.605000px;}
.y190{bottom:513.120000px;}
.y157{bottom:520.050000px;}
.yd3{bottom:522.150000px;}
.y99{bottom:525.450000px;}
.y61{bottom:526.050000px;}
.y18f{bottom:530.550000px;}
.y111{bottom:536.850000px;}
.y156{bottom:537.450000px;}
.y60{bottom:540.750000px;}
.yd2{bottom:541.950000px;}
.y18e{bottom:547.650000px;}
.y98{bottom:547.950000px;}
.y155{bottom:554.550000px;}
.y5f{bottom:557.850000px;}
.yd1{bottom:561.750000px;}
.y18d{bottom:565.050000px;}
.y110{bottom:568.650000px;}
.y97{bottom:570.450000px;}
.y154{bottom:571.950000px;}
.y5e{bottom:575.250000px;}
.yd0{bottom:581.250000px;}
.y18c{bottom:582.150000px;}
.y10f{bottom:588.750000px;}
.y153{bottom:589.050000px;}
.y5d{bottom:592.350000px;}
.y96{bottom:592.950000px;}
.y18b{bottom:599.550000px;}
.ycf{bottom:601.050000px;}
.y10e{bottom:606.150000px;}
.y152{bottom:606.450000px;}
.y5c{bottom:609.750000px;}
.y95{bottom:615.450000px;}
.y18a{bottom:616.650000px;}
.yce{bottom:620.850000px;}
.y10d{bottom:623.250000px;}
.y151{bottom:623.550000px;}
.y5b{bottom:626.850000px;}
.y189{bottom:634.050000px;}
.y94{bottom:637.950000px;}
.ycd{bottom:640.650000px;}
.y150{bottom:640.950000px;}
.y5a{bottom:644.250000px;}
.y188{bottom:651.150000px;}
.y10c{bottom:657.750000px;}
.y14f{bottom:658.050000px;}
.ycc{bottom:660.150000px;}
.y93{bottom:660.450000px;}
.y59{bottom:661.350000px;}
.y187{bottom:668.550000px;}
.y109{bottom:672.450000px;}
.y14e{bottom:675.450000px;}
.y58{bottom:678.750000px;}
.yca{bottom:679.950000px;}
.y92{bottom:682.980000px;}
.y186{bottom:685.695000px;}
.y14d{bottom:692.595000px;}
.y57{bottom:695.880000px;}
.yc9{bottom:699.780000px;}
.y106{bottom:700.980000px;}
.y185{bottom:703.095000px;}
.y91{bottom:705.480000px;}
.y14c{bottom:709.980000px;}
.y56{bottom:713.280000px;}
.yc8{bottom:719.595000px;}
.y184{bottom:720.195000px;}
.y14b{bottom:727.080000px;}
.y8f{bottom:727.980000px;}
.y104{bottom:729.780000px;}
.y55{bottom:730.380000px;}
.y183{bottom:737.595000px;}
.yc6{bottom:739.095000px;}
.y14a{bottom:744.495000px;}
.y54{bottom:747.795000px;}
.y103{bottom:752.280000px;}
.y182{bottom:754.695000px;}
.yc4{bottom:758.895000px;}
.y149{bottom:761.595000px;}
.y1f{bottom:763.980000px;}
.y8e{bottom:764.595000px;}
.y53{bottom:765.480000px;}
.y181{bottom:772.080000px;}
.y101{bottom:774.795000px;}
.y8d{bottom:775.380000px;}
.yc2{bottom:778.695000px;}
.y148{bottom:778.980000px;}
.y1e{bottom:784.380000px;}
.y52{bottom:784.995000px;}
.y180{bottom:789.195000px;}
.y8c{bottom:794.295000px;}
.y147{bottom:796.080000px;}
.yff{bottom:797.295000px;}
.y51{bottom:799.380000px;}
.y1d{bottom:804.480000px;}
.y17f{bottom:806.580000px;}
.y8b{bottom:808.995000px;}
.yfd{bottom:809.580000px;}
.y146{bottom:813.495000px;}
.y50{bottom:816.795000px;}
.yc1{bottom:818.895000px;}
.y17e{bottom:823.695000px;}
.y1c{bottom:824.295000px;}
.y8a{bottom:826.080000px;}
.yc0{bottom:829.980000px;}
.y145{bottom:830.580000px;}
.yfb{bottom:832.080000px;}
.y4f{bottom:834.495000px;}
.y17d{bottom:841.080000px;}
.y1b{bottom:842.895000px;}
.y89{bottom:843.195000px;}
.y144{bottom:847.995000px;}
.ybf{bottom:850.725000px;}
.yfa{bottom:854.625000px;}
.y88{bottom:857.925000px;}
.y17c{bottom:858.225000px;}
.y143{bottom:865.125000px;}
.y1a{bottom:866.925000px;}
.y4e{bottom:869.325000px;}
.ybe{bottom:870.825000px;}
.y17b{bottom:875.625000px;}
.yf9{bottom:877.425000px;}
.y142{bottom:882.525000px;}
.y19{bottom:884.625000px;}
.y86{bottom:886.425000px;}
.y4d{bottom:887.025000px;}
.ybd{bottom:888.225000px;}
.y17a{bottom:892.725000px;}
.y141{bottom:899.625000px;}
.yf6{bottom:899.925000px;}
.y18{bottom:901.725000px;}
.y4c{bottom:904.125000px;}
.ybc{bottom:905.325000px;}
.y179{bottom:910.125000px;}
.y85{bottom:914.925000px;}
.y140{bottom:917.025000px;}
.y17{bottom:919.125000px;}
.y4b{bottom:921.525000px;}
.yf4{bottom:921.825000px;}
.y178{bottom:927.225000px;}
.y13f{bottom:934.125000px;}
.ybb{bottom:934.425000px;}
.y16{bottom:936.225000px;}
.y4a{bottom:938.625000px;}
.y84{bottom:938.925000px;}
.y177{bottom:944.925000px;}
.y13e{bottom:951.525000px;}
.yba{bottom:951.825000px;}
.y15{bottom:953.625000px;}
.yf3{bottom:961.125000px;}
.y83{bottom:962.925000px;}
.y14{bottom:964.725000px;}
.y176{bottom:965.325000px;}
.y13d{bottom:968.625000px;}
.yb9{bottom:969.225000px;}
.y49{bottom:970.725000px;}
.y13{bottom:979.125000px;}
.y175{bottom:982.425000px;}
.yf2{bottom:983.625000px;}
.y13c{bottom:986.025000px;}
.yb8{bottom:986.325000px;}
.y82{bottom:986.925000px;}
.y48{bottom:988.125000px;}
.y12{bottom:999.825000px;}
.yb7{bottom:1001.025000px;}
.y13b{bottom:1003.125000px;}
.y47{bottom:1005.525000px;}
.yf0{bottom:1006.425000px;}
.y80{bottom:1010.925000px;}
.y174{bottom:1016.955000px;}
.yee{bottom:1019.955000px;}
.y11{bottom:1020.570000px;}
.y46{bottom:1022.670000px;}
.yb6{bottom:1028.070000px;}
.y173{bottom:1034.370000px;}
.y7f{bottom:1034.955000px;}
.y13a{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.y45{bottom:1040.070000px;}
.yd{bottom:1040.955000px;}
.yed{bottom:1042.455000px;}
.y172{bottom:1051.455000px;}
.yb5{bottom:1055.070000px;}
.y44{bottom:1057.170000px;}
.y7e{bottom:1058.955000px;}
.yc{bottom:1062.570000px;}
.yec{bottom:1064.970000px;}
.yb{bottom:1068.255000px;}
.y171{bottom:1068.870000px;}
.y139{bottom:1072.170000px;}
.y43{bottom:1074.570000px;}
.yb3{bottom:1082.070000px;}
.y7d{bottom:1082.955000px;}
.ya{bottom:1083.570000px;}
.y170{bottom:1085.955000px;}
.yea{bottom:1087.470000px;}
.y138{bottom:1089.570000px;}
.y42{bottom:1091.670000px;}
.y9{bottom:1097.955000px;}
.yb1{bottom:1100.070000px;}
.y16f{bottom:1103.370000px;}
.y137{bottom:1106.670000px;}
.y7c{bottom:1106.955000px;}
.ye9{bottom:1110.870000px;}
.y8{bottom:1115.670000px;}
.ye8{bottom:1117.455000px;}
.y16e{bottom:1120.455000px;}
.y41{bottom:1123.755000px;}
.y136{bottom:1124.070000px;}
.yb0{bottom:1127.955000px;}
.y7a{bottom:1130.955000px;}
.y7{bottom:1133.670000px;}
.ye7{bottom:1138.170000px;}
.yaf{bottom:1138.755000px;}
.y6{bottom:1141.170000px;}
.y3f{bottom:1196.400000px;}
.h9{height:8.384766px;}
.h36{height:8.466797px;}
.h3a{height:11.385000px;}
.h38{height:12.637500px;}
.h5{height:12.700195px;}
.h39{height:15.900000px;}
.h2b{height:17.400000px;}
.h31{height:18.885000px;}
.h33{height:18.900000px;}
.h34{height:18.937500px;}
.h32{height:19.185000px;}
.h35{height:19.200000px;}
.h3f{height:20.100000px;}
.h2f{height:20.961914px;}
.ha{height:21.000000px;}
.h19{height:21.166992px;}
.h25{height:21.600000px;}
.h26{height:21.637500px;}
.h37{height:21.885000px;}
.h28{height:21.900000px;}
.h29{height:21.937500px;}
.h43{height:22.237500px;}
.h42{height:22.800000px;}
.h3e{height:22.837500px;}
.h1f{height:23.100000px;}
.h20{height:23.137500px;}
.h1c{height:23.400000px;}
.h1e{height:23.437500px;}
.h40{height:24.000000px;}
.h41{height:24.300000px;}
.h2a{height:25.785000px;}
.h2c{height:26.085000px;}
.h2d{height:26.100000px;}
.h2e{height:26.137500px;}
.h1a{height:27.000000px;}
.h21{height:27.600000px;}
.hc{height:27.669727px;}
.h3b{height:27.900000px;}
.h3d{height:27.937500px;}
.h18{height:33.539062px;}
.h7{height:33.867188px;}
.h24{height:34.500000px;}
.h27{height:34.537500px;}
.h3{height:36.000000px;}
.h13{height:36.164062px;}
.h8{height:37.731445px;}
.h30{height:37.800000px;}
.hd{height:38.100586px;}
.h10{height:41.923828px;}
.h4{height:42.333984px;}
.h17{height:43.681641px;}
.h14{height:45.878906px;}
.h1d{height:46.116211px;}
.h1b{height:46.567383px;}
.h23{height:49.107422px;}
.h16{height:49.209727px;}
.hb{height:49.269727px;}
.h15{height:49.329727px;}
.h44{height:49.540430px;}
.h3c{height:49.600430px;}
.h6{height:50.800781px;}
.hf{height:50.976562px;}
.h22{height:53.633789px;}
.h12{height:54.246094px;}
.he{height:61.171875px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h11{height:400.620000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w1e{width:93.937500px;}
.w16{width:94.537500px;}
.w25{width:98.437500px;}
.w1b{width:98.737500px;}
.w18{width:99.337500px;}
.w23{width:103.537500px;}
.w3{width:108.000000px;}
.w2b{width:113.100000px;}
.we{width:113.437500px;}
.wa{width:113.737500px;}
.w24{width:115.837500px;}
.w2c{width:126.375000px;}
.w1f{width:148.537500px;}
.w1a{width:153.030000px;}
.w17{width:153.630000px;}
.w1d{width:155.475000px;}
.w15{width:156.075000px;}
.w22{width:156.930000px;}
.wd{width:160.875000px;}
.w9{width:161.475000px;}
.w27{width:163.230000px;}
.w2a{width:171.975000px;}
.w10{width:195.075000px;}
.w11{width:207.030000px;}
.w1c{width:210.330000px;}
.w14{width:210.645000px;}
.w21{width:214.275000px;}
.w13{width:228.075000px;}
.w29{width:234.375000px;}
.w6{width:247.875000px;}
.w12{width:258.120000px;}
.w20{width:260.475000px;}
.w28{width:285.075000px;}
.wc{width:330.075000px;}
.w8{width:330.375000px;}
.w19{width:460.950000px;}
.w5{width:483.450000px;}
.wf{width:533.550000px;}
.wb{width:605.595000px;}
.w26{width:623.595000px;}
.w2d{width:682.995000px;}
.w7{width:728.925000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.800000px;}
.x2{left:10.799998px;}
.xe{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.x14{left:34.800000px;}
.x15{left:61.800000px;}
.x1{left:81.037487px;}
.x10{left:108.037487px;}
.xd{left:111.330000px;}
.x9{left:153.629987px;}
.x1b{left:229.875000px;}
.xb{left:241.582500px;}
.x1f{left:244.575000px;}
.x16{left:288.375000px;}
.x18{left:291.975000px;}
.x1d{left:386.820000px;}
.x12{left:411.720000px;}
.x21{left:416.550000px;}
.x6{left:446.249987px;}
.x19{left:448.050000px;}
.x1c{left:490.350000px;}
.x20{left:529.650000px;}
.x1a{left:542.595000px;}
.x17{left:546.495000px;}
.xc{left:564.495000px;}
.x13{left:573.495000px;}
.xf{left:592.979987px;}
.x1e{left:606.195000px;}
.x8{left:614.879987px;}
.x7{left:648.194987px;}
.x22{left:656.025000px;}
.x5{left:697.124987px;}
.xa{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.v3{vertical-align:21.333333pt;}
.ls18{letter-spacing:-1.600000pt;}
.ls11{letter-spacing:-1.056000pt;}
.ls8{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls14{letter-spacing:-0.490667pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls16{letter-spacing:-0.371200pt;}
.ls1a{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.106667pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.173867pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.341333pt;}
.ls15{letter-spacing:0.373333pt;}
.ls13{letter-spacing:0.410667pt;}
.lsa{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.492800pt;}
.ls0{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.586667pt;}
.ls12{letter-spacing:13.973333pt;}
.lsb{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws13{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.200000pt;}
.wsd{word-spacing:-14.666667pt;}
.wse{word-spacing:-14.133333pt;}
.ws12{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws16{word-spacing:-13.226667pt;}
.ws5{word-spacing:-12.853333pt;}
.ws2{word-spacing:-12.640000pt;}
.ws7{word-spacing:-11.466667pt;}
.ws8{word-spacing:-9.898667pt;}
.ws10{word-spacing:-9.744000pt;}
.ws9{word-spacing:-9.333333pt;}
.ws15{word-spacing:-9.292800pt;}
.wsb{word-spacing:-8.973867pt;}
.ws11{word-spacing:-8.842667pt;}
.ws3{word-spacing:-8.800000pt;}
.ws14{word-spacing:-8.428800pt;}
.wsa{word-spacing:-8.266667pt;}
.wsc{word-spacing:-7.744000pt;}
.ws6{word-spacing:0.000000pt;}
._19{margin-left:-2.390400pt;}
._1{margin-left:-1.456000pt;}
._0{width:1.157333pt;}
._6{width:2.176000pt;}
._10{width:3.072000pt;}
._c{width:3.989333pt;}
._b{width:5.066667pt;}
._7{width:6.016000pt;}
._8{width:6.960000pt;}
._13{width:8.213333pt;}
._14{width:9.616000pt;}
._11{width:11.216000pt;}
._12{width:12.336000pt;}
._15{width:13.434667pt;}
._9{width:14.613333pt;}
._a{width:15.626667pt;}
._d{width:16.773333pt;}
._18{width:17.973333pt;}
._17{width:19.466667pt;}
._1b{width:20.730667pt;}
._1a{width:21.632000pt;}
._16{width:23.093333pt;}
._f{width:24.224000pt;}
._e{width:25.232000pt;}
._2{width:38.933333pt;}
._4{width:298.826667pt;}
._3{width:1033.360000pt;}
._5{width:1053.173333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fs9{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fsa{font-size:61.866667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:2.933333pt;}
.yc5{bottom:3.186667pt;}
.yb4{bottom:3.200000pt;}
.y9b{bottom:3.213333pt;}
.ycb{bottom:3.240000pt;}
.yc7{bottom:3.466667pt;}
.yf{bottom:3.480000pt;}
.y11a{bottom:4.533333pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y118{bottom:5.600000pt;}
.yf7{bottom:6.400000pt;}
.y7b{bottom:6.933333pt;}
.y105{bottom:6.946667pt;}
.y81{bottom:6.960000pt;}
.y102{bottom:7.186667pt;}
.y78{bottom:7.193333pt;}
.y71{bottom:7.200000pt;}
.y9d{bottom:7.213333pt;}
.y76{bottom:7.226667pt;}
.y127{bottom:7.466667pt;}
.y125{bottom:8.000000pt;}
.y114{bottom:8.040000pt;}
.y11d{bottom:9.066667pt;}
.y120{bottom:9.333333pt;}
.y100{bottom:10.133333pt;}
.y6f{bottom:10.400000pt;}
.yb2{bottom:10.666667pt;}
.y87{bottom:10.933333pt;}
.y5{bottom:10.966667pt;}
.yf1{bottom:11.240000pt;}
.y107{bottom:12.533333pt;}
.y10a{bottom:12.560000pt;}
.yf5{bottom:14.133333pt;}
.y123{bottom:15.453333pt;}
.y12b{bottom:16.800000pt;}
.y11b{bottom:16.813333pt;}
.y129{bottom:17.866667pt;}
.y90{bottom:18.413333pt;}
.yf8{bottom:18.666667pt;}
.y3d{bottom:18.960000pt;}
.y116{bottom:19.200000pt;}
.yef{bottom:19.213333pt;}
.yeb{bottom:19.466667pt;}
.yfe{bottom:19.480000pt;}
.yfc{bottom:19.506667pt;}
.yc3{bottom:20.000000pt;}
.y126{bottom:20.266667pt;}
.y113{bottom:20.306667pt;}
.y11e{bottom:21.333333pt;}
.y121{bottom:21.600000pt;}
.y108{bottom:24.800000pt;}
.y10b{bottom:24.840000pt;}
.y3c{bottom:36.293333pt;}
.y4{bottom:41.600000pt;}
.y3b{bottom:49.360000pt;}
.y1{bottom:50.700000pt;}
.y3a{bottom:64.573333pt;}
.y40{bottom:65.900000pt;}
.y3{bottom:72.300000pt;}
.y39{bottom:80.040000pt;}
.y38{bottom:95.226667pt;}
.y135{bottom:103.766667pt;}
.y37{bottom:110.706667pt;}
.y79{bottom:111.766667pt;}
.yae{bottom:113.100000pt;}
.y26{bottom:113.366667pt;}
.y1a6{bottom:118.700000pt;}
.y134{bottom:118.966667pt;}
.y16d{bottom:122.166667pt;}
.ye6{bottom:125.633333pt;}
.y36{bottom:125.906667pt;}
.y25{bottom:128.566667pt;}
.yad{bottom:130.700000pt;}
.y77{bottom:133.100000pt;}
.y1a5{bottom:134.160000pt;}
.y133{bottom:134.440000pt;}
.y16c{bottom:140.293333pt;}
.y35{bottom:141.373333pt;}
.y24{bottom:144.026667pt;}
.yac{bottom:145.893333pt;}
.y1a4{bottom:149.373333pt;}
.y132{bottom:149.626667pt;}
.y75{bottom:154.440000pt;}
.y16b{bottom:155.493333pt;}
.y34{bottom:156.560000pt;}
.y23{bottom:159.266667pt;}
.yab{bottom:161.400000pt;}
.ye5{bottom:162.466667pt;}
.y1a3{bottom:164.866667pt;}
.y131{bottom:165.133333pt;}
.y16a{bottom:171.000000pt;}
.y33{bottom:172.066667pt;}
.y22{bottom:174.733333pt;}
.y74{bottom:175.800000pt;}
.yaa{bottom:176.600000pt;}
.y1a2{bottom:180.066667pt;}
.y130{bottom:180.333333pt;}
.ye4{bottom:180.866667pt;}
.y169{bottom:186.200000pt;}
.y32{bottom:187.266667pt;}
.y21{bottom:190.466667pt;}
.ya9{bottom:192.066667pt;}
.y1a1{bottom:195.533333pt;}
.y12f{bottom:195.800000pt;}
.y73{bottom:197.133333pt;}
.ye3{bottom:199.266667pt;}
.y168{bottom:201.666667pt;}
.y31{bottom:202.733333pt;}
.ya8{bottom:207.266667pt;}
.y20{bottom:208.866667pt;}
.y1a0{bottom:210.733333pt;}
.y12e{bottom:211.533333pt;}
.y167{bottom:216.866667pt;}
.ye2{bottom:217.666667pt;}
.y30{bottom:217.933333pt;}
.y72{bottom:218.466667pt;}
.ya7{bottom:222.733333pt;}
.y19f{bottom:226.200000pt;}
.y12d{bottom:229.400000pt;}
.y166{bottom:232.333333pt;}
.y2f{bottom:233.400000pt;}
.ya6{bottom:235.533333pt;}
.ye1{bottom:236.066667pt;}
.y70{bottom:239.800000pt;}
.y19e{bottom:241.400000pt;}
.y12c{bottom:242.466667pt;}
.y165{bottom:247.533333pt;}
.y2e{bottom:248.600000pt;}
.ye0{bottom:254.466667pt;}
.ya5{bottom:255.533333pt;}
.y19d{bottom:256.866667pt;}
.y12a{bottom:260.866667pt;}
.y6e{bottom:261.133333pt;}
.y164{bottom:263.000000pt;}
.y2d{bottom:264.066667pt;}
.ydf{bottom:271.800000pt;}
.y19c{bottom:272.066667pt;}
.y1a8{bottom:275.266667pt;}
.ya4{bottom:275.533333pt;}
.y163{bottom:278.200000pt;}
.y128{bottom:278.466667pt;}
.y2c{bottom:279.266667pt;}
.yde{bottom:284.600000pt;}
.y6d{bottom:287.000000pt;}
.y19b{bottom:287.533333pt;}
.y1a7{bottom:291.000000pt;}
.y27{bottom:293.400000pt;}
.y162{bottom:293.666667pt;}
.y2b{bottom:294.733333pt;}
.ya3{bottom:295.533333pt;}
.y6c{bottom:296.866667pt;}
.ydd{bottom:300.066667pt;}
.y19a{bottom:302.733333pt;}
.y161{bottom:308.893333pt;}
.y2a{bottom:309.933333pt;}
.y6b{bottom:314.226667pt;}
.ydc{bottom:315.293333pt;}
.ya2{bottom:315.560000pt;}
.y124{bottom:317.440000pt;}
.y199{bottom:318.226667pt;}
.y160{bottom:324.360000pt;}
.y29{bottom:325.440000pt;}
.y6a{bottom:327.293333pt;}
.ydb{bottom:330.760000pt;}
.y198{bottom:333.426667pt;}
.ya1{bottom:335.560000pt;}
.y122{bottom:338.506667pt;}
.y15f{bottom:339.573333pt;}
.y28{bottom:341.173333pt;}
.y69{bottom:342.506667pt;}
.yda{bottom:345.973333pt;}
.y197{bottom:348.906667pt;}
.y11f{bottom:354.506667pt;}
.y15e{bottom:355.040000pt;}
.ya0{bottom:355.560000pt;}
.y68{bottom:357.973333pt;}
.yd9{bottom:359.026667pt;}
.y196{bottom:364.106667pt;}
.y15d{bottom:370.226667pt;}
.y67{bottom:373.173333pt;}
.y9f{bottom:375.560000pt;}
.yd8{bottom:376.626667pt;}
.y11c{bottom:376.893333pt;}
.y195{bottom:379.560000pt;}
.y15c{bottom:385.706667pt;}
.y66{bottom:388.626667pt;}
.yd7{bottom:393.960000pt;}
.y194{bottom:394.773333pt;}
.y9e{bottom:395.560000pt;}
.y119{bottom:399.026667pt;}
.y15b{bottom:400.893333pt;}
.y65{bottom:403.840000pt;}
.y193{bottom:410.226667pt;}
.yd6{bottom:411.560000pt;}
.y9c{bottom:415.560000pt;}
.y117{bottom:416.360000pt;}
.y15a{bottom:416.373333pt;}
.y64{bottom:419.306667pt;}
.y192{bottom:425.440000pt;}
.yd5{bottom:429.173333pt;}
.y159{bottom:431.560000pt;}
.y63{bottom:434.506667pt;}
.y115{bottom:435.026667pt;}
.y9a{bottom:435.560000pt;}
.y191{bottom:440.893333pt;}
.yd4{bottom:446.760000pt;}
.y158{bottom:447.040000pt;}
.y62{bottom:450.240000pt;}
.y112{bottom:454.760000pt;}
.y190{bottom:456.106667pt;}
.y157{bottom:462.266667pt;}
.yd3{bottom:464.133333pt;}
.y99{bottom:467.066667pt;}
.y61{bottom:467.600000pt;}
.y18f{bottom:471.600000pt;}
.y111{bottom:477.200000pt;}
.y156{bottom:477.733333pt;}
.y60{bottom:480.666667pt;}
.yd2{bottom:481.733333pt;}
.y18e{bottom:486.800000pt;}
.y98{bottom:487.066667pt;}
.y155{bottom:492.933333pt;}
.y5f{bottom:495.866667pt;}
.yd1{bottom:499.333333pt;}
.y18d{bottom:502.266667pt;}
.y110{bottom:505.466667pt;}
.y97{bottom:507.066667pt;}
.y154{bottom:508.400000pt;}
.y5e{bottom:511.333333pt;}
.yd0{bottom:516.666667pt;}
.y18c{bottom:517.466667pt;}
.y10f{bottom:523.333333pt;}
.y153{bottom:523.600000pt;}
.y5d{bottom:526.533333pt;}
.y96{bottom:527.066667pt;}
.y18b{bottom:532.933333pt;}
.ycf{bottom:534.266667pt;}
.y10e{bottom:538.800000pt;}
.y152{bottom:539.066667pt;}
.y5c{bottom:542.000000pt;}
.y95{bottom:547.066667pt;}
.y18a{bottom:548.133333pt;}
.yce{bottom:551.866667pt;}
.y10d{bottom:554.000000pt;}
.y151{bottom:554.266667pt;}
.y5b{bottom:557.200000pt;}
.y189{bottom:563.600000pt;}
.y94{bottom:567.066667pt;}
.ycd{bottom:569.466667pt;}
.y150{bottom:569.733333pt;}
.y5a{bottom:572.666667pt;}
.y188{bottom:578.800000pt;}
.y10c{bottom:584.666667pt;}
.y14f{bottom:584.933333pt;}
.ycc{bottom:586.800000pt;}
.y93{bottom:587.066667pt;}
.y59{bottom:587.866667pt;}
.y187{bottom:594.266667pt;}
.y109{bottom:597.733333pt;}
.y14e{bottom:600.400000pt;}
.y58{bottom:603.333333pt;}
.yca{bottom:604.400000pt;}
.y92{bottom:607.093333pt;}
.y186{bottom:609.506667pt;}
.y14d{bottom:615.640000pt;}
.y57{bottom:618.560000pt;}
.yc9{bottom:622.026667pt;}
.y106{bottom:623.093333pt;}
.y185{bottom:624.973333pt;}
.y91{bottom:627.093333pt;}
.y14c{bottom:631.093333pt;}
.y56{bottom:634.026667pt;}
.yc8{bottom:639.640000pt;}
.y184{bottom:640.173333pt;}
.y14b{bottom:646.293333pt;}
.y8f{bottom:647.093333pt;}
.y104{bottom:648.693333pt;}
.y55{bottom:649.226667pt;}
.y183{bottom:655.640000pt;}
.yc6{bottom:656.973333pt;}
.y14a{bottom:661.773333pt;}
.y54{bottom:664.706667pt;}
.y103{bottom:668.693333pt;}
.y182{bottom:670.840000pt;}
.yc4{bottom:674.573333pt;}
.y149{bottom:676.973333pt;}
.y1f{bottom:679.093333pt;}
.y8e{bottom:679.640000pt;}
.y53{bottom:680.426667pt;}
.y181{bottom:686.293333pt;}
.y101{bottom:688.706667pt;}
.y8d{bottom:689.226667pt;}
.yc2{bottom:692.173333pt;}
.y148{bottom:692.426667pt;}
.y1e{bottom:697.226667pt;}
.y52{bottom:697.773333pt;}
.y180{bottom:701.506667pt;}
.y8c{bottom:706.040000pt;}
.y147{bottom:707.626667pt;}
.yff{bottom:708.706667pt;}
.y51{bottom:710.560000pt;}
.y1d{bottom:715.093333pt;}
.y17f{bottom:716.960000pt;}
.y8b{bottom:719.106667pt;}
.yfd{bottom:719.626667pt;}
.y146{bottom:723.106667pt;}
.y50{bottom:726.040000pt;}
.yc1{bottom:727.906667pt;}
.y17e{bottom:732.173333pt;}
.y1c{bottom:732.706667pt;}
.y8a{bottom:734.293333pt;}
.yc0{bottom:737.760000pt;}
.y145{bottom:738.293333pt;}
.yfb{bottom:739.626667pt;}
.y4f{bottom:741.773333pt;}
.y17d{bottom:747.626667pt;}
.y1b{bottom:749.240000pt;}
.y89{bottom:749.506667pt;}
.y144{bottom:753.773333pt;}
.ybf{bottom:756.200000pt;}
.yfa{bottom:759.666667pt;}
.y88{bottom:762.600000pt;}
.y17c{bottom:762.866667pt;}
.y143{bottom:769.000000pt;}
.y1a{bottom:770.600000pt;}
.y4e{bottom:772.733333pt;}
.ybe{bottom:774.066667pt;}
.y17b{bottom:778.333333pt;}
.yf9{bottom:779.933333pt;}
.y142{bottom:784.466667pt;}
.y19{bottom:786.333333pt;}
.y86{bottom:787.933333pt;}
.y4d{bottom:788.466667pt;}
.ybd{bottom:789.533333pt;}
.y17a{bottom:793.533333pt;}
.y141{bottom:799.666667pt;}
.yf6{bottom:799.933333pt;}
.y18{bottom:801.533333pt;}
.y4c{bottom:803.666667pt;}
.ybc{bottom:804.733333pt;}
.y179{bottom:809.000000pt;}
.y85{bottom:813.266667pt;}
.y140{bottom:815.133333pt;}
.y17{bottom:817.000000pt;}
.y4b{bottom:819.133333pt;}
.yf4{bottom:819.400000pt;}
.y178{bottom:824.200000pt;}
.y13f{bottom:830.333333pt;}
.ybb{bottom:830.600000pt;}
.y16{bottom:832.200000pt;}
.y4a{bottom:834.333333pt;}
.y84{bottom:834.600000pt;}
.y177{bottom:839.933333pt;}
.y13e{bottom:845.800000pt;}
.yba{bottom:846.066667pt;}
.y15{bottom:847.666667pt;}
.yf3{bottom:854.333333pt;}
.y83{bottom:855.933333pt;}
.y14{bottom:857.533333pt;}
.y176{bottom:858.066667pt;}
.y13d{bottom:861.000000pt;}
.yb9{bottom:861.533333pt;}
.y49{bottom:862.866667pt;}
.y13{bottom:870.333333pt;}
.y175{bottom:873.266667pt;}
.yf2{bottom:874.333333pt;}
.y13c{bottom:876.466667pt;}
.yb8{bottom:876.733333pt;}
.y82{bottom:877.266667pt;}
.y48{bottom:878.333333pt;}
.y12{bottom:888.733333pt;}
.yb7{bottom:889.800000pt;}
.y13b{bottom:891.666667pt;}
.y47{bottom:893.800000pt;}
.yf0{bottom:894.600000pt;}
.y80{bottom:898.600000pt;}
.y174{bottom:903.960000pt;}
.yee{bottom:906.626667pt;}
.y11{bottom:907.173333pt;}
.y46{bottom:909.040000pt;}
.yb6{bottom:913.840000pt;}
.y173{bottom:919.440000pt;}
.y7f{bottom:919.960000pt;}
.y13a{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.y45{bottom:924.506667pt;}
.yd{bottom:925.293333pt;}
.yed{bottom:926.626667pt;}
.y172{bottom:934.626667pt;}
.yb5{bottom:937.840000pt;}
.y44{bottom:939.706667pt;}
.y7e{bottom:941.293333pt;}
.yc{bottom:944.506667pt;}
.yec{bottom:946.640000pt;}
.yb{bottom:949.560000pt;}
.y171{bottom:950.106667pt;}
.y139{bottom:953.040000pt;}
.y43{bottom:955.173333pt;}
.yb3{bottom:961.840000pt;}
.y7d{bottom:962.626667pt;}
.ya{bottom:963.173333pt;}
.y170{bottom:965.293333pt;}
.yea{bottom:966.640000pt;}
.y138{bottom:968.506667pt;}
.y42{bottom:970.373333pt;}
.y9{bottom:975.960000pt;}
.yb1{bottom:977.840000pt;}
.y16f{bottom:980.773333pt;}
.y137{bottom:983.706667pt;}
.y7c{bottom:983.960000pt;}
.ye9{bottom:987.440000pt;}
.y8{bottom:991.706667pt;}
.ye8{bottom:993.293333pt;}
.y16e{bottom:995.960000pt;}
.y41{bottom:998.893333pt;}
.y136{bottom:999.173333pt;}
.yb0{bottom:1002.626667pt;}
.y7a{bottom:1005.293333pt;}
.y7{bottom:1007.706667pt;}
.ye7{bottom:1011.706667pt;}
.yaf{bottom:1012.226667pt;}
.y6{bottom:1014.373333pt;}
.y3f{bottom:1063.466667pt;}
.h9{height:7.453125pt;}
.h36{height:7.526042pt;}
.h3a{height:10.120000pt;}
.h38{height:11.233333pt;}
.h5{height:11.289062pt;}
.h39{height:14.133333pt;}
.h2b{height:15.466667pt;}
.h31{height:16.786667pt;}
.h33{height:16.800000pt;}
.h34{height:16.833333pt;}
.h32{height:17.053333pt;}
.h35{height:17.066667pt;}
.h3f{height:17.866667pt;}
.h2f{height:18.632812pt;}
.ha{height:18.666667pt;}
.h19{height:18.815104pt;}
.h25{height:19.200000pt;}
.h26{height:19.233333pt;}
.h37{height:19.453333pt;}
.h28{height:19.466667pt;}
.h29{height:19.500000pt;}
.h43{height:19.766667pt;}
.h42{height:20.266667pt;}
.h3e{height:20.300000pt;}
.h1f{height:20.533333pt;}
.h20{height:20.566667pt;}
.h1c{height:20.800000pt;}
.h1e{height:20.833333pt;}
.h40{height:21.333333pt;}
.h41{height:21.600000pt;}
.h2a{height:22.920000pt;}
.h2c{height:23.186667pt;}
.h2d{height:23.200000pt;}
.h2e{height:23.233333pt;}
.h1a{height:24.000000pt;}
.h21{height:24.533333pt;}
.hc{height:24.595312pt;}
.h3b{height:24.800000pt;}
.h3d{height:24.833333pt;}
.h18{height:29.812500pt;}
.h7{height:30.104167pt;}
.h24{height:30.666667pt;}
.h27{height:30.700000pt;}
.h3{height:32.000000pt;}
.h13{height:32.145833pt;}
.h8{height:33.539062pt;}
.h30{height:33.600000pt;}
.hd{height:33.867188pt;}
.h10{height:37.265625pt;}
.h4{height:37.630208pt;}
.h17{height:38.828125pt;}
.h14{height:40.781250pt;}
.h1d{height:40.992188pt;}
.h1b{height:41.393229pt;}
.h23{height:43.651042pt;}
.h16{height:43.741979pt;}
.hb{height:43.795312pt;}
.h15{height:43.848646pt;}
.h44{height:44.035937pt;}
.h3c{height:44.089271pt;}
.h6{height:45.156250pt;}
.hf{height:45.312500pt;}
.h22{height:47.674479pt;}
.h12{height:48.218750pt;}
.he{height:54.375000pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h11{height:356.106667pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w1e{width:83.500000pt;}
.w16{width:84.033333pt;}
.w25{width:87.500000pt;}
.w1b{width:87.766667pt;}
.w18{width:88.300000pt;}
.w23{width:92.033333pt;}
.w3{width:96.000000pt;}
.w2b{width:100.533333pt;}
.we{width:100.833333pt;}
.wa{width:101.100000pt;}
.w24{width:102.966667pt;}
.w2c{width:112.333333pt;}
.w1f{width:132.033333pt;}
.w1a{width:136.026667pt;}
.w17{width:136.560000pt;}
.w1d{width:138.200000pt;}
.w15{width:138.733333pt;}
.w22{width:139.493333pt;}
.wd{width:143.000000pt;}
.w9{width:143.533333pt;}
.w27{width:145.093333pt;}
.w2a{width:152.866667pt;}
.w10{width:173.400000pt;}
.w11{width:184.026667pt;}
.w1c{width:186.960000pt;}
.w14{width:187.240000pt;}
.w21{width:190.466667pt;}
.w13{width:202.733333pt;}
.w29{width:208.333333pt;}
.w6{width:220.333333pt;}
.w12{width:229.440000pt;}
.w20{width:231.533333pt;}
.w28{width:253.400000pt;}
.wc{width:293.400000pt;}
.w8{width:293.666667pt;}
.w19{width:409.733333pt;}
.w5{width:429.733333pt;}
.wf{width:474.266667pt;}
.wb{width:538.306667pt;}
.w26{width:554.306667pt;}
.w2d{width:607.106667pt;}
.w7{width:647.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.933333pt;}
.x2{left:9.599999pt;}
.xe{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.x14{left:30.933333pt;}
.x15{left:54.933333pt;}
.x1{left:72.033322pt;}
.x10{left:96.033322pt;}
.xd{left:98.960000pt;}
.x9{left:136.559988pt;}
.x1b{left:204.333333pt;}
.xb{left:214.740000pt;}
.x1f{left:217.400000pt;}
.x16{left:256.333333pt;}
.x18{left:259.533333pt;}
.x1d{left:343.840000pt;}
.x12{left:365.973333pt;}
.x21{left:370.266667pt;}
.x6{left:396.666655pt;}
.x19{left:398.266667pt;}
.x1c{left:435.866667pt;}
.x20{left:470.800000pt;}
.x1a{left:482.306667pt;}
.x17{left:485.773333pt;}
.xc{left:501.773333pt;}
.x13{left:509.773333pt;}
.xf{left:527.093322pt;}
.x1e{left:538.840000pt;}
.x8{left:546.559988pt;}
.x7{left:576.173322pt;}
.x22{left:583.133333pt;}
.x5{left:619.666655pt;}
.xa{left:722.106655pt;}
}




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