
    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_0e3ee1ceb9104e27d19fd06c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a9cab864c3e69f41ff93ae80.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4aef677efff0c5e67199dad9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.046387;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_0d77a43944c9efa43d80dd30.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.046387;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_6190b9edff84b48bac34f65e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_f222ec64071add634985361c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m4{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.021840px;}
.lse{letter-spacing:0.040080px;}
.ls7{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.169200px;}
.ls13{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.220200px;}
.lsa{letter-spacing:0.253200px;}
.ls3{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.366000px;}
.ls12{letter-spacing:0.858000px;}
.ls10{letter-spacing:0.870000px;}
.ls0{letter-spacing:0.900000px;}
.ls11{letter-spacing:0.918000px;}
.lsf{letter-spacing:1.037826px;}
.ls14{letter-spacing:11.466720px;}
.ls8{letter-spacing:41.706720px;}
.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;}
}
.ws2{word-spacing:-16.822200px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws7{word-spacing:-15.306000px;}
.ws6{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._6{margin-left:-1477.851480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-930.896640px;}
._7{margin-left:-577.969920px;}
._4{margin-left:-8.213760px;}
._9{margin-left:-4.432800px;}
._16{margin-left:-3.403200px;}
._8{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._d{width:2.700960px;}
._10{width:3.799680px;}
._e{width:4.850880px;}
._13{width:5.976000px;}
._12{width:7.051680px;}
._11{width:8.067600px;}
._15{width:9.092880px;}
._14{width:10.109520px;}
._c{width:11.816640px;}
._a{width:12.927600px;}
._b{width:14.140560px;}
._f{width:16.324560px;}
._25{width:17.987760px;}
._3a{width:19.073520px;}
._35{width:20.926080px;}
._43{width:22.111200px;}
._26{width:23.605200px;}
._24{width:25.348320px;}
._36{width:26.533440px;}
._1c{width:27.918000px;}
._29{width:29.422080px;}
._33{width:30.597120px;}
._2e{width:33.107040px;}
._4b{width:34.312320px;}
._30{width:35.856000px;}
._1f{width:37.360080px;}
._48{width:39.262320px;}
._2b{width:41.124960px;}
._17{width:42.768720px;}
._18{width:46.583280px;}
._47{width:48.415680px;}
._1d{width:50.099040px;}
._2f{width:52.608960px;}
._1a{width:54.007652px;}
._19{width:55.134268px;}
._41{width:56.712240px;}
._4c{width:57.921120px;}
._1b{width:59.052960px;}
._2d{width:61.443360px;}
._22{width:63.953280px;}
._37{width:66.104640px;}
._38{width:71.064720px;}
._44{width:72.488880px;}
._32{width:74.650320px;}
._3d{width:77.688000px;}
._3c{width:79.192080px;}
._20{width:81.184320px;}
._23{width:85.765680px;}
._34{width:87.428880px;}
._31{width:94.430880px;}
._39{width:98.614080px;}
._49{width:101.054160px;}
._3f{width:106.263360px;}
._42{width:108.653760px;}
._28{width:128.563920px;}
._27{width:140.027760px;}
._3e{width:170.256240px;}
._46{width:172.586880px;}
._2a{width:177.626880px;}
._45{width:181.740240px;}
._2c{width:184.359600px;}
._1e{width:200.265840px;}
._3b{width:207.496800px;}
._21{width:222.257520px;}
._4a{width:229.358880px;}
._40{width:237.257280px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:5.760000px;}
.ybd{bottom:5.940000px;}
.y11d{bottom:10.620000px;}
.y6d{bottom:15.660000px;}
.yd9{bottom:15.840000px;}
.y6e{bottom:25.560000px;}
.ye3{bottom:25.590000px;}
.y76{bottom:25.740000px;}
.y11c{bottom:30.630000px;}
.y119{bottom:34.770000px;}
.y86{bottom:45.360000px;}
.ye2{bottom:45.390000px;}
.y75{bottom:45.540000px;}
.ybc{bottom:45.570000px;}
.y11b{bottom:50.430000px;}
.y6{bottom:58.680000px;}
.y85{bottom:65.160000px;}
.ye1{bottom:65.190000px;}
.y8d{bottom:65.340000px;}
.y74{bottom:65.370000px;}
.y8a{bottom:67.500000px;}
.y11a{bottom:70.230000px;}
.yb8{bottom:85.140000px;}
.y73{bottom:85.170000px;}
.yeb{bottom:85.185000px;}
.y84{bottom:86.040000px;}
.y8c{bottom:86.220000px;}
.y70{bottom:86.760000px;}
.y7e{bottom:87.120000px;}
.y89{bottom:87.300000px;}
.yf7{bottom:91.080000px;}
.y6b{bottom:94.140000px;}
.y113{bottom:95.940000px;}
.yac{bottom:97.560000px;}
.yd7{bottom:101.880000px;}
.yb7{bottom:104.940000px;}
.y72{bottom:104.970000px;}
.ybb{bottom:105.150000px;}
.yea{bottom:105.165000px;}
.y83{bottom:106.020000px;}
.y33{bottom:106.560000px;}
.y7d{bottom:107.100000px;}
.yf6{bottom:110.880000px;}
.y6a{bottom:113.940000px;}
.y112{bottom:115.740000px;}
.yab{bottom:117.360000px;}
.yd6{bottom:121.680000px;}
.ye0{bottom:124.770000px;}
.yb6{bottom:124.785000px;}
.y71{bottom:124.950000px;}
.ye9{bottom:124.965000px;}
.y82{bottom:125.820000px;}
.y32{bottom:126.360000px;}
.y7c{bottom:126.900000px;}
.yf5{bottom:130.680000px;}
.y118{bottom:132.480000px;}
.y69{bottom:133.740000px;}
.y111{bottom:135.540000px;}
.yaa{bottom:137.340000px;}
.yd5{bottom:141.660000px;}
.ydf{bottom:144.570000px;}
.yba{bottom:144.750000px;}
.yb5{bottom:144.765000px;}
.y81{bottom:145.620000px;}
.y8b{bottom:145.665000px;}
.y31{bottom:146.160000px;}
.y7b{bottom:146.700000px;}
.y88{bottom:146.745000px;}
.yf4{bottom:150.660000px;}
.y68{bottom:153.570000px;}
.y110{bottom:155.370000px;}
.ya9{bottom:157.170000px;}
.yd4{bottom:161.490000px;}
.yde{bottom:164.370000px;}
.yb4{bottom:164.565000px;}
.y80{bottom:165.420000px;}
.y30{bottom:166.170000px;}
.y7a{bottom:166.500000px;}
.yf3{bottom:170.490000px;}
.y67{bottom:173.370000px;}
.y10f{bottom:175.350000px;}
.ya8{bottom:176.970000px;}
.yd3{bottom:181.290000px;}
.ydd{bottom:184.350000px;}
.yb3{bottom:184.365000px;}
.y7f{bottom:185.220000px;}
.y2f{bottom:185.970000px;}
.y79{bottom:186.300000px;}
.yf2{bottom:190.290000px;}
.y66{bottom:193.350000px;}
.y10e{bottom:195.150000px;}
.ya7{bottom:196.770000px;}
.yd2{bottom:201.090000px;}
.ydc{bottom:204.150000px;}
.yb2{bottom:204.165000px;}
.ye8{bottom:204.345000px;}
.y2e{bottom:205.770000px;}
.yf1{bottom:210.090000px;}
.y65{bottom:213.150000px;}
.y10d{bottom:214.950000px;}
.ya6{bottom:216.570000px;}
.yd1{bottom:220.890000px;}
.ydb{bottom:223.950000px;}
.yb1{bottom:223.965000px;}
.ye7{bottom:224.145000px;}
.y2d{bottom:225.570000px;}
.y6c{bottom:226.470000px;}
.yf0{bottom:229.890000px;}
.y64{bottom:232.950000px;}
.y10c{bottom:234.750000px;}
.ya5{bottom:236.550000px;}
.yd0{bottom:240.870000px;}
.yda{bottom:243.750000px;}
.yb0{bottom:243.945000px;}
.y2c{bottom:245.370000px;}
.yef{bottom:249.870000px;}
.y63{bottom:252.750000px;}
.y10b{bottom:254.550000px;}
.ya4{bottom:256.350000px;}
.ycf{bottom:260.670000px;}
.yaf{bottom:263.745000px;}
.y2b{bottom:265.350000px;}
.yee{bottom:269.670000px;}
.y62{bottom:272.550000px;}
.y10a{bottom:274.530000px;}
.ya3{bottom:276.150000px;}
.yce{bottom:280.470000px;}
.ye6{bottom:283.545000px;}
.y2a{bottom:285.150000px;}
.yed{bottom:289.470000px;}
.y61{bottom:292.530000px;}
.y109{bottom:294.330000px;}
.ya2{bottom:295.950000px;}
.ycd{bottom:300.270000px;}
.ye5{bottom:303.525000px;}
.y29{bottom:304.950000px;}
.yec{bottom:309.270000px;}
.y60{bottom:312.330000px;}
.y108{bottom:314.130000px;}
.ya1{bottom:315.750000px;}
.ycc{bottom:320.070000px;}
.ye4{bottom:324.030000px;}
.y28{bottom:324.750000px;}
.y5f{bottom:332.130000px;}
.y107{bottom:333.930000px;}
.ya0{bottom:335.730000px;}
.ycb{bottom:340.050000px;}
.y27{bottom:344.550000px;}
.y5e{bottom:351.930000px;}
.y106{bottom:353.730000px;}
.y9f{bottom:355.530000px;}
.yca{bottom:359.850000px;}
.y26{bottom:364.530000px;}
.y5d{bottom:371.730000px;}
.y105{bottom:373.710000px;}
.y9e{bottom:375.330000px;}
.yc9{bottom:379.650000px;}
.y25{bottom:384.330000px;}
.y5c{bottom:391.710000px;}
.y104{bottom:393.510000px;}
.y9d{bottom:395.130000px;}
.yc8{bottom:399.450000px;}
.y24{bottom:404.175000px;}
.y5b{bottom:411.555000px;}
.y9c{bottom:414.975000px;}
.y103{bottom:422.355000px;}
.y23{bottom:423.975000px;}
.yc7{bottom:428.295000px;}
.y5a{bottom:431.355000px;}
.y9b{bottom:434.955000px;}
.y102{bottom:442.155000px;}
.y22{bottom:443.775000px;}
.yc6{bottom:448.275000px;}
.y59{bottom:451.155000px;}
.y9a{bottom:454.755000px;}
.y101{bottom:461.955000px;}
.y21{bottom:463.755000px;}
.yc5{bottom:468.075000px;}
.y58{bottom:470.955000px;}
.y99{bottom:474.555000px;}
.y100{bottom:481.935000px;}
.y20{bottom:483.555000px;}
.yc4{bottom:487.875000px;}
.y57{bottom:490.935000px;}
.y98{bottom:494.355000px;}
.yff{bottom:501.735000px;}
.y1f{bottom:503.355000px;}
.yc3{bottom:507.675000px;}
.y56{bottom:510.735000px;}
.y97{bottom:514.155000px;}
.yfe{bottom:521.535000px;}
.y1e{bottom:523.155000px;}
.yc2{bottom:527.475000px;}
.y55{bottom:530.535000px;}
.yfd{bottom:541.335000px;}
.y1d{bottom:542.955000px;}
.y96{bottom:543.135000px;}
.yc1{bottom:547.455000px;}
.y54{bottom:550.335000px;}
.yfc{bottom:561.135000px;}
.y1c{bottom:562.935000px;}
.yc0{bottom:567.255000px;}
.y53{bottom:570.135000px;}
.yfb{bottom:581.115000px;}
.y1b{bottom:582.735000px;}
.ybf{bottom:587.055000px;}
.y52{bottom:590.115000px;}
.yfa{bottom:600.915000px;}
.y95{bottom:602.535000px;}
.y1a{bottom:604.695000px;}
.ybe{bottom:606.855000px;}
.y51{bottom:609.915000px;}
.yf9{bottom:620.715000px;}
.yb9{bottom:621.615000px;}
.y94{bottom:622.335000px;}
.y50{bottom:629.715000px;}
.y19{bottom:633.675000px;}
.yf8{bottom:640.515000px;}
.y93{bottom:642.315000px;}
.y4f{bottom:649.545000px;}
.y18{bottom:653.505000px;}
.y92{bottom:662.145000px;}
.y4e{bottom:669.345000px;}
.y17{bottom:673.305000px;}
.y91{bottom:681.945000px;}
.y4d{bottom:689.325000px;}
.y16{bottom:693.105000px;}
.y90{bottom:701.745000px;}
.y4c{bottom:709.125000px;}
.y15{bottom:712.905000px;}
.y8f{bottom:721.545000px;}
.y4b{bottom:728.925000px;}
.y14{bottom:732.885000px;}
.y8e{bottom:741.525000px;}
.y4a{bottom:748.725000px;}
.y13{bottom:752.685000px;}
.y87{bottom:756.285000px;}
.y49{bottom:768.525000px;}
.y12{bottom:772.485000px;}
.yae{bottom:781.125000px;}
.y48{bottom:788.505000px;}
.y11{bottom:792.285000px;}
.y117{bottom:793.185000px;}
.y47{bottom:808.305000px;}
.y10{bottom:812.085000px;}
.y116{bottom:813.165000px;}
.y46{bottom:828.105000px;}
.yf{bottom:832.065000px;}
.y115{bottom:832.965000px;}
.y45{bottom:847.905000px;}
.ye{bottom:851.685000px;}
.y114{bottom:852.765000px;}
.y44{bottom:867.705000px;}
.yd{bottom:873.825000px;}
.y43{bottom:887.685000px;}
.yc{bottom:899.070000px;}
.yd8{bottom:900.870000px;}
.y42{bottom:907.530000px;}
.yb{bottom:914.190000px;}
.y78{bottom:917.970000px;}
.y41{bottom:927.330000px;}
.ya{bottom:935.970000px;}
.y40{bottom:947.130000px;}
.y9{bottom:957.210000px;}
.y3f{bottom:966.930000px;}
.y8{bottom:980.790000px;}
.y3e{bottom:986.910000px;}
.y3d{bottom:1006.710000px;}
.y7{bottom:1012.470000px;}
.y3c{bottom:1026.510000px;}
.y3b{bottom:1046.310000px;}
.y5{bottom:1051.170000px;}
.yad{bottom:1059.630000px;}
.y3a{bottom:1066.110000px;}
.y4{bottom:1081.950000px;}
.y39{bottom:1086.090000px;}
.y38{bottom:1105.890000px;}
.y3{bottom:1112.730000px;}
.y77{bottom:1119.210000px;}
.y37{bottom:1125.690000px;}
.y2{bottom:1143.690000px;}
.y36{bottom:1145.490000px;}
.y35{bottom:1173.060000px;}
.y1{bottom:1177.560000px;}
.y34{bottom:1193.220000px;}
.h1a{height:2.392031px;}
.h13{height:24.996094px;}
.h14{height:26.208984px;}
.h7{height:32.292422px;}
.hb{height:39.600000px;}
.hd{height:39.636000px;}
.h16{height:39.780000px;}
.hf{height:41.493516px;}
.h5{height:42.164648px;}
.ha{height:43.506914px;}
.h3{height:46.736719px;}
.h8{height:49.634648px;}
.h6{height:53.224453px;}
.h4{height:55.016719px;}
.h11{height:59.580000px;}
.h2{height:67.565039px;}
.h9{height:67.824844px;}
.h19{height:84.276000px;}
.hc{height:138.996000px;}
.h15{height:158.790000px;}
.h10{height:160.770000px;}
.he{height:200.340000px;}
.h17{height:257.835000px;}
.h12{height:277.770000px;}
.h18{height:317.550000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:94.896000px;}
.wb{width:128.556000px;}
.w8{width:134.496000px;}
.w9{width:145.296000px;}
.w3{width:175.530000px;}
.w4{width:180.030000px;}
.w7{width:183.990000px;}
.w6{width:188.130000px;}
.wf{width:210.810000px;}
.w5{width:237.675000px;}
.we{width:251.175000px;}
.wd{width:306.750000px;}
.wa{width:317.595000px;}
.w10{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:3.420000px;}
.x10{left:4.500000px;}
.x11{left:6.480000px;}
.x9{left:7.740000px;}
.x1a{left:10.620000px;}
.x12{left:11.880000px;}
.x13{left:14.940000px;}
.x18{left:16.200000px;}
.xf{left:17.280000px;}
.xd{left:18.540000px;}
.x4{left:52.919987px;}
.x1{left:54.359987px;}
.xe{left:61.776000px;}
.x1b{left:64.619987px;}
.x7{left:65.699987px;}
.x8{left:66.959987px;}
.x6{left:69.119987px;}
.x21{left:75.239987px;}
.x5{left:80.999987px;}
.x1c{left:82.259987px;}
.x3{left:86.075987px;}
.x22{left:102.275987px;}
.x20{left:158.789987px;}
.x2{left:174.089987px;}
.x14{left:182.190000px;}
.x1d{left:183.990000px;}
.x23{left:191.370000px;}
.xa{left:230.970000px;}
.x15{left:239.430000px;}
.x24{left:264.810000px;}
.x1e{left:279.615000px;}
.x16{left:374.655000px;}
.xb{left:411.735000px;}
.x17{left:520.845000px;}
.x1f{left:587.265000px;}
.xc{left:650.310000px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.019413pt;}
.lse{letter-spacing:0.035627pt;}
.ls7{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.150400pt;}
.ls13{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.195733pt;}
.lsa{letter-spacing:0.225067pt;}
.ls3{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.325333pt;}
.ls12{letter-spacing:0.762667pt;}
.ls10{letter-spacing:0.773333pt;}
.ls0{letter-spacing:0.800000pt;}
.ls11{letter-spacing:0.816000pt;}
.lsf{letter-spacing:0.922512pt;}
.ls14{letter-spacing:10.192640pt;}
.ls8{letter-spacing:37.072640pt;}
.ws2{word-spacing:-14.953067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws7{word-spacing:-13.605333pt;}
.ws6{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._6{margin-left:-1313.645760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-827.463680pt;}
._7{margin-left:-513.751040pt;}
._4{margin-left:-7.301120pt;}
._9{margin-left:-3.940267pt;}
._16{margin-left:-3.025067pt;}
._8{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._d{width:2.400853pt;}
._10{width:3.377493pt;}
._e{width:4.311893pt;}
._13{width:5.312000pt;}
._12{width:6.268160pt;}
._11{width:7.171200pt;}
._15{width:8.082560pt;}
._14{width:8.986240pt;}
._c{width:10.503680pt;}
._a{width:11.491200pt;}
._b{width:12.569387pt;}
._f{width:14.510720pt;}
._25{width:15.989120pt;}
._3a{width:16.954240pt;}
._35{width:18.600960pt;}
._43{width:19.654400pt;}
._26{width:20.982400pt;}
._24{width:22.531840pt;}
._36{width:23.585280pt;}
._1c{width:24.816000pt;}
._29{width:26.152960pt;}
._33{width:27.197440pt;}
._2e{width:29.428480pt;}
._4b{width:30.499840pt;}
._30{width:31.872000pt;}
._1f{width:33.208960pt;}
._48{width:34.899840pt;}
._2b{width:36.555520pt;}
._17{width:38.016640pt;}
._18{width:41.407360pt;}
._47{width:43.036160pt;}
._1d{width:44.532480pt;}
._2f{width:46.763520pt;}
._1a{width:48.006802pt;}
._19{width:49.008238pt;}
._41{width:50.410880pt;}
._4c{width:51.485440pt;}
._1b{width:52.491520pt;}
._2d{width:54.616320pt;}
._22{width:56.847360pt;}
._37{width:58.759680pt;}
._38{width:63.168640pt;}
._44{width:64.434560pt;}
._32{width:66.355840pt;}
._3d{width:69.056000pt;}
._3c{width:70.392960pt;}
._20{width:72.163840pt;}
._23{width:76.236160pt;}
._34{width:77.714560pt;}
._31{width:83.938560pt;}
._39{width:87.656960pt;}
._49{width:89.825920pt;}
._3f{width:94.456320pt;}
._42{width:96.581120pt;}
._28{width:114.279040pt;}
._27{width:124.469120pt;}
._3e{width:151.338880pt;}
._46{width:153.410560pt;}
._2a{width:157.890560pt;}
._45{width:161.546880pt;}
._2c{width:163.875200pt;}
._1e{width:178.014080pt;}
._3b{width:184.441600pt;}
._21{width:197.562240pt;}
._4a{width:203.874560pt;}
._40{width:210.895360pt;}
.fs7{font-size:2.560000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:5.120000pt;}
.ybd{bottom:5.280000pt;}
.y11d{bottom:9.440000pt;}
.y6d{bottom:13.920000pt;}
.yd9{bottom:14.080000pt;}
.y6e{bottom:22.720000pt;}
.ye3{bottom:22.746667pt;}
.y76{bottom:22.880000pt;}
.y11c{bottom:27.226667pt;}
.y119{bottom:30.906667pt;}
.y86{bottom:40.320000pt;}
.ye2{bottom:40.346667pt;}
.y75{bottom:40.480000pt;}
.ybc{bottom:40.506667pt;}
.y11b{bottom:44.826667pt;}
.y6{bottom:52.160000pt;}
.y85{bottom:57.920000pt;}
.ye1{bottom:57.946667pt;}
.y8d{bottom:58.080000pt;}
.y74{bottom:58.106667pt;}
.y8a{bottom:60.000000pt;}
.y11a{bottom:62.426667pt;}
.yb8{bottom:75.680000pt;}
.y73{bottom:75.706667pt;}
.yeb{bottom:75.720000pt;}
.y84{bottom:76.480000pt;}
.y8c{bottom:76.640000pt;}
.y70{bottom:77.120000pt;}
.y7e{bottom:77.440000pt;}
.y89{bottom:77.600000pt;}
.yf7{bottom:80.960000pt;}
.y6b{bottom:83.680000pt;}
.y113{bottom:85.280000pt;}
.yac{bottom:86.720000pt;}
.yd7{bottom:90.560000pt;}
.yb7{bottom:93.280000pt;}
.y72{bottom:93.306667pt;}
.ybb{bottom:93.466667pt;}
.yea{bottom:93.480000pt;}
.y83{bottom:94.240000pt;}
.y33{bottom:94.720000pt;}
.y7d{bottom:95.200000pt;}
.yf6{bottom:98.560000pt;}
.y6a{bottom:101.280000pt;}
.y112{bottom:102.880000pt;}
.yab{bottom:104.320000pt;}
.yd6{bottom:108.160000pt;}
.ye0{bottom:110.906667pt;}
.yb6{bottom:110.920000pt;}
.y71{bottom:111.066667pt;}
.ye9{bottom:111.080000pt;}
.y82{bottom:111.840000pt;}
.y32{bottom:112.320000pt;}
.y7c{bottom:112.800000pt;}
.yf5{bottom:116.160000pt;}
.y118{bottom:117.760000pt;}
.y69{bottom:118.880000pt;}
.y111{bottom:120.480000pt;}
.yaa{bottom:122.080000pt;}
.yd5{bottom:125.920000pt;}
.ydf{bottom:128.506667pt;}
.yba{bottom:128.666667pt;}
.yb5{bottom:128.680000pt;}
.y81{bottom:129.440000pt;}
.y8b{bottom:129.480000pt;}
.y31{bottom:129.920000pt;}
.y7b{bottom:130.400000pt;}
.y88{bottom:130.440000pt;}
.yf4{bottom:133.920000pt;}
.y68{bottom:136.506667pt;}
.y110{bottom:138.106667pt;}
.ya9{bottom:139.706667pt;}
.yd4{bottom:143.546667pt;}
.yde{bottom:146.106667pt;}
.yb4{bottom:146.280000pt;}
.y80{bottom:147.040000pt;}
.y30{bottom:147.706667pt;}
.y7a{bottom:148.000000pt;}
.yf3{bottom:151.546667pt;}
.y67{bottom:154.106667pt;}
.y10f{bottom:155.866667pt;}
.ya8{bottom:157.306667pt;}
.yd3{bottom:161.146667pt;}
.ydd{bottom:163.866667pt;}
.yb3{bottom:163.880000pt;}
.y7f{bottom:164.640000pt;}
.y2f{bottom:165.306667pt;}
.y79{bottom:165.600000pt;}
.yf2{bottom:169.146667pt;}
.y66{bottom:171.866667pt;}
.y10e{bottom:173.466667pt;}
.ya7{bottom:174.906667pt;}
.yd2{bottom:178.746667pt;}
.ydc{bottom:181.466667pt;}
.yb2{bottom:181.480000pt;}
.ye8{bottom:181.640000pt;}
.y2e{bottom:182.906667pt;}
.yf1{bottom:186.746667pt;}
.y65{bottom:189.466667pt;}
.y10d{bottom:191.066667pt;}
.ya6{bottom:192.506667pt;}
.yd1{bottom:196.346667pt;}
.ydb{bottom:199.066667pt;}
.yb1{bottom:199.080000pt;}
.ye7{bottom:199.240000pt;}
.y2d{bottom:200.506667pt;}
.y6c{bottom:201.306667pt;}
.yf0{bottom:204.346667pt;}
.y64{bottom:207.066667pt;}
.y10c{bottom:208.666667pt;}
.ya5{bottom:210.266667pt;}
.yd0{bottom:214.106667pt;}
.yda{bottom:216.666667pt;}
.yb0{bottom:216.840000pt;}
.y2c{bottom:218.106667pt;}
.yef{bottom:222.106667pt;}
.y63{bottom:224.666667pt;}
.y10b{bottom:226.266667pt;}
.ya4{bottom:227.866667pt;}
.ycf{bottom:231.706667pt;}
.yaf{bottom:234.440000pt;}
.y2b{bottom:235.866667pt;}
.yee{bottom:239.706667pt;}
.y62{bottom:242.266667pt;}
.y10a{bottom:244.026667pt;}
.ya3{bottom:245.466667pt;}
.yce{bottom:249.306667pt;}
.ye6{bottom:252.040000pt;}
.y2a{bottom:253.466667pt;}
.yed{bottom:257.306667pt;}
.y61{bottom:260.026667pt;}
.y109{bottom:261.626667pt;}
.ya2{bottom:263.066667pt;}
.ycd{bottom:266.906667pt;}
.ye5{bottom:269.800000pt;}
.y29{bottom:271.066667pt;}
.yec{bottom:274.906667pt;}
.y60{bottom:277.626667pt;}
.y108{bottom:279.226667pt;}
.ya1{bottom:280.666667pt;}
.ycc{bottom:284.506667pt;}
.ye4{bottom:288.026667pt;}
.y28{bottom:288.666667pt;}
.y5f{bottom:295.226667pt;}
.y107{bottom:296.826667pt;}
.ya0{bottom:298.426667pt;}
.ycb{bottom:302.266667pt;}
.y27{bottom:306.266667pt;}
.y5e{bottom:312.826667pt;}
.y106{bottom:314.426667pt;}
.y9f{bottom:316.026667pt;}
.yca{bottom:319.866667pt;}
.y26{bottom:324.026667pt;}
.y5d{bottom:330.426667pt;}
.y105{bottom:332.186667pt;}
.y9e{bottom:333.626667pt;}
.yc9{bottom:337.466667pt;}
.y25{bottom:341.626667pt;}
.y5c{bottom:348.186667pt;}
.y104{bottom:349.786667pt;}
.y9d{bottom:351.226667pt;}
.yc8{bottom:355.066667pt;}
.y24{bottom:359.266667pt;}
.y5b{bottom:365.826667pt;}
.y9c{bottom:368.866667pt;}
.y103{bottom:375.426667pt;}
.y23{bottom:376.866667pt;}
.yc7{bottom:380.706667pt;}
.y5a{bottom:383.426667pt;}
.y9b{bottom:386.626667pt;}
.y102{bottom:393.026667pt;}
.y22{bottom:394.466667pt;}
.yc6{bottom:398.466667pt;}
.y59{bottom:401.026667pt;}
.y9a{bottom:404.226667pt;}
.y101{bottom:410.626667pt;}
.y21{bottom:412.226667pt;}
.yc5{bottom:416.066667pt;}
.y58{bottom:418.626667pt;}
.y99{bottom:421.826667pt;}
.y100{bottom:428.386667pt;}
.y20{bottom:429.826667pt;}
.yc4{bottom:433.666667pt;}
.y57{bottom:436.386667pt;}
.y98{bottom:439.426667pt;}
.yff{bottom:445.986667pt;}
.y1f{bottom:447.426667pt;}
.yc3{bottom:451.266667pt;}
.y56{bottom:453.986667pt;}
.y97{bottom:457.026667pt;}
.yfe{bottom:463.586667pt;}
.y1e{bottom:465.026667pt;}
.yc2{bottom:468.866667pt;}
.y55{bottom:471.586667pt;}
.yfd{bottom:481.186667pt;}
.y1d{bottom:482.626667pt;}
.y96{bottom:482.786667pt;}
.yc1{bottom:486.626667pt;}
.y54{bottom:489.186667pt;}
.yfc{bottom:498.786667pt;}
.y1c{bottom:500.386667pt;}
.yc0{bottom:504.226667pt;}
.y53{bottom:506.786667pt;}
.yfb{bottom:516.546667pt;}
.y1b{bottom:517.986667pt;}
.ybf{bottom:521.826667pt;}
.y52{bottom:524.546667pt;}
.yfa{bottom:534.146667pt;}
.y95{bottom:535.586667pt;}
.y1a{bottom:537.506667pt;}
.ybe{bottom:539.426667pt;}
.y51{bottom:542.146667pt;}
.yf9{bottom:551.746667pt;}
.yb9{bottom:552.546667pt;}
.y94{bottom:553.186667pt;}
.y50{bottom:559.746667pt;}
.y19{bottom:563.266667pt;}
.yf8{bottom:569.346667pt;}
.y93{bottom:570.946667pt;}
.y4f{bottom:577.373333pt;}
.y18{bottom:580.893333pt;}
.y92{bottom:588.573333pt;}
.y4e{bottom:594.973333pt;}
.y17{bottom:598.493333pt;}
.y91{bottom:606.173333pt;}
.y4d{bottom:612.733333pt;}
.y16{bottom:616.093333pt;}
.y90{bottom:623.773333pt;}
.y4c{bottom:630.333333pt;}
.y15{bottom:633.693333pt;}
.y8f{bottom:641.373333pt;}
.y4b{bottom:647.933333pt;}
.y14{bottom:651.453333pt;}
.y8e{bottom:659.133333pt;}
.y4a{bottom:665.533333pt;}
.y13{bottom:669.053333pt;}
.y87{bottom:672.253333pt;}
.y49{bottom:683.133333pt;}
.y12{bottom:686.653333pt;}
.yae{bottom:694.333333pt;}
.y48{bottom:700.893333pt;}
.y11{bottom:704.253333pt;}
.y117{bottom:705.053333pt;}
.y47{bottom:718.493333pt;}
.y10{bottom:721.853333pt;}
.y116{bottom:722.813333pt;}
.y46{bottom:736.093333pt;}
.yf{bottom:739.613333pt;}
.y115{bottom:740.413333pt;}
.y45{bottom:753.693333pt;}
.ye{bottom:757.053333pt;}
.y114{bottom:758.013333pt;}
.y44{bottom:771.293333pt;}
.yd{bottom:776.733333pt;}
.y43{bottom:789.053333pt;}
.yc{bottom:799.173333pt;}
.yd8{bottom:800.773333pt;}
.y42{bottom:806.693333pt;}
.yb{bottom:812.613333pt;}
.y78{bottom:815.973333pt;}
.y41{bottom:824.293333pt;}
.ya{bottom:831.973333pt;}
.y40{bottom:841.893333pt;}
.y9{bottom:850.853333pt;}
.y3f{bottom:859.493333pt;}
.y8{bottom:871.813333pt;}
.y3e{bottom:877.253333pt;}
.y3d{bottom:894.853333pt;}
.y7{bottom:899.973333pt;}
.y3c{bottom:912.453333pt;}
.y3b{bottom:930.053333pt;}
.y5{bottom:934.373333pt;}
.yad{bottom:941.893333pt;}
.y3a{bottom:947.653333pt;}
.y4{bottom:961.733333pt;}
.y39{bottom:965.413333pt;}
.y38{bottom:983.013333pt;}
.y3{bottom:989.093333pt;}
.y77{bottom:994.853333pt;}
.y37{bottom:1000.613333pt;}
.y2{bottom:1016.613333pt;}
.y36{bottom:1018.213333pt;}
.y35{bottom:1042.720000pt;}
.y1{bottom:1046.720000pt;}
.y34{bottom:1060.640000pt;}
.h1a{height:2.126250pt;}
.h13{height:22.218750pt;}
.h14{height:23.296875pt;}
.h7{height:28.704375pt;}
.hb{height:35.200000pt;}
.hd{height:35.232000pt;}
.h16{height:35.360000pt;}
.hf{height:36.883125pt;}
.h5{height:37.479688pt;}
.ha{height:38.672812pt;}
.h3{height:41.543750pt;}
.h8{height:44.119688pt;}
.h6{height:47.310625pt;}
.h4{height:48.903750pt;}
.h11{height:52.960000pt;}
.h2{height:60.057813pt;}
.h9{height:60.288750pt;}
.h19{height:74.912000pt;}
.hc{height:123.552000pt;}
.h15{height:141.146667pt;}
.h10{height:142.906667pt;}
.he{height:178.080000pt;}
.h17{height:229.186667pt;}
.h12{height:246.906667pt;}
.h18{height:282.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:84.352000pt;}
.wb{width:114.272000pt;}
.w8{width:119.552000pt;}
.w9{width:129.152000pt;}
.w3{width:156.026667pt;}
.w4{width:160.026667pt;}
.w7{width:163.546667pt;}
.w6{width:167.226667pt;}
.wf{width:187.386667pt;}
.w5{width:211.266667pt;}
.we{width:223.266667pt;}
.wd{width:272.666667pt;}
.wa{width:282.306667pt;}
.w10{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:3.040000pt;}
.x10{left:4.000000pt;}
.x11{left:5.760000pt;}
.x9{left:6.880000pt;}
.x1a{left:9.440000pt;}
.x12{left:10.560000pt;}
.x13{left:13.280000pt;}
.x18{left:14.400000pt;}
.xf{left:15.360000pt;}
.xd{left:16.480000pt;}
.x4{left:47.039988pt;}
.x1{left:48.319988pt;}
.xe{left:54.912000pt;}
.x1b{left:57.439988pt;}
.x7{left:58.399988pt;}
.x8{left:59.519988pt;}
.x6{left:61.439988pt;}
.x21{left:66.879988pt;}
.x5{left:71.999988pt;}
.x1c{left:73.119988pt;}
.x3{left:76.511988pt;}
.x22{left:90.911988pt;}
.x20{left:141.146655pt;}
.x2{left:154.746655pt;}
.x14{left:161.946667pt;}
.x1d{left:163.546667pt;}
.x23{left:170.106667pt;}
.xa{left:205.306667pt;}
.x15{left:212.826667pt;}
.x24{left:235.386667pt;}
.x1e{left:248.546667pt;}
.x16{left:333.026667pt;}
.xb{left:365.986667pt;}
.x17{left:462.973333pt;}
.x1f{left:522.013333pt;}
.xc{left:578.053333pt;}
}




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