
    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_033b3e63c333884da8933840.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_46f46ac825fb058a111f4941.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_965c435398f1706ac43b6b70.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_86c386c1cd7ab924ab7d36f9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_28c88ca8f337e3ec1dfa20de.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936035;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e9d6e9192a95c2a327f8f23b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0c904d441ad3f60b86746783.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_732362ac572416cd0725e26f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978027;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls1c{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.ls22{letter-spacing:-0.106800px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.590400px;}
.ls3{letter-spacing:0.828000px;}
.ls21{letter-spacing:0.900000px;}
.ls7{letter-spacing:0.978000px;}
.ls12{letter-spacing:2.340000px;}
.ls18{letter-spacing:3.060000px;}
.ls1a{letter-spacing:3.780000px;}
.ls1b{letter-spacing:4.500000px;}
.ls16{letter-spacing:4.680000px;}
.ls15{letter-spacing:5.220000px;}
.ls20{letter-spacing:7.380000px;}
.ls8{letter-spacing:10.026720px;}
.ls17{letter-spacing:10.260000px;}
.lsd{letter-spacing:13.626720px;}
.ls1e{letter-spacing:13.860000px;}
.lsa{letter-spacing:17.946720px;}
.ls10{letter-spacing:18.666720px;}
.ls19{letter-spacing:21.546720px;}
.ls1{letter-spacing:22.986720px;}
.ls13{letter-spacing:26.586720px;}
.ls6{letter-spacing:38.826720px;}
.ls5{letter-spacing:40.266720px;}
.lsf{letter-spacing:40.986720px;}
.ls1d{letter-spacing:41.850720px;}
.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:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-2848.081680px;}
._3{margin-left:-1383.888960px;}
._4{margin-left:-997.269120px;}
._5{margin-left:-991.969920px;}
._6{margin-left:-512.988480px;}
._7{margin-left:-5.950080px;}
._8{margin-left:-3.841920px;}
._12{margin-left:-2.619360px;}
._2{margin-left:-1.059840px;}
._0{width:1.244880px;}
._d{width:2.398560px;}
._c{width:3.687600px;}
._b{width:5.491680px;}
._14{width:6.886320px;}
._11{width:8.002800px;}
._17{width:9.940320px;}
._18{width:11.015280px;}
._13{width:12.689280px;}
._16{width:13.884480px;}
._1c{width:15.987600px;}
._10{width:17.938080px;}
._1e{width:19.002000px;}
._e{width:20.089440px;}
._f{width:21.165120px;}
._15{width:22.230720px;}
._1a{width:23.994000px;}
._19{width:25.228800px;}
._1b{width:29.471760px;}
._9{width:41.559840px;}
._a{width:43.608720px;}
._1d{width:218.781360px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,35,35);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:3.240000px;}
.y12{bottom:5.760000px;}
.y2a{bottom:5.940000px;}
.y1e{bottom:14.400000px;}
.yae{bottom:20.340000px;}
.ya7{bottom:20.520000px;}
.y80{bottom:25.560000px;}
.yd8{bottom:25.740000px;}
.y29{bottom:25.770000px;}
.y1d{bottom:43.230000px;}
.y28{bottom:45.570000px;}
.y6{bottom:59.256000px;}
.y1c{bottom:63.210000px;}
.y27{bottom:65.370000px;}
.y1b{bottom:83.010000px;}
.y26{bottom:85.170000px;}
.y75{bottom:99.576000px;}
.y11a{bottom:102.096000px;}
.yec{bottom:102.276000px;}
.y1a{bottom:102.810000px;}
.y25{bottom:105.150000px;}
.yd6{bottom:105.156000px;}
.ya1{bottom:117.036000px;}
.y74{bottom:119.376000px;}
.yd5{bottom:119.916000px;}
.y119{bottom:121.896000px;}
.yeb{bottom:122.076000px;}
.y19{bottom:122.610000px;}
.y3f{bottom:122.976000px;}
.y24{bottom:124.950000px;}
.ya0{bottom:136.836000px;}
.yd4{bottom:137.916000px;}
.y73{bottom:139.176000px;}
.y118{bottom:141.696000px;}
.yea{bottom:141.876000px;}
.y18{bottom:142.410000px;}
.y3e{bottom:142.776000px;}
.y23{bottom:144.750000px;}
.yd3{bottom:155.910000px;}
.y9f{bottom:156.810000px;}
.y72{bottom:158.970000px;}
.y117{bottom:161.670000px;}
.ye9{bottom:161.850000px;}
.y17{bottom:162.390000px;}
.y3d{bottom:162.570000px;}
.y22{bottom:164.550000px;}
.yd2{bottom:173.910000px;}
.y9e{bottom:176.610000px;}
.y71{bottom:180.030000px;}
.y116{bottom:181.470000px;}
.ye8{bottom:181.650000px;}
.y16{bottom:182.190000px;}
.y3c{bottom:182.370000px;}
.y21{bottom:184.350000px;}
.yd1{bottom:191.910000px;}
.y9d{bottom:196.410000px;}
.y70{bottom:200.910000px;}
.y115{bottom:201.270000px;}
.ye7{bottom:201.450000px;}
.y15{bottom:201.990000px;}
.y3b{bottom:202.350000px;}
.y20{bottom:204.330000px;}
.y123{bottom:208.470000px;}
.yd0{bottom:209.910000px;}
.y9c{bottom:216.210000px;}
.y114{bottom:221.070000px;}
.ye6{bottom:221.250000px;}
.y14{bottom:221.790000px;}
.y3a{bottom:222.150000px;}
.y1f{bottom:224.130000px;}
.ycf{bottom:227.910000px;}
.y122{bottom:228.270000px;}
.y9b{bottom:236.010000px;}
.y113{bottom:240.870000px;}
.ye5{bottom:241.050000px;}
.y39{bottom:241.950000px;}
.y6f{bottom:242.670000px;}
.y121{bottom:248.070000px;}
.yce{bottom:251.670000px;}
.y9a{bottom:255.990000px;}
.y112{bottom:260.850000px;}
.ye4{bottom:261.030000px;}
.y38{bottom:261.750000px;}
.y6e{bottom:262.470000px;}
.y120{bottom:267.870000px;}
.ycd{bottom:271.470000px;}
.y99{bottom:275.835000px;}
.y111{bottom:280.695000px;}
.ye3{bottom:280.875000px;}
.y37{bottom:281.595000px;}
.y6d{bottom:283.575000px;}
.ycc{bottom:286.275000px;}
.y11f{bottom:287.895000px;}
.y98{bottom:295.635000px;}
.y110{bottom:300.495000px;}
.ye2{bottom:300.675000px;}
.y36{bottom:301.575000px;}
.y6c{bottom:304.455000px;}
.ycb{bottom:306.975000px;}
.y11e{bottom:307.695000px;}
.y97{bottom:315.435000px;}
.y10f{bottom:320.295000px;}
.ye1{bottom:320.475000px;}
.y35{bottom:321.375000px;}
.y6b{bottom:325.335000px;}
.y11d{bottom:327.495000px;}
.y11c{bottom:329.295000px;}
.y96{bottom:335.235000px;}
.y34{bottom:341.175000px;}
.ye0{bottom:341.355000px;}
.y6a{bottom:346.215000px;}
.yca{bottom:347.295000px;}
.y10e{bottom:349.095000px;}
.y95{bottom:355.215000px;}
.y33{bottom:360.975000px;}
.ydf{bottom:362.235000px;}
.y69{bottom:367.095000px;}
.yc9{bottom:367.995000px;}
.y10d{bottom:368.895000px;}
.y94{bottom:375.015000px;}
.y32{bottom:380.775000px;}
.yde{bottom:383.295000px;}
.y68{bottom:386.895000px;}
.yc8{bottom:388.515000px;}
.y10c{bottom:388.875000px;}
.y93{bottom:394.815000px;}
.y31{bottom:400.755000px;}
.ydd{bottom:403.095000px;}
.y67{bottom:406.875000px;}
.y10b{bottom:408.675000px;}
.yc7{bottom:409.035000px;}
.y92{bottom:414.615000px;}
.y30{bottom:420.555000px;}
.ydc{bottom:422.895000px;}
.y66{bottom:426.675000px;}
.y10a{bottom:428.475000px;}
.yc6{bottom:429.735000px;}
.y91{bottom:434.415000px;}
.ydb{bottom:437.655000px;}
.y2f{bottom:440.355000px;}
.y65{bottom:446.475000px;}
.y109{bottom:448.275000px;}
.y90{bottom:454.395000px;}
.yc5{bottom:456.015000px;}
.yda{bottom:458.355000px;}
.y2e{bottom:460.155000px;}
.y64{bottom:466.275000px;}
.y108{bottom:468.075000px;}
.y8f{bottom:474.195000px;}
.yc4{bottom:475.815000px;}
.yd9{bottom:478.875000px;}
.y2d{bottom:479.955000px;}
.y63{bottom:486.075000px;}
.y107{bottom:488.055000px;}
.y8e{bottom:493.995000px;}
.yc3{bottom:495.795000px;}
.yd7{bottom:499.395000px;}
.y2c{bottom:499.935000px;}
.y62{bottom:506.055000px;}
.y106{bottom:507.855000px;}
.y8d{bottom:513.795000px;}
.yc2{bottom:515.595000px;}
.y2b{bottom:519.735000px;}
.y61{bottom:525.855000px;}
.y105{bottom:527.655000px;}
.y8c{bottom:533.595000px;}
.yc1{bottom:535.395000px;}
.y13{bottom:535.935000px;}
.y60{bottom:545.655000px;}
.y104{bottom:547.455000px;}
.y8b{bottom:553.575000px;}
.yc0{bottom:555.195000px;}
.y5f{bottom:565.485000px;}
.y103{bottom:567.285000px;}
.y8a{bottom:573.405000px;}
.ybf{bottom:575.025000px;}
.y5e{bottom:585.285000px;}
.y102{bottom:587.265000px;}
.y89{bottom:593.205000px;}
.ybe{bottom:595.005000px;}
.y5d{bottom:605.265000px;}
.y101{bottom:607.065000px;}
.y88{bottom:613.005000px;}
.ybd{bottom:614.805000px;}
.y5c{bottom:625.065000px;}
.y100{bottom:626.865000px;}
.y87{bottom:632.805000px;}
.ybc{bottom:634.605000px;}
.y5b{bottom:644.865000px;}
.yff{bottom:646.665000px;}
.y86{bottom:647.745000px;}
.ybb{bottom:654.405000px;}
.y5a{bottom:664.665000px;}
.yfe{bottom:666.465000px;}
.y85{bottom:668.265000px;}
.yba{bottom:674.205000px;}
.y59{bottom:684.465000px;}
.yfd{bottom:686.445000px;}
.y84{bottom:688.785000px;}
.yb9{bottom:694.185000px;}
.y58{bottom:704.445000px;}
.yfc{bottom:706.245000px;}
.y83{bottom:709.485000px;}
.yb8{bottom:713.985000px;}
.y57{bottom:724.245000px;}
.y11b{bottom:726.045000px;}
.y82{bottom:730.005000px;}
.yb7{bottom:733.785000px;}
.yfb{bottom:735.045000px;}
.y56{bottom:744.045000px;}
.y81{bottom:750.525000px;}
.yb6{bottom:753.585000px;}
.yfa{bottom:754.845000px;}
.y55{bottom:763.845000px;}
.y7f{bottom:771.225000px;}
.yb5{bottom:773.385000px;}
.yf9{bottom:774.645000px;}
.y11{bottom:776.265000px;}
.y54{bottom:783.645000px;}
.yb4{bottom:788.325000px;}
.yf8{bottom:794.625000px;}
.y53{bottom:803.625000px;}
.y10{bottom:804.165000px;}
.yb3{bottom:806.325000px;}
.yf7{bottom:814.425000px;}
.y7e{bottom:817.485000px;}
.y52{bottom:823.425000px;}
.yf{bottom:823.965000px;}
.yb2{bottom:824.325000px;}
.yf6{bottom:834.225000px;}
.y7d{bottom:837.285000px;}
.yb1{bottom:842.370000px;}
.y51{bottom:843.270000px;}
.ye{bottom:849.210000px;}
.y7c{bottom:852.090000px;}
.yf5{bottom:854.070000px;}
.yb0{bottom:860.370000px;}
.y50{bottom:863.070000px;}
.yd{bottom:863.790000px;}
.y7b{bottom:872.610000px;}
.yf4{bottom:873.870000px;}
.yaf{bottom:878.370000px;}
.y4f{bottom:882.870000px;}
.yc{bottom:888.810000px;}
.y7a{bottom:893.310000px;}
.yf3{bottom:893.850000px;}
.yad{bottom:896.370000px;}
.y4e{bottom:902.850000px;}
.yb{bottom:903.930000px;}
.yf2{bottom:913.650000px;}
.y79{bottom:913.830000px;}
.y4d{bottom:922.650000px;}
.ya{bottom:925.170000px;}
.yf1{bottom:933.450000px;}
.y78{bottom:934.350000px;}
.yac{bottom:937.410000px;}
.y4c{bottom:942.450000px;}
.y9{bottom:948.750000px;}
.yf0{bottom:953.250000px;}
.y77{bottom:955.050000px;}
.yab{bottom:957.210000px;}
.y4b{bottom:962.250000px;}
.yaa{bottom:971.970000px;}
.yef{bottom:973.050000px;}
.y76{bottom:975.570000px;}
.y8{bottom:980.430000px;}
.y4a{bottom:982.050000px;}
.ya9{bottom:989.970000px;}
.yee{bottom:993.030000px;}
.y49{bottom:1002.030000px;}
.ya8{bottom:1007.970000px;}
.y7{bottom:1012.110000px;}
.yed{bottom:1012.830000px;}
.y48{bottom:1021.830000px;}
.ya6{bottom:1025.970000px;}
.y47{bottom:1041.630000px;}
.y5{bottom:1052.070000px;}
.ya5{bottom:1061.250000px;}
.y46{bottom:1061.430000px;}
.ya4{bottom:1079.250000px;}
.y45{bottom:1081.230000px;}
.y4{bottom:1082.850000px;}
.ya2{bottom:1097.250000px;}
.y44{bottom:1101.210000px;}
.y3{bottom:1113.630000px;}
.y43{bottom:1121.010000px;}
.y42{bottom:1140.840000px;}
.y2{bottom:1144.620000px;}
.y41{bottom:1172.520000px;}
.y1{bottom:1178.460000px;}
.y40{bottom:1194.300000px;}
.h10{height:17.100000px;}
.h14{height:17.136000px;}
.h11{height:17.280000px;}
.h9{height:19.800000px;}
.he{height:19.980000px;}
.h13{height:34.380000px;}
.h12{height:34.560000px;}
.h7{height:34.855313px;}
.hf{height:39.600000px;}
.h15{height:39.780000px;}
.hb{height:42.164648px;}
.hc{height:43.506914px;}
.hd{height:46.736719px;}
.h6{height:53.224453px;}
.h5{height:53.573906px;}
.h8{height:55.735313px;}
.h4{height:59.383125px;}
.h2{height:67.565039px;}
.h3{height:85.847344px;}
.ha{height:238.170000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:94.896000px;}
.w5{width:95.040000px;}
.wc{width:96.156000px;}
.w9{width:96.300000px;}
.we{width:147.780000px;}
.w4{width:175.530000px;}
.w13{width:180.030000px;}
.w14{width:215.310000px;}
.w15{width:219.090000px;}
.wb{width:225.570000px;}
.wd{width:226.110000px;}
.w7{width:243.750000px;}
.w11{width:286.230000px;}
.wa{width:317.055000px;}
.w6{width:318.315000px;}
.wf{width:322.995000px;}
.w12{width:413.925000px;}
.w8{width:414.075000px;}
.w3{width:614.445000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.xd{left:10.080000px;}
.x10{left:11.160000px;}
.x7{left:22.500000px;}
.x1{left:54.179987px;}
.x17{left:64.799987px;}
.x4{left:75.239987px;}
.x18{left:80.999987px;}
.x12{left:96.120000px;}
.x19{left:108.035987px;}
.x5{left:117.216000px;}
.xa{left:126.396000px;}
.x15{left:138.636000px;}
.x13{left:191.730000px;}
.xe{left:210.810000px;}
.x6{left:212.970000px;}
.x9{left:214.230000px;}
.xb{left:222.150000px;}
.xf{left:307.695000px;}
.x16{left:319.395000px;}
.x14{left:510.765000px;}
.x8{left:532.005000px;}
.x11{left:534.525000px;}
.xc{left:541.185000px;}
.x3{left:668.445000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls1c{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls22{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.524800pt;}
.ls3{letter-spacing:0.736000pt;}
.ls21{letter-spacing:0.800000pt;}
.ls7{letter-spacing:0.869333pt;}
.ls12{letter-spacing:2.080000pt;}
.ls18{letter-spacing:2.720000pt;}
.ls1a{letter-spacing:3.360000pt;}
.ls1b{letter-spacing:4.000000pt;}
.ls16{letter-spacing:4.160000pt;}
.ls15{letter-spacing:4.640000pt;}
.ls20{letter-spacing:6.560000pt;}
.ls8{letter-spacing:8.912640pt;}
.ls17{letter-spacing:9.120000pt;}
.lsd{letter-spacing:12.112640pt;}
.ls1e{letter-spacing:12.320000pt;}
.lsa{letter-spacing:15.952640pt;}
.ls10{letter-spacing:16.592640pt;}
.ls19{letter-spacing:19.152640pt;}
.ls1{letter-spacing:20.432640pt;}
.ls13{letter-spacing:23.632640pt;}
.ls6{letter-spacing:34.512640pt;}
.ls5{letter-spacing:35.792640pt;}
.lsf{letter-spacing:36.432640pt;}
.ls1d{letter-spacing:37.200640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-2531.628160pt;}
._3{margin-left:-1230.123520pt;}
._4{margin-left:-886.461440pt;}
._5{margin-left:-881.751040pt;}
._6{margin-left:-455.989760pt;}
._7{margin-left:-5.288960pt;}
._8{margin-left:-3.415040pt;}
._12{margin-left:-2.328320pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.106560pt;}
._d{width:2.132053pt;}
._c{width:3.277867pt;}
._b{width:4.881493pt;}
._14{width:6.121173pt;}
._11{width:7.113600pt;}
._17{width:8.835840pt;}
._18{width:9.791360pt;}
._13{width:11.279360pt;}
._16{width:12.341760pt;}
._1c{width:14.211200pt;}
._10{width:15.944960pt;}
._1e{width:16.890667pt;}
._e{width:17.857280pt;}
._f{width:18.813440pt;}
._15{width:19.760640pt;}
._1a{width:21.328000pt;}
._19{width:22.425600pt;}
._1b{width:26.197120pt;}
._9{width:36.942080pt;}
._a{width:38.763307pt;}
._1d{width:194.472320pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:2.880000pt;}
.y12{bottom:5.120000pt;}
.y2a{bottom:5.280000pt;}
.y1e{bottom:12.800000pt;}
.yae{bottom:18.080000pt;}
.ya7{bottom:18.240000pt;}
.y80{bottom:22.720000pt;}
.yd8{bottom:22.880000pt;}
.y29{bottom:22.906667pt;}
.y1d{bottom:38.426667pt;}
.y28{bottom:40.506667pt;}
.y6{bottom:52.672000pt;}
.y1c{bottom:56.186667pt;}
.y27{bottom:58.106667pt;}
.y1b{bottom:73.786667pt;}
.y26{bottom:75.706667pt;}
.y75{bottom:88.512000pt;}
.y11a{bottom:90.752000pt;}
.yec{bottom:90.912000pt;}
.y1a{bottom:91.386667pt;}
.y25{bottom:93.466667pt;}
.yd6{bottom:93.472000pt;}
.ya1{bottom:104.032000pt;}
.y74{bottom:106.112000pt;}
.yd5{bottom:106.592000pt;}
.y119{bottom:108.352000pt;}
.yeb{bottom:108.512000pt;}
.y19{bottom:108.986667pt;}
.y3f{bottom:109.312000pt;}
.y24{bottom:111.066667pt;}
.ya0{bottom:121.632000pt;}
.yd4{bottom:122.592000pt;}
.y73{bottom:123.712000pt;}
.y118{bottom:125.952000pt;}
.yea{bottom:126.112000pt;}
.y18{bottom:126.586667pt;}
.y3e{bottom:126.912000pt;}
.y23{bottom:128.666667pt;}
.yd3{bottom:138.586667pt;}
.y9f{bottom:139.386667pt;}
.y72{bottom:141.306667pt;}
.y117{bottom:143.706667pt;}
.ye9{bottom:143.866667pt;}
.y17{bottom:144.346667pt;}
.y3d{bottom:144.506667pt;}
.y22{bottom:146.266667pt;}
.yd2{bottom:154.586667pt;}
.y9e{bottom:156.986667pt;}
.y71{bottom:160.026667pt;}
.y116{bottom:161.306667pt;}
.ye8{bottom:161.466667pt;}
.y16{bottom:161.946667pt;}
.y3c{bottom:162.106667pt;}
.y21{bottom:163.866667pt;}
.yd1{bottom:170.586667pt;}
.y9d{bottom:174.586667pt;}
.y70{bottom:178.586667pt;}
.y115{bottom:178.906667pt;}
.ye7{bottom:179.066667pt;}
.y15{bottom:179.546667pt;}
.y3b{bottom:179.866667pt;}
.y20{bottom:181.626667pt;}
.y123{bottom:185.306667pt;}
.yd0{bottom:186.586667pt;}
.y9c{bottom:192.186667pt;}
.y114{bottom:196.506667pt;}
.ye6{bottom:196.666667pt;}
.y14{bottom:197.146667pt;}
.y3a{bottom:197.466667pt;}
.y1f{bottom:199.226667pt;}
.ycf{bottom:202.586667pt;}
.y122{bottom:202.906667pt;}
.y9b{bottom:209.786667pt;}
.y113{bottom:214.106667pt;}
.ye5{bottom:214.266667pt;}
.y39{bottom:215.066667pt;}
.y6f{bottom:215.706667pt;}
.y121{bottom:220.506667pt;}
.yce{bottom:223.706667pt;}
.y9a{bottom:227.546667pt;}
.y112{bottom:231.866667pt;}
.ye4{bottom:232.026667pt;}
.y38{bottom:232.666667pt;}
.y6e{bottom:233.306667pt;}
.y120{bottom:238.106667pt;}
.ycd{bottom:241.306667pt;}
.y99{bottom:245.186667pt;}
.y111{bottom:249.506667pt;}
.ye3{bottom:249.666667pt;}
.y37{bottom:250.306667pt;}
.y6d{bottom:252.066667pt;}
.ycc{bottom:254.466667pt;}
.y11f{bottom:255.906667pt;}
.y98{bottom:262.786667pt;}
.y110{bottom:267.106667pt;}
.ye2{bottom:267.266667pt;}
.y36{bottom:268.066667pt;}
.y6c{bottom:270.626667pt;}
.ycb{bottom:272.866667pt;}
.y11e{bottom:273.506667pt;}
.y97{bottom:280.386667pt;}
.y10f{bottom:284.706667pt;}
.ye1{bottom:284.866667pt;}
.y35{bottom:285.666667pt;}
.y6b{bottom:289.186667pt;}
.y11d{bottom:291.106667pt;}
.y11c{bottom:292.706667pt;}
.y96{bottom:297.986667pt;}
.y34{bottom:303.266667pt;}
.ye0{bottom:303.426667pt;}
.y6a{bottom:307.746667pt;}
.yca{bottom:308.706667pt;}
.y10e{bottom:310.306667pt;}
.y95{bottom:315.746667pt;}
.y33{bottom:320.866667pt;}
.ydf{bottom:321.986667pt;}
.y69{bottom:326.306667pt;}
.yc9{bottom:327.106667pt;}
.y10d{bottom:327.906667pt;}
.y94{bottom:333.346667pt;}
.y32{bottom:338.466667pt;}
.yde{bottom:340.706667pt;}
.y68{bottom:343.906667pt;}
.yc8{bottom:345.346667pt;}
.y10c{bottom:345.666667pt;}
.y93{bottom:350.946667pt;}
.y31{bottom:356.226667pt;}
.ydd{bottom:358.306667pt;}
.y67{bottom:361.666667pt;}
.y10b{bottom:363.266667pt;}
.yc7{bottom:363.586667pt;}
.y92{bottom:368.546667pt;}
.y30{bottom:373.826667pt;}
.ydc{bottom:375.906667pt;}
.y66{bottom:379.266667pt;}
.y10a{bottom:380.866667pt;}
.yc6{bottom:381.986667pt;}
.y91{bottom:386.146667pt;}
.ydb{bottom:389.026667pt;}
.y2f{bottom:391.426667pt;}
.y65{bottom:396.866667pt;}
.y109{bottom:398.466667pt;}
.y90{bottom:403.906667pt;}
.yc5{bottom:405.346667pt;}
.yda{bottom:407.426667pt;}
.y2e{bottom:409.026667pt;}
.y64{bottom:414.466667pt;}
.y108{bottom:416.066667pt;}
.y8f{bottom:421.506667pt;}
.yc4{bottom:422.946667pt;}
.yd9{bottom:425.666667pt;}
.y2d{bottom:426.626667pt;}
.y63{bottom:432.066667pt;}
.y107{bottom:433.826667pt;}
.y8e{bottom:439.106667pt;}
.yc3{bottom:440.706667pt;}
.yd7{bottom:443.906667pt;}
.y2c{bottom:444.386667pt;}
.y62{bottom:449.826667pt;}
.y106{bottom:451.426667pt;}
.y8d{bottom:456.706667pt;}
.yc2{bottom:458.306667pt;}
.y2b{bottom:461.986667pt;}
.y61{bottom:467.426667pt;}
.y105{bottom:469.026667pt;}
.y8c{bottom:474.306667pt;}
.yc1{bottom:475.906667pt;}
.y13{bottom:476.386667pt;}
.y60{bottom:485.026667pt;}
.y104{bottom:486.626667pt;}
.y8b{bottom:492.066667pt;}
.yc0{bottom:493.506667pt;}
.y5f{bottom:502.653333pt;}
.y103{bottom:504.253333pt;}
.y8a{bottom:509.693333pt;}
.ybf{bottom:511.133333pt;}
.y5e{bottom:520.253333pt;}
.y102{bottom:522.013333pt;}
.y89{bottom:527.293333pt;}
.ybe{bottom:528.893333pt;}
.y5d{bottom:538.013333pt;}
.y101{bottom:539.613333pt;}
.y88{bottom:544.893333pt;}
.ybd{bottom:546.493333pt;}
.y5c{bottom:555.613333pt;}
.y100{bottom:557.213333pt;}
.y87{bottom:562.493333pt;}
.ybc{bottom:564.093333pt;}
.y5b{bottom:573.213333pt;}
.yff{bottom:574.813333pt;}
.y86{bottom:575.773333pt;}
.ybb{bottom:581.693333pt;}
.y5a{bottom:590.813333pt;}
.yfe{bottom:592.413333pt;}
.y85{bottom:594.013333pt;}
.yba{bottom:599.293333pt;}
.y59{bottom:608.413333pt;}
.yfd{bottom:610.173333pt;}
.y84{bottom:612.253333pt;}
.yb9{bottom:617.053333pt;}
.y58{bottom:626.173333pt;}
.yfc{bottom:627.773333pt;}
.y83{bottom:630.653333pt;}
.yb8{bottom:634.653333pt;}
.y57{bottom:643.773333pt;}
.y11b{bottom:645.373333pt;}
.y82{bottom:648.893333pt;}
.yb7{bottom:652.253333pt;}
.yfb{bottom:653.373333pt;}
.y56{bottom:661.373333pt;}
.y81{bottom:667.133333pt;}
.yb6{bottom:669.853333pt;}
.yfa{bottom:670.973333pt;}
.y55{bottom:678.973333pt;}
.y7f{bottom:685.533333pt;}
.yb5{bottom:687.453333pt;}
.yf9{bottom:688.573333pt;}
.y11{bottom:690.013333pt;}
.y54{bottom:696.573333pt;}
.yb4{bottom:700.733333pt;}
.yf8{bottom:706.333333pt;}
.y53{bottom:714.333333pt;}
.y10{bottom:714.813333pt;}
.yb3{bottom:716.733333pt;}
.yf7{bottom:723.933333pt;}
.y7e{bottom:726.653333pt;}
.y52{bottom:731.933333pt;}
.yf{bottom:732.413333pt;}
.yb2{bottom:732.733333pt;}
.yf6{bottom:741.533333pt;}
.y7d{bottom:744.253333pt;}
.yb1{bottom:748.773333pt;}
.y51{bottom:749.573333pt;}
.ye{bottom:754.853333pt;}
.y7c{bottom:757.413333pt;}
.yf5{bottom:759.173333pt;}
.yb0{bottom:764.773333pt;}
.y50{bottom:767.173333pt;}
.yd{bottom:767.813333pt;}
.y7b{bottom:775.653333pt;}
.yf4{bottom:776.773333pt;}
.yaf{bottom:780.773333pt;}
.y4f{bottom:784.773333pt;}
.yc{bottom:790.053333pt;}
.y7a{bottom:794.053333pt;}
.yf3{bottom:794.533333pt;}
.yad{bottom:796.773333pt;}
.y4e{bottom:802.533333pt;}
.yb{bottom:803.493333pt;}
.yf2{bottom:812.133333pt;}
.y79{bottom:812.293333pt;}
.y4d{bottom:820.133333pt;}
.ya{bottom:822.373333pt;}
.yf1{bottom:829.733333pt;}
.y78{bottom:830.533333pt;}
.yac{bottom:833.253333pt;}
.y4c{bottom:837.733333pt;}
.y9{bottom:843.333333pt;}
.yf0{bottom:847.333333pt;}
.y77{bottom:848.933333pt;}
.yab{bottom:850.853333pt;}
.y4b{bottom:855.333333pt;}
.yaa{bottom:863.973333pt;}
.yef{bottom:864.933333pt;}
.y76{bottom:867.173333pt;}
.y8{bottom:871.493333pt;}
.y4a{bottom:872.933333pt;}
.ya9{bottom:879.973333pt;}
.yee{bottom:882.693333pt;}
.y49{bottom:890.693333pt;}
.ya8{bottom:895.973333pt;}
.y7{bottom:899.653333pt;}
.yed{bottom:900.293333pt;}
.y48{bottom:908.293333pt;}
.ya6{bottom:911.973333pt;}
.y47{bottom:925.893333pt;}
.y5{bottom:935.173333pt;}
.ya5{bottom:943.333333pt;}
.y46{bottom:943.493333pt;}
.ya4{bottom:959.333333pt;}
.y45{bottom:961.093333pt;}
.y4{bottom:962.533333pt;}
.ya2{bottom:975.333333pt;}
.y44{bottom:978.853333pt;}
.y3{bottom:989.893333pt;}
.y43{bottom:996.453333pt;}
.y42{bottom:1014.080000pt;}
.y2{bottom:1017.440000pt;}
.y41{bottom:1042.240000pt;}
.y1{bottom:1047.520000pt;}
.y40{bottom:1061.600000pt;}
.h10{height:15.200000pt;}
.h14{height:15.232000pt;}
.h11{height:15.360000pt;}
.h9{height:17.600000pt;}
.he{height:17.760000pt;}
.h13{height:30.560000pt;}
.h12{height:30.720000pt;}
.h7{height:30.982500pt;}
.hf{height:35.200000pt;}
.h15{height:35.360000pt;}
.hb{height:37.479688pt;}
.hc{height:38.672812pt;}
.hd{height:41.543750pt;}
.h6{height:47.310625pt;}
.h5{height:47.621250pt;}
.h8{height:49.542500pt;}
.h4{height:52.785000pt;}
.h2{height:60.057813pt;}
.h3{height:76.308750pt;}
.ha{height:211.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:84.352000pt;}
.w5{width:84.480000pt;}
.wc{width:85.472000pt;}
.w9{width:85.600000pt;}
.we{width:131.360000pt;}
.w4{width:156.026667pt;}
.w13{width:160.026667pt;}
.w14{width:191.386667pt;}
.w15{width:194.746667pt;}
.wb{width:200.506667pt;}
.wd{width:200.986667pt;}
.w7{width:216.666667pt;}
.w11{width:254.426667pt;}
.wa{width:281.826667pt;}
.w6{width:282.946667pt;}
.wf{width:287.106667pt;}
.w12{width:367.933333pt;}
.w8{width:368.066667pt;}
.w3{width:546.173333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.xd{left:8.960000pt;}
.x10{left:9.920000pt;}
.x7{left:20.000000pt;}
.x1{left:48.159988pt;}
.x17{left:57.599988pt;}
.x4{left:66.879988pt;}
.x18{left:71.999988pt;}
.x12{left:85.440000pt;}
.x19{left:96.031988pt;}
.x5{left:104.192000pt;}
.xa{left:112.352000pt;}
.x15{left:123.232000pt;}
.x13{left:170.426667pt;}
.xe{left:187.386667pt;}
.x6{left:189.306667pt;}
.x9{left:190.426667pt;}
.xb{left:197.466667pt;}
.xf{left:273.506667pt;}
.x16{left:283.906667pt;}
.x14{left:454.013333pt;}
.x8{left:472.893333pt;}
.x11{left:475.133333pt;}
.xc{left:481.053333pt;}
.x3{left:594.173333pt;}
}




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