
    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_b6e8822c8da08c18687b0810.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.968262;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_4c1721e49b699f17e82412be.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_478956c1c75561e1fd01b533.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.887000;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_70d12d875d0ce470fd90b298.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.058105;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_9f2315eb986ab489fe57735a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.058105;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_c17a99f03c9d72fbd31f820d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710938;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_e3f05b4e7b173c8a1525dc5b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104492;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_ad48af0d3275b2712a73731e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104492;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_711a445186504ec831f595af.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6b4e8ce722c22cd2cb5ccbd7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.103027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9dba2d00f3888a8689ec946d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_75def6b3ddb22102850c7530.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-96.074400px;}
.v3{vertical-align:-12.006000px;}
.v2{vertical-align:-5.994000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-4.592700px;}
.ls2{letter-spacing:-4.337550px;}
.ls3{letter-spacing:-3.827250px;}
.lsa{letter-spacing:-1.350000px;}
.lsd{letter-spacing:-0.810000px;}
.ls22{letter-spacing:-0.522000px;}
.ls21{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.162000px;}
.lsc{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.162000px;}
.ls18{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.270000px;}
.ls1c{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.378000px;}
.ls0{letter-spacing:0.420000px;}
.ls1f{letter-spacing:0.486000px;}
.ls9{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.702000px;}
.ls1e{letter-spacing:0.756000px;}
.ls14{letter-spacing:0.810000px;}
.ls1d{letter-spacing:0.918000px;}
.ls7{letter-spacing:0.972000px;}
.ls17{letter-spacing:1.080000px;}
.ls15{letter-spacing:1.944000px;}
.ls16{letter-spacing:2.268000px;}
.ls8{letter-spacing:2.646000px;}
.ls1b{letter-spacing:2.862000px;}
.ls11{letter-spacing:2.916000px;}
.ls1a{letter-spacing:3.024000px;}
.ls6{letter-spacing:3.078000px;}
.ls12{letter-spacing:3.240000px;}
.lse{letter-spacing:3.456000px;}
.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;}
}
.ws4d{word-spacing:-44.820000px;}
.wsa{word-spacing:-16.686000px;}
.ws6{word-spacing:-16.524000px;}
.ws7{word-spacing:-16.092000px;}
.ws4a{word-spacing:-14.310000px;}
.ws4b{word-spacing:-14.040000px;}
.wsb{word-spacing:-13.932000px;}
.ws9{word-spacing:-13.446000px;}
.ws49{word-spacing:-13.338000px;}
.ws4c{word-spacing:-13.176000px;}
.ws8{word-spacing:-13.122000px;}
.ws87{word-spacing:-12.997800px;}
.ws86{word-spacing:-12.945600px;}
.ws83{word-spacing:-11.952000px;}
.ws82{word-spacing:-11.904000px;}
.ws84{word-spacing:-7.290000px;}
.ws20{word-spacing:-6.102000px;}
.ws1d{word-spacing:-4.320000px;}
.ws38{word-spacing:-3.564000px;}
.ws35{word-spacing:-2.700000px;}
.ws3e{word-spacing:-2.538000px;}
.ws34{word-spacing:-2.484000px;}
.ws47{word-spacing:-2.160000px;}
.ws22{word-spacing:-2.106000px;}
.ws42{word-spacing:-2.052000px;}
.ws53{word-spacing:-1.998000px;}
.ws3f{word-spacing:-1.944000px;}
.ws6a{word-spacing:-1.890000px;}
.ws52{word-spacing:-1.782000px;}
.ws21{word-spacing:-1.674000px;}
.ws89{word-spacing:-0.991800px;}
.ws73{word-spacing:-0.972000px;}
.ws76{word-spacing:-0.918000px;}
.ws79{word-spacing:-0.756000px;}
.ws18{word-spacing:-0.540000px;}
.ws1{word-spacing:-0.420000px;}
.ws3b{word-spacing:-0.378000px;}
.ws62{word-spacing:-0.216000px;}
.ws69{word-spacing:-0.162000px;}
.ws17{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws40{word-spacing:0.054000px;}
.ws16{word-spacing:0.162000px;}
.ws32{word-spacing:0.378000px;}
.ws88{word-spacing:0.522000px;}
.ws54{word-spacing:0.810000px;}
.ws55{word-spacing:1.458000px;}
.ws26{word-spacing:1.566000px;}
.ws7e{word-spacing:1.728000px;}
.ws39{word-spacing:2.160000px;}
.ws19{word-spacing:2.322000px;}
.ws11{word-spacing:2.376000px;}
.ws5b{word-spacing:2.430000px;}
.ws1e{word-spacing:3.294000px;}
.ws59{word-spacing:3.348000px;}
.ws27{word-spacing:3.402000px;}
.ws4{word-spacing:3.827250px;}
.ws1a{word-spacing:3.888000px;}
.ws72{word-spacing:3.996000px;}
.ws3{word-spacing:4.337550px;}
.ws66{word-spacing:4.374000px;}
.ws78{word-spacing:4.536000px;}
.wse{word-spacing:4.590000px;}
.ws5{word-spacing:4.592700px;}
.ws15{word-spacing:4.644000px;}
.ws58{word-spacing:4.698000px;}
.ws31{word-spacing:4.806000px;}
.ws7f{word-spacing:5.022000px;}
.wsc{word-spacing:5.562000px;}
.ws5c{word-spacing:5.994000px;}
.ws1f{word-spacing:6.480000px;}
.ws51{word-spacing:6.534000px;}
.ws36{word-spacing:6.588000px;}
.ws2c{word-spacing:6.696000px;}
.ws67{word-spacing:6.912000px;}
.ws33{word-spacing:7.020000px;}
.ws29{word-spacing:7.236000px;}
.ws68{word-spacing:7.344000px;}
.wsf{word-spacing:7.506000px;}
.ws23{word-spacing:7.560000px;}
.ws12{word-spacing:7.884000px;}
.ws30{word-spacing:7.992000px;}
.ws25{word-spacing:8.262000px;}
.ws50{word-spacing:8.532000px;}
.ws1b{word-spacing:8.640000px;}
.ws14{word-spacing:8.856000px;}
.ws6d{word-spacing:9.018000px;}
.ws44{word-spacing:9.072000px;}
.ws7d{word-spacing:9.126000px;}
.ws4f{word-spacing:9.180000px;}
.ws37{word-spacing:9.612000px;}
.ws4e{word-spacing:9.720000px;}
.ws2f{word-spacing:9.990000px;}
.ws56{word-spacing:10.314000px;}
.ws5a{word-spacing:10.476000px;}
.ws64{word-spacing:10.530000px;}
.ws45{word-spacing:10.746000px;}
.ws61{word-spacing:10.962000px;}
.ws7b{word-spacing:11.124000px;}
.ws7a{word-spacing:11.880000px;}
.ws5e{word-spacing:12.852000px;}
.ws2a{word-spacing:13.014000px;}
.ws57{word-spacing:13.176000px;}
.ws48{word-spacing:13.338000px;}
.ws2e{word-spacing:13.446000px;}
.ws46{word-spacing:13.608000px;}
.ws60{word-spacing:13.824000px;}
.ws3d{word-spacing:14.202000px;}
.ws74{word-spacing:14.256000px;}
.ws41{word-spacing:14.310000px;}
.ws5f{word-spacing:14.364000px;}
.ws63{word-spacing:14.688000px;}
.ws13{word-spacing:14.850000px;}
.ws75{word-spacing:16.200000px;}
.ws7c{word-spacing:17.010000px;}
.ws5d{word-spacing:17.172000px;}
.ws81{word-spacing:18.360000px;}
.ws10{word-spacing:19.116000px;}
.ws43{word-spacing:19.278000px;}
.ws2b{word-spacing:19.764000px;}
.ws6c{word-spacing:21.330000px;}
.ws3a{word-spacing:21.384000px;}
.wsd{word-spacing:22.356000px;}
.ws28{word-spacing:22.680000px;}
.ws70{word-spacing:23.868000px;}
.ws6e{word-spacing:24.084000px;}
.ws1c{word-spacing:25.164000px;}
.ws6f{word-spacing:27.108000px;}
.ws71{word-spacing:28.080000px;}
.ws3c{word-spacing:29.592000px;}
.ws6b{word-spacing:31.644000px;}
.ws77{word-spacing:31.914000px;}
.ws80{word-spacing:33.804000px;}
.ws24{word-spacing:39.096000px;}
.ws2d{word-spacing:51.030000px;}
.ws65{word-spacing:61.452000px;}
.ws0{word-spacing:117.254725px;}
.ws85{word-spacing:448.680000px;}
._28{margin-left:-3147.125400px;}
._22{margin-left:-75.110400px;}
._9{margin-left:-71.902875px;}
._15{margin-left:-64.293600px;}
._27{margin-left:-45.780975px;}
._1c{margin-left:-42.112230px;}
._25{margin-left:-40.246800px;}
._d{margin-left:-38.590860px;}
._24{margin-left:-36.446115px;}
._13{margin-left:-33.256800px;}
._1e{margin-left:-31.584000px;}
._21{margin-left:-30.270915px;}
._3{margin-left:-27.972000px;}
._12{margin-left:-26.311200px;}
._c{margin-left:-21.438000px;}
._26{margin-left:-17.132115px;}
._10{margin-left:-13.392000px;}
._1d{margin-left:-11.024400px;}
._e{margin-left:-8.439600px;}
._a{margin-left:-6.776070px;}
._b{margin-left:-5.454000px;}
._1{margin-left:-3.922800px;}
._4{margin-left:-2.486400px;}
._0{margin-left:-1.100400px;}
._2{width:1.041600px;}
._6{width:2.625315px;}
._7{width:3.850770px;}
._5{width:5.033700px;}
._8{width:6.414765px;}
._16{width:7.936800px;}
._18{width:11.464800px;}
._20{width:14.159400px;}
._23{width:15.216600px;}
._17{width:16.675200px;}
._14{width:18.072600px;}
._1b{width:21.125400px;}
._f{width:22.172400px;}
._1f{width:26.731200px;}
._1a{width:27.955800px;}
._19{width:28.996800px;}
._11{width:33.123600px;}
.fc5{color:rgb(39,91,155);}
.fc4{color:rgb(147,147,183);}
.fc3{color:rgb(0,92,99);}
.fc2{color:rgb(25,39,94);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:30.000000px;}
.fs6{font-size:48.000000px;}
.fsb{font-size:52.200000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:66.000000px;}
.fsc{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs5{font-size:84.766200px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:111.627600px;}
.fs4{font-size:169.532400px;}
.fs9{font-size:180.000000px;}
.fs2{font-size:255.150000px;}
.y0{bottom:0.000000px;}
.yc{bottom:47.220450px;}
.ycf{bottom:82.181400px;}
.y75{bottom:92.359500px;}
.ya3{bottom:92.363700px;}
.y42{bottom:92.404200px;}
.ybf{bottom:110.282700px;}
.y74{bottom:110.355000px;}
.ya2{bottom:110.359200px;}
.y41{bottom:110.399700px;}
.ybe{bottom:128.278200px;}
.y73{bottom:128.350500px;}
.ya1{bottom:128.354700px;}
.y40{bottom:128.395200px;}
.ybd{bottom:146.273700px;}
.ya0{bottom:146.350200px;}
.y3f{bottom:146.390700px;}
.y9f{bottom:164.345700px;}
.y72{bottom:164.355000px;}
.y3e{bottom:164.386200px;}
.ybc{bottom:182.278200px;}
.y9e{bottom:182.341200px;}
.y71{bottom:182.350500px;}
.y3d{bottom:182.381700px;}
.ybb{bottom:200.273700px;}
.y9d{bottom:200.336700px;}
.y70{bottom:200.346000px;}
.y3c{bottom:200.377200px;}
.yba{bottom:218.269200px;}
.y9c{bottom:218.332200px;}
.yb9{bottom:236.264700px;}
.y9b{bottom:236.327700px;}
.y6f{bottom:236.350500px;}
.y3b{bottom:236.381700px;}
.y3{bottom:253.320000px;}
.y6e{bottom:254.346000px;}
.y3a{bottom:254.377200px;}
.yb8{bottom:272.269200px;}
.y9a{bottom:272.332200px;}
.y6d{bottom:272.341500px;}
.y39{bottom:272.372700px;}
.yce{bottom:285.839550px;}
.y2{bottom:289.311000px;}
.yb7{bottom:290.264700px;}
.y99{bottom:290.327700px;}
.y6c{bottom:290.337000px;}
.y38{bottom:290.368200px;}
.ycd{bottom:294.839550px;}
.ycc{bottom:303.839550px;}
.yb6{bottom:308.260200px;}
.y6b{bottom:308.332500px;}
.y37{bottom:308.363700px;}
.yc6{bottom:311.544150px;}
.ycb{bottom:312.839550px;}
.y6a{bottom:326.328000px;}
.y98{bottom:326.332200px;}
.y36{bottom:326.359200px;}
.yc5{bottom:329.544150px;}
.yb5{bottom:344.264700px;}
.y69{bottom:344.323500px;}
.y97{bottom:344.327700px;}
.y35{bottom:344.354700px;}
.yc4{bottom:347.544150px;}
.yca{bottom:347.847450px;}
.yb4{bottom:362.260200px;}
.y68{bottom:362.319000px;}
.y96{bottom:362.323200px;}
.y34{bottom:362.350200px;}
.yc3{bottom:365.544150px;}
.yc9{bottom:365.847450px;}
.yb3{bottom:380.255700px;}
.y67{bottom:380.314500px;}
.y95{bottom:380.318700px;}
.y33{bottom:380.345700px;}
.yc2{bottom:383.544150px;}
.yc8{bottom:383.847450px;}
.y94{bottom:398.314200px;}
.yc1{bottom:401.544150px;}
.yc7{bottom:401.847450px;}
.yb2{bottom:416.260200px;}
.y93{bottom:416.309700px;}
.y66{bottom:416.319000px;}
.y32{bottom:416.350200px;}
.y9{bottom:425.143800px;}
.yb1{bottom:434.255700px;}
.y65{bottom:434.314500px;}
.y31{bottom:434.345700px;}
.yb0{bottom:452.251200px;}
.y92{bottom:452.314200px;}
.y30{bottom:452.341200px;}
.yaf{bottom:470.246700px;}
.y91{bottom:470.309700px;}
.y64{bottom:470.319000px;}
.y2f{bottom:470.336700px;}
.y63{bottom:488.314500px;}
.y2e{bottom:488.332200px;}
.y8{bottom:495.310050px;}
.yae{bottom:506.251200px;}
.y90{bottom:506.314200px;}
.yad{bottom:524.246700px;}
.y8f{bottom:524.309700px;}
.y62{bottom:524.319000px;}
.y2d{bottom:524.336700px;}
.yac{bottom:542.242200px;}
.y8e{bottom:542.305200px;}
.y61{bottom:542.314500px;}
.yab{bottom:560.237700px;}
.y8d{bottom:560.300700px;}
.y60{bottom:560.310000px;}
.y2c{bottom:560.341200px;}
.y7{bottom:565.476300px;}
.yaa{bottom:578.246700px;}
.y5f{bottom:578.305500px;}
.y2b{bottom:578.336700px;}
.yed{bottom:596.237550px;}
.y5e{bottom:596.301000px;}
.y8c{bottom:596.305200px;}
.y2a{bottom:596.332200px;}
.y10c{bottom:596.996850px;}
.y10b{bottom:613.492050px;}
.yec{bottom:614.237550px;}
.ya9{bottom:614.251200px;}
.y5d{bottom:614.296500px;}
.y8b{bottom:614.300700px;}
.yeb{bottom:632.237550px;}
.ya8{bottom:632.246700px;}
.y5c{bottom:632.292000px;}
.y29{bottom:632.336700px;}
.y6{bottom:635.642550px;}
.yea{bottom:650.237550px;}
.ya7{bottom:650.242200px;}
.y8a{bottom:650.305200px;}
.y28{bottom:650.332200px;}
.y109{bottom:653.842650px;}
.ye9{bottom:668.237550px;}
.ya6{bottom:668.237700px;}
.y5b{bottom:668.296500px;}
.y89{bottom:668.300700px;}
.y27{bottom:668.327700px;}
.y108{bottom:671.842650px;}
.ye8{bottom:686.237550px;}
.y5a{bottom:686.292000px;}
.y88{bottom:686.296200px;}
.y26{bottom:686.323200px;}
.y107{bottom:689.842650px;}
.ya5{bottom:696.607800px;}
.ye7{bottom:704.237550px;}
.y59{bottom:704.287500px;}
.y87{bottom:704.291700px;}
.y25{bottom:704.318700px;}
.y5{bottom:705.808800px;}
.y106{bottom:707.842650px;}
.ya4{bottom:718.206300px;}
.ye6{bottom:722.237550px;}
.y86{bottom:722.287200px;}
.y24{bottom:722.314200px;}
.y105{bottom:725.842650px;}
.ye5{bottom:740.237550px;}
.y85{bottom:740.282700px;}
.y58{bottom:740.292000px;}
.y23{bottom:740.309700px;}
.y104{bottom:743.842650px;}
.ye4{bottom:758.237550px;}
.y84{bottom:758.278200px;}
.y57{bottom:758.287500px;}
.y22{bottom:758.305200px;}
.y103{bottom:761.842650px;}
.y4{bottom:775.975050px;}
.ye3{bottom:776.237550px;}
.y56{bottom:776.283000px;}
.y102{bottom:779.842500px;}
.ye2{bottom:794.235750px;}
.y55{bottom:794.278500px;}
.y83{bottom:794.282700px;}
.y21{bottom:794.309700px;}
.y101{bottom:797.842500px;}
.y54{bottom:812.274000px;}
.y82{bottom:812.278200px;}
.y20{bottom:812.305200px;}
.y100{bottom:815.842500px;}
.ye1{bottom:824.237700px;}
.y53{bottom:830.269500px;}
.y1f{bottom:830.300700px;}
.yff{bottom:833.842500px;}
.ye0{bottom:840.737700px;}
.y81{bottom:848.282700px;}
.y1e{bottom:848.296200px;}
.yfe{bottom:851.842500px;}
.y1{bottom:857.237700px;}
.ydf{bottom:857.242500px;}
.y52{bottom:866.274000px;}
.y80{bottom:866.278200px;}
.y1d{bottom:866.291700px;}
.yfd{bottom:869.842500px;}
.yde{bottom:873.737700px;}
.y51{bottom:884.269500px;}
.y7f{bottom:884.273700px;}
.y1c{bottom:884.287200px;}
.yfc{bottom:887.842500px;}
.ydd{bottom:890.237700px;}
.y7e{bottom:902.269200px;}
.y1b{bottom:902.282700px;}
.yfb{bottom:905.842500px;}
.ydc{bottom:906.737700px;}
.y7d{bottom:920.264700px;}
.y50{bottom:920.274000px;}
.y1a{bottom:920.278200px;}
.ydb{bottom:923.248650px;}
.yfa{bottom:923.842500px;}
.y4f{bottom:938.269500px;}
.y19{bottom:938.273700px;}
.yb{bottom:938.375400px;}
.yf9{bottom:941.842500px;}
.yda{bottom:956.252100px;}
.y18{bottom:956.269200px;}
.yf8{bottom:959.842500px;}
.yd9{bottom:972.747300px;}
.y17{bottom:974.264700px;}
.y4e{bottom:974.274000px;}
.yf7{bottom:977.842500px;}
.ya{bottom:982.602600px;}
.yc0{bottom:985.409850px;}
.yd8{bottom:989.242500px;}
.y16{bottom:992.260200px;}
.y4d{bottom:992.269500px;}
.yf6{bottom:995.842500px;}
.yd7{bottom:1005.737700px;}
.y15{bottom:1010.255700px;}
.y4c{bottom:1010.265000px;}
.yf5{bottom:1013.842500px;}
.yd6{bottom:1022.242500px;}
.y7c{bottom:1028.251200px;}
.yf4{bottom:1031.842500px;}
.yd5{bottom:1038.737700px;}
.y4b{bottom:1042.921500px;}
.y7b{bottom:1046.246700px;}
.y14{bottom:1046.260200px;}
.yf3{bottom:1049.842500px;}
.yd4{bottom:1055.234250px;}
.y4a{bottom:1060.917000px;}
.y13{bottom:1064.255700px;}
.yf2{bottom:1067.842500px;}
.y49{bottom:1078.912500px;}
.y12{bottom:1082.251200px;}
.y7a{bottom:1082.264700px;}
.yf1{bottom:1085.842500px;}
.yd3{bottom:1088.237700px;}
.y48{bottom:1096.908000px;}
.y11{bottom:1100.246700px;}
.y79{bottom:1100.260200px;}
.yf0{bottom:1103.842500px;}
.yd2{bottom:1104.737700px;}
.y47{bottom:1114.903500px;}
.y10{bottom:1118.242200px;}
.y78{bottom:1118.255700px;}
.yd1{bottom:1121.237700px;}
.yef{bottom:1121.842500px;}
.y46{bottom:1132.899000px;}
.yf{bottom:1136.237700px;}
.y77{bottom:1136.251200px;}
.yd0{bottom:1137.737700px;}
.yee{bottom:1139.842500px;}
.y76{bottom:1154.246700px;}
.y45{bottom:1168.903500px;}
.y10a{bottom:1170.791550px;}
.ye{bottom:1172.242200px;}
.y44{bottom:1186.899000px;}
.yd{bottom:1190.237700px;}
.y43{bottom:1204.894500px;}
.h11{height:26.250000px;}
.h7{height:36.492188px;}
.h15{height:39.685254px;}
.h12{height:40.416000px;}
.ha{height:41.053711px;}
.h10{height:41.929688px;}
.hf{height:42.000000px;}
.hd{height:43.321289px;}
.h13{height:45.598535px;}
.h14{height:45.612335px;}
.hc{height:47.170898px;}
.h9{height:47.250000px;}
.h8{height:47.513672px;}
.h16{height:54.738281px;}
.hb{height:58.072266px;}
.h2{height:63.861328px;}
.h6{height:74.584322px;}
.h3{height:82.107422px;}
.h5{height:98.219207px;}
.he{height:136.845703px;}
.h4{height:200.803050px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:42.892350px;}
.xd{left:47.387850px;}
.x1e{left:49.960650px;}
.x1f{left:54.212550px;}
.xf{left:64.168350px;}
.x16{left:68.085600px;}
.xb{left:72.153300px;}
.x17{left:84.852600px;}
.x4{left:94.574850px;}
.xa{left:100.879950px;}
.x21{left:119.983050px;}
.x8{left:126.723600px;}
.x3{left:230.739450px;}
.x9{left:239.117175px;}
.x5{left:262.591125px;}
.x6{left:271.393800px;}
.x1b{left:305.946600px;}
.x1d{left:321.023550px;}
.x2{left:398.301450px;}
.x7{left:407.069813px;}
.x22{left:435.826650px;}
.x20{left:440.078700px;}
.xc{left:443.046450px;}
.x10{left:445.205550px;}
.x12{left:449.701050px;}
.x13{left:453.676500px;}
.x1a{left:465.026100px;}
.x11{left:466.468050px;}
.x14{left:467.527200px;}
.x18{left:476.752050px;}
.x15{left:488.789700px;}
.x19{left:497.267700px;}
.x1c{left:618.944850px;}
.x1{left:620.964600px;}
@media print{
.v1{vertical-align:-85.399467pt;}
.v3{vertical-align:-10.672000pt;}
.v2{vertical-align:-5.328000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-4.082400pt;}
.ls2{letter-spacing:-3.855600pt;}
.ls3{letter-spacing:-3.402000pt;}
.lsa{letter-spacing:-1.200000pt;}
.lsd{letter-spacing:-0.720000pt;}
.ls22{letter-spacing:-0.464000pt;}
.ls21{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.144000pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.144000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.240000pt;}
.ls1c{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.336000pt;}
.ls0{letter-spacing:0.373333pt;}
.ls1f{letter-spacing:0.432000pt;}
.ls9{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.624000pt;}
.ls1e{letter-spacing:0.672000pt;}
.ls14{letter-spacing:0.720000pt;}
.ls1d{letter-spacing:0.816000pt;}
.ls7{letter-spacing:0.864000pt;}
.ls17{letter-spacing:0.960000pt;}
.ls15{letter-spacing:1.728000pt;}
.ls16{letter-spacing:2.016000pt;}
.ls8{letter-spacing:2.352000pt;}
.ls1b{letter-spacing:2.544000pt;}
.ls11{letter-spacing:2.592000pt;}
.ls1a{letter-spacing:2.688000pt;}
.ls6{letter-spacing:2.736000pt;}
.ls12{letter-spacing:2.880000pt;}
.lse{letter-spacing:3.072000pt;}
.ws4d{word-spacing:-39.840000pt;}
.wsa{word-spacing:-14.832000pt;}
.ws6{word-spacing:-14.688000pt;}
.ws7{word-spacing:-14.304000pt;}
.ws4a{word-spacing:-12.720000pt;}
.ws4b{word-spacing:-12.480000pt;}
.wsb{word-spacing:-12.384000pt;}
.ws9{word-spacing:-11.952000pt;}
.ws49{word-spacing:-11.856000pt;}
.ws4c{word-spacing:-11.712000pt;}
.ws8{word-spacing:-11.664000pt;}
.ws87{word-spacing:-11.553600pt;}
.ws86{word-spacing:-11.507200pt;}
.ws83{word-spacing:-10.624000pt;}
.ws82{word-spacing:-10.581333pt;}
.ws84{word-spacing:-6.480000pt;}
.ws20{word-spacing:-5.424000pt;}
.ws1d{word-spacing:-3.840000pt;}
.ws38{word-spacing:-3.168000pt;}
.ws35{word-spacing:-2.400000pt;}
.ws3e{word-spacing:-2.256000pt;}
.ws34{word-spacing:-2.208000pt;}
.ws47{word-spacing:-1.920000pt;}
.ws22{word-spacing:-1.872000pt;}
.ws42{word-spacing:-1.824000pt;}
.ws53{word-spacing:-1.776000pt;}
.ws3f{word-spacing:-1.728000pt;}
.ws6a{word-spacing:-1.680000pt;}
.ws52{word-spacing:-1.584000pt;}
.ws21{word-spacing:-1.488000pt;}
.ws89{word-spacing:-0.881600pt;}
.ws73{word-spacing:-0.864000pt;}
.ws76{word-spacing:-0.816000pt;}
.ws79{word-spacing:-0.672000pt;}
.ws18{word-spacing:-0.480000pt;}
.ws1{word-spacing:-0.373333pt;}
.ws3b{word-spacing:-0.336000pt;}
.ws62{word-spacing:-0.192000pt;}
.ws69{word-spacing:-0.144000pt;}
.ws17{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws40{word-spacing:0.048000pt;}
.ws16{word-spacing:0.144000pt;}
.ws32{word-spacing:0.336000pt;}
.ws88{word-spacing:0.464000pt;}
.ws54{word-spacing:0.720000pt;}
.ws55{word-spacing:1.296000pt;}
.ws26{word-spacing:1.392000pt;}
.ws7e{word-spacing:1.536000pt;}
.ws39{word-spacing:1.920000pt;}
.ws19{word-spacing:2.064000pt;}
.ws11{word-spacing:2.112000pt;}
.ws5b{word-spacing:2.160000pt;}
.ws1e{word-spacing:2.928000pt;}
.ws59{word-spacing:2.976000pt;}
.ws27{word-spacing:3.024000pt;}
.ws4{word-spacing:3.402000pt;}
.ws1a{word-spacing:3.456000pt;}
.ws72{word-spacing:3.552000pt;}
.ws3{word-spacing:3.855600pt;}
.ws66{word-spacing:3.888000pt;}
.ws78{word-spacing:4.032000pt;}
.wse{word-spacing:4.080000pt;}
.ws5{word-spacing:4.082400pt;}
.ws15{word-spacing:4.128000pt;}
.ws58{word-spacing:4.176000pt;}
.ws31{word-spacing:4.272000pt;}
.ws7f{word-spacing:4.464000pt;}
.wsc{word-spacing:4.944000pt;}
.ws5c{word-spacing:5.328000pt;}
.ws1f{word-spacing:5.760000pt;}
.ws51{word-spacing:5.808000pt;}
.ws36{word-spacing:5.856000pt;}
.ws2c{word-spacing:5.952000pt;}
.ws67{word-spacing:6.144000pt;}
.ws33{word-spacing:6.240000pt;}
.ws29{word-spacing:6.432000pt;}
.ws68{word-spacing:6.528000pt;}
.wsf{word-spacing:6.672000pt;}
.ws23{word-spacing:6.720000pt;}
.ws12{word-spacing:7.008000pt;}
.ws30{word-spacing:7.104000pt;}
.ws25{word-spacing:7.344000pt;}
.ws50{word-spacing:7.584000pt;}
.ws1b{word-spacing:7.680000pt;}
.ws14{word-spacing:7.872000pt;}
.ws6d{word-spacing:8.016000pt;}
.ws44{word-spacing:8.064000pt;}
.ws7d{word-spacing:8.112000pt;}
.ws4f{word-spacing:8.160000pt;}
.ws37{word-spacing:8.544000pt;}
.ws4e{word-spacing:8.640000pt;}
.ws2f{word-spacing:8.880000pt;}
.ws56{word-spacing:9.168000pt;}
.ws5a{word-spacing:9.312000pt;}
.ws64{word-spacing:9.360000pt;}
.ws45{word-spacing:9.552000pt;}
.ws61{word-spacing:9.744000pt;}
.ws7b{word-spacing:9.888000pt;}
.ws7a{word-spacing:10.560000pt;}
.ws5e{word-spacing:11.424000pt;}
.ws2a{word-spacing:11.568000pt;}
.ws57{word-spacing:11.712000pt;}
.ws48{word-spacing:11.856000pt;}
.ws2e{word-spacing:11.952000pt;}
.ws46{word-spacing:12.096000pt;}
.ws60{word-spacing:12.288000pt;}
.ws3d{word-spacing:12.624000pt;}
.ws74{word-spacing:12.672000pt;}
.ws41{word-spacing:12.720000pt;}
.ws5f{word-spacing:12.768000pt;}
.ws63{word-spacing:13.056000pt;}
.ws13{word-spacing:13.200000pt;}
.ws75{word-spacing:14.400000pt;}
.ws7c{word-spacing:15.120000pt;}
.ws5d{word-spacing:15.264000pt;}
.ws81{word-spacing:16.320000pt;}
.ws10{word-spacing:16.992000pt;}
.ws43{word-spacing:17.136000pt;}
.ws2b{word-spacing:17.568000pt;}
.ws6c{word-spacing:18.960000pt;}
.ws3a{word-spacing:19.008000pt;}
.wsd{word-spacing:19.872000pt;}
.ws28{word-spacing:20.160000pt;}
.ws70{word-spacing:21.216000pt;}
.ws6e{word-spacing:21.408000pt;}
.ws1c{word-spacing:22.368000pt;}
.ws6f{word-spacing:24.096000pt;}
.ws71{word-spacing:24.960000pt;}
.ws3c{word-spacing:26.304000pt;}
.ws6b{word-spacing:28.128000pt;}
.ws77{word-spacing:28.368000pt;}
.ws80{word-spacing:30.048000pt;}
.ws24{word-spacing:34.752000pt;}
.ws2d{word-spacing:45.360000pt;}
.ws65{word-spacing:54.624000pt;}
.ws0{word-spacing:104.226422pt;}
.ws85{word-spacing:398.826667pt;}
._28{margin-left:-2797.444800pt;}
._22{margin-left:-66.764800pt;}
._9{margin-left:-63.913667pt;}
._15{margin-left:-57.149867pt;}
._27{margin-left:-40.694200pt;}
._1c{margin-left:-37.433093pt;}
._25{margin-left:-35.774933pt;}
._d{margin-left:-34.302987pt;}
._24{margin-left:-32.396547pt;}
._13{margin-left:-29.561600pt;}
._1e{margin-left:-28.074667pt;}
._21{margin-left:-26.907480pt;}
._3{margin-left:-24.864000pt;}
._12{margin-left:-23.387733pt;}
._c{margin-left:-19.056000pt;}
._26{margin-left:-15.228547pt;}
._10{margin-left:-11.904000pt;}
._1d{margin-left:-9.799467pt;}
._e{margin-left:-7.501867pt;}
._a{margin-left:-6.023173pt;}
._b{margin-left:-4.848000pt;}
._1{margin-left:-3.486933pt;}
._4{margin-left:-2.210133pt;}
._0{margin-left:-0.978133pt;}
._2{width:0.925867pt;}
._6{width:2.333613pt;}
._7{width:3.422907pt;}
._5{width:4.474400pt;}
._8{width:5.702013pt;}
._16{width:7.054933pt;}
._18{width:10.190933pt;}
._20{width:12.586133pt;}
._23{width:13.525867pt;}
._17{width:14.822400pt;}
._14{width:16.064533pt;}
._1b{width:18.778133pt;}
._f{width:19.708800pt;}
._1f{width:23.761067pt;}
._1a{width:24.849600pt;}
._19{width:25.774933pt;}
._11{width:29.443200pt;}
.fsa{font-size:26.666667pt;}
.fs6{font-size:42.666667pt;}
.fsb{font-size:46.400000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:58.666667pt;}
.fsc{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs5{font-size:75.347733pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:99.224533pt;}
.fs4{font-size:150.695467pt;}
.fs9{font-size:160.000000pt;}
.fs2{font-size:226.800000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:41.973733pt;}
.ycf{bottom:73.050133pt;}
.y75{bottom:82.097333pt;}
.ya3{bottom:82.101067pt;}
.y42{bottom:82.137067pt;}
.ybf{bottom:98.029067pt;}
.y74{bottom:98.093333pt;}
.ya2{bottom:98.097067pt;}
.y41{bottom:98.133067pt;}
.ybe{bottom:114.025067pt;}
.y73{bottom:114.089333pt;}
.ya1{bottom:114.093067pt;}
.y40{bottom:114.129067pt;}
.ybd{bottom:130.021067pt;}
.ya0{bottom:130.089067pt;}
.y3f{bottom:130.125067pt;}
.y9f{bottom:146.085067pt;}
.y72{bottom:146.093333pt;}
.y3e{bottom:146.121067pt;}
.ybc{bottom:162.025067pt;}
.y9e{bottom:162.081067pt;}
.y71{bottom:162.089333pt;}
.y3d{bottom:162.117067pt;}
.ybb{bottom:178.021067pt;}
.y9d{bottom:178.077067pt;}
.y70{bottom:178.085333pt;}
.y3c{bottom:178.113067pt;}
.yba{bottom:194.017067pt;}
.y9c{bottom:194.073067pt;}
.yb9{bottom:210.013067pt;}
.y9b{bottom:210.069067pt;}
.y6f{bottom:210.089333pt;}
.y3b{bottom:210.117067pt;}
.y3{bottom:225.173333pt;}
.y6e{bottom:226.085333pt;}
.y3a{bottom:226.113067pt;}
.yb8{bottom:242.017067pt;}
.y9a{bottom:242.073067pt;}
.y6d{bottom:242.081333pt;}
.y39{bottom:242.109067pt;}
.yce{bottom:254.079600pt;}
.y2{bottom:257.165333pt;}
.yb7{bottom:258.013067pt;}
.y99{bottom:258.069067pt;}
.y6c{bottom:258.077333pt;}
.y38{bottom:258.105067pt;}
.ycd{bottom:262.079600pt;}
.ycc{bottom:270.079600pt;}
.yb6{bottom:274.009067pt;}
.y6b{bottom:274.073333pt;}
.y37{bottom:274.101067pt;}
.yc6{bottom:276.928133pt;}
.ycb{bottom:278.079600pt;}
.y6a{bottom:290.069333pt;}
.y98{bottom:290.073067pt;}
.y36{bottom:290.097067pt;}
.yc5{bottom:292.928133pt;}
.yb5{bottom:306.013067pt;}
.y69{bottom:306.065333pt;}
.y97{bottom:306.069067pt;}
.y35{bottom:306.093067pt;}
.yc4{bottom:308.928133pt;}
.yca{bottom:309.197733pt;}
.yb4{bottom:322.009067pt;}
.y68{bottom:322.061333pt;}
.y96{bottom:322.065067pt;}
.y34{bottom:322.089067pt;}
.yc3{bottom:324.928133pt;}
.yc9{bottom:325.197733pt;}
.yb3{bottom:338.005067pt;}
.y67{bottom:338.057333pt;}
.y95{bottom:338.061067pt;}
.y33{bottom:338.085067pt;}
.yc2{bottom:340.928133pt;}
.yc8{bottom:341.197733pt;}
.y94{bottom:354.057067pt;}
.yc1{bottom:356.928133pt;}
.yc7{bottom:357.197733pt;}
.yb2{bottom:370.009067pt;}
.y93{bottom:370.053067pt;}
.y66{bottom:370.061333pt;}
.y32{bottom:370.089067pt;}
.y9{bottom:377.905600pt;}
.yb1{bottom:386.005067pt;}
.y65{bottom:386.057333pt;}
.y31{bottom:386.085067pt;}
.yb0{bottom:402.001067pt;}
.y92{bottom:402.057067pt;}
.y30{bottom:402.081067pt;}
.yaf{bottom:417.997067pt;}
.y91{bottom:418.053067pt;}
.y64{bottom:418.061333pt;}
.y2f{bottom:418.077067pt;}
.y63{bottom:434.057333pt;}
.y2e{bottom:434.073067pt;}
.y8{bottom:440.275600pt;}
.yae{bottom:450.001067pt;}
.y90{bottom:450.057067pt;}
.yad{bottom:465.997067pt;}
.y8f{bottom:466.053067pt;}
.y62{bottom:466.061333pt;}
.y2d{bottom:466.077067pt;}
.yac{bottom:481.993067pt;}
.y8e{bottom:482.049067pt;}
.y61{bottom:482.057333pt;}
.yab{bottom:497.989067pt;}
.y8d{bottom:498.045067pt;}
.y60{bottom:498.053333pt;}
.y2c{bottom:498.081067pt;}
.y7{bottom:502.645600pt;}
.yaa{bottom:513.997067pt;}
.y5f{bottom:514.049333pt;}
.y2b{bottom:514.077067pt;}
.yed{bottom:529.988933pt;}
.y5e{bottom:530.045333pt;}
.y8c{bottom:530.049067pt;}
.y2a{bottom:530.073067pt;}
.y10c{bottom:530.663867pt;}
.y10b{bottom:545.326267pt;}
.yec{bottom:545.988933pt;}
.ya9{bottom:546.001067pt;}
.y5d{bottom:546.041333pt;}
.y8b{bottom:546.045067pt;}
.yeb{bottom:561.988933pt;}
.ya8{bottom:561.997067pt;}
.y5c{bottom:562.037333pt;}
.y29{bottom:562.077067pt;}
.y6{bottom:565.015600pt;}
.yea{bottom:577.988933pt;}
.ya7{bottom:577.993067pt;}
.y8a{bottom:578.049067pt;}
.y28{bottom:578.073067pt;}
.y109{bottom:581.193467pt;}
.ye9{bottom:593.988933pt;}
.ya6{bottom:593.989067pt;}
.y5b{bottom:594.041333pt;}
.y89{bottom:594.045067pt;}
.y27{bottom:594.069067pt;}
.y108{bottom:597.193467pt;}
.ye8{bottom:609.988933pt;}
.y5a{bottom:610.037333pt;}
.y88{bottom:610.041067pt;}
.y26{bottom:610.065067pt;}
.y107{bottom:613.193467pt;}
.ya5{bottom:619.206933pt;}
.ye7{bottom:625.988933pt;}
.y59{bottom:626.033333pt;}
.y87{bottom:626.037067pt;}
.y25{bottom:626.061067pt;}
.y5{bottom:627.385600pt;}
.y106{bottom:629.193467pt;}
.ya4{bottom:638.405600pt;}
.ye6{bottom:641.988933pt;}
.y86{bottom:642.033067pt;}
.y24{bottom:642.057067pt;}
.y105{bottom:645.193467pt;}
.ye5{bottom:657.988933pt;}
.y85{bottom:658.029067pt;}
.y58{bottom:658.037333pt;}
.y23{bottom:658.053067pt;}
.y104{bottom:661.193467pt;}
.ye4{bottom:673.988933pt;}
.y84{bottom:674.025067pt;}
.y57{bottom:674.033333pt;}
.y22{bottom:674.049067pt;}
.y103{bottom:677.193467pt;}
.y4{bottom:689.755600pt;}
.ye3{bottom:689.988933pt;}
.y56{bottom:690.029333pt;}
.y102{bottom:693.193333pt;}
.ye2{bottom:705.987333pt;}
.y55{bottom:706.025333pt;}
.y83{bottom:706.029067pt;}
.y21{bottom:706.053067pt;}
.y101{bottom:709.193333pt;}
.y54{bottom:722.021333pt;}
.y82{bottom:722.025067pt;}
.y20{bottom:722.049067pt;}
.y100{bottom:725.193333pt;}
.ye1{bottom:732.655733pt;}
.y53{bottom:738.017333pt;}
.y1f{bottom:738.045067pt;}
.yff{bottom:741.193333pt;}
.ye0{bottom:747.322400pt;}
.y81{bottom:754.029067pt;}
.y1e{bottom:754.041067pt;}
.yfe{bottom:757.193333pt;}
.y1{bottom:761.989067pt;}
.ydf{bottom:761.993333pt;}
.y52{bottom:770.021333pt;}
.y80{bottom:770.025067pt;}
.y1d{bottom:770.037067pt;}
.yfd{bottom:773.193333pt;}
.yde{bottom:776.655733pt;}
.y51{bottom:786.017333pt;}
.y7f{bottom:786.021067pt;}
.y1c{bottom:786.033067pt;}
.yfc{bottom:789.193333pt;}
.ydd{bottom:791.322400pt;}
.y7e{bottom:802.017067pt;}
.y1b{bottom:802.029067pt;}
.yfb{bottom:805.193333pt;}
.ydc{bottom:805.989067pt;}
.y7d{bottom:818.013067pt;}
.y50{bottom:818.021333pt;}
.y1a{bottom:818.025067pt;}
.ydb{bottom:820.665467pt;}
.yfa{bottom:821.193333pt;}
.y4f{bottom:834.017333pt;}
.y19{bottom:834.021067pt;}
.yb{bottom:834.111467pt;}
.yf9{bottom:837.193333pt;}
.yda{bottom:850.001867pt;}
.y18{bottom:850.017067pt;}
.yf8{bottom:853.193333pt;}
.yd9{bottom:864.664267pt;}
.y17{bottom:866.013067pt;}
.y4e{bottom:866.021333pt;}
.yf7{bottom:869.193333pt;}
.ya{bottom:873.424533pt;}
.yc0{bottom:875.919867pt;}
.yd8{bottom:879.326667pt;}
.y16{bottom:882.009067pt;}
.y4d{bottom:882.017333pt;}
.yf6{bottom:885.193333pt;}
.yd7{bottom:893.989067pt;}
.y15{bottom:898.005067pt;}
.y4c{bottom:898.013333pt;}
.yf5{bottom:901.193333pt;}
.yd6{bottom:908.660000pt;}
.y7c{bottom:914.001067pt;}
.yf4{bottom:917.193333pt;}
.yd5{bottom:923.322400pt;}
.y4b{bottom:927.041333pt;}
.y7b{bottom:929.997067pt;}
.y14{bottom:930.009067pt;}
.yf3{bottom:933.193333pt;}
.yd4{bottom:937.986000pt;}
.y4a{bottom:943.037333pt;}
.y13{bottom:946.005067pt;}
.yf2{bottom:949.193333pt;}
.y49{bottom:959.033333pt;}
.y12{bottom:962.001067pt;}
.y7a{bottom:962.013067pt;}
.yf1{bottom:965.193333pt;}
.yd3{bottom:967.322400pt;}
.y48{bottom:975.029333pt;}
.y11{bottom:977.997067pt;}
.y79{bottom:978.009067pt;}
.yf0{bottom:981.193333pt;}
.yd2{bottom:981.989067pt;}
.y47{bottom:991.025333pt;}
.y10{bottom:993.993067pt;}
.y78{bottom:994.005067pt;}
.yd1{bottom:996.655733pt;}
.yef{bottom:997.193333pt;}
.y46{bottom:1007.021333pt;}
.yf{bottom:1009.989067pt;}
.y77{bottom:1010.001067pt;}
.yd0{bottom:1011.322400pt;}
.yee{bottom:1013.193333pt;}
.y76{bottom:1025.997067pt;}
.y45{bottom:1039.025333pt;}
.y10a{bottom:1040.703600pt;}
.ye{bottom:1041.993067pt;}
.y44{bottom:1055.021333pt;}
.yd{bottom:1057.989067pt;}
.y43{bottom:1071.017333pt;}
.h11{height:23.333333pt;}
.h7{height:32.437500pt;}
.h15{height:35.275781pt;}
.h12{height:35.925333pt;}
.ha{height:36.492188pt;}
.h10{height:37.270833pt;}
.hf{height:37.333333pt;}
.hd{height:38.507812pt;}
.h13{height:40.532031pt;}
.h14{height:40.544298pt;}
.hc{height:41.929688pt;}
.h9{height:42.000000pt;}
.h8{height:42.234375pt;}
.h16{height:48.656250pt;}
.hb{height:51.619792pt;}
.h2{height:56.765625pt;}
.h6{height:66.297176pt;}
.h3{height:72.984375pt;}
.h5{height:87.305961pt;}
.he{height:121.640625pt;}
.h4{height:178.491600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:38.126533pt;}
.xd{left:42.122533pt;}
.x1e{left:44.409467pt;}
.x1f{left:48.188933pt;}
.xf{left:57.038533pt;}
.x16{left:60.520533pt;}
.xb{left:64.136267pt;}
.x17{left:75.424533pt;}
.x4{left:84.066533pt;}
.xa{left:89.671067pt;}
.x21{left:106.651600pt;}
.x8{left:112.643200pt;}
.x3{left:205.101733pt;}
.x9{left:212.548600pt;}
.x5{left:233.414333pt;}
.x6{left:241.238933pt;}
.x1b{left:271.952533pt;}
.x1d{left:285.354267pt;}
.x2{left:354.045733pt;}
.x7{left:361.839833pt;}
.x22{left:387.401467pt;}
.x20{left:391.181067pt;}
.xc{left:393.819067pt;}
.x10{left:395.738267pt;}
.x12{left:399.734267pt;}
.x13{left:403.268000pt;}
.x1a{left:413.356533pt;}
.x11{left:414.638267pt;}
.x14{left:415.579733pt;}
.x18{left:423.779600pt;}
.x15{left:434.479733pt;}
.x19{left:442.015733pt;}
.x1c{left:550.173200pt;}
.x1{left:551.968533pt;}
}




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