
    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_3f51eec4dd5b8b9196d209ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_eaf3a14c4b9db6088b1a7bd4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_500cbac265a061bee5309f81.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_11ae851d972e4345db1ddc6f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.866211;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_6d678460a86857320ebe8891.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.904297;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_93867ebcae87b2f722245a08.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_4118b75f2b57ae737f605b4d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.871094;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_fe33f7e3bdb5709c302129dc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.873535;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_a67f213485a1a253cb6845df.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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);}
.v1{vertical-align:-40.320000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.ls29{letter-spacing:-0.968544px;}
.ls2a{letter-spacing:-0.859104px;}
.ls28{letter-spacing:-0.842688px;}
.ls2c{letter-spacing:-0.585504px;}
.ls2b{letter-spacing:-0.569088px;}
.ls26{letter-spacing:-0.404928px;}
.ls1a{letter-spacing:-0.342144px;}
.ls22{letter-spacing:-0.310464px;}
.ls17{letter-spacing:-0.297792px;}
.ls23{letter-spacing:-0.266112px;}
.ls1e{letter-spacing:-0.253440px;}
.lsb{letter-spacing:-0.234432px;}
.lsc{letter-spacing:-0.221760px;}
.ls2d{letter-spacing:-0.218880px;}
.ls16{letter-spacing:-0.215424px;}
.ls10{letter-spacing:-0.209088px;}
.ls21{letter-spacing:-0.202752px;}
.ls7{letter-spacing:-0.196416px;}
.ls5{letter-spacing:-0.190080px;}
.ls11{letter-spacing:-0.183744px;}
.ls1f{letter-spacing:-0.177408px;}
.lsf{letter-spacing:-0.171072px;}
.ls8{letter-spacing:-0.164736px;}
.lsd{letter-spacing:-0.158400px;}
.ls2e{letter-spacing:-0.153216px;}
.ls33{letter-spacing:-0.152064px;}
.ls18{letter-spacing:-0.145728px;}
.ls3{letter-spacing:-0.133056px;}
.ls1b{letter-spacing:-0.126720px;}
.lse{letter-spacing:-0.120384px;}
.ls12{letter-spacing:-0.101376px;}
.ls15{letter-spacing:-0.095040px;}
.ls27{letter-spacing:-0.076608px;}
.ls14{letter-spacing:-0.063360px;}
.ls13{letter-spacing:-0.050688px;}
.ls6{letter-spacing:-0.014400px;}
.ls4{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.043776px;}
.ls2{letter-spacing:0.171360px;}
.ls30{letter-spacing:0.218880px;}
.ls31{letter-spacing:0.268128px;}
.lsa{letter-spacing:0.325728px;}
.ls2f{letter-spacing:0.350208px;}
.ls9{letter-spacing:0.350784px;}
.ls25{letter-spacing:0.844704px;}
.ls1c{letter-spacing:0.970704px;}
.ls24{letter-spacing:4.047840px;}
.ls20{letter-spacing:6.247152px;}
.ls19{letter-spacing:7.607520px;}
.ls1d{letter-spacing:10.528704px;}
.ls1{letter-spacing:1205.214624px;}
.ls0{letter-spacing:2019.200400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.257600px;}
.ws2{word-spacing:-14.319360px;}
.ws14{word-spacing:-14.256000px;}
.ws7{word-spacing:-14.224320px;}
.ws15{word-spacing:-14.217984px;}
.ws5{word-spacing:-14.198976px;}
.wse{word-spacing:-14.186304px;}
.ws9{word-spacing:-14.173632px;}
.wsc{word-spacing:-14.160960px;}
.ws3{word-spacing:-14.154624px;}
.ws13{word-spacing:-14.148288px;}
.wsd{word-spacing:-14.141952px;}
.ws0{word-spacing:-14.129280px;}
.wsa{word-spacing:-14.122944px;}
.ws25{word-spacing:-14.116608px;}
.ws10{word-spacing:-14.110272px;}
.wsb{word-spacing:-14.103936px;}
.ws4{word-spacing:-14.097600px;}
.ws8{word-spacing:-14.084928px;}
.ws11{word-spacing:-14.065920px;}
.ws12{word-spacing:-14.053248px;}
.wsf{word-spacing:-14.008896px;}
.ws21{word-spacing:-0.404928px;}
.ws23{word-spacing:-0.322848px;}
.ws22{word-spacing:-0.273600px;}
.ws24{word-spacing:-0.098496px;}
.ws6{word-spacing:0.000000px;}
.ws20{word-spacing:0.098496px;}
.ws1f{word-spacing:0.164160px;}
.ws16{word-spacing:0.350208px;}
.ws1d{word-spacing:0.514368px;}
.ws1e{word-spacing:0.530784px;}
.ws19{word-spacing:0.787968px;}
.ws1c{word-spacing:0.804384px;}
.ws1a{word-spacing:0.913824px;}
.ws1b{word-spacing:52.436808px;}
.ws17{word-spacing:201.787104px;}
.ws18{word-spacing:211.190232px;}
._c{margin-left:-3.796416px;}
._b{margin-left:-2.471040px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._3{width:2.787840px;}
._4{width:3.864960px;}
._9{width:5.068800px;}
._7{width:6.272640px;}
._8{width:7.666560px;}
._a{width:8.743680px;}
._6{width:9.820800px;}
._d{width:11.151360px;}
._10{width:12.659328px;}
._11{width:15.333120px;}
._5{width:16.410240px;}
._12{width:17.424000px;}
._13{width:22.556160px;}
._e{width:25.977600px;}
._1a{width:42.831360px;}
._1b{width:59.178240px;}
._15{width:73.560960px;}
._14{width:84.078720px;}
._f{width:123.361920px;}
._19{width:136.604160px;}
._18{width:214.473600px;}
._16{width:231.770880px;}
._17{width:241.528320px;}
._1{width:2492.661312px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(0,32,96);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.720000px;}
.fs0{font-size:63.360000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.ybf{bottom:4.500000px;}
.y9d{bottom:4.560000px;}
.y60{bottom:4.620000px;}
.ya7{bottom:4.680000px;}
.y6c{bottom:4.740000px;}
.yb1{bottom:4.800000px;}
.y66{bottom:4.860000px;}
.yac{bottom:4.920000px;}
.y95{bottom:4.980000px;}
.yb6{bottom:5.040000px;}
.y8f{bottom:5.100000px;}
.y64{bottom:5.160000px;}
.y9b{bottom:5.220000px;}
.yc5{bottom:5.280000px;}
.ya5{bottom:5.340000px;}
.y6a{bottom:5.400000px;}
.yaf{bottom:5.460000px;}
.y99{bottom:5.520000px;}
.yb9{bottom:5.580000px;}
.y93{bottom:5.640000px;}
.y68{bottom:5.700000px;}
.y9f{bottom:5.760000px;}
.y62{bottom:5.820000px;}
.ya9{bottom:5.880000px;}
.y91{bottom:5.940000px;}
.yb3{bottom:6.000000px;}
.yda{bottom:6.060000px;}
.ybb{bottom:6.120000px;}
.y97{bottom:6.180000px;}
.yc2{bottom:6.240000px;}
.ya2{bottom:6.300000px;}
.y165{bottom:21.240000px;}
.yd1{bottom:23.940000px;}
.ycc{bottom:24.000000px;}
.yd5{bottom:24.240000px;}
.ye8{bottom:24.420000px;}
.y8d{bottom:24.480000px;}
.yd8{bottom:24.540000px;}
.yde{bottom:24.660000px;}
.y123{bottom:24.840000px;}
.ydc{bottom:24.900000px;}
.ycf{bottom:24.960000px;}
.y121{bottom:25.080000px;}
.yd9{bottom:25.140000px;}
.yf8{bottom:25.380000px;}
.y164{bottom:37.080000px;}
.y120{bottom:44.160000px;}
.y12a{bottom:44.580000px;}
.y163{bottom:52.920000px;}
.y2{bottom:58.680000px;}
.y125{bottom:63.600000px;}
.y159{bottom:70.560000px;}
.yce{bottom:87.000000px;}
.y5e{bottom:88.560000px;}
.y149{bottom:95.760000px;}
.yfb{bottom:97.500000px;}
.y8b{bottom:99.720000px;}
.y12d{bottom:100.080000px;}
.y15a{bottom:101.520000px;}
.y173{bottom:105.480000px;}
.y35{bottom:114.120000px;}
.y148{bottom:114.840000px;}
.y157{bottom:115.560000px;}
.yfa{bottom:117.000000px;}
.y8a{bottom:118.800000px;}
.y12c{bottom:119.160000px;}
.y172{bottom:124.920000px;}
.ycd{bottom:126.000000px;}
.y15b{bottom:132.480000px;}
.y12b{bottom:133.500000px;}
.y34{bottom:133.560000px;}
.y147{bottom:133.920000px;}
.yf9{bottom:136.500000px;}
.y156{bottom:136.800000px;}
.y89{bottom:138.240000px;}
.y150{bottom:139.320000px;}
.y171{bottom:144.000000px;}
.y158{bottom:146.520000px;}
.ycb{bottom:147.000000px;}
.y33{bottom:152.640000px;}
.y146{bottom:153.360000px;}
.y88{bottom:157.320000px;}
.y15c{bottom:163.440000px;}
.y32{bottom:172.080000px;}
.y145{bottom:172.440000px;}
.y129{bottom:172.500000px;}
.yf7{bottom:175.500000px;}
.y87{bottom:176.400000px;}
.y151{bottom:177.480000px;}
.y170{bottom:182.520000px;}
.y31{bottom:191.160000px;}
.y144{bottom:191.880000px;}
.y14c{bottom:192.600000px;}
.y15d{bottom:194.400000px;}
.y86{bottom:195.840000px;}
.y16f{bottom:201.600000px;}
.y14b{bottom:208.080000px;}
.y30{bottom:210.240000px;}
.y143{bottom:210.960000px;}
.y85{bottom:214.920000px;}
.yf6{bottom:220.680000px;}
.y16e{bottom:221.040000px;}
.y15e{bottom:225.360000px;}
.yca{bottom:229.320000px;}
.y2f{bottom:229.680000px;}
.y142{bottom:230.040000px;}
.y128{bottom:231.000000px;}
.y14f{bottom:234.000000px;}
.y84{bottom:234.360000px;}
.y152{bottom:239.040000px;}
.yf5{bottom:240.120000px;}
.y2e{bottom:248.760000px;}
.y141{bottom:249.480000px;}
.y127{bottom:252.000000px;}
.y83{bottom:253.440000px;}
.y15f{bottom:256.320000px;}
.yf4{bottom:259.200000px;}
.y16d{bottom:259.560000px;}
.yc9{bottom:267.840000px;}
.y2d{bottom:268.200000px;}
.y140{bottom:268.560000px;}
.y126{bottom:271.500000px;}
.y82{bottom:272.520000px;}
.yf3{bottom:278.280000px;}
.y16c{bottom:278.640000px;}
.y2c{bottom:287.280000px;}
.y13f{bottom:288.000000px;}
.y124{bottom:291.000000px;}
.y81{bottom:291.960000px;}
.yf2{bottom:297.720000px;}
.y153{bottom:298.800000px;}
.y155{bottom:300.960000px;}
.y2b{bottom:306.360000px;}
.y13e{bottom:307.080000px;}
.y80{bottom:311.040000px;}
.yf1{bottom:316.800000px;}
.y16b{bottom:317.160000px;}
.y160{bottom:318.240000px;}
.y14d{bottom:320.760000px;}
.yc8{bottom:321.000000px;}
.y2a{bottom:325.800000px;}
.y13d{bottom:326.160000px;}
.y7f{bottom:330.480000px;}
.yf0{bottom:336.240000px;}
.yc7{bottom:340.500000px;}
.y29{bottom:344.880000px;}
.y13c{bottom:345.600000px;}
.y161{bottom:349.200000px;}
.y7e{bottom:349.560000px;}
.yef{bottom:355.320000px;}
.y16a{bottom:355.680000px;}
.y154{bottom:359.640000px;}
.yc6{bottom:361.500000px;}
.y14e{bottom:362.880000px;}
.y28{bottom:364.320000px;}
.y13b{bottom:364.680000px;}
.y7d{bottom:368.640000px;}
.y122{bottom:369.000000px;}
.yee{bottom:374.400000px;}
.y169{bottom:374.760000px;}
.y162{bottom:380.160000px;}
.yc4{bottom:381.000000px;}
.y27{bottom:383.400000px;}
.y13a{bottom:384.120000px;}
.y7c{bottom:388.080000px;}
.yed{bottom:393.840000px;}
.y168{bottom:394.200000px;}
.y167{bottom:399.960000px;}
.yc3{bottom:400.500000px;}
.y26{bottom:402.840000px;}
.y139{bottom:403.200000px;}
.y7b{bottom:407.160000px;}
.y11f{bottom:408.000000px;}
.yec{bottom:412.920000px;}
.y5d{bottom:413.280000px;}
.yc1{bottom:420.000000px;}
.y25{bottom:421.920000px;}
.y138{bottom:422.280000px;}
.y166{bottom:424.440000px;}
.y7a{bottom:426.600000px;}
.y5c{bottom:432.360000px;}
.y24{bottom:441.000000px;}
.y137{bottom:441.720000px;}
.y79{bottom:445.680000px;}
.yeb{bottom:451.440000px;}
.y5b{bottom:451.800000px;}
.y23{bottom:460.440000px;}
.yc0{bottom:460.500000px;}
.y136{bottom:460.800000px;}
.y78{bottom:464.760000px;}
.y11e{bottom:466.500000px;}
.yea{bottom:470.520000px;}
.y5a{bottom:470.880000px;}
.y22{bottom:479.520000px;}
.y135{bottom:480.240000px;}
.ybe{bottom:481.500000px;}
.y77{bottom:484.200000px;}
.ye9{bottom:484.500000px;}
.y11d{bottom:487.500000px;}
.y59{bottom:490.320000px;}
.y21{bottom:498.960000px;}
.y134{bottom:499.320000px;}
.ybd{bottom:501.000000px;}
.y76{bottom:503.280000px;}
.ye7{bottom:505.500000px;}
.y58{bottom:509.400000px;}
.y11c{bottom:512.280000px;}
.y20{bottom:518.400000px;}
.ybc{bottom:520.500000px;}
.y75{bottom:522.720000px;}
.y57{bottom:528.480000px;}
.y11b{bottom:531.360000px;}
.y133{bottom:537.840000px;}
.y1f{bottom:540.000000px;}
.y74{bottom:541.800000px;}
.ye6{bottom:544.500000px;}
.y56{bottom:547.920000px;}
.y11a{bottom:550.440000px;}
.y132{bottom:556.920000px;}
.y1e{bottom:559.440000px;}
.yba{bottom:561.000000px;}
.y73{bottom:561.240000px;}
.ye5{bottom:564.000000px;}
.y55{bottom:567.000000px;}
.y119{bottom:569.880000px;}
.y131{bottom:576.360000px;}
.y72{bottom:580.320000px;}
.yb8{bottom:580.500000px;}
.y1d{bottom:581.040000px;}
.y54{bottom:586.440000px;}
.y118{bottom:588.960000px;}
.y130{bottom:595.440000px;}
.y71{bottom:599.400000px;}
.yb7{bottom:600.000000px;}
.y1c{bottom:600.480000px;}
.ye4{bottom:603.000000px;}
.y53{bottom:605.520000px;}
.y117{bottom:608.400000px;}
.y12f{bottom:614.520000px;}
.y70{bottom:618.840000px;}
.y1b{bottom:619.560000px;}
.yb5{bottom:621.000000px;}
.ye3{bottom:624.000000px;}
.y52{bottom:624.600000px;}
.y116{bottom:627.480000px;}
.y12e{bottom:629.640000px;}
.y14a{bottom:631.800000px;}
.y6f{bottom:637.920000px;}
.y1a{bottom:639.000000px;}
.yb4{bottom:640.500000px;}
.ye2{bottom:643.500000px;}
.y51{bottom:644.040000px;}
.y115{bottom:646.560000px;}
.y6e{bottom:657.360000px;}
.y19{bottom:658.080000px;}
.yb2{bottom:660.000000px;}
.y50{bottom:663.120000px;}
.y114{bottom:666.000000px;}
.y6d{bottom:676.440000px;}
.y18{bottom:677.160000px;}
.yb0{bottom:681.000000px;}
.ye1{bottom:682.500000px;}
.y4f{bottom:682.560000px;}
.y113{bottom:685.080000px;}
.y6b{bottom:691.500000px;}
.y17{bottom:696.600000px;}
.yae{bottom:700.500000px;}
.y4e{bottom:701.640000px;}
.ye0{bottom:703.500000px;}
.y112{bottom:704.520000px;}
.y69{bottom:711.000000px;}
.y16{bottom:715.680000px;}
.yad{bottom:720.000000px;}
.y4d{bottom:720.720000px;}
.ydf{bottom:723.000000px;}
.y111{bottom:723.600000px;}
.y67{bottom:730.500000px;}
.y15{bottom:735.120000px;}
.y4c{bottom:740.160000px;}
.yab{bottom:741.000000px;}
.ydd{bottom:742.500000px;}
.y110{bottom:742.680000px;}
.y65{bottom:751.500000px;}
.y14{bottom:754.200000px;}
.y10f{bottom:757.500000px;}
.y4b{bottom:759.240000px;}
.yaa{bottom:760.500000px;}
.y63{bottom:771.000000px;}
.y13{bottom:773.280000px;}
.y10e{bottom:777.000000px;}
.y4a{bottom:778.680000px;}
.ya8{bottom:780.000000px;}
.ydb{bottom:781.500000px;}
.y61{bottom:790.500000px;}
.y12{bottom:792.720000px;}
.y10d{bottom:796.500000px;}
.y49{bottom:797.760000px;}
.ya6{bottom:801.000000px;}
.y5f{bottom:811.500000px;}
.y11{bottom:811.800000px;}
.y48{bottom:816.840000px;}
.y10c{bottom:817.500000px;}
.ya4{bottom:820.500000px;}
.y10{bottom:831.240000px;}
.y47{bottom:836.280000px;}
.y10b{bottom:837.000000px;}
.ya3{bottom:840.000000px;}
.yf{bottom:850.320000px;}
.y46{bottom:855.360000px;}
.y10a{bottom:858.000000px;}
.ya1{bottom:859.500000px;}
.ye{bottom:869.760000px;}
.y45{bottom:874.800000px;}
.y109{bottom:877.500000px;}
.ya0{bottom:880.500000px;}
.yd{bottom:889.200000px;}
.y44{bottom:893.880000px;}
.y108{bottom:897.000000px;}
.y9e{bottom:900.000000px;}
.yc{bottom:911.160000px;}
.y43{bottom:912.960000px;}
.y107{bottom:916.500000px;}
.y9c{bottom:921.000000px;}
.y42{bottom:932.400000px;}
.yb{bottom:933.120000px;}
.y106{bottom:937.500000px;}
.y9a{bottom:940.500000px;}
.y41{bottom:951.480000px;}
.ya{bottom:954.720000px;}
.y105{bottom:957.000000px;}
.y98{bottom:960.000000px;}
.y40{bottom:970.920000px;}
.y9{bottom:974.160000px;}
.y104{bottom:976.500000px;}
.y96{bottom:979.500000px;}
.y3f{bottom:990.000000px;}
.y8{bottom:996.840000px;}
.y103{bottom:997.500000px;}
.y94{bottom:1000.500000px;}
.y3e{bottom:1009.440000px;}
.y102{bottom:1017.000000px;}
.yd7{bottom:1018.500000px;}
.y92{bottom:1020.000000px;}
.y7{bottom:1022.400000px;}
.y3d{bottom:1028.520000px;}
.y101{bottom:1036.500000px;}
.yd6{bottom:1038.000000px;}
.y90{bottom:1039.500000px;}
.y6{bottom:1047.240000px;}
.y3c{bottom:1047.600000px;}
.y100{bottom:1057.500000px;}
.yd4{bottom:1059.000000px;}
.y8e{bottom:1060.500000px;}
.y3b{bottom:1067.040000px;}
.y5{bottom:1068.840000px;}
.yff{bottom:1077.000000px;}
.y8c{bottom:1080.000000px;}
.y3a{bottom:1086.120000px;}
.y4{bottom:1087.920000px;}
.yfe{bottom:1096.500000px;}
.yd3{bottom:1098.000000px;}
.y3{bottom:1103.040000px;}
.y39{bottom:1105.560000px;}
.yd2{bottom:1117.500000px;}
.y38{bottom:1124.640000px;}
.yfd{bottom:1137.000000px;}
.yd0{bottom:1138.500000px;}
.y37{bottom:1143.720000px;}
.yfc{bottom:1156.500000px;}
.y36{bottom:1163.160000px;}
.y1{bottom:1194.120000px;}
.h8{height:19.500000px;}
.ha{height:21.000000px;}
.h10{height:38.234531px;}
.hc{height:39.000000px;}
.hb{height:40.500000px;}
.h7{height:43.900313px;}
.h11{height:43.994531px;}
.h9{height:44.055000px;}
.h2{height:45.478125px;}
.h6{height:46.004063px;}
.h4{height:47.988281px;}
.h3{height:48.972656px;}
.hd{height:60.000000px;}
.h5{height:61.987500px;}
.he{height:79.500000px;}
.hf{height:450.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:73.500000px;}
.wf{width:75.000000px;}
.w8{width:82.500000px;}
.wb{width:108.000000px;}
.wa{width:109.500000px;}
.wd{width:118.500000px;}
.w5{width:126.000000px;}
.we{width:127.500000px;}
.w6{width:138.000000px;}
.w7{width:139.500000px;}
.w2{width:196.500000px;}
.w4{width:240.000000px;}
.wc{width:279.000000px;}
.w9{width:426.000000px;}
.w3{width:526.500000px;}
.w10{width:723.000000px;}
.w12{width:761.400000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xa{left:8.099856px;}
.x1c{left:9.180000px;}
.x2e{left:17.302320px;}
.x1e{left:42.465000px;}
.x30{left:47.064300px;}
.x2f{left:49.561800px;}
.x27{left:52.171350px;}
.x1{left:84.959856px;}
.x4{left:106.184700px;}
.x1f{left:107.779200px;}
.x31{left:111.549750px;}
.x5{left:118.449468px;}
.x28{left:127.730400px;}
.x6{left:167.150376px;}
.x20{left:178.215750px;}
.x3{left:181.064592px;}
.x32{left:188.012550px;}
.x29{left:193.044600px;}
.x16{left:222.000000px;}
.x21{left:253.774950px;}
.x34{left:258.374250px;}
.x33{left:263.099250px;}
.x2a{left:268.603650px;}
.xb{left:282.000000px;}
.x17{left:295.500000px;}
.x22{left:319.089150px;}
.xc{left:325.500000px;}
.x35{left:330.130950px;}
.x12{left:364.500000px;}
.x18{left:369.000000px;}
.x36{left:391.563750px;}
.x23{left:393.264600px;}
.x2b{left:408.093300px;}
.x37{left:412.042500px;}
.x2{left:432.700200px;}
.x19{left:442.500000px;}
.xd{left:450.000000px;}
.x24{left:459.962400px;}
.x38{left:469.759050px;}
.x2c{left:478.530000px;}
.x13{left:481.500000px;}
.x10{left:510.000000px;}
.x1a{left:514.500000px;}
.x9{left:528.203160px;}
.x25{left:530.399100px;}
.x39{left:538.778550px;}
.x3a{left:552.736050px;}
.xe{left:588.000000px;}
.x3b{left:603.687450px;}
.x26{left:605.958150px;}
.x14{left:607.500000px;}
.x2d{left:615.664500px;}
.x11{left:619.500000px;}
.x7{left:639.219960px;}
.x1b{left:661.500000px;}
.x3c{left:704.452050px;}
.xf{left:726.000000px;}
.x15{left:733.500000px;}
.x8{left:807.809760px;}
.x1d{left:868.664880px;}
@media print{
.v1{vertical-align:-35.840000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.ls29{letter-spacing:-0.860928pt;}
.ls2a{letter-spacing:-0.763648pt;}
.ls28{letter-spacing:-0.749056pt;}
.ls2c{letter-spacing:-0.520448pt;}
.ls2b{letter-spacing:-0.505856pt;}
.ls26{letter-spacing:-0.359936pt;}
.ls1a{letter-spacing:-0.304128pt;}
.ls22{letter-spacing:-0.275968pt;}
.ls17{letter-spacing:-0.264704pt;}
.ls23{letter-spacing:-0.236544pt;}
.ls1e{letter-spacing:-0.225280pt;}
.lsb{letter-spacing:-0.208384pt;}
.lsc{letter-spacing:-0.197120pt;}
.ls2d{letter-spacing:-0.194560pt;}
.ls16{letter-spacing:-0.191488pt;}
.ls10{letter-spacing:-0.185856pt;}
.ls21{letter-spacing:-0.180224pt;}
.ls7{letter-spacing:-0.174592pt;}
.ls5{letter-spacing:-0.168960pt;}
.ls11{letter-spacing:-0.163328pt;}
.ls1f{letter-spacing:-0.157696pt;}
.lsf{letter-spacing:-0.152064pt;}
.ls8{letter-spacing:-0.146432pt;}
.lsd{letter-spacing:-0.140800pt;}
.ls2e{letter-spacing:-0.136192pt;}
.ls33{letter-spacing:-0.135168pt;}
.ls18{letter-spacing:-0.129536pt;}
.ls3{letter-spacing:-0.118272pt;}
.ls1b{letter-spacing:-0.112640pt;}
.lse{letter-spacing:-0.107008pt;}
.ls12{letter-spacing:-0.090112pt;}
.ls15{letter-spacing:-0.084480pt;}
.ls27{letter-spacing:-0.068096pt;}
.ls14{letter-spacing:-0.056320pt;}
.ls13{letter-spacing:-0.045056pt;}
.ls6{letter-spacing:-0.012800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.038912pt;}
.ls2{letter-spacing:0.152320pt;}
.ls30{letter-spacing:0.194560pt;}
.ls31{letter-spacing:0.238336pt;}
.lsa{letter-spacing:0.289536pt;}
.ls2f{letter-spacing:0.311296pt;}
.ls9{letter-spacing:0.311808pt;}
.ls25{letter-spacing:0.750848pt;}
.ls1c{letter-spacing:0.862848pt;}
.ls24{letter-spacing:3.598080pt;}
.ls20{letter-spacing:5.553024pt;}
.ls19{letter-spacing:6.762240pt;}
.ls1d{letter-spacing:9.358848pt;}
.ls1{letter-spacing:1071.301888pt;}
.ls0{letter-spacing:1794.844800pt;}
.ws1{word-spacing:-14.451200pt;}
.ws2{word-spacing:-12.728320pt;}
.ws14{word-spacing:-12.672000pt;}
.ws7{word-spacing:-12.643840pt;}
.ws15{word-spacing:-12.638208pt;}
.ws5{word-spacing:-12.621312pt;}
.wse{word-spacing:-12.610048pt;}
.ws9{word-spacing:-12.598784pt;}
.wsc{word-spacing:-12.587520pt;}
.ws3{word-spacing:-12.581888pt;}
.ws13{word-spacing:-12.576256pt;}
.wsd{word-spacing:-12.570624pt;}
.ws0{word-spacing:-12.559360pt;}
.wsa{word-spacing:-12.553728pt;}
.ws25{word-spacing:-12.548096pt;}
.ws10{word-spacing:-12.542464pt;}
.wsb{word-spacing:-12.536832pt;}
.ws4{word-spacing:-12.531200pt;}
.ws8{word-spacing:-12.519936pt;}
.ws11{word-spacing:-12.503040pt;}
.ws12{word-spacing:-12.491776pt;}
.wsf{word-spacing:-12.452352pt;}
.ws21{word-spacing:-0.359936pt;}
.ws23{word-spacing:-0.286976pt;}
.ws22{word-spacing:-0.243200pt;}
.ws24{word-spacing:-0.087552pt;}
.ws6{word-spacing:0.000000pt;}
.ws20{word-spacing:0.087552pt;}
.ws1f{word-spacing:0.145920pt;}
.ws16{word-spacing:0.311296pt;}
.ws1d{word-spacing:0.457216pt;}
.ws1e{word-spacing:0.471808pt;}
.ws19{word-spacing:0.700416pt;}
.ws1c{word-spacing:0.715008pt;}
.ws1a{word-spacing:0.812288pt;}
.ws1b{word-spacing:46.610496pt;}
.ws17{word-spacing:179.366315pt;}
.ws18{word-spacing:187.724651pt;}
._c{margin-left:-3.374592pt;}
._b{margin-left:-2.196480pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._3{width:2.478080pt;}
._4{width:3.435520pt;}
._9{width:4.505600pt;}
._7{width:5.575680pt;}
._8{width:6.814720pt;}
._a{width:7.772160pt;}
._6{width:8.729600pt;}
._d{width:9.912320pt;}
._10{width:11.252736pt;}
._11{width:13.629440pt;}
._5{width:14.586880pt;}
._12{width:15.488000pt;}
._13{width:20.049920pt;}
._e{width:23.091200pt;}
._1a{width:38.072320pt;}
._1b{width:52.602880pt;}
._15{width:65.387520pt;}
._14{width:74.736640pt;}
._f{width:109.655040pt;}
._19{width:121.425920pt;}
._18{width:190.643200pt;}
._16{width:206.018560pt;}
._17{width:214.691840pt;}
._1{width:2215.698944pt;}
.fs3{font-size:48.640000pt;}
.fs0{font-size:56.320000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.ybf{bottom:4.000000pt;}
.y9d{bottom:4.053333pt;}
.y60{bottom:4.106667pt;}
.ya7{bottom:4.160000pt;}
.y6c{bottom:4.213333pt;}
.yb1{bottom:4.266667pt;}
.y66{bottom:4.320000pt;}
.yac{bottom:4.373333pt;}
.y95{bottom:4.426667pt;}
.yb6{bottom:4.480000pt;}
.y8f{bottom:4.533333pt;}
.y64{bottom:4.586667pt;}
.y9b{bottom:4.640000pt;}
.yc5{bottom:4.693333pt;}
.ya5{bottom:4.746667pt;}
.y6a{bottom:4.800000pt;}
.yaf{bottom:4.853333pt;}
.y99{bottom:4.906667pt;}
.yb9{bottom:4.960000pt;}
.y93{bottom:5.013333pt;}
.y68{bottom:5.066667pt;}
.y9f{bottom:5.120000pt;}
.y62{bottom:5.173333pt;}
.ya9{bottom:5.226667pt;}
.y91{bottom:5.280000pt;}
.yb3{bottom:5.333333pt;}
.yda{bottom:5.386667pt;}
.ybb{bottom:5.440000pt;}
.y97{bottom:5.493333pt;}
.yc2{bottom:5.546667pt;}
.ya2{bottom:5.600000pt;}
.y165{bottom:18.880000pt;}
.yd1{bottom:21.280000pt;}
.ycc{bottom:21.333333pt;}
.yd5{bottom:21.546667pt;}
.ye8{bottom:21.706667pt;}
.y8d{bottom:21.760000pt;}
.yd8{bottom:21.813333pt;}
.yde{bottom:21.920000pt;}
.y123{bottom:22.080000pt;}
.ydc{bottom:22.133333pt;}
.ycf{bottom:22.186667pt;}
.y121{bottom:22.293333pt;}
.yd9{bottom:22.346667pt;}
.yf8{bottom:22.560000pt;}
.y164{bottom:32.960000pt;}
.y120{bottom:39.253333pt;}
.y12a{bottom:39.626667pt;}
.y163{bottom:47.040000pt;}
.y2{bottom:52.160000pt;}
.y125{bottom:56.533333pt;}
.y159{bottom:62.720000pt;}
.yce{bottom:77.333333pt;}
.y5e{bottom:78.720000pt;}
.y149{bottom:85.120000pt;}
.yfb{bottom:86.666667pt;}
.y8b{bottom:88.640000pt;}
.y12d{bottom:88.960000pt;}
.y15a{bottom:90.240000pt;}
.y173{bottom:93.760000pt;}
.y35{bottom:101.440000pt;}
.y148{bottom:102.080000pt;}
.y157{bottom:102.720000pt;}
.yfa{bottom:104.000000pt;}
.y8a{bottom:105.600000pt;}
.y12c{bottom:105.920000pt;}
.y172{bottom:111.040000pt;}
.ycd{bottom:112.000000pt;}
.y15b{bottom:117.760000pt;}
.y12b{bottom:118.666667pt;}
.y34{bottom:118.720000pt;}
.y147{bottom:119.040000pt;}
.yf9{bottom:121.333333pt;}
.y156{bottom:121.600000pt;}
.y89{bottom:122.880000pt;}
.y150{bottom:123.840000pt;}
.y171{bottom:128.000000pt;}
.y158{bottom:130.240000pt;}
.ycb{bottom:130.666667pt;}
.y33{bottom:135.680000pt;}
.y146{bottom:136.320000pt;}
.y88{bottom:139.840000pt;}
.y15c{bottom:145.280000pt;}
.y32{bottom:152.960000pt;}
.y145{bottom:153.280000pt;}
.y129{bottom:153.333333pt;}
.yf7{bottom:156.000000pt;}
.y87{bottom:156.800000pt;}
.y151{bottom:157.760000pt;}
.y170{bottom:162.240000pt;}
.y31{bottom:169.920000pt;}
.y144{bottom:170.560000pt;}
.y14c{bottom:171.200000pt;}
.y15d{bottom:172.800000pt;}
.y86{bottom:174.080000pt;}
.y16f{bottom:179.200000pt;}
.y14b{bottom:184.960000pt;}
.y30{bottom:186.880000pt;}
.y143{bottom:187.520000pt;}
.y85{bottom:191.040000pt;}
.yf6{bottom:196.160000pt;}
.y16e{bottom:196.480000pt;}
.y15e{bottom:200.320000pt;}
.yca{bottom:203.840000pt;}
.y2f{bottom:204.160000pt;}
.y142{bottom:204.480000pt;}
.y128{bottom:205.333333pt;}
.y14f{bottom:208.000000pt;}
.y84{bottom:208.320000pt;}
.y152{bottom:212.480000pt;}
.yf5{bottom:213.440000pt;}
.y2e{bottom:221.120000pt;}
.y141{bottom:221.760000pt;}
.y127{bottom:224.000000pt;}
.y83{bottom:225.280000pt;}
.y15f{bottom:227.840000pt;}
.yf4{bottom:230.400000pt;}
.y16d{bottom:230.720000pt;}
.yc9{bottom:238.080000pt;}
.y2d{bottom:238.400000pt;}
.y140{bottom:238.720000pt;}
.y126{bottom:241.333333pt;}
.y82{bottom:242.240000pt;}
.yf3{bottom:247.360000pt;}
.y16c{bottom:247.680000pt;}
.y2c{bottom:255.360000pt;}
.y13f{bottom:256.000000pt;}
.y124{bottom:258.666667pt;}
.y81{bottom:259.520000pt;}
.yf2{bottom:264.640000pt;}
.y153{bottom:265.600000pt;}
.y155{bottom:267.520000pt;}
.y2b{bottom:272.320000pt;}
.y13e{bottom:272.960000pt;}
.y80{bottom:276.480000pt;}
.yf1{bottom:281.600000pt;}
.y16b{bottom:281.920000pt;}
.y160{bottom:282.880000pt;}
.y14d{bottom:285.120000pt;}
.yc8{bottom:285.333333pt;}
.y2a{bottom:289.600000pt;}
.y13d{bottom:289.920000pt;}
.y7f{bottom:293.760000pt;}
.yf0{bottom:298.880000pt;}
.yc7{bottom:302.666667pt;}
.y29{bottom:306.560000pt;}
.y13c{bottom:307.200000pt;}
.y161{bottom:310.400000pt;}
.y7e{bottom:310.720000pt;}
.yef{bottom:315.840000pt;}
.y16a{bottom:316.160000pt;}
.y154{bottom:319.680000pt;}
.yc6{bottom:321.333333pt;}
.y14e{bottom:322.560000pt;}
.y28{bottom:323.840000pt;}
.y13b{bottom:324.160000pt;}
.y7d{bottom:327.680000pt;}
.y122{bottom:328.000000pt;}
.yee{bottom:332.800000pt;}
.y169{bottom:333.120000pt;}
.y162{bottom:337.920000pt;}
.yc4{bottom:338.666667pt;}
.y27{bottom:340.800000pt;}
.y13a{bottom:341.440000pt;}
.y7c{bottom:344.960000pt;}
.yed{bottom:350.080000pt;}
.y168{bottom:350.400000pt;}
.y167{bottom:355.520000pt;}
.yc3{bottom:356.000000pt;}
.y26{bottom:358.080000pt;}
.y139{bottom:358.400000pt;}
.y7b{bottom:361.920000pt;}
.y11f{bottom:362.666667pt;}
.yec{bottom:367.040000pt;}
.y5d{bottom:367.360000pt;}
.yc1{bottom:373.333333pt;}
.y25{bottom:375.040000pt;}
.y138{bottom:375.360000pt;}
.y166{bottom:377.280000pt;}
.y7a{bottom:379.200000pt;}
.y5c{bottom:384.320000pt;}
.y24{bottom:392.000000pt;}
.y137{bottom:392.640000pt;}
.y79{bottom:396.160000pt;}
.yeb{bottom:401.280000pt;}
.y5b{bottom:401.600000pt;}
.y23{bottom:409.280000pt;}
.yc0{bottom:409.333333pt;}
.y136{bottom:409.600000pt;}
.y78{bottom:413.120000pt;}
.y11e{bottom:414.666667pt;}
.yea{bottom:418.240000pt;}
.y5a{bottom:418.560000pt;}
.y22{bottom:426.240000pt;}
.y135{bottom:426.880000pt;}
.ybe{bottom:428.000000pt;}
.y77{bottom:430.400000pt;}
.ye9{bottom:430.666667pt;}
.y11d{bottom:433.333333pt;}
.y59{bottom:435.840000pt;}
.y21{bottom:443.520000pt;}
.y134{bottom:443.840000pt;}
.ybd{bottom:445.333333pt;}
.y76{bottom:447.360000pt;}
.ye7{bottom:449.333333pt;}
.y58{bottom:452.800000pt;}
.y11c{bottom:455.360000pt;}
.y20{bottom:460.800000pt;}
.ybc{bottom:462.666667pt;}
.y75{bottom:464.640000pt;}
.y57{bottom:469.760000pt;}
.y11b{bottom:472.320000pt;}
.y133{bottom:478.080000pt;}
.y1f{bottom:480.000000pt;}
.y74{bottom:481.600000pt;}
.ye6{bottom:484.000000pt;}
.y56{bottom:487.040000pt;}
.y11a{bottom:489.280000pt;}
.y132{bottom:495.040000pt;}
.y1e{bottom:497.280000pt;}
.yba{bottom:498.666667pt;}
.y73{bottom:498.880000pt;}
.ye5{bottom:501.333333pt;}
.y55{bottom:504.000000pt;}
.y119{bottom:506.560000pt;}
.y131{bottom:512.320000pt;}
.y72{bottom:515.840000pt;}
.yb8{bottom:516.000000pt;}
.y1d{bottom:516.480000pt;}
.y54{bottom:521.280000pt;}
.y118{bottom:523.520000pt;}
.y130{bottom:529.280000pt;}
.y71{bottom:532.800000pt;}
.yb7{bottom:533.333333pt;}
.y1c{bottom:533.760000pt;}
.ye4{bottom:536.000000pt;}
.y53{bottom:538.240000pt;}
.y117{bottom:540.800000pt;}
.y12f{bottom:546.240000pt;}
.y70{bottom:550.080000pt;}
.y1b{bottom:550.720000pt;}
.yb5{bottom:552.000000pt;}
.ye3{bottom:554.666667pt;}
.y52{bottom:555.200000pt;}
.y116{bottom:557.760000pt;}
.y12e{bottom:559.680000pt;}
.y14a{bottom:561.600000pt;}
.y6f{bottom:567.040000pt;}
.y1a{bottom:568.000000pt;}
.yb4{bottom:569.333333pt;}
.ye2{bottom:572.000000pt;}
.y51{bottom:572.480000pt;}
.y115{bottom:574.720000pt;}
.y6e{bottom:584.320000pt;}
.y19{bottom:584.960000pt;}
.yb2{bottom:586.666667pt;}
.y50{bottom:589.440000pt;}
.y114{bottom:592.000000pt;}
.y6d{bottom:601.280000pt;}
.y18{bottom:601.920000pt;}
.yb0{bottom:605.333333pt;}
.ye1{bottom:606.666667pt;}
.y4f{bottom:606.720000pt;}
.y113{bottom:608.960000pt;}
.y6b{bottom:614.666667pt;}
.y17{bottom:619.200000pt;}
.yae{bottom:622.666667pt;}
.y4e{bottom:623.680000pt;}
.ye0{bottom:625.333333pt;}
.y112{bottom:626.240000pt;}
.y69{bottom:632.000000pt;}
.y16{bottom:636.160000pt;}
.yad{bottom:640.000000pt;}
.y4d{bottom:640.640000pt;}
.ydf{bottom:642.666667pt;}
.y111{bottom:643.200000pt;}
.y67{bottom:649.333333pt;}
.y15{bottom:653.440000pt;}
.y4c{bottom:657.920000pt;}
.yab{bottom:658.666667pt;}
.ydd{bottom:660.000000pt;}
.y110{bottom:660.160000pt;}
.y65{bottom:668.000000pt;}
.y14{bottom:670.400000pt;}
.y10f{bottom:673.333333pt;}
.y4b{bottom:674.880000pt;}
.yaa{bottom:676.000000pt;}
.y63{bottom:685.333333pt;}
.y13{bottom:687.360000pt;}
.y10e{bottom:690.666667pt;}
.y4a{bottom:692.160000pt;}
.ya8{bottom:693.333333pt;}
.ydb{bottom:694.666667pt;}
.y61{bottom:702.666667pt;}
.y12{bottom:704.640000pt;}
.y10d{bottom:708.000000pt;}
.y49{bottom:709.120000pt;}
.ya6{bottom:712.000000pt;}
.y5f{bottom:721.333333pt;}
.y11{bottom:721.600000pt;}
.y48{bottom:726.080000pt;}
.y10c{bottom:726.666667pt;}
.ya4{bottom:729.333333pt;}
.y10{bottom:738.880000pt;}
.y47{bottom:743.360000pt;}
.y10b{bottom:744.000000pt;}
.ya3{bottom:746.666667pt;}
.yf{bottom:755.840000pt;}
.y46{bottom:760.320000pt;}
.y10a{bottom:762.666667pt;}
.ya1{bottom:764.000000pt;}
.ye{bottom:773.120000pt;}
.y45{bottom:777.600000pt;}
.y109{bottom:780.000000pt;}
.ya0{bottom:782.666667pt;}
.yd{bottom:790.400000pt;}
.y44{bottom:794.560000pt;}
.y108{bottom:797.333333pt;}
.y9e{bottom:800.000000pt;}
.yc{bottom:809.920000pt;}
.y43{bottom:811.520000pt;}
.y107{bottom:814.666667pt;}
.y9c{bottom:818.666667pt;}
.y42{bottom:828.800000pt;}
.yb{bottom:829.440000pt;}
.y106{bottom:833.333333pt;}
.y9a{bottom:836.000000pt;}
.y41{bottom:845.760000pt;}
.ya{bottom:848.640000pt;}
.y105{bottom:850.666667pt;}
.y98{bottom:853.333333pt;}
.y40{bottom:863.040000pt;}
.y9{bottom:865.920000pt;}
.y104{bottom:868.000000pt;}
.y96{bottom:870.666667pt;}
.y3f{bottom:880.000000pt;}
.y8{bottom:886.080000pt;}
.y103{bottom:886.666667pt;}
.y94{bottom:889.333333pt;}
.y3e{bottom:897.280000pt;}
.y102{bottom:904.000000pt;}
.yd7{bottom:905.333333pt;}
.y92{bottom:906.666667pt;}
.y7{bottom:908.800000pt;}
.y3d{bottom:914.240000pt;}
.y101{bottom:921.333333pt;}
.yd6{bottom:922.666667pt;}
.y90{bottom:924.000000pt;}
.y6{bottom:930.880000pt;}
.y3c{bottom:931.200000pt;}
.y100{bottom:940.000000pt;}
.yd4{bottom:941.333333pt;}
.y8e{bottom:942.666667pt;}
.y3b{bottom:948.480000pt;}
.y5{bottom:950.080000pt;}
.yff{bottom:957.333333pt;}
.y8c{bottom:960.000000pt;}
.y3a{bottom:965.440000pt;}
.y4{bottom:967.040000pt;}
.yfe{bottom:974.666667pt;}
.yd3{bottom:976.000000pt;}
.y3{bottom:980.480000pt;}
.y39{bottom:982.720000pt;}
.yd2{bottom:993.333333pt;}
.y38{bottom:999.680000pt;}
.yfd{bottom:1010.666667pt;}
.yd0{bottom:1012.000000pt;}
.y37{bottom:1016.640000pt;}
.yfc{bottom:1028.000000pt;}
.y36{bottom:1033.920000pt;}
.y1{bottom:1061.440000pt;}
.h8{height:17.333333pt;}
.ha{height:18.666667pt;}
.h10{height:33.986250pt;}
.hc{height:34.666667pt;}
.hb{height:36.000000pt;}
.h7{height:39.022500pt;}
.h11{height:39.106250pt;}
.h9{height:39.160000pt;}
.h2{height:40.425000pt;}
.h6{height:40.892500pt;}
.h4{height:42.656250pt;}
.h3{height:43.531250pt;}
.hd{height:53.333333pt;}
.h5{height:55.100000pt;}
.he{height:70.666667pt;}
.hf{height:400.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:65.333333pt;}
.wf{width:66.666667pt;}
.w8{width:73.333333pt;}
.wb{width:96.000000pt;}
.wa{width:97.333333pt;}
.wd{width:105.333333pt;}
.w5{width:112.000000pt;}
.we{width:113.333333pt;}
.w6{width:122.666667pt;}
.w7{width:124.000000pt;}
.w2{width:174.666667pt;}
.w4{width:213.333333pt;}
.wc{width:248.000000pt;}
.w9{width:378.666667pt;}
.w3{width:468.000000pt;}
.w10{width:642.666667pt;}
.w12{width:676.800000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xa{left:7.199872pt;}
.x1c{left:8.160000pt;}
.x2e{left:15.379840pt;}
.x1e{left:37.746667pt;}
.x30{left:41.834933pt;}
.x2f{left:44.054933pt;}
.x27{left:46.374533pt;}
.x1{left:75.519872pt;}
.x4{left:94.386400pt;}
.x1f{left:95.803733pt;}
.x31{left:99.155333pt;}
.x5{left:105.288416pt;}
.x28{left:113.538133pt;}
.x6{left:148.578112pt;}
.x20{left:158.414000pt;}
.x3{left:160.946304pt;}
.x32{left:167.122267pt;}
.x29{left:171.595200pt;}
.x16{left:197.333333pt;}
.x21{left:225.577733pt;}
.x34{left:229.666000pt;}
.x33{left:233.866000pt;}
.x2a{left:238.758800pt;}
.xb{left:250.666667pt;}
.x17{left:262.666667pt;}
.x22{left:283.634800pt;}
.xc{left:289.333333pt;}
.x35{left:293.449733pt;}
.x12{left:324.000000pt;}
.x18{left:328.000000pt;}
.x36{left:348.056667pt;}
.x23{left:349.568533pt;}
.x2b{left:362.749600pt;}
.x37{left:366.260000pt;}
.x2{left:384.622400pt;}
.x19{left:393.333333pt;}
.xd{left:400.000000pt;}
.x24{left:408.855467pt;}
.x38{left:417.563600pt;}
.x2c{left:425.360000pt;}
.x13{left:428.000000pt;}
.x10{left:453.333333pt;}
.x1a{left:457.333333pt;}
.x9{left:469.513920pt;}
.x25{left:471.465867pt;}
.x39{left:478.914267pt;}
.x3a{left:491.320933pt;}
.xe{left:522.666667pt;}
.x3b{left:536.611067pt;}
.x26{left:538.629467pt;}
.x14{left:540.000000pt;}
.x2d{left:547.257333pt;}
.x11{left:550.666667pt;}
.x7{left:568.195520pt;}
.x1b{left:588.000000pt;}
.x3c{left:626.179600pt;}
.xf{left:645.333333pt;}
.x15{left:652.000000pt;}
.x8{left:718.053120pt;}
.x1d{left:772.146560pt;}
}




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