
    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_cebf93851234af2b57ecf566.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_37cc32bd4a05f5c4d2776193.woff')format("woff");}.ff2{font-family:ff2;line-height:1.201172;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_562cab7fc1c6f32434cc8e9d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.201172;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_81fea2e3a3b64c1e654a38e7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6b93b5c023a3d8929e44c9c2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.937012;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_224af957934c646079302746.woff')format("woff");}.ff6{font-family:ff6;line-height:0.937012;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_d0e0414ba1dbd0edb997c2df.woff')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_72ce0b474152b8d931a2e0f6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.957031;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_a5d5c285036cb8ac21007ec8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.957031;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_ef989810f8160f38eff75e23.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_f68889e9921eb60254b16a9e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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:ffc;src:url('chunks/assets/font_7ffda6bcd746737c5759e600.woff')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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:ffd;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c7886f0045824db7e25ce3fb.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_859c72d942ed727e728fa5e8.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a06f0f61539fba8be76eff67.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v4{vertical-align:-92.160000px;}
.v1{vertical-align:-82.080000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.lsa{letter-spacing:-1.206000px;}
.ls8{letter-spacing:-1.068000px;}
.lsb{letter-spacing:-0.966000px;}
.ls9{letter-spacing:-0.768000px;}
.lsc{letter-spacing:-0.732000px;}
.ls19{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.584400px;}
.ls7{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.463800px;}
.ls6{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.178800px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.178800px;}
.ls5{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.447600px;}
.ls2{letter-spacing:0.535680px;}
.ls1{letter-spacing:0.593280px;}
.ls1d{letter-spacing:0.714240px;}
.ls3{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.731520px;}
.ls12{letter-spacing:0.732000px;}
.ls13{letter-spacing:0.840000px;}
.lsf{letter-spacing:0.900000px;}
.ls10{letter-spacing:0.987840px;}
.ls17{letter-spacing:1.261440px;}
.ls16{letter-spacing:1.440000px;}
.ls18{letter-spacing:2.160000px;}
.ls20{letter-spacing:9.504000px;}
.lse{letter-spacing:21.433440px;}
.ls1c{letter-spacing:21.541440px;}
.ls11{letter-spacing:34.381440px;}
.ls15{letter-spacing:41.725440px;}
.ls1b{letter-spacing:57.433440px;}
.ls0{letter-spacing:438.756000px;}
.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;}
}
.wsf{word-spacing:-21.058800px;}
.wsb{word-spacing:-20.880000px;}
.ws10{word-spacing:-18.291120px;}
.ws0{word-spacing:-16.488000px;}
.ws3{word-spacing:-16.272000px;}
.ws1{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.768000px;}
.wse{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.506440px;}
.wsd{word-spacing:-13.680000px;}
.ws9{word-spacing:-12.366720px;}
.ws8{word-spacing:-11.634720px;}
.ws5{word-spacing:-11.598720px;}
.ws7{word-spacing:-11.400720px;}
.ws4{word-spacing:-11.298720px;}
.ws6{word-spacing:-11.160720px;}
.wsc{word-spacing:0.000000px;}
._30{margin-left:-21.025680px;}
._5{margin-left:-8.631360px;}
._6{margin-left:-6.680160px;}
._3{margin-left:-5.564160px;}
._4{margin-left:-4.176000px;}
._1{margin-left:-3.024000px;}
._0{margin-left:-1.656000px;}
._2{width:1.836000px;}
._f{width:2.839680px;}
._7{width:4.005600px;}
._b{width:5.846400px;}
._c{width:7.037760px;}
._a{width:8.504640px;}
._8{width:9.856800px;}
._9{width:11.093760px;}
._1a{width:13.101120px;}
._10{width:14.616000px;}
._e{width:16.119360px;}
._d{width:17.205120px;}
._11{width:18.708480px;}
._12{width:19.781280px;}
._28{width:21.110400px;}
._1f{width:22.216320px;}
._24{width:23.218560px;}
._18{width:24.471360px;}
._19{width:25.974720px;}
._27{width:27.145440px;}
._14{width:28.505760px;}
._13{width:29.842560px;}
._15{width:31.376640px;}
._22{width:32.457600px;}
._21{width:34.259040px;}
._23{width:36.009120px;}
._1c{width:37.344480px;}
._1b{width:39.076320px;}
._20{width:40.718880px;}
._16{width:41.731200px;}
._17{width:43.375680px;}
._1d{width:44.595840px;}
._1e{width:46.023360px;}
._25{width:47.233920px;}
._2c{width:48.942720px;}
._2d{width:50.031360px;}
._29{width:52.034400px;}
._2b{width:53.369280px;}
._2a{width:54.692640px;}
._26{width:62.784000px;}
._2f{width:73.355520px;}
._2e{width:74.988480px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs3{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs6{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.yb{bottom:57.240000px;}
.y6e{bottom:109.116000px;}
.yd6{bottom:109.836000px;}
.y6d{bottom:114.516000px;}
.y28{bottom:120.636000px;}
.y6c{bottom:126.396000px;}
.yd5{bottom:128.196000px;}
.y8b{bottom:131.796000px;}
.yd4{bottom:133.596000px;}
.yae{bottom:135.396000px;}
.y6b{bottom:143.676000px;}
.ycc{bottom:144.756000px;}
.yd3{bottom:146.916000px;}
.y6a{bottom:149.076000px;}
.y27{bottom:154.110000px;}
.y8a{bottom:160.950000px;}
.y69{bottom:162.030000px;}
.y89{bottom:166.350000px;}
.y4c{bottom:171.750000px;}
.yad{bottom:177.510000px;}
.y26{bottom:178.230000px;}
.y88{bottom:179.310000px;}
.yc7{bottom:183.630000px;}
.yd2{bottom:189.750000px;}
.ybc{bottom:195.510000px;}
.y4b{bottom:195.870000px;}
.ybb{bottom:200.955000px;}
.yac{bottom:201.675000px;}
.yc6{bottom:207.795000px;}
.y25{bottom:211.395000px;}
.yba{bottom:213.915000px;}
.y4a{bottom:220.035000px;}
.yf2{bottom:221.115000px;}
.yab{bottom:225.795000px;}
.yc5{bottom:231.915000px;}
.y24{bottom:235.515000px;}
.yd1{bottom:238.035000px;}
.y49{bottom:244.155000px;}
.yaa{bottom:249.915000px;}
.y68{bottom:256.035000px;}
.y23{bottom:259.635000px;}
.yd0{bottom:262.155000px;}
.yf1{bottom:263.235000px;}
.y48{bottom:268.275000px;}
.yc3{bottom:274.035000px;}
.y67{bottom:280.155000px;}
.yc4{bottom:281.595000px;}
.y22{bottom:283.755000px;}
.ycf{bottom:286.275000px;}
.ya9{bottom:292.035000px;}
.y66{bottom:304.275000px;}
.yf0{bottom:305.355000px;}
.y87{bottom:307.875000px;}
.y47{bottom:310.755000px;}
.ya8{bottom:316.155000px;}
.y21{bottom:316.875000px;}
.ycb{bottom:322.275000px;}
.y65{bottom:328.785000px;}
.y86{bottom:332.025000px;}
.yce{bottom:334.905000px;}
.ya7{bottom:340.305000px;}
.y20{bottom:341.025000px;}
.yca{bottom:346.785000px;}
.yef{bottom:347.505000px;}
.y46{bottom:352.905000px;}
.y85{bottom:356.145000px;}
.ya6{bottom:364.785000px;}
.y1f{bottom:365.145000px;}
.yb8{bottom:370.905000px;}
.y45{bottom:377.025000px;}
.yb9{bottom:378.465000px;}
.y84{bottom:380.265000px;}
.yee{bottom:385.665000px;}
.ya5{bottom:388.905000px;}
.yb7{bottom:395.025000px;}
.y1e{bottom:398.265000px;}
.y64{bottom:401.145000px;}
.y83{bottom:404.385000px;}
.yed{bottom:411.225000px;}
.ya4{bottom:413.025000px;}
.y44{bottom:419.145000px;}
.y63{bottom:425.265000px;}
.y82{bottom:428.505000px;}
.y1d{bottom:431.385000px;}
.yc2{bottom:437.145000px;}
.yec{bottom:437.865000px;}
.y43{bottom:443.265000px;}
.y62{bottom:449.430000px;}
.y81{bottom:453.030000px;}
.ya3{bottom:455.190000px;}
.y1c{bottom:455.550000px;}
.yc1{bottom:461.310000px;}
.yeb{bottom:464.190000px;}
.y42{bottom:467.430000px;}
.y61{bottom:473.550000px;}
.y80{bottom:477.150000px;}
.ya2{bottom:479.310000px;}
.yc0{bottom:485.430000px;}
.y1b{bottom:488.670000px;}
.yea{bottom:489.750000px;}
.y41{bottom:491.550000px;}
.y60{bottom:497.670000px;}
.y7e{bottom:501.270000px;}
.ya1{bottom:503.430000px;}
.y7f{bottom:508.830000px;}
.ybf{bottom:509.550000px;}
.y1a{bottom:513.150000px;}
.y40{bottom:515.670000px;}
.ye9{bottom:516.750000px;}
.yb6{bottom:533.670000px;}
.y19{bottom:537.270000px;}
.y3f{bottom:539.790000px;}
.ye8{bottom:542.310000px;}
.y7d{bottom:543.390000px;}
.ya0{bottom:545.550000px;}
.ybe{bottom:557.790000px;}
.y18{bottom:561.390000px;}
.y3e{bottom:563.910000px;}
.ye7{bottom:569.310000px;}
.y9f{bottom:569.670000px;}
.yb5{bottom:575.820000px;}
.y5f{bottom:581.940000px;}
.y7c{bottom:585.540000px;}
.y3d{bottom:588.060000px;}
.y9e{bottom:593.820000px;}
.y17{bottom:594.540000px;}
.ye6{bottom:594.900000px;}
.ycd{bottom:595.620000px;}
.yb4{bottom:599.940000px;}
.y5e{bottom:606.060000px;}
.y7b{bottom:609.660000px;}
.y3c{bottom:612.180000px;}
.y9d{bottom:617.940000px;}
.y16{bottom:618.660000px;}
.ye5{bottom:621.540000px;}
.yb2{bottom:624.060000px;}
.ybd{bottom:630.180000px;}
.yb3{bottom:631.620000px;}
.y7a{bottom:633.780000px;}
.y15{bottom:642.780000px;}
.ye4{bottom:647.460000px;}
.y5d{bottom:648.180000px;}
.y3b{bottom:654.300000px;}
.y79{bottom:657.900000px;}
.y9c{bottom:660.060000px;}
.y14{bottom:666.900000px;}
.y5c{bottom:672.300000px;}
.ye3{bottom:674.100000px;}
.y3a{bottom:678.780000px;}
.yc9{bottom:679.860000px;}
.y78{bottom:682.020000px;}
.y9b{bottom:684.180000px;}
.y5b{bottom:696.780000px;}
.y13{bottom:700.020000px;}
.ye2{bottom:700.380000px;}
.y39{bottom:702.930000px;}
.y77{bottom:703.290000px;}
.y9a{bottom:708.330000px;}
.y76{bottom:714.810000px;}
.y5a{bottom:720.930000px;}
.ye1{bottom:725.970000px;}
.y38{bottom:727.050000px;}
.y12{bottom:729.210000px;}
.y99{bottom:732.810000px;}
.y75{bottom:738.930000px;}
.y59{bottom:745.050000px;}
.y37{bottom:751.170000px;}
.ye0{bottom:752.970000px;}
.y98{bottom:756.930000px;}
.y11{bottom:761.250000px;}
.y74{bottom:763.050000px;}
.y58{bottom:769.170000px;}
.ydf{bottom:778.890000px;}
.y97{bottom:781.050000px;}
.y10{bottom:785.730000px;}
.y73{bottom:787.170000px;}
.y36{bottom:793.290000px;}
.yde{bottom:804.450000px;}
.y96{bottom:805.170000px;}
.y72{bottom:811.290000px;}
.yf{bottom:813.090000px;}
.y35{bottom:817.410000px;}
.y95{bottom:829.335000px;}
.ydd{bottom:831.495000px;}
.y71{bottom:832.935000px;}
.yb1{bottom:835.455000px;}
.y34{bottom:841.575000px;}
.y70{bottom:847.695000px;}
.y94{bottom:853.455000px;}
.ye{bottom:855.255000px;}
.ydc{bottom:857.055000px;}
.y56{bottom:859.575000px;}
.y33{bottom:865.695000px;}
.y57{bottom:867.135000px;}
.y93{bottom:877.575000px;}
.yd{bottom:879.375000px;}
.y55{bottom:883.695000px;}
.ydb{bottom:884.055000px;}
.y32{bottom:889.815000px;}
.y54{bottom:907.815000px;}
.yda{bottom:909.615000px;}
.y31{bottom:913.935000px;}
.y92{bottom:919.695000px;}
.yc{bottom:921.495000px;}
.yc8{bottom:925.815000px;}
.y53{bottom:931.935000px;}
.yd9{bottom:936.615000px;}
.y91{bottom:943.815000px;}
.yb0{bottom:949.935000px;}
.y30{bottom:956.085000px;}
.yd8{bottom:962.565000px;}
.y90{bottom:967.965000px;}
.y52{bottom:974.085000px;}
.y2f{bottom:980.205000px;}
.y8f{bottom:992.085000px;}
.y51{bottom:998.205000px;}
.y2e{bottom:1004.325000px;}
.yd7{bottom:1011.165000px;}
.y8e{bottom:1016.205000px;}
.ya{bottom:1017.285000px;}
.y50{bottom:1022.325000px;}
.y9{bottom:1029.165000px;}
.y8d{bottom:1040.325000px;}
.y8{bottom:1046.445000px;}
.y2d{bottom:1046.805000px;}
.y8c{bottom:1064.805000px;}
.y7{bottom:1066.605000px;}
.y2c{bottom:1070.925000px;}
.y4f{bottom:1088.970000px;}
.y2b{bottom:1095.090000px;}
.yaf{bottom:1102.650000px;}
.y6{bottom:1109.490000px;}
.y4e{bottom:1113.090000px;}
.y6f{bottom:1120.650000px;}
.y5{bottom:1126.770000px;}
.y2a{bottom:1137.210000px;}
.y4{bottom:1144.050000px;}
.y4d{bottom:1144.770000px;}
.y3{bottom:1161.330000px;}
.y2{bottom:1178.610000px;}
.y29{bottom:1194.090000px;}
.y1{bottom:1195.890000px;}
.h12{height:21.867891px;}
.h6{height:22.960547px;}
.he{height:28.115859px;}
.h11{height:30.157734px;}
.h14{height:38.671172px;}
.hd{height:39.570469px;}
.h13{height:40.559062px;}
.h5{height:41.547656px;}
.h2{height:43.735781px;}
.hb{height:49.097812px;}
.hf{height:49.848750px;}
.h15{height:60.155156px;}
.h8{height:60.397031px;}
.h10{height:60.804844px;}
.h7{height:61.905938px;}
.h4{height:65.884219px;}
.ha{height:68.838750px;}
.hc{height:69.810469px;}
.h9{height:71.512031px;}
.h3{height:73.722656px;}
.h16{height:83.071406px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w3{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:106.235987px;}
.x15{left:111.275987px;}
.x2b{left:116.315987px;}
.x7{left:123.515987px;}
.x2f{left:127.475987px;}
.xe{left:133.271987px;}
.x26{left:138.311987px;}
.x28{left:148.751987px;}
.xf{left:160.274987px;}
.x27{left:165.314987px;}
.x16{left:169.994987px;}
.x19{left:180.794987px;}
.xd{left:202.034987px;}
.xc{left:212.474987px;}
.x22{left:220.784973px;}
.x23{left:227.624987px;}
.x4{left:284.504987px;}
.xa{left:293.864987px;}
.x8{left:300.344987px;}
.x14{left:322.349987px;}
.x10{left:347.189973px;}
.x17{left:348.269973px;}
.xb{left:352.589987px;}
.x11{left:354.029987px;}
.x18{left:355.109987px;}
.x3{left:357.989987px;}
.x2e{left:360.149987px;}
.x2d{left:371.309973px;}
.x2c{left:375.269987px;}
.x2{left:385.709987px;}
.x1a{left:392.909973px;}
.x1b{left:399.779987px;}
.x5{left:429.659987px;}
.x9{left:432.539987px;}
.x6{left:446.579987px;}
.x1c{left:457.739973px;}
.x1d{left:464.579987px;}
.x20{left:614.414973px;}
.x21{left:621.254987px;}
.x12{left:633.494973px;}
.x13{left:640.334987px;}
.x1e{left:648.614973px;}
.x1f{left:655.454987px;}
.x24{left:697.244973px;}
.x25{left:704.084987px;}
.x29{left:713.444973px;}
.x2a{left:727.124987px;}
@media print{
.v4{vertical-align:-81.920000pt;}
.v1{vertical-align:-72.960000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.lsa{letter-spacing:-1.072000pt;}
.ls8{letter-spacing:-0.949333pt;}
.lsb{letter-spacing:-0.858667pt;}
.ls9{letter-spacing:-0.682667pt;}
.lsc{letter-spacing:-0.650667pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.519467pt;}
.ls7{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.412267pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.158933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.158933pt;}
.ls5{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.397867pt;}
.ls2{letter-spacing:0.476160pt;}
.ls1{letter-spacing:0.527360pt;}
.ls1d{letter-spacing:0.634880pt;}
.ls3{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.650240pt;}
.ls12{letter-spacing:0.650667pt;}
.ls13{letter-spacing:0.746667pt;}
.lsf{letter-spacing:0.800000pt;}
.ls10{letter-spacing:0.878080pt;}
.ls17{letter-spacing:1.121280pt;}
.ls16{letter-spacing:1.280000pt;}
.ls18{letter-spacing:1.920000pt;}
.ls20{letter-spacing:8.448000pt;}
.lse{letter-spacing:19.051947pt;}
.ls1c{letter-spacing:19.147947pt;}
.ls11{letter-spacing:30.561280pt;}
.ls15{letter-spacing:37.089280pt;}
.ls1b{letter-spacing:51.051947pt;}
.ls0{letter-spacing:390.005333pt;}
.wsf{word-spacing:-18.718933pt;}
.wsb{word-spacing:-18.560000pt;}
.ws10{word-spacing:-16.258773pt;}
.ws0{word-spacing:-14.656000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws2{word-spacing:-14.016000pt;}
.wse{word-spacing:-13.440000pt;}
.wsa{word-spacing:-12.894613pt;}
.wsd{word-spacing:-12.160000pt;}
.ws9{word-spacing:-10.992640pt;}
.ws8{word-spacing:-10.341973pt;}
.ws5{word-spacing:-10.309973pt;}
.ws7{word-spacing:-10.133973pt;}
.ws4{word-spacing:-10.043307pt;}
.ws6{word-spacing:-9.920640pt;}
.wsc{word-spacing:0.000000pt;}
._30{margin-left:-18.689493pt;}
._5{margin-left:-7.672320pt;}
._6{margin-left:-5.937920pt;}
._3{margin-left:-4.945920pt;}
._4{margin-left:-3.712000pt;}
._1{margin-left:-2.688000pt;}
._0{margin-left:-1.472000pt;}
._2{width:1.632000pt;}
._f{width:2.524160pt;}
._7{width:3.560533pt;}
._b{width:5.196800pt;}
._c{width:6.255787pt;}
._a{width:7.559680pt;}
._8{width:8.761600pt;}
._9{width:9.861120pt;}
._1a{width:11.645440pt;}
._10{width:12.992000pt;}
._e{width:14.328320pt;}
._d{width:15.293440pt;}
._11{width:16.629760pt;}
._12{width:17.583360pt;}
._28{width:18.764800pt;}
._1f{width:19.747840pt;}
._24{width:20.638720pt;}
._18{width:21.752320pt;}
._19{width:23.088640pt;}
._27{width:24.129280pt;}
._14{width:25.338453pt;}
._13{width:26.526720pt;}
._15{width:27.890347pt;}
._22{width:28.851200pt;}
._21{width:30.452480pt;}
._23{width:32.008107pt;}
._1c{width:33.195093pt;}
._1b{width:34.734507pt;}
._20{width:36.194560pt;}
._16{width:37.094400pt;}
._17{width:38.556160pt;}
._1d{width:39.640747pt;}
._1e{width:40.909653pt;}
._25{width:41.985707pt;}
._2c{width:43.504640pt;}
._2d{width:44.472320pt;}
._29{width:46.252800pt;}
._2b{width:47.439360pt;}
._2a{width:48.615680pt;}
._26{width:55.808000pt;}
._2f{width:65.204907pt;}
._2e{width:66.656427pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs3{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs6{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:50.880000pt;}
.y6e{bottom:96.992000pt;}
.yd6{bottom:97.632000pt;}
.y6d{bottom:101.792000pt;}
.y28{bottom:107.232000pt;}
.y6c{bottom:112.352000pt;}
.yd5{bottom:113.952000pt;}
.y8b{bottom:117.152000pt;}
.yd4{bottom:118.752000pt;}
.yae{bottom:120.352000pt;}
.y6b{bottom:127.712000pt;}
.ycc{bottom:128.672000pt;}
.yd3{bottom:130.592000pt;}
.y6a{bottom:132.512000pt;}
.y27{bottom:136.986667pt;}
.y8a{bottom:143.066667pt;}
.y69{bottom:144.026667pt;}
.y89{bottom:147.866667pt;}
.y4c{bottom:152.666667pt;}
.yad{bottom:157.786667pt;}
.y26{bottom:158.426667pt;}
.y88{bottom:159.386667pt;}
.yc7{bottom:163.226667pt;}
.yd2{bottom:168.666667pt;}
.ybc{bottom:173.786667pt;}
.y4b{bottom:174.106667pt;}
.ybb{bottom:178.626667pt;}
.yac{bottom:179.266667pt;}
.yc6{bottom:184.706667pt;}
.y25{bottom:187.906667pt;}
.yba{bottom:190.146667pt;}
.y4a{bottom:195.586667pt;}
.yf2{bottom:196.546667pt;}
.yab{bottom:200.706667pt;}
.yc5{bottom:206.146667pt;}
.y24{bottom:209.346667pt;}
.yd1{bottom:211.586667pt;}
.y49{bottom:217.026667pt;}
.yaa{bottom:222.146667pt;}
.y68{bottom:227.586667pt;}
.y23{bottom:230.786667pt;}
.yd0{bottom:233.026667pt;}
.yf1{bottom:233.986667pt;}
.y48{bottom:238.466667pt;}
.yc3{bottom:243.586667pt;}
.y67{bottom:249.026667pt;}
.yc4{bottom:250.306667pt;}
.y22{bottom:252.226667pt;}
.ycf{bottom:254.466667pt;}
.ya9{bottom:259.586667pt;}
.y66{bottom:270.466667pt;}
.yf0{bottom:271.426667pt;}
.y87{bottom:273.666667pt;}
.y47{bottom:276.226667pt;}
.ya8{bottom:281.026667pt;}
.y21{bottom:281.666667pt;}
.ycb{bottom:286.466667pt;}
.y65{bottom:292.253333pt;}
.y86{bottom:295.133333pt;}
.yce{bottom:297.693333pt;}
.ya7{bottom:302.493333pt;}
.y20{bottom:303.133333pt;}
.yca{bottom:308.253333pt;}
.yef{bottom:308.893333pt;}
.y46{bottom:313.693333pt;}
.y85{bottom:316.573333pt;}
.ya6{bottom:324.253333pt;}
.y1f{bottom:324.573333pt;}
.yb8{bottom:329.693333pt;}
.y45{bottom:335.133333pt;}
.yb9{bottom:336.413333pt;}
.y84{bottom:338.013333pt;}
.yee{bottom:342.813333pt;}
.ya5{bottom:345.693333pt;}
.yb7{bottom:351.133333pt;}
.y1e{bottom:354.013333pt;}
.y64{bottom:356.573333pt;}
.y83{bottom:359.453333pt;}
.yed{bottom:365.533333pt;}
.ya4{bottom:367.133333pt;}
.y44{bottom:372.573333pt;}
.y63{bottom:378.013333pt;}
.y82{bottom:380.893333pt;}
.y1d{bottom:383.453333pt;}
.yc2{bottom:388.573333pt;}
.yec{bottom:389.213333pt;}
.y43{bottom:394.013333pt;}
.y62{bottom:399.493333pt;}
.y81{bottom:402.693333pt;}
.ya3{bottom:404.613333pt;}
.y1c{bottom:404.933333pt;}
.yc1{bottom:410.053333pt;}
.yeb{bottom:412.613333pt;}
.y42{bottom:415.493333pt;}
.y61{bottom:420.933333pt;}
.y80{bottom:424.133333pt;}
.ya2{bottom:426.053333pt;}
.yc0{bottom:431.493333pt;}
.y1b{bottom:434.373333pt;}
.yea{bottom:435.333333pt;}
.y41{bottom:436.933333pt;}
.y60{bottom:442.373333pt;}
.y7e{bottom:445.573333pt;}
.ya1{bottom:447.493333pt;}
.y7f{bottom:452.293333pt;}
.ybf{bottom:452.933333pt;}
.y1a{bottom:456.133333pt;}
.y40{bottom:458.373333pt;}
.ye9{bottom:459.333333pt;}
.yb6{bottom:474.373333pt;}
.y19{bottom:477.573333pt;}
.y3f{bottom:479.813333pt;}
.ye8{bottom:482.053333pt;}
.y7d{bottom:483.013333pt;}
.ya0{bottom:484.933333pt;}
.ybe{bottom:495.813333pt;}
.y18{bottom:499.013333pt;}
.y3e{bottom:501.253333pt;}
.ye7{bottom:506.053333pt;}
.y9f{bottom:506.373333pt;}
.yb5{bottom:511.840000pt;}
.y5f{bottom:517.280000pt;}
.y7c{bottom:520.480000pt;}
.y3d{bottom:522.720000pt;}
.y9e{bottom:527.840000pt;}
.y17{bottom:528.480000pt;}
.ye6{bottom:528.800000pt;}
.ycd{bottom:529.440000pt;}
.yb4{bottom:533.280000pt;}
.y5e{bottom:538.720000pt;}
.y7b{bottom:541.920000pt;}
.y3c{bottom:544.160000pt;}
.y9d{bottom:549.280000pt;}
.y16{bottom:549.920000pt;}
.ye5{bottom:552.480000pt;}
.yb2{bottom:554.720000pt;}
.ybd{bottom:560.160000pt;}
.yb3{bottom:561.440000pt;}
.y7a{bottom:563.360000pt;}
.y15{bottom:571.360000pt;}
.ye4{bottom:575.520000pt;}
.y5d{bottom:576.160000pt;}
.y3b{bottom:581.600000pt;}
.y79{bottom:584.800000pt;}
.y9c{bottom:586.720000pt;}
.y14{bottom:592.800000pt;}
.y5c{bottom:597.600000pt;}
.ye3{bottom:599.200000pt;}
.y3a{bottom:603.360000pt;}
.yc9{bottom:604.320000pt;}
.y78{bottom:606.240000pt;}
.y9b{bottom:608.160000pt;}
.y5b{bottom:619.360000pt;}
.y13{bottom:622.240000pt;}
.ye2{bottom:622.560000pt;}
.y39{bottom:624.826667pt;}
.y77{bottom:625.146667pt;}
.y9a{bottom:629.626667pt;}
.y76{bottom:635.386667pt;}
.y5a{bottom:640.826667pt;}
.ye1{bottom:645.306667pt;}
.y38{bottom:646.266667pt;}
.y12{bottom:648.186667pt;}
.y99{bottom:651.386667pt;}
.y75{bottom:656.826667pt;}
.y59{bottom:662.266667pt;}
.y37{bottom:667.706667pt;}
.ye0{bottom:669.306667pt;}
.y98{bottom:672.826667pt;}
.y11{bottom:676.666667pt;}
.y74{bottom:678.266667pt;}
.y58{bottom:683.706667pt;}
.ydf{bottom:692.346667pt;}
.y97{bottom:694.266667pt;}
.y10{bottom:698.426667pt;}
.y73{bottom:699.706667pt;}
.y36{bottom:705.146667pt;}
.yde{bottom:715.066667pt;}
.y96{bottom:715.706667pt;}
.y72{bottom:721.146667pt;}
.yf{bottom:722.746667pt;}
.y35{bottom:726.586667pt;}
.y95{bottom:737.186667pt;}
.ydd{bottom:739.106667pt;}
.y71{bottom:740.386667pt;}
.yb1{bottom:742.626667pt;}
.y34{bottom:748.066667pt;}
.y70{bottom:753.506667pt;}
.y94{bottom:758.626667pt;}
.ye{bottom:760.226667pt;}
.ydc{bottom:761.826667pt;}
.y56{bottom:764.066667pt;}
.y33{bottom:769.506667pt;}
.y57{bottom:770.786667pt;}
.y93{bottom:780.066667pt;}
.yd{bottom:781.666667pt;}
.y55{bottom:785.506667pt;}
.ydb{bottom:785.826667pt;}
.y32{bottom:790.946667pt;}
.y54{bottom:806.946667pt;}
.yda{bottom:808.546667pt;}
.y31{bottom:812.386667pt;}
.y92{bottom:817.506667pt;}
.yc{bottom:819.106667pt;}
.yc8{bottom:822.946667pt;}
.y53{bottom:828.386667pt;}
.yd9{bottom:832.546667pt;}
.y91{bottom:838.946667pt;}
.yb0{bottom:844.386667pt;}
.y30{bottom:849.853333pt;}
.yd8{bottom:855.613333pt;}
.y90{bottom:860.413333pt;}
.y52{bottom:865.853333pt;}
.y2f{bottom:871.293333pt;}
.y8f{bottom:881.853333pt;}
.y51{bottom:887.293333pt;}
.y2e{bottom:892.733333pt;}
.yd7{bottom:898.813333pt;}
.y8e{bottom:903.293333pt;}
.ya{bottom:904.253333pt;}
.y50{bottom:908.733333pt;}
.y9{bottom:914.813333pt;}
.y8d{bottom:924.733333pt;}
.y8{bottom:930.173333pt;}
.y2d{bottom:930.493333pt;}
.y8c{bottom:946.493333pt;}
.y7{bottom:948.093333pt;}
.y2c{bottom:951.933333pt;}
.y4f{bottom:967.973333pt;}
.y2b{bottom:973.413333pt;}
.yaf{bottom:980.133333pt;}
.y6{bottom:986.213333pt;}
.y4e{bottom:989.413333pt;}
.y6f{bottom:996.133333pt;}
.y5{bottom:1001.573333pt;}
.y2a{bottom:1010.853333pt;}
.y4{bottom:1016.933333pt;}
.y4d{bottom:1017.573333pt;}
.y3{bottom:1032.293333pt;}
.y2{bottom:1047.653333pt;}
.y29{bottom:1061.413333pt;}
.y1{bottom:1063.013333pt;}
.h12{height:19.438125pt;}
.h6{height:20.409375pt;}
.he{height:24.991875pt;}
.h11{height:26.806875pt;}
.h14{height:34.374375pt;}
.hd{height:35.173750pt;}
.h13{height:36.052500pt;}
.h5{height:36.931250pt;}
.h2{height:38.876250pt;}
.hb{height:43.642500pt;}
.hf{height:44.310000pt;}
.h15{height:53.471250pt;}
.h8{height:53.686250pt;}
.h10{height:54.048750pt;}
.h7{height:55.027500pt;}
.h4{height:58.563750pt;}
.ha{height:61.190000pt;}
.hc{height:62.053750pt;}
.h9{height:63.566250pt;}
.h3{height:65.531250pt;}
.h16{height:73.841250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w3{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:94.431988pt;}
.x15{left:98.911988pt;}
.x2b{left:103.391988pt;}
.x7{left:109.791988pt;}
.x2f{left:113.311988pt;}
.xe{left:118.463988pt;}
.x26{left:122.943988pt;}
.x28{left:132.223988pt;}
.xf{left:142.466655pt;}
.x27{left:146.946655pt;}
.x16{left:151.106655pt;}
.x19{left:160.706655pt;}
.xd{left:179.586655pt;}
.xc{left:188.866655pt;}
.x22{left:196.253310pt;}
.x23{left:202.333322pt;}
.x4{left:252.893322pt;}
.xa{left:261.213322pt;}
.x8{left:266.973322pt;}
.x14{left:286.533322pt;}
.x10{left:308.613310pt;}
.x17{left:309.573310pt;}
.xb{left:313.413322pt;}
.x11{left:314.693322pt;}
.x18{left:315.653322pt;}
.x3{left:318.213322pt;}
.x2e{left:320.133322pt;}
.x2d{left:330.053310pt;}
.x2c{left:333.573322pt;}
.x2{left:342.853322pt;}
.x1a{left:349.253310pt;}
.x1b{left:355.359988pt;}
.x5{left:381.919988pt;}
.x9{left:384.479988pt;}
.x6{left:396.959988pt;}
.x1c{left:406.879976pt;}
.x1d{left:412.959988pt;}
.x20{left:546.146643pt;}
.x21{left:552.226655pt;}
.x12{left:563.106643pt;}
.x13{left:569.186655pt;}
.x1e{left:576.546643pt;}
.x1f{left:582.626655pt;}
.x24{left:619.773310pt;}
.x25{left:625.853322pt;}
.x29{left:634.173310pt;}
.x2a{left:646.333322pt;}
}




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