
    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_2f5ed999b7abfafbffd4cf71.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_bcc4c0657d7464ef58ee6de3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_394adffa173b60d361701d61.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_904a0b4e0ccb5ba738b7d638.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926758;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_359fa0949d35ddbf1b9ee564.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.728027;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_38356eaa847b75e39cbe6939.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_3b40eb8edcdfc0fb79ad8d1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.074000;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_3a08cf1d1985803be72104f7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765000;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_d0b51815919e59486aebdd60.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727000;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_0c7ab26982198d46d0284e06.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_48c4391a4d0f6b3c276c9b50.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.989000;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_80074a9c839b26a49b8fe7fb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.981000;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_0c7ab26982198d46d0284e06.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_8da27c3df544d672117aaffd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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);}
.v2{vertical-align:-17.964000px;}
.v7{vertical-align:-15.984000px;}
.v3{vertical-align:-3.216000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v6{vertical-align:16.072200px;}
.v1{vertical-align:17.982000px;}
.v5{vertical-align:32.976000px;}
.v8{vertical-align:66.024000px;}
.v9{vertical-align:79.872000px;}
.ls20{letter-spacing:-4.272000px;}
.ls26{letter-spacing:-4.032000px;}
.ls2d{letter-spacing:-3.840000px;}
.ls1f{letter-spacing:-3.744000px;}
.ls3f{letter-spacing:-3.552000px;}
.ls3b{letter-spacing:-3.024000px;}
.ls35{letter-spacing:-2.688000px;}
.ls41{letter-spacing:-2.640000px;}
.ls3d{letter-spacing:-2.448000px;}
.ls37{letter-spacing:-2.160000px;}
.ls29{letter-spacing:-2.064000px;}
.ls2c{letter-spacing:-1.824000px;}
.ls30{letter-spacing:-1.776000px;}
.ls2a{letter-spacing:-1.632000px;}
.ls15{letter-spacing:-1.584000px;}
.ls2b{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-1.392000px;}
.ls32{letter-spacing:-1.344000px;}
.ls1a{letter-spacing:-1.200000px;}
.ls31{letter-spacing:-1.152000px;}
.ls38{letter-spacing:-1.104000px;}
.ls42{letter-spacing:-0.912000px;}
.ls24{letter-spacing:-0.864000px;}
.ls2e{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.672000px;}
.ls3c{letter-spacing:-0.624000px;}
.ls39{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.450000px;}
.ls40{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.270000px;}
.ls17{letter-spacing:-0.240000px;}
.ls2f{letter-spacing:-0.192000px;}
.ls14{letter-spacing:-0.132000px;}
.ls19{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.004200px;}
.ls3{letter-spacing:0.005400px;}
.ls4{letter-spacing:0.006000px;}
.ls1c{letter-spacing:0.048000px;}
.ls27{letter-spacing:0.096000px;}
.ls28{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.189000px;}
.ls1d{letter-spacing:0.192000px;}
.lsa{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.275400px;}
.ls3e{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.367200px;}
.ls34{letter-spacing:0.384000px;}
.ls33{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.480000px;}
.ls36{letter-spacing:0.528000px;}
.ls22{letter-spacing:0.576000px;}
.ls21{letter-spacing:0.624000px;}
.ls1e{letter-spacing:0.672000px;}
.ls18{letter-spacing:0.912000px;}
.ls23{letter-spacing:1.488000px;}
.ls25{letter-spacing:1.632000px;}
.ls3a{letter-spacing:2.160000px;}
.lse{letter-spacing:116.382000px;}
.lsc{letter-spacing:145.968000px;}
.ls10{letter-spacing:205.800000px;}
.ls9{letter-spacing:275.456400px;}
.lsd{letter-spacing:824.943000px;}
.lsb{letter-spacing:844.848000px;}
.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;}
}
.ws31{word-spacing:-18.546000px;}
.ws3a{word-spacing:-15.504000px;}
.ws2b{word-spacing:-15.282000px;}
.ws0{word-spacing:-15.012000px;}
.ws3b{word-spacing:-14.976000px;}
.ws39{word-spacing:-14.256000px;}
.ws35{word-spacing:-14.016000px;}
.ws36{word-spacing:-13.968000px;}
.ws34{word-spacing:-13.824000px;}
.ws38{word-spacing:-13.536000px;}
.ws37{word-spacing:-13.488000px;}
.ws32{word-spacing:-13.296000px;}
.ws4{word-spacing:-12.336000px;}
.ws33{word-spacing:-12.144000px;}
.ws62{word-spacing:-12.000000px;}
.ws1b{word-spacing:-11.676000px;}
.ws2c{word-spacing:-10.697400px;}
.ws2{word-spacing:-10.508400px;}
.ws61{word-spacing:-9.792000px;}
.ws14{word-spacing:-2.700000px;}
.ws4a{word-spacing:-1.632000px;}
.ws48{word-spacing:-1.488000px;}
.wse{word-spacing:-1.248000px;}
.ws3f{word-spacing:-0.912000px;}
.wsc{word-spacing:-0.768000px;}
.ws43{word-spacing:-0.672000px;}
.ws46{word-spacing:-0.624000px;}
.ws47{word-spacing:-0.576000px;}
.ws5b{word-spacing:-0.528000px;}
.ws2d{word-spacing:-0.486000px;}
.wsd{word-spacing:-0.480000px;}
.ws58{word-spacing:-0.432000px;}
.ws59{word-spacing:-0.384000px;}
.ws9{word-spacing:-0.378000px;}
.ws64{word-spacing:-0.336000px;}
.ws2e{word-spacing:-0.324000px;}
.ws13{word-spacing:-0.288000px;}
.wsb{word-spacing:-0.270000px;}
.ws11{word-spacing:-0.240000px;}
.ws42{word-spacing:-0.192000px;}
.ws4e{word-spacing:-0.144000px;}
.ws4c{word-spacing:-0.096000px;}
.ws41{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws3e{word-spacing:0.240000px;}
.ws6{word-spacing:0.270000px;}
.ws65{word-spacing:0.432000px;}
.ws2f{word-spacing:0.450000px;}
.ws30{word-spacing:0.480000px;}
.ws8{word-spacing:0.540000px;}
.ws5e{word-spacing:0.576000px;}
.ws60{word-spacing:0.624000px;}
.ws40{word-spacing:0.672000px;}
.ws54{word-spacing:0.720000px;}
.ws50{word-spacing:0.816000px;}
.ws49{word-spacing:0.864000px;}
.ws67{word-spacing:0.912000px;}
.ws5d{word-spacing:1.104000px;}
.ws56{word-spacing:1.152000px;}
.ws57{word-spacing:1.344000px;}
.ws3d{word-spacing:1.392000px;}
.ws51{word-spacing:1.440000px;}
.ws3c{word-spacing:1.584000px;}
.ws4f{word-spacing:1.632000px;}
.ws55{word-spacing:1.776000px;}
.ws52{word-spacing:1.824000px;}
.ws4d{word-spacing:2.064000px;}
.ws5c{word-spacing:2.160000px;}
.ws63{word-spacing:2.448000px;}
.ws66{word-spacing:2.640000px;}
.ws5a{word-spacing:2.688000px;}
.ws5f{word-spacing:3.024000px;}
.ws44{word-spacing:3.744000px;}
.ws53{word-spacing:3.840000px;}
.ws4b{word-spacing:4.032000px;}
.ws45{word-spacing:4.272000px;}
.ws7{word-spacing:4.968000px;}
.ws10{word-spacing:5.424000px;}
.ws2a{word-spacing:6.048000px;}
.wsf{word-spacing:7.182000px;}
.wsa{word-spacing:21.654000px;}
.ws1d{word-spacing:55.650000px;}
.ws17{word-spacing:56.742000px;}
.ws23{word-spacing:61.152000px;}
.ws20{word-spacing:67.326000px;}
.ws26{word-spacing:70.728000px;}
.ws1c{word-spacing:79.002000px;}
.ws24{word-spacing:82.530000px;}
.ws18{word-spacing:93.828000px;}
.ws1a{word-spacing:95.466000px;}
.ws16{word-spacing:100.002000px;}
.ws27{word-spacing:100.044000px;}
.ws19{word-spacing:105.420000px;}
.ws3{word-spacing:105.456000px;}
.ws25{word-spacing:130.704000px;}
.ws21{word-spacing:146.370000px;}
.ws28{word-spacing:146.496000px;}
.ws22{word-spacing:149.982000px;}
.ws1f{word-spacing:152.628000px;}
.ws15{word-spacing:162.666000px;}
.ws29{word-spacing:163.128000px;}
.ws1e{word-spacing:170.142000px;}
.ws12{word-spacing:742.272000px;}
.ws1{word-spacing:1242.054000px;}
._12{margin-left:-29.030400px;}
._13{margin-left:-18.646200px;}
._18{margin-left:-15.271200px;}
._17{margin-left:-14.261400px;}
._c{margin-left:-7.830000px;}
._3{margin-left:-6.820200px;}
._9{margin-left:-4.951800px;}
._8{margin-left:-3.942000px;}
._6{margin-left:-2.905200px;}
._5{margin-left:-1.096200px;}
._7{width:1.992600px;}
._0{width:3.024000px;}
._4{width:4.098600px;}
._2{width:5.140800px;}
._1{width:6.431400px;}
._19{width:7.435800px;}
._b{width:8.445600px;}
._11{width:9.828000px;}
._10{width:11.345400px;}
._a{width:12.474000px;}
._1a{width:13.878000px;}
._6c{width:14.943600px;}
._d{width:16.043400px;}
._e{width:17.047800px;}
._63{width:18.192600px;}
._f{width:21.540600px;}
._6b{width:26.064000px;}
._6a{width:27.406800px;}
._67{width:28.535400px;}
._69{width:30.142800px;}
._16{width:32.632200px;}
._68{width:35.015400px;}
._65{width:54.624000px;}
._64{width:55.799400px;}
._66{width:59.069400px;}
._45{width:68.166000px;}
._59{width:72.870000px;}
._5a{width:79.002000px;}
._5b{width:82.530000px;}
._5e{width:90.678000px;}
._48{width:94.080000px;}
._4b{width:100.800000px;}
._56{width:105.882000px;}
._4f{width:111.720000px;}
._47{width:117.558000px;}
._53{width:131.502000px;}
._60{width:134.610000px;}
._57{width:141.666000px;}
._46{width:144.018000px;}
._4e{width:146.286000px;}
._49{width:147.336000px;}
._5c{width:148.344000px;}
._52{width:151.032000px;}
._5d{width:154.980000px;}
._5f{width:157.332000px;}
._54{width:158.508000px;}
._4c{width:163.170000px;}
._58{width:164.178000px;}
._4d{width:169.008000px;}
._4a{width:171.024000px;}
._55{width:174.342000px;}
._50{width:182.364000px;}
._51{width:188.538000px;}
._61{width:195.048000px;}
._62{width:198.786000px;}
._14{width:200.988000px;}
._1e{width:281.472000px;}
._41{width:379.392000px;}
._24{width:420.768000px;}
._21{width:434.112000px;}
._2b{width:440.736000px;}
._27{width:460.752000px;}
._32{width:470.160000px;}
._23{width:474.864000px;}
._37{width:480.672000px;}
._29{width:495.456000px;}
._3f{width:500.784000px;}
._1d{width:514.944000px;}
._36{width:522.144000px;}
._1c{width:527.088000px;}
._20{width:541.584000px;}
._30{width:547.488000px;}
._26{width:554.928000px;}
._2a{width:586.128000px;}
._22{width:603.504000px;}
._28{width:610.998000px;}
._43{width:624.288000px;}
._33{width:644.304000px;}
._2d{width:650.976000px;}
._31{width:657.648000px;}
._2f{width:664.320000px;}
._3b{width:670.992000px;}
._35{width:677.664000px;}
._3d{width:697.680000px;}
._2c{width:719.616000px;}
._40{width:723.648000px;}
._38{width:784.992000px;}
._39{width:800.976000px;}
._25{width:814.224000px;}
._1f{width:880.992000px;}
._3a{width:904.992000px;}
._2e{width:911.664000px;}
._1b{width:943.429800px;}
._44{width:944.976000px;}
._42{width:950.256000px;}
._3e{width:952.944000px;}
._34{width:1003.680000px;}
._3c{width:1015.680000px;}
._15{width:1361.538600px;}
.fc9{color:rgb(16,15,13);}
.fc8{color:rgb(35,73,74);}
.fc7{color:rgb(109,167,162);}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc4{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs9{font-size:29.400000px;}
.fs8{font-size:33.600000px;}
.fs5{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y42{bottom:17.301750px;}
.y43{bottom:46.967550px;}
.y44{bottom:47.167950px;}
.ya6{bottom:47.171700px;}
.ya5{bottom:47.916000px;}
.y3d{bottom:59.074650px;}
.y41{bottom:59.194650px;}
.y3c{bottom:77.074650px;}
.y40{bottom:77.194650px;}
.y1f3{bottom:82.329900px;}
.yb5{bottom:88.071450px;}
.ye3{bottom:92.262750px;}
.y113{bottom:92.270250px;}
.ya4{bottom:92.280750px;}
.y125{bottom:92.289750px;}
.y77{bottom:92.300250px;}
.y3b{bottom:95.074650px;}
.y3f{bottom:95.194650px;}
.y16e{bottom:95.237850px;}
.y1f2{bottom:98.829900px;}
.yb4{bottom:104.571450px;}
.y16d{bottom:107.741850px;}
.y1b6{bottom:109.551750px;}
.ye2{bottom:111.014250px;}
.y112{bottom:111.021750px;}
.ya3{bottom:111.032250px;}
.y124{bottom:111.041250px;}
.y76{bottom:111.042750px;}
.y197{bottom:111.047250px;}
.y3a{bottom:113.074650px;}
.y3e{bottom:113.194650px;}
.y1f1{bottom:115.329900px;}
.yb3{bottom:121.071450px;}
.y16c{bottom:124.241850px;}
.y1b5{bottom:126.051750px;}
.ye1{bottom:129.765750px;}
.yca{bottom:129.777750px;}
.ya2{bottom:129.783750px;}
.y123{bottom:129.792750px;}
.y75{bottom:129.794250px;}
.y196{bottom:129.798750px;}
.y1f0{bottom:131.829900px;}
.y1b4{bottom:142.551750px;}
.y167{bottom:145.075650px;}
.y16a{bottom:145.086150px;}
.y1ef{bottom:148.329900px;}
.ye0{bottom:148.517250px;}
.y111{bottom:148.524750px;}
.yc9{bottom:148.529250px;}
.ya1{bottom:148.535250px;}
.y122{bottom:148.544250px;}
.y74{bottom:148.545750px;}
.y195{bottom:148.550250px;}
.y1b3{bottom:159.051750px;}
.y2f{bottom:159.373050px;}
.y166{bottom:161.571150px;}
.y169{bottom:161.581650px;}
.y1ee{bottom:164.829900px;}
.ydf{bottom:167.268750px;}
.y110{bottom:167.276250px;}
.yc8{bottom:167.280750px;}
.y194{bottom:167.283750px;}
.ya0{bottom:167.286750px;}
.y73{bottom:167.297250px;}
.y165{bottom:178.066650px;}
.y168{bottom:178.077150px;}
.y16b{bottom:178.087650px;}
.y1ed{bottom:181.329900px;}
.yde{bottom:186.020250px;}
.y10f{bottom:186.027750px;}
.yc7{bottom:186.032250px;}
.y193{bottom:186.035250px;}
.y9f{bottom:186.038250px;}
.y121{bottom:186.047250px;}
.y72{bottom:186.048750px;}
.y35{bottom:190.093050px;}
.y6{bottom:190.094400px;}
.y162{bottom:197.712150px;}
.y1ec{bottom:197.829900px;}
.ydd{bottom:204.771750px;}
.y10e{bottom:204.779250px;}
.yc6{bottom:204.783750px;}
.y192{bottom:204.786750px;}
.y9e{bottom:204.789750px;}
.y1b2{bottom:204.797250px;}
.y120{bottom:204.798750px;}
.y71{bottom:204.800250px;}
.y34{bottom:208.837050px;}
.y5{bottom:208.838400px;}
.y161{bottom:214.207650px;}
.y1eb{bottom:214.329900px;}
.ydc{bottom:223.523250px;}
.y10d{bottom:223.530750px;}
.yc5{bottom:223.535250px;}
.y191{bottom:223.538250px;}
.y9d{bottom:223.541250px;}
.y1b1{bottom:223.548750px;}
.y11f{bottom:223.550250px;}
.y70{bottom:223.551750px;}
.y33{bottom:227.581050px;}
.y4{bottom:227.582400px;}
.y160{bottom:230.703150px;}
.y164{bottom:230.713650px;}
.y1ea{bottom:230.829900px;}
.yc4{bottom:242.286750px;}
.y190{bottom:242.289750px;}
.y9c{bottom:242.292750px;}
.y1b0{bottom:242.300250px;}
.y11e{bottom:242.301750px;}
.y32{bottom:246.325050px;}
.y3{bottom:246.326400px;}
.y15f{bottom:247.198650px;}
.y163{bottom:247.209150px;}
.y1e9{bottom:247.329900px;}
.ydb{bottom:261.026250px;}
.y10c{bottom:261.033750px;}
.yc3{bottom:261.038250px;}
.y9b{bottom:261.044250px;}
.y6f{bottom:261.047250px;}
.y1af{bottom:261.051750px;}
.y1e8{bottom:263.829900px;}
.y31{bottom:265.069050px;}
.y2{bottom:265.070400px;}
.y15e{bottom:266.844150px;}
.yda{bottom:279.777750px;}
.y10b{bottom:279.785250px;}
.yc2{bottom:279.789750px;}
.y18f{bottom:279.792750px;}
.y9a{bottom:279.795750px;}
.y6e{bottom:279.798750px;}
.y11d{bottom:279.801750px;}
.y1e7{bottom:280.329900px;}
.y15d{bottom:283.339650px;}
.y30{bottom:283.813050px;}
.y1{bottom:283.814400px;}
.y1e6{bottom:296.829900px;}
.yd9{bottom:298.529250px;}
.y10a{bottom:298.536750px;}
.yc1{bottom:298.541250px;}
.y18e{bottom:298.544250px;}
.y99{bottom:298.547250px;}
.y6d{bottom:298.550250px;}
.y1ae{bottom:298.551750px;}
.y15a{bottom:302.985150px;}
.y1e5{bottom:313.329900px;}
.yd8{bottom:317.280750px;}
.y109{bottom:317.288250px;}
.y6c{bottom:317.292750px;}
.y18d{bottom:317.295750px;}
.y98{bottom:317.298750px;}
.y159{bottom:319.480650px;}
.y39{bottom:322.773450px;}
.y1e4{bottom:329.829900px;}
.y158{bottom:335.976150px;}
.y15c{bottom:335.986650px;}
.y11c{bottom:336.012750px;}
.yd7{bottom:336.032250px;}
.y108{bottom:336.039750px;}
.y6b{bottom:336.044250px;}
.y18c{bottom:336.047250px;}
.y97{bottom:336.050250px;}
.y38{bottom:338.973450px;}
.y1e3{bottom:346.329900px;}
.y157{bottom:352.471650px;}
.y15b{bottom:352.482150px;}
.y11b{bottom:354.764250px;}
.yd6{bottom:354.783750px;}
.y107{bottom:354.791250px;}
.y1ad{bottom:354.794250px;}
.y6a{bottom:354.795750px;}
.y18b{bottom:354.798750px;}
.y96{bottom:354.801750px;}
.y1e2{bottom:362.829900px;}
.y156{bottom:372.117150px;}
.y11a{bottom:373.515750px;}
.yd5{bottom:373.535250px;}
.y106{bottom:373.542750px;}
.y1ac{bottom:373.545750px;}
.y69{bottom:373.547250px;}
.y18a{bottom:373.550250px;}
.y1e1{bottom:379.329900px;}
.y155{bottom:388.612650px;}
.y119{bottom:392.267250px;}
.yd4{bottom:392.286750px;}
.y105{bottom:392.294250px;}
.y189{bottom:392.295750px;}
.y1ab{bottom:392.297250px;}
.y68{bottom:392.298750px;}
.y95{bottom:392.301750px;}
.y1e0{bottom:395.829900px;}
.y152{bottom:408.258150px;}
.y118{bottom:411.018750px;}
.yd3{bottom:411.038250px;}
.y188{bottom:411.047250px;}
.y1aa{bottom:411.048750px;}
.y67{bottom:411.050250px;}
.y1df{bottom:412.329900px;}
.y151{bottom:424.753650px;}
.y1de{bottom:428.829900px;}
.y117{bottom:429.770250px;}
.yd2{bottom:429.789750px;}
.y66{bottom:429.794250px;}
.y104{bottom:429.797250px;}
.y187{bottom:429.798750px;}
.y1a9{bottom:429.800250px;}
.yc0{bottom:429.801750px;}
.y150{bottom:441.249150px;}
.y154{bottom:441.259650px;}
.y2e{bottom:442.474800px;}
.y1dd{bottom:445.329900px;}
.y116{bottom:448.521750px;}
.yd1{bottom:448.541250px;}
.y65{bottom:448.545750px;}
.y94{bottom:448.547250px;}
.y103{bottom:448.548750px;}
.y186{bottom:448.550250px;}
.y1a8{bottom:448.551750px;}
.y14f{bottom:457.744650px;}
.y153{bottom:457.755150px;}
.y1dc{bottom:461.829900px;}
.y2d{bottom:461.964300px;}
.y115{bottom:467.273250px;}
.yd0{bottom:467.292750px;}
.y64{bottom:467.297250px;}
.y93{bottom:467.298750px;}
.y102{bottom:467.300250px;}
.ybf{bottom:467.301750px;}
.y14c{bottom:477.390150px;}
.y1db{bottom:478.329900px;}
.y23{bottom:483.765450px;}
.y114{bottom:486.024750px;}
.y63{bottom:486.048750px;}
.y92{bottom:486.050250px;}
.y101{bottom:486.051750px;}
.y14b{bottom:493.885650px;}
.y1da{bottom:494.829900px;}
.yb2{bottom:496.071450px;}
.y22{bottom:498.763950px;}
.y185{bottom:504.792750px;}
.ycf{bottom:504.795750px;}
.y62{bottom:504.800250px;}
.y91{bottom:504.801750px;}
.y14a{bottom:510.381150px;}
.y14e{bottom:510.391650px;}
.y1d9{bottom:511.329900px;}
.y21{bottom:513.762450px;}
.ybe{bottom:523.544250px;}
.yce{bottom:523.547250px;}
.y61{bottom:523.548750px;}
.y149{bottom:526.876650px;}
.y14d{bottom:526.887150px;}
.y1d8{bottom:527.829900px;}
.y20{bottom:528.760950px;}
.y1a7{bottom:542.279250px;}
.ybd{bottom:542.295750px;}
.ycd{bottom:542.298750px;}
.y60{bottom:542.300250px;}
.y90{bottom:542.301750px;}
.y1f{bottom:543.759450px;}
.y1d7{bottom:544.329900px;}
.y146{bottom:546.522150px;}
.y100{bottom:547.129800px;}
.yb1{bottom:556.815450px;}
.y1e{bottom:558.757950px;}
.y1d6{bottom:560.829900px;}
.y1a6{bottom:561.030750px;}
.y5f{bottom:561.045750px;}
.ybc{bottom:561.047250px;}
.ycc{bottom:561.050250px;}
.y145{bottom:563.017650px;}
.y148{bottom:563.028150px;}
.yff{bottom:567.625800px;}
.yb0{bottom:573.315450px;}
.y1d{bottom:573.756450px;}
.y1d5{bottom:577.329900px;}
.y144{bottom:579.513150px;}
.y147{bottom:579.523650px;}
.y1a5{bottom:579.782250px;}
.y5e{bottom:579.797250px;}
.ybb{bottom:579.798750px;}
.ycb{bottom:579.801750px;}
.yfe{bottom:580.135500px;}
.y1c{bottom:588.754950px;}
.yaf{bottom:589.815450px;}
.y1d4{bottom:593.829900px;}
.y8f{bottom:598.521750px;}
.y1a4{bottom:598.533750px;}
.y5d{bottom:598.548750px;}
.yba{bottom:598.550250px;}
.y141{bottom:599.158650px;}
.yfd{bottom:600.871500px;}
.y1b{bottom:603.753450px;}
.y1d3{bottom:610.329900px;}
.y140{bottom:615.654150px;}
.y8e{bottom:617.273250px;}
.y1a3{bottom:617.285250px;}
.y184{bottom:617.292750px;}
.y5c{bottom:617.300250px;}
.yb9{bottom:617.301750px;}
.y1a{bottom:618.751950px;}
.yfc{bottom:621.607500px;}
.y1d2{bottom:626.829900px;}
.y13f{bottom:632.149650px;}
.y143{bottom:632.160150px;}
.y19{bottom:633.750450px;}
.y8d{bottom:636.024750px;}
.y1a2{bottom:636.036750px;}
.y183{bottom:636.044250px;}
.y5b{bottom:636.045750px;}
.yfb{bottom:642.343500px;}
.y1d1{bottom:643.329900px;}
.y13e{bottom:648.645150px;}
.y142{bottom:648.655650px;}
.y18{bottom:648.748950px;}
.y8c{bottom:654.776250px;}
.y1a1{bottom:654.788250px;}
.y182{bottom:654.795750px;}
.y5a{bottom:654.797250px;}
.y1d0{bottom:659.829900px;}
.yfa{bottom:663.079500px;}
.y17{bottom:663.747450px;}
.y13b{bottom:668.290650px;}
.y8b{bottom:673.527750px;}
.y1a0{bottom:673.539750px;}
.y181{bottom:673.547250px;}
.y59{bottom:673.548750px;}
.y1cf{bottom:676.329900px;}
.y16{bottom:678.745950px;}
.yf9{bottom:683.815500px;}
.y13a{bottom:684.786150px;}
.yb8{bottom:685.809450px;}
.y8a{bottom:692.279250px;}
.y19f{bottom:692.291250px;}
.y180{bottom:692.298750px;}
.y58{bottom:692.300250px;}
.y1ce{bottom:692.829900px;}
.y15{bottom:693.744450px;}
.y139{bottom:701.281650px;}
.y13d{bottom:701.292150px;}
.yb7{bottom:702.309450px;}
.yf8{bottom:704.551500px;}
.y14{bottom:708.742950px;}
.y1cd{bottom:709.329900px;}
.y89{bottom:711.030750px;}
.y19e{bottom:711.042750px;}
.y57{bottom:711.044250px;}
.y17f{bottom:711.050250px;}
.y138{bottom:717.777150px;}
.y13c{bottom:717.787650px;}
.y13{bottom:723.741450px;}
.yf7{bottom:725.287500px;}
.y1cc{bottom:725.829900px;}
.y88{bottom:729.782250px;}
.y19d{bottom:729.794250px;}
.y56{bottom:729.795750px;}
.y17e{bottom:729.801750px;}
.y134{bottom:737.446650px;}
.y12{bottom:738.739950px;}
.y1cb{bottom:742.329900px;}
.y137{bottom:745.675650px;}
.y130{bottom:745.678650px;}
.y131{bottom:745.689150px;}
.y135{bottom:745.699650px;}
.yf6{bottom:746.023500px;}
.y87{bottom:748.533750px;}
.y19c{bottom:748.545750px;}
.y55{bottom:748.547250px;}
.y209{bottom:749.565450px;}
.y11{bottom:753.738450px;}
.y12f{bottom:753.921150px;}
.y133{bottom:753.942150px;}
.y1ca{bottom:758.829900px;}
.y136{bottom:762.195150px;}
.y208{bottom:766.065450px;}
.yf5{bottom:766.759500px;}
.y86{bottom:767.285250px;}
.y17d{bottom:767.286750px;}
.y19b{bottom:767.297250px;}
.y54{bottom:767.298750px;}
.y10{bottom:768.736950px;}
.y132{bottom:770.437650px;}
.y1c9{bottom:775.329900px;}
.y207{bottom:782.565450px;}
.yf{bottom:783.735450px;}
.y85{bottom:786.036750px;}
.y17c{bottom:786.038250px;}
.y19a{bottom:786.048750px;}
.y53{bottom:786.050250px;}
.yf4{bottom:787.495500px;}
.y12e{bottom:790.065450px;}
.y1c8{bottom:791.829900px;}
.ye{bottom:798.733950px;}
.y206{bottom:799.065450px;}
.y84{bottom:804.788250px;}
.y17b{bottom:804.789750px;}
.y52{bottom:804.800250px;}
.yf3{bottom:808.231500px;}
.y1c7{bottom:808.329900px;}
.yd{bottom:813.732450px;}
.y205{bottom:815.565450px;}
.y83{bottom:823.539750px;}
.y17a{bottom:823.541250px;}
.y51{bottom:823.551750px;}
.y1c6{bottom:824.829900px;}
.yc{bottom:828.730950px;}
.yf2{bottom:828.967500px;}
.y204{bottom:832.065450px;}
.y1c5{bottom:841.329900px;}
.y82{bottom:842.291250px;}
.y179{bottom:842.292750px;}
.y177{bottom:842.298750px;}
.yb{bottom:843.729450px;}
.y203{bottom:848.565450px;}
.yf1{bottom:849.703500px;}
.y1c4{bottom:857.829900px;}
.ya{bottom:858.727950px;}
.y81{bottom:861.042750px;}
.y50{bottom:861.044250px;}
.y199{bottom:861.048750px;}
.y12d{bottom:861.050250px;}
.y202{bottom:865.065450px;}
.yf0{bottom:870.439500px;}
.y9{bottom:873.726450px;}
.y1c3{bottom:874.329900px;}
.y176{bottom:879.789750px;}
.y80{bottom:879.794250px;}
.y4f{bottom:879.795750px;}
.y198{bottom:879.800250px;}
.y12c{bottom:879.801750px;}
.y201{bottom:881.565450px;}
.y8{bottom:888.724950px;}
.y1c2{bottom:890.829900px;}
.yef{bottom:891.175500px;}
.y200{bottom:898.065450px;}
.y175{bottom:898.541250px;}
.y7f{bottom:898.545750px;}
.y4e{bottom:898.547250px;}
.y7{bottom:903.723450px;}
.y1c1{bottom:907.329900px;}
.yae{bottom:910.815450px;}
.yee{bottom:911.911500px;}
.y1ff{bottom:914.565450px;}
.y174{bottom:917.292750px;}
.y7e{bottom:917.297250px;}
.y4d{bottom:917.298750px;}
.y12b{bottom:917.301750px;}
.y24{bottom:923.289300px;}
.y1c0{bottom:923.829900px;}
.yad{bottom:927.315450px;}
.y1fe{bottom:931.065450px;}
.yed{bottom:932.625450px;}
.y12a{bottom:936.042750px;}
.y173{bottom:936.044250px;}
.y7d{bottom:936.048750px;}
.y4c{bottom:936.050250px;}
.y1bf{bottom:940.329900px;}
.y1fd{bottom:947.565450px;}
.yec{bottom:953.361450px;}
.y178{bottom:954.791250px;}
.y129{bottom:954.794250px;}
.y172{bottom:954.795750px;}
.y4b{bottom:954.797250px;}
.y7c{bottom:954.800250px;}
.y1be{bottom:956.829900px;}
.y1fc{bottom:964.065450px;}
.y2c{bottom:965.976300px;}
.y1bd{bottom:973.329900px;}
.yac{bottom:973.542750px;}
.y128{bottom:973.545750px;}
.y171{bottom:973.547250px;}
.y4a{bottom:973.548750px;}
.y7b{bottom:973.551750px;}
.yeb{bottom:974.097450px;}
.y1fb{bottom:980.565450px;}
.y2b{bottom:982.473300px;}
.y1bc{bottom:989.829900px;}
.yab{bottom:992.294250px;}
.y127{bottom:992.297250px;}
.y170{bottom:992.298750px;}
.y49{bottom:992.300250px;}
.yea{bottom:994.833450px;}
.y1fa{bottom:997.065450px;}
.y1bb{bottom:1006.329900px;}
.yaa{bottom:1011.045750px;}
.y126{bottom:1011.048750px;}
.y48{bottom:1011.050250px;}
.y7a{bottom:1011.051750px;}
.y1f9{bottom:1013.565450px;}
.ye9{bottom:1015.569450px;}
.y37{bottom:1021.700700px;}
.y1ba{bottom:1022.829900px;}
.ya9{bottom:1029.797250px;}
.y47{bottom:1029.800250px;}
.y16f{bottom:1029.801750px;}
.y1f8{bottom:1030.065450px;}
.ye7{bottom:1036.317450px;}
.y1b9{bottom:1039.329900px;}
.y36{bottom:1043.300700px;}
.ye6{bottom:1044.573450px;}
.y1f7{bottom:1046.565450px;}
.ya8{bottom:1048.548750px;}
.y46{bottom:1048.551750px;}
.ye8{bottom:1052.817450px;}
.y1b8{bottom:1055.829900px;}
.y1f6{bottom:1063.065450px;}
.y79{bottom:1067.297250px;}
.ya7{bottom:1067.300250px;}
.y27{bottom:1071.552600px;}
.y1f4{bottom:1072.329900px;}
.ye5{bottom:1073.565450px;}
.y1f5{bottom:1079.565450px;}
.y2a{bottom:1082.937000px;}
.y78{bottom:1086.048750px;}
.y45{bottom:1086.051750px;}
.y1b7{bottom:1088.829900px;}
.ye4{bottom:1090.065450px;}
.yb6{bottom:1096.065450px;}
.y29{bottom:1097.937000px;}
.y26{bottom:1103.952600px;}
.y28{bottom:1112.937000px;}
.y25{bottom:1136.352600px;}
.h20{height:27.047250px;}
.h9{height:30.446156px;}
.h25{height:30.577148px;}
.h2{height:34.945312px;}
.hc{height:36.336000px;}
.he{height:37.652344px;}
.h10{height:39.313477px;}
.hf{height:39.359077px;}
.hd{height:42.000000px;}
.h1c{height:42.290677px;}
.h3{height:43.031250px;}
.h1f{height:43.119450px;}
.h5{height:47.244141px;}
.h4{height:48.410156px;}
.h22{height:48.416156px;}
.h17{height:48.422156px;}
.h13{height:48.428156px;}
.h16{height:48.434156px;}
.h18{height:48.446156px;}
.h28{height:48.452156px;}
.h27{height:48.458156px;}
.hb{height:51.868509px;}
.h8{height:51.869109px;}
.h12{height:51.875109px;}
.h21{height:51.881109px;}
.h19{height:51.887109px;}
.h15{height:51.893109px;}
.h14{height:51.899109px;}
.h1a{height:51.905109px;}
.h2b{height:51.911109px;}
.h29{height:51.929109px;}
.h2a{height:51.941109px;}
.h1b{height:51.942000px;}
.h7{height:52.500000px;}
.ha{height:54.504000px;}
.h11{height:56.664000px;}
.h1e{height:67.921313px;}
.h23{height:70.664344px;}
.h1d{height:76.007250px;}
.h6{height:81.756000px;}
.h26{height:101.276004px;}
.h24{height:103.676344px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x14{left:88.365900px;}
.x15{left:89.559000px;}
.x1b{left:91.601850px;}
.x20{left:95.853750px;}
.x1f{left:103.034850px;}
.x16{left:107.559000px;}
.x3b{left:112.039350px;}
.x39{left:116.291250px;}
.x12{left:139.339200px;}
.x21{left:174.456750px;}
.x2c{left:178.251300px;}
.x2b{left:182.913300px;}
.x33{left:184.089300px;}
.x38{left:186.766800px;}
.x2d{left:188.457300px;}
.x2e{left:239.928300px;}
.x6{left:270.660900px;}
.xb{left:276.660900px;}
.x10{left:311.694600px;}
.xa{left:318.024900px;}
.x22{left:320.889750px;}
.xf{left:322.278600px;}
.xc{left:336.696900px;}
.x3{left:343.787550px;}
.x7{left:356.676900px;}
.x11{left:365.406600px;}
.x1c{left:386.369850px;}
.x9{left:395.388900px;}
.x8{left:400.716900px;}
.xd{left:405.925800px;}
.x23{left:420.923250px;}
.x24{left:422.382750px;}
.x4{left:440.582550px;}
.x19{left:451.325100px;}
.x13{left:455.592300px;}
.x1{left:469.770150px;}
.x17{left:474.094200px;}
.x25{left:480.909750px;}
.x1a{left:487.851450px;}
.x18{left:492.094500px;}
.x3c{left:496.843350px;}
.x3a{left:501.095250px;}
.x5{left:514.967550px;}
.xe{left:525.895800px;}
.x26{left:527.403750px;}
.x2f{left:534.432300px;}
.x1d{left:565.289850px;}
.x27{left:590.288250px;}
.x30{left:591.762300px;}
.x1e{left:593.801850px;}
.x34{left:597.033300px;}
.x31{left:601.968300px;}
.x28{left:659.000250px;}
.x29{left:666.003750px;}
.x35{left:667.929300px;}
.x32{left:670.827300px;}
.x36{left:679.752300px;}
.x37{left:728.010300px;}
.x2a{left:784.815300px;}
@media print{
.v2{vertical-align:-15.968000pt;}
.v7{vertical-align:-14.208000pt;}
.v3{vertical-align:-2.858667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v6{vertical-align:14.286400pt;}
.v1{vertical-align:15.984000pt;}
.v5{vertical-align:29.312000pt;}
.v8{vertical-align:58.688000pt;}
.v9{vertical-align:70.997333pt;}
.ls20{letter-spacing:-3.797333pt;}
.ls26{letter-spacing:-3.584000pt;}
.ls2d{letter-spacing:-3.413333pt;}
.ls1f{letter-spacing:-3.328000pt;}
.ls3f{letter-spacing:-3.157333pt;}
.ls3b{letter-spacing:-2.688000pt;}
.ls35{letter-spacing:-2.389333pt;}
.ls41{letter-spacing:-2.346667pt;}
.ls3d{letter-spacing:-2.176000pt;}
.ls37{letter-spacing:-1.920000pt;}
.ls29{letter-spacing:-1.834667pt;}
.ls2c{letter-spacing:-1.621333pt;}
.ls30{letter-spacing:-1.578667pt;}
.ls2a{letter-spacing:-1.450667pt;}
.ls15{letter-spacing:-1.408000pt;}
.ls2b{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-1.237333pt;}
.ls32{letter-spacing:-1.194667pt;}
.ls1a{letter-spacing:-1.066667pt;}
.ls31{letter-spacing:-1.024000pt;}
.ls38{letter-spacing:-0.981333pt;}
.ls42{letter-spacing:-0.810667pt;}
.ls24{letter-spacing:-0.768000pt;}
.ls2e{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.597333pt;}
.ls3c{letter-spacing:-0.554667pt;}
.ls39{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.400000pt;}
.ls40{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls17{letter-spacing:-0.213333pt;}
.ls2f{letter-spacing:-0.170667pt;}
.ls14{letter-spacing:-0.117333pt;}
.ls19{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.003733pt;}
.ls3{letter-spacing:0.004800pt;}
.ls4{letter-spacing:0.005333pt;}
.ls1c{letter-spacing:0.042667pt;}
.ls27{letter-spacing:0.085333pt;}
.ls28{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.168000pt;}
.ls1d{letter-spacing:0.170667pt;}
.lsa{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.244800pt;}
.ls3e{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.326400pt;}
.ls34{letter-spacing:0.341333pt;}
.ls33{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls36{letter-spacing:0.469333pt;}
.ls22{letter-spacing:0.512000pt;}
.ls21{letter-spacing:0.554667pt;}
.ls1e{letter-spacing:0.597333pt;}
.ls18{letter-spacing:0.810667pt;}
.ls23{letter-spacing:1.322667pt;}
.ls25{letter-spacing:1.450667pt;}
.ls3a{letter-spacing:1.920000pt;}
.lse{letter-spacing:103.450667pt;}
.lsc{letter-spacing:129.749333pt;}
.ls10{letter-spacing:182.933333pt;}
.ls9{letter-spacing:244.850133pt;}
.lsd{letter-spacing:733.282667pt;}
.lsb{letter-spacing:750.976000pt;}
.ws31{word-spacing:-16.485333pt;}
.ws3a{word-spacing:-13.781333pt;}
.ws2b{word-spacing:-13.584000pt;}
.ws0{word-spacing:-13.344000pt;}
.ws3b{word-spacing:-13.312000pt;}
.ws39{word-spacing:-12.672000pt;}
.ws35{word-spacing:-12.458667pt;}
.ws36{word-spacing:-12.416000pt;}
.ws34{word-spacing:-12.288000pt;}
.ws38{word-spacing:-12.032000pt;}
.ws37{word-spacing:-11.989333pt;}
.ws32{word-spacing:-11.818667pt;}
.ws4{word-spacing:-10.965333pt;}
.ws33{word-spacing:-10.794667pt;}
.ws62{word-spacing:-10.666667pt;}
.ws1b{word-spacing:-10.378667pt;}
.ws2c{word-spacing:-9.508800pt;}
.ws2{word-spacing:-9.340800pt;}
.ws61{word-spacing:-8.704000pt;}
.ws14{word-spacing:-2.400000pt;}
.ws4a{word-spacing:-1.450667pt;}
.ws48{word-spacing:-1.322667pt;}
.wse{word-spacing:-1.109333pt;}
.ws3f{word-spacing:-0.810667pt;}
.wsc{word-spacing:-0.682667pt;}
.ws43{word-spacing:-0.597333pt;}
.ws46{word-spacing:-0.554667pt;}
.ws47{word-spacing:-0.512000pt;}
.ws5b{word-spacing:-0.469333pt;}
.ws2d{word-spacing:-0.432000pt;}
.wsd{word-spacing:-0.426667pt;}
.ws58{word-spacing:-0.384000pt;}
.ws59{word-spacing:-0.341333pt;}
.ws9{word-spacing:-0.336000pt;}
.ws64{word-spacing:-0.298667pt;}
.ws2e{word-spacing:-0.288000pt;}
.ws13{word-spacing:-0.256000pt;}
.wsb{word-spacing:-0.240000pt;}
.ws11{word-spacing:-0.213333pt;}
.ws42{word-spacing:-0.170667pt;}
.ws4e{word-spacing:-0.128000pt;}
.ws4c{word-spacing:-0.085333pt;}
.ws41{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.213333pt;}
.ws6{word-spacing:0.240000pt;}
.ws65{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.400000pt;}
.ws30{word-spacing:0.426667pt;}
.ws8{word-spacing:0.480000pt;}
.ws5e{word-spacing:0.512000pt;}
.ws60{word-spacing:0.554667pt;}
.ws40{word-spacing:0.597333pt;}
.ws54{word-spacing:0.640000pt;}
.ws50{word-spacing:0.725333pt;}
.ws49{word-spacing:0.768000pt;}
.ws67{word-spacing:0.810667pt;}
.ws5d{word-spacing:0.981333pt;}
.ws56{word-spacing:1.024000pt;}
.ws57{word-spacing:1.194667pt;}
.ws3d{word-spacing:1.237333pt;}
.ws51{word-spacing:1.280000pt;}
.ws3c{word-spacing:1.408000pt;}
.ws4f{word-spacing:1.450667pt;}
.ws55{word-spacing:1.578667pt;}
.ws52{word-spacing:1.621333pt;}
.ws4d{word-spacing:1.834667pt;}
.ws5c{word-spacing:1.920000pt;}
.ws63{word-spacing:2.176000pt;}
.ws66{word-spacing:2.346667pt;}
.ws5a{word-spacing:2.389333pt;}
.ws5f{word-spacing:2.688000pt;}
.ws44{word-spacing:3.328000pt;}
.ws53{word-spacing:3.413333pt;}
.ws4b{word-spacing:3.584000pt;}
.ws45{word-spacing:3.797333pt;}
.ws7{word-spacing:4.416000pt;}
.ws10{word-spacing:4.821333pt;}
.ws2a{word-spacing:5.376000pt;}
.wsf{word-spacing:6.384000pt;}
.wsa{word-spacing:19.248000pt;}
.ws1d{word-spacing:49.466667pt;}
.ws17{word-spacing:50.437333pt;}
.ws23{word-spacing:54.357333pt;}
.ws20{word-spacing:59.845333pt;}
.ws26{word-spacing:62.869333pt;}
.ws1c{word-spacing:70.224000pt;}
.ws24{word-spacing:73.360000pt;}
.ws18{word-spacing:83.402667pt;}
.ws1a{word-spacing:84.858667pt;}
.ws16{word-spacing:88.890667pt;}
.ws27{word-spacing:88.928000pt;}
.ws19{word-spacing:93.706667pt;}
.ws3{word-spacing:93.738667pt;}
.ws25{word-spacing:116.181333pt;}
.ws21{word-spacing:130.106667pt;}
.ws28{word-spacing:130.218667pt;}
.ws22{word-spacing:133.317333pt;}
.ws1f{word-spacing:135.669333pt;}
.ws15{word-spacing:144.592000pt;}
.ws29{word-spacing:145.002667pt;}
.ws1e{word-spacing:151.237333pt;}
.ws12{word-spacing:659.797333pt;}
.ws1{word-spacing:1104.048000pt;}
._12{margin-left:-25.804800pt;}
._13{margin-left:-16.574400pt;}
._18{margin-left:-13.574400pt;}
._17{margin-left:-12.676800pt;}
._c{margin-left:-6.960000pt;}
._3{margin-left:-6.062400pt;}
._9{margin-left:-4.401600pt;}
._8{margin-left:-3.504000pt;}
._6{margin-left:-2.582400pt;}
._5{margin-left:-0.974400pt;}
._7{width:1.771200pt;}
._0{width:2.688000pt;}
._4{width:3.643200pt;}
._2{width:4.569600pt;}
._1{width:5.716800pt;}
._19{width:6.609600pt;}
._b{width:7.507200pt;}
._11{width:8.736000pt;}
._10{width:10.084800pt;}
._a{width:11.088000pt;}
._1a{width:12.336000pt;}
._6c{width:13.283200pt;}
._d{width:14.260800pt;}
._e{width:15.153600pt;}
._63{width:16.171200pt;}
._f{width:19.147200pt;}
._6b{width:23.168000pt;}
._6a{width:24.361600pt;}
._67{width:25.364800pt;}
._69{width:26.793600pt;}
._16{width:29.006400pt;}
._68{width:31.124800pt;}
._65{width:48.554667pt;}
._64{width:49.599467pt;}
._66{width:52.506133pt;}
._45{width:60.592000pt;}
._59{width:64.773333pt;}
._5a{width:70.224000pt;}
._5b{width:73.360000pt;}
._5e{width:80.602667pt;}
._48{width:83.626667pt;}
._4b{width:89.600000pt;}
._56{width:94.117333pt;}
._4f{width:99.306667pt;}
._47{width:104.496000pt;}
._53{width:116.890667pt;}
._60{width:119.653333pt;}
._57{width:125.925333pt;}
._46{width:128.016000pt;}
._4e{width:130.032000pt;}
._49{width:130.965333pt;}
._5c{width:131.861333pt;}
._52{width:134.250667pt;}
._5d{width:137.760000pt;}
._5f{width:139.850667pt;}
._54{width:140.896000pt;}
._4c{width:145.040000pt;}
._58{width:145.936000pt;}
._4d{width:150.229333pt;}
._4a{width:152.021333pt;}
._55{width:154.970667pt;}
._50{width:162.101333pt;}
._51{width:167.589333pt;}
._61{width:173.376000pt;}
._62{width:176.698667pt;}
._14{width:178.656000pt;}
._1e{width:250.197333pt;}
._41{width:337.237333pt;}
._24{width:374.016000pt;}
._21{width:385.877333pt;}
._2b{width:391.765333pt;}
._27{width:409.557333pt;}
._32{width:417.920000pt;}
._23{width:422.101333pt;}
._37{width:427.264000pt;}
._29{width:440.405333pt;}
._3f{width:445.141333pt;}
._1d{width:457.728000pt;}
._36{width:464.128000pt;}
._1c{width:468.522667pt;}
._20{width:481.408000pt;}
._30{width:486.656000pt;}
._26{width:493.269333pt;}
._2a{width:521.002667pt;}
._22{width:536.448000pt;}
._28{width:543.109333pt;}
._43{width:554.922667pt;}
._33{width:572.714667pt;}
._2d{width:578.645333pt;}
._31{width:584.576000pt;}
._2f{width:590.506667pt;}
._3b{width:596.437333pt;}
._35{width:602.368000pt;}
._3d{width:620.160000pt;}
._2c{width:639.658667pt;}
._40{width:643.242667pt;}
._38{width:697.770667pt;}
._39{width:711.978667pt;}
._25{width:723.754667pt;}
._1f{width:783.104000pt;}
._3a{width:804.437333pt;}
._2e{width:810.368000pt;}
._1b{width:838.604267pt;}
._44{width:839.978667pt;}
._42{width:844.672000pt;}
._3e{width:847.061333pt;}
._34{width:892.160000pt;}
._3c{width:902.826667pt;}
._15{width:1210.256533pt;}
.fs9{font-size:26.133333pt;}
.fs8{font-size:29.866667pt;}
.fs5{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:15.379333pt;}
.y43{bottom:41.748933pt;}
.y44{bottom:41.927067pt;}
.ya6{bottom:41.930400pt;}
.ya5{bottom:42.592000pt;}
.y3d{bottom:52.510800pt;}
.y41{bottom:52.617467pt;}
.y3c{bottom:68.510800pt;}
.y40{bottom:68.617467pt;}
.y1f3{bottom:73.182133pt;}
.yb5{bottom:78.285733pt;}
.ye3{bottom:82.011333pt;}
.y113{bottom:82.018000pt;}
.ya4{bottom:82.027333pt;}
.y125{bottom:82.035333pt;}
.y77{bottom:82.044667pt;}
.y3b{bottom:84.510800pt;}
.y3f{bottom:84.617467pt;}
.y16e{bottom:84.655867pt;}
.y1f2{bottom:87.848800pt;}
.yb4{bottom:92.952400pt;}
.y16d{bottom:95.770533pt;}
.y1b6{bottom:97.379333pt;}
.ye2{bottom:98.679333pt;}
.y112{bottom:98.686000pt;}
.ya3{bottom:98.695333pt;}
.y124{bottom:98.703333pt;}
.y76{bottom:98.704667pt;}
.y197{bottom:98.708667pt;}
.y3a{bottom:100.510800pt;}
.y3e{bottom:100.617467pt;}
.y1f1{bottom:102.515467pt;}
.yb3{bottom:107.619067pt;}
.y16c{bottom:110.437200pt;}
.y1b5{bottom:112.046000pt;}
.ye1{bottom:115.347333pt;}
.yca{bottom:115.358000pt;}
.ya2{bottom:115.363333pt;}
.y123{bottom:115.371333pt;}
.y75{bottom:115.372667pt;}
.y196{bottom:115.376667pt;}
.y1f0{bottom:117.182133pt;}
.y1b4{bottom:126.712667pt;}
.y167{bottom:128.956133pt;}
.y16a{bottom:128.965467pt;}
.y1ef{bottom:131.848800pt;}
.ye0{bottom:132.015333pt;}
.y111{bottom:132.022000pt;}
.yc9{bottom:132.026000pt;}
.ya1{bottom:132.031333pt;}
.y122{bottom:132.039333pt;}
.y74{bottom:132.040667pt;}
.y195{bottom:132.044667pt;}
.y1b3{bottom:141.379333pt;}
.y2f{bottom:141.664933pt;}
.y166{bottom:143.618800pt;}
.y169{bottom:143.628133pt;}
.y1ee{bottom:146.515467pt;}
.ydf{bottom:148.683333pt;}
.y110{bottom:148.690000pt;}
.yc8{bottom:148.694000pt;}
.y194{bottom:148.696667pt;}
.ya0{bottom:148.699333pt;}
.y73{bottom:148.708667pt;}
.y165{bottom:158.281467pt;}
.y168{bottom:158.290800pt;}
.y16b{bottom:158.300133pt;}
.y1ed{bottom:161.182133pt;}
.yde{bottom:165.351333pt;}
.y10f{bottom:165.358000pt;}
.yc7{bottom:165.362000pt;}
.y193{bottom:165.364667pt;}
.y9f{bottom:165.367333pt;}
.y121{bottom:165.375333pt;}
.y72{bottom:165.376667pt;}
.y35{bottom:168.971600pt;}
.y6{bottom:168.972800pt;}
.y162{bottom:175.744133pt;}
.y1ec{bottom:175.848800pt;}
.ydd{bottom:182.019333pt;}
.y10e{bottom:182.026000pt;}
.yc6{bottom:182.030000pt;}
.y192{bottom:182.032667pt;}
.y9e{bottom:182.035333pt;}
.y1b2{bottom:182.042000pt;}
.y120{bottom:182.043333pt;}
.y71{bottom:182.044667pt;}
.y34{bottom:185.632933pt;}
.y5{bottom:185.634133pt;}
.y161{bottom:190.406800pt;}
.y1eb{bottom:190.515467pt;}
.ydc{bottom:198.687333pt;}
.y10d{bottom:198.694000pt;}
.yc5{bottom:198.698000pt;}
.y191{bottom:198.700667pt;}
.y9d{bottom:198.703333pt;}
.y1b1{bottom:198.710000pt;}
.y11f{bottom:198.711333pt;}
.y70{bottom:198.712667pt;}
.y33{bottom:202.294267pt;}
.y4{bottom:202.295467pt;}
.y160{bottom:205.069467pt;}
.y164{bottom:205.078800pt;}
.y1ea{bottom:205.182133pt;}
.yc4{bottom:215.366000pt;}
.y190{bottom:215.368667pt;}
.y9c{bottom:215.371333pt;}
.y1b0{bottom:215.378000pt;}
.y11e{bottom:215.379333pt;}
.y32{bottom:218.955600pt;}
.y3{bottom:218.956800pt;}
.y15f{bottom:219.732133pt;}
.y163{bottom:219.741467pt;}
.y1e9{bottom:219.848800pt;}
.ydb{bottom:232.023333pt;}
.y10c{bottom:232.030000pt;}
.yc3{bottom:232.034000pt;}
.y9b{bottom:232.039333pt;}
.y6f{bottom:232.042000pt;}
.y1af{bottom:232.046000pt;}
.y1e8{bottom:234.515467pt;}
.y31{bottom:235.616933pt;}
.y2{bottom:235.618133pt;}
.y15e{bottom:237.194800pt;}
.yda{bottom:248.691333pt;}
.y10b{bottom:248.698000pt;}
.yc2{bottom:248.702000pt;}
.y18f{bottom:248.704667pt;}
.y9a{bottom:248.707333pt;}
.y6e{bottom:248.710000pt;}
.y11d{bottom:248.712667pt;}
.y1e7{bottom:249.182133pt;}
.y15d{bottom:251.857467pt;}
.y30{bottom:252.278267pt;}
.y1{bottom:252.279467pt;}
.y1e6{bottom:263.848800pt;}
.yd9{bottom:265.359333pt;}
.y10a{bottom:265.366000pt;}
.yc1{bottom:265.370000pt;}
.y18e{bottom:265.372667pt;}
.y99{bottom:265.375333pt;}
.y6d{bottom:265.378000pt;}
.y1ae{bottom:265.379333pt;}
.y15a{bottom:269.320133pt;}
.y1e5{bottom:278.515467pt;}
.yd8{bottom:282.027333pt;}
.y109{bottom:282.034000pt;}
.y6c{bottom:282.038000pt;}
.y18d{bottom:282.040667pt;}
.y98{bottom:282.043333pt;}
.y159{bottom:283.982800pt;}
.y39{bottom:286.909733pt;}
.y1e4{bottom:293.182133pt;}
.y158{bottom:298.645467pt;}
.y15c{bottom:298.654800pt;}
.y11c{bottom:298.678000pt;}
.yd7{bottom:298.695333pt;}
.y108{bottom:298.702000pt;}
.y6b{bottom:298.706000pt;}
.y18c{bottom:298.708667pt;}
.y97{bottom:298.711333pt;}
.y38{bottom:301.309733pt;}
.y1e3{bottom:307.848800pt;}
.y157{bottom:313.308133pt;}
.y15b{bottom:313.317467pt;}
.y11b{bottom:315.346000pt;}
.yd6{bottom:315.363333pt;}
.y107{bottom:315.370000pt;}
.y1ad{bottom:315.372667pt;}
.y6a{bottom:315.374000pt;}
.y18b{bottom:315.376667pt;}
.y96{bottom:315.379333pt;}
.y1e2{bottom:322.515467pt;}
.y156{bottom:330.770800pt;}
.y11a{bottom:332.014000pt;}
.yd5{bottom:332.031333pt;}
.y106{bottom:332.038000pt;}
.y1ac{bottom:332.040667pt;}
.y69{bottom:332.042000pt;}
.y18a{bottom:332.044667pt;}
.y1e1{bottom:337.182133pt;}
.y155{bottom:345.433467pt;}
.y119{bottom:348.682000pt;}
.yd4{bottom:348.699333pt;}
.y105{bottom:348.706000pt;}
.y189{bottom:348.707333pt;}
.y1ab{bottom:348.708667pt;}
.y68{bottom:348.710000pt;}
.y95{bottom:348.712667pt;}
.y1e0{bottom:351.848800pt;}
.y152{bottom:362.896133pt;}
.y118{bottom:365.350000pt;}
.yd3{bottom:365.367333pt;}
.y188{bottom:365.375333pt;}
.y1aa{bottom:365.376667pt;}
.y67{bottom:365.378000pt;}
.y1df{bottom:366.515467pt;}
.y151{bottom:377.558800pt;}
.y1de{bottom:381.182133pt;}
.y117{bottom:382.018000pt;}
.yd2{bottom:382.035333pt;}
.y66{bottom:382.039333pt;}
.y104{bottom:382.042000pt;}
.y187{bottom:382.043333pt;}
.y1a9{bottom:382.044667pt;}
.yc0{bottom:382.046000pt;}
.y150{bottom:392.221467pt;}
.y154{bottom:392.230800pt;}
.y2e{bottom:393.310933pt;}
.y1dd{bottom:395.848800pt;}
.y116{bottom:398.686000pt;}
.yd1{bottom:398.703333pt;}
.y65{bottom:398.707333pt;}
.y94{bottom:398.708667pt;}
.y103{bottom:398.710000pt;}
.y186{bottom:398.711333pt;}
.y1a8{bottom:398.712667pt;}
.y14f{bottom:406.884133pt;}
.y153{bottom:406.893467pt;}
.y1dc{bottom:410.515467pt;}
.y2d{bottom:410.634933pt;}
.y115{bottom:415.354000pt;}
.yd0{bottom:415.371333pt;}
.y64{bottom:415.375333pt;}
.y93{bottom:415.376667pt;}
.y102{bottom:415.378000pt;}
.ybf{bottom:415.379333pt;}
.y14c{bottom:424.346800pt;}
.y1db{bottom:425.182133pt;}
.y23{bottom:430.013733pt;}
.y114{bottom:432.022000pt;}
.y63{bottom:432.043333pt;}
.y92{bottom:432.044667pt;}
.y101{bottom:432.046000pt;}
.y14b{bottom:439.009467pt;}
.y1da{bottom:439.848800pt;}
.yb2{bottom:440.952400pt;}
.y22{bottom:443.345733pt;}
.y185{bottom:448.704667pt;}
.ycf{bottom:448.707333pt;}
.y62{bottom:448.711333pt;}
.y91{bottom:448.712667pt;}
.y14a{bottom:453.672133pt;}
.y14e{bottom:453.681467pt;}
.y1d9{bottom:454.515467pt;}
.y21{bottom:456.677733pt;}
.ybe{bottom:465.372667pt;}
.yce{bottom:465.375333pt;}
.y61{bottom:465.376667pt;}
.y149{bottom:468.334800pt;}
.y14d{bottom:468.344133pt;}
.y1d8{bottom:469.182133pt;}
.y20{bottom:470.009733pt;}
.y1a7{bottom:482.026000pt;}
.ybd{bottom:482.040667pt;}
.ycd{bottom:482.043333pt;}
.y60{bottom:482.044667pt;}
.y90{bottom:482.046000pt;}
.y1f{bottom:483.341733pt;}
.y1d7{bottom:483.848800pt;}
.y146{bottom:485.797467pt;}
.y100{bottom:486.337600pt;}
.yb1{bottom:494.947067pt;}
.y1e{bottom:496.673733pt;}
.y1d6{bottom:498.515467pt;}
.y1a6{bottom:498.694000pt;}
.y5f{bottom:498.707333pt;}
.ybc{bottom:498.708667pt;}
.ycc{bottom:498.711333pt;}
.y145{bottom:500.460133pt;}
.y148{bottom:500.469467pt;}
.yff{bottom:504.556267pt;}
.yb0{bottom:509.613733pt;}
.y1d{bottom:510.005733pt;}
.y1d5{bottom:513.182133pt;}
.y144{bottom:515.122800pt;}
.y147{bottom:515.132133pt;}
.y1a5{bottom:515.362000pt;}
.y5e{bottom:515.375333pt;}
.ybb{bottom:515.376667pt;}
.ycb{bottom:515.379333pt;}
.yfe{bottom:515.676000pt;}
.y1c{bottom:523.337733pt;}
.yaf{bottom:524.280400pt;}
.y1d4{bottom:527.848800pt;}
.y8f{bottom:532.019333pt;}
.y1a4{bottom:532.030000pt;}
.y5d{bottom:532.043333pt;}
.yba{bottom:532.044667pt;}
.y141{bottom:532.585467pt;}
.yfd{bottom:534.108000pt;}
.y1b{bottom:536.669733pt;}
.y1d3{bottom:542.515467pt;}
.y140{bottom:547.248133pt;}
.y8e{bottom:548.687333pt;}
.y1a3{bottom:548.698000pt;}
.y184{bottom:548.704667pt;}
.y5c{bottom:548.711333pt;}
.yb9{bottom:548.712667pt;}
.y1a{bottom:550.001733pt;}
.yfc{bottom:552.540000pt;}
.y1d2{bottom:557.182133pt;}
.y13f{bottom:561.910800pt;}
.y143{bottom:561.920133pt;}
.y19{bottom:563.333733pt;}
.y8d{bottom:565.355333pt;}
.y1a2{bottom:565.366000pt;}
.y183{bottom:565.372667pt;}
.y5b{bottom:565.374000pt;}
.yfb{bottom:570.972000pt;}
.y1d1{bottom:571.848800pt;}
.y13e{bottom:576.573467pt;}
.y142{bottom:576.582800pt;}
.y18{bottom:576.665733pt;}
.y8c{bottom:582.023333pt;}
.y1a1{bottom:582.034000pt;}
.y182{bottom:582.040667pt;}
.y5a{bottom:582.042000pt;}
.y1d0{bottom:586.515467pt;}
.yfa{bottom:589.404000pt;}
.y17{bottom:589.997733pt;}
.y13b{bottom:594.036133pt;}
.y8b{bottom:598.691333pt;}
.y1a0{bottom:598.702000pt;}
.y181{bottom:598.708667pt;}
.y59{bottom:598.710000pt;}
.y1cf{bottom:601.182133pt;}
.y16{bottom:603.329733pt;}
.yf9{bottom:607.836000pt;}
.y13a{bottom:608.698800pt;}
.yb8{bottom:609.608400pt;}
.y8a{bottom:615.359333pt;}
.y19f{bottom:615.370000pt;}
.y180{bottom:615.376667pt;}
.y58{bottom:615.378000pt;}
.y1ce{bottom:615.848800pt;}
.y15{bottom:616.661733pt;}
.y139{bottom:623.361467pt;}
.y13d{bottom:623.370800pt;}
.yb7{bottom:624.275067pt;}
.yf8{bottom:626.268000pt;}
.y14{bottom:629.993733pt;}
.y1cd{bottom:630.515467pt;}
.y89{bottom:632.027333pt;}
.y19e{bottom:632.038000pt;}
.y57{bottom:632.039333pt;}
.y17f{bottom:632.044667pt;}
.y138{bottom:638.024133pt;}
.y13c{bottom:638.033467pt;}
.y13{bottom:643.325733pt;}
.yf7{bottom:644.700000pt;}
.y1cc{bottom:645.182133pt;}
.y88{bottom:648.695333pt;}
.y19d{bottom:648.706000pt;}
.y56{bottom:648.707333pt;}
.y17e{bottom:648.712667pt;}
.y134{bottom:655.508133pt;}
.y12{bottom:656.657733pt;}
.y1cb{bottom:659.848800pt;}
.y137{bottom:662.822800pt;}
.y130{bottom:662.825467pt;}
.y131{bottom:662.834800pt;}
.y135{bottom:662.844133pt;}
.yf6{bottom:663.132000pt;}
.y87{bottom:665.363333pt;}
.y19c{bottom:665.374000pt;}
.y55{bottom:665.375333pt;}
.y209{bottom:666.280400pt;}
.y11{bottom:669.989733pt;}
.y12f{bottom:670.152133pt;}
.y133{bottom:670.170800pt;}
.y1ca{bottom:674.515467pt;}
.y136{bottom:677.506800pt;}
.y208{bottom:680.947067pt;}
.yf5{bottom:681.564000pt;}
.y86{bottom:682.031333pt;}
.y17d{bottom:682.032667pt;}
.y19b{bottom:682.042000pt;}
.y54{bottom:682.043333pt;}
.y10{bottom:683.321733pt;}
.y132{bottom:684.833467pt;}
.y1c9{bottom:689.182133pt;}
.y207{bottom:695.613733pt;}
.yf{bottom:696.653733pt;}
.y85{bottom:698.699333pt;}
.y17c{bottom:698.700667pt;}
.y19a{bottom:698.710000pt;}
.y53{bottom:698.711333pt;}
.yf4{bottom:699.996000pt;}
.y12e{bottom:702.280400pt;}
.y1c8{bottom:703.848800pt;}
.ye{bottom:709.985733pt;}
.y206{bottom:710.280400pt;}
.y84{bottom:715.367333pt;}
.y17b{bottom:715.368667pt;}
.y52{bottom:715.378000pt;}
.yf3{bottom:718.428000pt;}
.y1c7{bottom:718.515467pt;}
.yd{bottom:723.317733pt;}
.y205{bottom:724.947067pt;}
.y83{bottom:732.035333pt;}
.y17a{bottom:732.036667pt;}
.y51{bottom:732.046000pt;}
.y1c6{bottom:733.182133pt;}
.yc{bottom:736.649733pt;}
.yf2{bottom:736.860000pt;}
.y204{bottom:739.613733pt;}
.y1c5{bottom:747.848800pt;}
.y82{bottom:748.703333pt;}
.y179{bottom:748.704667pt;}
.y177{bottom:748.710000pt;}
.yb{bottom:749.981733pt;}
.y203{bottom:754.280400pt;}
.yf1{bottom:755.292000pt;}
.y1c4{bottom:762.515467pt;}
.ya{bottom:763.313733pt;}
.y81{bottom:765.371333pt;}
.y50{bottom:765.372667pt;}
.y199{bottom:765.376667pt;}
.y12d{bottom:765.378000pt;}
.y202{bottom:768.947067pt;}
.yf0{bottom:773.724000pt;}
.y9{bottom:776.645733pt;}
.y1c3{bottom:777.182133pt;}
.y176{bottom:782.035333pt;}
.y80{bottom:782.039333pt;}
.y4f{bottom:782.040667pt;}
.y198{bottom:782.044667pt;}
.y12c{bottom:782.046000pt;}
.y201{bottom:783.613733pt;}
.y8{bottom:789.977733pt;}
.y1c2{bottom:791.848800pt;}
.yef{bottom:792.156000pt;}
.y200{bottom:798.280400pt;}
.y175{bottom:798.703333pt;}
.y7f{bottom:798.707333pt;}
.y4e{bottom:798.708667pt;}
.y7{bottom:803.309733pt;}
.y1c1{bottom:806.515467pt;}
.yae{bottom:809.613733pt;}
.yee{bottom:810.588000pt;}
.y1ff{bottom:812.947067pt;}
.y174{bottom:815.371333pt;}
.y7e{bottom:815.375333pt;}
.y4d{bottom:815.376667pt;}
.y12b{bottom:815.379333pt;}
.y24{bottom:820.701600pt;}
.y1c0{bottom:821.182133pt;}
.yad{bottom:824.280400pt;}
.y1fe{bottom:827.613733pt;}
.yed{bottom:829.000400pt;}
.y12a{bottom:832.038000pt;}
.y173{bottom:832.039333pt;}
.y7d{bottom:832.043333pt;}
.y4c{bottom:832.044667pt;}
.y1bf{bottom:835.848800pt;}
.y1fd{bottom:842.280400pt;}
.yec{bottom:847.432400pt;}
.y178{bottom:848.703333pt;}
.y129{bottom:848.706000pt;}
.y172{bottom:848.707333pt;}
.y4b{bottom:848.708667pt;}
.y7c{bottom:848.711333pt;}
.y1be{bottom:850.515467pt;}
.y1fc{bottom:856.947067pt;}
.y2c{bottom:858.645600pt;}
.y1bd{bottom:865.182133pt;}
.yac{bottom:865.371333pt;}
.y128{bottom:865.374000pt;}
.y171{bottom:865.375333pt;}
.y4a{bottom:865.376667pt;}
.y7b{bottom:865.379333pt;}
.yeb{bottom:865.864400pt;}
.y1fb{bottom:871.613733pt;}
.y2b{bottom:873.309600pt;}
.y1bc{bottom:879.848800pt;}
.yab{bottom:882.039333pt;}
.y127{bottom:882.042000pt;}
.y170{bottom:882.043333pt;}
.y49{bottom:882.044667pt;}
.yea{bottom:884.296400pt;}
.y1fa{bottom:886.280400pt;}
.y1bb{bottom:894.515467pt;}
.yaa{bottom:898.707333pt;}
.y126{bottom:898.710000pt;}
.y48{bottom:898.711333pt;}
.y7a{bottom:898.712667pt;}
.y1f9{bottom:900.947067pt;}
.ye9{bottom:902.728400pt;}
.y37{bottom:908.178400pt;}
.y1ba{bottom:909.182133pt;}
.ya9{bottom:915.375333pt;}
.y47{bottom:915.378000pt;}
.y16f{bottom:915.379333pt;}
.y1f8{bottom:915.613733pt;}
.ye7{bottom:921.171067pt;}
.y1b9{bottom:923.848800pt;}
.y36{bottom:927.378400pt;}
.ye6{bottom:928.509733pt;}
.y1f7{bottom:930.280400pt;}
.ya8{bottom:932.043333pt;}
.y46{bottom:932.046000pt;}
.ye8{bottom:935.837733pt;}
.y1b8{bottom:938.515467pt;}
.y1f6{bottom:944.947067pt;}
.y79{bottom:948.708667pt;}
.ya7{bottom:948.711333pt;}
.y27{bottom:952.491200pt;}
.y1f4{bottom:953.182133pt;}
.ye5{bottom:954.280400pt;}
.y1f5{bottom:959.613733pt;}
.y2a{bottom:962.610667pt;}
.y78{bottom:965.376667pt;}
.y45{bottom:965.379333pt;}
.y1b7{bottom:967.848800pt;}
.ye4{bottom:968.947067pt;}
.yb6{bottom:974.280400pt;}
.y29{bottom:975.944000pt;}
.y26{bottom:981.291200pt;}
.y28{bottom:989.277333pt;}
.y25{bottom:1010.091200pt;}
.h20{height:24.042000pt;}
.h9{height:27.063250pt;}
.h25{height:27.179688pt;}
.h2{height:31.062500pt;}
.hc{height:32.298667pt;}
.he{height:33.468750pt;}
.h10{height:34.945312pt;}
.hf{height:34.985846pt;}
.hd{height:37.333333pt;}
.h1c{height:37.591712pt;}
.h3{height:38.250000pt;}
.h1f{height:38.328400pt;}
.h5{height:41.994792pt;}
.h4{height:43.031250pt;}
.h22{height:43.036583pt;}
.h17{height:43.041917pt;}
.h13{height:43.047250pt;}
.h16{height:43.052583pt;}
.h18{height:43.063250pt;}
.h28{height:43.068583pt;}
.h27{height:43.073917pt;}
.hb{height:46.105342pt;}
.h8{height:46.105875pt;}
.h12{height:46.111208pt;}
.h21{height:46.116542pt;}
.h19{height:46.121875pt;}
.h15{height:46.127208pt;}
.h14{height:46.132542pt;}
.h1a{height:46.137875pt;}
.h2b{height:46.143208pt;}
.h29{height:46.159208pt;}
.h2a{height:46.169875pt;}
.h1b{height:46.170667pt;}
.h7{height:46.666667pt;}
.ha{height:48.448000pt;}
.h11{height:50.368000pt;}
.h1e{height:60.374500pt;}
.h23{height:62.812750pt;}
.h1d{height:67.562000pt;}
.h6{height:72.672000pt;}
.h26{height:90.023115pt;}
.h24{height:92.156750pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x14{left:78.547467pt;}
.x15{left:79.608000pt;}
.x1b{left:81.423867pt;}
.x20{left:85.203333pt;}
.x1f{left:91.586533pt;}
.x16{left:95.608000pt;}
.x3b{left:99.590533pt;}
.x39{left:103.370000pt;}
.x12{left:123.857067pt;}
.x21{left:155.072667pt;}
.x2c{left:158.445600pt;}
.x2b{left:162.589600pt;}
.x33{left:163.634933pt;}
.x38{left:166.014933pt;}
.x2d{left:167.517600pt;}
.x2e{left:213.269600pt;}
.x6{left:240.587467pt;}
.xb{left:245.920800pt;}
.x10{left:277.061867pt;}
.xa{left:282.688800pt;}
.x22{left:285.235333pt;}
.xf{left:286.469867pt;}
.xc{left:299.286133pt;}
.x3{left:305.588933pt;}
.x7{left:317.046133pt;}
.x11{left:324.805867pt;}
.x1c{left:343.439867pt;}
.x9{left:351.456800pt;}
.x8{left:356.192800pt;}
.xd{left:360.822933pt;}
.x23{left:374.154000pt;}
.x24{left:375.451333pt;}
.x4{left:391.628933pt;}
.x19{left:401.177867pt;}
.x13{left:404.970933pt;}
.x1{left:417.573467pt;}
.x17{left:421.417067pt;}
.x25{left:427.475333pt;}
.x1a{left:433.645733pt;}
.x18{left:437.417333pt;}
.x3c{left:441.638533pt;}
.x3a{left:445.418000pt;}
.x5{left:457.748933pt;}
.xe{left:467.462933pt;}
.x26{left:468.803333pt;}
.x2f{left:475.050933pt;}
.x1d{left:502.479867pt;}
.x27{left:524.700667pt;}
.x30{left:526.010933pt;}
.x1e{left:527.823867pt;}
.x34{left:530.696267pt;}
.x31{left:535.082933pt;}
.x28{left:585.778000pt;}
.x29{left:592.003333pt;}
.x35{left:593.714933pt;}
.x32{left:596.290933pt;}
.x36{left:604.224267pt;}
.x37{left:647.120267pt;}
.x2a{left:697.613600pt;}
}




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