
    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_fb328a0d11de3eb013a59f89.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_fb328a0d11de3eb013a59f89.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_c243ae515f53825789055f34.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.720000;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_7d2cc3d359c63a9c34a8d4b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_a6f3b704b408ffe2534abf5c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_b1ab667c36e3654ecb39d130.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_f520d31ec454150df34236ed.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_9a7c6672e655d369fd872dc4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_45226daea7d3d25c715254fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_c20bb59d44cbf0b38424e788.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707000;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_1a978f7388953eccf7a01a41.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_c243ae515f53825789055f34.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.720000;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_a30de21af5252b0a99ceb6a8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.945813;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_1cda0cf068d311a839938f1c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_298f4b5026fdfbae217db3ef.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4{word-spacing:-60.000000px;}
.ws68{word-spacing:-51.780000px;}
.ws3f{word-spacing:-51.720000px;}
.ws35{word-spacing:-51.600000px;}
.wsd{word-spacing:-51.540000px;}
.ws31{word-spacing:-51.480000px;}
.ws5{word-spacing:-51.420000px;}
.ws36{word-spacing:-51.360000px;}
.ws8{word-spacing:-51.180000px;}
.ws30{word-spacing:-51.120000px;}
.ws92{word-spacing:-51.060000px;}
.ws1e{word-spacing:-50.940000px;}
.ws74{word-spacing:-50.880000px;}
.ws7{word-spacing:-50.820000px;}
.ws1d{word-spacing:-50.760000px;}
.wsa{word-spacing:-50.640000px;}
.ws1b{word-spacing:-50.580000px;}
.ws63{word-spacing:-50.520000px;}
.ws56{word-spacing:-50.400000px;}
.ws57{word-spacing:-50.340000px;}
.ws24{word-spacing:-50.280000px;}
.ws72{word-spacing:-50.220000px;}
.ws41{word-spacing:-50.100000px;}
.ws16{word-spacing:-49.860000px;}
.wsa6{word-spacing:-49.440000px;}
.ws9{word-spacing:-49.380000px;}
.ws26{word-spacing:-49.320000px;}
.ws28{word-spacing:-49.260000px;}
.ws98{word-spacing:-49.200000px;}
.ws79{word-spacing:-49.020000px;}
.ws55{word-spacing:-48.960000px;}
.ws2b{word-spacing:-48.840000px;}
.ws66{word-spacing:-48.600000px;}
.ws29{word-spacing:-48.420000px;}
.ws3d{word-spacing:-48.300000px;}
.ws5d{word-spacing:-48.180000px;}
.wsa3{word-spacing:-47.880000px;}
.wsa8{word-spacing:-47.820000px;}
.ws2a{word-spacing:-47.760000px;}
.ws38{word-spacing:-47.460000px;}
.ws32{word-spacing:-47.340000px;}
.ws3c{word-spacing:-47.280000px;}
.ws9b{word-spacing:-47.220000px;}
.ws46{word-spacing:-47.100000px;}
.ws5b{word-spacing:-47.040000px;}
.wsb{word-spacing:-46.800000px;}
.ws44{word-spacing:-46.740000px;}
.ws5e{word-spacing:-46.560000px;}
.ws2d{word-spacing:-46.500000px;}
.ws85{word-spacing:-46.440000px;}
.wsab{word-spacing:-46.320000px;}
.ws67{word-spacing:-46.140000px;}
.ws78{word-spacing:-46.080000px;}
.ws4d{word-spacing:-45.780000px;}
.ws5c{word-spacing:-45.720000px;}
.ws6f{word-spacing:-45.540000px;}
.wsa7{word-spacing:-45.480000px;}
.ws25{word-spacing:-45.360000px;}
.ws6d{word-spacing:-45.120000px;}
.ws1c{word-spacing:-45.000000px;}
.ws8c{word-spacing:-44.760000px;}
.ws62{word-spacing:-44.700000px;}
.wsc{word-spacing:-44.640000px;}
.wsa5{word-spacing:-44.340000px;}
.ws77{word-spacing:-44.220000px;}
.ws2c{word-spacing:-43.800000px;}
.ws47{word-spacing:-43.740000px;}
.ws4e{word-spacing:-43.500000px;}
.ws2f{word-spacing:-43.440000px;}
.ws5a{word-spacing:-43.380000px;}
.ws3b{word-spacing:-43.260000px;}
.ws18{word-spacing:-43.200000px;}
.ws8d{word-spacing:-43.140000px;}
.wsa2{word-spacing:-42.960000px;}
.ws6{word-spacing:-42.840000px;}
.ws96{word-spacing:-42.600000px;}
.ws87{word-spacing:-42.420000px;}
.ws1a{word-spacing:-42.360000px;}
.ws81{word-spacing:-42.300000px;}
.ws9f{word-spacing:-42.240000px;}
.ws60{word-spacing:-42.000000px;}
.ws34{word-spacing:-41.760000px;}
.ws73{word-spacing:-41.520000px;}
.ws40{word-spacing:-41.400000px;}
.ws23{word-spacing:-41.340000px;}
.ws48{word-spacing:-41.280000px;}
.ws64{word-spacing:-41.220000px;}
.ws7e{word-spacing:-40.920000px;}
.ws33{word-spacing:-40.740000px;}
.ws91{word-spacing:-40.500000px;}
.ws15{word-spacing:-40.440000px;}
.ws39{word-spacing:-40.320000px;}
.ws7d{word-spacing:-39.900000px;}
.ws6e{word-spacing:-39.840000px;}
.ws51{word-spacing:-39.600000px;}
.ws65{word-spacing:-39.480000px;}
.ws69{word-spacing:-39.420000px;}
.wsa1{word-spacing:-39.060000px;}
.ws42{word-spacing:-38.640000px;}
.ws49{word-spacing:-38.460000px;}
.ws5f{word-spacing:-38.160000px;}
.ws54{word-spacing:-38.100000px;}
.wsa9{word-spacing:-38.040000px;}
.ws71{word-spacing:-37.980000px;}
.ws88{word-spacing:-37.440000px;}
.ws93{word-spacing:-37.260000px;}
.ws52{word-spacing:-37.200000px;}
.ws2e{word-spacing:-37.080000px;}
.ws27{word-spacing:-36.960000px;}
.ws6c{word-spacing:-36.780000px;}
.ws76{word-spacing:-36.600000px;}
.ws89{word-spacing:-36.000000px;}
.ws8b{word-spacing:-35.760000px;}
.ws59{word-spacing:-35.700000px;}
.wsa0{word-spacing:-35.580000px;}
.ws7a{word-spacing:-35.520000px;}
.ws21{word-spacing:-35.220000px;}
.ws3a{word-spacing:-34.980000px;}
.ws17{word-spacing:-34.800000px;}
.ws8f{word-spacing:-34.620000px;}
.ws3e{word-spacing:-34.500000px;}
.ws45{word-spacing:-34.440000px;}
.wse{word-spacing:-34.020000px;}
.ws8e{word-spacing:-33.900000px;}
.ws22{word-spacing:-33.780000px;}
.ws1f{word-spacing:-33.120000px;}
.ws4a{word-spacing:-32.460000px;}
.ws9a{word-spacing:-32.400000px;}
.wsaa{word-spacing:-32.100000px;}
.ws58{word-spacing:-32.040000px;}
.ws19{word-spacing:-31.740000px;}
.ws9d{word-spacing:-31.500000px;}
.ws6b{word-spacing:-31.440000px;}
.ws97{word-spacing:-31.080000px;}
.ws82{word-spacing:-30.600000px;}
.ws20{word-spacing:-30.180000px;}
.ws80{word-spacing:-30.120000px;}
.ws4f{word-spacing:-29.100000px;}
.ws9c{word-spacing:-29.040000px;}
.ws4b{word-spacing:-28.560000px;}
.ws43{word-spacing:-28.440000px;}
.ws61{word-spacing:-28.080000px;}
.ws99{word-spacing:-26.760000px;}
.ws6a{word-spacing:-25.800000px;}
.ws14{word-spacing:-24.240000px;}
.wsac{word-spacing:-23.580000px;}
.ws94{word-spacing:-21.840000px;}
.ws7c{word-spacing:-21.780000px;}
.wsa4{word-spacing:-21.120000px;}
.ws86{word-spacing:-20.520000px;}
.ws84{word-spacing:-20.100000px;}
.ws50{word-spacing:-19.080000px;}
.ws7f{word-spacing:-17.760000px;}
.ws8a{word-spacing:-16.440000px;}
.ws70{word-spacing:-15.240000px;}
.ws2{word-spacing:-15.000000px;}
.ws4c{word-spacing:-13.860000px;}
.ws7b{word-spacing:-11.820000px;}
.ws75{word-spacing:-10.500000px;}
.ws53{word-spacing:-3.300000px;}
.ws10{word-spacing:-1.080000px;}
.wsf{word-spacing:0.000000px;}
.ws1{word-spacing:0.720000px;}
.ws37{word-spacing:2.640000px;}
.ws95{word-spacing:6.420000px;}
.ws11{word-spacing:8.316000px;}
.ws3{word-spacing:10.038000px;}
.ws90{word-spacing:18.300000px;}
.ws9e{word-spacing:18.840000px;}
.ws83{word-spacing:28.740000px;}
.ws12{word-spacing:48.021000px;}
.ws13{word-spacing:386.314800px;}
.ws0{word-spacing:1714.377600px;}
._12{margin-left:-8.340000px;}
._10{margin-left:-6.900000px;}
._4{margin-left:-5.508000px;}
._2{margin-left:-4.386000px;}
._5{margin-left:-3.363600px;}
._3{margin-left:-2.154000px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._9{width:2.700000px;}
._6{width:3.942000px;}
._8{width:4.998000px;}
._7{width:6.060000px;}
._d{width:7.080000px;}
._a{width:8.100000px;}
._f{width:10.200000px;}
._15{width:13.140000px;}
._e{width:15.120000px;}
._c{width:16.200000px;}
._18{width:17.880000px;}
._17{width:20.940000px;}
._14{width:23.220000px;}
._11{width:25.020000px;}
._13{width:26.586000px;}
._16{width:45.774000px;}
._b{width:70.038000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.yd8{bottom:89.409600px;}
.y2e{bottom:92.442450px;}
.y67{bottom:98.819400px;}
.yc6{bottom:99.159600px;}
.ybf{bottom:99.399600px;}
.yd7{bottom:108.909600px;}
.y2d{bottom:111.942450px;}
.y66{bottom:118.319400px;}
.yc5{bottom:118.659600px;}
.ybe{bottom:118.899600px;}
.yd6{bottom:128.409600px;}
.y2c{bottom:131.442450px;}
.y65{bottom:137.819400px;}
.y90{bottom:138.159600px;}
.ybd{bottom:138.399600px;}
.yd5{bottom:147.909600px;}
.y2b{bottom:150.942450px;}
.y64{bottom:157.319400px;}
.y8f{bottom:157.659600px;}
.ybc{bottom:157.899600px;}
.yd4{bottom:167.409600px;}
.y2a{bottom:170.442450px;}
.y63{bottom:176.819400px;}
.y8e{bottom:177.159600px;}
.ybb{bottom:177.399600px;}
.yd3{bottom:186.909600px;}
.y29{bottom:189.942450px;}
.y62{bottom:196.319400px;}
.y8d{bottom:196.659600px;}
.yba{bottom:196.899600px;}
.yd2{bottom:205.659600px;}
.y28{bottom:209.442450px;}
.y61{bottom:215.819400px;}
.yc4{bottom:216.159600px;}
.yb9{bottom:216.399600px;}
.yd1{bottom:224.409600px;}
.y27{bottom:228.942450px;}
.y60{bottom:235.319400px;}
.y8c{bottom:235.659600px;}
.yb8{bottom:235.899600px;}
.yd0{bottom:243.159600px;}
.y26{bottom:248.442450px;}
.y5f{bottom:254.819400px;}
.y8b{bottom:255.159600px;}
.yb7{bottom:255.399600px;}
.ycf{bottom:261.909600px;}
.y25{bottom:267.942450px;}
.y5e{bottom:274.319400px;}
.y8a{bottom:274.659600px;}
.yb6{bottom:274.899600px;}
.yce{bottom:280.659600px;}
.y24{bottom:287.442450px;}
.y5d{bottom:293.819400px;}
.y89{bottom:294.159600px;}
.yb5{bottom:294.399600px;}
.ycd{bottom:299.409600px;}
.y23{bottom:306.942450px;}
.y5c{bottom:313.319400px;}
.y88{bottom:313.659600px;}
.yb4{bottom:313.899600px;}
.ycc{bottom:318.159600px;}
.y22{bottom:326.442450px;}
.y5b{bottom:332.819400px;}
.y87{bottom:333.159600px;}
.yb3{bottom:333.399600px;}
.ycb{bottom:336.909600px;}
.y21{bottom:345.942450px;}
.y5a{bottom:352.319400px;}
.y86{bottom:352.659600px;}
.yb2{bottom:352.899600px;}
.yca{bottom:355.659600px;}
.y20{bottom:365.442450px;}
.y59{bottom:371.819400px;}
.y85{bottom:372.159600px;}
.yb1{bottom:372.399600px;}
.yc9{bottom:374.409600px;}
.y1f{bottom:384.942450px;}
.y58{bottom:391.319400px;}
.yc3{bottom:391.659600px;}
.yb0{bottom:391.899600px;}
.yc8{bottom:393.159600px;}
.y1e{bottom:404.442450px;}
.y57{bottom:410.819400px;}
.y84{bottom:411.159600px;}
.yaf{bottom:411.399600px;}
.yc7{bottom:411.909600px;}
.y1d{bottom:423.942450px;}
.y56{bottom:430.319400px;}
.y83{bottom:430.659600px;}
.yae{bottom:430.899600px;}
.y1c{bottom:443.442450px;}
.y55{bottom:449.819400px;}
.y82{bottom:450.159600px;}
.yad{bottom:450.399600px;}
.y37{bottom:456.139950px;}
.y1b{bottom:462.942450px;}
.y54{bottom:469.319400px;}
.y81{bottom:469.659600px;}
.yac{bottom:469.899600px;}
.y36{bottom:478.639950px;}
.y1a{bottom:482.442450px;}
.y53{bottom:488.819400px;}
.yc2{bottom:489.159600px;}
.yab{bottom:489.399600px;}
.y35{bottom:501.139950px;}
.y19{bottom:501.942450px;}
.y52{bottom:508.319400px;}
.y80{bottom:508.659600px;}
.yaa{bottom:508.899600px;}
.y18{bottom:521.442450px;}
.y51{bottom:527.819400px;}
.y7f{bottom:528.159600px;}
.ya9{bottom:528.399600px;}
.y17{bottom:540.942450px;}
.y34{bottom:541.639950px;}
.y50{bottom:547.319400px;}
.y7e{bottom:547.659600px;}
.ya8{bottom:547.899600px;}
.y16{bottom:560.442450px;}
.y4f{bottom:566.819400px;}
.y7d{bottom:567.159600px;}
.ya7{bottom:567.399600px;}
.y15{bottom:579.942450px;}
.y4e{bottom:586.319400px;}
.y33{bottom:586.639950px;}
.y7c{bottom:586.659600px;}
.ya6{bottom:586.899600px;}
.y14{bottom:599.442450px;}
.y4d{bottom:605.819400px;}
.y7b{bottom:606.159600px;}
.ya5{bottom:606.399600px;}
.y13{bottom:618.942450px;}
.y4c{bottom:625.319400px;}
.y7a{bottom:625.659600px;}
.ya4{bottom:625.899600px;}
.y32{bottom:627.139950px;}
.y12{bottom:638.442450px;}
.y4b{bottom:644.819400px;}
.y79{bottom:645.159600px;}
.ya3{bottom:645.399600px;}
.y11{bottom:657.942450px;}
.y31{bottom:663.139950px;}
.y4a{bottom:664.319400px;}
.yc1{bottom:664.659600px;}
.ya2{bottom:664.899600px;}
.y10{bottom:677.442450px;}
.y49{bottom:683.819400px;}
.y78{bottom:684.159600px;}
.ya1{bottom:684.399600px;}
.y30{bottom:699.139950px;}
.y48{bottom:703.319400px;}
.y77{bottom:703.659600px;}
.ya0{bottom:703.899600px;}
.yf{bottom:719.460450px;}
.y47{bottom:722.819400px;}
.y76{bottom:723.159600px;}
.y9f{bottom:723.399600px;}
.y2f{bottom:735.139950px;}
.ye{bottom:737.455950px;}
.y46{bottom:742.319400px;}
.y75{bottom:742.659600px;}
.y9e{bottom:742.899600px;}
.yd{bottom:755.451450px;}
.y45{bottom:761.819400px;}
.y74{bottom:762.159600px;}
.y9d{bottom:762.399600px;}
.yc{bottom:773.446950px;}
.y44{bottom:781.319400px;}
.y73{bottom:781.659600px;}
.y9c{bottom:781.899600px;}
.yb{bottom:791.442450px;}
.y43{bottom:800.819400px;}
.yc0{bottom:801.159600px;}
.y9b{bottom:801.399600px;}
.ya{bottom:809.442450px;}
.y68{bottom:820.319400px;}
.y72{bottom:820.659600px;}
.y9a{bottom:820.899600px;}
.y42{bottom:839.819400px;}
.y71{bottom:840.159600px;}
.y99{bottom:840.399600px;}
.y9{bottom:851.446950px;}
.y41{bottom:859.319400px;}
.y70{bottom:859.659600px;}
.y98{bottom:859.899600px;}
.y8{bottom:869.442450px;}
.y40{bottom:878.819400px;}
.y6f{bottom:879.159600px;}
.y97{bottom:879.399600px;}
.y7{bottom:887.442450px;}
.y3f{bottom:898.319400px;}
.y6e{bottom:898.659600px;}
.y96{bottom:898.899600px;}
.y3e{bottom:917.819400px;}
.y6d{bottom:918.159600px;}
.y95{bottom:918.399600px;}
.y3d{bottom:937.319400px;}
.y6c{bottom:937.659600px;}
.y94{bottom:937.899600px;}
.y6{bottom:939.949950px;}
.y3c{bottom:956.819400px;}
.y6b{bottom:957.159600px;}
.y93{bottom:957.399600px;}
.y5{bottom:965.442450px;}
.y3b{bottom:976.319400px;}
.y6a{bottom:976.659600px;}
.y92{bottom:976.899600px;}
.y3a{bottom:995.819400px;}
.y69{bottom:996.159600px;}
.y91{bottom:996.399600px;}
.y4{bottom:1024.374150px;}
.y39{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.h8{height:37.494141px;}
.hf{height:39.990234px;}
.h9{height:40.664062px;}
.ha{height:41.689453px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.hc{height:46.200000px;}
.hb{height:50.400000px;}
.he{height:52.492611px;}
.h7{height:52.863281px;}
.hd{height:53.467611px;}
.h6{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xd{left:65.202600px;}
.xb{left:73.559100px;}
.xc{left:74.853150px;}
.x10{left:85.039350px;}
.xf{left:90.734550px;}
.xa{left:224.187900px;}
.x5{left:244.642050px;}
.x6{left:379.754550px;}
.x9{left:398.391900px;}
.xe{left:399.959550px;}
.x4{left:412.272150px;}
.x11{left:421.159350px;}
.x12{left:426.944550px;}
.x8{left:460.140900px;}
.x7{left:604.225200px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-53.333333pt;}
.ws68{word-spacing:-46.026667pt;}
.ws3f{word-spacing:-45.973333pt;}
.ws35{word-spacing:-45.866667pt;}
.wsd{word-spacing:-45.813333pt;}
.ws31{word-spacing:-45.760000pt;}
.ws5{word-spacing:-45.706667pt;}
.ws36{word-spacing:-45.653333pt;}
.ws8{word-spacing:-45.493333pt;}
.ws30{word-spacing:-45.440000pt;}
.ws92{word-spacing:-45.386667pt;}
.ws1e{word-spacing:-45.280000pt;}
.ws74{word-spacing:-45.226667pt;}
.ws7{word-spacing:-45.173333pt;}
.ws1d{word-spacing:-45.120000pt;}
.wsa{word-spacing:-45.013333pt;}
.ws1b{word-spacing:-44.960000pt;}
.ws63{word-spacing:-44.906667pt;}
.ws56{word-spacing:-44.800000pt;}
.ws57{word-spacing:-44.746667pt;}
.ws24{word-spacing:-44.693333pt;}
.ws72{word-spacing:-44.640000pt;}
.ws41{word-spacing:-44.533333pt;}
.ws16{word-spacing:-44.320000pt;}
.wsa6{word-spacing:-43.946667pt;}
.ws9{word-spacing:-43.893333pt;}
.ws26{word-spacing:-43.840000pt;}
.ws28{word-spacing:-43.786667pt;}
.ws98{word-spacing:-43.733333pt;}
.ws79{word-spacing:-43.573333pt;}
.ws55{word-spacing:-43.520000pt;}
.ws2b{word-spacing:-43.413333pt;}
.ws66{word-spacing:-43.200000pt;}
.ws29{word-spacing:-43.040000pt;}
.ws3d{word-spacing:-42.933333pt;}
.ws5d{word-spacing:-42.826667pt;}
.wsa3{word-spacing:-42.560000pt;}
.wsa8{word-spacing:-42.506667pt;}
.ws2a{word-spacing:-42.453333pt;}
.ws38{word-spacing:-42.186667pt;}
.ws32{word-spacing:-42.080000pt;}
.ws3c{word-spacing:-42.026667pt;}
.ws9b{word-spacing:-41.973333pt;}
.ws46{word-spacing:-41.866667pt;}
.ws5b{word-spacing:-41.813333pt;}
.wsb{word-spacing:-41.600000pt;}
.ws44{word-spacing:-41.546667pt;}
.ws5e{word-spacing:-41.386667pt;}
.ws2d{word-spacing:-41.333333pt;}
.ws85{word-spacing:-41.280000pt;}
.wsab{word-spacing:-41.173333pt;}
.ws67{word-spacing:-41.013333pt;}
.ws78{word-spacing:-40.960000pt;}
.ws4d{word-spacing:-40.693333pt;}
.ws5c{word-spacing:-40.640000pt;}
.ws6f{word-spacing:-40.480000pt;}
.wsa7{word-spacing:-40.426667pt;}
.ws25{word-spacing:-40.320000pt;}
.ws6d{word-spacing:-40.106667pt;}
.ws1c{word-spacing:-40.000000pt;}
.ws8c{word-spacing:-39.786667pt;}
.ws62{word-spacing:-39.733333pt;}
.wsc{word-spacing:-39.680000pt;}
.wsa5{word-spacing:-39.413333pt;}
.ws77{word-spacing:-39.306667pt;}
.ws2c{word-spacing:-38.933333pt;}
.ws47{word-spacing:-38.880000pt;}
.ws4e{word-spacing:-38.666667pt;}
.ws2f{word-spacing:-38.613333pt;}
.ws5a{word-spacing:-38.560000pt;}
.ws3b{word-spacing:-38.453333pt;}
.ws18{word-spacing:-38.400000pt;}
.ws8d{word-spacing:-38.346667pt;}
.wsa2{word-spacing:-38.186667pt;}
.ws6{word-spacing:-38.080000pt;}
.ws96{word-spacing:-37.866667pt;}
.ws87{word-spacing:-37.706667pt;}
.ws1a{word-spacing:-37.653333pt;}
.ws81{word-spacing:-37.600000pt;}
.ws9f{word-spacing:-37.546667pt;}
.ws60{word-spacing:-37.333333pt;}
.ws34{word-spacing:-37.120000pt;}
.ws73{word-spacing:-36.906667pt;}
.ws40{word-spacing:-36.800000pt;}
.ws23{word-spacing:-36.746667pt;}
.ws48{word-spacing:-36.693333pt;}
.ws64{word-spacing:-36.640000pt;}
.ws7e{word-spacing:-36.373333pt;}
.ws33{word-spacing:-36.213333pt;}
.ws91{word-spacing:-36.000000pt;}
.ws15{word-spacing:-35.946667pt;}
.ws39{word-spacing:-35.840000pt;}
.ws7d{word-spacing:-35.466667pt;}
.ws6e{word-spacing:-35.413333pt;}
.ws51{word-spacing:-35.200000pt;}
.ws65{word-spacing:-35.093333pt;}
.ws69{word-spacing:-35.040000pt;}
.wsa1{word-spacing:-34.720000pt;}
.ws42{word-spacing:-34.346667pt;}
.ws49{word-spacing:-34.186667pt;}
.ws5f{word-spacing:-33.920000pt;}
.ws54{word-spacing:-33.866667pt;}
.wsa9{word-spacing:-33.813333pt;}
.ws71{word-spacing:-33.760000pt;}
.ws88{word-spacing:-33.280000pt;}
.ws93{word-spacing:-33.120000pt;}
.ws52{word-spacing:-33.066667pt;}
.ws2e{word-spacing:-32.960000pt;}
.ws27{word-spacing:-32.853333pt;}
.ws6c{word-spacing:-32.693333pt;}
.ws76{word-spacing:-32.533333pt;}
.ws89{word-spacing:-32.000000pt;}
.ws8b{word-spacing:-31.786667pt;}
.ws59{word-spacing:-31.733333pt;}
.wsa0{word-spacing:-31.626667pt;}
.ws7a{word-spacing:-31.573333pt;}
.ws21{word-spacing:-31.306667pt;}
.ws3a{word-spacing:-31.093333pt;}
.ws17{word-spacing:-30.933333pt;}
.ws8f{word-spacing:-30.773333pt;}
.ws3e{word-spacing:-30.666667pt;}
.ws45{word-spacing:-30.613333pt;}
.wse{word-spacing:-30.240000pt;}
.ws8e{word-spacing:-30.133333pt;}
.ws22{word-spacing:-30.026667pt;}
.ws1f{word-spacing:-29.440000pt;}
.ws4a{word-spacing:-28.853333pt;}
.ws9a{word-spacing:-28.800000pt;}
.wsaa{word-spacing:-28.533333pt;}
.ws58{word-spacing:-28.480000pt;}
.ws19{word-spacing:-28.213333pt;}
.ws9d{word-spacing:-28.000000pt;}
.ws6b{word-spacing:-27.946667pt;}
.ws97{word-spacing:-27.626667pt;}
.ws82{word-spacing:-27.200000pt;}
.ws20{word-spacing:-26.826667pt;}
.ws80{word-spacing:-26.773333pt;}
.ws4f{word-spacing:-25.866667pt;}
.ws9c{word-spacing:-25.813333pt;}
.ws4b{word-spacing:-25.386667pt;}
.ws43{word-spacing:-25.280000pt;}
.ws61{word-spacing:-24.960000pt;}
.ws99{word-spacing:-23.786667pt;}
.ws6a{word-spacing:-22.933333pt;}
.ws14{word-spacing:-21.546667pt;}
.wsac{word-spacing:-20.960000pt;}
.ws94{word-spacing:-19.413333pt;}
.ws7c{word-spacing:-19.360000pt;}
.wsa4{word-spacing:-18.773333pt;}
.ws86{word-spacing:-18.240000pt;}
.ws84{word-spacing:-17.866667pt;}
.ws50{word-spacing:-16.960000pt;}
.ws7f{word-spacing:-15.786667pt;}
.ws8a{word-spacing:-14.613333pt;}
.ws70{word-spacing:-13.546667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws4c{word-spacing:-12.320000pt;}
.ws7b{word-spacing:-10.506667pt;}
.ws75{word-spacing:-9.333333pt;}
.ws53{word-spacing:-2.933333pt;}
.ws10{word-spacing:-0.960000pt;}
.wsf{word-spacing:0.000000pt;}
.ws1{word-spacing:0.640000pt;}
.ws37{word-spacing:2.346667pt;}
.ws95{word-spacing:5.706667pt;}
.ws11{word-spacing:7.392000pt;}
.ws3{word-spacing:8.922667pt;}
.ws90{word-spacing:16.266667pt;}
.ws9e{word-spacing:16.746667pt;}
.ws83{word-spacing:25.546667pt;}
.ws12{word-spacing:42.685333pt;}
.ws13{word-spacing:343.390933pt;}
.ws0{word-spacing:1523.891200pt;}
._12{margin-left:-7.413333pt;}
._10{margin-left:-6.133333pt;}
._4{margin-left:-4.896000pt;}
._2{margin-left:-3.898667pt;}
._5{margin-left:-2.989867pt;}
._3{margin-left:-1.914667pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._9{width:2.400000pt;}
._6{width:3.504000pt;}
._8{width:4.442667pt;}
._7{width:5.386667pt;}
._d{width:6.293333pt;}
._a{width:7.200000pt;}
._f{width:9.066667pt;}
._15{width:11.680000pt;}
._e{width:13.440000pt;}
._c{width:14.400000pt;}
._18{width:15.893333pt;}
._17{width:18.613333pt;}
._14{width:20.640000pt;}
._11{width:22.240000pt;}
._13{width:23.632000pt;}
._16{width:40.688000pt;}
._b{width:62.256000pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.yd8{bottom:79.475200pt;}
.y2e{bottom:82.171067pt;}
.y67{bottom:87.839467pt;}
.yc6{bottom:88.141867pt;}
.ybf{bottom:88.355200pt;}
.yd7{bottom:96.808533pt;}
.y2d{bottom:99.504400pt;}
.y66{bottom:105.172800pt;}
.yc5{bottom:105.475200pt;}
.ybe{bottom:105.688533pt;}
.yd6{bottom:114.141867pt;}
.y2c{bottom:116.837733pt;}
.y65{bottom:122.506133pt;}
.y90{bottom:122.808533pt;}
.ybd{bottom:123.021867pt;}
.yd5{bottom:131.475200pt;}
.y2b{bottom:134.171067pt;}
.y64{bottom:139.839467pt;}
.y8f{bottom:140.141867pt;}
.ybc{bottom:140.355200pt;}
.yd4{bottom:148.808533pt;}
.y2a{bottom:151.504400pt;}
.y63{bottom:157.172800pt;}
.y8e{bottom:157.475200pt;}
.ybb{bottom:157.688533pt;}
.yd3{bottom:166.141867pt;}
.y29{bottom:168.837733pt;}
.y62{bottom:174.506133pt;}
.y8d{bottom:174.808533pt;}
.yba{bottom:175.021867pt;}
.yd2{bottom:182.808533pt;}
.y28{bottom:186.171067pt;}
.y61{bottom:191.839467pt;}
.yc4{bottom:192.141867pt;}
.yb9{bottom:192.355200pt;}
.yd1{bottom:199.475200pt;}
.y27{bottom:203.504400pt;}
.y60{bottom:209.172800pt;}
.y8c{bottom:209.475200pt;}
.yb8{bottom:209.688533pt;}
.yd0{bottom:216.141867pt;}
.y26{bottom:220.837733pt;}
.y5f{bottom:226.506133pt;}
.y8b{bottom:226.808533pt;}
.yb7{bottom:227.021867pt;}
.ycf{bottom:232.808533pt;}
.y25{bottom:238.171067pt;}
.y5e{bottom:243.839467pt;}
.y8a{bottom:244.141867pt;}
.yb6{bottom:244.355200pt;}
.yce{bottom:249.475200pt;}
.y24{bottom:255.504400pt;}
.y5d{bottom:261.172800pt;}
.y89{bottom:261.475200pt;}
.yb5{bottom:261.688533pt;}
.ycd{bottom:266.141867pt;}
.y23{bottom:272.837733pt;}
.y5c{bottom:278.506133pt;}
.y88{bottom:278.808533pt;}
.yb4{bottom:279.021867pt;}
.ycc{bottom:282.808533pt;}
.y22{bottom:290.171067pt;}
.y5b{bottom:295.839467pt;}
.y87{bottom:296.141867pt;}
.yb3{bottom:296.355200pt;}
.ycb{bottom:299.475200pt;}
.y21{bottom:307.504400pt;}
.y5a{bottom:313.172800pt;}
.y86{bottom:313.475200pt;}
.yb2{bottom:313.688533pt;}
.yca{bottom:316.141867pt;}
.y20{bottom:324.837733pt;}
.y59{bottom:330.506133pt;}
.y85{bottom:330.808533pt;}
.yb1{bottom:331.021867pt;}
.yc9{bottom:332.808533pt;}
.y1f{bottom:342.171067pt;}
.y58{bottom:347.839467pt;}
.yc3{bottom:348.141867pt;}
.yb0{bottom:348.355200pt;}
.yc8{bottom:349.475200pt;}
.y1e{bottom:359.504400pt;}
.y57{bottom:365.172800pt;}
.y84{bottom:365.475200pt;}
.yaf{bottom:365.688533pt;}
.yc7{bottom:366.141867pt;}
.y1d{bottom:376.837733pt;}
.y56{bottom:382.506133pt;}
.y83{bottom:382.808533pt;}
.yae{bottom:383.021867pt;}
.y1c{bottom:394.171067pt;}
.y55{bottom:399.839467pt;}
.y82{bottom:400.141867pt;}
.yad{bottom:400.355200pt;}
.y37{bottom:405.457733pt;}
.y1b{bottom:411.504400pt;}
.y54{bottom:417.172800pt;}
.y81{bottom:417.475200pt;}
.yac{bottom:417.688533pt;}
.y36{bottom:425.457733pt;}
.y1a{bottom:428.837733pt;}
.y53{bottom:434.506133pt;}
.yc2{bottom:434.808533pt;}
.yab{bottom:435.021867pt;}
.y35{bottom:445.457733pt;}
.y19{bottom:446.171067pt;}
.y52{bottom:451.839467pt;}
.y80{bottom:452.141867pt;}
.yaa{bottom:452.355200pt;}
.y18{bottom:463.504400pt;}
.y51{bottom:469.172800pt;}
.y7f{bottom:469.475200pt;}
.ya9{bottom:469.688533pt;}
.y17{bottom:480.837733pt;}
.y34{bottom:481.457733pt;}
.y50{bottom:486.506133pt;}
.y7e{bottom:486.808533pt;}
.ya8{bottom:487.021867pt;}
.y16{bottom:498.171067pt;}
.y4f{bottom:503.839467pt;}
.y7d{bottom:504.141867pt;}
.ya7{bottom:504.355200pt;}
.y15{bottom:515.504400pt;}
.y4e{bottom:521.172800pt;}
.y33{bottom:521.457733pt;}
.y7c{bottom:521.475200pt;}
.ya6{bottom:521.688533pt;}
.y14{bottom:532.837733pt;}
.y4d{bottom:538.506133pt;}
.y7b{bottom:538.808533pt;}
.ya5{bottom:539.021867pt;}
.y13{bottom:550.171067pt;}
.y4c{bottom:555.839467pt;}
.y7a{bottom:556.141867pt;}
.ya4{bottom:556.355200pt;}
.y32{bottom:557.457733pt;}
.y12{bottom:567.504400pt;}
.y4b{bottom:573.172800pt;}
.y79{bottom:573.475200pt;}
.ya3{bottom:573.688533pt;}
.y11{bottom:584.837733pt;}
.y31{bottom:589.457733pt;}
.y4a{bottom:590.506133pt;}
.yc1{bottom:590.808533pt;}
.ya2{bottom:591.021867pt;}
.y10{bottom:602.171067pt;}
.y49{bottom:607.839467pt;}
.y78{bottom:608.141867pt;}
.ya1{bottom:608.355200pt;}
.y30{bottom:621.457733pt;}
.y48{bottom:625.172800pt;}
.y77{bottom:625.475200pt;}
.ya0{bottom:625.688533pt;}
.yf{bottom:639.520400pt;}
.y47{bottom:642.506133pt;}
.y76{bottom:642.808533pt;}
.y9f{bottom:643.021867pt;}
.y2f{bottom:653.457733pt;}
.ye{bottom:655.516400pt;}
.y46{bottom:659.839467pt;}
.y75{bottom:660.141867pt;}
.y9e{bottom:660.355200pt;}
.yd{bottom:671.512400pt;}
.y45{bottom:677.172800pt;}
.y74{bottom:677.475200pt;}
.y9d{bottom:677.688533pt;}
.yc{bottom:687.508400pt;}
.y44{bottom:694.506133pt;}
.y73{bottom:694.808533pt;}
.y9c{bottom:695.021867pt;}
.yb{bottom:703.504400pt;}
.y43{bottom:711.839467pt;}
.yc0{bottom:712.141867pt;}
.y9b{bottom:712.355200pt;}
.ya{bottom:719.504400pt;}
.y68{bottom:729.172800pt;}
.y72{bottom:729.475200pt;}
.y9a{bottom:729.688533pt;}
.y42{bottom:746.506133pt;}
.y71{bottom:746.808533pt;}
.y99{bottom:747.021867pt;}
.y9{bottom:756.841733pt;}
.y41{bottom:763.839467pt;}
.y70{bottom:764.141867pt;}
.y98{bottom:764.355200pt;}
.y8{bottom:772.837733pt;}
.y40{bottom:781.172800pt;}
.y6f{bottom:781.475200pt;}
.y97{bottom:781.688533pt;}
.y7{bottom:788.837733pt;}
.y3f{bottom:798.506133pt;}
.y6e{bottom:798.808533pt;}
.y96{bottom:799.021867pt;}
.y3e{bottom:815.839467pt;}
.y6d{bottom:816.141867pt;}
.y95{bottom:816.355200pt;}
.y3d{bottom:833.172800pt;}
.y6c{bottom:833.475200pt;}
.y94{bottom:833.688533pt;}
.y6{bottom:835.511067pt;}
.y3c{bottom:850.506133pt;}
.y6b{bottom:850.808533pt;}
.y93{bottom:851.021867pt;}
.y5{bottom:858.171067pt;}
.y3b{bottom:867.839467pt;}
.y6a{bottom:868.141867pt;}
.y92{bottom:868.355200pt;}
.y3a{bottom:885.172800pt;}
.y69{bottom:885.475200pt;}
.y91{bottom:885.688533pt;}
.y4{bottom:910.554800pt;}
.y39{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.h8{height:33.328125pt;}
.hf{height:35.546875pt;}
.h9{height:36.145833pt;}
.ha{height:37.057292pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.hc{height:41.066667pt;}
.hb{height:44.800000pt;}
.he{height:46.660099pt;}
.h7{height:46.989583pt;}
.hd{height:47.526765pt;}
.h6{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xd{left:57.957867pt;}
.xb{left:65.385867pt;}
.xc{left:66.536133pt;}
.x10{left:75.590533pt;}
.xf{left:80.652933pt;}
.xa{left:199.278133pt;}
.x5{left:217.459600pt;}
.x6{left:337.559600pt;}
.x9{left:354.126133pt;}
.xe{left:355.519600pt;}
.x4{left:366.464133pt;}
.x11{left:374.363867pt;}
.x12{left:379.506267pt;}
.x8{left:409.014133pt;}
.x7{left:537.089067pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
}




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