
    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_1797ecb9312076657949dfab.woff')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_8f19402de617173b695af255.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_c9e03c9039c8df7d3813dd9d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a4388c8b860daac796ae3b42.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_64e07167fa44258b951c865b.woff')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_defca4745d71b77212ec84c0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d41fd01c28a72290be710b56.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_859c72d942ed727e728fa5e8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cc55028b55815587aae80cc8.woff')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.774000px;}
.ls1f{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.457800px;}
.ls1b{letter-spacing:-0.413400px;}
.ls1c{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.208200px;}
.ls8{letter-spacing:-0.206400px;}
.ls1e{letter-spacing:-0.106800px;}
.ls16{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.037440px;}
.ls15{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.480000px;}
.ls1a{letter-spacing:0.540000px;}
.ls21{letter-spacing:0.666000px;}
.lsd{letter-spacing:0.720000px;}
.ls12{letter-spacing:4.500000px;}
.ls9{letter-spacing:7.866720px;}
.ls13{letter-spacing:11.466720px;}
.lsa{letter-spacing:15.066720px;}
.ls0{letter-spacing:31.626720px;}
.ls1d{letter-spacing:41.706720px;}
.ls17{letter-spacing:46.002720px;}
.lse{letter-spacing:46.026720px;}
.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.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.ws4{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199920px;}
.wsa{word-spacing:-15.093600px;}
.wsf{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.ws5{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.680200px;}
.wsd{word-spacing:-14.580000px;}
.wsb{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1445.990040px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-579.228480px;}
._1a{margin-left:-15.173280px;}
._22{margin-left:-11.546640px;}
._7{margin-left:-9.325680px;}
._8{margin-left:-5.501280px;}
._9{margin-left:-3.908160px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._c{width:2.265840px;}
._e{width:3.978720px;}
._f{width:4.987440px;}
._13{width:6.342000px;}
._12{width:7.764720px;}
._10{width:9.129600px;}
._d{width:10.886400px;}
._15{width:12.141360px;}
._11{width:13.206960px;}
._14{width:16.812720px;}
._16{width:17.969280px;}
._19{width:19.058160px;}
._1d{width:20.139120px;}
._17{width:21.822480px;}
._18{width:23.186880px;}
._1f{width:24.460560px;}
._20{width:25.568640px;}
._1b{width:26.694000px;}
._1c{width:27.757440px;}
._b{width:37.804560px;}
._a{width:39.067680px;}
._25{width:41.662800px;}
._26{width:42.837840px;}
._1e{width:49.481280px;}
._23{width:62.817840px;}
._24{width:64.432560px;}
._21{width:134.997840px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(46,46,46);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y91{bottom:5.760000px;}
.yae{bottom:5.940000px;}
.y12c{bottom:9.900000px;}
.y14d{bottom:10.800000px;}
.y8f{bottom:15.660000px;}
.y90{bottom:25.560000px;}
.ya7{bottom:25.605000px;}
.y9d{bottom:25.740000px;}
.y14c{bottom:30.600000px;}
.y149{bottom:34.770000px;}
.y9f{bottom:45.360000px;}
.y97{bottom:45.540000px;}
.ya6{bottom:45.585000px;}
.y14b{bottom:50.430000px;}
.y9b{bottom:55.440000px;}
.yb3{bottom:55.470000px;}
.yaa{bottom:55.485000px;}
.y96{bottom:65.340000px;}
.yb2{bottom:65.370000px;}
.ya5{bottom:65.385000px;}
.y6{bottom:66.240000px;}
.y14a{bottom:70.230000px;}
.y9a{bottom:75.240000px;}
.ya9{bottom:75.285000px;}
.y95{bottom:85.140000px;}
.yb1{bottom:85.170000px;}
.ya4{bottom:85.185000px;}
.y6d{bottom:94.140000px;}
.y99{bottom:95.040000px;}
.ya8{bottom:95.085000px;}
.yea{bottom:101.340000px;}
.y116{bottom:103.320000px;}
.y69{bottom:104.940000px;}
.yb0{bottom:104.970000px;}
.ya3{bottom:104.985000px;}
.yad{bottom:105.120000px;}
.y9c{bottom:105.840000px;}
.y147{bottom:106.740000px;}
.y32{bottom:106.920000px;}
.yc5{bottom:111.240000px;}
.y6c{bottom:113.940000px;}
.y98{bottom:114.840000px;}
.y8d{bottom:115.740000px;}
.y148{bottom:120.060000px;}
.ye9{bottom:121.140000px;}
.y115{bottom:123.120000px;}
.y68{bottom:124.740000px;}
.ya2{bottom:124.785000px;}
.yac{bottom:124.920000px;}
.y146{bottom:126.540000px;}
.y31{bottom:126.720000px;}
.yc4{bottom:131.040000px;}
.y6b{bottom:133.740000px;}
.ye8{bottom:140.940000px;}
.y114{bottom:142.920000px;}
.y67{bottom:144.540000px;}
.y94{bottom:144.720000px;}
.ya1{bottom:144.765000px;}
.y128{bottom:146.340000px;}
.y30{bottom:146.520000px;}
.yc3{bottom:150.840000px;}
.y6a{bottom:153.570000px;}
.ye7{bottom:160.950000px;}
.y113{bottom:162.750000px;}
.y93{bottom:164.520000px;}
.ybe{bottom:164.565000px;}
.y92{bottom:166.170000px;}
.y2f{bottom:166.350000px;}
.yc2{bottom:170.850000px;}
.y66{bottom:173.370000px;}
.ybf{bottom:174.465000px;}
.ye6{bottom:180.750000px;}
.y112{bottom:182.550000px;}
.ybd{bottom:184.365000px;}
.y2e{bottom:186.150000px;}
.yc1{bottom:190.650000px;}
.y65{bottom:193.350000px;}
.ye5{bottom:200.550000px;}
.y111{bottom:202.530000px;}
.ybc{bottom:204.165000px;}
.y127{bottom:205.950000px;}
.y2d{bottom:206.130000px;}
.yc0{bottom:210.450000px;}
.y64{bottom:213.150000px;}
.ye4{bottom:220.350000px;}
.ybb{bottom:224.145000px;}
.y126{bottom:225.750000px;}
.y2c{bottom:225.930000px;}
.y110{bottom:231.330000px;}
.y63{bottom:232.950000px;}
.ye3{bottom:240.150000px;}
.yb4{bottom:243.210000px;}
.yba{bottom:243.945000px;}
.y125{bottom:245.550000px;}
.y2b{bottom:245.730000px;}
.y10f{bottom:251.130000px;}
.y62{bottom:252.750000px;}
.ye2{bottom:260.130000px;}
.yb9{bottom:263.745000px;}
.y2a{bottom:265.530000px;}
.y10e{bottom:270.930000px;}
.y61{bottom:272.550000px;}
.ye1{bottom:280.470000px;}
.yb8{bottom:283.545000px;}
.y29{bottom:285.330000px;}
.y10d{bottom:290.730000px;}
.y60{bottom:292.530000px;}
.yb7{bottom:303.345000px;}
.ye0{bottom:304.770000px;}
.y124{bottom:305.130000px;}
.y28{bottom:305.310000px;}
.y10c{bottom:310.710000px;}
.y5f{bottom:312.330000px;}
.yb6{bottom:323.325000px;}
.y123{bottom:324.930000px;}
.y27{bottom:325.110000px;}
.ydf{bottom:329.070000px;}
.y10b{bottom:330.510000px;}
.y5e{bottom:332.130000px;}
.yb5{bottom:343.125000px;}
.y122{bottom:344.730000px;}
.y26{bottom:344.910000px;}
.y8e{bottom:345.450000px;}
.y10a{bottom:350.310000px;}
.y5d{bottom:351.930000px;}
.yde{bottom:353.550000px;}
.y25{bottom:364.710000px;}
.y109{bottom:370.110000px;}
.y5c{bottom:371.730000px;}
.ydd{bottom:377.850000px;}
.y24{bottom:384.510000px;}
.y108{bottom:389.910000px;}
.y5b{bottom:391.710000px;}
.y121{bottom:404.355000px;}
.y23{bottom:404.535000px;}
.ydc{bottom:405.615000px;}
.y107{bottom:409.935000px;}
.y5a{bottom:411.555000px;}
.y8c{bottom:413.355000px;}
.y120{bottom:424.155000px;}
.y22{bottom:424.335000px;}
.y106{bottom:429.735000px;}
.y59{bottom:431.355000px;}
.y8b{bottom:433.155000px;}
.ydb{bottom:438.735000px;}
.y11f{bottom:443.955000px;}
.y21{bottom:444.135000px;}
.y105{bottom:449.535000px;}
.y58{bottom:451.155000px;}
.y8a{bottom:452.955000px;}
.yda{bottom:458.535000px;}
.y20{bottom:463.935000px;}
.y104{bottom:469.155000px;}
.y57{bottom:470.955000px;}
.y89{bottom:472.935000px;}
.y1f{bottom:483.735000px;}
.yd9{bottom:487.335000px;}
.y56{bottom:490.935000px;}
.y88{bottom:492.735000px;}
.y103{bottom:493.455000px;}
.y145{bottom:503.535000px;}
.y1e{bottom:503.715000px;}
.yd8{bottom:507.135000px;}
.y55{bottom:510.735000px;}
.y87{bottom:512.535000px;}
.y102{bottom:517.935000px;}
.y144{bottom:523.335000px;}
.y1d{bottom:523.515000px;}
.yd7{bottom:527.115000px;}
.y54{bottom:530.535000px;}
.y86{bottom:532.335000px;}
.y101{bottom:542.235000px;}
.y143{bottom:543.135000px;}
.y1c{bottom:543.315000px;}
.yd6{bottom:546.915000px;}
.y53{bottom:550.335000px;}
.y85{bottom:552.135000px;}
.y142{bottom:563.115000px;}
.y100{bottom:566.535000px;}
.yd5{bottom:566.715000px;}
.y52{bottom:570.135000px;}
.y84{bottom:572.115000px;}
.y141{bottom:582.915000px;}
.y1b{bottom:585.255000px;}
.yd4{bottom:586.515000px;}
.y51{bottom:590.115000px;}
.yff{bottom:590.835000px;}
.y11e{bottom:591.915000px;}
.y83{bottom:600.915000px;}
.yaf{bottom:601.095000px;}
.y140{bottom:602.715000px;}
.yd3{bottom:606.315000px;}
.y50{bottom:609.915000px;}
.y11d{bottom:611.715000px;}
.y1a{bottom:614.055000px;}
.yfe{bottom:617.475000px;}
.y82{bottom:620.715000px;}
.y13f{bottom:622.515000px;}
.yd2{bottom:626.115000px;}
.y4f{bottom:629.715000px;}
.y11c{bottom:631.515000px;}
.y19{bottom:633.855000px;}
.y81{bottom:640.515000px;}
.y13e{bottom:642.315000px;}
.yfd{bottom:648.795000px;}
.y4e{bottom:649.545000px;}
.yd1{bottom:650.445000px;}
.y11b{bottom:651.345000px;}
.y18{bottom:653.685000px;}
.y80{bottom:660.345000px;}
.y13d{bottom:662.325000px;}
.yfc{bottom:668.625000px;}
.y4d{bottom:669.345000px;}
.y11a{bottom:671.325000px;}
.y17{bottom:673.665000px;}
.yd0{bottom:677.085000px;}
.y7f{bottom:680.325000px;}
.y13c{bottom:682.125000px;}
.yfb{bottom:688.425000px;}
.y4c{bottom:689.325000px;}
.y119{bottom:691.125000px;}
.y16{bottom:693.465000px;}
.y7e{bottom:700.125000px;}
.y13b{bottom:701.925000px;}
.ycf{bottom:708.225000px;}
.y4b{bottom:709.125000px;}
.y118{bottom:710.925000px;}
.y15{bottom:713.265000px;}
.y7d{bottom:719.925000px;}
.yab{bottom:720.825000px;}
.y13a{bottom:721.725000px;}
.yce{bottom:728.025000px;}
.y4a{bottom:728.925000px;}
.y117{bottom:730.725000px;}
.y14{bottom:733.065000px;}
.y7c{bottom:739.725000px;}
.y139{bottom:741.525000px;}
.ycd{bottom:748.005000px;}
.y49{bottom:748.725000px;}
.y13{bottom:752.865000px;}
.y7b{bottom:759.525000px;}
.y138{bottom:761.505000px;}
.ycc{bottom:767.625000px;}
.yfa{bottom:767.805000px;}
.y48{bottom:768.525000px;}
.y12{bottom:772.845000px;}
.y7a{bottom:779.505000px;}
.y137{bottom:781.305000px;}
.yf9{bottom:787.605000px;}
.y47{bottom:788.505000px;}
.ycb{bottom:791.925000px;}
.y11{bottom:792.645000px;}
.y79{bottom:799.305000px;}
.y136{bottom:801.105000px;}
.yf8{bottom:807.405000px;}
.y46{bottom:808.305000px;}
.y10{bottom:812.445000px;}
.yca{bottom:816.225000px;}
.y78{bottom:819.105000px;}
.y135{bottom:820.905000px;}
.yf7{bottom:827.205000px;}
.y45{bottom:828.105000px;}
.yf{bottom:832.245000px;}
.y77{bottom:838.905000px;}
.yc9{bottom:840.525000px;}
.y134{bottom:840.705000px;}
.yf6{bottom:847.185000px;}
.y44{bottom:847.905000px;}
.ye{bottom:852.045000px;}
.y76{bottom:858.705000px;}
.y133{bottom:860.685000px;}
.yc8{bottom:865.005000px;}
.yf5{bottom:866.985000px;}
.y43{bottom:867.705000px;}
.yd{bottom:871.845000px;}
.y75{bottom:878.685000px;}
.ya0{bottom:880.305000px;}
.y132{bottom:880.485000px;}
.yf4{bottom:886.785000px;}
.y42{bottom:887.685000px;}
.yc7{bottom:889.305000px;}
.yc{bottom:893.985000px;}
.y74{bottom:898.530000px;}
.y131{bottom:900.330000px;}
.yf3{bottom:906.630000px;}
.y41{bottom:907.530000px;}
.yb{bottom:914.010000px;}
.yc6{bottom:915.990000px;}
.y73{bottom:918.330000px;}
.y130{bottom:920.130000px;}
.yf2{bottom:926.430000px;}
.y40{bottom:927.330000px;}
.ya{bottom:934.350000px;}
.y72{bottom:938.130000px;}
.y12f{bottom:939.930000px;}
.yf1{bottom:946.230000px;}
.y3f{bottom:947.130000px;}
.y9{bottom:956.130000px;}
.y71{bottom:957.930000px;}
.y12e{bottom:959.910000px;}
.y3e{bottom:966.930000px;}
.yf0{bottom:970.530000px;}
.y70{bottom:977.910000px;}
.y12d{bottom:979.530000px;}
.y8{bottom:980.970000px;}
.y3d{bottom:986.910000px;}
.yef{bottom:994.830000px;}
.y6f{bottom:997.710000px;}
.y12b{bottom:1003.830000px;}
.y3c{bottom:1006.710000px;}
.y7{bottom:1012.830000px;}
.y6e{bottom:1017.510000px;}
.yee{bottom:1019.130000px;}
.y3b{bottom:1026.510000px;}
.y12a{bottom:1028.130000px;}
.y9e{bottom:1039.830000px;}
.yed{bottom:1043.430000px;}
.y3a{bottom:1046.310000px;}
.y5{bottom:1051.170000px;}
.y129{bottom:1054.770000px;}
.y39{bottom:1066.110000px;}
.yec{bottom:1067.910000px;}
.y4{bottom:1081.950000px;}
.y38{bottom:1086.090000px;}
.yeb{bottom:1094.370000px;}
.y37{bottom:1105.890000px;}
.y3{bottom:1112.730000px;}
.y36{bottom:1125.690000px;}
.y2{bottom:1143.690000px;}
.y35{bottom:1145.490000px;}
.y34{bottom:1173.060000px;}
.y1{bottom:1177.560000px;}
.y33{bottom:1193.220000px;}
.h17{height:2.082656px;}
.h13{height:19.800000px;}
.h14{height:19.836000px;}
.h15{height:19.980000px;}
.hc{height:39.600000px;}
.hb{height:42.164648px;}
.h5{height:43.215117px;}
.h7{height:43.506914px;}
.h3{height:46.736719px;}
.h4{height:47.901094px;}
.ha{height:48.496641px;}
.h6{height:49.255313px;}
.he{height:59.616000px;}
.h2{height:67.565039px;}
.h8{height:67.824844px;}
.h9{height:71.613281px;}
.h16{height:84.276000px;}
.hf{height:119.016000px;}
.h11{height:158.760000px;}
.h10{height:158.790000px;}
.hd{height:178.560000px;}
.h12{height:357.150000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:24.660000px;}
.w20{width:36.000000px;}
.w1a{width:43.020000px;}
.w1f{width:43.596000px;}
.w21{width:60.840000px;}
.w19{width:61.380000px;}
.w18{width:61.596000px;}
.wb{width:62.280000px;}
.w1b{width:68.940000px;}
.wc{width:74.880000px;}
.w1e{width:88.380000px;}
.w11{width:92.340000px;}
.w16{width:94.716000px;}
.w22{width:99.576000px;}
.w1c{width:103.176000px;}
.w17{width:104.040000px;}
.we{width:111.816000px;}
.w12{width:114.696000px;}
.w4{width:116.316000px;}
.w13{width:118.980000px;}
.w8{width:121.140000px;}
.w5{width:123.120000px;}
.w9{width:123.336000px;}
.w23{width:124.740000px;}
.wa{width:125.316000px;}
.wd{width:160.050000px;}
.w10{width:206.850000px;}
.wf{width:207.930000px;}
.w24{width:210.810000px;}
.w6{width:229.350000px;}
.w7{width:300.315000px;}
.w15{width:313.950000px;}
.w14{width:380.775000px;}
.w3{width:433.335000px;}
.w25{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.080000px;}
.x9{left:7.740000px;}
.xe{left:23.940000px;}
.xc{left:42.114000px;}
.x2e{left:45.900000px;}
.x1{left:54.179987px;}
.xf{left:56.334000px;}
.x6{left:59.399987px;}
.xd{left:61.734000px;}
.x2c{left:70.199987px;}
.x2{left:75.599987px;}
.x2d{left:80.999987px;}
.x18{left:86.435987px;}
.x1b{left:89.856000px;}
.x1f{left:101.376000px;}
.x3{left:102.635987px;}
.x5{left:108.035987px;}
.x8{left:109.476000px;}
.x24{left:112.536000px;}
.x4{left:129.635987px;}
.x10{left:180.750000px;}
.x1c{left:184.530000px;}
.x2f{left:190.290000px;}
.x13{left:230.790000px;}
.x30{left:256.710000px;}
.x25{left:289.155000px;}
.x19{left:295.095000px;}
.x1d{left:301.395000px;}
.x26{left:316.155000px;}
.x14{left:356.475000px;}
.x27{left:406.875000px;}
.x12{left:412.275000px;}
.x20{left:417.675000px;}
.x1e{left:422.535000px;}
.x28{left:452.625000px;}
.x15{left:483.945000px;}
.x29{left:490.965000px;}
.x1a{left:505.365000px;}
.x21{left:514.725000px;}
.xa{left:543.525000px;}
.x16{left:548.565000px;}
.x2a{left:553.965000px;}
.x22{left:620.925000px;}
.x17{left:625.605000px;}
.x2b{left:655.890000px;}
.xb{left:660.570000px;}
.x7{left:684.149987px;}
.x23{left:748.590000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.688000pt;}
.ls1f{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.406933pt;}
.ls1b{letter-spacing:-0.367467pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.185067pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls1e{letter-spacing:-0.094933pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.033280pt;}
.ls15{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.426667pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls21{letter-spacing:0.592000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls12{letter-spacing:4.000000pt;}
.ls9{letter-spacing:6.992640pt;}
.ls13{letter-spacing:10.192640pt;}
.lsa{letter-spacing:13.392640pt;}
.ls0{letter-spacing:28.112640pt;}
.ls1d{letter-spacing:37.072640pt;}
.ls17{letter-spacing:40.891307pt;}
.lse{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.ws4{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.511040pt;}
.wsa{word-spacing:-13.416533pt;}
.wsf{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.ws5{word-spacing:-13.096533pt;}
.ws7{word-spacing:-13.049067pt;}
.wsd{word-spacing:-12.960000pt;}
.wsb{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1285.324480pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-514.869760pt;}
._1a{margin-left:-13.487360pt;}
._22{margin-left:-10.263680pt;}
._7{margin-left:-8.289493pt;}
._8{margin-left:-4.890027pt;}
._9{margin-left:-3.473920pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._c{width:2.014080pt;}
._e{width:3.536640pt;}
._f{width:4.433280pt;}
._13{width:5.637333pt;}
._12{width:6.901973pt;}
._10{width:8.115200pt;}
._d{width:9.676800pt;}
._15{width:10.792320pt;}
._11{width:11.739520pt;}
._14{width:14.944640pt;}
._16{width:15.972693pt;}
._19{width:16.940587pt;}
._1d{width:17.901440pt;}
._17{width:19.397760pt;}
._18{width:20.610560pt;}
._1f{width:21.742720pt;}
._20{width:22.727680pt;}
._1b{width:23.728000pt;}
._1c{width:24.673280pt;}
._b{width:33.604053pt;}
._a{width:34.726827pt;}
._25{width:37.033600pt;}
._26{width:38.078080pt;}
._1e{width:43.983360pt;}
._23{width:55.838080pt;}
._24{width:57.273387pt;}
._21{width:119.998080pt;}
.fs5{font-size:2.560000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:5.120000pt;}
.yae{bottom:5.280000pt;}
.y12c{bottom:8.800000pt;}
.y14d{bottom:9.600000pt;}
.y8f{bottom:13.920000pt;}
.y90{bottom:22.720000pt;}
.ya7{bottom:22.760000pt;}
.y9d{bottom:22.880000pt;}
.y14c{bottom:27.200000pt;}
.y149{bottom:30.906667pt;}
.y9f{bottom:40.320000pt;}
.y97{bottom:40.480000pt;}
.ya6{bottom:40.520000pt;}
.y14b{bottom:44.826667pt;}
.y9b{bottom:49.280000pt;}
.yb3{bottom:49.306667pt;}
.yaa{bottom:49.320000pt;}
.y96{bottom:58.080000pt;}
.yb2{bottom:58.106667pt;}
.ya5{bottom:58.120000pt;}
.y6{bottom:58.880000pt;}
.y14a{bottom:62.426667pt;}
.y9a{bottom:66.880000pt;}
.ya9{bottom:66.920000pt;}
.y95{bottom:75.680000pt;}
.yb1{bottom:75.706667pt;}
.ya4{bottom:75.720000pt;}
.y6d{bottom:83.680000pt;}
.y99{bottom:84.480000pt;}
.ya8{bottom:84.520000pt;}
.yea{bottom:90.080000pt;}
.y116{bottom:91.840000pt;}
.y69{bottom:93.280000pt;}
.yb0{bottom:93.306667pt;}
.ya3{bottom:93.320000pt;}
.yad{bottom:93.440000pt;}
.y9c{bottom:94.080000pt;}
.y147{bottom:94.880000pt;}
.y32{bottom:95.040000pt;}
.yc5{bottom:98.880000pt;}
.y6c{bottom:101.280000pt;}
.y98{bottom:102.080000pt;}
.y8d{bottom:102.880000pt;}
.y148{bottom:106.720000pt;}
.ye9{bottom:107.680000pt;}
.y115{bottom:109.440000pt;}
.y68{bottom:110.880000pt;}
.ya2{bottom:110.920000pt;}
.yac{bottom:111.040000pt;}
.y146{bottom:112.480000pt;}
.y31{bottom:112.640000pt;}
.yc4{bottom:116.480000pt;}
.y6b{bottom:118.880000pt;}
.ye8{bottom:125.280000pt;}
.y114{bottom:127.040000pt;}
.y67{bottom:128.480000pt;}
.y94{bottom:128.640000pt;}
.ya1{bottom:128.680000pt;}
.y128{bottom:130.080000pt;}
.y30{bottom:130.240000pt;}
.yc3{bottom:134.080000pt;}
.y6a{bottom:136.506667pt;}
.ye7{bottom:143.066667pt;}
.y113{bottom:144.666667pt;}
.y93{bottom:146.240000pt;}
.ybe{bottom:146.280000pt;}
.y92{bottom:147.706667pt;}
.y2f{bottom:147.866667pt;}
.yc2{bottom:151.866667pt;}
.y66{bottom:154.106667pt;}
.ybf{bottom:155.080000pt;}
.ye6{bottom:160.666667pt;}
.y112{bottom:162.266667pt;}
.ybd{bottom:163.880000pt;}
.y2e{bottom:165.466667pt;}
.yc1{bottom:169.466667pt;}
.y65{bottom:171.866667pt;}
.ye5{bottom:178.266667pt;}
.y111{bottom:180.026667pt;}
.ybc{bottom:181.480000pt;}
.y127{bottom:183.066667pt;}
.y2d{bottom:183.226667pt;}
.yc0{bottom:187.066667pt;}
.y64{bottom:189.466667pt;}
.ye4{bottom:195.866667pt;}
.ybb{bottom:199.240000pt;}
.y126{bottom:200.666667pt;}
.y2c{bottom:200.826667pt;}
.y110{bottom:205.626667pt;}
.y63{bottom:207.066667pt;}
.ye3{bottom:213.466667pt;}
.yb4{bottom:216.186667pt;}
.yba{bottom:216.840000pt;}
.y125{bottom:218.266667pt;}
.y2b{bottom:218.426667pt;}
.y10f{bottom:223.226667pt;}
.y62{bottom:224.666667pt;}
.ye2{bottom:231.226667pt;}
.yb9{bottom:234.440000pt;}
.y2a{bottom:236.026667pt;}
.y10e{bottom:240.826667pt;}
.y61{bottom:242.266667pt;}
.ye1{bottom:249.306667pt;}
.yb8{bottom:252.040000pt;}
.y29{bottom:253.626667pt;}
.y10d{bottom:258.426667pt;}
.y60{bottom:260.026667pt;}
.yb7{bottom:269.640000pt;}
.ye0{bottom:270.906667pt;}
.y124{bottom:271.226667pt;}
.y28{bottom:271.386667pt;}
.y10c{bottom:276.186667pt;}
.y5f{bottom:277.626667pt;}
.yb6{bottom:287.400000pt;}
.y123{bottom:288.826667pt;}
.y27{bottom:288.986667pt;}
.ydf{bottom:292.506667pt;}
.y10b{bottom:293.786667pt;}
.y5e{bottom:295.226667pt;}
.yb5{bottom:305.000000pt;}
.y122{bottom:306.426667pt;}
.y26{bottom:306.586667pt;}
.y8e{bottom:307.066667pt;}
.y10a{bottom:311.386667pt;}
.y5d{bottom:312.826667pt;}
.yde{bottom:314.266667pt;}
.y25{bottom:324.186667pt;}
.y109{bottom:328.986667pt;}
.y5c{bottom:330.426667pt;}
.ydd{bottom:335.866667pt;}
.y24{bottom:341.786667pt;}
.y108{bottom:346.586667pt;}
.y5b{bottom:348.186667pt;}
.y121{bottom:359.426667pt;}
.y23{bottom:359.586667pt;}
.ydc{bottom:360.546667pt;}
.y107{bottom:364.386667pt;}
.y5a{bottom:365.826667pt;}
.y8c{bottom:367.426667pt;}
.y120{bottom:377.026667pt;}
.y22{bottom:377.186667pt;}
.y106{bottom:381.986667pt;}
.y59{bottom:383.426667pt;}
.y8b{bottom:385.026667pt;}
.ydb{bottom:389.986667pt;}
.y11f{bottom:394.626667pt;}
.y21{bottom:394.786667pt;}
.y105{bottom:399.586667pt;}
.y58{bottom:401.026667pt;}
.y8a{bottom:402.626667pt;}
.yda{bottom:407.586667pt;}
.y20{bottom:412.386667pt;}
.y104{bottom:417.026667pt;}
.y57{bottom:418.626667pt;}
.y89{bottom:420.386667pt;}
.y1f{bottom:429.986667pt;}
.yd9{bottom:433.186667pt;}
.y56{bottom:436.386667pt;}
.y88{bottom:437.986667pt;}
.y103{bottom:438.626667pt;}
.y145{bottom:447.586667pt;}
.y1e{bottom:447.746667pt;}
.yd8{bottom:450.786667pt;}
.y55{bottom:453.986667pt;}
.y87{bottom:455.586667pt;}
.y102{bottom:460.386667pt;}
.y144{bottom:465.186667pt;}
.y1d{bottom:465.346667pt;}
.yd7{bottom:468.546667pt;}
.y54{bottom:471.586667pt;}
.y86{bottom:473.186667pt;}
.y101{bottom:481.986667pt;}
.y143{bottom:482.786667pt;}
.y1c{bottom:482.946667pt;}
.yd6{bottom:486.146667pt;}
.y53{bottom:489.186667pt;}
.y85{bottom:490.786667pt;}
.y142{bottom:500.546667pt;}
.y100{bottom:503.586667pt;}
.yd5{bottom:503.746667pt;}
.y52{bottom:506.786667pt;}
.y84{bottom:508.546667pt;}
.y141{bottom:518.146667pt;}
.y1b{bottom:520.226667pt;}
.yd4{bottom:521.346667pt;}
.y51{bottom:524.546667pt;}
.yff{bottom:525.186667pt;}
.y11e{bottom:526.146667pt;}
.y83{bottom:534.146667pt;}
.yaf{bottom:534.306667pt;}
.y140{bottom:535.746667pt;}
.yd3{bottom:538.946667pt;}
.y50{bottom:542.146667pt;}
.y11d{bottom:543.746667pt;}
.y1a{bottom:545.826667pt;}
.yfe{bottom:548.866667pt;}
.y82{bottom:551.746667pt;}
.y13f{bottom:553.346667pt;}
.yd2{bottom:556.546667pt;}
.y4f{bottom:559.746667pt;}
.y11c{bottom:561.346667pt;}
.y19{bottom:563.426667pt;}
.y81{bottom:569.346667pt;}
.y13e{bottom:570.946667pt;}
.yfd{bottom:576.706667pt;}
.y4e{bottom:577.373333pt;}
.yd1{bottom:578.173333pt;}
.y11b{bottom:578.973333pt;}
.y18{bottom:581.053333pt;}
.y80{bottom:586.973333pt;}
.y13d{bottom:588.733333pt;}
.yfc{bottom:594.333333pt;}
.y4d{bottom:594.973333pt;}
.y11a{bottom:596.733333pt;}
.y17{bottom:598.813333pt;}
.yd0{bottom:601.853333pt;}
.y7f{bottom:604.733333pt;}
.y13c{bottom:606.333333pt;}
.yfb{bottom:611.933333pt;}
.y4c{bottom:612.733333pt;}
.y119{bottom:614.333333pt;}
.y16{bottom:616.413333pt;}
.y7e{bottom:622.333333pt;}
.y13b{bottom:623.933333pt;}
.ycf{bottom:629.533333pt;}
.y4b{bottom:630.333333pt;}
.y118{bottom:631.933333pt;}
.y15{bottom:634.013333pt;}
.y7d{bottom:639.933333pt;}
.yab{bottom:640.733333pt;}
.y13a{bottom:641.533333pt;}
.yce{bottom:647.133333pt;}
.y4a{bottom:647.933333pt;}
.y117{bottom:649.533333pt;}
.y14{bottom:651.613333pt;}
.y7c{bottom:657.533333pt;}
.y139{bottom:659.133333pt;}
.ycd{bottom:664.893333pt;}
.y49{bottom:665.533333pt;}
.y13{bottom:669.213333pt;}
.y7b{bottom:675.133333pt;}
.y138{bottom:676.893333pt;}
.ycc{bottom:682.333333pt;}
.yfa{bottom:682.493333pt;}
.y48{bottom:683.133333pt;}
.y12{bottom:686.973333pt;}
.y7a{bottom:692.893333pt;}
.y137{bottom:694.493333pt;}
.yf9{bottom:700.093333pt;}
.y47{bottom:700.893333pt;}
.ycb{bottom:703.933333pt;}
.y11{bottom:704.573333pt;}
.y79{bottom:710.493333pt;}
.y136{bottom:712.093333pt;}
.yf8{bottom:717.693333pt;}
.y46{bottom:718.493333pt;}
.y10{bottom:722.173333pt;}
.yca{bottom:725.533333pt;}
.y78{bottom:728.093333pt;}
.y135{bottom:729.693333pt;}
.yf7{bottom:735.293333pt;}
.y45{bottom:736.093333pt;}
.yf{bottom:739.773333pt;}
.y77{bottom:745.693333pt;}
.yc9{bottom:747.133333pt;}
.y134{bottom:747.293333pt;}
.yf6{bottom:753.053333pt;}
.y44{bottom:753.693333pt;}
.ye{bottom:757.373333pt;}
.y76{bottom:763.293333pt;}
.y133{bottom:765.053333pt;}
.yc8{bottom:768.893333pt;}
.yf5{bottom:770.653333pt;}
.y43{bottom:771.293333pt;}
.yd{bottom:774.973333pt;}
.y75{bottom:781.053333pt;}
.ya0{bottom:782.493333pt;}
.y132{bottom:782.653333pt;}
.yf4{bottom:788.253333pt;}
.y42{bottom:789.053333pt;}
.yc7{bottom:790.493333pt;}
.yc{bottom:794.653333pt;}
.y74{bottom:798.693333pt;}
.y131{bottom:800.293333pt;}
.yf3{bottom:805.893333pt;}
.y41{bottom:806.693333pt;}
.yb{bottom:812.453333pt;}
.yc6{bottom:814.213333pt;}
.y73{bottom:816.293333pt;}
.y130{bottom:817.893333pt;}
.yf2{bottom:823.493333pt;}
.y40{bottom:824.293333pt;}
.ya{bottom:830.533333pt;}
.y72{bottom:833.893333pt;}
.y12f{bottom:835.493333pt;}
.yf1{bottom:841.093333pt;}
.y3f{bottom:841.893333pt;}
.y9{bottom:849.893333pt;}
.y71{bottom:851.493333pt;}
.y12e{bottom:853.253333pt;}
.y3e{bottom:859.493333pt;}
.yf0{bottom:862.693333pt;}
.y70{bottom:869.253333pt;}
.y12d{bottom:870.693333pt;}
.y8{bottom:871.973333pt;}
.y3d{bottom:877.253333pt;}
.yef{bottom:884.293333pt;}
.y6f{bottom:886.853333pt;}
.y12b{bottom:892.293333pt;}
.y3c{bottom:894.853333pt;}
.y7{bottom:900.293333pt;}
.y6e{bottom:904.453333pt;}
.yee{bottom:905.893333pt;}
.y3b{bottom:912.453333pt;}
.y12a{bottom:913.893333pt;}
.y9e{bottom:924.293333pt;}
.yed{bottom:927.493333pt;}
.y3a{bottom:930.053333pt;}
.y5{bottom:934.373333pt;}
.y129{bottom:937.573333pt;}
.y39{bottom:947.653333pt;}
.yec{bottom:949.253333pt;}
.y4{bottom:961.733333pt;}
.y38{bottom:965.413333pt;}
.yeb{bottom:972.773333pt;}
.y37{bottom:983.013333pt;}
.y3{bottom:989.093333pt;}
.y36{bottom:1000.613333pt;}
.y2{bottom:1016.613333pt;}
.y35{bottom:1018.213333pt;}
.y34{bottom:1042.720000pt;}
.y1{bottom:1046.720000pt;}
.y33{bottom:1060.640000pt;}
.h17{height:1.851250pt;}
.h13{height:17.600000pt;}
.h14{height:17.632000pt;}
.h15{height:17.760000pt;}
.hc{height:35.200000pt;}
.hb{height:37.479688pt;}
.h5{height:38.413438pt;}
.h7{height:38.672812pt;}
.h3{height:41.543750pt;}
.h4{height:42.578750pt;}
.ha{height:43.108125pt;}
.h6{height:43.782500pt;}
.he{height:52.992000pt;}
.h2{height:60.057813pt;}
.h8{height:60.288750pt;}
.h9{height:63.656250pt;}
.h16{height:74.912000pt;}
.hf{height:105.792000pt;}
.h11{height:141.120000pt;}
.h10{height:141.146667pt;}
.hd{height:158.720000pt;}
.h12{height:317.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:21.920000pt;}
.w20{width:32.000000pt;}
.w1a{width:38.240000pt;}
.w1f{width:38.752000pt;}
.w21{width:54.080000pt;}
.w19{width:54.560000pt;}
.w18{width:54.752000pt;}
.wb{width:55.360000pt;}
.w1b{width:61.280000pt;}
.wc{width:66.560000pt;}
.w1e{width:78.560000pt;}
.w11{width:82.080000pt;}
.w16{width:84.192000pt;}
.w22{width:88.512000pt;}
.w1c{width:91.712000pt;}
.w17{width:92.480000pt;}
.we{width:99.392000pt;}
.w12{width:101.952000pt;}
.w4{width:103.392000pt;}
.w13{width:105.760000pt;}
.w8{width:107.680000pt;}
.w5{width:109.440000pt;}
.w9{width:109.632000pt;}
.w23{width:110.880000pt;}
.wa{width:111.392000pt;}
.wd{width:142.266667pt;}
.w10{width:183.866667pt;}
.wf{width:184.826667pt;}
.w24{width:187.386667pt;}
.w6{width:203.866667pt;}
.w7{width:266.946667pt;}
.w15{width:279.066667pt;}
.w14{width:338.466667pt;}
.w3{width:385.186667pt;}
.w25{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:0.960000pt;}
.x9{left:6.880000pt;}
.xe{left:21.280000pt;}
.xc{left:37.434667pt;}
.x2e{left:40.800000pt;}
.x1{left:48.159988pt;}
.xf{left:50.074667pt;}
.x6{left:52.799988pt;}
.xd{left:54.874667pt;}
.x2c{left:62.399988pt;}
.x2{left:67.199988pt;}
.x2d{left:71.999988pt;}
.x18{left:76.831988pt;}
.x1b{left:79.872000pt;}
.x1f{left:90.112000pt;}
.x3{left:91.231988pt;}
.x5{left:96.031988pt;}
.x8{left:97.312000pt;}
.x24{left:100.032000pt;}
.x4{left:115.231988pt;}
.x10{left:160.666667pt;}
.x1c{left:164.026667pt;}
.x2f{left:169.146667pt;}
.x13{left:205.146667pt;}
.x30{left:228.186667pt;}
.x25{left:257.026667pt;}
.x19{left:262.306667pt;}
.x1d{left:267.906667pt;}
.x26{left:281.026667pt;}
.x14{left:316.866667pt;}
.x27{left:361.666667pt;}
.x12{left:366.466667pt;}
.x20{left:371.266667pt;}
.x1e{left:375.586667pt;}
.x28{left:402.333333pt;}
.x15{left:430.173333pt;}
.x29{left:436.413333pt;}
.x1a{left:449.213333pt;}
.x21{left:457.533333pt;}
.xa{left:483.133333pt;}
.x16{left:487.613333pt;}
.x2a{left:492.413333pt;}
.x22{left:551.933333pt;}
.x17{left:556.093333pt;}
.x2b{left:583.013333pt;}
.xb{left:587.173333pt;}
.x7{left:608.133322pt;}
.x23{left:665.413333pt;}
}




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