
    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_165782359ef0c52009e515b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.862305;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_16ddbb693943bfa0fa534037.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_4e399395a2e073718a407362.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_c7a01257a4dc7c3fd81aca25.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.856934;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_7457eff6a65306963da76349.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_3f247ed9375b48f25ac5cd32.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_6982254cca535a4bf7059a1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_10c1e18da4b03a9088f2aa7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_9ab846cbd05f47ca0838d201.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.863770;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_62b2ba389ffe7408c609ca2a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689941;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_6982254cca535a4bf7059a1c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.002930;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_10c1e18da4b03a9088f2aa7a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895996;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_6982254cca535a4bf7059a1c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.002930;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:ffe;src:url('chunks/assets/font_10c1e18da4b03a9088f2aa7a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.895996;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:fff;src:url('chunks/assets/font_6982254cca535a4bf7059a1c.woff2')format("woff");}.fff{font-family:fff;line-height:1.002930;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:ff10;src:url('chunks/assets/font_10c1e18da4b03a9088f2aa7a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.895996;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:ff11;src:url('chunks/assets/font_d87877dffcb2e77755df79f4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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:ff12;src:url('chunks/assets/font_6705adaadcf294554ee637c7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.863770;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:ff13;src:url('chunks/assets/font_414b715148abaec8051cc4b3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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:ff14;src:url('chunks/assets/font_76f61f28fb8a38083e89f1c2.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.976000px;}
.v1{vertical-align:27.972000px;}
.v4{vertical-align:49.500000px;}
.ls8{letter-spacing:-1.800000px;}
.ls3{letter-spacing:-1.440000px;}
.ls2{letter-spacing:-0.084000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.988800px;}
.ls1{letter-spacing:15.708600px;}
.ls5{letter-spacing:367.493400px;}
.ls4{letter-spacing:383.993400px;}
.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;}
}
.ws2{word-spacing:-18.984000px;}
.wse{word-spacing:-18.900000px;}
.ws56{word-spacing:-18.000000px;}
.ws63{word-spacing:-16.560000px;}
.ws37{word-spacing:-16.500000px;}
.ws6b{word-spacing:-16.200000px;}
.ws1{word-spacing:-11.067672px;}
.ws1a{word-spacing:-10.494000px;}
.ws3{word-spacing:-7.905480px;}
.ws6d{word-spacing:-4.608000px;}
.ws6e{word-spacing:-4.320000px;}
.ws4a{word-spacing:-3.456000px;}
.ws1b{word-spacing:-3.312000px;}
.ws51{word-spacing:-3.168000px;}
.ws57{word-spacing:-3.024000px;}
.ws2f{word-spacing:-2.952000px;}
.ws61{word-spacing:-2.520000px;}
.ws60{word-spacing:-2.448000px;}
.ws47{word-spacing:-2.376000px;}
.ws59{word-spacing:-2.304000px;}
.ws62{word-spacing:-2.232000px;}
.ws48{word-spacing:-2.160000px;}
.ws28{word-spacing:-2.088000px;}
.wsc{word-spacing:-2.016000px;}
.ws2d{word-spacing:-1.872000px;}
.ws12{word-spacing:-1.800000px;}
.ws25{word-spacing:-1.440000px;}
.ws24{word-spacing:-1.152000px;}
.ws52{word-spacing:-1.008000px;}
.wsb{word-spacing:-0.936000px;}
.ws1f{word-spacing:-0.864000px;}
.ws68{word-spacing:-0.792000px;}
.ws46{word-spacing:-0.720000px;}
.ws58{word-spacing:-0.648000px;}
.ws16{word-spacing:-0.576000px;}
.ws10{word-spacing:-0.432000px;}
.ws33{word-spacing:-0.216000px;}
.ws4c{word-spacing:-0.144000px;}
.ws64{word-spacing:-0.072000px;}
.ws0{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws50{word-spacing:0.216000px;}
.ws11{word-spacing:0.288000px;}
.ws22{word-spacing:0.576000px;}
.ws19{word-spacing:0.936000px;}
.ws5a{word-spacing:1.008000px;}
.ws2e{word-spacing:1.080000px;}
.ws5f{word-spacing:1.152000px;}
.ws13{word-spacing:1.224000px;}
.ws17{word-spacing:1.368000px;}
.wsf{word-spacing:1.440000px;}
.ws21{word-spacing:1.512000px;}
.ws40{word-spacing:1.584000px;}
.ws2c{word-spacing:1.728000px;}
.ws4e{word-spacing:1.800000px;}
.ws8{word-spacing:1.872000px;}
.ws32{word-spacing:1.944000px;}
.ws5b{word-spacing:2.016000px;}
.ws1c{word-spacing:2.160000px;}
.ws3a{word-spacing:2.376000px;}
.ws41{word-spacing:2.448000px;}
.ws5e{word-spacing:2.520000px;}
.ws49{word-spacing:2.592000px;}
.ws1e{word-spacing:2.664000px;}
.ws30{word-spacing:2.736000px;}
.ws54{word-spacing:2.880000px;}
.ws2a{word-spacing:2.952000px;}
.ws1d{word-spacing:3.312000px;}
.ws5d{word-spacing:3.528000px;}
.ws5c{word-spacing:3.672000px;}
.ws31{word-spacing:3.816000px;}
.ws29{word-spacing:4.032000px;}
.ws2b{word-spacing:4.176000px;}
.ws4d{word-spacing:4.680000px;}
.ws44{word-spacing:4.752000px;}
.ws7{word-spacing:4.824000px;}
.ws65{word-spacing:4.968000px;}
.ws20{word-spacing:5.184000px;}
.ws45{word-spacing:5.688000px;}
.ws23{word-spacing:6.048000px;}
.ws4b{word-spacing:6.120000px;}
.ws6a{word-spacing:6.336000px;}
.ws39{word-spacing:6.696000px;}
.ws69{word-spacing:6.768000px;}
.ws67{word-spacing:6.840000px;}
.wsd{word-spacing:6.984000px;}
.ws42{word-spacing:7.200000px;}
.ws18{word-spacing:7.344000px;}
.ws15{word-spacing:7.488000px;}
.ws66{word-spacing:7.560000px;}
.ws26{word-spacing:7.848000px;}
.ws55{word-spacing:7.920000px;}
.ws6c{word-spacing:8.208000px;}
.ws43{word-spacing:8.352000px;}
.ws9{word-spacing:8.568000px;}
.ws27{word-spacing:8.928000px;}
.ws53{word-spacing:9.000000px;}
.ws4f{word-spacing:9.648000px;}
.ws6{word-spacing:10.008000px;}
.ws5{word-spacing:10.152000px;}
.wsa{word-spacing:11.160000px;}
.ws14{word-spacing:15.696000px;}
.ws36{word-spacing:265.290000px;}
.ws38{word-spacing:276.294600px;}
.ws3e{word-spacing:284.977200px;}
.ws3c{word-spacing:310.662000px;}
.ws35{word-spacing:311.148000px;}
.ws3f{word-spacing:334.493400px;}
.ws3d{word-spacing:367.493400px;}
.ws3b{word-spacing:577.335000px;}
.ws34{word-spacing:631.491000px;}
._2{margin-left:-19.711200px;}
._d{margin-left:-17.791200px;}
._14{margin-left:-9.266400px;}
._f{margin-left:-7.920000px;}
._9{margin-left:-6.264000px;}
._1{margin-left:-4.478400px;}
._8{margin-left:-3.391200px;}
._0{margin-left:-2.044800px;}
._4{margin-left:-1.016400px;}
._7{width:1.155600px;}
._3{width:2.250000px;}
._6{width:3.960000px;}
._b{width:5.839200px;}
._c{width:7.761600px;}
._a{width:8.836800px;}
._5{width:9.942600px;}
._e{width:11.011200px;}
._10{width:12.024600px;}
._13{width:306.972000px;}
._11{width:446.303400px;}
._12{width:599.367000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(164,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(101,98,99);}
.fs4{font-size:34.980000px;}
.fs7{font-size:41.976000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:60.631950px;}
.y23{bottom:76.521300px;}
.y27{bottom:83.509800px;}
.y22{bottom:90.921300px;}
.yb4{bottom:127.558950px;}
.y31{bottom:127.559100px;}
.y124{bottom:127.559250px;}
.y170{bottom:128.277600px;}
.y216{bottom:128.295000px;}
.y73{bottom:128.295150px;}
.y148{bottom:129.152850px;}
.y1f9{bottom:129.177450px;}
.y15{bottom:132.554100px;}
.y1d9{bottom:149.194500px;}
.y1b8{bottom:149.462550px;}
.y14{bottom:150.554100px;}
.y123{bottom:150.554250px;}
.y1f8{bottom:150.777450px;}
.y192{bottom:153.078000px;}
.yb3{bottom:153.117900px;}
.y30{bottom:153.249750px;}
.y94{bottom:153.276000px;}
.yf8{bottom:153.433650px;}
.yd7{bottom:153.591450px;}
.y16f{bottom:153.777600px;}
.y215{bottom:153.795000px;}
.y72{bottom:153.795150px;}
.y147{bottom:156.287250px;}
.y1d8{bottom:170.830050px;}
.y1b7{bottom:171.366000px;}
.y191{bottom:178.596900px;}
.yb2{bottom:178.676700px;}
.y2f{bottom:178.940400px;}
.y93{bottom:178.992600px;}
.y16e{bottom:179.277600px;}
.y214{bottom:179.295000px;}
.y71{bottom:179.295150px;}
.yf7{bottom:179.308350px;}
.yd6{bottom:179.623950px;}
.y146{bottom:183.421350px;}
.y1f7{bottom:193.977450px;}
.y190{bottom:204.115800px;}
.yb1{bottom:204.235500px;}
.y2e{bottom:204.631050px;}
.y92{bottom:204.709350px;}
.y16d{bottom:204.777600px;}
.y213{bottom:204.795000px;}
.y70{bottom:204.795150px;}
.yf6{bottom:205.182900px;}
.yd5{bottom:205.656600px;}
.y122{bottom:206.079000px;}
.y145{bottom:210.555600px;}
.y1d7{bottom:214.101300px;}
.y1b6{bottom:215.172750px;}
.y1f6{bottom:215.577450px;}
.y21{bottom:223.696050px;}
.y18f{bottom:229.634700px;}
.yb0{bottom:229.794300px;}
.y16c{bottom:230.277600px;}
.y212{bottom:230.295000px;}
.y6f{bottom:230.295150px;}
.y2d{bottom:230.321700px;}
.y91{bottom:230.426100px;}
.yf5{bottom:231.057600px;}
.yd4{bottom:231.689100px;}
.y121{bottom:232.291200px;}
.y1d6{bottom:235.736850px;}
.y1b5{bottom:237.076200px;}
.y1f5{bottom:237.177450px;}
.y144{bottom:237.690000px;}
.y20{bottom:245.296050px;}
.y18e{bottom:255.153600px;}
.yaf{bottom:255.353250px;}
.y16b{bottom:255.777600px;}
.y211{bottom:255.795000px;}
.y6e{bottom:255.795150px;}
.y2c{bottom:256.012350px;}
.y90{bottom:256.142850px;}
.yf4{bottom:256.932150px;}
.y1d5{bottom:257.372400px;}
.yd3{bottom:257.721600px;}
.y120{bottom:258.503700px;}
.y1b4{bottom:258.979650px;}
.y143{bottom:264.824100px;}
.y1f{bottom:266.896050px;}
.y1f4{bottom:280.377450px;}
.y18d{bottom:280.672350px;}
.yae{bottom:280.912050px;}
.y16a{bottom:281.277600px;}
.y210{bottom:281.295000px;}
.y6d{bottom:281.295150px;}
.y2b{bottom:281.703000px;}
.yf3{bottom:282.806850px;}
.yd2{bottom:283.754100px;}
.y11f{bottom:284.715900px;}
.y1e{bottom:288.496050px;}
.y109{bottom:288.806850px;}
.y142{bottom:291.958350px;}
.y1d4{bottom:300.643500px;}
.y1f3{bottom:301.977450px;}
.y1b3{bottom:302.786400px;}
.y18c{bottom:306.191250px;}
.y20f{bottom:306.795000px;}
.y6c{bottom:306.795150px;}
.y2a{bottom:307.393650px;}
.y8f{bottom:307.576350px;}
.yf2{bottom:308.681550px;}
.yd1{bottom:309.786750px;}
.y1d{bottom:310.096050px;}
.y11e{bottom:310.928250px;}
.y108{bottom:314.681550px;}
.y141{bottom:319.092750px;}
.y1d3{bottom:322.279050px;}
.y1b2{bottom:324.689700px;}
.y1c{bottom:331.696050px;}
.y18b{bottom:331.710150px;}
.yad{bottom:332.029650px;}
.y169{bottom:332.277600px;}
.y6b{bottom:332.295150px;}
.y29{bottom:333.084300px;}
.y11d{bottom:337.140450px;}
.y107{bottom:340.556100px;}
.y195{bottom:341.819250px;}
.y1d2{bottom:343.914600px;}
.y1f2{bottom:345.177450px;}
.y140{bottom:346.226850px;}
.y1b1{bottom:346.593150px;}
.y1b{bottom:353.296050px;}
.y18a{bottom:357.229050px;}
.y168{bottom:357.777600px;}
.y20e{bottom:357.795000px;}
.y6a{bottom:357.795150px;}
.yf1{bottom:360.430800px;}
.yd0{bottom:361.851750px;}
.y11c{bottom:363.352800px;}
.yac{bottom:363.588600px;}
.y8e{bottom:365.009700px;}
.y106{bottom:366.430800px;}
.y1f1{bottom:366.777450px;}
.y194{bottom:367.851750px;}
.y13f{bottom:373.361100px;}
.y1a{bottom:374.896050px;}
.y189{bottom:382.747950px;}
.y69{bottom:383.295150px;}
.y28{bottom:384.465600px;}
.y1d1{bottom:387.185700px;}
.y8d{bottom:390.726600px;}
.y105{bottom:392.305350px;}
.y193{bottom:393.884250px;}
.y1b0{bottom:394.300050px;}
.y19{bottom:396.496050px;}
.y13e{bottom:400.495350px;}
.y188{bottom:408.266850px;}
.y167{bottom:408.777600px;}
.y68{bottom:408.795150px;}
.y1d0{bottom:408.821400px;}
.y1f0{bottom:409.977450px;}
.y20d{bottom:409.995000px;}
.y11b{bottom:415.777350px;}
.y8c{bottom:416.443200px;}
.y18{bottom:418.096050px;}
.yf0{bottom:418.180050px;}
.ycf{bottom:419.916750px;}
.yab{bottom:420.706200px;}
.y13d{bottom:427.629600px;}
.y1cf{bottom:430.456950px;}
.y1ef{bottom:431.577450px;}
.y20c{bottom:431.595000px;}
.y187{bottom:433.785600px;}
.y166{bottom:434.277600px;}
.y67{bottom:434.295150px;}
.y17{bottom:439.696050px;}
.y11a{bottom:441.989700px;}
.y8b{bottom:442.159950px;}
.yef{bottom:444.054600px;}
.yce{bottom:445.949250px;}
.yaa{bottom:446.265150px;}
.y1af{bottom:451.906800px;}
.y1ce{bottom:452.092500px;}
.y13c{bottom:454.763850px;}
.y186{bottom:459.304500px;}
.y165{bottom:459.777600px;}
.y66{bottom:459.795150px;}
.y16{bottom:461.296050px;}
.y8a{bottom:467.876700px;}
.y119{bottom:468.201900px;}
.yee{bottom:469.929300px;}
.ya9{bottom:471.823950px;}
.ycd{bottom:471.981900px;}
.y1ee{bottom:474.777450px;}
.y20b{bottom:474.795000px;}
.y1ae{bottom:477.710100px;}
.y13b{bottom:481.898100px;}
.y185{bottom:484.823400px;}
.y164{bottom:485.277600px;}
.y65{bottom:485.295150px;}
.y4c{bottom:485.595000px;}
.y89{bottom:493.593450px;}
.y118{bottom:494.414250px;}
.y1cd{bottom:495.363600px;}
.yed{bottom:495.803850px;}
.y1ed{bottom:496.377450px;}
.y20a{bottom:496.395000px;}
.ya8{bottom:497.382750px;}
.ycc{bottom:498.014400px;}
.y1ad{bottom:503.513550px;}
.y4b{bottom:507.195000px;}
.y13a{bottom:509.032350px;}
.y184{bottom:510.342300px;}
.y163{bottom:510.777600px;}
.y64{bottom:510.795150px;}
.y1cc{bottom:516.999150px;}
.y88{bottom:519.310200px;}
.y117{bottom:520.626600px;}
.yec{bottom:521.678550px;}
.ya7{bottom:522.941550px;}
.ycb{bottom:524.046900px;}
.y1ac{bottom:529.317000px;}
.y183{bottom:535.861200px;}
.y162{bottom:536.277600px;}
.y63{bottom:536.295150px;}
.y1cb{bottom:538.634700px;}
.y1ec{bottom:539.577450px;}
.y209{bottom:539.595000px;}
.y13{bottom:540.825750px;}
.y87{bottom:545.026950px;}
.y116{bottom:546.838950px;}
.yeb{bottom:547.553250px;}
.ya6{bottom:548.500500px;}
.yca{bottom:550.079400px;}
.y4a{bottom:553.995000px;}
.y1ab{bottom:555.120450px;}
.y1eb{bottom:561.177450px;}
.y208{bottom:561.195000px;}
.y182{bottom:561.379950px;}
.y161{bottom:561.777600px;}
.y62{bottom:561.795150px;}
.y12{bottom:566.025750px;}
.y86{bottom:570.743700px;}
.y115{bottom:573.051150px;}
.y104{bottom:573.427800px;}
.ya5{bottom:574.059300px;}
.y49{bottom:575.595000px;}
.yc9{bottom:576.111900px;}
.y1aa{bottom:580.923750px;}
.y1ca{bottom:581.905950px;}
.y14c{bottom:582.877950px;}
.y160{bottom:587.277600px;}
.y61{bottom:587.295150px;}
.y11{bottom:591.225750px;}
.y85{bottom:596.460450px;}
.y48{bottom:597.195000px;}
.yea{bottom:599.302500px;}
.ya4{bottom:599.618250px;}
.yc8{bottom:602.144550px;}
.y1c9{bottom:603.541500px;}
.y1ea{bottom:604.377450px;}
.y207{bottom:604.395000px;}
.y1a9{bottom:606.727200px;}
.y181{bottom:609.417750px;}
.y14b{bottom:612.641850px;}
.y60{bottom:612.795150px;}
.y10{bottom:616.425750px;}
.y47{bottom:618.795000px;}
.y84{bottom:622.177200px;}
.ya3{bottom:625.177050px;}
.y114{bottom:625.475850px;}
.y1e9{bottom:625.977450px;}
.y206{bottom:625.995000px;}
.y229{bottom:626.438250px;}
.yc7{bottom:628.177050px;}
.y1a8{bottom:632.530650px;}
.y15f{bottom:638.277600px;}
.y5f{bottom:638.295150px;}
.y46{bottom:640.395000px;}
.y180{bottom:640.936650px;}
.yf{bottom:641.625750px;}
.y14a{bottom:642.405600px;}
.y1c8{bottom:646.812600px;}
.y1e8{bottom:647.577450px;}
.y205{bottom:647.595000px;}
.y228{bottom:647.698200px;}
.y83{bottom:647.893950px;}
.ya2{bottom:650.735850px;}
.y103{bottom:651.051750px;}
.y113{bottom:651.688050px;}
.yc6{bottom:654.209550px;}
.ye9{bottom:657.051750px;}
.y1a7{bottom:658.333950px;}
.y224{bottom:660.834900px;}
.y45{bottom:661.995000px;}
.y15e{bottom:663.777600px;}
.y5e{bottom:663.795150px;}
.y227{bottom:668.958000px;}
.y149{bottom:672.169350px;}
.y82{bottom:673.610700px;}
.ya1{bottom:676.294650px;}
.y102{bottom:676.926300px;}
.y112{bottom:677.900400px;}
.yc5{bottom:680.242050px;}
.ye8{bottom:682.926300px;}
.y44{bottom:683.595000px;}
.y1a6{bottom:684.137400px;}
.y223{bottom:685.584900px;}
.y15d{bottom:689.277600px;}
.y5d{bottom:689.295150px;}
.y1c7{bottom:690.083700px;}
.y1e7{bottom:690.777450px;}
.y204{bottom:690.795000px;}
.ye{bottom:692.025750px;}
.y226{bottom:692.724750px;}
.y17f{bottom:694.974450px;}
.y101{bottom:702.801000px;}
.y111{bottom:704.112600px;}
.y43{bottom:705.195000px;}
.yc4{bottom:706.274550px;}
.ye7{bottom:708.801000px;}
.y1a5{bottom:709.940850px;}
.y1c6{bottom:711.719250px;}
.y1e6{bottom:712.377450px;}
.y203{bottom:712.395000px;}
.y14e{bottom:714.406350px;}
.y15c{bottom:714.777600px;}
.y5c{bottom:714.795150px;}
.yd{bottom:717.225750px;}
.y225{bottom:717.474750px;}
.y17e{bottom:720.493200px;}
.y81{bottom:725.044200px;}
.y42{bottom:726.795000px;}
.ya0{bottom:727.412400px;}
.y100{bottom:728.675700px;}
.y110{bottom:730.324950px;}
.yc3{bottom:732.307050px;}
.ye6{bottom:734.675700px;}
.y14d{bottom:735.106350px;}
.y1a4{bottom:735.744150px;}
.y5b{bottom:740.295150px;}
.y222{bottom:741.241350px;}
.yc{bottom:742.425750px;}
.y17d{bottom:746.012100px;}
.y41{bottom:748.395000px;}
.y10f{bottom:751.737300px;}
.yff{bottom:754.550250px;}
.y1c5{bottom:754.990350px;}
.y1e5{bottom:755.577450px;}
.y202{bottom:755.595000px;}
.y80{bottom:756.760950px;}
.yc2{bottom:758.339700px;}
.ye5{bottom:760.550250px;}
.y21e{bottom:760.756200px;}
.y1a3{bottom:761.547600px;}
.y221{bottom:762.501300px;}
.y15b{bottom:765.777600px;}
.y5a{bottom:765.795150px;}
.yb{bottom:767.625750px;}
.y40{bottom:769.995000px;}
.y17c{bottom:771.531000px;}
.y10e{bottom:773.149500px;}
.y1c4{bottom:776.626050px;}
.y1e4{bottom:777.177450px;}
.y201{bottom:777.195000px;}
.yfe{bottom:780.424950px;}
.y220{bottom:782.016150px;}
.yc1{bottom:784.372200px;}
.y9f{bottom:784.530000px;}
.y21d{bottom:785.506200px;}
.ye4{bottom:786.424950px;}
.y1a2{bottom:787.350900px;}
.y139{bottom:791.166750px;}
.y15a{bottom:791.277600px;}
.y59{bottom:791.295150px;}
.y3f{bottom:791.595000px;}
.y10d{bottom:794.561850px;}
.y17b{bottom:797.049900px;}
.y200{bottom:798.795000px;}
.yfd{bottom:806.299500px;}
.y21f{bottom:806.766150px;}
.y9e{bottom:810.088950px;}
.yc0{bottom:810.404700px;}
.ye3{bottom:812.299500px;}
.y1a1{bottom:813.154350px;}
.y3e{bottom:813.195000px;}
.y7f{bottom:814.194450px;}
.y10c{bottom:815.974050px;}
.y159{bottom:816.777600px;}
.y58{bottom:816.795150px;}
.y138{bottom:818.300850px;}
.y1c3{bottom:819.897150px;}
.y1e3{bottom:820.377450px;}
.y17a{bottom:822.568800px;}
.y21c{bottom:826.280850px;}
.yfc{bottom:832.174200px;}
.y3d{bottom:834.795000px;}
.y9d{bottom:835.647750px;}
.ybf{bottom:836.437200px;}
.y10b{bottom:837.386400px;}
.ye2{bottom:838.174200px;}
.y1a0{bottom:838.957800px;}
.y7e{bottom:839.911050px;}
.y1c2{bottom:841.532700px;}
.y1e2{bottom:841.977450px;}
.y1ff{bottom:841.995000px;}
.y158{bottom:842.277600px;}
.y57{bottom:842.295150px;}
.y137{bottom:845.435100px;}
.y21b{bottom:847.540650px;}
.y179{bottom:848.087550px;}
.y218{bottom:850.047600px;}
.ya{bottom:850.425600px;}
.y3c{bottom:856.395150px;}
.yfb{bottom:858.048750px;}
.y10a{bottom:858.798750px;}
.y9c{bottom:861.206700px;}
.ybe{bottom:862.469850px;}
.y1c1{bottom:863.168250px;}
.y1fe{bottom:863.595000px;}
.ye1{bottom:864.048750px;}
.y19f{bottom:864.761100px;}
.y7d{bottom:865.627800px;}
.y157{bottom:867.777600px;}
.y56{bottom:867.795150px;}
.y21a{bottom:871.307400px;}
.y136{bottom:872.569500px;}
.y178{bottom:873.606450px;}
.y217{bottom:874.797600px;}
.y3b{bottom:877.995150px;}
.y9{bottom:879.225600px;}
.yfa{bottom:883.923450px;}
.y1c0{bottom:884.803800px;}
.y1e1{bottom:885.177450px;}
.y1fd{bottom:885.195000px;}
.y9b{bottom:886.765500px;}
.ybd{bottom:888.502200px;}
.ye0{bottom:889.923450px;}
.y19e{bottom:890.564550px;}
.y7c{bottom:891.344550px;}
.y156{bottom:893.277600px;}
.y55{bottom:893.295150px;}
.y219{bottom:896.057400px;}
.y177{bottom:899.125350px;}
.y3a{bottom:899.595150px;}
.y1bf{bottom:906.439350px;}
.y1e0{bottom:906.777450px;}
.y1fc{bottom:906.795000px;}
.y8{bottom:908.025600px;}
.ybc{bottom:914.534850px;}
.ydf{bottom:915.798000px;}
.y19d{bottom:916.367850px;}
.y7b{bottom:917.061300px;}
.y54{bottom:918.795150px;}
.y12b{bottom:921.590550px;}
.y135{bottom:926.838000px;}
.y12a{bottom:933.965550px;}
.yf9{bottom:935.672700px;}
.y22a{bottom:936.549150px;}
.y9a{bottom:937.883250px;}
.ybb{bottom:940.567350px;}
.yde{bottom:941.672700px;}
.y19c{bottom:942.171300px;}
.y7a{bottom:942.778050px;}
.y155{bottom:944.277600px;}
.y53{bottom:944.295150px;}
.y12c{bottom:946.340550px;}
.y39{bottom:946.395150px;}
.y176{bottom:947.163000px;}
.y1be{bottom:949.710450px;}
.y1df{bottom:949.977600px;}
.y1fb{bottom:949.995150px;}
.yba{bottom:966.599850px;}
.ydd{bottom:967.547400px;}
.y19b{bottom:967.974750px;}
.y38{bottom:967.995150px;}
.y79{bottom:968.494800px;}
.y154{bottom:969.777600px;}
.y52{bottom:969.795150px;}
.y1bd{bottom:971.346000px;}
.y1de{bottom:971.577600px;}
.y1fa{bottom:971.595150px;}
.y128{bottom:972.614100px;}
.y175{bottom:972.681900px;}
.y127{bottom:984.989100px;}
.y134{bottom:987.106350px;}
.yb9{bottom:992.632350px;}
.ydc{bottom:993.421950px;}
.y19a{bottom:993.778050px;}
.y78{bottom:994.211550px;}
.y7{bottom:994.425600px;}
.y99{bottom:995.000850px;}
.y153{bottom:995.277600px;}
.y51{bottom:995.295150px;}
.y129{bottom:997.364100px;}
.y133{bottom:1014.240600px;}
.y1bc{bottom:1014.617400px;}
.y1dd{bottom:1014.777600px;}
.y37{bottom:1014.795150px;}
.yb8{bottom:1018.665000px;}
.ydb{bottom:1019.296650px;}
.y199{bottom:1019.581500px;}
.y77{bottom:1019.928150px;}
.y98{bottom:1020.559800px;}
.y174{bottom:1020.719550px;}
.y152{bottom:1020.777600px;}
.y50{bottom:1020.795150px;}
.y126{bottom:1021.130850px;}
.y6{bottom:1023.225600px;}
.y1bb{bottom:1036.252950px;}
.y1dc{bottom:1036.377600px;}
.y36{bottom:1036.395150px;}
.y125{bottom:1042.390650px;}
.yb7{bottom:1044.697500px;}
.yda{bottom:1045.171200px;}
.y198{bottom:1045.384950px;}
.y76{bottom:1045.644900px;}
.y97{bottom:1046.118600px;}
.y173{bottom:1046.238600px;}
.y151{bottom:1046.277600px;}
.y4f{bottom:1046.295150px;}
.y5{bottom:1052.025600px;}
.y35{bottom:1057.995150px;}
.y132{bottom:1068.509100px;}
.yb6{bottom:1070.730150px;}
.yd9{bottom:1071.045900px;}
.y197{bottom:1071.188250px;}
.y75{bottom:1071.361650px;}
.y96{bottom:1071.677550px;}
.y172{bottom:1071.757350px;}
.y150{bottom:1071.777600px;}
.y4e{bottom:1071.795150px;}
.y1ba{bottom:1079.524050px;}
.y1db{bottom:1079.577600px;}
.y34{bottom:1079.595150px;}
.y12f{bottom:1080.375600px;}
.y131{bottom:1095.643350px;}
.yb5{bottom:1096.762500px;}
.yd8{bottom:1096.920450px;}
.y196{bottom:1096.991700px;}
.y74{bottom:1097.078400px;}
.y95{bottom:1097.236200px;}
.y171{bottom:1097.276250px;}
.y14f{bottom:1097.277600px;}
.y4d{bottom:1097.295150px;}
.y12e{bottom:1101.075600px;}
.y1b9{bottom:1101.159600px;}
.y1da{bottom:1101.177450px;}
.y33{bottom:1101.195150px;}
.y12d{bottom:1121.775600px;}
.y130{bottom:1122.777600px;}
.y32{bottom:1122.795150px;}
.y4{bottom:1135.305150px;}
.y3{bottom:1153.305150px;}
.y2{bottom:1171.305150px;}
.y25{bottom:1183.301550px;}
.y1{bottom:1189.305150px;}
.y24{bottom:1204.901700px;}
.h6{height:29.502422px;}
.ha{height:39.585938px;}
.h2{height:43.066406px;}
.h12{height:45.858398px;}
.h10{height:49.482422px;}
.hf{height:49.992188px;}
.h8{height:50.027344px;}
.hc{height:51.679688px;}
.h7{height:57.093750px;}
.hd{height:57.585938px;}
.h11{height:57.911133px;}
.hb{height:59.378906px;}
.he{height:60.807480px;}
.h4{height:63.122801px;}
.h9{height:63.175781px;}
.h5{height:69.275391px;}
.h3{height:79.171875px;}
.h13{height:107.411133px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:80.787450px;}
.x26{left:82.527900px;}
.x2{left:84.684600px;}
.x25{left:92.459550px;}
.x2f{left:101.097900px;}
.x2b{left:108.884700px;}
.x17{left:109.983150px;}
.x22{left:112.726500px;}
.x14{left:123.307050px;}
.x29{left:129.538350px;}
.x3{left:142.446300px;}
.x10{left:164.939700px;}
.x5{left:177.778350px;}
.x30{left:198.899700px;}
.x2c{left:203.471850px;}
.xf{left:208.346400px;}
.x23{left:210.912750px;}
.x15{left:212.473650px;}
.x18{left:221.225250px;}
.x16{left:226.719900px;}
.x2e{left:231.577350px;}
.x36{left:251.134950px;}
.x33{left:257.092800px;}
.x28{left:264.947100px;}
.x12{left:287.494350px;}
.x37{left:313.356300px;}
.x34{left:319.781550px;}
.x8{left:322.389150px;}
.x1a{left:325.595100px;}
.x11{left:326.636400px;}
.x31{left:329.630700px;}
.x19{left:331.544850px;}
.x2d{left:335.371050px;}
.x35{left:340.394400px;}
.x27{left:352.066500px;}
.x32{left:391.252050px;}
.xc{left:407.752950px;}
.x2a{left:411.300450px;}
.x1c{left:419.652300px;}
.x1b{left:435.914700px;}
.xa{left:472.783200px;}
.x6{left:522.813450px;}
.x24{left:524.022150px;}
.xd{left:533.763150px;}
.x4{left:539.231400px;}
.x1d{left:540.284550px;}
.xe{left:588.396000px;}
.x9{left:594.712350px;}
.x1f{left:628.392000px;}
.x1e{left:644.654250px;}
.x7{left:673.696650px;}
.xb{left:699.505800px;}
.x21{left:733.067850px;}
.x20{left:749.024100px;}
.x13{left:793.029450px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.312000pt;}
.v1{vertical-align:24.864000pt;}
.v4{vertical-align:44.000000pt;}
.ls8{letter-spacing:-1.600000pt;}
.ls3{letter-spacing:-1.280000pt;}
.ls2{letter-spacing:-0.074667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.878933pt;}
.ls1{letter-spacing:13.963200pt;}
.ls5{letter-spacing:326.660800pt;}
.ls4{letter-spacing:341.327467pt;}
.ws2{word-spacing:-16.874667pt;}
.wse{word-spacing:-16.800000pt;}
.ws56{word-spacing:-16.000000pt;}
.ws63{word-spacing:-14.720000pt;}
.ws37{word-spacing:-14.666667pt;}
.ws6b{word-spacing:-14.400000pt;}
.ws1{word-spacing:-9.837931pt;}
.ws1a{word-spacing:-9.328000pt;}
.ws3{word-spacing:-7.027093pt;}
.ws6d{word-spacing:-4.096000pt;}
.ws6e{word-spacing:-3.840000pt;}
.ws4a{word-spacing:-3.072000pt;}
.ws1b{word-spacing:-2.944000pt;}
.ws51{word-spacing:-2.816000pt;}
.ws57{word-spacing:-2.688000pt;}
.ws2f{word-spacing:-2.624000pt;}
.ws61{word-spacing:-2.240000pt;}
.ws60{word-spacing:-2.176000pt;}
.ws47{word-spacing:-2.112000pt;}
.ws59{word-spacing:-2.048000pt;}
.ws62{word-spacing:-1.984000pt;}
.ws48{word-spacing:-1.920000pt;}
.ws28{word-spacing:-1.856000pt;}
.wsc{word-spacing:-1.792000pt;}
.ws2d{word-spacing:-1.664000pt;}
.ws12{word-spacing:-1.600000pt;}
.ws25{word-spacing:-1.280000pt;}
.ws24{word-spacing:-1.024000pt;}
.ws52{word-spacing:-0.896000pt;}
.wsb{word-spacing:-0.832000pt;}
.ws1f{word-spacing:-0.768000pt;}
.ws68{word-spacing:-0.704000pt;}
.ws46{word-spacing:-0.640000pt;}
.ws58{word-spacing:-0.576000pt;}
.ws16{word-spacing:-0.512000pt;}
.ws10{word-spacing:-0.384000pt;}
.ws33{word-spacing:-0.192000pt;}
.ws4c{word-spacing:-0.128000pt;}
.ws64{word-spacing:-0.064000pt;}
.ws0{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws50{word-spacing:0.192000pt;}
.ws11{word-spacing:0.256000pt;}
.ws22{word-spacing:0.512000pt;}
.ws19{word-spacing:0.832000pt;}
.ws5a{word-spacing:0.896000pt;}
.ws2e{word-spacing:0.960000pt;}
.ws5f{word-spacing:1.024000pt;}
.ws13{word-spacing:1.088000pt;}
.ws17{word-spacing:1.216000pt;}
.wsf{word-spacing:1.280000pt;}
.ws21{word-spacing:1.344000pt;}
.ws40{word-spacing:1.408000pt;}
.ws2c{word-spacing:1.536000pt;}
.ws4e{word-spacing:1.600000pt;}
.ws8{word-spacing:1.664000pt;}
.ws32{word-spacing:1.728000pt;}
.ws5b{word-spacing:1.792000pt;}
.ws1c{word-spacing:1.920000pt;}
.ws3a{word-spacing:2.112000pt;}
.ws41{word-spacing:2.176000pt;}
.ws5e{word-spacing:2.240000pt;}
.ws49{word-spacing:2.304000pt;}
.ws1e{word-spacing:2.368000pt;}
.ws30{word-spacing:2.432000pt;}
.ws54{word-spacing:2.560000pt;}
.ws2a{word-spacing:2.624000pt;}
.ws1d{word-spacing:2.944000pt;}
.ws5d{word-spacing:3.136000pt;}
.ws5c{word-spacing:3.264000pt;}
.ws31{word-spacing:3.392000pt;}
.ws29{word-spacing:3.584000pt;}
.ws2b{word-spacing:3.712000pt;}
.ws4d{word-spacing:4.160000pt;}
.ws44{word-spacing:4.224000pt;}
.ws7{word-spacing:4.288000pt;}
.ws65{word-spacing:4.416000pt;}
.ws20{word-spacing:4.608000pt;}
.ws45{word-spacing:5.056000pt;}
.ws23{word-spacing:5.376000pt;}
.ws4b{word-spacing:5.440000pt;}
.ws6a{word-spacing:5.632000pt;}
.ws39{word-spacing:5.952000pt;}
.ws69{word-spacing:6.016000pt;}
.ws67{word-spacing:6.080000pt;}
.wsd{word-spacing:6.208000pt;}
.ws42{word-spacing:6.400000pt;}
.ws18{word-spacing:6.528000pt;}
.ws15{word-spacing:6.656000pt;}
.ws66{word-spacing:6.720000pt;}
.ws26{word-spacing:6.976000pt;}
.ws55{word-spacing:7.040000pt;}
.ws6c{word-spacing:7.296000pt;}
.ws43{word-spacing:7.424000pt;}
.ws9{word-spacing:7.616000pt;}
.ws27{word-spacing:7.936000pt;}
.ws53{word-spacing:8.000000pt;}
.ws4f{word-spacing:8.576000pt;}
.ws6{word-spacing:8.896000pt;}
.ws5{word-spacing:9.024000pt;}
.wsa{word-spacing:9.920000pt;}
.ws14{word-spacing:13.952000pt;}
.ws36{word-spacing:235.813333pt;}
.ws38{word-spacing:245.595200pt;}
.ws3e{word-spacing:253.313067pt;}
.ws3c{word-spacing:276.144000pt;}
.ws35{word-spacing:276.576000pt;}
.ws3f{word-spacing:297.327467pt;}
.ws3d{word-spacing:326.660800pt;}
.ws3b{word-spacing:513.186667pt;}
.ws34{word-spacing:561.325333pt;}
._2{margin-left:-17.521067pt;}
._d{margin-left:-15.814400pt;}
._14{margin-left:-8.236800pt;}
._f{margin-left:-7.040000pt;}
._9{margin-left:-5.568000pt;}
._1{margin-left:-3.980800pt;}
._8{margin-left:-3.014400pt;}
._0{margin-left:-1.817600pt;}
._4{margin-left:-0.903467pt;}
._7{width:1.027200pt;}
._3{width:2.000000pt;}
._6{width:3.520000pt;}
._b{width:5.190400pt;}
._c{width:6.899200pt;}
._a{width:7.854933pt;}
._5{width:8.837867pt;}
._e{width:9.787733pt;}
._10{width:10.688533pt;}
._13{width:272.864000pt;}
._11{width:396.714133pt;}
._12{width:532.770667pt;}
.fs4{font-size:31.093333pt;}
.fs7{font-size:37.312000pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:53.895067pt;}
.y23{bottom:68.018933pt;}
.y27{bottom:74.230933pt;}
.y22{bottom:80.818933pt;}
.yb4{bottom:113.385733pt;}
.y31{bottom:113.385867pt;}
.y124{bottom:113.386000pt;}
.y170{bottom:114.024533pt;}
.y216{bottom:114.040000pt;}
.y73{bottom:114.040133pt;}
.y148{bottom:114.802533pt;}
.y1f9{bottom:114.824400pt;}
.y15{bottom:117.825867pt;}
.y1d9{bottom:132.617333pt;}
.y1b8{bottom:132.855600pt;}
.y14{bottom:133.825867pt;}
.y123{bottom:133.826000pt;}
.y1f8{bottom:134.024400pt;}
.y192{bottom:136.069333pt;}
.yb3{bottom:136.104800pt;}
.y30{bottom:136.222000pt;}
.y94{bottom:136.245333pt;}
.yf8{bottom:136.385467pt;}
.yd7{bottom:136.525733pt;}
.y16f{bottom:136.691200pt;}
.y215{bottom:136.706667pt;}
.y72{bottom:136.706800pt;}
.y147{bottom:138.922000pt;}
.y1d8{bottom:151.848933pt;}
.y1b7{bottom:152.325333pt;}
.y191{bottom:158.752800pt;}
.yb2{bottom:158.823733pt;}
.y2f{bottom:159.058133pt;}
.y93{bottom:159.104533pt;}
.y16e{bottom:159.357867pt;}
.y214{bottom:159.373333pt;}
.y71{bottom:159.373467pt;}
.yf7{bottom:159.385200pt;}
.yd6{bottom:159.665733pt;}
.y146{bottom:163.041200pt;}
.y1f7{bottom:172.424400pt;}
.y190{bottom:181.436267pt;}
.yb1{bottom:181.542667pt;}
.y2e{bottom:181.894267pt;}
.y92{bottom:181.963867pt;}
.y16d{bottom:182.024533pt;}
.y213{bottom:182.040000pt;}
.y70{bottom:182.040133pt;}
.yf6{bottom:182.384800pt;}
.yd5{bottom:182.805867pt;}
.y122{bottom:183.181333pt;}
.y145{bottom:187.160533pt;}
.y1d7{bottom:190.312267pt;}
.y1b6{bottom:191.264667pt;}
.y1f6{bottom:191.624400pt;}
.y21{bottom:198.840933pt;}
.y18f{bottom:204.119733pt;}
.yb0{bottom:204.261600pt;}
.y16c{bottom:204.691200pt;}
.y212{bottom:204.706667pt;}
.y6f{bottom:204.706800pt;}
.y2d{bottom:204.730400pt;}
.y91{bottom:204.823200pt;}
.yf5{bottom:205.384533pt;}
.yd4{bottom:205.945867pt;}
.y121{bottom:206.481067pt;}
.y1d6{bottom:209.543867pt;}
.y1b5{bottom:210.734400pt;}
.y1f5{bottom:210.824400pt;}
.y144{bottom:211.280000pt;}
.y20{bottom:218.040933pt;}
.y18e{bottom:226.803200pt;}
.yaf{bottom:226.980667pt;}
.y16b{bottom:227.357867pt;}
.y211{bottom:227.373333pt;}
.y6e{bottom:227.373467pt;}
.y2c{bottom:227.566533pt;}
.y90{bottom:227.682533pt;}
.yf4{bottom:228.384133pt;}
.y1d5{bottom:228.775467pt;}
.yd3{bottom:229.085867pt;}
.y120{bottom:229.781067pt;}
.y1b4{bottom:230.204133pt;}
.y143{bottom:235.399200pt;}
.y1f{bottom:237.240933pt;}
.y1f4{bottom:249.224400pt;}
.y18d{bottom:249.486533pt;}
.yae{bottom:249.699600pt;}
.y16a{bottom:250.024533pt;}
.y210{bottom:250.040000pt;}
.y6d{bottom:250.040133pt;}
.y2b{bottom:250.402667pt;}
.yf3{bottom:251.383867pt;}
.yd2{bottom:252.225867pt;}
.y11f{bottom:253.080800pt;}
.y1e{bottom:256.440933pt;}
.y109{bottom:256.717200pt;}
.y142{bottom:259.518533pt;}
.y1d4{bottom:267.238667pt;}
.y1f3{bottom:268.424400pt;}
.y1b3{bottom:269.143467pt;}
.y18c{bottom:272.170000pt;}
.y20f{bottom:272.706667pt;}
.y6c{bottom:272.706800pt;}
.y2a{bottom:273.238800pt;}
.y8f{bottom:273.401200pt;}
.yf2{bottom:274.383600pt;}
.yd1{bottom:275.366000pt;}
.y1d{bottom:275.640933pt;}
.y11e{bottom:276.380667pt;}
.y108{bottom:279.716933pt;}
.y141{bottom:283.638000pt;}
.y1d3{bottom:286.470267pt;}
.y1b2{bottom:288.613067pt;}
.y1c{bottom:294.840933pt;}
.y18b{bottom:294.853467pt;}
.yad{bottom:295.137467pt;}
.y169{bottom:295.357867pt;}
.y6b{bottom:295.373467pt;}
.y29{bottom:296.074933pt;}
.y11d{bottom:299.680400pt;}
.y107{bottom:302.716533pt;}
.y195{bottom:303.839333pt;}
.y1d2{bottom:305.701867pt;}
.y1f2{bottom:306.824400pt;}
.y140{bottom:307.757200pt;}
.y1b1{bottom:308.082800pt;}
.y1b{bottom:314.040933pt;}
.y18a{bottom:317.536933pt;}
.y168{bottom:318.024533pt;}
.y20e{bottom:318.040000pt;}
.y6a{bottom:318.040133pt;}
.yf1{bottom:320.382933pt;}
.yd0{bottom:321.646000pt;}
.y11c{bottom:322.980267pt;}
.yac{bottom:323.189867pt;}
.y8e{bottom:324.453067pt;}
.y106{bottom:325.716267pt;}
.y1f1{bottom:326.024400pt;}
.y194{bottom:326.979333pt;}
.y13f{bottom:331.876533pt;}
.y1a{bottom:333.240933pt;}
.y189{bottom:340.220400pt;}
.y69{bottom:340.706800pt;}
.y28{bottom:341.747200pt;}
.y1d1{bottom:344.165067pt;}
.y8d{bottom:347.312533pt;}
.y105{bottom:348.715867pt;}
.y193{bottom:350.119333pt;}
.y1b0{bottom:350.488933pt;}
.y19{bottom:352.440933pt;}
.y13e{bottom:355.995867pt;}
.y188{bottom:362.903867pt;}
.y167{bottom:363.357867pt;}
.y68{bottom:363.373467pt;}
.y1d0{bottom:363.396800pt;}
.y1f0{bottom:364.424400pt;}
.y20d{bottom:364.440000pt;}
.y11b{bottom:369.579867pt;}
.y8c{bottom:370.171733pt;}
.y18{bottom:371.640933pt;}
.yf0{bottom:371.715600pt;}
.ycf{bottom:373.259333pt;}
.yab{bottom:373.961067pt;}
.y13d{bottom:380.115200pt;}
.y1cf{bottom:382.628400pt;}
.y1ef{bottom:383.624400pt;}
.y20c{bottom:383.640000pt;}
.y187{bottom:385.587200pt;}
.y166{bottom:386.024533pt;}
.y67{bottom:386.040133pt;}
.y17{bottom:390.840933pt;}
.y11a{bottom:392.879733pt;}
.y8b{bottom:393.031067pt;}
.yef{bottom:394.715200pt;}
.yce{bottom:396.399333pt;}
.yaa{bottom:396.680133pt;}
.y1af{bottom:401.694933pt;}
.y1ce{bottom:401.860000pt;}
.y13c{bottom:404.234533pt;}
.y186{bottom:408.270667pt;}
.y165{bottom:408.691200pt;}
.y66{bottom:408.706800pt;}
.y16{bottom:410.040933pt;}
.y8a{bottom:415.890400pt;}
.y119{bottom:416.179467pt;}
.yee{bottom:417.714933pt;}
.ya9{bottom:419.399067pt;}
.ycd{bottom:419.539467pt;}
.y1ee{bottom:422.024400pt;}
.y20b{bottom:422.040000pt;}
.y1ae{bottom:424.631200pt;}
.y13b{bottom:428.353867pt;}
.y185{bottom:430.954133pt;}
.y164{bottom:431.357867pt;}
.y65{bottom:431.373467pt;}
.y4c{bottom:431.640000pt;}
.y89{bottom:438.749733pt;}
.y118{bottom:439.479333pt;}
.y1cd{bottom:440.323200pt;}
.yed{bottom:440.714533pt;}
.y1ed{bottom:441.224400pt;}
.y20a{bottom:441.240000pt;}
.ya8{bottom:442.118000pt;}
.ycc{bottom:442.679467pt;}
.y1ad{bottom:447.567600pt;}
.y4b{bottom:450.840000pt;}
.y13a{bottom:452.473200pt;}
.y184{bottom:453.637600pt;}
.y163{bottom:454.024533pt;}
.y64{bottom:454.040133pt;}
.y1cc{bottom:459.554800pt;}
.y88{bottom:461.609067pt;}
.y117{bottom:462.779200pt;}
.yec{bottom:463.714267pt;}
.ya7{bottom:464.836933pt;}
.ycb{bottom:465.819467pt;}
.y1ac{bottom:470.504000pt;}
.y183{bottom:476.321067pt;}
.y162{bottom:476.691200pt;}
.y63{bottom:476.706800pt;}
.y1cb{bottom:478.786400pt;}
.y1ec{bottom:479.624400pt;}
.y209{bottom:479.640000pt;}
.y13{bottom:480.734000pt;}
.y87{bottom:484.468400pt;}
.y116{bottom:486.079067pt;}
.yeb{bottom:486.714000pt;}
.ya6{bottom:487.556000pt;}
.yca{bottom:488.959467pt;}
.y4a{bottom:492.440000pt;}
.y1ab{bottom:493.440400pt;}
.y1eb{bottom:498.824400pt;}
.y208{bottom:498.840000pt;}
.y182{bottom:499.004400pt;}
.y161{bottom:499.357867pt;}
.y62{bottom:499.373467pt;}
.y12{bottom:503.134000pt;}
.y86{bottom:507.327733pt;}
.y115{bottom:509.378800pt;}
.y104{bottom:509.713600pt;}
.ya5{bottom:510.274933pt;}
.y49{bottom:511.640000pt;}
.yc9{bottom:512.099467pt;}
.y1aa{bottom:516.376667pt;}
.y1ca{bottom:517.249733pt;}
.y14c{bottom:518.113733pt;}
.y160{bottom:522.024533pt;}
.y61{bottom:522.040133pt;}
.y11{bottom:525.534000pt;}
.y85{bottom:530.187067pt;}
.y48{bottom:530.840000pt;}
.yea{bottom:532.713333pt;}
.ya4{bottom:532.994000pt;}
.yc8{bottom:535.239600pt;}
.y1c9{bottom:536.481333pt;}
.y1ea{bottom:537.224400pt;}
.y207{bottom:537.240000pt;}
.y1a9{bottom:539.313067pt;}
.y181{bottom:541.704667pt;}
.y14b{bottom:544.570533pt;}
.y60{bottom:544.706800pt;}
.y10{bottom:547.934000pt;}
.y47{bottom:550.040000pt;}
.y84{bottom:553.046400pt;}
.ya3{bottom:555.712933pt;}
.y114{bottom:555.978533pt;}
.y1e9{bottom:556.424400pt;}
.y206{bottom:556.440000pt;}
.y229{bottom:556.834000pt;}
.yc7{bottom:558.379600pt;}
.y1a8{bottom:562.249467pt;}
.y15f{bottom:567.357867pt;}
.y5f{bottom:567.373467pt;}
.y46{bottom:569.240000pt;}
.y180{bottom:569.721467pt;}
.yf{bottom:570.334000pt;}
.y14a{bottom:571.027200pt;}
.y1c8{bottom:574.944533pt;}
.y1e8{bottom:575.624400pt;}
.y205{bottom:575.640000pt;}
.y228{bottom:575.731733pt;}
.y83{bottom:575.905733pt;}
.ya2{bottom:578.431867pt;}
.y103{bottom:578.712667pt;}
.y113{bottom:579.278267pt;}
.yc6{bottom:581.519600pt;}
.ye9{bottom:584.046000pt;}
.y1a7{bottom:585.185733pt;}
.y224{bottom:587.408800pt;}
.y45{bottom:588.440000pt;}
.y15e{bottom:590.024533pt;}
.y5e{bottom:590.040133pt;}
.y227{bottom:594.629333pt;}
.y149{bottom:597.483867pt;}
.y82{bottom:598.765067pt;}
.ya1{bottom:601.150800pt;}
.y102{bottom:601.712267pt;}
.y112{bottom:602.578133pt;}
.yc5{bottom:604.659600pt;}
.ye8{bottom:607.045600pt;}
.y44{bottom:607.640000pt;}
.y1a6{bottom:608.122133pt;}
.y223{bottom:609.408800pt;}
.y15d{bottom:612.691200pt;}
.y5d{bottom:612.706800pt;}
.y1c7{bottom:613.407733pt;}
.y1e7{bottom:614.024400pt;}
.y204{bottom:614.040000pt;}
.ye{bottom:615.134000pt;}
.y226{bottom:615.755333pt;}
.y17f{bottom:617.755067pt;}
.y101{bottom:624.712000pt;}
.y111{bottom:625.877867pt;}
.y43{bottom:626.840000pt;}
.yc4{bottom:627.799600pt;}
.ye7{bottom:630.045333pt;}
.y1a5{bottom:631.058533pt;}
.y1c6{bottom:632.639333pt;}
.y1e6{bottom:633.224400pt;}
.y203{bottom:633.240000pt;}
.y14e{bottom:635.027867pt;}
.y15c{bottom:635.357867pt;}
.y5c{bottom:635.373467pt;}
.yd{bottom:637.534000pt;}
.y225{bottom:637.755333pt;}
.y17e{bottom:640.438400pt;}
.y81{bottom:644.483733pt;}
.y42{bottom:646.040000pt;}
.ya0{bottom:646.588800pt;}
.y100{bottom:647.711733pt;}
.y110{bottom:649.177733pt;}
.yc3{bottom:650.939600pt;}
.ye6{bottom:653.045067pt;}
.y14d{bottom:653.427867pt;}
.y1a4{bottom:653.994800pt;}
.y5b{bottom:658.040133pt;}
.y222{bottom:658.881200pt;}
.yc{bottom:659.934000pt;}
.y17d{bottom:663.121867pt;}
.y41{bottom:665.240000pt;}
.y10f{bottom:668.210933pt;}
.yff{bottom:670.711333pt;}
.y1c5{bottom:671.102533pt;}
.y1e5{bottom:671.624400pt;}
.y202{bottom:671.640000pt;}
.y80{bottom:672.676400pt;}
.yc2{bottom:674.079733pt;}
.ye5{bottom:676.044667pt;}
.y21e{bottom:676.227733pt;}
.y1a3{bottom:676.931200pt;}
.y221{bottom:677.778933pt;}
.y15b{bottom:680.691200pt;}
.y5a{bottom:680.706800pt;}
.yb{bottom:682.334000pt;}
.y40{bottom:684.440000pt;}
.y17c{bottom:685.805333pt;}
.y10e{bottom:687.244000pt;}
.y1c4{bottom:690.334267pt;}
.y1e4{bottom:690.824400pt;}
.y201{bottom:690.840000pt;}
.yfe{bottom:693.711067pt;}
.y220{bottom:695.125467pt;}
.yc1{bottom:697.219733pt;}
.y9f{bottom:697.360000pt;}
.y21d{bottom:698.227733pt;}
.ye4{bottom:699.044400pt;}
.y1a2{bottom:699.867467pt;}
.y139{bottom:703.259333pt;}
.y15a{bottom:703.357867pt;}
.y59{bottom:703.373467pt;}
.y3f{bottom:703.640000pt;}
.y10d{bottom:706.277200pt;}
.y17b{bottom:708.488800pt;}
.y200{bottom:710.040000pt;}
.yfd{bottom:716.710667pt;}
.y21f{bottom:717.125467pt;}
.y9e{bottom:720.079067pt;}
.yc0{bottom:720.359733pt;}
.ye3{bottom:722.044000pt;}
.y1a1{bottom:722.803867pt;}
.y3e{bottom:722.840000pt;}
.y7f{bottom:723.728400pt;}
.y10c{bottom:725.310267pt;}
.y159{bottom:726.024533pt;}
.y58{bottom:726.040133pt;}
.y138{bottom:727.378533pt;}
.y1c3{bottom:728.797467pt;}
.y1e3{bottom:729.224400pt;}
.y17a{bottom:731.172267pt;}
.y21c{bottom:734.471867pt;}
.yfc{bottom:739.710400pt;}
.y3d{bottom:742.040000pt;}
.y9d{bottom:742.798000pt;}
.ybf{bottom:743.499733pt;}
.y10b{bottom:744.343467pt;}
.ye2{bottom:745.043733pt;}
.y1a0{bottom:745.740267pt;}
.y7e{bottom:746.587600pt;}
.y1c2{bottom:748.029067pt;}
.y1e2{bottom:748.424400pt;}
.y1ff{bottom:748.440000pt;}
.y158{bottom:748.691200pt;}
.y57{bottom:748.706800pt;}
.y137{bottom:751.497867pt;}
.y21b{bottom:753.369467pt;}
.y179{bottom:753.855600pt;}
.y218{bottom:755.597867pt;}
.ya{bottom:755.933867pt;}
.y3c{bottom:761.240133pt;}
.yfb{bottom:762.710000pt;}
.y10a{bottom:763.376667pt;}
.y9c{bottom:765.517067pt;}
.ybe{bottom:766.639867pt;}
.y1c1{bottom:767.260667pt;}
.y1fe{bottom:767.640000pt;}
.ye1{bottom:768.043333pt;}
.y19f{bottom:768.676533pt;}
.y7d{bottom:769.446933pt;}
.y157{bottom:771.357867pt;}
.y56{bottom:771.373467pt;}
.y21a{bottom:774.495467pt;}
.y136{bottom:775.617333pt;}
.y178{bottom:776.539067pt;}
.y217{bottom:777.597867pt;}
.y3b{bottom:780.440133pt;}
.y9{bottom:781.533867pt;}
.yfa{bottom:785.709733pt;}
.y1c0{bottom:786.492267pt;}
.y1e1{bottom:786.824400pt;}
.y1fd{bottom:786.840000pt;}
.y9b{bottom:788.236000pt;}
.ybd{bottom:789.779733pt;}
.ye0{bottom:791.043067pt;}
.y19e{bottom:791.612933pt;}
.y7c{bottom:792.306267pt;}
.y156{bottom:794.024533pt;}
.y55{bottom:794.040133pt;}
.y219{bottom:796.495467pt;}
.y177{bottom:799.222533pt;}
.y3a{bottom:799.640133pt;}
.y1bf{bottom:805.723867pt;}
.y1e0{bottom:806.024400pt;}
.y1fc{bottom:806.040000pt;}
.y8{bottom:807.133867pt;}
.ybc{bottom:812.919867pt;}
.ydf{bottom:814.042667pt;}
.y19d{bottom:814.549200pt;}
.y7b{bottom:815.165600pt;}
.y54{bottom:816.706800pt;}
.y12b{bottom:819.191600pt;}
.y135{bottom:823.856000pt;}
.y12a{bottom:830.191600pt;}
.yf9{bottom:831.709067pt;}
.y22a{bottom:832.488133pt;}
.y9a{bottom:833.674000pt;}
.ybb{bottom:836.059867pt;}
.yde{bottom:837.042400pt;}
.y19c{bottom:837.485600pt;}
.y7a{bottom:838.024933pt;}
.y155{bottom:839.357867pt;}
.y53{bottom:839.373467pt;}
.y12c{bottom:841.191600pt;}
.y39{bottom:841.240133pt;}
.y176{bottom:841.922667pt;}
.y1be{bottom:844.187067pt;}
.y1df{bottom:844.424533pt;}
.y1fb{bottom:844.440133pt;}
.yba{bottom:859.199867pt;}
.ydd{bottom:860.042133pt;}
.y19b{bottom:860.422000pt;}
.y38{bottom:860.440133pt;}
.y79{bottom:860.884267pt;}
.y154{bottom:862.024533pt;}
.y52{bottom:862.040133pt;}
.y1bd{bottom:863.418667pt;}
.y1de{bottom:863.624533pt;}
.y1fa{bottom:863.640133pt;}
.y128{bottom:864.545867pt;}
.y175{bottom:864.606133pt;}
.y127{bottom:875.545867pt;}
.y134{bottom:877.427867pt;}
.yb9{bottom:882.339867pt;}
.ydc{bottom:883.041733pt;}
.y19a{bottom:883.358267pt;}
.y78{bottom:883.743600pt;}
.y7{bottom:883.933867pt;}
.y99{bottom:884.445200pt;}
.y153{bottom:884.691200pt;}
.y51{bottom:884.706800pt;}
.y129{bottom:886.545867pt;}
.y133{bottom:901.547200pt;}
.y1bc{bottom:901.882133pt;}
.y1dd{bottom:902.024533pt;}
.y37{bottom:902.040133pt;}
.yb8{bottom:905.480000pt;}
.ydb{bottom:906.041467pt;}
.y199{bottom:906.294667pt;}
.y77{bottom:906.602800pt;}
.y98{bottom:907.164267pt;}
.y174{bottom:907.306267pt;}
.y152{bottom:907.357867pt;}
.y50{bottom:907.373467pt;}
.y126{bottom:907.671867pt;}
.y6{bottom:909.533867pt;}
.y1bb{bottom:921.113733pt;}
.y1dc{bottom:921.224533pt;}
.y36{bottom:921.240133pt;}
.y125{bottom:926.569467pt;}
.yb7{bottom:928.620000pt;}
.yda{bottom:929.041067pt;}
.y198{bottom:929.231067pt;}
.y76{bottom:929.462133pt;}
.y97{bottom:929.883200pt;}
.y173{bottom:929.989867pt;}
.y151{bottom:930.024533pt;}
.y4f{bottom:930.040133pt;}
.y5{bottom:935.133867pt;}
.y35{bottom:940.440133pt;}
.y132{bottom:949.785867pt;}
.yb6{bottom:951.760133pt;}
.yd9{bottom:952.040800pt;}
.y197{bottom:952.167333pt;}
.y75{bottom:952.321467pt;}
.y96{bottom:952.602267pt;}
.y172{bottom:952.673200pt;}
.y150{bottom:952.691200pt;}
.y4e{bottom:952.706800pt;}
.y1ba{bottom:959.576933pt;}
.y1db{bottom:959.624533pt;}
.y34{bottom:959.640133pt;}
.y12f{bottom:960.333867pt;}
.y131{bottom:973.905200pt;}
.yb5{bottom:974.900000pt;}
.yd8{bottom:975.040400pt;}
.y196{bottom:975.103733pt;}
.y74{bottom:975.180800pt;}
.y95{bottom:975.321067pt;}
.y171{bottom:975.356667pt;}
.y14f{bottom:975.357867pt;}
.y4d{bottom:975.373467pt;}
.y12e{bottom:978.733867pt;}
.y1b9{bottom:978.808533pt;}
.y1da{bottom:978.824400pt;}
.y33{bottom:978.840133pt;}
.y12d{bottom:997.133867pt;}
.y130{bottom:998.024533pt;}
.y32{bottom:998.040133pt;}
.y4{bottom:1009.160133pt;}
.y3{bottom:1025.160133pt;}
.y2{bottom:1041.160133pt;}
.y25{bottom:1051.823600pt;}
.y1{bottom:1057.160133pt;}
.y24{bottom:1071.023733pt;}
.h6{height:26.224375pt;}
.ha{height:35.187500pt;}
.h2{height:38.281250pt;}
.h12{height:40.763021pt;}
.h10{height:43.984375pt;}
.hf{height:44.437500pt;}
.h8{height:44.468750pt;}
.hc{height:45.937500pt;}
.h7{height:50.750000pt;}
.hd{height:51.187500pt;}
.h11{height:51.476562pt;}
.hb{height:52.781250pt;}
.he{height:54.051094pt;}
.h4{height:56.109156pt;}
.h9{height:56.156250pt;}
.h5{height:61.578125pt;}
.h3{height:70.375000pt;}
.h13{height:95.476562pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:71.811067pt;}
.x26{left:73.358133pt;}
.x2{left:75.275200pt;}
.x25{left:82.186267pt;}
.x2f{left:89.864800pt;}
.x2b{left:96.786400pt;}
.x17{left:97.762800pt;}
.x22{left:100.201333pt;}
.x14{left:109.606267pt;}
.x29{left:115.145200pt;}
.x3{left:126.618933pt;}
.x10{left:146.613067pt;}
.x5{left:158.025200pt;}
.x30{left:176.799733pt;}
.x2c{left:180.863867pt;}
.xf{left:185.196800pt;}
.x23{left:187.478000pt;}
.x15{left:188.865467pt;}
.x18{left:196.644667pt;}
.x16{left:201.528800pt;}
.x2e{left:205.846533pt;}
.x36{left:223.231067pt;}
.x33{left:228.526933pt;}
.x28{left:235.508533pt;}
.x12{left:255.550533pt;}
.x37{left:278.538933pt;}
.x34{left:284.250267pt;}
.x8{left:286.568133pt;}
.x1a{left:289.417867pt;}
.x11{left:290.343467pt;}
.x31{left:293.005067pt;}
.x19{left:294.706533pt;}
.x2d{left:298.107600pt;}
.x35{left:302.572800pt;}
.x27{left:312.948000pt;}
.x32{left:347.779600pt;}
.xc{left:362.447067pt;}
.x2a{left:365.600400pt;}
.x1c{left:373.024267pt;}
.x1b{left:387.479733pt;}
.xa{left:420.251733pt;}
.x6{left:464.723067pt;}
.x24{left:465.797467pt;}
.xd{left:474.456133pt;}
.x4{left:479.316800pt;}
.x1d{left:480.252933pt;}
.xe{left:523.018667pt;}
.x9{left:528.633200pt;}
.x1f{left:558.570667pt;}
.x1e{left:573.026000pt;}
.x7{left:598.841467pt;}
.xb{left:621.782933pt;}
.x21{left:651.615867pt;}
.x20{left:665.799200pt;}
.x13{left:704.915067pt;}
}




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