
    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_36b4e75f6a32e8d565599886.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_1f09dc30cb6ce63fe790c7c4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_126bde2a0ef7ca11a665f3a4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_278174b8fa68f0d7742c81be.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_6c60ee8708324ed30f5c6997.woff')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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_32412816e8075a493ca18c3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.903809;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_d924c1d676463157335e26af.woff')format("woff");}.ff7{font-family:ff7;line-height:0.939941;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_a0c3d3760a59eed8d56cc639.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_46c9c6baf84c35bdb36028d3.woff')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-1.800000px;}
.lse{letter-spacing:-1.296000px;}
.lsf{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.152400px;}
.ls9{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.840000px;}
.lsd{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.900000px;}
.ls3{letter-spacing:33.276000px;}
.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:-22.320000px;}
.ws9{word-spacing:-18.648000px;}
.wsd{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.496000px;}
.wse{word-spacing:-17.064000px;}
.ws8{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.407600px;}
.wsa{word-spacing:-16.254600px;}
.ws1{word-spacing:-15.048000px;}
.ws0{word-spacing:-14.616000px;}
.ws3{word-spacing:-11.880000px;}
.ws5{word-spacing:0.000000px;}
._13{margin-left:-10.800000px;}
._12{margin-left:-8.640000px;}
._4{margin-left:-6.384000px;}
._5{margin-left:-4.248000px;}
._3{margin-left:-3.240000px;}
._1{margin-left:-1.368000px;}
._0{width:1.224000px;}
._2{width:2.400000px;}
._7{width:4.104000px;}
._6{width:5.256000px;}
._a{width:6.552000px;}
._e{width:7.560000px;}
._8{width:8.784000px;}
._9{width:10.080000px;}
._c{width:11.304000px;}
._b{width:12.600000px;}
._11{width:13.644000px;}
._f{width:14.844000px;}
._d{width:16.056000px;}
._10{width:19.596000px;}
._15{width:24.264000px;}
._14{width:25.344000px;}
.fc6{color:rgb(22,22,21);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(17,17,17);}
.fc3{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs2{font-size:47.520000px;}
.fs5{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:3.960000px;}
.ya8{bottom:4.320000px;}
.yd4{bottom:6.120000px;}
.yd1{bottom:6.480000px;}
.ye2{bottom:6.510000px;}
.ydc{bottom:6.525000px;}
.ycd{bottom:21.240000px;}
.ya3{bottom:24.885000px;}
.ya6{bottom:36.360000px;}
.yb2{bottom:36.390000px;}
.yf8{bottom:38.520000px;}
.ydf{bottom:39.960000px;}
.yd8{bottom:40.005000px;}
.ycf{bottom:40.350000px;}
.y103{bottom:48.960000px;}
.yfd{bottom:49.320000px;}
.y8{bottom:57.960000px;}
.y87{bottom:115.596000px;}
.ya1{bottom:117.396000px;}
.yca{bottom:121.356000px;}
.y153{bottom:121.716000px;}
.y117{bottom:128.196000px;}
.y45{bottom:135.396000px;}
.y66{bottom:136.116000px;}
.yf6{bottom:139.356000px;}
.y22{bottom:140.076000px;}
.y152{bottom:142.956000px;}
.yc9{bottom:145.476000px;}
.y86{bottom:149.436000px;}
.y135{bottom:151.590000px;}
.y116{bottom:152.310000px;}
.y44{bottom:156.270000px;}
.ya0{bottom:160.590000px;}
.y151{bottom:163.470000px;}
.yc8{bottom:169.230000px;}
.y65{bottom:172.110000px;}
.yf5{bottom:175.350000px;}
.y134{bottom:175.710000px;}
.y21{bottom:176.070000px;}
.y43{bottom:176.790000px;}
.y67{bottom:178.230000px;}
.y85{bottom:183.270000px;}
.y115{bottom:188.310000px;}
.y150{bottom:192.990000px;}
.yc7{bottom:193.350000px;}
.y42{bottom:197.670000px;}
.yf4{bottom:199.110000px;}
.y133{bottom:199.470000px;}
.y9f{bottom:203.790000px;}
.y84{bottom:205.275000px;}
.y64{bottom:208.155000px;}
.y20{bottom:212.115000px;}
.yc6{bottom:217.155000px;}
.y41{bottom:218.235000px;}
.y14f{bottom:222.555000px;}
.yf3{bottom:223.275000px;}
.y132{bottom:223.635000px;}
.y83{bottom:227.235000px;}
.y1f{bottom:235.875000px;}
.y114{bottom:236.235000px;}
.y68{bottom:238.035000px;}
.y40{bottom:239.115000px;}
.yc5{bottom:241.275000px;}
.y63{bottom:243.795000px;}
.y9e{bottom:246.675000px;}
.yf2{bottom:247.035000px;}
.y3f{bottom:259.635000px;}
.y1e{bottom:259.995000px;}
.y82{bottom:261.795000px;}
.yc4{bottom:265.395000px;}
.yf1{bottom:271.155000px;}
.y113{bottom:272.235000px;}
.y14e{bottom:272.955000px;}
.y62{bottom:279.795000px;}
.y131{bottom:283.395000px;}
.y81{bottom:285.915000px;}
.yc3{bottom:289.155000px;}
.y9d{bottom:289.875000px;}
.y3e{bottom:292.035000px;}
.y14d{bottom:294.195000px;}
.yf0{bottom:295.275000px;}
.y1d{bottom:295.995000px;}
.y130{bottom:307.515000px;}
.y3d{bottom:312.915000px;}
.yc2{bottom:313.275000px;}
.y14c{bottom:314.715000px;}
.y61{bottom:315.795000px;}
.yef{bottom:319.035000px;}
.y1c{bottom:320.145000px;}
.y80{bottom:321.945000px;}
.y12f{bottom:331.665000px;}
.y9c{bottom:332.745000px;}
.y3c{bottom:333.825000px;}
.y14b{bottom:335.625000px;}
.yc1{bottom:337.065000px;}
.yee{bottom:343.185000px;}
.y1b{bottom:343.905000px;}
.y112{bottom:344.265000px;}
.y60{bottom:351.825000px;}
.y3b{bottom:354.345000px;}
.y7f{bottom:357.945000px;}
.yc0{bottom:361.185000px;}
.y9b{bottom:363.705000px;}
.y14a{bottom:364.785000px;}
.yed{bottom:366.945000px;}
.y12e{bottom:367.305000px;}
.y1a{bottom:368.025000px;}
.y3a{bottom:375.225000px;}
.ybf{bottom:385.305000px;}
.y149{bottom:386.025000px;}
.y5f{bottom:387.825000px;}
.y12d{bottom:391.425000px;}
.y19{bottom:391.785000px;}
.y111{bottom:392.145000px;}
.y7e{bottom:393.945000px;}
.y9a{bottom:395.025000px;}
.y39{bottom:395.745000px;}
.yec{bottom:402.945000px;}
.ybe{bottom:409.065000px;}
.y110{bottom:413.025000px;}
.y148{bottom:415.185000px;}
.y12c{bottom:415.545000px;}
.y18{bottom:415.905000px;}
.y38{bottom:416.625000px;}
.y5e{bottom:423.825000px;}
.y99{bottom:425.985000px;}
.y7d{bottom:429.945000px;}
.y10f{bottom:433.905000px;}
.yeb{bottom:438.630000px;}
.ybd{bottom:445.110000px;}
.y12b{bottom:451.590000px;}
.y17{bottom:451.950000px;}
.y37{bottom:452.310000px;}
.y10e{bottom:454.470000px;}
.y98{bottom:456.990000px;}
.y5d{bottom:459.870000px;}
.yea{bottom:460.590000px;}
.y7c{bottom:465.990000px;}
.y10d{bottom:475.350000px;}
.y16{bottom:475.710000px;}
.ybc{bottom:480.390000px;}
.ye9{bottom:482.550000px;}
.y12a{bottom:487.230000px;}
.y147{bottom:495.510000px;}
.y5c{bottom:495.870000px;}
.y36{bottom:497.310000px;}
.y97{bottom:500.190000px;}
.y7b{bottom:501.990000px;}
.ybb{bottom:502.350000px;}
.y10c{bottom:510.990000px;}
.y129{bottom:511.350000px;}
.y15{bottom:511.710000px;}
.ye8{bottom:516.030000px;}
.yba{bottom:524.670000px;}
.y146{bottom:525.030000px;}
.ye7{bottom:530.790000px;}
.y96{bottom:531.150000px;}
.y5b{bottom:531.870000px;}
.y10b{bottom:534.750000px;}
.y128{bottom:535.470000px;}
.y14{bottom:535.830000px;}
.y35{bottom:536.190000px;}
.y7a{bottom:537.630000px;}
.y145{bottom:546.270000px;}
.ye6{bottom:553.500000px;}
.yb9{bottom:557.820000px;}
.y10a{bottom:558.900000px;}
.y95{bottom:562.140000px;}
.y5a{bottom:567.900000px;}
.y127{bottom:571.500000px;}
.y13{bottom:571.860000px;}
.yb8{bottom:572.580000px;}
.y79{bottom:573.660000px;}
.y144{bottom:575.460000px;}
.ye5{bottom:575.820000px;}
.y109{bottom:583.020000px;}
.yb7{bottom:594.180000px;}
.y126{bottom:595.260000px;}
.y12{bottom:595.620000px;}
.y34{bottom:595.980000px;}
.y143{bottom:596.700000px;}
.ye4{bottom:598.500000px;}
.y59{bottom:603.900000px;}
.y94{bottom:605.340000px;}
.y108{bottom:606.780000px;}
.y78{bottom:609.660000px;}
.yb6{bottom:615.780000px;}
.y125{bottom:619.380000px;}
.y11{bottom:619.740000px;}
.y33{bottom:620.100000px;}
.yde{bottom:621.180000px;}
.y142{bottom:625.860000px;}
.y107{bottom:630.900000px;}
.y93{bottom:636.300000px;}
.yb5{bottom:637.020000px;}
.y58{bottom:639.540000px;}
.ye3{bottom:643.500000px;}
.y77{bottom:645.660000px;}
.y141{bottom:647.100000px;}
.y124{bottom:655.380000px;}
.y32{bottom:656.100000px;}
.y10{bottom:658.620000px;}
.y57{bottom:663.300000px;}
.ye1{bottom:666.180000px;}
.y106{bottom:666.900000px;}
.y92{bottom:667.260000px;}
.y140{bottom:667.620000px;}
.y123{bottom:679.170000px;}
.y31{bottom:679.890000px;}
.y76{bottom:681.690000px;}
.y102{bottom:684.570000px;}
.y56{bottom:687.090000px;}
.ye0{bottom:688.890000px;}
.yf{bottom:691.410000px;}
.y13f{bottom:697.170000px;}
.y91{bottom:698.610000px;}
.yb4{bottom:701.490000px;}
.y122{bottom:703.290000px;}
.y30{bottom:704.010000px;}
.y105{bottom:706.890000px;}
.y55{bottom:711.210000px;}
.ye{bottom:712.290000px;}
.y75{bottom:717.690000px;}
.y13e{bottom:718.050000px;}
.yb3{bottom:722.730000px;}
.y121{bottom:727.410000px;}
.y2f{bottom:727.770000px;}
.y90{bottom:729.570000px;}
.ydd{bottom:733.890000px;}
.y54{bottom:734.970000px;}
.y13d{bottom:738.930000px;}
.yb1{bottom:744.330000px;}
.yd{bottom:750.810000px;}
.y120{bottom:751.170000px;}
.y2e{bottom:751.890000px;}
.y74{bottom:753.690000px;}
.yd7{bottom:756.570000px;}
.y53{bottom:758.730000px;}
.y8f{bottom:760.530000px;}
.yb0{bottom:765.930000px;}
.y13c{bottom:768.090000px;}
.y104{bottom:774.570000px;}
.yc{bottom:774.930000px;}
.y2d{bottom:776.010000px;}
.y73{bottom:777.450000px;}
.ydb{bottom:778.890000px;}
.y52{bottom:782.490000px;}
.yad{bottom:787.215000px;}
.y13b{bottom:789.375000px;}
.yfc{bottom:795.855000px;}
.y2c{bottom:799.815000px;}
.y72{bottom:801.255000px;}
.yda{bottom:801.615000px;}
.y8e{bottom:803.775000px;}
.y51{bottom:806.295000px;}
.yaf{bottom:808.815000px;}
.y11f{bottom:811.335000px;}
.yb{bottom:812.055000px;}
.y101{bottom:818.535000px;}
.yd9{bottom:824.295000px;}
.y50{bottom:830.055000px;}
.y71{bottom:834.015000px;}
.y11e{bottom:835.095000px;}
.y2b{bottom:835.815000px;}
.ya{bottom:839.415000px;}
.y13a{bottom:839.775000px;}
.y100{bottom:840.855000px;}
.yd6{bottom:846.975000px;}
.yae{bottom:851.655000px;}
.y8d{bottom:852.735000px;}
.y4f{bottom:853.815000px;}
.y11d{bottom:859.215000px;}
.y2a{bottom:859.575000px;}
.y139{bottom:860.295000px;}
.yff{bottom:863.535000px;}
.y70{bottom:866.775000px;}
.y9{bottom:867.135000px;}
.yd5{bottom:869.295000px;}
.yac{bottom:873.255000px;}
.y4e{bottom:877.575000px;}
.y11c{bottom:882.975000px;}
.yfe{bottom:885.855000px;}
.y6f{bottom:887.655000px;}
.y138{bottom:889.815000px;}
.yce{bottom:891.975000px;}
.yab{bottom:894.495000px;}
.y7{bottom:894.855000px;}
.y29{bottom:895.215000px;}
.y8c{bottom:895.575000px;}
.y4d{bottom:901.725000px;}
.yf7{bottom:907.485000px;}
.y6e{bottom:908.565000px;}
.y137{bottom:910.725000px;}
.yd3{bottom:914.685000px;}
.ya5{bottom:916.125000px;}
.y6{bottom:916.845000px;}
.y28{bottom:919.005000px;}
.y4c{bottom:925.845000px;}
.y8b{bottom:926.925000px;}
.yfb{bottom:929.805000px;}
.y136{bottom:931.605000px;}
.y6d{bottom:931.965000px;}
.yd2{bottom:937.005000px;}
.yaa{bottom:937.365000px;}
.y5{bottom:938.805000px;}
.y11b{bottom:943.125000px;}
.y4b{bottom:949.605000px;}
.yfa{bottom:952.485000px;}
.y27{bottom:955.005000px;}
.y6c{bottom:955.725000px;}
.y8a{bottom:957.885000px;}
.ya9{bottom:958.965000px;}
.yd0{bottom:959.685000px;}
.y4{bottom:963.645000px;}
.y11a{bottom:967.245000px;}
.y4a{bottom:973.725000px;}
.yf9{bottom:974.805000px;}
.y26{bottom:979.125000px;}
.y6b{bottom:979.485000px;}
.ya7{bottom:980.205000px;}
.ycc{bottom:982.365000px;}
.y3{bottom:985.605000px;}
.y89{bottom:988.845000px;}
.y119{bottom:991.005000px;}
.y49{bottom:997.485000px;}
.ya2{bottom:1001.805000px;}
.y25{bottom:1002.885000px;}
.y6a{bottom:1003.245000px;}
.y2{bottom:1007.565000px;}
.y118{bottom:1015.125000px;}
.y88{bottom:1019.850000px;}
.y48{bottom:1021.650000px;}
.y1{bottom:1024.890000px;}
.y24{bottom:1027.050000px;}
.y69{bottom:1027.410000px;}
.ycb{bottom:1038.930000px;}
.y47{bottom:1042.890000px;}
.y23{bottom:1063.050000px;}
.y46{bottom:1063.410000px;}
.hc{height:20.520000px;}
.he{height:20.556000px;}
.hb{height:20.880000px;}
.hd{height:20.916000px;}
.h15{height:21.600000px;}
.h18{height:21.636000px;}
.h14{height:21.960000px;}
.h16{height:21.996000px;}
.h11{height:36.756000px;}
.h9{height:41.436000px;}
.h12{height:47.965781px;}
.h6{height:52.136719px;}
.h10{height:53.067656px;}
.h8{height:58.121719px;}
.h4{height:61.770234px;}
.h2{height:62.402344px;}
.h1{height:62.507812px;}
.h5{height:63.175781px;}
.h1c{height:69.056016px;}
.h3{height:69.863203px;}
.ha{height:84.960000px;}
.hf{height:84.996000px;}
.h19{height:89.280000px;}
.h17{height:89.316000px;}
.h13{height:89.676000px;}
.h1b{height:110.556000px;}
.h1a{height:110.916000px;}
.h7{height:472.470000px;}
.h0{height:1188.000000px;}
.we{width:71.280000px;}
.w10{width:71.640000px;}
.w11{width:71.676000px;}
.w9{width:94.356000px;}
.w3{width:94.716000px;}
.w6{width:95.076000px;}
.w4{width:106.272000px;}
.wf{width:112.032000px;}
.w7{width:115.992000px;}
.w5{width:116.316000px;}
.wc{width:169.275000px;}
.wa{width:190.545000px;}
.w8{width:201.705000px;}
.wb{width:233.355000px;}
.wd{width:285.990000px;}
.w2{width:481.500000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x38{left:4.680000px;}
.x11{left:7.920000px;}
.x1f{left:14.040000px;}
.x18{left:18.360000px;}
.x25{left:19.440000px;}
.x22{left:21.636000px;}
.x20{left:22.680000px;}
.x3e{left:24.480000px;}
.x1d{left:27.000000px;}
.x19{left:29.520000px;}
.x1c{left:31.680000px;}
.x1a{left:33.150000px;}
.x1e{left:34.200000px;}
.x27{left:37.119000px;}
.x17{left:38.520000px;}
.x1b{left:42.480000px;}
.x2a{left:47.190000px;}
.x30{left:61.950000px;}
.x2e{left:65.910000px;}
.x33{left:70.230000px;}
.x2b{left:75.600000px;}
.x2f{left:78.150000px;}
.x29{left:79.200000px;}
.x2c{left:81.030000px;}
.x28{left:86.070000px;}
.x31{left:93.990000px;}
.x2d{left:98.310000px;}
.x32{left:102.270000px;}
.x7{left:108.035986px;}
.xd{left:112.355986px;}
.x21{left:114.156000px;}
.x34{left:117.069000px;}
.x9{left:121.715986px;}
.x36{left:125.709000px;}
.x35{left:128.589000px;}
.xc{left:135.071986px;}
.xa{left:151.994986px;}
.xb{left:165.674986px;}
.x10{left:171.794986px;}
.x12{left:204.195000px;}
.x23{left:209.595000px;}
.x37{left:223.305000px;}
.xe{left:230.505000px;}
.xf{left:240.915000px;}
.x2{left:254.624986px;}
.x39{left:294.945000px;}
.x13{left:311.190000px;}
.x5{left:344.669986px;}
.x4{left:391.469986px;}
.x24{left:400.860000px;}
.x3a{left:407.340000px;}
.x3{left:411.659986px;}
.x14{left:428.220000px;}
.x8{left:439.739986px;}
.x6{left:459.179986px;}
.x3b{left:479.340000px;}
.x15{left:524.010000px;}
.x3c{left:551.370000px;}
.x3d{left:623.415000px;}
.x26{left:634.935000px;}
.x16{left:641.055000px;}
.x1{left:799.529986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-1.600000pt;}
.lse{letter-spacing:-1.152000pt;}
.lsf{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.135467pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.746667pt;}
.lsd{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.800000pt;}
.ls3{letter-spacing:29.578667pt;}
.ws2{word-spacing:-19.840000pt;}
.ws9{word-spacing:-16.576000pt;}
.wsd{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.552000pt;}
.wse{word-spacing:-15.168000pt;}
.ws8{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.584533pt;}
.wsa{word-spacing:-14.448533pt;}
.ws1{word-spacing:-13.376000pt;}
.ws0{word-spacing:-12.992000pt;}
.ws3{word-spacing:-10.560000pt;}
.ws5{word-spacing:0.000000pt;}
._13{margin-left:-9.600000pt;}
._12{margin-left:-7.680000pt;}
._4{margin-left:-5.674667pt;}
._5{margin-left:-3.776000pt;}
._3{margin-left:-2.880000pt;}
._1{margin-left:-1.216000pt;}
._0{width:1.088000pt;}
._2{width:2.133333pt;}
._7{width:3.648000pt;}
._6{width:4.672000pt;}
._a{width:5.824000pt;}
._e{width:6.720000pt;}
._8{width:7.808000pt;}
._9{width:8.960000pt;}
._c{width:10.048000pt;}
._b{width:11.200000pt;}
._11{width:12.128000pt;}
._f{width:13.194667pt;}
._d{width:14.272000pt;}
._10{width:17.418667pt;}
._15{width:21.568000pt;}
._14{width:22.528000pt;}
.fs2{font-size:42.240000pt;}
.fs5{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:3.520000pt;}
.ya8{bottom:3.840000pt;}
.yd4{bottom:5.440000pt;}
.yd1{bottom:5.760000pt;}
.ye2{bottom:5.786667pt;}
.ydc{bottom:5.800000pt;}
.ycd{bottom:18.880000pt;}
.ya3{bottom:22.120000pt;}
.ya6{bottom:32.320000pt;}
.yb2{bottom:32.346667pt;}
.yf8{bottom:34.240000pt;}
.ydf{bottom:35.520000pt;}
.yd8{bottom:35.560000pt;}
.ycf{bottom:35.866667pt;}
.y103{bottom:43.520000pt;}
.yfd{bottom:43.840000pt;}
.y8{bottom:51.520000pt;}
.y87{bottom:102.752000pt;}
.ya1{bottom:104.352000pt;}
.yca{bottom:107.872000pt;}
.y153{bottom:108.192000pt;}
.y117{bottom:113.952000pt;}
.y45{bottom:120.352000pt;}
.y66{bottom:120.992000pt;}
.yf6{bottom:123.872000pt;}
.y22{bottom:124.512000pt;}
.y152{bottom:127.072000pt;}
.yc9{bottom:129.312000pt;}
.y86{bottom:132.832000pt;}
.y135{bottom:134.746667pt;}
.y116{bottom:135.386667pt;}
.y44{bottom:138.906667pt;}
.ya0{bottom:142.746667pt;}
.y151{bottom:145.306667pt;}
.yc8{bottom:150.426667pt;}
.y65{bottom:152.986667pt;}
.yf5{bottom:155.866667pt;}
.y134{bottom:156.186667pt;}
.y21{bottom:156.506667pt;}
.y43{bottom:157.146667pt;}
.y67{bottom:158.426667pt;}
.y85{bottom:162.906667pt;}
.y115{bottom:167.386667pt;}
.y150{bottom:171.546667pt;}
.yc7{bottom:171.866667pt;}
.y42{bottom:175.706667pt;}
.yf4{bottom:176.986667pt;}
.y133{bottom:177.306667pt;}
.y9f{bottom:181.146667pt;}
.y84{bottom:182.466667pt;}
.y64{bottom:185.026667pt;}
.y20{bottom:188.546667pt;}
.yc6{bottom:193.026667pt;}
.y41{bottom:193.986667pt;}
.y14f{bottom:197.826667pt;}
.yf3{bottom:198.466667pt;}
.y132{bottom:198.786667pt;}
.y83{bottom:201.986667pt;}
.y1f{bottom:209.666667pt;}
.y114{bottom:209.986667pt;}
.y68{bottom:211.586667pt;}
.y40{bottom:212.546667pt;}
.yc5{bottom:214.466667pt;}
.y63{bottom:216.706667pt;}
.y9e{bottom:219.266667pt;}
.yf2{bottom:219.586667pt;}
.y3f{bottom:230.786667pt;}
.y1e{bottom:231.106667pt;}
.y82{bottom:232.706667pt;}
.yc4{bottom:235.906667pt;}
.yf1{bottom:241.026667pt;}
.y113{bottom:241.986667pt;}
.y14e{bottom:242.626667pt;}
.y62{bottom:248.706667pt;}
.y131{bottom:251.906667pt;}
.y81{bottom:254.146667pt;}
.yc3{bottom:257.026667pt;}
.y9d{bottom:257.666667pt;}
.y3e{bottom:259.586667pt;}
.y14d{bottom:261.506667pt;}
.yf0{bottom:262.466667pt;}
.y1d{bottom:263.106667pt;}
.y130{bottom:273.346667pt;}
.y3d{bottom:278.146667pt;}
.yc2{bottom:278.466667pt;}
.y14c{bottom:279.746667pt;}
.y61{bottom:280.706667pt;}
.yef{bottom:283.586667pt;}
.y1c{bottom:284.573333pt;}
.y80{bottom:286.173333pt;}
.y12f{bottom:294.813333pt;}
.y9c{bottom:295.773333pt;}
.y3c{bottom:296.733333pt;}
.y14b{bottom:298.333333pt;}
.yc1{bottom:299.613333pt;}
.yee{bottom:305.053333pt;}
.y1b{bottom:305.693333pt;}
.y112{bottom:306.013333pt;}
.y60{bottom:312.733333pt;}
.y3b{bottom:314.973333pt;}
.y7f{bottom:318.173333pt;}
.yc0{bottom:321.053333pt;}
.y9b{bottom:323.293333pt;}
.y14a{bottom:324.253333pt;}
.yed{bottom:326.173333pt;}
.y12e{bottom:326.493333pt;}
.y1a{bottom:327.133333pt;}
.y3a{bottom:333.533333pt;}
.ybf{bottom:342.493333pt;}
.y149{bottom:343.133333pt;}
.y5f{bottom:344.733333pt;}
.y12d{bottom:347.933333pt;}
.y19{bottom:348.253333pt;}
.y111{bottom:348.573333pt;}
.y7e{bottom:350.173333pt;}
.y9a{bottom:351.133333pt;}
.y39{bottom:351.773333pt;}
.yec{bottom:358.173333pt;}
.ybe{bottom:363.613333pt;}
.y110{bottom:367.133333pt;}
.y148{bottom:369.053333pt;}
.y12c{bottom:369.373333pt;}
.y18{bottom:369.693333pt;}
.y38{bottom:370.333333pt;}
.y5e{bottom:376.733333pt;}
.y99{bottom:378.653333pt;}
.y7d{bottom:382.173333pt;}
.y10f{bottom:385.693333pt;}
.yeb{bottom:389.893333pt;}
.ybd{bottom:395.653333pt;}
.y12b{bottom:401.413333pt;}
.y17{bottom:401.733333pt;}
.y37{bottom:402.053333pt;}
.y10e{bottom:403.973333pt;}
.y98{bottom:406.213333pt;}
.y5d{bottom:408.773333pt;}
.yea{bottom:409.413333pt;}
.y7c{bottom:414.213333pt;}
.y10d{bottom:422.533333pt;}
.y16{bottom:422.853333pt;}
.ybc{bottom:427.013333pt;}
.ye9{bottom:428.933333pt;}
.y12a{bottom:433.093333pt;}
.y147{bottom:440.453333pt;}
.y5c{bottom:440.773333pt;}
.y36{bottom:442.053333pt;}
.y97{bottom:444.613333pt;}
.y7b{bottom:446.213333pt;}
.ybb{bottom:446.533333pt;}
.y10c{bottom:454.213333pt;}
.y129{bottom:454.533333pt;}
.y15{bottom:454.853333pt;}
.ye8{bottom:458.693333pt;}
.yba{bottom:466.373333pt;}
.y146{bottom:466.693333pt;}
.ye7{bottom:471.813333pt;}
.y96{bottom:472.133333pt;}
.y5b{bottom:472.773333pt;}
.y10b{bottom:475.333333pt;}
.y128{bottom:475.973333pt;}
.y14{bottom:476.293333pt;}
.y35{bottom:476.613333pt;}
.y7a{bottom:477.893333pt;}
.y145{bottom:485.573333pt;}
.ye6{bottom:492.000000pt;}
.yb9{bottom:495.840000pt;}
.y10a{bottom:496.800000pt;}
.y95{bottom:499.680000pt;}
.y5a{bottom:504.800000pt;}
.y127{bottom:508.000000pt;}
.y13{bottom:508.320000pt;}
.yb8{bottom:508.960000pt;}
.y79{bottom:509.920000pt;}
.y144{bottom:511.520000pt;}
.ye5{bottom:511.840000pt;}
.y109{bottom:518.240000pt;}
.yb7{bottom:528.160000pt;}
.y126{bottom:529.120000pt;}
.y12{bottom:529.440000pt;}
.y34{bottom:529.760000pt;}
.y143{bottom:530.400000pt;}
.ye4{bottom:532.000000pt;}
.y59{bottom:536.800000pt;}
.y94{bottom:538.080000pt;}
.y108{bottom:539.360000pt;}
.y78{bottom:541.920000pt;}
.yb6{bottom:547.360000pt;}
.y125{bottom:550.560000pt;}
.y11{bottom:550.880000pt;}
.y33{bottom:551.200000pt;}
.yde{bottom:552.160000pt;}
.y142{bottom:556.320000pt;}
.y107{bottom:560.800000pt;}
.y93{bottom:565.600000pt;}
.yb5{bottom:566.240000pt;}
.y58{bottom:568.480000pt;}
.ye3{bottom:572.000000pt;}
.y77{bottom:573.920000pt;}
.y141{bottom:575.200000pt;}
.y124{bottom:582.560000pt;}
.y32{bottom:583.200000pt;}
.y10{bottom:585.440000pt;}
.y57{bottom:589.600000pt;}
.ye1{bottom:592.160000pt;}
.y106{bottom:592.800000pt;}
.y92{bottom:593.120000pt;}
.y140{bottom:593.440000pt;}
.y123{bottom:603.706667pt;}
.y31{bottom:604.346667pt;}
.y76{bottom:605.946667pt;}
.y102{bottom:608.506667pt;}
.y56{bottom:610.746667pt;}
.ye0{bottom:612.346667pt;}
.yf{bottom:614.586667pt;}
.y13f{bottom:619.706667pt;}
.y91{bottom:620.986667pt;}
.yb4{bottom:623.546667pt;}
.y122{bottom:625.146667pt;}
.y30{bottom:625.786667pt;}
.y105{bottom:628.346667pt;}
.y55{bottom:632.186667pt;}
.ye{bottom:633.146667pt;}
.y75{bottom:637.946667pt;}
.y13e{bottom:638.266667pt;}
.yb3{bottom:642.426667pt;}
.y121{bottom:646.586667pt;}
.y2f{bottom:646.906667pt;}
.y90{bottom:648.506667pt;}
.ydd{bottom:652.346667pt;}
.y54{bottom:653.306667pt;}
.y13d{bottom:656.826667pt;}
.yb1{bottom:661.626667pt;}
.yd{bottom:667.386667pt;}
.y120{bottom:667.706667pt;}
.y2e{bottom:668.346667pt;}
.y74{bottom:669.946667pt;}
.yd7{bottom:672.506667pt;}
.y53{bottom:674.426667pt;}
.y8f{bottom:676.026667pt;}
.yb0{bottom:680.826667pt;}
.y13c{bottom:682.746667pt;}
.y104{bottom:688.506667pt;}
.yc{bottom:688.826667pt;}
.y2d{bottom:689.786667pt;}
.y73{bottom:691.066667pt;}
.ydb{bottom:692.346667pt;}
.y52{bottom:695.546667pt;}
.yad{bottom:699.746667pt;}
.y13b{bottom:701.666667pt;}
.yfc{bottom:707.426667pt;}
.y2c{bottom:710.946667pt;}
.y72{bottom:712.226667pt;}
.yda{bottom:712.546667pt;}
.y8e{bottom:714.466667pt;}
.y51{bottom:716.706667pt;}
.yaf{bottom:718.946667pt;}
.y11f{bottom:721.186667pt;}
.yb{bottom:721.826667pt;}
.y101{bottom:727.586667pt;}
.yd9{bottom:732.706667pt;}
.y50{bottom:737.826667pt;}
.y71{bottom:741.346667pt;}
.y11e{bottom:742.306667pt;}
.y2b{bottom:742.946667pt;}
.ya{bottom:746.146667pt;}
.y13a{bottom:746.466667pt;}
.y100{bottom:747.426667pt;}
.yd6{bottom:752.866667pt;}
.yae{bottom:757.026667pt;}
.y8d{bottom:757.986667pt;}
.y4f{bottom:758.946667pt;}
.y11d{bottom:763.746667pt;}
.y2a{bottom:764.066667pt;}
.y139{bottom:764.706667pt;}
.yff{bottom:767.586667pt;}
.y70{bottom:770.466667pt;}
.y9{bottom:770.786667pt;}
.yd5{bottom:772.706667pt;}
.yac{bottom:776.226667pt;}
.y4e{bottom:780.066667pt;}
.y11c{bottom:784.866667pt;}
.yfe{bottom:787.426667pt;}
.y6f{bottom:789.026667pt;}
.y138{bottom:790.946667pt;}
.yce{bottom:792.866667pt;}
.yab{bottom:795.106667pt;}
.y7{bottom:795.426667pt;}
.y29{bottom:795.746667pt;}
.y8c{bottom:796.066667pt;}
.y4d{bottom:801.533333pt;}
.yf7{bottom:806.653333pt;}
.y6e{bottom:807.613333pt;}
.y137{bottom:809.533333pt;}
.yd3{bottom:813.053333pt;}
.ya5{bottom:814.333333pt;}
.y6{bottom:814.973333pt;}
.y28{bottom:816.893333pt;}
.y4c{bottom:822.973333pt;}
.y8b{bottom:823.933333pt;}
.yfb{bottom:826.493333pt;}
.y136{bottom:828.093333pt;}
.y6d{bottom:828.413333pt;}
.yd2{bottom:832.893333pt;}
.yaa{bottom:833.213333pt;}
.y5{bottom:834.493333pt;}
.y11b{bottom:838.333333pt;}
.y4b{bottom:844.093333pt;}
.yfa{bottom:846.653333pt;}
.y27{bottom:848.893333pt;}
.y6c{bottom:849.533333pt;}
.y8a{bottom:851.453333pt;}
.ya9{bottom:852.413333pt;}
.yd0{bottom:853.053333pt;}
.y4{bottom:856.573333pt;}
.y11a{bottom:859.773333pt;}
.y4a{bottom:865.533333pt;}
.yf9{bottom:866.493333pt;}
.y26{bottom:870.333333pt;}
.y6b{bottom:870.653333pt;}
.ya7{bottom:871.293333pt;}
.ycc{bottom:873.213333pt;}
.y3{bottom:876.093333pt;}
.y89{bottom:878.973333pt;}
.y119{bottom:880.893333pt;}
.y49{bottom:886.653333pt;}
.ya2{bottom:890.493333pt;}
.y25{bottom:891.453333pt;}
.y6a{bottom:891.773333pt;}
.y2{bottom:895.613333pt;}
.y118{bottom:902.333333pt;}
.y88{bottom:906.533333pt;}
.y48{bottom:908.133333pt;}
.y1{bottom:911.013333pt;}
.y24{bottom:912.933333pt;}
.y69{bottom:913.253333pt;}
.ycb{bottom:923.493333pt;}
.y47{bottom:927.013333pt;}
.y23{bottom:944.933333pt;}
.y46{bottom:945.253333pt;}
.hc{height:18.240000pt;}
.he{height:18.272000pt;}
.hb{height:18.560000pt;}
.hd{height:18.592000pt;}
.h15{height:19.200000pt;}
.h18{height:19.232000pt;}
.h14{height:19.520000pt;}
.h16{height:19.552000pt;}
.h11{height:32.672000pt;}
.h9{height:36.832000pt;}
.h12{height:42.636250pt;}
.h6{height:46.343750pt;}
.h10{height:47.171250pt;}
.h8{height:51.663750pt;}
.h4{height:54.906875pt;}
.h2{height:55.468750pt;}
.h1{height:55.562500pt;}
.h5{height:56.156250pt;}
.h1c{height:61.383125pt;}
.h3{height:62.100625pt;}
.ha{height:75.520000pt;}
.hf{height:75.552000pt;}
.h19{height:79.360000pt;}
.h17{height:79.392000pt;}
.h13{height:79.712000pt;}
.h1b{height:98.272000pt;}
.h1a{height:98.592000pt;}
.h7{height:419.973333pt;}
.h0{height:1056.000000pt;}
.we{width:63.360000pt;}
.w10{width:63.680000pt;}
.w11{width:63.712000pt;}
.w9{width:83.872000pt;}
.w3{width:84.192000pt;}
.w6{width:84.512000pt;}
.w4{width:94.464000pt;}
.wf{width:99.584000pt;}
.w7{width:103.104000pt;}
.w5{width:103.392000pt;}
.wc{width:150.466667pt;}
.wa{width:169.373333pt;}
.w8{width:179.293333pt;}
.wb{width:207.426667pt;}
.wd{width:254.213333pt;}
.w2{width:428.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x38{left:4.160000pt;}
.x11{left:7.040000pt;}
.x1f{left:12.480000pt;}
.x18{left:16.320000pt;}
.x25{left:17.280000pt;}
.x22{left:19.232000pt;}
.x20{left:20.160000pt;}
.x3e{left:21.760000pt;}
.x1d{left:24.000000pt;}
.x19{left:26.240000pt;}
.x1c{left:28.160000pt;}
.x1a{left:29.466667pt;}
.x1e{left:30.400000pt;}
.x27{left:32.994667pt;}
.x17{left:34.240000pt;}
.x1b{left:37.760000pt;}
.x2a{left:41.946667pt;}
.x30{left:55.066667pt;}
.x2e{left:58.586667pt;}
.x33{left:62.426667pt;}
.x2b{left:67.200000pt;}
.x2f{left:69.466667pt;}
.x29{left:70.400000pt;}
.x2c{left:72.026667pt;}
.x28{left:76.506667pt;}
.x31{left:83.546667pt;}
.x2d{left:87.386667pt;}
.x32{left:90.906667pt;}
.x7{left:96.031988pt;}
.xd{left:99.871988pt;}
.x21{left:101.472000pt;}
.x34{left:104.061333pt;}
.x9{left:108.191988pt;}
.x36{left:111.741333pt;}
.x35{left:114.301333pt;}
.xc{left:120.063988pt;}
.xa{left:135.106655pt;}
.xb{left:147.266655pt;}
.x10{left:152.706655pt;}
.x12{left:181.506667pt;}
.x23{left:186.306667pt;}
.x37{left:198.493333pt;}
.xe{left:204.893333pt;}
.xf{left:214.146667pt;}
.x2{left:226.333321pt;}
.x39{left:262.173333pt;}
.x13{left:276.613333pt;}
.x5{left:306.373321pt;}
.x4{left:347.973321pt;}
.x24{left:356.320000pt;}
.x3a{left:362.080000pt;}
.x3{left:365.919988pt;}
.x14{left:380.640000pt;}
.x8{left:390.879988pt;}
.x6{left:408.159988pt;}
.x3b{left:426.080000pt;}
.x15{left:465.786667pt;}
.x3c{left:490.106667pt;}
.x3d{left:554.146667pt;}
.x26{left:564.386667pt;}
.x16{left:569.826667pt;}
.x1{left:710.693321pt;}
}




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