
    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_18836023e08768df2300e9a3.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8bef89889991baa510d45d56.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_08fb65bdb2b1c08b606749a0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_b97b3e0725b61212a8ff5ab9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_cb71babacd76b75db78ea579.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b012d53025abe4202d6fbe25.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_a6a8f2978c24fe1d03ae8af4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5d97b6a209cd4db9a3211f7e.woff')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_2fd79d226a5c6122a6bd27cd.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls7{letter-spacing:-0.334200px;}
.ls4{letter-spacing:-0.172800px;}
.lse{letter-spacing:-0.143400px;}
.ls12{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.038880px;}
.ls13{letter-spacing:-0.036000px;}
.lsd{letter-spacing:-0.015120px;}
.ls6{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls10{letter-spacing:0.211800px;}
.ls14{letter-spacing:0.328800px;}
.ls1{letter-spacing:0.351360px;}
.ls5{letter-spacing:0.351600px;}
.lsb{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.576600px;}
.ls9{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls15{letter-spacing:1.080000px;}
.ls16{letter-spacing:47.466720px;}
.lsc{letter-spacing:64.026720px;}
.ls11{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9{word-spacing:-59.760000px;}
.ws4{word-spacing:-14.572800px;}
.ws7{word-spacing:-14.238600px;}
.ws8{word-spacing:-13.723800px;}
.ws10{word-spacing:-13.476000px;}
.wsd{word-spacing:-13.359000px;}
.ws1{word-spacing:-13.160400px;}
.ws6{word-spacing:-13.160160px;}
.ws2{word-spacing:-13.147200px;}
.wsa{word-spacing:-13.132080px;}
.wsf{word-spacing:-13.111200px;}
.wsc{word-spacing:-13.108320px;}
.wse{word-spacing:-13.040400px;}
.wsb{word-spacing:-13.003800px;}
.ws0{word-spacing:-9.187200px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.712040px;}
._14{margin-left:-3.708628px;}
._e{margin-left:-2.635223px;}
._0{margin-left:-1.159200px;}
._1{width:1.020006px;}
._5{width:2.989680px;}
._4{width:4.040375px;}
._6{width:5.402310px;}
._a{width:6.628771px;}
._7{width:7.767605px;}
._8{width:9.681000px;}
._9{width:10.796967px;}
._f{width:11.989434px;}
._b{width:14.999999px;}
._d{width:16.134602px;}
._c{width:17.458772px;}
._10{width:19.242319px;}
._15{width:21.096954px;}
._16{width:22.150836px;}
._17{width:23.605200px;}
._11{width:29.043360px;}
._12{width:32.628960px;}
._2{width:35.296728px;}
._3{width:36.876623px;}
._13{width:38.058331px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:4.485000px;}
.y59{bottom:4.500000px;}
.y80{bottom:4.680000px;}
.y75{bottom:7.740000px;}
.y56{bottom:7.920000px;}
.y73{bottom:35.100000px;}
.y54{bottom:35.280000px;}
.y2{bottom:73.296000px;}
.y28{bottom:74.196000px;}
.y90{bottom:100.620000px;}
.y1{bottom:101.556000px;}
.y88{bottom:101.880000px;}
.yb3{bottom:113.436000px;}
.y94{bottom:116.280000px;}
.y49{bottom:118.476000px;}
.y7f{bottom:118.620000px;}
.y92{bottom:118.650000px;}
.y86{bottom:120.096000px;}
.y82{bottom:120.765000px;}
.y7b{bottom:122.940000px;}
.y7d{bottom:122.970000px;}
.y77{bottom:125.280000px;}
.y105{bottom:125.856000px;}
.y9b{bottom:126.216000px;}
.y8e{bottom:129.810000px;}
.yb2{bottom:130.896000px;}
.y96{bottom:131.970000px;}
.y9f{bottom:131.985000px;}
.y79{bottom:134.325000px;}
.y48{bottom:136.116000px;}
.y71{bottom:137.556000px;}
.y85{bottom:137.736000px;}
.y9d{bottom:138.780000px;}
.y63{bottom:138.990000px;}
.y26{bottom:140.436000px;}
.y5b{bottom:143.280000px;}
.y58{bottom:143.310000px;}
.y60{bottom:143.325000px;}
.y104{bottom:143.496000px;}
.yb1{bottom:148.536000px;}
.ydd{bottom:151.590000px;}
.y47{bottom:153.750000px;}
.y84{bottom:155.370000px;}
.y25{bottom:158.070000px;}
.y103{bottom:160.950000px;}
.y9a{bottom:162.570000px;}
.ydc{bottom:169.230000px;}
.y70{bottom:170.130000px;}
.y46{bottom:171.210000px;}
.ya1{bottom:172.650000px;}
.yb0{bottom:175.170000px;}
.y102{bottom:178.590000px;}
.y99{bottom:180.210000px;}
.ydb{bottom:186.870000px;}
.y45{bottom:188.850000px;}
.y83{bottom:190.290000px;}
.y24{bottom:193.710000px;}
.y98{bottom:197.850000px;}
.y81{bottom:202.365000px;}
.y6f{bottom:202.710000px;}
.yda{bottom:204.330000px;}
.y101{bottom:205.230000px;}
.y44{bottom:206.490000px;}
.y5c{bottom:207.765000px;}
.yaf{bottom:210.630000px;}
.y23{bottom:211.170000px;}
.y97{bottom:215.490000px;}
.y100{bottom:222.690000px;}
.yae{bottom:228.270000px;}
.y22{bottom:228.810000px;}
.yd9{bottom:230.970000px;}
.y43{bottom:232.950000px;}
.y6e{bottom:235.290000px;}
.yff{bottom:240.330000px;}
.y21{bottom:246.450000px;}
.y20{bottom:263.910000px;}
.yd8{bottom:266.610000px;}
.yfe{bottom:266.970000px;}
.y6d{bottom:267.870000px;}
.y42{bottom:268.590000px;}
.y95{bottom:280.125000px;}
.yad{bottom:281.550000px;}
.yd7{bottom:284.070000px;}
.yfd{bottom:284.610000px;}
.y1f{bottom:290.910000px;}
.yac{bottom:299.010000px;}
.y6c{bottom:300.450000px;}
.y41{bottom:300.810000px;}
.yd6{bottom:301.710000px;}
.yfc{bottom:302.070000px;}
.yab{bottom:316.650000px;}
.yd5{bottom:319.350000px;}
.yfb{bottom:328.710000px;}
.y6b{bottom:336.315000px;}
.yd4{bottom:337.035000px;}
.y1e{bottom:339.555000px;}
.y7e{bottom:342.615000px;}
.yaa{bottom:343.335000px;}
.y6a{bottom:353.775000px;}
.yd3{bottom:354.495000px;}
.yfa{bottom:355.395000px;}
.y5a{bottom:370.695000px;}
.yf9{bottom:372.855000px;}
.y1d{bottom:376.455000px;}
.ya9{bottom:379.155000px;}
.yd2{bottom:381.135000px;}
.y69{bottom:390.315000px;}
.y1c{bottom:394.095000px;}
.y11d{bottom:398.775000px;}
.yf8{bottom:399.855000px;}
.y68{bottom:407.775000px;}
.y1b{bottom:411.735000px;}
.y11c{bottom:416.235000px;}
.yd1{bottom:416.775000px;}
.y67{bottom:425.415000px;}
.ya8{bottom:427.215000px;}
.y1a{bottom:429.375000px;}
.y93{bottom:431.535000px;}
.yd0{bottom:434.235000px;}
.y11b{bottom:442.875000px;}
.y66{bottom:443.055000px;}
.ya7{bottom:445.035000px;}
.y19{bottom:446.835000px;}
.yf7{bottom:448.095000px;}
.ycf{bottom:451.875000px;}
.y65{bottom:460.515000px;}
.ya6{bottom:462.675000px;}
.y18{bottom:464.475000px;}
.yce{bottom:469.515000px;}
.yf6{bottom:474.915000px;}
.ya5{bottom:480.135000px;}
.y7c{bottom:480.675000px;}
.y17{bottom:482.115000px;}
.y11a{bottom:486.975000px;}
.y64{bottom:495.615000px;}
.ycd{bottom:495.975000px;}
.ya4{bottom:497.775000px;}
.y16{bottom:499.575000px;}
.y119{bottom:504.615000px;}
.y62{bottom:507.675000px;}
.yf5{bottom:511.995000px;}
.ya3{bottom:515.415000px;}
.y118{bottom:531.255000px;}
.ycc{bottom:531.615000px;}
.y57{bottom:533.415000px;}
.y15{bottom:535.215000px;}
.yf4{bottom:538.995000px;}
.y117{bottom:548.715000px;}
.ycb{bottom:549.255000px;}
.ya2{bottom:550.335000px;}
.y14{bottom:552.855000px;}
.ya0{bottom:562.395000px;}
.y91{bottom:567.255000px;}
.y13{bottom:570.315000px;}
.y116{bottom:575.355000px;}
.yca{bottom:575.715000px;}
.yf3{bottom:576.435000px;}
.y115{bottom:592.995000px;}
.y12{bottom:605.985000px;}
.y114{bottom:610.665000px;}
.yc9{bottom:611.385000px;}
.y7a{bottom:623.265000px;}
.y11{bottom:623.625000px;}
.y40{bottom:623.805000px;}
.yf2{bottom:624.525000px;}
.yc8{bottom:629.025000px;}
.y87{bottom:635.685000px;}
.y113{bottom:637.125000px;}
.y10{bottom:641.085000px;}
.y3f{bottom:641.265000px;}
.yf1{bottom:642.165000px;}
.yc7{bottom:646.665000px;}
.y112{bottom:654.765000px;}
.yf{bottom:658.725000px;}
.y3e{bottom:658.905000px;}
.yf0{bottom:659.805000px;}
.yc6{bottom:664.125000px;}
.y61{bottom:666.105000px;}
.y111{bottom:672.405000px;}
.y3d{bottom:676.545000px;}
.yef{bottom:677.265000px;}
.yc5{bottom:681.765000px;}
.ye{bottom:685.725000px;}
.yee{bottom:694.905000px;}
.y53{bottom:696.165000px;}
.y110{bottom:698.865000px;}
.yc4{bottom:699.405000px;}
.y3c{bottom:703.545000px;}
.y8f{bottom:705.345000px;}
.yed{bottom:712.545000px;}
.y10f{bottom:716.505000px;}
.y55{bottom:723.525000px;}
.yec{bottom:730.005000px;}
.yd{bottom:732.525000px;}
.y10e{bottom:734.145000px;}
.yc3{bottom:734.865000px;}
.yeb{bottom:747.645000px;}
.y3b{bottom:751.605000px;}
.yc2{bottom:752.505000px;}
.y9e{bottom:754.485000px;}
.y10d{bottom:760.605000px;}
.yea{bottom:765.285000px;}
.y78{bottom:765.645000px;}
.yc{bottom:767.985000px;}
.y3a{bottom:769.245000px;}
.yc1{bottom:770.145000px;}
.y52{bottom:772.125000px;}
.y10c{bottom:778.245000px;}
.ye9{bottom:782.925000px;}
.yc0{bottom:787.605000px;}
.yb{bottom:803.805000px;}
.y39{bottom:804.885000px;}
.ybf{bottom:805.245000px;}
.y51{bottom:807.765000px;}
.ye8{bottom:809.925000px;}
.y38{bottom:822.525000px;}
.ybe{bottom:822.885000px;}
.y50{bottom:825.225000px;}
.y8d{bottom:825.420000px;}
.y5f{bottom:829.005000px;}
.y37{bottom:839.985000px;}
.ybd{bottom:840.525000px;}
.ya{bottom:843.585000px;}
.y4f{bottom:852.765000px;}
.y36{bottom:857.625000px;}
.ybc{bottom:857.985000px;}
.y9{bottom:861.585000px;}
.y10b{bottom:866.670000px;}
.y35{bottom:875.310000px;}
.ybb{bottom:875.670000px;}
.y8{bottom:879.630000px;}
.y10a{bottom:884.310000px;}
.y4e{bottom:888.810000px;}
.yba{bottom:893.310000px;}
.y7{bottom:897.630000px;}
.y109{bottom:901.770000px;}
.y9c{bottom:905.910000px;}
.y34{bottom:910.770000px;}
.y76{bottom:919.410000px;}
.y33{bottom:928.410000px;}
.y6{bottom:930.030000px;}
.y4d{bottom:937.050000px;}
.ye7{bottom:937.410000px;}
.y32{bottom:946.050000px;}
.yb9{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y4c{bottom:954.510000px;}
.y31{bottom:963.510000px;}
.yb8{bottom:964.050000px;}
.y4b{bottom:972.150000px;}
.y108{bottom:972.510000px;}
.ye6{bottom:973.050000px;}
.y8b{bottom:974.670000px;}
.y30{bottom:981.150000px;}
.yb7{bottom:981.510000px;}
.y4{bottom:987.810000px;}
.y107{bottom:990.150000px;}
.ye5{bottom:990.510000px;}
.y5e{bottom:991.770000px;}
.y4a{bottom:998.790000px;}
.yb6{bottom:999.150000px;}
.y8c{bottom:1002.030000px;}
.y106{bottom:1007.790000px;}
.ye4{bottom:1008.150000px;}
.y3{bottom:1012.470000px;}
.y2f{bottom:1016.790000px;}
.ye3{bottom:1025.790000px;}
.y2e{bottom:1034.430000px;}
.ye2{bottom:1043.430000px;}
.y8a{bottom:1050.630000px;}
.y2d{bottom:1051.890000px;}
.ye1{bottom:1060.890000px;}
.y72{bottom:1064.310000px;}
.y2c{bottom:1069.530000px;}
.ye0{bottom:1078.530000px;}
.y89{bottom:1086.270000px;}
.y2b{bottom:1087.170000px;}
.yb5{bottom:1087.530000px;}
.y74{bottom:1091.490000px;}
.ydf{bottom:1096.170000px;}
.yb4{bottom:1105.170000px;}
.yde{bottom:1113.630000px;}
.y2a{bottom:1122.630000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h15{height:26.445000px;}
.h14{height:26.625000px;}
.hc{height:26.640000px;}
.h2{height:29.717578px;}
.h6{height:35.477578px;}
.h3{height:38.405391px;}
.h12{height:40.843828px;}
.h7{height:50.597578px;}
.h13{height:53.805000px;}
.hb{height:54.000000px;}
.h5{height:56.084062px;}
.h26{height:59.614102px;}
.ha{height:61.423863px;}
.h9{height:62.211094px;}
.h8{height:68.956875px;}
.h4{height:71.324297px;}
.h1d{height:74.004654px;}
.h1c{height:118.800000px;}
.h1f{height:119.340000px;}
.h21{height:135.000000px;}
.h1a{height:137.325000px;}
.h20{height:137.370000px;}
.h1b{height:139.521000px;}
.h18{height:141.660000px;}
.h19{height:141.690000px;}
.h16{height:143.985000px;}
.h1e{height:148.521000px;}
.h22{height:150.675000px;}
.h24{height:150.690000px;}
.h17{height:153.030000px;}
.h23{height:157.485000px;}
.h11{height:157.710000px;}
.he{height:161.985000px;}
.h10{height:162.000000px;}
.hf{height:162.015000px;}
.hd{height:162.030000px;}
.h25{height:191.370000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:78.330000px;}
.w17{width:85.680000px;}
.wf{width:85.860000px;}
.w1c{width:88.941000px;}
.w6{width:89.121000px;}
.w7{width:91.065000px;}
.w15{width:96.321000px;}
.wd{width:96.501000px;}
.w16{width:97.770000px;}
.we{width:98.490000px;}
.w1b{width:103.845000px;}
.w5{width:104.025000px;}
.w14{width:111.225000px;}
.wc{width:111.405000px;}
.w18{width:137.511000px;}
.w2{width:143.091000px;}
.w11{width:149.796000px;}
.w9{width:150.510000px;}
.w10{width:180.780000px;}
.w19{width:201.300000px;}
.w3{width:201.480000px;}
.wa{width:208.860000px;}
.w12{width:211.200000px;}
.w1a{width:364.560000px;}
.w4{width:364.740000px;}
.w13{width:393.360000px;}
.wb{width:394.620000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:3.951000px;}
.x13{left:7.740000px;}
.x1c{left:10.785000px;}
.x1{left:68.040000px;}
.x8{left:91.305000px;}
.x6{left:95.076000px;}
.x28{left:111.276000px;}
.x7{left:122.076000px;}
.x27{left:186.180000px;}
.x26{left:188.520000px;}
.x10{left:190.680000px;}
.x18{left:192.120000px;}
.x11{left:195.180000px;}
.xf{left:197.520000px;}
.x19{left:198.780000px;}
.x1a{left:201.120000px;}
.x1f{left:203.460000px;}
.x2{left:210.990000px;}
.x14{left:220.185000px;}
.x1b{left:228.285000px;}
.x21{left:232.425000px;}
.xa{left:235.125000px;}
.x12{left:302.475000px;}
.x20{left:304.455000px;}
.x5{left:342.075000px;}
.x15{left:429.960000px;}
.x1d{left:431.220000px;}
.x22{left:434.640000px;}
.xb{left:437.340000px;}
.x23{left:539.400000px;}
.xc{left:542.100000px;}
.x1e{left:543.360000px;}
.x24{left:629.070000px;}
.xd{left:631.950000px;}
.x16{left:639.510000px;}
.x25{left:720.870000px;}
.xe{left:723.750000px;}
.x17{left:738.720000px;}
.x3{left:800.460000px;}
.x4{left:805.500000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls7{letter-spacing:-0.297067pt;}
.ls4{letter-spacing:-0.153600pt;}
.lse{letter-spacing:-0.127467pt;}
.ls12{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.034560pt;}
.ls13{letter-spacing:-0.032000pt;}
.lsd{letter-spacing:-0.013440pt;}
.ls6{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls10{letter-spacing:0.188267pt;}
.ls14{letter-spacing:0.292267pt;}
.ls1{letter-spacing:0.312320pt;}
.ls5{letter-spacing:0.312533pt;}
.lsb{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.512533pt;}
.ls9{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.960000pt;}
.ls16{letter-spacing:42.192640pt;}
.lsc{letter-spacing:56.912640pt;}
.ls11{letter-spacing:72.272640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws4{word-spacing:-12.953600pt;}
.ws7{word-spacing:-12.656533pt;}
.ws8{word-spacing:-12.198933pt;}
.ws10{word-spacing:-11.978667pt;}
.wsd{word-spacing:-11.874667pt;}
.ws1{word-spacing:-11.698133pt;}
.ws6{word-spacing:-11.697920pt;}
.ws2{word-spacing:-11.686400pt;}
.wsa{word-spacing:-11.672960pt;}
.wsf{word-spacing:-11.654400pt;}
.wsc{word-spacing:-11.651840pt;}
.wse{word-spacing:-11.591467pt;}
.wsb{word-spacing:-11.558933pt;}
.ws0{word-spacing:-8.166400pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:4.188480pt;}
._14{margin-left:-3.296558pt;}
._e{margin-left:-2.342420pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.906672pt;}
._5{width:2.657493pt;}
._4{width:3.591444pt;}
._6{width:4.802054pt;}
._a{width:5.892241pt;}
._7{width:6.904538pt;}
._8{width:8.605334pt;}
._9{width:9.597304pt;}
._f{width:10.657275pt;}
._b{width:13.333332pt;}
._d{width:14.341869pt;}
._c{width:15.518909pt;}
._10{width:17.104284pt;}
._15{width:18.752848pt;}
._16{width:19.689632pt;}
._17{width:20.982400pt;}
._11{width:25.816320pt;}
._12{width:29.003520pt;}
._2{width:31.374870pt;}
._3{width:32.779220pt;}
._13{width:33.829628pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:3.986667pt;}
.y59{bottom:4.000000pt;}
.y80{bottom:4.160000pt;}
.y75{bottom:6.880000pt;}
.y56{bottom:7.040000pt;}
.y73{bottom:31.200000pt;}
.y54{bottom:31.360000pt;}
.y2{bottom:65.152000pt;}
.y28{bottom:65.952000pt;}
.y90{bottom:89.440000pt;}
.y1{bottom:90.272000pt;}
.y88{bottom:90.560000pt;}
.yb3{bottom:100.832000pt;}
.y94{bottom:103.360000pt;}
.y49{bottom:105.312000pt;}
.y7f{bottom:105.440000pt;}
.y92{bottom:105.466667pt;}
.y86{bottom:106.752000pt;}
.y82{bottom:107.346667pt;}
.y7b{bottom:109.280000pt;}
.y7d{bottom:109.306667pt;}
.y77{bottom:111.360000pt;}
.y105{bottom:111.872000pt;}
.y9b{bottom:112.192000pt;}
.y8e{bottom:115.386667pt;}
.yb2{bottom:116.352000pt;}
.y96{bottom:117.306667pt;}
.y9f{bottom:117.320000pt;}
.y79{bottom:119.400000pt;}
.y48{bottom:120.992000pt;}
.y71{bottom:122.272000pt;}
.y85{bottom:122.432000pt;}
.y9d{bottom:123.360000pt;}
.y63{bottom:123.546667pt;}
.y26{bottom:124.832000pt;}
.y5b{bottom:127.360000pt;}
.y58{bottom:127.386667pt;}
.y60{bottom:127.400000pt;}
.y104{bottom:127.552000pt;}
.yb1{bottom:132.032000pt;}
.ydd{bottom:134.746667pt;}
.y47{bottom:136.666667pt;}
.y84{bottom:138.106667pt;}
.y25{bottom:140.506667pt;}
.y103{bottom:143.066667pt;}
.y9a{bottom:144.506667pt;}
.ydc{bottom:150.426667pt;}
.y70{bottom:151.226667pt;}
.y46{bottom:152.186667pt;}
.ya1{bottom:153.466667pt;}
.yb0{bottom:155.706667pt;}
.y102{bottom:158.746667pt;}
.y99{bottom:160.186667pt;}
.ydb{bottom:166.106667pt;}
.y45{bottom:167.866667pt;}
.y83{bottom:169.146667pt;}
.y24{bottom:172.186667pt;}
.y98{bottom:175.866667pt;}
.y81{bottom:179.880000pt;}
.y6f{bottom:180.186667pt;}
.yda{bottom:181.626667pt;}
.y101{bottom:182.426667pt;}
.y44{bottom:183.546667pt;}
.y5c{bottom:184.680000pt;}
.yaf{bottom:187.226667pt;}
.y23{bottom:187.706667pt;}
.y97{bottom:191.546667pt;}
.y100{bottom:197.946667pt;}
.yae{bottom:202.906667pt;}
.y22{bottom:203.386667pt;}
.yd9{bottom:205.306667pt;}
.y43{bottom:207.066667pt;}
.y6e{bottom:209.146667pt;}
.yff{bottom:213.626667pt;}
.y21{bottom:219.066667pt;}
.y20{bottom:234.586667pt;}
.yd8{bottom:236.986667pt;}
.yfe{bottom:237.306667pt;}
.y6d{bottom:238.106667pt;}
.y42{bottom:238.746667pt;}
.y95{bottom:249.000000pt;}
.yad{bottom:250.266667pt;}
.yd7{bottom:252.506667pt;}
.yfd{bottom:252.986667pt;}
.y1f{bottom:258.586667pt;}
.yac{bottom:265.786667pt;}
.y6c{bottom:267.066667pt;}
.y41{bottom:267.386667pt;}
.yd6{bottom:268.186667pt;}
.yfc{bottom:268.506667pt;}
.yab{bottom:281.466667pt;}
.yd5{bottom:283.866667pt;}
.yfb{bottom:292.186667pt;}
.y6b{bottom:298.946667pt;}
.yd4{bottom:299.586667pt;}
.y1e{bottom:301.826667pt;}
.y7e{bottom:304.546667pt;}
.yaa{bottom:305.186667pt;}
.y6a{bottom:314.466667pt;}
.yd3{bottom:315.106667pt;}
.yfa{bottom:315.906667pt;}
.y5a{bottom:329.506667pt;}
.yf9{bottom:331.426667pt;}
.y1d{bottom:334.626667pt;}
.ya9{bottom:337.026667pt;}
.yd2{bottom:338.786667pt;}
.y69{bottom:346.946667pt;}
.y1c{bottom:350.306667pt;}
.y11d{bottom:354.466667pt;}
.yf8{bottom:355.426667pt;}
.y68{bottom:362.466667pt;}
.y1b{bottom:365.986667pt;}
.y11c{bottom:369.986667pt;}
.yd1{bottom:370.466667pt;}
.y67{bottom:378.146667pt;}
.ya8{bottom:379.746667pt;}
.y1a{bottom:381.666667pt;}
.y93{bottom:383.586667pt;}
.yd0{bottom:385.986667pt;}
.y11b{bottom:393.666667pt;}
.y66{bottom:393.826667pt;}
.ya7{bottom:395.586667pt;}
.y19{bottom:397.186667pt;}
.yf7{bottom:398.306667pt;}
.ycf{bottom:401.666667pt;}
.y65{bottom:409.346667pt;}
.ya6{bottom:411.266667pt;}
.y18{bottom:412.866667pt;}
.yce{bottom:417.346667pt;}
.yf6{bottom:422.146667pt;}
.ya5{bottom:426.786667pt;}
.y7c{bottom:427.266667pt;}
.y17{bottom:428.546667pt;}
.y11a{bottom:432.866667pt;}
.y64{bottom:440.546667pt;}
.ycd{bottom:440.866667pt;}
.ya4{bottom:442.466667pt;}
.y16{bottom:444.066667pt;}
.y119{bottom:448.546667pt;}
.y62{bottom:451.266667pt;}
.yf5{bottom:455.106667pt;}
.ya3{bottom:458.146667pt;}
.y118{bottom:472.226667pt;}
.ycc{bottom:472.546667pt;}
.y57{bottom:474.146667pt;}
.y15{bottom:475.746667pt;}
.yf4{bottom:479.106667pt;}
.y117{bottom:487.746667pt;}
.ycb{bottom:488.226667pt;}
.ya2{bottom:489.186667pt;}
.y14{bottom:491.426667pt;}
.ya0{bottom:499.906667pt;}
.y91{bottom:504.226667pt;}
.y13{bottom:506.946667pt;}
.y116{bottom:511.426667pt;}
.yca{bottom:511.746667pt;}
.yf3{bottom:512.386667pt;}
.y115{bottom:527.106667pt;}
.y12{bottom:538.653333pt;}
.y114{bottom:542.813333pt;}
.yc9{bottom:543.453333pt;}
.y7a{bottom:554.013333pt;}
.y11{bottom:554.333333pt;}
.y40{bottom:554.493333pt;}
.yf2{bottom:555.133333pt;}
.yc8{bottom:559.133333pt;}
.y87{bottom:565.053333pt;}
.y113{bottom:566.333333pt;}
.y10{bottom:569.853333pt;}
.y3f{bottom:570.013333pt;}
.yf1{bottom:570.813333pt;}
.yc7{bottom:574.813333pt;}
.y112{bottom:582.013333pt;}
.yf{bottom:585.533333pt;}
.y3e{bottom:585.693333pt;}
.yf0{bottom:586.493333pt;}
.yc6{bottom:590.333333pt;}
.y61{bottom:592.093333pt;}
.y111{bottom:597.693333pt;}
.y3d{bottom:601.373333pt;}
.yef{bottom:602.013333pt;}
.yc5{bottom:606.013333pt;}
.ye{bottom:609.533333pt;}
.yee{bottom:617.693333pt;}
.y53{bottom:618.813333pt;}
.y110{bottom:621.213333pt;}
.yc4{bottom:621.693333pt;}
.y3c{bottom:625.373333pt;}
.y8f{bottom:626.973333pt;}
.yed{bottom:633.373333pt;}
.y10f{bottom:636.893333pt;}
.y55{bottom:643.133333pt;}
.yec{bottom:648.893333pt;}
.yd{bottom:651.133333pt;}
.y10e{bottom:652.573333pt;}
.yc3{bottom:653.213333pt;}
.yeb{bottom:664.573333pt;}
.y3b{bottom:668.093333pt;}
.yc2{bottom:668.893333pt;}
.y9e{bottom:670.653333pt;}
.y10d{bottom:676.093333pt;}
.yea{bottom:680.253333pt;}
.y78{bottom:680.573333pt;}
.yc{bottom:682.653333pt;}
.y3a{bottom:683.773333pt;}
.yc1{bottom:684.573333pt;}
.y52{bottom:686.333333pt;}
.y10c{bottom:691.773333pt;}
.ye9{bottom:695.933333pt;}
.yc0{bottom:700.093333pt;}
.yb{bottom:714.493333pt;}
.y39{bottom:715.453333pt;}
.ybf{bottom:715.773333pt;}
.y51{bottom:718.013333pt;}
.ye8{bottom:719.933333pt;}
.y38{bottom:731.133333pt;}
.ybe{bottom:731.453333pt;}
.y50{bottom:733.533333pt;}
.y8d{bottom:733.706667pt;}
.y5f{bottom:736.893333pt;}
.y37{bottom:746.653333pt;}
.ybd{bottom:747.133333pt;}
.ya{bottom:749.853333pt;}
.y4f{bottom:758.013333pt;}
.y36{bottom:762.333333pt;}
.ybc{bottom:762.653333pt;}
.y9{bottom:765.853333pt;}
.y10b{bottom:770.373333pt;}
.y35{bottom:778.053333pt;}
.ybb{bottom:778.373333pt;}
.y8{bottom:781.893333pt;}
.y10a{bottom:786.053333pt;}
.y4e{bottom:790.053333pt;}
.yba{bottom:794.053333pt;}
.y7{bottom:797.893333pt;}
.y109{bottom:801.573333pt;}
.y9c{bottom:805.253333pt;}
.y34{bottom:809.573333pt;}
.y76{bottom:817.253333pt;}
.y33{bottom:825.253333pt;}
.y6{bottom:826.693333pt;}
.y4d{bottom:832.933333pt;}
.ye7{bottom:833.253333pt;}
.y32{bottom:840.933333pt;}
.yb9{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y4c{bottom:848.453333pt;}
.y31{bottom:856.453333pt;}
.yb8{bottom:856.933333pt;}
.y4b{bottom:864.133333pt;}
.y108{bottom:864.453333pt;}
.ye6{bottom:864.933333pt;}
.y8b{bottom:866.373333pt;}
.y30{bottom:872.133333pt;}
.yb7{bottom:872.453333pt;}
.y4{bottom:878.053333pt;}
.y107{bottom:880.133333pt;}
.ye5{bottom:880.453333pt;}
.y5e{bottom:881.573333pt;}
.y4a{bottom:887.813333pt;}
.yb6{bottom:888.133333pt;}
.y8c{bottom:890.693333pt;}
.y106{bottom:895.813333pt;}
.ye4{bottom:896.133333pt;}
.y3{bottom:899.973333pt;}
.y2f{bottom:903.813333pt;}
.ye3{bottom:911.813333pt;}
.y2e{bottom:919.493333pt;}
.ye2{bottom:927.493333pt;}
.y8a{bottom:933.893333pt;}
.y2d{bottom:935.013333pt;}
.ye1{bottom:943.013333pt;}
.y72{bottom:946.053333pt;}
.y2c{bottom:950.693333pt;}
.ye0{bottom:958.693333pt;}
.y89{bottom:965.573333pt;}
.y2b{bottom:966.373333pt;}
.yb5{bottom:966.693333pt;}
.y74{bottom:970.213333pt;}
.ydf{bottom:974.373333pt;}
.yb4{bottom:982.373333pt;}
.yde{bottom:989.893333pt;}
.y2a{bottom:997.893333pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h15{height:23.506667pt;}
.h14{height:23.666667pt;}
.hc{height:23.680000pt;}
.h2{height:26.415625pt;}
.h6{height:31.535625pt;}
.h3{height:34.138125pt;}
.h12{height:36.305625pt;}
.h7{height:44.975625pt;}
.h13{height:47.826667pt;}
.hb{height:48.000000pt;}
.h5{height:49.852500pt;}
.h26{height:52.990313pt;}
.ha{height:54.598989pt;}
.h9{height:55.298750pt;}
.h8{height:61.295000pt;}
.h4{height:63.399375pt;}
.h1d{height:65.781915pt;}
.h1c{height:105.600000pt;}
.h1f{height:106.080000pt;}
.h21{height:120.000000pt;}
.h1a{height:122.066667pt;}
.h20{height:122.106667pt;}
.h1b{height:124.018667pt;}
.h18{height:125.920000pt;}
.h19{height:125.946667pt;}
.h16{height:127.986667pt;}
.h1e{height:132.018667pt;}
.h22{height:133.933333pt;}
.h24{height:133.946667pt;}
.h17{height:136.026667pt;}
.h23{height:139.986667pt;}
.h11{height:140.186667pt;}
.he{height:143.986667pt;}
.h10{height:144.000000pt;}
.hf{height:144.013333pt;}
.hd{height:144.026667pt;}
.h25{height:170.106667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:69.626667pt;}
.w17{width:76.160000pt;}
.wf{width:76.320000pt;}
.w1c{width:79.058667pt;}
.w6{width:79.218667pt;}
.w7{width:80.946667pt;}
.w15{width:85.618667pt;}
.wd{width:85.778667pt;}
.w16{width:86.906667pt;}
.we{width:87.546667pt;}
.w1b{width:92.306667pt;}
.w5{width:92.466667pt;}
.w14{width:98.866667pt;}
.wc{width:99.026667pt;}
.w18{width:122.232000pt;}
.w2{width:127.192000pt;}
.w11{width:133.152000pt;}
.w9{width:133.786667pt;}
.w10{width:160.693333pt;}
.w19{width:178.933333pt;}
.w3{width:179.093333pt;}
.wa{width:185.653333pt;}
.w12{width:187.733333pt;}
.w1a{width:324.053333pt;}
.w4{width:324.213333pt;}
.w13{width:349.653333pt;}
.wb{width:350.773333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:3.512000pt;}
.x13{left:6.880000pt;}
.x1c{left:9.586667pt;}
.x1{left:60.480000pt;}
.x8{left:81.160000pt;}
.x6{left:84.512000pt;}
.x28{left:98.912000pt;}
.x7{left:108.512000pt;}
.x27{left:165.493333pt;}
.x26{left:167.573333pt;}
.x10{left:169.493333pt;}
.x18{left:170.773333pt;}
.x11{left:173.493333pt;}
.xf{left:175.573333pt;}
.x19{left:176.693333pt;}
.x1a{left:178.773333pt;}
.x1f{left:180.853333pt;}
.x2{left:187.546667pt;}
.x14{left:195.720000pt;}
.x1b{left:202.920000pt;}
.x21{left:206.600000pt;}
.xa{left:209.000000pt;}
.x12{left:268.866667pt;}
.x20{left:270.626667pt;}
.x5{left:304.066667pt;}
.x15{left:382.186667pt;}
.x1d{left:383.306667pt;}
.x22{left:386.346667pt;}
.xb{left:388.746667pt;}
.x23{left:479.466667pt;}
.xc{left:481.866667pt;}
.x1e{left:482.986667pt;}
.x24{left:559.173333pt;}
.xd{left:561.733333pt;}
.x16{left:568.453333pt;}
.x25{left:640.773333pt;}
.xe{left:643.333333pt;}
.x17{left:656.640000pt;}
.x3{left:711.520000pt;}
.x4{left:716.000000pt;}
}




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