
    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_f0904fc3cd315fa4278d4ceb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065000;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_7492a9eacd2f6f0298936869.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.117000;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_26f9d67c792d8e1c21fc1a16.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113000;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_7492a9eacd2f6f0298936869.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.117000;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_c7a110f9fba2771f5f011625.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_88c2dbb6eeb5197177e6c8c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065000;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_7147cf8e03feaf70441c7ccf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.113000;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_7492a9eacd2f6f0298936869.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.117000;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_6a65cb319b6fbab206e6dcbb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.008000;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_7492a9eacd2f6f0298936869.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.117000;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_26f9d67c792d8e1c21fc1a16.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.113000;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_4cd1622515fb6a3286d2ea2b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.920000;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_6a65cb319b6fbab206e6dcbb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.008000;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_88c9e0f3b2fa217c48cf4b65.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.065000;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_7147cf8e03feaf70441c7ccf.woff2')format("woff");}.fff{font-family:fff;line-height:1.113000;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);}
.v4{vertical-align:-30.000000px;}
.v7{vertical-align:-18.981000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.000000px;}
.v6{vertical-align:18.891000px;}
.v5{vertical-align:21.711600px;}
.v3{vertical-align:24.000000px;}
.v1{vertical-align:30.000000px;}
.ls5{letter-spacing:-0.285000px;}
.ls4{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.210000px;}
.ls7{letter-spacing:-0.102000px;}
.ls6{letter-spacing:-0.090000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.165660px;}
.lsa{letter-spacing:0.165711px;}
.lsb{letter-spacing:0.165756px;}
.lsc{letter-spacing:0.166032px;}
.ls11{letter-spacing:0.166155px;}
.lse{letter-spacing:0.166302px;}
.lsf{letter-spacing:0.166344px;}
.ls9{letter-spacing:0.285000px;}
.ls10{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.378000px;}
.ls13{letter-spacing:0.570000px;}
.ls15{letter-spacing:0.765000px;}
.ls14{letter-spacing:1.980000px;}
.ls12{letter-spacing:3.819000px;}
.ls2{letter-spacing:6.600000px;}
.ls0{letter-spacing:12.600000px;}
.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;}
}
.ws1{word-spacing:-31.920000px;}
.ws0{word-spacing:-24.840000px;}
.ws6{word-spacing:-21.780000px;}
.ws3{word-spacing:-18.000000px;}
.wsa0{word-spacing:-17.160000px;}
.wsd{word-spacing:-14.535000px;}
.ws66{word-spacing:-14.250000px;}
.ws5{word-spacing:-12.798000px;}
.ws2{word-spacing:-12.000000px;}
.ws4{word-spacing:-10.950000px;}
.wsf{word-spacing:-8.473905px;}
.wse{word-spacing:-8.307750px;}
.wsb{word-spacing:-5.238000px;}
.wsc7{word-spacing:-4.947000px;}
.wsbd{word-spacing:-4.641000px;}
.wsf5{word-spacing:-3.927000px;}
.wsca{word-spacing:-3.825000px;}
.ws27{word-spacing:-3.819000px;}
.wsef{word-spacing:-3.621000px;}
.ws3b{word-spacing:-3.534000px;}
.wscd{word-spacing:-3.468000px;}
.ws21{word-spacing:-3.135000px;}
.wsf7{word-spacing:-3.060000px;}
.wsb1{word-spacing:-2.679000px;}
.ws42{word-spacing:-2.622000px;}
.wsec{word-spacing:-2.448000px;}
.ws97{word-spacing:-2.394000px;}
.ws10{word-spacing:-2.337000px;}
.ws82{word-spacing:-2.223000px;}
.ws1d{word-spacing:-2.109000px;}
.ws9b{word-spacing:-2.052000px;}
.ws9f{word-spacing:-1.995000px;}
.ws74{word-spacing:-1.824000px;}
.ws1e{word-spacing:-1.767000px;}
.wsce{word-spacing:-1.632000px;}
.ws62{word-spacing:-1.425000px;}
.ws99{word-spacing:-1.254000px;}
.wsc9{word-spacing:-1.224000px;}
.ws9d{word-spacing:-1.197000px;}
.wsd0{word-spacing:-1.173000px;}
.ws12{word-spacing:-1.140000px;}
.ws29{word-spacing:-1.083000px;}
.ws106{word-spacing:-1.071000px;}
.wsa4{word-spacing:-1.026000px;}
.ws4a{word-spacing:-0.969000px;}
.wsed{word-spacing:-0.918000px;}
.ws95{word-spacing:-0.912000px;}
.ws6c{word-spacing:-0.855000px;}
.ws40{word-spacing:-0.798000px;}
.wsf6{word-spacing:-0.765000px;}
.ws1b{word-spacing:-0.741000px;}
.ws91{word-spacing:-0.684000px;}
.ws11{word-spacing:-0.570000px;}
.wsdc{word-spacing:-0.561000px;}
.ws25{word-spacing:-0.513000px;}
.ws4f{word-spacing:-0.456000px;}
.ws39{word-spacing:-0.342000px;}
.wse2{word-spacing:-0.306000px;}
.ws26{word-spacing:-0.285000px;}
.ws7{word-spacing:0.000000px;}
.wsea{word-spacing:0.051000px;}
.ws1a{word-spacing:0.114000px;}
.ws67{word-spacing:0.171000px;}
.ws8{word-spacing:0.240000px;}
.wsb5{word-spacing:0.255000px;}
.ws1c{word-spacing:0.285000px;}
.ws2b{word-spacing:0.399000px;}
.ws7d{word-spacing:0.456000px;}
.ws10a{word-spacing:0.459000px;}
.ws79{word-spacing:0.513000px;}
.wsc4{word-spacing:0.561000px;}
.ws3a{word-spacing:0.570000px;}
.ws93{word-spacing:0.627000px;}
.wsdf{word-spacing:0.663000px;}
.ws46{word-spacing:0.684000px;}
.wsfa{word-spacing:0.714000px;}
.ws7b{word-spacing:0.741000px;}
.wsc{word-spacing:0.756000px;}
.ws51{word-spacing:0.912000px;}
.ws107{word-spacing:1.020000px;}
.wsaf{word-spacing:1.026000px;}
.ws33{word-spacing:1.083000px;}
.wsb0{word-spacing:1.197000px;}
.wsc2{word-spacing:1.326000px;}
.ws70{word-spacing:1.368000px;}
.ws61{word-spacing:1.425000px;}
.ws6e{word-spacing:1.482000px;}
.wsdd{word-spacing:1.530000px;}
.ws60{word-spacing:1.539000px;}
.ws31{word-spacing:1.596000px;}
.wsff{word-spacing:1.632000px;}
.wsfe{word-spacing:1.683000px;}
.ws48{word-spacing:1.710000px;}
.wsa{word-spacing:1.782000px;}
.wsc6{word-spacing:1.785000px;}
.ws8a{word-spacing:1.938000px;}
.ws9a{word-spacing:1.995000px;}
.ws88{word-spacing:2.109000px;}
.ws3d{word-spacing:2.166000px;}
.ws83{word-spacing:2.223000px;}
.wse1{word-spacing:2.244000px;}
.ws77{word-spacing:2.394000px;}
.wsd5{word-spacing:2.499000px;}
.ws3e{word-spacing:2.508000px;}
.ws81{word-spacing:2.565000px;}
.ws78{word-spacing:2.622000px;}
.ws13{word-spacing:2.679000px;}
.ws32{word-spacing:2.736000px;}
.wsda{word-spacing:2.754000px;}
.ws86{word-spacing:2.793000px;}
.ws7a{word-spacing:2.850000px;}
.ws19{word-spacing:2.907000px;}
.wsfb{word-spacing:2.958000px;}
.ws2a{word-spacing:2.964000px;}
.ws71{word-spacing:3.021000px;}
.ws50{word-spacing:3.078000px;}
.wseb{word-spacing:3.162000px;}
.ws7c{word-spacing:3.249000px;}
.wsf9{word-spacing:3.264000px;}
.ws2c{word-spacing:3.363000px;}
.wsd1{word-spacing:3.366000px;}
.ws44{word-spacing:3.420000px;}
.wscb{word-spacing:3.468000px;}
.ws8d{word-spacing:3.477000px;}
.ws80{word-spacing:3.648000px;}
.wse9{word-spacing:3.672000px;}
.ws73{word-spacing:3.705000px;}
.ws43{word-spacing:3.762000px;}
.ws5e{word-spacing:3.819000px;}
.ws96{word-spacing:3.876000px;}
.ws47{word-spacing:3.990000px;}
.ws18{word-spacing:4.104000px;}
.ws36{word-spacing:4.161000px;}
.ws92{word-spacing:4.218000px;}
.ws16{word-spacing:4.332000px;}
.ws104{word-spacing:4.335000px;}
.ws2f{word-spacing:4.389000px;}
.ws98{word-spacing:4.446000px;}
.ws3c{word-spacing:4.503000px;}
.wsb2{word-spacing:4.692000px;}
.ws2d{word-spacing:4.731000px;}
.ws49{word-spacing:4.788000px;}
.ws68{word-spacing:4.845000px;}
.ws7e{word-spacing:4.902000px;}
.wsb6{word-spacing:4.998000px;}
.wsd6{word-spacing:5.049000px;}
.ws5d{word-spacing:5.073000px;}
.wsc0{word-spacing:5.100000px;}
.ws3f{word-spacing:5.130000px;}
.wsbb{word-spacing:5.151000px;}
.wsa8{word-spacing:5.187000px;}
.wsd9{word-spacing:5.202000px;}
.wsab{word-spacing:5.244000px;}
.ws6f{word-spacing:5.301000px;}
.ws56{word-spacing:5.529000px;}
.ws72{word-spacing:5.586000px;}
.ws17{word-spacing:5.643000px;}
.ws7f{word-spacing:5.700000px;}
.ws89{word-spacing:5.757000px;}
.ws9{word-spacing:5.778000px;}
.ws8f{word-spacing:5.814000px;}
.wsac{word-spacing:5.871000px;}
.ws14{word-spacing:5.928000px;}
.ws9e{word-spacing:6.042000px;}
.ws75{word-spacing:6.156000px;}
.wsd2{word-spacing:6.171000px;}
.ws4d{word-spacing:6.213000px;}
.ws45{word-spacing:6.270000px;}
.wsdb{word-spacing:6.273000px;}
.wse3{word-spacing:6.375000px;}
.wsb8{word-spacing:6.426000px;}
.ws69{word-spacing:6.441000px;}
.ws15{word-spacing:6.498000px;}
.wsa9{word-spacing:6.555000px;}
.ws109{word-spacing:6.579000px;}
.ws87{word-spacing:6.612000px;}
.ws24{word-spacing:6.669000px;}
.ws90{word-spacing:6.726000px;}
.wsb9{word-spacing:6.783000px;}
.ws76{word-spacing:6.840000px;}
.wsd4{word-spacing:6.885000px;}
.ws41{word-spacing:6.897000px;}
.ws23{word-spacing:7.125000px;}
.wse8{word-spacing:7.242000px;}
.wsae{word-spacing:7.353000px;}
.wsc1{word-spacing:7.446000px;}
.wsa5{word-spacing:7.467000px;}
.wsad{word-spacing:7.524000px;}
.ws8c{word-spacing:7.581000px;}
.ws9c{word-spacing:7.638000px;}
.ws38{word-spacing:7.695000px;}
.wsee{word-spacing:7.701000px;}
.wsa3{word-spacing:7.809000px;}
.ws4c{word-spacing:7.923000px;}
.wsbc{word-spacing:7.956000px;}
.ws94{word-spacing:7.980000px;}
.ws2e{word-spacing:8.094000px;}
.wsa6{word-spacing:8.151000px;}
.ws85{word-spacing:8.208000px;}
.wsc8{word-spacing:8.262000px;}
.ws5f{word-spacing:8.265000px;}
.ws37{word-spacing:8.379000px;}
.wse0{word-spacing:8.415000px;}
.wsaa{word-spacing:8.493000px;}
.wsd8{word-spacing:8.517000px;}
.ws58{word-spacing:8.550000px;}
.ws63{word-spacing:8.892000px;}
.wsba{word-spacing:9.180000px;}
.ws30{word-spacing:9.234000px;}
.wsa7{word-spacing:9.462000px;}
.ws10b{word-spacing:9.486000px;}
.ws57{word-spacing:9.519000px;}
.wsd7{word-spacing:9.537000px;}
.ws65{word-spacing:9.690000px;}
.wsa2{word-spacing:9.804000px;}
.wsc3{word-spacing:9.843000px;}
.ws100{word-spacing:10.047000px;}
.wsc5{word-spacing:10.098000px;}
.ws5c{word-spacing:10.146000px;}
.ws84{word-spacing:10.488000px;}
.ws6d{word-spacing:10.602000px;}
.ws53{word-spacing:10.659000px;}
.wse4{word-spacing:10.710000px;}
.ws4b{word-spacing:10.773000px;}
.wsb4{word-spacing:10.914000px;}
.ws35{word-spacing:11.001000px;}
.ws6b{word-spacing:11.115000px;}
.ws8e{word-spacing:11.343000px;}
.wsd3{word-spacing:11.475000px;}
.wsf1{word-spacing:11.628000px;}
.wse5{word-spacing:11.679000px;}
.ws52{word-spacing:11.856000px;}
.ws20{word-spacing:11.913000px;}
.ws6a{word-spacing:11.970000px;}
.ws64{word-spacing:12.369000px;}
.wsf0{word-spacing:13.311000px;}
.ws102{word-spacing:13.464000px;}
.ws59{word-spacing:13.566000px;}
.ws103{word-spacing:13.617000px;}
.wsbf{word-spacing:13.719000px;}
.ws34{word-spacing:14.022000px;}
.wsf2{word-spacing:14.280000px;}
.wsb7{word-spacing:14.331000px;}
.wscc{word-spacing:14.535000px;}
.ws5b{word-spacing:14.592000px;}
.ws4e{word-spacing:14.991000px;}
.ws101{word-spacing:14.994000px;}
.ws108{word-spacing:15.504000px;}
.wsf8{word-spacing:16.167000px;}
.wsbe{word-spacing:16.524000px;}
.wsde{word-spacing:16.779000px;}
.ws8b{word-spacing:17.214000px;}
.wsf3{word-spacing:17.238000px;}
.ws55{word-spacing:17.385000px;}
.ws28{word-spacing:18.069000px;}
.wscf{word-spacing:18.309000px;}
.wsb3{word-spacing:18.411000px;}
.wsfd{word-spacing:18.564000px;}
.wsfc{word-spacing:19.278000px;}
.ws54{word-spacing:19.323000px;}
.ws22{word-spacing:23.028000px;}
.wsf4{word-spacing:23.256000px;}
.ws5a{word-spacing:24.339000px;}
.wsa1{word-spacing:24.567000px;}
.wse6{word-spacing:26.928000px;}
.ws1f{word-spacing:28.842000px;}
.ws105{word-spacing:32.946000px;}
.wse7{word-spacing:48.603000px;}
._17{margin-left:-61.353000px;}
._16{margin-left:-41.004000px;}
._a{margin-left:-39.102000px;}
._e{margin-left:-25.365000px;}
._9{margin-left:-24.168000px;}
._5{margin-left:-20.463000px;}
._8{margin-left:-15.732000px;}
._1a{margin-left:-11.934000px;}
._1c{margin-left:-10.761000px;}
._1b{margin-left:-8.772000px;}
._1d{margin-left:-7.650000px;}
._2{margin-left:-6.380400px;}
._3{margin-left:-4.999200px;}
._f{margin-left:-3.876000px;}
._1{margin-left:-2.847600px;}
._0{margin-left:-1.680000px;}
._d{width:1.140000px;}
._c{width:3.249000px;}
._6{width:4.440000px;}
._b{width:6.840000px;}
._18{width:8.058000px;}
._19{width:10.149000px;}
._15{width:12.852000px;}
._12{width:17.085000px;}
._11{width:19.482000px;}
._7{width:28.272000px;}
._10{width:29.376000px;}
._13{width:31.212000px;}
._14{width:35.904000px;}
._4{width:548.639400px;}
.fc6{color:rgb(65,64,66);}
.fc5{color:rgb(34,86,158);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(119,120,123);}
.fc1{color:rgb(43,63,69);}
.fc0{color:rgb(36,127,116);}
.fsf{font-size:33.231000px;}
.fse{font-size:42.000000px;}
.fsb{font-size:43.800000px;}
.fsc{font-size:45.000000px;}
.fsa{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fsd{font-size:57.000000px;}
.fs9{font-size:58.800000px;}
.fs10{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:92.400000px;}
.fs2{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.fs1{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:50.777850px;}
.y2e{bottom:70.277850px;}
.y10d{bottom:84.994200px;}
.y122{bottom:85.011300px;}
.y19d{bottom:85.024050px;}
.yc6{bottom:85.074150px;}
.y162{bottom:85.126050px;}
.y63{bottom:85.206000px;}
.yf2{bottom:85.273650px;}
.y95{bottom:86.362950px;}
.y19c{bottom:100.936050px;}
.y161{bottom:101.191050px;}
.yc5{bottom:103.100400px;}
.y10c{bottom:103.105950px;}
.y62{bottom:103.602750px;}
.yf1{bottom:103.670400px;}
.y121{bottom:103.906800px;}
.y94{bottom:104.360700px;}
.y2c{bottom:115.942500px;}
.y19b{bottom:116.848050px;}
.y160{bottom:117.256050px;}
.yc4{bottom:121.126650px;}
.y61{bottom:121.999500px;}
.yf0{bottom:122.067150px;}
.y93{bottom:122.358450px;}
.y120{bottom:122.802300px;}
.y10b{bottom:129.724950px;}
.y19a{bottom:132.760050px;}
.y2b{bottom:133.195500px;}
.y15f{bottom:133.321050px;}
.yc3{bottom:139.152900px;}
.y60{bottom:140.396250px;}
.yef{bottom:140.463900px;}
.y11f{bottom:141.697800px;}
.y10a{bottom:147.836700px;}
.y199{bottom:148.672050px;}
.y15e{bottom:149.386050px;}
.y2a{bottom:150.448500px;}
.y92{bottom:153.172950px;}
.yc2{bottom:157.179150px;}
.y5f{bottom:158.793000px;}
.yee{bottom:158.860650px;}
.y11e{bottom:160.593300px;}
.y198{bottom:164.584050px;}
.y15d{bottom:165.451050px;}
.y109{bottom:165.948450px;}
.y29{bottom:167.701500px;}
.y91{bottom:171.170700px;}
.yc1{bottom:175.205400px;}
.y5e{bottom:177.189750px;}
.yed{bottom:177.257400px;}
.y11d{bottom:179.488800px;}
.y197{bottom:180.496050px;}
.y15c{bottom:181.516050px;}
.y108{bottom:184.060200px;}
.y28{bottom:186.420150px;}
.y90{bottom:189.168450px;}
.y5d{bottom:195.586500px;}
.yec{bottom:195.654150px;}
.y196{bottom:196.408050px;}
.y2d{bottom:197.029200px;}
.y15b{bottom:197.581050px;}
.y11c{bottom:198.384300px;}
.y107{bottom:202.171950px;}
.yc0{bottom:205.985400px;}
.y8f{bottom:207.166200px;}
.y195{bottom:212.320050px;}
.y15a{bottom:213.646050px;}
.y5c{bottom:213.983250px;}
.yeb{bottom:214.050900px;}
.ybf{bottom:224.011650px;}
.y8e{bottom:225.163950px;}
.y194{bottom:228.232050px;}
.y106{bottom:228.790950px;}
.y159{bottom:229.711050px;}
.y5b{bottom:232.380000px;}
.y11b{bottom:239.026800px;}
.ybe{bottom:242.037900px;}
.y8d{bottom:243.161700px;}
.y193{bottom:244.144050px;}
.yea{bottom:245.215650px;}
.y158{bottom:245.776050px;}
.y105{bottom:246.902700px;}
.y24{bottom:249.275250px;}
.y5a{bottom:250.776750px;}
.y192{bottom:260.056050px;}
.ybd{bottom:260.064150px;}
.y8c{bottom:261.159450px;}
.y157{bottom:261.841050px;}
.ye9{bottom:263.612400px;}
.y104{bottom:265.014450px;}
.y59{bottom:269.173500px;}
.y191{bottom:275.968050px;}
.y156{bottom:277.906050px;}
.ybc{bottom:278.090400px;}
.y8b{bottom:279.157200px;}
.ye8{bottom:282.009150px;}
.y103{bottom:283.126200px;}
.y58{bottom:287.570250px;}
.y190{bottom:291.880050px;}
.y155{bottom:293.971050px;}
.y27{bottom:294.640050px;}
.ybb{bottom:296.116650px;}
.y8a{bottom:297.154950px;}
.ye7{bottom:300.405900px;}
.y102{bottom:301.237950px;}
.y57{bottom:305.967000px;}
.y18f{bottom:307.792050px;}
.y154{bottom:310.036050px;}
.yba{bottom:314.142900px;}
.y89{bottom:315.152700px;}
.ye6{bottom:318.802650px;}
.y101{bottom:319.349700px;}
.y23{bottom:320.716050px;}
.y18e{bottom:323.704050px;}
.y56{bottom:324.363750px;}
.y153{bottom:326.101050px;}
.y11a{bottom:329.125200px;}
.yb9{bottom:332.169150px;}
.y88{bottom:333.150450px;}
.ye5{bottom:337.199400px;}
.y100{bottom:337.461450px;}
.y18d{bottom:339.616050px;}
.y152{bottom:342.166050px;}
.y119{bottom:348.020700px;}
.yb8{bottom:350.195400px;}
.y87{bottom:351.148200px;}
.y22{bottom:355.216050px;}
.y18c{bottom:355.528050px;}
.y55{bottom:355.528500px;}
.yff{bottom:355.573200px;}
.y151{bottom:358.231050px;}
.y118{bottom:366.916200px;}
.yb7{bottom:368.221650px;}
.ye4{bottom:368.364150px;}
.y86{bottom:369.145950px;}
.y18b{bottom:371.440050px;}
.y21{bottom:373.092000px;}
.y54{bottom:373.925250px;}
.y150{bottom:374.296050px;}
.yfe{bottom:382.192200px;}
.y20{bottom:383.472000px;}
.y117{bottom:385.811700px;}
.yb6{bottom:386.247900px;}
.ye3{bottom:386.760900px;}
.y85{bottom:387.143700px;}
.y18a{bottom:387.352050px;}
.y14f{bottom:390.361050px;}
.y53{bottom:392.322000px;}
.yfd{bottom:400.303950px;}
.y189{bottom:403.264050px;}
.yb5{bottom:404.274150px;}
.y116{bottom:404.707200px;}
.y84{bottom:405.141450px;}
.ye2{bottom:405.157650px;}
.y14e{bottom:406.426050px;}
.y1f{bottom:406.718100px;}
.y52{bottom:410.718750px;}
.yfc{bottom:418.415700px;}
.y188{bottom:419.176050px;}
.yb4{bottom:422.300400px;}
.y14d{bottom:422.491050px;}
.y83{bottom:423.139200px;}
.ye1{bottom:423.554400px;}
.y1e{bottom:424.594050px;}
.y51{bottom:429.115500px;}
.y187{bottom:435.088050px;}
.y115{bottom:436.356450px;}
.yfb{bottom:436.527450px;}
.y14c{bottom:438.556050px;}
.y82{bottom:441.136950px;}
.ye0{bottom:441.951150px;}
.y1d{bottom:442.470000px;}
.y50{bottom:447.512250px;}
.y186{bottom:451.000050px;}
.yb3{bottom:453.080400px;}
.y14b{bottom:454.621050px;}
.yfa{bottom:454.639200px;}
.y114{bottom:455.251950px;}
.y1c{bottom:460.345950px;}
.ydf{bottom:460.347900px;}
.y185{bottom:466.912050px;}
.y14a{bottom:470.686050px;}
.yb2{bottom:471.106650px;}
.y81{bottom:471.888450px;}
.yf9{bottom:472.750950px;}
.y113{bottom:474.147450px;}
.y1b{bottom:478.222050px;}
.y4f{bottom:478.677000px;}
.yde{bottom:478.744650px;}
.y184{bottom:482.824050px;}
.yb1{bottom:489.132900px;}
.y80{bottom:489.886200px;}
.yf8{bottom:490.862700px;}
.y112{bottom:493.042950px;}
.y1a{bottom:496.098000px;}
.y4e{bottom:497.073750px;}
.ydd{bottom:497.141400px;}
.y183{bottom:498.736050px;}
.yb0{bottom:507.159150px;}
.y7f{bottom:507.883950px;}
.y149{bottom:511.165200px;}
.y19{bottom:513.973950px;}
.y182{bottom:514.648050px;}
.y4d{bottom:515.470500px;}
.ydc{bottom:515.538150px;}
.yf7{bottom:517.481700px;}
.y18{bottom:524.353800px;}
.yaf{bottom:525.185400px;}
.y7e{bottom:525.881700px;}
.y181{bottom:530.560050px;}
.y111{bottom:533.199450px;}
.y4c{bottom:533.867250px;}
.ydb{bottom:533.934900px;}
.yf6{bottom:535.593450px;}
.yae{bottom:543.211650px;}
.y7d{bottom:543.879450px;}
.y180{bottom:546.472050px;}
.y17{bottom:547.599900px;}
.y110{bottom:552.094950px;}
.y4b{bottom:552.264000px;}
.yf5{bottom:553.705200px;}
.yad{bottom:561.237900px;}
.y7c{bottom:561.877200px;}
.y17f{bottom:562.384050px;}
.yda{bottom:565.099650px;}
.y16{bottom:565.475850px;}
.y4a{bottom:570.660750px;}
.y10f{bottom:570.990450px;}
.yf4{bottom:571.816950px;}
.y17e{bottom:578.296050px;}
.yac{bottom:579.264150px;}
.y7b{bottom:579.874950px;}
.y15{bottom:583.351950px;}
.yd9{bottom:583.496400px;}
.y49{bottom:589.057500px;}
.y10e{bottom:589.885950px;}
.yf3{bottom:589.928700px;}
.y148{bottom:593.535900px;}
.y17d{bottom:594.208050px;}
.yab{bottom:597.290400px;}
.y7a{bottom:597.872700px;}
.y14{bottom:601.227900px;}
.yd8{bottom:601.893150px;}
.y48{bottom:607.454250px;}
.y17c{bottom:610.120050px;}
.y147{bottom:611.704650px;}
.yaa{bottom:615.316650px;}
.y79{bottom:615.870450px;}
.y13{bottom:619.103850px;}
.yd7{bottom:620.289900px;}
.y47{bottom:625.851000px;}
.y17b{bottom:626.032050px;}
.y146{bottom:629.873400px;}
.ya9{bottom:633.342900px;}
.y78{bottom:633.868200px;}
.y12{bottom:636.979950px;}
.yd6{bottom:638.686650px;}
.y17a{bottom:641.944050px;}
.y46{bottom:644.247750px;}
.ya8{bottom:651.369150px;}
.y77{bottom:651.870450px;}
.y11{bottom:654.855900px;}
.yd5{bottom:657.083400px;}
.y179{bottom:657.856050px;}
.y45{bottom:662.644500px;}
.ya7{bottom:669.395400px;}
.y76{bottom:669.868200px;}
.y145{bottom:671.919600px;}
.y10{bottom:672.731850px;}
.y178{bottom:673.768050px;}
.yd4{bottom:675.480150px;}
.y44{bottom:681.041250px;}
.ya6{bottom:687.421650px;}
.y75{bottom:687.868200px;}
.y8{bottom:688.063800px;}
.y177{bottom:689.680050px;}
.y12e{bottom:690.073050px;}
.yf{bottom:690.607800px;}
.yd3{bottom:693.876900px;}
.y43{bottom:699.438000px;}
.ya5{bottom:705.447900px;}
.y176{bottom:705.592050px;}
.y74{bottom:705.868200px;}
.y12d{bottom:708.073050px;}
.ye{bottom:709.336050px;}
.yd2{bottom:712.273650px;}
.y42{bottom:717.834750px;}
.y137{bottom:721.093050px;}
.y175{bottom:721.504050px;}
.ya4{bottom:723.474150px;}
.y73{bottom:723.870450px;}
.y12c{bottom:726.073050px;}
.yd{bottom:728.836050px;}
.yd1{bottom:730.670400px;}
.y41{bottom:736.231500px;}
.y136{bottom:737.293050px;}
.y174{bottom:737.416050px;}
.ya3{bottom:741.500400px;}
.y72{bottom:741.868200px;}
.yc{bottom:748.336050px;}
.yd0{bottom:749.067150px;}
.y1bf{bottom:749.598900px;}
.y1ae{bottom:749.611650px;}
.y173{bottom:753.328050px;}
.y135{bottom:753.493050px;}
.y40{bottom:754.628250px;}
.y144{bottom:757.823250px;}
.ya2{bottom:759.526650px;}
.y71{bottom:759.897300px;}
.y1be{bottom:765.753150px;}
.y1ad{bottom:765.765900px;}
.ycf{bottom:767.463900px;}
.yb{bottom:767.842950px;}
.y172{bottom:769.240050px;}
.y134{bottom:769.693050px;}
.y13d{bottom:773.447100px;}
.y143{bottom:775.992000px;}
.ya1{bottom:777.552900px;}
.y70{bottom:777.895050px;}
.y1bd{bottom:781.907400px;}
.y1ac{bottom:781.920150px;}
.y171{bottom:785.152050px;}
.y3f{bottom:785.838150px;}
.yce{bottom:785.860650px;}
.y133{bottom:785.893050px;}
.y13c{bottom:790.847100px;}
.ya0{bottom:795.579150px;}
.y6f{bottom:795.892800px;}
.y12b{bottom:795.947100px;}
.y1bc{bottom:798.061650px;}
.y1ab{bottom:798.074400px;}
.y170{bottom:801.064050px;}
.y132{bottom:802.093050px;}
.y3e{bottom:804.234900px;}
.ycd{bottom:804.257400px;}
.y13b{bottom:805.247100px;}
.ya{bottom:809.316600px;}
.y9f{bottom:813.605400px;}
.y6e{bottom:813.890550px;}
.y12a{bottom:813.947100px;}
.y1bb{bottom:814.215900px;}
.y1aa{bottom:814.228650px;}
.y142{bottom:815.912250px;}
.y16f{bottom:816.976050px;}
.y13a{bottom:819.647100px;}
.y3d{bottom:822.631650px;}
.ycc{bottom:822.654150px;}
.y9{bottom:830.322600px;}
.y1ba{bottom:830.370150px;}
.y1a9{bottom:830.382900px;}
.y9e{bottom:831.631650px;}
.y129{bottom:831.947100px;}
.y16e{bottom:832.888050px;}
.y139{bottom:834.047100px;}
.y3c{bottom:841.028400px;}
.ycb{bottom:841.050900px;}
.y6d{bottom:844.642050px;}
.y1b9{bottom:846.524400px;}
.y1a8{bottom:846.537150px;}
.y138{bottom:848.447100px;}
.y16d{bottom:848.800050px;}
.y9d{bottom:849.657900px;}
.y131{bottom:852.638100px;}
.y3b{bottom:859.425150px;}
.yca{bottom:859.447650px;}
.y6c{bottom:862.639800px;}
.y1b8{bottom:862.678650px;}
.y1a7{bottom:862.691400px;}
.y16c{bottom:864.712050px;}
.y9c{bottom:867.684150px;}
.y130{bottom:868.838100px;}
.y4{bottom:870.152550px;}
.y3a{bottom:877.821900px;}
.yc9{bottom:877.844400px;}
.y1b7{bottom:878.832900px;}
.y1a6{bottom:878.845650px;}
.y16b{bottom:880.624050px;}
.y6b{bottom:880.637550px;}
.y12f{bottom:885.038100px;}
.y9b{bottom:885.710400px;}
.y1b6{bottom:894.987150px;}
.y1a5{bottom:894.999900px;}
.y39{bottom:896.218650px;}
.yc8{bottom:896.241150px;}
.y16a{bottom:896.536050px;}
.y6a{bottom:898.635300px;}
.y128{bottom:899.312550px;}
.y141{bottom:903.941700px;}
.y1b5{bottom:911.141400px;}
.y1a4{bottom:911.154150px;}
.y169{bottom:912.448050px;}
.y38{bottom:914.615400px;}
.yc7{bottom:914.637900px;}
.y5{bottom:916.260750px;}
.y9a{bottom:916.490400px;}
.y69{bottom:916.633050px;}
.y127{bottom:917.312550px;}
.y140{bottom:922.110450px;}
.y1b4{bottom:927.295650px;}
.y1a3{bottom:927.308400px;}
.y168{bottom:928.360050px;}
.y37{bottom:933.034650px;}
.y99{bottom:934.516650px;}
.y68{bottom:934.630800px;}
.y126{bottom:935.312550px;}
.y13f{bottom:940.279200px;}
.y1b3{bottom:943.449900px;}
.y1a2{bottom:943.462650px;}
.y167{bottom:944.272050px;}
.y3{bottom:944.748900px;}
.y36{bottom:951.431400px;}
.y98{bottom:952.542900px;}
.y67{bottom:952.628550px;}
.y1b2{bottom:959.604150px;}
.y1a1{bottom:959.616900px;}
.y166{bottom:960.184050px;}
.y35{bottom:969.828150px;}
.y97{bottom:970.569150px;}
.y66{bottom:970.626300px;}
.y1b1{bottom:975.758400px;}
.y1a0{bottom:975.771150px;}
.y165{bottom:976.096050px;}
.y2{bottom:980.748900px;}
.y125{bottom:980.762550px;}
.y13e{bottom:983.388600px;}
.y34{bottom:988.224900px;}
.y96{bottom:988.595400px;}
.y65{bottom:988.624050px;}
.y1b0{bottom:991.912650px;}
.y19f{bottom:991.925400px;}
.y164{bottom:992.008050px;}
.y124{bottom:997.862550px;}
.y123{bottom:1005.871350px;}
.y33{bottom:1006.621650px;}
.y64{bottom:1006.621800px;}
.y163{bottom:1007.920050px;}
.y1af{bottom:1008.066900px;}
.y19e{bottom:1008.079650px;}
.y1{bottom:1016.748900px;}
.y26{bottom:1079.131500px;}
.y25{bottom:1079.909250px;}
.y7{bottom:1079.913300px;}
.y31{bottom:1080.186900px;}
.y32{bottom:1081.726500px;}
.y30{bottom:1113.315900px;}
.y6{bottom:1114.654650px;}
.h16{height:33.600000px;}
.h12{height:34.605000px;}
.he{height:38.412600px;}
.h14{height:39.420000px;}
.hd{height:42.048000px;}
.h17{height:43.833000px;}
.h11{height:44.676000px;}
.h7{height:44.727000px;}
.h6{height:45.630000px;}
.h1d{height:47.304000px;}
.h1c{height:47.358000px;}
.h18{height:49.971000px;}
.h19{height:49.980000px;}
.h10{height:49.989000px;}
.h9{height:50.400000px;}
.h1b{height:52.560000px;}
.h1a{height:52.620000px;}
.h13{height:55.770000px;}
.h8{height:57.882000px;}
.h15{height:58.503600px;}
.ha{height:60.840000px;}
.hf{height:63.072000px;}
.h5{height:70.980000px;}
.hb{height:72.096000px;}
.hc{height:72.123600px;}
.h4{height:78.078000px;}
.h2{height:101.400000px;}
.h3{height:126.750000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:72.094350px;}
.x4{left:74.409450px;}
.xd{left:83.332650px;}
.x16{left:86.575950px;}
.x11{left:89.291400px;}
.x15{left:91.937400px;}
.x29{left:97.796250px;}
.x12{left:106.305900px;}
.x28{left:108.340200px;}
.x25{left:115.945800px;}
.x2{left:118.478850px;}
.x8{left:125.766450px;}
.x7{left:127.042050px;}
.x6{left:130.478850px;}
.x9{left:132.141600px;}
.xa{left:134.267550px;}
.xe{left:147.261450px;}
.x26{left:151.270800px;}
.x27{left:175.600800px;}
.x1b{left:354.045150px;}
.x1a{left:355.485300px;}
.x17{left:366.420150px;}
.x18{left:376.515150px;}
.x19{left:414.360150px;}
.x1c{left:418.785150px;}
.xf{left:461.338650px;}
.x2a{left:486.849750px;}
.x13{left:495.729900px;}
.x14{left:497.770200px;}
.x3{left:586.617300px;}
.xc{left:592.387200px;}
.x1d{left:603.503400px;}
.x22{left:606.891750px;}
.x1e{left:609.807900px;}
.x21{left:625.022250px;}
.x20{left:634.296750px;}
.x23{left:655.964250px;}
.x1f{left:670.962900px;}
.x24{left:674.621250px;}
.xb{left:744.354450px;}
.x10{left:867.133650px;}
.x5{left:868.217400px;}
@media print{
.v4{vertical-align:-26.666667pt;}
.v7{vertical-align:-16.872000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.666667pt;}
.v6{vertical-align:16.792000pt;}
.v5{vertical-align:19.299200pt;}
.v3{vertical-align:21.333333pt;}
.v1{vertical-align:26.666667pt;}
.ls5{letter-spacing:-0.253333pt;}
.ls4{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.186667pt;}
.ls7{letter-spacing:-0.090667pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.147253pt;}
.lsa{letter-spacing:0.147299pt;}
.lsb{letter-spacing:0.147339pt;}
.lsc{letter-spacing:0.147584pt;}
.ls11{letter-spacing:0.147693pt;}
.lse{letter-spacing:0.147824pt;}
.lsf{letter-spacing:0.147861pt;}
.ls9{letter-spacing:0.253333pt;}
.ls10{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.336000pt;}
.ls13{letter-spacing:0.506667pt;}
.ls15{letter-spacing:0.680000pt;}
.ls14{letter-spacing:1.760000pt;}
.ls12{letter-spacing:3.394667pt;}
.ls2{letter-spacing:5.866667pt;}
.ls0{letter-spacing:11.200000pt;}
.ws1{word-spacing:-28.373333pt;}
.ws0{word-spacing:-22.080000pt;}
.ws6{word-spacing:-19.360000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsa0{word-spacing:-15.253333pt;}
.wsd{word-spacing:-12.920000pt;}
.ws66{word-spacing:-12.666667pt;}
.ws5{word-spacing:-11.376000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws4{word-spacing:-9.733333pt;}
.wsf{word-spacing:-7.532360pt;}
.wse{word-spacing:-7.384667pt;}
.wsb{word-spacing:-4.656000pt;}
.wsc7{word-spacing:-4.397333pt;}
.wsbd{word-spacing:-4.125333pt;}
.wsf5{word-spacing:-3.490667pt;}
.wsca{word-spacing:-3.400000pt;}
.ws27{word-spacing:-3.394667pt;}
.wsef{word-spacing:-3.218667pt;}
.ws3b{word-spacing:-3.141333pt;}
.wscd{word-spacing:-3.082667pt;}
.ws21{word-spacing:-2.786667pt;}
.wsf7{word-spacing:-2.720000pt;}
.wsb1{word-spacing:-2.381333pt;}
.ws42{word-spacing:-2.330667pt;}
.wsec{word-spacing:-2.176000pt;}
.ws97{word-spacing:-2.128000pt;}
.ws10{word-spacing:-2.077333pt;}
.ws82{word-spacing:-1.976000pt;}
.ws1d{word-spacing:-1.874667pt;}
.ws9b{word-spacing:-1.824000pt;}
.ws9f{word-spacing:-1.773333pt;}
.ws74{word-spacing:-1.621333pt;}
.ws1e{word-spacing:-1.570667pt;}
.wsce{word-spacing:-1.450667pt;}
.ws62{word-spacing:-1.266667pt;}
.ws99{word-spacing:-1.114667pt;}
.wsc9{word-spacing:-1.088000pt;}
.ws9d{word-spacing:-1.064000pt;}
.wsd0{word-spacing:-1.042667pt;}
.ws12{word-spacing:-1.013333pt;}
.ws29{word-spacing:-0.962667pt;}
.ws106{word-spacing:-0.952000pt;}
.wsa4{word-spacing:-0.912000pt;}
.ws4a{word-spacing:-0.861333pt;}
.wsed{word-spacing:-0.816000pt;}
.ws95{word-spacing:-0.810667pt;}
.ws6c{word-spacing:-0.760000pt;}
.ws40{word-spacing:-0.709333pt;}
.wsf6{word-spacing:-0.680000pt;}
.ws1b{word-spacing:-0.658667pt;}
.ws91{word-spacing:-0.608000pt;}
.ws11{word-spacing:-0.506667pt;}
.wsdc{word-spacing:-0.498667pt;}
.ws25{word-spacing:-0.456000pt;}
.ws4f{word-spacing:-0.405333pt;}
.ws39{word-spacing:-0.304000pt;}
.wse2{word-spacing:-0.272000pt;}
.ws26{word-spacing:-0.253333pt;}
.ws7{word-spacing:0.000000pt;}
.wsea{word-spacing:0.045333pt;}
.ws1a{word-spacing:0.101333pt;}
.ws67{word-spacing:0.152000pt;}
.ws8{word-spacing:0.213333pt;}
.wsb5{word-spacing:0.226667pt;}
.ws1c{word-spacing:0.253333pt;}
.ws2b{word-spacing:0.354667pt;}
.ws7d{word-spacing:0.405333pt;}
.ws10a{word-spacing:0.408000pt;}
.ws79{word-spacing:0.456000pt;}
.wsc4{word-spacing:0.498667pt;}
.ws3a{word-spacing:0.506667pt;}
.ws93{word-spacing:0.557333pt;}
.wsdf{word-spacing:0.589333pt;}
.ws46{word-spacing:0.608000pt;}
.wsfa{word-spacing:0.634667pt;}
.ws7b{word-spacing:0.658667pt;}
.wsc{word-spacing:0.672000pt;}
.ws51{word-spacing:0.810667pt;}
.ws107{word-spacing:0.906667pt;}
.wsaf{word-spacing:0.912000pt;}
.ws33{word-spacing:0.962667pt;}
.wsb0{word-spacing:1.064000pt;}
.wsc2{word-spacing:1.178667pt;}
.ws70{word-spacing:1.216000pt;}
.ws61{word-spacing:1.266667pt;}
.ws6e{word-spacing:1.317333pt;}
.wsdd{word-spacing:1.360000pt;}
.ws60{word-spacing:1.368000pt;}
.ws31{word-spacing:1.418667pt;}
.wsff{word-spacing:1.450667pt;}
.wsfe{word-spacing:1.496000pt;}
.ws48{word-spacing:1.520000pt;}
.wsa{word-spacing:1.584000pt;}
.wsc6{word-spacing:1.586667pt;}
.ws8a{word-spacing:1.722667pt;}
.ws9a{word-spacing:1.773333pt;}
.ws88{word-spacing:1.874667pt;}
.ws3d{word-spacing:1.925333pt;}
.ws83{word-spacing:1.976000pt;}
.wse1{word-spacing:1.994667pt;}
.ws77{word-spacing:2.128000pt;}
.wsd5{word-spacing:2.221333pt;}
.ws3e{word-spacing:2.229333pt;}
.ws81{word-spacing:2.280000pt;}
.ws78{word-spacing:2.330667pt;}
.ws13{word-spacing:2.381333pt;}
.ws32{word-spacing:2.432000pt;}
.wsda{word-spacing:2.448000pt;}
.ws86{word-spacing:2.482667pt;}
.ws7a{word-spacing:2.533333pt;}
.ws19{word-spacing:2.584000pt;}
.wsfb{word-spacing:2.629333pt;}
.ws2a{word-spacing:2.634667pt;}
.ws71{word-spacing:2.685333pt;}
.ws50{word-spacing:2.736000pt;}
.wseb{word-spacing:2.810667pt;}
.ws7c{word-spacing:2.888000pt;}
.wsf9{word-spacing:2.901333pt;}
.ws2c{word-spacing:2.989333pt;}
.wsd1{word-spacing:2.992000pt;}
.ws44{word-spacing:3.040000pt;}
.wscb{word-spacing:3.082667pt;}
.ws8d{word-spacing:3.090667pt;}
.ws80{word-spacing:3.242667pt;}
.wse9{word-spacing:3.264000pt;}
.ws73{word-spacing:3.293333pt;}
.ws43{word-spacing:3.344000pt;}
.ws5e{word-spacing:3.394667pt;}
.ws96{word-spacing:3.445333pt;}
.ws47{word-spacing:3.546667pt;}
.ws18{word-spacing:3.648000pt;}
.ws36{word-spacing:3.698667pt;}
.ws92{word-spacing:3.749333pt;}
.ws16{word-spacing:3.850667pt;}
.ws104{word-spacing:3.853333pt;}
.ws2f{word-spacing:3.901333pt;}
.ws98{word-spacing:3.952000pt;}
.ws3c{word-spacing:4.002667pt;}
.wsb2{word-spacing:4.170667pt;}
.ws2d{word-spacing:4.205333pt;}
.ws49{word-spacing:4.256000pt;}
.ws68{word-spacing:4.306667pt;}
.ws7e{word-spacing:4.357333pt;}
.wsb6{word-spacing:4.442667pt;}
.wsd6{word-spacing:4.488000pt;}
.ws5d{word-spacing:4.509333pt;}
.wsc0{word-spacing:4.533333pt;}
.ws3f{word-spacing:4.560000pt;}
.wsbb{word-spacing:4.578667pt;}
.wsa8{word-spacing:4.610667pt;}
.wsd9{word-spacing:4.624000pt;}
.wsab{word-spacing:4.661333pt;}
.ws6f{word-spacing:4.712000pt;}
.ws56{word-spacing:4.914667pt;}
.ws72{word-spacing:4.965333pt;}
.ws17{word-spacing:5.016000pt;}
.ws7f{word-spacing:5.066667pt;}
.ws89{word-spacing:5.117333pt;}
.ws9{word-spacing:5.136000pt;}
.ws8f{word-spacing:5.168000pt;}
.wsac{word-spacing:5.218667pt;}
.ws14{word-spacing:5.269333pt;}
.ws9e{word-spacing:5.370667pt;}
.ws75{word-spacing:5.472000pt;}
.wsd2{word-spacing:5.485333pt;}
.ws4d{word-spacing:5.522667pt;}
.ws45{word-spacing:5.573333pt;}
.wsdb{word-spacing:5.576000pt;}
.wse3{word-spacing:5.666667pt;}
.wsb8{word-spacing:5.712000pt;}
.ws69{word-spacing:5.725333pt;}
.ws15{word-spacing:5.776000pt;}
.wsa9{word-spacing:5.826667pt;}
.ws109{word-spacing:5.848000pt;}
.ws87{word-spacing:5.877333pt;}
.ws24{word-spacing:5.928000pt;}
.ws90{word-spacing:5.978667pt;}
.wsb9{word-spacing:6.029333pt;}
.ws76{word-spacing:6.080000pt;}
.wsd4{word-spacing:6.120000pt;}
.ws41{word-spacing:6.130667pt;}
.ws23{word-spacing:6.333333pt;}
.wse8{word-spacing:6.437333pt;}
.wsae{word-spacing:6.536000pt;}
.wsc1{word-spacing:6.618667pt;}
.wsa5{word-spacing:6.637333pt;}
.wsad{word-spacing:6.688000pt;}
.ws8c{word-spacing:6.738667pt;}
.ws9c{word-spacing:6.789333pt;}
.ws38{word-spacing:6.840000pt;}
.wsee{word-spacing:6.845333pt;}
.wsa3{word-spacing:6.941333pt;}
.ws4c{word-spacing:7.042667pt;}
.wsbc{word-spacing:7.072000pt;}
.ws94{word-spacing:7.093333pt;}
.ws2e{word-spacing:7.194667pt;}
.wsa6{word-spacing:7.245333pt;}
.ws85{word-spacing:7.296000pt;}
.wsc8{word-spacing:7.344000pt;}
.ws5f{word-spacing:7.346667pt;}
.ws37{word-spacing:7.448000pt;}
.wse0{word-spacing:7.480000pt;}
.wsaa{word-spacing:7.549333pt;}
.wsd8{word-spacing:7.570667pt;}
.ws58{word-spacing:7.600000pt;}
.ws63{word-spacing:7.904000pt;}
.wsba{word-spacing:8.160000pt;}
.ws30{word-spacing:8.208000pt;}
.wsa7{word-spacing:8.410667pt;}
.ws10b{word-spacing:8.432000pt;}
.ws57{word-spacing:8.461333pt;}
.wsd7{word-spacing:8.477333pt;}
.ws65{word-spacing:8.613333pt;}
.wsa2{word-spacing:8.714667pt;}
.wsc3{word-spacing:8.749333pt;}
.ws100{word-spacing:8.930667pt;}
.wsc5{word-spacing:8.976000pt;}
.ws5c{word-spacing:9.018667pt;}
.ws84{word-spacing:9.322667pt;}
.ws6d{word-spacing:9.424000pt;}
.ws53{word-spacing:9.474667pt;}
.wse4{word-spacing:9.520000pt;}
.ws4b{word-spacing:9.576000pt;}
.wsb4{word-spacing:9.701333pt;}
.ws35{word-spacing:9.778667pt;}
.ws6b{word-spacing:9.880000pt;}
.ws8e{word-spacing:10.082667pt;}
.wsd3{word-spacing:10.200000pt;}
.wsf1{word-spacing:10.336000pt;}
.wse5{word-spacing:10.381333pt;}
.ws52{word-spacing:10.538667pt;}
.ws20{word-spacing:10.589333pt;}
.ws6a{word-spacing:10.640000pt;}
.ws64{word-spacing:10.994667pt;}
.wsf0{word-spacing:11.832000pt;}
.ws102{word-spacing:11.968000pt;}
.ws59{word-spacing:12.058667pt;}
.ws103{word-spacing:12.104000pt;}
.wsbf{word-spacing:12.194667pt;}
.ws34{word-spacing:12.464000pt;}
.wsf2{word-spacing:12.693333pt;}
.wsb7{word-spacing:12.738667pt;}
.wscc{word-spacing:12.920000pt;}
.ws5b{word-spacing:12.970667pt;}
.ws4e{word-spacing:13.325333pt;}
.ws101{word-spacing:13.328000pt;}
.ws108{word-spacing:13.781333pt;}
.wsf8{word-spacing:14.370667pt;}
.wsbe{word-spacing:14.688000pt;}
.wsde{word-spacing:14.914667pt;}
.ws8b{word-spacing:15.301333pt;}
.wsf3{word-spacing:15.322667pt;}
.ws55{word-spacing:15.453333pt;}
.ws28{word-spacing:16.061333pt;}
.wscf{word-spacing:16.274667pt;}
.wsb3{word-spacing:16.365333pt;}
.wsfd{word-spacing:16.501333pt;}
.wsfc{word-spacing:17.136000pt;}
.ws54{word-spacing:17.176000pt;}
.ws22{word-spacing:20.469333pt;}
.wsf4{word-spacing:20.672000pt;}
.ws5a{word-spacing:21.634667pt;}
.wsa1{word-spacing:21.837333pt;}
.wse6{word-spacing:23.936000pt;}
.ws1f{word-spacing:25.637333pt;}
.ws105{word-spacing:29.285333pt;}
.wse7{word-spacing:43.202667pt;}
._17{margin-left:-54.536000pt;}
._16{margin-left:-36.448000pt;}
._a{margin-left:-34.757333pt;}
._e{margin-left:-22.546667pt;}
._9{margin-left:-21.482667pt;}
._5{margin-left:-18.189333pt;}
._8{margin-left:-13.984000pt;}
._1a{margin-left:-10.608000pt;}
._1c{margin-left:-9.565333pt;}
._1b{margin-left:-7.797333pt;}
._1d{margin-left:-6.800000pt;}
._2{margin-left:-5.671467pt;}
._3{margin-left:-4.443733pt;}
._f{margin-left:-3.445333pt;}
._1{margin-left:-2.531200pt;}
._0{margin-left:-1.493333pt;}
._d{width:1.013333pt;}
._c{width:2.888000pt;}
._6{width:3.946667pt;}
._b{width:6.080000pt;}
._18{width:7.162667pt;}
._19{width:9.021333pt;}
._15{width:11.424000pt;}
._12{width:15.186667pt;}
._11{width:17.317333pt;}
._7{width:25.130667pt;}
._10{width:26.112000pt;}
._13{width:27.744000pt;}
._14{width:31.914667pt;}
._4{width:487.679467pt;}
.fsf{font-size:29.538667pt;}
.fse{font-size:37.333333pt;}
.fsb{font-size:38.933333pt;}
.fsc{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fsd{font-size:50.666667pt;}
.fs9{font-size:52.266667pt;}
.fs10{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:82.133333pt;}
.fs2{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.fs1{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:45.135867pt;}
.y2e{bottom:62.469200pt;}
.y10d{bottom:75.550400pt;}
.y122{bottom:75.565600pt;}
.y19d{bottom:75.576933pt;}
.yc6{bottom:75.621467pt;}
.y162{bottom:75.667600pt;}
.y63{bottom:75.738667pt;}
.yf2{bottom:75.798800pt;}
.y95{bottom:76.767067pt;}
.y19c{bottom:89.720933pt;}
.y161{bottom:89.947600pt;}
.yc5{bottom:91.644800pt;}
.y10c{bottom:91.649733pt;}
.y62{bottom:92.091333pt;}
.yf1{bottom:92.151467pt;}
.y121{bottom:92.361600pt;}
.y94{bottom:92.765067pt;}
.y2c{bottom:103.060000pt;}
.y19b{bottom:103.864933pt;}
.y160{bottom:104.227600pt;}
.yc4{bottom:107.668133pt;}
.y61{bottom:108.444000pt;}
.yf0{bottom:108.504133pt;}
.y93{bottom:108.763067pt;}
.y120{bottom:109.157600pt;}
.y10b{bottom:115.311067pt;}
.y19a{bottom:118.008933pt;}
.y2b{bottom:118.396000pt;}
.y15f{bottom:118.507600pt;}
.yc3{bottom:123.691467pt;}
.y60{bottom:124.796667pt;}
.yef{bottom:124.856800pt;}
.y11f{bottom:125.953600pt;}
.y10a{bottom:131.410400pt;}
.y199{bottom:132.152933pt;}
.y15e{bottom:132.787600pt;}
.y2a{bottom:133.732000pt;}
.y92{bottom:136.153733pt;}
.yc2{bottom:139.714800pt;}
.y5f{bottom:141.149333pt;}
.yee{bottom:141.209467pt;}
.y11e{bottom:142.749600pt;}
.y198{bottom:146.296933pt;}
.y15d{bottom:147.067600pt;}
.y109{bottom:147.509733pt;}
.y29{bottom:149.068000pt;}
.y91{bottom:152.151733pt;}
.yc1{bottom:155.738133pt;}
.y5e{bottom:157.502000pt;}
.yed{bottom:157.562133pt;}
.y11d{bottom:159.545600pt;}
.y197{bottom:160.440933pt;}
.y15c{bottom:161.347600pt;}
.y108{bottom:163.609067pt;}
.y28{bottom:165.706800pt;}
.y90{bottom:168.149733pt;}
.y5d{bottom:173.854667pt;}
.yec{bottom:173.914800pt;}
.y196{bottom:174.584933pt;}
.y2d{bottom:175.137067pt;}
.y15b{bottom:175.627600pt;}
.y11c{bottom:176.341600pt;}
.y107{bottom:179.708400pt;}
.yc0{bottom:183.098133pt;}
.y8f{bottom:184.147733pt;}
.y195{bottom:188.728933pt;}
.y15a{bottom:189.907600pt;}
.y5c{bottom:190.207333pt;}
.yeb{bottom:190.267467pt;}
.ybf{bottom:199.121467pt;}
.y8e{bottom:200.145733pt;}
.y194{bottom:202.872933pt;}
.y106{bottom:203.369733pt;}
.y159{bottom:204.187600pt;}
.y5b{bottom:206.560000pt;}
.y11b{bottom:212.468267pt;}
.ybe{bottom:215.144800pt;}
.y8d{bottom:216.143733pt;}
.y193{bottom:217.016933pt;}
.yea{bottom:217.969467pt;}
.y158{bottom:218.467600pt;}
.y105{bottom:219.469067pt;}
.y24{bottom:221.578000pt;}
.y5a{bottom:222.912667pt;}
.y192{bottom:231.160933pt;}
.ybd{bottom:231.168133pt;}
.y8c{bottom:232.141733pt;}
.y157{bottom:232.747600pt;}
.ye9{bottom:234.322133pt;}
.y104{bottom:235.568400pt;}
.y59{bottom:239.265333pt;}
.y191{bottom:245.304933pt;}
.y156{bottom:247.027600pt;}
.ybc{bottom:247.191467pt;}
.y8b{bottom:248.139733pt;}
.ye8{bottom:250.674800pt;}
.y103{bottom:251.667733pt;}
.y58{bottom:255.618000pt;}
.y190{bottom:259.448933pt;}
.y155{bottom:261.307600pt;}
.y27{bottom:261.902267pt;}
.ybb{bottom:263.214800pt;}
.y8a{bottom:264.137733pt;}
.ye7{bottom:267.027467pt;}
.y102{bottom:267.767067pt;}
.y57{bottom:271.970667pt;}
.y18f{bottom:273.592933pt;}
.y154{bottom:275.587600pt;}
.yba{bottom:279.238133pt;}
.y89{bottom:280.135733pt;}
.ye6{bottom:283.380133pt;}
.y101{bottom:283.866400pt;}
.y23{bottom:285.080933pt;}
.y18e{bottom:287.736933pt;}
.y56{bottom:288.323333pt;}
.y153{bottom:289.867600pt;}
.y11a{bottom:292.555733pt;}
.yb9{bottom:295.261467pt;}
.y88{bottom:296.133733pt;}
.ye5{bottom:299.732800pt;}
.y100{bottom:299.965733pt;}
.y18d{bottom:301.880933pt;}
.y152{bottom:304.147600pt;}
.y119{bottom:309.351733pt;}
.yb8{bottom:311.284800pt;}
.y87{bottom:312.131733pt;}
.y22{bottom:315.747600pt;}
.y18c{bottom:316.024933pt;}
.y55{bottom:316.025333pt;}
.yff{bottom:316.065067pt;}
.y151{bottom:318.427600pt;}
.y118{bottom:326.147733pt;}
.yb7{bottom:327.308133pt;}
.ye4{bottom:327.434800pt;}
.y86{bottom:328.129733pt;}
.y18b{bottom:330.168933pt;}
.y21{bottom:331.637333pt;}
.y54{bottom:332.378000pt;}
.y150{bottom:332.707600pt;}
.yfe{bottom:339.726400pt;}
.y20{bottom:340.864000pt;}
.y117{bottom:342.943733pt;}
.yb6{bottom:343.331467pt;}
.ye3{bottom:343.787467pt;}
.y85{bottom:344.127733pt;}
.y18a{bottom:344.312933pt;}
.y14f{bottom:346.987600pt;}
.y53{bottom:348.730667pt;}
.yfd{bottom:355.825733pt;}
.y189{bottom:358.456933pt;}
.yb5{bottom:359.354800pt;}
.y116{bottom:359.739733pt;}
.y84{bottom:360.125733pt;}
.ye2{bottom:360.140133pt;}
.y14e{bottom:361.267600pt;}
.y1f{bottom:361.527200pt;}
.y52{bottom:365.083333pt;}
.yfc{bottom:371.925067pt;}
.y188{bottom:372.600933pt;}
.yb4{bottom:375.378133pt;}
.y14d{bottom:375.547600pt;}
.y83{bottom:376.123733pt;}
.ye1{bottom:376.492800pt;}
.y1e{bottom:377.416933pt;}
.y51{bottom:381.436000pt;}
.y187{bottom:386.744933pt;}
.y115{bottom:387.872400pt;}
.yfb{bottom:388.024400pt;}
.y14c{bottom:389.827600pt;}
.y82{bottom:392.121733pt;}
.ye0{bottom:392.845467pt;}
.y1d{bottom:393.306667pt;}
.y50{bottom:397.788667pt;}
.y186{bottom:400.888933pt;}
.yb3{bottom:402.738133pt;}
.y14b{bottom:404.107600pt;}
.yfa{bottom:404.123733pt;}
.y114{bottom:404.668400pt;}
.y1c{bottom:409.196400pt;}
.ydf{bottom:409.198133pt;}
.y185{bottom:415.032933pt;}
.y14a{bottom:418.387600pt;}
.yb2{bottom:418.761467pt;}
.y81{bottom:419.456400pt;}
.yf9{bottom:420.223067pt;}
.y113{bottom:421.464400pt;}
.y1b{bottom:425.086267pt;}
.y4f{bottom:425.490667pt;}
.yde{bottom:425.550800pt;}
.y184{bottom:429.176933pt;}
.yb1{bottom:434.784800pt;}
.y80{bottom:435.454400pt;}
.yf8{bottom:436.322400pt;}
.y112{bottom:438.260400pt;}
.y1a{bottom:440.976000pt;}
.y4e{bottom:441.843333pt;}
.ydd{bottom:441.903467pt;}
.y183{bottom:443.320933pt;}
.yb0{bottom:450.808133pt;}
.y7f{bottom:451.452400pt;}
.y149{bottom:454.369067pt;}
.y19{bottom:456.865733pt;}
.y182{bottom:457.464933pt;}
.y4d{bottom:458.196000pt;}
.ydc{bottom:458.256133pt;}
.yf7{bottom:459.983733pt;}
.y18{bottom:466.092267pt;}
.yaf{bottom:466.831467pt;}
.y7e{bottom:467.450400pt;}
.y181{bottom:471.608933pt;}
.y111{bottom:473.955067pt;}
.y4c{bottom:474.548667pt;}
.ydb{bottom:474.608800pt;}
.yf6{bottom:476.083067pt;}
.yae{bottom:482.854800pt;}
.y7d{bottom:483.448400pt;}
.y180{bottom:485.752933pt;}
.y17{bottom:486.755467pt;}
.y110{bottom:490.751067pt;}
.y4b{bottom:490.901333pt;}
.yf5{bottom:492.182400pt;}
.yad{bottom:498.878133pt;}
.y7c{bottom:499.446400pt;}
.y17f{bottom:499.896933pt;}
.yda{bottom:502.310800pt;}
.y16{bottom:502.645200pt;}
.y4a{bottom:507.254000pt;}
.y10f{bottom:507.547067pt;}
.yf4{bottom:508.281733pt;}
.y17e{bottom:514.040933pt;}
.yac{bottom:514.901467pt;}
.y7b{bottom:515.444400pt;}
.y15{bottom:518.535067pt;}
.yd9{bottom:518.663467pt;}
.y49{bottom:523.606667pt;}
.y10e{bottom:524.343067pt;}
.yf3{bottom:524.381067pt;}
.y148{bottom:527.587467pt;}
.y17d{bottom:528.184933pt;}
.yab{bottom:530.924800pt;}
.y7a{bottom:531.442400pt;}
.y14{bottom:534.424800pt;}
.yd8{bottom:535.016133pt;}
.y48{bottom:539.959333pt;}
.y17c{bottom:542.328933pt;}
.y147{bottom:543.737467pt;}
.yaa{bottom:546.948133pt;}
.y79{bottom:547.440400pt;}
.y13{bottom:550.314533pt;}
.yd7{bottom:551.368800pt;}
.y47{bottom:556.312000pt;}
.y17b{bottom:556.472933pt;}
.y146{bottom:559.887467pt;}
.ya9{bottom:562.971467pt;}
.y78{bottom:563.438400pt;}
.y12{bottom:566.204400pt;}
.yd6{bottom:567.721467pt;}
.y17a{bottom:570.616933pt;}
.y46{bottom:572.664667pt;}
.ya8{bottom:578.994800pt;}
.y77{bottom:579.440400pt;}
.y11{bottom:582.094133pt;}
.yd5{bottom:584.074133pt;}
.y179{bottom:584.760933pt;}
.y45{bottom:589.017333pt;}
.ya7{bottom:595.018133pt;}
.y76{bottom:595.438400pt;}
.y145{bottom:597.261867pt;}
.y10{bottom:597.983867pt;}
.y178{bottom:598.904933pt;}
.yd4{bottom:600.426800pt;}
.y44{bottom:605.370000pt;}
.ya6{bottom:611.041467pt;}
.y75{bottom:611.438400pt;}
.y8{bottom:611.612267pt;}
.y177{bottom:613.048933pt;}
.y12e{bottom:613.398267pt;}
.yf{bottom:613.873600pt;}
.yd3{bottom:616.779467pt;}
.y43{bottom:621.722667pt;}
.ya5{bottom:627.064800pt;}
.y176{bottom:627.192933pt;}
.y74{bottom:627.438400pt;}
.y12d{bottom:629.398267pt;}
.ye{bottom:630.520933pt;}
.yd2{bottom:633.132133pt;}
.y42{bottom:638.075333pt;}
.y137{bottom:640.971600pt;}
.y175{bottom:641.336933pt;}
.ya4{bottom:643.088133pt;}
.y73{bottom:643.440400pt;}
.y12c{bottom:645.398267pt;}
.yd{bottom:647.854267pt;}
.yd1{bottom:649.484800pt;}
.y41{bottom:654.428000pt;}
.y136{bottom:655.371600pt;}
.y174{bottom:655.480933pt;}
.ya3{bottom:659.111467pt;}
.y72{bottom:659.438400pt;}
.yc{bottom:665.187600pt;}
.yd0{bottom:665.837467pt;}
.y1bf{bottom:666.310133pt;}
.y1ae{bottom:666.321467pt;}
.y173{bottom:669.624933pt;}
.y135{bottom:669.771600pt;}
.y40{bottom:670.780667pt;}
.y144{bottom:673.620667pt;}
.ya2{bottom:675.134800pt;}
.y71{bottom:675.464267pt;}
.y1be{bottom:680.669467pt;}
.y1ad{bottom:680.680800pt;}
.ycf{bottom:682.190133pt;}
.yb{bottom:682.527067pt;}
.y172{bottom:683.768933pt;}
.y134{bottom:684.171600pt;}
.y13d{bottom:687.508533pt;}
.y143{bottom:689.770667pt;}
.ya1{bottom:691.158133pt;}
.y70{bottom:691.462267pt;}
.y1bd{bottom:695.028800pt;}
.y1ac{bottom:695.040133pt;}
.y171{bottom:697.912933pt;}
.y3f{bottom:698.522800pt;}
.yce{bottom:698.542800pt;}
.y133{bottom:698.571600pt;}
.y13c{bottom:702.975200pt;}
.ya0{bottom:707.181467pt;}
.y6f{bottom:707.460267pt;}
.y12b{bottom:707.508533pt;}
.y1bc{bottom:709.388133pt;}
.y1ab{bottom:709.399467pt;}
.y170{bottom:712.056933pt;}
.y132{bottom:712.971600pt;}
.y3e{bottom:714.875467pt;}
.ycd{bottom:714.895467pt;}
.y13b{bottom:715.775200pt;}
.ya{bottom:719.392533pt;}
.y9f{bottom:723.204800pt;}
.y6e{bottom:723.458267pt;}
.y12a{bottom:723.508533pt;}
.y1bb{bottom:723.747467pt;}
.y1aa{bottom:723.758800pt;}
.y142{bottom:725.255333pt;}
.y16f{bottom:726.200933pt;}
.y13a{bottom:728.575200pt;}
.y3d{bottom:731.228133pt;}
.ycc{bottom:731.248133pt;}
.y9{bottom:738.064533pt;}
.y1ba{bottom:738.106800pt;}
.y1a9{bottom:738.118133pt;}
.y9e{bottom:739.228133pt;}
.y129{bottom:739.508533pt;}
.y16e{bottom:740.344933pt;}
.y139{bottom:741.375200pt;}
.y3c{bottom:747.580800pt;}
.ycb{bottom:747.600800pt;}
.y6d{bottom:750.792933pt;}
.y1b9{bottom:752.466133pt;}
.y1a8{bottom:752.477467pt;}
.y138{bottom:754.175200pt;}
.y16d{bottom:754.488933pt;}
.y9d{bottom:755.251467pt;}
.y131{bottom:757.900533pt;}
.y3b{bottom:763.933467pt;}
.yca{bottom:763.953467pt;}
.y6c{bottom:766.790933pt;}
.y1b8{bottom:766.825467pt;}
.y1a7{bottom:766.836800pt;}
.y16c{bottom:768.632933pt;}
.y9c{bottom:771.274800pt;}
.y130{bottom:772.300533pt;}
.y4{bottom:773.468933pt;}
.y3a{bottom:780.286133pt;}
.yc9{bottom:780.306133pt;}
.y1b7{bottom:781.184800pt;}
.y1a6{bottom:781.196133pt;}
.y16b{bottom:782.776933pt;}
.y6b{bottom:782.788933pt;}
.y12f{bottom:786.700533pt;}
.y9b{bottom:787.298133pt;}
.y1b6{bottom:795.544133pt;}
.y1a5{bottom:795.555467pt;}
.y39{bottom:796.638800pt;}
.yc8{bottom:796.658800pt;}
.y16a{bottom:796.920933pt;}
.y6a{bottom:798.786933pt;}
.y128{bottom:799.388933pt;}
.y141{bottom:803.503733pt;}
.y1b5{bottom:809.903467pt;}
.y1a4{bottom:809.914800pt;}
.y169{bottom:811.064933pt;}
.y38{bottom:812.991467pt;}
.yc7{bottom:813.011467pt;}
.y5{bottom:814.454000pt;}
.y9a{bottom:814.658133pt;}
.y69{bottom:814.784933pt;}
.y127{bottom:815.388933pt;}
.y140{bottom:819.653733pt;}
.y1b4{bottom:824.262800pt;}
.y1a3{bottom:824.274133pt;}
.y168{bottom:825.208933pt;}
.y37{bottom:829.364133pt;}
.y99{bottom:830.681467pt;}
.y68{bottom:830.782933pt;}
.y126{bottom:831.388933pt;}
.y13f{bottom:835.803733pt;}
.y1b3{bottom:838.622133pt;}
.y1a2{bottom:838.633467pt;}
.y167{bottom:839.352933pt;}
.y3{bottom:839.776800pt;}
.y36{bottom:845.716800pt;}
.y98{bottom:846.704800pt;}
.y67{bottom:846.780933pt;}
.y1b2{bottom:852.981467pt;}
.y1a1{bottom:852.992800pt;}
.y166{bottom:853.496933pt;}
.y35{bottom:862.069467pt;}
.y97{bottom:862.728133pt;}
.y66{bottom:862.778933pt;}
.y1b1{bottom:867.340800pt;}
.y1a0{bottom:867.352133pt;}
.y165{bottom:867.640933pt;}
.y2{bottom:871.776800pt;}
.y125{bottom:871.788933pt;}
.y13e{bottom:874.123200pt;}
.y34{bottom:878.422133pt;}
.y96{bottom:878.751467pt;}
.y65{bottom:878.776933pt;}
.y1b0{bottom:881.700133pt;}
.y19f{bottom:881.711467pt;}
.y164{bottom:881.784933pt;}
.y124{bottom:886.988933pt;}
.y123{bottom:894.107867pt;}
.y33{bottom:894.774800pt;}
.y64{bottom:894.774933pt;}
.y163{bottom:895.928933pt;}
.y1af{bottom:896.059467pt;}
.y19e{bottom:896.070800pt;}
.y1{bottom:903.776800pt;}
.y26{bottom:959.228000pt;}
.y25{bottom:959.919333pt;}
.y7{bottom:959.922933pt;}
.y31{bottom:960.166133pt;}
.y32{bottom:961.534667pt;}
.y30{bottom:989.614133pt;}
.y6{bottom:990.804133pt;}
.h16{height:29.866667pt;}
.h12{height:30.760000pt;}
.he{height:34.144533pt;}
.h14{height:35.040000pt;}
.hd{height:37.376000pt;}
.h17{height:38.962667pt;}
.h11{height:39.712000pt;}
.h7{height:39.757333pt;}
.h6{height:40.560000pt;}
.h1d{height:42.048000pt;}
.h1c{height:42.096000pt;}
.h18{height:44.418667pt;}
.h19{height:44.426667pt;}
.h10{height:44.434667pt;}
.h9{height:44.800000pt;}
.h1b{height:46.720000pt;}
.h1a{height:46.773333pt;}
.h13{height:49.573333pt;}
.h8{height:51.450667pt;}
.h15{height:52.003200pt;}
.ha{height:54.080000pt;}
.hf{height:56.064000pt;}
.h5{height:63.093333pt;}
.hb{height:64.085333pt;}
.hc{height:64.109867pt;}
.h4{height:69.402667pt;}
.h2{height:90.133333pt;}
.h3{height:112.666667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:64.083867pt;}
.x4{left:66.141733pt;}
.xd{left:74.073467pt;}
.x16{left:76.956400pt;}
.x11{left:79.370133pt;}
.x15{left:81.722133pt;}
.x29{left:86.930000pt;}
.x12{left:94.494133pt;}
.x28{left:96.302400pt;}
.x25{left:103.062933pt;}
.x2{left:105.314533pt;}
.x8{left:111.792400pt;}
.x7{left:112.926267pt;}
.x6{left:115.981200pt;}
.x9{left:117.459200pt;}
.xa{left:119.348933pt;}
.xe{left:130.899067pt;}
.x26{left:134.462933pt;}
.x27{left:156.089600pt;}
.x1b{left:314.706800pt;}
.x1a{left:315.986933pt;}
.x17{left:325.706800pt;}
.x18{left:334.680133pt;}
.x19{left:368.320133pt;}
.x1c{left:372.253467pt;}
.xf{left:410.078800pt;}
.x2a{left:432.755333pt;}
.x13{left:440.648800pt;}
.x14{left:442.462400pt;}
.x3{left:521.437600pt;}
.xc{left:526.566400pt;}
.x1d{left:536.447467pt;}
.x22{left:539.459333pt;}
.x1e{left:542.051467pt;}
.x21{left:555.575333pt;}
.x20{left:563.819333pt;}
.x23{left:583.079333pt;}
.x1f{left:596.411467pt;}
.x24{left:599.663333pt;}
.xb{left:661.648400pt;}
.x10{left:770.785467pt;}
.x5{left:771.748800pt;}
}




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