
    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_082c88150662ebb75ded0f8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_823c8dda87257c9c4cc4d018.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976599;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_99bec79b2030480d842aca5c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.022461;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_0e9731725bda8643757ca8b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.025879;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_8a5285de7434de3ed8fc08ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_143a47d9cdf7ccae9b80e622.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_e2c8c0d1e1ee1185780d0eef.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_87991e8ccea093df61bc8ecc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.041992;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_9b726b911e485493a11c4bbb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976118;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_7e8bdd915696037764260a07.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3e225d5f1397e835cd786071.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964863;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_c3a8461055b4b58be2e2611e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.710938;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_8af8ef749655711e13b89f33.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964844;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_774be177e4e39af747e778ee.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.977095;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_c88670a5407ab3962460dfcd.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_cb18957803c9d2662096b693.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_30b0f72ada8849f05e19d103.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_3521c35b1b7ca10d757407f7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.741211;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6b14b4abb690d74c4de6e3ae.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.917969;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_738bc872edb25383fb2eb9ce.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.772054;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:ff15;src:url('chunks/assets/font_ce08eb1877b726916f17448b.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.011230;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.198000px;}
.v1{vertical-align:21.978000px;}
.ls10{letter-spacing:-10.908000px;}
.lsa{letter-spacing:-10.638000px;}
.lsf{letter-spacing:-7.506000px;}
.ls9{letter-spacing:-7.236000px;}
.ls1c{letter-spacing:-3.900000px;}
.lse{letter-spacing:-3.510000px;}
.ls8{letter-spacing:-3.240000px;}
.ls1b{letter-spacing:-2.880000px;}
.ls12{letter-spacing:-2.592000px;}
.ls3{letter-spacing:-0.691200px;}
.lsb{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.408000px;}
.ls15{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.300000px;}
.ls16{letter-spacing:-0.283338px;}
.lsd{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.120000px;}
.ls1{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.300000px;}
.ls1d{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.600000px;}
.ls18{letter-spacing:0.660000px;}
.ls17{letter-spacing:1.080000px;}
.ls7{letter-spacing:3.461400px;}
.ls14{letter-spacing:7.500000px;}
.ls13{letter-spacing:21.120000px;}
.ls0{letter-spacing:43.181364px;}
.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;}
}
.ws62{word-spacing:-60.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws6e{word-spacing:-16.434000px;}
.ws7e{word-spacing:-15.480000px;}
.ws7f{word-spacing:-15.420000px;}
.ws80{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.880000px;}
.ws61{word-spacing:-14.820000px;}
.ws6{word-spacing:-14.700000px;}
.ws47{word-spacing:-14.580000px;}
.ws29{word-spacing:-14.520000px;}
.ws76{word-spacing:-14.472000px;}
.ws14{word-spacing:-14.400000px;}
.ws1d{word-spacing:-14.340000px;}
.ws1c{word-spacing:-14.160000px;}
.ws28{word-spacing:-14.040000px;}
.ws22{word-spacing:-13.446000px;}
.ws6f{word-spacing:-13.392000px;}
.ws4{word-spacing:-13.230000px;}
.ws3e{word-spacing:-13.176000px;}
.ws3d{word-spacing:-12.960000px;}
.ws73{word-spacing:-12.690000px;}
.ws7{word-spacing:-12.366000px;}
.ws8{word-spacing:-12.150000px;}
.ws81{word-spacing:-11.940000px;}
.ws9{word-spacing:-10.992000px;}
.ws82{word-spacing:-10.920000px;}
.ws1{word-spacing:-10.896000px;}
.ws13{word-spacing:-10.800000px;}
.ws21{word-spacing:-10.206000px;}
.ws3f{word-spacing:-9.936000px;}
.ws2{word-spacing:-9.892800px;}
.ws0{word-spacing:-9.618000px;}
.ws5c{word-spacing:-8.553170px;}
.ws74{word-spacing:-7.524198px;}
.ws23{word-spacing:-6.210000px;}
.ws40{word-spacing:-5.940000px;}
.ws6d{word-spacing:-3.780000px;}
.ws43{word-spacing:-3.618000px;}
.ws6a{word-spacing:-3.480000px;}
.ws37{word-spacing:-2.940000px;}
.wse{word-spacing:-2.592000px;}
.ws30{word-spacing:-2.580000px;}
.ws31{word-spacing:-2.520000px;}
.ws6c{word-spacing:-2.280000px;}
.ws54{word-spacing:-2.220000px;}
.ws36{word-spacing:-2.160000px;}
.ws4d{word-spacing:-1.980000px;}
.ws3b{word-spacing:-1.920000px;}
.ws32{word-spacing:-1.680000px;}
.ws33{word-spacing:-1.620000px;}
.ws3c{word-spacing:-1.560000px;}
.ws58{word-spacing:-1.512000px;}
.wsf{word-spacing:-1.296000px;}
.ws16{word-spacing:-1.260000px;}
.ws64{word-spacing:-1.200000px;}
.ws79{word-spacing:-1.080000px;}
.ws59{word-spacing:-1.026000px;}
.ws50{word-spacing:-0.960000px;}
.ws10{word-spacing:-0.594000px;}
.ws83{word-spacing:-0.540000px;}
.ws5f{word-spacing:-0.420000px;}
.ws12{word-spacing:-0.270000px;}
.wsc{word-spacing:-0.216000px;}
.ws44{word-spacing:-0.108000px;}
.ws2c{word-spacing:-0.060000px;}
.wsa{word-spacing:0.000000px;}
.ws4a{word-spacing:0.120000px;}
.ws34{word-spacing:0.180000px;}
.ws42{word-spacing:0.270000px;}
.ws1a{word-spacing:0.300000px;}
.ws63{word-spacing:0.360000px;}
.wsb{word-spacing:0.408000px;}
.ws45{word-spacing:0.486000px;}
.ws1f{word-spacing:0.540000px;}
.ws75{word-spacing:0.594000px;}
.ws20{word-spacing:0.600000px;}
.ws2d{word-spacing:0.660000px;}
.wsd{word-spacing:0.691200px;}
.ws48{word-spacing:0.840000px;}
.ws4c{word-spacing:1.020000px;}
.ws5a{word-spacing:1.080000px;}
.ws15{word-spacing:1.140000px;}
.ws4e{word-spacing:1.320000px;}
.ws67{word-spacing:1.512000px;}
.ws70{word-spacing:1.728000px;}
.ws7b{word-spacing:1.836000px;}
.ws4b{word-spacing:1.920000px;}
.ws5e{word-spacing:1.998000px;}
.ws2f{word-spacing:2.160000px;}
.ws19{word-spacing:2.580000px;}
.ws5b{word-spacing:2.592000px;}
.ws46{word-spacing:2.808000px;}
.ws2e{word-spacing:3.060000px;}
.ws52{word-spacing:3.120000px;}
.ws71{word-spacing:3.186000px;}
.ws4f{word-spacing:3.300000px;}
.ws25{word-spacing:3.402000px;}
.ws7a{word-spacing:3.456000px;}
.ws18{word-spacing:3.540000px;}
.ws60{word-spacing:3.600000px;}
.ws2a{word-spacing:3.900000px;}
.ws68{word-spacing:3.960000px;}
.ws17{word-spacing:4.080000px;}
.ws35{word-spacing:4.200000px;}
.ws51{word-spacing:4.620000px;}
.ws2b{word-spacing:4.680000px;}
.ws78{word-spacing:4.698000px;}
.ws53{word-spacing:5.100000px;}
.ws57{word-spacing:5.400000px;}
.ws56{word-spacing:5.460000px;}
.ws7c{word-spacing:5.508000px;}
.ws11{word-spacing:6.372000px;}
.ws3a{word-spacing:6.420000px;}
.ws49{word-spacing:6.480000px;}
.ws72{word-spacing:6.642000px;}
.ws7d{word-spacing:6.750000px;}
.ws1e{word-spacing:7.020000px;}
.ws66{word-spacing:7.440000px;}
.ws65{word-spacing:7.560000px;}
.ws6b{word-spacing:7.680000px;}
.ws24{word-spacing:7.830000px;}
.ws41{word-spacing:8.105400px;}
.ws39{word-spacing:8.280000px;}
.ws38{word-spacing:8.340000px;}
.ws77{word-spacing:9.126000px;}
.ws55{word-spacing:10.140000px;}
.ws69{word-spacing:16.980000px;}
.ws26{word-spacing:318.964800px;}
.ws27{word-spacing:537.048000px;}
.ws5d{word-spacing:712.716159px;}
._b{margin-left:-11.280600px;}
._4d{margin-left:-8.085000px;}
._f{margin-left:-6.868200px;}
._47{margin-left:-5.747400px;}
._2{margin-left:-4.743000px;}
._c{margin-left:-3.693600px;}
._5{margin-left:-2.683800px;}
._1{margin-left:-1.295400px;}
._0{width:1.254600px;}
._9{width:2.256000px;}
._3{width:3.529200px;}
._7{width:4.816200px;}
._6{width:6.301800px;}
._8{width:7.306800px;}
._e{width:8.317200px;}
._d{width:9.318000px;}
._11{width:10.422000px;}
._10{width:11.477400px;}
._a{width:12.582000px;}
._4f{width:14.798400px;}
._4b{width:16.176000px;}
._4a{width:17.640000px;}
._49{width:20.253000px;}
._48{width:21.325800px;}
._4e{width:23.970600px;}
._50{width:25.627800px;}
._4{width:36.369600px;}
._17{width:41.945400px;}
._4c{width:43.171200px;}
._1f{width:103.056000px;}
._30{width:111.888000px;}
._2f{width:114.331800px;}
._1e{width:130.848000px;}
._42{width:219.887400px;}
._3a{width:232.896000px;}
._46{width:237.480600px;}
._18{width:247.864800px;}
._2a{width:253.392000px;}
._16{width:256.224000px;}
._1a{width:257.472000px;}
._1d{width:271.968000px;}
._3b{width:276.048000px;}
._33{width:281.472000px;}
._35{width:287.136000px;}
._2b{width:293.280000px;}
._36{width:300.288000px;}
._3f{width:301.440000px;}
._23{width:311.472000px;}
._1c{width:315.984000px;}
._32{width:334.800000px;}
._20{width:343.104000px;}
._25{width:345.600000px;}
._14{width:354.072000px;}
._38{width:356.496000px;}
._1b{width:358.368000px;}
._12{width:363.786600px;}
._2c{width:364.992000px;}
._45{width:367.488000px;}
._31{width:377.808000px;}
._2d{width:389.568000px;}
._37{width:411.600000px;}
._27{width:413.136000px;}
._3e{width:416.880000px;}
._26{width:418.272000px;}
._40{width:423.263400px;}
._3d{width:441.023400px;}
._41{width:445.968000px;}
._28{width:447.216000px;}
._24{width:448.416000px;}
._13{width:450.288000px;}
._3c{width:452.448000px;}
._21{width:458.784000px;}
._19{width:464.160000px;}
._43{width:472.656000px;}
._15{width:475.104000px;}
._2e{width:483.312000px;}
._39{width:506.496000px;}
._44{width:520.128000px;}
._34{width:542.832000px;}
._29{width:567.984000px;}
._22{width:579.552000px;}
.fc5{color:rgb(236,24,52);}
.fc4{color:rgb(165,53,160);}
.fc3{color:rgb(16,15,13);}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:17.581200px;}
.fs9{font-size:30.766800px;}
.fsf{font-size:31.482000px;}
.fse{font-size:32.964000px;}
.fsb{font-size:35.161800px;}
.fs3{font-size:38.478000px;}
.fsa{font-size:39.557400px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fsd{font-size:52.743000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y14d{bottom:1.348800px;}
.y1{bottom:68.124750px;}
.y38{bottom:71.212050px;}
.y39{bottom:75.040050px;}
.y174{bottom:112.988850px;}
.y93{bottom:113.078700px;}
.y68{bottom:113.078850px;}
.yc3{bottom:117.140250px;}
.yd{bottom:117.205050px;}
.y9b{bottom:120.469350px;}
.yd1{bottom:120.478350px;}
.yda{bottom:120.487350px;}
.yc{bottom:131.601450px;}
.y1c9{bottom:133.796850px;}
.y1a3{bottom:133.850850px;}
.y173{bottom:133.994850px;}
.y92{bottom:134.078700px;}
.y67{bottom:134.078850px;}
.yc2{bottom:138.044250px;}
.y29{bottom:138.212700px;}
.y9a{bottom:140.273850px;}
.yd0{bottom:140.282850px;}
.yd9{bottom:140.291850px;}
.yb{bottom:145.997850px;}
.y1c8{bottom:154.802850px;}
.y1a2{bottom:154.856850px;}
.y172{bottom:155.000850px;}
.y91{bottom:155.078700px;}
.y66{bottom:155.078850px;}
.yc1{bottom:158.948250px;}
.y28{bottom:159.212700px;}
.y99{bottom:160.078350px;}
.ycf{bottom:160.087350px;}
.yd8{bottom:160.096350px;}
.ya{bottom:160.397850px;}
.y1c7{bottom:175.808850px;}
.y1a1{bottom:175.862850px;}
.y171{bottom:176.006850px;}
.yd6{bottom:176.078700px;}
.y65{bottom:176.078850px;}
.yc0{bottom:179.852250px;}
.y98{bottom:179.882850px;}
.yce{bottom:179.891850px;}
.yd7{bottom:179.900850px;}
.y27{bottom:180.212700px;}
.y90{bottom:189.513450px;}
.y1c6{bottom:196.814850px;}
.y1a0{bottom:196.868850px;}
.y170{bottom:197.012850px;}
.yd5{bottom:197.078700px;}
.y64{bottom:197.078850px;}
.y97{bottom:199.687350px;}
.ycd{bottom:199.696350px;}
.ybf{bottom:200.756250px;}
.y26{bottom:201.212700px;}
.y35{bottom:203.447400px;}
.y154{bottom:211.440900px;}
.y1c5{bottom:217.820850px;}
.y19f{bottom:217.874850px;}
.y16f{bottom:218.018850px;}
.yd4{bottom:218.078700px;}
.y63{bottom:218.078850px;}
.y96{bottom:219.491850px;}
.ycc{bottom:219.500850px;}
.y34{bottom:221.442900px;}
.ybe{bottom:221.660250px;}
.y8f{bottom:221.811000px;}
.y25{bottom:222.212700px;}
.y1c4{bottom:238.826850px;}
.y19e{bottom:238.880850px;}
.y16e{bottom:239.024850px;}
.yd3{bottom:239.078700px;}
.y62{bottom:239.078850px;}
.y95{bottom:239.296350px;}
.y33{bottom:239.438400px;}
.ybd{bottom:242.564250px;}
.y24{bottom:243.212700px;}
.y32{bottom:257.433900px;}
.ybc{bottom:257.564250px;}
.y94{bottom:259.100850px;}
.y1c3{bottom:259.832850px;}
.y19d{bottom:259.886850px;}
.y16d{bottom:260.030850px;}
.yd2{bottom:260.078700px;}
.y61{bottom:260.078850px;}
.y23{bottom:264.212700px;}
.y31{bottom:275.429400px;}
.ybb{bottom:278.468250px;}
.y1c2{bottom:280.838850px;}
.y19c{bottom:280.892850px;}
.y16c{bottom:281.036850px;}
.y8e{bottom:281.078700px;}
.ycb{bottom:281.078850px;}
.y22{bottom:285.212700px;}
.y30{bottom:293.424900px;}
.y60{bottom:294.513600px;}
.yba{bottom:299.372250px;}
.y1c1{bottom:301.844850px;}
.y19b{bottom:301.898850px;}
.y16b{bottom:302.042850px;}
.y8d{bottom:302.078700px;}
.yca{bottom:302.078850px;}
.y21{bottom:306.212700px;}
.y2f{bottom:311.420400px;}
.yb9{bottom:314.372250px;}
.y1c0{bottom:322.850850px;}
.y19a{bottom:322.904850px;}
.y16a{bottom:323.048850px;}
.y8c{bottom:323.078700px;}
.yc9{bottom:323.078850px;}
.y5f{bottom:326.811000px;}
.y20{bottom:327.212700px;}
.y2e{bottom:329.415900px;}
.yb8{bottom:335.276250px;}
.y1bf{bottom:343.856850px;}
.y199{bottom:343.910850px;}
.y1e3{bottom:344.036850px;}
.y169{bottom:344.054850px;}
.y8b{bottom:344.078700px;}
.yc8{bottom:344.078850px;}
.y1f{bottom:348.212700px;}
.yb7{bottom:350.276250px;}
.y2d{bottom:364.421400px;}
.y1be{bottom:364.862850px;}
.y198{bottom:364.916850px;}
.y1e2{bottom:365.042850px;}
.y168{bottom:365.060850px;}
.y8a{bottom:365.078700px;}
.yc7{bottom:365.078850px;}
.y1e{bottom:369.212700px;}
.yb6{bottom:371.180250px;}
.y2c{bottom:382.421400px;}
.y1bd{bottom:385.868850px;}
.y197{bottom:385.922850px;}
.y1e1{bottom:386.048850px;}
.y167{bottom:386.066850px;}
.y89{bottom:386.078700px;}
.y5e{bottom:386.078850px;}
.yb5{bottom:392.084250px;}
.y2b{bottom:400.421400px;}
.y1d{bottom:403.448550px;}
.y1bc{bottom:406.874850px;}
.y196{bottom:406.928850px;}
.y1e0{bottom:407.054850px;}
.y166{bottom:407.072850px;}
.y88{bottom:407.078700px;}
.y5d{bottom:407.078850px;}
.ydf{bottom:407.973900px;}
.yb4{bottom:412.988250px;}
.y2a{bottom:418.421400px;}
.yde{bottom:427.778400px;}
.y1bb{bottom:427.880850px;}
.y195{bottom:427.934850px;}
.yb3{bottom:427.988250px;}
.y1df{bottom:428.060850px;}
.y87{bottom:428.078700px;}
.y5c{bottom:428.078850px;}
.ydd{bottom:447.582900px;}
.y1ba{bottom:448.886850px;}
.yb2{bottom:448.892250px;}
.y194{bottom:448.940850px;}
.y1de{bottom:449.066850px;}
.y86{bottom:449.078700px;}
.y5b{bottom:449.078850px;}
.y165{bottom:463.441050px;}
.ydc{bottom:467.387400px;}
.yb1{bottom:469.796250px;}
.y1b9{bottom:469.892850px;}
.y193{bottom:469.946850px;}
.y1dd{bottom:470.072850px;}
.y85{bottom:470.078700px;}
.y5a{bottom:470.078850px;}
.ydb{bottom:487.191900px;}
.y1c{bottom:488.228100px;}
.yb0{bottom:490.700250px;}
.y1b8{bottom:490.898850px;}
.y192{bottom:490.952850px;}
.y84{bottom:491.078700px;}
.y59{bottom:491.078850px;}
.yaf{bottom:511.604250px;}
.y1b7{bottom:511.904850px;}
.y191{bottom:511.958850px;}
.yfd{bottom:512.016773px;}
.y164{bottom:512.072850px;}
.y83{bottom:512.078700px;}
.y58{bottom:512.078850px;}
.y102{bottom:523.500481px;}
.y1dc{bottom:525.513600px;}
.y1b{bottom:529.238400px;}
.yae{bottom:532.508250px;}
.y1b6{bottom:532.910850px;}
.y190{bottom:532.964850px;}
.y82{bottom:533.078700px;}
.y57{bottom:533.078850px;}
.ye0{bottom:534.996300px;}
.ye8{bottom:546.485686px;}
.yad{bottom:547.508250px;}
.y1a{bottom:549.042900px;}
.y1b5{bottom:553.916850px;}
.y18f{bottom:553.970850px;}
.y81{bottom:554.078700px;}
.y56{bottom:554.078850px;}
.y1db{bottom:557.811150px;}
.ye4{bottom:557.977086px;}
.y163{bottom:559.529400px;}
.y139{bottom:560.084098px;}
.y11c{bottom:564.542598px;}
.yac{bottom:568.412250px;}
.y121{bottom:568.696116px;}
.y19{bottom:568.847400px;}
.ye6{bottom:569.460794px;}
.y1b4{bottom:574.922850px;}
.y18e{bottom:574.976850px;}
.y80{bottom:575.078700px;}
.y55{bottom:575.078850px;}
.ye9{bottom:580.944502px;}
.y153{bottom:585.023850px;}
.y14b{bottom:587.863050px;}
.y18{bottom:588.651900px;}
.yab{bottom:589.316250px;}
.yfc{bottom:592.425805px;}
.y1b3{bottom:595.928850px;}
.y13f{bottom:595.981262px;}
.y18d{bottom:595.982850px;}
.y162{bottom:596.072850px;}
.y7f{bottom:596.078700px;}
.y54{bottom:596.078850px;}
.y107{bottom:603.919068px;}
.yaa{bottom:604.316250px;}
.y152{bottom:604.828350px;}
.y12b{bottom:606.030352px;}
.y17{bottom:608.456400px;}
.yc6{bottom:609.513600px;}
.y13b{bottom:614.649018px;}
.y106{bottom:615.410468px;}
.y1b2{bottom:616.934850px;}
.y18c{bottom:616.988850px;}
.y1da{bottom:617.036850px;}
.y161{bottom:617.072850px;}
.y7e{bottom:617.078700px;}
.y53{bottom:617.078850px;}
.ya9{bottom:619.316250px;}
.y130{bottom:619.490827px;}
.y143{bottom:622.071508px;}
.yf9{bottom:626.892312px;}
.y16{bottom:628.260900px;}
.y1b1{bottom:637.940850px;}
.y18b{bottom:637.994850px;}
.y1d9{bottom:638.042850px;}
.y160{bottom:638.072850px;}
.y7d{bottom:638.078700px;}
.y52{bottom:638.078850px;}
.yf2{bottom:638.378100px;}
.ya8{bottom:640.220250px;}
.yc5{bottom:641.811150px;}
.y127{bottom:643.004354px;}
.y15{bottom:648.065400px;}
.yf4{bottom:649.861808px;}
.y144{bottom:654.138206px;}
.ya7{bottom:655.220250px;}
.y1b0{bottom:658.946850px;}
.y18a{bottom:659.000850px;}
.y1d8{bottom:659.048850px;}
.y7c{bottom:659.078700px;}
.y51{bottom:659.078850px;}
.yee{bottom:661.353900px;}
.y145{bottom:664.906586px;}
.y14{bottom:667.869900px;}
.ya6{bottom:670.220250px;}
.y105{bottom:672.836700px;}
.y11a{bottom:674.949260px;}
.y1af{bottom:679.952850px;}
.y189{bottom:680.006850px;}
.y1d7{bottom:680.054850px;}
.y7b{bottom:680.078700px;}
.y50{bottom:680.078850px;}
.y136{bottom:683.566650px;}
.y11d{bottom:684.048541px;}
.y103{bottom:684.310853px;}
.y15f{bottom:685.529400px;}
.y13{bottom:687.674400px;}
.ya5{bottom:691.124250px;}
.ye2{bottom:695.812350px;}
.y1ae{bottom:700.958850px;}
.y188{bottom:701.012850px;}
.y1d6{bottom:701.060850px;}
.y7a{bottom:701.078700px;}
.y4f{bottom:701.078850px;}
.y116{bottom:707.300550px;}
.y12{bottom:707.478900px;}
.y137{bottom:710.849110px;}
.ya4{bottom:712.028250px;}
.yf7{bottom:718.785052px;}
.y123{bottom:720.898200px;}
.y1ad{bottom:721.964850px;}
.y187{bottom:722.018850px;}
.y15e{bottom:722.066850px;}
.y79{bottom:722.078700px;}
.y4e{bottom:722.078850px;}
.y11{bottom:727.283400px;}
.y117{bottom:729.514180px;}
.yef{bottom:730.271532px;}
.ya3{bottom:732.932250px;}
.ye5{bottom:741.762566px;}
.y1ac{bottom:742.970850px;}
.y186{bottom:743.024850px;}
.y15d{bottom:743.072850px;}
.y78{bottom:743.078700px;}
.y4d{bottom:743.078850px;}
.y10{bottom:747.087900px;}
.y131{bottom:748.596012px;}
.yfb{bottom:753.243868px;}
.ya2{bottom:753.836250px;}
.y1ab{bottom:763.976850px;}
.y185{bottom:764.030850px;}
.y77{bottom:764.078700px;}
.y4c{bottom:764.078850px;}
.y113{bottom:764.727060px;}
.y12a{bottom:768.279072px;}
.ye3{bottom:776.221382px;}
.yf{bottom:778.185300px;}
.y129{bottom:778.332124px;}
.ya1{bottom:784.318200px;}
.y1aa{bottom:784.982850px;}
.y184{bottom:785.036850px;}
.y76{bottom:785.078700px;}
.y4b{bottom:785.078850px;}
.y135{bottom:786.904050px;}
.y126{bottom:786.946828px;}
.ye7{bottom:787.705090px;}
.y15c{bottom:790.529250px;}
.y1d5{bottom:798.513600px;}
.y101{bottom:799.178701px;}
.y1a9{bottom:805.988850px;}
.y183{bottom:806.042850px;}
.y75{bottom:806.078700px;}
.y4a{bottom:806.078850px;}
.y149{bottom:809.918206px;}
.y10c{bottom:810.679656px;}
.y1d4{bottom:819.513600px;}
.y10e{bottom:822.163364px;}
.y12d{bottom:823.551628px;}
.y134{bottom:825.959130px;}
.y1a8{bottom:826.994850px;}
.y182{bottom:827.048850px;}
.y15b{bottom:827.066850px;}
.y74{bottom:827.078700px;}
.y49{bottom:827.078850px;}
.yf6{bottom:833.652900px;}
.y124{bottom:837.204396px;}
.yea{bottom:845.139014px;}
.y13c{bottom:847.253718px;}
.y1a7{bottom:848.000850px;}
.y181{bottom:848.054850px;}
.y15a{bottom:848.072850px;}
.y73{bottom:848.078700px;}
.y48{bottom:848.078850px;}
.y14c{bottom:849.832500px;}
.y1d3{bottom:851.811150px;}
.y122{bottom:855.865050px;}
.yeb{bottom:856.623150px;}
.y9{bottom:857.466750px;}
.y111{bottom:868.111200px;}
.y1a6{bottom:869.006850px;}
.y180{bottom:869.060850px;}
.y72{bottom:869.078700px;}
.y47{bottom:869.078850px;}
.y8{bottom:875.466750px;}
.y13e{bottom:878.843530px;}
.y10a{bottom:879.597288px;}
.y138{bottom:883.643150px;}
.y1a5{bottom:890.012850px;}
.y17f{bottom:890.066850px;}
.y71{bottom:890.078700px;}
.y46{bottom:890.078850px;}
.y12f{bottom:890.323276px;}
.y108{bottom:891.080996px;}
.y150{bottom:892.263000px;}
.y7{bottom:893.466750px;}
.y159{bottom:895.529250px;}
.y13a{bottom:901.810946px;}
.y100{bottom:902.555149px;}
.y1a4{bottom:911.018850px;}
.y1d2{bottom:911.036850px;}
.y17e{bottom:911.072850px;}
.y70{bottom:911.078700px;}
.y45{bottom:911.078850px;}
.y6{bottom:911.466750px;}
.y14f{bottom:912.898950px;}
.yf3{bottom:914.056320px;}
.y10f{bottom:925.547503px;}
.y11f{bottom:927.660063px;}
.y17d{bottom:932.024850px;}
.y1d1{bottom:932.042850px;}
.y6f{bottom:932.078700px;}
.y44{bottom:932.078850px;}
.y146{bottom:936.277453px;}
.yfa{bottom:937.029348px;}
.y148{bottom:943.723019px;}
.y141{bottom:945.607486px;}
.yc4{bottom:946.441050px;}
.y5{bottom:946.474800px;}
.y114{bottom:948.512540px;}
.y17c{bottom:953.030850px;}
.y1d0{bottom:953.048850px;}
.y6e{bottom:953.078700px;}
.y43{bottom:953.078850px;}
.y158{bottom:958.529250px;}
.y109{bottom:960.006319px;}
.y12c{bottom:963.548260px;}
.yec{bottom:971.492550px;}
.y118{bottom:973.602587px;}
.y17b{bottom:974.036850px;}
.y1cf{bottom:974.054850px;}
.y6d{bottom:974.078700px;}
.y42{bottom:974.078850px;}
.y119{bottom:982.224983px;}
.yf8{bottom:982.979564px;}
.y4{bottom:983.288550px;}
.y151{bottom:983.581521px;}
.y10b{bottom:994.465135px;}
.y17a{bottom:995.042850px;}
.y1ce{bottom:995.060850px;}
.ya0{bottom:995.078700px;}
.y41{bottom:995.078850px;}
.y147{bottom:997.118800px;}
.y120{bottom:1005.192399px;}
.y110{bottom:1005.956535px;}
.y6c{bottom:1009.440900px;}
.y179{bottom:1016.048850px;}
.y1cd{bottom:1016.066850px;}
.y9f{bottom:1016.078700px;}
.y40{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y142{bottom:1016.686485px;}
.yf5{bottom:1017.440459px;}
.y157{bottom:1021.529250px;}
.y125{bottom:1028.166232px;}
.y115{bottom:1028.921572px;}
.y178{bottom:1037.054850px;}
.y1cc{bottom:1037.072850px;}
.y9e{bottom:1037.078700px;}
.y3f{bottom:1037.078850px;}
.yed{bottom:1040.410182px;}
.y14a{bottom:1048.630115px;}
.y2{bottom:1049.282550px;}
.yf1{bottom:1051.899968px;}
.y12e{bottom:1055.441000px;}
.y177{bottom:1058.060850px;}
.y6b{bottom:1058.078700px;}
.y3e{bottom:1058.078850px;}
.y104{bottom:1063.373212px;}
.y11b{bottom:1065.495327px;}
.y133{bottom:1074.108756px;}
.ye1{bottom:1074.869031px;}
.y176{bottom:1079.066850px;}
.y6a{bottom:1079.078700px;}
.y3d{bottom:1079.078850px;}
.y132{bottom:1080.569784px;}
.y156{bottom:1084.192950px;}
.y10d{bottom:1086.357875px;}
.y1cb{bottom:1089.903300px;}
.y14e{bottom:1093.486350px;}
.yff{bottom:1097.832028px;}
.y175{bottom:1100.072850px;}
.y9d{bottom:1100.078700px;}
.y3c{bottom:1100.078850px;}
.y11e{bottom:1105.699843px;}
.y128{bottom:1108.575263px;}
.yfe{bottom:1109.323428px;}
.ye{bottom:1109.815500px;}
.y69{bottom:1112.695800px;}
.y155{bottom:1113.696900px;}
.y13d{bottom:1120.062933px;}
.y112{bottom:1120.814312px;}
.y9c{bottom:1121.078700px;}
.y3b{bottom:1121.078850px;}
.y1ca{bottom:1122.200850px;}
.y140{bottom:1131.546641px;}
.yf0{bottom:1132.308999px;}
.y37{bottom:1159.189500px;}
.y36{bottom:1178.689500px;}
.y3a{bottom:1178.692050px;}
.h20{height:12.799594px;}
.h13{height:22.399072px;}
.h15{height:22.414095px;}
.h22{height:23.998693px;}
.h1e{height:25.598752px;}
.h1c{height:28.777928px;}
.h16{height:28.783814px;}
.h19{height:28.790799px;}
.h1a{height:28.795031px;}
.h14{height:28.796744px;}
.h17{height:28.798869px;}
.h18{height:28.798941px;}
.h1d{height:28.800581px;}
.h1b{height:28.850620px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h11{height:38.226562px;}
.hf{height:38.273438px;}
.h21{height:38.398346px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h12{height:39.000000px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.ha{height:43.875000px;}
.h24{height:43.899000px;}
.h25{height:44.091000px;}
.h9{height:47.343750px;}
.hc{height:48.750000px;}
.h23{height:49.218750px;}
.h10{height:52.078125px;}
.h4{height:53.625000px;}
.hb{height:56.812500px;}
.h3{height:81.231445px;}
.h1f{height:272.760000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:244.426500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.987600px;}
.xb{left:107.063850px;}
.xd{left:108.289650px;}
.x42{left:110.640000px;}
.xf{left:112.252950px;}
.x43{left:116.235450px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.xe{left:145.552950px;}
.x2a{left:156.222946px;}
.x40{left:186.997889px;}
.x46{left:220.723890px;}
.x2b{left:224.225266px;}
.x44{left:235.712100px;}
.x10{left:242.452950px;}
.x1e{left:250.648950px;}
.x37{left:257.185941px;}
.x11{left:265.792950px;}
.x3a{left:286.292700px;}
.x23{left:287.488950px;}
.x5{left:300.189000px;}
.x20{left:310.564950px;}
.xc{left:317.199000px;}
.x39{left:325.226719px;}
.x36{left:342.240759px;}
.x3c{left:359.245819px;}
.x3d{left:392.197062px;}
.x4{left:396.050700px;}
.x3b{left:410.272557px;}
.x12{left:422.344950px;}
.x14{left:424.948950px;}
.x13{left:427.684950px;}
.x21{left:434.788950px;}
.x24{left:437.896950px;}
.x33{left:442.163634px;}
.x32{left:444.301927px;}
.x31{left:460.246821px;}
.x41{left:461.306986px;}
.x1a{left:467.596950px;}
.x3f{left:476.175042px;}
.x1c{left:485.464950px;}
.x35{left:495.336356px;}
.x38{left:500.674396px;}
.x34{left:527.210761px;}
.x2c{left:529.347313px;}
.x2f{left:534.694785px;}
.x2d{left:546.353662px;}
.x2e{left:561.231150px;}
.x29{left:563.367702px;}
.x28{left:566.575141px;}
.x27{left:568.713433px;}
.x1f{left:586.024950px;}
.x15{left:588.136950px;}
.x16{left:591.340950px;}
.x18{left:594.928950px;}
.x30{left:596.320685px;}
.x26{left:597.388091px;}
.x1b{left:601.624950px;}
.x3e{left:602.734274px;}
.x22{left:613.768950px;}
.x25{left:621.652950px;}
.xa{left:645.890400px;}
.x19{left:661.180950px;}
.x9{left:666.938400px;}
.x17{left:671.284950px;}
.x1d{left:687.856950px;}
.x45{left:791.361000px;}
.x1{left:801.157500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.176000pt;}
.v1{vertical-align:19.536000pt;}
.ls10{letter-spacing:-9.696000pt;}
.lsa{letter-spacing:-9.456000pt;}
.lsf{letter-spacing:-6.672000pt;}
.ls9{letter-spacing:-6.432000pt;}
.ls1c{letter-spacing:-3.466667pt;}
.lse{letter-spacing:-3.120000pt;}
.ls8{letter-spacing:-2.880000pt;}
.ls1b{letter-spacing:-2.560000pt;}
.ls12{letter-spacing:-2.304000pt;}
.ls3{letter-spacing:-0.614400pt;}
.lsb{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.362667pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.266667pt;}
.ls16{letter-spacing:-0.251856pt;}
.lsd{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.266667pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.533333pt;}
.ls18{letter-spacing:0.586667pt;}
.ls17{letter-spacing:0.960000pt;}
.ls7{letter-spacing:3.076800pt;}
.ls14{letter-spacing:6.666667pt;}
.ls13{letter-spacing:18.773333pt;}
.ls0{letter-spacing:38.383435pt;}
.ws62{word-spacing:-53.333333pt;}
.ws5{word-spacing:-15.936000pt;}
.ws6e{word-spacing:-14.608000pt;}
.ws7e{word-spacing:-13.760000pt;}
.ws7f{word-spacing:-13.706667pt;}
.ws80{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.226667pt;}
.ws61{word-spacing:-13.173333pt;}
.ws6{word-spacing:-13.066667pt;}
.ws47{word-spacing:-12.960000pt;}
.ws29{word-spacing:-12.906667pt;}
.ws76{word-spacing:-12.864000pt;}
.ws14{word-spacing:-12.800000pt;}
.ws1d{word-spacing:-12.746667pt;}
.ws1c{word-spacing:-12.586667pt;}
.ws28{word-spacing:-12.480000pt;}
.ws22{word-spacing:-11.952000pt;}
.ws6f{word-spacing:-11.904000pt;}
.ws4{word-spacing:-11.760000pt;}
.ws3e{word-spacing:-11.712000pt;}
.ws3d{word-spacing:-11.520000pt;}
.ws73{word-spacing:-11.280000pt;}
.ws7{word-spacing:-10.992000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws81{word-spacing:-10.613333pt;}
.ws9{word-spacing:-9.770667pt;}
.ws82{word-spacing:-9.706667pt;}
.ws1{word-spacing:-9.685333pt;}
.ws13{word-spacing:-9.600000pt;}
.ws21{word-spacing:-9.072000pt;}
.ws3f{word-spacing:-8.832000pt;}
.ws2{word-spacing:-8.793600pt;}
.ws0{word-spacing:-8.549333pt;}
.ws5c{word-spacing:-7.602818pt;}
.ws74{word-spacing:-6.688176pt;}
.ws23{word-spacing:-5.520000pt;}
.ws40{word-spacing:-5.280000pt;}
.ws6d{word-spacing:-3.360000pt;}
.ws43{word-spacing:-3.216000pt;}
.ws6a{word-spacing:-3.093333pt;}
.ws37{word-spacing:-2.613333pt;}
.wse{word-spacing:-2.304000pt;}
.ws30{word-spacing:-2.293333pt;}
.ws31{word-spacing:-2.240000pt;}
.ws6c{word-spacing:-2.026667pt;}
.ws54{word-spacing:-1.973333pt;}
.ws36{word-spacing:-1.920000pt;}
.ws4d{word-spacing:-1.760000pt;}
.ws3b{word-spacing:-1.706667pt;}
.ws32{word-spacing:-1.493333pt;}
.ws33{word-spacing:-1.440000pt;}
.ws3c{word-spacing:-1.386667pt;}
.ws58{word-spacing:-1.344000pt;}
.wsf{word-spacing:-1.152000pt;}
.ws16{word-spacing:-1.120000pt;}
.ws64{word-spacing:-1.066667pt;}
.ws79{word-spacing:-0.960000pt;}
.ws59{word-spacing:-0.912000pt;}
.ws50{word-spacing:-0.853333pt;}
.ws10{word-spacing:-0.528000pt;}
.ws83{word-spacing:-0.480000pt;}
.ws5f{word-spacing:-0.373333pt;}
.ws12{word-spacing:-0.240000pt;}
.wsc{word-spacing:-0.192000pt;}
.ws44{word-spacing:-0.096000pt;}
.ws2c{word-spacing:-0.053333pt;}
.wsa{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.106667pt;}
.ws34{word-spacing:0.160000pt;}
.ws42{word-spacing:0.240000pt;}
.ws1a{word-spacing:0.266667pt;}
.ws63{word-spacing:0.320000pt;}
.wsb{word-spacing:0.362667pt;}
.ws45{word-spacing:0.432000pt;}
.ws1f{word-spacing:0.480000pt;}
.ws75{word-spacing:0.528000pt;}
.ws20{word-spacing:0.533333pt;}
.ws2d{word-spacing:0.586667pt;}
.wsd{word-spacing:0.614400pt;}
.ws48{word-spacing:0.746667pt;}
.ws4c{word-spacing:0.906667pt;}
.ws5a{word-spacing:0.960000pt;}
.ws15{word-spacing:1.013333pt;}
.ws4e{word-spacing:1.173333pt;}
.ws67{word-spacing:1.344000pt;}
.ws70{word-spacing:1.536000pt;}
.ws7b{word-spacing:1.632000pt;}
.ws4b{word-spacing:1.706667pt;}
.ws5e{word-spacing:1.776000pt;}
.ws2f{word-spacing:1.920000pt;}
.ws19{word-spacing:2.293333pt;}
.ws5b{word-spacing:2.304000pt;}
.ws46{word-spacing:2.496000pt;}
.ws2e{word-spacing:2.720000pt;}
.ws52{word-spacing:2.773333pt;}
.ws71{word-spacing:2.832000pt;}
.ws4f{word-spacing:2.933333pt;}
.ws25{word-spacing:3.024000pt;}
.ws7a{word-spacing:3.072000pt;}
.ws18{word-spacing:3.146667pt;}
.ws60{word-spacing:3.200000pt;}
.ws2a{word-spacing:3.466667pt;}
.ws68{word-spacing:3.520000pt;}
.ws17{word-spacing:3.626667pt;}
.ws35{word-spacing:3.733333pt;}
.ws51{word-spacing:4.106667pt;}
.ws2b{word-spacing:4.160000pt;}
.ws78{word-spacing:4.176000pt;}
.ws53{word-spacing:4.533333pt;}
.ws57{word-spacing:4.800000pt;}
.ws56{word-spacing:4.853333pt;}
.ws7c{word-spacing:4.896000pt;}
.ws11{word-spacing:5.664000pt;}
.ws3a{word-spacing:5.706667pt;}
.ws49{word-spacing:5.760000pt;}
.ws72{word-spacing:5.904000pt;}
.ws7d{word-spacing:6.000000pt;}
.ws1e{word-spacing:6.240000pt;}
.ws66{word-spacing:6.613333pt;}
.ws65{word-spacing:6.720000pt;}
.ws6b{word-spacing:6.826667pt;}
.ws24{word-spacing:6.960000pt;}
.ws41{word-spacing:7.204800pt;}
.ws39{word-spacing:7.360000pt;}
.ws38{word-spacing:7.413333pt;}
.ws77{word-spacing:8.112000pt;}
.ws55{word-spacing:9.013333pt;}
.ws69{word-spacing:15.093333pt;}
.ws26{word-spacing:283.524267pt;}
.ws27{word-spacing:477.376000pt;}
.ws5d{word-spacing:633.525475pt;}
._b{margin-left:-10.027200pt;}
._4d{margin-left:-7.186667pt;}
._f{margin-left:-6.105067pt;}
._47{margin-left:-5.108800pt;}
._2{margin-left:-4.216000pt;}
._c{margin-left:-3.283200pt;}
._5{margin-left:-2.385600pt;}
._1{margin-left:-1.151467pt;}
._0{width:1.115200pt;}
._9{width:2.005333pt;}
._3{width:3.137067pt;}
._7{width:4.281067pt;}
._6{width:5.601600pt;}
._8{width:6.494933pt;}
._e{width:7.393067pt;}
._d{width:8.282667pt;}
._11{width:9.264000pt;}
._10{width:10.202133pt;}
._a{width:11.184000pt;}
._4f{width:13.154133pt;}
._4b{width:14.378667pt;}
._4a{width:15.680000pt;}
._49{width:18.002667pt;}
._48{width:18.956267pt;}
._4e{width:21.307200pt;}
._50{width:22.780267pt;}
._4{width:32.328533pt;}
._17{width:37.284800pt;}
._4c{width:38.374400pt;}
._1f{width:91.605333pt;}
._30{width:99.456000pt;}
._2f{width:101.628267pt;}
._1e{width:116.309333pt;}
._42{width:195.455467pt;}
._3a{width:207.018667pt;}
._46{width:211.093867pt;}
._18{width:220.324267pt;}
._2a{width:225.237333pt;}
._16{width:227.754667pt;}
._1a{width:228.864000pt;}
._1d{width:241.749333pt;}
._3b{width:245.376000pt;}
._33{width:250.197333pt;}
._35{width:255.232000pt;}
._2b{width:260.693333pt;}
._36{width:266.922667pt;}
._3f{width:267.946667pt;}
._23{width:276.864000pt;}
._1c{width:280.874667pt;}
._32{width:297.600000pt;}
._20{width:304.981333pt;}
._25{width:307.200000pt;}
._14{width:314.730667pt;}
._38{width:316.885333pt;}
._1b{width:318.549333pt;}
._12{width:323.365867pt;}
._2c{width:324.437333pt;}
._45{width:326.656000pt;}
._31{width:335.829333pt;}
._2d{width:346.282667pt;}
._37{width:365.866667pt;}
._27{width:367.232000pt;}
._3e{width:370.560000pt;}
._26{width:371.797333pt;}
._40{width:376.234133pt;}
._3d{width:392.020800pt;}
._41{width:396.416000pt;}
._28{width:397.525333pt;}
._24{width:398.592000pt;}
._13{width:400.256000pt;}
._3c{width:402.176000pt;}
._21{width:407.808000pt;}
._19{width:412.586667pt;}
._43{width:420.138667pt;}
._15{width:422.314667pt;}
._2e{width:429.610667pt;}
._39{width:450.218667pt;}
._44{width:462.336000pt;}
._34{width:482.517333pt;}
._29{width:504.874667pt;}
._22{width:515.157333pt;}
.fsc{font-size:15.627733pt;}
.fs9{font-size:27.348267pt;}
.fsf{font-size:27.984000pt;}
.fse{font-size:29.301333pt;}
.fsb{font-size:31.254933pt;}
.fs3{font-size:34.202667pt;}
.fsa{font-size:35.162133pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fsd{font-size:46.882667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y14d{bottom:1.198933pt;}
.y1{bottom:60.555333pt;}
.y38{bottom:63.299600pt;}
.y39{bottom:66.702267pt;}
.y174{bottom:100.434533pt;}
.y93{bottom:100.514400pt;}
.y68{bottom:100.514533pt;}
.yc3{bottom:104.124667pt;}
.yd{bottom:104.182267pt;}
.y9b{bottom:107.083867pt;}
.yd1{bottom:107.091867pt;}
.yda{bottom:107.099867pt;}
.yc{bottom:116.979067pt;}
.y1c9{bottom:118.930533pt;}
.y1a3{bottom:118.978533pt;}
.y173{bottom:119.106533pt;}
.y92{bottom:119.181067pt;}
.y67{bottom:119.181200pt;}
.yc2{bottom:122.706000pt;}
.y29{bottom:122.855733pt;}
.y9a{bottom:124.687867pt;}
.yd0{bottom:124.695867pt;}
.yd9{bottom:124.703867pt;}
.yb{bottom:129.775867pt;}
.y1c8{bottom:137.602533pt;}
.y1a2{bottom:137.650533pt;}
.y172{bottom:137.778533pt;}
.y91{bottom:137.847733pt;}
.y66{bottom:137.847867pt;}
.yc1{bottom:141.287333pt;}
.y28{bottom:141.522400pt;}
.y99{bottom:142.291867pt;}
.ycf{bottom:142.299867pt;}
.yd8{bottom:142.307867pt;}
.ya{bottom:142.575867pt;}
.y1c7{bottom:156.274533pt;}
.y1a1{bottom:156.322533pt;}
.y171{bottom:156.450533pt;}
.yd6{bottom:156.514400pt;}
.y65{bottom:156.514533pt;}
.yc0{bottom:159.868667pt;}
.y98{bottom:159.895867pt;}
.yce{bottom:159.903867pt;}
.yd7{bottom:159.911867pt;}
.y27{bottom:160.189067pt;}
.y90{bottom:168.456400pt;}
.y1c6{bottom:174.946533pt;}
.y1a0{bottom:174.994533pt;}
.y170{bottom:175.122533pt;}
.yd5{bottom:175.181067pt;}
.y64{bottom:175.181200pt;}
.y97{bottom:177.499867pt;}
.ycd{bottom:177.507867pt;}
.ybf{bottom:178.450000pt;}
.y26{bottom:178.855733pt;}
.y35{bottom:180.842133pt;}
.y154{bottom:187.947467pt;}
.y1c5{bottom:193.618533pt;}
.y19f{bottom:193.666533pt;}
.y16f{bottom:193.794533pt;}
.yd4{bottom:193.847733pt;}
.y63{bottom:193.847867pt;}
.y96{bottom:195.103867pt;}
.ycc{bottom:195.111867pt;}
.y34{bottom:196.838133pt;}
.ybe{bottom:197.031333pt;}
.y8f{bottom:197.165333pt;}
.y25{bottom:197.522400pt;}
.y1c4{bottom:212.290533pt;}
.y19e{bottom:212.338533pt;}
.y16e{bottom:212.466533pt;}
.yd3{bottom:212.514400pt;}
.y62{bottom:212.514533pt;}
.y95{bottom:212.707867pt;}
.y33{bottom:212.834133pt;}
.ybd{bottom:215.612667pt;}
.y24{bottom:216.189067pt;}
.y32{bottom:228.830133pt;}
.ybc{bottom:228.946000pt;}
.y94{bottom:230.311867pt;}
.y1c3{bottom:230.962533pt;}
.y19d{bottom:231.010533pt;}
.y16d{bottom:231.138533pt;}
.yd2{bottom:231.181067pt;}
.y61{bottom:231.181200pt;}
.y23{bottom:234.855733pt;}
.y31{bottom:244.826133pt;}
.ybb{bottom:247.527333pt;}
.y1c2{bottom:249.634533pt;}
.y19c{bottom:249.682533pt;}
.y16c{bottom:249.810533pt;}
.y8e{bottom:249.847733pt;}
.ycb{bottom:249.847867pt;}
.y22{bottom:253.522400pt;}
.y30{bottom:260.822133pt;}
.y60{bottom:261.789867pt;}
.yba{bottom:266.108667pt;}
.y1c1{bottom:268.306533pt;}
.y19b{bottom:268.354533pt;}
.y16b{bottom:268.482533pt;}
.y8d{bottom:268.514400pt;}
.yca{bottom:268.514533pt;}
.y21{bottom:272.189067pt;}
.y2f{bottom:276.818133pt;}
.yb9{bottom:279.442000pt;}
.y1c0{bottom:286.978533pt;}
.y19a{bottom:287.026533pt;}
.y16a{bottom:287.154533pt;}
.y8c{bottom:287.181067pt;}
.yc9{bottom:287.181200pt;}
.y5f{bottom:290.498667pt;}
.y20{bottom:290.855733pt;}
.y2e{bottom:292.814133pt;}
.yb8{bottom:298.023333pt;}
.y1bf{bottom:305.650533pt;}
.y199{bottom:305.698533pt;}
.y1e3{bottom:305.810533pt;}
.y169{bottom:305.826533pt;}
.y8b{bottom:305.847733pt;}
.yc8{bottom:305.847867pt;}
.y1f{bottom:309.522400pt;}
.yb7{bottom:311.356667pt;}
.y2d{bottom:323.930133pt;}
.y1be{bottom:324.322533pt;}
.y198{bottom:324.370533pt;}
.y1e2{bottom:324.482533pt;}
.y168{bottom:324.498533pt;}
.y8a{bottom:324.514400pt;}
.yc7{bottom:324.514533pt;}
.y1e{bottom:328.189067pt;}
.yb6{bottom:329.938000pt;}
.y2c{bottom:339.930133pt;}
.y1bd{bottom:342.994533pt;}
.y197{bottom:343.042533pt;}
.y1e1{bottom:343.154533pt;}
.y167{bottom:343.170533pt;}
.y89{bottom:343.181067pt;}
.y5e{bottom:343.181200pt;}
.yb5{bottom:348.519333pt;}
.y2b{bottom:355.930133pt;}
.y1d{bottom:358.620933pt;}
.y1bc{bottom:361.666533pt;}
.y196{bottom:361.714533pt;}
.y1e0{bottom:361.826533pt;}
.y166{bottom:361.842533pt;}
.y88{bottom:361.847733pt;}
.y5d{bottom:361.847867pt;}
.ydf{bottom:362.643467pt;}
.yb4{bottom:367.100667pt;}
.y2a{bottom:371.930133pt;}
.yde{bottom:380.247467pt;}
.y1bb{bottom:380.338533pt;}
.y195{bottom:380.386533pt;}
.yb3{bottom:380.434000pt;}
.y1df{bottom:380.498533pt;}
.y87{bottom:380.514400pt;}
.y5c{bottom:380.514533pt;}
.ydd{bottom:397.851467pt;}
.y1ba{bottom:399.010533pt;}
.yb2{bottom:399.015333pt;}
.y194{bottom:399.058533pt;}
.y1de{bottom:399.170533pt;}
.y86{bottom:399.181067pt;}
.y5b{bottom:399.181200pt;}
.y165{bottom:411.947600pt;}
.ydc{bottom:415.455467pt;}
.yb1{bottom:417.596667pt;}
.y1b9{bottom:417.682533pt;}
.y193{bottom:417.730533pt;}
.y1dd{bottom:417.842533pt;}
.y85{bottom:417.847733pt;}
.y5a{bottom:417.847867pt;}
.ydb{bottom:433.059467pt;}
.y1c{bottom:433.980533pt;}
.yb0{bottom:436.178000pt;}
.y1b8{bottom:436.354533pt;}
.y192{bottom:436.402533pt;}
.y84{bottom:436.514400pt;}
.y59{bottom:436.514533pt;}
.yaf{bottom:454.759333pt;}
.y1b7{bottom:455.026533pt;}
.y191{bottom:455.074533pt;}
.yfd{bottom:455.126020pt;}
.y164{bottom:455.175867pt;}
.y83{bottom:455.181067pt;}
.y58{bottom:455.181200pt;}
.y102{bottom:465.333761pt;}
.y1dc{bottom:467.123200pt;}
.y1b{bottom:470.434133pt;}
.yae{bottom:473.340667pt;}
.y1b6{bottom:473.698533pt;}
.y190{bottom:473.746533pt;}
.y82{bottom:473.847733pt;}
.y57{bottom:473.847867pt;}
.ye0{bottom:475.552267pt;}
.ye8{bottom:485.765054pt;}
.yad{bottom:486.674000pt;}
.y1a{bottom:488.038133pt;}
.y1b5{bottom:492.370533pt;}
.y18f{bottom:492.418533pt;}
.y81{bottom:492.514400pt;}
.y56{bottom:492.514533pt;}
.y1db{bottom:495.832133pt;}
.ye4{bottom:495.979632pt;}
.y163{bottom:497.359467pt;}
.y139{bottom:497.852532pt;}
.y11c{bottom:501.815643pt;}
.yac{bottom:505.255333pt;}
.y121{bottom:505.507659pt;}
.y19{bottom:505.642133pt;}
.ye6{bottom:506.187373pt;}
.y1b4{bottom:511.042533pt;}
.y18e{bottom:511.090533pt;}
.y80{bottom:511.181067pt;}
.y55{bottom:511.181200pt;}
.ye9{bottom:516.395113pt;}
.y153{bottom:520.021200pt;}
.y14b{bottom:522.544933pt;}
.y18{bottom:523.246133pt;}
.yab{bottom:523.836667pt;}
.yfc{bottom:526.600715pt;}
.y1b3{bottom:529.714533pt;}
.y13f{bottom:529.761122pt;}
.y18d{bottom:529.762533pt;}
.y162{bottom:529.842533pt;}
.y7f{bottom:529.847733pt;}
.y54{bottom:529.847867pt;}
.y107{bottom:536.816949pt;}
.yaa{bottom:537.170000pt;}
.y152{bottom:537.625200pt;}
.y12b{bottom:538.693646pt;}
.y17{bottom:540.850133pt;}
.yc6{bottom:541.789867pt;}
.y13b{bottom:546.354683pt;}
.y106{bottom:547.031527pt;}
.y1b2{bottom:548.386533pt;}
.y18c{bottom:548.434533pt;}
.y1da{bottom:548.477200pt;}
.y161{bottom:548.509200pt;}
.y7e{bottom:548.514400pt;}
.y53{bottom:548.514533pt;}
.ya9{bottom:550.503333pt;}
.y130{bottom:550.658513pt;}
.y143{bottom:552.952452pt;}
.yf9{bottom:557.237611pt;}
.y16{bottom:558.454133pt;}
.y1b1{bottom:567.058533pt;}
.y18b{bottom:567.106533pt;}
.y1d9{bottom:567.149200pt;}
.y160{bottom:567.175867pt;}
.y7d{bottom:567.181067pt;}
.y52{bottom:567.181200pt;}
.yf2{bottom:567.447200pt;}
.ya8{bottom:569.084667pt;}
.yc5{bottom:570.498800pt;}
.y127{bottom:571.559426pt;}
.y15{bottom:576.058133pt;}
.yf4{bottom:577.654941pt;}
.y144{bottom:581.456183pt;}
.ya7{bottom:582.418000pt;}
.y1b0{bottom:585.730533pt;}
.y18a{bottom:585.778533pt;}
.y1d8{bottom:585.821200pt;}
.y7c{bottom:585.847733pt;}
.y51{bottom:585.847867pt;}
.yee{bottom:587.870133pt;}
.y145{bottom:591.028076pt;}
.y14{bottom:593.662133pt;}
.ya6{bottom:595.751333pt;}
.y105{bottom:598.077067pt;}
.y11a{bottom:599.954898pt;}
.y1af{bottom:604.402533pt;}
.y189{bottom:604.450533pt;}
.y1d7{bottom:604.493200pt;}
.y7b{bottom:604.514400pt;}
.y50{bottom:604.514533pt;}
.y136{bottom:607.614800pt;}
.y11d{bottom:608.043147pt;}
.y103{bottom:608.276314pt;}
.y15f{bottom:609.359467pt;}
.y13{bottom:611.266133pt;}
.ya5{bottom:614.332667pt;}
.ye2{bottom:618.499867pt;}
.y1ae{bottom:623.074533pt;}
.y188{bottom:623.122533pt;}
.y1d6{bottom:623.165200pt;}
.y7a{bottom:623.181067pt;}
.y4f{bottom:623.181200pt;}
.y116{bottom:628.711600pt;}
.y12{bottom:628.870133pt;}
.y137{bottom:631.865875pt;}
.ya4{bottom:632.914000pt;}
.yf7{bottom:638.920046pt;}
.y123{bottom:640.798400pt;}
.y1ad{bottom:641.746533pt;}
.y187{bottom:641.794533pt;}
.y15e{bottom:641.837200pt;}
.y79{bottom:641.847733pt;}
.y4e{bottom:641.847867pt;}
.y11{bottom:646.474133pt;}
.y117{bottom:648.457049pt;}
.yef{bottom:649.130251pt;}
.ya3{bottom:651.495333pt;}
.ye5{bottom:659.344503pt;}
.y1ac{bottom:660.418533pt;}
.y186{bottom:660.466533pt;}
.y15d{bottom:660.509200pt;}
.y78{bottom:660.514400pt;}
.y4d{bottom:660.514533pt;}
.y10{bottom:664.078133pt;}
.y131{bottom:665.418677pt;}
.yfb{bottom:669.550105pt;}
.ya2{bottom:670.076667pt;}
.y1ab{bottom:679.090533pt;}
.y185{bottom:679.138533pt;}
.y77{bottom:679.181067pt;}
.y4c{bottom:679.181200pt;}
.y113{bottom:679.757387pt;}
.y12a{bottom:682.914731pt;}
.ye3{bottom:689.974562pt;}
.yf{bottom:691.720267pt;}
.y129{bottom:691.850777pt;}
.ya1{bottom:697.171733pt;}
.y1aa{bottom:697.762533pt;}
.y184{bottom:697.810533pt;}
.y76{bottom:697.847733pt;}
.y4b{bottom:697.847867pt;}
.y135{bottom:699.470267pt;}
.y126{bottom:699.508291pt;}
.ye7{bottom:700.182302pt;}
.y15c{bottom:702.692667pt;}
.y1d5{bottom:709.789867pt;}
.y101{bottom:710.381067pt;}
.y1a9{bottom:716.434533pt;}
.y183{bottom:716.482533pt;}
.y75{bottom:716.514400pt;}
.y4a{bottom:716.514533pt;}
.y149{bottom:719.927294pt;}
.y10c{bottom:720.604138pt;}
.y1d4{bottom:728.456533pt;}
.y10e{bottom:730.811879pt;}
.y12d{bottom:732.045892pt;}
.y134{bottom:734.185894pt;}
.y1a8{bottom:735.106533pt;}
.y182{bottom:735.154533pt;}
.y15b{bottom:735.170533pt;}
.y74{bottom:735.181067pt;}
.y49{bottom:735.181200pt;}
.yf6{bottom:741.024800pt;}
.y124{bottom:744.181685pt;}
.yea{bottom:751.234679pt;}
.y13c{bottom:753.114416pt;}
.y1a7{bottom:753.778533pt;}
.y181{bottom:753.826533pt;}
.y15a{bottom:753.842533pt;}
.y73{bottom:753.847733pt;}
.y48{bottom:753.847867pt;}
.y14c{bottom:755.406667pt;}
.y1d3{bottom:757.165467pt;}
.y122{bottom:760.768933pt;}
.yeb{bottom:761.442800pt;}
.y9{bottom:762.192667pt;}
.y111{bottom:771.654400pt;}
.y1a6{bottom:772.450533pt;}
.y180{bottom:772.498533pt;}
.y72{bottom:772.514400pt;}
.y47{bottom:772.514533pt;}
.y8{bottom:778.192667pt;}
.y13e{bottom:781.194249pt;}
.y10a{bottom:781.864256pt;}
.y138{bottom:785.460578pt;}
.y1a5{bottom:791.122533pt;}
.y17f{bottom:791.170533pt;}
.y71{bottom:791.181067pt;}
.y46{bottom:791.181200pt;}
.y12f{bottom:791.398467pt;}
.y108{bottom:792.071996pt;}
.y150{bottom:793.122667pt;}
.y7{bottom:794.192667pt;}
.y159{bottom:796.026000pt;}
.y13a{bottom:801.609730pt;}
.y100{bottom:802.271243pt;}
.y1a4{bottom:809.794533pt;}
.y1d2{bottom:809.810533pt;}
.y17e{bottom:809.842533pt;}
.y70{bottom:809.847733pt;}
.y45{bottom:809.847867pt;}
.y6{bottom:810.192667pt;}
.y14f{bottom:811.465733pt;}
.yf3{bottom:812.494506pt;}
.y10f{bottom:822.708892pt;}
.y11f{bottom:824.586723pt;}
.y17d{bottom:828.466533pt;}
.y1d1{bottom:828.482533pt;}
.y6f{bottom:828.514400pt;}
.y44{bottom:828.514533pt;}
.y146{bottom:832.246625pt;}
.yfa{bottom:832.914976pt;}
.y148{bottom:838.864906pt;}
.y141{bottom:840.539987pt;}
.yc4{bottom:841.280933pt;}
.y5{bottom:841.310933pt;}
.y114{bottom:843.122258pt;}
.y17c{bottom:847.138533pt;}
.y1d0{bottom:847.154533pt;}
.y6e{bottom:847.181067pt;}
.y43{bottom:847.181200pt;}
.y158{bottom:852.026000pt;}
.y109{bottom:853.338951pt;}
.y12c{bottom:856.487342pt;}
.yec{bottom:863.548933pt;}
.y118{bottom:865.424522pt;}
.y17b{bottom:865.810533pt;}
.y1cf{bottom:865.826533pt;}
.y6d{bottom:865.847733pt;}
.y42{bottom:865.847867pt;}
.y119{bottom:873.088874pt;}
.yf8{bottom:873.759612pt;}
.y4{bottom:874.034267pt;}
.y151{bottom:874.294685pt;}
.y10b{bottom:883.969009pt;}
.y17a{bottom:884.482533pt;}
.y1ce{bottom:884.498533pt;}
.ya0{bottom:884.514400pt;}
.y41{bottom:884.514533pt;}
.y147{bottom:886.327823pt;}
.y120{bottom:893.504355pt;}
.y110{bottom:894.183587pt;}
.y6c{bottom:897.280800pt;}
.y179{bottom:903.154533pt;}
.y1cd{bottom:903.170533pt;}
.y9f{bottom:903.181067pt;}
.y40{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y142{bottom:903.721320pt;}
.yf5{bottom:904.391519pt;}
.y157{bottom:908.026000pt;}
.y125{bottom:913.925539pt;}
.y115{bottom:914.596953pt;}
.y178{bottom:921.826533pt;}
.y1cc{bottom:921.842533pt;}
.y9e{bottom:921.847733pt;}
.y3f{bottom:921.847867pt;}
.yed{bottom:924.809051pt;}
.y14a{bottom:932.115658pt;}
.y2{bottom:932.695600pt;}
.yf1{bottom:935.022193pt;}
.y12e{bottom:938.169778pt;}
.y177{bottom:940.498533pt;}
.y6b{bottom:940.514400pt;}
.y3e{bottom:940.514533pt;}
.y104{bottom:945.220633pt;}
.y11b{bottom:947.106958pt;}
.y133{bottom:954.763338pt;}
.ye1{bottom:955.439139pt;}
.y176{bottom:959.170533pt;}
.y6a{bottom:959.181067pt;}
.y3d{bottom:959.181200pt;}
.y132{bottom:960.506474pt;}
.y156{bottom:963.727067pt;}
.y10d{bottom:965.651445pt;}
.y1cb{bottom:968.802933pt;}
.y14e{bottom:971.987867pt;}
.yff{bottom:975.850692pt;}
.y175{bottom:977.842533pt;}
.y9d{bottom:977.847733pt;}
.y3c{bottom:977.847867pt;}
.y11e{bottom:982.844305pt;}
.y128{bottom:985.400234pt;}
.yfe{bottom:986.065269pt;}
.ye{bottom:986.502667pt;}
.y69{bottom:989.062933pt;}
.y155{bottom:989.952800pt;}
.y13d{bottom:995.611496pt;}
.y112{bottom:996.279388pt;}
.y9c{bottom:996.514400pt;}
.y3b{bottom:996.514533pt;}
.y1ca{bottom:997.511867pt;}
.y140{bottom:1005.819237pt;}
.yf0{bottom:1006.496888pt;}
.y37{bottom:1030.390667pt;}
.y36{bottom:1047.724000pt;}
.y3a{bottom:1047.726267pt;}
.h20{height:11.377417pt;}
.h13{height:19.910286pt;}
.h15{height:19.923640pt;}
.h22{height:21.332172pt;}
.h1e{height:22.754446pt;}
.h1c{height:25.580380pt;}
.h16{height:25.585612pt;}
.h19{height:25.591821pt;}
.h1a{height:25.595583pt;}
.h14{height:25.597105pt;}
.h17{height:25.598995pt;}
.h18{height:25.599059pt;}
.h1d{height:25.600517pt;}
.h1b{height:25.644996pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h11{height:33.979167pt;}
.hf{height:34.020833pt;}
.h21{height:34.131863pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h12{height:34.666667pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.ha{height:39.000000pt;}
.h24{height:39.021333pt;}
.h25{height:39.192000pt;}
.h9{height:42.083333pt;}
.hc{height:43.333333pt;}
.h23{height:43.750000pt;}
.h10{height:46.291667pt;}
.h4{height:47.666667pt;}
.hb{height:50.500000pt;}
.h3{height:72.205729pt;}
.h1f{height:242.453333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:217.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.877867pt;}
.xb{left:95.167867pt;}
.xd{left:96.257467pt;}
.x42{left:98.346667pt;}
.xf{left:99.780400pt;}
.x43{left:103.320400pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.xe{left:129.380400pt;}
.x2a{left:138.864841pt;}
.x40{left:166.220346pt;}
.x46{left:196.199013pt;}
.x2b{left:199.311347pt;}
.x44{left:209.521867pt;}
.x10{left:215.513733pt;}
.x1e{left:222.799067pt;}
.x37{left:228.609725pt;}
.x11{left:236.260400pt;}
.x3a{left:254.482400pt;}
.x23{left:255.545733pt;}
.x5{left:266.834667pt;}
.x20{left:276.057733pt;}
.xc{left:281.954667pt;}
.x39{left:289.090417pt;}
.x36{left:304.214008pt;}
.x3c{left:319.329617pt;}
.x3d{left:348.619610pt;}
.x4{left:352.045067pt;}
.x3b{left:364.686717pt;}
.x12{left:375.417733pt;}
.x14{left:377.732400pt;}
.x13{left:380.164400pt;}
.x21{left:386.479067pt;}
.x24{left:389.241733pt;}
.x33{left:393.034341pt;}
.x32{left:394.935046pt;}
.x31{left:409.108285pt;}
.x41{left:410.050654pt;}
.x1a{left:415.641733pt;}
.x3f{left:423.266704pt;}
.x1c{left:431.524400pt;}
.x35{left:440.298983pt;}
.x38{left:445.043907pt;}
.x34{left:468.631787pt;}
.x2c{left:470.530945pt;}
.x2f{left:475.284253pt;}
.x2d{left:485.647699pt;}
.x2e{left:498.872133pt;}
.x29{left:500.771291pt;}
.x28{left:503.622347pt;}
.x27{left:505.523052pt;}
.x1f{left:520.911067pt;}
.x15{left:522.788400pt;}
.x16{left:525.636400pt;}
.x18{left:528.825733pt;}
.x30{left:530.062831pt;}
.x26{left:531.011637pt;}
.x1b{left:534.777733pt;}
.x3e{left:535.763799pt;}
.x22{left:545.572400pt;}
.x25{left:552.580400pt;}
.xa{left:574.124800pt;}
.x19{left:587.716400pt;}
.x9{left:592.834133pt;}
.x17{left:596.697733pt;}
.x1d{left:611.428400pt;}
.x45{left:703.432000pt;}
.x1{left:712.140000pt;}
}




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