
    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_66aedfe833af4cf42135c9e5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675293;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_1d53ee438e9a86f16e6387cb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.984863;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_35ceae26456ce8290149f7ed.woff')format("woff");}.ff3{font-family:ff3;line-height:0.996000;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_1a2ddb68c343257c7cf5f054.woff')format("woff");}.ff4{font-family:ff4;line-height:1.056000;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_df30f0ef1693249e71841c06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.056000;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_a2634be5f58a80762bf955c6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.675293;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_e8fffa55996bf5d83d473f86.woff')format("woff");}.ff7{font-family:ff7;line-height:0.979980;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_87864afc5a101697d0380dad.woff')format("woff");}.ff8{font-family:ff8;line-height:0.984863;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_2e25c32e14b7472449e14d45.woff')format("woff");}.ff9{font-family:ff9;line-height:1.056000;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_e8fffa55996bf5d83d473f86.woff')format("woff");}.ffa{font-family:ffa;line-height:0.979980;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_32c5df40acab054cb624a94a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.050000;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_db3edabdc18a34af37585c0d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7a020234561960d1300443db.woff')format("woff");}.ffd{font-family:ffd;line-height:1.006000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.994000px;}
.ls1{letter-spacing:-6.132000px;}
.ls6{letter-spacing:-1.620000px;}
.ls5{letter-spacing:-1.320000px;}
.ls8{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.840000px;}
.ls4{letter-spacing:-0.660000px;}
.ls7{letter-spacing:-0.540000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.396000px;}
.lsa{letter-spacing:0.528000px;}
.ls9{letter-spacing:2.310000px;}
.lsd{letter-spacing:7.002600px;}
.lse{letter-spacing:12.804000px;}
.lsc{letter-spacing:14.256000px;}
.lsb{letter-spacing:26.268000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,242,0),0 0.015em rgb(255,242,0),0.015em 0 rgb(255,242,0),0 -0.015em  rgb(255,242,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,242,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-24.948000px;}
.ws7c{word-spacing:-20.658000px;}
.ws8b{word-spacing:-18.876000px;}
.ws0{word-spacing:-18.348000px;}
.ws68{word-spacing:-15.012000px;}
.ws8a{word-spacing:-8.514000px;}
.ws8c{word-spacing:-6.798000px;}
.ws74{word-spacing:-6.666000px;}
.ws2e{word-spacing:-6.204000px;}
.ws5d{word-spacing:-4.884000px;}
.ws17{word-spacing:-4.158000px;}
.ws76{word-spacing:-3.960000px;}
.ws48{word-spacing:-3.762000px;}
.ws64{word-spacing:-3.498000px;}
.ws81{word-spacing:-3.432000px;}
.ws39{word-spacing:-3.366000px;}
.ws92{word-spacing:-3.300000px;}
.ws99{word-spacing:-3.168000px;}
.ws1d{word-spacing:-3.102000px;}
.ws94{word-spacing:-3.036000px;}
.ws2c{word-spacing:-2.904000px;}
.ws32{word-spacing:-2.706000px;}
.ws95{word-spacing:-2.310000px;}
.ws93{word-spacing:-2.244000px;}
.ws3a{word-spacing:-2.178000px;}
.ws5f{word-spacing:-1.980000px;}
.ws1e{word-spacing:-1.848000px;}
.wsa0{word-spacing:-1.782000px;}
.ws33{word-spacing:-1.716000px;}
.ws24{word-spacing:-1.650000px;}
.ws6e{word-spacing:-1.584000px;}
.ws1c{word-spacing:-1.452000px;}
.ws86{word-spacing:-1.386000px;}
.ws5a{word-spacing:-1.254000px;}
.ws31{word-spacing:-1.056000px;}
.ws84{word-spacing:-0.990000px;}
.ws98{word-spacing:-0.924000px;}
.ws59{word-spacing:-0.858000px;}
.ws1b{word-spacing:-0.792000px;}
.ws38{word-spacing:-0.756000px;}
.ws9a{word-spacing:-0.726000px;}
.ws30{word-spacing:-0.594000px;}
.ws61{word-spacing:-0.528000px;}
.ws85{word-spacing:-0.462000px;}
.ws16{word-spacing:-0.396000px;}
.ws2d{word-spacing:-0.330000px;}
.ws26{word-spacing:-0.264000px;}
.ws6b{word-spacing:-0.216000px;}
.ws2b{word-spacing:-0.132000px;}
.ws2{word-spacing:0.000000px;}
.ws7b{word-spacing:0.066000px;}
.ws13{word-spacing:0.264000px;}
.ws3{word-spacing:0.330000px;}
.ws6{word-spacing:0.396000px;}
.ws21{word-spacing:0.420000px;}
.ws8d{word-spacing:0.528000px;}
.ws6f{word-spacing:0.594000px;}
.ws22{word-spacing:0.840000px;}
.ws7d{word-spacing:0.858000px;}
.ws71{word-spacing:0.924000px;}
.ws96{word-spacing:1.056000px;}
.wsb{word-spacing:1.122000px;}
.ws5{word-spacing:1.254000px;}
.ws6a{word-spacing:1.518000px;}
.ws10{word-spacing:1.584000px;}
.ws83{word-spacing:1.716000px;}
.ws14{word-spacing:1.782000px;}
.ws97{word-spacing:1.848000px;}
.ws73{word-spacing:1.914000px;}
.ws58{word-spacing:1.980000px;}
.ws2a{word-spacing:2.112000px;}
.ws7e{word-spacing:2.310000px;}
.ws11{word-spacing:2.442000px;}
.ws56{word-spacing:2.508000px;}
.ws20{word-spacing:2.574000px;}
.ws54{word-spacing:2.640000px;}
.ws77{word-spacing:2.706000px;}
.ws57{word-spacing:2.772000px;}
.ws6c{word-spacing:2.970000px;}
.ws3e{word-spacing:3.234000px;}
.ws36{word-spacing:3.432000px;}
.ws87{word-spacing:3.630000px;}
.ws3b{word-spacing:3.894000px;}
.ws28{word-spacing:3.960000px;}
.ws7f{word-spacing:4.158000px;}
.wsf{word-spacing:4.224000px;}
.ws55{word-spacing:4.356000px;}
.ws53{word-spacing:4.422000px;}
.ws51{word-spacing:4.488000px;}
.ws3d{word-spacing:4.554000px;}
.ws66{word-spacing:4.752000px;}
.ws3f{word-spacing:4.950000px;}
.ws67{word-spacing:5.016000px;}
.ws65{word-spacing:5.082000px;}
.ws50{word-spacing:5.148000px;}
.ws78{word-spacing:5.478000px;}
.ws18{word-spacing:5.610000px;}
.ws80{word-spacing:5.808000px;}
.ws43{word-spacing:5.940000px;}
.ws34{word-spacing:6.006000px;}
.ws27{word-spacing:6.072000px;}
.ws1{word-spacing:6.132000px;}
.ws4{word-spacing:6.204000px;}
.ws8f{word-spacing:6.468000px;}
.ws4e{word-spacing:6.600000px;}
.ws3c{word-spacing:6.666000px;}
.ws23{word-spacing:6.798000px;}
.ws1f{word-spacing:6.996000px;}
.ws62{word-spacing:7.062000px;}
.ws47{word-spacing:7.128000px;}
.ws82{word-spacing:7.194000px;}
.ws70{word-spacing:7.326000px;}
.ws2f{word-spacing:7.392000px;}
.ws1a{word-spacing:7.458000px;}
.ws44{word-spacing:7.524000px;}
.wse{word-spacing:7.722000px;}
.ws35{word-spacing:7.854000px;}
.ws8{word-spacing:7.920000px;}
.ws72{word-spacing:7.986000px;}
.ws12{word-spacing:8.250000px;}
.wsd{word-spacing:8.448000px;}
.ws19{word-spacing:8.580000px;}
.ws7a{word-spacing:8.646000px;}
.ws29{word-spacing:8.712000px;}
.ws60{word-spacing:9.174000px;}
.ws9c{word-spacing:9.768000px;}
.ws91{word-spacing:10.428000px;}
.ws15{word-spacing:10.494000px;}
.ws5b{word-spacing:10.758000px;}
.ws25{word-spacing:10.824000px;}
.ws63{word-spacing:10.956000px;}
.ws42{word-spacing:11.220000px;}
.ws41{word-spacing:11.418000px;}
.ws37{word-spacing:11.484000px;}
.ws45{word-spacing:11.616000px;}
.ws75{word-spacing:12.210000px;}
.ws89{word-spacing:12.408000px;}
.ws9f{word-spacing:13.002000px;}
.ws5e{word-spacing:13.398000px;}
.ws8e{word-spacing:13.860000px;}
.ws79{word-spacing:13.926000px;}
.ws9b{word-spacing:14.058000px;}
.ws5c{word-spacing:14.718000px;}
.ws9{word-spacing:14.982000px;}
.ws4f{word-spacing:15.114000px;}
.ws88{word-spacing:15.510000px;}
.wsc{word-spacing:15.642000px;}
.ws40{word-spacing:15.708000px;}
.ws4d{word-spacing:15.906000px;}
.ws9e{word-spacing:18.876000px;}
.ws6d{word-spacing:24.222000px;}
.ws90{word-spacing:26.268000px;}
.ws52{word-spacing:26.400000px;}
.ws9d{word-spacing:27.258000px;}
.ws46{word-spacing:27.522000px;}
.wsa{word-spacing:33.462000px;}
.ws4b{word-spacing:40.986000px;}
.ws4c{word-spacing:41.646000px;}
.ws4a{word-spacing:42.042000px;}
.ws49{word-spacing:56.364000px;}
.ws69{word-spacing:340.902000px;}
._5{margin-left:-18.391200px;}
._7{margin-left:-14.564400px;}
._8{margin-left:-12.119400px;}
._2{margin-left:-8.520600px;}
._3{margin-left:-6.446400px;}
._6{margin-left:-4.507200px;}
._4{margin-left:-3.262200px;}
._1{margin-left:-2.001600px;}
._0{width:2.059200px;}
._11{width:7.392000px;}
._f{width:11.536800px;}
._10{width:13.926000px;}
._12{width:26.268000px;}
._e{width:34.584000px;}
._13{width:56.298000px;}
._b{width:165.314400px;}
._d{width:172.746000px;}
._c{width:235.818000px;}
._9{width:431.460000px;}
._a{width:696.276000px;}
.fc9{color:rgb(22,93,167);}
.fc7{color:rgb(12,12,13);}
.fc8{color:rgb(35,36,37);}
.fc4{color:rgb(111,144,202);}
.fc3{color:transparent;}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(46,42,43);}
.fc5{color:rgb(124,153,207);}
.fc1{color:rgb(31,97,171);}
.fc0{color:rgb(41,102,175);}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:71.467650px;}
.y125{bottom:115.158000px;}
.y108{bottom:125.349000px;}
.y16{bottom:133.352550px;}
.y124{bottom:134.661000px;}
.y1{bottom:136.896000px;}
.ye2{bottom:140.225550px;}
.y14e{bottom:140.589600px;}
.y59{bottom:141.823500px;}
.y82{bottom:145.212000px;}
.y107{bottom:146.353500px;}
.yaa{bottom:146.892150px;}
.y123{bottom:154.164000px;}
.y14d{bottom:160.092600px;}
.y58{bottom:162.828000px;}
.y81{bottom:166.216500px;}
.y106{bottom:167.358000px;}
.ya9{bottom:167.896650px;}
.y3d{bottom:168.641700px;}
.ye1{bottom:169.727550px;}
.y122{bottom:173.667000px;}
.y14c{bottom:179.595600px;}
.ya8{bottom:188.901150px;}
.y3c{bottom:189.646200px;}
.ye0{bottom:190.732050px;}
.y57{bottom:196.587000px;}
.y80{bottom:204.224400px;}
.y121{bottom:205.924500px;}
.y105{bottom:209.617800px;}
.ya7{bottom:209.905650px;}
.y3b{bottom:210.650700px;}
.y14b{bottom:211.853100px;}
.y15{bottom:215.517150px;}
.y56{bottom:217.591500px;}
.ydf{bottom:220.234050px;}
.y120{bottom:225.427500px;}
.ya6{bottom:230.910150px;}
.y14a{bottom:231.356100px;}
.y14{bottom:236.486250px;}
.y55{bottom:238.596000px;}
.y3a{bottom:244.409700px;}
.y11f{bottom:244.930500px;}
.yde{bottom:249.736050px;}
.y7f{bottom:250.596450px;}
.y149{bottom:250.859100px;}
.y13{bottom:257.490750px;}
.y104{bottom:259.220550px;}
.y54{bottom:259.600500px;}
.y11e{bottom:264.433500px;}
.ya5{bottom:264.669150px;}
.y39{bottom:265.414200px;}
.ydd{bottom:270.740550px;}
.y7e{bottom:271.600950px;}
.y12{bottom:278.495250px;}
.y103{bottom:279.994050px;}
.y53{bottom:280.605000px;}
.y148{bottom:283.116600px;}
.ya4{bottom:285.673650px;}
.y38{bottom:286.418700px;}
.y7d{bottom:292.605450px;}
.y11d{bottom:296.691000px;}
.y11{bottom:299.499750px;}
.ydc{bottom:300.242550px;}
.y102{bottom:300.767550px;}
.y52{bottom:301.609500px;}
.y147{bottom:302.619600px;}
.ya3{bottom:306.678150px;}
.y37{bottom:307.423200px;}
.y7c{bottom:313.609950px;}
.y11c{bottom:316.194000px;}
.ydb{bottom:321.247050px;}
.y146{bottom:322.122600px;}
.y36{bottom:328.427700px;}
.y101{bottom:330.038550px;}
.y7b{bottom:334.614450px;}
.y51{bottom:335.368500px;}
.y11b{bottom:335.697000px;}
.ya2{bottom:340.437150px;}
.yda{bottom:342.251550px;}
.y35{bottom:349.432200px;}
.y100{bottom:350.812050px;}
.y145{bottom:354.380100px;}
.y7a{bottom:355.618950px;}
.y50{bottom:356.373000px;}
.ya1{bottom:361.441650px;}
.y11a{bottom:367.954500px;}
.y144{bottom:373.883100px;}
.y79{bottom:376.623450px;}
.y4f{bottom:377.377500px;}
.yff{bottom:380.083050px;}
.yd9{bottom:380.259300px;}
.ya0{bottom:382.446150px;}
.y34{bottom:383.191200px;}
.y119{bottom:387.457500px;}
.y78{bottom:397.627950px;}
.y4e{bottom:398.382000px;}
.yfe{bottom:400.856550px;}
.y9f{bottom:403.450650px;}
.y33{bottom:404.195700px;}
.y143{bottom:406.140600px;}
.y118{bottom:406.960500px;}
.y77{bottom:418.632450px;}
.y4d{bottom:419.386500px;}
.y9e{bottom:424.455150px;}
.y32{bottom:425.200200px;}
.y142{bottom:425.643600px;}
.yd8{bottom:426.766650px;}
.yfd{bottom:430.127550px;}
.y76{bottom:439.636950px;}
.y10{bottom:442.521750px;}
.y141{bottom:445.146600px;}
.y9d{bottom:445.459650px;}
.y31{bottom:446.204700px;}
.y117{bottom:447.720450px;}
.yd7{bottom:447.771150px;}
.yfc{bottom:450.901050px;}
.y4c{bottom:453.145500px;}
.y75{bottom:460.641450px;}
.yf{bottom:463.526250px;}
.y30{bottom:467.209200px;}
.yfb{bottom:471.674550px;}
.y4b{bottom:474.150000px;}
.y140{bottom:477.404100px;}
.y9c{bottom:479.218650px;}
.y74{bottom:481.645950px;}
.ye{bottom:484.530750px;}
.yd6{bottom:486.199650px;}
.yfa{bottom:492.448050px;}
.yd4{bottom:494.448150px;}
.y4a{bottom:495.154500px;}
.y13f{bottom:496.907100px;}
.y116{bottom:497.223150px;}
.y9b{bottom:500.223150px;}
.y2f{bottom:500.968200px;}
.y73{bottom:502.650450px;}
.yd3{bottom:502.696650px;}
.yd{bottom:514.032750px;}
.y49{bottom:516.159000px;}
.y13e{bottom:516.410100px;}
.y115{bottom:518.227650px;}
.yd5{bottom:519.193650px;}
.y9a{bottom:521.227650px;}
.yf9{bottom:521.719050px;}
.y2e{bottom:521.972700px;}
.y72{bottom:523.654950px;}
.yc{bottom:535.037250px;}
.y48{bottom:537.163500px;}
.y114{bottom:539.232150px;}
.yd2{bottom:540.753150px;}
.y99{bottom:542.232150px;}
.yf8{bottom:542.492550px;}
.y2d{bottom:542.977200px;}
.y13d{bottom:548.667600px;}
.ycf{bottom:549.001650px;}
.yb{bottom:556.041750px;}
.yd1{bottom:557.250150px;}
.y71{bottom:557.413950px;}
.y2c{bottom:563.981700px;}
.yce{bottom:565.498650px;}
.y13c{bottom:568.170600px;}
.y47{bottom:570.922500px;}
.yf7{bottom:571.763550px;}
.yd0{bottom:573.747150px;}
.y113{bottom:577.240050px;}
.y70{bottom:578.418450px;}
.y98{bottom:580.240050px;}
.ya{bottom:585.543750px;}
.y13b{bottom:587.673600px;}
.y46{bottom:591.927000px;}
.yf6{bottom:592.537050px;}
.ycd{bottom:595.306650px;}
.y2b{bottom:597.740700px;}
.y6f{bottom:599.422950px;}
.yc9{bottom:603.541650px;}
.y9{bottom:606.548250px;}
.y13a{bottom:607.176600px;}
.yc6{bottom:609.657150px;}
.ycc{bottom:611.803650px;}
.y45{bottom:612.931500px;}
.y2a{bottom:618.745200px;}
.yc8{bottom:620.038650px;}
.y6e{bottom:620.427450px;}
.yf5{bottom:621.808050px;}
.y97{bottom:626.663100px;}
.y8{bottom:627.552750px;}
.ycb{bottom:628.300650px;}
.yc5{bottom:630.406650px;}
.y44{bottom:633.936000px;}
.yc7{bottom:636.535650px;}
.y139{bottom:639.434100px;}
.y29{bottom:639.749700px;}
.y6d{bottom:641.431950px;}
.yf4{bottom:642.581550px;}
.yca{bottom:644.797650px;}
.y96{bottom:647.667600px;}
.y7{bottom:652.797750px;}
.y138{bottom:658.937100px;}
.y28{bottom:660.754200px;}
.y6c{bottom:662.436450px;}
.yc4{bottom:666.343650px;}
.y95{bottom:668.672100px;}
.yf3{bottom:671.852550px;}
.y6{bottom:673.802250px;}
.y27{bottom:681.758700px;}
.yc3{bottom:682.840650px;}
.y6b{bottom:683.440950px;}
.y94{bottom:689.676600px;}
.y137{bottom:691.194600px;}
.yf2{bottom:692.626050px;}
.y5{bottom:694.806750px;}
.yc2{bottom:704.400150px;}
.y6a{bottom:704.445450px;}
.y93{bottom:710.681100px;}
.y136{bottom:710.697600px;}
.yc0{bottom:712.648650px;}
.ybf{bottom:720.897150px;}
.yf1{bottom:721.897050px;}
.y112{bottom:723.435600px;}
.y26{bottom:724.018500px;}
.y69{bottom:725.449950px;}
.y135{bottom:730.200600px;}
.y92{bottom:731.685600px;}
.yc1{bottom:737.394150px;}
.yf0{bottom:742.670550px;}
.y111{bottom:744.440100px;}
.y68{bottom:746.454450px;}
.ybd{bottom:758.953650px;}
.y134{bottom:762.458100px;}
.y91{bottom:765.444600px;}
.ybc{bottom:767.202150px;}
.y67{bottom:767.458950px;}
.yef{bottom:771.941550px;}
.y84{bottom:773.625000px;}
.ybe{bottom:775.450650px;}
.y4{bottom:779.610300px;}
.y133{bottom:781.961100px;}
.y90{bottom:786.449100px;}
.y66{bottom:788.463450px;}
.y83{bottom:790.122000px;}
.yee{bottom:792.715050px;}
.yba{bottom:797.010150px;}
.y110{bottom:799.203600px;}
.yb9{bottom:805.258650px;}
.y8f{bottom:807.453600px;}
.ybb{bottom:813.507150px;}
.y132{bottom:814.218600px;}
.y3{bottom:818.598300px;}
.y10f{bottom:820.208100px;}
.y158{bottom:820.967100px;}
.y65{bottom:822.222450px;}
.y8e{bottom:828.458100px;}
.yed{bottom:830.497950px;}
.y131{bottom:833.721600px;}
.yb8{bottom:835.066650px;}
.y25{bottom:835.840650px;}
.y157{bottom:840.470100px;}
.y10e{bottom:841.212600px;}
.y64{bottom:843.226950px;}
.yb6{bottom:851.563650px;}
.y130{bottom:853.224600px;}
.y24{bottom:856.845150px;}
.y2{bottom:857.586300px;}
.y8d{bottom:862.217100px;}
.y63{bottom:864.231450px;}
.yb7{bottom:868.060650px;}
.y156{bottom:872.727600px;}
.yec{bottom:877.050600px;}
.y8c{bottom:883.221600px;}
.y62{bottom:885.235950px;}
.y12f{bottom:885.482100px;}
.yb3{bottom:889.620150px;}
.y23{bottom:890.601000px;}
.y155{bottom:892.230600px;}
.y10d{bottom:895.976100px;}
.yeb{bottom:897.824100px;}
.yb5{bottom:897.868650px;}
.y12e{bottom:904.985100px;}
.yb1{bottom:906.117150px;}
.yb4{bottom:914.365650px;}
.y8b{bottom:916.980600px;}
.yea{bottom:918.597600px;}
.y61{bottom:918.994950px;}
.yb2{bottom:922.614150px;}
.y154{bottom:924.488100px;}
.y12d{bottom:937.242600px;}
.y8a{bottom:937.985100px;}
.y60{bottom:939.999450px;}
.y22{bottom:940.081350px;}
.y153{bottom:943.991100px;}
.ye9{bottom:947.868600px;}
.yb0{bottom:950.046150px;}
.y12c{bottom:956.745600px;}
.y89{bottom:958.989600px;}
.y5f{bottom:961.003950px;}
.y21{bottom:961.085850px;}
.y43{bottom:966.599100px;}
.ye8{bottom:968.642100px;}
.y10c{bottom:971.744100px;}
.y152{bottom:976.248600px;}
.y88{bottom:979.994100px;}
.y20{bottom:982.090350px;}
.yaf{bottom:982.095150px;}
.y42{bottom:987.605100px;}
.y12b{bottom:989.003100px;}
.y10b{bottom:992.748600px;}
.y151{bottom:995.751600px;}
.ye7{bottom:997.913100px;}
.y87{bottom:1000.998600px;}
.y1f{bottom:1003.094850px;}
.yae{bottom:1003.101150px;}
.y5e{bottom:1003.260750px;}
.y12a{bottom:1008.506100px;}
.y41{bottom:1012.600050px;}
.y10a{bottom:1013.753100px;}
.ye6{bottom:1018.686600px;}
.y86{bottom:1022.003100px;}
.y1e{bottom:1024.099350px;}
.y5d{bottom:1027.263750px;}
.y129{bottom:1028.009100px;}
.y40{bottom:1033.604550px;}
.y109{bottom:1034.757600px;}
.yad{bottom:1036.600050px;}
.y1d{bottom:1045.103850px;}
.y150{bottom:1047.512100px;}
.ye5{bottom:1047.957600px;}
.y3f{bottom:1054.609050px;}
.y85{bottom:1055.762100px;}
.yac{bottom:1057.604550px;}
.y128{bottom:1060.266600px;}
.y1c{bottom:1066.108350px;}
.y14f{bottom:1067.015100px;}
.ye4{bottom:1068.731100px;}
.y5c{bottom:1076.766600px;}
.yab{bottom:1078.609050px;}
.y127{bottom:1079.769600px;}
.y1b{bottom:1087.112850px;}
.y3e{bottom:1096.865850px;}
.y5b{bottom:1097.771100px;}
.ye3{bottom:1098.002100px;}
.y126{bottom:1099.272600px;}
.y5a{bottom:1118.775600px;}
.y1a{bottom:1120.868850px;}
.y18{bottom:1180.236150px;}
.y17{bottom:1198.231650px;}
.h7{height:40.500000px;}
.h9{height:40.824000px;}
.ha{height:41.472000px;}
.h4{height:49.896000px;}
.h5{height:50.688000px;}
.h6{height:50.829600px;}
.hb{height:55.296000px;}
.h2{height:55.986328px;}
.h8{height:63.000000px;}
.hc{height:74.466000px;}
.h3{height:108.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:106.299150px;}
.x3{left:110.869800px;}
.xb{left:112.681500px;}
.x6{left:126.858150px;}
.xa{left:128.908500px;}
.xe{left:136.299150px;}
.x2{left:156.877800px;}
.xf{left:163.293150px;}
.x7{left:234.570900px;}
.xc{left:250.908000px;}
.x4{left:298.177800px;}
.x8{left:377.481900px;}
.x9{left:480.659850px;}
.xd{left:509.163000px;}
.x1{left:816.378000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.328000pt;}
.ls1{letter-spacing:-5.450667pt;}
.ls6{letter-spacing:-1.440000pt;}
.ls5{letter-spacing:-1.173333pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.746667pt;}
.ls4{letter-spacing:-0.586667pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.352000pt;}
.lsa{letter-spacing:0.469333pt;}
.ls9{letter-spacing:2.053333pt;}
.lsd{letter-spacing:6.224533pt;}
.lse{letter-spacing:11.381333pt;}
.lsc{letter-spacing:12.672000pt;}
.lsb{letter-spacing:23.349333pt;}
.ws7{word-spacing:-22.176000pt;}
.ws7c{word-spacing:-18.362667pt;}
.ws8b{word-spacing:-16.778667pt;}
.ws0{word-spacing:-16.309333pt;}
.ws68{word-spacing:-13.344000pt;}
.ws8a{word-spacing:-7.568000pt;}
.ws8c{word-spacing:-6.042667pt;}
.ws74{word-spacing:-5.925333pt;}
.ws2e{word-spacing:-5.514667pt;}
.ws5d{word-spacing:-4.341333pt;}
.ws17{word-spacing:-3.696000pt;}
.ws76{word-spacing:-3.520000pt;}
.ws48{word-spacing:-3.344000pt;}
.ws64{word-spacing:-3.109333pt;}
.ws81{word-spacing:-3.050667pt;}
.ws39{word-spacing:-2.992000pt;}
.ws92{word-spacing:-2.933333pt;}
.ws99{word-spacing:-2.816000pt;}
.ws1d{word-spacing:-2.757333pt;}
.ws94{word-spacing:-2.698667pt;}
.ws2c{word-spacing:-2.581333pt;}
.ws32{word-spacing:-2.405333pt;}
.ws95{word-spacing:-2.053333pt;}
.ws93{word-spacing:-1.994667pt;}
.ws3a{word-spacing:-1.936000pt;}
.ws5f{word-spacing:-1.760000pt;}
.ws1e{word-spacing:-1.642667pt;}
.wsa0{word-spacing:-1.584000pt;}
.ws33{word-spacing:-1.525333pt;}
.ws24{word-spacing:-1.466667pt;}
.ws6e{word-spacing:-1.408000pt;}
.ws1c{word-spacing:-1.290667pt;}
.ws86{word-spacing:-1.232000pt;}
.ws5a{word-spacing:-1.114667pt;}
.ws31{word-spacing:-0.938667pt;}
.ws84{word-spacing:-0.880000pt;}
.ws98{word-spacing:-0.821333pt;}
.ws59{word-spacing:-0.762667pt;}
.ws1b{word-spacing:-0.704000pt;}
.ws38{word-spacing:-0.672000pt;}
.ws9a{word-spacing:-0.645333pt;}
.ws30{word-spacing:-0.528000pt;}
.ws61{word-spacing:-0.469333pt;}
.ws85{word-spacing:-0.410667pt;}
.ws16{word-spacing:-0.352000pt;}
.ws2d{word-spacing:-0.293333pt;}
.ws26{word-spacing:-0.234667pt;}
.ws6b{word-spacing:-0.192000pt;}
.ws2b{word-spacing:-0.117333pt;}
.ws2{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.058667pt;}
.ws13{word-spacing:0.234667pt;}
.ws3{word-spacing:0.293333pt;}
.ws6{word-spacing:0.352000pt;}
.ws21{word-spacing:0.373333pt;}
.ws8d{word-spacing:0.469333pt;}
.ws6f{word-spacing:0.528000pt;}
.ws22{word-spacing:0.746667pt;}
.ws7d{word-spacing:0.762667pt;}
.ws71{word-spacing:0.821333pt;}
.ws96{word-spacing:0.938667pt;}
.wsb{word-spacing:0.997333pt;}
.ws5{word-spacing:1.114667pt;}
.ws6a{word-spacing:1.349333pt;}
.ws10{word-spacing:1.408000pt;}
.ws83{word-spacing:1.525333pt;}
.ws14{word-spacing:1.584000pt;}
.ws97{word-spacing:1.642667pt;}
.ws73{word-spacing:1.701333pt;}
.ws58{word-spacing:1.760000pt;}
.ws2a{word-spacing:1.877333pt;}
.ws7e{word-spacing:2.053333pt;}
.ws11{word-spacing:2.170667pt;}
.ws56{word-spacing:2.229333pt;}
.ws20{word-spacing:2.288000pt;}
.ws54{word-spacing:2.346667pt;}
.ws77{word-spacing:2.405333pt;}
.ws57{word-spacing:2.464000pt;}
.ws6c{word-spacing:2.640000pt;}
.ws3e{word-spacing:2.874667pt;}
.ws36{word-spacing:3.050667pt;}
.ws87{word-spacing:3.226667pt;}
.ws3b{word-spacing:3.461333pt;}
.ws28{word-spacing:3.520000pt;}
.ws7f{word-spacing:3.696000pt;}
.wsf{word-spacing:3.754667pt;}
.ws55{word-spacing:3.872000pt;}
.ws53{word-spacing:3.930667pt;}
.ws51{word-spacing:3.989333pt;}
.ws3d{word-spacing:4.048000pt;}
.ws66{word-spacing:4.224000pt;}
.ws3f{word-spacing:4.400000pt;}
.ws67{word-spacing:4.458667pt;}
.ws65{word-spacing:4.517333pt;}
.ws50{word-spacing:4.576000pt;}
.ws78{word-spacing:4.869333pt;}
.ws18{word-spacing:4.986667pt;}
.ws80{word-spacing:5.162667pt;}
.ws43{word-spacing:5.280000pt;}
.ws34{word-spacing:5.338667pt;}
.ws27{word-spacing:5.397333pt;}
.ws1{word-spacing:5.450667pt;}
.ws4{word-spacing:5.514667pt;}
.ws8f{word-spacing:5.749333pt;}
.ws4e{word-spacing:5.866667pt;}
.ws3c{word-spacing:5.925333pt;}
.ws23{word-spacing:6.042667pt;}
.ws1f{word-spacing:6.218667pt;}
.ws62{word-spacing:6.277333pt;}
.ws47{word-spacing:6.336000pt;}
.ws82{word-spacing:6.394667pt;}
.ws70{word-spacing:6.512000pt;}
.ws2f{word-spacing:6.570667pt;}
.ws1a{word-spacing:6.629333pt;}
.ws44{word-spacing:6.688000pt;}
.wse{word-spacing:6.864000pt;}
.ws35{word-spacing:6.981333pt;}
.ws8{word-spacing:7.040000pt;}
.ws72{word-spacing:7.098667pt;}
.ws12{word-spacing:7.333333pt;}
.wsd{word-spacing:7.509333pt;}
.ws19{word-spacing:7.626667pt;}
.ws7a{word-spacing:7.685333pt;}
.ws29{word-spacing:7.744000pt;}
.ws60{word-spacing:8.154667pt;}
.ws9c{word-spacing:8.682667pt;}
.ws91{word-spacing:9.269333pt;}
.ws15{word-spacing:9.328000pt;}
.ws5b{word-spacing:9.562667pt;}
.ws25{word-spacing:9.621333pt;}
.ws63{word-spacing:9.738667pt;}
.ws42{word-spacing:9.973333pt;}
.ws41{word-spacing:10.149333pt;}
.ws37{word-spacing:10.208000pt;}
.ws45{word-spacing:10.325333pt;}
.ws75{word-spacing:10.853333pt;}
.ws89{word-spacing:11.029333pt;}
.ws9f{word-spacing:11.557333pt;}
.ws5e{word-spacing:11.909333pt;}
.ws8e{word-spacing:12.320000pt;}
.ws79{word-spacing:12.378667pt;}
.ws9b{word-spacing:12.496000pt;}
.ws5c{word-spacing:13.082667pt;}
.ws9{word-spacing:13.317333pt;}
.ws4f{word-spacing:13.434667pt;}
.ws88{word-spacing:13.786667pt;}
.wsc{word-spacing:13.904000pt;}
.ws40{word-spacing:13.962667pt;}
.ws4d{word-spacing:14.138667pt;}
.ws9e{word-spacing:16.778667pt;}
.ws6d{word-spacing:21.530667pt;}
.ws90{word-spacing:23.349333pt;}
.ws52{word-spacing:23.466667pt;}
.ws9d{word-spacing:24.229333pt;}
.ws46{word-spacing:24.464000pt;}
.wsa{word-spacing:29.744000pt;}
.ws4b{word-spacing:36.432000pt;}
.ws4c{word-spacing:37.018667pt;}
.ws4a{word-spacing:37.370667pt;}
.ws49{word-spacing:50.101333pt;}
.ws69{word-spacing:303.024000pt;}
._5{margin-left:-16.347733pt;}
._7{margin-left:-12.946133pt;}
._8{margin-left:-10.772800pt;}
._2{margin-left:-7.573867pt;}
._3{margin-left:-5.730133pt;}
._6{margin-left:-4.006400pt;}
._4{margin-left:-2.899733pt;}
._1{margin-left:-1.779200pt;}
._0{width:1.830400pt;}
._11{width:6.570667pt;}
._f{width:10.254933pt;}
._10{width:12.378667pt;}
._12{width:23.349333pt;}
._e{width:30.741333pt;}
._13{width:50.042667pt;}
._b{width:146.946133pt;}
._d{width:153.552000pt;}
._c{width:209.616000pt;}
._9{width:383.520000pt;}
._a{width:618.912000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:63.526800pt;}
.y125{bottom:102.362667pt;}
.y108{bottom:111.421333pt;}
.y16{bottom:118.535600pt;}
.y124{bottom:119.698667pt;}
.y1{bottom:121.685333pt;}
.ye2{bottom:124.644933pt;}
.y14e{bottom:124.968533pt;}
.y59{bottom:126.065333pt;}
.y82{bottom:129.077333pt;}
.y107{bottom:130.092000pt;}
.yaa{bottom:130.570800pt;}
.y123{bottom:137.034667pt;}
.y14d{bottom:142.304533pt;}
.y58{bottom:144.736000pt;}
.y81{bottom:147.748000pt;}
.y106{bottom:148.762667pt;}
.ya9{bottom:149.241467pt;}
.y3d{bottom:149.903733pt;}
.ye1{bottom:150.868933pt;}
.y122{bottom:154.370667pt;}
.y14c{bottom:159.640533pt;}
.ya8{bottom:167.912133pt;}
.y3c{bottom:168.574400pt;}
.ye0{bottom:169.539600pt;}
.y57{bottom:174.744000pt;}
.y80{bottom:181.532800pt;}
.y121{bottom:183.044000pt;}
.y105{bottom:186.326933pt;}
.ya7{bottom:186.582800pt;}
.y3b{bottom:187.245067pt;}
.y14b{bottom:188.313867pt;}
.y15{bottom:191.570800pt;}
.y56{bottom:193.414667pt;}
.ydf{bottom:195.763600pt;}
.y120{bottom:200.380000pt;}
.ya6{bottom:205.253467pt;}
.y14a{bottom:205.649867pt;}
.y14{bottom:210.210000pt;}
.y55{bottom:212.085333pt;}
.y3a{bottom:217.253067pt;}
.y11f{bottom:217.716000pt;}
.yde{bottom:221.987600pt;}
.y7f{bottom:222.752400pt;}
.y149{bottom:222.985867pt;}
.y13{bottom:228.880667pt;}
.y104{bottom:230.418267pt;}
.y54{bottom:230.756000pt;}
.y11e{bottom:235.052000pt;}
.ya5{bottom:235.261467pt;}
.y39{bottom:235.923733pt;}
.ydd{bottom:240.658267pt;}
.y7e{bottom:241.423067pt;}
.y12{bottom:247.551333pt;}
.y103{bottom:248.883600pt;}
.y53{bottom:249.426667pt;}
.y148{bottom:251.659200pt;}
.ya4{bottom:253.932133pt;}
.y38{bottom:254.594400pt;}
.y7d{bottom:260.093733pt;}
.y11d{bottom:263.725333pt;}
.y11{bottom:266.222000pt;}
.ydc{bottom:266.882267pt;}
.y102{bottom:267.348933pt;}
.y52{bottom:268.097333pt;}
.y147{bottom:268.995200pt;}
.ya3{bottom:272.602800pt;}
.y37{bottom:273.265067pt;}
.y7c{bottom:278.764400pt;}
.y11c{bottom:281.061333pt;}
.ydb{bottom:285.552933pt;}
.y146{bottom:286.331200pt;}
.y36{bottom:291.935733pt;}
.y101{bottom:293.367600pt;}
.y7b{bottom:297.435067pt;}
.y51{bottom:298.105333pt;}
.y11b{bottom:298.397333pt;}
.ya2{bottom:302.610800pt;}
.yda{bottom:304.223600pt;}
.y35{bottom:310.606400pt;}
.y100{bottom:311.832933pt;}
.y145{bottom:315.004533pt;}
.y7a{bottom:316.105733pt;}
.y50{bottom:316.776000pt;}
.ya1{bottom:321.281467pt;}
.y11a{bottom:327.070667pt;}
.y144{bottom:332.340533pt;}
.y79{bottom:334.776400pt;}
.y4f{bottom:335.446667pt;}
.yff{bottom:337.851600pt;}
.yd9{bottom:338.008267pt;}
.ya0{bottom:339.952133pt;}
.y34{bottom:340.614400pt;}
.y119{bottom:344.406667pt;}
.y78{bottom:353.447067pt;}
.y4e{bottom:354.117333pt;}
.yfe{bottom:356.316933pt;}
.y9f{bottom:358.622800pt;}
.y33{bottom:359.285067pt;}
.y143{bottom:361.013867pt;}
.y118{bottom:361.742667pt;}
.y77{bottom:372.117733pt;}
.y4d{bottom:372.788000pt;}
.y9e{bottom:377.293467pt;}
.y32{bottom:377.955733pt;}
.y142{bottom:378.349867pt;}
.yd8{bottom:379.348133pt;}
.yfd{bottom:382.335600pt;}
.y76{bottom:390.788400pt;}
.y10{bottom:393.352667pt;}
.y141{bottom:395.685867pt;}
.y9d{bottom:395.964133pt;}
.y31{bottom:396.626400pt;}
.y117{bottom:397.973733pt;}
.yd7{bottom:398.018800pt;}
.yfc{bottom:400.800933pt;}
.y4c{bottom:402.796000pt;}
.y75{bottom:409.459067pt;}
.yf{bottom:412.023333pt;}
.y30{bottom:415.297067pt;}
.yfb{bottom:419.266267pt;}
.y4b{bottom:421.466667pt;}
.y140{bottom:424.359200pt;}
.y9c{bottom:425.972133pt;}
.y74{bottom:428.129733pt;}
.ye{bottom:430.694000pt;}
.yd6{bottom:432.177467pt;}
.yfa{bottom:437.731600pt;}
.yd4{bottom:439.509467pt;}
.y4a{bottom:440.137333pt;}
.y13f{bottom:441.695200pt;}
.y116{bottom:441.976133pt;}
.y9b{bottom:444.642800pt;}
.y2f{bottom:445.305067pt;}
.y73{bottom:446.800400pt;}
.yd3{bottom:446.841467pt;}
.yd{bottom:456.918000pt;}
.y49{bottom:458.808000pt;}
.y13e{bottom:459.031200pt;}
.y115{bottom:460.646800pt;}
.yd5{bottom:461.505467pt;}
.y9a{bottom:463.313467pt;}
.yf9{bottom:463.750267pt;}
.y2e{bottom:463.975733pt;}
.y72{bottom:465.471067pt;}
.yc{bottom:475.588667pt;}
.y48{bottom:477.478667pt;}
.y114{bottom:479.317467pt;}
.yd2{bottom:480.669467pt;}
.y99{bottom:481.984133pt;}
.yf8{bottom:482.215600pt;}
.y2d{bottom:482.646400pt;}
.y13d{bottom:487.704533pt;}
.ycf{bottom:488.001467pt;}
.yb{bottom:494.259333pt;}
.yd1{bottom:495.333467pt;}
.y71{bottom:495.479067pt;}
.y2c{bottom:501.317067pt;}
.yce{bottom:502.665467pt;}
.y13c{bottom:505.040533pt;}
.y47{bottom:507.486667pt;}
.yf7{bottom:508.234267pt;}
.yd0{bottom:509.997467pt;}
.y113{bottom:513.102267pt;}
.y70{bottom:514.149733pt;}
.y98{bottom:515.768933pt;}
.ya{bottom:520.483333pt;}
.y13b{bottom:522.376533pt;}
.y46{bottom:526.157333pt;}
.yf6{bottom:526.699600pt;}
.ycd{bottom:529.161467pt;}
.y2b{bottom:531.325067pt;}
.y6f{bottom:532.820400pt;}
.yc9{bottom:536.481467pt;}
.y9{bottom:539.154000pt;}
.y13a{bottom:539.712533pt;}
.yc6{bottom:541.917467pt;}
.ycc{bottom:543.825467pt;}
.y45{bottom:544.828000pt;}
.y2a{bottom:549.995733pt;}
.yc8{bottom:551.145467pt;}
.y6e{bottom:551.491067pt;}
.yf5{bottom:552.718267pt;}
.y97{bottom:557.033867pt;}
.y8{bottom:557.824667pt;}
.ycb{bottom:558.489467pt;}
.yc5{bottom:560.361467pt;}
.y44{bottom:563.498667pt;}
.yc7{bottom:565.809467pt;}
.y139{bottom:568.385867pt;}
.y29{bottom:568.666400pt;}
.y6d{bottom:570.161733pt;}
.yf4{bottom:571.183600pt;}
.yca{bottom:573.153467pt;}
.y96{bottom:575.704533pt;}
.y7{bottom:580.264667pt;}
.y138{bottom:585.721867pt;}
.y28{bottom:587.337067pt;}
.y6c{bottom:588.832400pt;}
.yc4{bottom:592.305467pt;}
.y95{bottom:594.375200pt;}
.yf3{bottom:597.202267pt;}
.y6{bottom:598.935333pt;}
.y27{bottom:606.007733pt;}
.yc3{bottom:606.969467pt;}
.y6b{bottom:607.503067pt;}
.y94{bottom:613.045867pt;}
.y137{bottom:614.395200pt;}
.yf2{bottom:615.667600pt;}
.y5{bottom:617.606000pt;}
.yc2{bottom:626.133467pt;}
.y6a{bottom:626.173733pt;}
.y93{bottom:631.716533pt;}
.y136{bottom:631.731200pt;}
.yc0{bottom:633.465467pt;}
.ybf{bottom:640.797467pt;}
.yf1{bottom:641.686267pt;}
.y112{bottom:643.053867pt;}
.y26{bottom:643.572000pt;}
.y69{bottom:644.844400pt;}
.y135{bottom:649.067200pt;}
.y92{bottom:650.387200pt;}
.yc1{bottom:655.461467pt;}
.yf0{bottom:660.151600pt;}
.y111{bottom:661.724533pt;}
.y68{bottom:663.515067pt;}
.ybd{bottom:674.625467pt;}
.y134{bottom:677.740533pt;}
.y91{bottom:680.395200pt;}
.ybc{bottom:681.957467pt;}
.y67{bottom:682.185733pt;}
.yef{bottom:686.170267pt;}
.y84{bottom:687.666667pt;}
.ybe{bottom:689.289467pt;}
.y4{bottom:692.986933pt;}
.y133{bottom:695.076533pt;}
.y90{bottom:699.065867pt;}
.y66{bottom:700.856400pt;}
.y83{bottom:702.330667pt;}
.yee{bottom:704.635600pt;}
.yba{bottom:708.453467pt;}
.y110{bottom:710.403200pt;}
.yb9{bottom:715.785467pt;}
.y8f{bottom:717.736533pt;}
.ybb{bottom:723.117467pt;}
.y132{bottom:723.749867pt;}
.y3{bottom:727.642933pt;}
.y10f{bottom:729.073867pt;}
.y158{bottom:729.748533pt;}
.y65{bottom:730.864400pt;}
.y8e{bottom:736.407200pt;}
.yed{bottom:738.220400pt;}
.y131{bottom:741.085867pt;}
.yb8{bottom:742.281467pt;}
.y25{bottom:742.969467pt;}
.y157{bottom:747.084533pt;}
.y10e{bottom:747.744533pt;}
.y64{bottom:749.535067pt;}
.yb6{bottom:756.945467pt;}
.y130{bottom:758.421867pt;}
.y24{bottom:761.640133pt;}
.y2{bottom:762.298933pt;}
.y8d{bottom:766.415200pt;}
.y63{bottom:768.205733pt;}
.yb7{bottom:771.609467pt;}
.y156{bottom:775.757867pt;}
.yec{bottom:779.600533pt;}
.y8c{bottom:785.085867pt;}
.y62{bottom:786.876400pt;}
.y12f{bottom:787.095200pt;}
.yb3{bottom:790.773467pt;}
.y23{bottom:791.645333pt;}
.y155{bottom:793.093867pt;}
.y10d{bottom:796.423200pt;}
.yeb{bottom:798.065867pt;}
.yb5{bottom:798.105467pt;}
.y12e{bottom:804.431200pt;}
.yb1{bottom:805.437467pt;}
.yb4{bottom:812.769467pt;}
.y8b{bottom:815.093867pt;}
.yea{bottom:816.531200pt;}
.y61{bottom:816.884400pt;}
.yb2{bottom:820.101467pt;}
.y154{bottom:821.767200pt;}
.y12d{bottom:833.104533pt;}
.y8a{bottom:833.764533pt;}
.y60{bottom:835.555067pt;}
.y22{bottom:835.627867pt;}
.y153{bottom:839.103200pt;}
.ye9{bottom:842.549867pt;}
.yb0{bottom:844.485467pt;}
.y12c{bottom:850.440533pt;}
.y89{bottom:852.435200pt;}
.y5f{bottom:854.225733pt;}
.y21{bottom:854.298533pt;}
.y43{bottom:859.199200pt;}
.ye8{bottom:861.015200pt;}
.y10c{bottom:863.772533pt;}
.y152{bottom:867.776533pt;}
.y88{bottom:871.105867pt;}
.y20{bottom:872.969200pt;}
.yaf{bottom:872.973467pt;}
.y42{bottom:877.871200pt;}
.y12b{bottom:879.113867pt;}
.y10b{bottom:882.443200pt;}
.y151{bottom:885.112533pt;}
.ye7{bottom:887.033867pt;}
.y87{bottom:889.776533pt;}
.y1f{bottom:891.639867pt;}
.yae{bottom:891.645467pt;}
.y5e{bottom:891.787333pt;}
.y12a{bottom:896.449867pt;}
.y41{bottom:900.088933pt;}
.y10a{bottom:901.113867pt;}
.ye6{bottom:905.499200pt;}
.y86{bottom:908.447200pt;}
.y1e{bottom:910.310533pt;}
.y5d{bottom:913.123333pt;}
.y129{bottom:913.785867pt;}
.y40{bottom:918.759600pt;}
.y109{bottom:919.784533pt;}
.yad{bottom:921.422267pt;}
.y1d{bottom:928.981200pt;}
.y150{bottom:931.121867pt;}
.ye5{bottom:931.517867pt;}
.y3f{bottom:937.430267pt;}
.y85{bottom:938.455200pt;}
.yac{bottom:940.092933pt;}
.y128{bottom:942.459200pt;}
.y1c{bottom:947.651867pt;}
.y14f{bottom:948.457867pt;}
.ye4{bottom:949.983200pt;}
.y5c{bottom:957.125867pt;}
.yab{bottom:958.763600pt;}
.y127{bottom:959.795200pt;}
.y1b{bottom:966.322533pt;}
.y3e{bottom:974.991867pt;}
.y5b{bottom:975.796533pt;}
.ye3{bottom:976.001867pt;}
.y126{bottom:977.131200pt;}
.y5a{bottom:994.467200pt;}
.y1a{bottom:996.327867pt;}
.y18{bottom:1049.098800pt;}
.y17{bottom:1065.094800pt;}
.h7{height:36.000000pt;}
.h9{height:36.288000pt;}
.ha{height:36.864000pt;}
.h4{height:44.352000pt;}
.h5{height:45.056000pt;}
.h6{height:45.181867pt;}
.hb{height:49.152000pt;}
.h2{height:49.765625pt;}
.h8{height:56.000000pt;}
.hc{height:66.192000pt;}
.h3{height:96.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:94.488133pt;}
.x3{left:98.550933pt;}
.xb{left:100.161333pt;}
.x6{left:112.762800pt;}
.xa{left:114.585333pt;}
.xe{left:121.154800pt;}
.x2{left:139.446933pt;}
.xf{left:145.149467pt;}
.x7{left:208.507467pt;}
.xc{left:223.029333pt;}
.x4{left:265.046933pt;}
.x8{left:335.539467pt;}
.x9{left:427.253200pt;}
.xd{left:452.589333pt;}
.x1{left:725.669333pt;}
}




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