
    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_be0059296df473c420a19c78.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.925293;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_90a0509bec4a7d50de25aaca.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_f9c0244f3d3fc8ae6ee74aa7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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_a523d8825cdd1552e25b81c1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3caeae01c3506a018cdb2ecb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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_59b0dafc6638b18d004292a3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1ceeb3a774f43c8d7e95973d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881836;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_d90e10dd47bb8c8b03ed3b29.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727539;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_9db83a6f5449eb8458f26efd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.757812;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-30.240000px;}
.v2{vertical-align:-18.720000px;}
.v4{vertical-align:-8.640000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.720000px;}
.ls21{letter-spacing:-0.036000px;}
.ls19{letter-spacing:-0.032400px;}
.ls13{letter-spacing:-0.028800px;}
.ls8{letter-spacing:-0.021600px;}
.lse{letter-spacing:-0.014400px;}
.ls9{letter-spacing:-0.010800px;}
.lsc{letter-spacing:-0.007200px;}
.ls7{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.001800px;}
.ls2e{letter-spacing:0.002400px;}
.ls30{letter-spacing:0.005400px;}
.ls40{letter-spacing:0.006000px;}
.ls6e{letter-spacing:0.006600px;}
.ls81{letter-spacing:0.007080px;}
.ls2{letter-spacing:0.007200px;}
.ls5{letter-spacing:0.014400px;}
.ls8f{letter-spacing:0.015000px;}
.ls72{letter-spacing:0.015600px;}
.ls0{letter-spacing:0.021600px;}
.ls11{letter-spacing:0.028800px;}
.ls31{letter-spacing:0.032400px;}
.ls10{letter-spacing:0.036000px;}
.ls35{letter-spacing:0.039000px;}
.lsa{letter-spacing:0.043200px;}
.ls90{letter-spacing:0.057600px;}
.ls32{letter-spacing:0.064800px;}
.ls5a{letter-spacing:0.066096px;}
.ls7b{letter-spacing:0.115200px;}
.ls18{letter-spacing:0.144000px;}
.ls4e{letter-spacing:0.161160px;}
.lsb{letter-spacing:0.247104px;}
.ls1{letter-spacing:0.247440px;}
.ls4{letter-spacing:0.248040px;}
.ls50{letter-spacing:0.251520px;}
.ls52{letter-spacing:0.251856px;}
.ls42{letter-spacing:0.252120px;}
.ls3{letter-spacing:0.279960px;}
.ls6{letter-spacing:0.280560px;}
.ls4d{letter-spacing:0.280800px;}
.ls47{letter-spacing:0.354240px;}
.ls1f{letter-spacing:0.432000px;}
.ls63{letter-spacing:0.484128px;}
.ls17{letter-spacing:0.504000px;}
.ls4a{letter-spacing:0.513648px;}
.ls5c{letter-spacing:0.516840px;}
.ls45{letter-spacing:0.537264px;}
.ls77{letter-spacing:0.543168px;}
.ls49{letter-spacing:0.608112px;}
.ls48{letter-spacing:0.614016px;}
.ls46{letter-spacing:0.631728px;}
.ls8c{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.720300px;}
.ls59{letter-spacing:0.829080px;}
.ls62{letter-spacing:0.832464px;}
.ls67{letter-spacing:0.936000px;}
.ls2f{letter-spacing:1.143000px;}
.ls75{letter-spacing:1.332000px;}
.ls1c{letter-spacing:1.425600px;}
.ls7e{letter-spacing:1.936800px;}
.ls74{letter-spacing:2.131200px;}
.ls58{letter-spacing:2.287800px;}
.ls61{letter-spacing:2.289600px;}
.ls80{letter-spacing:2.296800px;}
.ls7d{letter-spacing:2.340000px;}
.ls5e{letter-spacing:2.476800px;}
.ls66{letter-spacing:2.520000px;}
.ls5b{letter-spacing:2.528880px;}
.ls34{letter-spacing:2.634600px;}
.ls69{letter-spacing:2.649600px;}
.ls1b{letter-spacing:3.103200px;}
.ls85{letter-spacing:3.384000px;}
.ls3e{letter-spacing:3.484800px;}
.ls43{letter-spacing:3.924000px;}
.ls70{letter-spacing:4.038000px;}
.ls76{letter-spacing:4.039200px;}
.ls3b{letter-spacing:4.320000px;}
.ls27{letter-spacing:4.363200px;}
.ls24{letter-spacing:4.500000px;}
.ls41{letter-spacing:4.642800px;}
.ls1a{letter-spacing:4.701600px;}
.ls37{letter-spacing:5.004000px;}
.ls4b{letter-spacing:5.140800px;}
.ls25{letter-spacing:5.227200px;}
.ls78{letter-spacing:5.241600px;}
.ls44{letter-spacing:5.392800px;}
.lsd{letter-spacing:5.515200px;}
.ls6a{letter-spacing:5.529600px;}
.ls6c{letter-spacing:5.738400px;}
.ls3f{letter-spacing:5.925600px;}
.ls3a{letter-spacing:6.084000px;}
.ls7a{letter-spacing:6.220800px;}
.ls87{letter-spacing:6.364800px;}
.ls6d{letter-spacing:6.400800px;}
.ls36{letter-spacing:6.682200px;}
.ls5d{letter-spacing:6.789000px;}
.ls64{letter-spacing:6.789600px;}
.ls68{letter-spacing:6.969600px;}
.ls26{letter-spacing:6.976800px;}
.ls1e{letter-spacing:7.027200px;}
.ls4c{letter-spacing:7.394400px;}
.ls56{letter-spacing:7.768800px;}
.ls29{letter-spacing:8.056800px;}
.ls14{letter-spacing:8.208000px;}
.ls83{letter-spacing:8.625600px;}
.ls73{letter-spacing:8.631600px;}
.ls79{letter-spacing:8.632800px;}
.ls6f{letter-spacing:9.036000px;}
.ls2b{letter-spacing:9.064800px;}
.ls8a{letter-spacing:9.093600px;}
.ls22{letter-spacing:9.136800px;}
.ls1d{letter-spacing:9.691200px;}
.ls15{letter-spacing:10.332000px;}
.ls2d{letter-spacing:10.563600px;}
.ls55{letter-spacing:11.160000px;}
.ls57{letter-spacing:11.210400px;}
.ls8d{letter-spacing:11.577600px;}
.ls8b{letter-spacing:11.592000px;}
.ls39{letter-spacing:11.635200px;}
.ls28{letter-spacing:11.685600px;}
.ls84{letter-spacing:12.139200px;}
.ls8e{letter-spacing:14.544000px;}
.ls54{letter-spacing:15.177600px;}
.ls7c{letter-spacing:15.595200px;}
.ls53{letter-spacing:15.796800px;}
.ls4f{letter-spacing:15.820800px;}
.ls91{letter-spacing:15.840000px;}
.ls5f{letter-spacing:17.028000px;}
.ls23{letter-spacing:17.193600px;}
.ls89{letter-spacing:17.467200px;}
.ls16{letter-spacing:18.237600px;}
.ls38{letter-spacing:20.008800px;}
.ls60{letter-spacing:21.088800px;}
.ls82{letter-spacing:21.096000px;}
.ls3c{letter-spacing:21.290400px;}
.ls2a{letter-spacing:21.427200px;}
.ls12{letter-spacing:22.082400px;}
.lsf{letter-spacing:22.104000px;}
.ls6b{letter-spacing:24.868800px;}
.ls20{letter-spacing:25.372800px;}
.ls88{letter-spacing:25.761600px;}
.ls86{letter-spacing:26.884800px;}
.ls71{letter-spacing:28.531800px;}
.ls65{letter-spacing:29.908200px;}
.ls3d{letter-spacing:32.328000px;}
.ls7f{letter-spacing:52.358400px;}
.ls51{letter-spacing:77.296800px;}
.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;}
}
.ws136{word-spacing:-52.430400px;}
.ws87{word-spacing:-32.400000px;}
.ws160{word-spacing:-26.956800px;}
.ws170{word-spacing:-25.833600px;}
.ws45{word-spacing:-25.444800px;}
.wsff{word-spacing:-24.940800px;}
.ws12{word-spacing:-22.154400px;}
.ws5e{word-spacing:-21.499200px;}
.ws85{word-spacing:-21.362400px;}
.ws14f{word-spacing:-21.168000px;}
.wscf{word-spacing:-21.160800px;}
.ws77{word-spacing:-20.080800px;}
.ws21{word-spacing:-18.309600px;}
.ws177{word-spacing:-17.539200px;}
.ws4a{word-spacing:-17.265600px;}
.wscd{word-spacing:-17.100000px;}
.wsab{word-spacing:-15.868800px;}
.ws129{word-spacing:-15.667200px;}
.wsb7{word-spacing:-15.249600px;}
.ws188{word-spacing:-14.616000px;}
.ws154{word-spacing:-12.211200px;}
.ws59{word-spacing:-11.757600px;}
.ws79{word-spacing:-11.707200px;}
.ws184{word-spacing:-11.649600px;}
.wsc2{word-spacing:-11.282400px;}
.wsb9{word-spacing:-11.232000px;}
.wsd2{word-spacing:-10.874736px;}
.ws1c{word-spacing:-10.404000px;}
.ws3c{word-spacing:-9.763200px;}
.ws48{word-spacing:-9.208800px;}
.ws182{word-spacing:-9.165600px;}
.ws62{word-spacing:-9.136800px;}
.ws108{word-spacing:-9.108000px;}
.ws115{word-spacing:-8.704800px;}
.ws150{word-spacing:-8.697600px;}
.ws19{word-spacing:-8.280000px;}
.ws5c{word-spacing:-8.128800px;}
.wsba{word-spacing:-7.840800px;}
.wsa2{word-spacing:-7.466400px;}
.ws40{word-spacing:-7.099200px;}
.ws4f{word-spacing:-7.048800px;}
.wse4{word-spacing:-7.041600px;}
.wsda{word-spacing:-6.861600px;}
.ws106{word-spacing:-6.472800px;}
.ws166{word-spacing:-6.436800px;}
.ws11b{word-spacing:-6.292800px;}
.ws7a{word-spacing:-6.156000px;}
.ws8a{word-spacing:-5.997600px;}
.ws102{word-spacing:-5.810400px;}
.wsf9{word-spacing:-5.601600px;}
.wsb{word-spacing:-5.587200px;}
.ws92{word-spacing:-5.464800px;}
.ws114{word-spacing:-5.313600px;}
.ws4e{word-spacing:-5.299200px;}
.wsa1{word-spacing:-5.212800px;}
.ws70{word-spacing:-5.076000px;}
.ws31{word-spacing:-4.773600px;}
.ws4d{word-spacing:-4.572000px;}
.ws50{word-spacing:-4.435200px;}
.ws7b{word-spacing:-4.392000px;}
.ws10d{word-spacing:-4.111200px;}
.ws91{word-spacing:-3.996000px;}
.ws89{word-spacing:-3.556800px;}
.ws15b{word-spacing:-3.456000px;}
.ws35{word-spacing:-3.175200px;}
.wsf2{word-spacing:-2.721600px;}
.wse2{word-spacing:-2.592000px;}
.wsc9{word-spacing:-2.548800px;}
.ws12a{word-spacing:-2.412000px;}
.ws13f{word-spacing:-2.368800px;}
.wsd1{word-spacing:-2.361600px;}
.ws109{word-spacing:-2.203200px;}
.ws133{word-spacing:-2.008800px;}
.ws3b{word-spacing:-1.497600px;}
.ws10b{word-spacing:-1.404000px;}
.wse3{word-spacing:-1.008000px;}
.wsd4{word-spacing:-0.891504px;}
.ws94{word-spacing:-0.690768px;}
.ws96{word-spacing:-0.673056px;}
.ws97{word-spacing:-0.667152px;}
.ws10e{word-spacing:-0.602208px;}
.ws93{word-spacing:-0.596304px;}
.ws15d{word-spacing:-0.576000px;}
.ws98{word-spacing:-0.572688px;}
.wsd5{word-spacing:-0.543168px;}
.ws43{word-spacing:-0.504000px;}
.ws95{word-spacing:-0.413280px;}
.wsa3{word-spacing:-0.352800px;}
.ws122{word-spacing:-0.187200px;}
.ws6d{word-spacing:-0.172800px;}
.ws6c{word-spacing:-0.140400px;}
.ws2{word-spacing:-0.129600px;}
.ws132{word-spacing:-0.115200px;}
.ws18{word-spacing:-0.108000px;}
.ws11{word-spacing:-0.100800px;}
.ws3a{word-spacing:-0.093600px;}
.ws1{word-spacing:-0.086400px;}
.ws7{word-spacing:-0.079200px;}
.ws6{word-spacing:-0.072000px;}
.wsa{word-spacing:-0.064800px;}
.ws99{word-spacing:-0.059040px;}
.ws16{word-spacing:-0.057600px;}
.wsc{word-spacing:-0.050400px;}
.ws8f{word-spacing:-0.047520px;}
.ws15{word-spacing:-0.043200px;}
.ws47{word-spacing:-0.036000px;}
.wsf{word-spacing:0.000000px;}
.ws17{word-spacing:9.950400px;}
.ws39{word-spacing:10.015200px;}
.ws13e{word-spacing:10.022400px;}
.ws36{word-spacing:10.051200px;}
.ws38{word-spacing:10.087200px;}
.ws8{word-spacing:10.091208px;}
.ws199{word-spacing:10.152000px;}
.ws37{word-spacing:10.180800px;}
.wsfd{word-spacing:10.216800px;}
.ws1b{word-spacing:10.260000px;}
.ws103{word-spacing:10.372500px;}
.wsa0{word-spacing:10.411200px;}
.ws104{word-spacing:10.432800px;}
.ws105{word-spacing:10.454400px;}
.ws9{word-spacing:10.461600px;}
.ws65{word-spacing:10.480200px;}
.ws9f{word-spacing:10.483200px;}
.ws63{word-spacing:10.504800px;}
.ws64{word-spacing:10.512000px;}
.ws158{word-spacing:10.569600px;}
.wsf3{word-spacing:10.598400px;}
.ws1a{word-spacing:10.634400px;}
.ws13d{word-spacing:10.648800px;}
.ws16a{word-spacing:10.670400px;}
.ws5b{word-spacing:10.756800px;}
.ws14a{word-spacing:10.836000px;}
.ws178{word-spacing:10.929600px;}
.ws9a{word-spacing:10.972800px;}
.ws9b{word-spacing:11.030400px;}
.ws179{word-spacing:11.037600px;}
.wsb8{word-spacing:11.059200px;}
.ws18b{word-spacing:11.066400px;}
.ws66{word-spacing:11.088000px;}
.ws67{word-spacing:11.095200px;}
.ws18a{word-spacing:11.109600px;}
.wsc3{word-spacing:11.138400px;}
.wsc1{word-spacing:11.210520px;}
.wsc6{word-spacing:11.282400px;}
.wsc7{word-spacing:11.325000px;}
.wsc8{word-spacing:11.325600px;}
.ws78{word-spacing:11.484000px;}
.ws185{word-spacing:11.505600px;}
.ws57{word-spacing:11.520000px;}
.ws159{word-spacing:11.548800px;}
.ws5a{word-spacing:11.584800px;}
.ws10a{word-spacing:11.592000px;}
.ws58{word-spacing:11.613600px;}
.wse8{word-spacing:11.786400px;}
.ws55{word-spacing:11.844000px;}
.ws144{word-spacing:11.916000px;}
.ws173{word-spacing:11.966400px;}
.ws145{word-spacing:11.988000px;}
.ws153{word-spacing:12.067200px;}
.ws151{word-spacing:12.074400px;}
.ws152{word-spacing:12.117600px;}
.ws16c{word-spacing:12.189600px;}
.ws141{word-spacing:12.326400px;}
.ws140{word-spacing:12.333600px;}
.ws6b{word-spacing:12.405600px;}
.ws3e{word-spacing:12.492000px;}
.ws3d{word-spacing:12.499200px;}
.ws3f{word-spacing:12.520800px;}
.wsdb{word-spacing:12.794400px;}
.ws14b{word-spacing:12.952800px;}
.wsbd{word-spacing:12.988200px;}
.wsd9{word-spacing:12.988800px;}
.ws113{word-spacing:13.010400px;}
.ws9c{word-spacing:13.046400px;}
.wsbe{word-spacing:13.053600px;}
.wsdc{word-spacing:13.176300px;}
.wsdd{word-spacing:13.284000px;}
.ws29{word-spacing:13.291200px;}
.ws28{word-spacing:13.320000px;}
.ws137{word-spacing:13.327200px;}
.ws27{word-spacing:13.334400px;}
.ws120{word-spacing:13.377600px;}
.ws26{word-spacing:13.392000px;}
.ws11f{word-spacing:13.399200px;}
.wsae{word-spacing:13.449600px;}
.wsaf{word-spacing:13.478400px;}
.ws121{word-spacing:13.492800px;}
.ws155{word-spacing:13.780800px;}
.ws2d{word-spacing:13.831200px;}
.ws175{word-spacing:13.982400px;}
.ws15a{word-spacing:14.292000px;}
.ws9d{word-spacing:14.328000px;}
.ws10c{word-spacing:14.342400px;}
.wsbc{word-spacing:14.443200px;}
.ws128{word-spacing:14.449800px;}
.ws189{word-spacing:14.450400px;}
.ws125{word-spacing:14.464800px;}
.ws127{word-spacing:14.467800px;}
.ws126{word-spacing:14.479200px;}
.wsbb{word-spacing:14.493600px;}
.ws17f{word-spacing:14.601600px;}
.ws180{word-spacing:14.616000px;}
.ws9e{word-spacing:14.637600px;}
.ws172{word-spacing:14.716800px;}
.wse9{word-spacing:14.882400px;}
.ws130{word-spacing:14.990400px;}
.ws12f{word-spacing:14.997600px;}
.wsb6{word-spacing:15.105600px;}
.ws12d{word-spacing:15.242400px;}
.wsa7{word-spacing:15.269232px;}
.ws117{word-spacing:15.300000px;}
.wse{word-spacing:15.321600px;}
.wsd{word-spacing:15.350400px;}
.ws12c{word-spacing:15.357600px;}
.wse1{word-spacing:15.508800px;}
.wsd7{word-spacing:15.523200px;}
.wsdf{word-spacing:15.553500px;}
.wsa4{word-spacing:15.602400px;}
.wsd6{word-spacing:15.631200px;}
.wsa6{word-spacing:15.645600px;}
.wsa9{word-spacing:15.674400px;}
.wse0{word-spacing:15.705600px;}
.ws149{word-spacing:15.710400px;}
.wsa5{word-spacing:15.724800px;}
.wsaa{word-spacing:15.725400px;}
.ws17b{word-spacing:15.768000px;}
.ws148{word-spacing:15.832800px;}
.wsbf{word-spacing:16.286400px;}
.ws116{word-spacing:16.293600px;}
.ws110{word-spacing:16.365600px;}
.ws10f{word-spacing:16.430400px;}
.ws14d{word-spacing:16.603200px;}
.ws14c{word-spacing:16.668000px;}
.ws11a{word-spacing:16.725600px;}
.ws15e{word-spacing:16.804800px;}
.ws24{word-spacing:16.920000px;}
.ws25{word-spacing:16.934400px;}
.wscc{word-spacing:16.956000px;}
.wscb{word-spacing:17.001600px;}
.ws49{word-spacing:17.035200px;}
.ws4b{word-spacing:17.121600px;}
.ws176{word-spacing:17.395200px;}
.ws192{word-spacing:17.452800px;}
.wsf1{word-spacing:17.762400px;}
.wsf0{word-spacing:17.791200px;}
.ws197{word-spacing:17.920800px;}
.ws198{word-spacing:18.007200px;}
.ws111{word-spacing:18.036000px;}
.ws20{word-spacing:18.122400px;}
.ws1e{word-spacing:18.165600px;}
.ws1f{word-spacing:18.172800px;}
.ws1d{word-spacing:18.230400px;}
.ws73{word-spacing:18.496800px;}
.ws72{word-spacing:18.518400px;}
.wsfa{word-spacing:18.561600px;}
.ws124{word-spacing:18.662400px;}
.ws138{word-spacing:18.734400px;}
.ws131{word-spacing:18.921600px;}
.wsd3{word-spacing:19.267200px;}
.ws17d{word-spacing:19.728000px;}
.wsf4{word-spacing:19.907700px;}
.ws76{word-spacing:19.936800px;}
.wsf5{word-spacing:19.951200px;}
.ws75{word-spacing:19.958400px;}
.wsb1{word-spacing:20.109600px;}
.ws18f{word-spacing:20.786400px;}
.wsa8{word-spacing:20.901600px;}
.wsd0{word-spacing:21.009600px;}
.ws14e{word-spacing:21.024000px;}
.ws174{word-spacing:21.124800px;}
.ws81{word-spacing:21.211200px;}
.ws84{word-spacing:21.218400px;}
.ws83{word-spacing:21.225600px;}
.ws80{word-spacing:21.246300px;}
.ws82{word-spacing:21.290400px;}
.ws60{word-spacing:21.348000px;}
.ws5d{word-spacing:21.355200px;}
.ws5f{word-spacing:21.362400px;}
.ws61{word-spacing:21.391200px;}
.ws46{word-spacing:21.484800px;}
.ws107{word-spacing:21.585600px;}
.ws157{word-spacing:21.621600px;}
.ws118{word-spacing:21.636000px;}
.ws195{word-spacing:21.664800px;}
.ws119{word-spacing:21.686400px;}
.ws156{word-spacing:21.700800px;}
.ws11c{word-spacing:21.715200px;}
.ws8c{word-spacing:21.787200px;}
.ws8b{word-spacing:21.818700px;}
.ws10{word-spacing:22.010400px;}
.ws11e{word-spacing:22.147200px;}
.ws11d{word-spacing:22.193100px;}
.wsc4{word-spacing:22.197600px;}
.ws17c{word-spacing:22.248000px;}
.wsc5{word-spacing:22.276800px;}
.ws190{word-spacing:22.536000px;}
.wsd8{word-spacing:22.543200px;}
.ws18e{word-spacing:22.572000px;}
.ws18d{word-spacing:22.600800px;}
.wsea{word-spacing:22.608000px;}
.wsb0{word-spacing:22.615200px;}
.wseb{word-spacing:22.629600px;}
.wsb2{word-spacing:22.694400px;}
.ws123{word-spacing:22.845600px;}
.ws2f{word-spacing:23.076000px;}
.ws30{word-spacing:23.140800px;}
.ws161{word-spacing:23.313600px;}
.ws164{word-spacing:23.328000px;}
.ws165{word-spacing:23.335200px;}
.ws163{word-spacing:23.342400px;}
.ws162{word-spacing:23.428800px;}
.ws15c{word-spacing:23.493600px;}
.ws16b{word-spacing:23.554800px;}
.ws17a{word-spacing:23.652000px;}
.ws6e{word-spacing:23.659200px;}
.ws193{word-spacing:23.673600px;}
.ws194{word-spacing:23.695200px;}
.ws6f{word-spacing:23.738400px;}
.ws2e{word-spacing:23.749200px;}
.ws13c{word-spacing:24.019200px;}
.ws139{word-spacing:24.028500px;}
.ws13a{word-spacing:24.084000px;}
.ws13b{word-spacing:24.134400px;}
.ws68{word-spacing:24.458400px;}
.ws69{word-spacing:24.580800px;}
.ws101{word-spacing:24.739200px;}
.ws100{word-spacing:24.799200px;}
.wsfe{word-spacing:24.804000px;}
.ws181{word-spacing:24.840000px;}
.ws196{word-spacing:24.984000px;}
.wsed{word-spacing:25.097400px;}
.wsec{word-spacing:25.119300px;}
.wsef{word-spacing:25.120800px;}
.wsee{word-spacing:25.142400px;}
.ws44{word-spacing:25.257600px;}
.ws12b{word-spacing:25.509600px;}
.wsb5{word-spacing:25.560000px;}
.wsb3{word-spacing:25.567200px;}
.wsb4{word-spacing:25.585200px;}
.ws16d{word-spacing:25.646400px;}
.ws16e{word-spacing:25.660800px;}
.ws8d{word-spacing:25.675200px;}
.ws171{word-spacing:25.682400px;}
.ws16f{word-spacing:25.689600px;}
.ws90{word-spacing:25.788600px;}
.ws8e{word-spacing:25.790400px;}
.ws169{word-spacing:26.467200px;}
.ws167{word-spacing:26.532000px;}
.ws168{word-spacing:26.582400px;}
.ws2c{word-spacing:26.748000px;}
.ws2a{word-spacing:26.769600px;}
.ws2b{word-spacing:26.798400px;}
.ws15f{word-spacing:26.812800px;}
.ws23{word-spacing:27.064800px;}
.ws22{word-spacing:27.086400px;}
.ws183{word-spacing:27.360000px;}
.ws34{word-spacing:28.195200px;}
.ws33{word-spacing:28.245600px;}
.ws32{word-spacing:28.267200px;}
.ws186{word-spacing:28.332000px;}
.ws52{word-spacing:28.432800px;}
.ws53{word-spacing:28.440000px;}
.ws51{word-spacing:28.447200px;}
.ws54{word-spacing:28.454400px;}
.ws112{word-spacing:28.533600px;}
.ws71{word-spacing:29.332800px;}
.ws42{word-spacing:29.419200px;}
.ws41{word-spacing:29.462400px;}
.wse6{word-spacing:29.836800px;}
.wse5{word-spacing:29.837100px;}
.wse7{word-spacing:29.894400px;}
.ws146{word-spacing:30.211200px;}
.ws147{word-spacing:30.232800px;}
.ws187{word-spacing:30.312000px;}
.wsf7{word-spacing:31.518600px;}
.wsf8{word-spacing:31.543200px;}
.wsf6{word-spacing:31.550400px;}
.ws4c{word-spacing:31.608000px;}
.ws86{word-spacing:32.234400px;}
.ws88{word-spacing:32.256000px;}
.wsad{word-spacing:32.824800px;}
.wsac{word-spacing:32.853600px;}
.ws17e{word-spacing:33.444000px;}
.ws13{word-spacing:34.243200px;}
.ws14{word-spacing:34.250400px;}
.ws6a{word-spacing:36.568800px;}
.wsfc{word-spacing:37.735200px;}
.wsfb{word-spacing:37.749300px;}
.wsc0{word-spacing:37.872000px;}
.ws18c{word-spacing:38.448000px;}
.ws7d{word-spacing:38.968800px;}
.ws7e{word-spacing:38.973600px;}
.ws7c{word-spacing:39.038400px;}
.wsde{word-spacing:39.326400px;}
.ws12e{word-spacing:41.716800px;}
.ws56{word-spacing:51.048000px;}
.ws135{word-spacing:52.286400px;}
.ws134{word-spacing:52.372800px;}
.ws191{word-spacing:57.060000px;}
.wsce{word-spacing:66.355200px;}
.ws3{word-spacing:96.228000px;}
.ws4{word-spacing:96.238800px;}
.ws142{word-spacing:105.242400px;}
.ws74{word-spacing:107.676000px;}
.ws143{word-spacing:117.396000px;}
.ws5{word-spacing:130.312800px;}
.ws7f{word-spacing:149.500800px;}
.ws0{word-spacing:299.419200px;}
.wsca{word-spacing:309.609000px;}
._1e{margin-left:-53.230500px;}
._1d{margin-left:-52.120500px;}
._18{margin-left:-32.559300px;}
._19{margin-left:-31.402800px;}
._1f{margin-left:-27.828000px;}
._12{margin-left:-25.927200px;}
._13{margin-left:-24.832800px;}
._5{margin-left:-22.255200px;}
._6{margin-left:-21.124800px;}
._16{margin-left:-19.495500px;}
._d{margin-left:-18.007200px;}
._14{margin-left:-16.646400px;}
._1a{margin-left:-15.380700px;}
._20{margin-left:-13.779300px;}
._15{margin-left:-12.096000px;}
._c{margin-left:-10.411200px;}
._a{margin-left:-9.115200px;}
._9{margin-left:-8.107200px;}
._11{margin-left:-6.768000px;}
._1{margin-left:-5.472000px;}
._f{margin-left:-4.356000px;}
._17{margin-left:-3.350100px;}
._10{margin-left:-2.347200px;}
._0{margin-left:-1.080000px;}
._3{width:1.065600px;}
._7{width:2.462400px;}
._b{width:4.053600px;}
._2{width:5.155200px;}
._4{width:6.465600px;}
._8{width:8.107200px;}
._e{width:9.676800px;}
._1c{width:10.728000px;}
._21{width:34.135200px;}
._1b{width:310.060500px;}
.fc2{color:rgb(255,0,0);}
.fc3{color:rgb(192,80,77);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs2{font-size:47.520000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.040000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:21.600000px;}
.y49{bottom:21.600015px;}
.y48{bottom:89.040000px;}
.y142{bottom:89.759970px;}
.y1a6{bottom:99.840000px;}
.y12e{bottom:101.639985px;}
.yec{bottom:103.079985px;}
.y1d6{bottom:105.239850px;}
.y75{bottom:105.599985px;}
.y8f{bottom:106.319970px;}
.yb6{bottom:107.040000px;}
.y47{bottom:110.280000px;}
.y141{bottom:110.639970px;}
.y14c{bottom:116.759970px;}
.ycc{bottom:117.839970px;}
.y162{bottom:122.159970px;}
.y12d{bottom:122.879970px;}
.yeb{bottom:124.319970px;}
.y1d5{bottom:126.479850px;}
.y74{bottom:126.479970px;}
.y8e{bottom:127.559970px;}
.yb5{bottom:127.920000px;}
.y46{bottom:131.520000px;}
.y140{bottom:131.879985px;}
.ycb{bottom:139.079985px;}
.y12c{bottom:144.119985px;}
.y1a5{bottom:144.120000px;}
.yea{bottom:145.199985px;}
.y1d4{bottom:147.359850px;}
.y1f0{bottom:147.359985px;}
.y73{bottom:147.719985px;}
.y8d{bottom:148.439985px;}
.y45{bottom:152.400000px;}
.y13f{bottom:153.119985px;}
.yca{bottom:159.959985px;}
.yb4{bottom:164.280000px;}
.y1a4{bottom:165.360000px;}
.y193{bottom:165.720000px;}
.ye9{bottom:166.439985px;}
.y1d3{bottom:168.599850px;}
.y161{bottom:168.599985px;}
.y72{bottom:168.959985px;}
.y13e{bottom:173.999985px;}
.y12b{bottom:180.119985px;}
.yc9{bottom:181.199985px;}
.y8c{bottom:184.439985px;}
.yfb{bottom:186.239985px;}
.y1a3{bottom:186.240000px;}
.y192{bottom:186.600000px;}
.ye8{bottom:187.319985px;}
.y44{bottom:188.400000px;}
.y1d2{bottom:189.839850px;}
.y71{bottom:189.839985px;}
.y160{bottom:191.639985px;}
.y13d{bottom:195.239985px;}
.y12a{bottom:200.999985px;}
.yc8{bottom:202.439985px;}
.y8b{bottom:205.679985px;}
.y1a2{bottom:207.480000px;}
.ye7{bottom:208.559985px;}
.y43{bottom:209.640000px;}
.y1d1{bottom:210.719850px;}
.y1ef{bottom:210.719985px;}
.y70{bottom:211.079985px;}
.y15f{bottom:213.599985px;}
.y129{bottom:222.239985px;}
.yfa{bottom:222.599985px;}
.y191{bottom:222.960000px;}
.y8a{bottom:226.919985px;}
.y1a1{bottom:228.360000px;}
.ye6{bottom:229.799985px;}
.y42{bottom:230.880000px;}
.y13c{bottom:231.239985px;}
.y1d0{bottom:231.959850px;}
.y6f{bottom:231.959985px;}
.y15e{bottom:234.839985px;}
.yc7{bottom:238.439985px;}
.y128{bottom:243.479985px;}
.y190{bottom:243.840000px;}
.y89{bottom:247.799985px;}
.ye5{bottom:250.679985px;}
.y41{bottom:251.760000px;}
.y13b{bottom:252.479985px;}
.y1cf{bottom:252.839850px;}
.y1ee{bottom:252.839985px;}
.y6e{bottom:253.199985px;}
.yf9{bottom:258.599985px;}
.yc6{bottom:259.679985px;}
.y127{bottom:264.359985px;}
.y18f{bottom:265.080000px;}
.y1a0{bottom:266.880000px;}
.y15d{bottom:271.559985px;}
.y40{bottom:273.000000px;}
.y13a{bottom:273.359985px;}
.y1ce{bottom:274.079850px;}
.y1ed{bottom:274.079985px;}
.y6d{bottom:274.439985px;}
.yf8{bottom:279.479985px;}
.y88{bottom:284.159985px;}
.y112{bottom:285.959985px;}
.ye4{bottom:287.039985px;}
.yc5{bottom:291.719985px;}
.y15c{bottom:292.799985px;}
.y3f{bottom:294.240000px;}
.y139{bottom:294.599985px;}
.y1cd{bottom:295.319850px;}
.y6c{bottom:295.319985px;}
.yf7{bottom:300.719985px;}
.y18e{bottom:301.080000px;}
.y111{bottom:307.199985px;}
.ye3{bottom:308.999985px;}
.ye2{bottom:309.359985px;}
.y3e{bottom:315.120000px;}
.y138{bottom:315.839985px;}
.y1cc{bottom:316.199850px;}
.y1ec{bottom:316.199985px;}
.y6b{bottom:316.559985px;}
.y87{bottom:320.159985px;}
.y126{bottom:321.599985px;}
.yf6{bottom:321.959985px;}
.y18d{bottom:322.320000px;}
.ye1{bottom:328.439985px;}
.ye0{bottom:328.799985px;}
.y3d{bottom:336.360000px;}
.y137{bottom:336.719985px;}
.y1cb{bottom:337.439850px;}
.y1eb{bottom:337.439985px;}
.y6a{bottom:337.799985px;}
.y86{bottom:341.039985px;}
.yf5{bottom:342.839985px;}
.y18c{bottom:343.200000px;}
.y19f{bottom:347.520000px;}
.ydf{bottom:347.879985px;}
.yde{bottom:348.239985px;}
.y110{bottom:349.319985px;}
.y15b{bottom:349.679985px;}
.yaa{bottom:351.839985px;}
.y136{bottom:357.959985px;}
.y1ca{bottom:358.679850px;}
.y69{bottom:358.679985px;}
.y125{bottom:361.199985px;}
.y85{bottom:362.279985px;}
.yf4{bottom:364.079985px;}
.y18b{bottom:364.440000px;}
.ydd{bottom:366.599985px;}
.ydc{bottom:367.319985px;}
.y19e{bottom:368.400000px;}
.y10f{bottom:370.559985px;}
.y15a{bottom:370.919985px;}
.y3c{bottom:372.360000px;}
.ya9{bottom:373.079985px;}
.y135{bottom:379.199985px;}
.y1c9{bottom:379.559850px;}
.y124{bottom:379.559985px;}
.y68{bottom:379.919985px;}
.y84{bottom:383.519985px;}
.ydb{bottom:384.959985px;}
.y18a{bottom:385.680000px;}
.y19d{bottom:389.640000px;}
.y10e{bottom:391.439985px;}
.y159{bottom:392.159985px;}
.y3b{bottom:393.600000px;}
.ya8{bottom:393.959985px;}
.y123{bottom:397.919985px;}
.yf3{bottom:400.079985px;}
.y1c8{bottom:400.799850px;}
.y67{bottom:400.799985px;}
.y83{bottom:404.399985px;}
.y189{bottom:406.560000px;}
.y19c{bottom:410.520000px;}
.y10d{bottom:412.679985px;}
.y158{bottom:413.039985px;}
.y3a{bottom:414.480000px;}
.ya7{bottom:415.199985px;}
.y122{bottom:416.279985px;}
.yda{bottom:418.799985px;}
.y134{bottom:421.319985px;}
.y1c7{bottom:421.679850px;}
.y1ea{bottom:421.679985px;}
.y179{bottom:425.279985px;}
.y82{bottom:425.639985px;}
.y188{bottom:427.800000px;}
.y19b{bottom:431.760000px;}
.y10c{bottom:433.919985px;}
.y157{bottom:434.279985px;}
.y39{bottom:435.720000px;}
.ya6{bottom:436.079985px;}
.y66{bottom:437.159985px;}
.y133{bottom:442.199985px;}
.y1c6{bottom:442.919850px;}
.y1e9{bottom:442.919985px;}
.y178{bottom:446.159985px;}
.y81{bottom:446.879985px;}
.y187{bottom:448.680000px;}
.y121{bottom:450.119985px;}
.y19a{bottom:453.000000px;}
.yd9{bottom:454.799985px;}
.y156{bottom:455.519985px;}
.y38{bottom:456.960000px;}
.yf2{bottom:457.319985px;}
.y65{bottom:458.039985px;}
.y132{bottom:463.439985px;}
.y1c5{bottom:464.159850px;}
.y1e8{bottom:464.159985px;}
.y80{bottom:467.759985px;}
.y120{bottom:471.359985px;}
.y199{bottom:473.880000px;}
.ya5{bottom:474.599985px;}
.y155{bottom:476.399985px;}
.y37{bottom:477.840000px;}
.yf1{bottom:478.559985px;}
.y64{bottom:479.279985px;}
.y177{bottom:482.159985px;}
.y131{bottom:484.679985px;}
.y1c4{bottom:485.039850px;}
.y1e7{bottom:485.039985px;}
.y186{bottom:485.040000px;}
.y7f{bottom:488.999985px;}
.yd8{bottom:491.159985px;}
.y11f{bottom:492.239985px;}
.y198{bottom:495.120000px;}
.y36{bottom:499.080000px;}
.yf0{bottom:499.439985px;}
.y63{bottom:500.519985px;}
.y176{bottom:503.399985px;}
.y185{bottom:505.920000px;}
.y1c3{bottom:506.279850px;}
.y1e6{bottom:506.279985px;}
.yd7{bottom:512.039985px;}
.y154{bottom:512.399985px;}
.y11e{bottom:513.479985px;}
.y197{bottom:516.360000px;}
.ya4{bottom:518.879985px;}
.y35{bottom:519.960000px;}
.yef{bottom:520.679985px;}
.y62{bottom:521.399985px;}
.y175{bottom:524.639985px;}
.y7e{bottom:524.999985px;}
.y1c2{bottom:527.159850px;}
.y1e5{bottom:527.159985px;}
.y184{bottom:527.160000px;}
.y153{bottom:533.639985px;}
.y11d{bottom:534.719985px;}
.y14b{bottom:535.799985px;}
.y196{bottom:537.240000px;}
.ya3{bottom:540.119985px;}
.y34{bottom:541.200000px;}
.y61{bottom:542.639985px;}
.yd6{bottom:544.439985px;}
.y174{bottom:545.519985px;}
.y10b{bottom:548.039985px;}
.y1c1{bottom:548.399850px;}
.y1e4{bottom:548.399985px;}
.y183{bottom:548.400000px;}
.y130{bottom:553.079985px;}
.y11c{bottom:555.599985px;}
.yee{bottom:556.679985px;}
.y195{bottom:558.480000px;}
.y7d{bottom:560.999985px;}
.ya2{bottom:561.359985px;}
.y60{bottom:563.519985px;}
.y152{bottom:566.039985px;}
.y173{bottom:566.759985px;}
.y25{bottom:568.560000px;}
.y10a{bottom:569.279985px;}
.y182{bottom:569.280000px;}
.y1c0{bottom:569.639850px;}
.y1e3{bottom:569.639985px;}
.y11b{bottom:576.839985px;}
.y33{bottom:577.200000px;}
.y14a{bottom:577.919985px;}
.yb3{bottom:577.920000px;}
.y7c{bottom:582.239985px;}
.y172{bottom:587.999985px;}
.yed{bottom:589.079985px;}
.y24{bottom:589.440000px;}
.y1bf{bottom:590.519850px;}
.y109{bottom:590.519985px;}
.y181{bottom:590.520000px;}
.y194{bottom:596.640000px;}
.y11a{bottom:598.079985px;}
.y32{bottom:598.440000px;}
.y149{bottom:598.799985px;}
.yb2{bottom:598.800000px;}
.y5f{bottom:599.879985px;}
.y7b{bottom:600.599985px;}
.ya1{bottom:603.479985px;}
.y171{bottom:608.879985px;}
.y23{bottom:610.680000px;}
.y108{bottom:611.399985px;}
.y180{bottom:611.400000px;}
.y1be{bottom:611.759850px;}
.y1e2{bottom:611.759985px;}
.y7a{bottom:618.959985px;}
.y31{bottom:619.680000px;}
.y148{bottom:620.039985px;}
.y5e{bottom:620.759985px;}
.ya0{bottom:624.359985px;}
.y170{bottom:630.119985px;}
.y22{bottom:631.560000px;}
.y107{bottom:632.639985px;}
.y17f{bottom:632.640000px;}
.y1bd{bottom:632.999850px;}
.y1e1{bottom:632.999985px;}
.yb1{bottom:635.160000px;}
.yc4{bottom:636.959985px;}
.y79{bottom:637.319985px;}
.y119{bottom:640.199985px;}
.y30{bottom:640.560000px;}
.y147{bottom:641.279985px;}
.y1bc{bottom:653.879850px;}
.y106{bottom:653.879985px;}
.y17e{bottom:653.880000px;}
.y78{bottom:654.959985px;}
.yb0{bottom:656.040000px;}
.y5d{bottom:657.119985px;}
.yc3{bottom:658.199985px;}
.y9f{bottom:660.719985px;}
.y118{bottom:661.079985px;}
.y2f{bottom:661.800000px;}
.y146{bottom:662.159985px;}
.y16f{bottom:666.119985px;}
.y21{bottom:667.920000px;}
.y105{bottom:674.759985px;}
.y17d{bottom:674.760000px;}
.y1bb{bottom:675.119850px;}
.y1e0{bottom:675.119985px;}
.yaf{bottom:677.280000px;}
.y5c{bottom:677.999985px;}
.yc2{bottom:679.439985px;}
.y9e{bottom:681.599985px;}
.y117{bottom:682.319985px;}
.y2e{bottom:682.680000px;}
.y77{bottom:688.799985px;}
.y20{bottom:688.800000px;}
.y1ba{bottom:695.999850px;}
.y104{bottom:695.999985px;}
.y17c{bottom:696.000000px;}
.y145{bottom:698.519985px;}
.yae{bottom:698.520000px;}
.y5b{bottom:699.239985px;}
.y16e{bottom:702.119985px;}
.y116{bottom:703.559985px;}
.y2d{bottom:703.920000px;}
.yc1{bottom:715.439985px;}
.y103{bottom:716.879985px;}
.y1b9{bottom:717.239850px;}
.y1df{bottom:717.239985px;}
.y9d{bottom:719.039985px;}
.y144{bottom:719.399985px;}
.yad{bottom:719.400000px;}
.y5a{bottom:720.119985px;}
.y76{bottom:721.199985px;}
.y16d{bottom:723.359985px;}
.y115{bottom:724.439985px;}
.y2c{bottom:725.160000px;}
.yc{bottom:728.340000px;}
.y17b{bottom:732.000000px;}
.y102{bottom:738.119985px;}
.y1b8{bottom:738.479850px;}
.y1de{bottom:738.479985px;}
.yac{bottom:740.640000px;}
.y59{bottom:741.359985px;}
.y9c{bottom:741.719985px;}
.y16c{bottom:744.599985px;}
.y2b{bottom:746.040000px;}
.yb{bottom:749.580000px;}
.yc0{bottom:751.439985px;}
.y143{bottom:751.799985px;}
.y17a{bottom:753.240000px;}
.y1b7{bottom:759.359850px;}
.y101{bottom:759.359985px;}
.y114{bottom:760.799985px;}
.y1f{bottom:761.160000px;}
.y58{bottom:762.599985px;}
.y16b{bottom:765.479985px;}
.ybf{bottom:772.679985px;}
.ya{bottom:775.500000px;}
.yab{bottom:776.640000px;}
.y100{bottom:780.239985px;}
.y1b6{bottom:780.599850px;}
.y1dd{bottom:780.599985px;}
.y1e{bottom:782.040000px;}
.y57{bottom:783.479985px;}
.y9b{bottom:783.839985px;}
.y16a{bottom:786.719985px;}
.y113{bottom:792.839985px;}
.yd5{bottom:796.079985px;}
.y1b5{bottom:801.839850px;}
.y1dc{bottom:801.839985px;}
.y1d{bottom:803.280000px;}
.y9a{bottom:805.079985px;}
.y9{bottom:806.820000px;}
.y169{bottom:807.599985px;}
.ybe{bottom:808.679985px;}
.yff{bottom:816.599985px;}
.y56{bottom:819.839985px;}
.y1b4{bottom:822.719850px;}
.y1db{bottom:822.719985px;}
.y1c{bottom:824.520000px;}
.y168{bottom:828.839985px;}
.ybd{bottom:832.079985px;}
.y8{bottom:832.740000px;}
.yfe{bottom:837.479985px;}
.y99{bottom:841.079985px;}
.y1b3{bottom:843.959850px;}
.y1da{bottom:843.959985px;}
.y1b{bottom:845.400000px;}
.y167{bottom:850.079985px;}
.yd4{bottom:853.319985px;}
.ybc{bottom:853.679985px;}
.y55{bottom:855.839985px;}
.yfd{bottom:858.719985px;}
.y98{bottom:862.319985px;}
.y7{bottom:864.060000px;}
.y1b2{bottom:864.839850px;}
.y1d9{bottom:864.839985px;}
.y1a{bottom:866.640000px;}
.y166{bottom:870.959985px;}
.ybb{bottom:875.639985px;}
.y97{bottom:883.199985px;}
.y54{bottom:883.559985px;}
.y6{bottom:884.940000px;}
.y1b1{bottom:886.079850px;}
.y1d8{bottom:886.079985px;}
.y19{bottom:887.880000px;}
.yd3{bottom:889.319985px;}
.yfc{bottom:890.759985px;}
.y165{bottom:892.199985px;}
.yba{bottom:897.599985px;}
.y12f{bottom:898.319985px;}
.y2a{bottom:902.640000px;}
.y151{bottom:904.439985px;}
.y1b0{bottom:907.319850px;}
.y1d7{bottom:907.319985px;}
.y18{bottom:908.760000px;}
.yd1{bottom:910.559985px;}
.y164{bottom:913.439985px;}
.yd2{bottom:918.119985px;}
.y96{bottom:919.559985px;}
.y5{bottom:923.487000px;}
.y29{bottom:923.880000px;}
.y150{bottom:925.319985px;}
.y1af{bottom:928.199850px;}
.y53{bottom:928.199985px;}
.y17{bottom:930.000000px;}
.yd0{bottom:931.439985px;}
.yb9{bottom:934.319985px;}
.y95{bottom:940.439985px;}
.y28{bottom:944.760000px;}
.y14f{bottom:946.559985px;}
.y1ae{bottom:949.439850px;}
.y52{bottom:949.439985px;}
.y16{bottom:950.880000px;}
.ycf{bottom:952.679985px;}
.y4{bottom:955.158000px;}
.yb8{bottom:955.559985px;}
.y94{bottom:961.679985px;}
.y27{bottom:966.000000px;}
.y14e{bottom:967.799985px;}
.y1ad{bottom:970.319850px;}
.y51{bottom:970.319985px;}
.y15{bottom:972.120000px;}
.yb7{bottom:976.439985px;}
.y93{bottom:982.559985px;}
.y3{bottom:986.829000px;}
.y26{bottom:987.240000px;}
.yce{bottom:988.679985px;}
.y1ac{bottom:991.559850px;}
.y50{bottom:991.559985px;}
.y163{bottom:997.679985px;}
.y14d{bottom:1003.799985px;}
.y14{bottom:1008.120000px;}
.y1ab{bottom:1012.799850px;}
.y4f{bottom:1012.799985px;}
.y2{bottom:1018.500000px;}
.y92{bottom:1018.919985px;}
.ycd{bottom:1025.039835px;}
.y13{bottom:1029.360000px;}
.y1aa{bottom:1033.679850px;}
.y4e{bottom:1033.679985px;}
.y91{bottom:1039.799985px;}
.y12{bottom:1050.600000px;}
.y1a9{bottom:1054.919850px;}
.y4d{bottom:1054.919985px;}
.y90{bottom:1061.039835px;}
.y11{bottom:1071.480000px;}
.y1a8{bottom:1076.159850px;}
.y4c{bottom:1076.159985px;}
.y4b{bottom:1097.039835px;}
.y1a7{bottom:1097.039850px;}
.y10{bottom:1110.000000px;}
.y4a{bottom:1118.279985px;}
.yf{bottom:1171.275000px;}
.ye{bottom:1187.475000px;}
.yd{bottom:1203.675000px;}
.hb{height:27.831094px;}
.h4{height:33.598125px;}
.h6{height:39.339844px;}
.ha{height:41.743125px;}
.h8{height:50.484375px;}
.h5{height:50.906250px;}
.h3{height:52.318125px;}
.h9{height:52.318185px;}
.hc{height:54.562500px;}
.h7{height:75.726563px;}
.h2{height:76.359375px;}
.h1{height:1219.800000px;}
.h0{height:1263.000000px;}
.w6{width:56.880015px;}
.wa{width:60.479985px;}
.w5{width:63.359985px;}
.w4{width:63.720015px;}
.w3{width:64.079985px;}
.w7{width:64.080000px;}
.wc{width:79.920000px;}
.we{width:83.160000px;}
.wf{width:84.599985px;}
.w10{width:92.879970px;}
.w2{width:118.440015px;}
.w11{width:161.280000px;}
.wb{width:168.480000px;}
.w8{width:215.280000px;}
.w9{width:249.120000px;}
.wd{width:264.960000px;}
.w1{width:838.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:7.919850px;}
.x19{left:23.181300px;}
.x1{left:27.000000px;}
.x14{left:46.146300px;}
.x17{left:73.309950px;}
.x2{left:100.439850px;}
.xc{left:119.520000px;}
.xb{left:154.440000px;}
.x1b{left:182.160000px;}
.x4{left:228.960000px;}
.x15{left:231.480000px;}
.x10{left:243.000000px;}
.x20{left:281.520000px;}
.xd{left:335.520000px;}
.x6{left:348.120000px;}
.x16{left:350.640000px;}
.x13{left:411.840000px;}
.x7{left:412.920000px;}
.x11{left:426.599850px;}
.x21{left:443.520000px;}
.x1c{left:447.840000px;}
.x8{left:477.360000px;}
.x12{left:480.997500px;}
.x1d{left:531.720000px;}
.x9{left:541.440000px;}
.xe{left:551.520000px;}
.xf{left:571.439850px;}
.x18{left:581.040000px;}
.x1a{left:595.440000px;}
.xa{left:599.040000px;}
.x22{left:605.520000px;}
.x1e{left:617.040000px;}
.x1f{left:643.439850px;}
.x3{left:740.789850px;}
@media print{
.v5{vertical-align:-26.880000pt;}
.v2{vertical-align:-16.640000pt;}
.v4{vertical-align:-7.680000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.640000pt;}
.ls21{letter-spacing:-0.032000pt;}
.ls19{letter-spacing:-0.028800pt;}
.ls13{letter-spacing:-0.025600pt;}
.ls8{letter-spacing:-0.019200pt;}
.lse{letter-spacing:-0.012800pt;}
.ls9{letter-spacing:-0.009600pt;}
.lsc{letter-spacing:-0.006400pt;}
.ls7{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.001600pt;}
.ls2e{letter-spacing:0.002133pt;}
.ls30{letter-spacing:0.004800pt;}
.ls40{letter-spacing:0.005333pt;}
.ls6e{letter-spacing:0.005867pt;}
.ls81{letter-spacing:0.006293pt;}
.ls2{letter-spacing:0.006400pt;}
.ls5{letter-spacing:0.012800pt;}
.ls8f{letter-spacing:0.013333pt;}
.ls72{letter-spacing:0.013867pt;}
.ls0{letter-spacing:0.019200pt;}
.ls11{letter-spacing:0.025600pt;}
.ls31{letter-spacing:0.028800pt;}
.ls10{letter-spacing:0.032000pt;}
.ls35{letter-spacing:0.034667pt;}
.lsa{letter-spacing:0.038400pt;}
.ls90{letter-spacing:0.051200pt;}
.ls32{letter-spacing:0.057600pt;}
.ls5a{letter-spacing:0.058752pt;}
.ls7b{letter-spacing:0.102400pt;}
.ls18{letter-spacing:0.128000pt;}
.ls4e{letter-spacing:0.143253pt;}
.lsb{letter-spacing:0.219648pt;}
.ls1{letter-spacing:0.219947pt;}
.ls4{letter-spacing:0.220480pt;}
.ls50{letter-spacing:0.223573pt;}
.ls52{letter-spacing:0.223872pt;}
.ls42{letter-spacing:0.224107pt;}
.ls3{letter-spacing:0.248853pt;}
.ls6{letter-spacing:0.249387pt;}
.ls4d{letter-spacing:0.249600pt;}
.ls47{letter-spacing:0.314880pt;}
.ls1f{letter-spacing:0.384000pt;}
.ls63{letter-spacing:0.430336pt;}
.ls17{letter-spacing:0.448000pt;}
.ls4a{letter-spacing:0.456576pt;}
.ls5c{letter-spacing:0.459413pt;}
.ls45{letter-spacing:0.477568pt;}
.ls77{letter-spacing:0.482816pt;}
.ls49{letter-spacing:0.540544pt;}
.ls48{letter-spacing:0.545792pt;}
.ls46{letter-spacing:0.561536pt;}
.ls8c{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.640267pt;}
.ls59{letter-spacing:0.736960pt;}
.ls62{letter-spacing:0.739968pt;}
.ls67{letter-spacing:0.832000pt;}
.ls2f{letter-spacing:1.016000pt;}
.ls75{letter-spacing:1.184000pt;}
.ls1c{letter-spacing:1.267200pt;}
.ls7e{letter-spacing:1.721600pt;}
.ls74{letter-spacing:1.894400pt;}
.ls58{letter-spacing:2.033600pt;}
.ls61{letter-spacing:2.035200pt;}
.ls80{letter-spacing:2.041600pt;}
.ls7d{letter-spacing:2.080000pt;}
.ls5e{letter-spacing:2.201600pt;}
.ls66{letter-spacing:2.240000pt;}
.ls5b{letter-spacing:2.247893pt;}
.ls34{letter-spacing:2.341867pt;}
.ls69{letter-spacing:2.355200pt;}
.ls1b{letter-spacing:2.758400pt;}
.ls85{letter-spacing:3.008000pt;}
.ls3e{letter-spacing:3.097600pt;}
.ls43{letter-spacing:3.488000pt;}
.ls70{letter-spacing:3.589333pt;}
.ls76{letter-spacing:3.590400pt;}
.ls3b{letter-spacing:3.840000pt;}
.ls27{letter-spacing:3.878400pt;}
.ls24{letter-spacing:4.000000pt;}
.ls41{letter-spacing:4.126933pt;}
.ls1a{letter-spacing:4.179200pt;}
.ls37{letter-spacing:4.448000pt;}
.ls4b{letter-spacing:4.569600pt;}
.ls25{letter-spacing:4.646400pt;}
.ls78{letter-spacing:4.659200pt;}
.ls44{letter-spacing:4.793600pt;}
.lsd{letter-spacing:4.902400pt;}
.ls6a{letter-spacing:4.915200pt;}
.ls6c{letter-spacing:5.100800pt;}
.ls3f{letter-spacing:5.267200pt;}
.ls3a{letter-spacing:5.408000pt;}
.ls7a{letter-spacing:5.529600pt;}
.ls87{letter-spacing:5.657600pt;}
.ls6d{letter-spacing:5.689600pt;}
.ls36{letter-spacing:5.939733pt;}
.ls5d{letter-spacing:6.034667pt;}
.ls64{letter-spacing:6.035200pt;}
.ls68{letter-spacing:6.195200pt;}
.ls26{letter-spacing:6.201600pt;}
.ls1e{letter-spacing:6.246400pt;}
.ls4c{letter-spacing:6.572800pt;}
.ls56{letter-spacing:6.905600pt;}
.ls29{letter-spacing:7.161600pt;}
.ls14{letter-spacing:7.296000pt;}
.ls83{letter-spacing:7.667200pt;}
.ls73{letter-spacing:7.672533pt;}
.ls79{letter-spacing:7.673600pt;}
.ls6f{letter-spacing:8.032000pt;}
.ls2b{letter-spacing:8.057600pt;}
.ls8a{letter-spacing:8.083200pt;}
.ls22{letter-spacing:8.121600pt;}
.ls1d{letter-spacing:8.614400pt;}
.ls15{letter-spacing:9.184000pt;}
.ls2d{letter-spacing:9.389867pt;}
.ls55{letter-spacing:9.920000pt;}
.ls57{letter-spacing:9.964800pt;}
.ls8d{letter-spacing:10.291200pt;}
.ls8b{letter-spacing:10.304000pt;}
.ls39{letter-spacing:10.342400pt;}
.ls28{letter-spacing:10.387200pt;}
.ls84{letter-spacing:10.790400pt;}
.ls8e{letter-spacing:12.928000pt;}
.ls54{letter-spacing:13.491200pt;}
.ls7c{letter-spacing:13.862400pt;}
.ls53{letter-spacing:14.041600pt;}
.ls4f{letter-spacing:14.062933pt;}
.ls91{letter-spacing:14.080000pt;}
.ls5f{letter-spacing:15.136000pt;}
.ls23{letter-spacing:15.283200pt;}
.ls89{letter-spacing:15.526400pt;}
.ls16{letter-spacing:16.211200pt;}
.ls38{letter-spacing:17.785600pt;}
.ls60{letter-spacing:18.745600pt;}
.ls82{letter-spacing:18.752000pt;}
.ls3c{letter-spacing:18.924800pt;}
.ls2a{letter-spacing:19.046400pt;}
.ls12{letter-spacing:19.628800pt;}
.lsf{letter-spacing:19.648000pt;}
.ls6b{letter-spacing:22.105600pt;}
.ls20{letter-spacing:22.553600pt;}
.ls88{letter-spacing:22.899200pt;}
.ls86{letter-spacing:23.897600pt;}
.ls71{letter-spacing:25.361600pt;}
.ls65{letter-spacing:26.585067pt;}
.ls3d{letter-spacing:28.736000pt;}
.ls7f{letter-spacing:46.540800pt;}
.ls51{letter-spacing:68.708267pt;}
.ws136{word-spacing:-46.604800pt;}
.ws87{word-spacing:-28.800000pt;}
.ws160{word-spacing:-23.961600pt;}
.ws170{word-spacing:-22.963200pt;}
.ws45{word-spacing:-22.617600pt;}
.wsff{word-spacing:-22.169600pt;}
.ws12{word-spacing:-19.692800pt;}
.ws5e{word-spacing:-19.110400pt;}
.ws85{word-spacing:-18.988800pt;}
.ws14f{word-spacing:-18.816000pt;}
.wscf{word-spacing:-18.809600pt;}
.ws77{word-spacing:-17.849600pt;}
.ws21{word-spacing:-16.275200pt;}
.ws177{word-spacing:-15.590400pt;}
.ws4a{word-spacing:-15.347200pt;}
.wscd{word-spacing:-15.200000pt;}
.wsab{word-spacing:-14.105600pt;}
.ws129{word-spacing:-13.926400pt;}
.wsb7{word-spacing:-13.555200pt;}
.ws188{word-spacing:-12.992000pt;}
.ws154{word-spacing:-10.854400pt;}
.ws59{word-spacing:-10.451200pt;}
.ws79{word-spacing:-10.406400pt;}
.ws184{word-spacing:-10.355200pt;}
.wsc2{word-spacing:-10.028800pt;}
.wsb9{word-spacing:-9.984000pt;}
.wsd2{word-spacing:-9.666432pt;}
.ws1c{word-spacing:-9.248000pt;}
.ws3c{word-spacing:-8.678400pt;}
.ws48{word-spacing:-8.185600pt;}
.ws182{word-spacing:-8.147200pt;}
.ws62{word-spacing:-8.121600pt;}
.ws108{word-spacing:-8.096000pt;}
.ws115{word-spacing:-7.737600pt;}
.ws150{word-spacing:-7.731200pt;}
.ws19{word-spacing:-7.360000pt;}
.ws5c{word-spacing:-7.225600pt;}
.wsba{word-spacing:-6.969600pt;}
.wsa2{word-spacing:-6.636800pt;}
.ws40{word-spacing:-6.310400pt;}
.ws4f{word-spacing:-6.265600pt;}
.wse4{word-spacing:-6.259200pt;}
.wsda{word-spacing:-6.099200pt;}
.ws106{word-spacing:-5.753600pt;}
.ws166{word-spacing:-5.721600pt;}
.ws11b{word-spacing:-5.593600pt;}
.ws7a{word-spacing:-5.472000pt;}
.ws8a{word-spacing:-5.331200pt;}
.ws102{word-spacing:-5.164800pt;}
.wsf9{word-spacing:-4.979200pt;}
.wsb{word-spacing:-4.966400pt;}
.ws92{word-spacing:-4.857600pt;}
.ws114{word-spacing:-4.723200pt;}
.ws4e{word-spacing:-4.710400pt;}
.wsa1{word-spacing:-4.633600pt;}
.ws70{word-spacing:-4.512000pt;}
.ws31{word-spacing:-4.243200pt;}
.ws4d{word-spacing:-4.064000pt;}
.ws50{word-spacing:-3.942400pt;}
.ws7b{word-spacing:-3.904000pt;}
.ws10d{word-spacing:-3.654400pt;}
.ws91{word-spacing:-3.552000pt;}
.ws89{word-spacing:-3.161600pt;}
.ws15b{word-spacing:-3.072000pt;}
.ws35{word-spacing:-2.822400pt;}
.wsf2{word-spacing:-2.419200pt;}
.wse2{word-spacing:-2.304000pt;}
.wsc9{word-spacing:-2.265600pt;}
.ws12a{word-spacing:-2.144000pt;}
.ws13f{word-spacing:-2.105600pt;}
.wsd1{word-spacing:-2.099200pt;}
.ws109{word-spacing:-1.958400pt;}
.ws133{word-spacing:-1.785600pt;}
.ws3b{word-spacing:-1.331200pt;}
.ws10b{word-spacing:-1.248000pt;}
.wse3{word-spacing:-0.896000pt;}
.wsd4{word-spacing:-0.792448pt;}
.ws94{word-spacing:-0.614016pt;}
.ws96{word-spacing:-0.598272pt;}
.ws97{word-spacing:-0.593024pt;}
.ws10e{word-spacing:-0.535296pt;}
.ws93{word-spacing:-0.530048pt;}
.ws15d{word-spacing:-0.512000pt;}
.ws98{word-spacing:-0.509056pt;}
.wsd5{word-spacing:-0.482816pt;}
.ws43{word-spacing:-0.448000pt;}
.ws95{word-spacing:-0.367360pt;}
.wsa3{word-spacing:-0.313600pt;}
.ws122{word-spacing:-0.166400pt;}
.ws6d{word-spacing:-0.153600pt;}
.ws6c{word-spacing:-0.124800pt;}
.ws2{word-spacing:-0.115200pt;}
.ws132{word-spacing:-0.102400pt;}
.ws18{word-spacing:-0.096000pt;}
.ws11{word-spacing:-0.089600pt;}
.ws3a{word-spacing:-0.083200pt;}
.ws1{word-spacing:-0.076800pt;}
.ws7{word-spacing:-0.070400pt;}
.ws6{word-spacing:-0.064000pt;}
.wsa{word-spacing:-0.057600pt;}
.ws99{word-spacing:-0.052480pt;}
.ws16{word-spacing:-0.051200pt;}
.wsc{word-spacing:-0.044800pt;}
.ws8f{word-spacing:-0.042240pt;}
.ws15{word-spacing:-0.038400pt;}
.ws47{word-spacing:-0.032000pt;}
.wsf{word-spacing:0.000000pt;}
.ws17{word-spacing:8.844800pt;}
.ws39{word-spacing:8.902400pt;}
.ws13e{word-spacing:8.908800pt;}
.ws36{word-spacing:8.934400pt;}
.ws38{word-spacing:8.966400pt;}
.ws8{word-spacing:8.969963pt;}
.ws199{word-spacing:9.024000pt;}
.ws37{word-spacing:9.049600pt;}
.wsfd{word-spacing:9.081600pt;}
.ws1b{word-spacing:9.120000pt;}
.ws103{word-spacing:9.220000pt;}
.wsa0{word-spacing:9.254400pt;}
.ws104{word-spacing:9.273600pt;}
.ws105{word-spacing:9.292800pt;}
.ws9{word-spacing:9.299200pt;}
.ws65{word-spacing:9.315733pt;}
.ws9f{word-spacing:9.318400pt;}
.ws63{word-spacing:9.337600pt;}
.ws64{word-spacing:9.344000pt;}
.ws158{word-spacing:9.395200pt;}
.wsf3{word-spacing:9.420800pt;}
.ws1a{word-spacing:9.452800pt;}
.ws13d{word-spacing:9.465600pt;}
.ws16a{word-spacing:9.484800pt;}
.ws5b{word-spacing:9.561600pt;}
.ws14a{word-spacing:9.632000pt;}
.ws178{word-spacing:9.715200pt;}
.ws9a{word-spacing:9.753600pt;}
.ws9b{word-spacing:9.804800pt;}
.ws179{word-spacing:9.811200pt;}
.wsb8{word-spacing:9.830400pt;}
.ws18b{word-spacing:9.836800pt;}
.ws66{word-spacing:9.856000pt;}
.ws67{word-spacing:9.862400pt;}
.ws18a{word-spacing:9.875200pt;}
.wsc3{word-spacing:9.900800pt;}
.wsc1{word-spacing:9.964907pt;}
.wsc6{word-spacing:10.028800pt;}
.wsc7{word-spacing:10.066667pt;}
.wsc8{word-spacing:10.067200pt;}
.ws78{word-spacing:10.208000pt;}
.ws185{word-spacing:10.227200pt;}
.ws57{word-spacing:10.240000pt;}
.ws159{word-spacing:10.265600pt;}
.ws5a{word-spacing:10.297600pt;}
.ws10a{word-spacing:10.304000pt;}
.ws58{word-spacing:10.323200pt;}
.wse8{word-spacing:10.476800pt;}
.ws55{word-spacing:10.528000pt;}
.ws144{word-spacing:10.592000pt;}
.ws173{word-spacing:10.636800pt;}
.ws145{word-spacing:10.656000pt;}
.ws153{word-spacing:10.726400pt;}
.ws151{word-spacing:10.732800pt;}
.ws152{word-spacing:10.771200pt;}
.ws16c{word-spacing:10.835200pt;}
.ws141{word-spacing:10.956800pt;}
.ws140{word-spacing:10.963200pt;}
.ws6b{word-spacing:11.027200pt;}
.ws3e{word-spacing:11.104000pt;}
.ws3d{word-spacing:11.110400pt;}
.ws3f{word-spacing:11.129600pt;}
.wsdb{word-spacing:11.372800pt;}
.ws14b{word-spacing:11.513600pt;}
.wsbd{word-spacing:11.545067pt;}
.wsd9{word-spacing:11.545600pt;}
.ws113{word-spacing:11.564800pt;}
.ws9c{word-spacing:11.596800pt;}
.wsbe{word-spacing:11.603200pt;}
.wsdc{word-spacing:11.712267pt;}
.wsdd{word-spacing:11.808000pt;}
.ws29{word-spacing:11.814400pt;}
.ws28{word-spacing:11.840000pt;}
.ws137{word-spacing:11.846400pt;}
.ws27{word-spacing:11.852800pt;}
.ws120{word-spacing:11.891200pt;}
.ws26{word-spacing:11.904000pt;}
.ws11f{word-spacing:11.910400pt;}
.wsae{word-spacing:11.955200pt;}
.wsaf{word-spacing:11.980800pt;}
.ws121{word-spacing:11.993600pt;}
.ws155{word-spacing:12.249600pt;}
.ws2d{word-spacing:12.294400pt;}
.ws175{word-spacing:12.428800pt;}
.ws15a{word-spacing:12.704000pt;}
.ws9d{word-spacing:12.736000pt;}
.ws10c{word-spacing:12.748800pt;}
.wsbc{word-spacing:12.838400pt;}
.ws128{word-spacing:12.844267pt;}
.ws189{word-spacing:12.844800pt;}
.ws125{word-spacing:12.857600pt;}
.ws127{word-spacing:12.860267pt;}
.ws126{word-spacing:12.870400pt;}
.wsbb{word-spacing:12.883200pt;}
.ws17f{word-spacing:12.979200pt;}
.ws180{word-spacing:12.992000pt;}
.ws9e{word-spacing:13.011200pt;}
.ws172{word-spacing:13.081600pt;}
.wse9{word-spacing:13.228800pt;}
.ws130{word-spacing:13.324800pt;}
.ws12f{word-spacing:13.331200pt;}
.wsb6{word-spacing:13.427200pt;}
.ws12d{word-spacing:13.548800pt;}
.wsa7{word-spacing:13.572651pt;}
.ws117{word-spacing:13.600000pt;}
.wse{word-spacing:13.619200pt;}
.wsd{word-spacing:13.644800pt;}
.ws12c{word-spacing:13.651200pt;}
.wse1{word-spacing:13.785600pt;}
.wsd7{word-spacing:13.798400pt;}
.wsdf{word-spacing:13.825333pt;}
.wsa4{word-spacing:13.868800pt;}
.wsd6{word-spacing:13.894400pt;}
.wsa6{word-spacing:13.907200pt;}
.wsa9{word-spacing:13.932800pt;}
.wse0{word-spacing:13.960533pt;}
.ws149{word-spacing:13.964800pt;}
.wsa5{word-spacing:13.977600pt;}
.wsaa{word-spacing:13.978133pt;}
.ws17b{word-spacing:14.016000pt;}
.ws148{word-spacing:14.073600pt;}
.wsbf{word-spacing:14.476800pt;}
.ws116{word-spacing:14.483200pt;}
.ws110{word-spacing:14.547200pt;}
.ws10f{word-spacing:14.604800pt;}
.ws14d{word-spacing:14.758400pt;}
.ws14c{word-spacing:14.816000pt;}
.ws11a{word-spacing:14.867200pt;}
.ws15e{word-spacing:14.937600pt;}
.ws24{word-spacing:15.040000pt;}
.ws25{word-spacing:15.052800pt;}
.wscc{word-spacing:15.072000pt;}
.wscb{word-spacing:15.112533pt;}
.ws49{word-spacing:15.142400pt;}
.ws4b{word-spacing:15.219200pt;}
.ws176{word-spacing:15.462400pt;}
.ws192{word-spacing:15.513600pt;}
.wsf1{word-spacing:15.788800pt;}
.wsf0{word-spacing:15.814400pt;}
.ws197{word-spacing:15.929600pt;}
.ws198{word-spacing:16.006400pt;}
.ws111{word-spacing:16.032000pt;}
.ws20{word-spacing:16.108800pt;}
.ws1e{word-spacing:16.147200pt;}
.ws1f{word-spacing:16.153600pt;}
.ws1d{word-spacing:16.204800pt;}
.ws73{word-spacing:16.441600pt;}
.ws72{word-spacing:16.460800pt;}
.wsfa{word-spacing:16.499200pt;}
.ws124{word-spacing:16.588800pt;}
.ws138{word-spacing:16.652800pt;}
.ws131{word-spacing:16.819200pt;}
.wsd3{word-spacing:17.126400pt;}
.ws17d{word-spacing:17.536000pt;}
.wsf4{word-spacing:17.695733pt;}
.ws76{word-spacing:17.721600pt;}
.wsf5{word-spacing:17.734400pt;}
.ws75{word-spacing:17.740800pt;}
.wsb1{word-spacing:17.875200pt;}
.ws18f{word-spacing:18.476800pt;}
.wsa8{word-spacing:18.579200pt;}
.wsd0{word-spacing:18.675200pt;}
.ws14e{word-spacing:18.688000pt;}
.ws174{word-spacing:18.777600pt;}
.ws81{word-spacing:18.854400pt;}
.ws84{word-spacing:18.860800pt;}
.ws83{word-spacing:18.867200pt;}
.ws80{word-spacing:18.885600pt;}
.ws82{word-spacing:18.924800pt;}
.ws60{word-spacing:18.976000pt;}
.ws5d{word-spacing:18.982400pt;}
.ws5f{word-spacing:18.988800pt;}
.ws61{word-spacing:19.014400pt;}
.ws46{word-spacing:19.097600pt;}
.ws107{word-spacing:19.187200pt;}
.ws157{word-spacing:19.219200pt;}
.ws118{word-spacing:19.232000pt;}
.ws195{word-spacing:19.257600pt;}
.ws119{word-spacing:19.276800pt;}
.ws156{word-spacing:19.289600pt;}
.ws11c{word-spacing:19.302400pt;}
.ws8c{word-spacing:19.366400pt;}
.ws8b{word-spacing:19.394400pt;}
.ws10{word-spacing:19.564800pt;}
.ws11e{word-spacing:19.686400pt;}
.ws11d{word-spacing:19.727200pt;}
.wsc4{word-spacing:19.731200pt;}
.ws17c{word-spacing:19.776000pt;}
.wsc5{word-spacing:19.801600pt;}
.ws190{word-spacing:20.032000pt;}
.wsd8{word-spacing:20.038400pt;}
.ws18e{word-spacing:20.064000pt;}
.ws18d{word-spacing:20.089600pt;}
.wsea{word-spacing:20.096000pt;}
.wsb0{word-spacing:20.102400pt;}
.wseb{word-spacing:20.115200pt;}
.wsb2{word-spacing:20.172800pt;}
.ws123{word-spacing:20.307200pt;}
.ws2f{word-spacing:20.512000pt;}
.ws30{word-spacing:20.569600pt;}
.ws161{word-spacing:20.723200pt;}
.ws164{word-spacing:20.736000pt;}
.ws165{word-spacing:20.742400pt;}
.ws163{word-spacing:20.748800pt;}
.ws162{word-spacing:20.825600pt;}
.ws15c{word-spacing:20.883200pt;}
.ws16b{word-spacing:20.937600pt;}
.ws17a{word-spacing:21.024000pt;}
.ws6e{word-spacing:21.030400pt;}
.ws193{word-spacing:21.043200pt;}
.ws194{word-spacing:21.062400pt;}
.ws6f{word-spacing:21.100800pt;}
.ws2e{word-spacing:21.110400pt;}
.ws13c{word-spacing:21.350400pt;}
.ws139{word-spacing:21.358667pt;}
.ws13a{word-spacing:21.408000pt;}
.ws13b{word-spacing:21.452800pt;}
.ws68{word-spacing:21.740800pt;}
.ws69{word-spacing:21.849600pt;}
.ws101{word-spacing:21.990400pt;}
.ws100{word-spacing:22.043733pt;}
.wsfe{word-spacing:22.048000pt;}
.ws181{word-spacing:22.080000pt;}
.ws196{word-spacing:22.208000pt;}
.wsed{word-spacing:22.308800pt;}
.wsec{word-spacing:22.328267pt;}
.wsef{word-spacing:22.329600pt;}
.wsee{word-spacing:22.348800pt;}
.ws44{word-spacing:22.451200pt;}
.ws12b{word-spacing:22.675200pt;}
.wsb5{word-spacing:22.720000pt;}
.wsb3{word-spacing:22.726400pt;}
.wsb4{word-spacing:22.742400pt;}
.ws16d{word-spacing:22.796800pt;}
.ws16e{word-spacing:22.809600pt;}
.ws8d{word-spacing:22.822400pt;}
.ws171{word-spacing:22.828800pt;}
.ws16f{word-spacing:22.835200pt;}
.ws90{word-spacing:22.923200pt;}
.ws8e{word-spacing:22.924800pt;}
.ws169{word-spacing:23.526400pt;}
.ws167{word-spacing:23.584000pt;}
.ws168{word-spacing:23.628800pt;}
.ws2c{word-spacing:23.776000pt;}
.ws2a{word-spacing:23.795200pt;}
.ws2b{word-spacing:23.820800pt;}
.ws15f{word-spacing:23.833600pt;}
.ws23{word-spacing:24.057600pt;}
.ws22{word-spacing:24.076800pt;}
.ws183{word-spacing:24.320000pt;}
.ws34{word-spacing:25.062400pt;}
.ws33{word-spacing:25.107200pt;}
.ws32{word-spacing:25.126400pt;}
.ws186{word-spacing:25.184000pt;}
.ws52{word-spacing:25.273600pt;}
.ws53{word-spacing:25.280000pt;}
.ws51{word-spacing:25.286400pt;}
.ws54{word-spacing:25.292800pt;}
.ws112{word-spacing:25.363200pt;}
.ws71{word-spacing:26.073600pt;}
.ws42{word-spacing:26.150400pt;}
.ws41{word-spacing:26.188800pt;}
.wse6{word-spacing:26.521600pt;}
.wse5{word-spacing:26.521867pt;}
.wse7{word-spacing:26.572800pt;}
.ws146{word-spacing:26.854400pt;}
.ws147{word-spacing:26.873600pt;}
.ws187{word-spacing:26.944000pt;}
.wsf7{word-spacing:28.016533pt;}
.wsf8{word-spacing:28.038400pt;}
.wsf6{word-spacing:28.044800pt;}
.ws4c{word-spacing:28.096000pt;}
.ws86{word-spacing:28.652800pt;}
.ws88{word-spacing:28.672000pt;}
.wsad{word-spacing:29.177600pt;}
.wsac{word-spacing:29.203200pt;}
.ws17e{word-spacing:29.728000pt;}
.ws13{word-spacing:30.438400pt;}
.ws14{word-spacing:30.444800pt;}
.ws6a{word-spacing:32.505600pt;}
.wsfc{word-spacing:33.542400pt;}
.wsfb{word-spacing:33.554933pt;}
.wsc0{word-spacing:33.664000pt;}
.ws18c{word-spacing:34.176000pt;}
.ws7d{word-spacing:34.638933pt;}
.ws7e{word-spacing:34.643200pt;}
.ws7c{word-spacing:34.700800pt;}
.wsde{word-spacing:34.956800pt;}
.ws12e{word-spacing:37.081600pt;}
.ws56{word-spacing:45.376000pt;}
.ws135{word-spacing:46.476800pt;}
.ws134{word-spacing:46.553600pt;}
.ws191{word-spacing:50.720000pt;}
.wsce{word-spacing:58.982400pt;}
.ws3{word-spacing:85.536000pt;}
.ws4{word-spacing:85.545600pt;}
.ws142{word-spacing:93.548800pt;}
.ws74{word-spacing:95.712000pt;}
.ws143{word-spacing:104.352000pt;}
.ws5{word-spacing:115.833600pt;}
.ws7f{word-spacing:132.889600pt;}
.ws0{word-spacing:266.150400pt;}
.wsca{word-spacing:275.208000pt;}
._1e{margin-left:-47.316000pt;}
._1d{margin-left:-46.329333pt;}
._18{margin-left:-28.941600pt;}
._19{margin-left:-27.913600pt;}
._1f{margin-left:-24.736000pt;}
._12{margin-left:-23.046400pt;}
._13{margin-left:-22.073600pt;}
._5{margin-left:-19.782400pt;}
._6{margin-left:-18.777600pt;}
._16{margin-left:-17.329333pt;}
._d{margin-left:-16.006400pt;}
._14{margin-left:-14.796800pt;}
._1a{margin-left:-13.671733pt;}
._20{margin-left:-12.248267pt;}
._15{margin-left:-10.752000pt;}
._c{margin-left:-9.254400pt;}
._a{margin-left:-8.102400pt;}
._9{margin-left:-7.206400pt;}
._11{margin-left:-6.016000pt;}
._1{margin-left:-4.864000pt;}
._f{margin-left:-3.872000pt;}
._17{margin-left:-2.977867pt;}
._10{margin-left:-2.086400pt;}
._0{margin-left:-0.960000pt;}
._3{width:0.947200pt;}
._7{width:2.188800pt;}
._b{width:3.603200pt;}
._2{width:4.582400pt;}
._4{width:5.747200pt;}
._8{width:7.206400pt;}
._e{width:8.601600pt;}
._1c{width:9.536000pt;}
._21{width:30.342400pt;}
._1b{width:275.609333pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.240000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:52.480000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:19.200000pt;}
.y49{bottom:19.200013pt;}
.y48{bottom:79.146667pt;}
.y142{bottom:79.786640pt;}
.y1a6{bottom:88.746667pt;}
.y12e{bottom:90.346653pt;}
.yec{bottom:91.626653pt;}
.y1d6{bottom:93.546533pt;}
.y75{bottom:93.866653pt;}
.y8f{bottom:94.506640pt;}
.yb6{bottom:95.146667pt;}
.y47{bottom:98.026667pt;}
.y141{bottom:98.346640pt;}
.y14c{bottom:103.786640pt;}
.ycc{bottom:104.746640pt;}
.y162{bottom:108.586640pt;}
.y12d{bottom:109.226640pt;}
.yeb{bottom:110.506640pt;}
.y1d5{bottom:112.426533pt;}
.y74{bottom:112.426640pt;}
.y8e{bottom:113.386640pt;}
.yb5{bottom:113.706667pt;}
.y46{bottom:116.906667pt;}
.y140{bottom:117.226653pt;}
.ycb{bottom:123.626653pt;}
.y12c{bottom:128.106653pt;}
.y1a5{bottom:128.106667pt;}
.yea{bottom:129.066653pt;}
.y1d4{bottom:130.986533pt;}
.y1f0{bottom:130.986653pt;}
.y73{bottom:131.306653pt;}
.y8d{bottom:131.946653pt;}
.y45{bottom:135.466667pt;}
.y13f{bottom:136.106653pt;}
.yca{bottom:142.186653pt;}
.yb4{bottom:146.026667pt;}
.y1a4{bottom:146.986667pt;}
.y193{bottom:147.306667pt;}
.ye9{bottom:147.946653pt;}
.y1d3{bottom:149.866533pt;}
.y161{bottom:149.866653pt;}
.y72{bottom:150.186653pt;}
.y13e{bottom:154.666653pt;}
.y12b{bottom:160.106653pt;}
.yc9{bottom:161.066653pt;}
.y8c{bottom:163.946653pt;}
.yfb{bottom:165.546653pt;}
.y1a3{bottom:165.546667pt;}
.y192{bottom:165.866667pt;}
.ye8{bottom:166.506653pt;}
.y44{bottom:167.466667pt;}
.y1d2{bottom:168.746533pt;}
.y71{bottom:168.746653pt;}
.y160{bottom:170.346653pt;}
.y13d{bottom:173.546653pt;}
.y12a{bottom:178.666653pt;}
.yc8{bottom:179.946653pt;}
.y8b{bottom:182.826653pt;}
.y1a2{bottom:184.426667pt;}
.ye7{bottom:185.386653pt;}
.y43{bottom:186.346667pt;}
.y1d1{bottom:187.306533pt;}
.y1ef{bottom:187.306653pt;}
.y70{bottom:187.626653pt;}
.y15f{bottom:189.866653pt;}
.y129{bottom:197.546653pt;}
.yfa{bottom:197.866653pt;}
.y191{bottom:198.186667pt;}
.y8a{bottom:201.706653pt;}
.y1a1{bottom:202.986667pt;}
.ye6{bottom:204.266653pt;}
.y42{bottom:205.226667pt;}
.y13c{bottom:205.546653pt;}
.y1d0{bottom:206.186533pt;}
.y6f{bottom:206.186653pt;}
.y15e{bottom:208.746653pt;}
.yc7{bottom:211.946653pt;}
.y128{bottom:216.426653pt;}
.y190{bottom:216.746667pt;}
.y89{bottom:220.266653pt;}
.ye5{bottom:222.826653pt;}
.y41{bottom:223.786667pt;}
.y13b{bottom:224.426653pt;}
.y1cf{bottom:224.746533pt;}
.y1ee{bottom:224.746653pt;}
.y6e{bottom:225.066653pt;}
.yf9{bottom:229.866653pt;}
.yc6{bottom:230.826653pt;}
.y127{bottom:234.986653pt;}
.y18f{bottom:235.626667pt;}
.y1a0{bottom:237.226667pt;}
.y15d{bottom:241.386653pt;}
.y40{bottom:242.666667pt;}
.y13a{bottom:242.986653pt;}
.y1ce{bottom:243.626533pt;}
.y1ed{bottom:243.626653pt;}
.y6d{bottom:243.946653pt;}
.yf8{bottom:248.426653pt;}
.y88{bottom:252.586653pt;}
.y112{bottom:254.186653pt;}
.ye4{bottom:255.146653pt;}
.yc5{bottom:259.306653pt;}
.y15c{bottom:260.266653pt;}
.y3f{bottom:261.546667pt;}
.y139{bottom:261.866653pt;}
.y1cd{bottom:262.506533pt;}
.y6c{bottom:262.506653pt;}
.yf7{bottom:267.306653pt;}
.y18e{bottom:267.626667pt;}
.y111{bottom:273.066653pt;}
.ye3{bottom:274.666653pt;}
.ye2{bottom:274.986653pt;}
.y3e{bottom:280.106667pt;}
.y138{bottom:280.746653pt;}
.y1cc{bottom:281.066533pt;}
.y1ec{bottom:281.066653pt;}
.y6b{bottom:281.386653pt;}
.y87{bottom:284.586653pt;}
.y126{bottom:285.866653pt;}
.yf6{bottom:286.186653pt;}
.y18d{bottom:286.506667pt;}
.ye1{bottom:291.946653pt;}
.ye0{bottom:292.266653pt;}
.y3d{bottom:298.986667pt;}
.y137{bottom:299.306653pt;}
.y1cb{bottom:299.946533pt;}
.y1eb{bottom:299.946653pt;}
.y6a{bottom:300.266653pt;}
.y86{bottom:303.146653pt;}
.yf5{bottom:304.746653pt;}
.y18c{bottom:305.066667pt;}
.y19f{bottom:308.906667pt;}
.ydf{bottom:309.226653pt;}
.yde{bottom:309.546653pt;}
.y110{bottom:310.506653pt;}
.y15b{bottom:310.826653pt;}
.yaa{bottom:312.746653pt;}
.y136{bottom:318.186653pt;}
.y1ca{bottom:318.826533pt;}
.y69{bottom:318.826653pt;}
.y125{bottom:321.066653pt;}
.y85{bottom:322.026653pt;}
.yf4{bottom:323.626653pt;}
.y18b{bottom:323.946667pt;}
.ydd{bottom:325.866653pt;}
.ydc{bottom:326.506653pt;}
.y19e{bottom:327.466667pt;}
.y10f{bottom:329.386653pt;}
.y15a{bottom:329.706653pt;}
.y3c{bottom:330.986667pt;}
.ya9{bottom:331.626653pt;}
.y135{bottom:337.066653pt;}
.y1c9{bottom:337.386533pt;}
.y124{bottom:337.386653pt;}
.y68{bottom:337.706653pt;}
.y84{bottom:340.906653pt;}
.ydb{bottom:342.186653pt;}
.y18a{bottom:342.826667pt;}
.y19d{bottom:346.346667pt;}
.y10e{bottom:347.946653pt;}
.y159{bottom:348.586653pt;}
.y3b{bottom:349.866667pt;}
.ya8{bottom:350.186653pt;}
.y123{bottom:353.706653pt;}
.yf3{bottom:355.626653pt;}
.y1c8{bottom:356.266533pt;}
.y67{bottom:356.266653pt;}
.y83{bottom:359.466653pt;}
.y189{bottom:361.386667pt;}
.y19c{bottom:364.906667pt;}
.y10d{bottom:366.826653pt;}
.y158{bottom:367.146653pt;}
.y3a{bottom:368.426667pt;}
.ya7{bottom:369.066653pt;}
.y122{bottom:370.026653pt;}
.yda{bottom:372.266653pt;}
.y134{bottom:374.506653pt;}
.y1c7{bottom:374.826533pt;}
.y1ea{bottom:374.826653pt;}
.y179{bottom:378.026653pt;}
.y82{bottom:378.346653pt;}
.y188{bottom:380.266667pt;}
.y19b{bottom:383.786667pt;}
.y10c{bottom:385.706653pt;}
.y157{bottom:386.026653pt;}
.y39{bottom:387.306667pt;}
.ya6{bottom:387.626653pt;}
.y66{bottom:388.586653pt;}
.y133{bottom:393.066653pt;}
.y1c6{bottom:393.706533pt;}
.y1e9{bottom:393.706653pt;}
.y178{bottom:396.586653pt;}
.y81{bottom:397.226653pt;}
.y187{bottom:398.826667pt;}
.y121{bottom:400.106653pt;}
.y19a{bottom:402.666667pt;}
.yd9{bottom:404.266653pt;}
.y156{bottom:404.906653pt;}
.y38{bottom:406.186667pt;}
.yf2{bottom:406.506653pt;}
.y65{bottom:407.146653pt;}
.y132{bottom:411.946653pt;}
.y1c5{bottom:412.586533pt;}
.y1e8{bottom:412.586653pt;}
.y80{bottom:415.786653pt;}
.y120{bottom:418.986653pt;}
.y199{bottom:421.226667pt;}
.ya5{bottom:421.866653pt;}
.y155{bottom:423.466653pt;}
.y37{bottom:424.746667pt;}
.yf1{bottom:425.386653pt;}
.y64{bottom:426.026653pt;}
.y177{bottom:428.586653pt;}
.y131{bottom:430.826653pt;}
.y1c4{bottom:431.146533pt;}
.y1e7{bottom:431.146653pt;}
.y186{bottom:431.146667pt;}
.y7f{bottom:434.666653pt;}
.yd8{bottom:436.586653pt;}
.y11f{bottom:437.546653pt;}
.y198{bottom:440.106667pt;}
.y36{bottom:443.626667pt;}
.yf0{bottom:443.946653pt;}
.y63{bottom:444.906653pt;}
.y176{bottom:447.466653pt;}
.y185{bottom:449.706667pt;}
.y1c3{bottom:450.026533pt;}
.y1e6{bottom:450.026653pt;}
.yd7{bottom:455.146653pt;}
.y154{bottom:455.466653pt;}
.y11e{bottom:456.426653pt;}
.y197{bottom:458.986667pt;}
.ya4{bottom:461.226653pt;}
.y35{bottom:462.186667pt;}
.yef{bottom:462.826653pt;}
.y62{bottom:463.466653pt;}
.y175{bottom:466.346653pt;}
.y7e{bottom:466.666653pt;}
.y1c2{bottom:468.586533pt;}
.y1e5{bottom:468.586653pt;}
.y184{bottom:468.586667pt;}
.y153{bottom:474.346653pt;}
.y11d{bottom:475.306653pt;}
.y14b{bottom:476.266653pt;}
.y196{bottom:477.546667pt;}
.ya3{bottom:480.106653pt;}
.y34{bottom:481.066667pt;}
.y61{bottom:482.346653pt;}
.yd6{bottom:483.946653pt;}
.y174{bottom:484.906653pt;}
.y10b{bottom:487.146653pt;}
.y1c1{bottom:487.466533pt;}
.y1e4{bottom:487.466653pt;}
.y183{bottom:487.466667pt;}
.y130{bottom:491.626653pt;}
.y11c{bottom:493.866653pt;}
.yee{bottom:494.826653pt;}
.y195{bottom:496.426667pt;}
.y7d{bottom:498.666653pt;}
.ya2{bottom:498.986653pt;}
.y60{bottom:500.906653pt;}
.y152{bottom:503.146653pt;}
.y173{bottom:503.786653pt;}
.y25{bottom:505.386667pt;}
.y10a{bottom:506.026653pt;}
.y182{bottom:506.026667pt;}
.y1c0{bottom:506.346533pt;}
.y1e3{bottom:506.346653pt;}
.y11b{bottom:512.746653pt;}
.y33{bottom:513.066667pt;}
.y14a{bottom:513.706653pt;}
.yb3{bottom:513.706667pt;}
.y7c{bottom:517.546653pt;}
.y172{bottom:522.666653pt;}
.yed{bottom:523.626653pt;}
.y24{bottom:523.946667pt;}
.y1bf{bottom:524.906533pt;}
.y109{bottom:524.906653pt;}
.y181{bottom:524.906667pt;}
.y194{bottom:530.346667pt;}
.y11a{bottom:531.626653pt;}
.y32{bottom:531.946667pt;}
.y149{bottom:532.266653pt;}
.yb2{bottom:532.266667pt;}
.y5f{bottom:533.226653pt;}
.y7b{bottom:533.866653pt;}
.ya1{bottom:536.426653pt;}
.y171{bottom:541.226653pt;}
.y23{bottom:542.826667pt;}
.y108{bottom:543.466653pt;}
.y180{bottom:543.466667pt;}
.y1be{bottom:543.786533pt;}
.y1e2{bottom:543.786653pt;}
.y7a{bottom:550.186653pt;}
.y31{bottom:550.826667pt;}
.y148{bottom:551.146653pt;}
.y5e{bottom:551.786653pt;}
.ya0{bottom:554.986653pt;}
.y170{bottom:560.106653pt;}
.y22{bottom:561.386667pt;}
.y107{bottom:562.346653pt;}
.y17f{bottom:562.346667pt;}
.y1bd{bottom:562.666533pt;}
.y1e1{bottom:562.666653pt;}
.yb1{bottom:564.586667pt;}
.yc4{bottom:566.186653pt;}
.y79{bottom:566.506653pt;}
.y119{bottom:569.066653pt;}
.y30{bottom:569.386667pt;}
.y147{bottom:570.026653pt;}
.y1bc{bottom:581.226533pt;}
.y106{bottom:581.226653pt;}
.y17e{bottom:581.226667pt;}
.y78{bottom:582.186653pt;}
.yb0{bottom:583.146667pt;}
.y5d{bottom:584.106653pt;}
.yc3{bottom:585.066653pt;}
.y9f{bottom:587.306653pt;}
.y118{bottom:587.626653pt;}
.y2f{bottom:588.266667pt;}
.y146{bottom:588.586653pt;}
.y16f{bottom:592.106653pt;}
.y21{bottom:593.706667pt;}
.y105{bottom:599.786653pt;}
.y17d{bottom:599.786667pt;}
.y1bb{bottom:600.106533pt;}
.y1e0{bottom:600.106653pt;}
.yaf{bottom:602.026667pt;}
.y5c{bottom:602.666653pt;}
.yc2{bottom:603.946653pt;}
.y9e{bottom:605.866653pt;}
.y117{bottom:606.506653pt;}
.y2e{bottom:606.826667pt;}
.y77{bottom:612.266653pt;}
.y20{bottom:612.266667pt;}
.y1ba{bottom:618.666533pt;}
.y104{bottom:618.666653pt;}
.y17c{bottom:618.666667pt;}
.y145{bottom:620.906653pt;}
.yae{bottom:620.906667pt;}
.y5b{bottom:621.546653pt;}
.y16e{bottom:624.106653pt;}
.y116{bottom:625.386653pt;}
.y2d{bottom:625.706667pt;}
.yc1{bottom:635.946653pt;}
.y103{bottom:637.226653pt;}
.y1b9{bottom:637.546533pt;}
.y1df{bottom:637.546653pt;}
.y9d{bottom:639.146653pt;}
.y144{bottom:639.466653pt;}
.yad{bottom:639.466667pt;}
.y5a{bottom:640.106653pt;}
.y76{bottom:641.066653pt;}
.y16d{bottom:642.986653pt;}
.y115{bottom:643.946653pt;}
.y2c{bottom:644.586667pt;}
.yc{bottom:647.413333pt;}
.y17b{bottom:650.666667pt;}
.y102{bottom:656.106653pt;}
.y1b8{bottom:656.426533pt;}
.y1de{bottom:656.426653pt;}
.yac{bottom:658.346667pt;}
.y59{bottom:658.986653pt;}
.y9c{bottom:659.306653pt;}
.y16c{bottom:661.866653pt;}
.y2b{bottom:663.146667pt;}
.yb{bottom:666.293333pt;}
.yc0{bottom:667.946653pt;}
.y143{bottom:668.266653pt;}
.y17a{bottom:669.546667pt;}
.y1b7{bottom:674.986533pt;}
.y101{bottom:674.986653pt;}
.y114{bottom:676.266653pt;}
.y1f{bottom:676.586667pt;}
.y58{bottom:677.866653pt;}
.y16b{bottom:680.426653pt;}
.ybf{bottom:686.826653pt;}
.ya{bottom:689.333333pt;}
.yab{bottom:690.346667pt;}
.y100{bottom:693.546653pt;}
.y1b6{bottom:693.866533pt;}
.y1dd{bottom:693.866653pt;}
.y1e{bottom:695.146667pt;}
.y57{bottom:696.426653pt;}
.y9b{bottom:696.746653pt;}
.y16a{bottom:699.306653pt;}
.y113{bottom:704.746653pt;}
.yd5{bottom:707.626653pt;}
.y1b5{bottom:712.746533pt;}
.y1dc{bottom:712.746653pt;}
.y1d{bottom:714.026667pt;}
.y9a{bottom:715.626653pt;}
.y9{bottom:717.173333pt;}
.y169{bottom:717.866653pt;}
.ybe{bottom:718.826653pt;}
.yff{bottom:725.866653pt;}
.y56{bottom:728.746653pt;}
.y1b4{bottom:731.306533pt;}
.y1db{bottom:731.306653pt;}
.y1c{bottom:732.906667pt;}
.y168{bottom:736.746653pt;}
.ybd{bottom:739.626653pt;}
.y8{bottom:740.213333pt;}
.yfe{bottom:744.426653pt;}
.y99{bottom:747.626653pt;}
.y1b3{bottom:750.186533pt;}
.y1da{bottom:750.186653pt;}
.y1b{bottom:751.466667pt;}
.y167{bottom:755.626653pt;}
.yd4{bottom:758.506653pt;}
.ybc{bottom:758.826653pt;}
.y55{bottom:760.746653pt;}
.yfd{bottom:763.306653pt;}
.y98{bottom:766.506653pt;}
.y7{bottom:768.053333pt;}
.y1b2{bottom:768.746533pt;}
.y1d9{bottom:768.746653pt;}
.y1a{bottom:770.346667pt;}
.y166{bottom:774.186653pt;}
.ybb{bottom:778.346653pt;}
.y97{bottom:785.066653pt;}
.y54{bottom:785.386653pt;}
.y6{bottom:786.613333pt;}
.y1b1{bottom:787.626533pt;}
.y1d8{bottom:787.626653pt;}
.y19{bottom:789.226667pt;}
.yd3{bottom:790.506653pt;}
.yfc{bottom:791.786653pt;}
.y165{bottom:793.066653pt;}
.yba{bottom:797.866653pt;}
.y12f{bottom:798.506653pt;}
.y2a{bottom:802.346667pt;}
.y151{bottom:803.946653pt;}
.y1b0{bottom:806.506533pt;}
.y1d7{bottom:806.506653pt;}
.y18{bottom:807.786667pt;}
.yd1{bottom:809.386653pt;}
.y164{bottom:811.946653pt;}
.yd2{bottom:816.106653pt;}
.y96{bottom:817.386653pt;}
.y5{bottom:820.877333pt;}
.y29{bottom:821.226667pt;}
.y150{bottom:822.506653pt;}
.y1af{bottom:825.066533pt;}
.y53{bottom:825.066653pt;}
.y17{bottom:826.666667pt;}
.yd0{bottom:827.946653pt;}
.yb9{bottom:830.506653pt;}
.y95{bottom:835.946653pt;}
.y28{bottom:839.786667pt;}
.y14f{bottom:841.386653pt;}
.y1ae{bottom:843.946533pt;}
.y52{bottom:843.946653pt;}
.y16{bottom:845.226667pt;}
.ycf{bottom:846.826653pt;}
.y4{bottom:849.029333pt;}
.yb8{bottom:849.386653pt;}
.y94{bottom:854.826653pt;}
.y27{bottom:858.666667pt;}
.y14e{bottom:860.266653pt;}
.y1ad{bottom:862.506533pt;}
.y51{bottom:862.506653pt;}
.y15{bottom:864.106667pt;}
.yb7{bottom:867.946653pt;}
.y93{bottom:873.386653pt;}
.y3{bottom:877.181333pt;}
.y26{bottom:877.546667pt;}
.yce{bottom:878.826653pt;}
.y1ac{bottom:881.386533pt;}
.y50{bottom:881.386653pt;}
.y163{bottom:886.826653pt;}
.y14d{bottom:892.266653pt;}
.y14{bottom:896.106667pt;}
.y1ab{bottom:900.266533pt;}
.y4f{bottom:900.266653pt;}
.y2{bottom:905.333333pt;}
.y92{bottom:905.706653pt;}
.ycd{bottom:911.146520pt;}
.y13{bottom:914.986667pt;}
.y1aa{bottom:918.826533pt;}
.y4e{bottom:918.826653pt;}
.y91{bottom:924.266653pt;}
.y12{bottom:933.866667pt;}
.y1a9{bottom:937.706533pt;}
.y4d{bottom:937.706653pt;}
.y90{bottom:943.146520pt;}
.y11{bottom:952.426667pt;}
.y1a8{bottom:956.586533pt;}
.y4c{bottom:956.586653pt;}
.y4b{bottom:975.146520pt;}
.y1a7{bottom:975.146533pt;}
.y10{bottom:986.666667pt;}
.y4a{bottom:994.026653pt;}
.yf{bottom:1041.133333pt;}
.ye{bottom:1055.533333pt;}
.yd{bottom:1069.933333pt;}
.hb{height:24.738750pt;}
.h4{height:29.865000pt;}
.h6{height:34.968750pt;}
.ha{height:37.105000pt;}
.h8{height:44.875000pt;}
.h5{height:45.250000pt;}
.h3{height:46.505000pt;}
.h9{height:46.505053pt;}
.hc{height:48.500000pt;}
.h7{height:67.312500pt;}
.h2{height:67.875000pt;}
.h1{height:1084.266667pt;}
.h0{height:1122.666667pt;}
.w6{width:50.560013pt;}
.wa{width:53.759987pt;}
.w5{width:56.319987pt;}
.w4{width:56.640013pt;}
.w3{width:56.959987pt;}
.w7{width:56.960000pt;}
.wc{width:71.040000pt;}
.we{width:73.920000pt;}
.wf{width:75.199987pt;}
.w10{width:82.559973pt;}
.w2{width:105.280013pt;}
.w11{width:143.360000pt;}
.wb{width:149.760000pt;}
.w8{width:191.360000pt;}
.w9{width:221.440000pt;}
.wd{width:235.520000pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:7.039867pt;}
.x19{left:20.605600pt;}
.x1{left:24.000000pt;}
.x14{left:41.018933pt;}
.x17{left:65.164400pt;}
.x2{left:89.279867pt;}
.xc{left:106.240000pt;}
.xb{left:137.280000pt;}
.x1b{left:161.920000pt;}
.x4{left:203.520000pt;}
.x15{left:205.760000pt;}
.x10{left:216.000000pt;}
.x20{left:250.240000pt;}
.xd{left:298.240000pt;}
.x6{left:309.440000pt;}
.x16{left:311.680000pt;}
.x13{left:366.080000pt;}
.x7{left:367.040000pt;}
.x11{left:379.199867pt;}
.x21{left:394.240000pt;}
.x1c{left:398.080000pt;}
.x8{left:424.320000pt;}
.x12{left:427.553333pt;}
.x1d{left:472.640000pt;}
.x9{left:481.280000pt;}
.xe{left:490.240000pt;}
.xf{left:507.946533pt;}
.x18{left:516.480000pt;}
.x1a{left:529.280000pt;}
.xa{left:532.480000pt;}
.x22{left:538.240000pt;}
.x1e{left:548.480000pt;}
.x1f{left:571.946533pt;}
.x3{left:658.479867pt;}
}




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