
    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_a21cc8399b738e413985080f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_6e4cc3a4f189dfd3a8dc3ca7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904785;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_1d3adf2b21084fced77ac8b1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_c45d11b6f2815bf23fbeabbd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851000;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_e01c918745218e0bae7efe03.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_717ceaffdda904a11c143e2d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.822000;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_1d82220559ac69bf97e95a87.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_b890b6beac7fe98417aea6e2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.904785;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_2bad3e8cfb654d517973f82b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.082031;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_0f8c89849e503ce7f36950ee.woff')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_3cb013cf006a9521c9bcae7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.678711;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_12b0a7537da59d38c8e86352.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666992;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_45cecf0cfd9cb264d9581958.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-16.830000px;}
.v2{vertical-align:-14.496000px;}
.v6{vertical-align:-9.624000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.232000px;}
.v5{vertical-align:24.312000px;}
.v1{vertical-align:175.200600px;}
.ls30{letter-spacing:-1.512000px;}
.ls2f{letter-spacing:-1.368000px;}
.ls2b{letter-spacing:-1.152000px;}
.ls2c{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-1.008000px;}
.ls34{letter-spacing:-0.936000px;}
.ls33{letter-spacing:-0.864000px;}
.ls14{letter-spacing:-0.792000px;}
.ls21{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.648000px;}
.ls1f{letter-spacing:-0.576000px;}
.ls20{letter-spacing:-0.504000px;}
.ls12{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls38{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.240000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.120000px;}
.ls19{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.ls35{letter-spacing:0.240000px;}
.ls26{letter-spacing:0.252600px;}
.ls1d{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.466200px;}
.lsc{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.516000px;}
.ls11{letter-spacing:0.554400px;}
.lsb{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.792000px;}
.ls16{letter-spacing:0.864000px;}
.ls25{letter-spacing:0.936000px;}
.ls18{letter-spacing:1.008000px;}
.ls28{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.296000px;}
.ls32{letter-spacing:2.923200px;}
.ls36{letter-spacing:3.192000px;}
.ls37{letter-spacing:3.388800px;}
.ls2e{letter-spacing:3.420000px;}
.lse{letter-spacing:4.248000px;}
.ls1{letter-spacing:4.512000px;}
.ls31{letter-spacing:4.752000px;}
.ls27{letter-spacing:7.524000px;}
.lsa{letter-spacing:7.645800px;}
.ls7{letter-spacing:8.460000px;}
.ls0{letter-spacing:10.740000px;}
.ls2d{letter-spacing:10.800000px;}
.ls2{letter-spacing:16.594767px;}
.ls29{letter-spacing:23.112000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws37{word-spacing:-60.000000px;}
.ws43{word-spacing:-25.320000px;}
.wsf{word-spacing:-21.024000px;}
.ws10{word-spacing:-20.232000px;}
.ws32{word-spacing:-18.720000px;}
.ws13{word-spacing:-18.504000px;}
.ws1{word-spacing:-18.432000px;}
.ws26{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.216000px;}
.ws40{word-spacing:-18.072000px;}
.ws27{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.784000px;}
.ws41{word-spacing:-17.712000px;}
.ws1d{word-spacing:-17.568000px;}
.ws25{word-spacing:-17.496000px;}
.ws12{word-spacing:-17.424000px;}
.ws38{word-spacing:-16.704000px;}
.ws3d{word-spacing:-16.416000px;}
.ws2f{word-spacing:-14.162400px;}
.ws44{word-spacing:-13.488000px;}
.ws4a{word-spacing:-12.096000px;}
.ws30{word-spacing:-11.856000px;}
.ws3c{word-spacing:-10.800000px;}
.ws45{word-spacing:-9.441600px;}
.wse{word-spacing:-8.460000px;}
.ws42{word-spacing:-3.528000px;}
.ws31{word-spacing:-1.296000px;}
.ws34{word-spacing:-1.080000px;}
.ws1e{word-spacing:-1.008000px;}
.ws36{word-spacing:-0.936000px;}
.ws1f{word-spacing:-0.864000px;}
.wsd{word-spacing:-0.792000px;}
.ws9{word-spacing:-0.720000px;}
.wsa{word-spacing:-0.648000px;}
.ws16{word-spacing:-0.576000px;}
.ws15{word-spacing:-0.554400px;}
.ws17{word-spacing:-0.504000px;}
.ws7{word-spacing:-0.480000px;}
.ws22{word-spacing:-0.432000px;}
.ws33{word-spacing:-0.360000px;}
.ws2e{word-spacing:-0.288000px;}
.ws4b{word-spacing:-0.240000px;}
.ws1a{word-spacing:-0.216000px;}
.ws28{word-spacing:-0.144000px;}
.wsb{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws20{word-spacing:0.072000px;}
.ws8{word-spacing:0.120000px;}
.ws2d{word-spacing:0.144000px;}
.ws21{word-spacing:0.216000px;}
.ws1c{word-spacing:0.240000px;}
.ws24{word-spacing:0.288000px;}
.ws4d{word-spacing:0.300000px;}
.ws19{word-spacing:0.360000px;}
.ws4c{word-spacing:0.384000px;}
.ws18{word-spacing:0.432000px;}
.ws2a{word-spacing:0.504000px;}
.ws29{word-spacing:0.576000px;}
.ws23{word-spacing:0.648000px;}
.ws2b{word-spacing:0.720000px;}
.ws1b{word-spacing:0.792000px;}
.ws46{word-spacing:0.864000px;}
.ws47{word-spacing:0.936000px;}
.ws39{word-spacing:1.008000px;}
.ws3b{word-spacing:1.080000px;}
.ws3a{word-spacing:1.152000px;}
.ws3e{word-spacing:1.368000px;}
.ws48{word-spacing:1.440000px;}
.ws3f{word-spacing:1.512000px;}
.wsc{word-spacing:1.728000px;}
.ws6{word-spacing:1.800000px;}
.ws49{word-spacing:3.360000px;}
.ws2c{word-spacing:3.744000px;}
.ws4{word-spacing:4.200000px;}
.ws14{word-spacing:6.624000px;}
.ws0{word-spacing:8.376000px;}
.ws35{word-spacing:10.152000px;}
._0{margin-left:-940.386000px;}
._14{margin-left:-17.784000px;}
._11{margin-left:-15.019200px;}
._18{margin-left:-11.677200px;}
._17{margin-left:-10.242000px;}
._f{margin-left:-8.442000px;}
._b{margin-left:-7.300800px;}
._1{margin-left:-5.964000px;}
._e{margin-left:-4.783200px;}
._d{margin-left:-3.601200px;}
._6{margin-left:-2.472000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._5{width:3.720000px;}
._7{width:5.179200px;}
._a{width:6.732000px;}
._4{width:8.520000px;}
._9{width:9.560400px;}
._8{width:10.778400px;}
._c{width:11.786400px;}
._13{width:13.021200px;}
._15{width:14.506800px;}
._16{width:15.975600px;}
._12{width:31.646100px;}
._1a{width:47.796000px;}
._19{width:56.890800px;}
._1b{width:65.305200px;}
._10{width:201.564000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:414.925800px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y46{bottom:117.000000px;}
.y8a{bottom:117.078000px;}
.y137{bottom:119.760000px;}
.y15a{bottom:119.922000px;}
.y20{bottom:120.062550px;}
.y186{bottom:121.188000px;}
.yf2{bottom:121.207500px;}
.y1b0{bottom:122.622000px;}
.y45{bottom:132.000000px;}
.y159{bottom:134.622000px;}
.yd0{bottom:136.207500px;}
.y185{bottom:136.332000px;}
.y89{bottom:138.984000px;}
.yf1{bottom:139.500000px;}
.y1af{bottom:141.522000px;}
.y136{bottom:141.810000px;}
.y1f{bottom:141.968550px;}
.yad{bottom:147.000000px;}
.y158{bottom:149.322000px;}
.y44{bottom:151.207500px;}
.y184{bottom:151.476000px;}
.yf0{bottom:158.707500px;}
.y1ae{bottom:160.422000px;}
.y88{bottom:160.890000px;}
.yac{bottom:162.000000px;}
.y1e{bottom:163.868550px;}
.y135{bottom:164.004000px;}
.y157{bottom:164.022000px;}
.y183{bottom:166.620000px;}
.ycf{bottom:176.880000px;}
.yab{bottom:177.000000px;}
.y156{bottom:178.722000px;}
.y1ad{bottom:179.322000px;}
.y182{bottom:181.764000px;}
.y87{bottom:182.796000px;}
.y113{bottom:184.500000px;}
.y134{bottom:186.198000px;}
.y43{bottom:187.536000px;}
.y64{bottom:188.394000px;}
.y155{bottom:193.422000px;}
.yaa{bottom:196.207500px;}
.y181{bottom:196.908000px;}
.yce{bottom:199.686000px;}
.yef{bottom:201.462000px;}
.y86{bottom:204.702000px;}
.y112{bottom:207.000000px;}
.y1d{bottom:207.542550px;}
.y154{bottom:208.128000px;}
.y133{bottom:208.392000px;}
.y1ac{bottom:209.622000px;}
.y42{bottom:210.036000px;}
.y63{bottom:210.138000px;}
.y180{bottom:212.052000px;}
.ycd{bottom:222.492000px;}
.y153{bottom:222.828000px;}
.yee{bottom:223.818000px;}
.y85{bottom:226.608000px;}
.y17f{bottom:227.196000px;}
.y1c{bottom:229.448550px;}
.y111{bottom:229.500000px;}
.y132{bottom:230.586000px;}
.y41{bottom:231.780000px;}
.y62{bottom:231.882000px;}
.ya9{bottom:234.234000px;}
.y152{bottom:237.528000px;}
.y17e{bottom:242.340000px;}
.ycc{bottom:245.298000px;}
.yed{bottom:246.174000px;}
.y84{bottom:248.514000px;}
.y1ab{bottom:251.172000px;}
.y1b{bottom:251.354550px;}
.y110{bottom:252.000000px;}
.y151{bottom:252.228000px;}
.y131{bottom:252.780000px;}
.y40{bottom:253.524000px;}
.y61{bottom:253.626000px;}
.ya8{bottom:256.590000px;}
.y17d{bottom:257.484000px;}
.y150{bottom:266.928000px;}
.ycb{bottom:268.104000px;}
.yec{bottom:268.530000px;}
.y1aa{bottom:270.072000px;}
.y83{bottom:270.420000px;}
.y17c{bottom:272.628000px;}
.y1a{bottom:273.260550px;}
.y10f{bottom:274.500000px;}
.y130{bottom:274.974000px;}
.y3f{bottom:275.268000px;}
.y60{bottom:275.370000px;}
.ya7{bottom:278.946000px;}
.y14f{bottom:281.628000px;}
.y17b{bottom:287.772000px;}
.y1a9{bottom:288.972000px;}
.yeb{bottom:290.886000px;}
.yca{bottom:290.910000px;}
.y82{bottom:292.326000px;}
.y19{bottom:295.166550px;}
.y14e{bottom:296.328000px;}
.y10e{bottom:297.000000px;}
.y3e{bottom:297.012000px;}
.y5f{bottom:297.114000px;}
.y12f{bottom:297.168000px;}
.ya6{bottom:301.302000px;}
.y17a{bottom:302.916000px;}
.y1a8{bottom:307.872000px;}
.y14d{bottom:311.028000px;}
.yea{bottom:313.242000px;}
.yc9{bottom:313.716000px;}
.y81{bottom:314.232000px;}
.y18{bottom:317.072550px;}
.y179{bottom:318.060000px;}
.y3d{bottom:318.756000px;}
.y5e{bottom:318.858000px;}
.y12e{bottom:319.362000px;}
.y10d{bottom:319.500000px;}
.ya5{bottom:323.658000px;}
.y14c{bottom:325.728000px;}
.y1a7{bottom:326.772000px;}
.y178{bottom:333.204000px;}
.ye9{bottom:335.598000px;}
.y80{bottom:336.138000px;}
.yc8{bottom:336.522000px;}
.y17{bottom:338.978550px;}
.y14b{bottom:340.428000px;}
.y5d{bottom:340.602000px;}
.y3c{bottom:340.632000px;}
.y12d{bottom:341.556000px;}
.y10c{bottom:342.000000px;}
.y1a6{bottom:345.672000px;}
.ya4{bottom:346.014000px;}
.y177{bottom:348.348000px;}
.y14a{bottom:355.128000px;}
.ye8{bottom:357.954000px;}
.y7f{bottom:358.044000px;}
.yc7{bottom:359.328000px;}
.y16{bottom:360.884550px;}
.y5c{bottom:362.346000px;}
.y3b{bottom:362.376000px;}
.y176{bottom:363.492000px;}
.y12c{bottom:363.750000px;}
.y10b{bottom:364.500000px;}
.y1a5{bottom:364.572000px;}
.ya3{bottom:368.370000px;}
.y149{bottom:369.828000px;}
.y175{bottom:378.636000px;}
.y7e{bottom:379.950000px;}
.ye7{bottom:380.310000px;}
.yc6{bottom:382.134000px;}
.y15{bottom:382.790550px;}
.y1a4{bottom:383.472000px;}
.y5b{bottom:384.090000px;}
.y3a{bottom:384.120000px;}
.y148{bottom:384.528000px;}
.y12b{bottom:385.950000px;}
.y10a{bottom:387.000000px;}
.ya2{bottom:390.726000px;}
.y174{bottom:393.780000px;}
.y147{bottom:399.228000px;}
.y7d{bottom:401.856000px;}
.y1a3{bottom:402.372000px;}
.ye6{bottom:402.666000px;}
.y14{bottom:404.696550px;}
.yc5{bottom:404.940000px;}
.y5a{bottom:405.834000px;}
.y39{bottom:405.864000px;}
.y12a{bottom:408.150000px;}
.y173{bottom:408.924000px;}
.y109{bottom:409.500000px;}
.ya1{bottom:413.082000px;}
.y146{bottom:413.928000px;}
.y1a2{bottom:421.272000px;}
.y7c{bottom:423.762000px;}
.y172{bottom:424.068000px;}
.ye5{bottom:425.022000px;}
.y13{bottom:426.602550px;}
.y59{bottom:427.578000px;}
.y38{bottom:427.608000px;}
.yc4{bottom:427.746000px;}
.y145{bottom:428.628000px;}
.y108{bottom:432.000000px;}
.ya0{bottom:435.438000px;}
.y171{bottom:439.212000px;}
.y1a1{bottom:440.172000px;}
.y144{bottom:443.328000px;}
.y7b{bottom:445.668000px;}
.ye4{bottom:447.378000px;}
.y12{bottom:448.508550px;}
.y58{bottom:449.322000px;}
.y37{bottom:449.352000px;}
.yc3{bottom:450.552000px;}
.y129{bottom:452.466000px;}
.y170{bottom:454.356000px;}
.y107{bottom:454.500000px;}
.y9f{bottom:457.794000px;}
.y1a0{bottom:459.072000px;}
.y143{bottom:464.400000px;}
.y7a{bottom:467.574000px;}
.y16f{bottom:469.500000px;}
.ye3{bottom:469.734000px;}
.y11{bottom:470.414550px;}
.y57{bottom:471.066000px;}
.y36{bottom:471.096000px;}
.yc2{bottom:473.196000px;}
.y128{bottom:474.660000px;}
.y106{bottom:477.000000px;}
.y19f{bottom:477.972000px;}
.y9e{bottom:480.102000px;}
.y16e{bottom:484.500000px;}
.y79{bottom:489.480000px;}
.ye2{bottom:492.090000px;}
.y10{bottom:492.320550px;}
.y56{bottom:492.810000px;}
.y35{bottom:492.840000px;}
.yc1{bottom:495.840000px;}
.y127{bottom:496.854000px;}
.y19e{bottom:496.872000px;}
.y105{bottom:499.500000px;}
.y9d{bottom:502.458000px;}
.y142{bottom:508.500000px;}
.y78{bottom:511.386000px;}
.yf{bottom:514.226550px;}
.ye1{bottom:514.446000px;}
.y16d{bottom:514.500000px;}
.y55{bottom:514.554000px;}
.y34{bottom:514.584000px;}
.y19d{bottom:515.772000px;}
.yc0{bottom:518.484000px;}
.y126{bottom:519.048000px;}
.y104{bottom:522.000000px;}
.y9c{bottom:524.814000px;}
.y16c{bottom:529.500000px;}
.y141{bottom:530.550000px;}
.y77{bottom:533.292000px;}
.y19c{bottom:534.672000px;}
.ye{bottom:536.132550px;}
.y54{bottom:536.298000px;}
.y33{bottom:536.328000px;}
.ye0{bottom:536.802000px;}
.ybf{bottom:541.128000px;}
.y125{bottom:541.242000px;}
.y103{bottom:544.500000px;}
.y9b{bottom:547.170000px;}
.y140{bottom:552.600000px;}
.y19b{bottom:553.572000px;}
.y76{bottom:555.198000px;}
.yd{bottom:558.038550px;}
.y53{bottom:558.042000px;}
.y32{bottom:558.072000px;}
.ydf{bottom:559.158000px;}
.y16b{bottom:559.500000px;}
.y124{bottom:563.436000px;}
.ybe{bottom:563.772000px;}
.y102{bottom:567.000000px;}
.y9a{bottom:569.526000px;}
.y19a{bottom:572.472000px;}
.y16a{bottom:574.500000px;}
.y13f{bottom:574.650000px;}
.y75{bottom:577.104000px;}
.y52{bottom:579.786000px;}
.y31{bottom:579.816000px;}
.yc{bottom:579.944550px;}
.yde{bottom:581.514000px;}
.y123{bottom:585.630000px;}
.ybd{bottom:586.416000px;}
.y101{bottom:589.500000px;}
.y199{bottom:591.372000px;}
.y99{bottom:591.882000px;}
.y13e{bottom:596.700000px;}
.y74{bottom:599.010000px;}
.y51{bottom:601.530000px;}
.y30{bottom:601.560000px;}
.yb{bottom:601.850550px;}
.ydd{bottom:603.870000px;}
.y169{bottom:604.500000px;}
.y122{bottom:607.824000px;}
.ybc{bottom:609.060000px;}
.y198{bottom:610.272000px;}
.y100{bottom:612.000000px;}
.y98{bottom:614.238000px;}
.y13d{bottom:618.750000px;}
.y168{bottom:619.500000px;}
.y73{bottom:620.916000px;}
.y50{bottom:623.274000px;}
.y2f{bottom:623.304000px;}
.ya{bottom:623.756550px;}
.y8{bottom:623.768400px;}
.ydc{bottom:626.226000px;}
.y197{bottom:629.172000px;}
.y121{bottom:630.018000px;}
.ybb{bottom:631.704000px;}
.yff{bottom:634.500000px;}
.y97{bottom:636.594000px;}
.y13c{bottom:640.800000px;}
.y72{bottom:642.822000px;}
.y4f{bottom:645.018000px;}
.y2e{bottom:645.048000px;}
.y9{bottom:645.662550px;}
.y196{bottom:648.072000px;}
.ydb{bottom:648.582000px;}
.y167{bottom:649.500000px;}
.y120{bottom:652.212000px;}
.yba{bottom:654.348000px;}
.yfe{bottom:657.000000px;}
.y96{bottom:658.950000px;}
.y13b{bottom:662.850000px;}
.y166{bottom:664.500000px;}
.y71{bottom:664.728000px;}
.y4e{bottom:666.762000px;}
.y2d{bottom:666.792000px;}
.y195{bottom:666.972000px;}
.yda{bottom:670.938000px;}
.y11f{bottom:674.406000px;}
.yb9{bottom:676.992000px;}
.yfd{bottom:679.500000px;}
.y95{bottom:681.300000px;}
.y13a{bottom:684.900000px;}
.y194{bottom:685.872000px;}
.y70{bottom:686.634000px;}
.y4d{bottom:688.506000px;}
.y2c{bottom:688.536000px;}
.yd9{bottom:693.294000px;}
.y165{bottom:694.500000px;}
.y11e{bottom:696.600000px;}
.yb8{bottom:699.636000px;}
.yfc{bottom:702.000000px;}
.y193{bottom:704.772000px;}
.y139{bottom:706.950000px;}
.y6f{bottom:708.540000px;}
.y164{bottom:709.500000px;}
.y2b{bottom:710.280000px;}
.y4c{bottom:710.310000px;}
.y7{bottom:711.368550px;}
.yd8{bottom:715.620000px;}
.y11d{bottom:718.794000px;}
.yb7{bottom:722.280000px;}
.y192{bottom:723.672000px;}
.yfb{bottom:724.500000px;}
.y94{bottom:725.946000px;}
.y138{bottom:729.000000px;}
.y6{bottom:729.518550px;}
.y6e{bottom:730.446000px;}
.y2a{bottom:732.024000px;}
.y4b{bottom:732.054000px;}
.yd7{bottom:737.976000px;}
.y163{bottom:739.500000px;}
.y191{bottom:742.572000px;}
.yb6{bottom:744.924000px;}
.yfa{bottom:747.000000px;}
.y93{bottom:748.302000px;}
.y11c{bottom:751.050000px;}
.y6d{bottom:752.352000px;}
.y29{bottom:753.768000px;}
.y4a{bottom:753.798000px;}
.y162{bottom:754.500000px;}
.yd6{bottom:760.332000px;}
.yb5{bottom:767.568000px;}
.y190{bottom:767.874000px;}
.yf9{bottom:769.500000px;}
.y92{bottom:770.658000px;}
.y5{bottom:771.054300px;}
.y11b{bottom:773.100000px;}
.y6c{bottom:774.258000px;}
.y28{bottom:775.512000px;}
.y49{bottom:775.542000px;}
.y161{bottom:784.500000px;}
.yb4{bottom:790.212000px;}
.yf8{bottom:792.000000px;}
.y4{bottom:792.954300px;}
.y91{bottom:793.014000px;}
.yd5{bottom:793.038000px;}
.y11a{bottom:795.150000px;}
.y6b{bottom:796.164000px;}
.y27{bottom:797.256000px;}
.y48{bottom:797.286000px;}
.y160{bottom:799.500000px;}
.yb3{bottom:812.856000px;}
.y18f{bottom:813.174000px;}
.yf7{bottom:814.500000px;}
.y90{bottom:815.370000px;}
.yd4{bottom:815.394000px;}
.y119{bottom:817.200000px;}
.y6a{bottom:818.070000px;}
.y26{bottom:819.000000px;}
.y47{bottom:819.030000px;}
.y18e{bottom:828.330000px;}
.y15f{bottom:829.500000px;}
.yb2{bottom:835.476000px;}
.yf6{bottom:837.000000px;}
.y8f{bottom:837.726000px;}
.yd3{bottom:837.750000px;}
.y118{bottom:839.250000px;}
.y69{bottom:839.976000px;}
.y25{bottom:840.774000px;}
.y18d{bottom:843.474000px;}
.y15e{bottom:844.500000px;}
.yb1{bottom:858.282000px;}
.y18c{bottom:858.618000px;}
.y3{bottom:859.500000px;}
.y8e{bottom:860.082000px;}
.yd2{bottom:860.100000px;}
.y117{bottom:861.300000px;}
.y68{bottom:861.882000px;}
.y24{bottom:862.518000px;}
.y18b{bottom:873.762000px;}
.y15d{bottom:874.500000px;}
.yb0{bottom:881.088000px;}
.yf5{bottom:882.000000px;}
.y8d{bottom:882.438000px;}
.yd1{bottom:882.450000px;}
.y116{bottom:883.350000px;}
.y67{bottom:883.788000px;}
.y23{bottom:884.262000px;}
.y18a{bottom:888.906000px;}
.y2{bottom:889.500000px;}
.yaf{bottom:903.894000px;}
.y189{bottom:904.062000px;}
.yf4{bottom:904.500000px;}
.y8c{bottom:904.794000px;}
.y115{bottom:905.400000px;}
.y66{bottom:905.694000px;}
.y22{bottom:906.006000px;}
.y188{bottom:919.206000px;}
.y15c{bottom:919.500000px;}
.yae{bottom:926.700000px;}
.yf3{bottom:927.000000px;}
.y8b{bottom:927.150000px;}
.y114{bottom:927.450000px;}
.y65{bottom:927.600000px;}
.y21{bottom:927.750000px;}
.y187{bottom:934.350000px;}
.y15b{bottom:934.500000px;}
.ha{height:23.985938px;}
.h8{height:30.313623px;}
.hf{height:39.072000px;}
.h1{height:40.312500px;}
.h9{height:40.757812px;}
.h3{height:50.580000px;}
.h5{height:50.947266px;}
.h4{height:61.136719px;}
.h7{height:66.027703px;}
.hc{height:66.651703px;}
.hd{height:66.675703px;}
.hb{height:66.747703px;}
.he{height:67.107703px;}
.h2{height:101.894531px;}
.h6{height:290.448060px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x6{left:82.386000px;}
.x8{left:97.255350px;}
.x2{left:112.500000px;}
.x4{left:127.371300px;}
.x9{left:135.526950px;}
.x7{left:142.255350px;}
.x3{left:156.585300px;}
.x1{left:635.390550px;}
@media print{
.v4{vertical-align:-14.960000pt;}
.v2{vertical-align:-12.885333pt;}
.v6{vertical-align:-8.554667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:20.650667pt;}
.v5{vertical-align:21.610667pt;}
.v1{vertical-align:155.733867pt;}
.ls30{letter-spacing:-1.344000pt;}
.ls2f{letter-spacing:-1.216000pt;}
.ls2b{letter-spacing:-1.024000pt;}
.ls2c{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.896000pt;}
.ls34{letter-spacing:-0.832000pt;}
.ls33{letter-spacing:-0.768000pt;}
.ls14{letter-spacing:-0.704000pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls1f{letter-spacing:-0.512000pt;}
.ls20{letter-spacing:-0.448000pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls38{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.213333pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.106667pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls35{letter-spacing:0.213333pt;}
.ls26{letter-spacing:0.224533pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.414400pt;}
.lsc{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.458667pt;}
.ls11{letter-spacing:0.492800pt;}
.lsb{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.704000pt;}
.ls16{letter-spacing:0.768000pt;}
.ls25{letter-spacing:0.832000pt;}
.ls18{letter-spacing:0.896000pt;}
.ls28{letter-spacing:0.960000pt;}
.ls23{letter-spacing:1.152000pt;}
.ls32{letter-spacing:2.598400pt;}
.ls36{letter-spacing:2.837333pt;}
.ls37{letter-spacing:3.012267pt;}
.ls2e{letter-spacing:3.040000pt;}
.lse{letter-spacing:3.776000pt;}
.ls1{letter-spacing:4.010667pt;}
.ls31{letter-spacing:4.224000pt;}
.ls27{letter-spacing:6.688000pt;}
.lsa{letter-spacing:6.796267pt;}
.ls7{letter-spacing:7.520000pt;}
.ls0{letter-spacing:9.546667pt;}
.ls2d{letter-spacing:9.600000pt;}
.ls2{letter-spacing:14.750904pt;}
.ls29{letter-spacing:20.544000pt;}
.ws37{word-spacing:-53.333333pt;}
.ws43{word-spacing:-22.506667pt;}
.wsf{word-spacing:-18.688000pt;}
.ws10{word-spacing:-17.984000pt;}
.ws32{word-spacing:-16.640000pt;}
.ws13{word-spacing:-16.448000pt;}
.ws1{word-spacing:-16.384000pt;}
.ws26{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.192000pt;}
.ws40{word-spacing:-16.064000pt;}
.ws27{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws41{word-spacing:-15.744000pt;}
.ws1d{word-spacing:-15.616000pt;}
.ws25{word-spacing:-15.552000pt;}
.ws12{word-spacing:-15.488000pt;}
.ws38{word-spacing:-14.848000pt;}
.ws3d{word-spacing:-14.592000pt;}
.ws2f{word-spacing:-12.588800pt;}
.ws44{word-spacing:-11.989333pt;}
.ws4a{word-spacing:-10.752000pt;}
.ws30{word-spacing:-10.538667pt;}
.ws3c{word-spacing:-9.600000pt;}
.ws45{word-spacing:-8.392533pt;}
.wse{word-spacing:-7.520000pt;}
.ws42{word-spacing:-3.136000pt;}
.ws31{word-spacing:-1.152000pt;}
.ws34{word-spacing:-0.960000pt;}
.ws1e{word-spacing:-0.896000pt;}
.ws36{word-spacing:-0.832000pt;}
.ws1f{word-spacing:-0.768000pt;}
.wsd{word-spacing:-0.704000pt;}
.ws9{word-spacing:-0.640000pt;}
.wsa{word-spacing:-0.576000pt;}
.ws16{word-spacing:-0.512000pt;}
.ws15{word-spacing:-0.492800pt;}
.ws17{word-spacing:-0.448000pt;}
.ws7{word-spacing:-0.426667pt;}
.ws22{word-spacing:-0.384000pt;}
.ws33{word-spacing:-0.320000pt;}
.ws2e{word-spacing:-0.256000pt;}
.ws4b{word-spacing:-0.213333pt;}
.ws1a{word-spacing:-0.192000pt;}
.ws28{word-spacing:-0.128000pt;}
.wsb{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws20{word-spacing:0.064000pt;}
.ws8{word-spacing:0.106667pt;}
.ws2d{word-spacing:0.128000pt;}
.ws21{word-spacing:0.192000pt;}
.ws1c{word-spacing:0.213333pt;}
.ws24{word-spacing:0.256000pt;}
.ws4d{word-spacing:0.266667pt;}
.ws19{word-spacing:0.320000pt;}
.ws4c{word-spacing:0.341333pt;}
.ws18{word-spacing:0.384000pt;}
.ws2a{word-spacing:0.448000pt;}
.ws29{word-spacing:0.512000pt;}
.ws23{word-spacing:0.576000pt;}
.ws2b{word-spacing:0.640000pt;}
.ws1b{word-spacing:0.704000pt;}
.ws46{word-spacing:0.768000pt;}
.ws47{word-spacing:0.832000pt;}
.ws39{word-spacing:0.896000pt;}
.ws3b{word-spacing:0.960000pt;}
.ws3a{word-spacing:1.024000pt;}
.ws3e{word-spacing:1.216000pt;}
.ws48{word-spacing:1.280000pt;}
.ws3f{word-spacing:1.344000pt;}
.wsc{word-spacing:1.536000pt;}
.ws6{word-spacing:1.600000pt;}
.ws49{word-spacing:2.986667pt;}
.ws2c{word-spacing:3.328000pt;}
.ws4{word-spacing:3.733333pt;}
.ws14{word-spacing:5.888000pt;}
.ws0{word-spacing:7.445333pt;}
.ws35{word-spacing:9.024000pt;}
._0{margin-left:-835.898667pt;}
._14{margin-left:-15.808000pt;}
._11{margin-left:-13.350400pt;}
._18{margin-left:-10.379733pt;}
._17{margin-left:-9.104000pt;}
._f{margin-left:-7.504000pt;}
._b{margin-left:-6.489600pt;}
._1{margin-left:-5.301333pt;}
._e{margin-left:-4.251733pt;}
._d{margin-left:-3.201067pt;}
._6{margin-left:-2.197333pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._5{width:3.306667pt;}
._7{width:4.603733pt;}
._a{width:5.984000pt;}
._4{width:7.573333pt;}
._9{width:8.498133pt;}
._8{width:9.580800pt;}
._c{width:10.476800pt;}
._13{width:11.574400pt;}
._15{width:12.894933pt;}
._16{width:14.200533pt;}
._12{width:28.129867pt;}
._1a{width:42.485333pt;}
._19{width:50.569600pt;}
._1b{width:58.049067pt;}
._10{width:179.168000pt;}
.fs7{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:368.822933pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y46{bottom:104.000000pt;}
.y8a{bottom:104.069333pt;}
.y137{bottom:106.453333pt;}
.y15a{bottom:106.597333pt;}
.y20{bottom:106.722267pt;}
.y186{bottom:107.722667pt;}
.yf2{bottom:107.740000pt;}
.y1b0{bottom:108.997333pt;}
.y45{bottom:117.333333pt;}
.y159{bottom:119.664000pt;}
.yd0{bottom:121.073333pt;}
.y185{bottom:121.184000pt;}
.y89{bottom:123.541333pt;}
.yf1{bottom:124.000000pt;}
.y1af{bottom:125.797333pt;}
.y136{bottom:126.053333pt;}
.y1f{bottom:126.194267pt;}
.yad{bottom:130.666667pt;}
.y158{bottom:132.730667pt;}
.y44{bottom:134.406667pt;}
.y184{bottom:134.645333pt;}
.yf0{bottom:141.073333pt;}
.y1ae{bottom:142.597333pt;}
.y88{bottom:143.013333pt;}
.yac{bottom:144.000000pt;}
.y1e{bottom:145.660933pt;}
.y135{bottom:145.781333pt;}
.y157{bottom:145.797333pt;}
.y183{bottom:148.106667pt;}
.ycf{bottom:157.226667pt;}
.yab{bottom:157.333333pt;}
.y156{bottom:158.864000pt;}
.y1ad{bottom:159.397333pt;}
.y182{bottom:161.568000pt;}
.y87{bottom:162.485333pt;}
.y113{bottom:164.000000pt;}
.y134{bottom:165.509333pt;}
.y43{bottom:166.698667pt;}
.y64{bottom:167.461333pt;}
.y155{bottom:171.930667pt;}
.yaa{bottom:174.406667pt;}
.y181{bottom:175.029333pt;}
.yce{bottom:177.498667pt;}
.yef{bottom:179.077333pt;}
.y86{bottom:181.957333pt;}
.y112{bottom:184.000000pt;}
.y1d{bottom:184.482267pt;}
.y154{bottom:185.002667pt;}
.y133{bottom:185.237333pt;}
.y1ac{bottom:186.330667pt;}
.y42{bottom:186.698667pt;}
.y63{bottom:186.789333pt;}
.y180{bottom:188.490667pt;}
.ycd{bottom:197.770667pt;}
.y153{bottom:198.069333pt;}
.yee{bottom:198.949333pt;}
.y85{bottom:201.429333pt;}
.y17f{bottom:201.952000pt;}
.y1c{bottom:203.954267pt;}
.y111{bottom:204.000000pt;}
.y132{bottom:204.965333pt;}
.y41{bottom:206.026667pt;}
.y62{bottom:206.117333pt;}
.ya9{bottom:208.208000pt;}
.y152{bottom:211.136000pt;}
.y17e{bottom:215.413333pt;}
.ycc{bottom:218.042667pt;}
.yed{bottom:218.821333pt;}
.y84{bottom:220.901333pt;}
.y1ab{bottom:223.264000pt;}
.y1b{bottom:223.426267pt;}
.y110{bottom:224.000000pt;}
.y151{bottom:224.202667pt;}
.y131{bottom:224.693333pt;}
.y40{bottom:225.354667pt;}
.y61{bottom:225.445333pt;}
.ya8{bottom:228.080000pt;}
.y17d{bottom:228.874667pt;}
.y150{bottom:237.269333pt;}
.ycb{bottom:238.314667pt;}
.yec{bottom:238.693333pt;}
.y1aa{bottom:240.064000pt;}
.y83{bottom:240.373333pt;}
.y17c{bottom:242.336000pt;}
.y1a{bottom:242.898267pt;}
.y10f{bottom:244.000000pt;}
.y130{bottom:244.421333pt;}
.y3f{bottom:244.682667pt;}
.y60{bottom:244.773333pt;}
.ya7{bottom:247.952000pt;}
.y14f{bottom:250.336000pt;}
.y17b{bottom:255.797333pt;}
.y1a9{bottom:256.864000pt;}
.yeb{bottom:258.565333pt;}
.yca{bottom:258.586667pt;}
.y82{bottom:259.845333pt;}
.y19{bottom:262.370267pt;}
.y14e{bottom:263.402667pt;}
.y10e{bottom:264.000000pt;}
.y3e{bottom:264.010667pt;}
.y5f{bottom:264.101333pt;}
.y12f{bottom:264.149333pt;}
.ya6{bottom:267.824000pt;}
.y17a{bottom:269.258667pt;}
.y1a8{bottom:273.664000pt;}
.y14d{bottom:276.469333pt;}
.yea{bottom:278.437333pt;}
.yc9{bottom:278.858667pt;}
.y81{bottom:279.317333pt;}
.y18{bottom:281.842267pt;}
.y179{bottom:282.720000pt;}
.y3d{bottom:283.338667pt;}
.y5e{bottom:283.429333pt;}
.y12e{bottom:283.877333pt;}
.y10d{bottom:284.000000pt;}
.ya5{bottom:287.696000pt;}
.y14c{bottom:289.536000pt;}
.y1a7{bottom:290.464000pt;}
.y178{bottom:296.181333pt;}
.ye9{bottom:298.309333pt;}
.y80{bottom:298.789333pt;}
.yc8{bottom:299.130667pt;}
.y17{bottom:301.314267pt;}
.y14b{bottom:302.602667pt;}
.y5d{bottom:302.757333pt;}
.y3c{bottom:302.784000pt;}
.y12d{bottom:303.605333pt;}
.y10c{bottom:304.000000pt;}
.y1a6{bottom:307.264000pt;}
.ya4{bottom:307.568000pt;}
.y177{bottom:309.642667pt;}
.y14a{bottom:315.669333pt;}
.ye8{bottom:318.181333pt;}
.y7f{bottom:318.261333pt;}
.yc7{bottom:319.402667pt;}
.y16{bottom:320.786267pt;}
.y5c{bottom:322.085333pt;}
.y3b{bottom:322.112000pt;}
.y176{bottom:323.104000pt;}
.y12c{bottom:323.333333pt;}
.y10b{bottom:324.000000pt;}
.y1a5{bottom:324.064000pt;}
.ya3{bottom:327.440000pt;}
.y149{bottom:328.736000pt;}
.y175{bottom:336.565333pt;}
.y7e{bottom:337.733333pt;}
.ye7{bottom:338.053333pt;}
.yc6{bottom:339.674667pt;}
.y15{bottom:340.258267pt;}
.y1a4{bottom:340.864000pt;}
.y5b{bottom:341.413333pt;}
.y3a{bottom:341.440000pt;}
.y148{bottom:341.802667pt;}
.y12b{bottom:343.066667pt;}
.y10a{bottom:344.000000pt;}
.ya2{bottom:347.312000pt;}
.y174{bottom:350.026667pt;}
.y147{bottom:354.869333pt;}
.y7d{bottom:357.205333pt;}
.y1a3{bottom:357.664000pt;}
.ye6{bottom:357.925333pt;}
.y14{bottom:359.730267pt;}
.yc5{bottom:359.946667pt;}
.y5a{bottom:360.741333pt;}
.y39{bottom:360.768000pt;}
.y12a{bottom:362.800000pt;}
.y173{bottom:363.488000pt;}
.y109{bottom:364.000000pt;}
.ya1{bottom:367.184000pt;}
.y146{bottom:367.936000pt;}
.y1a2{bottom:374.464000pt;}
.y7c{bottom:376.677333pt;}
.y172{bottom:376.949333pt;}
.ye5{bottom:377.797333pt;}
.y13{bottom:379.202267pt;}
.y59{bottom:380.069333pt;}
.y38{bottom:380.096000pt;}
.yc4{bottom:380.218667pt;}
.y145{bottom:381.002667pt;}
.y108{bottom:384.000000pt;}
.ya0{bottom:387.056000pt;}
.y171{bottom:390.410667pt;}
.y1a1{bottom:391.264000pt;}
.y144{bottom:394.069333pt;}
.y7b{bottom:396.149333pt;}
.ye4{bottom:397.669333pt;}
.y12{bottom:398.674267pt;}
.y58{bottom:399.397333pt;}
.y37{bottom:399.424000pt;}
.yc3{bottom:400.490667pt;}
.y129{bottom:402.192000pt;}
.y170{bottom:403.872000pt;}
.y107{bottom:404.000000pt;}
.y9f{bottom:406.928000pt;}
.y1a0{bottom:408.064000pt;}
.y143{bottom:412.800000pt;}
.y7a{bottom:415.621333pt;}
.y16f{bottom:417.333333pt;}
.ye3{bottom:417.541333pt;}
.y11{bottom:418.146267pt;}
.y57{bottom:418.725333pt;}
.y36{bottom:418.752000pt;}
.yc2{bottom:420.618667pt;}
.y128{bottom:421.920000pt;}
.y106{bottom:424.000000pt;}
.y19f{bottom:424.864000pt;}
.y9e{bottom:426.757333pt;}
.y16e{bottom:430.666667pt;}
.y79{bottom:435.093333pt;}
.ye2{bottom:437.413333pt;}
.y10{bottom:437.618267pt;}
.y56{bottom:438.053333pt;}
.y35{bottom:438.080000pt;}
.yc1{bottom:440.746667pt;}
.y127{bottom:441.648000pt;}
.y19e{bottom:441.664000pt;}
.y105{bottom:444.000000pt;}
.y9d{bottom:446.629333pt;}
.y142{bottom:452.000000pt;}
.y78{bottom:454.565333pt;}
.yf{bottom:457.090267pt;}
.ye1{bottom:457.285333pt;}
.y16d{bottom:457.333333pt;}
.y55{bottom:457.381333pt;}
.y34{bottom:457.408000pt;}
.y19d{bottom:458.464000pt;}
.yc0{bottom:460.874667pt;}
.y126{bottom:461.376000pt;}
.y104{bottom:464.000000pt;}
.y9c{bottom:466.501333pt;}
.y16c{bottom:470.666667pt;}
.y141{bottom:471.600000pt;}
.y77{bottom:474.037333pt;}
.y19c{bottom:475.264000pt;}
.ye{bottom:476.562267pt;}
.y54{bottom:476.709333pt;}
.y33{bottom:476.736000pt;}
.ye0{bottom:477.157333pt;}
.ybf{bottom:481.002667pt;}
.y125{bottom:481.104000pt;}
.y103{bottom:484.000000pt;}
.y9b{bottom:486.373333pt;}
.y140{bottom:491.200000pt;}
.y19b{bottom:492.064000pt;}
.y76{bottom:493.509333pt;}
.yd{bottom:496.034267pt;}
.y53{bottom:496.037333pt;}
.y32{bottom:496.064000pt;}
.ydf{bottom:497.029333pt;}
.y16b{bottom:497.333333pt;}
.y124{bottom:500.832000pt;}
.ybe{bottom:501.130667pt;}
.y102{bottom:504.000000pt;}
.y9a{bottom:506.245333pt;}
.y19a{bottom:508.864000pt;}
.y16a{bottom:510.666667pt;}
.y13f{bottom:510.800000pt;}
.y75{bottom:512.981333pt;}
.y52{bottom:515.365333pt;}
.y31{bottom:515.392000pt;}
.yc{bottom:515.506267pt;}
.yde{bottom:516.901333pt;}
.y123{bottom:520.560000pt;}
.ybd{bottom:521.258667pt;}
.y101{bottom:524.000000pt;}
.y199{bottom:525.664000pt;}
.y99{bottom:526.117333pt;}
.y13e{bottom:530.400000pt;}
.y74{bottom:532.453333pt;}
.y51{bottom:534.693333pt;}
.y30{bottom:534.720000pt;}
.yb{bottom:534.978267pt;}
.ydd{bottom:536.773333pt;}
.y169{bottom:537.333333pt;}
.y122{bottom:540.288000pt;}
.ybc{bottom:541.386667pt;}
.y198{bottom:542.464000pt;}
.y100{bottom:544.000000pt;}
.y98{bottom:545.989333pt;}
.y13d{bottom:550.000000pt;}
.y168{bottom:550.666667pt;}
.y73{bottom:551.925333pt;}
.y50{bottom:554.021333pt;}
.y2f{bottom:554.048000pt;}
.ya{bottom:554.450267pt;}
.y8{bottom:554.460800pt;}
.ydc{bottom:556.645333pt;}
.y197{bottom:559.264000pt;}
.y121{bottom:560.016000pt;}
.ybb{bottom:561.514667pt;}
.yff{bottom:564.000000pt;}
.y97{bottom:565.861333pt;}
.y13c{bottom:569.600000pt;}
.y72{bottom:571.397333pt;}
.y4f{bottom:573.349333pt;}
.y2e{bottom:573.376000pt;}
.y9{bottom:573.922267pt;}
.y196{bottom:576.064000pt;}
.ydb{bottom:576.517333pt;}
.y167{bottom:577.333333pt;}
.y120{bottom:579.744000pt;}
.yba{bottom:581.642667pt;}
.yfe{bottom:584.000000pt;}
.y96{bottom:585.733333pt;}
.y13b{bottom:589.200000pt;}
.y166{bottom:590.666667pt;}
.y71{bottom:590.869333pt;}
.y4e{bottom:592.677333pt;}
.y2d{bottom:592.704000pt;}
.y195{bottom:592.864000pt;}
.yda{bottom:596.389333pt;}
.y11f{bottom:599.472000pt;}
.yb9{bottom:601.770667pt;}
.yfd{bottom:604.000000pt;}
.y95{bottom:605.600000pt;}
.y13a{bottom:608.800000pt;}
.y194{bottom:609.664000pt;}
.y70{bottom:610.341333pt;}
.y4d{bottom:612.005333pt;}
.y2c{bottom:612.032000pt;}
.yd9{bottom:616.261333pt;}
.y165{bottom:617.333333pt;}
.y11e{bottom:619.200000pt;}
.yb8{bottom:621.898667pt;}
.yfc{bottom:624.000000pt;}
.y193{bottom:626.464000pt;}
.y139{bottom:628.400000pt;}
.y6f{bottom:629.813333pt;}
.y164{bottom:630.666667pt;}
.y2b{bottom:631.360000pt;}
.y4c{bottom:631.386667pt;}
.y7{bottom:632.327600pt;}
.yd8{bottom:636.106667pt;}
.y11d{bottom:638.928000pt;}
.yb7{bottom:642.026667pt;}
.y192{bottom:643.264000pt;}
.yfb{bottom:644.000000pt;}
.y94{bottom:645.285333pt;}
.y138{bottom:648.000000pt;}
.y6{bottom:648.460933pt;}
.y6e{bottom:649.285333pt;}
.y2a{bottom:650.688000pt;}
.y4b{bottom:650.714667pt;}
.yd7{bottom:655.978667pt;}
.y163{bottom:657.333333pt;}
.y191{bottom:660.064000pt;}
.yb6{bottom:662.154667pt;}
.yfa{bottom:664.000000pt;}
.y93{bottom:665.157333pt;}
.y11c{bottom:667.600000pt;}
.y6d{bottom:668.757333pt;}
.y29{bottom:670.016000pt;}
.y4a{bottom:670.042667pt;}
.y162{bottom:670.666667pt;}
.yd6{bottom:675.850667pt;}
.yb5{bottom:682.282667pt;}
.y190{bottom:682.554667pt;}
.yf9{bottom:684.000000pt;}
.y92{bottom:685.029333pt;}
.y5{bottom:685.381600pt;}
.y11b{bottom:687.200000pt;}
.y6c{bottom:688.229333pt;}
.y28{bottom:689.344000pt;}
.y49{bottom:689.370667pt;}
.y161{bottom:697.333333pt;}
.yb4{bottom:702.410667pt;}
.yf8{bottom:704.000000pt;}
.y4{bottom:704.848267pt;}
.y91{bottom:704.901333pt;}
.yd5{bottom:704.922667pt;}
.y11a{bottom:706.800000pt;}
.y6b{bottom:707.701333pt;}
.y27{bottom:708.672000pt;}
.y48{bottom:708.698667pt;}
.y160{bottom:710.666667pt;}
.yb3{bottom:722.538667pt;}
.y18f{bottom:722.821333pt;}
.yf7{bottom:724.000000pt;}
.y90{bottom:724.773333pt;}
.yd4{bottom:724.794667pt;}
.y119{bottom:726.400000pt;}
.y6a{bottom:727.173333pt;}
.y26{bottom:728.000000pt;}
.y47{bottom:728.026667pt;}
.y18e{bottom:736.293333pt;}
.y15f{bottom:737.333333pt;}
.yb2{bottom:742.645333pt;}
.yf6{bottom:744.000000pt;}
.y8f{bottom:744.645333pt;}
.yd3{bottom:744.666667pt;}
.y118{bottom:746.000000pt;}
.y69{bottom:746.645333pt;}
.y25{bottom:747.354667pt;}
.y18d{bottom:749.754667pt;}
.y15e{bottom:750.666667pt;}
.yb1{bottom:762.917333pt;}
.y18c{bottom:763.216000pt;}
.y3{bottom:764.000000pt;}
.y8e{bottom:764.517333pt;}
.yd2{bottom:764.533333pt;}
.y117{bottom:765.600000pt;}
.y68{bottom:766.117333pt;}
.y24{bottom:766.682667pt;}
.y18b{bottom:776.677333pt;}
.y15d{bottom:777.333333pt;}
.yb0{bottom:783.189333pt;}
.yf5{bottom:784.000000pt;}
.y8d{bottom:784.389333pt;}
.yd1{bottom:784.400000pt;}
.y116{bottom:785.200000pt;}
.y67{bottom:785.589333pt;}
.y23{bottom:786.010667pt;}
.y18a{bottom:790.138667pt;}
.y2{bottom:790.666667pt;}
.yaf{bottom:803.461333pt;}
.y189{bottom:803.610667pt;}
.yf4{bottom:804.000000pt;}
.y8c{bottom:804.261333pt;}
.y115{bottom:804.800000pt;}
.y66{bottom:805.061333pt;}
.y22{bottom:805.338667pt;}
.y188{bottom:817.072000pt;}
.y15c{bottom:817.333333pt;}
.yae{bottom:823.733333pt;}
.yf3{bottom:824.000000pt;}
.y8b{bottom:824.133333pt;}
.y114{bottom:824.400000pt;}
.y65{bottom:824.533333pt;}
.y21{bottom:824.666667pt;}
.y187{bottom:830.533333pt;}
.y15b{bottom:830.666667pt;}
.ha{height:21.320833pt;}
.h8{height:26.945443pt;}
.hf{height:34.730667pt;}
.h1{height:35.833333pt;}
.h9{height:36.229167pt;}
.h3{height:44.960000pt;}
.h5{height:45.286458pt;}
.h4{height:54.343750pt;}
.h7{height:58.691292pt;}
.hc{height:59.245958pt;}
.hd{height:59.267292pt;}
.hb{height:59.331292pt;}
.he{height:59.651292pt;}
.h2{height:90.572917pt;}
.h6{height:258.176053pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x6{left:73.232000pt;}
.x8{left:86.449200pt;}
.x2{left:100.000000pt;}
.x4{left:113.218933pt;}
.x9{left:120.468400pt;}
.x7{left:126.449200pt;}
.x3{left:139.186933pt;}
.x1{left:564.791600pt;}
}




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