
    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_490a41e44d04f9456522c311.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.961914;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_7934fac732fe8e0bacff6adb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_b0f954845e7ece0d553350ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_ae2b56277e333d4cebf19c0e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892578;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_895a4bd8893d61ee340bbd4d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.720703;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_4c8457fdc691a957dbad5ae1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115234;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_eb92bfd3ad32ec8f579bf4f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104492;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_f2574f33d8cedfd9f536bf4c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107422;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;}
.lsf{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.341400px;}
.ls1d{letter-spacing:-0.305400px;}
.ls22{letter-spacing:-0.259800px;}
.lse{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.189600px;}
.ls7{letter-spacing:-0.181200px;}
.ls10{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.018720px;}
.ls6{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.018720px;}
.ls2{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.208200px;}
.ls1{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.262200px;}
.ls3{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.305280px;}
.ls1e{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.414600px;}
.ls19{letter-spacing:0.530400px;}
.ls21{letter-spacing:0.612000px;}
.ls20{letter-spacing:0.613440px;}
.ls5{letter-spacing:0.666720px;}
.ls17{letter-spacing:0.702000px;}
.ls14{letter-spacing:1.421280px;}
.lsd{letter-spacing:2.304000px;}
.lsc{letter-spacing:6.624000px;}
.ls11{letter-spacing:77.706720px;}
.ls4{letter-spacing:847.542720px;}
.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;}
}
.ws8{word-spacing:-95.760000px;}
.ws1e{word-spacing:-34.899840px;}
.ws13{word-spacing:-27.323280px;}
.ws15{word-spacing:-27.151680px;}
.ws2{word-spacing:-27.000000px;}
.ws19{word-spacing:-26.829480px;}
.ws14{word-spacing:-26.640000px;}
.ws10{word-spacing:-26.621280px;}
.ws18{word-spacing:-26.602560px;}
.ws12{word-spacing:-26.431680px;}
.ws11{word-spacing:-26.279880px;}
.ws9{word-spacing:-20.304000px;}
.wse{word-spacing:-20.232000px;}
.wsd{word-spacing:-20.160000px;}
.wsb{word-spacing:-20.016000px;}
.wsc{word-spacing:-19.872000px;}
.wsa{word-spacing:-19.800000px;}
.ws4{word-spacing:-19.584000px;}
.ws17{word-spacing:-18.829320px;}
.ws1b{word-spacing:-18.720120px;}
.ws1c{word-spacing:-18.676920px;}
.ws1d{word-spacing:-18.414720px;}
.ws16{word-spacing:-18.305520px;}
.ws1a{word-spacing:-18.109320px;}
.ws1f{word-spacing:-17.225280px;}
.ws5{word-spacing:-16.613280px;}
.wsf{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.506480px;}
.ws3{word-spacing:-15.012000px;}
.ws0{word-spacing:-13.410720px;}
.ws1{word-spacing:-13.229520px;}
.ws7{word-spacing:0.000000px;}
._f{margin-left:-4.104000px;}
._6{margin-left:-2.305440px;}
._0{margin-left:-1.061280px;}
._3{width:1.013040px;}
._9{width:2.960880px;}
._a{width:4.104000px;}
._b{width:5.587680px;}
._1{width:6.946560px;}
._2{width:8.200800px;}
._7{width:9.801360px;}
._8{width:11.610000px;}
._10{width:13.284960px;}
._13{width:15.239040px;}
._1f{width:16.387920px;}
._18{width:17.472000px;}
._17{width:18.936000px;}
._1e{width:21.749520px;}
._4{width:23.203440px;}
._5{width:24.795360px;}
._30{width:25.935840px;}
._e{width:26.976000px;}
._19{width:28.386960px;}
._1b{width:30.361680px;}
._1a{width:31.464000px;}
._1d{width:32.616000px;}
._1c{width:33.624000px;}
._16{width:34.632000px;}
._20{width:36.576000px;}
._21{width:37.596000px;}
._25{width:38.862960px;}
._24{width:40.176000px;}
._d{width:42.420000px;}
._c{width:43.632000px;}
._12{width:45.425280px;}
._11{width:46.872000px;}
._29{width:48.883680px;}
._28{width:51.513120px;}
._23{width:53.367840px;}
._22{width:54.936000px;}
._15{width:59.688000px;}
._14{width:60.696000px;}
._26{width:62.867520px;}
._27{width:63.943200px;}
._2d{width:67.740240px;}
._37{width:68.963040px;}
._36{width:70.397280px;}
._2f{width:77.628240px;}
._2c{width:79.839360px;}
._31{width:82.648080px;}
._3a{width:110.018160px;}
._3b{width:111.178560px;}
._3c{width:135.954000px;}
._2e{width:138.702960px;}
._32{width:165.834000px;}
._33{width:166.912560px;}
._3f{width:188.722080px;}
._40{width:190.306080px;}
._3d{width:239.876640px;}
._2b{width:268.444800px;}
._2a{width:289.238400px;}
._34{width:296.880480px;}
._39{width:396.627120px;}
._41{width:500.310240px;}
._3e{width:840.494640px;}
._35{width:845.741280px;}
._38{width:1331.782560px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs6{font-size:5.760000px;}
.fs9{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yec{bottom:3.240000px;}
.yd3{bottom:6.330000px;}
.yc9{bottom:12.240000px;}
.yd5{bottom:14.970000px;}
.yeb{bottom:20.520000px;}
.yd2{bottom:23.610000px;}
.yc8{bottom:29.520000px;}
.ycd{bottom:32.070000px;}
.yea{bottom:37.800000px;}
.yd1{bottom:40.710000px;}
.ycc{bottom:49.350000px;}
.ye9{bottom:55.080000px;}
.yd0{bottom:57.990000px;}
.y9{bottom:58.896000px;}
.ycb{bottom:66.630000px;}
.ye8{bottom:72.360000px;}
.ycf{bottom:75.270000px;}
.yd4{bottom:83.910000px;}
.ye7{bottom:89.460000px;}
.yce{bottom:92.550000px;}
.ye6{bottom:106.740000px;}
.ye5{bottom:124.020000px;}
.y31{bottom:130.716000px;}
.y74{bottom:132.516000px;}
.yae{bottom:140.076000px;}
.ye4{bottom:141.345000px;}
.yed{bottom:146.556000px;}
.y30{bottom:147.996000px;}
.y94{bottom:155.370000px;}
.y12e{bottom:156.090000px;}
.ye3{bottom:158.625000px;}
.y10c{bottom:158.970000px;}
.yad{bottom:160.770000px;}
.y54{bottom:163.830000px;}
.yd6{bottom:164.190000px;}
.y2f{bottom:165.090000px;}
.y2e{bottom:169.590000px;}
.y73{bottom:171.210000px;}
.y12d{bottom:173.370000px;}
.ye2{bottom:175.905000px;}
.y93{bottom:176.070000px;}
.yac{bottom:181.470000px;}
.yc3{bottom:181.830000px;}
.y2d{bottom:182.730000px;}
.y53{bottom:184.530000px;}
.ye1{bottom:193.005000px;}
.y92{bottom:196.770000px;}
.y10b{bottom:198.750000px;}
.yc2{bottom:202.530000px;}
.y52{bottom:205.230000px;}
.y12c{bottom:208.470000px;}
.y72{bottom:209.910000px;}
.ye0{bottom:210.285000px;}
.yab{bottom:220.170000px;}
.y10a{bottom:220.710000px;}
.yc1{bottom:223.230000px;}
.y12b{bottom:225.750000px;}
.y51{bottom:225.930000px;}
.ydf{bottom:227.565000px;}
.y71{bottom:230.610000px;}
.y91{bottom:235.470000px;}
.yaa{bottom:240.870000px;}
.yc0{bottom:243.930000px;}
.yde{bottom:244.845000px;}
.y50{bottom:246.630000px;}
.y90{bottom:256.170000px;}
.y12a{bottom:261.030000px;}
.ya9{bottom:261.570000px;}
.ydd{bottom:262.125000px;}
.y109{bottom:263.370000px;}
.ybf{bottom:264.630000px;}
.y4f{bottom:267.330000px;}
.y70{bottom:269.310000px;}
.y8f{bottom:276.870000px;}
.y129{bottom:278.310000px;}
.ydc{bottom:279.225000px;}
.ya8{bottom:282.270000px;}
.ybe{bottom:285.330000px;}
.y6f{bottom:290.010000px;}
.y2c{bottom:291.090000px;}
.y128{bottom:295.635000px;}
.ydb{bottom:296.505000px;}
.y8e{bottom:297.615000px;}
.y4e{bottom:306.075000px;}
.y108{bottom:310.215000px;}
.y2b{bottom:311.475000px;}
.yda{bottom:313.785000px;}
.y8d{bottom:318.315000px;}
.ya7{bottom:321.015000px;}
.y4d{bottom:326.775000px;}
.y6e{bottom:328.755000px;}
.y2a{bottom:330.735000px;}
.y127{bottom:330.915000px;}
.yd9{bottom:331.065000px;}
.y8c{bottom:339.015000px;}
.ya6{bottom:341.715000px;}
.y4c{bottom:347.475000px;}
.y126{bottom:348.195000px;}
.yd8{bottom:348.345000px;}
.y6d{bottom:349.455000px;}
.y29{bottom:351.435000px;}
.y107{bottom:353.055000px;}
.ya5{bottom:362.415000px;}
.y125{bottom:365.295000px;}
.yd7{bottom:365.625000px;}
.ybd{bottom:368.175000px;}
.y28{bottom:372.135000px;}
.y8b{bottom:377.715000px;}
.y4b{bottom:386.175000px;}
.y6c{bottom:388.155000px;}
.y27{bottom:391.935000px;}
.y106{bottom:397.335000px;}
.y8a{bottom:398.415000px;}
.y124{bottom:400.575000px;}
.ya4{bottom:401.115000px;}
.y4a{bottom:406.875000px;}
.y26{bottom:407.415000px;}
.ybc{bottom:408.135000px;}
.y123{bottom:417.855000px;}
.y105{bottom:418.035000px;}
.y89{bottom:419.115000px;}
.ya3{bottom:421.815000px;}
.y25{bottom:423.075000px;}
.y6b{bottom:426.855000px;}
.y49{bottom:427.575000px;}
.y122{bottom:435.135000px;}
.y24{bottom:438.555000px;}
.y104{bottom:438.735000px;}
.y88{bottom:439.815000px;}
.y6a{bottom:447.555000px;}
.y48{bottom:448.275000px;}
.ybb{bottom:452.415000px;}
.y23{bottom:454.035000px;}
.y103{bottom:459.435000px;}
.y87{bottom:460.515000px;}
.y69{bottom:468.255000px;}
.y47{bottom:468.975000px;}
.y22{bottom:469.515000px;}
.yba{bottom:473.115000px;}
.y102{bottom:480.135000px;}
.y86{bottom:481.215000px;}
.y21{bottom:485.175000px;}
.y121{bottom:487.515000px;}
.y68{bottom:488.955000px;}
.y46{bottom:489.675000px;}
.yb9{bottom:493.815000px;}
.y145{bottom:497.955000px;}
.y20{bottom:500.655000px;}
.y101{bottom:500.835000px;}
.y85{bottom:501.915000px;}
.y120{bottom:504.795000px;}
.y67{bottom:509.655000px;}
.yb8{bottom:514.515000px;}
.y1f{bottom:516.135000px;}
.ya2{bottom:519.915000px;}
.y100{bottom:521.535000px;}
.y11f{bottom:522.075000px;}
.y84{bottom:522.615000px;}
.y45{bottom:528.375000px;}
.y66{bottom:530.355000px;}
.y1e{bottom:531.615000px;}
.y144{bottom:533.235000px;}
.ya1{bottom:540.615000px;}
.y83{bottom:543.315000px;}
.yca{bottom:544.575000px;}
.y1d{bottom:547.275000px;}
.y44{bottom:549.075000px;}
.yb7{bottom:553.245000px;}
.y11e{bottom:557.385000px;}
.yff{bottom:560.085000px;}
.ya0{bottom:561.345000px;}
.y1c{bottom:562.785000px;}
.y143{bottom:568.365000px;}
.y65{bottom:569.085000px;}
.y43{bottom:569.805000px;}
.yb6{bottom:573.945000px;}
.y11d{bottom:574.665000px;}
.y1b{bottom:578.265000px;}
.yfe{bottom:580.785000px;}
.y82{bottom:582.045000px;}
.y142{bottom:585.645000px;}
.y64{bottom:589.785000px;}
.y42{bottom:590.505000px;}
.y11c{bottom:591.945000px;}
.y1a{bottom:593.745000px;}
.yb5{bottom:594.645000px;}
.y9f{bottom:600.045000px;}
.yfd{bottom:601.485000px;}
.y81{bottom:602.745000px;}
.y141{bottom:602.925000px;}
.y11b{bottom:609.045000px;}
.y19{bottom:609.405000px;}
.y63{bottom:610.485000px;}
.y41{bottom:611.205000px;}
.yb4{bottom:615.345000px;}
.y140{bottom:620.205000px;}
.y9e{bottom:620.745000px;}
.yfc{bottom:622.185000px;}
.y80{bottom:623.445000px;}
.y18{bottom:624.885000px;}
.y62{bottom:631.185000px;}
.y40{bottom:631.905000px;}
.yb3{bottom:636.045000px;}
.y13f{bottom:637.485000px;}
.y17{bottom:640.365000px;}
.y9d{bottom:641.445000px;}
.yfb{bottom:642.885000px;}
.y7f{bottom:644.145000px;}
.y11a{bottom:644.325000px;}
.y3f{bottom:652.605000px;}
.yc7{bottom:654.945000px;}
.y16{bottom:655.845000px;}
.yb2{bottom:656.745000px;}
.y119{bottom:661.605000px;}
.yfa{bottom:663.585000px;}
.y7e{bottom:664.845000px;}
.y61{bottom:670.605000px;}
.y15{bottom:671.505000px;}
.y13e{bottom:672.765000px;}
.yb1{bottom:677.445000px;}
.y118{bottom:678.885000px;}
.y9c{bottom:680.145000px;}
.yf9{bottom:684.285000px;}
.y14{bottom:687.885000px;}
.y13d{bottom:690.045000px;}
.y3e{bottom:691.305000px;}
.y117{bottom:696.165000px;}
.yb0{bottom:698.145000px;}
.y9b{bottom:700.845000px;}
.y7d{bottom:703.545000px;}
.yf8{bottom:704.985000px;}
.y13c{bottom:707.145000px;}
.y13{bottom:708.585000px;}
.y3d{bottom:712.005000px;}
.y60{bottom:713.265000px;}
.y116{bottom:713.445000px;}
.yaf{bottom:718.845000px;}
.y9a{bottom:721.545000px;}
.y7c{bottom:724.245000px;}
.y13b{bottom:724.425000px;}
.yf7{bottom:725.685000px;}
.y12{bottom:729.285000px;}
.y3c{bottom:732.705000px;}
.y13a{bottom:741.705000px;}
.y7b{bottom:744.945000px;}
.y115{bottom:748.545000px;}
.y11{bottom:749.985000px;}
.y3b{bottom:753.405000px;}
.y5f{bottom:757.545000px;}
.y139{bottom:758.985000px;}
.y99{bottom:760.245000px;}
.y7a{bottom:765.645000px;}
.yf6{bottom:765.825000px;}
.y10{bottom:770.685000px;}
.yc6{bottom:771.405000px;}
.y3a{bottom:774.105000px;}
.y5e{bottom:778.245000px;}
.y98{bottom:780.945000px;}
.y114{bottom:783.105000px;}
.y79{bottom:786.345000px;}
.yc5{bottom:792.105000px;}
.y138{bottom:794.265000px;}
.y5d{bottom:798.945000px;}
.y78{bottom:807.045000px;}
.yf5{bottom:810.150000px;}
.yf{bottom:810.690000px;}
.y137{bottom:811.590000px;}
.y39{bottom:812.850000px;}
.y113{bottom:818.430000px;}
.y5c{bottom:819.690000px;}
.y136{bottom:828.690000px;}
.yf4{bottom:830.850000px;}
.y38{bottom:833.550000px;}
.yc4{bottom:834.810000px;}
.y112{bottom:835.710000px;}
.ye{bottom:838.230000px;}
.y5b{bottom:840.390000px;}
.y77{bottom:845.790000px;}
.y135{bottom:845.970000px;}
.yf3{bottom:851.550000px;}
.y111{bottom:852.990000px;}
.y37{bottom:854.250000px;}
.y97{bottom:861.090000px;}
.yd{bottom:865.950000px;}
.y110{bottom:870.090000px;}
.yf2{bottom:872.250000px;}
.y36{bottom:874.950000px;}
.y5a{bottom:879.090000px;}
.y134{bottom:881.250000px;}
.y96{bottom:881.790000px;}
.y76{bottom:884.490000px;}
.yf1{bottom:892.950000px;}
.y35{bottom:895.650000px;}
.y133{bottom:898.530000px;}
.y59{bottom:899.790000px;}
.y95{bottom:902.490000px;}
.y10f{bottom:905.370000px;}
.yc{bottom:912.210000px;}
.yf0{bottom:913.650000px;}
.y132{bottom:915.810000px;}
.y34{bottom:916.350000px;}
.y58{bottom:920.490000px;}
.y10e{bottom:922.650000px;}
.y75{bottom:923.190000px;}
.yef{bottom:934.350000px;}
.y33{bottom:937.050000px;}
.y10d{bottom:939.930000px;}
.y57{bottom:941.190000px;}
.yb{bottom:943.170000px;}
.y131{bottom:950.910000px;}
.yee{bottom:955.050000px;}
.y56{bottom:961.890000px;}
.y130{bottom:968.190000px;}
.ya{bottom:974.310000px;}
.y32{bottom:977.010000px;}
.y55{bottom:982.590000px;}
.y12f{bottom:985.470000px;}
.y8{bottom:1020.030000px;}
.y7{bottom:1033.890000px;}
.y6{bottom:1047.570000px;}
.y5{bottom:1061.430000px;}
.y4{bottom:1075.320000px;}
.y3{bottom:1089.000000px;}
.y2{bottom:1102.860000px;}
.y1{bottom:1117.980000px;}
.ha{height:5.166563px;}
.he{height:34.874297px;}
.h3{height:43.269961px;}
.h2{height:43.646836px;}
.hc{height:48.436523px;}
.hb{height:48.858398px;}
.h11{height:52.560000px;}
.hf{height:53.603086px;}
.h12{height:54.069961px;}
.h1{height:54.105469px;}
.h4{height:59.415469px;}
.hd{height:59.932969px;}
.h9{height:64.582031px;}
.h8{height:65.144531px;}
.h6{height:74.408203px;}
.h5{height:74.988281px;}
.h10{height:76.219102px;}
.h7{height:86.642227px;}
.h13{height:109.656000px;}
.h14{height:379.470000px;}
.h0{height:1188.000000px;}
.w4{width:202.350000px;}
.w5{width:222.915000px;}
.w3{width:233.670000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:8.100000px;}
.x16{left:11.340000px;}
.x1b{left:12.420000px;}
.x1c{left:13.680000px;}
.x13{left:19.440000px;}
.x18{left:23.394000px;}
.x1a{left:24.840000px;}
.x17{left:28.800000px;}
.x14{left:31.140000px;}
.x10{left:37.254000px;}
.x11{left:40.494000px;}
.x19{left:68.754000px;}
.x1{left:127.655986px;}
.xf{left:129.636000px;}
.x3{left:133.415986px;}
.x4{left:154.109986px;}
.xe{left:170.129986px;}
.x7{left:181.649986px;}
.x6{left:225.029986px;}
.x9{left:268.994986px;}
.x8{left:304.274986px;}
.xd{left:343.694986px;}
.x12{left:363.315000px;}
.xa{left:395.714986px;}
.x5{left:412.454986px;}
.x2{left:428.294986px;}
.xc{left:435.524986px;}
.xb{left:521.744973px;}
.x15{left:565.665000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.303467pt;}
.ls1d{letter-spacing:-0.271467pt;}
.ls22{letter-spacing:-0.230933pt;}
.lse{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.168533pt;}
.ls7{letter-spacing:-0.161067pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.016640pt;}
.ls6{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.016640pt;}
.ls2{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.185067pt;}
.ls1{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.233067pt;}
.ls3{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.271360pt;}
.ls1e{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.368533pt;}
.ls19{letter-spacing:0.471467pt;}
.ls21{letter-spacing:0.544000pt;}
.ls20{letter-spacing:0.545280pt;}
.ls5{letter-spacing:0.592640pt;}
.ls17{letter-spacing:0.624000pt;}
.ls14{letter-spacing:1.263360pt;}
.lsd{letter-spacing:2.048000pt;}
.lsc{letter-spacing:5.888000pt;}
.ls11{letter-spacing:69.072640pt;}
.ls4{letter-spacing:753.371307pt;}
.ws8{word-spacing:-85.120000pt;}
.ws1e{word-spacing:-31.022080pt;}
.ws13{word-spacing:-24.287360pt;}
.ws15{word-spacing:-24.134827pt;}
.ws2{word-spacing:-24.000000pt;}
.ws19{word-spacing:-23.848427pt;}
.ws14{word-spacing:-23.680000pt;}
.ws10{word-spacing:-23.663360pt;}
.ws18{word-spacing:-23.646720pt;}
.ws12{word-spacing:-23.494827pt;}
.ws11{word-spacing:-23.359893pt;}
.ws9{word-spacing:-18.048000pt;}
.wse{word-spacing:-17.984000pt;}
.wsd{word-spacing:-17.920000pt;}
.wsb{word-spacing:-17.792000pt;}
.wsc{word-spacing:-17.664000pt;}
.wsa{word-spacing:-17.600000pt;}
.ws4{word-spacing:-17.408000pt;}
.ws17{word-spacing:-16.737173pt;}
.ws1b{word-spacing:-16.640107pt;}
.ws1c{word-spacing:-16.601707pt;}
.ws1d{word-spacing:-16.368640pt;}
.ws16{word-spacing:-16.271573pt;}
.ws1a{word-spacing:-16.097173pt;}
.ws1f{word-spacing:-15.311360pt;}
.ws5{word-spacing:-14.767360pt;}
.wsf{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.672427pt;}
.ws3{word-spacing:-13.344000pt;}
.ws0{word-spacing:-11.920640pt;}
.ws1{word-spacing:-11.759573pt;}
.ws7{word-spacing:0.000000pt;}
._f{margin-left:-3.648000pt;}
._6{margin-left:-2.049280pt;}
._0{margin-left:-0.943360pt;}
._3{width:0.900480pt;}
._9{width:2.631893pt;}
._a{width:3.648000pt;}
._b{width:4.966827pt;}
._1{width:6.174720pt;}
._2{width:7.289600pt;}
._7{width:8.712320pt;}
._8{width:10.320000pt;}
._10{width:11.808853pt;}
._13{width:13.545813pt;}
._1f{width:14.567040pt;}
._18{width:15.530667pt;}
._17{width:16.832000pt;}
._1e{width:19.332907pt;}
._4{width:20.625280pt;}
._5{width:22.040320pt;}
._30{width:23.054080pt;}
._e{width:23.978667pt;}
._19{width:25.232853pt;}
._1b{width:26.988160pt;}
._1a{width:27.968000pt;}
._1d{width:28.992000pt;}
._1c{width:29.888000pt;}
._16{width:30.784000pt;}
._20{width:32.512000pt;}
._21{width:33.418667pt;}
._25{width:34.544853pt;}
._24{width:35.712000pt;}
._d{width:37.706667pt;}
._c{width:38.784000pt;}
._12{width:40.378027pt;}
._11{width:41.664000pt;}
._29{width:43.452160pt;}
._28{width:45.789440pt;}
._23{width:47.438080pt;}
._22{width:48.832000pt;}
._15{width:53.056000pt;}
._14{width:53.952000pt;}
._26{width:55.882240pt;}
._27{width:56.838400pt;}
._2d{width:60.213547pt;}
._37{width:61.300480pt;}
._36{width:62.575360pt;}
._2f{width:69.002880pt;}
._2c{width:70.968320pt;}
._31{width:73.464960pt;}
._3a{width:97.793920pt;}
._3b{width:98.825387pt;}
._3c{width:120.848000pt;}
._2e{width:123.291520pt;}
._32{width:147.408000pt;}
._33{width:148.366720pt;}
._3f{width:167.752960pt;}
._40{width:169.160960pt;}
._3d{width:213.223680pt;}
._2b{width:238.617600pt;}
._2a{width:257.100800pt;}
._34{width:263.893760pt;}
._39{width:352.557440pt;}
._41{width:444.720213pt;}
._3e{width:747.106347pt;}
._35{width:751.770027pt;}
._38{width:1183.806720pt;}
.fs6{font-size:5.120000pt;}
.fs9{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:2.880000pt;}
.yd3{bottom:5.626667pt;}
.yc9{bottom:10.880000pt;}
.yd5{bottom:13.306667pt;}
.yeb{bottom:18.240000pt;}
.yd2{bottom:20.986667pt;}
.yc8{bottom:26.240000pt;}
.ycd{bottom:28.506667pt;}
.yea{bottom:33.600000pt;}
.yd1{bottom:36.186667pt;}
.ycc{bottom:43.866667pt;}
.ye9{bottom:48.960000pt;}
.yd0{bottom:51.546667pt;}
.y9{bottom:52.352000pt;}
.ycb{bottom:59.226667pt;}
.ye8{bottom:64.320000pt;}
.ycf{bottom:66.906667pt;}
.yd4{bottom:74.586667pt;}
.ye7{bottom:79.520000pt;}
.yce{bottom:82.266667pt;}
.ye6{bottom:94.880000pt;}
.ye5{bottom:110.240000pt;}
.y31{bottom:116.192000pt;}
.y74{bottom:117.792000pt;}
.yae{bottom:124.512000pt;}
.ye4{bottom:125.640000pt;}
.yed{bottom:130.272000pt;}
.y30{bottom:131.552000pt;}
.y94{bottom:138.106667pt;}
.y12e{bottom:138.746667pt;}
.ye3{bottom:141.000000pt;}
.y10c{bottom:141.306667pt;}
.yad{bottom:142.906667pt;}
.y54{bottom:145.626667pt;}
.yd6{bottom:145.946667pt;}
.y2f{bottom:146.746667pt;}
.y2e{bottom:150.746667pt;}
.y73{bottom:152.186667pt;}
.y12d{bottom:154.106667pt;}
.ye2{bottom:156.360000pt;}
.y93{bottom:156.506667pt;}
.yac{bottom:161.306667pt;}
.yc3{bottom:161.626667pt;}
.y2d{bottom:162.426667pt;}
.y53{bottom:164.026667pt;}
.ye1{bottom:171.560000pt;}
.y92{bottom:174.906667pt;}
.y10b{bottom:176.666667pt;}
.yc2{bottom:180.026667pt;}
.y52{bottom:182.426667pt;}
.y12c{bottom:185.306667pt;}
.y72{bottom:186.586667pt;}
.ye0{bottom:186.920000pt;}
.yab{bottom:195.706667pt;}
.y10a{bottom:196.186667pt;}
.yc1{bottom:198.426667pt;}
.y12b{bottom:200.666667pt;}
.y51{bottom:200.826667pt;}
.ydf{bottom:202.280000pt;}
.y71{bottom:204.986667pt;}
.y91{bottom:209.306667pt;}
.yaa{bottom:214.106667pt;}
.yc0{bottom:216.826667pt;}
.yde{bottom:217.640000pt;}
.y50{bottom:219.226667pt;}
.y90{bottom:227.706667pt;}
.y12a{bottom:232.026667pt;}
.ya9{bottom:232.506667pt;}
.ydd{bottom:233.000000pt;}
.y109{bottom:234.106667pt;}
.ybf{bottom:235.226667pt;}
.y4f{bottom:237.626667pt;}
.y70{bottom:239.386667pt;}
.y8f{bottom:246.106667pt;}
.y129{bottom:247.386667pt;}
.ydc{bottom:248.200000pt;}
.ya8{bottom:250.906667pt;}
.ybe{bottom:253.626667pt;}
.y6f{bottom:257.786667pt;}
.y2c{bottom:258.746667pt;}
.y128{bottom:262.786667pt;}
.ydb{bottom:263.560000pt;}
.y8e{bottom:264.546667pt;}
.y4e{bottom:272.066667pt;}
.y108{bottom:275.746667pt;}
.y2b{bottom:276.866667pt;}
.yda{bottom:278.920000pt;}
.y8d{bottom:282.946667pt;}
.ya7{bottom:285.346667pt;}
.y4d{bottom:290.466667pt;}
.y6e{bottom:292.226667pt;}
.y2a{bottom:293.986667pt;}
.y127{bottom:294.146667pt;}
.yd9{bottom:294.280000pt;}
.y8c{bottom:301.346667pt;}
.ya6{bottom:303.746667pt;}
.y4c{bottom:308.866667pt;}
.y126{bottom:309.506667pt;}
.yd8{bottom:309.640000pt;}
.y6d{bottom:310.626667pt;}
.y29{bottom:312.386667pt;}
.y107{bottom:313.826667pt;}
.ya5{bottom:322.146667pt;}
.y125{bottom:324.706667pt;}
.yd7{bottom:325.000000pt;}
.ybd{bottom:327.266667pt;}
.y28{bottom:330.786667pt;}
.y8b{bottom:335.746667pt;}
.y4b{bottom:343.266667pt;}
.y6c{bottom:345.026667pt;}
.y27{bottom:348.386667pt;}
.y106{bottom:353.186667pt;}
.y8a{bottom:354.146667pt;}
.y124{bottom:356.066667pt;}
.ya4{bottom:356.546667pt;}
.y4a{bottom:361.666667pt;}
.y26{bottom:362.146667pt;}
.ybc{bottom:362.786667pt;}
.y123{bottom:371.426667pt;}
.y105{bottom:371.586667pt;}
.y89{bottom:372.546667pt;}
.ya3{bottom:374.946667pt;}
.y25{bottom:376.066667pt;}
.y6b{bottom:379.426667pt;}
.y49{bottom:380.066667pt;}
.y122{bottom:386.786667pt;}
.y24{bottom:389.826667pt;}
.y104{bottom:389.986667pt;}
.y88{bottom:390.946667pt;}
.y6a{bottom:397.826667pt;}
.y48{bottom:398.466667pt;}
.ybb{bottom:402.146667pt;}
.y23{bottom:403.586667pt;}
.y103{bottom:408.386667pt;}
.y87{bottom:409.346667pt;}
.y69{bottom:416.226667pt;}
.y47{bottom:416.866667pt;}
.y22{bottom:417.346667pt;}
.yba{bottom:420.546667pt;}
.y102{bottom:426.786667pt;}
.y86{bottom:427.746667pt;}
.y21{bottom:431.266667pt;}
.y121{bottom:433.346667pt;}
.y68{bottom:434.626667pt;}
.y46{bottom:435.266667pt;}
.yb9{bottom:438.946667pt;}
.y145{bottom:442.626667pt;}
.y20{bottom:445.026667pt;}
.y101{bottom:445.186667pt;}
.y85{bottom:446.146667pt;}
.y120{bottom:448.706667pt;}
.y67{bottom:453.026667pt;}
.yb8{bottom:457.346667pt;}
.y1f{bottom:458.786667pt;}
.ya2{bottom:462.146667pt;}
.y100{bottom:463.586667pt;}
.y11f{bottom:464.066667pt;}
.y84{bottom:464.546667pt;}
.y45{bottom:469.666667pt;}
.y66{bottom:471.426667pt;}
.y1e{bottom:472.546667pt;}
.y144{bottom:473.986667pt;}
.ya1{bottom:480.546667pt;}
.y83{bottom:482.946667pt;}
.yca{bottom:484.066667pt;}
.y1d{bottom:486.466667pt;}
.y44{bottom:488.066667pt;}
.yb7{bottom:491.773333pt;}
.y11e{bottom:495.453333pt;}
.yff{bottom:497.853333pt;}
.ya0{bottom:498.973333pt;}
.y1c{bottom:500.253333pt;}
.y143{bottom:505.213333pt;}
.y65{bottom:505.853333pt;}
.y43{bottom:506.493333pt;}
.yb6{bottom:510.173333pt;}
.y11d{bottom:510.813333pt;}
.y1b{bottom:514.013333pt;}
.yfe{bottom:516.253333pt;}
.y82{bottom:517.373333pt;}
.y142{bottom:520.573333pt;}
.y64{bottom:524.253333pt;}
.y42{bottom:524.893333pt;}
.y11c{bottom:526.173333pt;}
.y1a{bottom:527.773333pt;}
.yb5{bottom:528.573333pt;}
.y9f{bottom:533.373333pt;}
.yfd{bottom:534.653333pt;}
.y81{bottom:535.773333pt;}
.y141{bottom:535.933333pt;}
.y11b{bottom:541.373333pt;}
.y19{bottom:541.693333pt;}
.y63{bottom:542.653333pt;}
.y41{bottom:543.293333pt;}
.yb4{bottom:546.973333pt;}
.y140{bottom:551.293333pt;}
.y9e{bottom:551.773333pt;}
.yfc{bottom:553.053333pt;}
.y80{bottom:554.173333pt;}
.y18{bottom:555.453333pt;}
.y62{bottom:561.053333pt;}
.y40{bottom:561.693333pt;}
.yb3{bottom:565.373333pt;}
.y13f{bottom:566.653333pt;}
.y17{bottom:569.213333pt;}
.y9d{bottom:570.173333pt;}
.yfb{bottom:571.453333pt;}
.y7f{bottom:572.573333pt;}
.y11a{bottom:572.733333pt;}
.y3f{bottom:580.093333pt;}
.yc7{bottom:582.173333pt;}
.y16{bottom:582.973333pt;}
.yb2{bottom:583.773333pt;}
.y119{bottom:588.093333pt;}
.yfa{bottom:589.853333pt;}
.y7e{bottom:590.973333pt;}
.y61{bottom:596.093333pt;}
.y15{bottom:596.893333pt;}
.y13e{bottom:598.013333pt;}
.yb1{bottom:602.173333pt;}
.y118{bottom:603.453333pt;}
.y9c{bottom:604.573333pt;}
.yf9{bottom:608.253333pt;}
.y14{bottom:611.453333pt;}
.y13d{bottom:613.373333pt;}
.y3e{bottom:614.493333pt;}
.y117{bottom:618.813333pt;}
.yb0{bottom:620.573333pt;}
.y9b{bottom:622.973333pt;}
.y7d{bottom:625.373333pt;}
.yf8{bottom:626.653333pt;}
.y13c{bottom:628.573333pt;}
.y13{bottom:629.853333pt;}
.y3d{bottom:632.893333pt;}
.y60{bottom:634.013333pt;}
.y116{bottom:634.173333pt;}
.yaf{bottom:638.973333pt;}
.y9a{bottom:641.373333pt;}
.y7c{bottom:643.773333pt;}
.y13b{bottom:643.933333pt;}
.yf7{bottom:645.053333pt;}
.y12{bottom:648.253333pt;}
.y3c{bottom:651.293333pt;}
.y13a{bottom:659.293333pt;}
.y7b{bottom:662.173333pt;}
.y115{bottom:665.373333pt;}
.y11{bottom:666.653333pt;}
.y3b{bottom:669.693333pt;}
.y5f{bottom:673.373333pt;}
.y139{bottom:674.653333pt;}
.y99{bottom:675.773333pt;}
.y7a{bottom:680.573333pt;}
.yf6{bottom:680.733333pt;}
.y10{bottom:685.053333pt;}
.yc6{bottom:685.693333pt;}
.y3a{bottom:688.093333pt;}
.y5e{bottom:691.773333pt;}
.y98{bottom:694.173333pt;}
.y114{bottom:696.093333pt;}
.y79{bottom:698.973333pt;}
.yc5{bottom:704.093333pt;}
.y138{bottom:706.013333pt;}
.y5d{bottom:710.173333pt;}
.y78{bottom:717.373333pt;}
.yf5{bottom:720.133333pt;}
.yf{bottom:720.613333pt;}
.y137{bottom:721.413333pt;}
.y39{bottom:722.533333pt;}
.y113{bottom:727.493333pt;}
.y5c{bottom:728.613333pt;}
.y136{bottom:736.613333pt;}
.yf4{bottom:738.533333pt;}
.y38{bottom:740.933333pt;}
.yc4{bottom:742.053333pt;}
.y112{bottom:742.853333pt;}
.ye{bottom:745.093333pt;}
.y5b{bottom:747.013333pt;}
.y77{bottom:751.813333pt;}
.y135{bottom:751.973333pt;}
.yf3{bottom:756.933333pt;}
.y111{bottom:758.213333pt;}
.y37{bottom:759.333333pt;}
.y97{bottom:765.413333pt;}
.yd{bottom:769.733333pt;}
.y110{bottom:773.413333pt;}
.yf2{bottom:775.333333pt;}
.y36{bottom:777.733333pt;}
.y5a{bottom:781.413333pt;}
.y134{bottom:783.333333pt;}
.y96{bottom:783.813333pt;}
.y76{bottom:786.213333pt;}
.yf1{bottom:793.733333pt;}
.y35{bottom:796.133333pt;}
.y133{bottom:798.693333pt;}
.y59{bottom:799.813333pt;}
.y95{bottom:802.213333pt;}
.y10f{bottom:804.773333pt;}
.yc{bottom:810.853333pt;}
.yf0{bottom:812.133333pt;}
.y132{bottom:814.053333pt;}
.y34{bottom:814.533333pt;}
.y58{bottom:818.213333pt;}
.y10e{bottom:820.133333pt;}
.y75{bottom:820.613333pt;}
.yef{bottom:830.533333pt;}
.y33{bottom:832.933333pt;}
.y10d{bottom:835.493333pt;}
.y57{bottom:836.613333pt;}
.yb{bottom:838.373333pt;}
.y131{bottom:845.253333pt;}
.yee{bottom:848.933333pt;}
.y56{bottom:855.013333pt;}
.y130{bottom:860.613333pt;}
.ya{bottom:866.053333pt;}
.y32{bottom:868.453333pt;}
.y55{bottom:873.413333pt;}
.y12f{bottom:875.973333pt;}
.y8{bottom:906.693333pt;}
.y7{bottom:919.013333pt;}
.y6{bottom:931.173333pt;}
.y5{bottom:943.493333pt;}
.y4{bottom:955.840000pt;}
.y3{bottom:968.000000pt;}
.y2{bottom:980.320000pt;}
.y1{bottom:993.760000pt;}
.ha{height:4.592500pt;}
.he{height:30.999375pt;}
.h3{height:38.462187pt;}
.h2{height:38.797187pt;}
.hc{height:43.054688pt;}
.hb{height:43.429688pt;}
.h11{height:46.720000pt;}
.hf{height:47.647188pt;}
.h12{height:48.062188pt;}
.h1{height:48.093750pt;}
.h4{height:52.813750pt;}
.hd{height:53.273750pt;}
.h9{height:57.406250pt;}
.h8{height:57.906250pt;}
.h6{height:66.140625pt;}
.h5{height:66.656250pt;}
.h10{height:67.750312pt;}
.h7{height:77.015312pt;}
.h13{height:97.472000pt;}
.h14{height:337.306667pt;}
.h0{height:1056.000000pt;}
.w4{width:179.866667pt;}
.w5{width:198.146667pt;}
.w3{width:207.706667pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:7.200000pt;}
.x16{left:10.080000pt;}
.x1b{left:11.040000pt;}
.x1c{left:12.160000pt;}
.x13{left:17.280000pt;}
.x18{left:20.794667pt;}
.x1a{left:22.080000pt;}
.x17{left:25.600000pt;}
.x14{left:27.680000pt;}
.x10{left:33.114667pt;}
.x11{left:35.994667pt;}
.x19{left:61.114667pt;}
.x1{left:113.471988pt;}
.xf{left:115.232000pt;}
.x3{left:118.591988pt;}
.x4{left:136.986655pt;}
.xe{left:151.226655pt;}
.x7{left:161.466655pt;}
.x6{left:200.026655pt;}
.x9{left:239.106655pt;}
.x8{left:270.466655pt;}
.xd{left:305.506655pt;}
.x12{left:322.946667pt;}
.xa{left:351.746655pt;}
.x5{left:366.626655pt;}
.x2{left:380.706655pt;}
.xc{left:387.133321pt;}
.xb{left:463.773309pt;}
.x15{left:502.813333pt;}
}




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