
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c848397ed0f5c1b5c6431462.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_a2136eb0b0e2852f846c603d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_3a3a7289d522c481e15be6f8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_fd5353548622de20e8ae49a8.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ebe5bcb38b79640b0a051eee.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_55c8d1ee45b161b2faed7383.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4b5e7abb3bb3297c2e83a6b5.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fd55681537e84f05d02f39c4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v2{vertical-align:24.120000px;}
.ls19{letter-spacing:-0.444600px;}
.lsa{letter-spacing:-0.391800px;}
.ls12{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls1a{letter-spacing:-0.096600px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.031800px;}
.ls18{letter-spacing:-0.018360px;}
.ls16{letter-spacing:-0.009000px;}
.ls15{letter-spacing:-0.006120px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls17{letter-spacing:0.051840px;}
.lsf{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.118200px;}
.ls5{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.160800px;}
.ls11{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:47.726640px;}
.ls10{letter-spacing:63.566640px;}
.ls1b{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.387200px;}
.wsa{word-spacing:-13.344600px;}
.wsd{word-spacing:-13.278240px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.217400px;}
.wse{word-spacing:-13.208040px;}
.wsf{word-spacing:-13.129800px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._d{margin-left:-4.060320px;}
._2{margin-left:-2.705400px;}
._0{margin-left:-1.110000px;}
._1{width:1.069836px;}
._3{width:2.705400px;}
._4{width:4.629000px;}
._5{width:6.613200px;}
._a{width:7.695360px;}
._9{width:8.898000px;}
._c{width:10.160040px;}
._19{width:11.172481px;}
._8{width:12.204600px;}
._7{width:14.849400px;}
._6{width:16.713600px;}
._b{width:17.733957px;}
._e{width:19.428480px;}
._1a{width:20.981880px;}
._1b{width:22.536120px;}
._18{width:32.464800px;}
._1f{width:35.711280px;}
._13{width:66.372480px;}
._f{width:73.586880px;}
._14{width:74.729160px;}
._10{width:81.582840px;}
._1e{width:93.787200px;}
._1c{width:112.965480px;}
._1d{width:113.999844px;}
._15{width:131.482440px;}
._11{width:135.811080px;}
._17{width:155.710800px;}
._16{width:169.057440px;}
._12{width:172.055520px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y78{bottom:7.830000px;}
.y7a{bottom:7.920000px;}
.y8f{bottom:25.380000px;}
.ya6{bottom:25.470000px;}
.yc0{bottom:25.500000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y84{bottom:114.420000px;}
.y13d{bottom:116.580000px;}
.y117{bottom:126.660000px;}
.y28{bottom:130.620000px;}
.y83{bottom:131.970000px;}
.y56{bottom:140.160000px;}
.y162{bottom:142.230000px;}
.y18e{bottom:146.910000px;}
.y27{bottom:148.170000px;}
.y82{bottom:149.610000px;}
.y13c{bottom:152.130000px;}
.y55{bottom:158.610000px;}
.y116{bottom:162.210000px;}
.y18d{bottom:164.460000px;}
.y26{bottom:165.720000px;}
.y81{bottom:167.160000px;}
.y161{bottom:169.140000px;}
.y13b{bottom:169.680000px;}
.y54{bottom:177.060000px;}
.y115{bottom:179.850000px;}
.yeb{bottom:181.290000px;}
.y80{bottom:184.800000px;}
.ycc{bottom:185.250000px;}
.ya9{bottom:187.140000px;}
.y13a{bottom:187.320000px;}
.y18c{bottom:191.100000px;}
.y114{bottom:197.400000px;}
.yea{bottom:198.840000px;}
.y25{bottom:201.360000px;}
.ycb{bottom:202.800000px;}
.y139{bottom:204.870000px;}
.y160{bottom:206.490000px;}
.y18b{bottom:208.650000px;}
.y53{bottom:213.510000px;}
.y113{bottom:214.950000px;}
.ye9{bottom:216.480000px;}
.y24{bottom:218.910000px;}
.y7f{bottom:219.630000px;}
.yca{bottom:220.350000px;}
.ya8{bottom:221.970000px;}
.y138{bottom:222.510000px;}
.y7e{bottom:231.780000px;}
.y112{bottom:232.590000px;}
.ye8{bottom:234.030000px;}
.ya7{bottom:234.120000px;}
.y18a{bottom:235.200000px;}
.y23{bottom:236.550000px;}
.yc9{bottom:237.990000px;}
.y52{bottom:240.060000px;}
.y15f{bottom:243.840000px;}
.y111{bottom:250.140000px;}
.y189{bottom:252.840000px;}
.y22{bottom:254.100000px;}
.y137{bottom:257.610000px;}
.y7d{bottom:259.140000px;}
.ya5{bottom:261.480000px;}
.y110{bottom:267.690000px;}
.ye7{bottom:269.580000px;}
.y188{bottom:270.390000px;}
.y21{bottom:271.650000px;}
.yc8{bottom:273.540000px;}
.y51{bottom:275.610000px;}
.y15e{bottom:281.190000px;}
.y136{bottom:284.250000px;}
.y10f{bottom:285.330000px;}
.y7c{bottom:286.500000px;}
.ye6{bottom:287.220000px;}
.y20{bottom:289.290000px;}
.yc7{bottom:291.180000px;}
.y50{bottom:294.060000px;}
.y187{bottom:296.940000px;}
.ye5{bottom:304.770000px;}
.y1f{bottom:306.840000px;}
.yc6{bottom:308.730000px;}
.y4f{bottom:311.610000px;}
.y10e{bottom:311.880000px;}
.y7b{bottom:313.770000px;}
.y186{bottom:314.580000px;}
.y135{bottom:319.800000px;}
.ye4{bottom:322.410000px;}
.y1e{bottom:324.390000px;}
.yc5{bottom:326.280000px;}
.ya4{bottom:327.810000px;}
.y15d{bottom:329.430000px;}
.y4e{bottom:330.060000px;}
.y185{bottom:332.130000px;}
.y134{bottom:337.440000px;}
.y79{bottom:341.130000px;}
.yc4{bottom:343.920000px;}
.y15c{bottom:347.070000px;}
.y10d{bottom:347.520000px;}
.y4d{bottom:347.610000px;}
.y133{bottom:354.990000px;}
.ye3{bottom:357.960000px;}
.y184{bottom:358.770000px;}
.y1d{bottom:360.030000px;}
.ya3{bottom:363.360000px;}
.y15b{bottom:364.620000px;}
.y10c{bottom:365.070000px;}
.y4c{bottom:366.060000px;}
.y77{bottom:368.490000px;}
.y132{bottom:372.540000px;}
.ye2{bottom:375.510000px;}
.y183{bottom:376.320000px;}
.y1c{bottom:377.580000px;}
.yc3{bottom:378.750000px;}
.ya2{bottom:380.910000px;}
.y15a{bottom:382.260000px;}
.y10b{bottom:382.620000px;}
.y131{bottom:390.180000px;}
.yc2{bottom:390.900000px;}
.ye1{bottom:393.150000px;}
.y1b{bottom:395.220000px;}
.ya1{bottom:398.550000px;}
.y159{bottom:399.810000px;}
.y10a{bottom:400.260000px;}
.y4b{bottom:402.510000px;}
.y182{bottom:402.870000px;}
.y130{bottom:407.730000px;}
.y1a{bottom:412.770000px;}
.ya0{bottom:416.100000px;}
.y76{bottom:417.180000px;}
.y109{bottom:417.810000px;}
.yc1{bottom:418.260000px;}
.y181{bottom:420.510000px;}
.ye0{bottom:426.090000px;}
.y4a{bottom:429.060000px;}
.y19{bottom:430.320000px;}
.y9f{bottom:433.740000px;}
.y158{bottom:435.360000px;}
.y12f{bottom:443.370000px;}
.y75{bottom:444.090000px;}
.ybf{bottom:445.620000px;}
.y180{bottom:447.060000px;}
.y18{bottom:447.960000px;}
.y9e{bottom:451.290000px;}
.y157{bottom:453.000000px;}
.ydf{bottom:453.450000px;}
.y12e{bottom:460.920000px;}
.y49{bottom:464.700000px;}
.y17{bottom:465.510000px;}
.y9d{bottom:468.840000px;}
.y156{bottom:470.580000px;}
.y108{bottom:471.030000px;}
.y12d{bottom:478.500000px;}
.yde{bottom:480.840000px;}
.y48{bottom:482.280000px;}
.y155{bottom:488.220000px;}
.y107{bottom:488.580000px;}
.ybe{bottom:490.560000px;}
.y17f{bottom:491.280000px;}
.y74{bottom:492.360000px;}
.y16{bottom:492.450000px;}
.y12c{bottom:496.140000px;}
.y47{bottom:499.830000px;}
.y9c{bottom:504.510000px;}
.y154{bottom:505.770000px;}
.y106{bottom:506.220000px;}
.ydd{bottom:508.110000px;}
.y17e{bottom:508.830000px;}
.y73{bottom:510.000000px;}
.y46{bottom:517.470000px;}
.y9b{bottom:522.060000px;}
.y105{bottom:523.770000px;}
.y17d{bottom:526.470000px;}
.y72{bottom:527.550000px;}
.y12b{bottom:531.690000px;}
.y45{bottom:535.020000px;}
.y9a{bottom:539.700000px;}
.y15{bottom:541.050000px;}
.y153{bottom:541.320000px;}
.y104{bottom:541.410000px;}
.y71{bottom:545.190000px;}
.y12a{bottom:549.330000px;}
.y17c{bottom:553.020000px;}
.ybd{bottom:556.800000px;}
.y99{bottom:557.250000px;}
.y103{bottom:558.960000px;}
.y44{bottom:561.660000px;}
.y70{bottom:562.740000px;}
.y129{bottom:566.880000px;}
.y98{bottom:574.800000px;}
.y152{bottom:576.510000px;}
.y14{bottom:578.130000px;}
.y17b{bottom:579.660000px;}
.y128{bottom:584.430000px;}
.ybc{bottom:592.440000px;}
.y151{bottom:594.150000px;}
.y102{bottom:594.510000px;}
.y13{bottom:595.680000px;}
.y43{bottom:597.210000px;}
.y6f{bottom:598.290000px;}
.y127{bottom:602.070000px;}
.y97{bottom:609.720000px;}
.ydc{bottom:609.990000px;}
.y150{bottom:611.700000px;}
.y101{bottom:612.150000px;}
.y12{bottom:613.230000px;}
.y42{bottom:614.760000px;}
.y6e{bottom:615.930000px;}
.y126{bottom:619.620000px;}
.y96{bottom:621.870000px;}
.y17a{bottom:623.760000px;}
.ybb{bottom:627.270000px;}
.ydb{bottom:627.630000px;}
.y100{bottom:629.700000px;}
.y11{bottom:630.870000px;}
.y41{bottom:632.400000px;}
.y6d{bottom:633.480000px;}
.y125{bottom:637.260000px;}
.y14f{bottom:638.610000px;}
.yba{bottom:639.420000px;}
.y179{bottom:641.400000px;}
.yda{bottom:645.180000px;}
.yff{bottom:647.340000px;}
.y10{bottom:648.420000px;}
.y95{bottom:649.230000px;}
.y40{bottom:649.950000px;}
.y6c{bottom:651.120000px;}
.y124{bottom:654.810000px;}
.y178{bottom:658.950000px;}
.yfe{bottom:664.890000px;}
.yf{bottom:665.970000px;}
.yb9{bottom:666.780000px;}
.y3f{bottom:667.590000px;}
.y94{bottom:676.590000px;}
.y6b{bottom:677.670000px;}
.yd9{bottom:680.730000px;}
.yfd{bottom:682.440000px;}
.ye{bottom:683.610000px;}
.y3e{bottom:685.140000px;}
.y177{bottom:685.590000px;}
.y14e{bottom:686.850000px;}
.y123{bottom:690.360000px;}
.yd8{bottom:698.370000px;}
.yd{bottom:701.160000px;}
.y3d{bottom:702.690000px;}
.y176{bottom:703.140000px;}
.y14d{bottom:704.490000px;}
.y122{bottom:708.000000px;}
.yfc{bottom:709.080000px;}
.y6a{bottom:713.220000px;}
.yd7{bottom:715.920000px;}
.yc{bottom:718.800000px;}
.y3c{bottom:720.330000px;}
.y93{bottom:721.500000px;}
.y14c{bottom:722.040000px;}
.y121{bottom:725.550000px;}
.y175{bottom:729.690000px;}
.y69{bottom:731.670000px;}
.yb8{bottom:733.110000px;}
.yd6{bottom:733.560000px;}
.yb{bottom:736.350000px;}
.y3b{bottom:737.880000px;}
.y14b{bottom:739.590000px;}
.y120{bottom:743.190000px;}
.yfb{bottom:744.630000px;}
.y174{bottom:747.330000px;}
.y68{bottom:750.120000px;}
.yd5{bottom:751.110000px;}
.ya{bottom:753.900000px;}
.y3a{bottom:755.520000px;}
.y14a{bottom:757.230000px;}
.y11f{bottom:760.740000px;}
.yfa{bottom:762.270000px;}
.y67{bottom:767.670000px;}
.yb7{bottom:768.660000px;}
.y173{bottom:773.880000px;}
.y149{bottom:774.780000px;}
.yf9{bottom:779.820000px;}
.y9{bottom:780.810000px;}
.y39{bottom:782.070000px;}
.yd4{bottom:785.940000px;}
.y66{bottom:786.120000px;}
.yb6{bottom:786.300000px;}
.y92{bottom:787.740000px;}
.y172{bottom:791.520000px;}
.y148{bottom:792.420000px;}
.y11e{bottom:796.290000px;}
.yf8{bottom:797.370000px;}
.yd3{bottom:798.180000px;}
.y65{bottom:803.670000px;}
.yb5{bottom:803.850000px;}
.y147{bottom:809.970000px;}
.y11d{bottom:813.930000px;}
.yf7{bottom:815.010000px;}
.y38{bottom:817.620000px;}
.y171{bottom:818.070000px;}
.yb4{bottom:821.400000px;}
.y91{bottom:822.570000px;}
.yd2{bottom:825.450000px;}
.y8{bottom:829.140000px;}
.y64{bottom:831.030000px;}
.y11c{bottom:831.480000px;}
.yf6{bottom:832.560000px;}
.y90{bottom:834.810000px;}
.y37{bottom:835.260000px;}
.y170{bottom:835.620000px;}
.y146{bottom:836.880000px;}
.y11b{bottom:849.030000px;}
.y36{bottom:852.810000px;}
.yb3{bottom:857.040000px;}
.yf5{bottom:859.470000px;}
.y8e{bottom:862.170000px;}
.y16f{bottom:862.260000px;}
.y7{bottom:864.960000px;}
.y63{bottom:866.670000px;}
.y145{bottom:873.870000px;}
.yb2{bottom:874.590000px;}
.y16e{bottom:879.810000px;}
.y62{bottom:884.220000px;}
.y35{bottom:888.450000px;}
.y144{bottom:891.510000px;}
.yb1{bottom:892.140000px;}
.yd1{bottom:897.720000px;}
.y6{bottom:900.960000px;}
.y61{bottom:901.860000px;}
.y34{bottom:906.000000px;}
.y16d{bottom:906.450000px;}
.yf4{bottom:907.710000px;}
.y143{bottom:909.060000px;}
.yb0{bottom:909.780000px;}
.y60{bottom:919.410000px;}
.y11a{bottom:919.860000px;}
.y16c{bottom:924.000000px;}
.yf3{bottom:925.350000px;}
.y142{bottom:926.700000px;}
.yaf{bottom:927.330000px;}
.y8d{bottom:928.410000px;}
.y5{bottom:936.960000px;}
.y119{bottom:937.410000px;}
.y33{bottom:941.550000px;}
.yf2{bottom:942.900000px;}
.y141{bottom:944.250000px;}
.y16b{bottom:950.550000px;}
.y5f{bottom:954.960000px;}
.y32{bottom:959.190000px;}
.yf1{bottom:960.540000px;}
.y140{bottom:961.800000px;}
.yae{bottom:962.250000px;}
.y8c{bottom:963.960000px;}
.yd0{bottom:964.050000px;}
.y16a{bottom:968.190000px;}
.y5e{bottom:972.600000px;}
.y4{bottom:973.050000px;}
.yad{bottom:974.400000px;}
.y31{bottom:976.740000px;}
.y8b{bottom:981.600000px;}
.y13f{bottom:988.710000px;}
.y5d{bottom:990.150000px;}
.y30{bottom:994.290000px;}
.y169{bottom:994.740000px;}
.yf0{bottom:996.090000px;}
.y8a{bottom:999.150000px;}
.ycf{bottom:999.600000px;}
.yac{bottom:1001.760000px;}
.y5c{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.y168{bottom:1012.320000px;}
.yef{bottom:1013.670000px;}
.y89{bottom:1016.820000px;}
.y2f{bottom:1020.960000px;}
.y118{bottom:1025.370000px;}
.y13e{bottom:1025.820000px;}
.yab{bottom:1029.060000px;}
.yee{bottom:1031.310000px;}
.y88{bottom:1034.370000px;}
.yce{bottom:1034.460000px;}
.y167{bottom:1038.960000px;}
.y5b{bottom:1043.370000px;}
.ycd{bottom:1046.700000px;}
.y87{bottom:1051.920000px;}
.y166{bottom:1056.510000px;}
.y2e{bottom:1056.870000px;}
.y5a{bottom:1060.920000px;}
.yed{bottom:1064.250000px;}
.y86{bottom:1069.560000px;}
.yaa{bottom:1073.970000px;}
.y59{bottom:1078.560000px;}
.y165{bottom:1083.150000px;}
.y85{bottom:1087.110000px;}
.yec{bottom:1091.610000px;}
.y58{bottom:1096.110000px;}
.y164{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.y57{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y163{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h11{height:26.580000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.he{height:40.539023px;}
.hf{height:44.100000px;}
.h10{height:44.190000px;}
.h12{height:44.220000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:60.960938px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h7{height:74.004654px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:24.390000px;}
.w11{width:38.250000px;}
.w4{width:40.410000px;}
.w38{width:40.440000px;}
.w23{width:40.500000px;}
.w5{width:43.470000px;}
.wb{width:48.270000px;}
.w6{width:51.750000px;}
.w13{width:55.440000px;}
.w1d{width:56.550000px;}
.wa{width:58.320000px;}
.w1c{width:58.410000px;}
.w2f{width:60.120000px;}
.w35{width:67.140000px;}
.w1e{width:69.930000px;}
.wc{width:70.380000px;}
.w8{width:71.010000px;}
.w7{width:71.040000px;}
.w22{width:71.190000px;}
.w10{width:71.550000px;}
.w31{width:74.160000px;}
.w29{width:75.060000px;}
.w18{width:76.950000px;}
.w37{width:81.000000px;}
.w24{width:83.610000px;}
.w25{width:84.000000px;}
.w14{width:84.090000px;}
.w12{width:84.690000px;}
.w34{width:89.100000px;}
.w33{width:89.460000px;}
.w2c{width:90.720000px;}
.w1b{width:90.900000px;}
.w2b{width:91.080000px;}
.w1a{width:91.710000px;}
.w32{width:93.060000px;}
.w19{width:93.960000px;}
.w2a{width:94.770000px;}
.w21{width:95.880000px;}
.wf{width:97.590000px;}
.w36{width:102.600000px;}
.w1f{width:106.920000px;}
.wd{width:108.720000px;}
.w20{width:127.890000px;}
.we{width:130.950000px;}
.w2e{width:149.700000px;}
.w27{width:152.220000px;}
.w16{width:153.300000px;}
.w2d{width:167.940000px;}
.w26{width:170.550000px;}
.w15{width:171.630000px;}
.w30{width:179.280000px;}
.w28{width:182.610000px;}
.w17{width:183.330000px;}
.w3{width:194.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x35{left:111.239987px;}
.x5{left:122.039987px;}
.x1a{left:124.920000px;}
.x11{left:127.800000px;}
.x6{left:133.920000px;}
.x12{left:176.790000px;}
.x23{left:185.250000px;}
.x2{left:202.799987px;}
.x1b{left:209.730000px;}
.x29{left:212.610000px;}
.x13{left:247.890000px;}
.x24{left:255.900000px;}
.x2e{left:280.560000px;}
.x20{left:287.400000px;}
.x30{left:313.500000px;}
.x8{left:329.160000px;}
.x10{left:352.559987px;}
.x14{left:357.330000px;}
.x25{left:363.540000px;}
.x9{left:370.380000px;}
.x2f{left:377.849987px;}
.x22{left:380.459987px;}
.x1c{left:382.080000px;}
.x2a{left:383.880000px;}
.x31{left:395.310000px;}
.xa{left:414.570000px;}
.x32{left:447.780000px;}
.xb{left:467.130000px;}
.x33{left:486.750000px;}
.x15{left:489.000000px;}
.x26{left:492.150000px;}
.x34{left:528.000000px;}
.x2b{left:531.780000px;}
.x1d{left:536.100000px;}
.xc{left:538.890000px;}
.x16{left:587.310000px;}
.x1e{left:588.570000px;}
.x2c{left:592.620000px;}
.xd{left:610.710000px;}
.x1f{left:641.130000px;}
.x2d{left:645.180000px;}
.x17{left:659.580000px;}
.x27{left:660.660000px;}
.xe{left:682.440000px;}
.x18{left:698.640000px;}
.x21{left:733.560000px;}
.xf{left:734.910000px;}
.x19{left:739.770000px;}
.x28{left:740.850000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v2{vertical-align:21.440000pt;}
.ls19{letter-spacing:-0.395200pt;}
.lsa{letter-spacing:-0.348267pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls1a{letter-spacing:-0.085867pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.028267pt;}
.ls18{letter-spacing:-0.016320pt;}
.ls16{letter-spacing:-0.008000pt;}
.ls15{letter-spacing:-0.005440pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls17{letter-spacing:0.046080pt;}
.lsf{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.105067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.142933pt;}
.ls11{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.899733pt;}
.wsa{word-spacing:-11.861867pt;}
.wsd{word-spacing:-11.802880pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.748800pt;}
.wse{word-spacing:-11.740480pt;}
.wsf{word-spacing:-11.670933pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._d{margin-left:-3.609173pt;}
._2{margin-left:-2.404800pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.950965pt;}
._3{width:2.404800pt;}
._4{width:4.114666pt;}
._5{width:5.878400pt;}
._a{width:6.840320pt;}
._9{width:7.909334pt;}
._c{width:9.031146pt;}
._19{width:9.931094pt;}
._8{width:10.848534pt;}
._7{width:13.199466pt;}
._6{width:14.856534pt;}
._b{width:15.763517pt;}
._e{width:17.269760pt;}
._1a{width:18.650560pt;}
._1b{width:20.032107pt;}
._18{width:28.857600pt;}
._1f{width:31.743360pt;}
._13{width:58.997760pt;}
._f{width:65.410560pt;}
._14{width:66.425920pt;}
._10{width:72.518080pt;}
._1e{width:83.366400pt;}
._1c{width:100.413760pt;}
._1d{width:101.333195pt;}
._15{width:116.873280pt;}
._11{width:120.720960pt;}
._17{width:138.409600pt;}
._16{width:150.273280pt;}
._12{width:152.938240pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:6.960000pt;}
.y7a{bottom:7.040000pt;}
.y8f{bottom:22.560000pt;}
.ya6{bottom:22.640000pt;}
.yc0{bottom:22.666667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y84{bottom:101.706667pt;}
.y13d{bottom:103.626667pt;}
.y117{bottom:112.586667pt;}
.y28{bottom:116.106667pt;}
.y83{bottom:117.306667pt;}
.y56{bottom:124.586667pt;}
.y162{bottom:126.426667pt;}
.y18e{bottom:130.586667pt;}
.y27{bottom:131.706667pt;}
.y82{bottom:132.986667pt;}
.y13c{bottom:135.226667pt;}
.y55{bottom:140.986667pt;}
.y116{bottom:144.186667pt;}
.y18d{bottom:146.186667pt;}
.y26{bottom:147.306667pt;}
.y81{bottom:148.586667pt;}
.y161{bottom:150.346667pt;}
.y13b{bottom:150.826667pt;}
.y54{bottom:157.386667pt;}
.y115{bottom:159.866667pt;}
.yeb{bottom:161.146667pt;}
.y80{bottom:164.266667pt;}
.ycc{bottom:164.666667pt;}
.ya9{bottom:166.346667pt;}
.y13a{bottom:166.506667pt;}
.y18c{bottom:169.866667pt;}
.y114{bottom:175.466667pt;}
.yea{bottom:176.746667pt;}
.y25{bottom:178.986667pt;}
.ycb{bottom:180.266667pt;}
.y139{bottom:182.106667pt;}
.y160{bottom:183.546667pt;}
.y18b{bottom:185.466667pt;}
.y53{bottom:189.786667pt;}
.y113{bottom:191.066667pt;}
.ye9{bottom:192.426667pt;}
.y24{bottom:194.586667pt;}
.y7f{bottom:195.226667pt;}
.yca{bottom:195.866667pt;}
.ya8{bottom:197.306667pt;}
.y138{bottom:197.786667pt;}
.y7e{bottom:206.026667pt;}
.y112{bottom:206.746667pt;}
.ye8{bottom:208.026667pt;}
.ya7{bottom:208.106667pt;}
.y18a{bottom:209.066667pt;}
.y23{bottom:210.266667pt;}
.yc9{bottom:211.546667pt;}
.y52{bottom:213.386667pt;}
.y15f{bottom:216.746667pt;}
.y111{bottom:222.346667pt;}
.y189{bottom:224.746667pt;}
.y22{bottom:225.866667pt;}
.y137{bottom:228.986667pt;}
.y7d{bottom:230.346667pt;}
.ya5{bottom:232.426667pt;}
.y110{bottom:237.946667pt;}
.ye7{bottom:239.626667pt;}
.y188{bottom:240.346667pt;}
.y21{bottom:241.466667pt;}
.yc8{bottom:243.146667pt;}
.y51{bottom:244.986667pt;}
.y15e{bottom:249.946667pt;}
.y136{bottom:252.666667pt;}
.y10f{bottom:253.626667pt;}
.y7c{bottom:254.666667pt;}
.ye6{bottom:255.306667pt;}
.y20{bottom:257.146667pt;}
.yc7{bottom:258.826667pt;}
.y50{bottom:261.386667pt;}
.y187{bottom:263.946667pt;}
.ye5{bottom:270.906667pt;}
.y1f{bottom:272.746667pt;}
.yc6{bottom:274.426667pt;}
.y4f{bottom:276.986667pt;}
.y10e{bottom:277.226667pt;}
.y7b{bottom:278.906667pt;}
.y186{bottom:279.626667pt;}
.y135{bottom:284.266667pt;}
.ye4{bottom:286.586667pt;}
.y1e{bottom:288.346667pt;}
.yc5{bottom:290.026667pt;}
.ya4{bottom:291.386667pt;}
.y15d{bottom:292.826667pt;}
.y4e{bottom:293.386667pt;}
.y185{bottom:295.226667pt;}
.y134{bottom:299.946667pt;}
.y79{bottom:303.226667pt;}
.yc4{bottom:305.706667pt;}
.y15c{bottom:308.506667pt;}
.y10d{bottom:308.906667pt;}
.y4d{bottom:308.986667pt;}
.y133{bottom:315.546667pt;}
.ye3{bottom:318.186667pt;}
.y184{bottom:318.906667pt;}
.y1d{bottom:320.026667pt;}
.ya3{bottom:322.986667pt;}
.y15b{bottom:324.106667pt;}
.y10c{bottom:324.506667pt;}
.y4c{bottom:325.386667pt;}
.y77{bottom:327.546667pt;}
.y132{bottom:331.146667pt;}
.ye2{bottom:333.786667pt;}
.y183{bottom:334.506667pt;}
.y1c{bottom:335.626667pt;}
.yc3{bottom:336.666667pt;}
.ya2{bottom:338.586667pt;}
.y15a{bottom:339.786667pt;}
.y10b{bottom:340.106667pt;}
.y131{bottom:346.826667pt;}
.yc2{bottom:347.466667pt;}
.ye1{bottom:349.466667pt;}
.y1b{bottom:351.306667pt;}
.ya1{bottom:354.266667pt;}
.y159{bottom:355.386667pt;}
.y10a{bottom:355.786667pt;}
.y4b{bottom:357.786667pt;}
.y182{bottom:358.106667pt;}
.y130{bottom:362.426667pt;}
.y1a{bottom:366.906667pt;}
.ya0{bottom:369.866667pt;}
.y76{bottom:370.826667pt;}
.y109{bottom:371.386667pt;}
.yc1{bottom:371.786667pt;}
.y181{bottom:373.786667pt;}
.ye0{bottom:378.746667pt;}
.y4a{bottom:381.386667pt;}
.y19{bottom:382.506667pt;}
.y9f{bottom:385.546667pt;}
.y158{bottom:386.986667pt;}
.y12f{bottom:394.106667pt;}
.y75{bottom:394.746667pt;}
.ybf{bottom:396.106667pt;}
.y180{bottom:397.386667pt;}
.y18{bottom:398.186667pt;}
.y9e{bottom:401.146667pt;}
.y157{bottom:402.666667pt;}
.ydf{bottom:403.066667pt;}
.y12e{bottom:409.706667pt;}
.y49{bottom:413.066667pt;}
.y17{bottom:413.786667pt;}
.y9d{bottom:416.746667pt;}
.y156{bottom:418.293333pt;}
.y108{bottom:418.693333pt;}
.y12d{bottom:425.333333pt;}
.yde{bottom:427.413333pt;}
.y48{bottom:428.693333pt;}
.y155{bottom:433.973333pt;}
.y107{bottom:434.293333pt;}
.ybe{bottom:436.053333pt;}
.y17f{bottom:436.693333pt;}
.y74{bottom:437.653333pt;}
.y16{bottom:437.733333pt;}
.y12c{bottom:441.013333pt;}
.y47{bottom:444.293333pt;}
.y9c{bottom:448.453333pt;}
.y154{bottom:449.573333pt;}
.y106{bottom:449.973333pt;}
.ydd{bottom:451.653333pt;}
.y17e{bottom:452.293333pt;}
.y73{bottom:453.333333pt;}
.y46{bottom:459.973333pt;}
.y9b{bottom:464.053333pt;}
.y105{bottom:465.573333pt;}
.y17d{bottom:467.973333pt;}
.y72{bottom:468.933333pt;}
.y12b{bottom:472.613333pt;}
.y45{bottom:475.573333pt;}
.y9a{bottom:479.733333pt;}
.y15{bottom:480.933333pt;}
.y153{bottom:481.173333pt;}
.y104{bottom:481.253333pt;}
.y71{bottom:484.613333pt;}
.y12a{bottom:488.293333pt;}
.y17c{bottom:491.573333pt;}
.ybd{bottom:494.933333pt;}
.y99{bottom:495.333333pt;}
.y103{bottom:496.853333pt;}
.y44{bottom:499.253333pt;}
.y70{bottom:500.213333pt;}
.y129{bottom:503.893333pt;}
.y98{bottom:510.933333pt;}
.y152{bottom:512.453333pt;}
.y14{bottom:513.893333pt;}
.y17b{bottom:515.253333pt;}
.y128{bottom:519.493333pt;}
.ybc{bottom:526.613333pt;}
.y151{bottom:528.133333pt;}
.y102{bottom:528.453333pt;}
.y13{bottom:529.493333pt;}
.y43{bottom:530.853333pt;}
.y6f{bottom:531.813333pt;}
.y127{bottom:535.173333pt;}
.y97{bottom:541.973333pt;}
.ydc{bottom:542.213333pt;}
.y150{bottom:543.733333pt;}
.y101{bottom:544.133333pt;}
.y12{bottom:545.093333pt;}
.y42{bottom:546.453333pt;}
.y6e{bottom:547.493333pt;}
.y126{bottom:550.773333pt;}
.y96{bottom:552.773333pt;}
.y17a{bottom:554.453333pt;}
.ybb{bottom:557.573333pt;}
.ydb{bottom:557.893333pt;}
.y100{bottom:559.733333pt;}
.y11{bottom:560.773333pt;}
.y41{bottom:562.133333pt;}
.y6d{bottom:563.093333pt;}
.y125{bottom:566.453333pt;}
.y14f{bottom:567.653333pt;}
.yba{bottom:568.373333pt;}
.y179{bottom:570.133333pt;}
.yda{bottom:573.493333pt;}
.yff{bottom:575.413333pt;}
.y10{bottom:576.373333pt;}
.y95{bottom:577.093333pt;}
.y40{bottom:577.733333pt;}
.y6c{bottom:578.773333pt;}
.y124{bottom:582.053333pt;}
.y178{bottom:585.733333pt;}
.yfe{bottom:591.013333pt;}
.yf{bottom:591.973333pt;}
.yb9{bottom:592.693333pt;}
.y3f{bottom:593.413333pt;}
.y94{bottom:601.413333pt;}
.y6b{bottom:602.373333pt;}
.yd9{bottom:605.093333pt;}
.yfd{bottom:606.613333pt;}
.ye{bottom:607.653333pt;}
.y3e{bottom:609.013333pt;}
.y177{bottom:609.413333pt;}
.y14e{bottom:610.533333pt;}
.y123{bottom:613.653333pt;}
.yd8{bottom:620.773333pt;}
.yd{bottom:623.253333pt;}
.y3d{bottom:624.613333pt;}
.y176{bottom:625.013333pt;}
.y14d{bottom:626.213333pt;}
.y122{bottom:629.333333pt;}
.yfc{bottom:630.293333pt;}
.y6a{bottom:633.973333pt;}
.yd7{bottom:636.373333pt;}
.yc{bottom:638.933333pt;}
.y3c{bottom:640.293333pt;}
.y93{bottom:641.333333pt;}
.y14c{bottom:641.813333pt;}
.y121{bottom:644.933333pt;}
.y175{bottom:648.613333pt;}
.y69{bottom:650.373333pt;}
.yb8{bottom:651.653333pt;}
.yd6{bottom:652.053333pt;}
.yb{bottom:654.533333pt;}
.y3b{bottom:655.893333pt;}
.y14b{bottom:657.413333pt;}
.y120{bottom:660.613333pt;}
.yfb{bottom:661.893333pt;}
.y174{bottom:664.293333pt;}
.y68{bottom:666.773333pt;}
.yd5{bottom:667.653333pt;}
.ya{bottom:670.133333pt;}
.y3a{bottom:671.573333pt;}
.y14a{bottom:673.093333pt;}
.y11f{bottom:676.213333pt;}
.yfa{bottom:677.573333pt;}
.y67{bottom:682.373333pt;}
.yb7{bottom:683.253333pt;}
.y173{bottom:687.893333pt;}
.y149{bottom:688.693333pt;}
.yf9{bottom:693.173333pt;}
.y9{bottom:694.053333pt;}
.y39{bottom:695.173333pt;}
.yd4{bottom:698.613333pt;}
.y66{bottom:698.773333pt;}
.yb6{bottom:698.933333pt;}
.y92{bottom:700.213333pt;}
.y172{bottom:703.573333pt;}
.y148{bottom:704.373333pt;}
.y11e{bottom:707.813333pt;}
.yf8{bottom:708.773333pt;}
.yd3{bottom:709.493333pt;}
.y65{bottom:714.373333pt;}
.yb5{bottom:714.533333pt;}
.y147{bottom:719.973333pt;}
.y11d{bottom:723.493333pt;}
.yf7{bottom:724.453333pt;}
.y38{bottom:726.773333pt;}
.y171{bottom:727.173333pt;}
.yb4{bottom:730.133333pt;}
.y91{bottom:731.173333pt;}
.yd2{bottom:733.733333pt;}
.y8{bottom:737.013333pt;}
.y64{bottom:738.693333pt;}
.y11c{bottom:739.093333pt;}
.yf6{bottom:740.053333pt;}
.y90{bottom:742.053333pt;}
.y37{bottom:742.453333pt;}
.y170{bottom:742.773333pt;}
.y146{bottom:743.893333pt;}
.y11b{bottom:754.693333pt;}
.y36{bottom:758.053333pt;}
.yb3{bottom:761.813333pt;}
.yf5{bottom:763.973333pt;}
.y8e{bottom:766.373333pt;}
.y16f{bottom:766.453333pt;}
.y7{bottom:768.853333pt;}
.y63{bottom:770.373333pt;}
.y145{bottom:776.773333pt;}
.yb2{bottom:777.413333pt;}
.y16e{bottom:782.053333pt;}
.y62{bottom:785.973333pt;}
.y35{bottom:789.733333pt;}
.y144{bottom:792.453333pt;}
.yb1{bottom:793.013333pt;}
.yd1{bottom:797.973333pt;}
.y6{bottom:800.853333pt;}
.y61{bottom:801.653333pt;}
.y34{bottom:805.333333pt;}
.y16d{bottom:805.733333pt;}
.yf4{bottom:806.853333pt;}
.y143{bottom:808.053333pt;}
.yb0{bottom:808.693333pt;}
.y60{bottom:817.253333pt;}
.y11a{bottom:817.653333pt;}
.y16c{bottom:821.333333pt;}
.yf3{bottom:822.533333pt;}
.y142{bottom:823.733333pt;}
.yaf{bottom:824.293333pt;}
.y8d{bottom:825.253333pt;}
.y5{bottom:832.853333pt;}
.y119{bottom:833.253333pt;}
.y33{bottom:836.933333pt;}
.yf2{bottom:838.133333pt;}
.y141{bottom:839.333333pt;}
.y16b{bottom:844.933333pt;}
.y5f{bottom:848.853333pt;}
.y32{bottom:852.613333pt;}
.yf1{bottom:853.813333pt;}
.y140{bottom:854.933333pt;}
.yae{bottom:855.333333pt;}
.y8c{bottom:856.853333pt;}
.yd0{bottom:856.933333pt;}
.y16a{bottom:860.613333pt;}
.y5e{bottom:864.533333pt;}
.y4{bottom:864.933333pt;}
.yad{bottom:866.133333pt;}
.y31{bottom:868.213333pt;}
.y8b{bottom:872.533333pt;}
.y13f{bottom:878.853333pt;}
.y5d{bottom:880.133333pt;}
.y30{bottom:883.813333pt;}
.y169{bottom:884.213333pt;}
.yf0{bottom:885.413333pt;}
.y8a{bottom:888.133333pt;}
.ycf{bottom:888.533333pt;}
.yac{bottom:890.453333pt;}
.y5c{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.y168{bottom:899.840000pt;}
.yef{bottom:901.040000pt;}
.y89{bottom:903.840000pt;}
.y2f{bottom:907.520000pt;}
.y118{bottom:911.440000pt;}
.y13e{bottom:911.840000pt;}
.yab{bottom:914.720000pt;}
.yee{bottom:916.720000pt;}
.y88{bottom:919.440000pt;}
.yce{bottom:919.520000pt;}
.y167{bottom:923.520000pt;}
.y5b{bottom:927.440000pt;}
.ycd{bottom:930.400000pt;}
.y87{bottom:935.040000pt;}
.y166{bottom:939.120000pt;}
.y2e{bottom:939.440000pt;}
.y5a{bottom:943.040000pt;}
.yed{bottom:946.000000pt;}
.y86{bottom:950.720000pt;}
.yaa{bottom:954.640000pt;}
.y59{bottom:958.720000pt;}
.y165{bottom:962.800000pt;}
.y85{bottom:966.320000pt;}
.yec{bottom:970.320000pt;}
.y58{bottom:974.320000pt;}
.y164{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.y57{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y163{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h11{height:23.626667pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.he{height:36.034687pt;}
.hf{height:39.200000pt;}
.h10{height:39.280000pt;}
.h12{height:39.306667pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.187500pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h7{height:65.781915pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:21.680000pt;}
.w11{width:34.000000pt;}
.w4{width:35.920000pt;}
.w38{width:35.946667pt;}
.w23{width:36.000000pt;}
.w5{width:38.640000pt;}
.wb{width:42.906667pt;}
.w6{width:46.000000pt;}
.w13{width:49.280000pt;}
.w1d{width:50.266667pt;}
.wa{width:51.840000pt;}
.w1c{width:51.920000pt;}
.w2f{width:53.440000pt;}
.w35{width:59.680000pt;}
.w1e{width:62.160000pt;}
.wc{width:62.560000pt;}
.w8{width:63.120000pt;}
.w7{width:63.146667pt;}
.w22{width:63.280000pt;}
.w10{width:63.600000pt;}
.w31{width:65.920000pt;}
.w29{width:66.720000pt;}
.w18{width:68.400000pt;}
.w37{width:72.000000pt;}
.w24{width:74.320000pt;}
.w25{width:74.666667pt;}
.w14{width:74.746667pt;}
.w12{width:75.280000pt;}
.w34{width:79.200000pt;}
.w33{width:79.520000pt;}
.w2c{width:80.640000pt;}
.w1b{width:80.800000pt;}
.w2b{width:80.960000pt;}
.w1a{width:81.520000pt;}
.w32{width:82.720000pt;}
.w19{width:83.520000pt;}
.w2a{width:84.240000pt;}
.w21{width:85.226667pt;}
.wf{width:86.746667pt;}
.w36{width:91.200000pt;}
.w1f{width:95.040000pt;}
.wd{width:96.640000pt;}
.w20{width:113.680000pt;}
.we{width:116.400000pt;}
.w2e{width:133.066667pt;}
.w27{width:135.306667pt;}
.w16{width:136.266667pt;}
.w2d{width:149.280000pt;}
.w26{width:151.600000pt;}
.w15{width:152.560000pt;}
.w30{width:159.360000pt;}
.w28{width:162.320000pt;}
.w17{width:162.960000pt;}
.w3{width:172.906667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x35{left:98.879988pt;}
.x5{left:108.479988pt;}
.x1a{left:111.040000pt;}
.x11{left:113.600000pt;}
.x6{left:119.040000pt;}
.x12{left:157.146667pt;}
.x23{left:164.666667pt;}
.x2{left:180.266655pt;}
.x1b{left:186.426667pt;}
.x29{left:188.986667pt;}
.x13{left:220.346667pt;}
.x24{left:227.466667pt;}
.x2e{left:249.386667pt;}
.x20{left:255.466667pt;}
.x30{left:278.666667pt;}
.x8{left:292.586667pt;}
.x10{left:313.386655pt;}
.x14{left:317.626667pt;}
.x25{left:323.146667pt;}
.x9{left:329.226667pt;}
.x2f{left:335.866655pt;}
.x22{left:338.186655pt;}
.x1c{left:339.626667pt;}
.x2a{left:341.226667pt;}
.x31{left:351.386667pt;}
.xa{left:368.506667pt;}
.x32{left:398.026667pt;}
.xb{left:415.226667pt;}
.x33{left:432.666667pt;}
.x15{left:434.666667pt;}
.x26{left:437.466667pt;}
.x34{left:469.333333pt;}
.x2b{left:472.693333pt;}
.x1d{left:476.533333pt;}
.xc{left:479.013333pt;}
.x16{left:522.053333pt;}
.x1e{left:523.173333pt;}
.x2c{left:526.773333pt;}
.xd{left:542.853333pt;}
.x1f{left:569.893333pt;}
.x2d{left:573.493333pt;}
.x17{left:586.293333pt;}
.x27{left:587.253333pt;}
.xe{left:606.613333pt;}
.x18{left:621.013333pt;}
.x21{left:652.053333pt;}
.xf{left:653.253333pt;}
.x19{left:657.573333pt;}
.x28{left:658.533333pt;}
.x3{left:704.053322pt;}
}




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