
    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_a4143ccd0b9240d2c725a44f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_23951825c0582af324300876.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_2d535977da6e29a2874a629c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_ac76bd160adba3a2452d8609.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080000;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_4e589d364181c1bb3169ba26.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117000;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_ca9cd08d914b92408a968848.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_a9f45f6ac4ab8ec275698dac.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_f082b59bebead21b4ff7330e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978000;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;}
.m4{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,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);}
.m3{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);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.982056px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.981873px;}
.ls4{letter-spacing:-1.122000px;}
.ls1{letter-spacing:-0.528000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.066660px;}
.ls2{letter-spacing:0.180600px;}
.ls5{letter-spacing:0.432000px;}
.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:-17.280000px;}
.ws61{word-spacing:-15.240000px;}
.ws2{word-spacing:-14.580600px;}
.ws3{word-spacing:-14.400000px;}
.wsb8{word-spacing:-13.716000px;}
.ws0{word-spacing:-13.166044px;}
.ws9b{word-spacing:-12.192000px;}
.ws17{word-spacing:-9.906000px;}
.wsb7{word-spacing:-7.744572px;}
.ws2d{word-spacing:-3.000000px;}
.ws2e{word-spacing:-2.940000px;}
.ws1e{word-spacing:-2.880000px;}
.ws44{word-spacing:-2.820000px;}
.ws98{word-spacing:-2.640600px;}
.ws46{word-spacing:-2.580000px;}
.wsc{word-spacing:-2.460000px;}
.ws6f{word-spacing:-2.399400px;}
.ws64{word-spacing:-2.100000px;}
.ws2b{word-spacing:-1.980000px;}
.wsa5{word-spacing:-1.919520px;}
.ws3e{word-spacing:-1.860600px;}
.ws65{word-spacing:-1.800000px;}
.ws3b{word-spacing:-1.740600px;}
.wsa2{word-spacing:-1.728000px;}
.ws38{word-spacing:-1.674540px;}
.ws81{word-spacing:-1.619400px;}
.ws89{word-spacing:-1.560000px;}
.ws8b{word-spacing:-1.499400px;}
.ws9f{word-spacing:-1.488480px;}
.wsa7{word-spacing:-1.392480px;}
.ws90{word-spacing:-1.320000px;}
.ws92{word-spacing:-1.260000px;}
.wsac{word-spacing:-1.248000px;}
.ws62{word-spacing:-1.200000px;}
.wsa9{word-spacing:-1.199520px;}
.wsb{word-spacing:-1.140000px;}
.ws10{word-spacing:-1.080600px;}
.wse{word-spacing:-1.020000px;}
.ws8d{word-spacing:-0.960600px;}
.wsaf{word-spacing:-0.912000px;}
.wsa8{word-spacing:-0.864480px;}
.wsa{word-spacing:-0.840600px;}
.wsa3{word-spacing:-0.768480px;}
.ws8e{word-spacing:-0.719400px;}
.ws31{word-spacing:-0.660000px;}
.ws49{word-spacing:-0.540000px;}
.wsab{word-spacing:-0.432000px;}
.ws33{word-spacing:-0.420000px;}
.ws12{word-spacing:-0.360000px;}
.ws59{word-spacing:-0.300000px;}
.wsad{word-spacing:-0.192000px;}
.ws94{word-spacing:-0.120000px;}
.ws4a{word-spacing:-0.066660px;}
.ws1{word-spacing:0.000000px;}
.ws36{word-spacing:0.060600px;}
.ws9e{word-spacing:0.096000px;}
.ws2a{word-spacing:0.120000px;}
.ws60{word-spacing:0.180600px;}
.ws8f{word-spacing:0.300000px;}
.ws45{word-spacing:0.360000px;}
.ws3c{word-spacing:0.420000px;}
.ws99{word-spacing:0.480000px;}
.ws5{word-spacing:0.528000px;}
.ws9a{word-spacing:0.540000px;}
.ws75{word-spacing:0.599400px;}
.wsb0{word-spacing:0.624000px;}
.ws73{word-spacing:0.660000px;}
.ws63{word-spacing:0.719400px;}
.ws40{word-spacing:0.780000px;}
.ws91{word-spacing:0.900000px;}
.ws76{word-spacing:0.960600px;}
.ws21{word-spacing:1.020000px;}
.ws6a{word-spacing:1.080600px;}
.ws9c{word-spacing:1.122000px;}
.ws47{word-spacing:1.140000px;}
.wsae{word-spacing:1.199520px;}
.ws72{word-spacing:1.200000px;}
.ws5a{word-spacing:1.379400px;}
.ws14{word-spacing:1.440000px;}
.ws4c{word-spacing:1.499400px;}
.ws3a{word-spacing:1.560000px;}
.ws29{word-spacing:1.619400px;}
.ws9d{word-spacing:1.632000px;}
.ws70{word-spacing:1.680000px;}
.ws54{word-spacing:2.040000px;}
.wsa0{word-spacing:2.160000px;}
.ws66{word-spacing:2.220000px;}
.ws19{word-spacing:2.279400px;}
.ws80{word-spacing:2.340000px;}
.ws2f{word-spacing:2.399400px;}
.ws8a{word-spacing:2.460000px;}
.ws83{word-spacing:2.520600px;}
.ws15{word-spacing:2.640600px;}
.ws4f{word-spacing:2.700000px;}
.ws5d{word-spacing:2.760600px;}
.ws43{word-spacing:2.820000px;}
.wsb2{word-spacing:2.832480px;}
.ws24{word-spacing:2.880000px;}
.ws5b{word-spacing:2.940000px;}
.ws1a{word-spacing:3.000000px;}
.wsaa{word-spacing:3.024000px;}
.wsb5{word-spacing:3.167520px;}
.ws52{word-spacing:3.240000px;}
.ws82{word-spacing:3.299400px;}
.wsf{word-spacing:3.360000px;}
.ws6e{word-spacing:3.420600px;}
.wsb1{word-spacing:3.600000px;}
.ws88{word-spacing:3.720000px;}
.wsa6{word-spacing:3.744000px;}
.ws41{word-spacing:3.780000px;}
.ws5f{word-spacing:3.840000px;}
.ws26{word-spacing:3.900000px;}
.wsd{word-spacing:4.020000px;}
.ws51{word-spacing:4.079400px;}
.ws39{word-spacing:4.104000px;}
.ws2c{word-spacing:4.140000px;}
.ws8c{word-spacing:4.200600px;}
.ws18{word-spacing:4.260000px;}
.wsb3{word-spacing:4.320000px;}
.wsa1{word-spacing:4.464000px;}
.ws35{word-spacing:4.620000px;}
.ws77{word-spacing:4.680000px;}
.ws5c{word-spacing:4.800000px;}
.ws6c{word-spacing:4.979400px;}
.ws3f{word-spacing:5.100600px;}
.ws78{word-spacing:5.160000px;}
.ws4b{word-spacing:5.220600px;}
.wsb6{word-spacing:5.327520px;}
.ws13{word-spacing:5.340000px;}
.ws7{word-spacing:5.400000px;}
.wsb4{word-spacing:5.472000px;}
.ws74{word-spacing:5.520000px;}
.ws5e{word-spacing:5.580000px;}
.ws22{word-spacing:5.639400px;}
.ws7a{word-spacing:5.880600px;}
.ws53{word-spacing:5.940000px;}
.ws67{word-spacing:6.000600px;}
.ws3d{word-spacing:6.060000px;}
.ws16{word-spacing:6.120600px;}
.ws27{word-spacing:6.180000px;}
.ws1f{word-spacing:6.360000px;}
.ws95{word-spacing:6.480000px;}
.ws4e{word-spacing:6.539400px;}
.ws69{word-spacing:6.780600px;}
.ws37{word-spacing:6.804540px;}
.ws23{word-spacing:6.840000px;}
.ws57{word-spacing:6.900600px;}
.ws96{word-spacing:7.140000px;}
.ws6d{word-spacing:7.200000px;}
.ws6b{word-spacing:7.380000px;}
.ws56{word-spacing:7.560600px;}
.ws25{word-spacing:7.740000px;}
.ws55{word-spacing:7.800000px;}
.ws28{word-spacing:7.980000px;}
.ws34{word-spacing:8.160000px;}
.ws68{word-spacing:8.219400px;}
.ws97{word-spacing:8.280000px;}
.ws79{word-spacing:8.580600px;}
.ws93{word-spacing:8.700000px;}
.ws1b{word-spacing:8.760000px;}
.ws1d{word-spacing:8.940000px;}
.ws4d{word-spacing:8.999400px;}
.ws50{word-spacing:9.060000px;}
.ws42{word-spacing:9.180000px;}
.ws71{word-spacing:9.360600px;}
.ws20{word-spacing:9.480000px;}
.ws6{word-spacing:9.600000px;}
.ws11{word-spacing:9.720000px;}
.ws30{word-spacing:9.899400px;}
.ws1c{word-spacing:9.960000px;}
.ws32{word-spacing:10.440000px;}
.ws48{word-spacing:10.500000px;}
.ws86{word-spacing:10.920600px;}
.ws7b{word-spacing:11.340000px;}
.ws58{word-spacing:11.880000px;}
.ws7e{word-spacing:12.120000px;}
.ws8{word-spacing:12.600600px;}
.wsa4{word-spacing:12.912000px;}
.ws9{word-spacing:13.500600px;}
.ws7f{word-spacing:13.919400px;}
.ws84{word-spacing:14.460000px;}
.ws7c{word-spacing:16.020000px;}
.ws87{word-spacing:16.560000px;}
.ws85{word-spacing:16.920000px;}
.ws7d{word-spacing:17.340000px;}
._14{margin-left:-19.082433px;}
._15{margin-left:-16.810159px;}
._11{margin-left:-11.603972px;}
._16{margin-left:-10.104038px;}
._13{margin-left:-8.639998px;}
._12{margin-left:-7.121995px;}
._e{margin-left:-6.020395px;}
._c{margin-left:-4.300800px;}
._f{margin-left:-3.283176px;}
._b{margin-left:-2.279995px;}
._d{margin-left:-1.119591px;}
._7{width:1.775995px;}
._4{width:3.463191px;}
._5{width:4.824787px;}
._18{width:5.939207px;}
._10{width:8.088004px;}
._0{width:11.721568px;}
._8{width:12.787165px;}
._6{width:17.286353px;}
._1{width:18.326579px;}
._17{width:20.489422px;}
._9{width:22.436739px;}
._3{width:25.396731px;}
._a{width:40.551890px;}
._2{width:736.302239px;}
.fc7{color:rgb(255,0,0);}
.fc4{color:rgb(29,29,27);}
.fc5{color:rgb(74,74,73);}
.fc3{color:rgb(87,87,86);}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc6{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.599920px;}
.fs10{font-size:31.482000px;}
.fs3{font-size:33.828480px;}
.fs6{font-size:37.211328px;}
.fs7{font-size:38.057040px;}
.fs9{font-size:39.000000px;}
.fs2{font-size:42.285600px;}
.fs1{font-size:46.514160px;}
.fs5{font-size:47.359872px;}
.fsf{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fs0{font-size:59.199840px;}
.fsc{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fsd{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fsb{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.267615px;}
.y24{bottom:35.529000px;}
.y23{bottom:36.291450px;}
.y6b{bottom:37.366950px;}
.y22{bottom:45.087021px;}
.y21{bottom:57.074989px;}
.y41{bottom:68.494349px;}
.y20{bottom:69.062956px;}
.y92{bottom:72.867147px;}
.y91{bottom:73.216049px;}
.y1f{bottom:81.050924px;}
.yb3{bottom:83.225400px;}
.y40{bottom:86.494349px;}
.yd7{bottom:86.975400px;}
.y6a{bottom:90.867147px;}
.y90{bottom:91.216049px;}
.y1e{bottom:91.294610px;}
.yb2{bottom:101.225395px;}
.y3f{bottom:104.494354px;}
.yd6{bottom:104.975395px;}
.y69{bottom:108.867153px;}
.y8f{bottom:109.216049px;}
.y1d{bottom:110.703701px;}
.yb1{bottom:119.225395px;}
.y3e{bottom:122.494354px;}
.yd5{bottom:122.975395px;}
.y68{bottom:126.867153px;}
.y8e{bottom:127.216049px;}
.yb0{bottom:137.225395px;}
.y11e{bottom:139.022850px;}
.yd4{bottom:140.975395px;}
.y67{bottom:144.867153px;}
.y8d{bottom:145.216049px;}
.y3d{bottom:148.998299px;}
.yaf{bottom:155.225395px;}
.yd3{bottom:158.975395px;}
.y66{bottom:162.867153px;}
.y8c{bottom:163.216049px;}
.y1c{bottom:167.091548px;}
.y11d{bottom:167.372904px;}
.yae{bottom:173.225395px;}
.y1b{bottom:176.077238px;}
.yd2{bottom:176.975395px;}
.y65{bottom:180.867153px;}
.y8b{bottom:181.216049px;}
.y11c{bottom:183.722889px;}
.y1a{bottom:184.322930px;}
.yad{bottom:191.225395px;}
.y19{bottom:191.807482px;}
.y101{bottom:191.812202px;}
.yd1{bottom:194.975395px;}
.y3c{bottom:198.386100px;}
.y64{bottom:198.867142px;}
.y8a{bottom:199.216049px;}
.y18{bottom:199.302604px;}
.y11b{bottom:200.072874px;}
.y100{bottom:206.212189px;}
.y17{bottom:206.797727px;}
.yac{bottom:209.225395px;}
.yd0{bottom:212.975395px;}
.y16{bottom:214.282278px;}
.y3b{bottom:216.386100px;}
.y11a{bottom:216.422859px;}
.y63{bottom:216.867142px;}
.y89{bottom:217.216049px;}
.yff{bottom:220.612198px;}
.y15{bottom:221.777401px;}
.yab{bottom:227.225395px;}
.ycf{bottom:230.975395px;}
.y119{bottom:232.772850px;}
.y62{bottom:234.867142px;}
.yfe{bottom:235.012207px;}
.y88{bottom:235.216049px;}
.y14{bottom:237.190502px;}
.yaa{bottom:245.225395px;}
.yce{bottom:248.975395px;}
.y118{bottom:249.122841px;}
.yfd{bottom:249.412193px;}
.y3a{bottom:251.393852px;}
.y61{bottom:252.867142px;}
.y87{bottom:253.216049px;}
.ya9{bottom:263.225395px;}
.yfc{bottom:263.812189px;}
.ycd{bottom:266.975395px;}
.y39{bottom:269.393852px;}
.y60{bottom:270.867142px;}
.y86{bottom:277.594093px;}
.yfb{bottom:278.212189px;}
.ya8{bottom:281.225395px;}
.y13{bottom:283.556662px;}
.ycc{bottom:284.975395px;}
.y38{bottom:287.393852px;}
.y5f{bottom:288.867142px;}
.yfa{bottom:292.612198px;}
.y85{bottom:297.844048px;}
.y117{bottom:298.732658px;}
.ya7{bottom:299.225395px;}
.ycb{bottom:302.975395px;}
.y37{bottom:305.393852px;}
.y5e{bottom:306.867142px;}
.yf9{bottom:307.012207px;}
.ya6{bottom:317.225395px;}
.yca{bottom:320.975395px;}
.yf8{bottom:321.412193px;}
.y36{bottom:323.393852px;}
.y5d{bottom:324.867142px;}
.y116{bottom:327.082612px;}
.y84{bottom:335.101799px;}
.ya5{bottom:335.225395px;}
.yf7{bottom:335.812202px;}
.yc9{bottom:338.975395px;}
.y35{bottom:341.393852px;}
.y5c{bottom:342.867142px;}
.y115{bottom:343.432732px;}
.yf6{bottom:350.212189px;}
.y83{bottom:353.101822px;}
.ya4{bottom:353.225395px;}
.yc8{bottom:356.975395px;}
.y34{bottom:359.393852px;}
.y114{bottom:359.782717px;}
.y5b{bottom:360.867142px;}
.yf5{bottom:364.612207px;}
.y82{bottom:371.101822px;}
.ya3{bottom:371.225418px;}
.yc7{bottom:374.975395px;}
.y113{bottom:376.132702px;}
.y33{bottom:377.393852px;}
.y5a{bottom:378.867142px;}
.yf4{bottom:379.012207px;}
.y81{bottom:389.101822px;}
.ya2{bottom:389.225418px;}
.y112{bottom:392.482687px;}
.yc6{bottom:392.975418px;}
.yf3{bottom:393.412216px;}
.y32{bottom:395.393829px;}
.y59{bottom:396.867142px;}
.y80{bottom:407.101822px;}
.ya1{bottom:407.225418px;}
.yf2{bottom:407.812180px;}
.y111{bottom:408.832672px;}
.yc5{bottom:410.975418px;}
.y31{bottom:413.393829px;}
.y58{bottom:414.867142px;}
.yf1{bottom:422.212189px;}
.y7f{bottom:425.101822px;}
.y110{bottom:425.182663px;}
.ya0{bottom:425.225418px;}
.y12{bottom:425.340279px;}
.yc4{bottom:428.975418px;}
.y30{bottom:431.393829px;}
.y57{bottom:432.867142px;}
.yf0{bottom:436.612198px;}
.y7e{bottom:443.101822px;}
.y9f{bottom:443.225418px;}
.yc3{bottom:446.975418px;}
.y11{bottom:448.449359px;}
.y2f{bottom:449.393829px;}
.y56{bottom:450.867142px;}
.yef{bottom:451.012207px;}
.y10{bottom:460.437327px;}
.y7d{bottom:461.101822px;}
.y9e{bottom:461.225418px;}
.yc2{bottom:464.975418px;}
.yee{bottom:465.412216px;}
.y2e{bottom:467.393829px;}
.y55{bottom:468.867142px;}
.y10f{bottom:479.044510px;}
.y7c{bottom:479.101822px;}
.y9d{bottom:479.225418px;}
.yed{bottom:479.812180px;}
.yc1{bottom:482.975418px;}
.yf{bottom:483.778978px;}
.y2d{bottom:485.393829px;}
.y54{bottom:486.867142px;}
.yec{bottom:494.212189px;}
.ye{bottom:495.766946px;}
.y7b{bottom:497.101822px;}
.y9c{bottom:497.225418px;}
.yc0{bottom:500.975418px;}
.y53{bottom:504.867142px;}
.y10e{bottom:507.394500px;}
.y2c{bottom:507.645905px;}
.yd{bottom:507.754913px;}
.yeb{bottom:508.612198px;}
.y7a{bottom:515.101822px;}
.y9b{bottom:515.225418px;}
.ybf{bottom:518.975418px;}
.yc{bottom:519.742881px;}
.y52{bottom:522.867142px;}
.yea{bottom:523.012207px;}
.y10d{bottom:523.744555px;}
.yb{bottom:531.720277px;}
.y79{bottom:533.101822px;}
.y9a{bottom:533.225418px;}
.ybe{bottom:536.975418px;}
.ye9{bottom:537.412216px;}
.y10c{bottom:540.094540px;}
.y51{bottom:540.867142px;}
.ya{bottom:543.708245px;}
.y78{bottom:551.101822px;}
.y99{bottom:551.225418px;}
.ye8{bottom:551.812180px;}
.ybd{bottom:554.975418px;}
.y9{bottom:555.696212px;}
.y10b{bottom:556.444525px;}
.y50{bottom:558.867142px;}
.ye7{bottom:566.212189px;}
.y77{bottom:569.101822px;}
.y98{bottom:569.225418px;}
.y10a{bottom:572.794510px;}
.ybc{bottom:572.975418px;}
.y4f{bottom:576.867142px;}
.ye6{bottom:580.612198px;}
.y76{bottom:587.101822px;}
.y97{bottom:587.225418px;}
.y109{bottom:589.144500px;}
.ybb{bottom:590.975418px;}
.y4e{bottom:594.867142px;}
.ye5{bottom:595.012207px;}
.y75{bottom:605.101822px;}
.y96{bottom:605.225418px;}
.yba{bottom:608.975418px;}
.ye4{bottom:609.412216px;}
.y2b{bottom:610.685257px;}
.y8{bottom:611.566061px;}
.y4d{bottom:612.867142px;}
.y74{bottom:623.101822px;}
.ye3{bottom:623.812180px;}
.yb9{bottom:626.975418px;}
.y7{bottom:628.046874px;}
.y4c{bottom:630.867142px;}
.y95{bottom:631.729400px;}
.ye2{bottom:638.212189px;}
.y108{bottom:638.754318px;}
.y2a{bottom:639.185257px;}
.y73{bottom:641.101822px;}
.y6{bottom:644.527687px;}
.yb8{bottom:644.975418px;}
.y4b{bottom:648.867142px;}
.ye1{bottom:652.612198px;}
.y94{bottom:653.479340px;}
.y72{bottom:659.101822px;}
.y5{bottom:662.308781px;}
.yb7{bottom:662.975418px;}
.y4a{bottom:666.867142px;}
.ye0{bottom:667.012207px;}
.y107{bottom:667.104378px;}
.y29{bottom:667.685257px;}
.yb6{bottom:680.975418px;}
.ydf{bottom:681.412216px;}
.y4{bottom:683.282439px;}
.y106{bottom:683.454363px;}
.y49{bottom:684.867142px;}
.y71{bottom:689.857819px;}
.yde{bottom:695.812180px;}
.y28{bottom:696.185257px;}
.yb5{bottom:698.975418px;}
.y105{bottom:699.804348px;}
.y48{bottom:702.867142px;}
.y3{bottom:704.256097px;}
.y70{bottom:706.057800px;}
.ydd{bottom:710.212189px;}
.y104{bottom:716.154333px;}
.y47{bottom:720.867142px;}
.y6f{bottom:722.257782px;}
.ydc{bottom:724.612198px;}
.y27{bottom:724.685257px;}
.y2{bottom:725.240326px;}
.yb4{bottom:725.479340px;}
.y103{bottom:732.504318px;}
.y6e{bottom:738.457809px;}
.y46{bottom:738.867142px;}
.ydb{bottom:739.012207px;}
.y102{bottom:748.854309px;}
.yda{bottom:753.412216px;}
.y45{bottom:756.867142px;}
.y93{bottom:756.867188px;}
.y26{bottom:763.815170px;}
.y6d{bottom:767.413650px;}
.yd9{bottom:767.812180px;}
.y44{bottom:774.867188px;}
.y25{bottom:788.565125px;}
.yd8{bottom:790.716156px;}
.y6c{bottom:791.791626px;}
.y43{bottom:792.867188px;}
.y42{bottom:833.260803px;}
.h7{height:21.933541px;}
.h6{height:25.066904px;}
.h9{height:28.200267px;}
.h5{height:31.333630px;}
.hd{height:34.359000px;}
.h4{height:34.466993px;}
.h8{height:35.093665px;}
.h17{height:40.446000px;}
.h16{height:41.561891px;}
.h18{height:41.562074px;}
.h15{height:42.288000px;}
.h3{height:43.867081px;}
.h13{height:46.224000px;}
.h14{height:47.574000px;}
.h10{height:51.360000px;}
.h11{height:52.860000px;}
.hc{height:56.496000px;}
.he{height:60.732000px;}
.h12{height:61.632000px;}
.hf{height:82.176000px;}
.h2{height:889.995595px;}
.h1{height:890.250000px;}
.h0{height:890.520000px;}
.ha{height:892.914000px;}
.hb{height:893.250000px;}
.w1{width:629.250000px;}
.w3{width:629.292000px;}
.w2{width:629.294299px;}
.w0{width:629.295000px;}
.x0{left:0.000000px;}
.x3{left:32.961625px;}
.x1{left:38.955609px;}
.x6{left:80.787449px;}
.x7{left:93.543303px;}
.x8{left:95.701200px;}
.x2{left:104.878859px;}
.xd{left:212.598450px;}
.xc{left:218.142150px;}
.x4{left:308.653166px;}
.xa{left:445.146606px;}
.x5{left:531.402878px;}
.xb{left:534.113113px;}
.x9{left:548.467941px;}
@media print{
.v2{vertical-align:-15.984049pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.983887pt;}
.ls4{letter-spacing:-0.997333pt;}
.ls1{letter-spacing:-0.469333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.059253pt;}
.ls2{letter-spacing:0.160533pt;}
.ls5{letter-spacing:0.384000pt;}
.ws4{word-spacing:-15.360000pt;}
.ws61{word-spacing:-13.546667pt;}
.ws2{word-spacing:-12.960533pt;}
.ws3{word-spacing:-12.800000pt;}
.wsb8{word-spacing:-12.192000pt;}
.ws0{word-spacing:-11.703151pt;}
.ws9b{word-spacing:-10.837333pt;}
.ws17{word-spacing:-8.805333pt;}
.wsb7{word-spacing:-6.884064pt;}
.ws2d{word-spacing:-2.666667pt;}
.ws2e{word-spacing:-2.613333pt;}
.ws1e{word-spacing:-2.560000pt;}
.ws44{word-spacing:-2.506667pt;}
.ws98{word-spacing:-2.347200pt;}
.ws46{word-spacing:-2.293333pt;}
.wsc{word-spacing:-2.186667pt;}
.ws6f{word-spacing:-2.132800pt;}
.ws64{word-spacing:-1.866667pt;}
.ws2b{word-spacing:-1.760000pt;}
.wsa5{word-spacing:-1.706240pt;}
.ws3e{word-spacing:-1.653867pt;}
.ws65{word-spacing:-1.600000pt;}
.ws3b{word-spacing:-1.547200pt;}
.wsa2{word-spacing:-1.536000pt;}
.ws38{word-spacing:-1.488480pt;}
.ws81{word-spacing:-1.439467pt;}
.ws89{word-spacing:-1.386667pt;}
.ws8b{word-spacing:-1.332800pt;}
.ws9f{word-spacing:-1.323093pt;}
.wsa7{word-spacing:-1.237760pt;}
.ws90{word-spacing:-1.173333pt;}
.ws92{word-spacing:-1.120000pt;}
.wsac{word-spacing:-1.109333pt;}
.ws62{word-spacing:-1.066667pt;}
.wsa9{word-spacing:-1.066240pt;}
.wsb{word-spacing:-1.013333pt;}
.ws10{word-spacing:-0.960533pt;}
.wse{word-spacing:-0.906667pt;}
.ws8d{word-spacing:-0.853867pt;}
.wsaf{word-spacing:-0.810667pt;}
.wsa8{word-spacing:-0.768427pt;}
.wsa{word-spacing:-0.747200pt;}
.wsa3{word-spacing:-0.683093pt;}
.ws8e{word-spacing:-0.639467pt;}
.ws31{word-spacing:-0.586667pt;}
.ws49{word-spacing:-0.480000pt;}
.wsab{word-spacing:-0.384000pt;}
.ws33{word-spacing:-0.373333pt;}
.ws12{word-spacing:-0.320000pt;}
.ws59{word-spacing:-0.266667pt;}
.wsad{word-spacing:-0.170667pt;}
.ws94{word-spacing:-0.106667pt;}
.ws4a{word-spacing:-0.059253pt;}
.ws1{word-spacing:0.000000pt;}
.ws36{word-spacing:0.053867pt;}
.ws9e{word-spacing:0.085333pt;}
.ws2a{word-spacing:0.106667pt;}
.ws60{word-spacing:0.160533pt;}
.ws8f{word-spacing:0.266667pt;}
.ws45{word-spacing:0.320000pt;}
.ws3c{word-spacing:0.373333pt;}
.ws99{word-spacing:0.426667pt;}
.ws5{word-spacing:0.469333pt;}
.ws9a{word-spacing:0.480000pt;}
.ws75{word-spacing:0.532800pt;}
.wsb0{word-spacing:0.554667pt;}
.ws73{word-spacing:0.586667pt;}
.ws63{word-spacing:0.639467pt;}
.ws40{word-spacing:0.693333pt;}
.ws91{word-spacing:0.800000pt;}
.ws76{word-spacing:0.853867pt;}
.ws21{word-spacing:0.906667pt;}
.ws6a{word-spacing:0.960533pt;}
.ws9c{word-spacing:0.997333pt;}
.ws47{word-spacing:1.013333pt;}
.wsae{word-spacing:1.066240pt;}
.ws72{word-spacing:1.066667pt;}
.ws5a{word-spacing:1.226133pt;}
.ws14{word-spacing:1.280000pt;}
.ws4c{word-spacing:1.332800pt;}
.ws3a{word-spacing:1.386667pt;}
.ws29{word-spacing:1.439467pt;}
.ws9d{word-spacing:1.450667pt;}
.ws70{word-spacing:1.493333pt;}
.ws54{word-spacing:1.813333pt;}
.wsa0{word-spacing:1.920000pt;}
.ws66{word-spacing:1.973333pt;}
.ws19{word-spacing:2.026133pt;}
.ws80{word-spacing:2.080000pt;}
.ws2f{word-spacing:2.132800pt;}
.ws8a{word-spacing:2.186667pt;}
.ws83{word-spacing:2.240533pt;}
.ws15{word-spacing:2.347200pt;}
.ws4f{word-spacing:2.400000pt;}
.ws5d{word-spacing:2.453867pt;}
.ws43{word-spacing:2.506667pt;}
.wsb2{word-spacing:2.517760pt;}
.ws24{word-spacing:2.560000pt;}
.ws5b{word-spacing:2.613333pt;}
.ws1a{word-spacing:2.666667pt;}
.wsaa{word-spacing:2.688000pt;}
.wsb5{word-spacing:2.815573pt;}
.ws52{word-spacing:2.880000pt;}
.ws82{word-spacing:2.932800pt;}
.wsf{word-spacing:2.986667pt;}
.ws6e{word-spacing:3.040533pt;}
.wsb1{word-spacing:3.200000pt;}
.ws88{word-spacing:3.306667pt;}
.wsa6{word-spacing:3.328000pt;}
.ws41{word-spacing:3.360000pt;}
.ws5f{word-spacing:3.413333pt;}
.ws26{word-spacing:3.466667pt;}
.wsd{word-spacing:3.573333pt;}
.ws51{word-spacing:3.626133pt;}
.ws39{word-spacing:3.648000pt;}
.ws2c{word-spacing:3.680000pt;}
.ws8c{word-spacing:3.733867pt;}
.ws18{word-spacing:3.786667pt;}
.wsb3{word-spacing:3.840000pt;}
.wsa1{word-spacing:3.968000pt;}
.ws35{word-spacing:4.106667pt;}
.ws77{word-spacing:4.160000pt;}
.ws5c{word-spacing:4.266667pt;}
.ws6c{word-spacing:4.426133pt;}
.ws3f{word-spacing:4.533867pt;}
.ws78{word-spacing:4.586667pt;}
.ws4b{word-spacing:4.640533pt;}
.wsb6{word-spacing:4.735573pt;}
.ws13{word-spacing:4.746667pt;}
.ws7{word-spacing:4.800000pt;}
.wsb4{word-spacing:4.864000pt;}
.ws74{word-spacing:4.906667pt;}
.ws5e{word-spacing:4.960000pt;}
.ws22{word-spacing:5.012800pt;}
.ws7a{word-spacing:5.227200pt;}
.ws53{word-spacing:5.280000pt;}
.ws67{word-spacing:5.333867pt;}
.ws3d{word-spacing:5.386667pt;}
.ws16{word-spacing:5.440533pt;}
.ws27{word-spacing:5.493333pt;}
.ws1f{word-spacing:5.653333pt;}
.ws95{word-spacing:5.760000pt;}
.ws4e{word-spacing:5.812800pt;}
.ws69{word-spacing:6.027200pt;}
.ws37{word-spacing:6.048480pt;}
.ws23{word-spacing:6.080000pt;}
.ws57{word-spacing:6.133867pt;}
.ws96{word-spacing:6.346667pt;}
.ws6d{word-spacing:6.400000pt;}
.ws6b{word-spacing:6.560000pt;}
.ws56{word-spacing:6.720533pt;}
.ws25{word-spacing:6.880000pt;}
.ws55{word-spacing:6.933333pt;}
.ws28{word-spacing:7.093333pt;}
.ws34{word-spacing:7.253333pt;}
.ws68{word-spacing:7.306133pt;}
.ws97{word-spacing:7.360000pt;}
.ws79{word-spacing:7.627200pt;}
.ws93{word-spacing:7.733333pt;}
.ws1b{word-spacing:7.786667pt;}
.ws1d{word-spacing:7.946667pt;}
.ws4d{word-spacing:7.999467pt;}
.ws50{word-spacing:8.053333pt;}
.ws42{word-spacing:8.160000pt;}
.ws71{word-spacing:8.320533pt;}
.ws20{word-spacing:8.426667pt;}
.ws6{word-spacing:8.533333pt;}
.ws11{word-spacing:8.640000pt;}
.ws30{word-spacing:8.799467pt;}
.ws1c{word-spacing:8.853333pt;}
.ws32{word-spacing:9.280000pt;}
.ws48{word-spacing:9.333333pt;}
.ws86{word-spacing:9.707200pt;}
.ws7b{word-spacing:10.080000pt;}
.ws58{word-spacing:10.560000pt;}
.ws7e{word-spacing:10.773333pt;}
.ws8{word-spacing:11.200533pt;}
.wsa4{word-spacing:11.477333pt;}
.ws9{word-spacing:12.000533pt;}
.ws7f{word-spacing:12.372800pt;}
.ws84{word-spacing:12.853333pt;}
.ws7c{word-spacing:14.240000pt;}
.ws87{word-spacing:14.720000pt;}
.ws85{word-spacing:15.040000pt;}
.ws7d{word-spacing:15.413333pt;}
._14{margin-left:-16.962163pt;}
._15{margin-left:-14.942363pt;}
._11{margin-left:-10.314642pt;}
._16{margin-left:-8.981367pt;}
._13{margin-left:-7.679998pt;}
._12{margin-left:-6.330662pt;}
._e{margin-left:-5.351462pt;}
._c{margin-left:-3.822933pt;}
._f{margin-left:-2.918379pt;}
._b{margin-left:-2.026662pt;}
._d{margin-left:-0.995192pt;}
._7{width:1.578662pt;}
._4{width:3.078392pt;}
._5{width:4.288700pt;}
._18{width:5.279295pt;}
._10{width:7.189337pt;}
._0{width:10.419172pt;}
._8{width:11.366369pt;}
._6{width:15.365647pt;}
._1{width:16.290292pt;}
._17{width:18.212820pt;}
._9{width:19.943768pt;}
._3{width:22.574872pt;}
._a{width:36.046125pt;}
._2{width:654.490879pt;}
.fs4{font-size:26.311040pt;}
.fs10{font-size:27.984000pt;}
.fs3{font-size:30.069760pt;}
.fs6{font-size:33.076736pt;}
.fs7{font-size:33.828480pt;}
.fs9{font-size:34.666667pt;}
.fs2{font-size:37.587200pt;}
.fs1{font-size:41.345920pt;}
.fs5{font-size:42.097664pt;}
.fsf{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fs0{font-size:52.622080pt;}
.fsc{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fsd{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fsb{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.237880pt;}
.y24{bottom:31.581333pt;}
.y23{bottom:32.259066pt;}
.y6b{bottom:33.215067pt;}
.y22{bottom:40.077352pt;}
.y21{bottom:50.733323pt;}
.y41{bottom:60.883865pt;}
.y20{bottom:61.389294pt;}
.y92{bottom:64.770798pt;}
.y91{bottom:65.080933pt;}
.y1f{bottom:72.045266pt;}
.yb3{bottom:73.978133pt;}
.y40{bottom:76.883865pt;}
.yd7{bottom:77.311467pt;}
.y6a{bottom:80.770798pt;}
.y90{bottom:81.080933pt;}
.y1e{bottom:81.150765pt;}
.yb2{bottom:89.978129pt;}
.y3f{bottom:92.883870pt;}
.yd6{bottom:93.311462pt;}
.y69{bottom:96.770803pt;}
.y8f{bottom:97.080933pt;}
.y1d{bottom:98.403290pt;}
.yb1{bottom:105.978129pt;}
.y3e{bottom:108.883870pt;}
.yd5{bottom:109.311462pt;}
.y68{bottom:112.770803pt;}
.y8e{bottom:113.080933pt;}
.yb0{bottom:121.978129pt;}
.y11e{bottom:123.575867pt;}
.yd4{bottom:125.311462pt;}
.y67{bottom:128.770803pt;}
.y8d{bottom:129.080933pt;}
.y3d{bottom:132.442932pt;}
.yaf{bottom:137.978129pt;}
.yd3{bottom:141.311462pt;}
.y66{bottom:144.770803pt;}
.y8c{bottom:145.080933pt;}
.y1c{bottom:148.525821pt;}
.y11d{bottom:148.775915pt;}
.yae{bottom:153.978129pt;}
.y1b{bottom:156.513101pt;}
.yd2{bottom:157.311462pt;}
.y65{bottom:160.770803pt;}
.y8b{bottom:161.080933pt;}
.y11c{bottom:163.309235pt;}
.y1a{bottom:163.842605pt;}
.yad{bottom:169.978129pt;}
.y19{bottom:170.495539pt;}
.y101{bottom:170.499736pt;}
.yd1{bottom:173.311462pt;}
.y3c{bottom:176.343200pt;}
.y64{bottom:176.770793pt;}
.y8a{bottom:177.080933pt;}
.y18{bottom:177.157870pt;}
.y11b{bottom:177.842555pt;}
.y100{bottom:183.299723pt;}
.y17{bottom:183.820202pt;}
.yac{bottom:185.978129pt;}
.yd0{bottom:189.311462pt;}
.y16{bottom:190.473136pt;}
.y3b{bottom:192.343200pt;}
.y11a{bottom:192.375875pt;}
.y63{bottom:192.770793pt;}
.y89{bottom:193.080933pt;}
.yff{bottom:196.099731pt;}
.y15{bottom:197.135467pt;}
.yab{bottom:201.978129pt;}
.ycf{bottom:205.311462pt;}
.y119{bottom:206.909200pt;}
.y62{bottom:208.770793pt;}
.yfe{bottom:208.899740pt;}
.y88{bottom:209.080933pt;}
.y14{bottom:210.836002pt;}
.yaa{bottom:217.978129pt;}
.yce{bottom:221.311462pt;}
.y118{bottom:221.442525pt;}
.yfd{bottom:221.699727pt;}
.y3a{bottom:223.461202pt;}
.y61{bottom:224.770793pt;}
.y87{bottom:225.080933pt;}
.ya9{bottom:233.978129pt;}
.yfc{bottom:234.499723pt;}
.ycd{bottom:237.311462pt;}
.y39{bottom:239.461202pt;}
.y60{bottom:240.770793pt;}
.y86{bottom:246.750304pt;}
.yfb{bottom:247.299723pt;}
.ya8{bottom:249.978129pt;}
.y13{bottom:252.050366pt;}
.ycc{bottom:253.311462pt;}
.y38{bottom:255.461202pt;}
.y5f{bottom:256.770793pt;}
.yfa{bottom:260.099731pt;}
.y85{bottom:264.750264pt;}
.y117{bottom:265.540141pt;}
.ya7{bottom:265.978129pt;}
.ycb{bottom:269.311462pt;}
.y37{bottom:271.461202pt;}
.y5e{bottom:272.770793pt;}
.yf9{bottom:272.899740pt;}
.ya6{bottom:281.978129pt;}
.yca{bottom:285.311462pt;}
.yf8{bottom:285.699727pt;}
.y36{bottom:287.461202pt;}
.y5d{bottom:288.770793pt;}
.y116{bottom:290.740100pt;}
.y84{bottom:297.868266pt;}
.ya5{bottom:297.978129pt;}
.yf7{bottom:298.499736pt;}
.yc9{bottom:301.311462pt;}
.y35{bottom:303.461202pt;}
.y5c{bottom:304.770793pt;}
.y115{bottom:305.273540pt;}
.yf6{bottom:311.299723pt;}
.y83{bottom:313.868286pt;}
.ya4{bottom:313.978129pt;}
.yc8{bottom:317.311462pt;}
.y34{bottom:319.461202pt;}
.y114{bottom:319.806860pt;}
.y5b{bottom:320.770793pt;}
.yf5{bottom:324.099740pt;}
.y82{bottom:329.868286pt;}
.ya3{bottom:329.978149pt;}
.yc7{bottom:333.311462pt;}
.y113{bottom:334.340180pt;}
.y33{bottom:335.461202pt;}
.y5a{bottom:336.770793pt;}
.yf4{bottom:336.899740pt;}
.y81{bottom:345.868286pt;}
.ya2{bottom:345.978149pt;}
.y112{bottom:348.873500pt;}
.yc6{bottom:349.311483pt;}
.yf3{bottom:349.699748pt;}
.y32{bottom:351.461182pt;}
.y59{bottom:352.770793pt;}
.y80{bottom:361.868286pt;}
.ya1{bottom:361.978149pt;}
.yf2{bottom:362.499715pt;}
.y111{bottom:363.406820pt;}
.yc5{bottom:365.311483pt;}
.y31{bottom:367.461182pt;}
.y58{bottom:368.770793pt;}
.yf1{bottom:375.299723pt;}
.y7f{bottom:377.868286pt;}
.y110{bottom:377.940145pt;}
.ya0{bottom:377.978149pt;}
.y12{bottom:378.080248pt;}
.yc4{bottom:381.311483pt;}
.y30{bottom:383.461182pt;}
.y57{bottom:384.770793pt;}
.yf0{bottom:388.099731pt;}
.y7e{bottom:393.868286pt;}
.y9f{bottom:393.978149pt;}
.yc3{bottom:397.311483pt;}
.y11{bottom:398.621653pt;}
.y2f{bottom:399.461182pt;}
.y56{bottom:400.770793pt;}
.yef{bottom:400.899740pt;}
.y10{bottom:409.277624pt;}
.y7d{bottom:409.868286pt;}
.y9e{bottom:409.978149pt;}
.yc2{bottom:413.311483pt;}
.yee{bottom:413.699748pt;}
.y2e{bottom:415.461182pt;}
.y55{bottom:416.770793pt;}
.y10f{bottom:425.817342pt;}
.y7c{bottom:425.868286pt;}
.y9d{bottom:425.978149pt;}
.yed{bottom:426.499715pt;}
.yc1{bottom:429.311483pt;}
.yf{bottom:430.025758pt;}
.y2d{bottom:431.461182pt;}
.y54{bottom:432.770793pt;}
.yec{bottom:439.299723pt;}
.ye{bottom:440.681730pt;}
.y7b{bottom:441.868286pt;}
.y9c{bottom:441.978149pt;}
.yc0{bottom:445.311483pt;}
.y53{bottom:448.770793pt;}
.y10e{bottom:451.017333pt;}
.y2c{bottom:451.240804pt;}
.yd{bottom:451.337701pt;}
.yeb{bottom:452.099731pt;}
.y7a{bottom:457.868286pt;}
.y9b{bottom:457.978149pt;}
.ybf{bottom:461.311483pt;}
.yc{bottom:461.993672pt;}
.y52{bottom:464.770793pt;}
.yea{bottom:464.899740pt;}
.y10d{bottom:465.550715pt;}
.yb{bottom:472.640246pt;}
.y79{bottom:473.868286pt;}
.y9a{bottom:473.978149pt;}
.ybe{bottom:477.311483pt;}
.ye9{bottom:477.699748pt;}
.y10c{bottom:480.084035pt;}
.y51{bottom:480.770793pt;}
.ya{bottom:483.296218pt;}
.y78{bottom:489.868286pt;}
.y99{bottom:489.978149pt;}
.ye8{bottom:490.499715pt;}
.ybd{bottom:493.311483pt;}
.y9{bottom:493.952189pt;}
.y10b{bottom:494.617355pt;}
.y50{bottom:496.770793pt;}
.ye7{bottom:503.299723pt;}
.y77{bottom:505.868286pt;}
.y98{bottom:505.978149pt;}
.y10a{bottom:509.150675pt;}
.ybc{bottom:509.311483pt;}
.y4f{bottom:512.770793pt;}
.ye6{bottom:516.099731pt;}
.y76{bottom:521.868286pt;}
.y97{bottom:521.978149pt;}
.y109{bottom:523.684000pt;}
.ybb{bottom:525.311483pt;}
.y4e{bottom:528.770793pt;}
.ye5{bottom:528.899740pt;}
.y75{bottom:537.868286pt;}
.y96{bottom:537.978149pt;}
.yba{bottom:541.311483pt;}
.ye4{bottom:541.699748pt;}
.y2b{bottom:542.831340pt;}
.y8{bottom:543.614277pt;}
.y4d{bottom:544.770793pt;}
.y74{bottom:553.868286pt;}
.ye3{bottom:554.499715pt;}
.yb9{bottom:557.311483pt;}
.y7{bottom:558.263888pt;}
.y4c{bottom:560.770793pt;}
.y95{bottom:561.537244pt;}
.ye2{bottom:567.299723pt;}
.y108{bottom:567.781616pt;}
.y2a{bottom:568.164673pt;}
.y73{bottom:569.868286pt;}
.y6{bottom:572.913499pt;}
.yb8{bottom:573.311483pt;}
.y4b{bottom:576.770793pt;}
.ye1{bottom:580.099731pt;}
.y94{bottom:580.870524pt;}
.y72{bottom:585.868286pt;}
.y5{bottom:588.718917pt;}
.yb7{bottom:589.311483pt;}
.y4a{bottom:592.770793pt;}
.ye0{bottom:592.899740pt;}
.y107{bottom:592.981670pt;}
.y29{bottom:593.498006pt;}
.yb6{bottom:605.311483pt;}
.ydf{bottom:605.699748pt;}
.y4{bottom:607.362168pt;}
.y106{bottom:607.514990pt;}
.y49{bottom:608.770793pt;}
.y71{bottom:613.206950pt;}
.yde{bottom:618.499715pt;}
.y28{bottom:618.831340pt;}
.yb5{bottom:621.311483pt;}
.y105{bottom:622.048310pt;}
.y48{bottom:624.770793pt;}
.y3{bottom:626.005419pt;}
.y70{bottom:627.606933pt;}
.ydd{bottom:631.299723pt;}
.y104{bottom:636.581630pt;}
.y47{bottom:640.770793pt;}
.y6f{bottom:642.006917pt;}
.ydc{bottom:644.099731pt;}
.y27{bottom:644.164673pt;}
.y2{bottom:644.658067pt;}
.yb4{bottom:644.870524pt;}
.y103{bottom:651.114950pt;}
.y6e{bottom:656.406942pt;}
.y46{bottom:656.770793pt;}
.ydb{bottom:656.899740pt;}
.y102{bottom:665.648275pt;}
.yda{bottom:669.699748pt;}
.y45{bottom:672.770793pt;}
.y93{bottom:672.770833pt;}
.y26{bottom:678.946818pt;}
.y6d{bottom:682.145467pt;}
.yd9{bottom:682.499715pt;}
.y44{bottom:688.770833pt;}
.y25{bottom:700.946777pt;}
.yd8{bottom:702.858805pt;}
.y6c{bottom:703.814779pt;}
.y43{bottom:704.770833pt;}
.y42{bottom:740.676270pt;}
.h7{height:19.496481pt;}
.h6{height:22.281692pt;}
.h9{height:25.066904pt;}
.h5{height:27.852115pt;}
.hd{height:30.541333pt;}
.h4{height:30.637327pt;}
.h8{height:31.194369pt;}
.h17{height:35.952000pt;}
.h16{height:36.943903pt;}
.h18{height:36.944065pt;}
.h15{height:37.589333pt;}
.h3{height:38.992961pt;}
.h13{height:41.088000pt;}
.h14{height:42.288000pt;}
.h10{height:45.653333pt;}
.h11{height:46.986667pt;}
.hc{height:50.218667pt;}
.he{height:53.984000pt;}
.h12{height:54.784000pt;}
.hf{height:73.045333pt;}
.h2{height:791.107195pt;}
.h1{height:791.333333pt;}
.h0{height:791.573333pt;}
.ha{height:793.701333pt;}
.hb{height:794.000000pt;}
.w1{width:559.333333pt;}
.w3{width:559.370667pt;}
.w2{width:559.372710pt;}
.w0{width:559.373333pt;}
.x0{left:0.000000pt;}
.x3{left:29.299222pt;}
.x1{left:34.627208pt;}
.x6{left:71.811066pt;}
.x7{left:83.149602pt;}
.x8{left:85.067733pt;}
.x2{left:93.225653pt;}
.xd{left:188.976400pt;}
.xc{left:193.904133pt;}
.x4{left:274.358370pt;}
.xa{left:395.685872pt;}
.x5{left:472.358114pt;}
.xb{left:474.767212pt;}
.x9{left:487.527059pt;}
}




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