
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_47500649a4bc2e2be60bec04.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1038213acd0698d9b92d095c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0618da077f9dc9bc945453a4.woff2')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_4edbcf8b0039896182f15216.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c1d116c90e413b7f0c3627df.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a8e75e0a5ea5e8e568307392.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_4d26c1f209ed1e5ccfe7ace9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_20327625c57fca2882d775c3.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.000000px;}
.v3{vertical-align:23.760000px;}
.lsd{letter-spacing:-1.440000px;}
.ls14{letter-spacing:-1.176000px;}
.lsb{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.642000px;}
.ls13{letter-spacing:-0.612000px;}
.ls18{letter-spacing:-0.567600px;}
.ls16{letter-spacing:-0.457800px;}
.ls12{letter-spacing:-0.414600px;}
.ls15{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.274800px;}
.ls1c{letter-spacing:-0.152400px;}
.ls11{letter-spacing:-0.109200px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.109200px;}
.ls4{letter-spacing:0.109440px;}
.ls19{letter-spacing:0.152400px;}
.ls5{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.262080px;}
.ls10{letter-spacing:0.262200px;}
.lsc{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.315600px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.414600px;}
.ls2{letter-spacing:0.720000px;}
.lse{letter-spacing:1.440000px;}
.ls17{letter-spacing:5.760000px;}
.ls1f{letter-spacing:6.785280px;}
.ls1a{letter-spacing:24.480000px;}
.ls3{letter-spacing:34.560000px;}
.ls1e{letter-spacing:39.905280px;}
.ls9{letter-spacing:59.345280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.wsb{word-spacing:-28.987200px;}
.ws8{word-spacing:-28.712400px;}
.ws1{word-spacing:-18.000000px;}
.wse{word-spacing:-16.974600px;}
.wsc{word-spacing:-16.865400px;}
.wsf{word-spacing:-16.822200px;}
.ws16{word-spacing:-16.712400px;}
.ws3{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.254600px;}
.ws10{word-spacing:-16.145400px;}
.ws14{word-spacing:-16.102200px;}
.ws15{word-spacing:-15.992400px;}
.ws11{word-spacing:-15.948000px;}
.ws9{word-spacing:-15.840000px;}
.ws12{word-spacing:-15.384000px;}
.ws0{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.120000px;}
.ws7{word-spacing:-13.939200px;}
.ws6{word-spacing:-13.500000px;}
.ws17{word-spacing:-10.755600px;}
.ws2{word-spacing:-10.440000px;}
.ws18{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._2d{margin-left:-4.976160px;}
._2a{margin-left:-3.157920px;}
._21{margin-left:-2.119680px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._3{width:3.525120px;}
._a{width:4.987200px;}
._5{width:6.456000px;}
._6{width:7.911360px;}
._4{width:9.420480px;}
._11{width:10.598400px;}
._c{width:11.790720px;}
._9{width:13.631040px;}
._8{width:14.852160px;}
._b{width:18.296640px;}
._16{width:19.431360px;}
._e{width:20.548800px;}
._d{width:21.594240px;}
._1a{width:23.014080px;}
._17{width:24.243840px;}
._18{width:25.371840px;}
._19{width:27.371520px;}
._f{width:28.549440px;}
._22{width:29.675520px;}
._25{width:31.014720px;}
._2e{width:32.443200px;}
._7{width:33.782400px;}
._1d{width:35.239680px;}
._29{width:36.564480px;}
._1c{width:37.903680px;}
._10{width:38.949120px;}
._14{width:40.472640px;}
._36{width:42.144000px;}
._27{width:44.182080px;}
._1b{width:47.096640px;}
._13{width:49.547520px;}
._28{width:52.727040px;}
._15{width:55.972800px;}
._20{width:57.628800px;}
._39{width:59.218560px;}
._34{width:62.596800px;}
._35{width:64.186560px;}
._23{width:68.624640px;}
._24{width:69.714240px;}
._2f{width:71.075520px;}
._30{width:72.599040px;}
._31{width:73.658880px;}
._38{width:74.822400px;}
._1f{width:77.608800px;}
._1e{width:78.958080px;}
._26{width:80.305920px;}
._2c{width:84.124800px;}
._2b{width:85.530240px;}
._37{width:88.562880px;}
._12{width:90.086400px;}
._32{width:93.333120px;}
._33{width:94.606560px;}
._2{width:961.680000px;}
.fc9{color:rgb(18,19,18);}
.fc8{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(13,13,13);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y122{bottom:13.140000px;}
.y90{bottom:13.500000px;}
.y95{bottom:13.530000px;}
.ybb{bottom:13.545000px;}
.ya3{bottom:13.680000px;}
.y12d{bottom:13.890000px;}
.ya1{bottom:14.220000px;}
.yf1{bottom:14.265000px;}
.yc6{bottom:14.400000px;}
.y10a{bottom:15.660000px;}
.y11d{bottom:16.380000px;}
.ye1{bottom:16.560000px;}
.yf8{bottom:16.740000px;}
.yda{bottom:19.260000px;}
.y134{bottom:19.440000px;}
.y131{bottom:19.620000px;}
.yd8{bottom:19.980000px;}
.ya{bottom:20.880000px;}
.y37{bottom:30.600000px;}
.yee{bottom:36.765000px;}
.yc3{bottom:37.620000px;}
.y104{bottom:42.300000px;}
.yd6{bottom:42.480000px;}
.y9f{bottom:42.660000px;}
.yf0{bottom:42.705000px;}
.yc5{bottom:42.870000px;}
.y109{bottom:43.740000px;}
.yb9{bottom:44.100000px;}
.y11c{bottom:44.460000px;}
.ye0{bottom:44.640000px;}
.ya8{bottom:45.000000px;}
.yf7{bottom:45.180000px;}
.y36{bottom:46.980000px;}
.yd9{bottom:48.060000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y35{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.y108{bottom:72.405000px;}
.yb8{bottom:72.585000px;}
.y111{bottom:73.080000px;}
.ydf{bottom:73.110000px;}
.ya7{bottom:73.440000px;}
.yf6{bottom:73.620000px;}
.y34{bottom:79.056000px;}
.y30{bottom:97.596000px;}
.y107{bottom:100.845000px;}
.yb7{bottom:101.025000px;}
.y110{bottom:101.520000px;}
.yde{bottom:101.550000px;}
.ya6{bottom:101.880000px;}
.yf5{bottom:102.240000px;}
.y60{bottom:108.756000px;}
.y5d{bottom:109.836000px;}
.y12a{bottom:110.016000px;}
.yfd{bottom:112.896000px;}
.y150{bottom:114.696000px;}
.y12b{bottom:115.956000px;}
.y167{bottom:120.636000px;}
.y92{bottom:121.356000px;}
.yc0{bottom:121.896000px;}
.y2f{bottom:126.036000px;}
.y11b{bottom:129.960000px;}
.ydd{bottom:129.990000px;}
.y10f{bottom:130.140000px;}
.yc9{bottom:130.320000px;}
.ya5{bottom:130.500000px;}
.yf4{bottom:130.680000px;}
.y5f{bottom:138.096000px;}
.y5c{bottom:138.456000px;}
.yfc{bottom:141.336000px;}
.y14f{bottom:143.136000px;}
.y129{bottom:144.396000px;}
.y166{bottom:149.256000px;}
.ybf{bottom:150.330000px;}
.y91{bottom:150.690000px;}
.y2e{bottom:154.470000px;}
.yf3{bottom:156.990000px;}
.y16a{bottom:166.530000px;}
.y5b{bottom:166.890000px;}
.y14e{bottom:171.570000px;}
.y128{bottom:172.830000px;}
.y165{bottom:177.690000px;}
.ybe{bottom:178.770000px;}
.y8f{bottom:179.850000px;}
.y2d{bottom:182.910000px;}
.yfb{bottom:186.330000px;}
.y169{bottom:194.970000px;}
.y5a{bottom:195.330000px;}
.y14d{bottom:200.010000px;}
.y127{bottom:201.270000px;}
.y164{bottom:206.130000px;}
.ybd{bottom:207.210000px;}
.y2c{bottom:211.350000px;}
.yfa{bottom:215.490000px;}
.y8e{bottom:222.510000px;}
.y59{bottom:223.770000px;}
.y14c{bottom:228.630000px;}
.y126{bottom:229.710000px;}
.y163{bottom:234.570000px;}
.ybc{bottom:235.650000px;}
.y2b{bottom:239.790000px;}
.yf9{bottom:244.650000px;}
.y7f{bottom:250.950000px;}
.yb6{bottom:251.490000px;}
.y58{bottom:252.210000px;}
.y14b{bottom:257.070000px;}
.y125{bottom:258.150000px;}
.y162{bottom:263.010000px;}
.y2a{bottom:268.230000px;}
.yf2{bottom:274.170000px;}
.y7e{bottom:279.570000px;}
.y57{bottom:280.650000px;}
.y14a{bottom:285.510000px;}
.y124{bottom:286.590000px;}
.y161{bottom:291.450000px;}
.y29{bottom:296.850000px;}
.yed{bottom:303.330000px;}
.y7d{bottom:308.010000px;}
.y56{bottom:309.090000px;}
.yba{bottom:309.810000px;}
.y149{bottom:313.950000px;}
.y123{bottom:315.030000px;}
.y160{bottom:319.935000px;}
.y28{bottom:325.335000px;}
.y8d{bottom:329.115000px;}
.y11a{bottom:330.915000px;}
.yef{bottom:332.535000px;}
.y7c{bottom:336.495000px;}
.y55{bottom:337.575000px;}
.yb5{bottom:339.015000px;}
.y148{bottom:342.435000px;}
.y15f{bottom:348.375000px;}
.y27{bottom:353.775000px;}
.y8c{bottom:357.555000px;}
.y121{bottom:360.075000px;}
.y7b{bottom:364.935000px;}
.y54{bottom:366.015000px;}
.yb3{bottom:368.355000px;}
.y147{bottom:370.875000px;}
.yec{bottom:375.375000px;}
.y15e{bottom:376.815000px;}
.y26{bottom:382.215000px;}
.y8b{bottom:385.995000px;}
.y120{bottom:389.235000px;}
.y7a{bottom:393.375000px;}
.y53{bottom:394.635000px;}
.yb4{bottom:397.515000px;}
.y146{bottom:399.315000px;}
.y15d{bottom:405.435000px;}
.ye8{bottom:409.755000px;}
.y25{bottom:410.655000px;}
.y8a{bottom:414.435000px;}
.yeb{bottom:415.695000px;}
.y11f{bottom:418.395000px;}
.y79{bottom:421.815000px;}
.y52{bottom:423.075000px;}
.y145{bottom:427.755000px;}
.y15c{bottom:433.875000px;}
.ye7{bottom:438.195000px;}
.y24{bottom:439.095000px;}
.yb2{bottom:440.175000px;}
.y89{bottom:443.055000px;}
.yea{bottom:444.135000px;}
.y11e{bottom:447.735000px;}
.y78{bottom:450.255000px;}
.y51{bottom:451.515000px;}
.y144{bottom:456.195000px;}
.y15b{bottom:462.315000px;}
.ye6{bottom:466.635000px;}
.y23{bottom:467.175000px;}
.y31{bottom:467.535000px;}
.yb1{bottom:468.615000px;}
.y88{bottom:471.495000px;}
.ye9{bottom:472.575000px;}
.y116{bottom:476.895000px;}
.y77{bottom:478.695000px;}
.y50{bottom:479.955000px;}
.y143{bottom:484.815000px;}
.y15a{bottom:490.755000px;}
.yb0{bottom:497.235000px;}
.y22{bottom:499.755000px;}
.y87{bottom:499.935000px;}
.ye5{bottom:501.195000px;}
.y119{bottom:506.055000px;}
.y76{bottom:507.135000px;}
.y4f{bottom:508.395000px;}
.y142{bottom:513.255000px;}
.ydc{bottom:516.855000px;}
.y159{bottom:519.195000px;}
.yaf{bottom:525.675000px;}
.y21{bottom:528.195000px;}
.y86{bottom:528.375000px;}
.y118{bottom:535.215000px;}
.y75{bottom:535.755000px;}
.y4e{bottom:536.835000px;}
.y141{bottom:541.695000px;}
.ye4{bottom:546.015000px;}
.y158{bottom:547.635000px;}
.yae{bottom:554.115000px;}
.y20{bottom:556.635000px;}
.y85{bottom:556.815000px;}
.y74{bottom:564.195000px;}
.y117{bottom:564.555000px;}
.y4d{bottom:565.275000px;}
.y140{bottom:570.165000px;}
.ye3{bottom:575.205000px;}
.y157{bottom:576.105000px;}
.yad{bottom:582.585000px;}
.y1f{bottom:585.105000px;}
.y84{bottom:585.285000px;}
.y73{bottom:592.665000px;}
.y4c{bottom:593.745000px;}
.yac{bottom:598.245000px;}
.y13f{bottom:598.605000px;}
.ye2{bottom:604.545000px;}
.y1e{bottom:613.725000px;}
.y72{bottom:621.105000px;}
.y4b{bottom:622.185000px;}
.y10e{bottom:622.905000px;}
.y13e{bottom:627.045000px;}
.ya4{bottom:627.405000px;}
.y156{bottom:632.985000px;}
.ydb{bottom:633.705000px;}
.y83{bottom:641.805000px;}
.y1d{bottom:642.165000px;}
.y71{bottom:649.545000px;}
.y4a{bottom:650.805000px;}
.y115{bottom:652.245000px;}
.y13d{bottom:655.485000px;}
.yab{bottom:656.745000px;}
.y155{bottom:661.605000px;}
.yd5{bottom:662.865000px;}
.y1c{bottom:670.605000px;}
.y70{bottom:677.985000px;}
.y49{bottom:679.245000px;}
.y114{bottom:681.405000px;}
.y13c{bottom:683.925000px;}
.yaa{bottom:685.905000px;}
.y154{bottom:690.045000px;}
.y82{bottom:695.265000px;}
.yd7{bottom:697.785000px;}
.y1b{bottom:699.045000px;}
.y6f{bottom:706.425000px;}
.y48{bottom:707.685000px;}
.y113{bottom:710.565000px;}
.y13b{bottom:712.005000px;}
.ya9{bottom:715.065000px;}
.y153{bottom:718.485000px;}
.y1a{bottom:727.485000px;}
.y6e{bottom:734.865000px;}
.y47{bottom:736.125000px;}
.y112{bottom:739.725000px;}
.yd4{bottom:740.625000px;}
.y13a{bottom:740.985000px;}
.ya2{bottom:744.225000px;}
.y152{bottom:746.925000px;}
.y19{bottom:755.925000px;}
.y6d{bottom:763.305000px;}
.y46{bottom:764.565000px;}
.y106{bottom:769.065000px;}
.y139{bottom:769.425000px;}
.y9e{bottom:773.565000px;}
.yd0{bottom:775.005000px;}
.y151{bottom:775.365000px;}
.yd3{bottom:780.945000px;}
.y18{bottom:784.365000px;}
.y6c{bottom:791.925000px;}
.y45{bottom:793.005000px;}
.y10d{bottom:798.225000px;}
.ya0{bottom:802.725000px;}
.ycf{bottom:803.445000px;}
.y138{bottom:803.805000px;}
.yd2{bottom:809.565000px;}
.y17{bottom:818.745000px;}
.y6b{bottom:820.410000px;}
.y5e{bottom:821.130000px;}
.y44{bottom:821.490000px;}
.y10c{bottom:827.430000px;}
.yce{bottom:832.110000px;}
.y137{bottom:832.290000px;}
.yd1{bottom:838.050000px;}
.y9d{bottom:845.430000px;}
.y16{bottom:847.230000px;}
.y6a{bottom:848.850000px;}
.y43{bottom:849.930000px;}
.y10b{bottom:856.770000px;}
.y136{bottom:860.730000px;}
.ycd{bottom:866.490000px;}
.y9c{bottom:873.870000px;}
.y15{bottom:875.850000px;}
.y69{bottom:877.290000px;}
.y42{bottom:878.370000px;}
.yc8{bottom:882.150000px;}
.y103{bottom:885.930000px;}
.y135{bottom:889.170000px;}
.y9b{bottom:902.490000px;}
.y14{bottom:904.290000px;}
.y133{bottom:905.010000px;}
.y68{bottom:905.730000px;}
.y41{bottom:906.990000px;}
.ycc{bottom:911.310000px;}
.y105{bottom:915.090000px;}
.y9a{bottom:930.930000px;}
.y13{bottom:932.730000px;}
.y67{bottom:934.170000px;}
.y40{bottom:935.430000px;}
.y81{bottom:939.210000px;}
.y132{bottom:940.110000px;}
.ycb{bottom:940.650000px;}
.y102{bottom:957.750000px;}
.y99{bottom:959.370000px;}
.y12{bottom:961.170000px;}
.y66{bottom:962.610000px;}
.y80{bottom:963.690000px;}
.y3f{bottom:963.870000px;}
.y130{bottom:969.270000px;}
.yca{bottom:969.810000px;}
.y98{bottom:975.030000px;}
.y11{bottom:983.310000px;}
.y101{bottom:986.370000px;}
.y65{bottom:991.050000px;}
.y3e{bottom:992.310000px;}
.yc7{bottom:998.970000px;}
.y97{bottom:1004.190000px;}
.y12f{bottom:1004.550000px;}
.y10{bottom:1011.750000px;}
.y100{bottom:1014.810000px;}
.y64{bottom:1019.490000px;}
.y3d{bottom:1020.750000px;}
.yc2{bottom:1028.130000px;}
.y4{bottom:1032.810000px;}
.y96{bottom:1033.530000px;}
.y12e{bottom:1033.710000px;}
.yff{bottom:1043.250000px;}
.y63{bottom:1048.110000px;}
.y3c{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.yc4{bottom:1057.470000px;}
.y94{bottom:1062.690000px;}
.y12c{bottom:1063.050000px;}
.yfe{bottom:1071.720000px;}
.y2{bottom:1072.620000px;}
.y62{bottom:1076.220000px;}
.y3b{bottom:1077.660000px;}
.y93{bottom:1091.880000px;}
.yc1{bottom:1100.160000px;}
.y61{bottom:1105.020000px;}
.y168{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h13{height:28.440000px;}
.h14{height:28.476000px;}
.h16{height:28.620000px;}
.h23{height:28.836000px;}
.h6{height:33.480000px;}
.h1f{height:34.200000px;}
.h25{height:34.380000px;}
.h24{height:34.560000px;}
.hb{height:41.250937px;}
.h26{height:46.251562px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h18{height:57.600000px;}
.h15{height:57.636000px;}
.h1b{height:57.816000px;}
.h2{height:58.621992px;}
.h10{height:60.679688px;}
.h9{height:63.019687px;}
.h1e{height:63.360000px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h11{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h1c{height:86.010937px;}
.h1a{height:88.770938px;}
.h12{height:111.043849px;}
.hf{height:111.043854px;}
.h19{height:115.956000px;}
.h22{height:116.136000px;}
.h1d{height:145.260000px;}
.h20{height:145.296000px;}
.h17{height:145.440000px;}
.h21{height:145.620000px;}
.h4{height:167.250000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w3a{width:57.780000px;}
.w3c{width:57.960000px;}
.w3b{width:57.996000px;}
.w38{width:58.896000px;}
.w32{width:68.760000px;}
.w39{width:69.840000px;}
.w23{width:78.840000px;}
.w3d{width:82.620000px;}
.w1f{width:93.780000px;}
.w13{width:101.376000px;}
.w28{width:104.976000px;}
.w26{width:105.156000px;}
.w29{width:105.300000px;}
.w20{width:106.596000px;}
.w21{width:106.920000px;}
.w22{width:106.956000px;}
.w12{width:110.340000px;}
.w10{width:110.376000px;}
.wf{width:110.520000px;}
.w11{width:110.556000px;}
.wb{width:110.736000px;}
.w2d{width:112.536000px;}
.w2f{width:112.680000px;}
.w30{width:112.716000px;}
.w2a{width:112.896000px;}
.w18{width:113.040000px;}
.w1a{width:113.220000px;}
.w16{width:113.256000px;}
.w19{width:113.436000px;}
.w27{width:113.580000px;}
.w31{width:116.316000px;}
.w35{width:116.460000px;}
.w34{width:116.496000px;}
.w36{width:116.676000px;}
.wd{width:123.156000px;}
.w2e{width:128.880000px;}
.w33{width:129.456000px;}
.we{width:129.600000px;}
.w17{width:137.700000px;}
.w37{width:141.120000px;}
.w1b{width:144.036000px;}
.w40{width:158.580000px;}
.w24{width:165.630000px;}
.w1e{width:167.970000px;}
.w1d{width:186.510000px;}
.w3f{width:190.650000px;}
.w8{width:200.010000px;}
.w9{width:200.370000px;}
.wa{width:207.210000px;}
.w25{width:210.990000px;}
.w1c{width:214.230000px;}
.wc{width:221.610000px;}
.w2c{width:226.110000px;}
.w2b{width:226.290000px;}
.w14{width:227.190000px;}
.w15{width:227.370000px;}
.w3{width:361.335000px;}
.w3e{width:456.945000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:1.080000px;}
.x41{left:2.700000px;}
.x46{left:4.680000px;}
.x31{left:5.760000px;}
.x10{left:7.740000px;}
.x7{left:10.800000px;}
.x1c{left:13.500000px;}
.xb{left:15.120000px;}
.x47{left:16.380000px;}
.x4{left:18.180000px;}
.x38{left:21.420000px;}
.x15{left:22.680000px;}
.x2a{left:25.740000px;}
.x1b{left:26.820000px;}
.x37{left:29.880000px;}
.xa{left:31.680000px;}
.x3f{left:33.120000px;}
.x1a{left:35.100000px;}
.x26{left:52.380000px;}
.x2{left:53.999986px;}
.x13{left:60.480000px;}
.x1f{left:63.180000px;}
.x4b{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x1d{left:156.090000px;}
.x11{left:165.450000px;}
.x32{left:167.610000px;}
.x39{left:171.030000px;}
.x24{left:198.930000px;}
.x2b{left:220.890000px;}
.x3a{left:240.510000px;}
.xd{left:254.730000px;}
.x22{left:270.030000px;}
.x17{left:276.690000px;}
.x35{left:281.010000px;}
.x40{left:300.135000px;}
.x29{left:306.255000px;}
.x2f{left:326.595000px;}
.x3b{left:370.695000px;}
.x1e{left:384.015000px;}
.x12{left:387.975000px;}
.x33{left:394.635000px;}
.x25{left:413.895000px;}
.x42{left:429.195000px;}
.x2c{left:432.615000px;}
.xe{left:455.475000px;}
.x8{left:482.144986px;}
.x3c{left:487.905000px;}
.x23{left:498.165000px;}
.x19{left:499.245000px;}
.x36{left:508.065000px;}
.x4a{left:509.144986px;}
.x48{left:511.665000px;}
.x5{left:521.025000px;}
.x30{left:538.305000px;}
.x43{left:546.585000px;}
.x27{left:601.305000px;}
.x3d{left:605.265000px;}
.x14{left:610.305000px;}
.x20{left:612.105000px;}
.x34{left:621.645000px;}
.x2d{left:644.325000px;}
.xf{left:656.565000px;}
.x44{left:663.945000px;}
.x49{left:703.050000px;}
.x3e{left:722.670000px;}
.x21{left:726.090000px;}
.x16{left:734.190000px;}
.x2e{left:750.210000px;}
.x28{left:770.010000px;}
.x45{left:781.170000px;}
.xc{left:797.189986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.666667pt;}
.v3{vertical-align:21.120000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls14{letter-spacing:-1.045333pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.570667pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls18{letter-spacing:-0.504533pt;}
.ls16{letter-spacing:-0.406933pt;}
.ls12{letter-spacing:-0.368533pt;}
.ls15{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.244267pt;}
.ls1c{letter-spacing:-0.135467pt;}
.ls11{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.097067pt;}
.ls4{letter-spacing:0.097280pt;}
.ls19{letter-spacing:0.135467pt;}
.ls5{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.232960pt;}
.ls10{letter-spacing:0.233067pt;}
.lsc{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.280533pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.368533pt;}
.ls2{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.280000pt;}
.ls17{letter-spacing:5.120000pt;}
.ls1f{letter-spacing:6.031360pt;}
.ls1a{letter-spacing:21.760000pt;}
.ls3{letter-spacing:30.720000pt;}
.ls1e{letter-spacing:35.471360pt;}
.ls9{letter-spacing:52.751360pt;}
.ls0{letter-spacing:184.370347pt;}
.wsa{word-spacing:-58.880000pt;}
.wsb{word-spacing:-25.766400pt;}
.ws8{word-spacing:-25.522133pt;}
.ws1{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.088533pt;}
.wsc{word-spacing:-14.991467pt;}
.wsf{word-spacing:-14.953067pt;}
.ws16{word-spacing:-14.855467pt;}
.ws3{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.351467pt;}
.ws14{word-spacing:-14.313067pt;}
.ws15{word-spacing:-14.215467pt;}
.ws11{word-spacing:-14.176000pt;}
.ws9{word-spacing:-14.080000pt;}
.ws12{word-spacing:-13.674667pt;}
.ws0{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.440000pt;}
.ws7{word-spacing:-12.390400pt;}
.ws6{word-spacing:-12.000000pt;}
.ws17{word-spacing:-9.560533pt;}
.ws2{word-spacing:-9.280000pt;}
.ws18{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._2d{margin-left:-4.423253pt;}
._2a{margin-left:-2.807040pt;}
._21{margin-left:-1.884160pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._3{width:3.133440pt;}
._a{width:4.433067pt;}
._5{width:5.738667pt;}
._6{width:7.032320pt;}
._4{width:8.373760pt;}
._11{width:9.420800pt;}
._c{width:10.480640pt;}
._9{width:12.116480pt;}
._8{width:13.201920pt;}
._b{width:16.263680pt;}
._16{width:17.272320pt;}
._e{width:18.265600pt;}
._d{width:19.194880pt;}
._1a{width:20.456960pt;}
._17{width:21.550080pt;}
._18{width:22.552747pt;}
._19{width:24.330240pt;}
._f{width:25.377280pt;}
._22{width:26.378240pt;}
._25{width:27.568640pt;}
._2e{width:28.838400pt;}
._7{width:30.028800pt;}
._1d{width:31.324160pt;}
._29{width:32.501760pt;}
._1c{width:33.692160pt;}
._10{width:34.621440pt;}
._14{width:35.975680pt;}
._36{width:37.461333pt;}
._27{width:39.272960pt;}
._1b{width:41.863680pt;}
._13{width:44.042240pt;}
._28{width:46.868480pt;}
._15{width:49.753600pt;}
._20{width:51.225600pt;}
._39{width:52.638720pt;}
._34{width:55.641600pt;}
._35{width:57.054720pt;}
._23{width:60.999680pt;}
._24{width:61.968213pt;}
._2f{width:63.178240pt;}
._30{width:64.532480pt;}
._31{width:65.474560pt;}
._38{width:66.508800pt;}
._1f{width:68.985600pt;}
._1e{width:70.184960pt;}
._26{width:71.383040pt;}
._2c{width:74.777600pt;}
._2b{width:76.026880pt;}
._37{width:78.722560pt;}
._12{width:80.076800pt;}
._32{width:82.962773pt;}
._33{width:84.094720pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y122{bottom:11.680000pt;}
.y90{bottom:12.000000pt;}
.y95{bottom:12.026667pt;}
.ybb{bottom:12.040000pt;}
.ya3{bottom:12.160000pt;}
.y12d{bottom:12.346667pt;}
.ya1{bottom:12.640000pt;}
.yf1{bottom:12.680000pt;}
.yc6{bottom:12.800000pt;}
.y10a{bottom:13.920000pt;}
.y11d{bottom:14.560000pt;}
.ye1{bottom:14.720000pt;}
.yf8{bottom:14.880000pt;}
.yda{bottom:17.120000pt;}
.y134{bottom:17.280000pt;}
.y131{bottom:17.440000pt;}
.yd8{bottom:17.760000pt;}
.ya{bottom:18.560000pt;}
.y37{bottom:27.200000pt;}
.yee{bottom:32.680000pt;}
.yc3{bottom:33.440000pt;}
.y104{bottom:37.600000pt;}
.yd6{bottom:37.760000pt;}
.y9f{bottom:37.920000pt;}
.yf0{bottom:37.960000pt;}
.yc5{bottom:38.106667pt;}
.y109{bottom:38.880000pt;}
.yb9{bottom:39.200000pt;}
.y11c{bottom:39.520000pt;}
.ye0{bottom:39.680000pt;}
.ya8{bottom:40.000000pt;}
.yf7{bottom:40.160000pt;}
.y36{bottom:41.760000pt;}
.yd9{bottom:42.720000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y35{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.y108{bottom:64.360000pt;}
.yb8{bottom:64.520000pt;}
.y111{bottom:64.960000pt;}
.ydf{bottom:64.986667pt;}
.ya7{bottom:65.280000pt;}
.yf6{bottom:65.440000pt;}
.y34{bottom:70.272000pt;}
.y30{bottom:86.752000pt;}
.y107{bottom:89.640000pt;}
.yb7{bottom:89.800000pt;}
.y110{bottom:90.240000pt;}
.yde{bottom:90.266667pt;}
.ya6{bottom:90.560000pt;}
.yf5{bottom:90.880000pt;}
.y60{bottom:96.672000pt;}
.y5d{bottom:97.632000pt;}
.y12a{bottom:97.792000pt;}
.yfd{bottom:100.352000pt;}
.y150{bottom:101.952000pt;}
.y12b{bottom:103.072000pt;}
.y167{bottom:107.232000pt;}
.y92{bottom:107.872000pt;}
.yc0{bottom:108.352000pt;}
.y2f{bottom:112.032000pt;}
.y11b{bottom:115.520000pt;}
.ydd{bottom:115.546667pt;}
.y10f{bottom:115.680000pt;}
.yc9{bottom:115.840000pt;}
.ya5{bottom:116.000000pt;}
.yf4{bottom:116.160000pt;}
.y5f{bottom:122.752000pt;}
.y5c{bottom:123.072000pt;}
.yfc{bottom:125.632000pt;}
.y14f{bottom:127.232000pt;}
.y129{bottom:128.352000pt;}
.y166{bottom:132.672000pt;}
.ybf{bottom:133.626667pt;}
.y91{bottom:133.946667pt;}
.y2e{bottom:137.306667pt;}
.yf3{bottom:139.546667pt;}
.y16a{bottom:148.026667pt;}
.y5b{bottom:148.346667pt;}
.y14e{bottom:152.506667pt;}
.y128{bottom:153.626667pt;}
.y165{bottom:157.946667pt;}
.ybe{bottom:158.906667pt;}
.y8f{bottom:159.866667pt;}
.y2d{bottom:162.586667pt;}
.yfb{bottom:165.626667pt;}
.y169{bottom:173.306667pt;}
.y5a{bottom:173.626667pt;}
.y14d{bottom:177.786667pt;}
.y127{bottom:178.906667pt;}
.y164{bottom:183.226667pt;}
.ybd{bottom:184.186667pt;}
.y2c{bottom:187.866667pt;}
.yfa{bottom:191.546667pt;}
.y8e{bottom:197.786667pt;}
.y59{bottom:198.906667pt;}
.y14c{bottom:203.226667pt;}
.y126{bottom:204.186667pt;}
.y163{bottom:208.506667pt;}
.ybc{bottom:209.466667pt;}
.y2b{bottom:213.146667pt;}
.yf9{bottom:217.466667pt;}
.y7f{bottom:223.066667pt;}
.yb6{bottom:223.546667pt;}
.y58{bottom:224.186667pt;}
.y14b{bottom:228.506667pt;}
.y125{bottom:229.466667pt;}
.y162{bottom:233.786667pt;}
.y2a{bottom:238.426667pt;}
.yf2{bottom:243.706667pt;}
.y7e{bottom:248.506667pt;}
.y57{bottom:249.466667pt;}
.y14a{bottom:253.786667pt;}
.y124{bottom:254.746667pt;}
.y161{bottom:259.066667pt;}
.y29{bottom:263.866667pt;}
.yed{bottom:269.626667pt;}
.y7d{bottom:273.786667pt;}
.y56{bottom:274.746667pt;}
.yba{bottom:275.386667pt;}
.y149{bottom:279.066667pt;}
.y123{bottom:280.026667pt;}
.y160{bottom:284.386667pt;}
.y28{bottom:289.186667pt;}
.y8d{bottom:292.546667pt;}
.y11a{bottom:294.146667pt;}
.yef{bottom:295.586667pt;}
.y7c{bottom:299.106667pt;}
.y55{bottom:300.066667pt;}
.yb5{bottom:301.346667pt;}
.y148{bottom:304.386667pt;}
.y15f{bottom:309.666667pt;}
.y27{bottom:314.466667pt;}
.y8c{bottom:317.826667pt;}
.y121{bottom:320.066667pt;}
.y7b{bottom:324.386667pt;}
.y54{bottom:325.346667pt;}
.yb3{bottom:327.426667pt;}
.y147{bottom:329.666667pt;}
.yec{bottom:333.666667pt;}
.y15e{bottom:334.946667pt;}
.y26{bottom:339.746667pt;}
.y8b{bottom:343.106667pt;}
.y120{bottom:345.986667pt;}
.y7a{bottom:349.666667pt;}
.y53{bottom:350.786667pt;}
.yb4{bottom:353.346667pt;}
.y146{bottom:354.946667pt;}
.y15d{bottom:360.386667pt;}
.ye8{bottom:364.226667pt;}
.y25{bottom:365.026667pt;}
.y8a{bottom:368.386667pt;}
.yeb{bottom:369.506667pt;}
.y11f{bottom:371.906667pt;}
.y79{bottom:374.946667pt;}
.y52{bottom:376.066667pt;}
.y145{bottom:380.226667pt;}
.y15c{bottom:385.666667pt;}
.ye7{bottom:389.506667pt;}
.y24{bottom:390.306667pt;}
.yb2{bottom:391.266667pt;}
.y89{bottom:393.826667pt;}
.yea{bottom:394.786667pt;}
.y11e{bottom:397.986667pt;}
.y78{bottom:400.226667pt;}
.y51{bottom:401.346667pt;}
.y144{bottom:405.506667pt;}
.y15b{bottom:410.946667pt;}
.ye6{bottom:414.786667pt;}
.y23{bottom:415.266667pt;}
.y31{bottom:415.586667pt;}
.yb1{bottom:416.546667pt;}
.y88{bottom:419.106667pt;}
.ye9{bottom:420.066667pt;}
.y116{bottom:423.906667pt;}
.y77{bottom:425.506667pt;}
.y50{bottom:426.626667pt;}
.y143{bottom:430.946667pt;}
.y15a{bottom:436.226667pt;}
.yb0{bottom:441.986667pt;}
.y22{bottom:444.226667pt;}
.y87{bottom:444.386667pt;}
.ye5{bottom:445.506667pt;}
.y119{bottom:449.826667pt;}
.y76{bottom:450.786667pt;}
.y4f{bottom:451.906667pt;}
.y142{bottom:456.226667pt;}
.ydc{bottom:459.426667pt;}
.y159{bottom:461.506667pt;}
.yaf{bottom:467.266667pt;}
.y21{bottom:469.506667pt;}
.y86{bottom:469.666667pt;}
.y118{bottom:475.746667pt;}
.y75{bottom:476.226667pt;}
.y4e{bottom:477.186667pt;}
.y141{bottom:481.506667pt;}
.ye4{bottom:485.346667pt;}
.y158{bottom:486.786667pt;}
.yae{bottom:492.546667pt;}
.y20{bottom:494.786667pt;}
.y85{bottom:494.946667pt;}
.y74{bottom:501.506667pt;}
.y117{bottom:501.826667pt;}
.y4d{bottom:502.466667pt;}
.y140{bottom:506.813333pt;}
.ye3{bottom:511.293333pt;}
.y157{bottom:512.093333pt;}
.yad{bottom:517.853333pt;}
.y1f{bottom:520.093333pt;}
.y84{bottom:520.253333pt;}
.y73{bottom:526.813333pt;}
.y4c{bottom:527.773333pt;}
.yac{bottom:531.773333pt;}
.y13f{bottom:532.093333pt;}
.ye2{bottom:537.373333pt;}
.y1e{bottom:545.533333pt;}
.y72{bottom:552.093333pt;}
.y4b{bottom:553.053333pt;}
.y10e{bottom:553.693333pt;}
.y13e{bottom:557.373333pt;}
.ya4{bottom:557.693333pt;}
.y156{bottom:562.653333pt;}
.ydb{bottom:563.293333pt;}
.y83{bottom:570.493333pt;}
.y1d{bottom:570.813333pt;}
.y71{bottom:577.373333pt;}
.y4a{bottom:578.493333pt;}
.y115{bottom:579.773333pt;}
.y13d{bottom:582.653333pt;}
.yab{bottom:583.773333pt;}
.y155{bottom:588.093333pt;}
.yd5{bottom:589.213333pt;}
.y1c{bottom:596.093333pt;}
.y70{bottom:602.653333pt;}
.y49{bottom:603.773333pt;}
.y114{bottom:605.693333pt;}
.y13c{bottom:607.933333pt;}
.yaa{bottom:609.693333pt;}
.y154{bottom:613.373333pt;}
.y82{bottom:618.013333pt;}
.yd7{bottom:620.253333pt;}
.y1b{bottom:621.373333pt;}
.y6f{bottom:627.933333pt;}
.y48{bottom:629.053333pt;}
.y113{bottom:631.613333pt;}
.y13b{bottom:632.893333pt;}
.ya9{bottom:635.613333pt;}
.y153{bottom:638.653333pt;}
.y1a{bottom:646.653333pt;}
.y6e{bottom:653.213333pt;}
.y47{bottom:654.333333pt;}
.y112{bottom:657.533333pt;}
.yd4{bottom:658.333333pt;}
.y13a{bottom:658.653333pt;}
.ya2{bottom:661.533333pt;}
.y152{bottom:663.933333pt;}
.y19{bottom:671.933333pt;}
.y6d{bottom:678.493333pt;}
.y46{bottom:679.613333pt;}
.y106{bottom:683.613333pt;}
.y139{bottom:683.933333pt;}
.y9e{bottom:687.613333pt;}
.yd0{bottom:688.893333pt;}
.y151{bottom:689.213333pt;}
.yd3{bottom:694.173333pt;}
.y18{bottom:697.213333pt;}
.y6c{bottom:703.933333pt;}
.y45{bottom:704.893333pt;}
.y10d{bottom:709.533333pt;}
.ya0{bottom:713.533333pt;}
.ycf{bottom:714.173333pt;}
.y138{bottom:714.493333pt;}
.yd2{bottom:719.613333pt;}
.y17{bottom:727.773333pt;}
.y6b{bottom:729.253333pt;}
.y5e{bottom:729.893333pt;}
.y44{bottom:730.213333pt;}
.y10c{bottom:735.493333pt;}
.yce{bottom:739.653333pt;}
.y137{bottom:739.813333pt;}
.yd1{bottom:744.933333pt;}
.y9d{bottom:751.493333pt;}
.y16{bottom:753.093333pt;}
.y6a{bottom:754.533333pt;}
.y43{bottom:755.493333pt;}
.y10b{bottom:761.573333pt;}
.y136{bottom:765.093333pt;}
.ycd{bottom:770.213333pt;}
.y9c{bottom:776.773333pt;}
.y15{bottom:778.533333pt;}
.y69{bottom:779.813333pt;}
.y42{bottom:780.773333pt;}
.yc8{bottom:784.133333pt;}
.y103{bottom:787.493333pt;}
.y135{bottom:790.373333pt;}
.y9b{bottom:802.213333pt;}
.y14{bottom:803.813333pt;}
.y133{bottom:804.453333pt;}
.y68{bottom:805.093333pt;}
.y41{bottom:806.213333pt;}
.ycc{bottom:810.053333pt;}
.y105{bottom:813.413333pt;}
.y9a{bottom:827.493333pt;}
.y13{bottom:829.093333pt;}
.y67{bottom:830.373333pt;}
.y40{bottom:831.493333pt;}
.y81{bottom:834.853333pt;}
.y132{bottom:835.653333pt;}
.ycb{bottom:836.133333pt;}
.y102{bottom:851.333333pt;}
.y99{bottom:852.773333pt;}
.y12{bottom:854.373333pt;}
.y66{bottom:855.653333pt;}
.y80{bottom:856.613333pt;}
.y3f{bottom:856.773333pt;}
.y130{bottom:861.573333pt;}
.yca{bottom:862.053333pt;}
.y98{bottom:866.693333pt;}
.y11{bottom:874.053333pt;}
.y101{bottom:876.773333pt;}
.y65{bottom:880.933333pt;}
.y3e{bottom:882.053333pt;}
.yc7{bottom:887.973333pt;}
.y97{bottom:892.613333pt;}
.y12f{bottom:892.933333pt;}
.y10{bottom:899.333333pt;}
.y100{bottom:902.053333pt;}
.y64{bottom:906.213333pt;}
.y3d{bottom:907.333333pt;}
.yc2{bottom:913.893333pt;}
.y4{bottom:918.053333pt;}
.y96{bottom:918.693333pt;}
.y12e{bottom:918.853333pt;}
.yff{bottom:927.333333pt;}
.y63{bottom:931.653333pt;}
.y3c{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.yc4{bottom:939.973333pt;}
.y94{bottom:944.613333pt;}
.y12c{bottom:944.933333pt;}
.yfe{bottom:952.640000pt;}
.y2{bottom:953.440000pt;}
.y62{bottom:956.640000pt;}
.y3b{bottom:957.920000pt;}
.y93{bottom:970.560000pt;}
.yc1{bottom:977.920000pt;}
.y61{bottom:982.240000pt;}
.y168{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h13{height:25.280000pt;}
.h14{height:25.312000pt;}
.h16{height:25.440000pt;}
.h23{height:25.632000pt;}
.h6{height:29.760000pt;}
.h1f{height:30.400000pt;}
.h25{height:30.560000pt;}
.h24{height:30.720000pt;}
.hb{height:36.667500pt;}
.h26{height:41.112500pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h18{height:51.200000pt;}
.h15{height:51.232000pt;}
.h1b{height:51.392000pt;}
.h2{height:52.108438pt;}
.h10{height:53.937500pt;}
.h9{height:56.017500pt;}
.h1e{height:56.320000pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h11{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h1c{height:76.454167pt;}
.h1a{height:78.907500pt;}
.h12{height:98.705643pt;}
.hf{height:98.705648pt;}
.h19{height:103.072000pt;}
.h22{height:103.232000pt;}
.h1d{height:129.120000pt;}
.h20{height:129.152000pt;}
.h17{height:129.280000pt;}
.h21{height:129.440000pt;}
.h4{height:148.666667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w3a{width:51.360000pt;}
.w3c{width:51.520000pt;}
.w3b{width:51.552000pt;}
.w38{width:52.352000pt;}
.w32{width:61.120000pt;}
.w39{width:62.080000pt;}
.w23{width:70.080000pt;}
.w3d{width:73.440000pt;}
.w1f{width:83.360000pt;}
.w13{width:90.112000pt;}
.w28{width:93.312000pt;}
.w26{width:93.472000pt;}
.w29{width:93.600000pt;}
.w20{width:94.752000pt;}
.w21{width:95.040000pt;}
.w22{width:95.072000pt;}
.w12{width:98.080000pt;}
.w10{width:98.112000pt;}
.wf{width:98.240000pt;}
.w11{width:98.272000pt;}
.wb{width:98.432000pt;}
.w2d{width:100.032000pt;}
.w2f{width:100.160000pt;}
.w30{width:100.192000pt;}
.w2a{width:100.352000pt;}
.w18{width:100.480000pt;}
.w1a{width:100.640000pt;}
.w16{width:100.672000pt;}
.w19{width:100.832000pt;}
.w27{width:100.960000pt;}
.w31{width:103.392000pt;}
.w35{width:103.520000pt;}
.w34{width:103.552000pt;}
.w36{width:103.712000pt;}
.wd{width:109.472000pt;}
.w2e{width:114.560000pt;}
.w33{width:115.072000pt;}
.we{width:115.200000pt;}
.w17{width:122.400000pt;}
.w37{width:125.440000pt;}
.w1b{width:128.032000pt;}
.w40{width:140.960000pt;}
.w24{width:147.226667pt;}
.w1e{width:149.306667pt;}
.w1d{width:165.786667pt;}
.w3f{width:169.466667pt;}
.w8{width:177.786667pt;}
.w9{width:178.106667pt;}
.wa{width:184.186667pt;}
.w25{width:187.546667pt;}
.w1c{width:190.426667pt;}
.wc{width:196.986667pt;}
.w2c{width:200.986667pt;}
.w2b{width:201.146667pt;}
.w14{width:201.946667pt;}
.w15{width:202.106667pt;}
.w3{width:321.186667pt;}
.w3e{width:406.173333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:0.960000pt;}
.x41{left:2.400000pt;}
.x46{left:4.160000pt;}
.x31{left:5.120000pt;}
.x10{left:6.880000pt;}
.x7{left:9.600000pt;}
.x1c{left:12.000000pt;}
.xb{left:13.440000pt;}
.x47{left:14.560000pt;}
.x4{left:16.160000pt;}
.x38{left:19.040000pt;}
.x15{left:20.160000pt;}
.x2a{left:22.880000pt;}
.x1b{left:23.840000pt;}
.x37{left:26.560000pt;}
.xa{left:28.160000pt;}
.x3f{left:29.440000pt;}
.x1a{left:31.200000pt;}
.x26{left:46.560000pt;}
.x2{left:47.999988pt;}
.x13{left:53.760000pt;}
.x1f{left:56.160000pt;}
.x4b{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x1d{left:138.746667pt;}
.x11{left:147.066667pt;}
.x32{left:148.986667pt;}
.x39{left:152.026667pt;}
.x24{left:176.826667pt;}
.x2b{left:196.346667pt;}
.x3a{left:213.786667pt;}
.xd{left:226.426667pt;}
.x22{left:240.026667pt;}
.x17{left:245.946667pt;}
.x35{left:249.786667pt;}
.x40{left:266.786667pt;}
.x29{left:272.226667pt;}
.x2f{left:290.306667pt;}
.x3b{left:329.506667pt;}
.x1e{left:341.346667pt;}
.x12{left:344.866667pt;}
.x33{left:350.786667pt;}
.x25{left:367.906667pt;}
.x42{left:381.506667pt;}
.x2c{left:384.546667pt;}
.xe{left:404.866667pt;}
.x8{left:428.573321pt;}
.x3c{left:433.693333pt;}
.x23{left:442.813333pt;}
.x19{left:443.773333pt;}
.x36{left:451.613333pt;}
.x4a{left:452.573321pt;}
.x48{left:454.813333pt;}
.x5{left:463.133333pt;}
.x30{left:478.493333pt;}
.x43{left:485.853333pt;}
.x27{left:534.493333pt;}
.x3d{left:538.013333pt;}
.x14{left:542.493333pt;}
.x20{left:544.093333pt;}
.x34{left:552.573333pt;}
.x2d{left:572.733333pt;}
.xf{left:583.613333pt;}
.x44{left:590.173333pt;}
.x49{left:624.933333pt;}
.x3e{left:642.373333pt;}
.x21{left:645.413333pt;}
.x16{left:652.613333pt;}
.x2e{left:666.853333pt;}
.x28{left:684.453333pt;}
.x45{left:694.373333pt;}
.xc{left:708.613321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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