
    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_9972527841180c773f927ad3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_c710d5d81b487b940de80290.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d17df6b33e0a45b374d64b7c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d7ba178c76ec4e8fd55d424b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003418;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_0f00f6b1c5419e4fe9578e32.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003418;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_f135f02ec63f56aead737d03.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1d21b678e60baa929b168f82.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_1c8ddd34f5a853cf7b5b0993.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4e0fef12ed06fbc2fd31ad1c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_1d69bf954a6ea74920e00758.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.894000px;}
.ls23{letter-spacing:-0.298200px;}
.ls9{letter-spacing:-0.253200px;}
.ls24{letter-spacing:-0.208800px;}
.ls18{letter-spacing:-0.107400px;}
.ls8{letter-spacing:-0.102000px;}
.ls19{letter-spacing:-0.064800px;}
.ls7{letter-spacing:-0.058320px;}
.ls26{letter-spacing:-0.043920px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018720px;}
.ls16{letter-spacing:0.020640px;}
.lsf{letter-spacing:0.042960px;}
.ls12{letter-spacing:0.060600px;}
.ls22{letter-spacing:0.064200px;}
.ls14{letter-spacing:0.066960px;}
.lsc{letter-spacing:0.171120px;}
.ls1b{letter-spacing:0.174000px;}
.lse{letter-spacing:0.174240px;}
.ls11{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.195120px;}
.ls5{letter-spacing:0.368640px;}
.ls2{letter-spacing:0.445680px;}
.lsa{letter-spacing:0.511200px;}
.ls17{letter-spacing:0.514200px;}
.ls21{letter-spacing:0.612000px;}
.ls1{letter-spacing:0.617760px;}
.ls4{letter-spacing:0.738720px;}
.lsd{letter-spacing:3.054240px;}
.ls15{letter-spacing:8.814240px;}
.ls25{letter-spacing:30.906720px;}
.ls1c{letter-spacing:46.746720px;}
.ls20{letter-spacing:53.946720px;}
.ls1d{letter-spacing:54.666720px;}
.ls1e{letter-spacing:55.386720px;}
.ls1a{letter-spacing:61.122720px;}
.lsb{letter-spacing:82.722720px;}
.ls1f{letter-spacing:850.650240px;}
.ls6{letter-spacing:1948.254240px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws0{word-spacing:-29.777760px;}
.ws8{word-spacing:-14.019960px;}
.ws7{word-spacing:-14.016960px;}
.wsa{word-spacing:-13.569960px;}
.ws2{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.461840px;}
.ws3{word-spacing:-13.447440px;}
.wsb{word-spacing:-13.296960px;}
.ws4{word-spacing:-10.902240px;}
.ws6{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.533680px;}
.ws1{word-spacing:0.000000px;}
._1c{margin-left:-2.988000px;}
._9{margin-left:-1.004400px;}
._0{width:1.436400px;}
._16{width:2.537280px;}
._17{width:3.849120px;}
._1e{width:4.892400px;}
._14{width:5.916240px;}
._15{width:7.534560px;}
._18{width:8.904240px;}
._19{width:10.524240px;}
._1a{width:12.489840px;}
._1d{width:15.418080px;}
._20{width:16.792560px;}
._1b{width:18.107280px;}
._21{width:22.828320px;}
._22{width:23.842080px;}
._24{width:28.075680px;}
._23{width:29.700720px;}
._25{width:41.852880px;}
._1f{width:83.783520px;}
._12{width:95.910240px;}
._2{width:126.091920px;}
._1{width:850.650240px;}
._13{width:918.345360px;}
._7{width:1313.744880px;}
._8{width:1447.923840px;}
._a{width:1507.037520px;}
._10{width:1639.582320px;}
._b{width:1705.005600px;}
._6{width:1728.017040px;}
._f{width:1851.971520px;}
._11{width:1999.554960px;}
._5{width:2012.307600px;}
._d{width:2016.729840px;}
._c{width:2030.205120px;}
._e{width:2041.829040px;}
._3{width:2079.300720px;}
._4{width:2171.092080px;}
.fc8{color:rgb(68,114,196);}
.fc7{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(0,123,192);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(126,126,126);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:3.960000px;}
.y16{bottom:12.780000px;}
.y13{bottom:12.960000px;}
.yf6{bottom:12.990000px;}
.yd2{bottom:17.640000px;}
.y84{bottom:21.960000px;}
.y7c{bottom:22.140000px;}
.y76{bottom:26.640000px;}
.yf2{bottom:26.670000px;}
.y15{bottom:31.140000px;}
.y74{bottom:31.320000px;}
.yf5{bottom:31.350000px;}
.y77{bottom:35.820000px;}
.y82{bottom:40.140000px;}
.y83{bottom:40.320000px;}
.y8a{bottom:40.350000px;}
.y7f{bottom:40.365000px;}
.y7b{bottom:40.545000px;}
.y75{bottom:45.000000px;}
.yf1{bottom:45.030000px;}
.y87{bottom:49.140000px;}
.y8c{bottom:49.350000px;}
.yfc{bottom:49.500000px;}
.yf4{bottom:49.530000px;}
.y80{bottom:49.545000px;}
.y8f{bottom:49.680000px;}
.y10d{bottom:49.725000px;}
.y2{bottom:56.880000px;}
.yff{bottom:57.060000px;}
.y73{bottom:58.500000px;}
.yf8{bottom:58.680000px;}
.y7e{bottom:58.725000px;}
.y7a{bottom:58.905000px;}
.y86{bottom:67.500000px;}
.y89{bottom:67.530000px;}
.y8b{bottom:67.710000px;}
.yfa{bottom:67.860000px;}
.yf3{bottom:67.890000px;}
.y10c{bottom:67.905000px;}
.y1{bottom:75.276000px;}
.y8e{bottom:76.860000px;}
.ye2{bottom:85.890000px;}
.yfe{bottom:86.040000px;}
.y79{bottom:86.085000px;}
.yf9{bottom:86.220000px;}
.y10b{bottom:86.265000px;}
.yf0{bottom:94.860000px;}
.ye1{bottom:104.250000px;}
.yfd{bottom:104.400000px;}
.y11a{bottom:104.445000px;}
.y10a{bottom:104.625000px;}
.ye7{bottom:108.720000px;}
.yc3{bottom:118.836000px;}
.yef{bottom:122.220000px;}
.ye0{bottom:122.610000px;}
.y108{bottom:122.805000px;}
.y109{bottom:122.985000px;}
.ye6{bottom:135.900000px;}
.yc2{bottom:137.196000px;}
.yee{bottom:140.580000px;}
.ydf{bottom:140.970000px;}
.y119{bottom:141.165000px;}
.yc1{bottom:155.370000px;}
.y103{bottom:156.630000px;}
.yde{bottom:159.150000px;}
.y118{bottom:159.525000px;}
.ye5{bottom:163.260000px;}
.yed{bottom:167.760000px;}
.yc0{bottom:173.730000px;}
.ydd{bottom:177.510000px;}
.y117{bottom:177.705000px;}
.ye4{bottom:190.620000px;}
.ybf{bottom:192.090000px;}
.y102{bottom:192.810000px;}
.yec{bottom:195.165000px;}
.ydc{bottom:195.870000px;}
.y116{bottom:196.065000px;}
.y11b{bottom:200.910000px;}
.y9c{bottom:206.130000px;}
.ybe{bottom:210.450000px;}
.ydb{bottom:214.050000px;}
.y115{bottom:214.425000px;}
.yeb{bottom:222.345000px;}
.y9b{bottom:224.490000px;}
.ybd{bottom:228.630000px;}
.y101{bottom:229.170000px;}
.y114{bottom:232.605000px;}
.y112{bottom:234.030000px;}
.yda{bottom:241.410000px;}
.y9a{bottom:242.850000px;}
.y6d{bottom:246.990000px;}
.yea{bottom:249.705000px;}
.y113{bottom:250.965000px;}
.yd9{bottom:259.770000px;}
.y99{bottom:261.210000px;}
.y6c{bottom:274.170000px;}
.ye9{bottom:277.065000px;}
.yd8{bottom:278.175000px;}
.y98{bottom:279.390000px;}
.y6b{bottom:292.530000px;}
.ye8{bottom:295.425000px;}
.yd7{bottom:296.355000px;}
.y97{bottom:297.750000px;}
.ybc{bottom:301.530000px;}
.yd6{bottom:314.715000px;}
.y96{bottom:316.110000px;}
.y6a{bottom:319.890000px;}
.y48{bottom:322.050000px;}
.y95{bottom:334.470000px;}
.ybb{bottom:338.295000px;}
.y47{bottom:340.455000px;}
.y94{bottom:352.695000px;}
.yfb{bottom:355.755000px;}
.y69{bottom:356.295000px;}
.yba{bottom:356.655000px;}
.y46{bottom:358.815000px;}
.y93{bottom:371.055000px;}
.y68{bottom:374.655000px;}
.yb9{bottom:374.835000px;}
.y45{bottom:376.995000px;}
.y92{bottom:389.415000px;}
.y67{bottom:392.835000px;}
.yb8{bottom:393.195000px;}
.y66{bottom:411.195000px;}
.yb7{bottom:411.555000px;}
.y44{bottom:413.355000px;}
.y91{bottom:425.595000px;}
.y18{bottom:427.035000px;}
.y65{bottom:429.555000px;}
.yb6{bottom:429.915000px;}
.y64{bottom:447.915000px;}
.yb5{bottom:448.095000px;}
.y43{bottom:449.715000px;}
.y90{bottom:452.955000px;}
.y17{bottom:454.395000px;}
.y63{bottom:466.095000px;}
.y42{bottom:468.075000px;}
.yb4{bottom:475.455000px;}
.y14{bottom:478.515000px;}
.yf7{bottom:484.275000px;}
.y62{bottom:484.455000px;}
.y8d{bottom:486.075000px;}
.y41{bottom:486.255000px;}
.y61{bottom:502.815000px;}
.y111{bottom:509.115000px;}
.y60{bottom:520.995000px;}
.y40{bottom:522.615000px;}
.y12{bottom:533.775000px;}
.yb3{bottom:538.995000px;}
.y5f{bottom:539.355000px;}
.yb2{bottom:557.355000px;}
.y5e{bottom:557.715000px;}
.y3f{bottom:558.975000px;}
.yb1{bottom:575.715000px;}
.y3e{bottom:577.155000px;}
.y110{bottom:582.735000px;}
.y11{bottom:583.815000px;}
.y88{bottom:587.055000px;}
.y5d{bottom:594.075000px;}
.yd5{bottom:594.615000px;}
.y3d{bottom:595.515000px;}
.yb0{bottom:603.075000px;}
.y10{bottom:611.205000px;}
.y5c{bottom:612.285000px;}
.y3c{bottom:613.905000px;}
.yaf{bottom:621.285000px;}
.y5b{bottom:630.645000px;}
.y3b{bottom:632.265000px;}
.y2d{bottom:633.885000px;}
.y10f{bottom:638.205000px;}
.yf{bottom:638.385000px;}
.yae{bottom:639.645000px;}
.y5a{bottom:649.005000px;}
.y2c{bottom:652.065000px;}
.yad{bottom:658.005000px;}
.y59{bottom:667.185000px;}
.y3a{bottom:668.445000px;}
.ye{bottom:670.605000px;}
.yac{bottom:676.185000px;}
.ye3{bottom:677.625000px;}
.y2b{bottom:677.805000px;}
.y85{bottom:678.885000px;}
.y58{bottom:685.545000px;}
.y39{bottom:686.805000px;}
.yab{bottom:694.545000px;}
.y57{bottom:703.905000px;}
.y2a{bottom:705.165000px;}
.yd{bottom:710.925000px;}
.yaa{bottom:712.905000px;}
.y38{bottom:723.525000px;}
.ya9{bottom:731.265000px;}
.y29{bottom:732.525000px;}
.y56{bottom:740.265000px;}
.y37{bottom:741.705000px;}
.y10e{bottom:748.545000px;}
.ya8{bottom:749.445000px;}
.y28{bottom:759.705000px;}
.y36{bottom:760.065000px;}
.yc{bottom:760.245000px;}
.ya7{bottom:767.805000px;}
.y81{bottom:770.505000px;}
.y55{bottom:776.445000px;}
.ya6{bottom:786.165000px;}
.y27{bottom:787.065000px;}
.y54{bottom:794.805000px;}
.y35{bottom:796.425000px;}
.ya5{bottom:804.525000px;}
.yd0{bottom:812.805000px;}
.yb{bottom:813.165000px;}
.y26{bottom:814.425000px;}
.y107{bottom:822.165000px;}
.ya4{bottom:822.705000px;}
.ycf{bottom:831.165000px;}
.y53{bottom:831.525000px;}
.y34{bottom:832.605000px;}
.y78{bottom:834.945000px;}
.ya3{bottom:841.065000px;}
.y25{bottom:841.785000px;}
.ya{bottom:842.505000px;}
.yce{bottom:849.525000px;}
.y52{bottom:849.705000px;}
.ya2{bottom:859.425000px;}
.ycd{bottom:867.705000px;}
.y24{bottom:868.965000px;}
.y51{bottom:886.110000px;}
.ya1{bottom:886.650000px;}
.y9{bottom:886.830000px;}
.y33{bottom:887.370000px;}
.y23{bottom:896.370000px;}
.y50{bottom:904.470000px;}
.ycc{bottom:913.290000px;}
.ya0{bottom:914.010000px;}
.y8{bottom:916.170000px;}
.y4f{bottom:922.650000px;}
.y22{bottom:923.730000px;}
.y9f{bottom:932.370000px;}
.ycb{bottom:940.650000px;}
.y4e{bottom:941.010000px;}
.y72{bottom:945.150000px;}
.y9e{bottom:950.730000px;}
.y21{bottom:950.910000px;}
.y7{bottom:957.930000px;}
.yca{bottom:959.010000px;}
.y4d{bottom:959.370000px;}
.y32{bottom:959.910000px;}
.y106{bottom:969.090000px;}
.yc9{bottom:977.370000px;}
.y4c{bottom:977.730000px;}
.y20{bottom:978.270000px;}
.y9d{bottom:986.910000px;}
.yd4{bottom:988.890000px;}
.y6{bottom:991.230000px;}
.yc8{bottom:995.730000px;}
.y4b{bottom:995.910000px;}
.y1f{bottom:1005.630000px;}
.yc7{bottom:1013.910000px;}
.y4a{bottom:1014.270000px;}
.y31{bottom:1014.630000px;}
.y5{bottom:1024.530000px;}
.y71{bottom:1027.950000px;}
.yc6{bottom:1032.270000px;}
.y49{bottom:1032.630000px;}
.y1e{bottom:1032.990000px;}
.yd3{bottom:1045.050000px;}
.yc5{bottom:1050.630000px;}
.y30{bottom:1050.990000px;}
.y4{bottom:1051.710000px;}
.y1d{bottom:1060.170000px;}
.yc4{bottom:1068.990000px;}
.y2f{bottom:1069.170000px;}
.y3{bottom:1079.610000px;}
.y105{bottom:1079.970000px;}
.yd1{bottom:1082.850000px;}
.y70{bottom:1087.170000px;}
.y1c{bottom:1087.530000px;}
.y6f{bottom:1105.530000px;}
.y2e{bottom:1105.890000px;}
.y100{bottom:1112.010000px;}
.y1b{bottom:1114.890000px;}
.y104{bottom:1121.010000px;}
.y6e{bottom:1123.890000px;}
.y1a{bottom:1142.100000px;}
.y19{bottom:1195.380000px;}
.h11{height:36.180000px;}
.h6{height:36.360000px;}
.h18{height:49.284492px;}
.h7{height:54.540000px;}
.h17{height:54.720000px;}
.h1b{height:54.756000px;}
.h2{height:59.439023px;}
.h3{height:61.189805px;}
.h10{height:61.423863px;}
.h8{height:62.211094px;}
.hc{height:63.540000px;}
.h1a{height:72.900000px;}
.ha{height:74.004654px;}
.h9{height:81.900000px;}
.h14{height:82.296000px;}
.hd{height:90.900000px;}
.he{height:90.936000px;}
.h4{height:98.051133px;}
.hf{height:100.260000px;}
.hb{height:109.476000px;}
.h15{height:109.620000px;}
.h16{height:127.800000px;}
.h5{height:134.912461px;}
.h19{height:146.196000px;}
.h1c{height:274.350000px;}
.h13{height:309.810000px;}
.h12{height:392.835000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:45.180000px;}
.w10{width:62.640000px;}
.w12{width:105.660000px;}
.w7{width:111.420000px;}
.w5{width:135.396000px;}
.we{width:145.656000px;}
.w9{width:155.370000px;}
.w8{width:170.310000px;}
.wa{width:191.550000px;}
.w6{width:203.070000px;}
.w3{width:204.870000px;}
.w4{width:292.890000px;}
.wc{width:435.135000px;}
.wb{width:435.855000px;}
.w11{width:488.445000px;}
.wf{width:658.185000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:5.220000px;}
.x17{left:7.740000px;}
.x23{left:16.560000px;}
.x26{left:17.640000px;}
.x27{left:18.900000px;}
.x10{left:20.520000px;}
.xc{left:22.494000px;}
.x20{left:26.454000px;}
.x2c{left:28.800000px;}
.x2a{left:29.880000px;}
.x12{left:31.545000px;}
.x2d{left:42.300000px;}
.x2e{left:46.974000px;}
.x25{left:51.114000px;}
.xe{left:61.200000px;}
.x2b{left:62.640000px;}
.x2f{left:66.774000px;}
.x21{left:71.094000px;}
.x29{left:72.720000px;}
.x11{left:94.140000px;}
.x30{left:106.415987px;}
.x16{left:120.456000px;}
.x1f{left:126.576000px;}
.x2{left:127.655987px;}
.xa{left:130.175987px;}
.x14{left:154.649987px;}
.x13{left:160.049987px;}
.x1e{left:170.309987px;}
.x28{left:172.470000px;}
.x1c{left:175.349987px;}
.x15{left:181.649987px;}
.x1d{left:202.169987px;}
.x1b{left:208.649987px;}
.x33{left:211.905000px;}
.x5{left:234.389987px;}
.x7{left:241.229987px;}
.x22{left:318.855000px;}
.x18{left:324.255000px;}
.xd{left:335.775000px;}
.xb{left:387.794987px;}
.x8{left:427.754987px;}
.x19{left:436.395000px;}
.x9{left:446.474987px;}
.x6{left:457.094987px;}
.x4{left:467.924987px;}
.x1a{left:607.605000px;}
.xf{left:629.385000px;}
.x34{left:659.670000px;}
.x3{left:676.049987px;}
.x32{left:690.269987px;}
.x31{left:697.829987px;}
.x1{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.794667pt;}
.ls23{letter-spacing:-0.265067pt;}
.ls9{letter-spacing:-0.225067pt;}
.ls24{letter-spacing:-0.185600pt;}
.ls18{letter-spacing:-0.095467pt;}
.ls8{letter-spacing:-0.090667pt;}
.ls19{letter-spacing:-0.057600pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls26{letter-spacing:-0.039040pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016640pt;}
.ls16{letter-spacing:0.018347pt;}
.lsf{letter-spacing:0.038187pt;}
.ls12{letter-spacing:0.053867pt;}
.ls22{letter-spacing:0.057067pt;}
.ls14{letter-spacing:0.059520pt;}
.lsc{letter-spacing:0.152107pt;}
.ls1b{letter-spacing:0.154667pt;}
.lse{letter-spacing:0.154880pt;}
.ls11{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.173440pt;}
.ls5{letter-spacing:0.327680pt;}
.ls2{letter-spacing:0.396160pt;}
.lsa{letter-spacing:0.454400pt;}
.ls17{letter-spacing:0.457067pt;}
.ls21{letter-spacing:0.544000pt;}
.ls1{letter-spacing:0.549120pt;}
.ls4{letter-spacing:0.656640pt;}
.lsd{letter-spacing:2.714880pt;}
.ls15{letter-spacing:7.834880pt;}
.ls25{letter-spacing:27.472640pt;}
.ls1c{letter-spacing:41.552640pt;}
.ls20{letter-spacing:47.952640pt;}
.ls1d{letter-spacing:48.592640pt;}
.ls1e{letter-spacing:49.232640pt;}
.ls1a{letter-spacing:54.331307pt;}
.lsb{letter-spacing:73.531307pt;}
.ls1f{letter-spacing:756.133547pt;}
.ls6{letter-spacing:1731.781547pt;}
.ws9{word-spacing:-53.120000pt;}
.ws0{word-spacing:-26.469120pt;}
.ws8{word-spacing:-12.462187pt;}
.ws7{word-spacing:-12.459520pt;}
.wsa{word-spacing:-12.062187pt;}
.ws2{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.966080pt;}
.ws3{word-spacing:-11.953280pt;}
.wsb{word-spacing:-11.819520pt;}
.ws4{word-spacing:-9.690880pt;}
.ws6{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.585493pt;}
.ws1{word-spacing:0.000000pt;}
._1c{margin-left:-2.656000pt;}
._9{margin-left:-0.892800pt;}
._0{width:1.276800pt;}
._16{width:2.255360pt;}
._17{width:3.421440pt;}
._1e{width:4.348800pt;}
._14{width:5.258880pt;}
._15{width:6.697387pt;}
._18{width:7.914880pt;}
._19{width:9.354880pt;}
._1a{width:11.102080pt;}
._1d{width:13.704960pt;}
._20{width:14.926720pt;}
._1b{width:16.095360pt;}
._21{width:20.291840pt;}
._22{width:21.192960pt;}
._24{width:24.956160pt;}
._23{width:26.400640pt;}
._25{width:37.202560pt;}
._1f{width:74.474240pt;}
._12{width:85.253547pt;}
._2{width:112.081707pt;}
._1{width:756.133547pt;}
._13{width:816.306987pt;}
._7{width:1167.773227pt;}
._8{width:1287.043413pt;}
._a{width:1339.588907pt;}
._10{width:1457.406507pt;}
._b{width:1515.560533pt;}
._6{width:1536.015147pt;}
._f{width:1646.196907pt;}
._11{width:1777.382187pt;}
._5{width:1788.717867pt;}
._d{width:1792.648747pt;}
._c{width:1804.626773pt;}
._e{width:1814.959147pt;}
._3{width:1848.267307pt;}
._4{width:1929.859627pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:3.520000pt;}
.y16{bottom:11.360000pt;}
.y13{bottom:11.520000pt;}
.yf6{bottom:11.546667pt;}
.yd2{bottom:15.680000pt;}
.y84{bottom:19.520000pt;}
.y7c{bottom:19.680000pt;}
.y76{bottom:23.680000pt;}
.yf2{bottom:23.706667pt;}
.y15{bottom:27.680000pt;}
.y74{bottom:27.840000pt;}
.yf5{bottom:27.866667pt;}
.y77{bottom:31.840000pt;}
.y82{bottom:35.680000pt;}
.y83{bottom:35.840000pt;}
.y8a{bottom:35.866667pt;}
.y7f{bottom:35.880000pt;}
.y7b{bottom:36.040000pt;}
.y75{bottom:40.000000pt;}
.yf1{bottom:40.026667pt;}
.y87{bottom:43.680000pt;}
.y8c{bottom:43.866667pt;}
.yfc{bottom:44.000000pt;}
.yf4{bottom:44.026667pt;}
.y80{bottom:44.040000pt;}
.y8f{bottom:44.160000pt;}
.y10d{bottom:44.200000pt;}
.y2{bottom:50.560000pt;}
.yff{bottom:50.720000pt;}
.y73{bottom:52.000000pt;}
.yf8{bottom:52.160000pt;}
.y7e{bottom:52.200000pt;}
.y7a{bottom:52.360000pt;}
.y86{bottom:60.000000pt;}
.y89{bottom:60.026667pt;}
.y8b{bottom:60.186667pt;}
.yfa{bottom:60.320000pt;}
.yf3{bottom:60.346667pt;}
.y10c{bottom:60.360000pt;}
.y1{bottom:66.912000pt;}
.y8e{bottom:68.320000pt;}
.ye2{bottom:76.346667pt;}
.yfe{bottom:76.480000pt;}
.y79{bottom:76.520000pt;}
.yf9{bottom:76.640000pt;}
.y10b{bottom:76.680000pt;}
.yf0{bottom:84.320000pt;}
.ye1{bottom:92.666667pt;}
.yfd{bottom:92.800000pt;}
.y11a{bottom:92.840000pt;}
.y10a{bottom:93.000000pt;}
.ye7{bottom:96.640000pt;}
.yc3{bottom:105.632000pt;}
.yef{bottom:108.640000pt;}
.ye0{bottom:108.986667pt;}
.y108{bottom:109.160000pt;}
.y109{bottom:109.320000pt;}
.ye6{bottom:120.800000pt;}
.yc2{bottom:121.952000pt;}
.yee{bottom:124.960000pt;}
.ydf{bottom:125.306667pt;}
.y119{bottom:125.480000pt;}
.yc1{bottom:138.106667pt;}
.y103{bottom:139.226667pt;}
.yde{bottom:141.466667pt;}
.y118{bottom:141.800000pt;}
.ye5{bottom:145.120000pt;}
.yed{bottom:149.120000pt;}
.yc0{bottom:154.426667pt;}
.ydd{bottom:157.786667pt;}
.y117{bottom:157.960000pt;}
.ye4{bottom:169.440000pt;}
.ybf{bottom:170.746667pt;}
.y102{bottom:171.386667pt;}
.yec{bottom:173.480000pt;}
.ydc{bottom:174.106667pt;}
.y116{bottom:174.280000pt;}
.y11b{bottom:178.586667pt;}
.y9c{bottom:183.226667pt;}
.ybe{bottom:187.066667pt;}
.ydb{bottom:190.266667pt;}
.y115{bottom:190.600000pt;}
.yeb{bottom:197.640000pt;}
.y9b{bottom:199.546667pt;}
.ybd{bottom:203.226667pt;}
.y101{bottom:203.706667pt;}
.y114{bottom:206.760000pt;}
.y112{bottom:208.026667pt;}
.yda{bottom:214.586667pt;}
.y9a{bottom:215.866667pt;}
.y6d{bottom:219.546667pt;}
.yea{bottom:221.960000pt;}
.y113{bottom:223.080000pt;}
.yd9{bottom:230.906667pt;}
.y99{bottom:232.186667pt;}
.y6c{bottom:243.706667pt;}
.ye9{bottom:246.280000pt;}
.yd8{bottom:247.266667pt;}
.y98{bottom:248.346667pt;}
.y6b{bottom:260.026667pt;}
.ye8{bottom:262.600000pt;}
.yd7{bottom:263.426667pt;}
.y97{bottom:264.666667pt;}
.ybc{bottom:268.026667pt;}
.yd6{bottom:279.746667pt;}
.y96{bottom:280.986667pt;}
.y6a{bottom:284.346667pt;}
.y48{bottom:286.266667pt;}
.y95{bottom:297.306667pt;}
.ybb{bottom:300.706667pt;}
.y47{bottom:302.626667pt;}
.y94{bottom:313.506667pt;}
.yfb{bottom:316.226667pt;}
.y69{bottom:316.706667pt;}
.yba{bottom:317.026667pt;}
.y46{bottom:318.946667pt;}
.y93{bottom:329.826667pt;}
.y68{bottom:333.026667pt;}
.yb9{bottom:333.186667pt;}
.y45{bottom:335.106667pt;}
.y92{bottom:346.146667pt;}
.y67{bottom:349.186667pt;}
.yb8{bottom:349.506667pt;}
.y66{bottom:365.506667pt;}
.yb7{bottom:365.826667pt;}
.y44{bottom:367.426667pt;}
.y91{bottom:378.306667pt;}
.y18{bottom:379.586667pt;}
.y65{bottom:381.826667pt;}
.yb6{bottom:382.146667pt;}
.y64{bottom:398.146667pt;}
.yb5{bottom:398.306667pt;}
.y43{bottom:399.746667pt;}
.y90{bottom:402.626667pt;}
.y17{bottom:403.906667pt;}
.y63{bottom:414.306667pt;}
.y42{bottom:416.066667pt;}
.yb4{bottom:422.626667pt;}
.y14{bottom:425.346667pt;}
.yf7{bottom:430.466667pt;}
.y62{bottom:430.626667pt;}
.y8d{bottom:432.066667pt;}
.y41{bottom:432.226667pt;}
.y61{bottom:446.946667pt;}
.y111{bottom:452.546667pt;}
.y60{bottom:463.106667pt;}
.y40{bottom:464.546667pt;}
.y12{bottom:474.466667pt;}
.yb3{bottom:479.106667pt;}
.y5f{bottom:479.426667pt;}
.yb2{bottom:495.426667pt;}
.y5e{bottom:495.746667pt;}
.y3f{bottom:496.866667pt;}
.yb1{bottom:511.746667pt;}
.y3e{bottom:513.026667pt;}
.y110{bottom:517.986667pt;}
.y11{bottom:518.946667pt;}
.y88{bottom:521.826667pt;}
.y5d{bottom:528.066667pt;}
.yd5{bottom:528.546667pt;}
.y3d{bottom:529.346667pt;}
.yb0{bottom:536.066667pt;}
.y10{bottom:543.293333pt;}
.y5c{bottom:544.253333pt;}
.y3c{bottom:545.693333pt;}
.yaf{bottom:552.253333pt;}
.y5b{bottom:560.573333pt;}
.y3b{bottom:562.013333pt;}
.y2d{bottom:563.453333pt;}
.y10f{bottom:567.293333pt;}
.yf{bottom:567.453333pt;}
.yae{bottom:568.573333pt;}
.y5a{bottom:576.893333pt;}
.y2c{bottom:579.613333pt;}
.yad{bottom:584.893333pt;}
.y59{bottom:593.053333pt;}
.y3a{bottom:594.173333pt;}
.ye{bottom:596.093333pt;}
.yac{bottom:601.053333pt;}
.ye3{bottom:602.333333pt;}
.y2b{bottom:602.493333pt;}
.y85{bottom:603.453333pt;}
.y58{bottom:609.373333pt;}
.y39{bottom:610.493333pt;}
.yab{bottom:617.373333pt;}
.y57{bottom:625.693333pt;}
.y2a{bottom:626.813333pt;}
.yd{bottom:631.933333pt;}
.yaa{bottom:633.693333pt;}
.y38{bottom:643.133333pt;}
.ya9{bottom:650.013333pt;}
.y29{bottom:651.133333pt;}
.y56{bottom:658.013333pt;}
.y37{bottom:659.293333pt;}
.y10e{bottom:665.373333pt;}
.ya8{bottom:666.173333pt;}
.y28{bottom:675.293333pt;}
.y36{bottom:675.613333pt;}
.yc{bottom:675.773333pt;}
.ya7{bottom:682.493333pt;}
.y81{bottom:684.893333pt;}
.y55{bottom:690.173333pt;}
.ya6{bottom:698.813333pt;}
.y27{bottom:699.613333pt;}
.y54{bottom:706.493333pt;}
.y35{bottom:707.933333pt;}
.ya5{bottom:715.133333pt;}
.yd0{bottom:722.493333pt;}
.yb{bottom:722.813333pt;}
.y26{bottom:723.933333pt;}
.y107{bottom:730.813333pt;}
.ya4{bottom:731.293333pt;}
.ycf{bottom:738.813333pt;}
.y53{bottom:739.133333pt;}
.y34{bottom:740.093333pt;}
.y78{bottom:742.173333pt;}
.ya3{bottom:747.613333pt;}
.y25{bottom:748.253333pt;}
.ya{bottom:748.893333pt;}
.yce{bottom:755.133333pt;}
.y52{bottom:755.293333pt;}
.ya2{bottom:763.933333pt;}
.ycd{bottom:771.293333pt;}
.y24{bottom:772.413333pt;}
.y51{bottom:787.653333pt;}
.ya1{bottom:788.133333pt;}
.y9{bottom:788.293333pt;}
.y33{bottom:788.773333pt;}
.y23{bottom:796.773333pt;}
.y50{bottom:803.973333pt;}
.ycc{bottom:811.813333pt;}
.ya0{bottom:812.453333pt;}
.y8{bottom:814.373333pt;}
.y4f{bottom:820.133333pt;}
.y22{bottom:821.093333pt;}
.y9f{bottom:828.773333pt;}
.ycb{bottom:836.133333pt;}
.y4e{bottom:836.453333pt;}
.y72{bottom:840.133333pt;}
.y9e{bottom:845.093333pt;}
.y21{bottom:845.253333pt;}
.y7{bottom:851.493333pt;}
.yca{bottom:852.453333pt;}
.y4d{bottom:852.773333pt;}
.y32{bottom:853.253333pt;}
.y106{bottom:861.413333pt;}
.yc9{bottom:868.773333pt;}
.y4c{bottom:869.093333pt;}
.y20{bottom:869.573333pt;}
.y9d{bottom:877.253333pt;}
.yd4{bottom:879.013333pt;}
.y6{bottom:881.093333pt;}
.yc8{bottom:885.093333pt;}
.y4b{bottom:885.253333pt;}
.y1f{bottom:893.893333pt;}
.yc7{bottom:901.253333pt;}
.y4a{bottom:901.573333pt;}
.y31{bottom:901.893333pt;}
.y5{bottom:910.693333pt;}
.y71{bottom:913.733333pt;}
.yc6{bottom:917.573333pt;}
.y49{bottom:917.893333pt;}
.y1e{bottom:918.213333pt;}
.yd3{bottom:928.933333pt;}
.yc5{bottom:933.893333pt;}
.y30{bottom:934.213333pt;}
.y4{bottom:934.853333pt;}
.y1d{bottom:942.373333pt;}
.yc4{bottom:950.213333pt;}
.y2f{bottom:950.373333pt;}
.y3{bottom:959.653333pt;}
.y105{bottom:959.973333pt;}
.yd1{bottom:962.533333pt;}
.y70{bottom:966.373333pt;}
.y1c{bottom:966.693333pt;}
.y6f{bottom:982.693333pt;}
.y2e{bottom:983.013333pt;}
.y100{bottom:988.453333pt;}
.y1b{bottom:991.013333pt;}
.y104{bottom:996.453333pt;}
.y6e{bottom:999.013333pt;}
.y1a{bottom:1015.200000pt;}
.y19{bottom:1062.560000pt;}
.h11{height:32.160000pt;}
.h6{height:32.320000pt;}
.h18{height:43.808438pt;}
.h7{height:48.480000pt;}
.h17{height:48.640000pt;}
.h1b{height:48.672000pt;}
.h2{height:52.834688pt;}
.h3{height:54.390938pt;}
.h10{height:54.598989pt;}
.h8{height:55.298750pt;}
.hc{height:56.480000pt;}
.h1a{height:64.800000pt;}
.ha{height:65.781915pt;}
.h9{height:72.800000pt;}
.h14{height:73.152000pt;}
.hd{height:80.800000pt;}
.he{height:80.832000pt;}
.h4{height:87.156562pt;}
.hf{height:89.120000pt;}
.hb{height:97.312000pt;}
.h15{height:97.440000pt;}
.h16{height:113.600000pt;}
.h5{height:119.922187pt;}
.h19{height:129.952000pt;}
.h1c{height:243.866667pt;}
.h13{height:275.386667pt;}
.h12{height:349.186667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:40.160000pt;}
.w10{width:55.680000pt;}
.w12{width:93.920000pt;}
.w7{width:99.040000pt;}
.w5{width:120.352000pt;}
.we{width:129.472000pt;}
.w9{width:138.106667pt;}
.w8{width:151.386667pt;}
.wa{width:170.266667pt;}
.w6{width:180.506667pt;}
.w3{width:182.106667pt;}
.w4{width:260.346667pt;}
.wc{width:386.786667pt;}
.wb{width:387.426667pt;}
.w11{width:434.173333pt;}
.wf{width:585.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:4.640000pt;}
.x17{left:6.880000pt;}
.x23{left:14.720000pt;}
.x26{left:15.680000pt;}
.x27{left:16.800000pt;}
.x10{left:18.240000pt;}
.xc{left:19.994667pt;}
.x20{left:23.514667pt;}
.x2c{left:25.600000pt;}
.x2a{left:26.560000pt;}
.x12{left:28.040000pt;}
.x2d{left:37.600000pt;}
.x2e{left:41.754667pt;}
.x25{left:45.434667pt;}
.xe{left:54.400000pt;}
.x2b{left:55.680000pt;}
.x2f{left:59.354667pt;}
.x21{left:63.194667pt;}
.x29{left:64.640000pt;}
.x11{left:83.680000pt;}
.x30{left:94.591988pt;}
.x16{left:107.072000pt;}
.x1f{left:112.512000pt;}
.x2{left:113.471988pt;}
.xa{left:115.711988pt;}
.x14{left:137.466655pt;}
.x13{left:142.266655pt;}
.x1e{left:151.386655pt;}
.x28{left:153.306667pt;}
.x1c{left:155.866655pt;}
.x15{left:161.466655pt;}
.x1d{left:179.706655pt;}
.x1b{left:185.466655pt;}
.x33{left:188.360000pt;}
.x5{left:208.346655pt;}
.x7{left:214.426655pt;}
.x22{left:283.426667pt;}
.x18{left:288.226667pt;}
.xd{left:298.466667pt;}
.xb{left:344.706655pt;}
.x8{left:380.226655pt;}
.x19{left:387.906667pt;}
.x9{left:396.866655pt;}
.x6{left:406.306655pt;}
.x4{left:415.933322pt;}
.x1a{left:540.093333pt;}
.xf{left:559.453333pt;}
.x34{left:586.373333pt;}
.x3{left:600.933322pt;}
.x32{left:613.573322pt;}
.x31{left:620.293322pt;}
.x1{left:680.453322pt;}
}




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