
    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_d28cb635f4f95a77053e213c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_096a4c83d7e71d6ffdae6896.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_2fbeb7bfd173721cee505470.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_cb8f5987c1fa9e3b6568aeea.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_fbe098861943b522865fd59f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881836;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_4bf7e8084ec440519ac53d45.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971000;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_f082b59bebead21b4ff7330e.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982605px;}
.ls6{letter-spacing:-2.969460px;}
.ls5{letter-spacing:-1.517340px;}
.ls1{letter-spacing:-1.320000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180600px;}
.ls3{letter-spacing:23.423415px;}
.ls4{letter-spacing:50.747415px;}
.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;}
}
.ws3{word-spacing:-23.040000px;}
.ws9e{word-spacing:-17.280000px;}
.ws19{word-spacing:-15.240000px;}
.ws4{word-spacing:-14.580600px;}
.ws2{word-spacing:-14.520000px;}
.ws5{word-spacing:-14.400000px;}
.ws37{word-spacing:-14.322660px;}
.wsa0{word-spacing:-13.716000px;}
.ws0{word-spacing:-13.166044px;}
.ws36{word-spacing:-9.906000px;}
.ws9f{word-spacing:-7.744572px;}
.ws26{word-spacing:-7.740000px;}
.ws9b{word-spacing:-4.500000px;}
.ws92{word-spacing:-3.000000px;}
.ws5b{word-spacing:-2.940000px;}
.wsd{word-spacing:-2.880000px;}
.ws1c{word-spacing:-2.820000px;}
.ws90{word-spacing:-2.700000px;}
.ws78{word-spacing:-2.640600px;}
.ws2a{word-spacing:-2.520600px;}
.ws25{word-spacing:-2.460000px;}
.ws13{word-spacing:-2.340000px;}
.ws9d{word-spacing:-2.279400px;}
.ws23{word-spacing:-2.220000px;}
.ws9{word-spacing:-2.100000px;}
.ws70{word-spacing:-1.920000px;}
.ws18{word-spacing:-1.860600px;}
.ws94{word-spacing:-1.800000px;}
.wsa1{word-spacing:-1.776000px;}
.ws4e{word-spacing:-1.740600px;}
.ws42{word-spacing:-1.560000px;}
.ws7b{word-spacing:-1.440000px;}
.ws44{word-spacing:-1.379400px;}
.ws2d{word-spacing:-1.320000px;}
.ws72{word-spacing:-1.260000px;}
.wsa7{word-spacing:-1.103520px;}
.ws17{word-spacing:-1.080600px;}
.ws61{word-spacing:-1.020000px;}
.ws10{word-spacing:-0.900000px;}
.ws9a{word-spacing:-0.840600px;}
.ws35{word-spacing:-0.719400px;}
.ws16{word-spacing:-0.599400px;}
.ws57{word-spacing:-0.540000px;}
.ws83{word-spacing:-0.420000px;}
.ws89{word-spacing:-0.360000px;}
.ws48{word-spacing:-0.300000px;}
.wsa4{word-spacing:-0.288000px;}
.ws9c{word-spacing:-0.240000px;}
.wsac{word-spacing:-0.216000px;}
.ws11{word-spacing:-0.180600px;}
.ws21{word-spacing:-0.060600px;}
.wsad{word-spacing:-0.054540px;}
.ws1{word-spacing:0.000000px;}
.ws68{word-spacing:0.060600px;}
.ws32{word-spacing:0.120000px;}
.ws74{word-spacing:0.180600px;}
.ws85{word-spacing:0.240000px;}
.ws49{word-spacing:0.420000px;}
.ws8b{word-spacing:0.480000px;}
.ws14{word-spacing:0.540000px;}
.ws4d{word-spacing:0.660000px;}
.wsa8{word-spacing:0.720000px;}
.ws31{word-spacing:0.780000px;}
.ws46{word-spacing:0.840600px;}
.ws22{word-spacing:0.900000px;}
.ws80{word-spacing:1.140000px;}
.wsa9{word-spacing:1.152000px;}
.ws41{word-spacing:1.200000px;}
.ws4f{word-spacing:1.320000px;}
.ws91{word-spacing:1.379400px;}
.wsa{word-spacing:1.440000px;}
.ws33{word-spacing:1.499400px;}
.ws2e{word-spacing:1.619400px;}
.ws29{word-spacing:1.680000px;}
.ws7{word-spacing:1.740600px;}
.ws5a{word-spacing:1.800000px;}
.ws7d{word-spacing:1.860600px;}
.ws2b{word-spacing:1.920000px;}
.ws50{word-spacing:1.980000px;}
.ws7c{word-spacing:2.040000px;}
.ws8{word-spacing:2.100000px;}
.ws8a{word-spacing:2.220000px;}
.wsa3{word-spacing:2.256000px;}
.ws53{word-spacing:2.279400px;}
.ws1a{word-spacing:2.340000px;}
.ws62{word-spacing:2.399400px;}
.wsc{word-spacing:2.460000px;}
.ws59{word-spacing:2.520600px;}
.ws96{word-spacing:2.760600px;}
.ws45{word-spacing:2.940000px;}
.wsab{word-spacing:2.969460px;}
.ws76{word-spacing:3.000000px;}
.ws8d{word-spacing:3.059400px;}
.ws6{word-spacing:3.179400px;}
.ws82{word-spacing:3.240000px;}
.ws98{word-spacing:3.299400px;}
.wsb{word-spacing:3.420600px;}
.ws7a{word-spacing:3.480000px;}
.ws95{word-spacing:3.540600px;}
.ws34{word-spacing:3.720000px;}
.ws6f{word-spacing:3.780000px;}
.ws54{word-spacing:3.840000px;}
.ws1b{word-spacing:3.900000px;}
.ws77{word-spacing:3.959400px;}
.ws4c{word-spacing:4.200600px;}
.ws86{word-spacing:4.320600px;}
.ws60{word-spacing:4.380000px;}
.ws2f{word-spacing:4.500000px;}
.ws6e{word-spacing:4.620000px;}
.ws73{word-spacing:4.920000px;}
.ws30{word-spacing:4.979400px;}
.ws58{word-spacing:5.040000px;}
.ws79{word-spacing:5.160000px;}
.ws63{word-spacing:5.340000px;}
.wsaa{word-spacing:5.376000px;}
.ws52{word-spacing:5.580000px;}
.ws6c{word-spacing:5.639400px;}
.ws20{word-spacing:5.700000px;}
.ws75{word-spacing:5.759400px;}
.wsf{word-spacing:5.820000px;}
.ws93{word-spacing:5.880600px;}
.ws1d{word-spacing:5.940000px;}
.ws8c{word-spacing:6.240000px;}
.ws15{word-spacing:6.300000px;}
.wsa5{word-spacing:6.528000px;}
.ws3c{word-spacing:6.539400px;}
.wsa2{word-spacing:6.624000px;}
.ws99{word-spacing:6.720000px;}
.ws88{word-spacing:7.080000px;}
.ws6b{word-spacing:7.140000px;}
.ws56{word-spacing:7.200000px;}
.ws81{word-spacing:7.260000px;}
.ws4a{word-spacing:7.439400px;}
.ws71{word-spacing:7.500000px;}
.ws47{word-spacing:7.560600px;}
.ws24{word-spacing:7.620000px;}
.ws87{word-spacing:8.040000px;}
.ws5e{word-spacing:8.099400px;}
.ws69{word-spacing:8.160000px;}
.ws5d{word-spacing:8.219400px;}
.ws6a{word-spacing:8.340600px;}
.ws84{word-spacing:8.400000px;}
.ws8e{word-spacing:8.460600px;}
.ws43{word-spacing:8.580600px;}
.ws39{word-spacing:8.760000px;}
.wse{word-spacing:9.360600px;}
.ws64{word-spacing:9.480000px;}
.ws12{word-spacing:9.660000px;}
.ws7f{word-spacing:10.200000px;}
.ws7e{word-spacing:10.500000px;}
.ws6d{word-spacing:10.559400px;}
.ws1f{word-spacing:10.679400px;}
.ws5f{word-spacing:10.860000px;}
.wsa6{word-spacing:10.896480px;}
.ws97{word-spacing:11.160000px;}
.ws40{word-spacing:11.280000px;}
.ws3b{word-spacing:11.640000px;}
.ws28{word-spacing:12.239400px;}
.ws2c{word-spacing:12.300000px;}
.ws3d{word-spacing:13.080000px;}
.ws38{word-spacing:13.200000px;}
.ws3e{word-spacing:13.380600px;}
.ws8f{word-spacing:13.560000px;}
.ws65{word-spacing:13.860000px;}
.ws1e{word-spacing:13.980000px;}
.ws4b{word-spacing:14.939400px;}
.ws55{word-spacing:15.120000px;}
.ws51{word-spacing:16.200000px;}
.ws3a{word-spacing:17.520600px;}
.ws5c{word-spacing:18.780000px;}
.ws66{word-spacing:19.140000px;}
.ws27{word-spacing:25.559400px;}
.ws67{word-spacing:25.740000px;}
.ws3f{word-spacing:27.000000px;}
._11{margin-left:-41.997610px;}
._17{margin-left:-12.704325px;}
._b{margin-left:-10.377590px;}
._13{margin-left:-7.852781px;}
._d{margin-left:-6.559157px;}
._f{margin-left:-5.015995px;}
._e{margin-left:-3.274829px;}
._10{margin-left:-2.274589px;}
._c{margin-left:-1.113595px;}
._7{width:1.775995px;}
._4{width:3.463191px;}
._5{width:4.824787px;}
._14{width:6.143403px;}
._15{width:7.458000px;}
._12{width:8.596200px;}
._16{width:10.449605px;}
._0{width:11.721568px;}
._8{width:12.787165px;}
._6{width:17.286353px;}
._1{width:18.326579px;}
._9{width:22.436739px;}
._3{width:25.396731px;}
._a{width:40.551890px;}
._2{width:736.302239px;}
.fc7{color:rgb(112,111,111);}
.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);}
.fsf{font-size:0.600000px;}
.fs4{font-size:29.599920px;}
.fs11{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;}
.fs10{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;}
.y22{bottom:35.529000px;}
.y21{bottom:36.291450px;}
.y41{bottom:37.366950px;}
.y20{bottom:45.087021px;}
.y1f{bottom:57.074989px;}
.y1e{bottom:69.062956px;}
.y113{bottom:71.591549px;}
.yaa{bottom:72.064499px;}
.yf0{bottom:75.843452px;}
.y40{bottom:77.194347px;}
.y68{bottom:79.019548px;}
.y1d{bottom:81.050924px;}
.y112{bottom:89.591549px;}
.ya9{bottom:90.064499px;}
.y1c{bottom:91.294610px;}
.yef{bottom:93.843452px;}
.y3f{bottom:94.894352px;}
.y67{bottom:97.019554px;}
.ycc{bottom:103.215603px;}
.y111{bottom:107.591549px;}
.ya8{bottom:108.064499px;}
.y1b{bottom:110.703701px;}
.yee{bottom:111.843452px;}
.y3e{bottom:112.594345px;}
.y66{bottom:115.019554px;}
.ycb{bottom:121.215603px;}
.y110{bottom:125.591549px;}
.ya7{bottom:126.064499px;}
.y88{bottom:126.251700px;}
.yed{bottom:129.843452px;}
.y3d{bottom:130.294347px;}
.y65{bottom:133.019554px;}
.yca{bottom:139.215603px;}
.y12a{bottom:141.967495px;}
.y10f{bottom:143.591549px;}
.ya6{bottom:144.064499px;}
.y87{bottom:144.251700px;}
.yec{bottom:147.843452px;}
.y3c{bottom:147.994347px;}
.y64{bottom:151.019554px;}
.yc9{bottom:157.215603px;}
.y129{bottom:159.967495px;}
.ya5{bottom:162.064499px;}
.y86{bottom:162.251700px;}
.y3b{bottom:165.694347px;}
.y10e{bottom:165.843452px;}
.y1a{bottom:167.091548px;}
.y63{bottom:169.019554px;}
.yeb{bottom:170.095505px;}
.yc8{bottom:175.215591px;}
.y19{bottom:176.077238px;}
.y128{bottom:177.967495px;}
.ya4{bottom:180.064499px;}
.y85{bottom:180.251700px;}
.y3a{bottom:183.394345px;}
.y18{bottom:184.322930px;}
.y62{bottom:191.271446px;}
.y17{bottom:191.807482px;}
.yc7{bottom:193.215591px;}
.y127{bottom:195.967506px;}
.y10d{bottom:196.599449px;}
.ya3{bottom:198.064499px;}
.y84{bottom:198.251700px;}
.y16{bottom:199.302604px;}
.yea{bottom:200.851341px;}
.y39{bottom:201.094345px;}
.y15{bottom:206.797727px;}
.y61{bottom:209.271446px;}
.y126{bottom:213.967506px;}
.y14{bottom:214.282278px;}
.y10c{bottom:214.599449px;}
.yc6{bottom:215.467506px;}
.y38{bottom:218.794350px;}
.ye9{bottom:218.851341px;}
.y13{bottom:221.777401px;}
.y83{bottom:222.629700px;}
.ya2{bottom:224.568503px;}
.y60{bottom:227.271446px;}
.y125{bottom:231.967506px;}
.y10b{bottom:232.599449px;}
.ye8{bottom:236.851341px;}
.y12{bottom:237.190502px;}
.y37{bottom:244.998359px;}
.y5f{bottom:245.271446px;}
.yc5{bottom:246.223503px;}
.ya1{bottom:246.318443px;}
.y124{bottom:249.967506px;}
.y10a{bottom:250.599449px;}
.ye7{bottom:254.851341px;}
.y82{bottom:259.887611px;}
.y5e{bottom:263.271446px;}
.yc4{bottom:264.223503px;}
.y36{bottom:266.748299px;}
.y123{bottom:267.967506px;}
.y109{bottom:268.599449px;}
.ye6{bottom:272.851341px;}
.y81{bottom:277.587602px;}
.y5d{bottom:281.271446px;}
.yc3{bottom:282.223503px;}
.y122{bottom:285.967506px;}
.y108{bottom:286.599449px;}
.ye5{bottom:290.851341px;}
.y80{bottom:295.287602px;}
.ya0{bottom:295.706245px;}
.yc2{bottom:300.223503px;}
.y5c{bottom:303.523499px;}
.y121{bottom:303.967506px;}
.y107{bottom:304.599449px;}
.ye4{bottom:308.851341px;}
.y11{bottom:312.839440px;}
.y7f{bottom:312.987602px;}
.y9f{bottom:313.706245px;}
.y35{bottom:316.136100px;}
.yc1{bottom:318.223503px;}
.y145{bottom:319.712700px;}
.y5b{bottom:321.523499px;}
.y120{bottom:321.967506px;}
.y106{bottom:322.599449px;}
.ye3{bottom:326.851341px;}
.y7e{bottom:330.687607px;}
.y9e{bottom:331.706245px;}
.y34{bottom:334.136100px;}
.yc0{bottom:336.223503px;}
.y5a{bottom:339.523499px;}
.y11f{bottom:339.967506px;}
.y105{bottom:340.599449px;}
.ye2{bottom:344.851341px;}
.y144{bottom:348.062471px;}
.y7d{bottom:348.387611px;}
.y9d{bottom:349.706245px;}
.y59{bottom:357.523499px;}
.y11e{bottom:357.967506px;}
.ybf{bottom:358.475395px;}
.y104{bottom:358.599449px;}
.ye1{bottom:362.851341px;}
.y143{bottom:364.412591px;}
.y7c{bottom:366.087598px;}
.y9c{bottom:367.706245px;}
.y33{bottom:369.143852px;}
.y58{bottom:375.523499px;}
.y11d{bottom:375.967484px;}
.y103{bottom:376.599449px;}
.y142{bottom:380.762576px;}
.ye0{bottom:380.851341px;}
.y7b{bottom:383.787598px;}
.y32{bottom:387.143829px;}
.ybe{bottom:389.231232px;}
.y9b{bottom:392.084106px;}
.y57{bottom:393.523499px;}
.y11c{bottom:393.967484px;}
.y102{bottom:394.599472px;}
.y141{bottom:397.112561px;}
.ydf{bottom:398.851364px;}
.y7a{bottom:401.487579px;}
.y31{bottom:405.143829px;}
.ybd{bottom:407.231232px;}
.y56{bottom:411.523499px;}
.y140{bottom:413.462681px;}
.yde{bottom:416.851364px;}
.y11b{bottom:420.471450px;}
.y30{bottom:423.143829px;}
.ybc{bottom:425.231232px;}
.y79{bottom:425.565582px;}
.y9a{bottom:429.341995px;}
.y55{bottom:429.523361px;}
.y13f{bottom:429.812531px;}
.ydd{bottom:434.851364px;}
.y2f{bottom:441.143829px;}
.ybb{bottom:443.231232px;}
.y13e{bottom:446.162567px;}
.y99{bottom:447.341995px;}
.y101{bottom:447.607178px;}
.y54{bottom:451.775391px;}
.ydc{bottom:452.851364px;}
.y10{bottom:458.312476px;}
.y2e{bottom:459.143829px;}
.yba{bottom:461.231232px;}
.y78{bottom:462.823517px;}
.y98{bottom:465.341995px;}
.y100{bottom:465.607178px;}
.y53{bottom:469.475400px;}
.y11a{bottom:469.859253px;}
.ydb{bottom:470.851364px;}
.y2d{bottom:477.143829px;}
.yb9{bottom:479.231232px;}
.y77{bottom:480.523361px;}
.yf{bottom:481.421556px;}
.y97{bottom:483.341995px;}
.yff{bottom:483.607178px;}
.y52{bottom:487.175400px;}
.y119{bottom:487.859253px;}
.y13d{bottom:488.024414px;}
.yda{bottom:488.851364px;}
.ye{bottom:493.398952px;}
.y2c{bottom:495.143829px;}
.yb8{bottom:497.231232px;}
.y76{bottom:498.223480px;}
.y96{bottom:501.341995px;}
.yfe{bottom:501.607178px;}
.y51{bottom:504.875381px;}
.y118{bottom:505.859253px;}
.yd9{bottom:511.103394px;}
.y2b{bottom:513.143829px;}
.yb7{bottom:515.231232px;}
.yd{bottom:516.740603px;}
.y95{bottom:519.341995px;}
.yfd{bottom:519.607178px;}
.y50{bottom:522.575418px;}
.y117{bottom:523.859253px;}
.y75{bottom:524.427429px;}
.yc{bottom:528.728571px;}
.y2a{bottom:531.143829px;}
.yb6{bottom:533.231232px;}
.y13c{bottom:537.412216px;}
.yfc{bottom:537.607178px;}
.y4f{bottom:540.275418px;}
.yb{bottom:540.716539px;}
.yd8{bottom:541.859253px;}
.y94{bottom:543.720016px;}
.y29{bottom:549.143829px;}
.yb5{bottom:551.231232px;}
.y13b{bottom:551.812180px;}
.ya{bottom:552.704506px;}
.yfb{bottom:555.607178px;}
.y4e{bottom:557.975418px;}
.yd7{bottom:559.859253px;}
.y9{bottom:564.692474px;}
.y13a{bottom:566.212189px;}
.y28{bottom:567.143829px;}
.yb4{bottom:569.231232px;}
.yfa{bottom:573.607178px;}
.y74{bottom:573.815231px;}
.y4d{bottom:575.675400px;}
.y8{bottom:576.669870px;}
.yd6{bottom:577.859253px;}
.y139{bottom:580.612198px;}
.y93{bottom:580.977905px;}
.yb3{bottom:587.231232px;}
.y27{bottom:589.395905px;}
.yf9{bottom:591.607178px;}
.y73{bottom:591.815231px;}
.y4c{bottom:593.375381px;}
.y138{bottom:595.012207px;}
.yd5{bottom:595.859253px;}
.y92{bottom:598.677887px;}
.yb2{bottom:605.231232px;}
.y137{bottom:609.412216px;}
.yf8{bottom:609.607178px;}
.y72{bottom:609.815231px;}
.y4b{bottom:611.075391px;}
.yd4{bottom:613.859253px;}
.y91{bottom:616.377914px;}
.yb1{bottom:623.231232px;}
.y136{bottom:623.812180px;}
.y71{bottom:627.815231px;}
.y4a{bottom:628.775391px;}
.yd3{bottom:631.859253px;}
.y7{bottom:632.539719px;}
.y90{bottom:634.077896px;}
.y116{bottom:636.111282px;}
.y135{bottom:638.212189px;}
.y70{bottom:645.815231px;}
.y49{bottom:646.475418px;}
.yb0{bottom:647.609253px;}
.y6{bottom:649.020532px;}
.yd2{bottom:649.859253px;}
.y134{bottom:652.612198px;}
.y8f{bottom:658.155762px;}
.yf7{bottom:662.615112px;}
.y6f{bottom:663.815231px;}
.y5{bottom:665.501344px;}
.y115{bottom:666.867142px;}
.y133{bottom:667.012207px;}
.yd1{bottom:667.859253px;}
.y48{bottom:672.679367px;}
.yf6{bottom:680.615112px;}
.y132{bottom:681.412216px;}
.y4{bottom:683.282439px;}
.yaf{bottom:684.867142px;}
.yd0{bottom:685.859253px;}
.y6e{bottom:686.067169px;}
.y26{bottom:692.435257px;}
.y8e{bottom:695.413650px;}
.y131{bottom:695.812180px;}
.yf5{bottom:698.615112px;}
.yae{bottom:702.867142px;}
.y6d{bottom:703.767150px;}
.ycf{bottom:703.859253px;}
.y3{bottom:704.256097px;}
.y130{bottom:710.212189px;}
.y8d{bottom:713.413650px;}
.yf4{bottom:716.615112px;}
.yad{bottom:720.867142px;}
.y25{bottom:720.935257px;}
.y6c{bottom:721.467142px;}
.yce{bottom:721.859253px;}
.y47{bottom:722.067169px;}
.y12f{bottom:724.612198px;}
.y2{bottom:725.240326px;}
.y8c{bottom:731.413650px;}
.yf3{bottom:734.615112px;}
.y114{bottom:738.867142px;}
.yac{bottom:738.867188px;}
.y12e{bottom:739.012207px;}
.y6b{bottom:739.167142px;}
.y46{bottom:739.767150px;}
.ycd{bottom:744.111282px;}
.y8b{bottom:749.413650px;}
.y24{bottom:749.435257px;}
.yf2{bottom:752.615145px;}
.y12d{bottom:753.412216px;}
.y6a{bottom:756.867142px;}
.yab{bottom:756.867188px;}
.y45{bottom:757.467133px;}
.y8a{bottom:767.413650px;}
.y12c{bottom:767.812180px;}
.yf1{bottom:770.615295px;}
.y69{bottom:774.867188px;}
.y44{bottom:775.167188px;}
.y23{bottom:788.565125px;}
.y12b{bottom:790.716156px;}
.y89{bottom:791.791626px;}
.y43{bottom:792.867188px;}
.y42{bottom:833.260803px;}
.h9{height:21.933541px;}
.h7{height:25.066904px;}
.h8{height:25.134561px;}
.hc{height:28.200267px;}
.h6{height:31.333630px;}
.ha{height:31.418201px;}
.h10{height:34.359000px;}
.h5{height:34.466993px;}
.hb{height:35.093665px;}
.h1a{height:41.562623px;}
.h19{height:42.288000px;}
.h3{height:43.867081px;}
.h4{height:43.985481px;}
.h18{height:44.820000px;}
.h16{height:46.224000px;}
.h1b{height:47.574000px;}
.h17{height:49.302000px;}
.h13{height:51.360000px;}
.h14{height:52.860000px;}
.hf{height:56.496000px;}
.h11{height:60.732000px;}
.h15{height:61.632000px;}
.h12{height:82.176000px;}
.h2{height:889.995595px;}
.h1{height:890.250000px;}
.h0{height:890.520000px;}
.hd{height:892.914000px;}
.he{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;}
.x5{left:80.787449px;}
.xb{left:87.686851px;}
.x7{left:93.543303px;}
.xd{left:95.669249px;}
.x2{left:104.878859px;}
.xa{left:149.289597px;}
.xe{left:212.598450px;}
.xc{left:266.893639px;}
.x4{left:308.653166px;}
.x8{left:445.146606px;}
.x9{left:526.917755px;}
.x6{left:548.467941px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984538pt;}
.ls6{letter-spacing:-2.639520pt;}
.ls5{letter-spacing:-1.348747pt;}
.ls1{letter-spacing:-1.173333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160533pt;}
.ls3{letter-spacing:20.820813pt;}
.ls4{letter-spacing:45.108813pt;}
.ws3{word-spacing:-20.480000pt;}
.ws9e{word-spacing:-15.360000pt;}
.ws19{word-spacing:-13.546667pt;}
.ws4{word-spacing:-12.960533pt;}
.ws2{word-spacing:-12.906667pt;}
.ws5{word-spacing:-12.800000pt;}
.ws37{word-spacing:-12.731253pt;}
.wsa0{word-spacing:-12.192000pt;}
.ws0{word-spacing:-11.703151pt;}
.ws36{word-spacing:-8.805333pt;}
.ws9f{word-spacing:-6.884064pt;}
.ws26{word-spacing:-6.880000pt;}
.ws9b{word-spacing:-4.000000pt;}
.ws92{word-spacing:-2.666667pt;}
.ws5b{word-spacing:-2.613333pt;}
.wsd{word-spacing:-2.560000pt;}
.ws1c{word-spacing:-2.506667pt;}
.ws90{word-spacing:-2.400000pt;}
.ws78{word-spacing:-2.347200pt;}
.ws2a{word-spacing:-2.240533pt;}
.ws25{word-spacing:-2.186667pt;}
.ws13{word-spacing:-2.080000pt;}
.ws9d{word-spacing:-2.026133pt;}
.ws23{word-spacing:-1.973333pt;}
.ws9{word-spacing:-1.866667pt;}
.ws70{word-spacing:-1.706667pt;}
.ws18{word-spacing:-1.653867pt;}
.ws94{word-spacing:-1.600000pt;}
.wsa1{word-spacing:-1.578667pt;}
.ws4e{word-spacing:-1.547200pt;}
.ws42{word-spacing:-1.386667pt;}
.ws7b{word-spacing:-1.280000pt;}
.ws44{word-spacing:-1.226133pt;}
.ws2d{word-spacing:-1.173333pt;}
.ws72{word-spacing:-1.120000pt;}
.wsa7{word-spacing:-0.980907pt;}
.ws17{word-spacing:-0.960533pt;}
.ws61{word-spacing:-0.906667pt;}
.ws10{word-spacing:-0.800000pt;}
.ws9a{word-spacing:-0.747200pt;}
.ws35{word-spacing:-0.639467pt;}
.ws16{word-spacing:-0.532800pt;}
.ws57{word-spacing:-0.480000pt;}
.ws83{word-spacing:-0.373333pt;}
.ws89{word-spacing:-0.320000pt;}
.ws48{word-spacing:-0.266667pt;}
.wsa4{word-spacing:-0.256000pt;}
.ws9c{word-spacing:-0.213333pt;}
.wsac{word-spacing:-0.192000pt;}
.ws11{word-spacing:-0.160533pt;}
.ws21{word-spacing:-0.053867pt;}
.wsad{word-spacing:-0.048480pt;}
.ws1{word-spacing:0.000000pt;}
.ws68{word-spacing:0.053867pt;}
.ws32{word-spacing:0.106667pt;}
.ws74{word-spacing:0.160533pt;}
.ws85{word-spacing:0.213333pt;}
.ws49{word-spacing:0.373333pt;}
.ws8b{word-spacing:0.426667pt;}
.ws14{word-spacing:0.480000pt;}
.ws4d{word-spacing:0.586667pt;}
.wsa8{word-spacing:0.640000pt;}
.ws31{word-spacing:0.693333pt;}
.ws46{word-spacing:0.747200pt;}
.ws22{word-spacing:0.800000pt;}
.ws80{word-spacing:1.013333pt;}
.wsa9{word-spacing:1.024000pt;}
.ws41{word-spacing:1.066667pt;}
.ws4f{word-spacing:1.173333pt;}
.ws91{word-spacing:1.226133pt;}
.wsa{word-spacing:1.280000pt;}
.ws33{word-spacing:1.332800pt;}
.ws2e{word-spacing:1.439467pt;}
.ws29{word-spacing:1.493333pt;}
.ws7{word-spacing:1.547200pt;}
.ws5a{word-spacing:1.600000pt;}
.ws7d{word-spacing:1.653867pt;}
.ws2b{word-spacing:1.706667pt;}
.ws50{word-spacing:1.760000pt;}
.ws7c{word-spacing:1.813333pt;}
.ws8{word-spacing:1.866667pt;}
.ws8a{word-spacing:1.973333pt;}
.wsa3{word-spacing:2.005333pt;}
.ws53{word-spacing:2.026133pt;}
.ws1a{word-spacing:2.080000pt;}
.ws62{word-spacing:2.132800pt;}
.wsc{word-spacing:2.186667pt;}
.ws59{word-spacing:2.240533pt;}
.ws96{word-spacing:2.453867pt;}
.ws45{word-spacing:2.613333pt;}
.wsab{word-spacing:2.639520pt;}
.ws76{word-spacing:2.666667pt;}
.ws8d{word-spacing:2.719467pt;}
.ws6{word-spacing:2.826133pt;}
.ws82{word-spacing:2.880000pt;}
.ws98{word-spacing:2.932800pt;}
.wsb{word-spacing:3.040533pt;}
.ws7a{word-spacing:3.093333pt;}
.ws95{word-spacing:3.147200pt;}
.ws34{word-spacing:3.306667pt;}
.ws6f{word-spacing:3.360000pt;}
.ws54{word-spacing:3.413333pt;}
.ws1b{word-spacing:3.466667pt;}
.ws77{word-spacing:3.519467pt;}
.ws4c{word-spacing:3.733867pt;}
.ws86{word-spacing:3.840533pt;}
.ws60{word-spacing:3.893333pt;}
.ws2f{word-spacing:4.000000pt;}
.ws6e{word-spacing:4.106667pt;}
.ws73{word-spacing:4.373333pt;}
.ws30{word-spacing:4.426133pt;}
.ws58{word-spacing:4.480000pt;}
.ws79{word-spacing:4.586667pt;}
.ws63{word-spacing:4.746667pt;}
.wsaa{word-spacing:4.778667pt;}
.ws52{word-spacing:4.960000pt;}
.ws6c{word-spacing:5.012800pt;}
.ws20{word-spacing:5.066667pt;}
.ws75{word-spacing:5.119467pt;}
.wsf{word-spacing:5.173333pt;}
.ws93{word-spacing:5.227200pt;}
.ws1d{word-spacing:5.280000pt;}
.ws8c{word-spacing:5.546667pt;}
.ws15{word-spacing:5.600000pt;}
.wsa5{word-spacing:5.802667pt;}
.ws3c{word-spacing:5.812800pt;}
.wsa2{word-spacing:5.888000pt;}
.ws99{word-spacing:5.973333pt;}
.ws88{word-spacing:6.293333pt;}
.ws6b{word-spacing:6.346667pt;}
.ws56{word-spacing:6.400000pt;}
.ws81{word-spacing:6.453333pt;}
.ws4a{word-spacing:6.612800pt;}
.ws71{word-spacing:6.666667pt;}
.ws47{word-spacing:6.720533pt;}
.ws24{word-spacing:6.773333pt;}
.ws87{word-spacing:7.146667pt;}
.ws5e{word-spacing:7.199467pt;}
.ws69{word-spacing:7.253333pt;}
.ws5d{word-spacing:7.306133pt;}
.ws6a{word-spacing:7.413867pt;}
.ws84{word-spacing:7.466667pt;}
.ws8e{word-spacing:7.520533pt;}
.ws43{word-spacing:7.627200pt;}
.ws39{word-spacing:7.786667pt;}
.wse{word-spacing:8.320533pt;}
.ws64{word-spacing:8.426667pt;}
.ws12{word-spacing:8.586667pt;}
.ws7f{word-spacing:9.066667pt;}
.ws7e{word-spacing:9.333333pt;}
.ws6d{word-spacing:9.386133pt;}
.ws1f{word-spacing:9.492800pt;}
.ws5f{word-spacing:9.653333pt;}
.wsa6{word-spacing:9.685760pt;}
.ws97{word-spacing:9.920000pt;}
.ws40{word-spacing:10.026667pt;}
.ws3b{word-spacing:10.346667pt;}
.ws28{word-spacing:10.879467pt;}
.ws2c{word-spacing:10.933333pt;}
.ws3d{word-spacing:11.626667pt;}
.ws38{word-spacing:11.733333pt;}
.ws3e{word-spacing:11.893867pt;}
.ws8f{word-spacing:12.053333pt;}
.ws65{word-spacing:12.320000pt;}
.ws1e{word-spacing:12.426667pt;}
.ws4b{word-spacing:13.279467pt;}
.ws55{word-spacing:13.440000pt;}
.ws51{word-spacing:14.400000pt;}
.ws3a{word-spacing:15.573867pt;}
.ws5c{word-spacing:16.693333pt;}
.ws66{word-spacing:17.013333pt;}
.ws27{word-spacing:22.719467pt;}
.ws67{word-spacing:22.880000pt;}
.ws3f{word-spacing:24.000000pt;}
._11{margin-left:-37.331209pt;}
._17{margin-left:-11.292733pt;}
._b{margin-left:-9.224525pt;}
._13{margin-left:-6.980250pt;}
._d{margin-left:-5.830362pt;}
._f{margin-left:-4.458662pt;}
._e{margin-left:-2.910959pt;}
._10{margin-left:-2.021857pt;}
._c{margin-left:-0.989862pt;}
._7{width:1.578662pt;}
._4{width:3.078392pt;}
._5{width:4.288700pt;}
._14{width:5.460803pt;}
._15{width:6.629333pt;}
._12{width:7.641067pt;}
._16{width:9.288538pt;}
._0{width:10.419172pt;}
._8{width:11.366369pt;}
._6{width:15.365647pt;}
._1{width:16.290292pt;}
._9{width:19.943768pt;}
._3{width:22.574872pt;}
._a{width:36.046125pt;}
._2{width:654.490879pt;}
.fsf{font-size:0.533333pt;}
.fs4{font-size:26.311040pt;}
.fs11{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;}
.fs10{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;}
.y22{bottom:31.581333pt;}
.y21{bottom:32.259066pt;}
.y41{bottom:33.215067pt;}
.y20{bottom:40.077352pt;}
.y1f{bottom:50.733323pt;}
.y1e{bottom:61.389294pt;}
.y113{bottom:63.636932pt;}
.yaa{bottom:64.057332pt;}
.yf0{bottom:67.416402pt;}
.y40{bottom:68.617198pt;}
.y68{bottom:70.239599pt;}
.y1d{bottom:72.045266pt;}
.y112{bottom:79.636932pt;}
.ya9{bottom:80.057332pt;}
.y1c{bottom:81.150765pt;}
.yef{bottom:83.416402pt;}
.y3f{bottom:84.350535pt;}
.y67{bottom:86.239604pt;}
.ycc{bottom:91.747203pt;}
.y111{bottom:95.636932pt;}
.ya8{bottom:96.057332pt;}
.y1b{bottom:98.403290pt;}
.yee{bottom:99.416402pt;}
.y3e{bottom:100.083862pt;}
.y66{bottom:102.239604pt;}
.ycb{bottom:107.747203pt;}
.y110{bottom:111.636932pt;}
.ya7{bottom:112.057332pt;}
.y88{bottom:112.223733pt;}
.yed{bottom:115.416402pt;}
.y3d{bottom:115.817198pt;}
.y65{bottom:118.239604pt;}
.yca{bottom:123.747203pt;}
.y12a{bottom:126.193329pt;}
.y10f{bottom:127.636932pt;}
.ya6{bottom:128.057332pt;}
.y87{bottom:128.223733pt;}
.yec{bottom:131.416402pt;}
.y3c{bottom:131.550531pt;}
.y64{bottom:134.239604pt;}
.yc9{bottom:139.747203pt;}
.y129{bottom:142.193329pt;}
.ya5{bottom:144.057332pt;}
.y86{bottom:144.223733pt;}
.y3b{bottom:147.283864pt;}
.y10e{bottom:147.416402pt;}
.y1a{bottom:148.525821pt;}
.y63{bottom:150.239604pt;}
.yeb{bottom:151.196004pt;}
.yc8{bottom:155.747192pt;}
.y19{bottom:156.513101pt;}
.y128{bottom:158.193329pt;}
.ya4{bottom:160.057332pt;}
.y85{bottom:160.223733pt;}
.y3a{bottom:163.017196pt;}
.y18{bottom:163.842605pt;}
.y62{bottom:170.019063pt;}
.y17{bottom:170.495539pt;}
.yc7{bottom:171.747192pt;}
.y127{bottom:174.193339pt;}
.y10d{bottom:174.755066pt;}
.ya3{bottom:176.057332pt;}
.y84{bottom:176.223733pt;}
.y16{bottom:177.157870pt;}
.yea{bottom:178.534526pt;}
.y39{bottom:178.750529pt;}
.y15{bottom:183.820202pt;}
.y61{bottom:186.019063pt;}
.y126{bottom:190.193339pt;}
.y14{bottom:190.473136pt;}
.y10c{bottom:190.755066pt;}
.yc6{bottom:191.526672pt;}
.y38{bottom:194.483866pt;}
.ye9{bottom:194.534526pt;}
.y13{bottom:197.135467pt;}
.y83{bottom:197.893066pt;}
.ya2{bottom:199.616447pt;}
.y60{bottom:202.019063pt;}
.y125{bottom:206.193339pt;}
.y10b{bottom:206.755066pt;}
.ye8{bottom:210.534526pt;}
.y12{bottom:210.836002pt;}
.y37{bottom:217.776319pt;}
.y5f{bottom:218.019063pt;}
.yc5{bottom:218.865336pt;}
.ya1{bottom:218.949727pt;}
.y124{bottom:222.193339pt;}
.y10a{bottom:222.755066pt;}
.ye7{bottom:226.534526pt;}
.y82{bottom:231.011210pt;}
.y5e{bottom:234.019063pt;}
.yc4{bottom:234.865336pt;}
.y36{bottom:237.109599pt;}
.y123{bottom:238.193339pt;}
.y109{bottom:238.755066pt;}
.ye6{bottom:242.534526pt;}
.y81{bottom:246.744535pt;}
.y5d{bottom:250.019063pt;}
.yc3{bottom:250.865336pt;}
.y122{bottom:254.193339pt;}
.y108{bottom:254.755066pt;}
.ye5{bottom:258.534526pt;}
.y80{bottom:262.477869pt;}
.ya0{bottom:262.849996pt;}
.yc2{bottom:266.865336pt;}
.y5c{bottom:269.798665pt;}
.y121{bottom:270.193339pt;}
.y107{bottom:270.755066pt;}
.ye4{bottom:274.534526pt;}
.y11{bottom:278.079502pt;}
.y7f{bottom:278.211202pt;}
.y9f{bottom:278.849996pt;}
.y35{bottom:281.009867pt;}
.yc1{bottom:282.865336pt;}
.y145{bottom:284.189067pt;}
.y5b{bottom:285.798665pt;}
.y120{bottom:286.193339pt;}
.y106{bottom:286.755066pt;}
.ye3{bottom:290.534526pt;}
.y7e{bottom:293.944539pt;}
.y9e{bottom:294.849996pt;}
.y34{bottom:297.009867pt;}
.yc0{bottom:298.865336pt;}
.y5a{bottom:301.798665pt;}
.y11f{bottom:302.193339pt;}
.y105{bottom:302.755066pt;}
.ye2{bottom:306.534526pt;}
.y144{bottom:309.388863pt;}
.y7d{bottom:309.677877pt;}
.y9d{bottom:310.849996pt;}
.y59{bottom:317.798665pt;}
.y11e{bottom:318.193339pt;}
.ybf{bottom:318.644796pt;}
.y104{bottom:318.755066pt;}
.ye1{bottom:322.534526pt;}
.y143{bottom:323.922303pt;}
.y7c{bottom:325.411198pt;}
.y9c{bottom:326.849996pt;}
.y33{bottom:328.127869pt;}
.y58{bottom:333.798665pt;}
.y11d{bottom:334.193319pt;}
.y103{bottom:334.755066pt;}
.y142{bottom:338.455623pt;}
.ye0{bottom:338.534526pt;}
.y7b{bottom:341.144531pt;}
.y32{bottom:344.127848pt;}
.ybe{bottom:345.983317pt;}
.y9b{bottom:348.519206pt;}
.y57{bottom:349.798665pt;}
.y11c{bottom:350.193319pt;}
.y102{bottom:350.755086pt;}
.y141{bottom:352.988943pt;}
.ydf{bottom:354.534546pt;}
.y7a{bottom:356.877848pt;}
.y31{bottom:360.127848pt;}
.ybd{bottom:361.983317pt;}
.y56{bottom:365.798665pt;}
.y140{bottom:367.522383pt;}
.yde{bottom:370.534546pt;}
.y11b{bottom:373.752400pt;}
.y30{bottom:376.127848pt;}
.ybc{bottom:377.983317pt;}
.y79{bottom:378.280518pt;}
.y9a{bottom:381.637329pt;}
.y55{bottom:381.798543pt;}
.y13f{bottom:382.055583pt;}
.ydd{bottom:386.534546pt;}
.y2f{bottom:392.127848pt;}
.ybb{bottom:393.983317pt;}
.y13e{bottom:396.588949pt;}
.y99{bottom:397.637329pt;}
.y101{bottom:397.873047pt;}
.y54{bottom:401.578125pt;}
.ydc{bottom:402.534546pt;}
.y10{bottom:407.388867pt;}
.y2e{bottom:408.127848pt;}
.yba{bottom:409.983317pt;}
.y78{bottom:411.398682pt;}
.y98{bottom:413.637329pt;}
.y100{bottom:413.873047pt;}
.y53{bottom:417.311466pt;}
.y11a{bottom:417.652669pt;}
.ydb{bottom:418.534546pt;}
.y2d{bottom:424.127848pt;}
.yb9{bottom:425.983317pt;}
.y77{bottom:427.131877pt;}
.yf{bottom:427.930272pt;}
.y97{bottom:429.637329pt;}
.yff{bottom:429.873047pt;}
.y52{bottom:433.044800pt;}
.y119{bottom:433.652669pt;}
.y13d{bottom:433.799479pt;}
.yda{bottom:434.534546pt;}
.ye{bottom:438.576846pt;}
.y2c{bottom:440.127848pt;}
.yb8{bottom:441.983317pt;}
.y76{bottom:442.865316pt;}
.y96{bottom:445.637329pt;}
.yfe{bottom:445.873047pt;}
.y51{bottom:448.778117pt;}
.y118{bottom:449.652669pt;}
.yd9{bottom:454.314128pt;}
.y2b{bottom:456.127848pt;}
.yb7{bottom:457.983317pt;}
.yd{bottom:459.324981pt;}
.y95{bottom:461.637329pt;}
.yfd{bottom:461.873047pt;}
.y50{bottom:464.511483pt;}
.y117{bottom:465.652669pt;}
.y75{bottom:466.157715pt;}
.yc{bottom:469.980952pt;}
.y2a{bottom:472.127848pt;}
.yb6{bottom:473.983317pt;}
.y13c{bottom:477.699748pt;}
.yfc{bottom:477.873047pt;}
.y4f{bottom:480.244816pt;}
.yb{bottom:480.636923pt;}
.yd8{bottom:481.652669pt;}
.y94{bottom:483.306681pt;}
.y29{bottom:488.127848pt;}
.yb5{bottom:489.983317pt;}
.y13b{bottom:490.499715pt;}
.ya{bottom:491.292894pt;}
.yfb{bottom:493.873047pt;}
.y4e{bottom:495.978149pt;}
.yd7{bottom:497.652669pt;}
.y9{bottom:501.948866pt;}
.y13a{bottom:503.299723pt;}
.y28{bottom:504.127848pt;}
.yb4{bottom:505.983317pt;}
.yfa{bottom:509.873047pt;}
.y74{bottom:510.057983pt;}
.y4d{bottom:511.711466pt;}
.y8{bottom:512.595440pt;}
.yd6{bottom:513.652669pt;}
.y139{bottom:516.099731pt;}
.y93{bottom:516.424805pt;}
.yb3{bottom:521.983317pt;}
.y27{bottom:523.907471pt;}
.yf9{bottom:525.873047pt;}
.y73{bottom:526.057983pt;}
.y4c{bottom:527.444784pt;}
.y138{bottom:528.899740pt;}
.yd5{bottom:529.652669pt;}
.y92{bottom:532.158122pt;}
.yb2{bottom:537.983317pt;}
.y137{bottom:541.699748pt;}
.yf8{bottom:541.873047pt;}
.y72{bottom:542.057983pt;}
.y4b{bottom:543.178125pt;}
.yd4{bottom:545.652669pt;}
.y91{bottom:547.891479pt;}
.yb1{bottom:553.983317pt;}
.y136{bottom:554.499715pt;}
.y71{bottom:558.057983pt;}
.y4a{bottom:558.911458pt;}
.yd3{bottom:561.652669pt;}
.y7{bottom:562.257528pt;}
.y90{bottom:563.624797pt;}
.y116{bottom:565.432251pt;}
.y135{bottom:567.299723pt;}
.y70{bottom:574.057983pt;}
.y49{bottom:574.644816pt;}
.yb0{bottom:575.652669pt;}
.y6{bottom:576.907139pt;}
.yd2{bottom:577.652669pt;}
.y134{bottom:580.099731pt;}
.y8f{bottom:585.027344pt;}
.yf7{bottom:588.991211pt;}
.y6f{bottom:590.057983pt;}
.y5{bottom:591.556750pt;}
.y115{bottom:592.770793pt;}
.y133{bottom:592.899740pt;}
.yd1{bottom:593.652669pt;}
.y48{bottom:597.937215pt;}
.yf6{bottom:604.991211pt;}
.y132{bottom:605.699748pt;}
.y4{bottom:607.362168pt;}
.yaf{bottom:608.770793pt;}
.yd0{bottom:609.652669pt;}
.y6e{bottom:609.837484pt;}
.y26{bottom:615.498006pt;}
.y8e{bottom:618.145467pt;}
.y131{bottom:618.499715pt;}
.yf5{bottom:620.991211pt;}
.yae{bottom:624.770793pt;}
.y6d{bottom:625.570800pt;}
.ycf{bottom:625.652669pt;}
.y3{bottom:626.005419pt;}
.y130{bottom:631.299723pt;}
.y8d{bottom:634.145467pt;}
.yf4{bottom:636.991211pt;}
.yad{bottom:640.770793pt;}
.y25{bottom:640.831340pt;}
.y6c{bottom:641.304126pt;}
.yce{bottom:641.652669pt;}
.y47{bottom:641.837484pt;}
.y12f{bottom:644.099731pt;}
.y2{bottom:644.658067pt;}
.y8c{bottom:650.145467pt;}
.yf3{bottom:652.991211pt;}
.y114{bottom:656.770793pt;}
.yac{bottom:656.770833pt;}
.y12e{bottom:656.899740pt;}
.y6b{bottom:657.037459pt;}
.y46{bottom:657.570800pt;}
.ycd{bottom:661.432251pt;}
.y8b{bottom:666.145467pt;}
.y24{bottom:666.164673pt;}
.yf2{bottom:668.991240pt;}
.y12d{bottom:669.699748pt;}
.y6a{bottom:672.770793pt;}
.yab{bottom:672.770833pt;}
.y45{bottom:673.304118pt;}
.y8a{bottom:682.145467pt;}
.y12c{bottom:682.499715pt;}
.yf1{bottom:684.991374pt;}
.y69{bottom:688.770833pt;}
.y44{bottom:689.037500pt;}
.y23{bottom:700.946777pt;}
.y12b{bottom:702.858805pt;}
.y89{bottom:703.814779pt;}
.y43{bottom:704.770833pt;}
.y42{bottom:740.676270pt;}
.h9{height:19.496481pt;}
.h7{height:22.281692pt;}
.h8{height:22.341832pt;}
.hc{height:25.066904pt;}
.h6{height:27.852115pt;}
.ha{height:27.927290pt;}
.h10{height:30.541333pt;}
.h5{height:30.637327pt;}
.hb{height:31.194369pt;}
.h1a{height:36.944554pt;}
.h19{height:37.589333pt;}
.h3{height:38.992961pt;}
.h4{height:39.098205pt;}
.h18{height:39.840000pt;}
.h16{height:41.088000pt;}
.h1b{height:42.288000pt;}
.h17{height:43.824000pt;}
.h13{height:45.653333pt;}
.h14{height:46.986667pt;}
.hf{height:50.218667pt;}
.h11{height:53.984000pt;}
.h15{height:54.784000pt;}
.h12{height:73.045333pt;}
.h2{height:791.107195pt;}
.h1{height:791.333333pt;}
.h0{height:791.573333pt;}
.hd{height:793.701333pt;}
.he{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;}
.x5{left:71.811066pt;}
.xb{left:77.943868pt;}
.x7{left:83.149602pt;}
.xd{left:85.039332pt;}
.x2{left:93.225653pt;}
.xa{left:132.701864pt;}
.xe{left:188.976400pt;}
.xc{left:237.238790pt;}
.x4{left:274.358370pt;}
.x8{left:395.685872pt;}
.x9{left:468.371338pt;}
.x6{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; }
  