
    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_7cbed22446d076d34b76a626.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8619a7f39f0874b61a825e27.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a3de58cf015a87ee4e3a13f1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_28143c284b3545c4c960b35c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e1751b49fcba72d9d6593b43.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7ddb23b2b25a6260c3b6a10f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6678b3f7d83a9f453782d996.woff')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-0.378600px;}
.ls10{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.341400px;}
.lsd{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.161400px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls11{letter-spacing:0.037440px;}
.lsc{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.217440px;}
.lsa{letter-spacing:0.252720px;}
.ls13{letter-spacing:0.341280px;}
.ls9{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.350400px;}
.ls7{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.378600px;}
.ls12{letter-spacing:2.700000px;}
.lse{letter-spacing:6.797280px;}
.ls15{letter-spacing:19.980000px;}
.ls6{letter-spacing:41.580000px;}
.ls17{letter-spacing:45.180000px;}
.ls16{letter-spacing:45.900000px;}
.ls5{letter-spacing:46.421280px;}
.ls3{letter-spacing:57.221280px;}
.ls18{letter-spacing:83.861280px;}
.ls0{letter-spacing:84.581280px;}
.ls8{letter-spacing:176.741280px;}
.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;}
}
.ws7{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.410400px;}
.ws5{word-spacing:-21.401400px;}
.wsb{word-spacing:-21.312720px;}
.ws4{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.wsc{word-spacing:-20.898600px;}
.ws8{word-spacing:-20.718600px;}
.ws9{word-spacing:-20.700000px;}
.wsa{word-spacing:-20.681400px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.560000px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-4.885920px;}
._9{margin-left:-3.622320px;}
._b{margin-left:-2.527200px;}
._0{margin-left:-1.126080px;}
._7{width:1.067904px;}
._15{width:2.092416px;}
._a{width:3.259680px;}
._10{width:4.548960px;}
._4{width:5.600880px;}
._6{width:7.539264px;}
._5{width:8.889408px;}
._c{width:10.866960px;}
._d{width:12.201552px;}
._19{width:13.256640px;}
._18{width:14.374080px;}
._17{width:15.615360px;}
._14{width:16.848000px;}
._16{width:18.058320px;}
._13{width:19.237680px;}
._42{width:20.865600px;}
._1a{width:22.856256px;}
._31{width:23.963376px;}
._f{width:25.027920px;}
._e{width:26.030160px;}
._3d{width:27.158400px;}
._2e{width:29.147040px;}
._12{width:30.980496px;}
._11{width:32.095440px;}
._56{width:33.309840px;}
._57{width:34.495440px;}
._37{width:38.617920px;}
._36{width:39.810240px;}
._1d{width:40.914576px;}
._1e{width:42.113904px;}
._5a{width:43.994160px;}
._1f{width:45.321120px;}
._6d{width:46.418736px;}
._27{width:48.774960px;}
._28{width:50.278320px;}
._1b{width:51.417360px;}
._1c{width:52.664880px;}
._25{width:55.429920px;}
._38{width:56.900160px;}
._24{width:59.504400px;}
._23{width:61.158240px;}
._2a{width:62.169120px;}
._2b{width:63.379440px;}
._60{width:65.316960px;}
._20{width:68.065920px;}
._53{width:70.588080px;}
._52{width:72.783360px;}
._49{width:76.242240px;}
._4a{width:77.964480px;}
._59{width:79.101360px;}
._2f{width:80.701920px;}
._30{width:82.118400px;}
._67{width:86.040000px;}
._6b{width:87.920496px;}
._40{width:89.490240px;}
._5c{width:90.642240px;}
._61{width:92.832480px;}
._29{width:97.886880px;}
._5b{width:99.824400px;}
._26{width:103.473936px;}
._3f{width:109.229760px;}
._32{width:110.952000px;}
._4e{width:112.093200px;}
._3c{width:113.999040px;}
._4d{width:119.629440px;}
._45{width:122.212800px;}
._55{width:123.948000px;}
._44{width:125.591040px;}
._6c{width:128.971440px;}
._48{width:131.883840px;}
._35{width:133.738560px;}
._22{width:137.985120px;}
._21{width:139.111200px;}
._4f{width:142.197120px;}
._5e{width:143.797680px;}
._6a{width:145.008000px;}
._33{width:148.112640px;}
._4b{width:150.298560px;}
._3e{width:155.465280px;}
._62{width:159.466320px;}
._68{width:161.740800px;}
._2d{width:166.738176px;}
._2c{width:168.058800px;}
._65{width:179.094240px;}
._51{width:180.947520px;}
._4c{width:183.749760px;}
._66{width:185.580720px;}
._3b{width:192.360960px;}
._46{width:195.143040px;}
._43{width:199.051200px;}
._41{width:201.700800px;}
._5d{width:205.208640px;}
._47{width:240.583680px;}
._50{width:258.448320px;}
._39{width:273.703680px;}
._5f{width:284.394240px;}
._34{width:287.945280px;}
._64{width:296.019360px;}
._69{width:298.125360px;}
._3a{width:315.434880px;}
._63{width:336.569760px;}
._58{width:351.817200px;}
._1{width:430.638720px;}
._54{width:443.851920px;}
._2{width:612.782880px;}
._3{width:915.300000px;}
.fc8{color:rgb(31,77,120);}
.fc6{color:rgb(91,155,213);}
.fc5{color:rgb(46,116,181);}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(31,78,121);}
.fc7{color:rgb(19,19,19);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(196,89,17);}
.fs6{font-size:38.880000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:84.384000px;}
.y4{bottom:-6.840000px;}
.y0{bottom:0.000000px;}
.ycb{bottom:3.600000px;}
.yde{bottom:3.780000px;}
.yc3{bottom:3.960000px;}
.y6{bottom:4.500000px;}
.y89{bottom:4.680000px;}
.y8c{bottom:5.040000px;}
.y91{bottom:5.220000px;}
.y59{bottom:8.280000px;}
.y6d{bottom:8.460000px;}
.y63{bottom:8.640000px;}
.y5c{bottom:8.820000px;}
.y72{bottom:8.850000px;}
.yca{bottom:22.680000px;}
.ydd{bottom:22.710000px;}
.yc2{bottom:23.040000px;}
.y20{bottom:24.840000px;}
.yf2{bottom:28.800000px;}
.y115{bottom:28.980000px;}
.y8b{bottom:29.160000px;}
.y90{bottom:29.340000px;}
.y62{bottom:36.360000px;}
.y5b{bottom:36.540000px;}
.y71{bottom:36.570000px;}
.y61{bottom:36.585000px;}
.yc9{bottom:41.580000px;}
.ydc{bottom:41.610000px;}
.ye5{bottom:41.760000px;}
.yc1{bottom:41.970000px;}
.y27{bottom:51.120000px;}
.y103{bottom:52.920000px;}
.yf1{bottom:52.950000px;}
.y114{bottom:53.100000px;}
.y93{bottom:53.280000px;}
.y8f{bottom:53.460000px;}
.yc8{bottom:60.480000px;}
.yd1{bottom:60.525000px;}
.ye4{bottom:60.660000px;}
.ydb{bottom:60.690000px;}
.y5e{bottom:64.260000px;}
.y70{bottom:64.290000px;}
.y60{bottom:64.305000px;}
.y7{bottom:71.280000px;}
.y26{bottom:75.600000px;}
.y102{bottom:77.040000px;}
.y10c{bottom:77.220000px;}
.y8e{bottom:77.580000px;}
.yc7{bottom:79.560000px;}
.yda{bottom:79.590000px;}
.yd0{bottom:79.605000px;}
.ye3{bottom:79.740000px;}
.ye8{bottom:79.920000px;}
.ye1{bottom:80.100000px;}
.y5{bottom:97.560000px;}
.yc6{bottom:98.460000px;}
.ycf{bottom:98.505000px;}
.ye2{bottom:98.640000px;}
.yd9{bottom:98.670000px;}
.ye7{bottom:98.820000px;}
.ye0{bottom:99.000000px;}
.y25{bottom:99.900000px;}
.y101{bottom:101.340000px;}
.y11a{bottom:101.385000px;}
.yc5{bottom:117.540000px;}
.yd8{bottom:117.570000px;}
.yce{bottom:117.585000px;}
.yeb{bottom:117.900000px;}
.ycd{bottom:117.945000px;}
.y24{bottom:124.020000px;}
.y100{bottom:125.460000px;}
.y10b{bottom:125.505000px;}
.y3{bottom:129.060000px;}
.yd7{bottom:136.470000px;}
.yec{bottom:136.620000px;}
.yea{bottom:136.980000px;}
.y126{bottom:139.500000px;}
.y6f{bottom:142.020000px;}
.y125{bottom:144.756000px;}
.y23{bottom:147.780000px;}
.yff{bottom:149.580000px;}
.y10a{bottom:149.625000px;}
.yd6{bottom:155.550000px;}
.y124{bottom:157.710000px;}
.y1e{bottom:157.890000px;}
.yad{bottom:163.110000px;}
.y22{bottom:171.870000px;}
.yfe{bottom:173.700000px;}
.y109{bottom:173.745000px;}
.y119{bottom:173.925000px;}
.y67{bottom:174.270000px;}
.yd5{bottom:174.450000px;}
.y128{bottom:174.630000px;}
.yd4{bottom:174.810000px;}
.yef{bottom:175.530000px;}
.y87{bottom:175.710000px;}
.ybf{bottom:193.530000px;}
.yd3{bottom:193.890000px;}
.y1d{bottom:194.070000px;}
.yfd{bottom:197.820000px;}
.y108{bottom:197.865000px;}
.y122{bottom:198.030000px;}
.y113{bottom:198.045000px;}
.y123{bottom:205.590000px;}
.y66{bottom:210.450000px;}
.y42{bottom:210.810000px;}
.yee{bottom:211.350000px;}
.y86{bottom:212.070000px;}
.yac{bottom:219.450000px;}
.ybe{bottom:221.430000px;}
.yfc{bottom:221.985000px;}
.y112{bottom:222.165000px;}
.y6e{bottom:226.110000px;}
.y1c{bottom:230.250000px;}
.y121{bottom:234.210000px;}
.yed{bottom:235.470000px;}
.yfb{bottom:246.105000px;}
.y65{bottom:246.270000px;}
.y107{bottom:246.285000px;}
.y41{bottom:246.990000px;}
.y85{bottom:248.250000px;}
.ybd{bottom:249.150000px;}
.y120{bottom:255.450000px;}
.ye9{bottom:255.630000px;}
.yab{bottom:265.170000px;}
.y1b{bottom:266.430000px;}
.yfa{bottom:270.405000px;}
.y104{bottom:275.970000px;}
.ybc{bottom:276.870000px;}
.y64{bottom:282.630000px;}
.y40{bottom:283.350000px;}
.y84{bottom:284.430000px;}
.yf9{bottom:294.525000px;}
.y116{bottom:300.810000px;}
.yaa{bottom:301.350000px;}
.y1a{bottom:302.790000px;}
.ybb{bottom:304.590000px;}
.y6c{bottom:310.170000px;}
.yf8{bottom:318.645000px;}
.y3f{bottom:319.530000px;}
.y83{bottom:320.610000px;}
.yba{bottom:332.130000px;}
.ya9{bottom:337.530000px;}
.y19{bottom:338.970000px;}
.yf7{bottom:342.765000px;}
.y111{bottom:342.945000px;}
.y118{bottom:342.975000px;}
.yb9{bottom:355.170000px;}
.y3e{bottom:355.710000px;}
.y6b{bottom:355.890000px;}
.y82{bottom:356.970000px;}
.y5f{bottom:358.950000px;}
.yf5{bottom:366.885000px;}
.y106{bottom:366.915000px;}
.y110{bottom:367.065000px;}
.y117{bottom:367.095000px;}
.ya8{bottom:373.710000px;}
.y18{bottom:375.150000px;}
.yf6{bottom:391.005000px;}
.y10f{bottom:391.185000px;}
.y105{bottom:391.215000px;}
.yf4{bottom:391.365000px;}
.y6a{bottom:391.710000px;}
.y3d{bottom:391.890000px;}
.y81{bottom:393.195000px;}
.y54{bottom:403.995000px;}
.ye6{bottom:408.315000px;}
.ya7{bottom:409.935000px;}
.y17{bottom:411.375000px;}
.y11e{bottom:415.305000px;}
.y10e{bottom:415.335000px;}
.y69{bottom:427.935000px;}
.y3c{bottom:428.295000px;}
.y80{bottom:429.375000px;}
.y11d{bottom:439.425000px;}
.y53{bottom:440.355000px;}
.y5d{bottom:443.055000px;}
.ya6{bottom:446.295000px;}
.y16{bottom:447.735000px;}
.y68{bottom:459.615000px;}
.y11c{bottom:463.575000px;}
.y3b{bottom:464.475000px;}
.y7f{bottom:465.555000px;}
.y15{bottom:473.115000px;}
.y52{bottom:476.535000px;}
.ya5{bottom:482.475000px;}
.y3a{bottom:500.655000px;}
.y7e{bottom:501.735000px;}
.y9e{bottom:508.935000px;}
.y14{bottom:509.655000px;}
.y51{bottom:512.715000px;}
.ya4{bottom:518.655000px;}
.ydf{bottom:522.795000px;}
.y5a{bottom:527.115000px;}
.y39{bottom:536.835000px;}
.y7d{bottom:538.095000px;}
.y9d{bottom:545.115000px;}
.y13{bottom:545.835000px;}
.y50{bottom:548.895000px;}
.ya3{bottom:554.835000px;}
.y38{bottom:573.015000px;}
.y7c{bottom:573.915000px;}
.y9c{bottom:581.475000px;}
.y12{bottom:582.015000px;}
.y58{bottom:583.455000px;}
.y4f{bottom:585.255000px;}
.ya2{bottom:591.195000px;}
.y7b{bottom:605.415000px;}
.y37{bottom:609.375000px;}
.y9b{bottom:617.655000px;}
.y11{bottom:618.375000px;}
.y4e{bottom:621.435000px;}
.ya1{bottom:627.375000px;}
.y57{bottom:629.175000px;}
.yd2{bottom:637.455000px;}
.y36{bottom:645.585000px;}
.y9a{bottom:653.865000px;}
.y10{bottom:654.585000px;}
.y4d{bottom:657.285000px;}
.ya0{bottom:663.225000px;}
.y56{bottom:665.025000px;}
.y11f{bottom:668.085000px;}
.y35{bottom:681.765000px;}
.yf3{bottom:687.345000px;}
.y11b{bottom:688.065000px;}
.y99{bottom:690.045000px;}
.yf{bottom:690.765000px;}
.y4c{bottom:693.465000px;}
.y9f{bottom:694.725000px;}
.y55{bottom:696.525000px;}
.yb8{bottom:696.885000px;}
.y129{bottom:717.045000px;}
.y34{bottom:717.945000px;}
.yb7{bottom:724.605000px;}
.y98{bottom:726.405000px;}
.ye{bottom:726.945000px;}
.y4b{bottom:729.645000px;}
.y10d{bottom:736.305000px;}
.yb6{bottom:752.505000px;}
.y33{bottom:754.305000px;}
.y97{bottom:762.585000px;}
.yd{bottom:763.305000px;}
.y4a{bottom:766.005000px;}
.yb5{bottom:780.225000px;}
.y32{bottom:790.485000px;}
.y96{bottom:798.765000px;}
.yc{bottom:799.485000px;}
.y49{bottom:802.185000px;}
.yb4{bottom:807.945000px;}
.y31{bottom:826.665000px;}
.y95{bottom:834.585000px;}
.yb{bottom:835.665000px;}
.yb3{bottom:835.845000px;}
.y48{bottom:838.365000px;}
.ycc{bottom:847.005000px;}
.y30{bottom:862.845000px;}
.yb2{bottom:863.565000px;}
.y94{bottom:870.945000px;}
.ya{bottom:871.845000px;}
.y47{bottom:874.905000px;}
.y7a{bottom:883.185000px;}
.y92{bottom:891.150000px;}
.yb1{bottom:891.330000px;}
.y127{bottom:898.890000px;}
.y2f{bottom:899.250000px;}
.y9{bottom:908.070000px;}
.y46{bottom:911.310000px;}
.y79{bottom:911.490000px;}
.yb0{bottom:918.690000px;}
.y2e{bottom:935.430000px;}
.y78{bottom:939.210000px;}
.y8{bottom:944.430000px;}
.y45{bottom:947.490000px;}
.yaf{bottom:955.410000px;}
.y1f{bottom:963.510000px;}
.y21{bottom:963.540000px;}
.y8d{bottom:964.230000px;}
.y77{bottom:966.930000px;}
.y44{bottom:971.250000px;}
.y2d{bottom:971.610000px;}
.yae{bottom:975.210000px;}
.yc4{bottom:980.610000px;}
.y76{bottom:1002.750000px;}
.y2c{bottom:1007.790000px;}
.y75{bottom:1039.110000px;}
.y2b{bottom:1043.610000px;}
.y43{bottom:1043.970000px;}
.y74{bottom:1059.270000px;}
.y8a{bottom:1061.610000px;}
.y2a{bottom:1080.330000px;}
.yf0{bottom:1098.690000px;}
.y88{bottom:1110.750000px;}
.yc0{bottom:1114.170000px;}
.y73{bottom:1115.430000px;}
.y29{bottom:1116.510000px;}
.y28{bottom:1152.720000px;}
.y2{bottom:1175.580000px;}
.y1{bottom:1194.480000px;}
.h3{height:6.660000px;}
.h5{height:20.700000px;}
.h18{height:24.120000px;}
.h11{height:27.720000px;}
.h16{height:27.900000px;}
.h2a{height:38.158594px;}
.h19{height:48.240000px;}
.h29{height:52.998047px;}
.h15{height:55.440000px;}
.h12{height:55.620000px;}
.h17{height:55.656000px;}
.h1c{height:56.916000px;}
.h4{height:58.651172px;}
.hf{height:58.819922px;}
.h1d{height:65.010937px;}
.h7{height:65.884219px;}
.h2{height:66.757500px;}
.h6{height:70.664062px;}
.h1b{height:72.360000px;}
.h24{height:72.396000px;}
.h8{height:82.635820px;}
.hb{height:82.676953px;}
.h9{height:82.777078px;}
.h13{height:83.340000px;}
.h14{height:83.376000px;}
.h2b{height:83.787539px;}
.hd{height:84.898125px;}
.h10{height:86.585445px;}
.ha{height:87.695156px;}
.h1a{height:96.660000px;}
.h22{height:113.760000px;}
.h21{height:113.940000px;}
.h1e{height:132.840000px;}
.h1f{height:132.876000px;}
.h23{height:151.950000px;}
.he{height:191.340000px;}
.hc{height:191.370000px;}
.h20{height:208.830000px;}
.h25{height:410.430000px;}
.h26{height:410.655000px;}
.h27{height:434.775000px;}
.h28{height:483.015000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:105.696000px;}
.wa{width:113.940000px;}
.wd{width:121.680000px;}
.wf{width:123.696000px;}
.wc{width:126.756000px;}
.we{width:138.096000px;}
.w12{width:140.796000px;}
.w10{width:156.780000px;}
.w5{width:164.730000px;}
.w11{width:176.610000px;}
.w13{width:215.850000px;}
.w4{width:302.115000px;}
.w8{width:349.275000px;}
.w9{width:350.355000px;}
.w3{width:392.295000px;}
.w6{width:559.260000px;}
.w7{width:559.365000px;}
.w14{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:7.560000px;}
.x2{left:8.640000px;}
.x16{left:39.774000px;}
.xd{left:46.080000px;}
.xc{left:74.340000px;}
.xa{left:87.735000px;}
.x13{left:111.095987px;}
.x2b{left:126.035987px;}
.x1{left:127.655987px;}
.x2a{left:132.515987px;}
.x2c{left:134.315987px;}
.x14{left:135.575987px;}
.x7{left:141.155987px;}
.x8{left:159.689987px;}
.xe{left:169.770000px;}
.x6{left:172.649987px;}
.x1a{left:176.789987px;}
.x2d{left:180.749987px;}
.x12{left:187.409987px;}
.x10{left:192.089987px;}
.x11{left:201.089987px;}
.x1d{left:226.470000px;}
.xb{left:228.090000px;}
.x23{left:269.310000px;}
.x5{left:276.885000px;}
.xf{left:279.750000px;}
.x9{left:292.320000px;}
.x4{left:293.475000px;}
.x1e{left:332.895000px;}
.x29{left:343.694987px;}
.x24{left:446.655000px;}
.x1f{left:460.545000px;}
.x17{left:478.365000px;}
.x3{left:519.945000px;}
.x21{left:582.945000px;}
.x25{left:588.165000px;}
.x27{left:624.704973px;}
.x28{left:631.544987px;}
.x18{left:645.809987px;}
.x22{left:721.770000px;}
.x19{left:733.469987px;}
.x1b{left:819.539987px;}
.x15{left:827.999987px;}
.x1c{left:848.339987px;}
.x26{left:861.839987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.336533pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.303467pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.143467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls11{letter-spacing:0.033280pt;}
.lsc{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.193280pt;}
.lsa{letter-spacing:0.224640pt;}
.ls13{letter-spacing:0.303360pt;}
.ls9{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.311467pt;}
.ls7{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.336533pt;}
.ls12{letter-spacing:2.400000pt;}
.lse{letter-spacing:6.042027pt;}
.ls15{letter-spacing:17.760000pt;}
.ls6{letter-spacing:36.960000pt;}
.ls17{letter-spacing:40.160000pt;}
.ls16{letter-spacing:40.800000pt;}
.ls5{letter-spacing:41.263360pt;}
.ls3{letter-spacing:50.863360pt;}
.ls18{letter-spacing:74.543360pt;}
.ls0{letter-spacing:75.183360pt;}
.ls8{letter-spacing:157.103360pt;}
.ws7{word-spacing:-19.040000pt;}
.ws2{word-spacing:-19.031467pt;}
.ws5{word-spacing:-19.023467pt;}
.wsb{word-spacing:-18.944640pt;}
.ws4{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.wsc{word-spacing:-18.576533pt;}
.ws8{word-spacing:-18.416533pt;}
.ws9{word-spacing:-18.400000pt;}
.wsa{word-spacing:-18.383467pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-4.343040pt;}
._9{margin-left:-3.219840pt;}
._b{margin-left:-2.246400pt;}
._0{margin-left:-1.000960pt;}
._7{width:0.949248pt;}
._15{width:1.859925pt;}
._a{width:2.897493pt;}
._10{width:4.043520pt;}
._4{width:4.978560pt;}
._6{width:6.701568pt;}
._5{width:7.901696pt;}
._c{width:9.659520pt;}
._d{width:10.845824pt;}
._19{width:11.783680pt;}
._18{width:12.776960pt;}
._17{width:13.880320pt;}
._14{width:14.976000pt;}
._16{width:16.051840pt;}
._13{width:17.100160pt;}
._42{width:18.547200pt;}
._1a{width:20.316672pt;}
._31{width:21.300779pt;}
._f{width:22.247040pt;}
._e{width:23.137920pt;}
._3d{width:24.140800pt;}
._2e{width:25.908480pt;}
._12{width:27.538219pt;}
._11{width:28.529280pt;}
._56{width:29.608747pt;}
._57{width:30.662613pt;}
._37{width:34.327040pt;}
._36{width:35.386880pt;}
._1d{width:36.368512pt;}
._1e{width:37.434581pt;}
._5a{width:39.105920pt;}
._1f{width:40.285440pt;}
._6d{width:41.261099pt;}
._27{width:43.355520pt;}
._28{width:44.691840pt;}
._1b{width:45.704320pt;}
._1c{width:46.813227pt;}
._25{width:49.271040pt;}
._38{width:50.577920pt;}
._24{width:52.892800pt;}
._23{width:54.362880pt;}
._2a{width:55.261440pt;}
._2b{width:56.337280pt;}
._60{width:58.059520pt;}
._20{width:60.503040pt;}
._53{width:62.744960pt;}
._52{width:64.696320pt;}
._49{width:67.770880pt;}
._4a{width:69.301760pt;}
._59{width:70.312320pt;}
._2f{width:71.735040pt;}
._30{width:72.994133pt;}
._67{width:76.480000pt;}
._6b{width:78.151552pt;}
._40{width:79.546880pt;}
._5c{width:80.570880pt;}
._61{width:82.517760pt;}
._29{width:87.010560pt;}
._5b{width:88.732800pt;}
._26{width:91.976832pt;}
._3f{width:97.093120pt;}
._32{width:98.624000pt;}
._4e{width:99.638400pt;}
._3c{width:101.332480pt;}
._4d{width:106.337280pt;}
._45{width:108.633600pt;}
._55{width:110.176000pt;}
._44{width:111.636480pt;}
._6c{width:114.641280pt;}
._48{width:117.230080pt;}
._35{width:118.878720pt;}
._22{width:122.653440pt;}
._21{width:123.654400pt;}
._4f{width:126.397440pt;}
._5e{width:127.820160pt;}
._6a{width:128.896000pt;}
._33{width:131.655680pt;}
._4b{width:133.598720pt;}
._3e{width:138.191360pt;}
._62{width:141.747840pt;}
._68{width:143.769600pt;}
._2d{width:148.211712pt;}
._2c{width:149.385600pt;}
._65{width:159.194880pt;}
._51{width:160.842240pt;}
._4c{width:163.333120pt;}
._66{width:164.960640pt;}
._3b{width:170.987520pt;}
._46{width:173.460480pt;}
._43{width:176.934400pt;}
._41{width:179.289600pt;}
._5d{width:182.407680pt;}
._47{width:213.852160pt;}
._50{width:229.731840pt;}
._39{width:243.292160pt;}
._5f{width:252.794880pt;}
._34{width:255.951360pt;}
._64{width:263.128320pt;}
._69{width:265.000320pt;}
._3a{width:280.386560pt;}
._63{width:299.173120pt;}
._58{width:312.726400pt;}
._1{width:382.789973pt;}
._54{width:394.535040pt;}
._2{width:544.695893pt;}
._3{width:813.600000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:75.008000pt;}
.y4{bottom:-6.080000pt;}
.y0{bottom:0.000000pt;}
.ycb{bottom:3.200000pt;}
.yde{bottom:3.360000pt;}
.yc3{bottom:3.520000pt;}
.y6{bottom:4.000000pt;}
.y89{bottom:4.160000pt;}
.y8c{bottom:4.480000pt;}
.y91{bottom:4.640000pt;}
.y59{bottom:7.360000pt;}
.y6d{bottom:7.520000pt;}
.y63{bottom:7.680000pt;}
.y5c{bottom:7.840000pt;}
.y72{bottom:7.866667pt;}
.yca{bottom:20.160000pt;}
.ydd{bottom:20.186667pt;}
.yc2{bottom:20.480000pt;}
.y20{bottom:22.080000pt;}
.yf2{bottom:25.600000pt;}
.y115{bottom:25.760000pt;}
.y8b{bottom:25.920000pt;}
.y90{bottom:26.080000pt;}
.y62{bottom:32.320000pt;}
.y5b{bottom:32.480000pt;}
.y71{bottom:32.506667pt;}
.y61{bottom:32.520000pt;}
.yc9{bottom:36.960000pt;}
.ydc{bottom:36.986667pt;}
.ye5{bottom:37.120000pt;}
.yc1{bottom:37.306667pt;}
.y27{bottom:45.440000pt;}
.y103{bottom:47.040000pt;}
.yf1{bottom:47.066667pt;}
.y114{bottom:47.200000pt;}
.y93{bottom:47.360000pt;}
.y8f{bottom:47.520000pt;}
.yc8{bottom:53.760000pt;}
.yd1{bottom:53.800000pt;}
.ye4{bottom:53.920000pt;}
.ydb{bottom:53.946667pt;}
.y5e{bottom:57.120000pt;}
.y70{bottom:57.146667pt;}
.y60{bottom:57.160000pt;}
.y7{bottom:63.360000pt;}
.y26{bottom:67.200000pt;}
.y102{bottom:68.480000pt;}
.y10c{bottom:68.640000pt;}
.y8e{bottom:68.960000pt;}
.yc7{bottom:70.720000pt;}
.yda{bottom:70.746667pt;}
.yd0{bottom:70.760000pt;}
.ye3{bottom:70.880000pt;}
.ye8{bottom:71.040000pt;}
.ye1{bottom:71.200000pt;}
.y5{bottom:86.720000pt;}
.yc6{bottom:87.520000pt;}
.ycf{bottom:87.560000pt;}
.ye2{bottom:87.680000pt;}
.yd9{bottom:87.706667pt;}
.ye7{bottom:87.840000pt;}
.ye0{bottom:88.000000pt;}
.y25{bottom:88.800000pt;}
.y101{bottom:90.080000pt;}
.y11a{bottom:90.120000pt;}
.yc5{bottom:104.480000pt;}
.yd8{bottom:104.506667pt;}
.yce{bottom:104.520000pt;}
.yeb{bottom:104.800000pt;}
.ycd{bottom:104.840000pt;}
.y24{bottom:110.240000pt;}
.y100{bottom:111.520000pt;}
.y10b{bottom:111.560000pt;}
.y3{bottom:114.720000pt;}
.yd7{bottom:121.306667pt;}
.yec{bottom:121.440000pt;}
.yea{bottom:121.760000pt;}
.y126{bottom:124.000000pt;}
.y6f{bottom:126.240000pt;}
.y125{bottom:128.672000pt;}
.y23{bottom:131.360000pt;}
.yff{bottom:132.960000pt;}
.y10a{bottom:133.000000pt;}
.yd6{bottom:138.266667pt;}
.y124{bottom:140.186667pt;}
.y1e{bottom:140.346667pt;}
.yad{bottom:144.986667pt;}
.y22{bottom:152.773333pt;}
.yfe{bottom:154.400000pt;}
.y109{bottom:154.440000pt;}
.y119{bottom:154.600000pt;}
.y67{bottom:154.906667pt;}
.yd5{bottom:155.066667pt;}
.y128{bottom:155.226667pt;}
.yd4{bottom:155.386667pt;}
.yef{bottom:156.026667pt;}
.y87{bottom:156.186667pt;}
.ybf{bottom:172.026667pt;}
.yd3{bottom:172.346667pt;}
.y1d{bottom:172.506667pt;}
.yfd{bottom:175.840000pt;}
.y108{bottom:175.880000pt;}
.y122{bottom:176.026667pt;}
.y113{bottom:176.040000pt;}
.y123{bottom:182.746667pt;}
.y66{bottom:187.066667pt;}
.y42{bottom:187.386667pt;}
.yee{bottom:187.866667pt;}
.y86{bottom:188.506667pt;}
.yac{bottom:195.066667pt;}
.ybe{bottom:196.826667pt;}
.yfc{bottom:197.320000pt;}
.y112{bottom:197.480000pt;}
.y6e{bottom:200.986667pt;}
.y1c{bottom:204.666667pt;}
.y121{bottom:208.186667pt;}
.yed{bottom:209.306667pt;}
.yfb{bottom:218.760000pt;}
.y65{bottom:218.906667pt;}
.y107{bottom:218.920000pt;}
.y41{bottom:219.546667pt;}
.y85{bottom:220.666667pt;}
.ybd{bottom:221.466667pt;}
.y120{bottom:227.066667pt;}
.ye9{bottom:227.226667pt;}
.yab{bottom:235.706667pt;}
.y1b{bottom:236.826667pt;}
.yfa{bottom:240.360000pt;}
.y104{bottom:245.306667pt;}
.ybc{bottom:246.106667pt;}
.y64{bottom:251.226667pt;}
.y40{bottom:251.866667pt;}
.y84{bottom:252.826667pt;}
.yf9{bottom:261.800000pt;}
.y116{bottom:267.386667pt;}
.yaa{bottom:267.866667pt;}
.y1a{bottom:269.146667pt;}
.ybb{bottom:270.746667pt;}
.y6c{bottom:275.706667pt;}
.yf8{bottom:283.240000pt;}
.y3f{bottom:284.026667pt;}
.y83{bottom:284.986667pt;}
.yba{bottom:295.226667pt;}
.ya9{bottom:300.026667pt;}
.y19{bottom:301.306667pt;}
.yf7{bottom:304.680000pt;}
.y111{bottom:304.840000pt;}
.y118{bottom:304.866667pt;}
.yb9{bottom:315.706667pt;}
.y3e{bottom:316.186667pt;}
.y6b{bottom:316.346667pt;}
.y82{bottom:317.306667pt;}
.y5f{bottom:319.066667pt;}
.yf5{bottom:326.120000pt;}
.y106{bottom:326.146667pt;}
.y110{bottom:326.280000pt;}
.y117{bottom:326.306667pt;}
.ya8{bottom:332.186667pt;}
.y18{bottom:333.466667pt;}
.yf6{bottom:347.560000pt;}
.y10f{bottom:347.720000pt;}
.y105{bottom:347.746667pt;}
.yf4{bottom:347.880000pt;}
.y6a{bottom:348.186667pt;}
.y3d{bottom:348.346667pt;}
.y81{bottom:349.506667pt;}
.y54{bottom:359.106667pt;}
.ye6{bottom:362.946667pt;}
.ya7{bottom:364.386667pt;}
.y17{bottom:365.666667pt;}
.y11e{bottom:369.160000pt;}
.y10e{bottom:369.186667pt;}
.y69{bottom:380.386667pt;}
.y3c{bottom:380.706667pt;}
.y80{bottom:381.666667pt;}
.y11d{bottom:390.600000pt;}
.y53{bottom:391.426667pt;}
.y5d{bottom:393.826667pt;}
.ya6{bottom:396.706667pt;}
.y16{bottom:397.986667pt;}
.y68{bottom:408.546667pt;}
.y11c{bottom:412.066667pt;}
.y3b{bottom:412.866667pt;}
.y7f{bottom:413.826667pt;}
.y15{bottom:420.546667pt;}
.y52{bottom:423.586667pt;}
.ya5{bottom:428.866667pt;}
.y3a{bottom:445.026667pt;}
.y7e{bottom:445.986667pt;}
.y9e{bottom:452.386667pt;}
.y14{bottom:453.026667pt;}
.y51{bottom:455.746667pt;}
.ya4{bottom:461.026667pt;}
.ydf{bottom:464.706667pt;}
.y5a{bottom:468.546667pt;}
.y39{bottom:477.186667pt;}
.y7d{bottom:478.306667pt;}
.y9d{bottom:484.546667pt;}
.y13{bottom:485.186667pt;}
.y50{bottom:487.906667pt;}
.ya3{bottom:493.186667pt;}
.y38{bottom:509.346667pt;}
.y7c{bottom:510.146667pt;}
.y9c{bottom:516.866667pt;}
.y12{bottom:517.346667pt;}
.y58{bottom:518.626667pt;}
.y4f{bottom:520.226667pt;}
.ya2{bottom:525.506667pt;}
.y7b{bottom:538.146667pt;}
.y37{bottom:541.666667pt;}
.y9b{bottom:549.026667pt;}
.y11{bottom:549.666667pt;}
.y4e{bottom:552.386667pt;}
.ya1{bottom:557.666667pt;}
.y57{bottom:559.266667pt;}
.yd2{bottom:566.626667pt;}
.y36{bottom:573.853333pt;}
.y9a{bottom:581.213333pt;}
.y10{bottom:581.853333pt;}
.y4d{bottom:584.253333pt;}
.ya0{bottom:589.533333pt;}
.y56{bottom:591.133333pt;}
.y11f{bottom:593.853333pt;}
.y35{bottom:606.013333pt;}
.yf3{bottom:610.973333pt;}
.y11b{bottom:611.613333pt;}
.y99{bottom:613.373333pt;}
.yf{bottom:614.013333pt;}
.y4c{bottom:616.413333pt;}
.y9f{bottom:617.533333pt;}
.y55{bottom:619.133333pt;}
.yb8{bottom:619.453333pt;}
.y129{bottom:637.373333pt;}
.y34{bottom:638.173333pt;}
.yb7{bottom:644.093333pt;}
.y98{bottom:645.693333pt;}
.ye{bottom:646.173333pt;}
.y4b{bottom:648.573333pt;}
.y10d{bottom:654.493333pt;}
.yb6{bottom:668.893333pt;}
.y33{bottom:670.493333pt;}
.y97{bottom:677.853333pt;}
.yd{bottom:678.493333pt;}
.y4a{bottom:680.893333pt;}
.yb5{bottom:693.533333pt;}
.y32{bottom:702.653333pt;}
.y96{bottom:710.013333pt;}
.yc{bottom:710.653333pt;}
.y49{bottom:713.053333pt;}
.yb4{bottom:718.173333pt;}
.y31{bottom:734.813333pt;}
.y95{bottom:741.853333pt;}
.yb{bottom:742.813333pt;}
.yb3{bottom:742.973333pt;}
.y48{bottom:745.213333pt;}
.ycc{bottom:752.893333pt;}
.y30{bottom:766.973333pt;}
.yb2{bottom:767.613333pt;}
.y94{bottom:774.173333pt;}
.ya{bottom:774.973333pt;}
.y47{bottom:777.693333pt;}
.y7a{bottom:785.053333pt;}
.y92{bottom:792.133333pt;}
.yb1{bottom:792.293333pt;}
.y127{bottom:799.013333pt;}
.y2f{bottom:799.333333pt;}
.y9{bottom:807.173333pt;}
.y46{bottom:810.053333pt;}
.y79{bottom:810.213333pt;}
.yb0{bottom:816.613333pt;}
.y2e{bottom:831.493333pt;}
.y78{bottom:834.853333pt;}
.y8{bottom:839.493333pt;}
.y45{bottom:842.213333pt;}
.yaf{bottom:849.253333pt;}
.y1f{bottom:856.453333pt;}
.y21{bottom:856.480000pt;}
.y8d{bottom:857.093333pt;}
.y77{bottom:859.493333pt;}
.y44{bottom:863.333333pt;}
.y2d{bottom:863.653333pt;}
.yae{bottom:866.853333pt;}
.yc4{bottom:871.653333pt;}
.y76{bottom:891.333333pt;}
.y2c{bottom:895.813333pt;}
.y75{bottom:923.653333pt;}
.y2b{bottom:927.653333pt;}
.y43{bottom:927.973333pt;}
.y74{bottom:941.573333pt;}
.y8a{bottom:943.653333pt;}
.y2a{bottom:960.293333pt;}
.yf0{bottom:976.613333pt;}
.y88{bottom:987.333333pt;}
.yc0{bottom:990.373333pt;}
.y73{bottom:991.493333pt;}
.y29{bottom:992.453333pt;}
.y28{bottom:1024.640000pt;}
.y2{bottom:1044.960000pt;}
.y1{bottom:1061.760000pt;}
.h3{height:5.920000pt;}
.h5{height:18.400000pt;}
.h18{height:21.440000pt;}
.h11{height:24.640000pt;}
.h16{height:24.800000pt;}
.h2a{height:33.918750pt;}
.h19{height:42.880000pt;}
.h29{height:47.109375pt;}
.h15{height:49.280000pt;}
.h12{height:49.440000pt;}
.h17{height:49.472000pt;}
.h1c{height:50.592000pt;}
.h4{height:52.134375pt;}
.hf{height:52.284375pt;}
.h1d{height:57.787500pt;}
.h7{height:58.563750pt;}
.h2{height:59.340000pt;}
.h6{height:62.812500pt;}
.h1b{height:64.320000pt;}
.h24{height:64.352000pt;}
.h8{height:73.454062pt;}
.hb{height:73.490625pt;}
.h9{height:73.579625pt;}
.h13{height:74.080000pt;}
.h14{height:74.112000pt;}
.h2b{height:74.477812pt;}
.hd{height:75.465000pt;}
.h10{height:76.964840pt;}
.ha{height:77.951250pt;}
.h1a{height:85.920000pt;}
.h22{height:101.120000pt;}
.h21{height:101.280000pt;}
.h1e{height:118.080000pt;}
.h1f{height:118.112000pt;}
.h23{height:135.066667pt;}
.he{height:170.080000pt;}
.hc{height:170.106667pt;}
.h20{height:185.626667pt;}
.h25{height:364.826667pt;}
.h26{height:365.026667pt;}
.h27{height:386.466667pt;}
.h28{height:429.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:93.952000pt;}
.wa{width:101.280000pt;}
.wd{width:108.160000pt;}
.wf{width:109.952000pt;}
.wc{width:112.672000pt;}
.we{width:122.752000pt;}
.w12{width:125.152000pt;}
.w10{width:139.360000pt;}
.w5{width:146.426667pt;}
.w11{width:156.986667pt;}
.w13{width:191.866667pt;}
.w4{width:268.546667pt;}
.w8{width:310.466667pt;}
.w9{width:311.426667pt;}
.w3{width:348.706667pt;}
.w6{width:497.120000pt;}
.w7{width:497.213333pt;}
.w14{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.720000pt;}
.x2{left:7.680000pt;}
.x16{left:35.354667pt;}
.xd{left:40.960000pt;}
.xc{left:66.080000pt;}
.xa{left:77.986667pt;}
.x13{left:98.751988pt;}
.x2b{left:112.031988pt;}
.x1{left:113.471988pt;}
.x2a{left:117.791988pt;}
.x2c{left:119.391988pt;}
.x14{left:120.511988pt;}
.x7{left:125.471988pt;}
.x8{left:141.946655pt;}
.xe{left:150.906667pt;}
.x6{left:153.466655pt;}
.x1a{left:157.146655pt;}
.x2d{left:160.666655pt;}
.x12{left:166.586655pt;}
.x10{left:170.746655pt;}
.x11{left:178.746655pt;}
.x1d{left:201.306667pt;}
.xb{left:202.746667pt;}
.x23{left:239.386667pt;}
.x5{left:246.120000pt;}
.xf{left:248.666667pt;}
.x9{left:259.840000pt;}
.x4{left:260.866667pt;}
.x1e{left:295.906667pt;}
.x29{left:305.506655pt;}
.x24{left:397.026667pt;}
.x1f{left:409.373333pt;}
.x17{left:425.213333pt;}
.x3{left:462.173333pt;}
.x21{left:518.173333pt;}
.x25{left:522.813333pt;}
.x27{left:555.293310pt;}
.x28{left:561.373322pt;}
.x18{left:574.053322pt;}
.x22{left:641.573333pt;}
.x19{left:651.973322pt;}
.x1b{left:728.479988pt;}
.x15{left:735.999988pt;}
.x1c{left:754.079988pt;}
.x26{left:766.079988pt;}
}




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