
    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_279eaad549dbb1782857477e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.080000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7284477b610aff11328c5e27.woff')format("woff");}.ff2{font-family:ff2;line-height:0.940000;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_2cae9ccdd8a06932e1868b57.woff')format("woff");}.ff3{font-family:ff3;line-height:0.814941;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_c7e684981d7bdaf0f71c25ba.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b8d6c86a64372529fc920f8d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_01d5c8e4d07d3de8c22d53e2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.814941;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_d0e8254e55e9dba330da055b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.080000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c327d5a2f3979b2d1804c98d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.940000;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_452dd2333a0dd3be3f094ac7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.814941;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;}
.m2{transform:matrix(0.000000,0.251408,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.251408,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.251408,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-1.584000px;}
.ls2{letter-spacing:-1.320000px;}
.ls25{letter-spacing:-1.056000px;}
.ls22{letter-spacing:-0.858000px;}
.ls4{letter-spacing:-0.792000px;}
.ls1{letter-spacing:-0.672000px;}
.ls1b{letter-spacing:-0.528000px;}
.ls8{letter-spacing:-0.462000px;}
.ls6{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.396000px;}
.ls7{letter-spacing:-0.330000px;}
.ls3{letter-spacing:-0.264000px;}
.lsc{letter-spacing:-0.198000px;}
.lsd{letter-spacing:-0.132000px;}
.lsb{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.066000px;}
.ls17{letter-spacing:0.132000px;}
.ls14{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.231000px;}
.lse{letter-spacing:0.264000px;}
.lsa{letter-spacing:0.330000px;}
.ls10{letter-spacing:0.396000px;}
.ls19{letter-spacing:0.462000px;}
.ls20{letter-spacing:0.528000px;}
.ls1e{letter-spacing:0.594000px;}
.ls24{letter-spacing:0.792000px;}
.lsf{letter-spacing:1.956979px;}
.ls18{letter-spacing:2.147904px;}
.ls21{letter-spacing:2.160000px;}
.ls12{letter-spacing:3.600000px;}
.ls13{letter-spacing:3.888000px;}
.ls23{letter-spacing:4.158000px;}
.ls1f{letter-spacing:4.176000px;}
.ls15{letter-spacing:4.464000px;}
.ls1d{letter-spacing:4.752000px;}
.ls11{letter-spacing:5.040000px;}
.ls1a{letter-spacing:6.192000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-22.464000px;}
.ws8{word-spacing:-22.032000px;}
.ws8b{word-spacing:-19.152000px;}
.ws8f{word-spacing:-18.864000px;}
.ws83{word-spacing:-18.576000px;}
.ws8c{word-spacing:-17.136000px;}
.ws90{word-spacing:-14.520000px;}
.ws5{word-spacing:-13.728000px;}
.ws4{word-spacing:-13.464000px;}
.ws8d{word-spacing:-13.200000px;}
.ws7{word-spacing:-12.936000px;}
.ws8e{word-spacing:-12.870000px;}
.ws91{word-spacing:-12.672000px;}
.ws72{word-spacing:-12.408000px;}
.ws32{word-spacing:-11.885069px;}
.ws2{word-spacing:-11.232000px;}
.ws6a{word-spacing:-6.192000px;}
.ws3b{word-spacing:-5.040000px;}
.ws71{word-spacing:-4.752000px;}
.ws43{word-spacing:-4.464000px;}
.ws7f{word-spacing:-4.176000px;}
.ws3f{word-spacing:-3.888000px;}
.ws3e{word-spacing:-3.600000px;}
.wsa{word-spacing:-3.102000px;}
.ws30{word-spacing:-2.904000px;}
.ws12{word-spacing:-2.838000px;}
.ws9{word-spacing:-2.772000px;}
.ws22{word-spacing:-2.706000px;}
.ws2e{word-spacing:-2.640000px;}
.ws3c{word-spacing:-2.574000px;}
.ws28{word-spacing:-2.508000px;}
.ws3a{word-spacing:-2.442000px;}
.ws7c{word-spacing:-2.376000px;}
.ws85{word-spacing:-2.310000px;}
.ws36{word-spacing:-2.244000px;}
.ws44{word-spacing:-2.178000px;}
.ws33{word-spacing:-2.112000px;}
.ws1f{word-spacing:-2.046000px;}
.ws26{word-spacing:-1.980000px;}
.ws74{word-spacing:-1.914000px;}
.ws4e{word-spacing:-1.848000px;}
.ws29{word-spacing:-1.782000px;}
.wsd{word-spacing:-1.716000px;}
.ws5c{word-spacing:-1.650000px;}
.ws64{word-spacing:-1.584000px;}
.ws37{word-spacing:-1.518000px;}
.ws84{word-spacing:-1.452000px;}
.ws1c{word-spacing:-1.386000px;}
.ws77{word-spacing:-1.320000px;}
.ws5a{word-spacing:-1.254000px;}
.ws20{word-spacing:-1.188000px;}
.ws76{word-spacing:-1.122000px;}
.ws2c{word-spacing:-1.056000px;}
.ws34{word-spacing:-0.990000px;}
.ws2a{word-spacing:-0.924000px;}
.ws1d{word-spacing:-0.858000px;}
.ws53{word-spacing:-0.792000px;}
.ws27{word-spacing:-0.726000px;}
.ws70{word-spacing:-0.660000px;}
.ws4f{word-spacing:-0.594000px;}
.ws60{word-spacing:-0.528000px;}
.wsf{word-spacing:-0.462000px;}
.ws4b{word-spacing:-0.396000px;}
.ws19{word-spacing:-0.330000px;}
.ws38{word-spacing:-0.264000px;}
.ws5f{word-spacing:-0.198000px;}
.ws48{word-spacing:-0.132000px;}
.ws15{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.066000px;}
.ws16{word-spacing:0.132000px;}
.ws7b{word-spacing:0.198000px;}
.ws55{word-spacing:0.264000px;}
.ws24{word-spacing:0.330000px;}
.ws7d{word-spacing:0.396000px;}
.ws68{word-spacing:0.462000px;}
.ws6b{word-spacing:0.528000px;}
.ws4d{word-spacing:0.594000px;}
.ws23{word-spacing:0.660000px;}
.ws1{word-spacing:0.672000px;}
.ws57{word-spacing:0.726000px;}
.ws14{word-spacing:0.792000px;}
.ws6d{word-spacing:0.858000px;}
.ws49{word-spacing:0.924000px;}
.ws21{word-spacing:0.990000px;}
.ws6c{word-spacing:1.056000px;}
.ws41{word-spacing:1.122000px;}
.ws6f{word-spacing:1.188000px;}
.ws51{word-spacing:1.254000px;}
.ws6{word-spacing:1.320000px;}
.ws82{word-spacing:1.386000px;}
.ws46{word-spacing:1.452000px;}
.ws1a{word-spacing:1.518000px;}
.ws31{word-spacing:1.584000px;}
.ws42{word-spacing:1.650000px;}
.ws40{word-spacing:1.716000px;}
.ws67{word-spacing:1.782000px;}
.ws4c{word-spacing:1.848000px;}
.ws5e{word-spacing:1.914000px;}
.ws4a{word-spacing:1.980000px;}
.ws45{word-spacing:2.046000px;}
.ws8a{word-spacing:2.112000px;}
.ws47{word-spacing:2.178000px;}
.ws65{word-spacing:2.244000px;}
.ws62{word-spacing:2.310000px;}
.wse{word-spacing:2.376000px;}
.ws7e{word-spacing:2.442000px;}
.ws25{word-spacing:2.508000px;}
.ws5b{word-spacing:2.574000px;}
.ws13{word-spacing:2.640000px;}
.ws66{word-spacing:2.706000px;}
.ws56{word-spacing:2.772000px;}
.ws11{word-spacing:2.838000px;}
.ws5d{word-spacing:2.904000px;}
.ws79{word-spacing:2.970000px;}
.ws78{word-spacing:3.036000px;}
.ws1b{word-spacing:3.102000px;}
.ws58{word-spacing:3.168000px;}
.ws2f{word-spacing:3.234000px;}
.ws2b{word-spacing:3.300000px;}
.ws18{word-spacing:3.366000px;}
.ws89{word-spacing:3.432000px;}
.ws10{word-spacing:3.498000px;}
.ws69{word-spacing:3.564000px;}
.ws35{word-spacing:3.630000px;}
.ws17{word-spacing:3.696000px;}
.ws61{word-spacing:3.762000px;}
.ws73{word-spacing:3.894000px;}
.ws54{word-spacing:3.960000px;}
.ws80{word-spacing:4.026000px;}
.ws52{word-spacing:4.092000px;}
.ws75{word-spacing:4.158000px;}
.ws2d{word-spacing:4.224000px;}
.ws86{word-spacing:4.290000px;}
.ws39{word-spacing:4.356000px;}
.ws50{word-spacing:4.422000px;}
.ws1e{word-spacing:4.488000px;}
.wsb{word-spacing:4.554000px;}
.ws59{word-spacing:4.620000px;}
.ws3d{word-spacing:4.686000px;}
.ws63{word-spacing:4.752000px;}
.ws6e{word-spacing:4.884000px;}
.ws87{word-spacing:4.950000px;}
.ws81{word-spacing:5.082000px;}
.ws88{word-spacing:5.940000px;}
.ws7a{word-spacing:6.864000px;}
._11{margin-left:-554.327992px;}
._c{margin-left:-534.311992px;}
._7{margin-left:-514.296000px;}
._9{margin-left:-300.240000px;}
._2{margin-left:-19.536000px;}
._f{margin-left:-17.652000px;}
._e{margin-left:-15.318000px;}
._13{margin-left:-12.546000px;}
._10{margin-left:-9.966000px;}
._b{margin-left:-6.864000px;}
._5{margin-left:-5.040000px;}
._1{margin-left:-3.552000px;}
._6{margin-left:-2.544000px;}
._4{margin-left:-1.344000px;}
._0{width:1.776000px;}
._a{width:3.408000px;}
._3{width:4.440000px;}
._12{width:2123.088628px;}
._d{width:2143.104628px;}
._8{width:2163.121200px;}
.fc3{color:rgb(4,6,6);}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:36.000000px;}
.fs9{font-size:47.731200px;}
.fs6{font-size:54.000000px;}
.fsb{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.fsa{font-size:114.000000px;}
.fs4{font-size:120.000000px;}
.fs0{font-size:222.000000px;}
.yb{bottom:-24.236250px;}
.y0{bottom:0.000000px;}
.y2f{bottom:57.770700px;}
.y8{bottom:75.922050px;}
.y19{bottom:84.479700px;}
.y18{bottom:102.475200px;}
.y58{bottom:107.342100px;}
.y7{bottom:108.322050px;}
.y17{bottom:120.470700px;}
.y104{bottom:127.457100px;}
.y57{bottom:127.587600px;}
.y16{bottom:138.466200px;}
.y103{bottom:147.702600px;}
.y56{bottom:147.833100px;}
.y55{bottom:168.078600px;}
.y9d{bottom:168.098100px;}
.y102{bottom:188.202600px;}
.y54{bottom:188.324100px;}
.y7b{bottom:188.331600px;}
.y9c{bottom:188.343600px;}
.y15{bottom:192.466200px;}
.y101{bottom:208.452600px;}
.y53{bottom:208.569600px;}
.y9b{bottom:208.589100px;}
.y14{bottom:210.461700px;}
.y13{bottom:228.457200px;}
.y2e{bottom:228.687750px;}
.y100{bottom:228.702600px;}
.y52{bottom:228.815100px;}
.y9a{bottom:228.834600px;}
.y7a{bottom:228.839100px;}
.y12{bottom:246.452700px;}
.y2d{bottom:248.933250px;}
.yff{bottom:248.952600px;}
.y113{bottom:249.014100px;}
.y51{bottom:249.060600px;}
.y99{bottom:249.080100px;}
.y79{bottom:249.084600px;}
.yfe{bottom:269.202600px;}
.y112{bottom:269.259600px;}
.y50{bottom:269.306100px;}
.y98{bottom:269.325600px;}
.y2c{bottom:289.440750px;}
.yfd{bottom:289.452600px;}
.y111{bottom:289.505100px;}
.y4f{bottom:289.551600px;}
.y97{bottom:289.571100px;}
.y78{bottom:289.592100px;}
.y2b{bottom:309.686250px;}
.yfc{bottom:309.702600px;}
.y110{bottom:309.750600px;}
.y4e{bottom:309.797100px;}
.y96{bottom:309.816600px;}
.y77{bottom:309.837600px;}
.yfb{bottom:329.952600px;}
.ye4{bottom:329.961600px;}
.y4d{bottom:330.042600px;}
.y76{bottom:330.083100px;}
.y6{bottom:335.122050px;}
.y2a{bottom:350.193750px;}
.yfa{bottom:350.202600px;}
.ye3{bottom:350.207100px;}
.yd2{bottom:350.241600px;}
.yb1{bottom:350.249100px;}
.y10f{bottom:350.258100px;}
.y4c{bottom:350.288100px;}
.y95{bottom:350.324100px;}
.y75{bottom:350.328600px;}
.y5{bottom:360.322050px;}
.y29{bottom:370.439250px;}
.ye2{bottom:370.452600px;}
.yd1{bottom:370.487100px;}
.yb0{bottom:370.494600px;}
.y4b{bottom:370.533600px;}
.y94{bottom:370.569600px;}
.y74{bottom:370.574100px;}
.yf9{bottom:390.702600px;}
.yd0{bottom:390.732600px;}
.y4a{bottom:390.779100px;}
.y93{bottom:390.815100px;}
.y73{bottom:390.819600px;}
.y28{bottom:410.946750px;}
.yf8{bottom:410.952600px;}
.y10e{bottom:411.011100px;}
.y49{bottom:411.024600px;}
.y92{bottom:411.060600px;}
.y72{bottom:411.065100px;}
.y27{bottom:431.192250px;}
.yf7{bottom:431.202600px;}
.y10d{bottom:431.256600px;}
.y48{bottom:431.270100px;}
.y91{bottom:431.306100px;}
.y71{bottom:431.310600px;}
.yf6{bottom:451.452600px;}
.y10c{bottom:451.502100px;}
.y47{bottom:451.515600px;}
.y90{bottom:451.551600px;}
.y70{bottom:451.556100px;}
.y26{bottom:471.699750px;}
.yc8{bottom:471.702600px;}
.yaf{bottom:471.738600px;}
.y10b{bottom:471.747600px;}
.yc3{bottom:471.756600px;}
.y46{bottom:471.761100px;}
.ye1{bottom:471.768600px;}
.y8f{bottom:471.797100px;}
.y6f{bottom:471.801600px;}
.y4{bottom:486.322050px;}
.y25{bottom:491.945250px;}
.yf5{bottom:491.952600px;}
.yae{bottom:491.984100px;}
.y10a{bottom:491.993100px;}
.yc2{bottom:492.002100px;}
.y45{bottom:492.006600px;}
.ye0{bottom:492.014100px;}
.y8e{bottom:492.042600px;}
.y6e{bottom:492.047100px;}
.y3{bottom:511.522050px;}
.yf4{bottom:512.202600px;}
.yad{bottom:512.229600px;}
.y109{bottom:512.238600px;}
.yc1{bottom:512.247600px;}
.y44{bottom:512.252100px;}
.ydf{bottom:512.259600px;}
.y8d{bottom:512.288100px;}
.y6d{bottom:512.292600px;}
.yc7{bottom:532.452600px;}
.y24{bottom:532.452750px;}
.yac{bottom:532.475100px;}
.y108{bottom:532.484100px;}
.yc0{bottom:532.493100px;}
.y43{bottom:532.497600px;}
.yde{bottom:532.505100px;}
.yeb{bottom:532.517100px;}
.y8c{bottom:532.533600px;}
.y6c{bottom:532.538100px;}
.y2{bottom:536.722050px;}
.yc6{bottom:552.702600px;}
.y23{bottom:552.702750px;}
.yab{bottom:552.720600px;}
.y107{bottom:552.729600px;}
.ybf{bottom:552.738600px;}
.y42{bottom:552.743100px;}
.ydd{bottom:552.750600px;}
.yea{bottom:552.762600px;}
.y8b{bottom:552.779100px;}
.y6b{bottom:552.783600px;}
.yc5{bottom:572.952600px;}
.yaa{bottom:572.966100px;}
.y106{bottom:572.975100px;}
.ybe{bottom:572.984100px;}
.y41{bottom:572.988600px;}
.ydc{bottom:572.996100px;}
.ye9{bottom:573.008100px;}
.y8a{bottom:573.024600px;}
.y6a{bottom:573.029100px;}
.yc4{bottom:593.202600px;}
.ya9{bottom:593.211600px;}
.ybd{bottom:593.229600px;}
.y40{bottom:593.234100px;}
.ydb{bottom:593.241600px;}
.ye8{bottom:593.253600px;}
.y89{bottom:593.270100px;}
.y69{bottom:593.274600px;}
.yf3{bottom:613.452600px;}
.ya8{bottom:613.457100px;}
.ybc{bottom:613.475100px;}
.y3f{bottom:613.479600px;}
.y105{bottom:613.482600px;}
.yda{bottom:613.487100px;}
.ye7{bottom:613.499100px;}
.y88{bottom:613.515600px;}
.y68{bottom:613.520100px;}
.ya7{bottom:633.702600px;}
.y22{bottom:633.710250px;}
.ybb{bottom:633.720600px;}
.y3e{bottom:633.725100px;}
.yd9{bottom:633.732600px;}
.ye6{bottom:633.744600px;}
.y87{bottom:633.761100px;}
.y67{bottom:633.765600px;}
.ya{bottom:649.253100px;}
.yf2{bottom:653.952600px;}
.y21{bottom:653.955750px;}
.yba{bottom:653.966100px;}
.y3d{bottom:653.970600px;}
.yd8{bottom:653.978100px;}
.ye5{bottom:653.990100px;}
.y86{bottom:654.006600px;}
.y66{bottom:654.011100px;}
.y20{bottom:674.201250px;}
.yf1{bottom:674.202600px;}
.yb9{bottom:674.211600px;}
.y3c{bottom:674.216100px;}
.yd7{bottom:674.223600px;}
.ycf{bottom:674.235600px;}
.y85{bottom:674.252100px;}
.y65{bottom:674.256600px;}
.y9{bottom:682.253100px;}
.y37{bottom:694.448100px;}
.yf0{bottom:694.452600px;}
.yb8{bottom:694.457100px;}
.y3b{bottom:694.461600px;}
.yd6{bottom:694.469100px;}
.yce{bottom:694.481100px;}
.y84{bottom:694.497600px;}
.y64{bottom:694.502100px;}
.ya6{bottom:696.649200px;}
.y36{bottom:714.693600px;}
.yb7{bottom:714.702600px;}
.y3a{bottom:714.707100px;}
.y1f{bottom:714.708750px;}
.ycd{bottom:714.726600px;}
.yed{bottom:714.731100px;}
.y83{bottom:714.743100px;}
.y63{bottom:714.747600px;}
.ya5{bottom:723.656700px;}
.y39{bottom:734.952600px;}
.y1e{bottom:734.954250px;}
.ycc{bottom:734.972100px;}
.yec{bottom:734.976600px;}
.y82{bottom:734.988600px;}
.y62{bottom:734.993100px;}
.ya4{bottom:750.664200px;}
.y1{bottom:753.468000px;}
.y1d{bottom:755.199750px;}
.y35{bottom:755.201100px;}
.yef{bottom:755.202600px;}
.ycb{bottom:755.217600px;}
.yd5{bottom:755.222100px;}
.y81{bottom:755.234100px;}
.y61{bottom:755.238600px;}
.y34{bottom:775.446600px;}
.yee{bottom:775.452600px;}
.yca{bottom:775.463100px;}
.yd4{bottom:775.467600px;}
.y80{bottom:775.479600px;}
.y60{bottom:775.484100px;}
.ya3{bottom:777.671700px;}
.yb6{bottom:786.618450px;}
.y38{bottom:795.702600px;}
.y1c{bottom:795.707250px;}
.yc9{bottom:795.708600px;}
.yd3{bottom:795.713100px;}
.y7f{bottom:795.725100px;}
.y5f{bottom:795.729600px;}
.ya2{bottom:804.679200px;}
.yb5{bottom:813.625950px;}
.y1b{bottom:815.952750px;}
.y33{bottom:815.954100px;}
.y7e{bottom:815.970600px;}
.y5e{bottom:815.975100px;}
.y11{bottom:822.457200px;}
.ya1{bottom:831.679200px;}
.y32{bottom:836.199600px;}
.y7d{bottom:836.216100px;}
.y5d{bottom:836.220600px;}
.y10{bottom:840.452700px;}
.yb4{bottom:840.633450px;}
.y7c{bottom:856.461600px;}
.y5c{bottom:856.466100px;}
.ya0{bottom:867.175500px;}
.yb3{bottom:867.640950px;}
.y31{bottom:876.707100px;}
.y5b{bottom:876.711600px;}
.y9f{bottom:894.183000px;}
.yf{bottom:894.452700px;}
.yb2{bottom:894.648450px;}
.y30{bottom:896.952600px;}
.y1a{bottom:896.952750px;}
.y5a{bottom:896.957100px;}
.ye{bottom:912.448200px;}
.y59{bottom:917.202600px;}
.y9e{bottom:917.255850px;}
.yd{bottom:930.443700px;}
.yc{bottom:948.439200px;}
.h8{height:28.582031px;}
.hd{height:40.666982px;}
.h9{height:46.008000px;}
.hb{height:46.992000px;}
.he{height:51.120000px;}
.ha{height:56.232000px;}
.h3{height:59.808000px;}
.h4{height:61.344000px;}
.hc{height:66.456000px;}
.h7{height:71.568000px;}
.h5{height:92.016000px;}
.h6{height:102.240000px;}
.h2{height:189.144000px;}
.h1{height:1045.500000px;}
.h0{height:1045.771500px;}
.w4{width:724.131000px;}
.w5{width:724.500000px;}
.w2{width:764.631000px;}
.w3{width:765.000000px;}
.w0{width:769.393500px;}
.w1{width:769.500000px;}
.x26{left:-704.320776px;}
.x1f{left:-23.802302px;}
.x0{left:0.000000px;}
.xb{left:17.019750px;}
.xc{left:74.303250px;}
.x21{left:107.485500px;}
.x24{left:109.264840px;}
.x34{left:131.123394px;}
.x22{left:137.084810px;}
.x23{left:138.864150px;}
.x2f{left:149.767200px;}
.x9{left:158.800500px;}
.x3a{left:179.364150px;}
.x47{left:184.375618px;}
.x1{left:186.453000px;}
.x35{left:187.957829px;}
.x2d{left:189.762750px;}
.x10{left:191.557232px;}
.x49{left:193.924841px;}
.x36{left:199.960734px;}
.x48{left:202.341940px;}
.x19{left:211.475935px;}
.x2b{left:222.764401px;}
.x2{left:224.091150px;}
.x3b{left:225.124800px;}
.x45{left:235.514003px;}
.x7{left:237.827250px;}
.x3c{left:239.862017px;}
.x2a{left:244.792350px;}
.x4c{left:246.421500px;}
.x1e{left:248.194451px;}
.x13{left:253.315439px;}
.x4{left:256.851150px;}
.x44{left:258.697942px;}
.xd{left:261.076650px;}
.x2c{left:268.147800px;}
.x2e{left:271.320455px;}
.x6{left:279.657150px;}
.x4a{left:280.976100px;}
.x33{left:282.759450px;}
.x1b{left:284.570100px;}
.x17{left:286.934488px;}
.x30{left:291.709348px;}
.x3{left:299.061150px;}
.x4e{left:300.878324px;}
.x4b{left:305.751576px;}
.x4d{left:307.638256px;}
.x18{left:308.937079px;}
.x31{left:312.218848px;}
.x41{left:314.676919px;}
.x37{left:319.640752px;}
.x4f{left:327.622712px;}
.x1d{left:329.477701px;}
.x46{left:331.514870px;}
.x14{left:334.237722px;}
.x11{left:336.567601px;}
.x16{left:338.273868px;}
.xe{left:342.933750px;}
.x5{left:347.025150px;}
.x1c{left:351.956113px;}
.xa{left:360.001500px;}
.x15{left:364.033800px;}
.x12{left:365.248086px;}
.xf{left:368.135824px;}
.x8{left:379.081050px;}
.x40{left:681.894300px;}
.x3e{left:682.896450px;}
.x43{left:684.113850px;}
.x29{left:690.092250px;}
.x39{left:691.667550px;}
.x25{left:698.803200px;}
.x20{left:700.008600px;}
.x3f{left:1402.462596px;}
.x3d{left:1403.464596px;}
.x42{left:1404.682146px;}
.x38{left:1409.872896px;}
.x32{left:1411.018446px;}
.x27{left:1413.023196px;}
.x1a{left:1420.576745px;}
.x28{left:1451.160546px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-1.408000pt;}
.ls2{letter-spacing:-1.173333pt;}
.ls25{letter-spacing:-0.938667pt;}
.ls22{letter-spacing:-0.762667pt;}
.ls4{letter-spacing:-0.704000pt;}
.ls1{letter-spacing:-0.597333pt;}
.ls1b{letter-spacing:-0.469333pt;}
.ls8{letter-spacing:-0.410667pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.352000pt;}
.ls7{letter-spacing:-0.293333pt;}
.ls3{letter-spacing:-0.234667pt;}
.lsc{letter-spacing:-0.176000pt;}
.lsd{letter-spacing:-0.117333pt;}
.lsb{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.058667pt;}
.ls17{letter-spacing:0.117333pt;}
.ls14{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.205333pt;}
.lse{letter-spacing:0.234667pt;}
.lsa{letter-spacing:0.293333pt;}
.ls10{letter-spacing:0.352000pt;}
.ls19{letter-spacing:0.410667pt;}
.ls20{letter-spacing:0.469333pt;}
.ls1e{letter-spacing:0.528000pt;}
.ls24{letter-spacing:0.704000pt;}
.lsf{letter-spacing:1.739537pt;}
.ls18{letter-spacing:1.909248pt;}
.ls21{letter-spacing:1.920000pt;}
.ls12{letter-spacing:3.200000pt;}
.ls13{letter-spacing:3.456000pt;}
.ls23{letter-spacing:3.696000pt;}
.ls1f{letter-spacing:3.712000pt;}
.ls15{letter-spacing:3.968000pt;}
.ls1d{letter-spacing:4.224000pt;}
.ls11{letter-spacing:4.480000pt;}
.ls1a{letter-spacing:5.504000pt;}
.ws3{word-spacing:-19.968000pt;}
.ws8{word-spacing:-19.584000pt;}
.ws8b{word-spacing:-17.024000pt;}
.ws8f{word-spacing:-16.768000pt;}
.ws83{word-spacing:-16.512000pt;}
.ws8c{word-spacing:-15.232000pt;}
.ws90{word-spacing:-12.906667pt;}
.ws5{word-spacing:-12.202667pt;}
.ws4{word-spacing:-11.968000pt;}
.ws8d{word-spacing:-11.733333pt;}
.ws7{word-spacing:-11.498667pt;}
.ws8e{word-spacing:-11.440000pt;}
.ws91{word-spacing:-11.264000pt;}
.ws72{word-spacing:-11.029333pt;}
.ws32{word-spacing:-10.564506pt;}
.ws2{word-spacing:-9.984000pt;}
.ws6a{word-spacing:-5.504000pt;}
.ws3b{word-spacing:-4.480000pt;}
.ws71{word-spacing:-4.224000pt;}
.ws43{word-spacing:-3.968000pt;}
.ws7f{word-spacing:-3.712000pt;}
.ws3f{word-spacing:-3.456000pt;}
.ws3e{word-spacing:-3.200000pt;}
.wsa{word-spacing:-2.757333pt;}
.ws30{word-spacing:-2.581333pt;}
.ws12{word-spacing:-2.522667pt;}
.ws9{word-spacing:-2.464000pt;}
.ws22{word-spacing:-2.405333pt;}
.ws2e{word-spacing:-2.346667pt;}
.ws3c{word-spacing:-2.288000pt;}
.ws28{word-spacing:-2.229333pt;}
.ws3a{word-spacing:-2.170667pt;}
.ws7c{word-spacing:-2.112000pt;}
.ws85{word-spacing:-2.053333pt;}
.ws36{word-spacing:-1.994667pt;}
.ws44{word-spacing:-1.936000pt;}
.ws33{word-spacing:-1.877333pt;}
.ws1f{word-spacing:-1.818667pt;}
.ws26{word-spacing:-1.760000pt;}
.ws74{word-spacing:-1.701333pt;}
.ws4e{word-spacing:-1.642667pt;}
.ws29{word-spacing:-1.584000pt;}
.wsd{word-spacing:-1.525333pt;}
.ws5c{word-spacing:-1.466667pt;}
.ws64{word-spacing:-1.408000pt;}
.ws37{word-spacing:-1.349333pt;}
.ws84{word-spacing:-1.290667pt;}
.ws1c{word-spacing:-1.232000pt;}
.ws77{word-spacing:-1.173333pt;}
.ws5a{word-spacing:-1.114667pt;}
.ws20{word-spacing:-1.056000pt;}
.ws76{word-spacing:-0.997333pt;}
.ws2c{word-spacing:-0.938667pt;}
.ws34{word-spacing:-0.880000pt;}
.ws2a{word-spacing:-0.821333pt;}
.ws1d{word-spacing:-0.762667pt;}
.ws53{word-spacing:-0.704000pt;}
.ws27{word-spacing:-0.645333pt;}
.ws70{word-spacing:-0.586667pt;}
.ws4f{word-spacing:-0.528000pt;}
.ws60{word-spacing:-0.469333pt;}
.wsf{word-spacing:-0.410667pt;}
.ws4b{word-spacing:-0.352000pt;}
.ws19{word-spacing:-0.293333pt;}
.ws38{word-spacing:-0.234667pt;}
.ws5f{word-spacing:-0.176000pt;}
.ws48{word-spacing:-0.117333pt;}
.ws15{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.058667pt;}
.ws16{word-spacing:0.117333pt;}
.ws7b{word-spacing:0.176000pt;}
.ws55{word-spacing:0.234667pt;}
.ws24{word-spacing:0.293333pt;}
.ws7d{word-spacing:0.352000pt;}
.ws68{word-spacing:0.410667pt;}
.ws6b{word-spacing:0.469333pt;}
.ws4d{word-spacing:0.528000pt;}
.ws23{word-spacing:0.586667pt;}
.ws1{word-spacing:0.597333pt;}
.ws57{word-spacing:0.645333pt;}
.ws14{word-spacing:0.704000pt;}
.ws6d{word-spacing:0.762667pt;}
.ws49{word-spacing:0.821333pt;}
.ws21{word-spacing:0.880000pt;}
.ws6c{word-spacing:0.938667pt;}
.ws41{word-spacing:0.997333pt;}
.ws6f{word-spacing:1.056000pt;}
.ws51{word-spacing:1.114667pt;}
.ws6{word-spacing:1.173333pt;}
.ws82{word-spacing:1.232000pt;}
.ws46{word-spacing:1.290667pt;}
.ws1a{word-spacing:1.349333pt;}
.ws31{word-spacing:1.408000pt;}
.ws42{word-spacing:1.466667pt;}
.ws40{word-spacing:1.525333pt;}
.ws67{word-spacing:1.584000pt;}
.ws4c{word-spacing:1.642667pt;}
.ws5e{word-spacing:1.701333pt;}
.ws4a{word-spacing:1.760000pt;}
.ws45{word-spacing:1.818667pt;}
.ws8a{word-spacing:1.877333pt;}
.ws47{word-spacing:1.936000pt;}
.ws65{word-spacing:1.994667pt;}
.ws62{word-spacing:2.053333pt;}
.wse{word-spacing:2.112000pt;}
.ws7e{word-spacing:2.170667pt;}
.ws25{word-spacing:2.229333pt;}
.ws5b{word-spacing:2.288000pt;}
.ws13{word-spacing:2.346667pt;}
.ws66{word-spacing:2.405333pt;}
.ws56{word-spacing:2.464000pt;}
.ws11{word-spacing:2.522667pt;}
.ws5d{word-spacing:2.581333pt;}
.ws79{word-spacing:2.640000pt;}
.ws78{word-spacing:2.698667pt;}
.ws1b{word-spacing:2.757333pt;}
.ws58{word-spacing:2.816000pt;}
.ws2f{word-spacing:2.874667pt;}
.ws2b{word-spacing:2.933333pt;}
.ws18{word-spacing:2.992000pt;}
.ws89{word-spacing:3.050667pt;}
.ws10{word-spacing:3.109333pt;}
.ws69{word-spacing:3.168000pt;}
.ws35{word-spacing:3.226667pt;}
.ws17{word-spacing:3.285333pt;}
.ws61{word-spacing:3.344000pt;}
.ws73{word-spacing:3.461333pt;}
.ws54{word-spacing:3.520000pt;}
.ws80{word-spacing:3.578667pt;}
.ws52{word-spacing:3.637333pt;}
.ws75{word-spacing:3.696000pt;}
.ws2d{word-spacing:3.754667pt;}
.ws86{word-spacing:3.813333pt;}
.ws39{word-spacing:3.872000pt;}
.ws50{word-spacing:3.930667pt;}
.ws1e{word-spacing:3.989333pt;}
.wsb{word-spacing:4.048000pt;}
.ws59{word-spacing:4.106667pt;}
.ws3d{word-spacing:4.165333pt;}
.ws63{word-spacing:4.224000pt;}
.ws6e{word-spacing:4.341333pt;}
.ws87{word-spacing:4.400000pt;}
.ws81{word-spacing:4.517333pt;}
.ws88{word-spacing:5.280000pt;}
.ws7a{word-spacing:6.101333pt;}
._11{margin-left:-492.735992pt;}
._c{margin-left:-474.943993pt;}
._7{margin-left:-457.152000pt;}
._9{margin-left:-266.880000pt;}
._2{margin-left:-17.365333pt;}
._f{margin-left:-15.690667pt;}
._e{margin-left:-13.616000pt;}
._13{margin-left:-11.152000pt;}
._10{margin-left:-8.858667pt;}
._b{margin-left:-6.101333pt;}
._5{margin-left:-4.480000pt;}
._1{margin-left:-3.157333pt;}
._6{margin-left:-2.261333pt;}
._4{margin-left:-1.194667pt;}
._0{width:1.578667pt;}
._a{width:3.029333pt;}
._3{width:3.946667pt;}
._12{width:1887.189891pt;}
._d{width:1904.981892pt;}
._8{width:1922.774400pt;}
.fs5{font-size:32.000000pt;}
.fs9{font-size:42.427733pt;}
.fs6{font-size:48.000000pt;}
.fsb{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.fsa{font-size:101.333333pt;}
.fs4{font-size:106.666667pt;}
.fs0{font-size:197.333333pt;}
.yb{bottom:-21.543333pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:51.351733pt;}
.y8{bottom:67.486267pt;}
.y19{bottom:75.093067pt;}
.y18{bottom:91.089067pt;}
.y58{bottom:95.415200pt;}
.y7{bottom:96.286267pt;}
.y17{bottom:107.085067pt;}
.y104{bottom:113.295200pt;}
.y57{bottom:113.411200pt;}
.y16{bottom:123.081067pt;}
.y103{bottom:131.291200pt;}
.y56{bottom:131.407200pt;}
.y55{bottom:149.403200pt;}
.y9d{bottom:149.420533pt;}
.y102{bottom:167.291200pt;}
.y54{bottom:167.399200pt;}
.y7b{bottom:167.405867pt;}
.y9c{bottom:167.416533pt;}
.y15{bottom:171.081067pt;}
.y101{bottom:185.291200pt;}
.y53{bottom:185.395200pt;}
.y9b{bottom:185.412533pt;}
.y14{bottom:187.077067pt;}
.y13{bottom:203.073067pt;}
.y2e{bottom:203.278000pt;}
.y100{bottom:203.291200pt;}
.y52{bottom:203.391200pt;}
.y9a{bottom:203.408533pt;}
.y7a{bottom:203.412533pt;}
.y12{bottom:219.069067pt;}
.y2d{bottom:221.274000pt;}
.yff{bottom:221.291200pt;}
.y113{bottom:221.345867pt;}
.y51{bottom:221.387200pt;}
.y99{bottom:221.404533pt;}
.y79{bottom:221.408533pt;}
.yfe{bottom:239.291200pt;}
.y112{bottom:239.341867pt;}
.y50{bottom:239.383200pt;}
.y98{bottom:239.400533pt;}
.y2c{bottom:257.280667pt;}
.yfd{bottom:257.291200pt;}
.y111{bottom:257.337867pt;}
.y4f{bottom:257.379200pt;}
.y97{bottom:257.396533pt;}
.y78{bottom:257.415200pt;}
.y2b{bottom:275.276667pt;}
.yfc{bottom:275.291200pt;}
.y110{bottom:275.333867pt;}
.y4e{bottom:275.375200pt;}
.y96{bottom:275.392533pt;}
.y77{bottom:275.411200pt;}
.yfb{bottom:293.291200pt;}
.ye4{bottom:293.299200pt;}
.y4d{bottom:293.371200pt;}
.y76{bottom:293.407200pt;}
.y6{bottom:297.886267pt;}
.y2a{bottom:311.283333pt;}
.yfa{bottom:311.291200pt;}
.ye3{bottom:311.295200pt;}
.yd2{bottom:311.325867pt;}
.yb1{bottom:311.332533pt;}
.y10f{bottom:311.340533pt;}
.y4c{bottom:311.367200pt;}
.y95{bottom:311.399200pt;}
.y75{bottom:311.403200pt;}
.y5{bottom:320.286267pt;}
.y29{bottom:329.279333pt;}
.ye2{bottom:329.291200pt;}
.yd1{bottom:329.321867pt;}
.yb0{bottom:329.328533pt;}
.y4b{bottom:329.363200pt;}
.y94{bottom:329.395200pt;}
.y74{bottom:329.399200pt;}
.yf9{bottom:347.291200pt;}
.yd0{bottom:347.317867pt;}
.y4a{bottom:347.359200pt;}
.y93{bottom:347.391200pt;}
.y73{bottom:347.395200pt;}
.y28{bottom:365.286000pt;}
.yf8{bottom:365.291200pt;}
.y10e{bottom:365.343200pt;}
.y49{bottom:365.355200pt;}
.y92{bottom:365.387200pt;}
.y72{bottom:365.391200pt;}
.y27{bottom:383.282000pt;}
.yf7{bottom:383.291200pt;}
.y10d{bottom:383.339200pt;}
.y48{bottom:383.351200pt;}
.y91{bottom:383.383200pt;}
.y71{bottom:383.387200pt;}
.yf6{bottom:401.291200pt;}
.y10c{bottom:401.335200pt;}
.y47{bottom:401.347200pt;}
.y90{bottom:401.379200pt;}
.y70{bottom:401.383200pt;}
.y26{bottom:419.288667pt;}
.yc8{bottom:419.291200pt;}
.yaf{bottom:419.323200pt;}
.y10b{bottom:419.331200pt;}
.yc3{bottom:419.339200pt;}
.y46{bottom:419.343200pt;}
.ye1{bottom:419.349867pt;}
.y8f{bottom:419.375200pt;}
.y6f{bottom:419.379200pt;}
.y4{bottom:432.286267pt;}
.y25{bottom:437.284667pt;}
.yf5{bottom:437.291200pt;}
.yae{bottom:437.319200pt;}
.y10a{bottom:437.327200pt;}
.yc2{bottom:437.335200pt;}
.y45{bottom:437.339200pt;}
.ye0{bottom:437.345867pt;}
.y8e{bottom:437.371200pt;}
.y6e{bottom:437.375200pt;}
.y3{bottom:454.686267pt;}
.yf4{bottom:455.291200pt;}
.yad{bottom:455.315200pt;}
.y109{bottom:455.323200pt;}
.yc1{bottom:455.331200pt;}
.y44{bottom:455.335200pt;}
.ydf{bottom:455.341867pt;}
.y8d{bottom:455.367200pt;}
.y6d{bottom:455.371200pt;}
.yc7{bottom:473.291200pt;}
.y24{bottom:473.291333pt;}
.yac{bottom:473.311200pt;}
.y108{bottom:473.319200pt;}
.yc0{bottom:473.327200pt;}
.y43{bottom:473.331200pt;}
.yde{bottom:473.337867pt;}
.yeb{bottom:473.348533pt;}
.y8c{bottom:473.363200pt;}
.y6c{bottom:473.367200pt;}
.y2{bottom:477.086267pt;}
.yc6{bottom:491.291200pt;}
.y23{bottom:491.291333pt;}
.yab{bottom:491.307200pt;}
.y107{bottom:491.315200pt;}
.ybf{bottom:491.323200pt;}
.y42{bottom:491.327200pt;}
.ydd{bottom:491.333867pt;}
.yea{bottom:491.344533pt;}
.y8b{bottom:491.359200pt;}
.y6b{bottom:491.363200pt;}
.yc5{bottom:509.291200pt;}
.yaa{bottom:509.303200pt;}
.y106{bottom:509.311200pt;}
.ybe{bottom:509.319200pt;}
.y41{bottom:509.323200pt;}
.ydc{bottom:509.329867pt;}
.ye9{bottom:509.340533pt;}
.y8a{bottom:509.355200pt;}
.y6a{bottom:509.359200pt;}
.yc4{bottom:527.291200pt;}
.ya9{bottom:527.299200pt;}
.ybd{bottom:527.315200pt;}
.y40{bottom:527.319200pt;}
.ydb{bottom:527.325867pt;}
.ye8{bottom:527.336533pt;}
.y89{bottom:527.351200pt;}
.y69{bottom:527.355200pt;}
.yf3{bottom:545.291200pt;}
.ya8{bottom:545.295200pt;}
.ybc{bottom:545.311200pt;}
.y3f{bottom:545.315200pt;}
.y105{bottom:545.317867pt;}
.yda{bottom:545.321867pt;}
.ye7{bottom:545.332533pt;}
.y88{bottom:545.347200pt;}
.y68{bottom:545.351200pt;}
.ya7{bottom:563.291200pt;}
.y22{bottom:563.298000pt;}
.ybb{bottom:563.307200pt;}
.y3e{bottom:563.311200pt;}
.yd9{bottom:563.317867pt;}
.ye6{bottom:563.328533pt;}
.y87{bottom:563.343200pt;}
.y67{bottom:563.347200pt;}
.ya{bottom:577.113867pt;}
.yf2{bottom:581.291200pt;}
.y21{bottom:581.294000pt;}
.yba{bottom:581.303200pt;}
.y3d{bottom:581.307200pt;}
.yd8{bottom:581.313867pt;}
.ye5{bottom:581.324533pt;}
.y86{bottom:581.339200pt;}
.y66{bottom:581.343200pt;}
.y20{bottom:599.290000pt;}
.yf1{bottom:599.291200pt;}
.yb9{bottom:599.299200pt;}
.y3c{bottom:599.303200pt;}
.yd7{bottom:599.309867pt;}
.ycf{bottom:599.320533pt;}
.y85{bottom:599.335200pt;}
.y65{bottom:599.339200pt;}
.y9{bottom:606.447200pt;}
.y37{bottom:617.287200pt;}
.yf0{bottom:617.291200pt;}
.yb8{bottom:617.295200pt;}
.y3b{bottom:617.299200pt;}
.yd6{bottom:617.305867pt;}
.yce{bottom:617.316533pt;}
.y84{bottom:617.331200pt;}
.y64{bottom:617.335200pt;}
.ya6{bottom:619.243733pt;}
.y36{bottom:635.283200pt;}
.yb7{bottom:635.291200pt;}
.y3a{bottom:635.295200pt;}
.y1f{bottom:635.296667pt;}
.ycd{bottom:635.312533pt;}
.yed{bottom:635.316533pt;}
.y83{bottom:635.327200pt;}
.y63{bottom:635.331200pt;}
.ya5{bottom:643.250400pt;}
.y39{bottom:653.291200pt;}
.y1e{bottom:653.292667pt;}
.ycc{bottom:653.308533pt;}
.yec{bottom:653.312533pt;}
.y82{bottom:653.323200pt;}
.y62{bottom:653.327200pt;}
.ya4{bottom:667.257067pt;}
.y1{bottom:669.749333pt;}
.y1d{bottom:671.288667pt;}
.y35{bottom:671.289867pt;}
.yef{bottom:671.291200pt;}
.ycb{bottom:671.304533pt;}
.yd5{bottom:671.308533pt;}
.y81{bottom:671.319200pt;}
.y61{bottom:671.323200pt;}
.y34{bottom:689.285867pt;}
.yee{bottom:689.291200pt;}
.yca{bottom:689.300533pt;}
.yd4{bottom:689.304533pt;}
.y80{bottom:689.315200pt;}
.y60{bottom:689.319200pt;}
.ya3{bottom:691.263733pt;}
.yb6{bottom:699.216400pt;}
.y38{bottom:707.291200pt;}
.y1c{bottom:707.295333pt;}
.yc9{bottom:707.296533pt;}
.yd3{bottom:707.300533pt;}
.y7f{bottom:707.311200pt;}
.y5f{bottom:707.315200pt;}
.ya2{bottom:715.270400pt;}
.yb5{bottom:723.223067pt;}
.y1b{bottom:725.291333pt;}
.y33{bottom:725.292533pt;}
.y7e{bottom:725.307200pt;}
.y5e{bottom:725.311200pt;}
.y11{bottom:731.073067pt;}
.ya1{bottom:739.270400pt;}
.y32{bottom:743.288533pt;}
.y7d{bottom:743.303200pt;}
.y5d{bottom:743.307200pt;}
.y10{bottom:747.069067pt;}
.yb4{bottom:747.229733pt;}
.y7c{bottom:761.299200pt;}
.y5c{bottom:761.303200pt;}
.ya0{bottom:770.822667pt;}
.yb3{bottom:771.236400pt;}
.y31{bottom:779.295200pt;}
.y5b{bottom:779.299200pt;}
.y9f{bottom:794.829333pt;}
.yf{bottom:795.069067pt;}
.yb2{bottom:795.243067pt;}
.y30{bottom:797.291200pt;}
.y1a{bottom:797.291333pt;}
.y5a{bottom:797.295200pt;}
.ye{bottom:811.065067pt;}
.y59{bottom:815.291200pt;}
.y9e{bottom:815.338533pt;}
.yd{bottom:827.061067pt;}
.yc{bottom:843.057067pt;}
.h8{height:25.406250pt;}
.hd{height:36.148429pt;}
.h9{height:40.896000pt;}
.hb{height:41.770667pt;}
.he{height:45.440000pt;}
.ha{height:49.984000pt;}
.h3{height:53.162667pt;}
.h4{height:54.528000pt;}
.hc{height:59.072000pt;}
.h7{height:63.616000pt;}
.h5{height:81.792000pt;}
.h6{height:90.880000pt;}
.h2{height:168.128000pt;}
.h1{height:929.333333pt;}
.h0{height:929.574667pt;}
.w4{width:643.672000pt;}
.w5{width:644.000000pt;}
.w2{width:679.672000pt;}
.w3{width:680.000000pt;}
.w0{width:683.905333pt;}
.w1{width:684.000000pt;}
.x26{left:-626.062912pt;}
.x1f{left:-21.157602pt;}
.x0{left:0.000000pt;}
.xb{left:15.128667pt;}
.xc{left:66.047333pt;}
.x21{left:95.542667pt;}
.x24{left:97.124302pt;}
.x34{left:116.554128pt;}
.x22{left:121.853165pt;}
.x23{left:123.434800pt;}
.x2f{left:133.126400pt;}
.x9{left:141.156000pt;}
.x3a{left:159.434800pt;}
.x47{left:163.889438pt;}
.x1{left:165.736000pt;}
.x35{left:167.073626pt;}
.x2d{left:168.678000pt;}
.x10{left:170.273095pt;}
.x49{left:172.377636pt;}
.x36{left:177.742875pt;}
.x48{left:179.859502pt;}
.x19{left:187.978609pt;}
.x2b{left:198.012801pt;}
.x2{left:199.192133pt;}
.x3b{left:200.110933pt;}
.x45{left:209.345780pt;}
.x7{left:211.402000pt;}
.x3c{left:213.210682pt;}
.x2a{left:217.593200pt;}
.x4c{left:219.041333pt;}
.x1e{left:220.617290pt;}
.x13{left:225.169279pt;}
.x4{left:228.312133pt;}
.x44{left:229.953726pt;}
.xd{left:232.068133pt;}
.x2c{left:238.353600pt;}
.x2e{left:241.173738pt;}
.x6{left:248.584133pt;}
.x4a{left:249.756533pt;}
.x33{left:251.341733pt;}
.x1b{left:252.951200pt;}
.x17{left:255.052878pt;}
.x30{left:259.297198pt;}
.x3{left:265.832133pt;}
.x4e{left:267.447399pt;}
.x4b{left:271.779179pt;}
.x4d{left:273.456227pt;}
.x18{left:274.610737pt;}
.x31{left:277.527865pt;}
.x41{left:279.712817pt;}
.x37{left:284.125113pt;}
.x4f{left:291.220189pt;}
.x1d{left:292.869068pt;}
.x46{left:294.679885pt;}
.x14{left:297.100197pt;}
.x11{left:299.171201pt;}
.x16{left:300.687883pt;}
.xe{left:304.830000pt;}
.x5{left:308.466800pt;}
.x1c{left:312.849878pt;}
.xa{left:320.001333pt;}
.x15{left:323.585600pt;}
.x12{left:324.664965pt;}
.xf{left:327.231843pt;}
.x8{left:336.960933pt;}
.x40{left:606.128267pt;}
.x3e{left:607.019067pt;}
.x43{left:608.101200pt;}
.x29{left:613.415333pt;}
.x39{left:614.815600pt;}
.x25{left:621.158400pt;}
.x20{left:622.229867pt;}
.x3f{left:1246.633419pt;}
.x3d{left:1247.524085pt;}
.x42{left:1248.606352pt;}
.x38{left:1253.220352pt;}
.x32{left:1254.238619pt;}
.x27{left:1256.020618pt;}
.x1a{left:1262.734885pt;}
.x28{left:1289.920485pt;}
}




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