
    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_4efcdec1bf7707c6c9a1a1a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_2b06439c26c846283b4f86b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_c7febdb6462621cb3ec1f621.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_029c8b73f2b971a56c359211.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_1562141017ef1dcdb3d9f9c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.078125;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_856d9236a18a7193065b436d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.696000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.206000px;}
.v1{vertical-align:23.748000px;}
.v4{vertical-align:36.292101px;}
.ls4{letter-spacing:-0.123587px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.032957px;}
.ls2{letter-spacing:2.985403px;}
.ls1{letter-spacing:2.991403px;}
.ls6{letter-spacing:3.246556px;}
.ls8{letter-spacing:13.909621px;}
.ls7{letter-spacing:18.193621px;}
.lsb{letter-spacing:21.289621px;}
.lsa{letter-spacing:22.813621px;}
.lsc{letter-spacing:22.843621px;}
.ls9{letter-spacing:24.013621px;}
.ls0{letter-spacing:50.271746px;}
.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;}
}
.ws57{word-spacing:-23.929462px;}
.ws15{word-spacing:-19.941274px;}
.ws60{word-spacing:-17.803692px;}
.ws4{word-spacing:-16.617617px;}
.ws45{word-spacing:-16.204967px;}
.ws1{word-spacing:-14.955955px;}
.ws76{word-spacing:-14.557136px;}
.ws35{word-spacing:-10.383162px;}
.ws31{word-spacing:-10.369782px;}
.ws32{word-spacing:-10.246195px;}
.ws34{word-spacing:-10.048653px;}
.ws33{word-spacing:-10.035273px;}
.ws22{word-spacing:-4.734259px;}
.ws21{word-spacing:-4.375603px;}
.ws67{word-spacing:-4.320004px;}
.ws68{word-spacing:-4.254549px;}
.ws7e{word-spacing:-4.058185px;}
.ws58{word-spacing:-3.945216px;}
.ws24{word-spacing:-3.873485px;}
.ws91{word-spacing:-3.796367px;}
.ws9{word-spacing:-3.586560px;}
.ws47{word-spacing:-3.299635px;}
.ws2b{word-spacing:-3.227904px;}
.ws4b{word-spacing:-2.869248px;}
.ws11{word-spacing:-2.438861px;}
.ws8c{word-spacing:-2.421820px;}
.ws4f{word-spacing:-2.295398px;}
.ws46{word-spacing:-2.151936px;}
.ws50{word-spacing:-2.080205px;}
.wsd{word-spacing:-1.936742px;}
.ws6b{word-spacing:-1.898183px;}
.ws10{word-spacing:-1.793280px;}
.ws66{word-spacing:-1.767274px;}
.ws1a{word-spacing:-1.506355px;}
.ws5{word-spacing:-1.437984px;}
.wse{word-spacing:-1.362893px;}
.ws39{word-spacing:-1.291162px;}
.ws3c{word-spacing:-0.932506px;}
.ws79{word-spacing:-0.916364px;}
.ws78{word-spacing:-0.850910px;}
.ws1c{word-spacing:-0.717312px;}
.ws4a{word-spacing:-0.573850px;}
.ws69{word-spacing:-0.392728px;}
.ws6e{word-spacing:-0.327273px;}
.ws3f{word-spacing:-0.286925px;}
.ws6c{word-spacing:-0.196364px;}
.ws56{word-spacing:-0.071731px;}
.ws61{word-spacing:-0.065455px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:0.215194px;}
.ws88{word-spacing:0.327273px;}
.ws37{word-spacing:0.358656px;}
.wsb{word-spacing:0.430387px;}
.ws13{word-spacing:0.573850px;}
.ws8d{word-spacing:0.589091px;}
.ws63{word-spacing:0.749942px;}
.ws54{word-spacing:0.789043px;}
.ws4e{word-spacing:1.362893px;}
.ws7c{word-spacing:1.374547px;}
.wsa{word-spacing:1.434624px;}
.ws85{word-spacing:1.570910px;}
.ws49{word-spacing:1.721549px;}
.ws62{word-spacing:1.767274px;}
.wsf{word-spacing:2.080205px;}
.ws16{word-spacing:2.151936px;}
.ws55{word-spacing:2.223667px;}
.ws84{word-spacing:2.356366px;}
.ws19{word-spacing:2.438861px;}
.ws52{word-spacing:2.510592px;}
.ws5c{word-spacing:2.880002px;}
.wsc{word-spacing:3.012710px;}
.ws8a{word-spacing:3.076366px;}
.ws38{word-spacing:3.084442px;}
.ws48{word-spacing:3.156173px;}
.ws5a{word-spacing:3.371366px;}
.ws42{word-spacing:3.443098px;}
.ws2{word-spacing:3.550694px;}
.ws59{word-spacing:3.658291px;}
.ws82{word-spacing:3.730912px;}
.ws30{word-spacing:3.873485px;}
.ws2a{word-spacing:4.088678px;}
.ws90{word-spacing:4.189094px;}
.ws40{word-spacing:4.232141px;}
.ws4c{word-spacing:4.375603px;}
.ws27{word-spacing:4.447334px;}
.ws41{word-spacing:4.519066px;}
.ws80{word-spacing:4.581822px;}
.ws81{word-spacing:4.647277px;}
.ws89{word-spacing:4.722485px;}
.ws12{word-spacing:4.734259px;}
.ws3e{word-spacing:4.877722px;}
.ws8{word-spacing:4.949453px;}
.ws71{word-spacing:5.040004px;}
.ws75{word-spacing:5.825459px;}
.ws17{word-spacing:5.881958px;}
.ws25{word-spacing:6.025421px;}
.ws2e{word-spacing:6.097152px;}
.ws1b{word-spacing:6.168883px;}
.ws14{word-spacing:6.240614px;}
.ws4d{word-spacing:6.312346px;}
.ws2f{word-spacing:6.384077px;}
.ws29{word-spacing:6.455808px;}
.ws5f{word-spacing:6.610915px;}
.ws7{word-spacing:6.671002px;}
.ws36{word-spacing:6.742733px;}
.ws28{word-spacing:7.244851px;}
.ws44{word-spacing:7.460045px;}
.ws6f{word-spacing:7.461824px;}
.ws70{word-spacing:7.527279px;}
.ws2c{word-spacing:7.890432px;}
.ws3b{word-spacing:8.177357px;}
.ws53{word-spacing:8.822938px;}
.ws26{word-spacing:8.966400px;}
.ws5b{word-spacing:9.621826px;}
.ws1e{word-spacing:9.755443px;}
.ws3d{word-spacing:10.042368px;}
.ws51{word-spacing:10.329293px;}
.ws7b{word-spacing:10.407281px;}
.ws43{word-spacing:10.687949px;}
.ws20{word-spacing:11.692186px;}
.ws73{word-spacing:12.240010px;}
.ws1f{word-spacing:12.778906px;}
.ws23{word-spacing:12.784906px;}
.ws3a{word-spacing:13.126810px;}
.ws18{word-spacing:13.246306px;}
.ws7f{word-spacing:14.007284px;}
.ws92{word-spacing:14.400012px;}
.ws2d{word-spacing:14.561434px;}
.ws65{word-spacing:16.363650px;}
.ws6d{word-spacing:17.803651px;}
.ws6a{word-spacing:18.117275px;}
.ws7d{word-spacing:18.118595px;}
.ws77{word-spacing:18.120260px;}
.ws8b{word-spacing:18.121580px;}
.ws87{word-spacing:18.392743px;}
.ws8e{word-spacing:18.720016px;}
.ws64{word-spacing:18.850925px;}
.ws6{word-spacing:19.109138px;}
.ws86{word-spacing:19.701835px;}
.ws5d{word-spacing:21.010927px;}
.ws8f{word-spacing:21.602399px;}
.ws83{word-spacing:21.859225px;}
.ws72{word-spacing:23.170928px;}
.ws5e{word-spacing:24.741839px;}
.ws7a{word-spacing:28.472751px;}
.ws74{word-spacing:30.370934px;}
.ws3{word-spacing:36.956668px;}
._22{margin-left:-10.634150px;}
._4{margin-left:-8.263392px;}
._15{margin-left:-7.173120px;}
._7{margin-left:-5.351979px;}
._16{margin-left:-4.106611px;}
._2{margin-left:-2.958912px;}
._0{margin-left:-1.613952px;}
._3{width:1.075968px;}
._5{width:2.945457px;}
._26{width:4.045685px;}
._27{width:6.041133px;}
._6{width:7.590998px;}
._29{width:11.729140px;}
._23{width:16.629620px;}
._1{width:18.506650px;}
._25{width:19.822190px;}
._28{width:21.033664px;}
._9{width:22.662581px;}
._f{width:24.173414px;}
._b{width:25.912896px;}
._8{width:28.109675px;}
._a{width:29.732582px;}
._10{width:31.149274px;}
._11{width:32.870822px;}
._17{width:34.269581px;}
._13{width:36.762240px;}
._19{width:38.035469px;}
._c{width:39.667354px;}
._d{width:43.038600px;}
._14{width:44.437478px;}
._e{width:48.354062px;}
._12{width:53.959795px;}
._18{width:55.061701px;}
._24{width:65.454600px;}
._20{width:224.827811px;}
._21{width:322.021208px;}
._1d{width:590.766328px;}
._1e{width:615.360974px;}
._1c{width:781.212939px;}
._1f{width:1012.225997px;}
._1b{width:1060.804492px;}
._1a{width:1585.637009px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fsa{font-size:49.434840px;}
.fsb{font-size:49.500753px;}
.fs8{font-size:51.082668px;}
.fs9{font-size:51.148581px;}
.fsd{font-size:52.363800px;}
.fs0{font-size:53.798400px;}
.fsc{font-size:58.291249px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs6{font-size:71.731200px;}
.fs7{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y73{bottom:42.513962px;}
.y72{bottom:57.838763px;}
.y71{bottom:73.163563px;}
.ybc{bottom:88.263000px;}
.y7a{bottom:90.809055px;}
.y87{bottom:93.912000px;}
.y29{bottom:100.158000px;}
.y56{bottom:101.952000px;}
.ybb{bottom:109.183500px;}
.y7e{bottom:110.370146px;}
.y86{bottom:114.834000px;}
.y101{bottom:120.631500px;}
.y28{bottom:121.080000px;}
.y55{bottom:124.368000px;}
.y7d{bottom:125.694947px;}
.yba{bottom:139.072500px;}
.y100{bottom:140.955000px;}
.y7c{bottom:141.019747px;}
.y85{bottom:144.721500px;}
.y54{bottom:146.784000px;}
.y27{bottom:158.439000px;}
.yb9{bottom:159.993000px;}
.yff{bottom:161.278500px;}
.yd6{bottom:163.221000px;}
.y84{bottom:165.643500px;}
.y79{bottom:171.985182px;}
.y53{bottom:176.671500px;}
.y77{bottom:178.954121px;}
.yb8{bottom:180.915000px;}
.yfe{bottom:181.602000px;}
.yd5{bottom:184.143000px;}
.y83{bottom:186.564000px;}
.y76{bottom:194.278921px;}
.yb7{bottom:201.837000px;}
.yfd{bottom:201.927000px;}
.yd4{bottom:205.065000px;}
.y52{bottom:206.559000px;}
.y82{bottom:207.486000px;}
.y26{bottom:209.248500px;}
.y75{bottom:209.617453px;}
.y74{bottom:224.942254px;}
.yd3{bottom:225.987000px;}
.y51{bottom:227.481000px;}
.yfc{bottom:228.975000px;}
.y25{bottom:230.170500px;}
.yb6{bottom:242.664786px;}
.y50{bottom:248.401500px;}
.y81{bottom:248.448000px;}
.yfb{bottom:249.298500px;}
.y24{bottom:251.092500px;}
.yb5{bottom:260.764082px;}
.yd2{bottom:263.346000px;}
.y4f{bottom:269.323500px;}
.yfa{bottom:269.622000px;}
.yb2{bottom:269.790353px;}
.y5e{bottom:277.618500px;}
.yb4{bottom:278.863378px;}
.y23{bottom:280.980000px;}
.yf9{bottom:289.947000px;}
.y4e{bottom:290.245500px;}
.yb3{bottom:296.962674px;}
.y22{bottom:301.902000px;}
.yf8{bottom:310.270500px;}
.yd1{bottom:314.155500px;}
.yb1{bottom:315.594971px;}
.y21{bottom:322.822500px;}
.y4d{bottom:327.604500px;}
.y69{bottom:328.673026px;}
.yae{bottom:333.671557px;}
.yb0{bottom:333.694267px;}
.yf7{bottom:337.318500px;}
.y20{bottom:343.744500px;}
.y68{bottom:343.997827px;}
.yd0{bottom:351.516000px;}
.yaf{bottom:351.793563px;}
.yf6{bottom:357.642000px;}
.y7b{bottom:362.343645px;}
.y1f{bottom:364.666500px;}
.yad{bottom:370.425859px;}
.yf5{bottom:377.967000px;}
.y4c{bottom:378.414000px;}
.y70{bottom:380.469753px;}
.y80{bottom:385.166063px;}
.y1e{bottom:385.588500px;}
.y6c{bottom:388.132154px;}
.yac{bottom:388.525155px;}
.y6f{bottom:395.794554px;}
.yf4{bottom:398.290500px;}
.y4b{bottom:399.336000px;}
.y7f{bottom:400.490863px;}
.ycf{bottom:402.325500px;}
.y6b{bottom:403.456954px;}
.y1d{bottom:406.509000px;}
.yab{bottom:406.624452px;}
.y6e{bottom:411.119354px;}
.ya7{bottom:415.652058px;}
.yf3{bottom:418.614000px;}
.y6a{bottom:418.781754px;}
.y4a{bottom:420.258000px;}
.yce{bottom:423.246000px;}
.yaa{bottom:424.725084px;}
.y6d{bottom:426.444155px;}
.y67{bottom:433.310104px;}
.y78{bottom:433.529815px;}
.y1c{bottom:436.398000px;}
.y49{bottom:441.180000px;}
.ya9{bottom:442.824380px;}
.ycd{bottom:444.168000px;}
.yf2{bottom:445.662000px;}
.y66{bottom:448.634905px;}
.y1b{bottom:457.318500px;}
.ya8{bottom:460.923676px;}
.y48{bottom:462.100500px;}
.y65{bottom:463.959705px;}
.ycc{bottom:465.090000px;}
.yf1{bottom:465.985500px;}
.y1a{bottom:478.240500px;}
.y64{bottom:479.284506px;}
.ya6{bottom:479.555972px;}
.y47{bottom:483.022500px;}
.ycb{bottom:486.010500px;}
.yf0{bottom:486.310500px;}
.ya5{bottom:498.186933px;}
.y19{bottom:499.162500px;}
.yef{bottom:506.634000px;}
.ya2{bottom:516.263520px;}
.ya4{bottom:516.286229px;}
.y46{bottom:517.393500px;}
.y18{bottom:520.083000px;}
.yca{bottom:523.371000px;}
.yee{bottom:526.957500px;}
.ya3{bottom:534.386861px;}
.y17{bottom:541.005000px;}
.y45{bottom:547.281000px;}
.ya1{bottom:553.017821px;}
.yed{bottom:554.005500px;}
.y16{bottom:561.927000px;}
.ya0{bottom:571.650118px;}
.yc9{bottom:574.180500px;}
.yec{bottom:574.330500px;}
.y44{bottom:577.170000px;}
.y9f{bottom:580.676388px;}
.y15{bottom:582.847500px;}
.y63{bottom:584.223685px;}
.y60{bottom:591.886086px;}
.yeb{bottom:594.654000px;}
.y62{bottom:599.548486px;}
.y43{bottom:607.057500px;}
.y5f{bottom:607.210886px;}
.y9e{bottom:608.381710px;}
.yc8{bottom:611.541000px;}
.y61{bottom:614.873286px;}
.yea{bottom:614.977500px;}
.y9d{bottom:617.407981px;}
.y14{bottom:620.208000px;}
.y42{bottom:629.473500px;}
.ye9{bottom:635.301000px;}
.y9c{bottom:645.113303px;}
.y9b{bottom:654.139573px;}
.y41{bottom:659.361000px;}
.yc7{bottom:662.350500px;}
.y13{bottom:671.017500px;}
.y40{bottom:680.283000px;}
.y9a{bottom:681.844895px;}
.ye8{bottom:682.674000px;}
.y99{bottom:690.871166px;}
.yc6{bottom:699.709500px;}
.ye7{bottom:702.997500px;}
.y3f{bottom:710.170500px;}
.y98{bottom:718.576488px;}
.y12{bottom:718.837500px;}
.ye6{bottom:723.321000px;}
.y3e{bottom:731.092500px;}
.y95{bottom:736.651739px;}
.y97{bottom:736.675784px;}
.y11{bottom:742.194000px;}
.ye5{bottom:743.644500px;}
.yc5{bottom:750.519000px;}
.y96{bottom:754.775080px;}
.y10{bottom:760.126500px;}
.y3d{bottom:760.980000px;}
.ye4{bottom:770.694000px;}
.yc4{bottom:771.441000px;}
.yf{bottom:772.636500px;}
.y94{bottom:773.407376px;}
.y93{bottom:782.433647px;}
.y3c{bottom:783.396000px;}
.ye{bottom:790.569000px;}
.ye3{bottom:791.017500px;}
.yc3{bottom:792.363000px;}
.yd{bottom:795.991500px;}
.y3b{bottom:804.318000px;}
.yc{bottom:808.501500px;}
.y92{bottom:810.137633px;}
.ye2{bottom:811.341000px;}
.yc2{bottom:813.283500px;}
.yb{bottom:826.434000px;}
.ye1{bottom:831.664500px;}
.ya{bottom:831.858000px;}
.y3a{bottom:834.205500px;}
.y91{bottom:844.383000px;}
.ye0{bottom:851.989500px;}
.y39{bottom:855.127500px;}
.y9{bottom:871.266000px;}
.ydf{bottom:872.313000px;}
.yc1{bottom:876.048000px;}
.y90{bottom:880.531500px;}
.y38{bottom:885.015000px;}
.y8{bottom:891.591000px;}
.yde{bottom:899.361000px;}
.y8f{bottom:901.453500px;}
.y37{bottom:905.937000px;}
.ydd{bottom:919.684500px;}
.y8e{bottom:922.375500px;}
.yc0{bottom:926.857500px;}
.y7{bottom:934.330500px;}
.y36{bottom:935.824500px;}
.ydc{bottom:940.008000px;}
.y8d{bottom:943.296000px;}
.ybf{bottom:947.779500px;}
.y35{bottom:956.746500px;}
.ydb{bottom:960.333000px;}
.y5d{bottom:961.228500px;}
.y8c{bottom:964.218000px;}
.y6{bottom:967.207500px;}
.ybe{bottom:968.701500px;}
.y5c{bottom:983.644500px;}
.y34{bottom:986.634000px;}
.ybd{bottom:989.622000px;}
.y8b{bottom:994.105500px;}
.y30{bottom:1006.060500px;}
.y33{bottom:1009.050000px;}
.y8a{bottom:1015.027500px;}
.y2f{bottom:1026.982500px;}
.y5b{bottom:1028.476500px;}
.y89{bottom:1035.949500px;}
.y5{bottom:1038.937500px;}
.yda{bottom:1040.431500px;}
.y2e{bottom:1047.904500px;}
.y5a{bottom:1050.892500px;}
.y88{bottom:1056.870000px;}
.y32{bottom:1059.859500px;}
.yd9{bottom:1061.353500px;}
.y4{bottom:1064.343000px;}
.y59{bottom:1073.308500px;}
.y2d{bottom:1077.792000px;}
.yd8{bottom:1082.275500px;}
.y3{bottom:1089.747000px;}
.y58{bottom:1095.724500px;}
.y2c{bottom:1098.714000px;}
.y103{bottom:1099.909500px;}
.yd7{bottom:1103.197500px;}
.y31{bottom:1110.669000px;}
.y2{bottom:1115.152500px;}
.y57{bottom:1118.140500px;}
.y2b{bottom:1119.634500px;}
.y102{bottom:1120.233000px;}
.y1{bottom:1140.556500px;}
.y2a{bottom:1193.604000px;}
.h6{height:31.047358px;}
.hb{height:35.865450px;}
.h2{height:39.918413px;}
.hf{height:42.531342px;}
.h10{height:42.588050px;}
.h12{height:43.252106px;}
.hd{height:43.949053px;}
.he{height:44.005762px;}
.h7{height:44.353495px;}
.h8{height:45.457495px;}
.h11{height:48.567313px;}
.h9{height:53.224550px;}
.h4{height:59.230885px;}
.h5{height:59.236885px;}
.ha{height:63.783205px;}
.h3{height:76.539668px;}
.h13{height:79.544208px;}
.hc{height:661.685291px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:681.212085px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:34.686769px;}
.x26{left:43.008301px;}
.x27{left:45.974391px;}
.x28{left:48.693307px;}
.x34{left:58.975754px;}
.x29{left:60.063320px;}
.x17{left:61.216800px;}
.x35{left:65.814240px;}
.x1{left:105.840000px;}
.x2{left:114.891000px;}
.x4{left:116.367000px;}
.x10{left:121.861500px;}
.x13{left:123.612000px;}
.xb{left:125.194500px;}
.x16{left:132.291000px;}
.x7{left:137.380500px;}
.x3b{left:140.398500px;}
.x33{left:146.244725px;}
.xf{left:153.691500px;}
.x14{left:168.291000px;}
.x3d{left:172.161000px;}
.x3c{left:176.295000px;}
.x15{left:182.749500px;}
.x25{left:194.478024px;}
.x2c{left:195.713895px;}
.xa{left:197.836500px;}
.x2e{left:199.421508px;}
.x1a{left:202.765225px;}
.x24{left:210.709129px;}
.x2d{left:213.263263px;}
.x23{left:218.289138px;}
.x6{left:220.594500px;}
.x1b{left:225.010903px;}
.x38{left:226.704000px;}
.x2f{left:228.670455px;}
.x19{left:231.602215px;}
.x39{left:293.157000px;}
.x5{left:312.420000px;}
.xc{left:318.061500px;}
.x8{left:336.360000px;}
.x11{left:363.316500px;}
.x1c{left:370.678898px;}
.x30{left:376.363905px;}
.x31{left:383.943914px;}
.x21{left:385.097393px;}
.x2a{left:387.061055px;}
.x12{left:388.887000px;}
.x22{left:394.242839px;}
.x1d{left:396.220232px;}
.x3{left:399.111000px;}
.xe{left:415.657500px;}
.x2b{left:419.852832px;}
.x9{left:428.772000px;}
.xd{left:464.151000px;}
.x32{left:513.497524px;}
.x1f{left:541.805836px;}
.x1e{left:551.116064px;}
.x20{left:555.235634px;}
.x36{left:562.637129px;}
.x37{left:567.086264px;}
.x3a{left:574.741213px;}
@media print{
.v3{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.072000pt;}
.v1{vertical-align:21.109333pt;}
.v4{vertical-align:32.259645pt;}
.ls4{letter-spacing:-0.109855pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.029295pt;}
.ls2{letter-spacing:2.653692pt;}
.ls1{letter-spacing:2.659025pt;}
.ls6{letter-spacing:2.885827pt;}
.ls8{letter-spacing:12.364108pt;}
.ls7{letter-spacing:16.172108pt;}
.lsb{letter-spacing:18.924108pt;}
.lsa{letter-spacing:20.278774pt;}
.lsc{letter-spacing:20.305441pt;}
.ls9{letter-spacing:21.345441pt;}
.ls0{letter-spacing:44.685997pt;}
.ws57{word-spacing:-21.270633pt;}
.ws15{word-spacing:-17.725577pt;}
.ws60{word-spacing:-15.825504pt;}
.ws4{word-spacing:-14.771215pt;}
.ws45{word-spacing:-14.404415pt;}
.ws1{word-spacing:-13.294182pt;}
.ws76{word-spacing:-12.939677pt;}
.ws35{word-spacing:-9.229477pt;}
.ws31{word-spacing:-9.217584pt;}
.ws32{word-spacing:-9.107728pt;}
.ws34{word-spacing:-8.932136pt;}
.ws33{word-spacing:-8.920242pt;}
.ws22{word-spacing:-4.208230pt;}
.ws21{word-spacing:-3.889425pt;}
.ws67{word-spacing:-3.840003pt;}
.ws68{word-spacing:-3.781821pt;}
.ws7e{word-spacing:-3.607276pt;}
.ws58{word-spacing:-3.506859pt;}
.ws24{word-spacing:-3.443098pt;}
.ws91{word-spacing:-3.374548pt;}
.ws9{word-spacing:-3.188053pt;}
.ws47{word-spacing:-2.933009pt;}
.ws2b{word-spacing:-2.869248pt;}
.ws4b{word-spacing:-2.550443pt;}
.ws11{word-spacing:-2.167876pt;}
.ws8c{word-spacing:-2.152729pt;}
.ws4f{word-spacing:-2.040354pt;}
.ws46{word-spacing:-1.912832pt;}
.ws50{word-spacing:-1.849071pt;}
.wsd{word-spacing:-1.721549pt;}
.ws6b{word-spacing:-1.687274pt;}
.ws10{word-spacing:-1.594027pt;}
.ws66{word-spacing:-1.570910pt;}
.ws1a{word-spacing:-1.338982pt;}
.ws5{word-spacing:-1.278208pt;}
.wse{word-spacing:-1.211460pt;}
.ws39{word-spacing:-1.147699pt;}
.ws3c{word-spacing:-0.828894pt;}
.ws79{word-spacing:-0.814546pt;}
.ws78{word-spacing:-0.756364pt;}
.ws1c{word-spacing:-0.637611pt;}
.ws4a{word-spacing:-0.510089pt;}
.ws69{word-spacing:-0.349091pt;}
.ws6e{word-spacing:-0.290909pt;}
.ws3f{word-spacing:-0.255044pt;}
.ws6c{word-spacing:-0.174546pt;}
.ws56{word-spacing:-0.063761pt;}
.ws61{word-spacing:-0.058182pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.191283pt;}
.ws88{word-spacing:0.290909pt;}
.ws37{word-spacing:0.318805pt;}
.wsb{word-spacing:0.382566pt;}
.ws13{word-spacing:0.510089pt;}
.ws8d{word-spacing:0.523637pt;}
.ws63{word-spacing:0.666615pt;}
.ws54{word-spacing:0.701372pt;}
.ws4e{word-spacing:1.211460pt;}
.ws7c{word-spacing:1.221819pt;}
.wsa{word-spacing:1.275221pt;}
.ws85{word-spacing:1.396365pt;}
.ws49{word-spacing:1.530266pt;}
.ws62{word-spacing:1.570910pt;}
.wsf{word-spacing:1.849071pt;}
.ws16{word-spacing:1.912832pt;}
.ws55{word-spacing:1.976593pt;}
.ws84{word-spacing:2.094547pt;}
.ws19{word-spacing:2.167876pt;}
.ws52{word-spacing:2.231637pt;}
.ws5c{word-spacing:2.560002pt;}
.wsc{word-spacing:2.677965pt;}
.ws8a{word-spacing:2.734548pt;}
.ws38{word-spacing:2.741726pt;}
.ws48{word-spacing:2.805487pt;}
.ws5a{word-spacing:2.996770pt;}
.ws42{word-spacing:3.060531pt;}
.ws2{word-spacing:3.156173pt;}
.ws59{word-spacing:3.251814pt;}
.ws82{word-spacing:3.316366pt;}
.ws30{word-spacing:3.443098pt;}
.ws2a{word-spacing:3.634381pt;}
.ws90{word-spacing:3.723639pt;}
.ws40{word-spacing:3.761903pt;}
.ws4c{word-spacing:3.889425pt;}
.ws27{word-spacing:3.953186pt;}
.ws41{word-spacing:4.016947pt;}
.ws80{word-spacing:4.072731pt;}
.ws81{word-spacing:4.130913pt;}
.ws89{word-spacing:4.197764pt;}
.ws12{word-spacing:4.208230pt;}
.ws3e{word-spacing:4.335753pt;}
.ws8{word-spacing:4.399514pt;}
.ws71{word-spacing:4.480004pt;}
.ws75{word-spacing:5.178186pt;}
.ws17{word-spacing:5.228407pt;}
.ws25{word-spacing:5.355930pt;}
.ws2e{word-spacing:5.419691pt;}
.ws1b{word-spacing:5.483452pt;}
.ws14{word-spacing:5.547213pt;}
.ws4d{word-spacing:5.610974pt;}
.ws2f{word-spacing:5.674735pt;}
.ws29{word-spacing:5.738496pt;}
.ws5f{word-spacing:5.876369pt;}
.ws7{word-spacing:5.929779pt;}
.ws36{word-spacing:5.993540pt;}
.ws28{word-spacing:6.439868pt;}
.ws44{word-spacing:6.631151pt;}
.ws6f{word-spacing:6.632733pt;}
.ws70{word-spacing:6.690915pt;}
.ws2c{word-spacing:7.013717pt;}
.ws3b{word-spacing:7.268762pt;}
.ws53{word-spacing:7.842611pt;}
.ws26{word-spacing:7.970133pt;}
.ws5b{word-spacing:8.552734pt;}
.ws1e{word-spacing:8.671505pt;}
.ws3d{word-spacing:8.926549pt;}
.ws51{word-spacing:9.181594pt;}
.ws7b{word-spacing:9.250917pt;}
.ws43{word-spacing:9.500399pt;}
.ws20{word-spacing:10.393054pt;}
.ws73{word-spacing:10.880009pt;}
.ws1f{word-spacing:11.359027pt;}
.ws23{word-spacing:11.364361pt;}
.ws3a{word-spacing:11.668275pt;}
.ws18{word-spacing:11.774494pt;}
.ws7f{word-spacing:12.450919pt;}
.ws92{word-spacing:12.800011pt;}
.ws2d{word-spacing:12.943497pt;}
.ws65{word-spacing:14.545467pt;}
.ws6d{word-spacing:15.825468pt;}
.ws6a{word-spacing:16.104245pt;}
.ws7d{word-spacing:16.105418pt;}
.ws77{word-spacing:16.106898pt;}
.ws8b{word-spacing:16.108071pt;}
.ws87{word-spacing:16.349105pt;}
.ws8e{word-spacing:16.640014pt;}
.ws64{word-spacing:16.756378pt;}
.ws6{word-spacing:16.985901pt;}
.ws86{word-spacing:17.512742pt;}
.ws5d{word-spacing:18.676379pt;}
.ws8f{word-spacing:19.202132pt;}
.ws83{word-spacing:19.430422pt;}
.ws72{word-spacing:20.596381pt;}
.ws5e{word-spacing:21.992746pt;}
.ws7a{word-spacing:25.309112pt;}
.ws74{word-spacing:26.996386pt;}
.ws3{word-spacing:32.850372pt;}
._22{margin-left:-9.452578pt;}
._4{margin-left:-7.345237pt;}
._15{margin-left:-6.376107pt;}
._7{margin-left:-4.757315pt;}
._16{margin-left:-3.650321pt;}
._2{margin-left:-2.630144pt;}
._0{margin-left:-1.434624pt;}
._3{width:0.956416pt;}
._5{width:2.618184pt;}
._26{width:3.596164pt;}
._27{width:5.369896pt;}
._6{width:6.747554pt;}
._29{width:10.425902pt;}
._23{width:14.781885pt;}
._1{width:16.450355pt;}
._25{width:17.619725pt;}
._28{width:18.696590pt;}
._9{width:20.144517pt;}
._f{width:21.487479pt;}
._b{width:23.033685pt;}
._8{width:24.986378pt;}
._a{width:26.428962pt;}
._10{width:27.688243pt;}
._11{width:29.218509pt;}
._17{width:30.461850pt;}
._13{width:32.677547pt;}
._19{width:33.809306pt;}
._c{width:35.259870pt;}
._d{width:38.256533pt;}
._14{width:39.499981pt;}
._e{width:42.981389pt;}
._12{width:47.964262pt;}
._18{width:48.943734pt;}
._24{width:58.181867pt;}
._20{width:199.846943pt;}
._21{width:286.241074pt;}
._1d{width:525.125625pt;}
._1e{width:546.987532pt;}
._1c{width:694.411501pt;}
._1f{width:899.756442pt;}
._1b{width:942.937326pt;}
._1a{width:1409.455119pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fsa{font-size:43.942080pt;}
.fsb{font-size:44.000669pt;}
.fs8{font-size:45.406816pt;}
.fs9{font-size:45.465405pt;}
.fsd{font-size:46.545600pt;}
.fs0{font-size:47.820800pt;}
.fsc{font-size:51.814443pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs6{font-size:63.761067pt;}
.fs7{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:37.790189pt;}
.y72{bottom:51.412234pt;}
.y71{bottom:65.034278pt;}
.ybc{bottom:78.456000pt;}
.y7a{bottom:80.719160pt;}
.y87{bottom:83.477333pt;}
.y29{bottom:89.029333pt;}
.y56{bottom:90.624000pt;}
.ybb{bottom:97.052000pt;}
.y7e{bottom:98.106797pt;}
.y86{bottom:102.074667pt;}
.y101{bottom:107.228000pt;}
.y28{bottom:107.626667pt;}
.y55{bottom:110.549333pt;}
.y7d{bottom:111.728841pt;}
.yba{bottom:123.620000pt;}
.y100{bottom:125.293333pt;}
.y7c{bottom:125.350886pt;}
.y85{bottom:128.641333pt;}
.y54{bottom:130.474667pt;}
.y27{bottom:140.834667pt;}
.yb9{bottom:142.216000pt;}
.yff{bottom:143.358667pt;}
.yd6{bottom:145.085333pt;}
.y84{bottom:147.238667pt;}
.y79{bottom:152.875717pt;}
.y53{bottom:157.041333pt;}
.y77{bottom:159.070330pt;}
.yb8{bottom:160.813333pt;}
.yfe{bottom:161.424000pt;}
.yd5{bottom:163.682667pt;}
.y83{bottom:165.834667pt;}
.y76{bottom:172.692374pt;}
.yb7{bottom:179.410667pt;}
.yfd{bottom:179.490667pt;}
.yd4{bottom:182.280000pt;}
.y52{bottom:183.608000pt;}
.y82{bottom:184.432000pt;}
.y26{bottom:185.998667pt;}
.y75{bottom:186.326625pt;}
.y74{bottom:199.948670pt;}
.yd3{bottom:200.877333pt;}
.y51{bottom:202.205333pt;}
.yfc{bottom:203.533333pt;}
.y25{bottom:204.596000pt;}
.yb6{bottom:215.702032pt;}
.y50{bottom:220.801333pt;}
.y81{bottom:220.842667pt;}
.yfb{bottom:221.598667pt;}
.y24{bottom:223.193333pt;}
.yb5{bottom:231.790295pt;}
.yd2{bottom:234.085333pt;}
.y4f{bottom:239.398667pt;}
.yfa{bottom:239.664000pt;}
.yb2{bottom:239.813647pt;}
.y5e{bottom:246.772000pt;}
.yb4{bottom:247.878558pt;}
.y23{bottom:249.760000pt;}
.yf9{bottom:257.730667pt;}
.y4e{bottom:257.996000pt;}
.yb3{bottom:263.966822pt;}
.y22{bottom:268.357333pt;}
.yf8{bottom:275.796000pt;}
.yd1{bottom:279.249333pt;}
.yb1{bottom:280.528863pt;}
.y21{bottom:286.953333pt;}
.y4d{bottom:291.204000pt;}
.y69{bottom:292.153801pt;}
.yae{bottom:296.596940pt;}
.yb0{bottom:296.617126pt;}
.yf7{bottom:299.838667pt;}
.y20{bottom:305.550667pt;}
.y68{bottom:305.775846pt;}
.yd0{bottom:312.458667pt;}
.yaf{bottom:312.705389pt;}
.yf6{bottom:317.904000pt;}
.y7b{bottom:322.083240pt;}
.y1f{bottom:324.148000pt;}
.yad{bottom:329.267430pt;}
.yf5{bottom:335.970667pt;}
.y4c{bottom:336.368000pt;}
.y70{bottom:338.195336pt;}
.y80{bottom:342.369834pt;}
.y1e{bottom:342.745333pt;}
.y6c{bottom:345.006359pt;}
.yac{bottom:345.355694pt;}
.y6f{bottom:351.817381pt;}
.yf4{bottom:354.036000pt;}
.y4b{bottom:354.965333pt;}
.y7f{bottom:355.991879pt;}
.ycf{bottom:357.622667pt;}
.y6b{bottom:358.628403pt;}
.y1d{bottom:361.341333pt;}
.yab{bottom:361.443957pt;}
.y6e{bottom:365.439426pt;}
.ya7{bottom:369.468496pt;}
.yf3{bottom:372.101333pt;}
.y6a{bottom:372.250448pt;}
.y4a{bottom:373.562667pt;}
.yce{bottom:376.218667pt;}
.yaa{bottom:377.533408pt;}
.y6d{bottom:379.061471pt;}
.y67{bottom:385.164537pt;}
.y78{bottom:385.359835pt;}
.y1c{bottom:387.909333pt;}
.y49{bottom:392.160000pt;}
.ya9{bottom:393.621671pt;}
.ycd{bottom:394.816000pt;}
.yf2{bottom:396.144000pt;}
.y66{bottom:398.786582pt;}
.y1b{bottom:406.505333pt;}
.ya8{bottom:409.709934pt;}
.y48{bottom:410.756000pt;}
.y65{bottom:412.408627pt;}
.ycc{bottom:413.413333pt;}
.yf1{bottom:414.209333pt;}
.y1a{bottom:425.102667pt;}
.y64{bottom:426.030672pt;}
.ya6{bottom:426.271975pt;}
.y47{bottom:429.353333pt;}
.ycb{bottom:432.009333pt;}
.yf0{bottom:432.276000pt;}
.ya5{bottom:442.832829pt;}
.y19{bottom:443.700000pt;}
.yef{bottom:450.341333pt;}
.ya2{bottom:458.900906pt;}
.ya4{bottom:458.921092pt;}
.y46{bottom:459.905333pt;}
.y18{bottom:462.296000pt;}
.yca{bottom:465.218667pt;}
.yee{bottom:468.406667pt;}
.ya3{bottom:475.010543pt;}
.y17{bottom:480.893333pt;}
.y45{bottom:486.472000pt;}
.ya1{bottom:491.571397pt;}
.yed{bottom:492.449333pt;}
.y16{bottom:499.490667pt;}
.ya0{bottom:508.133438pt;}
.yc9{bottom:510.382667pt;}
.yec{bottom:510.516000pt;}
.y44{bottom:513.040000pt;}
.y9f{bottom:516.156790pt;}
.y15{bottom:518.086667pt;}
.y63{bottom:519.309943pt;}
.y60{bottom:526.120965pt;}
.yeb{bottom:528.581333pt;}
.y62{bottom:532.931987pt;}
.y43{bottom:539.606667pt;}
.y5f{bottom:539.743010pt;}
.y9e{bottom:540.783742pt;}
.yc8{bottom:543.592000pt;}
.y61{bottom:546.554032pt;}
.yea{bottom:546.646667pt;}
.y9d{bottom:548.807094pt;}
.y14{bottom:551.296000pt;}
.y42{bottom:559.532000pt;}
.ye9{bottom:564.712000pt;}
.y9c{bottom:573.434047pt;}
.y9b{bottom:581.457399pt;}
.y41{bottom:586.098667pt;}
.yc7{bottom:588.756000pt;}
.y13{bottom:596.460000pt;}
.y40{bottom:604.696000pt;}
.y9a{bottom:606.084351pt;}
.ye8{bottom:606.821333pt;}
.y99{bottom:614.107703pt;}
.yc6{bottom:621.964000pt;}
.ye7{bottom:624.886667pt;}
.y3f{bottom:631.262667pt;}
.y98{bottom:638.734656pt;}
.y12{bottom:638.966667pt;}
.ye6{bottom:642.952000pt;}
.y3e{bottom:649.860000pt;}
.y95{bottom:654.801545pt;}
.y97{bottom:654.822919pt;}
.y11{bottom:659.728000pt;}
.ye5{bottom:661.017333pt;}
.yc5{bottom:667.128000pt;}
.y96{bottom:670.911182pt;}
.y10{bottom:675.668000pt;}
.y3d{bottom:676.426667pt;}
.ye4{bottom:685.061333pt;}
.yc4{bottom:685.725333pt;}
.yf{bottom:686.788000pt;}
.y94{bottom:687.473223pt;}
.y93{bottom:695.496575pt;}
.y3c{bottom:696.352000pt;}
.ye{bottom:702.728000pt;}
.ye3{bottom:703.126667pt;}
.yc3{bottom:704.322667pt;}
.yd{bottom:707.548000pt;}
.y3b{bottom:714.949333pt;}
.yc{bottom:718.668000pt;}
.y92{bottom:720.122340pt;}
.ye2{bottom:721.192000pt;}
.yc2{bottom:722.918667pt;}
.yb{bottom:734.608000pt;}
.ye1{bottom:739.257333pt;}
.ya{bottom:739.429333pt;}
.y3a{bottom:741.516000pt;}
.y91{bottom:750.562667pt;}
.ye0{bottom:757.324000pt;}
.y39{bottom:760.113333pt;}
.y9{bottom:774.458667pt;}
.ydf{bottom:775.389333pt;}
.yc1{bottom:778.709333pt;}
.y90{bottom:782.694667pt;}
.y38{bottom:786.680000pt;}
.y8{bottom:792.525333pt;}
.yde{bottom:799.432000pt;}
.y8f{bottom:801.292000pt;}
.y37{bottom:805.277333pt;}
.ydd{bottom:817.497333pt;}
.y8e{bottom:819.889333pt;}
.yc0{bottom:823.873333pt;}
.y7{bottom:830.516000pt;}
.y36{bottom:831.844000pt;}
.ydc{bottom:835.562667pt;}
.y8d{bottom:838.485333pt;}
.ybf{bottom:842.470667pt;}
.y35{bottom:850.441333pt;}
.ydb{bottom:853.629333pt;}
.y5d{bottom:854.425333pt;}
.y8c{bottom:857.082667pt;}
.y6{bottom:859.740000pt;}
.ybe{bottom:861.068000pt;}
.y5c{bottom:874.350667pt;}
.y34{bottom:877.008000pt;}
.ybd{bottom:879.664000pt;}
.y8b{bottom:883.649333pt;}
.y30{bottom:894.276000pt;}
.y33{bottom:896.933333pt;}
.y8a{bottom:902.246667pt;}
.y2f{bottom:912.873333pt;}
.y5b{bottom:914.201333pt;}
.y89{bottom:920.844000pt;}
.y5{bottom:923.500000pt;}
.yda{bottom:924.828000pt;}
.y2e{bottom:931.470667pt;}
.y5a{bottom:934.126667pt;}
.y88{bottom:939.440000pt;}
.y32{bottom:942.097333pt;}
.yd9{bottom:943.425333pt;}
.y4{bottom:946.082667pt;}
.y59{bottom:954.052000pt;}
.y2d{bottom:958.037333pt;}
.yd8{bottom:962.022667pt;}
.y3{bottom:968.664000pt;}
.y58{bottom:973.977333pt;}
.y2c{bottom:976.634667pt;}
.y103{bottom:977.697333pt;}
.yd7{bottom:980.620000pt;}
.y31{bottom:987.261333pt;}
.y2{bottom:991.246667pt;}
.y57{bottom:993.902667pt;}
.y2b{bottom:995.230667pt;}
.y102{bottom:995.762667pt;}
.y1{bottom:1013.828000pt;}
.y2a{bottom:1060.981333pt;}
.h6{height:27.597651pt;}
.hb{height:31.880400pt;}
.h2{height:35.483034pt;}
.hf{height:37.805637pt;}
.h10{height:37.856045pt;}
.h12{height:38.446317pt;}
.hd{height:39.065825pt;}
.he{height:39.116233pt;}
.h7{height:39.425329pt;}
.h8{height:40.406662pt;}
.h11{height:43.170945pt;}
.h9{height:47.310711pt;}
.h4{height:52.649676pt;}
.h5{height:52.655009pt;}
.ha{height:56.696182pt;}
.h3{height:68.035261pt;}
.h13{height:70.705962pt;}
.hc{height:588.164704pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:605.521853pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:30.832684pt;}
.x26{left:38.229601pt;}
.x27{left:40.866125pt;}
.x28{left:43.282940pt;}
.x34{left:52.422892pt;}
.x29{left:53.389618pt;}
.x17{left:54.414933pt;}
.x35{left:58.501547pt;}
.x1{left:94.080000pt;}
.x2{left:102.125333pt;}
.x4{left:103.437333pt;}
.x10{left:108.321333pt;}
.x13{left:109.877333pt;}
.xb{left:111.284000pt;}
.x16{left:117.592000pt;}
.x7{left:122.116000pt;}
.x3b{left:124.798667pt;}
.x33{left:129.995311pt;}
.xf{left:136.614667pt;}
.x14{left:149.592000pt;}
.x3d{left:153.032000pt;}
.x3c{left:156.706667pt;}
.x15{left:162.444000pt;}
.x25{left:172.869354pt;}
.x2c{left:173.967906pt;}
.xa{left:175.854667pt;}
.x2e{left:177.263562pt;}
.x1a{left:180.235756pt;}
.x24{left:187.297004pt;}
.x2d{left:189.567345pt;}
.x23{left:194.034790pt;}
.x6{left:196.084000pt;}
.x1b{left:200.009692pt;}
.x38{left:201.514667pt;}
.x2f{left:203.262626pt;}
.x19{left:205.868636pt;}
.x39{left:260.584000pt;}
.x5{left:277.706667pt;}
.xc{left:282.721333pt;}
.x8{left:298.986667pt;}
.x11{left:322.948000pt;}
.x1c{left:329.492354pt;}
.x30{left:334.545693pt;}
.x31{left:341.283479pt;}
.x21{left:342.308794pt;}
.x2a{left:344.054271pt;}
.x12{left:345.677333pt;}
.x22{left:350.438079pt;}
.x1d{left:352.195762pt;}
.x3{left:354.765333pt;}
.xe{left:369.473333pt;}
.x2b{left:373.202518pt;}
.x9{left:381.130667pt;}
.xd{left:412.578667pt;}
.x32{left:456.442244pt;}
.x1f{left:481.605188pt;}
.x1e{left:489.880946pt;}
.x20{left:493.542786pt;}
.x36{left:500.121892pt;}
.x37{left:504.076679pt;}
.x3a{left:510.881079pt;}
}




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