
    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_3f952c4fe07f8228f2b2c0a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752000;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_df5091fe97bbe9bf94bed26e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973000;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_624bd56a512adad4ab357a64.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_5d7c329129931d5aeef8de31.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;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_5d8d28f559f30f6eb03eff0a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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_b988278c3b58fe2f2dd20191.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.972000;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_5aea1cca2ab2c7af018c3850.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947000;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_d0215ea5d42c4f95da5be4d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_72804410ff452eb498093bc3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0123b6fa2c7df44bdf6e1396.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.761000;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_910e39b0fd285bec4ccfc25a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.871000;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_fcf5bc039e42d0e983158c5e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.858000;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_5f033acfec7daa40472a458b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.929286;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_f2f6cb248f2b09f4d5c9e6a2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.929000;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_b4d1b7a84bc750ace7c341bb.woff2')format("woff");}.fff{font-family:fff;line-height:0.653000;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;}
.m1{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);}
.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);}
.v3{vertical-align:-18.900600px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.394000px;}
.v1{vertical-align:18.924000px;}
.v2{vertical-align:21.600000px;}
.ls16{letter-spacing:-2.403920px;}
.lsb{letter-spacing:-1.482000px;}
.ls1b{letter-spacing:-1.425000px;}
.ls7{letter-spacing:-1.083000px;}
.ls1a{letter-spacing:-1.026000px;}
.ls1f{letter-spacing:-0.798000px;}
.lsc{letter-spacing:-0.788357px;}
.ls11{letter-spacing:-0.680854px;}
.lsa{letter-spacing:-0.570000px;}
.ls18{letter-spacing:-0.501682px;}
.lsd{letter-spacing:-0.430013px;}
.ls4{letter-spacing:-0.420000px;}
.ls17{letter-spacing:-0.394178px;}
.ls15{letter-spacing:-0.358344px;}
.ls5{letter-spacing:-0.285000px;}
.ls6{letter-spacing:-0.228000px;}
.ls1e{letter-spacing:-0.168000px;}
.ls14{letter-spacing:-0.143338px;}
.ls1d{letter-spacing:-0.126000px;}
.lse{letter-spacing:-0.107503px;}
.ls10{letter-spacing:-0.071669px;}
.lsf{letter-spacing:-0.035834px;}
.ls13{letter-spacing:-0.031271px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000120px;}
.ls12{letter-spacing:0.031271px;}
.ls9{letter-spacing:0.035834px;}
.ls21{letter-spacing:0.252000px;}
.ls20{letter-spacing:0.420000px;}
.ls0{letter-spacing:0.480000px;}
.ls1c{letter-spacing:0.855000px;}
.ls8{letter-spacing:1.140000px;}
.ls2{letter-spacing:14.400000px;}
.ls19{letter-spacing:669.690000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws31{word-spacing:-16.983000px;}
.ws7{word-spacing:-13.053000px;}
.ws30{word-spacing:-12.939000px;}
.wsa4{word-spacing:-12.768000px;}
.ws6{word-spacing:-12.483000px;}
.ws4{word-spacing:-12.198000px;}
.ws5{word-spacing:-11.970000px;}
.ws0{word-spacing:-10.896000px;}
.ws2{word-spacing:-10.656000px;}
.wsa6{word-spacing:-8.820000px;}
.ws35{word-spacing:-8.134409px;}
.ws3b{word-spacing:-8.098574px;}
.ws37{word-spacing:-8.062740px;}
.ws36{word-spacing:-8.026906px;}
.ws38{word-spacing:-7.991071px;}
.ws39{word-spacing:-7.740230px;}
.ws3c{word-spacing:-7.704396px;}
.ws33{word-spacing:-7.668562px;}
.ws3d{word-spacing:-7.596893px;}
.ws34{word-spacing:-7.417721px;}
.ws32{word-spacing:-7.310218px;}
.ws3{word-spacing:-7.032960px;}
.ws1{word-spacing:-6.153840px;}
.ws12{word-spacing:-5.814000px;}
.ws3a{word-spacing:-5.704825px;}
.ws46{word-spacing:-3.825000px;}
.ws83{word-spacing:-3.072000px;}
.ws1c{word-spacing:-2.508000px;}
.ws14{word-spacing:-2.451000px;}
.ws9c{word-spacing:-2.337000px;}
.ws8c{word-spacing:-2.223000px;}
.wsad{word-spacing:-2.166000px;}
.ws9a{word-spacing:-2.109000px;}
.ws58{word-spacing:-1.995000px;}
.ws16{word-spacing:-1.881000px;}
.ws11{word-spacing:-1.848000px;}
.ws19{word-spacing:-1.824000px;}
.ws2e{word-spacing:-1.767000px;}
.wsb9{word-spacing:-1.596000px;}
.ws86{word-spacing:-1.425000px;}
.ws1d{word-spacing:-1.311000px;}
.wsf{word-spacing:-1.302000px;}
.wsc9{word-spacing:-1.296000px;}
.ws29{word-spacing:-1.254000px;}
.wsd9{word-spacing:-1.248000px;}
.wsc{word-spacing:-1.218000px;}
.wsb8{word-spacing:-1.197000px;}
.wsa1{word-spacing:-1.176000px;}
.ws4c{word-spacing:-1.140000px;}
.ws2f{word-spacing:-1.083000px;}
.ws2d{word-spacing:-1.026000px;}
.ws8d{word-spacing:-0.912000px;}
.wsbb{word-spacing:-0.855000px;}
.wsd6{word-spacing:-0.840000px;}
.ws17{word-spacing:-0.741000px;}
.ws41{word-spacing:-0.684000px;}
.ws3e{word-spacing:-0.627000px;}
.wsd5{word-spacing:-0.588000px;}
.ws18{word-spacing:-0.513000px;}
.wsa5{word-spacing:-0.490200px;}
.wsc5{word-spacing:-0.480000px;}
.ws67{word-spacing:-0.456000px;}
.wsf0{word-spacing:-0.420000px;}
.ws54{word-spacing:-0.399000px;}
.ws7b{word-spacing:-0.342000px;}
.wse{word-spacing:-0.336000px;}
.wsd4{word-spacing:-0.252000px;}
.ws4f{word-spacing:-0.228000px;}
.wsf1{word-spacing:-0.168000px;}
.wsde{word-spacing:-0.126000px;}
.wsd7{word-spacing:-0.042000px;}
.ws7d{word-spacing:-0.035834px;}
.ws80{word-spacing:-0.031271px;}
.ws8{word-spacing:0.000000px;}
.ws81{word-spacing:0.031271px;}
.ws7e{word-spacing:0.035834px;}
.wsdf{word-spacing:0.042000px;}
.ws2b{word-spacing:0.057000px;}
.ws7f{word-spacing:0.071669px;}
.wsa2{word-spacing:0.072000px;}
.ws7c{word-spacing:0.107503px;}
.wscf{word-spacing:0.126000px;}
.ws82{word-spacing:0.143338px;}
.wsd8{word-spacing:0.168000px;}
.wse7{word-spacing:0.210000px;}
.ws13{word-spacing:0.228000px;}
.ws85{word-spacing:0.285000px;}
.ws1b{word-spacing:0.513000px;}
.ws7a{word-spacing:0.570000px;}
.ws56{word-spacing:0.627000px;}
.ws8b{word-spacing:0.684000px;}
.ws45{word-spacing:0.741000px;}
.wsbd{word-spacing:0.912000px;}
.wsda{word-spacing:0.924000px;}
.wsdb{word-spacing:1.092000px;}
.ws22{word-spacing:1.140000px;}
.ws4a{word-spacing:1.197000px;}
.wsdc{word-spacing:1.302000px;}
.ws9b{word-spacing:1.311000px;}
.ws50{word-spacing:1.368000px;}
.ws77{word-spacing:1.482000px;}
.wsb6{word-spacing:1.539000px;}
.wsd0{word-spacing:1.554000px;}
.ws4b{word-spacing:1.596000px;}
.ws79{word-spacing:1.767000px;}
.ws71{word-spacing:1.824000px;}
.wsa9{word-spacing:1.938000px;}
.wsb5{word-spacing:1.995000px;}
.ws8e{word-spacing:2.052000px;}
.wsa3{word-spacing:2.124000px;}
.ws10{word-spacing:2.142000px;}
.ws44{word-spacing:2.166000px;}
.ws99{word-spacing:2.223000px;}
.ws6c{word-spacing:2.280000px;}
.ws88{word-spacing:2.337000px;}
.wsb{word-spacing:2.394000px;}
.ws93{word-spacing:2.565000px;}
.wsee{word-spacing:2.604000px;}
.wsa7{word-spacing:2.622000px;}
.wsc7{word-spacing:2.640000px;}
.ws53{word-spacing:2.736000px;}
.wsb3{word-spacing:2.793000px;}
.wsef{word-spacing:2.814000px;}
.ws72{word-spacing:3.021000px;}
.ws2c{word-spacing:3.078000px;}
.ws15{word-spacing:3.249000px;}
.ws24{word-spacing:3.363000px;}
.ws75{word-spacing:3.420000px;}
.wsb2{word-spacing:3.534000px;}
.wsa8{word-spacing:3.591000px;}
.wsca{word-spacing:3.612000px;}
.ws96{word-spacing:3.648000px;}
.ws6a{word-spacing:3.762000px;}
.wsd1{word-spacing:3.780000px;}
.ws84{word-spacing:3.876000px;}
.ws9f{word-spacing:3.933000px;}
.wsdd{word-spacing:3.948000px;}
.ws74{word-spacing:4.047000px;}
.wsec{word-spacing:4.158000px;}
.ws42{word-spacing:4.161000px;}
.ws64{word-spacing:4.218000px;}
.ws59{word-spacing:4.275000px;}
.wsbc{word-spacing:4.332000px;}
.wseb{word-spacing:4.368000px;}
.ws6d{word-spacing:4.446000px;}
.ws1a{word-spacing:4.503000px;}
.wsb1{word-spacing:4.560000px;}
.ws78{word-spacing:4.617000px;}
.ws40{word-spacing:4.674000px;}
.ws55{word-spacing:4.731000px;}
.ws98{word-spacing:4.788000px;}
.wsb7{word-spacing:4.902000px;}
.ws52{word-spacing:5.016000px;}
.ws43{word-spacing:5.073000px;}
.ws92{word-spacing:5.130000px;}
.wsf3{word-spacing:5.166000px;}
.wsac{word-spacing:5.187000px;}
.ws51{word-spacing:5.244000px;}
.ws8f{word-spacing:5.301000px;}
.wscb{word-spacing:5.334000px;}
.wsbe{word-spacing:5.358000px;}
.wse6{word-spacing:5.376000px;}
.ws5a{word-spacing:5.415000px;}
.wsd2{word-spacing:5.418000px;}
.wse4{word-spacing:5.502000px;}
.ws97{word-spacing:5.529000px;}
.ws69{word-spacing:5.586000px;}
.wsab{word-spacing:5.643000px;}
.wsaa{word-spacing:5.757000px;}
.ws25{word-spacing:5.814000px;}
.wsae{word-spacing:5.871000px;}
.ws4e{word-spacing:6.099000px;}
.wsa0{word-spacing:6.144000px;}
.ws1e{word-spacing:6.213000px;}
.wsd3{word-spacing:6.216000px;}
.ws9d{word-spacing:6.270000px;}
.wsed{word-spacing:6.300000px;}
.ws47{word-spacing:6.327000px;}
.wsc4{word-spacing:6.432000px;}
.ws2a{word-spacing:6.498000px;}
.ws5f{word-spacing:6.555000px;}
.ws62{word-spacing:6.612000px;}
.wse0{word-spacing:6.636000px;}
.ws5e{word-spacing:6.726000px;}
.ws90{word-spacing:6.783000px;}
.ws70{word-spacing:6.840000px;}
.ws23{word-spacing:6.897000px;}
.wsb0{word-spacing:7.011000px;}
.wsaf{word-spacing:7.068000px;}
.ws20{word-spacing:7.125000px;}
.wsb4{word-spacing:7.182000px;}
.wsc8{word-spacing:7.200000px;}
.ws8a{word-spacing:7.353000px;}
.ws3f{word-spacing:7.467000px;}
.wse1{word-spacing:7.560000px;}
.ws68{word-spacing:7.581000px;}
.ws21{word-spacing:7.638000px;}
.ws89{word-spacing:7.752000px;}
.ws6f{word-spacing:7.866000px;}
.wsc0{word-spacing:8.037000px;}
.wsce{word-spacing:8.316000px;}
.ws26{word-spacing:8.379000px;}
.ws87{word-spacing:8.436000px;}
.ws57{word-spacing:8.607000px;}
.wsf4{word-spacing:8.610000px;}
.wsc6{word-spacing:8.832000px;}
.ws76{word-spacing:8.835000px;}
.ws63{word-spacing:8.892000px;}
.wse2{word-spacing:9.156000px;}
.ws5c{word-spacing:9.348000px;}
.ws6e{word-spacing:9.690000px;}
.ws94{word-spacing:9.804000px;}
.ws4d{word-spacing:10.032000px;}
.ws6b{word-spacing:10.089000px;}
.ws27{word-spacing:10.146000px;}
.ws66{word-spacing:10.317000px;}
.ws49{word-spacing:10.374000px;}
.ws28{word-spacing:10.431000px;}
.ws65{word-spacing:10.602000px;}
.wscc{word-spacing:10.710000px;}
.ws73{word-spacing:11.001000px;}
.wse8{word-spacing:11.088000px;}
.ws61{word-spacing:11.286000px;}
.wsba{word-spacing:11.514000px;}
.ws91{word-spacing:12.141000px;}
.ws48{word-spacing:12.255000px;}
.ws9e{word-spacing:12.426000px;}
.ws1f{word-spacing:12.483000px;}
.ws9{word-spacing:13.104000px;}
.wsbf{word-spacing:13.281000px;}
.wsa{word-spacing:13.584000px;}
.ws60{word-spacing:13.623000px;}
.wse9{word-spacing:13.734000px;}
.ws5b{word-spacing:13.794000px;}
.wsc1{word-spacing:14.250000px;}
.wsf2{word-spacing:14.658000px;}
.wse3{word-spacing:15.162000px;}
.wsc2{word-spacing:15.216000px;}
.wscd{word-spacing:15.750000px;}
.wsc3{word-spacing:15.792000px;}
.wsea{word-spacing:16.380000px;}
.ws5d{word-spacing:16.701000px;}
.wse5{word-spacing:17.178000px;}
.ws95{word-spacing:18.354000px;}
.wsd{word-spacing:32.676000px;}
._f{margin-left:-15.789000px;}
._0{margin-left:-13.584000px;}
._11{margin-left:-9.008400px;}
._d{margin-left:-6.462000px;}
._6{margin-left:-5.009400px;}
._1{margin-left:-3.931200px;}
._4{margin-left:-2.124000px;}
._2{margin-left:-1.104000px;}
._5{width:1.193400px;}
._3{width:2.389800px;}
._a{width:4.121100px;}
._e{width:5.722800px;}
._3a{width:6.754500px;}
._3d{width:8.106000px;}
._3e{width:9.819600px;}
._3b{width:10.822200px;}
._c{width:12.936000px;}
._10{width:14.499600px;}
._3c{width:16.236000px;}
._12{width:31.579200px;}
._3f{width:38.592000px;}
._8{width:40.897200px;}
._9{width:45.087000px;}
._b{width:46.861200px;}
._7{width:50.338200px;}
._30{width:459.532200px;}
._37{width:493.128000px;}
._2b{width:529.650000px;}
._36{width:536.292000px;}
._22{width:620.490000px;}
._1e{width:660.474000px;}
._2f{width:682.764000px;}
._13{width:685.033200px;}
._2e{width:686.136000px;}
._31{width:695.688000px;}
._1a{width:699.912000px;}
._27{width:701.190000px;}
._33{width:702.702000px;}
._2d{width:705.930000px;}
._17{width:724.386000px;}
._32{width:736.512000px;}
._35{width:740.040000px;}
._1b{width:749.196000px;}
._34{width:760.830000px;}
._29{width:763.164000px;}
._21{width:791.196000px;}
._19{width:803.976000px;}
._1f{width:812.220000px;}
._38{width:817.116600px;}
._2a{width:821.688000px;}
._26{width:822.822000px;}
._2c{width:829.902000px;}
._25{width:833.448000px;}
._15{width:855.606000px;}
._18{width:875.406000px;}
._14{width:876.985200px;}
._20{width:891.600000px;}
._1c{width:919.842000px;}
._39{width:941.916600px;}
._28{width:950.718000px;}
._16{width:960.876000px;}
._23{width:1029.420000px;}
._1d{width:1031.814000px;}
._24{width:1062.138000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(102,102,102);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:0.600000px;}
.fs4{font-size:27.720000px;}
.fsa{font-size:31.271400px;}
.fs6{font-size:31.680000px;}
.fs9{font-size:35.834400px;}
.fsb{font-size:35.879400px;}
.fsc{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:2.751000px;}
.ya7{bottom:13.566000px;}
.y2{bottom:66.286650px;}
.y46{bottom:66.297450px;}
.y175{bottom:105.185250px;}
.ydf{bottom:106.757400px;}
.yad{bottom:107.476500px;}
.y13b{bottom:107.780100px;}
.y76{bottom:108.224550px;}
.y97{bottom:111.316500px;}
.y44{bottom:118.437300px;}
.ye{bottom:118.501050px;}
.y174{bottom:118.688250px;}
.yde{bottom:126.251400px;}
.yac{bottom:126.970500px;}
.y13a{bottom:127.274100px;}
.y75{bottom:127.718550px;}
.y96{bottom:130.810500px;}
.yd{bottom:132.004050px;}
.y173{bottom:132.191250px;}
.y43{bottom:137.931300px;}
.yc{bottom:145.507050px;}
.y172{bottom:145.694250px;}
.ydd{bottom:145.745400px;}
.yab{bottom:146.464500px;}
.y139{bottom:146.768100px;}
.y74{bottom:147.212550px;}
.y95{bottom:150.304500px;}
.y42{bottom:157.425300px;}
.yb{bottom:159.010050px;}
.y171{bottom:159.197250px;}
.y138{bottom:166.262100px;}
.y73{bottom:166.706550px;}
.y94{bottom:169.798500px;}
.ya{bottom:172.513050px;}
.y170{bottom:172.700250px;}
.ydc{bottom:172.745400px;}
.y41{bottom:176.919300px;}
.y137{bottom:185.756100px;}
.y9{bottom:186.010050px;}
.y72{bottom:186.200550px;}
.y16f{bottom:186.203250px;}
.y93{bottom:189.292500px;}
.y116{bottom:195.830100px;}
.y40{bottom:196.413300px;}
.y16e{bottom:199.706250px;}
.y8{bottom:204.007050px;}
.y136{bottom:205.250100px;}
.y71{bottom:205.694550px;}
.ydb{bottom:207.293250px;}
.y115{bottom:207.827100px;}
.y92{bottom:208.786500px;}
.y16d{bottom:213.209250px;}
.y3f{bottom:215.907300px;}
.y7{bottom:217.510050px;}
.y114{bottom:219.824100px;}
.y135{bottom:224.744100px;}
.y70{bottom:225.188550px;}
.y16c{bottom:226.712250px;}
.yda{bottom:226.787250px;}
.y91{bottom:228.280500px;}
.y6{bottom:231.013050px;}
.y3e{bottom:235.401300px;}
.y113{bottom:238.267500px;}
.y16b{bottom:240.215250px;}
.y134{bottom:244.238100px;}
.y5{bottom:244.516050px;}
.yd9{bottom:246.281250px;}
.y90{bottom:247.774500px;}
.y6f{bottom:252.188550px;}
.y16a{bottom:253.718250px;}
.y112{bottom:254.868000px;}
.y3d{bottom:254.895300px;}
.y4{bottom:258.016050px;}
.y133{bottom:263.732100px;}
.yd8{bottom:265.775250px;}
.y169{bottom:267.221250px;}
.y8f{bottom:267.268500px;}
.y111{bottom:271.468500px;}
.y36{bottom:274.360800px;}
.y3c{bottom:274.389300px;}
.y168{bottom:280.724250px;}
.y132{bottom:283.226100px;}
.yd7{bottom:285.269250px;}
.y8e{bottom:286.762500px;}
.y110{bottom:288.069000px;}
.y35{bottom:293.854800px;}
.y3b{bottom:293.883300px;}
.y167{bottom:294.227250px;}
.y6e{bottom:297.230700px;}
.y131{bottom:302.720100px;}
.y10f{bottom:304.669500px;}
.yd6{bottom:304.763250px;}
.y8d{bottom:306.256500px;}
.y166{bottom:307.730250px;}
.y34{bottom:313.348800px;}
.y3a{bottom:313.377300px;}
.y6d{bottom:316.724700px;}
.y165{bottom:321.233250px;}
.y10e{bottom:321.270000px;}
.y130{bottom:322.214100px;}
.yd5{bottom:324.257250px;}
.y8c{bottom:325.750500px;}
.y33{bottom:332.842800px;}
.y39{bottom:332.871300px;}
.y164{bottom:334.736250px;}
.y6c{bottom:336.218700px;}
.y10d{bottom:337.870500px;}
.y12f{bottom:341.708100px;}
.yd4{bottom:343.751250px;}
.y8b{bottom:345.244500px;}
.y163{bottom:348.239250px;}
.y32{bottom:352.336800px;}
.y38{bottom:352.365300px;}
.y10c{bottom:354.471000px;}
.y6b{bottom:355.712700px;}
.y12e{bottom:361.202100px;}
.y162{bottom:361.742250px;}
.yd3{bottom:363.245250px;}
.y8a{bottom:364.738500px;}
.y10b{bottom:371.071500px;}
.y31{bottom:371.830800px;}
.y37{bottom:371.859300px;}
.y6a{bottom:375.206700px;}
.y161{bottom:375.245250px;}
.y12d{bottom:380.696100px;}
.yd2{bottom:382.745250px;}
.y89{bottom:384.232500px;}
.y10a{bottom:387.672000px;}
.y160{bottom:391.745250px;}
.y69{bottom:394.700700px;}
.y12c{bottom:400.190100px;}
.y88{bottom:403.726500px;}
.y109{bottom:404.272500px;}
.y68{bottom:414.194700px;}
.y12b{bottom:419.684100px;}
.y108{bottom:420.873000px;}
.yd1{bottom:421.974000px;}
.y87{bottom:423.220500px;}
.y30{bottom:429.586050px;}
.y67{bottom:433.688700px;}
.y15f{bottom:435.245250px;}
.y107{bottom:437.473500px;}
.y12a{bottom:439.178100px;}
.yd0{bottom:441.468000px;}
.y86{bottom:442.714500px;}
.y2f{bottom:447.583800px;}
.y15e{bottom:450.245250px;}
.y66{bottom:453.188700px;}
.y106{bottom:454.074000px;}
.y129{bottom:458.672100px;}
.ycf{bottom:460.962000px;}
.y85{bottom:462.208500px;}
.y15d{bottom:465.245250px;}
.y2e{bottom:465.581550px;}
.y105{bottom:470.674500px;}
.y128{bottom:478.166100px;}
.y15c{bottom:480.245250px;}
.yce{bottom:480.456000px;}
.y84{bottom:481.708500px;}
.y2d{bottom:483.579300px;}
.y104{bottom:487.275000px;}
.y65{bottom:490.883550px;}
.y15b{bottom:495.245250px;}
.y127{bottom:497.660100px;}
.ycd{bottom:499.950000px;}
.y2c{bottom:501.577050px;}
.y103{bottom:503.875500px;}
.y15a{bottom:510.245250px;}
.y64{bottom:510.377550px;}
.y126{bottom:517.154100px;}
.y83{bottom:517.774500px;}
.ycc{bottom:519.444000px;}
.y2b{bottom:519.574800px;}
.y102{bottom:520.476000px;}
.y159{bottom:525.245250px;}
.y63{bottom:529.871550px;}
.y125{bottom:536.648100px;}
.y82{bottom:537.268500px;}
.y2a{bottom:537.572550px;}
.y101{bottom:537.675000px;}
.ycb{bottom:538.938000px;}
.y158{bottom:540.245250px;}
.y62{bottom:549.365550px;}
.y100{bottom:554.275500px;}
.y29{bottom:555.570300px;}
.y124{bottom:556.142100px;}
.y81{bottom:556.762500px;}
.y157{bottom:558.245250px;}
.yca{bottom:558.432000px;}
.y61{bottom:568.859550px;}
.yff{bottom:570.876000px;}
.y28{bottom:573.568050px;}
.y123{bottom:575.636100px;}
.y80{bottom:576.256500px;}
.yc9{bottom:577.926000px;}
.yfe{bottom:587.476500px;}
.y60{bottom:588.353550px;}
.y27{bottom:591.565800px;}
.y122{bottom:595.130100px;}
.y7f{bottom:595.750500px;}
.yc8{bottom:597.420000px;}
.y156{bottom:597.623850px;}
.yfd{bottom:604.077000px;}
.y5f{bottom:607.847550px;}
.y26{bottom:609.563550px;}
.y121{bottom:614.624100px;}
.y7e{bottom:615.244500px;}
.yc7{bottom:616.914000px;}
.y155{bottom:617.117850px;}
.yfc{bottom:620.677500px;}
.y5e{bottom:627.341550px;}
.y25{bottom:632.064300px;}
.y120{bottom:634.118100px;}
.y7d{bottom:634.738500px;}
.yc6{bottom:636.408000px;}
.y154{bottom:636.611850px;}
.yfb{bottom:637.278000px;}
.y5d{bottom:646.835550px;}
.y24{bottom:650.062050px;}
.y11f{bottom:653.612100px;}
.yfa{bottom:653.878500px;}
.y7c{bottom:654.232500px;}
.yc5{bottom:655.902000px;}
.y153{bottom:656.105850px;}
.y5c{bottom:666.329550px;}
.y23{bottom:668.059800px;}
.yf9{bottom:670.479000px;}
.y11e{bottom:673.106100px;}
.y7b{bottom:673.726500px;}
.yc4{bottom:675.396000px;}
.y152{bottom:675.599850px;}
.y5b{bottom:685.823550px;}
.yf8{bottom:687.079500px;}
.y11d{bottom:692.600100px;}
.y7a{bottom:693.220500px;}
.yc3{bottom:694.890000px;}
.y151{bottom:695.093850px;}
.y22{bottom:698.806800px;}
.yf7{bottom:703.680000px;}
.y5a{bottom:705.317550px;}
.y11c{bottom:712.094100px;}
.y21{bottom:712.306800px;}
.y79{bottom:712.714500px;}
.yc2{bottom:714.384000px;}
.y150{bottom:714.587850px;}
.yf6{bottom:720.280500px;}
.y59{bottom:724.811550px;}
.y20{bottom:725.806800px;}
.y11b{bottom:731.588100px;}
.y78{bottom:732.208500px;}
.yc1{bottom:733.878000px;}
.y14f{bottom:734.081850px;}
.yf5{bottom:736.881000px;}
.y1f{bottom:739.306800px;}
.y58{bottom:744.305550px;}
.y11a{bottom:751.082100px;}
.y77{bottom:751.708500px;}
.y1e{bottom:752.806950px;}
.yc0{bottom:753.372000px;}
.yf4{bottom:753.481500px;}
.y14e{bottom:753.575850px;}
.y57{bottom:763.799550px;}
.y1d{bottom:766.306800px;}
.yf3{bottom:770.082000px;}
.y119{bottom:770.576100px;}
.ybf{bottom:772.866000px;}
.y14d{bottom:773.069850px;}
.y1c{bottom:779.806800px;}
.y56{bottom:783.293550px;}
.yf2{bottom:786.682500px;}
.y118{bottom:790.070100px;}
.ybe{bottom:792.360000px;}
.y14c{bottom:792.563850px;}
.y1b{bottom:793.306800px;}
.y55{bottom:802.787550px;}
.yf1{bottom:803.283000px;}
.yaa{bottom:803.521500px;}
.y1a{bottom:806.806800px;}
.y117{bottom:809.564100px;}
.ybd{bottom:811.854000px;}
.y14b{bottom:812.057850px;}
.yf0{bottom:819.883500px;}
.y19{bottom:820.306800px;}
.y54{bottom:822.281550px;}
.ybc{bottom:831.348000px;}
.y14a{bottom:831.551850px;}
.y18{bottom:833.806800px;}
.yef{bottom:836.484000px;}
.ya6{bottom:837.271500px;}
.y53{bottom:841.775550px;}
.y17{bottom:847.306800px;}
.y19f{bottom:850.362150px;}
.y18b{bottom:850.414650px;}
.ya8{bottom:850.761000px;}
.ybb{bottom:850.842000px;}
.y149{bottom:851.045850px;}
.yee{bottom:853.084500px;}
.y52{bottom:861.269550px;}
.y19e{bottom:863.865150px;}
.y18a{bottom:863.917650px;}
.y16{bottom:865.534950px;}
.y177{bottom:867.548550px;}
.yed{bottom:869.685000px;}
.yba{bottom:870.336000px;}
.y148{bottom:870.539850px;}
.y19d{bottom:877.368150px;}
.y189{bottom:877.420650px;}
.y15{bottom:880.309800px;}
.y51{bottom:880.769550px;}
.ya3{bottom:882.210000px;}
.y176{bottom:882.548550px;}
.yec{bottom:886.285500px;}
.ya5{bottom:887.576201px;}
.yb9{bottom:889.830000px;}
.y147{bottom:890.033850px;}
.y19c{bottom:890.871150px;}
.y188{bottom:890.923650px;}
.ya2{bottom:892.959000px;}
.y14{bottom:895.309800px;}
.ya4{bottom:898.326521px;}
.yeb{bottom:902.886000px;}
.y19b{bottom:904.374150px;}
.y187{bottom:904.426650px;}
.y50{bottom:907.769550px;}
.yb8{bottom:909.324000px;}
.y146{bottom:909.527850px;}
.y13{bottom:910.309800px;}
.y19a{bottom:917.877150px;}
.y186{bottom:917.929650px;}
.yea{bottom:919.486500px;}
.ya1{bottom:922.225171px;}
.y12{bottom:925.309800px;}
.y45{bottom:927.990000px;}
.yb7{bottom:928.818000px;}
.y145{bottom:929.021850px;}
.y199{bottom:931.380150px;}
.y185{bottom:931.432650px;}
.ya0{bottom:931.891500px;}
.ye9{bottom:936.087000px;}
.y198{bottom:944.883150px;}
.y184{bottom:944.935650px;}
.yb6{bottom:948.312000px;}
.y4f{bottom:948.398400px;}
.y144{bottom:948.515850px;}
.y11{bottom:952.300800px;}
.ye8{bottom:952.687500px;}
.y197{bottom:958.386150px;}
.y183{bottom:958.438650px;}
.yb5{bottom:967.806000px;}
.y4e{bottom:967.892400px;}
.y143{bottom:968.009850px;}
.ye7{bottom:969.288000px;}
.y196{bottom:971.889150px;}
.y182{bottom:971.941650px;}
.y9d{bottom:972.134834px;}
.y9c{bottom:983.037450px;}
.y195{bottom:985.392150px;}
.y181{bottom:985.444650px;}
.ye6{bottom:985.888500px;}
.yb4{bottom:987.300000px;}
.y4d{bottom:987.386400px;}
.y142{bottom:987.503850px;}
.y10{bottom:988.305300px;}
.y194{bottom:998.895150px;}
.y180{bottom:998.947650px;}
.ye5{bottom:1002.489000px;}
.yb3{bottom:1006.794000px;}
.y4c{bottom:1006.880400px;}
.y141{bottom:1006.997850px;}
.y193{bottom:1012.398150px;}
.y17f{bottom:1012.450650px;}
.ye4{bottom:1019.089500px;}
.y99{bottom:1022.790416px;}
.yf{bottom:1024.309800px;}
.y192{bottom:1025.901150px;}
.y17e{bottom:1025.953650px;}
.yb2{bottom:1026.288000px;}
.y4b{bottom:1026.374400px;}
.y140{bottom:1026.491850px;}
.y98{bottom:1032.618000px;}
.ye3{bottom:1035.690000px;}
.y191{bottom:1039.404150px;}
.y17d{bottom:1039.456650px;}
.yb1{bottom:1045.782000px;}
.y4a{bottom:1045.868400px;}
.y13f{bottom:1045.985850px;}
.y190{bottom:1052.907150px;}
.y17c{bottom:1052.959650px;}
.ye2{bottom:1056.795000px;}
.y9f{bottom:1057.690944px;}
.yb0{bottom:1065.276000px;}
.y49{bottom:1065.362400px;}
.y13e{bottom:1065.479850px;}
.y18f{bottom:1066.410150px;}
.y17b{bottom:1066.462650px;}
.y9e{bottom:1067.088000px;}
.y18e{bottom:1079.913150px;}
.y17a{bottom:1079.965650px;}
.yaf{bottom:1084.770000px;}
.y48{bottom:1084.856400px;}
.y13d{bottom:1084.973850px;}
.y9b{bottom:1091.003816px;}
.ye1{bottom:1091.022000px;}
.y18d{bottom:1093.416150px;}
.y179{bottom:1093.468650px;}
.y1{bottom:1099.948050px;}
.y9a{bottom:1100.831400px;}
.yae{bottom:1104.264000px;}
.y47{bottom:1104.350400px;}
.y13c{bottom:1104.467850px;}
.ye0{bottom:1106.022000px;}
.y18c{bottom:1106.919150px;}
.y178{bottom:1106.971650px;}
.y3{bottom:1132.136100px;}
.h5{height:0.445800px;}
.hb{height:20.595960px;}
.h14{height:21.671080px;}
.h13{height:24.367392px;}
.h12{height:24.833239px;}
.h15{height:24.864424px;}
.h19{height:26.532000px;}
.h1b{height:30.072000px;}
.h17{height:30.954000px;}
.h6{height:31.206000px;}
.h18{height:33.348000px;}
.h3{height:34.368000px;}
.h10{height:34.945312px;}
.h1a{height:35.616000px;}
.h1c{height:35.664000px;}
.ha{height:36.240000px;}
.h11{height:37.842000px;}
.hd{height:39.507360px;}
.he{height:39.507960px;}
.hc{height:39.508560px;}
.h7{height:39.852600px;}
.hf{height:40.812000px;}
.h9{height:45.518400px;}
.h4{height:52.992000px;}
.h2{height:53.064000px;}
.h8{height:90.216000px;}
.h16{height:277.438500px;}
.h1{height:1173.750000px;}
.h0{height:1173.960000px;}
.w1{width:349.764000px;}
.w0{width:891.000000px;}
.x0{left:0.000000px;}
.x2{left:73.650000px;}
.x21{left:76.194000px;}
.x1f{left:81.150000px;}
.x3{left:84.150000px;}
.x1{left:85.650000px;}
.x4{left:87.900150px;}
.x20{left:93.897000px;}
.x1b{left:97.653000px;}
.x1a{left:168.334650px;}
.x18{left:272.839650px;}
.x7{left:396.048300px;}
.x5{left:458.998650px;}
.x22{left:461.544000px;}
.x17{left:463.293000px;}
.x1d{left:466.500000px;}
.x1c{left:471.744000px;}
.x8{left:473.250000px;}
.x1e{left:479.247000px;}
.x10{left:487.181100px;}
.x11{left:495.700729px;}
.x15{left:496.979400px;}
.x14{left:502.056600px;}
.x9{left:532.321650px;}
.xd{left:542.733750px;}
.xb{left:551.379300px;}
.xc{left:601.583294px;}
.xa{left:604.097953px;}
.x19{left:638.472150px;}
.x16{left:685.074166px;}
.x12{left:694.707150px;}
.x13{left:705.448511px;}
.xe{left:714.190650px;}
.xf{left:730.866124px;}
.x6{left:857.745000px;}
@media print{
.v3{vertical-align:-16.800533pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.128000pt;}
.v1{vertical-align:16.821333pt;}
.v2{vertical-align:19.200000pt;}
.ls16{letter-spacing:-2.136818pt;}
.lsb{letter-spacing:-1.317333pt;}
.ls1b{letter-spacing:-1.266667pt;}
.ls7{letter-spacing:-0.962667pt;}
.ls1a{letter-spacing:-0.912000pt;}
.ls1f{letter-spacing:-0.709333pt;}
.lsc{letter-spacing:-0.700762pt;}
.ls11{letter-spacing:-0.605203pt;}
.lsa{letter-spacing:-0.506667pt;}
.ls18{letter-spacing:-0.445939pt;}
.lsd{letter-spacing:-0.382234pt;}
.ls4{letter-spacing:-0.373333pt;}
.ls17{letter-spacing:-0.350381pt;}
.ls15{letter-spacing:-0.318528pt;}
.ls5{letter-spacing:-0.253333pt;}
.ls6{letter-spacing:-0.202667pt;}
.ls1e{letter-spacing:-0.149333pt;}
.ls14{letter-spacing:-0.127411pt;}
.ls1d{letter-spacing:-0.112000pt;}
.lse{letter-spacing:-0.095558pt;}
.ls10{letter-spacing:-0.063706pt;}
.lsf{letter-spacing:-0.031853pt;}
.ls13{letter-spacing:-0.027797pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000107pt;}
.ls12{letter-spacing:0.027797pt;}
.ls9{letter-spacing:0.031853pt;}
.ls21{letter-spacing:0.224000pt;}
.ls20{letter-spacing:0.373333pt;}
.ls0{letter-spacing:0.426667pt;}
.ls1c{letter-spacing:0.760000pt;}
.ls8{letter-spacing:1.013333pt;}
.ls2{letter-spacing:12.800000pt;}
.ls19{letter-spacing:595.280000pt;}
.ws31{word-spacing:-15.096000pt;}
.ws7{word-spacing:-11.602667pt;}
.ws30{word-spacing:-11.501333pt;}
.wsa4{word-spacing:-11.349333pt;}
.ws6{word-spacing:-11.096000pt;}
.ws4{word-spacing:-10.842667pt;}
.ws5{word-spacing:-10.640000pt;}
.ws0{word-spacing:-9.685333pt;}
.ws2{word-spacing:-9.472000pt;}
.wsa6{word-spacing:-7.840000pt;}
.ws35{word-spacing:-7.230586pt;}
.ws3b{word-spacing:-7.198733pt;}
.ws37{word-spacing:-7.166880pt;}
.ws36{word-spacing:-7.135027pt;}
.ws38{word-spacing:-7.103174pt;}
.ws39{word-spacing:-6.880205pt;}
.ws3c{word-spacing:-6.848352pt;}
.ws33{word-spacing:-6.816499pt;}
.ws3d{word-spacing:-6.752794pt;}
.ws34{word-spacing:-6.593530pt;}
.ws32{word-spacing:-6.497971pt;}
.ws3{word-spacing:-6.251520pt;}
.ws1{word-spacing:-5.470080pt;}
.ws12{word-spacing:-5.168000pt;}
.ws3a{word-spacing:-5.070955pt;}
.ws46{word-spacing:-3.400000pt;}
.ws83{word-spacing:-2.730667pt;}
.ws1c{word-spacing:-2.229333pt;}
.ws14{word-spacing:-2.178667pt;}
.ws9c{word-spacing:-2.077333pt;}
.ws8c{word-spacing:-1.976000pt;}
.wsad{word-spacing:-1.925333pt;}
.ws9a{word-spacing:-1.874667pt;}
.ws58{word-spacing:-1.773333pt;}
.ws16{word-spacing:-1.672000pt;}
.ws11{word-spacing:-1.642667pt;}
.ws19{word-spacing:-1.621333pt;}
.ws2e{word-spacing:-1.570667pt;}
.wsb9{word-spacing:-1.418667pt;}
.ws86{word-spacing:-1.266667pt;}
.ws1d{word-spacing:-1.165333pt;}
.wsf{word-spacing:-1.157333pt;}
.wsc9{word-spacing:-1.152000pt;}
.ws29{word-spacing:-1.114667pt;}
.wsd9{word-spacing:-1.109333pt;}
.wsc{word-spacing:-1.082667pt;}
.wsb8{word-spacing:-1.064000pt;}
.wsa1{word-spacing:-1.045333pt;}
.ws4c{word-spacing:-1.013333pt;}
.ws2f{word-spacing:-0.962667pt;}
.ws2d{word-spacing:-0.912000pt;}
.ws8d{word-spacing:-0.810667pt;}
.wsbb{word-spacing:-0.760000pt;}
.wsd6{word-spacing:-0.746667pt;}
.ws17{word-spacing:-0.658667pt;}
.ws41{word-spacing:-0.608000pt;}
.ws3e{word-spacing:-0.557333pt;}
.wsd5{word-spacing:-0.522667pt;}
.ws18{word-spacing:-0.456000pt;}
.wsa5{word-spacing:-0.435733pt;}
.wsc5{word-spacing:-0.426667pt;}
.ws67{word-spacing:-0.405333pt;}
.wsf0{word-spacing:-0.373333pt;}
.ws54{word-spacing:-0.354667pt;}
.ws7b{word-spacing:-0.304000pt;}
.wse{word-spacing:-0.298667pt;}
.wsd4{word-spacing:-0.224000pt;}
.ws4f{word-spacing:-0.202667pt;}
.wsf1{word-spacing:-0.149333pt;}
.wsde{word-spacing:-0.112000pt;}
.wsd7{word-spacing:-0.037333pt;}
.ws7d{word-spacing:-0.031853pt;}
.ws80{word-spacing:-0.027797pt;}
.ws8{word-spacing:0.000000pt;}
.ws81{word-spacing:0.027797pt;}
.ws7e{word-spacing:0.031853pt;}
.wsdf{word-spacing:0.037333pt;}
.ws2b{word-spacing:0.050667pt;}
.ws7f{word-spacing:0.063706pt;}
.wsa2{word-spacing:0.064000pt;}
.ws7c{word-spacing:0.095558pt;}
.wscf{word-spacing:0.112000pt;}
.ws82{word-spacing:0.127411pt;}
.wsd8{word-spacing:0.149333pt;}
.wse7{word-spacing:0.186667pt;}
.ws13{word-spacing:0.202667pt;}
.ws85{word-spacing:0.253333pt;}
.ws1b{word-spacing:0.456000pt;}
.ws7a{word-spacing:0.506667pt;}
.ws56{word-spacing:0.557333pt;}
.ws8b{word-spacing:0.608000pt;}
.ws45{word-spacing:0.658667pt;}
.wsbd{word-spacing:0.810667pt;}
.wsda{word-spacing:0.821333pt;}
.wsdb{word-spacing:0.970667pt;}
.ws22{word-spacing:1.013333pt;}
.ws4a{word-spacing:1.064000pt;}
.wsdc{word-spacing:1.157333pt;}
.ws9b{word-spacing:1.165333pt;}
.ws50{word-spacing:1.216000pt;}
.ws77{word-spacing:1.317333pt;}
.wsb6{word-spacing:1.368000pt;}
.wsd0{word-spacing:1.381333pt;}
.ws4b{word-spacing:1.418667pt;}
.ws79{word-spacing:1.570667pt;}
.ws71{word-spacing:1.621333pt;}
.wsa9{word-spacing:1.722667pt;}
.wsb5{word-spacing:1.773333pt;}
.ws8e{word-spacing:1.824000pt;}
.wsa3{word-spacing:1.888000pt;}
.ws10{word-spacing:1.904000pt;}
.ws44{word-spacing:1.925333pt;}
.ws99{word-spacing:1.976000pt;}
.ws6c{word-spacing:2.026667pt;}
.ws88{word-spacing:2.077333pt;}
.wsb{word-spacing:2.128000pt;}
.ws93{word-spacing:2.280000pt;}
.wsee{word-spacing:2.314667pt;}
.wsa7{word-spacing:2.330667pt;}
.wsc7{word-spacing:2.346667pt;}
.ws53{word-spacing:2.432000pt;}
.wsb3{word-spacing:2.482667pt;}
.wsef{word-spacing:2.501333pt;}
.ws72{word-spacing:2.685333pt;}
.ws2c{word-spacing:2.736000pt;}
.ws15{word-spacing:2.888000pt;}
.ws24{word-spacing:2.989333pt;}
.ws75{word-spacing:3.040000pt;}
.wsb2{word-spacing:3.141333pt;}
.wsa8{word-spacing:3.192000pt;}
.wsca{word-spacing:3.210667pt;}
.ws96{word-spacing:3.242667pt;}
.ws6a{word-spacing:3.344000pt;}
.wsd1{word-spacing:3.360000pt;}
.ws84{word-spacing:3.445333pt;}
.ws9f{word-spacing:3.496000pt;}
.wsdd{word-spacing:3.509333pt;}
.ws74{word-spacing:3.597333pt;}
.wsec{word-spacing:3.696000pt;}
.ws42{word-spacing:3.698667pt;}
.ws64{word-spacing:3.749333pt;}
.ws59{word-spacing:3.800000pt;}
.wsbc{word-spacing:3.850667pt;}
.wseb{word-spacing:3.882667pt;}
.ws6d{word-spacing:3.952000pt;}
.ws1a{word-spacing:4.002667pt;}
.wsb1{word-spacing:4.053333pt;}
.ws78{word-spacing:4.104000pt;}
.ws40{word-spacing:4.154667pt;}
.ws55{word-spacing:4.205333pt;}
.ws98{word-spacing:4.256000pt;}
.wsb7{word-spacing:4.357333pt;}
.ws52{word-spacing:4.458667pt;}
.ws43{word-spacing:4.509333pt;}
.ws92{word-spacing:4.560000pt;}
.wsf3{word-spacing:4.592000pt;}
.wsac{word-spacing:4.610667pt;}
.ws51{word-spacing:4.661333pt;}
.ws8f{word-spacing:4.712000pt;}
.wscb{word-spacing:4.741333pt;}
.wsbe{word-spacing:4.762667pt;}
.wse6{word-spacing:4.778667pt;}
.ws5a{word-spacing:4.813333pt;}
.wsd2{word-spacing:4.816000pt;}
.wse4{word-spacing:4.890667pt;}
.ws97{word-spacing:4.914667pt;}
.ws69{word-spacing:4.965333pt;}
.wsab{word-spacing:5.016000pt;}
.wsaa{word-spacing:5.117333pt;}
.ws25{word-spacing:5.168000pt;}
.wsae{word-spacing:5.218667pt;}
.ws4e{word-spacing:5.421333pt;}
.wsa0{word-spacing:5.461333pt;}
.ws1e{word-spacing:5.522667pt;}
.wsd3{word-spacing:5.525333pt;}
.ws9d{word-spacing:5.573333pt;}
.wsed{word-spacing:5.600000pt;}
.ws47{word-spacing:5.624000pt;}
.wsc4{word-spacing:5.717333pt;}
.ws2a{word-spacing:5.776000pt;}
.ws5f{word-spacing:5.826667pt;}
.ws62{word-spacing:5.877333pt;}
.wse0{word-spacing:5.898667pt;}
.ws5e{word-spacing:5.978667pt;}
.ws90{word-spacing:6.029333pt;}
.ws70{word-spacing:6.080000pt;}
.ws23{word-spacing:6.130667pt;}
.wsb0{word-spacing:6.232000pt;}
.wsaf{word-spacing:6.282667pt;}
.ws20{word-spacing:6.333333pt;}
.wsb4{word-spacing:6.384000pt;}
.wsc8{word-spacing:6.400000pt;}
.ws8a{word-spacing:6.536000pt;}
.ws3f{word-spacing:6.637333pt;}
.wse1{word-spacing:6.720000pt;}
.ws68{word-spacing:6.738667pt;}
.ws21{word-spacing:6.789333pt;}
.ws89{word-spacing:6.890667pt;}
.ws6f{word-spacing:6.992000pt;}
.wsc0{word-spacing:7.144000pt;}
.wsce{word-spacing:7.392000pt;}
.ws26{word-spacing:7.448000pt;}
.ws87{word-spacing:7.498667pt;}
.ws57{word-spacing:7.650667pt;}
.wsf4{word-spacing:7.653333pt;}
.wsc6{word-spacing:7.850667pt;}
.ws76{word-spacing:7.853333pt;}
.ws63{word-spacing:7.904000pt;}
.wse2{word-spacing:8.138667pt;}
.ws5c{word-spacing:8.309333pt;}
.ws6e{word-spacing:8.613333pt;}
.ws94{word-spacing:8.714667pt;}
.ws4d{word-spacing:8.917333pt;}
.ws6b{word-spacing:8.968000pt;}
.ws27{word-spacing:9.018667pt;}
.ws66{word-spacing:9.170667pt;}
.ws49{word-spacing:9.221333pt;}
.ws28{word-spacing:9.272000pt;}
.ws65{word-spacing:9.424000pt;}
.wscc{word-spacing:9.520000pt;}
.ws73{word-spacing:9.778667pt;}
.wse8{word-spacing:9.856000pt;}
.ws61{word-spacing:10.032000pt;}
.wsba{word-spacing:10.234667pt;}
.ws91{word-spacing:10.792000pt;}
.ws48{word-spacing:10.893333pt;}
.ws9e{word-spacing:11.045333pt;}
.ws1f{word-spacing:11.096000pt;}
.ws9{word-spacing:11.648000pt;}
.wsbf{word-spacing:11.805333pt;}
.wsa{word-spacing:12.074667pt;}
.ws60{word-spacing:12.109333pt;}
.wse9{word-spacing:12.208000pt;}
.ws5b{word-spacing:12.261333pt;}
.wsc1{word-spacing:12.666667pt;}
.wsf2{word-spacing:13.029333pt;}
.wse3{word-spacing:13.477333pt;}
.wsc2{word-spacing:13.525333pt;}
.wscd{word-spacing:14.000000pt;}
.wsc3{word-spacing:14.037333pt;}
.wsea{word-spacing:14.560000pt;}
.ws5d{word-spacing:14.845333pt;}
.wse5{word-spacing:15.269333pt;}
.ws95{word-spacing:16.314667pt;}
.wsd{word-spacing:29.045333pt;}
._f{margin-left:-14.034667pt;}
._0{margin-left:-12.074667pt;}
._11{margin-left:-8.007467pt;}
._d{margin-left:-5.744000pt;}
._6{margin-left:-4.452800pt;}
._1{margin-left:-3.494400pt;}
._4{margin-left:-1.888000pt;}
._2{margin-left:-0.981333pt;}
._5{width:1.060800pt;}
._3{width:2.124267pt;}
._a{width:3.663200pt;}
._e{width:5.086933pt;}
._3a{width:6.004000pt;}
._3d{width:7.205333pt;}
._3e{width:8.728533pt;}
._3b{width:9.619733pt;}
._c{width:11.498667pt;}
._10{width:12.888533pt;}
._3c{width:14.432000pt;}
._12{width:28.070400pt;}
._3f{width:34.304000pt;}
._8{width:36.353067pt;}
._9{width:40.077333pt;}
._b{width:41.654400pt;}
._7{width:44.745067pt;}
._30{width:408.473067pt;}
._37{width:438.336000pt;}
._2b{width:470.800000pt;}
._36{width:476.704000pt;}
._22{width:551.546667pt;}
._1e{width:587.088000pt;}
._2f{width:606.901333pt;}
._13{width:608.918400pt;}
._2e{width:609.898667pt;}
._31{width:618.389333pt;}
._1a{width:622.144000pt;}
._27{width:623.280000pt;}
._33{width:624.624000pt;}
._2d{width:627.493333pt;}
._17{width:643.898667pt;}
._32{width:654.677333pt;}
._35{width:657.813333pt;}
._1b{width:665.952000pt;}
._34{width:676.293333pt;}
._29{width:678.368000pt;}
._21{width:703.285333pt;}
._19{width:714.645333pt;}
._1f{width:721.973333pt;}
._38{width:726.325867pt;}
._2a{width:730.389333pt;}
._26{width:731.397333pt;}
._2c{width:737.690667pt;}
._25{width:740.842667pt;}
._15{width:760.538667pt;}
._18{width:778.138667pt;}
._14{width:779.542400pt;}
._20{width:792.533333pt;}
._1c{width:817.637333pt;}
._39{width:837.259200pt;}
._28{width:845.082667pt;}
._16{width:854.112000pt;}
._23{width:915.040000pt;}
._1d{width:917.168000pt;}
._24{width:944.122667pt;}
.fs2{font-size:0.533333pt;}
.fs4{font-size:24.640000pt;}
.fsa{font-size:27.796800pt;}
.fs6{font-size:28.160000pt;}
.fs9{font-size:31.852800pt;}
.fsb{font-size:31.892800pt;}
.fsc{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:2.445333pt;}
.ya7{bottom:12.058667pt;}
.y2{bottom:58.921467pt;}
.y46{bottom:58.931067pt;}
.y175{bottom:93.498000pt;}
.ydf{bottom:94.895467pt;}
.yad{bottom:95.534667pt;}
.y13b{bottom:95.804533pt;}
.y76{bottom:96.199600pt;}
.y97{bottom:98.948000pt;}
.y44{bottom:105.277600pt;}
.ye{bottom:105.334267pt;}
.y174{bottom:105.500667pt;}
.yde{bottom:112.223467pt;}
.yac{bottom:112.862667pt;}
.y13a{bottom:113.132533pt;}
.y75{bottom:113.527600pt;}
.y96{bottom:116.276000pt;}
.yd{bottom:117.336933pt;}
.y173{bottom:117.503333pt;}
.y43{bottom:122.605600pt;}
.yc{bottom:129.339600pt;}
.y172{bottom:129.506000pt;}
.ydd{bottom:129.551467pt;}
.yab{bottom:130.190667pt;}
.y139{bottom:130.460533pt;}
.y74{bottom:130.855600pt;}
.y95{bottom:133.604000pt;}
.y42{bottom:139.933600pt;}
.yb{bottom:141.342267pt;}
.y171{bottom:141.508667pt;}
.y138{bottom:147.788533pt;}
.y73{bottom:148.183600pt;}
.y94{bottom:150.932000pt;}
.ya{bottom:153.344933pt;}
.y170{bottom:153.511333pt;}
.ydc{bottom:153.551467pt;}
.y41{bottom:157.261600pt;}
.y137{bottom:165.116533pt;}
.y9{bottom:165.342267pt;}
.y72{bottom:165.511600pt;}
.y16f{bottom:165.514000pt;}
.y93{bottom:168.260000pt;}
.y116{bottom:174.071200pt;}
.y40{bottom:174.589600pt;}
.y16e{bottom:177.516667pt;}
.y8{bottom:181.339600pt;}
.y136{bottom:182.444533pt;}
.y71{bottom:182.839600pt;}
.ydb{bottom:184.260667pt;}
.y115{bottom:184.735200pt;}
.y92{bottom:185.588000pt;}
.y16d{bottom:189.519333pt;}
.y3f{bottom:191.917600pt;}
.y7{bottom:193.342267pt;}
.y114{bottom:195.399200pt;}
.y135{bottom:199.772533pt;}
.y70{bottom:200.167600pt;}
.y16c{bottom:201.522000pt;}
.yda{bottom:201.588667pt;}
.y91{bottom:202.916000pt;}
.y6{bottom:205.344933pt;}
.y3e{bottom:209.245600pt;}
.y113{bottom:211.793333pt;}
.y16b{bottom:213.524667pt;}
.y134{bottom:217.100533pt;}
.y5{bottom:217.347600pt;}
.yd9{bottom:218.916667pt;}
.y90{bottom:220.244000pt;}
.y6f{bottom:224.167600pt;}
.y16a{bottom:225.527333pt;}
.y112{bottom:226.549333pt;}
.y3d{bottom:226.573600pt;}
.y4{bottom:229.347600pt;}
.y133{bottom:234.428533pt;}
.yd8{bottom:236.244667pt;}
.y169{bottom:237.530000pt;}
.y8f{bottom:237.572000pt;}
.y111{bottom:241.305333pt;}
.y36{bottom:243.876267pt;}
.y3c{bottom:243.901600pt;}
.y168{bottom:249.532667pt;}
.y132{bottom:251.756533pt;}
.yd7{bottom:253.572667pt;}
.y8e{bottom:254.900000pt;}
.y110{bottom:256.061333pt;}
.y35{bottom:261.204267pt;}
.y3b{bottom:261.229600pt;}
.y167{bottom:261.535333pt;}
.y6e{bottom:264.205067pt;}
.y131{bottom:269.084533pt;}
.y10f{bottom:270.817333pt;}
.yd6{bottom:270.900667pt;}
.y8d{bottom:272.228000pt;}
.y166{bottom:273.538000pt;}
.y34{bottom:278.532267pt;}
.y3a{bottom:278.557600pt;}
.y6d{bottom:281.533067pt;}
.y165{bottom:285.540667pt;}
.y10e{bottom:285.573333pt;}
.y130{bottom:286.412533pt;}
.yd5{bottom:288.228667pt;}
.y8c{bottom:289.556000pt;}
.y33{bottom:295.860267pt;}
.y39{bottom:295.885600pt;}
.y164{bottom:297.543333pt;}
.y6c{bottom:298.861067pt;}
.y10d{bottom:300.329333pt;}
.y12f{bottom:303.740533pt;}
.yd4{bottom:305.556667pt;}
.y8b{bottom:306.884000pt;}
.y163{bottom:309.546000pt;}
.y32{bottom:313.188267pt;}
.y38{bottom:313.213600pt;}
.y10c{bottom:315.085333pt;}
.y6b{bottom:316.189067pt;}
.y12e{bottom:321.068533pt;}
.y162{bottom:321.548667pt;}
.yd3{bottom:322.884667pt;}
.y8a{bottom:324.212000pt;}
.y10b{bottom:329.841333pt;}
.y31{bottom:330.516267pt;}
.y37{bottom:330.541600pt;}
.y6a{bottom:333.517067pt;}
.y161{bottom:333.551333pt;}
.y12d{bottom:338.396533pt;}
.yd2{bottom:340.218000pt;}
.y89{bottom:341.540000pt;}
.y10a{bottom:344.597333pt;}
.y160{bottom:348.218000pt;}
.y69{bottom:350.845067pt;}
.y12c{bottom:355.724533pt;}
.y88{bottom:358.868000pt;}
.y109{bottom:359.353333pt;}
.y68{bottom:368.173067pt;}
.y12b{bottom:373.052533pt;}
.y108{bottom:374.109333pt;}
.yd1{bottom:375.088000pt;}
.y87{bottom:376.196000pt;}
.y30{bottom:381.854267pt;}
.y67{bottom:385.501067pt;}
.y15f{bottom:386.884667pt;}
.y107{bottom:388.865333pt;}
.y12a{bottom:390.380533pt;}
.yd0{bottom:392.416000pt;}
.y86{bottom:393.524000pt;}
.y2f{bottom:397.852267pt;}
.y15e{bottom:400.218000pt;}
.y66{bottom:402.834400pt;}
.y106{bottom:403.621333pt;}
.y129{bottom:407.708533pt;}
.ycf{bottom:409.744000pt;}
.y85{bottom:410.852000pt;}
.y15d{bottom:413.551333pt;}
.y2e{bottom:413.850267pt;}
.y105{bottom:418.377333pt;}
.y128{bottom:425.036533pt;}
.y15c{bottom:426.884667pt;}
.yce{bottom:427.072000pt;}
.y84{bottom:428.185333pt;}
.y2d{bottom:429.848267pt;}
.y104{bottom:433.133333pt;}
.y65{bottom:436.340933pt;}
.y15b{bottom:440.218000pt;}
.y127{bottom:442.364533pt;}
.ycd{bottom:444.400000pt;}
.y2c{bottom:445.846267pt;}
.y103{bottom:447.889333pt;}
.y15a{bottom:453.551333pt;}
.y64{bottom:453.668933pt;}
.y126{bottom:459.692533pt;}
.y83{bottom:460.244000pt;}
.ycc{bottom:461.728000pt;}
.y2b{bottom:461.844267pt;}
.y102{bottom:462.645333pt;}
.y159{bottom:466.884667pt;}
.y63{bottom:470.996933pt;}
.y125{bottom:477.020533pt;}
.y82{bottom:477.572000pt;}
.y2a{bottom:477.842267pt;}
.y101{bottom:477.933333pt;}
.ycb{bottom:479.056000pt;}
.y158{bottom:480.218000pt;}
.y62{bottom:488.324933pt;}
.y100{bottom:492.689333pt;}
.y29{bottom:493.840267pt;}
.y124{bottom:494.348533pt;}
.y81{bottom:494.900000pt;}
.y157{bottom:496.218000pt;}
.yca{bottom:496.384000pt;}
.y61{bottom:505.652933pt;}
.yff{bottom:507.445333pt;}
.y28{bottom:509.838267pt;}
.y123{bottom:511.676533pt;}
.y80{bottom:512.228000pt;}
.yc9{bottom:513.712000pt;}
.yfe{bottom:522.201333pt;}
.y60{bottom:522.980933pt;}
.y27{bottom:525.836267pt;}
.y122{bottom:529.004533pt;}
.y7f{bottom:529.556000pt;}
.yc8{bottom:531.040000pt;}
.y156{bottom:531.221200pt;}
.yfd{bottom:536.957333pt;}
.y5f{bottom:540.308933pt;}
.y26{bottom:541.834267pt;}
.y121{bottom:546.332533pt;}
.y7e{bottom:546.884000pt;}
.yc7{bottom:548.368000pt;}
.y155{bottom:548.549200pt;}
.yfc{bottom:551.713333pt;}
.y5e{bottom:557.636933pt;}
.y25{bottom:561.834933pt;}
.y120{bottom:563.660533pt;}
.y7d{bottom:564.212000pt;}
.yc6{bottom:565.696000pt;}
.y154{bottom:565.877200pt;}
.yfb{bottom:566.469333pt;}
.y5d{bottom:574.964933pt;}
.y24{bottom:577.832933pt;}
.y11f{bottom:580.988533pt;}
.yfa{bottom:581.225333pt;}
.y7c{bottom:581.540000pt;}
.yc5{bottom:583.024000pt;}
.y153{bottom:583.205200pt;}
.y5c{bottom:592.292933pt;}
.y23{bottom:593.830933pt;}
.yf9{bottom:595.981333pt;}
.y11e{bottom:598.316533pt;}
.y7b{bottom:598.868000pt;}
.yc4{bottom:600.352000pt;}
.y152{bottom:600.533200pt;}
.y5b{bottom:609.620933pt;}
.yf8{bottom:610.737333pt;}
.y11d{bottom:615.644533pt;}
.y7a{bottom:616.196000pt;}
.yc3{bottom:617.680000pt;}
.y151{bottom:617.861200pt;}
.y22{bottom:621.161600pt;}
.yf7{bottom:625.493333pt;}
.y5a{bottom:626.948933pt;}
.y11c{bottom:632.972533pt;}
.y21{bottom:633.161600pt;}
.y79{bottom:633.524000pt;}
.yc2{bottom:635.008000pt;}
.y150{bottom:635.189200pt;}
.yf6{bottom:640.249333pt;}
.y59{bottom:644.276933pt;}
.y20{bottom:645.161600pt;}
.y11b{bottom:650.300533pt;}
.y78{bottom:650.852000pt;}
.yc1{bottom:652.336000pt;}
.y14f{bottom:652.517200pt;}
.yf5{bottom:655.005333pt;}
.y1f{bottom:657.161600pt;}
.y58{bottom:661.604933pt;}
.y11a{bottom:667.628533pt;}
.y77{bottom:668.185333pt;}
.y1e{bottom:669.161733pt;}
.yc0{bottom:669.664000pt;}
.yf4{bottom:669.761333pt;}
.y14e{bottom:669.845200pt;}
.y57{bottom:678.932933pt;}
.y1d{bottom:681.161600pt;}
.yf3{bottom:684.517333pt;}
.y119{bottom:684.956533pt;}
.ybf{bottom:686.992000pt;}
.y14d{bottom:687.173200pt;}
.y1c{bottom:693.161600pt;}
.y56{bottom:696.260933pt;}
.yf2{bottom:699.273333pt;}
.y118{bottom:702.284533pt;}
.ybe{bottom:704.320000pt;}
.y14c{bottom:704.501200pt;}
.y1b{bottom:705.161600pt;}
.y55{bottom:713.588933pt;}
.yf1{bottom:714.029333pt;}
.yaa{bottom:714.241333pt;}
.y1a{bottom:717.161600pt;}
.y117{bottom:719.612533pt;}
.ybd{bottom:721.648000pt;}
.y14b{bottom:721.829200pt;}
.yf0{bottom:728.785333pt;}
.y19{bottom:729.161600pt;}
.y54{bottom:730.916933pt;}
.ybc{bottom:738.976000pt;}
.y14a{bottom:739.157200pt;}
.y18{bottom:741.161600pt;}
.yef{bottom:743.541333pt;}
.ya6{bottom:744.241333pt;}
.y53{bottom:748.244933pt;}
.y17{bottom:753.161600pt;}
.y19f{bottom:755.877467pt;}
.y18b{bottom:755.924133pt;}
.ya8{bottom:756.232000pt;}
.ybb{bottom:756.304000pt;}
.y149{bottom:756.485200pt;}
.yee{bottom:758.297333pt;}
.y52{bottom:765.572933pt;}
.y19e{bottom:767.880133pt;}
.y18a{bottom:767.926800pt;}
.y16{bottom:769.364400pt;}
.y177{bottom:771.154267pt;}
.yed{bottom:773.053333pt;}
.yba{bottom:773.632000pt;}
.y148{bottom:773.813200pt;}
.y19d{bottom:779.882800pt;}
.y189{bottom:779.929467pt;}
.y15{bottom:782.497600pt;}
.y51{bottom:782.906267pt;}
.ya3{bottom:784.186667pt;}
.y176{bottom:784.487600pt;}
.yec{bottom:787.809333pt;}
.ya5{bottom:788.956623pt;}
.yb9{bottom:790.960000pt;}
.y147{bottom:791.141200pt;}
.y19c{bottom:791.885467pt;}
.y188{bottom:791.932133pt;}
.ya2{bottom:793.741333pt;}
.y14{bottom:795.830933pt;}
.ya4{bottom:798.512463pt;}
.yeb{bottom:802.565333pt;}
.y19b{bottom:803.888133pt;}
.y187{bottom:803.934800pt;}
.y50{bottom:806.906267pt;}
.yb8{bottom:808.288000pt;}
.y146{bottom:808.469200pt;}
.y13{bottom:809.164267pt;}
.y19a{bottom:815.890800pt;}
.y186{bottom:815.937467pt;}
.yea{bottom:817.321333pt;}
.ya1{bottom:819.755707pt;}
.y12{bottom:822.497600pt;}
.y45{bottom:824.880000pt;}
.yb7{bottom:825.616000pt;}
.y145{bottom:825.797200pt;}
.y199{bottom:827.893467pt;}
.y185{bottom:827.940133pt;}
.ya0{bottom:828.348000pt;}
.ye9{bottom:832.077333pt;}
.y198{bottom:839.896133pt;}
.y184{bottom:839.942800pt;}
.yb6{bottom:842.944000pt;}
.y4f{bottom:843.020800pt;}
.y144{bottom:843.125200pt;}
.y11{bottom:846.489600pt;}
.ye8{bottom:846.833333pt;}
.y197{bottom:851.898800pt;}
.y183{bottom:851.945467pt;}
.yb5{bottom:860.272000pt;}
.y4e{bottom:860.348800pt;}
.y143{bottom:860.453200pt;}
.ye7{bottom:861.589333pt;}
.y196{bottom:863.901467pt;}
.y182{bottom:863.948133pt;}
.y9d{bottom:864.119852pt;}
.y9c{bottom:873.811067pt;}
.y195{bottom:875.904133pt;}
.y181{bottom:875.950800pt;}
.ye6{bottom:876.345333pt;}
.yb4{bottom:877.600000pt;}
.y4d{bottom:877.676800pt;}
.y142{bottom:877.781200pt;}
.y10{bottom:878.493600pt;}
.y194{bottom:887.906800pt;}
.y180{bottom:887.953467pt;}
.ye5{bottom:891.101333pt;}
.yb3{bottom:894.928000pt;}
.y4c{bottom:895.004800pt;}
.y141{bottom:895.109200pt;}
.y193{bottom:899.909467pt;}
.y17f{bottom:899.956133pt;}
.ye4{bottom:905.857333pt;}
.y99{bottom:909.147036pt;}
.yf{bottom:910.497600pt;}
.y192{bottom:911.912133pt;}
.y17e{bottom:911.958800pt;}
.yb2{bottom:912.256000pt;}
.y4b{bottom:912.332800pt;}
.y140{bottom:912.437200pt;}
.y98{bottom:917.882667pt;}
.ye3{bottom:920.613333pt;}
.y191{bottom:923.914800pt;}
.y17d{bottom:923.961467pt;}
.yb1{bottom:929.584000pt;}
.y4a{bottom:929.660800pt;}
.y13f{bottom:929.765200pt;}
.y190{bottom:935.917467pt;}
.y17c{bottom:935.964133pt;}
.ye2{bottom:939.373333pt;}
.y9f{bottom:940.169728pt;}
.yb0{bottom:946.912000pt;}
.y49{bottom:946.988800pt;}
.y13e{bottom:947.093200pt;}
.y18f{bottom:947.920133pt;}
.y17b{bottom:947.966800pt;}
.y9e{bottom:948.522667pt;}
.y18e{bottom:959.922800pt;}
.y17a{bottom:959.969467pt;}
.yaf{bottom:964.240000pt;}
.y48{bottom:964.316800pt;}
.y13d{bottom:964.421200pt;}
.y9b{bottom:969.781170pt;}
.ye1{bottom:969.797333pt;}
.y18d{bottom:971.925467pt;}
.y179{bottom:971.972133pt;}
.y1{bottom:977.731600pt;}
.y9a{bottom:978.516800pt;}
.yae{bottom:981.568000pt;}
.y47{bottom:981.644800pt;}
.y13c{bottom:981.749200pt;}
.ye0{bottom:983.130667pt;}
.y18c{bottom:983.928133pt;}
.y178{bottom:983.974800pt;}
.y3{bottom:1006.343200pt;}
.h5{height:0.396267pt;}
.hb{height:18.307520pt;}
.h14{height:19.263182pt;}
.h13{height:21.659904pt;}
.h12{height:22.073990pt;}
.h15{height:22.101710pt;}
.h19{height:23.584000pt;}
.h1b{height:26.730667pt;}
.h17{height:27.514667pt;}
.h6{height:27.738667pt;}
.h18{height:29.642667pt;}
.h3{height:30.549333pt;}
.h10{height:31.062500pt;}
.h1a{height:31.658667pt;}
.h1c{height:31.701333pt;}
.ha{height:32.213333pt;}
.h11{height:33.637333pt;}
.hd{height:35.117653pt;}
.he{height:35.118187pt;}
.hc{height:35.118720pt;}
.h7{height:35.424533pt;}
.hf{height:36.277333pt;}
.h9{height:40.460800pt;}
.h4{height:47.104000pt;}
.h2{height:47.168000pt;}
.h8{height:80.192000pt;}
.h16{height:246.612000pt;}
.h1{height:1043.333333pt;}
.h0{height:1043.520000pt;}
.w1{width:310.901333pt;}
.w0{width:792.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.466667pt;}
.x21{left:67.728000pt;}
.x1f{left:72.133333pt;}
.x3{left:74.800000pt;}
.x1{left:76.133333pt;}
.x4{left:78.133467pt;}
.x20{left:83.464000pt;}
.x1b{left:86.802667pt;}
.x1a{left:149.630800pt;}
.x18{left:242.524133pt;}
.x7{left:352.042933pt;}
.x5{left:407.998800pt;}
.x22{left:410.261333pt;}
.x17{left:411.816000pt;}
.x1d{left:414.666667pt;}
.x1c{left:419.328000pt;}
.x8{left:420.666667pt;}
.x1e{left:425.997333pt;}
.x10{left:433.049867pt;}
.x11{left:440.622870pt;}
.x15{left:441.759467pt;}
.x14{left:446.272533pt;}
.x9{left:473.174800pt;}
.xd{left:482.430000pt;}
.xb{left:490.114933pt;}
.xc{left:534.740706pt;}
.xa{left:536.975958pt;}
.x19{left:567.530800pt;}
.x16{left:608.954814pt;}
.x12{left:617.517467pt;}
.x13{left:627.065343pt;}
.xe{left:634.836133pt;}
.xf{left:649.658777pt;}
.x6{left:762.440000pt;}
}




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