
    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_c01cff1cfc2bd86c99f979c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_380250ddbf9ecf682f96eef1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f8b6b9544284d14f14af051c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_381b93e09be0f7a188193712.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7ad4868573d73d86767ae06f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_5c8323d89fae3925bac7d616.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.201172;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_19d2ae6654fc5761f5f7dee1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.977539;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_685d96c0b3ce9e86a23aa438.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_ddbea80e2ad4d2d533aa3bb3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0aaca2356e1a5dcb99ed68a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.002000px;}
.ls13{letter-spacing:-0.960000px;}
.ls1b{letter-spacing:-0.828000px;}
.ls1a{letter-spacing:-0.786000px;}
.ls1c{letter-spacing:-0.762000px;}
.ls5{letter-spacing:-0.696000px;}
.ls11{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.504000px;}
.ls16{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.291000px;}
.ls1e{letter-spacing:-0.227400px;}
.ls6{letter-spacing:-0.207600px;}
.lsf{letter-spacing:-0.184200px;}
.ls14{letter-spacing:-0.158400px;}
.ls19{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.103800px;}
.lse{letter-spacing:-0.075000px;}
.ls9{letter-spacing:-0.063600px;}
.ls4{letter-spacing:-0.051840px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.023040px;}
.ls1{letter-spacing:0.100800px;}
.ls8{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.220200px;}
.ls12{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.360000px;}
.ls1d{letter-spacing:58.625280px;}
.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:-18.753000px;}
.ws12{word-spacing:-15.696000px;}
.wse{word-spacing:-14.829000px;}
.ws6{word-spacing:-14.679600px;}
.ws4{word-spacing:-14.673600px;}
.ws3{word-spacing:-14.595840px;}
.ws2{word-spacing:-14.572800px;}
.ws9{word-spacing:-14.469000px;}
.wsf{word-spacing:-14.414400px;}
.wsd{word-spacing:-14.388600px;}
.ws14{word-spacing:-14.345400px;}
.ws10{word-spacing:-14.281800px;}
.ws11{word-spacing:-14.109000px;}
.wsa{word-spacing:-14.068800px;}
.ws1{word-spacing:-13.876800px;}
.ws13{word-spacing:-13.744800px;}
.wsc{word-spacing:-13.160160px;}
.wsb{word-spacing:-13.147200px;}
.ws7{word-spacing:-12.204000px;}
.ws8{word-spacing:-11.880000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.013040px;}
._2{width:1.046160px;}
._1{width:2.094720px;}
._16{width:3.101760px;}
._7{width:4.106880px;}
._14{width:5.564160px;}
._12{width:7.551360px;}
._e{width:8.942400px;}
._d{width:10.154160px;}
._11{width:12.075120px;}
._13{width:13.294800px;}
._5{width:14.581440px;}
._6{width:15.650160px;}
._3{width:17.509680px;}
._4{width:19.155360px;}
._a{width:20.245440px;}
._f{width:21.284160px;}
._1a{width:22.447440px;}
._19{width:23.448960px;}
._b{width:24.773760px;}
._c{width:25.899840px;}
._15{width:26.968560px;}
._8{width:28.085760px;}
._9{width:29.095680px;}
._1c{width:30.404160px;}
._22{width:31.736880px;}
._1f{width:32.780880px;}
._1b{width:33.848640px;}
._1e{width:34.908480px;}
._1d{width:36.365760px;}
._23{width:37.425600px;}
._20{width:38.514240px;}
._21{width:39.763680px;}
._26{width:40.843440px;}
._10{width:42.810480px;}
._25{width:43.849440px;}
._24{width:44.910720px;}
._28{width:47.494080px;}
._2c{width:59.351040px;}
._2a{width:63.457920px;}
._2b{width:64.650240px;}
._29{width:67.962240px;}
._18{width:114.595200px;}
._27{width:115.853760px;}
._17{width:137.183040px;}
.fc5{color:rgb(54,96,145);}
.fc4{color:rgb(200,16,46);}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(0,51,102);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs0{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y23{bottom:5.760000px;}
.y6f{bottom:6.480000px;}
.y81{bottom:6.645000px;}
.y75{bottom:6.660000px;}
.y6a{bottom:9.180000px;}
.yc3{bottom:9.360000px;}
.y51{bottom:9.540000px;}
.yc2{bottom:10.432500px;}
.ybf{bottom:14.752500px;}
.y179{bottom:17.640000px;}
.y166{bottom:18.180000px;}
.y50{bottom:18.360000px;}
.y140{bottom:18.540000px;}
.y104{bottom:18.720000px;}
.y69{bottom:18.900000px;}
.y13f{bottom:19.080000px;}
.y103{bottom:19.260000px;}
.ye8{bottom:19.440000px;}
.y17b{bottom:19.800000px;}
.yb5{bottom:20.865000px;}
.yb1{bottom:21.060000px;}
.ycd{bottom:21.105000px;}
.y6d{bottom:23.760000px;}
.y82{bottom:28.785000px;}
.y72{bottom:28.800000px;}
.yc1{bottom:30.592500px;}
.yb8{bottom:30.945000px;}
.yaf{bottom:31.140000px;}
.ycf{bottom:31.185000px;}
.ybe{bottom:35.092500px;}
.ybc{bottom:38.152500px;}
.yba{bottom:41.205000px;}
.yc5{bottom:41.220000px;}
.yb3{bottom:41.250000px;}
.ycb{bottom:41.265000px;}
.yb0{bottom:41.400000px;}
.y6c{bottom:45.900000px;}
.y29{bottom:46.260000px;}
.y2{bottom:46.620000px;}
.yc0{bottom:50.746500px;}
.y71{bottom:50.940000px;}
.y85{bottom:51.105000px;}
.y77{bottom:51.120000px;}
.y7a{bottom:51.150000px;}
.yb7{bottom:51.285000px;}
.yc8{bottom:51.300000px;}
.yce{bottom:51.345000px;}
.ybd{bottom:55.246500px;}
.y25{bottom:55.260000px;}
.yb9{bottom:61.365000px;}
.yc9{bottom:61.380000px;}
.yb4{bottom:61.410000px;}
.ycc{bottom:61.425000px;}
.y1{bottom:65.196000px;}
.y84{bottom:73.245000px;}
.y70{bottom:73.260000px;}
.y7b{bottom:73.290000px;}
.y76{bottom:73.485000px;}
.y24{bottom:83.736000px;}
.y27{bottom:84.240000px;}
.y83{bottom:95.565000px;}
.y73{bottom:95.580000px;}
.y7c{bottom:95.610000px;}
.ybb{bottom:111.643500px;}
.y17a{bottom:113.796000px;}
.y102{bottom:114.336000px;}
.y68{bottom:115.056000px;}
.y7f{bottom:117.720000px;}
.y19d{bottom:119.556000px;}
.y172{bottom:120.276000px;}
.y22{bottom:120.456000px;}
.y13d{bottom:121.176000px;}
.y13e{bottom:121.536000px;}
.ye7{bottom:124.596000px;}
.y87{bottom:126.756000px;}
.y165{bottom:127.476000px;}
.y147{bottom:128.916000px;}
.y4f{bottom:129.456000px;}
.y178{bottom:136.116000px;}
.ya1{bottom:136.656000px;}
.y7e{bottom:140.040000px;}
.y171{bottom:142.416000px;}
.y21{bottom:142.596000px;}
.y13c{bottom:143.316000px;}
.y121{bottom:143.856000px;}
.ye6{bottom:146.736000px;}
.y164{bottom:149.616000px;}
.y146{bottom:151.050000px;}
.y4e{bottom:151.590000px;}
.y67{bottom:152.310000px;}
.y19c{bottom:156.810000px;}
.y177{bottom:158.430000px;}
.ya0{bottom:158.790000px;}
.y86{bottom:164.010000px;}
.y170{bottom:164.730000px;}
.y20{bottom:164.910000px;}
.y13b{bottom:165.630000px;}
.y120{bottom:166.170000px;}
.ye5{bottom:169.050000px;}
.y163{bottom:171.930000px;}
.y182{bottom:173.370000px;}
.y4d{bottom:173.910000px;}
.y66{bottom:174.630000px;}
.y19b{bottom:179.130000px;}
.y176{bottom:180.570000px;}
.y9f{bottom:181.110000px;}
.y16f{bottom:186.870000px;}
.y1f{bottom:187.050000px;}
.y13a{bottom:187.770000px;}
.y11f{bottom:188.310000px;}
.yb6{bottom:188.685000px;}
.ye4{bottom:191.370000px;}
.y80{bottom:193.725000px;}
.y162{bottom:194.250000px;}
.y181{bottom:195.510000px;}
.y4c{bottom:196.050000px;}
.y65{bottom:196.950000px;}
.y175{bottom:202.890000px;}
.y9e{bottom:203.430000px;}
.y16e{bottom:209.190000px;}
.y1e{bottom:209.370000px;}
.y139{bottom:210.090000px;}
.y11e{bottom:210.630000px;}
.y106{bottom:211.170000px;}
.ye3{bottom:213.510000px;}
.y161{bottom:216.390000px;}
.y4b{bottom:218.370000px;}
.y64{bottom:219.090000px;}
.y1ae{bottom:224.130000px;}
.y174{bottom:225.030000px;}
.y9d{bottom:225.570000px;}
.y16d{bottom:231.330000px;}
.y1d{bottom:231.510000px;}
.y138{bottom:232.410000px;}
.y11d{bottom:232.770000px;}
.y105{bottom:233.310000px;}
.ye2{bottom:235.830000px;}
.y19a{bottom:238.530000px;}
.y160{bottom:238.710000px;}
.yeb{bottom:240.510000px;}
.y63{bottom:241.410000px;}
.y1ad{bottom:246.270000px;}
.y9c{bottom:247.890000px;}
.y16c{bottom:253.650000px;}
.y1c{bottom:253.830000px;}
.y137{bottom:254.550000px;}
.y11c{bottom:255.090000px;}
.y4a{bottom:255.630000px;}
.y173{bottom:262.290000px;}
.yea{bottom:262.830000px;}
.y62{bottom:263.550000px;}
.yb2{bottom:271.845000px;}
.ye1{bottom:273.090000px;}
.y199{bottom:275.790000px;}
.y15f{bottom:275.970000px;}
.y1b{bottom:276.150000px;}
.y136{bottom:276.870000px;}
.y145{bottom:277.410000px;}
.y49{bottom:277.770000px;}
.y1ac{bottom:283.530000px;}
.y9b{bottom:285.150000px;}
.y61{bottom:285.870000px;}
.y11b{bottom:292.350000px;}
.ye0{bottom:295.230000px;}
.y15e{bottom:298.110000px;}
.y1a{bottom:298.290000px;}
.y144{bottom:299.550000px;}
.y48{bottom:300.090000px;}
.y1ab{bottom:305.850000px;}
.y9a{bottom:307.290000px;}
.y60{bottom:308.190000px;}
.y198{bottom:313.095000px;}
.y135{bottom:314.175000px;}
.y11a{bottom:314.715000px;}
.ydf{bottom:317.595000px;}
.y15d{bottom:320.475000px;}
.y19{bottom:320.655000px;}
.y180{bottom:321.915000px;}
.y47{bottom:322.455000px;}
.y7d{bottom:329.295000px;}
.y99{bottom:329.655000px;}
.y5f{bottom:330.375000px;}
.y197{bottom:335.415000px;}
.y119{bottom:336.855000px;}
.yde{bottom:339.735000px;}
.y15c{bottom:342.615000px;}
.y18{bottom:342.795000px;}
.y1aa{bottom:343.155000px;}
.y17f{bottom:344.055000px;}
.y46{bottom:344.595000px;}
.y134{bottom:351.435000px;}
.y98{bottom:351.795000px;}
.y196{bottom:357.555000px;}
.y16b{bottom:357.735000px;}
.yae{bottom:358.635000px;}
.y118{bottom:359.175000px;}
.ydd{bottom:362.055000px;}
.y15b{bottom:364.935000px;}
.y1a9{bottom:365.295000px;}
.y17e{bottom:366.375000px;}
.y45{bottom:366.915000px;}
.y5e{bottom:367.635000px;}
.y133{bottom:373.575000px;}
.y97{bottom:374.115000px;}
.y17{bottom:376.995000px;}
.y16a{bottom:379.875000px;}
.y117{bottom:381.315000px;}
.ydc{bottom:384.375000px;}
.y15a{bottom:387.255000px;}
.y1a8{bottom:387.615000px;}
.y17d{bottom:388.695000px;}
.y44{bottom:389.055000px;}
.y5d{bottom:389.955000px;}
.y195{bottom:394.815000px;}
.y132{bottom:395.895000px;}
.y96{bottom:396.435000px;}
.y169{bottom:402.195000px;}
.y116{bottom:403.635000px;}
.ydb{bottom:406.515000px;}
.y159{bottom:409.395000px;}
.y43{bottom:411.375000px;}
.y5c{bottom:412.095000px;}
.y16{bottom:418.035000px;}
.y101{bottom:418.575000px;}
.y168{bottom:424.515000px;}
.y1a7{bottom:424.875000px;}
.y115{bottom:425.775000px;}
.yda{bottom:428.835000px;}
.y194{bottom:432.075000px;}
.y95{bottom:433.695000px;}
.y5b{bottom:434.415000px;}
.y15{bottom:438.195000px;}
.y131{bottom:440.355000px;}
.yad{bottom:440.715000px;}
.y100{bottom:440.895000px;}
.y158{bottom:446.655000px;}
.y1a6{bottom:447.015000px;}
.y114{bottom:448.095000px;}
.y42{bottom:448.635000px;}
.y193{bottom:454.395000px;}
.y94{bottom:455.835000px;}
.y5a{bottom:456.555000px;}
.y14{bottom:458.355000px;}
.y130{bottom:462.675000px;}
.yff{bottom:463.035000px;}
.yd9{bottom:466.095000px;}
.y157{bottom:468.975000px;}
.y1a5{bottom:469.335000px;}
.y113{bottom:470.415000px;}
.y41{bottom:470.775000px;}
.yac{bottom:477.795000px;}
.y93{bottom:478.155000px;}
.y59{bottom:478.875000px;}
.yfe{bottom:485.355000px;}
.yd8{bottom:488.235000px;}
.y156{bottom:491.115000px;}
.y192{bottom:491.655000px;}
.y112{bottom:492.555000px;}
.y40{bottom:493.095000px;}
.y13{bottom:497.235000px;}
.y12f{bottom:499.755000px;}
.y92{bottom:500.295000px;}
.y58{bottom:501.195000px;}
.y1a4{bottom:506.595000px;}
.yfd{bottom:507.675000px;}
.y79{bottom:509.295000px;}
.yd7{bottom:510.555000px;}
.y155{bottom:513.435000px;}
.y191{bottom:513.795000px;}
.y111{bottom:514.875000px;}
.yab{bottom:515.055000px;}
.y3f{bottom:515.415000px;}
.y12e{bottom:522.075000px;}
.y91{bottom:522.615000px;}
.y57{bottom:523.335000px;}
.y1a3{bottom:528.735000px;}
.yfc{bottom:529.815000px;}
.yd6{bottom:532.695000px;}
.y154{bottom:535.575000px;}
.y110{bottom:537.015000px;}
.yaa{bottom:537.375000px;}
.y12{bottom:537.555000px;}
.y12d{bottom:544.395000px;}
.y90{bottom:544.755000px;}
.y190{bottom:551.055000px;}
.y143{bottom:552.135000px;}
.yd5{bottom:555.015000px;}
.y153{bottom:557.895000px;}
.y10f{bottom:559.335000px;}
.ya9{bottom:559.695000px;}
.y3e{bottom:559.875000px;}
.y56{bottom:560.625000px;}
.y12c{bottom:566.565000px;}
.y8f{bottom:567.105000px;}
.y167{bottom:572.865000px;}
.y18f{bottom:573.405000px;}
.y142{bottom:574.305000px;}
.yd4{bottom:577.365000px;}
.y11{bottom:577.725000px;}
.y10e{bottom:581.685000px;}
.ya8{bottom:581.865000px;}
.y3d{bottom:582.045000px;}
.y1a2{bottom:588.345000px;}
.y12b{bottom:588.885000px;}
.y8e{bottom:589.425000px;}
.y55{bottom:594.105000px;}
.y152{bottom:595.185000px;}
.y141{bottom:596.625000px;}
.yd3{bottom:599.505000px;}
.ya7{bottom:604.185000px;}
.y3c{bottom:604.365000px;}
.y18e{bottom:610.665000px;}
.y8d{bottom:611.565000px;}
.y151{bottom:617.505000px;}
.y10{bottom:618.045000px;}
.y10d{bottom:618.765000px;}
.yd2{bottom:621.825000px;}
.y1a1{bottom:625.605000px;}
.y12a{bottom:626.145000px;}
.ya6{bottom:626.325000px;}
.y3b{bottom:626.685000px;}
.y18d{bottom:632.805000px;}
.ye9{bottom:633.885000px;}
.yf{bottom:636.585000px;}
.y150{bottom:639.645000px;}
.y10c{bottom:641.085000px;}
.yd1{bottom:642.345000px;}
.y78{bottom:644.865000px;}
.y1a0{bottom:647.745000px;}
.y129{bottom:648.285000px;}
.ya5{bottom:648.645000px;}
.y3a{bottom:648.825000px;}
.yfb{bottom:656.025000px;}
.y14f{bottom:661.965000px;}
.y10b{bottom:663.405000px;}
.y18c{bottom:670.065000px;}
.y128{bottom:670.605000px;}
.y39{bottom:671.145000px;}
.ye{bottom:677.445000px;}
.yfa{bottom:678.345000px;}
.y14e{bottom:684.105000px;}
.y10a{bottom:685.545000px;}
.ya4{bottom:685.905000px;}
.y127{bottom:692.745000px;}
.y38{bottom:693.285000px;}
.yf9{bottom:700.665000px;}
.y14d{bottom:706.425000px;}
.y18b{bottom:707.325000px;}
.y109{bottom:707.865000px;}
.yd{bottom:711.105000px;}
.y126{bottom:715.065000px;}
.y37{bottom:715.605000px;}
.yf8{bottom:722.805000px;}
.ya3{bottom:723.165000px;}
.yd0{bottom:725.505000px;}
.y14c{bottom:728.565000px;}
.y108{bottom:730.005000px;}
.yc{bottom:736.485000px;}
.y125{bottom:737.385000px;}
.y8c{bottom:737.745000px;}
.y36{bottom:737.925000px;}
.y18a{bottom:744.585000px;}
.yf7{bottom:745.125000px;}
.y14b{bottom:750.885000px;}
.y107{bottom:752.325000px;}
.ya2{bottom:756.645000px;}
.y74{bottom:758.085000px;}
.y35{bottom:760.065000px;}
.yb{bottom:761.325000px;}
.y19f{bottom:766.725000px;}
.yf6{bottom:767.265000px;}
.y14a{bottom:773.205000px;}
.y124{bottom:774.645000px;}
.y189{bottom:781.845000px;}
.y34{bottom:782.385000px;}
.yf5{bottom:789.585000px;}
.y149{bottom:795.345000px;}
.ya{bottom:797.685000px;}
.y188{bottom:803.985000px;}
.y8b{bottom:804.525000px;}
.yca{bottom:808.665000px;}
.y123{bottom:811.770000px;}
.y33{bottom:819.690000px;}
.y19e{bottom:826.350000px;}
.y8a{bottom:826.890000px;}
.y148{bottom:832.650000px;}
.y9{bottom:834.090000px;}
.y187{bottom:841.290000px;}
.y32{bottom:841.830000px;}
.yf4{bottom:849.030000px;}
.y122{bottom:856.410000px;}
.y186{bottom:863.610000px;}
.y31{bottom:864.150000px;}
.yf3{bottom:871.350000px;}
.y6e{bottom:871.530000px;}
.y17c{bottom:878.550000px;}
.y8{bottom:881.430000px;}
.y185{bottom:885.750000px;}
.y89{bottom:886.290000px;}
.y30{bottom:889.350000px;}
.yc7{bottom:891.870000px;}
.yf2{bottom:893.670000px;}
.y1af{bottom:900.870000px;}
.y7{bottom:905.550000px;}
.y88{bottom:908.610000px;}
.yf1{bottom:915.810000px;}
.y184{bottom:923.010000px;}
.y2f{bottom:930.750000px;}
.y6{bottom:933.990000px;}
.yf0{bottom:938.130000px;}
.y183{bottom:945.330000px;}
.y2e{bottom:953.070000px;}
.yef{bottom:960.270000px;}
.yc6{bottom:975.030000px;}
.y5{bottom:975.390000px;}
.yee{bottom:982.590000px;}
.y2d{bottom:997.530000px;}
.y4{bottom:1004.190000px;}
.yed{bottom:1004.730000px;}
.y6b{bottom:1005.630000px;}
.yc4{bottom:1019.670000px;}
.y2c{bottom:1019.850000px;}
.yec{bottom:1027.050000px;}
.y2b{bottom:1041.990000px;}
.y3{bottom:1048.650000px;}
.y2a{bottom:1064.340000px;}
.y26{bottom:1084.860000px;}
.y54{bottom:1089.720000px;}
.y53{bottom:1105.560000px;}
.y52{bottom:1121.400000px;}
.y28{bottom:1122.660000px;}
.hc{height:26.280000px;}
.h13{height:26.460000px;}
.h19{height:35.265000px;}
.h1{height:40.843828px;}
.h9{height:43.057617px;}
.hb{height:45.720703px;}
.h6{height:50.597578px;}
.h18{height:55.470000px;}
.h14{height:55.605000px;}
.h2{height:56.084062px;}
.hd{height:61.590000px;}
.h1d{height:68.084282px;}
.h17{height:69.472500px;}
.h4{height:71.324297px;}
.h1c{height:74.953125px;}
.h16{height:75.585000px;}
.h1b{height:75.600000px;}
.h15{height:75.621000px;}
.h1a{height:75.622500px;}
.h7{height:86.255508px;}
.h10{height:88.920000px;}
.hf{height:89.122500px;}
.h5{height:91.441406px;}
.h8{height:97.200000px;}
.ha{height:98.100000px;}
.he{height:111.225000px;}
.h11{height:111.270000px;}
.h3{height:111.558516px;}
.h12{height:155.685000px;}
.h0{height:1188.000000px;}
.w3{width:36.540000px;}
.wd{width:36.720000px;}
.w4{width:65.329500px;}
.w9{width:70.729500px;}
.w2{width:80.280000px;}
.w1{width:85.500000px;}
.w5{width:104.421000px;}
.w7{width:131.385000px;}
.w8{width:159.855000px;}
.w6{width:171.930000px;}
.wa{width:197.835000px;}
.wb{width:201.630000px;}
.wc{width:213.315000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x22{left:1.069500px;}
.x1a{left:8.989500px;}
.xe{left:11.130000px;}
.x10{left:40.140000px;}
.x1{left:108.036000px;}
.x21{left:111.826500px;}
.x7{left:122.976000px;}
.x8{left:127.476000px;}
.x19{left:135.046500px;}
.x27{left:139.896000px;}
.x14{left:152.130000px;}
.x12{left:162.030000px;}
.x15{left:169.050000px;}
.x2{left:178.050000px;}
.x23{left:187.785000px;}
.x1b{left:203.985000px;}
.x20{left:205.770000px;}
.x18{left:207.210000px;}
.x11{left:217.470000px;}
.x5{left:229.170000px;}
.xc{left:263.550000px;}
.xa{left:270.210000px;}
.x3{left:300.495000px;}
.xb{left:305.715000px;}
.x1c{left:312.015000px;}
.x6{left:340.635000px;}
.x24{left:391.035000px;}
.x4{left:459.075000px;}
.x1d{left:487.560000px;}
.x16{left:557.385000px;}
.x25{left:597.900000px;}
.x1e{left:622.560000px;}
.x17{left:770.010000px;}
.x1f{left:783.510000px;}
.x9{left:810.150000px;}
.xd{left:832.500000px;}
.x26{left:867.240000px;}
.x13{left:869.220000px;}
.xf{left:875.880000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.890667pt;}
.ls13{letter-spacing:-0.853333pt;}
.ls1b{letter-spacing:-0.736000pt;}
.ls1a{letter-spacing:-0.698667pt;}
.ls1c{letter-spacing:-0.677333pt;}
.ls5{letter-spacing:-0.618667pt;}
.ls11{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.448000pt;}
.ls16{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.258667pt;}
.ls1e{letter-spacing:-0.202133pt;}
.ls6{letter-spacing:-0.184533pt;}
.lsf{letter-spacing:-0.163733pt;}
.ls14{letter-spacing:-0.140800pt;}
.ls19{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.092267pt;}
.lse{letter-spacing:-0.066667pt;}
.ls9{letter-spacing:-0.056533pt;}
.ls4{letter-spacing:-0.046080pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.020480pt;}
.ls1{letter-spacing:0.089600pt;}
.ls8{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.195733pt;}
.ls12{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:52.111360pt;}
.ws0{word-spacing:-16.669333pt;}
.ws12{word-spacing:-13.952000pt;}
.wse{word-spacing:-13.181333pt;}
.ws6{word-spacing:-13.048533pt;}
.ws4{word-spacing:-13.043200pt;}
.ws3{word-spacing:-12.974080pt;}
.ws2{word-spacing:-12.953600pt;}
.ws9{word-spacing:-12.861333pt;}
.wsf{word-spacing:-12.812800pt;}
.wsd{word-spacing:-12.789867pt;}
.ws14{word-spacing:-12.751467pt;}
.ws10{word-spacing:-12.694933pt;}
.ws11{word-spacing:-12.541333pt;}
.wsa{word-spacing:-12.505600pt;}
.ws1{word-spacing:-12.334933pt;}
.ws13{word-spacing:-12.217600pt;}
.wsc{word-spacing:-11.697920pt;}
.wsb{word-spacing:-11.686400pt;}
.ws7{word-spacing:-10.848000pt;}
.ws8{word-spacing:-10.560000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-0.900480pt;}
._2{width:0.929920pt;}
._1{width:1.861973pt;}
._16{width:2.757120pt;}
._7{width:3.650560pt;}
._14{width:4.945920pt;}
._12{width:6.712320pt;}
._e{width:7.948800pt;}
._d{width:9.025920pt;}
._11{width:10.733440pt;}
._13{width:11.817600pt;}
._5{width:12.961280pt;}
._6{width:13.911253pt;}
._3{width:15.564160pt;}
._4{width:17.026987pt;}
._a{width:17.995947pt;}
._f{width:18.919253pt;}
._1a{width:19.953280pt;}
._19{width:20.843520pt;}
._b{width:22.021120pt;}
._c{width:23.022080pt;}
._15{width:23.972053pt;}
._8{width:24.965120pt;}
._9{width:25.862827pt;}
._1c{width:27.025920pt;}
._22{width:28.210560pt;}
._1f{width:29.138560pt;}
._1b{width:30.087680pt;}
._1e{width:31.029760pt;}
._1d{width:32.325120pt;}
._23{width:33.267200pt;}
._20{width:34.234880pt;}
._21{width:35.345493pt;}
._26{width:36.305280pt;}
._10{width:38.053760pt;}
._25{width:38.977280pt;}
._24{width:39.920640pt;}
._28{width:42.216960pt;}
._2c{width:52.756480pt;}
._2a{width:56.407040pt;}
._2b{width:57.466880pt;}
._29{width:60.410880pt;}
._18{width:101.862400pt;}
._27{width:102.981120pt;}
._17{width:121.940480pt;}
.fs0{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:5.120000pt;}
.y6f{bottom:5.760000pt;}
.y81{bottom:5.906667pt;}
.y75{bottom:5.920000pt;}
.y6a{bottom:8.160000pt;}
.yc3{bottom:8.320000pt;}
.y51{bottom:8.480000pt;}
.yc2{bottom:9.273333pt;}
.ybf{bottom:13.113333pt;}
.y179{bottom:15.680000pt;}
.y166{bottom:16.160000pt;}
.y50{bottom:16.320000pt;}
.y140{bottom:16.480000pt;}
.y104{bottom:16.640000pt;}
.y69{bottom:16.800000pt;}
.y13f{bottom:16.960000pt;}
.y103{bottom:17.120000pt;}
.ye8{bottom:17.280000pt;}
.y17b{bottom:17.600000pt;}
.yb5{bottom:18.546667pt;}
.yb1{bottom:18.720000pt;}
.ycd{bottom:18.760000pt;}
.y6d{bottom:21.120000pt;}
.y82{bottom:25.586667pt;}
.y72{bottom:25.600000pt;}
.yc1{bottom:27.193333pt;}
.yb8{bottom:27.506667pt;}
.yaf{bottom:27.680000pt;}
.ycf{bottom:27.720000pt;}
.ybe{bottom:31.193333pt;}
.ybc{bottom:33.913333pt;}
.yba{bottom:36.626667pt;}
.yc5{bottom:36.640000pt;}
.yb3{bottom:36.666667pt;}
.ycb{bottom:36.680000pt;}
.yb0{bottom:36.800000pt;}
.y6c{bottom:40.800000pt;}
.y29{bottom:41.120000pt;}
.y2{bottom:41.440000pt;}
.yc0{bottom:45.108000pt;}
.y71{bottom:45.280000pt;}
.y85{bottom:45.426667pt;}
.y77{bottom:45.440000pt;}
.y7a{bottom:45.466667pt;}
.yb7{bottom:45.586667pt;}
.yc8{bottom:45.600000pt;}
.yce{bottom:45.640000pt;}
.ybd{bottom:49.108000pt;}
.y25{bottom:49.120000pt;}
.yb9{bottom:54.546667pt;}
.yc9{bottom:54.560000pt;}
.yb4{bottom:54.586667pt;}
.ycc{bottom:54.600000pt;}
.y1{bottom:57.952000pt;}
.y84{bottom:65.106667pt;}
.y70{bottom:65.120000pt;}
.y7b{bottom:65.146667pt;}
.y76{bottom:65.320000pt;}
.y24{bottom:74.432000pt;}
.y27{bottom:74.880000pt;}
.y83{bottom:84.946667pt;}
.y73{bottom:84.960000pt;}
.y7c{bottom:84.986667pt;}
.ybb{bottom:99.238667pt;}
.y17a{bottom:101.152000pt;}
.y102{bottom:101.632000pt;}
.y68{bottom:102.272000pt;}
.y7f{bottom:104.640000pt;}
.y19d{bottom:106.272000pt;}
.y172{bottom:106.912000pt;}
.y22{bottom:107.072000pt;}
.y13d{bottom:107.712000pt;}
.y13e{bottom:108.032000pt;}
.ye7{bottom:110.752000pt;}
.y87{bottom:112.672000pt;}
.y165{bottom:113.312000pt;}
.y147{bottom:114.592000pt;}
.y4f{bottom:115.072000pt;}
.y178{bottom:120.992000pt;}
.ya1{bottom:121.472000pt;}
.y7e{bottom:124.480000pt;}
.y171{bottom:126.592000pt;}
.y21{bottom:126.752000pt;}
.y13c{bottom:127.392000pt;}
.y121{bottom:127.872000pt;}
.ye6{bottom:130.432000pt;}
.y164{bottom:132.992000pt;}
.y146{bottom:134.266667pt;}
.y4e{bottom:134.746667pt;}
.y67{bottom:135.386667pt;}
.y19c{bottom:139.386667pt;}
.y177{bottom:140.826667pt;}
.ya0{bottom:141.146667pt;}
.y86{bottom:145.786667pt;}
.y170{bottom:146.426667pt;}
.y20{bottom:146.586667pt;}
.y13b{bottom:147.226667pt;}
.y120{bottom:147.706667pt;}
.ye5{bottom:150.266667pt;}
.y163{bottom:152.826667pt;}
.y182{bottom:154.106667pt;}
.y4d{bottom:154.586667pt;}
.y66{bottom:155.226667pt;}
.y19b{bottom:159.226667pt;}
.y176{bottom:160.506667pt;}
.y9f{bottom:160.986667pt;}
.y16f{bottom:166.106667pt;}
.y1f{bottom:166.266667pt;}
.y13a{bottom:166.906667pt;}
.y11f{bottom:167.386667pt;}
.yb6{bottom:167.720000pt;}
.ye4{bottom:170.106667pt;}
.y80{bottom:172.200000pt;}
.y162{bottom:172.666667pt;}
.y181{bottom:173.786667pt;}
.y4c{bottom:174.266667pt;}
.y65{bottom:175.066667pt;}
.y175{bottom:180.346667pt;}
.y9e{bottom:180.826667pt;}
.y16e{bottom:185.946667pt;}
.y1e{bottom:186.106667pt;}
.y139{bottom:186.746667pt;}
.y11e{bottom:187.226667pt;}
.y106{bottom:187.706667pt;}
.ye3{bottom:189.786667pt;}
.y161{bottom:192.346667pt;}
.y4b{bottom:194.106667pt;}
.y64{bottom:194.746667pt;}
.y1ae{bottom:199.226667pt;}
.y174{bottom:200.026667pt;}
.y9d{bottom:200.506667pt;}
.y16d{bottom:205.626667pt;}
.y1d{bottom:205.786667pt;}
.y138{bottom:206.586667pt;}
.y11d{bottom:206.906667pt;}
.y105{bottom:207.386667pt;}
.ye2{bottom:209.626667pt;}
.y19a{bottom:212.026667pt;}
.y160{bottom:212.186667pt;}
.yeb{bottom:213.786667pt;}
.y63{bottom:214.586667pt;}
.y1ad{bottom:218.906667pt;}
.y9c{bottom:220.346667pt;}
.y16c{bottom:225.466667pt;}
.y1c{bottom:225.626667pt;}
.y137{bottom:226.266667pt;}
.y11c{bottom:226.746667pt;}
.y4a{bottom:227.226667pt;}
.y173{bottom:233.146667pt;}
.yea{bottom:233.626667pt;}
.y62{bottom:234.266667pt;}
.yb2{bottom:241.640000pt;}
.ye1{bottom:242.746667pt;}
.y199{bottom:245.146667pt;}
.y15f{bottom:245.306667pt;}
.y1b{bottom:245.466667pt;}
.y136{bottom:246.106667pt;}
.y145{bottom:246.586667pt;}
.y49{bottom:246.906667pt;}
.y1ac{bottom:252.026667pt;}
.y9b{bottom:253.466667pt;}
.y61{bottom:254.106667pt;}
.y11b{bottom:259.866667pt;}
.ye0{bottom:262.426667pt;}
.y15e{bottom:264.986667pt;}
.y1a{bottom:265.146667pt;}
.y144{bottom:266.266667pt;}
.y48{bottom:266.746667pt;}
.y1ab{bottom:271.866667pt;}
.y9a{bottom:273.146667pt;}
.y60{bottom:273.946667pt;}
.y198{bottom:278.306667pt;}
.y135{bottom:279.266667pt;}
.y11a{bottom:279.746667pt;}
.ydf{bottom:282.306667pt;}
.y15d{bottom:284.866667pt;}
.y19{bottom:285.026667pt;}
.y180{bottom:286.146667pt;}
.y47{bottom:286.626667pt;}
.y7d{bottom:292.706667pt;}
.y99{bottom:293.026667pt;}
.y5f{bottom:293.666667pt;}
.y197{bottom:298.146667pt;}
.y119{bottom:299.426667pt;}
.yde{bottom:301.986667pt;}
.y15c{bottom:304.546667pt;}
.y18{bottom:304.706667pt;}
.y1aa{bottom:305.026667pt;}
.y17f{bottom:305.826667pt;}
.y46{bottom:306.306667pt;}
.y134{bottom:312.386667pt;}
.y98{bottom:312.706667pt;}
.y196{bottom:317.826667pt;}
.y16b{bottom:317.986667pt;}
.yae{bottom:318.786667pt;}
.y118{bottom:319.266667pt;}
.ydd{bottom:321.826667pt;}
.y15b{bottom:324.386667pt;}
.y1a9{bottom:324.706667pt;}
.y17e{bottom:325.666667pt;}
.y45{bottom:326.146667pt;}
.y5e{bottom:326.786667pt;}
.y133{bottom:332.066667pt;}
.y97{bottom:332.546667pt;}
.y17{bottom:335.106667pt;}
.y16a{bottom:337.666667pt;}
.y117{bottom:338.946667pt;}
.ydc{bottom:341.666667pt;}
.y15a{bottom:344.226667pt;}
.y1a8{bottom:344.546667pt;}
.y17d{bottom:345.506667pt;}
.y44{bottom:345.826667pt;}
.y5d{bottom:346.626667pt;}
.y195{bottom:350.946667pt;}
.y132{bottom:351.906667pt;}
.y96{bottom:352.386667pt;}
.y169{bottom:357.506667pt;}
.y116{bottom:358.786667pt;}
.ydb{bottom:361.346667pt;}
.y159{bottom:363.906667pt;}
.y43{bottom:365.666667pt;}
.y5c{bottom:366.306667pt;}
.y16{bottom:371.586667pt;}
.y101{bottom:372.066667pt;}
.y168{bottom:377.346667pt;}
.y1a7{bottom:377.666667pt;}
.y115{bottom:378.466667pt;}
.yda{bottom:381.186667pt;}
.y194{bottom:384.066667pt;}
.y95{bottom:385.506667pt;}
.y5b{bottom:386.146667pt;}
.y15{bottom:389.506667pt;}
.y131{bottom:391.426667pt;}
.yad{bottom:391.746667pt;}
.y100{bottom:391.906667pt;}
.y158{bottom:397.026667pt;}
.y1a6{bottom:397.346667pt;}
.y114{bottom:398.306667pt;}
.y42{bottom:398.786667pt;}
.y193{bottom:403.906667pt;}
.y94{bottom:405.186667pt;}
.y5a{bottom:405.826667pt;}
.y14{bottom:407.426667pt;}
.y130{bottom:411.266667pt;}
.yff{bottom:411.586667pt;}
.yd9{bottom:414.306667pt;}
.y157{bottom:416.866667pt;}
.y1a5{bottom:417.186667pt;}
.y113{bottom:418.146667pt;}
.y41{bottom:418.466667pt;}
.yac{bottom:424.706667pt;}
.y93{bottom:425.026667pt;}
.y59{bottom:425.666667pt;}
.yfe{bottom:431.426667pt;}
.yd8{bottom:433.986667pt;}
.y156{bottom:436.546667pt;}
.y192{bottom:437.026667pt;}
.y112{bottom:437.826667pt;}
.y40{bottom:438.306667pt;}
.y13{bottom:441.986667pt;}
.y12f{bottom:444.226667pt;}
.y92{bottom:444.706667pt;}
.y58{bottom:445.506667pt;}
.y1a4{bottom:450.306667pt;}
.yfd{bottom:451.266667pt;}
.y79{bottom:452.706667pt;}
.yd7{bottom:453.826667pt;}
.y155{bottom:456.386667pt;}
.y191{bottom:456.706667pt;}
.y111{bottom:457.666667pt;}
.yab{bottom:457.826667pt;}
.y3f{bottom:458.146667pt;}
.y12e{bottom:464.066667pt;}
.y91{bottom:464.546667pt;}
.y57{bottom:465.186667pt;}
.y1a3{bottom:469.986667pt;}
.yfc{bottom:470.946667pt;}
.yd6{bottom:473.506667pt;}
.y154{bottom:476.066667pt;}
.y110{bottom:477.346667pt;}
.yaa{bottom:477.666667pt;}
.y12{bottom:477.826667pt;}
.y12d{bottom:483.906667pt;}
.y90{bottom:484.226667pt;}
.y190{bottom:489.826667pt;}
.y143{bottom:490.786667pt;}
.yd5{bottom:493.346667pt;}
.y153{bottom:495.906667pt;}
.y10f{bottom:497.186667pt;}
.ya9{bottom:497.506667pt;}
.y3e{bottom:497.666667pt;}
.y56{bottom:498.333333pt;}
.y12c{bottom:503.613333pt;}
.y8f{bottom:504.093333pt;}
.y167{bottom:509.213333pt;}
.y18f{bottom:509.693333pt;}
.y142{bottom:510.493333pt;}
.yd4{bottom:513.213333pt;}
.y11{bottom:513.533333pt;}
.y10e{bottom:517.053333pt;}
.ya8{bottom:517.213333pt;}
.y3d{bottom:517.373333pt;}
.y1a2{bottom:522.973333pt;}
.y12b{bottom:523.453333pt;}
.y8e{bottom:523.933333pt;}
.y55{bottom:528.093333pt;}
.y152{bottom:529.053333pt;}
.y141{bottom:530.333333pt;}
.yd3{bottom:532.893333pt;}
.ya7{bottom:537.053333pt;}
.y3c{bottom:537.213333pt;}
.y18e{bottom:542.813333pt;}
.y8d{bottom:543.613333pt;}
.y151{bottom:548.893333pt;}
.y10{bottom:549.373333pt;}
.y10d{bottom:550.013333pt;}
.yd2{bottom:552.733333pt;}
.y1a1{bottom:556.093333pt;}
.y12a{bottom:556.573333pt;}
.ya6{bottom:556.733333pt;}
.y3b{bottom:557.053333pt;}
.y18d{bottom:562.493333pt;}
.ye9{bottom:563.453333pt;}
.yf{bottom:565.853333pt;}
.y150{bottom:568.573333pt;}
.y10c{bottom:569.853333pt;}
.yd1{bottom:570.973333pt;}
.y78{bottom:573.213333pt;}
.y1a0{bottom:575.773333pt;}
.y129{bottom:576.253333pt;}
.ya5{bottom:576.573333pt;}
.y3a{bottom:576.733333pt;}
.yfb{bottom:583.133333pt;}
.y14f{bottom:588.413333pt;}
.y10b{bottom:589.693333pt;}
.y18c{bottom:595.613333pt;}
.y128{bottom:596.093333pt;}
.y39{bottom:596.573333pt;}
.ye{bottom:602.173333pt;}
.yfa{bottom:602.973333pt;}
.y14e{bottom:608.093333pt;}
.y10a{bottom:609.373333pt;}
.ya4{bottom:609.693333pt;}
.y127{bottom:615.773333pt;}
.y38{bottom:616.253333pt;}
.yf9{bottom:622.813333pt;}
.y14d{bottom:627.933333pt;}
.y18b{bottom:628.733333pt;}
.y109{bottom:629.213333pt;}
.yd{bottom:632.093333pt;}
.y126{bottom:635.613333pt;}
.y37{bottom:636.093333pt;}
.yf8{bottom:642.493333pt;}
.ya3{bottom:642.813333pt;}
.yd0{bottom:644.893333pt;}
.y14c{bottom:647.613333pt;}
.y108{bottom:648.893333pt;}
.yc{bottom:654.653333pt;}
.y125{bottom:655.453333pt;}
.y8c{bottom:655.773333pt;}
.y36{bottom:655.933333pt;}
.y18a{bottom:661.853333pt;}
.yf7{bottom:662.333333pt;}
.y14b{bottom:667.453333pt;}
.y107{bottom:668.733333pt;}
.ya2{bottom:672.573333pt;}
.y74{bottom:673.853333pt;}
.y35{bottom:675.613333pt;}
.yb{bottom:676.733333pt;}
.y19f{bottom:681.533333pt;}
.yf6{bottom:682.013333pt;}
.y14a{bottom:687.293333pt;}
.y124{bottom:688.573333pt;}
.y189{bottom:694.973333pt;}
.y34{bottom:695.453333pt;}
.yf5{bottom:701.853333pt;}
.y149{bottom:706.973333pt;}
.ya{bottom:709.053333pt;}
.y188{bottom:714.653333pt;}
.y8b{bottom:715.133333pt;}
.yca{bottom:718.813333pt;}
.y123{bottom:721.573333pt;}
.y33{bottom:728.613333pt;}
.y19e{bottom:734.533333pt;}
.y8a{bottom:735.013333pt;}
.y148{bottom:740.133333pt;}
.y9{bottom:741.413333pt;}
.y187{bottom:747.813333pt;}
.y32{bottom:748.293333pt;}
.yf4{bottom:754.693333pt;}
.y122{bottom:761.253333pt;}
.y186{bottom:767.653333pt;}
.y31{bottom:768.133333pt;}
.yf3{bottom:774.533333pt;}
.y6e{bottom:774.693333pt;}
.y17c{bottom:780.933333pt;}
.y8{bottom:783.493333pt;}
.y185{bottom:787.333333pt;}
.y89{bottom:787.813333pt;}
.y30{bottom:790.533333pt;}
.yc7{bottom:792.773333pt;}
.yf2{bottom:794.373333pt;}
.y1af{bottom:800.773333pt;}
.y7{bottom:804.933333pt;}
.y88{bottom:807.653333pt;}
.yf1{bottom:814.053333pt;}
.y184{bottom:820.453333pt;}
.y2f{bottom:827.333333pt;}
.y6{bottom:830.213333pt;}
.yf0{bottom:833.893333pt;}
.y183{bottom:840.293333pt;}
.y2e{bottom:847.173333pt;}
.yef{bottom:853.573333pt;}
.yc6{bottom:866.693333pt;}
.y5{bottom:867.013333pt;}
.yee{bottom:873.413333pt;}
.y2d{bottom:886.693333pt;}
.y4{bottom:892.613333pt;}
.yed{bottom:893.093333pt;}
.y6b{bottom:893.893333pt;}
.yc4{bottom:906.373333pt;}
.y2c{bottom:906.533333pt;}
.yec{bottom:912.933333pt;}
.y2b{bottom:926.213333pt;}
.y3{bottom:932.133333pt;}
.y2a{bottom:946.080000pt;}
.y26{bottom:964.320000pt;}
.y54{bottom:968.640000pt;}
.y53{bottom:982.720000pt;}
.y52{bottom:996.800000pt;}
.y28{bottom:997.920000pt;}
.hc{height:23.360000pt;}
.h13{height:23.520000pt;}
.h19{height:31.346667pt;}
.h1{height:36.305625pt;}
.h9{height:38.273438pt;}
.hb{height:40.640625pt;}
.h6{height:44.975625pt;}
.h18{height:49.306667pt;}
.h14{height:49.426667pt;}
.h2{height:49.852500pt;}
.hd{height:54.746667pt;}
.h1d{height:60.519362pt;}
.h17{height:61.753333pt;}
.h4{height:63.399375pt;}
.h1c{height:66.625000pt;}
.h16{height:67.186667pt;}
.h1b{height:67.200000pt;}
.h15{height:67.218667pt;}
.h1a{height:67.220000pt;}
.h7{height:76.671562pt;}
.h10{height:79.040000pt;}
.hf{height:79.220000pt;}
.h5{height:81.281250pt;}
.h8{height:86.400000pt;}
.ha{height:87.200000pt;}
.he{height:98.866667pt;}
.h11{height:98.906667pt;}
.h3{height:99.163125pt;}
.h12{height:138.386667pt;}
.h0{height:1056.000000pt;}
.w3{width:32.480000pt;}
.wd{width:32.640000pt;}
.w4{width:58.070667pt;}
.w9{width:62.870667pt;}
.w2{width:71.360000pt;}
.w1{width:76.000000pt;}
.w5{width:92.818667pt;}
.w7{width:116.786667pt;}
.w8{width:142.093333pt;}
.w6{width:152.826667pt;}
.wa{width:175.853333pt;}
.wb{width:179.226667pt;}
.wc{width:189.613333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x22{left:0.950667pt;}
.x1a{left:7.990667pt;}
.xe{left:9.893333pt;}
.x10{left:35.680000pt;}
.x1{left:96.032000pt;}
.x21{left:99.401333pt;}
.x7{left:109.312000pt;}
.x8{left:113.312000pt;}
.x19{left:120.041333pt;}
.x27{left:124.352000pt;}
.x14{left:135.226667pt;}
.x12{left:144.026667pt;}
.x15{left:150.266667pt;}
.x2{left:158.266667pt;}
.x23{left:166.920000pt;}
.x1b{left:181.320000pt;}
.x20{left:182.906667pt;}
.x18{left:184.186667pt;}
.x11{left:193.306667pt;}
.x5{left:203.706667pt;}
.xc{left:234.266667pt;}
.xa{left:240.186667pt;}
.x3{left:267.106667pt;}
.xb{left:271.746667pt;}
.x1c{left:277.346667pt;}
.x6{left:302.786667pt;}
.x24{left:347.586667pt;}
.x4{left:408.066667pt;}
.x1d{left:433.386667pt;}
.x16{left:495.453333pt;}
.x25{left:531.466667pt;}
.x1e{left:553.386667pt;}
.x17{left:684.453333pt;}
.x1f{left:696.453333pt;}
.x9{left:720.133333pt;}
.xd{left:740.000000pt;}
.x26{left:770.880000pt;}
.x13{left:772.640000pt;}
.xf{left:778.560000pt;}
}




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