
    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_ab757661f6eba0889c97e181.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c6de3a2b85e9afd8fee829e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.963379;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_d3ab547cf534632cbe0c77c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.041992;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_95b71142718b7a688414ad07.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.032715;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_f46a3d3d163063d439f4b0d2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c349310f62b232a1172cc5c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.146973;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_17282c25e1f8c0c450956681.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.026855;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_2ac9f202c595d7e6365f9364.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_db4018aa628318f4c24c2ce8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.953125;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_1c0ac63f31dbcac784ef8258.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976111;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_a4cf1e5bf544b4c3896c374d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.770020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,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);}
.m3{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);}
.v5{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.984000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:30.000000px;}
.v4{vertical-align:45.984000px;}
.lse{letter-spacing:-1.200000px;}
.ls8{letter-spacing:-0.960000px;}
.ls3{letter-spacing:-0.864000px;}
.lsb{letter-spacing:-0.780000px;}
.ls7{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.378000px;}
.lsc{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.270000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.012168px;}
.ls4{letter-spacing:0.017400px;}
.ls0{letter-spacing:0.025200px;}
.lsf{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.600000px;}
.lsa{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.840000px;}
.ls9{letter-spacing:0.864000px;}
.ls13{letter-spacing:1.890000px;}
.ls5{letter-spacing:42.466824px;}
.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;}
}
.ws0{word-spacing:-24.786000px;}
.ws6{word-spacing:-17.928000px;}
.ws74{word-spacing:-16.434000px;}
.ws77{word-spacing:-15.282000px;}
.ws61{word-spacing:-15.000000px;}
.ws5{word-spacing:-14.940000px;}
.ws1c{word-spacing:-14.700000px;}
.ws76{word-spacing:-13.824000px;}
.ws4{word-spacing:-13.446000px;}
.ws75{word-spacing:-13.392000px;}
.ws81{word-spacing:-13.122000px;}
.ws78{word-spacing:-13.014000px;}
.ws3b{word-spacing:-12.624000px;}
.ws7{word-spacing:-12.366000px;}
.ws8{word-spacing:-12.150000px;}
.ws39{word-spacing:-10.992000px;}
.ws3a{word-spacing:-10.944000px;}
.ws3{word-spacing:-10.896000px;}
.ws1b{word-spacing:-10.800000px;}
.ws9{word-spacing:-9.892800px;}
.wsa{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.618000px;}
.ws1{word-spacing:-9.542544px;}
.ws4f{word-spacing:-3.840000px;}
.ws5a{word-spacing:-3.480000px;}
.ws5f{word-spacing:-3.300000px;}
.ws47{word-spacing:-3.180000px;}
.ws73{word-spacing:-3.120000px;}
.ws2c{word-spacing:-2.700000px;}
.ws2d{word-spacing:-2.640000px;}
.ws4b{word-spacing:-2.520000px;}
.ws5d{word-spacing:-2.460000px;}
.ws5c{word-spacing:-2.220000px;}
.ws58{word-spacing:-2.160000px;}
.ws82{word-spacing:-2.052000px;}
.ws14{word-spacing:-1.860000px;}
.ws86{word-spacing:-1.836000px;}
.ws2b{word-spacing:-1.680000px;}
.ws24{word-spacing:-1.380000px;}
.ws49{word-spacing:-1.260000px;}
.ws1f{word-spacing:-1.200000px;}
.ws4a{word-spacing:-1.080000px;}
.ws44{word-spacing:-1.020000px;}
.ws34{word-spacing:-0.900000px;}
.ws41{word-spacing:-0.864000px;}
.ws72{word-spacing:-0.840000px;}
.ws10{word-spacing:-0.810000px;}
.ws22{word-spacing:-0.720000px;}
.ws55{word-spacing:-0.660000px;}
.ws60{word-spacing:-0.600000px;}
.ws96{word-spacing:-0.540000px;}
.wsf{word-spacing:-0.486000px;}
.ws7b{word-spacing:-0.432000px;}
.ws65{word-spacing:-0.300000px;}
.ws19{word-spacing:-0.259200px;}
.ws2e{word-spacing:-0.240000px;}
.ws3d{word-spacing:-0.060000px;}
.ws88{word-spacing:-0.054000px;}
.wsb{word-spacing:0.000000px;}
.ws68{word-spacing:0.240000px;}
.ws83{word-spacing:0.270000px;}
.ws4d{word-spacing:0.300000px;}
.ws80{word-spacing:0.378000px;}
.ws31{word-spacing:0.540000px;}
.ws79{word-spacing:0.594000px;}
.ws3c{word-spacing:0.720000px;}
.ws1a{word-spacing:0.864000px;}
.ws84{word-spacing:0.918000px;}
.ws40{word-spacing:0.960000px;}
.ws45{word-spacing:1.020000px;}
.ws17{word-spacing:1.200000px;}
.ws4e{word-spacing:1.440000px;}
.ws63{word-spacing:1.560000px;}
.ws3f{word-spacing:1.620000px;}
.ws7c{word-spacing:1.674000px;}
.ws1d{word-spacing:1.740000px;}
.ws48{word-spacing:1.800000px;}
.ws7e{word-spacing:1.836000px;}
.ws27{word-spacing:1.860000px;}
.ws25{word-spacing:2.160000px;}
.ws50{word-spacing:2.340000px;}
.ws1e{word-spacing:2.400000px;}
.ws54{word-spacing:2.580000px;}
.ws90{word-spacing:2.592000px;}
.ws51{word-spacing:2.640000px;}
.ws8c{word-spacing:2.646000px;}
.ws52{word-spacing:2.700000px;}
.ws29{word-spacing:2.760000px;}
.ws23{word-spacing:2.880000px;}
.ws53{word-spacing:3.000000px;}
.ws8b{word-spacing:3.078000px;}
.ws64{word-spacing:3.120000px;}
.ws11{word-spacing:3.132000px;}
.ws2f{word-spacing:3.180000px;}
.ws6c{word-spacing:3.240000px;}
.ws6b{word-spacing:3.300000px;}
.ws15{word-spacing:3.540000px;}
.ws67{word-spacing:3.600000px;}
.ws20{word-spacing:4.020000px;}
.ws46{word-spacing:4.320000px;}
.ws18{word-spacing:4.380000px;}
.ws93{word-spacing:4.536000px;}
.ws91{word-spacing:4.698000px;}
.ws7a{word-spacing:4.914000px;}
.ws12{word-spacing:5.040000px;}
.ws26{word-spacing:5.160000px;}
.ws6e{word-spacing:5.340000px;}
.ws3e{word-spacing:5.400000px;}
.ws5e{word-spacing:5.460000px;}
.ws6d{word-spacing:5.520000px;}
.ws87{word-spacing:5.886000px;}
.ws62{word-spacing:6.000000px;}
.wse{word-spacing:6.426000px;}
.ws21{word-spacing:6.480000px;}
.ws32{word-spacing:6.600000px;}
.ws42{word-spacing:6.660000px;}
.ws7d{word-spacing:6.804000px;}
.ws43{word-spacing:6.840000px;}
.ws56{word-spacing:7.200000px;}
.ws5b{word-spacing:7.320000px;}
.ws13{word-spacing:7.380000px;}
.ws6f{word-spacing:7.440000px;}
.ws16{word-spacing:7.560000px;}
.ws92{word-spacing:7.614000px;}
.ws8f{word-spacing:7.884000px;}
.ws66{word-spacing:7.980000px;}
.ws59{word-spacing:8.460000px;}
.ws57{word-spacing:8.520000px;}
.ws70{word-spacing:8.580000px;}
.wsc{word-spacing:8.640000px;}
.wsd{word-spacing:8.748000px;}
.ws4c{word-spacing:8.820000px;}
.ws30{word-spacing:9.120000px;}
.ws28{word-spacing:9.180000px;}
.ws2a{word-spacing:9.480000px;}
.ws69{word-spacing:9.540000px;}
.ws85{word-spacing:9.936000px;}
.ws8a{word-spacing:10.044000px;}
.ws95{word-spacing:10.368000px;}
.ws6a{word-spacing:10.380000px;}
.ws97{word-spacing:10.854000px;}
.ws8d{word-spacing:11.934000px;}
.ws71{word-spacing:12.420000px;}
.ws33{word-spacing:13.680000px;}
.ws7f{word-spacing:17.388000px;}
.ws94{word-spacing:18.198000px;}
.ws89{word-spacing:18.630000px;}
.ws8e{word-spacing:22.626000px;}
.ws38{word-spacing:77.088000px;}
.ws35{word-spacing:114.811200px;}
.ws36{word-spacing:171.356400px;}
.ws37{word-spacing:175.792800px;}
._a{margin-left:-11.084400px;}
._1e{margin-left:-9.665400px;}
._1a{margin-left:-8.052000px;}
._9{margin-left:-6.793200px;}
._7{margin-left:-5.520600px;}
._4{margin-left:-3.882600px;}
._1{margin-left:-2.223600px;}
._0{margin-left:-1.193400px;}
._2{width:1.009800px;}
._6{width:2.014200px;}
._b{width:3.628800px;}
._5{width:5.032800px;}
._c{width:6.361200px;}
._10{width:7.549200px;}
._8{width:8.580000px;}
._d{width:10.038000px;}
._e{width:11.085600px;}
._f{width:13.122000px;}
._1b{width:16.224000px;}
._11{width:19.218000px;}
._12{width:20.271600px;}
._3{width:36.369600px;}
._1d{width:48.582600px;}
._15{width:53.109000px;}
._19{width:54.731400px;}
._16{width:71.962200px;}
._1c{width:78.120600px;}
._14{width:80.879400px;}
._18{width:110.937600px;}
._17{width:216.196800px;}
._13{width:501.580200px;}
.fc4{color:rgb(75,119,196);}
.fc3{color:rgb(54,41,77);}
.fc1{color:rgb(65,102,168);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.984000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.036150px;}
.y6b{bottom:113.078700px;}
.ycc{bottom:113.078850px;}
.y39{bottom:117.197850px;}
.y27{bottom:117.212700px;}
.y38{bottom:131.597850px;}
.y6a{bottom:134.078700px;}
.ycb{bottom:134.078850px;}
.y26{bottom:138.212700px;}
.yeb{bottom:139.937100px;}
.y37{bottom:145.997850px;}
.y69{bottom:155.078700px;}
.yca{bottom:155.078850px;}
.y25{bottom:159.212700px;}
.y36{bottom:160.397850px;}
.yea{bottom:169.441050px;}
.y68{bottom:176.078700px;}
.yc9{bottom:176.078850px;}
.y24{bottom:180.212700px;}
.y67{bottom:197.078700px;}
.yf5{bottom:197.078850px;}
.y23{bottom:201.212700px;}
.y33{bottom:203.413650px;}
.yc8{bottom:210.513600px;}
.y66{bottom:218.078700px;}
.ye9{bottom:218.078850px;}
.y32{bottom:221.413650px;}
.y22{bottom:222.212700px;}
.y65{bottom:239.078700px;}
.ye8{bottom:239.078850px;}
.y31{bottom:239.413650px;}
.yc7{bottom:242.811000px;}
.y21{bottom:243.212700px;}
.yb6{bottom:253.440900px;}
.y30{bottom:257.413650px;}
.y64{bottom:260.078700px;}
.ye7{bottom:260.078850px;}
.yc6{bottom:263.811000px;}
.y20{bottom:264.212700px;}
.y2f{bottom:275.413650px;}
.y63{bottom:281.078700px;}
.ye6{bottom:281.078850px;}
.yb1{bottom:281.361600px;}
.y1f{bottom:285.212700px;}
.y2e{bottom:293.413650px;}
.yb0{bottom:296.361600px;}
.y62{bottom:302.078700px;}
.ye5{bottom:302.078850px;}
.y1e{bottom:306.212700px;}
.ycd{bottom:307.336950px;}
.y2d{bottom:311.413650px;}
.yaf{bottom:315.357600px;}
.y61{bottom:323.078700px;}
.ye4{bottom:323.078850px;}
.yae{bottom:326.361600px;}
.y1d{bottom:327.212700px;}
.y2c{bottom:329.413650px;}
.y60{bottom:344.078700px;}
.ye3{bottom:344.078850px;}
.yad{bottom:345.357600px;}
.y1c{bottom:348.212700px;}
.yac{bottom:356.361600px;}
.y2b{bottom:364.421550px;}
.y5f{bottom:365.078700px;}
.ye2{bottom:365.078850px;}
.y1b{bottom:369.212700px;}
.yab{bottom:375.357600px;}
.y2a{bottom:382.421550px;}
.y5e{bottom:386.078700px;}
.ye1{bottom:386.078850px;}
.y1a{bottom:390.212700px;}
.yaa{bottom:390.357600px;}
.y29{bottom:400.421550px;}
.ya9{bottom:405.357600px;}
.y5d{bottom:407.078700px;}
.yf4{bottom:407.078850px;}
.y28{bottom:418.421550px;}
.ye0{bottom:421.441050px;}
.y19{bottom:422.700450px;}
.ya8{bottom:424.567950px;}
.y5c{bottom:428.078700px;}
.yf3{bottom:428.078850px;}
.ya6{bottom:439.567950px;}
.ya3{bottom:447.067950px;}
.y5b{bottom:449.078700px;}
.yf2{bottom:449.078850px;}
.ya5{bottom:454.567950px;}
.ya2{bottom:462.067950px;}
.ya4{bottom:469.567950px;}
.y5a{bottom:470.078700px;}
.ydf{bottom:470.078850px;}
.ya7{bottom:484.567950px;}
.y59{bottom:491.078700px;}
.yde{bottom:491.078850px;}
.y18{bottom:503.227950px;}
.ya1{bottom:503.772600px;}
.y58{bottom:512.078700px;}
.ydd{bottom:512.078850px;}
.ya0{bottom:518.772600px;}
.y9b{bottom:526.272600px;}
.y57{bottom:533.078700px;}
.ydc{bottom:533.078850px;}
.y9d{bottom:533.772600px;}
.y9a{bottom:541.272600px;}
.y17{bottom:544.287900px;}
.yb5{bottom:547.440900px;}
.y9c{bottom:548.772600px;}
.y56{bottom:554.078700px;}
.ydb{bottom:554.078850px;}
.y99{bottom:556.272600px;}
.y9f{bottom:563.772600px;}
.y16{bottom:564.087900px;}
.y55{bottom:575.078700px;}
.yda{bottom:575.078850px;}
.y9e{bottom:578.772600px;}
.y15{bottom:583.887750px;}
.y54{bottom:596.078700px;}
.yd9{bottom:596.078850px;}
.y98{bottom:597.977400px;}
.y14{bottom:603.687900px;}
.y95{bottom:612.977400px;}
.y53{bottom:617.078700px;}
.yd8{bottom:617.078850px;}
.y13{bottom:623.487900px;}
.y93{bottom:627.977400px;}
.y96{bottom:635.477400px;}
.y52{bottom:638.078700px;}
.yd7{bottom:638.078850px;}
.y92{bottom:642.977400px;}
.y12{bottom:643.287900px;}
.y94{bottom:657.977400px;}
.y51{bottom:659.078700px;}
.yd6{bottom:659.078850px;}
.y11{bottom:663.087900px;}
.y97{bottom:672.977400px;}
.y50{bottom:680.078700px;}
.yd5{bottom:680.078850px;}
.y10{bottom:682.887750px;}
.y91{bottom:692.182050px;}
.y4f{bottom:701.078700px;}
.yd4{bottom:701.078850px;}
.yf{bottom:702.687900px;}
.y90{bottom:707.182050px;}
.y8b{bottom:714.682050px;}
.yf1{bottom:715.441050px;}
.y4e{bottom:722.078700px;}
.yd3{bottom:722.078850px;}
.y8c{bottom:722.182050px;}
.ye{bottom:722.487900px;}
.y8a{bottom:729.682050px;}
.y8d{bottom:737.182050px;}
.yd{bottom:742.287900px;}
.y4d{bottom:743.078700px;}
.yd2{bottom:743.078850px;}
.y89{bottom:744.682050px;}
.y8f{bottom:752.182050px;}
.y4c{bottom:764.078700px;}
.yd1{bottom:764.078850px;}
.y8e{bottom:767.182050px;}
.yc{bottom:773.385300px;}
.y4b{bottom:785.078700px;}
.yd0{bottom:785.078850px;}
.y88{bottom:786.386850px;}
.yf0{bottom:790.529250px;}
.y87{bottom:801.386850px;}
.y4a{bottom:806.078700px;}
.ycf{bottom:806.078850px;}
.y81{bottom:808.886850px;}
.y86{bottom:816.386850px;}
.y7f{bottom:823.886850px;}
.y49{bottom:827.078700px;}
.yc5{bottom:827.078850px;}
.y85{bottom:831.386850px;}
.y7e{bottom:838.886850px;}
.y84{bottom:846.386850px;}
.y48{bottom:848.078700px;}
.yc4{bottom:848.078850px;}
.ya{bottom:852.666900px;}
.y80{bottom:853.886850px;}
.y83{bottom:861.386850px;}
.y47{bottom:869.078700px;}
.yc3{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.y82{bottom:876.386850px;}
.y8{bottom:888.666900px;}
.y46{bottom:890.078700px;}
.yc2{bottom:890.078850px;}
.yef{bottom:895.529250px;}
.y7d{bottom:895.591500px;}
.y7{bottom:906.666900px;}
.y7b{bottom:910.591500px;}
.y45{bottom:911.078700px;}
.yc1{bottom:911.078850px;}
.y78{bottom:918.091500px;}
.y6{bottom:924.666900px;}
.y7a{bottom:925.591500px;}
.y44{bottom:932.078700px;}
.yc0{bottom:932.078850px;}
.y77{bottom:933.091500px;}
.y79{bottom:940.591500px;}
.y43{bottom:953.078700px;}
.ybf{bottom:953.078850px;}
.y7c{bottom:955.591500px;}
.yee{bottom:958.529250px;}
.y5{bottom:959.674650px;}
.yce{bottom:967.441050px;}
.y42{bottom:974.078700px;}
.ybe{bottom:974.078850px;}
.y76{bottom:974.796300px;}
.y4{bottom:979.474800px;}
.y72{bottom:989.796300px;}
.y41{bottom:995.078700px;}
.ybd{bottom:995.078850px;}
.y74{bottom:997.296300px;}
.y71{bottom:1004.796300px;}
.y73{bottom:1012.296300px;}
.yb4{bottom:1016.078700px;}
.ybc{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y70{bottom:1019.796300px;}
.y40{bottom:1030.440900px;}
.y75{bottom:1034.796300px;}
.yb3{bottom:1037.078700px;}
.ybb{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.y6f{bottom:1054.001100px;}
.yb2{bottom:1058.078700px;}
.yba{bottom:1058.078850px;}
.y6e{bottom:1061.501100px;}
.yed{bottom:1063.529400px;}
.y3f{bottom:1079.078700px;}
.yb9{bottom:1079.078850px;}
.y6d{bottom:1099.482900px;}
.y3e{bottom:1100.078700px;}
.yb8{bottom:1100.078850px;}
.yb{bottom:1109.815500px;}
.y6c{bottom:1119.282900px;}
.y3d{bottom:1121.078700px;}
.yb7{bottom:1121.078850px;}
.yec{bottom:1129.703850px;}
.y35{bottom:1159.189500px;}
.y34{bottom:1178.689500px;}
.y3c{bottom:1178.691750px;}
.h1a{height:23.016000px;}
.h19{height:28.055063px;}
.h10{height:34.446094px;}
.hf{height:34.657031px;}
.h11{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h15{height:39.000000px;}
.h6{height:40.500000px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.h8{height:43.875000px;}
.h14{height:44.039062px;}
.h7{height:45.615234px;}
.hb{height:48.750000px;}
.h9{height:49.543945px;}
.h1b{height:50.176758px;}
.h4{height:53.625000px;}
.ha{height:54.738281px;}
.hc{height:55.048828px;}
.h12{height:66.492188px;}
.h18{height:69.000000px;}
.h17{height:74.039062px;}
.h3{height:76.500000px;}
.h13{height:96.492188px;}
.h16{height:104.039062px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xc{left:108.286950px;}
.x10{left:112.251150px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.xd{left:133.333200px;}
.xe{left:221.602050px;}
.x1b{left:223.639650px;}
.x11{left:226.011150px;}
.x12{left:270.424350px;}
.x4{left:300.189000px;}
.x5{left:317.196900px;}
.x1c{left:334.204650px;}
.x3{left:406.716150px;}
.x18{left:409.369200px;}
.x17{left:413.465100px;}
.xf{left:415.416600px;}
.x13{left:417.312000px;}
.x19{left:423.942150px;}
.x15{left:485.496900px;}
.x1a{left:487.339200px;}
.x14{left:494.883600px;}
.x16{left:551.054250px;}
.xa{left:644.889600px;}
.x9{left:683.028300px;}
.x1{left:813.005250px;}
@media print{
.v5{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.208000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:26.666667pt;}
.v4{vertical-align:40.874667pt;}
.lse{letter-spacing:-1.066667pt;}
.ls8{letter-spacing:-0.853333pt;}
.ls3{letter-spacing:-0.768000pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.336000pt;}
.lsc{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.010816pt;}
.ls4{letter-spacing:0.015467pt;}
.ls0{letter-spacing:0.022400pt;}
.lsf{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.533333pt;}
.lsa{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.746667pt;}
.ls9{letter-spacing:0.768000pt;}
.ls13{letter-spacing:1.680000pt;}
.ls5{letter-spacing:37.748288pt;}
.ws0{word-spacing:-22.032000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws74{word-spacing:-14.608000pt;}
.ws77{word-spacing:-13.584000pt;}
.ws61{word-spacing:-13.333333pt;}
.ws5{word-spacing:-13.280000pt;}
.ws1c{word-spacing:-13.066667pt;}
.ws76{word-spacing:-12.288000pt;}
.ws4{word-spacing:-11.952000pt;}
.ws75{word-spacing:-11.904000pt;}
.ws81{word-spacing:-11.664000pt;}
.ws78{word-spacing:-11.568000pt;}
.ws3b{word-spacing:-11.221333pt;}
.ws7{word-spacing:-10.992000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws39{word-spacing:-9.770667pt;}
.ws3a{word-spacing:-9.728000pt;}
.ws3{word-spacing:-9.685333pt;}
.ws1b{word-spacing:-9.600000pt;}
.ws9{word-spacing:-8.793600pt;}
.wsa{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.549333pt;}
.ws1{word-spacing:-8.482261pt;}
.ws4f{word-spacing:-3.413333pt;}
.ws5a{word-spacing:-3.093333pt;}
.ws5f{word-spacing:-2.933333pt;}
.ws47{word-spacing:-2.826667pt;}
.ws73{word-spacing:-2.773333pt;}
.ws2c{word-spacing:-2.400000pt;}
.ws2d{word-spacing:-2.346667pt;}
.ws4b{word-spacing:-2.240000pt;}
.ws5d{word-spacing:-2.186667pt;}
.ws5c{word-spacing:-1.973333pt;}
.ws58{word-spacing:-1.920000pt;}
.ws82{word-spacing:-1.824000pt;}
.ws14{word-spacing:-1.653333pt;}
.ws86{word-spacing:-1.632000pt;}
.ws2b{word-spacing:-1.493333pt;}
.ws24{word-spacing:-1.226667pt;}
.ws49{word-spacing:-1.120000pt;}
.ws1f{word-spacing:-1.066667pt;}
.ws4a{word-spacing:-0.960000pt;}
.ws44{word-spacing:-0.906667pt;}
.ws34{word-spacing:-0.800000pt;}
.ws41{word-spacing:-0.768000pt;}
.ws72{word-spacing:-0.746667pt;}
.ws10{word-spacing:-0.720000pt;}
.ws22{word-spacing:-0.640000pt;}
.ws55{word-spacing:-0.586667pt;}
.ws60{word-spacing:-0.533333pt;}
.ws96{word-spacing:-0.480000pt;}
.wsf{word-spacing:-0.432000pt;}
.ws7b{word-spacing:-0.384000pt;}
.ws65{word-spacing:-0.266667pt;}
.ws19{word-spacing:-0.230400pt;}
.ws2e{word-spacing:-0.213333pt;}
.ws3d{word-spacing:-0.053333pt;}
.ws88{word-spacing:-0.048000pt;}
.wsb{word-spacing:0.000000pt;}
.ws68{word-spacing:0.213333pt;}
.ws83{word-spacing:0.240000pt;}
.ws4d{word-spacing:0.266667pt;}
.ws80{word-spacing:0.336000pt;}
.ws31{word-spacing:0.480000pt;}
.ws79{word-spacing:0.528000pt;}
.ws3c{word-spacing:0.640000pt;}
.ws1a{word-spacing:0.768000pt;}
.ws84{word-spacing:0.816000pt;}
.ws40{word-spacing:0.853333pt;}
.ws45{word-spacing:0.906667pt;}
.ws17{word-spacing:1.066667pt;}
.ws4e{word-spacing:1.280000pt;}
.ws63{word-spacing:1.386667pt;}
.ws3f{word-spacing:1.440000pt;}
.ws7c{word-spacing:1.488000pt;}
.ws1d{word-spacing:1.546667pt;}
.ws48{word-spacing:1.600000pt;}
.ws7e{word-spacing:1.632000pt;}
.ws27{word-spacing:1.653333pt;}
.ws25{word-spacing:1.920000pt;}
.ws50{word-spacing:2.080000pt;}
.ws1e{word-spacing:2.133333pt;}
.ws54{word-spacing:2.293333pt;}
.ws90{word-spacing:2.304000pt;}
.ws51{word-spacing:2.346667pt;}
.ws8c{word-spacing:2.352000pt;}
.ws52{word-spacing:2.400000pt;}
.ws29{word-spacing:2.453333pt;}
.ws23{word-spacing:2.560000pt;}
.ws53{word-spacing:2.666667pt;}
.ws8b{word-spacing:2.736000pt;}
.ws64{word-spacing:2.773333pt;}
.ws11{word-spacing:2.784000pt;}
.ws2f{word-spacing:2.826667pt;}
.ws6c{word-spacing:2.880000pt;}
.ws6b{word-spacing:2.933333pt;}
.ws15{word-spacing:3.146667pt;}
.ws67{word-spacing:3.200000pt;}
.ws20{word-spacing:3.573333pt;}
.ws46{word-spacing:3.840000pt;}
.ws18{word-spacing:3.893333pt;}
.ws93{word-spacing:4.032000pt;}
.ws91{word-spacing:4.176000pt;}
.ws7a{word-spacing:4.368000pt;}
.ws12{word-spacing:4.480000pt;}
.ws26{word-spacing:4.586667pt;}
.ws6e{word-spacing:4.746667pt;}
.ws3e{word-spacing:4.800000pt;}
.ws5e{word-spacing:4.853333pt;}
.ws6d{word-spacing:4.906667pt;}
.ws87{word-spacing:5.232000pt;}
.ws62{word-spacing:5.333333pt;}
.wse{word-spacing:5.712000pt;}
.ws21{word-spacing:5.760000pt;}
.ws32{word-spacing:5.866667pt;}
.ws42{word-spacing:5.920000pt;}
.ws7d{word-spacing:6.048000pt;}
.ws43{word-spacing:6.080000pt;}
.ws56{word-spacing:6.400000pt;}
.ws5b{word-spacing:6.506667pt;}
.ws13{word-spacing:6.560000pt;}
.ws6f{word-spacing:6.613333pt;}
.ws16{word-spacing:6.720000pt;}
.ws92{word-spacing:6.768000pt;}
.ws8f{word-spacing:7.008000pt;}
.ws66{word-spacing:7.093333pt;}
.ws59{word-spacing:7.520000pt;}
.ws57{word-spacing:7.573333pt;}
.ws70{word-spacing:7.626667pt;}
.wsc{word-spacing:7.680000pt;}
.wsd{word-spacing:7.776000pt;}
.ws4c{word-spacing:7.840000pt;}
.ws30{word-spacing:8.106667pt;}
.ws28{word-spacing:8.160000pt;}
.ws2a{word-spacing:8.426667pt;}
.ws69{word-spacing:8.480000pt;}
.ws85{word-spacing:8.832000pt;}
.ws8a{word-spacing:8.928000pt;}
.ws95{word-spacing:9.216000pt;}
.ws6a{word-spacing:9.226667pt;}
.ws97{word-spacing:9.648000pt;}
.ws8d{word-spacing:10.608000pt;}
.ws71{word-spacing:11.040000pt;}
.ws33{word-spacing:12.160000pt;}
.ws7f{word-spacing:15.456000pt;}
.ws94{word-spacing:16.176000pt;}
.ws89{word-spacing:16.560000pt;}
.ws8e{word-spacing:20.112000pt;}
.ws38{word-spacing:68.522667pt;}
.ws35{word-spacing:102.054400pt;}
.ws36{word-spacing:152.316800pt;}
.ws37{word-spacing:156.260267pt;}
._a{margin-left:-9.852800pt;}
._1e{margin-left:-8.591467pt;}
._1a{margin-left:-7.157333pt;}
._9{margin-left:-6.038400pt;}
._7{margin-left:-4.907200pt;}
._4{margin-left:-3.451200pt;}
._1{margin-left:-1.976533pt;}
._0{margin-left:-1.060800pt;}
._2{width:0.897600pt;}
._6{width:1.790400pt;}
._b{width:3.225600pt;}
._5{width:4.473600pt;}
._c{width:5.654400pt;}
._10{width:6.710400pt;}
._8{width:7.626667pt;}
._d{width:8.922667pt;}
._e{width:9.853867pt;}
._f{width:11.664000pt;}
._1b{width:14.421333pt;}
._11{width:17.082667pt;}
._12{width:18.019200pt;}
._3{width:32.328533pt;}
._1d{width:43.184533pt;}
._15{width:47.208000pt;}
._19{width:48.650133pt;}
._16{width:63.966400pt;}
._1c{width:69.440533pt;}
._14{width:71.892800pt;}
._18{width:98.611200pt;}
._17{width:192.174933pt;}
._13{width:445.849067pt;}
.fs9{font-size:24.874667pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.698800pt;}
.y6b{bottom:100.514400pt;}
.ycc{bottom:100.514533pt;}
.y39{bottom:104.175867pt;}
.y27{bottom:104.189067pt;}
.y38{bottom:116.975867pt;}
.y6a{bottom:119.181067pt;}
.ycb{bottom:119.181200pt;}
.y26{bottom:122.855733pt;}
.yeb{bottom:124.388533pt;}
.y37{bottom:129.775867pt;}
.y69{bottom:137.847733pt;}
.yca{bottom:137.847867pt;}
.y25{bottom:141.522400pt;}
.y36{bottom:142.575867pt;}
.yea{bottom:150.614267pt;}
.y68{bottom:156.514400pt;}
.yc9{bottom:156.514533pt;}
.y24{bottom:160.189067pt;}
.y67{bottom:175.181067pt;}
.yf5{bottom:175.181200pt;}
.y23{bottom:178.855733pt;}
.y33{bottom:180.812133pt;}
.yc8{bottom:187.123200pt;}
.y66{bottom:193.847733pt;}
.ye9{bottom:193.847867pt;}
.y32{bottom:196.812133pt;}
.y22{bottom:197.522400pt;}
.y65{bottom:212.514400pt;}
.ye8{bottom:212.514533pt;}
.y31{bottom:212.812133pt;}
.yc7{bottom:215.832000pt;}
.y21{bottom:216.189067pt;}
.yb6{bottom:225.280800pt;}
.y30{bottom:228.812133pt;}
.y64{bottom:231.181067pt;}
.ye7{bottom:231.181200pt;}
.yc6{bottom:234.498667pt;}
.y20{bottom:234.855733pt;}
.y2f{bottom:244.812133pt;}
.y63{bottom:249.847733pt;}
.ye6{bottom:249.847867pt;}
.yb1{bottom:250.099200pt;}
.y1f{bottom:253.522400pt;}
.y2e{bottom:260.812133pt;}
.yb0{bottom:263.432533pt;}
.y62{bottom:268.514400pt;}
.ye5{bottom:268.514533pt;}
.y1e{bottom:272.189067pt;}
.ycd{bottom:273.188400pt;}
.y2d{bottom:276.812133pt;}
.yaf{bottom:280.317867pt;}
.y61{bottom:287.181067pt;}
.ye4{bottom:287.181200pt;}
.yae{bottom:290.099200pt;}
.y1d{bottom:290.855733pt;}
.y2c{bottom:292.812133pt;}
.y60{bottom:305.847733pt;}
.ye3{bottom:305.847867pt;}
.yad{bottom:306.984533pt;}
.y1c{bottom:309.522400pt;}
.yac{bottom:316.765867pt;}
.y2b{bottom:323.930267pt;}
.y5f{bottom:324.514400pt;}
.ye2{bottom:324.514533pt;}
.y1b{bottom:328.189067pt;}
.yab{bottom:333.651200pt;}
.y2a{bottom:339.930267pt;}
.y5e{bottom:343.181067pt;}
.ye1{bottom:343.181200pt;}
.y1a{bottom:346.855733pt;}
.yaa{bottom:346.984533pt;}
.y29{bottom:355.930267pt;}
.ya9{bottom:360.317867pt;}
.y5d{bottom:361.847733pt;}
.yf4{bottom:361.847867pt;}
.y28{bottom:371.930267pt;}
.ye0{bottom:374.614267pt;}
.y19{bottom:375.733733pt;}
.ya8{bottom:377.393733pt;}
.y5c{bottom:380.514400pt;}
.yf3{bottom:380.514533pt;}
.ya6{bottom:390.727067pt;}
.ya3{bottom:397.393733pt;}
.y5b{bottom:399.181067pt;}
.yf2{bottom:399.181200pt;}
.ya5{bottom:404.060400pt;}
.ya2{bottom:410.727067pt;}
.ya4{bottom:417.393733pt;}
.y5a{bottom:417.847733pt;}
.ydf{bottom:417.847867pt;}
.ya7{bottom:430.727067pt;}
.y59{bottom:436.514400pt;}
.yde{bottom:436.514533pt;}
.y18{bottom:447.313733pt;}
.ya1{bottom:447.797867pt;}
.y58{bottom:455.181067pt;}
.ydd{bottom:455.181200pt;}
.ya0{bottom:461.131200pt;}
.y9b{bottom:467.797867pt;}
.y57{bottom:473.847733pt;}
.ydc{bottom:473.847867pt;}
.y9d{bottom:474.464533pt;}
.y9a{bottom:481.131200pt;}
.y17{bottom:483.811467pt;}
.yb5{bottom:486.614133pt;}
.y9c{bottom:487.797867pt;}
.y56{bottom:492.514400pt;}
.ydb{bottom:492.514533pt;}
.y99{bottom:494.464533pt;}
.y9f{bottom:501.131200pt;}
.y16{bottom:501.411467pt;}
.y55{bottom:511.181067pt;}
.yda{bottom:511.181200pt;}
.y9e{bottom:514.464533pt;}
.y15{bottom:519.011333pt;}
.y54{bottom:529.847733pt;}
.yd9{bottom:529.847867pt;}
.y98{bottom:531.535467pt;}
.y14{bottom:536.611467pt;}
.y95{bottom:544.868800pt;}
.y53{bottom:548.514400pt;}
.yd8{bottom:548.514533pt;}
.y13{bottom:554.211467pt;}
.y93{bottom:558.202133pt;}
.y96{bottom:564.868800pt;}
.y52{bottom:567.181067pt;}
.yd7{bottom:567.181200pt;}
.y92{bottom:571.535467pt;}
.y12{bottom:571.811467pt;}
.y94{bottom:584.868800pt;}
.y51{bottom:585.847733pt;}
.yd6{bottom:585.847867pt;}
.y11{bottom:589.411467pt;}
.y97{bottom:598.202133pt;}
.y50{bottom:604.514400pt;}
.yd5{bottom:604.514533pt;}
.y10{bottom:607.011333pt;}
.y91{bottom:615.272933pt;}
.y4f{bottom:623.181067pt;}
.yd4{bottom:623.181200pt;}
.yf{bottom:624.611467pt;}
.y90{bottom:628.606267pt;}
.y8b{bottom:635.272933pt;}
.yf1{bottom:635.947600pt;}
.y4e{bottom:641.847733pt;}
.yd3{bottom:641.847867pt;}
.y8c{bottom:641.939600pt;}
.ye{bottom:642.211467pt;}
.y8a{bottom:648.606267pt;}
.y8d{bottom:655.272933pt;}
.yd{bottom:659.811467pt;}
.y4d{bottom:660.514400pt;}
.yd2{bottom:660.514533pt;}
.y89{bottom:661.939600pt;}
.y8f{bottom:668.606267pt;}
.y4c{bottom:679.181067pt;}
.yd1{bottom:679.181200pt;}
.y8e{bottom:681.939600pt;}
.yc{bottom:687.453600pt;}
.y4b{bottom:697.847733pt;}
.yd0{bottom:697.847867pt;}
.y88{bottom:699.010533pt;}
.yf0{bottom:702.692667pt;}
.y87{bottom:712.343867pt;}
.y4a{bottom:716.514400pt;}
.ycf{bottom:716.514533pt;}
.y81{bottom:719.010533pt;}
.y86{bottom:725.677200pt;}
.y7f{bottom:732.343867pt;}
.y49{bottom:735.181067pt;}
.yc5{bottom:735.181200pt;}
.y85{bottom:739.010533pt;}
.y7e{bottom:745.677200pt;}
.y84{bottom:752.343867pt;}
.y48{bottom:753.847733pt;}
.yc4{bottom:753.847867pt;}
.ya{bottom:757.926133pt;}
.y80{bottom:759.010533pt;}
.y83{bottom:765.677200pt;}
.y47{bottom:772.514400pt;}
.yc3{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.y82{bottom:779.010533pt;}
.y8{bottom:789.926133pt;}
.y46{bottom:791.181067pt;}
.yc2{bottom:791.181200pt;}
.yef{bottom:796.026000pt;}
.y7d{bottom:796.081333pt;}
.y7{bottom:805.926133pt;}
.y7b{bottom:809.414667pt;}
.y45{bottom:809.847733pt;}
.yc1{bottom:809.847867pt;}
.y78{bottom:816.081333pt;}
.y6{bottom:821.926133pt;}
.y7a{bottom:822.748000pt;}
.y44{bottom:828.514400pt;}
.yc0{bottom:828.514533pt;}
.y77{bottom:829.414667pt;}
.y79{bottom:836.081333pt;}
.y43{bottom:847.181067pt;}
.ybf{bottom:847.181200pt;}
.y7c{bottom:849.414667pt;}
.yee{bottom:852.026000pt;}
.y5{bottom:853.044133pt;}
.yce{bottom:859.947600pt;}
.y42{bottom:865.847733pt;}
.ybe{bottom:865.847867pt;}
.y76{bottom:866.485600pt;}
.y4{bottom:870.644267pt;}
.y72{bottom:879.818933pt;}
.y41{bottom:884.514400pt;}
.ybd{bottom:884.514533pt;}
.y74{bottom:886.485600pt;}
.y71{bottom:893.152267pt;}
.y73{bottom:899.818933pt;}
.yb4{bottom:903.181067pt;}
.ybc{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y70{bottom:906.485600pt;}
.y40{bottom:915.947467pt;}
.y75{bottom:919.818933pt;}
.yb3{bottom:921.847733pt;}
.ybb{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.y6f{bottom:936.889867pt;}
.yb2{bottom:940.514400pt;}
.yba{bottom:940.514533pt;}
.y6e{bottom:943.556533pt;}
.yed{bottom:945.359467pt;}
.y3f{bottom:959.181067pt;}
.yb9{bottom:959.181200pt;}
.y6d{bottom:977.318133pt;}
.y3e{bottom:977.847733pt;}
.yb8{bottom:977.847867pt;}
.yb{bottom:986.502667pt;}
.y6c{bottom:994.918133pt;}
.y3d{bottom:996.514400pt;}
.yb7{bottom:996.514533pt;}
.yec{bottom:1004.181200pt;}
.y35{bottom:1030.390667pt;}
.y34{bottom:1047.724000pt;}
.y3c{bottom:1047.726000pt;}
.h1a{height:20.458667pt;}
.h19{height:24.937833pt;}
.h10{height:30.618750pt;}
.hf{height:30.806250pt;}
.h11{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h15{height:34.666667pt;}
.h6{height:36.000000pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.h8{height:39.000000pt;}
.h14{height:39.145833pt;}
.h7{height:40.546875pt;}
.hb{height:43.333333pt;}
.h9{height:44.039062pt;}
.h1b{height:44.601562pt;}
.h4{height:47.666667pt;}
.ha{height:48.656250pt;}
.hc{height:48.932292pt;}
.h12{height:59.104167pt;}
.h18{height:61.333333pt;}
.h17{height:65.812500pt;}
.h3{height:68.000000pt;}
.h13{height:85.770833pt;}
.h16{height:92.479167pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xc{left:96.255067pt;}
.x10{left:99.778800pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.xd{left:118.518400pt;}
.xe{left:196.979600pt;}
.x1b{left:198.790800pt;}
.x11{left:200.898800pt;}
.x12{left:240.377200pt;}
.x4{left:266.834667pt;}
.x5{left:281.952800pt;}
.x1c{left:297.070800pt;}
.x3{left:361.525467pt;}
.x18{left:363.883733pt;}
.x17{left:367.524533pt;}
.xf{left:369.259200pt;}
.x13{left:370.944000pt;}
.x19{left:376.837467pt;}
.x15{left:431.552800pt;}
.x1a{left:433.190400pt;}
.x14{left:439.896533pt;}
.x16{left:489.826000pt;}
.xa{left:573.235200pt;}
.x9{left:607.136267pt;}
.x1{left:722.671333pt;}
}




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