
    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_ba0c2c4e59658b94d8e40226.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a0ca6f2953d89713e6c83f8f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_0e5fbc64083b54899978dc99.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_a9dfdeade892849127f58313.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_0f054879cc4f28591496efde.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_187ad762734ff5d2c3e45ea4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-69.120000px;}
.v6{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.ls23{letter-spacing:-1.044000px;}
.ls22{letter-spacing:-0.828000px;}
.ls21{letter-spacing:-0.594000px;}
.lse{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.220800px;}
.ls17{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.126000px;}
.ls16{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.027360px;}
.lsa{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.126000px;}
.ls4{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.738000px;}
.ls1a{letter-spacing:0.936000px;}
.ls20{letter-spacing:2.988000px;}
.ls7{letter-spacing:6.660000px;}
.ls1e{letter-spacing:30.492000px;}
.ls8{letter-spacing:52.560000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls18{letter-spacing:681.420000px;}
.ls13{letter-spacing:837.840000px;}
.ls1c{letter-spacing:853.680000px;}
.ls14{letter-spacing:930.000000px;}
.ls10{letter-spacing:1179.120000px;}
.ls9{letter-spacing:1226.940000px;}
.ls1b{letter-spacing:1356.240000px;}
.ls1d{letter-spacing:1357.680000px;}
.ls19{letter-spacing:1539.240000px;}
.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;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.436000px;}
.wsd{word-spacing:-14.238000px;}
.ws6{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.626000px;}
.ws12{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.140000px;}
.ws10{word-spacing:-12.906000px;}
.ws11{word-spacing:-12.672000px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.ws13{word-spacing:-7.956000px;}
.wsb{word-spacing:0.000000px;}
._a{margin-left:-3.875040px;}
._1{margin-left:-2.442960px;}
._0{margin-left:-1.188000px;}
._2{width:1.524240px;}
._4{width:2.970000px;}
._5{width:3.971520px;}
._6{width:5.538000px;}
._7{width:7.104000px;}
._b{width:8.105280px;}
._9{width:9.342000px;}
._c{width:11.760000px;}
._8{width:1041.420000px;}
._3{width:1574.460000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y83{bottom:2.880000px;}
.y98{bottom:3.060000px;}
.y86{bottom:3.240000px;}
.y88{bottom:3.420000px;}
.ydf{bottom:18.360000px;}
.yc5{bottom:18.540000px;}
.ycc{bottom:18.720000px;}
.yf8{bottom:18.900000px;}
.yde{bottom:33.840000px;}
.yf1{bottom:34.020000px;}
.ycb{bottom:34.200000px;}
.ye5{bottom:37.980000px;}
.yf6{bottom:41.760000px;}
.ydd{bottom:49.320000px;}
.yca{bottom:49.860000px;}
.ye4{bottom:53.460000px;}
.yf5{bottom:57.240000px;}
.y2{bottom:57.960000px;}
.yb2{bottom:59.760000px;}
.yc9{bottom:65.340000px;}
.ye3{bottom:68.940000px;}
.yf4{bottom:72.900000px;}
.yb1{bottom:75.240000px;}
.y1{bottom:76.860000px;}
.ye2{bottom:84.420000px;}
.yb0{bottom:90.720000px;}
.yb9{bottom:95.760000px;}
.y80{bottom:100.980000px;}
.yaf{bottom:106.380000px;}
.y3a{bottom:109.470000px;}
.yb8{bottom:111.240000px;}
.y7f{bottom:116.640000px;}
.y39{bottom:124.950000px;}
.yef{bottom:126.000000px;}
.yb7{bottom:126.720000px;}
.y7e{bottom:132.120000px;}
.y38{bottom:140.640000px;}
.yee{bottom:141.516000px;}
.yb6{bottom:142.416000px;}
.y7d{bottom:147.636000px;}
.y37{bottom:156.120000px;}
.yed{bottom:156.990000px;}
.yb5{bottom:157.710000px;}
.y7c{bottom:163.290000px;}
.yae{bottom:171.030000px;}
.y36{bottom:171.600000px;}
.yec{bottom:172.470000px;}
.y7b{bottom:178.770000px;}
.y35{bottom:187.260000px;}
.yeb{bottom:188.130000px;}
.y7a{bottom:194.070000px;}
.y34{bottom:202.740000px;}
.yea{bottom:203.610000px;}
.y79{bottom:210.090000px;}
.yb4{bottom:214.950000px;}
.y33{bottom:218.220000px;}
.ye9{bottom:219.090000px;}
.y78{bottom:225.570000px;}
.y32{bottom:233.880000px;}
.ye8{bottom:234.750000px;}
.y77{bottom:241.050000px;}
.y31{bottom:249.360000px;}
.ye7{bottom:249.870000px;}
.y76{bottom:256.710000px;}
.yb3{bottom:258.870000px;}
.ye1{bottom:263.370000px;}
.y30{bottom:264.840000px;}
.y75{bottom:272.190000px;}
.y2f{bottom:280.320000px;}
.y74{bottom:287.490000px;}
.y2e{bottom:295.980000px;}
.yac{bottom:302.790000px;}
.ye6{bottom:307.470000px;}
.y2d{bottom:311.460000px;}
.y73{bottom:318.990000px;}
.y2c{bottom:327.120000px;}
.y72{bottom:334.470000px;}
.y2b{bottom:342.600000px;}
.yad{bottom:346.890000px;}
.y71{bottom:350.130000px;}
.ye0{bottom:351.570000px;}
.y2a{bottom:358.080000px;}
.y70{bottom:365.610000px;}
.y29{bottom:373.560000px;}
.y6f{bottom:381.270000px;}
.y28{bottom:389.265000px;}
.ydc{bottom:395.715000px;}
.y6e{bottom:396.435000px;}
.y27{bottom:404.745000px;}
.yab{bottom:409.755000px;}
.y6d{bottom:412.095000px;}
.y26{bottom:420.225000px;}
.yaa{bottom:425.235000px;}
.y6c{bottom:428.115000px;}
.y25{bottom:435.885000px;}
.ya9{bottom:440.895000px;}
.y6b{bottom:443.595000px;}
.y24{bottom:451.365000px;}
.ya8{bottom:456.375000px;}
.y6a{bottom:459.075000px;}
.ydb{bottom:461.775000px;}
.y23{bottom:466.665000px;}
.ya7{bottom:471.855000px;}
.y114{bottom:473.115000px;}
.y69{bottom:474.555000px;}
.yda{bottom:477.075000px;}
.ya6{bottom:487.335000px;}
.y113{bottom:488.595000px;}
.y68{bottom:490.215000px;}
.yd9{bottom:492.915000px;}
.y22{bottom:497.805000px;}
.ya5{bottom:502.995000px;}
.y112{bottom:504.075000px;}
.y67{bottom:505.515000px;}
.yd8{bottom:508.395000px;}
.y21{bottom:517.965000px;}
.ya4{bottom:518.475000px;}
.y111{bottom:519.735000px;}
.y66{bottom:520.995000px;}
.yd7{bottom:524.055000px;}
.ya3{bottom:533.955000px;}
.y110{bottom:535.215000px;}
.y65{bottom:536.655000px;}
.yd6{bottom:539.535000px;}
.y20{bottom:546.945000px;}
.ya2{bottom:549.615000px;}
.y10f{bottom:550.695000px;}
.y64{bottom:552.495000px;}
.yd5{bottom:555.015000px;}
.ya1{bottom:565.095000px;}
.y1f{bottom:565.125000px;}
.y10e{bottom:566.175000px;}
.y63{bottom:567.975000px;}
.yd4{bottom:570.495000px;}
.ya0{bottom:580.755000px;}
.y1e{bottom:580.785000px;}
.y10d{bottom:581.835000px;}
.y62{bottom:583.635000px;}
.yd3{bottom:586.155000px;}
.y9f{bottom:596.235000px;}
.y1d{bottom:596.265000px;}
.y10c{bottom:597.315000px;}
.y61{bottom:599.115000px;}
.yd2{bottom:601.635000px;}
.y1c{bottom:611.745000px;}
.y9e{bottom:611.895000px;}
.y10b{bottom:612.795000px;}
.y60{bottom:614.595000px;}
.yd1{bottom:617.295000px;}
.y9d{bottom:627.015000px;}
.y1b{bottom:627.225000px;}
.y10a{bottom:628.275000px;}
.y5f{bottom:630.075000px;}
.yd0{bottom:632.415000px;}
.y9c{bottom:642.705000px;}
.y1a{bottom:642.915000px;}
.y109{bottom:643.965000px;}
.y5e{bottom:645.765000px;}
.ycf{bottom:648.105000px;}
.y9b{bottom:658.185000px;}
.y19{bottom:658.395000px;}
.y108{bottom:659.445000px;}
.y5d{bottom:661.245000px;}
.yce{bottom:664.125000px;}
.y9a{bottom:671.685000px;}
.y18{bottom:674.055000px;}
.y5c{bottom:676.725000px;}
.yc8{bottom:677.085000px;}
.y107{bottom:690.585000px;}
.y5b{bottom:692.205000px;}
.y17{bottom:696.195000px;}
.y99{bottom:698.325000px;}
.y5a{bottom:707.865000px;}
.ycd{bottom:719.925000px;}
.y106{bottom:721.725000px;}
.y59{bottom:723.525000px;}
.y97{bottom:724.785000px;}
.y16{bottom:727.335000px;}
.y105{bottom:737.205000px;}
.y58{bottom:738.645000px;}
.y15{bottom:742.815000px;}
.y96{bottom:751.425000px;}
.y104{bottom:752.865000px;}
.y57{bottom:754.305000px;}
.y14{bottom:758.475000px;}
.yc7{bottom:762.765000px;}
.y103{bottom:768.345000px;}
.y56{bottom:770.145000px;}
.y95{bottom:778.065000px;}
.y102{bottom:784.005000px;}
.y55{bottom:785.625000px;}
.y13{bottom:793.035000px;}
.y101{bottom:799.125000px;}
.y54{bottom:801.285000px;}
.y94{bottom:804.705000px;}
.yc4{bottom:805.425000px;}
.y12{bottom:813.195000px;}
.y53{bottom:816.765000px;}
.y100{bottom:830.805000px;}
.y93{bottom:831.345000px;}
.y52{bottom:832.065000px;}
.y11{bottom:845.595000px;}
.yff{bottom:846.285000px;}
.y51{bottom:847.725000px;}
.yc6{bottom:848.265000px;}
.yfe{bottom:861.765000px;}
.y50{bottom:863.205000px;}
.y10{bottom:867.915000px;}
.yf{bottom:876.375000px;}
.y92{bottom:876.885000px;}
.yfd{bottom:877.425000px;}
.y4f{bottom:879.225000px;}
.y91{bottom:892.590000px;}
.yfc{bottom:892.950000px;}
.y4e{bottom:894.750000px;}
.ye{bottom:901.980000px;}
.y90{bottom:908.070000px;}
.yfb{bottom:908.430000px;}
.y4d{bottom:910.230000px;}
.y8f{bottom:923.550000px;}
.yfa{bottom:924.090000px;}
.yc3{bottom:925.710000px;}
.y4c{bottom:925.890000px;}
.y8e{bottom:939.210000px;}
.yc2{bottom:941.190000px;}
.yd{bottom:941.220000px;}
.y4b{bottom:941.370000px;}
.y8d{bottom:954.690000px;}
.yc1{bottom:956.670000px;}
.y4a{bottom:956.850000px;}
.y8c{bottom:967.830000px;}
.yf9{bottom:970.530000px;}
.y49{bottom:972.330000px;}
.yf3{bottom:983.850000px;}
.yc0{bottom:987.810000px;}
.y48{bottom:987.990000px;}
.y8b{bottom:991.230000px;}
.yc{bottom:1000.620000px;}
.ybf{bottom:1003.290000px;}
.y47{bottom:1003.470000px;}
.y8a{bottom:1014.630000px;}
.ybe{bottom:1018.770000px;}
.y46{bottom:1019.130000px;}
.yf7{bottom:1025.250000px;}
.y9{bottom:1034.100000px;}
.ybd{bottom:1034.430000px;}
.y45{bottom:1034.610000px;}
.y89{bottom:1038.210000px;}
.yb{bottom:1039.320000px;}
.ybc{bottom:1049.910000px;}
.y44{bottom:1050.090000px;}
.y8{bottom:1057.320000px;}
.y87{bottom:1061.610000px;}
.ybb{bottom:1065.210000px;}
.y43{bottom:1065.570000px;}
.yf2{bottom:1066.830000px;}
.ya{bottom:1071.360000px;}
.yba{bottom:1080.870000px;}
.y42{bottom:1081.230000px;}
.y85{bottom:1085.190000px;}
.y7{bottom:1086.660000px;}
.y41{bottom:1096.710000px;}
.y6{bottom:1105.740000px;}
.yf0{bottom:1108.230000px;}
.y84{bottom:1108.590000px;}
.y40{bottom:1112.190000px;}
.y5{bottom:1123.020000px;}
.y3f{bottom:1127.850000px;}
.y82{bottom:1132.170000px;}
.y4{bottom:1140.300000px;}
.y3e{bottom:1143.330000px;}
.y3{bottom:1158.360000px;}
.y3d{bottom:1158.840000px;}
.y81{bottom:1159.020000px;}
.y3c{bottom:1175.220000px;}
.y3b{bottom:1193.760000px;}
.ha{height:12.335625px;}
.h14{height:22.680000px;}
.h13{height:22.716000px;}
.h15{height:22.860000px;}
.h17{height:25.740000px;}
.h16{height:25.920000px;}
.hb{height:35.314453px;}
.h10{height:38.158594px;}
.h23{height:40.680000px;}
.h1e{height:41.940000px;}
.h1d{height:42.120000px;}
.h1a{height:43.200000px;}
.h19{height:43.236000px;}
.h22{height:46.656000px;}
.h11{height:47.344922px;}
.h6{height:48.616875px;}
.hd{height:52.971680px;}
.h12{height:52.998047px;}
.hc{height:53.314453px;}
.he{height:54.421875px;}
.h25{height:55.503491px;}
.h7{height:55.796836px;}
.h8{height:58.621992px;}
.h3{height:60.226875px;}
.h20{height:61.920000px;}
.hf{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h1c{height:84.960000px;}
.h18{height:87.336000px;}
.h24{height:123.660000px;}
.h1f{height:127.620000px;}
.h21{height:131.436000px;}
.h1b{height:174.960000px;}
.h0{height:1263.000000px;}
.wa{width:48.276000px;}
.w16{width:53.640000px;}
.w10{width:56.520000px;}
.w14{width:57.096000px;}
.w12{width:67.176000px;}
.w13{width:69.840000px;}
.w11{width:70.200000px;}
.w15{width:73.260000px;}
.w17{width:73.296000px;}
.w19{width:84.456000px;}
.w1d{width:84.600000px;}
.w21{width:91.656000px;}
.w1f{width:96.480000px;}
.w20{width:96.696000px;}
.w1e{width:99.396000px;}
.w22{width:101.520000px;}
.w29{width:104.796000px;}
.w28{width:105.156000px;}
.w27{width:106.056000px;}
.w2c{width:114.156000px;}
.w1c{width:115.776000px;}
.w23{width:116.136000px;}
.w2{width:119.880000px;}
.w3{width:120.276000px;}
.w4{width:126.216000px;}
.wb{width:127.260000px;}
.we{width:127.296000px;}
.w2a{width:129.960000px;}
.w2b{width:130.176000px;}
.wd{width:130.716000px;}
.w2e{width:132.120000px;}
.w2d{width:132.480000px;}
.wc{width:137.376000px;}
.w24{width:141.660000px;}
.w6{width:150.330000px;}
.w7{width:150.510000px;}
.w8{width:157.890000px;}
.w26{width:159.150000px;}
.w25{width:165.090000px;}
.w18{width:180.930000px;}
.wf{width:181.290000px;}
.w1a{width:184.350000px;}
.w1b{width:193.530000px;}
.w5{width:367.275000px;}
.w9{width:459.465000px;}
.w1{width:893.999987px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x22{left:7.740000px;}
.x20{left:9.720000px;}
.x4b{left:11.160000px;}
.x2c{left:12.780000px;}
.x14{left:14.760000px;}
.x3a{left:18.720000px;}
.x34{left:20.160000px;}
.x3e{left:21.780000px;}
.x18{left:22.860000px;}
.x37{left:25.425000px;}
.x40{left:27.045000px;}
.x36{left:28.620000px;}
.x2{left:29.970000px;}
.x3f{left:31.860000px;}
.x30{left:32.985000px;}
.x2e{left:34.740000px;}
.x16{left:36.360000px;}
.x49{left:37.620000px;}
.x1a{left:39.240000px;}
.x48{left:41.790000px;}
.x3d{left:43.200000px;}
.x52{left:44.685000px;}
.x1d{left:46.440000px;}
.x32{left:48.420000px;}
.x1b{left:50.070000px;}
.x1c{left:51.480000px;}
.x8{left:53.040000px;}
.x26{left:54.585000px;}
.x1f{left:56.520000px;}
.x56{left:58.545000px;}
.x4f{left:60.510000px;}
.x28{left:61.605000px;}
.x2b{left:64.260000px;}
.x29{left:65.370000px;}
.x27{left:67.320000px;}
.xc{left:69.747000px;}
.x3c{left:70.920000px;}
.xe{left:73.176000px;}
.x9{left:78.180000px;}
.x44{left:81.585000px;}
.x19{left:86.040000px;}
.x4d{left:102.096000px;}
.x2d{left:112.896000px;}
.x1e{left:117.900000px;}
.x53{left:122.076000px;}
.x57{left:124.415987px;}
.x41{left:138.276000px;}
.x25{left:155.205000px;}
.x35{left:169.950000px;}
.x2a{left:183.285000px;}
.x4c{left:202.529987px;}
.x21{left:211.530000px;}
.x46{left:223.230000px;}
.x2f{left:240.510000px;}
.x5{left:244.050000px;}
.x3{left:252.120000px;}
.x13{left:257.655000px;}
.xa{left:263.400000px;}
.x12{left:271.514987px;}
.x4{left:290.610000px;}
.x38{left:308.055000px;}
.x42{left:322.995000px;}
.x11{left:347.834987px;}
.x23{left:362.235000px;}
.x15{left:378.075000px;}
.x54{left:382.935000px;}
.xd{left:400.281000px;}
.x4e{left:409.575000px;}
.x47{left:419.835000px;}
.x1{left:422.700000px;}
.xf{left:428.864987px;}
.x39{left:435.705000px;}
.xb{left:436.995000px;}
.x10{left:441.284987px;}
.x6{left:478.845000px;}
.x17{left:498.705000px;}
.x7{left:506.340000px;}
.x31{left:509.325000px;}
.x24{left:513.105000px;}
.x43{left:516.885000px;}
.x3b{left:563.325000px;}
.x50{left:569.085000px;}
.x4a{left:608.910000px;}
.x55{left:627.990000px;}
.x33{left:637.170000px;}
.x51{left:675.510000px;}
.x45{left:711.150000px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v6{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls23{letter-spacing:-0.928000pt;}
.ls22{letter-spacing:-0.736000pt;}
.ls21{letter-spacing:-0.528000pt;}
.lse{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.196267pt;}
.ls17{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.112000pt;}
.ls16{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.024320pt;}
.lsa{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.112000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.656000pt;}
.ls1a{letter-spacing:0.832000pt;}
.ls20{letter-spacing:2.656000pt;}
.ls7{letter-spacing:5.920000pt;}
.ls1e{letter-spacing:27.104000pt;}
.ls8{letter-spacing:46.720000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls18{letter-spacing:605.706667pt;}
.ls13{letter-spacing:744.746667pt;}
.ls1c{letter-spacing:758.826667pt;}
.ls14{letter-spacing:826.666667pt;}
.ls10{letter-spacing:1048.106667pt;}
.ls9{letter-spacing:1090.613333pt;}
.ls1b{letter-spacing:1205.546667pt;}
.ls1d{letter-spacing:1206.826667pt;}
.ls19{letter-spacing:1368.213333pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.832000pt;}
.wsd{word-spacing:-12.656000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.112000pt;}
.ws12{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws10{word-spacing:-11.472000pt;}
.ws11{word-spacing:-11.264000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws13{word-spacing:-7.072000pt;}
.wsb{word-spacing:0.000000pt;}
._a{margin-left:-3.444480pt;}
._1{margin-left:-2.171520pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.354880pt;}
._4{width:2.640000pt;}
._5{width:3.530240pt;}
._6{width:4.922667pt;}
._7{width:6.314667pt;}
._b{width:7.204693pt;}
._9{width:8.304000pt;}
._c{width:10.453333pt;}
._8{width:925.706667pt;}
._3{width:1399.520000pt;}
.fs8{font-size:10.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:2.560000pt;}
.y98{bottom:2.720000pt;}
.y86{bottom:2.880000pt;}
.y88{bottom:3.040000pt;}
.ydf{bottom:16.320000pt;}
.yc5{bottom:16.480000pt;}
.ycc{bottom:16.640000pt;}
.yf8{bottom:16.800000pt;}
.yde{bottom:30.080000pt;}
.yf1{bottom:30.240000pt;}
.ycb{bottom:30.400000pt;}
.ye5{bottom:33.760000pt;}
.yf6{bottom:37.120000pt;}
.ydd{bottom:43.840000pt;}
.yca{bottom:44.320000pt;}
.ye4{bottom:47.520000pt;}
.yf5{bottom:50.880000pt;}
.y2{bottom:51.520000pt;}
.yb2{bottom:53.120000pt;}
.yc9{bottom:58.080000pt;}
.ye3{bottom:61.280000pt;}
.yf4{bottom:64.800000pt;}
.yb1{bottom:66.880000pt;}
.y1{bottom:68.320000pt;}
.ye2{bottom:75.040000pt;}
.yb0{bottom:80.640000pt;}
.yb9{bottom:85.120000pt;}
.y80{bottom:89.760000pt;}
.yaf{bottom:94.560000pt;}
.y3a{bottom:97.306667pt;}
.yb8{bottom:98.880000pt;}
.y7f{bottom:103.680000pt;}
.y39{bottom:111.066667pt;}
.yef{bottom:112.000000pt;}
.yb7{bottom:112.640000pt;}
.y7e{bottom:117.440000pt;}
.y38{bottom:125.013333pt;}
.yee{bottom:125.792000pt;}
.yb6{bottom:126.592000pt;}
.y7d{bottom:131.232000pt;}
.y37{bottom:138.773333pt;}
.yed{bottom:139.546667pt;}
.yb5{bottom:140.186667pt;}
.y7c{bottom:145.146667pt;}
.yae{bottom:152.026667pt;}
.y36{bottom:152.533333pt;}
.yec{bottom:153.306667pt;}
.y7b{bottom:158.906667pt;}
.y35{bottom:166.453333pt;}
.yeb{bottom:167.226667pt;}
.y7a{bottom:172.506667pt;}
.y34{bottom:180.213333pt;}
.yea{bottom:180.986667pt;}
.y79{bottom:186.746667pt;}
.yb4{bottom:191.066667pt;}
.y33{bottom:193.973333pt;}
.ye9{bottom:194.746667pt;}
.y78{bottom:200.506667pt;}
.y32{bottom:207.893333pt;}
.ye8{bottom:208.666667pt;}
.y77{bottom:214.266667pt;}
.y31{bottom:221.653333pt;}
.ye7{bottom:222.106667pt;}
.y76{bottom:228.186667pt;}
.yb3{bottom:230.106667pt;}
.ye1{bottom:234.106667pt;}
.y30{bottom:235.413333pt;}
.y75{bottom:241.946667pt;}
.y2f{bottom:249.173333pt;}
.y74{bottom:255.546667pt;}
.y2e{bottom:263.093333pt;}
.yac{bottom:269.146667pt;}
.ye6{bottom:273.306667pt;}
.y2d{bottom:276.853333pt;}
.y73{bottom:283.546667pt;}
.y2c{bottom:290.773333pt;}
.y72{bottom:297.306667pt;}
.y2b{bottom:304.533333pt;}
.yad{bottom:308.346667pt;}
.y71{bottom:311.226667pt;}
.ye0{bottom:312.506667pt;}
.y2a{bottom:318.293333pt;}
.y70{bottom:324.986667pt;}
.y29{bottom:332.053333pt;}
.y6f{bottom:338.906667pt;}
.y28{bottom:346.013333pt;}
.ydc{bottom:351.746667pt;}
.y6e{bottom:352.386667pt;}
.y27{bottom:359.773333pt;}
.yab{bottom:364.226667pt;}
.y6d{bottom:366.306667pt;}
.y26{bottom:373.533333pt;}
.yaa{bottom:377.986667pt;}
.y6c{bottom:380.546667pt;}
.y25{bottom:387.453333pt;}
.ya9{bottom:391.906667pt;}
.y6b{bottom:394.306667pt;}
.y24{bottom:401.213333pt;}
.ya8{bottom:405.666667pt;}
.y6a{bottom:408.066667pt;}
.ydb{bottom:410.466667pt;}
.y23{bottom:414.813333pt;}
.ya7{bottom:419.426667pt;}
.y114{bottom:420.546667pt;}
.y69{bottom:421.826667pt;}
.yda{bottom:424.066667pt;}
.ya6{bottom:433.186667pt;}
.y113{bottom:434.306667pt;}
.y68{bottom:435.746667pt;}
.yd9{bottom:438.146667pt;}
.y22{bottom:442.493333pt;}
.ya5{bottom:447.106667pt;}
.y112{bottom:448.066667pt;}
.y67{bottom:449.346667pt;}
.yd8{bottom:451.906667pt;}
.y21{bottom:460.413333pt;}
.ya4{bottom:460.866667pt;}
.y111{bottom:461.986667pt;}
.y66{bottom:463.106667pt;}
.yd7{bottom:465.826667pt;}
.ya3{bottom:474.626667pt;}
.y110{bottom:475.746667pt;}
.y65{bottom:477.026667pt;}
.yd6{bottom:479.586667pt;}
.y20{bottom:486.173333pt;}
.ya2{bottom:488.546667pt;}
.y10f{bottom:489.506667pt;}
.y64{bottom:491.106667pt;}
.yd5{bottom:493.346667pt;}
.ya1{bottom:502.306667pt;}
.y1f{bottom:502.333333pt;}
.y10e{bottom:503.266667pt;}
.y63{bottom:504.866667pt;}
.yd4{bottom:507.106667pt;}
.ya0{bottom:516.226667pt;}
.y1e{bottom:516.253333pt;}
.y10d{bottom:517.186667pt;}
.y62{bottom:518.786667pt;}
.yd3{bottom:521.026667pt;}
.y9f{bottom:529.986667pt;}
.y1d{bottom:530.013333pt;}
.y10c{bottom:530.946667pt;}
.y61{bottom:532.546667pt;}
.yd2{bottom:534.786667pt;}
.y1c{bottom:543.773333pt;}
.y9e{bottom:543.906667pt;}
.y10b{bottom:544.706667pt;}
.y60{bottom:546.306667pt;}
.yd1{bottom:548.706667pt;}
.y9d{bottom:557.346667pt;}
.y1b{bottom:557.533333pt;}
.y10a{bottom:558.466667pt;}
.y5f{bottom:560.066667pt;}
.yd0{bottom:562.146667pt;}
.y9c{bottom:571.293333pt;}
.y1a{bottom:571.480000pt;}
.y109{bottom:572.413333pt;}
.y5e{bottom:574.013333pt;}
.ycf{bottom:576.093333pt;}
.y9b{bottom:585.053333pt;}
.y19{bottom:585.240000pt;}
.y108{bottom:586.173333pt;}
.y5d{bottom:587.773333pt;}
.yce{bottom:590.333333pt;}
.y9a{bottom:597.053333pt;}
.y18{bottom:599.160000pt;}
.y5c{bottom:601.533333pt;}
.yc8{bottom:601.853333pt;}
.y107{bottom:613.853333pt;}
.y5b{bottom:615.293333pt;}
.y17{bottom:618.840000pt;}
.y99{bottom:620.733333pt;}
.y5a{bottom:629.213333pt;}
.ycd{bottom:639.933333pt;}
.y106{bottom:641.533333pt;}
.y59{bottom:643.133333pt;}
.y97{bottom:644.253333pt;}
.y16{bottom:646.520000pt;}
.y105{bottom:655.293333pt;}
.y58{bottom:656.573333pt;}
.y15{bottom:660.280000pt;}
.y96{bottom:667.933333pt;}
.y104{bottom:669.213333pt;}
.y57{bottom:670.493333pt;}
.y14{bottom:674.200000pt;}
.yc7{bottom:678.013333pt;}
.y103{bottom:682.973333pt;}
.y56{bottom:684.573333pt;}
.y95{bottom:691.613333pt;}
.y102{bottom:696.893333pt;}
.y55{bottom:698.333333pt;}
.y13{bottom:704.920000pt;}
.y101{bottom:710.333333pt;}
.y54{bottom:712.253333pt;}
.y94{bottom:715.293333pt;}
.yc4{bottom:715.933333pt;}
.y12{bottom:722.840000pt;}
.y53{bottom:726.013333pt;}
.y100{bottom:738.493333pt;}
.y93{bottom:738.973333pt;}
.y52{bottom:739.613333pt;}
.y11{bottom:751.640000pt;}
.yff{bottom:752.253333pt;}
.y51{bottom:753.533333pt;}
.yc6{bottom:754.013333pt;}
.yfe{bottom:766.013333pt;}
.y50{bottom:767.293333pt;}
.y10{bottom:771.480000pt;}
.yf{bottom:779.000000pt;}
.y92{bottom:779.453333pt;}
.yfd{bottom:779.933333pt;}
.y4f{bottom:781.533333pt;}
.y91{bottom:793.413333pt;}
.yfc{bottom:793.733333pt;}
.y4e{bottom:795.333333pt;}
.ye{bottom:801.760000pt;}
.y90{bottom:807.173333pt;}
.yfb{bottom:807.493333pt;}
.y4d{bottom:809.093333pt;}
.y8f{bottom:820.933333pt;}
.yfa{bottom:821.413333pt;}
.yc3{bottom:822.853333pt;}
.y4c{bottom:823.013333pt;}
.y8e{bottom:834.853333pt;}
.yc2{bottom:836.613333pt;}
.yd{bottom:836.640000pt;}
.y4b{bottom:836.773333pt;}
.y8d{bottom:848.613333pt;}
.yc1{bottom:850.373333pt;}
.y4a{bottom:850.533333pt;}
.y8c{bottom:860.293333pt;}
.yf9{bottom:862.693333pt;}
.y49{bottom:864.293333pt;}
.yf3{bottom:874.533333pt;}
.yc0{bottom:878.053333pt;}
.y48{bottom:878.213333pt;}
.y8b{bottom:881.093333pt;}
.yc{bottom:889.440000pt;}
.ybf{bottom:891.813333pt;}
.y47{bottom:891.973333pt;}
.y8a{bottom:901.893333pt;}
.ybe{bottom:905.573333pt;}
.y46{bottom:905.893333pt;}
.yf7{bottom:911.333333pt;}
.y9{bottom:919.200000pt;}
.ybd{bottom:919.493333pt;}
.y45{bottom:919.653333pt;}
.y89{bottom:922.853333pt;}
.yb{bottom:923.840000pt;}
.ybc{bottom:933.253333pt;}
.y44{bottom:933.413333pt;}
.y8{bottom:939.840000pt;}
.y87{bottom:943.653333pt;}
.ybb{bottom:946.853333pt;}
.y43{bottom:947.173333pt;}
.yf2{bottom:948.293333pt;}
.ya{bottom:952.320000pt;}
.yba{bottom:960.773333pt;}
.y42{bottom:961.093333pt;}
.y85{bottom:964.613333pt;}
.y7{bottom:965.920000pt;}
.y41{bottom:974.853333pt;}
.y6{bottom:982.880000pt;}
.yf0{bottom:985.093333pt;}
.y84{bottom:985.413333pt;}
.y40{bottom:988.613333pt;}
.y5{bottom:998.240000pt;}
.y3f{bottom:1002.533333pt;}
.y82{bottom:1006.373333pt;}
.y4{bottom:1013.600000pt;}
.y3e{bottom:1016.293333pt;}
.y3{bottom:1029.653333pt;}
.y3d{bottom:1030.080000pt;}
.y81{bottom:1030.240000pt;}
.y3c{bottom:1044.640000pt;}
.y3b{bottom:1061.120000pt;}
.ha{height:10.965000pt;}
.h14{height:20.160000pt;}
.h13{height:20.192000pt;}
.h15{height:20.320000pt;}
.h17{height:22.880000pt;}
.h16{height:23.040000pt;}
.hb{height:31.390625pt;}
.h10{height:33.918750pt;}
.h23{height:36.160000pt;}
.h1e{height:37.280000pt;}
.h1d{height:37.440000pt;}
.h1a{height:38.400000pt;}
.h19{height:38.432000pt;}
.h22{height:41.472000pt;}
.h11{height:42.084375pt;}
.h6{height:43.215000pt;}
.hd{height:47.085938pt;}
.h12{height:47.109375pt;}
.hc{height:47.390625pt;}
.he{height:48.375000pt;}
.h25{height:49.336436pt;}
.h7{height:49.597187pt;}
.h8{height:52.108438pt;}
.h3{height:53.535000pt;}
.h20{height:55.040000pt;}
.hf{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h1c{height:75.520000pt;}
.h18{height:77.632000pt;}
.h24{height:109.920000pt;}
.h1f{height:113.440000pt;}
.h21{height:116.832000pt;}
.h1b{height:155.520000pt;}
.h0{height:1122.666667pt;}
.wa{width:42.912000pt;}
.w16{width:47.680000pt;}
.w10{width:50.240000pt;}
.w14{width:50.752000pt;}
.w12{width:59.712000pt;}
.w13{width:62.080000pt;}
.w11{width:62.400000pt;}
.w15{width:65.120000pt;}
.w17{width:65.152000pt;}
.w19{width:75.072000pt;}
.w1d{width:75.200000pt;}
.w21{width:81.472000pt;}
.w1f{width:85.760000pt;}
.w20{width:85.952000pt;}
.w1e{width:88.352000pt;}
.w22{width:90.240000pt;}
.w29{width:93.152000pt;}
.w28{width:93.472000pt;}
.w27{width:94.272000pt;}
.w2c{width:101.472000pt;}
.w1c{width:102.912000pt;}
.w23{width:103.232000pt;}
.w2{width:106.560000pt;}
.w3{width:106.912000pt;}
.w4{width:112.192000pt;}
.wb{width:113.120000pt;}
.we{width:113.152000pt;}
.w2a{width:115.520000pt;}
.w2b{width:115.712000pt;}
.wd{width:116.192000pt;}
.w2e{width:117.440000pt;}
.w2d{width:117.760000pt;}
.wc{width:122.112000pt;}
.w24{width:125.920000pt;}
.w6{width:133.626667pt;}
.w7{width:133.786667pt;}
.w8{width:140.346667pt;}
.w26{width:141.466667pt;}
.w25{width:146.746667pt;}
.w18{width:160.826667pt;}
.wf{width:161.146667pt;}
.w1a{width:163.866667pt;}
.w1b{width:172.026667pt;}
.w5{width:326.466667pt;}
.w9{width:408.413333pt;}
.w1{width:794.666655pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x22{left:6.880000pt;}
.x20{left:8.640000pt;}
.x4b{left:9.920000pt;}
.x2c{left:11.360000pt;}
.x14{left:13.120000pt;}
.x3a{left:16.640000pt;}
.x34{left:17.920000pt;}
.x3e{left:19.360000pt;}
.x18{left:20.320000pt;}
.x37{left:22.600000pt;}
.x40{left:24.040000pt;}
.x36{left:25.440000pt;}
.x2{left:26.640000pt;}
.x3f{left:28.320000pt;}
.x30{left:29.320000pt;}
.x2e{left:30.880000pt;}
.x16{left:32.320000pt;}
.x49{left:33.440000pt;}
.x1a{left:34.880000pt;}
.x48{left:37.146667pt;}
.x3d{left:38.400000pt;}
.x52{left:39.720000pt;}
.x1d{left:41.280000pt;}
.x32{left:43.040000pt;}
.x1b{left:44.506667pt;}
.x1c{left:45.760000pt;}
.x8{left:47.146667pt;}
.x26{left:48.520000pt;}
.x1f{left:50.240000pt;}
.x56{left:52.040000pt;}
.x4f{left:53.786667pt;}
.x28{left:54.760000pt;}
.x2b{left:57.120000pt;}
.x29{left:58.106667pt;}
.x27{left:59.840000pt;}
.xc{left:61.997333pt;}
.x3c{left:63.040000pt;}
.xe{left:65.045333pt;}
.x9{left:69.493333pt;}
.x44{left:72.520000pt;}
.x19{left:76.480000pt;}
.x4d{left:90.752000pt;}
.x2d{left:100.352000pt;}
.x1e{left:104.800000pt;}
.x53{left:108.512000pt;}
.x57{left:110.591988pt;}
.x41{left:122.912000pt;}
.x25{left:137.960000pt;}
.x35{left:151.066667pt;}
.x2a{left:162.920000pt;}
.x4c{left:180.026655pt;}
.x21{left:188.026667pt;}
.x46{left:198.426667pt;}
.x2f{left:213.786667pt;}
.x5{left:216.933333pt;}
.x3{left:224.106667pt;}
.x13{left:229.026667pt;}
.xa{left:234.133333pt;}
.x12{left:241.346655pt;}
.x4{left:258.320000pt;}
.x38{left:273.826667pt;}
.x42{left:287.106667pt;}
.x11{left:309.186655pt;}
.x23{left:321.986667pt;}
.x15{left:336.066667pt;}
.x54{left:340.386667pt;}
.xd{left:355.805333pt;}
.x4e{left:364.066667pt;}
.x47{left:373.186667pt;}
.x1{left:375.733333pt;}
.xf{left:381.213321pt;}
.x39{left:387.293333pt;}
.xb{left:388.440000pt;}
.x10{left:392.253321pt;}
.x6{left:425.640000pt;}
.x17{left:443.293333pt;}
.x7{left:450.080000pt;}
.x31{left:452.733333pt;}
.x24{left:456.093333pt;}
.x43{left:459.453333pt;}
.x3b{left:500.733333pt;}
.x50{left:505.853333pt;}
.x4a{left:541.253333pt;}
.x55{left:558.213333pt;}
.x33{left:566.373333pt;}
.x51{left:600.453333pt;}
.x45{left:632.133333pt;}
}




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