
    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_4e159903e67345aea24c978b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_40dd134f004a7a3553f1bf90.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_47e1787d73104eeed1c2fd00.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b73b7768ab1753ec1a75db15.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_30cad950b051f5b28cfb6999.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c05105e859f0493efec3ec1c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6dbe42290e03c139857a5072.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3564594a9fc6690539f9ac95.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.900000px;}
.ls10{letter-spacing:-0.684000px;}
.lsd{letter-spacing:-0.378600px;}
.lsf{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.341400px;}
.ls12{letter-spacing:-0.271200px;}
.ls7{letter-spacing:-0.232800px;}
.ls15{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.053280px;}
.ls1f{letter-spacing:-0.028080px;}
.ls1e{letter-spacing:-0.018720px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.034560px;}
.ls3{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.106560px;}
.lsa{letter-spacing:0.119520px;}
.ls20{letter-spacing:0.148200px;}
.ls1d{letter-spacing:0.151920px;}
.ls9{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.217440px;}
.ls17{letter-spacing:0.252720px;}
.lsb{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.341400px;}
.ls1c{letter-spacing:0.354720px;}
.ls8{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.369360px;}
.ls14{letter-spacing:0.378600px;}
.ls1b{letter-spacing:0.378720px;}
.ls22{letter-spacing:0.489360px;}
.ls11{letter-spacing:5.184000px;}
.ls13{letter-spacing:21.420000px;}
.ls4{letter-spacing:57.420000px;}
.ls23{letter-spacing:169.517280px;}
.ls19{letter-spacing:211.277280px;}
.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;}
}
.wse{word-spacing:-21.438600px;}
.ws4{word-spacing:-21.420000px;}
.ws11{word-spacing:-21.401400px;}
.ws14{word-spacing:-21.208200px;}
.ws3{word-spacing:-21.088080px;}
.ws5{word-spacing:-21.060000px;}
.ws12{word-spacing:-21.041280px;}
.ws13{word-spacing:-21.031920px;}
.ws15{word-spacing:-20.718600px;}
.ws10{word-spacing:-20.700000px;}
.wsb{word-spacing:-20.376000px;}
.wsf{word-spacing:-20.160000px;}
.ws0{word-spacing:-19.493760px;}
.wsd{word-spacing:-19.455360px;}
.wsc{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.904000px;}
.ws9{word-spacing:-14.886720px;}
.ws1{word-spacing:-14.832000px;}
.wsa{word-spacing:-14.580000px;}
.ws6{word-spacing:0.000000px;}
._29{margin-left:-6.065280px;}
._1c{margin-left:-4.885920px;}
._25{margin-left:-3.369600px;}
._2{margin-left:-1.432080px;}
._3{width:1.149120px;}
._4{width:2.866080px;}
._23{width:4.633200px;}
._8{width:5.644080px;}
._22{width:6.654960px;}
._a{width:8.002800px;}
._9{width:9.519120px;}
._26{width:10.614240px;}
._1f{width:12.046320px;}
._20{width:13.394160px;}
._17{width:15.331680px;}
._11{width:16.549200px;}
._12{width:17.660160px;}
._1b{width:19.122480px;}
._b{width:22.155120px;}
._c{width:23.340960px;}
._33{width:24.390960px;}
._2a{width:25.471200px;}
._1e{width:26.520960px;}
._1d{width:27.546480px;}
._19{width:28.661520px;}
._18{width:30.242160px;}
._24{width:32.092320px;}
._32{width:33.443280px;}
._31{width:34.706880px;}
._27{width:35.886240px;}
._39{width:37.318320px;}
._3d{width:38.750400px;}
._28{width:40.350960px;}
._13{width:41.361840px;}
._14{width:42.406320px;}
._2c{width:43.552080px;}
._2d{width:45.351120px;}
._10{width:49.785840px;}
._34{width:51.302160px;}
._43{width:52.580640px;}
._f{width:53.660880px;}
._3c{width:54.870480px;}
._36{width:56.440800px;}
._d{width:57.620160px;}
._21{width:59.473440px;}
._16{width:60.737040px;}
._15{width:61.747920px;}
._37{width:63.081840px;}
._35{width:64.190880px;}
._2f{width:65.370240px;}
._2e{width:66.718080px;}
._38{width:68.992560px;}
._e{width:70.508880px;}
._30{width:71.856720px;}
._5{width:73.120320px;}
._6{width:74.131200px;}
._7{width:75.142080px;}
._41{width:77.248080px;}
._3b{width:79.269840px;}
._3a{width:80.786160px;}
._42{width:82.134000px;}
._3e{width:96.960240px;}
._1a{width:98.813520px;}
._2b{width:116.503920px;}
._3f{width:118.609920px;}
._40{width:119.705040px;}
._0{width:292.222560px;}
._1{width:1213.426560px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(255,0,0);}
.fc6{color:rgb(0,0,255);}
.fc1{color:rgb(0,128,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fsa{font-size:63.504000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y93{bottom:8.100000px;}
.y96{bottom:8.280000px;}
.y6{bottom:10.440000px;}
.y89{bottom:13.215000px;}
.y88{bottom:29.595000px;}
.y8c{bottom:30.060000px;}
.y5{bottom:31.140000px;}
.y92{bottom:35.820000px;}
.yae{bottom:35.865000px;}
.yab{bottom:36.000000px;}
.yd7{bottom:36.030000px;}
.y87{bottom:45.795000px;}
.y8b{bottom:46.440000px;}
.y86{bottom:62.175000px;}
.y8a{bottom:62.640000px;}
.y91{bottom:63.720000px;}
.yfc{bottom:63.765000px;}
.y41{bottom:66.960000px;}
.y40{bottom:72.180000px;}
.y85{bottom:78.375000px;}
.y3f{bottom:84.240000px;}
.y4f{bottom:85.500000px;}
.y3e{bottom:89.460000px;}
.y90{bottom:91.440000px;}
.yfb{bottom:91.665000px;}
.y3d{bottom:101.340000px;}
.y3c{bottom:106.560000px;}
.yca{bottom:110.880000px;}
.y12b{bottom:113.040000px;}
.y84{bottom:115.170000px;}
.y2b{bottom:115.380000px;}
.y81{bottom:116.355000px;}
.y3b{bottom:118.620000px;}
.y8f{bottom:119.160000px;}
.y3a{bottom:123.840000px;}
.y4e{bottom:127.260000px;}
.yd6{bottom:128.880000px;}
.y83{bottom:131.580000px;}
.y80{bottom:132.735000px;}
.yf6{bottom:134.820000px;}
.y39{bottom:135.900000px;}
.yc9{bottom:138.600000px;}
.y12a{bottom:140.760000px;}
.y38{bottom:141.120000px;}
.y2a{bottom:143.100000px;}
.y82{bottom:147.780000px;}
.y7f{bottom:148.935000px;}
.y37{bottom:153.210000px;}
.y4d{bottom:155.010000px;}
.y36{bottom:158.430000px;}
.yf5{bottom:162.570000px;}
.yc8{bottom:166.350000px;}
.ya8{bottom:167.070000px;}
.y129{bottom:168.510000px;}
.y35{bottom:170.490000px;}
.y29{bottom:170.850000px;}
.y34{bottom:175.710000px;}
.y7c{bottom:176.730000px;}
.y4c{bottom:182.730000px;}
.yd5{bottom:185.250000px;}
.y33{bottom:189.030000px;}
.yf4{bottom:190.470000px;}
.y7b{bottom:192.930000px;}
.yc7{bottom:194.070000px;}
.ya7{bottom:194.970000px;}
.y128{bottom:196.230000px;}
.y28{bottom:198.570000px;}
.y7e{bottom:200.010000px;}
.y7a{bottom:209.340000px;}
.y4b{bottom:210.630000px;}
.y7d{bottom:216.210000px;}
.yf7{bottom:217.470000px;}
.yf3{bottom:218.190000px;}
.yc6{bottom:221.970000px;}
.ya6{bottom:222.690000px;}
.y127{bottom:224.130000px;}
.y79{bottom:225.540000px;}
.y27{bottom:226.470000px;}
.y4a{bottom:238.350000px;}
.yf2{bottom:245.910000px;}
.yc5{bottom:249.690000px;}
.ya5{bottom:250.410000px;}
.y126{bottom:251.850000px;}
.y75{bottom:253.335000px;}
.y26{bottom:254.190000px;}
.y32{bottom:261.750000px;}
.y49{bottom:266.070000px;}
.y78{bottom:268.350000px;}
.y74{bottom:269.535000px;}
.yf1{bottom:273.630000px;}
.yc4{bottom:277.410000px;}
.ya4{bottom:278.130000px;}
.y125{bottom:279.570000px;}
.y25{bottom:281.910000px;}
.y77{bottom:284.760000px;}
.y73{bottom:285.915000px;}
.y48{bottom:293.790000px;}
.y76{bottom:300.960000px;}
.yf0{bottom:301.530000px;}
.y72{bottom:302.115000px;}
.yc3{bottom:305.310000px;}
.ya3{bottom:306.030000px;}
.y124{bottom:307.470000px;}
.y24{bottom:309.810000px;}
.yd4{bottom:312.870000px;}
.y47{bottom:321.690000px;}
.yef{bottom:329.250000px;}
.y6e{bottom:329.910000px;}
.yc2{bottom:333.030000px;}
.ya2{bottom:333.750000px;}
.y10f{bottom:334.470000px;}
.y123{bottom:335.190000px;}
.y23{bottom:337.530000px;}
.y71{bottom:344.955000px;}
.y31{bottom:345.090000px;}
.y6d{bottom:346.110000px;}
.y46{bottom:349.410000px;}
.yee{bottom:356.970000px;}
.yc1{bottom:360.750000px;}
.y70{bottom:361.335000px;}
.ya1{bottom:361.470000px;}
.y10e{bottom:362.190000px;}
.y6c{bottom:362.520000px;}
.y122{bottom:362.910000px;}
.y22{bottom:365.250000px;}
.y45{bottom:377.130000px;}
.yed{bottom:377.310000px;}
.y6f{bottom:377.535000px;}
.y6b{bottom:378.720000px;}
.yc0{bottom:388.470000px;}
.ya0{bottom:389.370000px;}
.y10d{bottom:390.090000px;}
.y67{bottom:390.135000px;}
.y121{bottom:390.630000px;}
.y21{bottom:392.970000px;}
.y43{bottom:405.075000px;}
.yec{bottom:405.975000px;}
.y66{bottom:406.515000px;}
.y44{bottom:412.635000px;}
.ybf{bottom:416.415000px;}
.y9f{bottom:417.135000px;}
.y10c{bottom:417.855000px;}
.y120{bottom:418.575000px;}
.y20{bottom:420.915000px;}
.y6a{bottom:421.530000px;}
.y65{bottom:422.715000px;}
.y50{bottom:424.800000px;}
.y42{bottom:428.295000px;}
.yeb{bottom:434.415000px;}
.y69{bottom:437.940000px;}
.y64{bottom:439.095000px;}
.ybe{bottom:444.135000px;}
.y9e{bottom:444.855000px;}
.y10b{bottom:445.575000px;}
.y11f{bottom:446.295000px;}
.y1f{bottom:448.635000px;}
.y68{bottom:454.140000px;}
.y63{bottom:455.295000px;}
.yea{bottom:463.035000px;}
.ybd{bottom:471.855000px;}
.y9d{bottom:472.575000px;}
.y10a{bottom:473.475000px;}
.y11e{bottom:474.015000px;}
.y1e{bottom:476.355000px;}
.y5f{bottom:483.090000px;}
.y62{bottom:498.135000px;}
.y5e{bottom:499.290000px;}
.ybc{bottom:499.755000px;}
.y9c{bottom:500.475000px;}
.y109{bottom:501.195000px;}
.y11d{bottom:501.735000px;}
.y1d{bottom:504.255000px;}
.y61{bottom:514.515000px;}
.y5d{bottom:515.700000px;}
.ye9{bottom:519.375000px;}
.ybb{bottom:527.475000px;}
.y9b{bottom:528.195000px;}
.y108{bottom:528.915000px;}
.y11c{bottom:529.635000px;}
.y60{bottom:530.715000px;}
.y5c{bottom:531.900000px;}
.y1c{bottom:531.975000px;}
.y30{bottom:539.535000px;}
.yba{bottom:555.195000px;}
.y9a{bottom:555.915000px;}
.y107{bottom:556.635000px;}
.y11b{bottom:557.355000px;}
.y1b{bottom:559.695000px;}
.y59{bottom:575.895000px;}
.yb9{bottom:582.915000px;}
.y5b{bottom:582.945000px;}
.y99{bottom:583.815000px;}
.y106{bottom:584.535000px;}
.y11a{bottom:585.075000px;}
.y1a{bottom:587.415000px;}
.ye8{bottom:591.375000px;}
.y58{bottom:592.275000px;}
.y5a{bottom:599.145000px;}
.y57{bottom:608.475000px;}
.yb8{bottom:610.815000px;}
.y98{bottom:611.535000px;}
.y105{bottom:612.255000px;}
.y119{bottom:612.975000px;}
.y19{bottom:615.315000px;}
.y97{bottom:631.875000px;}
.y54{bottom:636.270000px;}
.yb7{bottom:638.535000px;}
.ye7{bottom:639.255000px;}
.y104{bottom:639.975000px;}
.y118{bottom:640.695000px;}
.y18{bottom:643.035000px;}
.y53{bottom:652.470000px;}
.y56{bottom:659.550000px;}
.y95{bottom:660.345000px;}
.yb6{bottom:666.285000px;}
.ye6{bottom:667.005000px;}
.y103{bottom:667.905000px;}
.y117{bottom:668.445000px;}
.y52{bottom:668.880000px;}
.y17{bottom:670.785000px;}
.y55{bottom:675.750000px;}
.y2f{bottom:678.345000px;}
.y51{bottom:685.080000px;}
.y94{bottom:688.965000px;}
.yb5{bottom:694.005000px;}
.ye5{bottom:694.905000px;}
.y102{bottom:695.625000px;}
.y116{bottom:696.165000px;}
.y16{bottom:698.505000px;}
.yb4{bottom:721.905000px;}
.ye4{bottom:722.625000px;}
.y101{bottom:723.345000px;}
.y115{bottom:724.065000px;}
.y12c{bottom:726.225000px;}
.y15{bottom:726.405000px;}
.yb3{bottom:749.625000px;}
.ye3{bottom:750.345000px;}
.y100{bottom:751.065000px;}
.y114{bottom:751.785000px;}
.y14{bottom:754.125000px;}
.y2e{bottom:761.685000px;}
.y8e{bottom:773.025000px;}
.yb2{bottom:777.345000px;}
.ye2{bottom:778.065000px;}
.yff{bottom:778.965000px;}
.y113{bottom:779.505000px;}
.y13{bottom:781.845000px;}
.yb1{bottom:805.245000px;}
.ye1{bottom:805.965000px;}
.yfe{bottom:806.685000px;}
.y111{bottom:807.405000px;}
.y12{bottom:809.745000px;}
.y112{bottom:814.965000px;}
.yb0{bottom:825.585000px;}
.y110{bottom:830.625000px;}
.yd3{bottom:832.965000px;}
.ye0{bottom:833.685000px;}
.yfd{bottom:834.405000px;}
.y11{bottom:837.465000px;}
.y2d{bottom:845.025000px;}
.yaf{bottom:854.025000px;}
.yfa{bottom:854.745000px;}
.yd2{bottom:860.685000px;}
.ydf{bottom:861.405000px;}
.y10{bottom:865.185000px;}
.yad{bottom:882.645000px;}
.yd1{bottom:888.405000px;}
.yde{bottom:889.305000px;}
.yf{bottom:892.905000px;}
.yd0{bottom:916.350000px;}
.ydd{bottom:917.070000px;}
.ye{bottom:920.850000px;}
.y8d{bottom:928.410000px;}
.ycf{bottom:936.690000px;}
.yac{bottom:938.850000px;}
.ydc{bottom:944.790000px;}
.yd{bottom:948.570000px;}
.yce{bottom:965.130000px;}
.yf9{bottom:966.750000px;}
.ydb{bottom:972.510000px;}
.yc{bottom:976.290000px;}
.yda{bottom:993.030000px;}
.ycd{bottom:993.750000px;}
.yaa{bottom:995.190000px;}
.yb{bottom:1004.190000px;}
.y2c{bottom:1011.750000px;}
.yd9{bottom:1021.470000px;}
.ycc{bottom:1022.190000px;}
.ya{bottom:1031.910000px;}
.yd8{bottom:1050.090000px;}
.yf8{bottom:1050.810000px;}
.y9{bottom:1059.630000px;}
.ycb{bottom:1078.530000px;}
.y8{bottom:1087.350000px;}
.ya9{bottom:1094.910000px;}
.y7{bottom:1115.250000px;}
.y4{bottom:1139.370000px;}
.y3{bottom:1159.200000px;}
.y2{bottom:1183.320000px;}
.y1{bottom:1210.680000px;}
.h1e{height:27.720000px;}
.h1b{height:27.756000px;}
.h1a{height:27.900000px;}
.h22{height:27.936000px;}
.hd{height:38.158594px;}
.h17{height:44.704687px;}
.h7{height:49.150080px;}
.h5{height:50.229844px;}
.hb{height:52.998047px;}
.h21{height:55.440000px;}
.h1d{height:55.476000px;}
.h1c{height:55.620000px;}
.h20{height:55.656000px;}
.h11{height:55.842188px;}
.h16{height:55.969102px;}
.hf{height:58.651172px;}
.he{height:59.439023px;}
.h13{height:62.184375px;}
.h12{height:62.325703px;}
.h14{height:63.855000px;}
.h15{height:64.000125px;}
.hc{height:65.884219px;}
.h4{height:67.169883px;}
.ha{height:74.244727px;}
.h2{height:76.355508px;}
.h9{height:82.676953px;}
.h19{height:83.340000px;}
.h8{height:84.898125px;}
.h24{height:86.585445px;}
.h6{height:95.874961px;}
.h3{height:105.060586px;}
.h1f{height:111.060000px;}
.h23{height:111.276000px;}
.h18{height:138.816000px;}
.h10{height:710.100000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:147.456000px;}
.w5{width:161.130000px;}
.wa{width:161.280000px;}
.w7{width:161.310000px;}
.w6{width:163.440000px;}
.wd{width:165.780000px;}
.wb{width:165.810000px;}
.w8{width:165.990000px;}
.wf{width:171.210000px;}
.w4{width:172.830000px;}
.wc{width:179.490000px;}
.w9{width:190.650000px;}
.w10{width:245.775000px;}
.w12{width:323.310000px;}
.w11{width:360.390000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:7.560000px;}
.x65{left:9.900000px;}
.x42{left:16.065000px;}
.x57{left:17.460000px;}
.x43{left:19.305000px;}
.x40{left:20.880000px;}
.x54{left:23.040000px;}
.x3f{left:24.300000px;}
.x3c{left:26.100000px;}
.x5b{left:27.900000px;}
.x55{left:32.760000px;}
.x44{left:34.245000px;}
.x5{left:42.479987px;}
.x3d{left:47.520000px;}
.x63{left:51.120000px;}
.x52{left:52.194000px;}
.x36{left:59.400000px;}
.x46{left:62.280000px;}
.x38{left:64.620000px;}
.x37{left:65.880000px;}
.x5a{left:68.445000px;}
.x47{left:70.065000px;}
.x45{left:71.640000px;}
.x59{left:75.420000px;}
.x48{left:76.860000px;}
.x60{left:80.280000px;}
.x4{left:84.995987px;}
.x15{left:89.855987px;}
.x4b{left:94.715987px;}
.x21{left:97.667987px;}
.x26{left:100.187987px;}
.x49{left:101.375987px;}
.x1{left:106.415987px;}
.x2c{left:107.747987px;}
.x2a{left:109.007987px;}
.x25{left:110.267987px;}
.x51{left:111.456000px;}
.x27{left:113.507987px;}
.x17{left:115.415987px;}
.x2d{left:116.567987px;}
.x1b{left:118.367987px;}
.x4c{left:120.636000px;}
.x1d{left:122.147987px;}
.x2b{left:123.767987px;}
.x1c{left:124.847987px;}
.x24{left:127.187987px;}
.x22{left:129.347987px;}
.x5c{left:132.155987px;}
.x29{left:133.307987px;}
.x1e{left:136.547987px;}
.x23{left:141.767987px;}
.x28{left:147.167987px;}
.x10{left:160.769973px;}
.x6{left:163.109987px;}
.x8{left:164.369987px;}
.x11{left:167.609987px;}
.xe{left:185.249973px;}
.xf{left:192.089987px;}
.x2f{left:241.769987px;}
.x61{left:246.990000px;}
.x3b{left:272.595000px;}
.x4d{left:287.175000px;}
.x33{left:289.695000px;}
.x53{left:291.855000px;}
.x66{left:293.474987px;}
.x19{left:296.894987px;}
.x1f{left:299.594987px;}
.x14{left:301.034987px;}
.x1a{left:303.734987px;}
.x20{left:306.434987px;}
.x5d{left:336.674987px;}
.x9{left:364.214987px;}
.x4a{left:385.094987px;}
.x62{left:395.175000px;}
.x7{left:446.504987px;}
.x4e{left:449.205000px;}
.x34{left:451.725000px;}
.x56{left:453.885000px;}
.xc{left:455.504973px;}
.xd{left:462.344987px;}
.x3e{left:463.965000px;}
.x2{left:521.564987px;}
.x6e{left:527.504973px;}
.x6f{left:541.184987px;}
.x5e{left:542.444973px;}
.x67{left:550.724973px;}
.x5f{left:556.124987px;}
.x68{left:564.404987px;}
.x64{left:567.105000px;}
.x69{left:568.184973px;}
.x6a{left:581.864987px;}
.x6b{left:585.644973px;}
.x6c{left:599.324987px;}
.x4f{left:611.205000px;}
.x35{left:615.885000px;}
.x58{left:620.385000px;}
.x41{left:625.965000px;}
.x3{left:641.669987px;}
.x30{left:644.369973px;}
.x31{left:651.209987px;}
.x39{left:667.769973px;}
.x3a{left:681.449987px;}
.x6d{left:686.309987px;}
.x12{left:690.629973px;}
.x13{left:697.469987px;}
.x2e{left:739.229987px;}
.x50{left:756.509973px;}
.x18{left:770.729973px;}
.x16{left:777.569987px;}
.xa{left:796.109973px;}
.xb{left:802.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.800000pt;}
.ls10{letter-spacing:-0.608000pt;}
.lsd{letter-spacing:-0.336533pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.303467pt;}
.ls12{letter-spacing:-0.241067pt;}
.ls7{letter-spacing:-0.206933pt;}
.ls15{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.047360pt;}
.ls1f{letter-spacing:-0.024960pt;}
.ls1e{letter-spacing:-0.016640pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.030720pt;}
.ls3{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.094720pt;}
.lsa{letter-spacing:0.106240pt;}
.ls20{letter-spacing:0.131733pt;}
.ls1d{letter-spacing:0.135040pt;}
.ls9{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.193280pt;}
.ls17{letter-spacing:0.224640pt;}
.lsb{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.303467pt;}
.ls1c{letter-spacing:0.315307pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.328320pt;}
.ls14{letter-spacing:0.336533pt;}
.ls1b{letter-spacing:0.336640pt;}
.ls22{letter-spacing:0.434987pt;}
.ls11{letter-spacing:4.608000pt;}
.ls13{letter-spacing:19.040000pt;}
.ls4{letter-spacing:51.040000pt;}
.ls23{letter-spacing:150.682027pt;}
.ls19{letter-spacing:187.802027pt;}
.wse{word-spacing:-19.056533pt;}
.ws4{word-spacing:-19.040000pt;}
.ws11{word-spacing:-19.023467pt;}
.ws14{word-spacing:-18.851733pt;}
.ws3{word-spacing:-18.744960pt;}
.ws5{word-spacing:-18.720000pt;}
.ws12{word-spacing:-18.703360pt;}
.ws13{word-spacing:-18.695040pt;}
.ws15{word-spacing:-18.416533pt;}
.ws10{word-spacing:-18.400000pt;}
.wsb{word-spacing:-18.112000pt;}
.wsf{word-spacing:-17.920000pt;}
.ws0{word-spacing:-17.327787pt;}
.wsd{word-spacing:-17.293653pt;}
.wsc{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.248000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws1{word-spacing:-13.184000pt;}
.wsa{word-spacing:-12.960000pt;}
.ws6{word-spacing:0.000000pt;}
._29{margin-left:-5.391360pt;}
._1c{margin-left:-4.343040pt;}
._25{margin-left:-2.995200pt;}
._2{margin-left:-1.272960pt;}
._3{width:1.021440pt;}
._4{width:2.547627pt;}
._23{width:4.118400pt;}
._8{width:5.016960pt;}
._22{width:5.915520pt;}
._a{width:7.113600pt;}
._9{width:8.461440pt;}
._26{width:9.434880pt;}
._1f{width:10.707840pt;}
._20{width:11.905920pt;}
._17{width:13.628160pt;}
._11{width:14.710400pt;}
._12{width:15.697920pt;}
._1b{width:16.997760pt;}
._b{width:19.693440pt;}
._c{width:20.747520pt;}
._33{width:21.680853pt;}
._2a{width:22.641067pt;}
._1e{width:23.574187pt;}
._1d{width:24.485760pt;}
._19{width:25.476907pt;}
._18{width:26.881920pt;}
._24{width:28.526507pt;}
._32{width:29.727360pt;}
._31{width:30.850560pt;}
._27{width:31.898880pt;}
._39{width:33.171840pt;}
._3d{width:34.444800pt;}
._28{width:35.867520pt;}
._13{width:36.766080pt;}
._14{width:37.694507pt;}
._2c{width:38.712960pt;}
._2d{width:40.312107pt;}
._10{width:44.254080pt;}
._34{width:45.601920pt;}
._43{width:46.738347pt;}
._f{width:47.698560pt;}
._3c{width:48.773760pt;}
._36{width:50.169600pt;}
._d{width:51.217920pt;}
._21{width:52.865280pt;}
._16{width:53.988480pt;}
._15{width:54.887040pt;}
._37{width:56.072747pt;}
._35{width:57.058560pt;}
._2f{width:58.106880pt;}
._2e{width:59.304960pt;}
._38{width:61.326720pt;}
._e{width:62.674560pt;}
._30{width:63.872640pt;}
._5{width:64.995840pt;}
._6{width:65.894400pt;}
._7{width:66.792960pt;}
._41{width:68.664960pt;}
._3b{width:70.462080pt;}
._3a{width:71.809920pt;}
._42{width:73.008000pt;}
._3e{width:86.186880pt;}
._1a{width:87.834240pt;}
._2b{width:103.559040pt;}
._3f{width:105.431040pt;}
._40{width:106.404480pt;}
._0{width:259.753387pt;}
._1{width:1078.601387pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fsa{font-size:56.448000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:7.200000pt;}
.y96{bottom:7.360000pt;}
.y6{bottom:9.280000pt;}
.y89{bottom:11.746667pt;}
.y88{bottom:26.306667pt;}
.y8c{bottom:26.720000pt;}
.y5{bottom:27.680000pt;}
.y92{bottom:31.840000pt;}
.yae{bottom:31.880000pt;}
.yab{bottom:32.000000pt;}
.yd7{bottom:32.026667pt;}
.y87{bottom:40.706667pt;}
.y8b{bottom:41.280000pt;}
.y86{bottom:55.266667pt;}
.y8a{bottom:55.680000pt;}
.y91{bottom:56.640000pt;}
.yfc{bottom:56.680000pt;}
.y41{bottom:59.520000pt;}
.y40{bottom:64.160000pt;}
.y85{bottom:69.666667pt;}
.y3f{bottom:74.880000pt;}
.y4f{bottom:76.000000pt;}
.y3e{bottom:79.520000pt;}
.y90{bottom:81.280000pt;}
.yfb{bottom:81.480000pt;}
.y3d{bottom:90.080000pt;}
.y3c{bottom:94.720000pt;}
.yca{bottom:98.560000pt;}
.y12b{bottom:100.480000pt;}
.y84{bottom:102.373333pt;}
.y2b{bottom:102.560000pt;}
.y81{bottom:103.426667pt;}
.y3b{bottom:105.440000pt;}
.y8f{bottom:105.920000pt;}
.y3a{bottom:110.080000pt;}
.y4e{bottom:113.120000pt;}
.yd6{bottom:114.560000pt;}
.y83{bottom:116.960000pt;}
.y80{bottom:117.986667pt;}
.yf6{bottom:119.840000pt;}
.y39{bottom:120.800000pt;}
.yc9{bottom:123.200000pt;}
.y12a{bottom:125.120000pt;}
.y38{bottom:125.440000pt;}
.y2a{bottom:127.200000pt;}
.y82{bottom:131.360000pt;}
.y7f{bottom:132.386667pt;}
.y37{bottom:136.186667pt;}
.y4d{bottom:137.786667pt;}
.y36{bottom:140.826667pt;}
.yf5{bottom:144.506667pt;}
.yc8{bottom:147.866667pt;}
.ya8{bottom:148.506667pt;}
.y129{bottom:149.786667pt;}
.y35{bottom:151.546667pt;}
.y29{bottom:151.866667pt;}
.y34{bottom:156.186667pt;}
.y7c{bottom:157.093333pt;}
.y4c{bottom:162.426667pt;}
.yd5{bottom:164.666667pt;}
.y33{bottom:168.026667pt;}
.yf4{bottom:169.306667pt;}
.y7b{bottom:171.493333pt;}
.yc7{bottom:172.506667pt;}
.ya7{bottom:173.306667pt;}
.y128{bottom:174.426667pt;}
.y28{bottom:176.506667pt;}
.y7e{bottom:177.786667pt;}
.y7a{bottom:186.080000pt;}
.y4b{bottom:187.226667pt;}
.y7d{bottom:192.186667pt;}
.yf7{bottom:193.306667pt;}
.yf3{bottom:193.946667pt;}
.yc6{bottom:197.306667pt;}
.ya6{bottom:197.946667pt;}
.y127{bottom:199.226667pt;}
.y79{bottom:200.480000pt;}
.y27{bottom:201.306667pt;}
.y4a{bottom:211.866667pt;}
.yf2{bottom:218.586667pt;}
.yc5{bottom:221.946667pt;}
.ya5{bottom:222.586667pt;}
.y126{bottom:223.866667pt;}
.y75{bottom:225.186667pt;}
.y26{bottom:225.946667pt;}
.y32{bottom:232.666667pt;}
.y49{bottom:236.506667pt;}
.y78{bottom:238.533333pt;}
.y74{bottom:239.586667pt;}
.yf1{bottom:243.226667pt;}
.yc4{bottom:246.586667pt;}
.ya4{bottom:247.226667pt;}
.y125{bottom:248.506667pt;}
.y25{bottom:250.586667pt;}
.y77{bottom:253.120000pt;}
.y73{bottom:254.146667pt;}
.y48{bottom:261.146667pt;}
.y76{bottom:267.520000pt;}
.yf0{bottom:268.026667pt;}
.y72{bottom:268.546667pt;}
.yc3{bottom:271.386667pt;}
.ya3{bottom:272.026667pt;}
.y124{bottom:273.306667pt;}
.y24{bottom:275.386667pt;}
.yd4{bottom:278.106667pt;}
.y47{bottom:285.946667pt;}
.yef{bottom:292.666667pt;}
.y6e{bottom:293.253333pt;}
.yc2{bottom:296.026667pt;}
.ya2{bottom:296.666667pt;}
.y10f{bottom:297.306667pt;}
.y123{bottom:297.946667pt;}
.y23{bottom:300.026667pt;}
.y71{bottom:306.626667pt;}
.y31{bottom:306.746667pt;}
.y6d{bottom:307.653333pt;}
.y46{bottom:310.586667pt;}
.yee{bottom:317.306667pt;}
.yc1{bottom:320.666667pt;}
.y70{bottom:321.186667pt;}
.ya1{bottom:321.306667pt;}
.y10e{bottom:321.946667pt;}
.y6c{bottom:322.240000pt;}
.y122{bottom:322.586667pt;}
.y22{bottom:324.666667pt;}
.y45{bottom:335.226667pt;}
.yed{bottom:335.386667pt;}
.y6f{bottom:335.586667pt;}
.y6b{bottom:336.640000pt;}
.yc0{bottom:345.306667pt;}
.ya0{bottom:346.106667pt;}
.y10d{bottom:346.746667pt;}
.y67{bottom:346.786667pt;}
.y121{bottom:347.226667pt;}
.y21{bottom:349.306667pt;}
.y43{bottom:360.066667pt;}
.yec{bottom:360.866667pt;}
.y66{bottom:361.346667pt;}
.y44{bottom:366.786667pt;}
.ybf{bottom:370.146667pt;}
.y9f{bottom:370.786667pt;}
.y10c{bottom:371.426667pt;}
.y120{bottom:372.066667pt;}
.y20{bottom:374.146667pt;}
.y6a{bottom:374.693333pt;}
.y65{bottom:375.746667pt;}
.y50{bottom:377.600000pt;}
.y42{bottom:380.706667pt;}
.yeb{bottom:386.146667pt;}
.y69{bottom:389.280000pt;}
.y64{bottom:390.306667pt;}
.ybe{bottom:394.786667pt;}
.y9e{bottom:395.426667pt;}
.y10b{bottom:396.066667pt;}
.y11f{bottom:396.706667pt;}
.y1f{bottom:398.786667pt;}
.y68{bottom:403.680000pt;}
.y63{bottom:404.706667pt;}
.yea{bottom:411.586667pt;}
.ybd{bottom:419.426667pt;}
.y9d{bottom:420.066667pt;}
.y10a{bottom:420.866667pt;}
.y11e{bottom:421.346667pt;}
.y1e{bottom:423.426667pt;}
.y5f{bottom:429.413333pt;}
.y62{bottom:442.786667pt;}
.y5e{bottom:443.813333pt;}
.ybc{bottom:444.226667pt;}
.y9c{bottom:444.866667pt;}
.y109{bottom:445.506667pt;}
.y11d{bottom:445.986667pt;}
.y1d{bottom:448.226667pt;}
.y61{bottom:457.346667pt;}
.y5d{bottom:458.400000pt;}
.ye9{bottom:461.666667pt;}
.ybb{bottom:468.866667pt;}
.y9b{bottom:469.506667pt;}
.y108{bottom:470.146667pt;}
.y11c{bottom:470.786667pt;}
.y60{bottom:471.746667pt;}
.y5c{bottom:472.800000pt;}
.y1c{bottom:472.866667pt;}
.y30{bottom:479.586667pt;}
.yba{bottom:493.506667pt;}
.y9a{bottom:494.146667pt;}
.y107{bottom:494.786667pt;}
.y11b{bottom:495.426667pt;}
.y1b{bottom:497.506667pt;}
.y59{bottom:511.906667pt;}
.yb9{bottom:518.146667pt;}
.y5b{bottom:518.173333pt;}
.y99{bottom:518.946667pt;}
.y106{bottom:519.586667pt;}
.y11a{bottom:520.066667pt;}
.y1a{bottom:522.146667pt;}
.ye8{bottom:525.666667pt;}
.y58{bottom:526.466667pt;}
.y5a{bottom:532.573333pt;}
.y57{bottom:540.866667pt;}
.yb8{bottom:542.946667pt;}
.y98{bottom:543.586667pt;}
.y105{bottom:544.226667pt;}
.y119{bottom:544.866667pt;}
.y19{bottom:546.946667pt;}
.y97{bottom:561.666667pt;}
.y54{bottom:565.573333pt;}
.yb7{bottom:567.586667pt;}
.ye7{bottom:568.226667pt;}
.y104{bottom:568.866667pt;}
.y118{bottom:569.506667pt;}
.y18{bottom:571.586667pt;}
.y53{bottom:579.973333pt;}
.y56{bottom:586.266667pt;}
.y95{bottom:586.973333pt;}
.yb6{bottom:592.253333pt;}
.ye6{bottom:592.893333pt;}
.y103{bottom:593.693333pt;}
.y117{bottom:594.173333pt;}
.y52{bottom:594.560000pt;}
.y17{bottom:596.253333pt;}
.y55{bottom:600.666667pt;}
.y2f{bottom:602.973333pt;}
.y51{bottom:608.960000pt;}
.y94{bottom:612.413333pt;}
.yb5{bottom:616.893333pt;}
.ye5{bottom:617.693333pt;}
.y102{bottom:618.333333pt;}
.y116{bottom:618.813333pt;}
.y16{bottom:620.893333pt;}
.yb4{bottom:641.693333pt;}
.ye4{bottom:642.333333pt;}
.y101{bottom:642.973333pt;}
.y115{bottom:643.613333pt;}
.y12c{bottom:645.533333pt;}
.y15{bottom:645.693333pt;}
.yb3{bottom:666.333333pt;}
.ye3{bottom:666.973333pt;}
.y100{bottom:667.613333pt;}
.y114{bottom:668.253333pt;}
.y14{bottom:670.333333pt;}
.y2e{bottom:677.053333pt;}
.y8e{bottom:687.133333pt;}
.yb2{bottom:690.973333pt;}
.ye2{bottom:691.613333pt;}
.yff{bottom:692.413333pt;}
.y113{bottom:692.893333pt;}
.y13{bottom:694.973333pt;}
.yb1{bottom:715.773333pt;}
.ye1{bottom:716.413333pt;}
.yfe{bottom:717.053333pt;}
.y111{bottom:717.693333pt;}
.y12{bottom:719.773333pt;}
.y112{bottom:724.413333pt;}
.yb0{bottom:733.853333pt;}
.y110{bottom:738.333333pt;}
.yd3{bottom:740.413333pt;}
.ye0{bottom:741.053333pt;}
.yfd{bottom:741.693333pt;}
.y11{bottom:744.413333pt;}
.y2d{bottom:751.133333pt;}
.yaf{bottom:759.133333pt;}
.yfa{bottom:759.773333pt;}
.yd2{bottom:765.053333pt;}
.ydf{bottom:765.693333pt;}
.y10{bottom:769.053333pt;}
.yad{bottom:784.573333pt;}
.yd1{bottom:789.693333pt;}
.yde{bottom:790.493333pt;}
.yf{bottom:793.693333pt;}
.yd0{bottom:814.533333pt;}
.ydd{bottom:815.173333pt;}
.ye{bottom:818.533333pt;}
.y8d{bottom:825.253333pt;}
.ycf{bottom:832.613333pt;}
.yac{bottom:834.533333pt;}
.ydc{bottom:839.813333pt;}
.yd{bottom:843.173333pt;}
.yce{bottom:857.893333pt;}
.yf9{bottom:859.333333pt;}
.ydb{bottom:864.453333pt;}
.yc{bottom:867.813333pt;}
.yda{bottom:882.693333pt;}
.ycd{bottom:883.333333pt;}
.yaa{bottom:884.613333pt;}
.yb{bottom:892.613333pt;}
.y2c{bottom:899.333333pt;}
.yd9{bottom:907.973333pt;}
.ycc{bottom:908.613333pt;}
.ya{bottom:917.253333pt;}
.yd8{bottom:933.413333pt;}
.yf8{bottom:934.053333pt;}
.y9{bottom:941.893333pt;}
.ycb{bottom:958.693333pt;}
.y8{bottom:966.533333pt;}
.ya9{bottom:973.253333pt;}
.y7{bottom:991.333333pt;}
.y4{bottom:1012.773333pt;}
.y3{bottom:1030.400000pt;}
.y2{bottom:1051.840000pt;}
.y1{bottom:1076.160000pt;}
.h1e{height:24.640000pt;}
.h1b{height:24.672000pt;}
.h1a{height:24.800000pt;}
.h22{height:24.832000pt;}
.hd{height:33.918750pt;}
.h17{height:39.737500pt;}
.h7{height:43.688960pt;}
.h5{height:44.648750pt;}
.hb{height:47.109375pt;}
.h21{height:49.280000pt;}
.h1d{height:49.312000pt;}
.h1c{height:49.440000pt;}
.h20{height:49.472000pt;}
.h11{height:49.637500pt;}
.h16{height:49.750312pt;}
.hf{height:52.134375pt;}
.he{height:52.834688pt;}
.h13{height:55.275000pt;}
.h12{height:55.400625pt;}
.h14{height:56.760000pt;}
.h15{height:56.889000pt;}
.hc{height:58.563750pt;}
.h4{height:59.706562pt;}
.ha{height:65.995312pt;}
.h2{height:67.871563pt;}
.h9{height:73.490625pt;}
.h19{height:74.080000pt;}
.h8{height:75.465000pt;}
.h24{height:76.964840pt;}
.h6{height:85.222187pt;}
.h3{height:93.387187pt;}
.h1f{height:98.720000pt;}
.h23{height:98.912000pt;}
.h18{height:123.392000pt;}
.h10{height:631.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:131.072000pt;}
.w5{width:143.226667pt;}
.wa{width:143.360000pt;}
.w7{width:143.386667pt;}
.w6{width:145.280000pt;}
.wd{width:147.360000pt;}
.wb{width:147.386667pt;}
.w8{width:147.546667pt;}
.wf{width:152.186667pt;}
.w4{width:153.626667pt;}
.wc{width:159.546667pt;}
.w9{width:169.466667pt;}
.w10{width:218.466667pt;}
.w12{width:287.386667pt;}
.w11{width:320.346667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:6.720000pt;}
.x65{left:8.800000pt;}
.x42{left:14.280000pt;}
.x57{left:15.520000pt;}
.x43{left:17.160000pt;}
.x40{left:18.560000pt;}
.x54{left:20.480000pt;}
.x3f{left:21.600000pt;}
.x3c{left:23.200000pt;}
.x5b{left:24.800000pt;}
.x55{left:29.120000pt;}
.x44{left:30.440000pt;}
.x5{left:37.759988pt;}
.x3d{left:42.240000pt;}
.x63{left:45.440000pt;}
.x52{left:46.394667pt;}
.x36{left:52.800000pt;}
.x46{left:55.360000pt;}
.x38{left:57.440000pt;}
.x37{left:58.560000pt;}
.x5a{left:60.840000pt;}
.x47{left:62.280000pt;}
.x45{left:63.680000pt;}
.x59{left:67.040000pt;}
.x48{left:68.320000pt;}
.x60{left:71.360000pt;}
.x4{left:75.551988pt;}
.x15{left:79.871988pt;}
.x4b{left:84.191988pt;}
.x21{left:86.815988pt;}
.x26{left:89.055988pt;}
.x49{left:90.111988pt;}
.x1{left:94.591988pt;}
.x2c{left:95.775988pt;}
.x2a{left:96.895988pt;}
.x25{left:98.015988pt;}
.x51{left:99.072000pt;}
.x27{left:100.895988pt;}
.x17{left:102.591988pt;}
.x2d{left:103.615988pt;}
.x1b{left:105.215988pt;}
.x4c{left:107.232000pt;}
.x1d{left:108.575988pt;}
.x2b{left:110.015988pt;}
.x1c{left:110.975988pt;}
.x24{left:113.055988pt;}
.x22{left:114.975988pt;}
.x5c{left:117.471988pt;}
.x29{left:118.495988pt;}
.x1e{left:121.375988pt;}
.x23{left:126.015988pt;}
.x28{left:130.815988pt;}
.x10{left:142.906643pt;}
.x6{left:144.986655pt;}
.x8{left:146.106655pt;}
.x11{left:148.986655pt;}
.xe{left:164.666643pt;}
.xf{left:170.746655pt;}
.x2f{left:214.906655pt;}
.x61{left:219.546667pt;}
.x3b{left:242.306667pt;}
.x4d{left:255.266667pt;}
.x33{left:257.506667pt;}
.x53{left:259.426667pt;}
.x66{left:260.866655pt;}
.x19{left:263.906655pt;}
.x1f{left:266.306655pt;}
.x14{left:267.586655pt;}
.x1a{left:269.986655pt;}
.x20{left:272.386655pt;}
.x5d{left:299.266655pt;}
.x9{left:323.746655pt;}
.x4a{left:342.306655pt;}
.x62{left:351.266667pt;}
.x7{left:396.893322pt;}
.x4e{left:399.293333pt;}
.x34{left:401.533333pt;}
.x56{left:403.453333pt;}
.xc{left:404.893310pt;}
.xd{left:410.973322pt;}
.x3e{left:412.413333pt;}
.x2{left:463.613322pt;}
.x6e{left:468.893310pt;}
.x6f{left:481.053322pt;}
.x5e{left:482.173310pt;}
.x67{left:489.533310pt;}
.x5f{left:494.333322pt;}
.x68{left:501.693322pt;}
.x64{left:504.093333pt;}
.x69{left:505.053310pt;}
.x6a{left:517.213322pt;}
.x6b{left:520.573310pt;}
.x6c{left:532.733322pt;}
.x4f{left:543.293333pt;}
.x35{left:547.453333pt;}
.x58{left:551.453333pt;}
.x41{left:556.413333pt;}
.x3{left:570.373322pt;}
.x30{left:572.773310pt;}
.x31{left:578.853322pt;}
.x39{left:593.573310pt;}
.x3a{left:605.733322pt;}
.x6d{left:610.053322pt;}
.x12{left:613.893310pt;}
.x13{left:619.973322pt;}
.x2e{left:657.093322pt;}
.x50{left:672.453310pt;}
.x18{left:685.093310pt;}
.x16{left:691.173322pt;}
.xa{left:707.653310pt;}
.xb{left:713.733322pt;}
}




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