
    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_87da58b7fda74acd19849069.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.751000;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_079e3c4999210e29364644a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.784000;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_29b184e5be7cde2c9217bf06.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_2f01f38d9f81db99a9ba14a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_a610a0866f9f6259d352bc95.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_e86a4af8593062f157906a2d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_87da58b7fda74acd19849069.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.751000;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_0af1da45dc522f5317dfb41b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.805664;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_42b7fea3d32905e1e7f5e49f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_9420fd5107228d0628aa341a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0b405e8906f661710fbd926f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.926270;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);}
.v1{vertical-align:-23.640600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:34.200000px;}
.v2{vertical-align:120.000000px;}
.lsc{letter-spacing:-1.140000px;}
.lsd{letter-spacing:-1.020000px;}
.ls4{letter-spacing:-1.008000px;}
.ls2{letter-spacing:-0.480000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.600000px;}
.ls5{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.224000px;}
.ls6{letter-spacing:1.656000px;}
.lse{letter-spacing:2.577600px;}
.ls3{letter-spacing:11.964540px;}
.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;}
}
.ws0{word-spacing:-40.500000px;}
.ws2{word-spacing:-36.000000px;}
.ws6{word-spacing:-21.600000px;}
.ws11a{word-spacing:-20.880000px;}
.wsf0{word-spacing:-20.160000px;}
.ws31{word-spacing:-19.944000px;}
.ws32{word-spacing:-10.008000px;}
.ws11b{word-spacing:-9.072000px;}
.ws104{word-spacing:-8.568000px;}
.wse3{word-spacing:-8.208000px;}
.ws70{word-spacing:-7.560000px;}
.ws15{word-spacing:-7.200000px;}
.ws110{word-spacing:-6.480000px;}
.ws138{word-spacing:-6.420000px;}
.ws80{word-spacing:-6.408000px;}
.wsa2{word-spacing:-6.336000px;}
.ws9f{word-spacing:-5.760000px;}
.wsfb{word-spacing:-5.688000px;}
.ws6b{word-spacing:-5.544000px;}
.wse7{word-spacing:-5.328000px;}
.ws19{word-spacing:-5.256000px;}
.wsb7{word-spacing:-5.112000px;}
.ws112{word-spacing:-4.896000px;}
.wsb3{word-spacing:-4.752000px;}
.ws33{word-spacing:-4.680000px;}
.wsbd{word-spacing:-4.608000px;}
.wsa0{word-spacing:-4.536000px;}
.wsff{word-spacing:-4.464000px;}
.ws64{word-spacing:-4.320000px;}
.wsd2{word-spacing:-4.248000px;}
.ws3b{word-spacing:-4.104000px;}
.wsd3{word-spacing:-4.032000px;}
.wsc9{word-spacing:-3.960000px;}
.ws136{word-spacing:-3.900000px;}
.ws38{word-spacing:-3.888000px;}
.wsd8{word-spacing:-3.816000px;}
.ws44{word-spacing:-3.744000px;}
.ws74{word-spacing:-3.672000px;}
.ws85{word-spacing:-3.600000px;}
.ws39{word-spacing:-3.528000px;}
.ws11{word-spacing:-3.456000px;}
.wsb2{word-spacing:-3.384000px;}
.ws12c{word-spacing:-3.300000px;}
.ws109{word-spacing:-3.240000px;}
.wseb{word-spacing:-3.168000px;}
.wsb1{word-spacing:-3.096000px;}
.wsa5{word-spacing:-3.024000px;}
.wse1{word-spacing:-2.952000px;}
.wsd0{word-spacing:-2.880000px;}
.ws1f{word-spacing:-2.736000px;}
.ws6a{word-spacing:-2.664000px;}
.ws1a{word-spacing:-2.592000px;}
.ws30{word-spacing:-2.520000px;}
.ws29{word-spacing:-2.448000px;}
.wsbf{word-spacing:-2.376000px;}
.ws128{word-spacing:-2.340000px;}
.wsf7{word-spacing:-2.304000px;}
.wsbc{word-spacing:-2.232000px;}
.wsa7{word-spacing:-2.160000px;}
.ws43{word-spacing:-2.088000px;}
.ws18{word-spacing:-2.016000px;}
.ws24{word-spacing:-1.944000px;}
.wsce{word-spacing:-1.800000px;}
.ws37{word-spacing:-1.728000px;}
.ws83{word-spacing:-1.656000px;}
.ws2e{word-spacing:-1.512000px;}
.wsea{word-spacing:-1.440000px;}
.ws26{word-spacing:-1.368000px;}
.wsec{word-spacing:-1.296000px;}
.ws7e{word-spacing:-1.224000px;}
.ws42{word-spacing:-1.152000px;}
.ws4f{word-spacing:-1.080000px;}
.wsb9{word-spacing:-1.008000px;}
.ws130{word-spacing:-0.900000px;}
.ws3d{word-spacing:-0.864000px;}
.ws7c{word-spacing:-0.792000px;}
.ws63{word-spacing:-0.720000px;}
.ws69{word-spacing:-0.648000px;}
.ws4{word-spacing:-0.600000px;}
.ws45{word-spacing:-0.576000px;}
.wsa3{word-spacing:-0.504000px;}
.wsc8{word-spacing:-0.432000px;}
.wsf3{word-spacing:-0.360000px;}
.ws61{word-spacing:-0.288000px;}
.ws3f{word-spacing:-0.216000px;}
.ws46{word-spacing:-0.144000px;}
.ws9b{word-spacing:-0.072000px;}
.ws5{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws56{word-spacing:0.072000px;}
.ws21{word-spacing:0.144000px;}
.wsbb{word-spacing:0.216000px;}
.ws8{word-spacing:0.288000px;}
.wscc{word-spacing:0.360000px;}
.ws7f{word-spacing:0.432000px;}
.ws8f{word-spacing:0.504000px;}
.ws53{word-spacing:0.576000px;}
.ws16{word-spacing:0.648000px;}
.ws12d{word-spacing:0.660000px;}
.ws2d{word-spacing:0.720000px;}
.ws3a{word-spacing:0.792000px;}
.ws131{word-spacing:0.840000px;}
.ws25{word-spacing:0.864000px;}
.ws76{word-spacing:0.936000px;}
.ws3c{word-spacing:1.008000px;}
.wscf{word-spacing:1.080000px;}
.ws4a{word-spacing:1.152000px;}
.wse4{word-spacing:1.224000px;}
.wsbe{word-spacing:1.296000px;}
.ws101{word-spacing:1.368000px;}
.wsaf{word-spacing:1.440000px;}
.wsc{word-spacing:1.512000px;}
.wsdd{word-spacing:1.584000px;}
.ws14{word-spacing:1.656000px;}
.ws87{word-spacing:1.728000px;}
.ws35{word-spacing:1.800000px;}
.wsf{word-spacing:1.944000px;}
.wsa6{word-spacing:2.016000px;}
.ws121{word-spacing:2.088000px;}
.ws5c{word-spacing:2.160000px;}
.ws8c{word-spacing:2.232000px;}
.ws55{word-spacing:2.304000px;}
.ws51{word-spacing:2.376000px;}
.ws100{word-spacing:2.448000px;}
.ws4b{word-spacing:2.520000px;}
.ws13a{word-spacing:2.580000px;}
.ws10b{word-spacing:2.592000px;}
.ws4e{word-spacing:2.664000px;}
.ws1e{word-spacing:2.736000px;}
.ws1d{word-spacing:2.808000px;}
.wsdf{word-spacing:2.880000px;}
.ws77{word-spacing:2.952000px;}
.ws114{word-spacing:3.024000px;}
.ws34{word-spacing:3.096000px;}
.ws60{word-spacing:3.240000px;}
.ws48{word-spacing:3.312000px;}
.ws6c{word-spacing:3.384000px;}
.ws11e{word-spacing:3.456000px;}
.wsd1{word-spacing:3.528000px;}
.ws62{word-spacing:3.600000px;}
.wsef{word-spacing:3.672000px;}
.ws58{word-spacing:3.744000px;}
.wsde{word-spacing:3.816000px;}
.ws10a{word-spacing:3.888000px;}
.ws137{word-spacing:3.900000px;}
.ws50{word-spacing:3.960000px;}
.wsad{word-spacing:4.032000px;}
.wsc3{word-spacing:4.104000px;}
.ws134{word-spacing:4.140000px;}
.ws96{word-spacing:4.176000px;}
.ws9e{word-spacing:4.248000px;}
.ws65{word-spacing:4.320000px;}
.wsae{word-spacing:4.392000px;}
.wsd6{word-spacing:4.464000px;}
.wsa4{word-spacing:4.536000px;}
.ws78{word-spacing:4.608000px;}
.ws75{word-spacing:4.680000px;}
.ws9c{word-spacing:4.752000px;}
.ws12f{word-spacing:4.800000px;}
.wsd5{word-spacing:4.824000px;}
.ws82{word-spacing:4.896000px;}
.wse2{word-spacing:4.968000px;}
.ws7a{word-spacing:5.040000px;}
.ws94{word-spacing:5.112000px;}
.ws10f{word-spacing:5.184000px;}
.ws2a{word-spacing:5.256000px;}
.ws113{word-spacing:5.328000px;}
.wsf4{word-spacing:5.400000px;}
.wsb8{word-spacing:5.472000px;}
.ws41{word-spacing:5.544000px;}
.ws133{word-spacing:5.580000px;}
.ws47{word-spacing:5.688000px;}
.ws12a{word-spacing:5.700000px;}
.ws3e{word-spacing:5.904000px;}
.ws9a{word-spacing:5.976000px;}
.wse9{word-spacing:6.048000px;}
.ws119{word-spacing:6.192000px;}
.ws81{word-spacing:6.264000px;}
.ws102{word-spacing:6.336000px;}
.wsca{word-spacing:6.408000px;}
.ws118{word-spacing:6.480000px;}
.ws5e{word-spacing:6.552000px;}
.wsab{word-spacing:6.624000px;}
.ws108{word-spacing:6.696000px;}
.ws8d{word-spacing:6.768000px;}
.ws132{word-spacing:6.780000px;}
.ws7b{word-spacing:6.840000px;}
.wsfe{word-spacing:6.912000px;}
.ws123{word-spacing:6.984000px;}
.ws23{word-spacing:7.128000px;}
.wsb4{word-spacing:7.200000px;}
.wsa1{word-spacing:7.344000px;}
.ws103{word-spacing:7.416000px;}
.ws17{word-spacing:7.488000px;}
.ws8a{word-spacing:7.560000px;}
.ws49{word-spacing:7.632000px;}
.ws107{word-spacing:7.704000px;}
.ws5a{word-spacing:7.776000px;}
.wsfc{word-spacing:7.848000px;}
.ws117{word-spacing:7.920000px;}
.wsa8{word-spacing:7.992000px;}
.ws86{word-spacing:8.064000px;}
.ws12b{word-spacing:8.100000px;}
.ws126{word-spacing:8.208000px;}
.wsba{word-spacing:8.280000px;}
.ws66{word-spacing:8.352000px;}
.ws79{word-spacing:8.424000px;}
.wse6{word-spacing:8.496000px;}
.wsda{word-spacing:8.568000px;}
.ws71{word-spacing:8.640000px;}
.wsdc{word-spacing:8.712000px;}
.wsd4{word-spacing:8.784000px;}
.wsac{word-spacing:8.856000px;}
.wsc0{word-spacing:9.000000px;}
.wse5{word-spacing:9.216000px;}
.ws10{word-spacing:9.288000px;}
.wsc5{word-spacing:9.360000px;}
.wsc1{word-spacing:9.504000px;}
.ws59{word-spacing:9.576000px;}
.ws1b{word-spacing:9.648000px;}
.ws72{word-spacing:9.720000px;}
.ws2b{word-spacing:9.792000px;}
.wscd{word-spacing:9.864000px;}
.wsa9{word-spacing:9.936000px;}
.ws40{word-spacing:10.008000px;}
.wse0{word-spacing:10.152000px;}
.ws99{word-spacing:10.224000px;}
.ws27{word-spacing:10.296000px;}
.ws6d{word-spacing:10.368000px;}
.ws28{word-spacing:10.512000px;}
.wsb{word-spacing:10.584000px;}
.wsc6{word-spacing:10.656000px;}
.ws57{word-spacing:10.728000px;}
.ws2f{word-spacing:10.872000px;}
.ws6f{word-spacing:10.944000px;}
.wsf5{word-spacing:11.016000px;}
.wsd{word-spacing:11.088000px;}
.ws12{word-spacing:11.160000px;}
.ws4d{word-spacing:11.304000px;}
.ws91{word-spacing:11.376000px;}
.wsb5{word-spacing:11.448000px;}
.wscb{word-spacing:11.520000px;}
.ws8b{word-spacing:11.664000px;}
.ws5f{word-spacing:11.736000px;}
.ws73{word-spacing:11.880000px;}
.ws135{word-spacing:11.940000px;}
.ws54{word-spacing:12.024000px;}
.wsee{word-spacing:12.168000px;}
.ws13b{word-spacing:12.180000px;}
.ws11f{word-spacing:12.240000px;}
.wsa{word-spacing:12.312000px;}
.ws11c{word-spacing:12.384000px;}
.ws5d{word-spacing:12.456000px;}
.ws22{word-spacing:12.528000px;}
.ws8e{word-spacing:12.672000px;}
.wsb0{word-spacing:12.744000px;}
.wse{word-spacing:12.816000px;}
.ws10d{word-spacing:12.960000px;}
.wsf2{word-spacing:13.032000px;}
.wsf8{word-spacing:13.104000px;}
.ws97{word-spacing:13.392000px;}
.ws84{word-spacing:13.464000px;}
.ws124{word-spacing:13.536000px;}
.wsf9{word-spacing:13.680000px;}
.wsaa{word-spacing:13.752000px;}
.ws90{word-spacing:13.824000px;}
.wsb6{word-spacing:13.896000px;}
.ws111{word-spacing:14.040000px;}
.ws139{word-spacing:14.160000px;}
.wsfd{word-spacing:14.328000px;}
.wsd9{word-spacing:14.472000px;}
.ws7d{word-spacing:14.544000px;}
.ws10e{word-spacing:14.760000px;}
.ws6e{word-spacing:15.048000px;}
.ws67{word-spacing:15.696000px;}
.wsfa{word-spacing:15.768000px;}
.ws5b{word-spacing:15.984000px;}
.ws95{word-spacing:16.272000px;}
.ws115{word-spacing:16.344000px;}
.ws9{word-spacing:16.488000px;}
.ws1c{word-spacing:16.848000px;}
.ws106{word-spacing:17.136000px;}
.wsdb{word-spacing:17.280000px;}
.ws10c{word-spacing:17.640000px;}
.ws68{word-spacing:17.784000px;}
.wsc7{word-spacing:17.928000px;}
.ws2c{word-spacing:18.144000px;}
.wsc4{word-spacing:18.216000px;}
.wsc2{word-spacing:18.432000px;}
.wse8{word-spacing:18.648000px;}
.ws127{word-spacing:18.936000px;}
.ws88{word-spacing:19.008000px;}
.ws4c{word-spacing:19.800000px;}
.ws125{word-spacing:19.872000px;}
.ws98{word-spacing:20.088000px;}
.wsed{word-spacing:20.448000px;}
.wsd7{word-spacing:21.816000px;}
.ws105{word-spacing:21.960000px;}
.ws7{word-spacing:22.032000px;}
.ws89{word-spacing:22.392000px;}
.ws129{word-spacing:23.460000px;}
.wsf1{word-spacing:23.544000px;}
.ws12e{word-spacing:23.940000px;}
.ws122{word-spacing:24.120000px;}
.ws52{word-spacing:24.984000px;}
.ws11d{word-spacing:25.056000px;}
.ws120{word-spacing:25.272000px;}
.ws13{word-spacing:25.632000px;}
.wsf6{word-spacing:25.704000px;}
.ws116{word-spacing:27.648000px;}
.ws20{word-spacing:37.440000px;}
.ws36{word-spacing:45.000000px;}
.ws1{word-spacing:100.463400px;}
.ws9d{word-spacing:413.578200px;}
.ws93{word-spacing:436.167000px;}
.ws92{word-spacing:467.744400px;}
._2{margin-left:-9.900000px;}
._1d{margin-left:-7.351200px;}
._b{margin-left:-6.170400px;}
._1{margin-left:-4.500000px;}
._4{margin-left:-2.880000px;}
._0{margin-left:-1.350000px;}
._3{width:1.200000px;}
._7{width:2.227200px;}
._9{width:3.564000px;}
._e{width:5.270400px;}
._8{width:6.940800px;}
._c{width:8.172000px;}
._a{width:9.338400px;}
._21{width:10.432800px;}
._f{width:11.582400px;}
._6{width:12.686400px;}
._d{width:13.852800px;}
._1e{width:15.415200px;}
._10{width:16.444800px;}
._11{width:23.486400px;}
._23{width:41.520000px;}
._22{width:46.432800px;}
._1f{width:63.576000px;}
._24{width:89.897400px;}
._20{width:91.179000px;}
._5{width:122.307000px;}
._15{width:229.646400px;}
._1c{width:243.564000px;}
._1b{width:245.431200px;}
._16{width:275.141400px;}
._17{width:290.955000px;}
._14{width:306.720000px;}
._1a{width:338.297400px;}
._13{width:413.583000px;}
._12{width:444.021600px;}
._18{width:451.956000px;}
._19{width:467.749800px;}
.fc3{color:rgb(60,106,112);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(229,137,29);}
.fs5{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:102.000000px;}
.fs2{font-size:126.000000px;}
.fs7{font-size:239.070000px;}
.y0{bottom:0.000000px;}
.y38{bottom:38.232300px;}
.y37{bottom:38.870100px;}
.y35{bottom:66.771600px;}
.y34{bottom:81.171600px;}
.y11a{bottom:87.525750px;}
.y1fb{bottom:88.783500px;}
.y1ea{bottom:90.263250px;}
.yf8{bottom:90.467850px;}
.y20f{bottom:93.271800px;}
.y57{bottom:94.263900px;}
.y33{bottom:95.571600px;}
.y279{bottom:96.767700px;}
.y200{bottom:97.759950px;}
.y174{bottom:99.854700px;}
.y1bb{bottom:101.775750px;}
.y25d{bottom:101.787450px;}
.y2a2{bottom:105.720450px;}
.y221{bottom:105.791400px;}
.y77{bottom:108.767700px;}
.y18b{bottom:110.279550px;}
.y95{bottom:114.767700px;}
.yb6{bottom:115.529550px;}
.y119{bottom:117.075600px;}
.yd5{bottom:118.159950px;}
.y1fa{bottom:118.783500px;}
.y242{bottom:119.083500px;}
.y1e9{bottom:120.263250px;}
.yf7{bottom:120.467850px;}
.y20e{bottom:123.271800px;}
.y56{bottom:124.263900px;}
.y2a1{bottom:124.920450px;}
.y1ff{bottom:127.759950px;}
.y278{bottom:128.267700px;}
.y149{bottom:129.554700px;}
.y173{bottom:129.854700px;}
.y1ba{bottom:131.775750px;}
.y25c{bottom:132.537450px;}
.y220{bottom:135.791400px;}
.y32{bottom:138.171450px;}
.y76{bottom:138.767700px;}
.y18a{bottom:140.279550px;}
.y2f{bottom:140.421450px;}
.y2a0{bottom:144.120600px;}
.y94{bottom:144.767700px;}
.yb5{bottom:146.279550px;}
.y118{bottom:146.625600px;}
.y1f9{bottom:148.783500px;}
.yf6{bottom:149.417850px;}
.y1e8{bottom:149.813250px;}
.y241{bottom:149.983500px;}
.y20d{bottom:153.271800px;}
.y55{bottom:154.263900px;}
.y31{bottom:156.171450px;}
.yd4{bottom:156.963900px;}
.y1fe{bottom:157.759950px;}
.y2e{bottom:158.421450px;}
.y148{bottom:159.742200px;}
.y172{bottom:159.854700px;}
.y1b9{bottom:161.775750px;}
.y25b{bottom:163.287450px;}
.y21f{bottom:165.791400px;}
.y277{bottom:168.271800px;}
.y147{bottom:168.292200px;}
.y75{bottom:168.767700px;}
.y189{bottom:170.279550px;}
.y29f{bottom:171.824550px;}
.y30{bottom:174.171450px;}
.y93{bottom:174.767700px;}
.y117{bottom:176.175600px;}
.y2d{bottom:176.421450px;}
.yb4{bottom:177.029550px;}
.y240{bottom:180.883650px;}
.y20c{bottom:183.271800px;}
.yf5{bottom:186.871800px;}
.yd3{bottom:187.263900px;}
.y1f8{bottom:187.287450px;}
.y1e7{bottom:187.867350px;}
.y29e{bottom:191.024550px;}
.y1b8{bottom:191.775750px;}
.y54{bottom:192.767700px;}
.y25a{bottom:194.037450px;}
.y21e{bottom:195.791400px;}
.y1fd{bottom:196.263900px;}
.y171{bottom:198.358500px;}
.y74{bottom:198.767700px;}
.y146{bottom:199.529700px;}
.y276{bottom:199.771800px;}
.y188{bottom:200.279550px;}
.y92{bottom:204.767700px;}
.y116{bottom:205.725750px;}
.yb3{bottom:207.779550px;}
.y23f{bottom:211.783500px;}
.y20b{bottom:213.271800px;}
.yf4{bottom:215.821800px;}
.y144{bottom:216.629700px;}
.y1f7{bottom:217.287450px;}
.y1e6{bottom:217.417200px;}
.yd2{bottom:217.563750px;}
.y29d{bottom:218.728500px;}
.y2c{bottom:219.021300px;}
.y1c8{bottom:221.775750px;}
.y259{bottom:224.787450px;}
.y21d{bottom:225.791400px;}
.y1fc{bottom:226.263900px;}
.y170{bottom:228.358500px;}
.y187{bottom:230.279550px;}
.y275{bottom:231.271800px;}
.y145{bottom:233.729700px;}
.y91{bottom:234.767700px;}
.y115{bottom:235.275750px;}
.y73{bottom:237.271800px;}
.y29c{bottom:237.928500px;}
.yb2{bottom:238.529550px;}
.y205{bottom:238.783500px;}
.y23e{bottom:242.683500px;}
.y20a{bottom:243.271800px;}
.yf3{bottom:244.771800px;}
.y1e5{bottom:246.967200px;}
.y1f6{bottom:247.287450px;}
.y1c7{bottom:251.775750px;}
.y258{bottom:255.537450px;}
.y21c{bottom:255.791400px;}
.yd1{bottom:256.367850px;}
.y143{bottom:256.417200px;}
.y16f{bottom:258.358500px;}
.y186{bottom:260.279550px;}
.y274{bottom:262.771800px;}
.y1a2{bottom:264.767700px;}
.y114{bottom:264.825600px;}
.y142{bottom:264.967200px;}
.y29b{bottom:265.632450px;}
.y2b{bottom:266.121000px;}
.y72{bottom:267.271800px;}
.y204{bottom:268.783500px;}
.yb1{bottom:269.279550px;}
.y90{bottom:273.271800px;}
.y53{bottom:275.775750px;}
.y1f5{bottom:277.287450px;}
.y1c6{bottom:281.775750px;}
.y23d{bottom:282.087450px;}
.yf2{bottom:282.225750px;}
.y2a{bottom:284.121000px;}
.y29a{bottom:284.832300px;}
.y1e4{bottom:285.021300px;}
.y21b{bottom:285.791400px;}
.y257{bottom:286.287450px;}
.yd0{bottom:286.667850px;}
.y16e{bottom:288.358500px;}
.y185{bottom:290.279550px;}
.y273{bottom:294.271800px;}
.y113{bottom:294.375600px;}
.y1a1{bottom:294.767700px;}
.y141{bottom:296.935950px;}
.y71{bottom:297.271800px;}
.y203{bottom:298.783500px;}
.yb0{bottom:300.029550px;}
.y29{bottom:302.121000px;}
.y8f{bottom:303.271800px;}
.y299{bottom:304.032300px;}
.y140{bottom:305.485950px;}
.y52{bottom:305.775750px;}
.y1f4{bottom:307.287450px;}
.yf1{bottom:311.175600px;}
.y23c{bottom:312.987450px;}
.y1e3{bottom:314.571150px;}
.y21a{bottom:315.791400px;}
.ycf{bottom:316.967850px;}
.y256{bottom:317.037450px;}
.y16d{bottom:318.358500px;}
.y28{bottom:320.121000px;}
.y184{bottom:320.279550px;}
.y298{bottom:323.232300px;}
.y112{bottom:323.925600px;}
.y1a0{bottom:324.767700px;}
.y272{bottom:325.771800px;}
.y70{bottom:327.271800px;}
.y202{bottom:328.783500px;}
.y8e{bottom:333.271800px;}
.y51{bottom:335.775750px;}
.y1f3{bottom:337.287450px;}
.y13f{bottom:338.185950px;}
.yaf{bottom:339.283500px;}
.yf0{bottom:340.125600px;}
.y23b{bottom:343.887450px;}
.y219{bottom:345.791400px;}
.y27{bottom:346.624950px;}
.y13e{bottom:346.735950px;}
.yce{bottom:347.267700px;}
.y16c{bottom:348.358500px;}
.y183{bottom:350.279550px;}
.y297{bottom:350.936250px;}
.y1e2{bottom:352.625100px;}
.y255{bottom:356.291400px;}
.y6f{bottom:357.271800px;}
.y201{bottom:358.783500px;}
.y111{bottom:361.979700px;}
.y8d{bottom:363.271800px;}
.y26{bottom:364.624950px;}
.y50{bottom:365.775750px;}
.y1f2{bottom:367.287450px;}
.yef{bottom:369.075600px;}
.yae{bottom:370.033500px;}
.y296{bottom:370.136250px;}
.y209{bottom:371.775750px;}
.y23a{bottom:374.787450px;}
.y218{bottom:375.791400px;}
.ycd{bottom:377.567850px;}
.y16b{bottom:378.358500px;}
.y13d{bottom:378.704700px;}
.y1b7{bottom:380.279550px;}
.y1e1{bottom:382.175100px;}
.y25{bottom:382.624950px;}
.y254{bottom:387.041400px;}
.y135{bottom:387.254700px;}
.y6e{bottom:387.271800px;}
.y182{bottom:388.783500px;}
.y19f{bottom:393.271800px;}
.y4f{bottom:395.775750px;}
.y13c{bottom:395.804700px;}
.y1f1{bottom:397.287450px;}
.y295{bottom:397.840200px;}
.y24{bottom:400.624950px;}
.yad{bottom:400.783500px;}
.y8c{bottom:401.775750px;}
.y131{bottom:404.354700px;}
.y239{bottom:405.687450px;}
.y217{bottom:405.791400px;}
.yee{bottom:406.529550px;}
.y16a{bottom:408.358500px;}
.y1b6{bottom:410.279550px;}
.y1e0{bottom:411.725100px;}
.y13b{bottom:412.904700px;}
.ycc{bottom:416.371650px;}
.y294{bottom:417.040200px;}
.y6d{bottom:417.271800px;}
.y253{bottom:417.791400px;}
.y23{bottom:418.624950px;}
.y181{bottom:418.783500px;}
.y130{bottom:421.454700px;}
.y19e{bottom:423.271800px;}
.y4e{bottom:425.775600px;}
.y1f0{bottom:427.287450px;}
.y13a{bottom:430.004700px;}
.yac{bottom:431.533500px;}
.y8b{bottom:431.775600px;}
.yed{bottom:435.479550px;}
.y216{bottom:435.791400px;}
.y293{bottom:436.240200px;}
.y238{bottom:436.587450px;}
.y22{bottom:436.624950px;}
.y110{bottom:438.087450px;}
.y169{bottom:438.358500px;}
.y12f{bottom:438.554700px;}
.y1b5{bottom:440.279550px;}
.y271{bottom:445.783500px;}
.ycb{bottom:446.671800px;}
.y139{bottom:447.104700px;}
.y6c{bottom:447.271800px;}
.y252{bottom:448.541400px;}
.y180{bottom:448.783500px;}
.y1df{bottom:449.779050px;}
.y21{bottom:454.624950px;}
.y12e{bottom:455.654550px;}
.y134{bottom:455.654700px;}
.y4d{bottom:455.775600px;}
.y1ef{bottom:457.287450px;}
.y8a{bottom:461.775600px;}
.yab{bottom:462.283500px;}
.y292{bottom:463.944150px;}
.y138{bottom:464.204700px;}
.y215{bottom:465.791400px;}
.y237{bottom:467.487450px;}
.y10f{bottom:467.637450px;}
.y168{bottom:468.358500px;}
.y1b4{bottom:470.279550px;}
.y12d{bottom:472.754550px;}
.y133{bottom:472.754700px;}
.yec{bottom:472.933500px;}
.yca{bottom:476.971650px;}
.y270{bottom:477.283500px;}
.y1c5{bottom:478.783500px;}
.y251{bottom:479.291400px;}
.y1de{bottom:479.329050px;}
.y20{bottom:481.128900px;}
.y137{bottom:481.304700px;}
.y291{bottom:483.144150px;}
.y4c{bottom:485.775600px;}
.y17f{bottom:487.287450px;}
.y132{bottom:489.854700px;}
.y89{bottom:491.775600px;}
.yaa{bottom:493.033500px;}
.y214{bottom:495.791400px;}
.y10e{bottom:497.187450px;}
.y167{bottom:498.358500px;}
.y236{bottom:498.387450px;}
.y136{bottom:498.404700px;}
.y1f{bottom:499.128900px;}
.y1b3{bottom:500.279550px;}
.yeb{bottom:501.883500px;}
.yc9{bottom:507.271800px;}
.y1c4{bottom:508.783500px;}
.y1dd{bottom:508.879050px;}
.y250{bottom:510.041400px;}
.y290{bottom:510.848100px;}
.y6b{bottom:515.775600px;}
.y1e{bottom:517.128900px;}
.y17e{bottom:517.287450px;}
.y19d{bottom:521.775600px;}
.ya9{bottom:523.783500px;}
.y4b{bottom:524.279550px;}
.y213{bottom:525.791400px;}
.y10d{bottom:526.737450px;}
.y166{bottom:528.358500px;}
.y235{bottom:529.287450px;}
.y12c{bottom:529.783500px;}
.y28f{bottom:530.048100px;}
.y88{bottom:530.279550px;}
.yea{bottom:530.833500px;}
.y1d{bottom:535.128900px;}
.yc8{bottom:537.571800px;}
.y1dc{bottom:538.429050px;}
.y1c3{bottom:538.783500px;}
.y26f{bottom:540.283500px;}
.y24f{bottom:540.791400px;}
.y6a{bottom:545.775600px;}
.y17d{bottom:547.287450px;}
.y19c{bottom:551.775600px;}
.y212{bottom:555.791400px;}
.y10c{bottom:556.287450px;}
.y28e{bottom:557.752050px;}
.y165{bottom:558.358500px;}
.y234{bottom:560.187450px;}
.y87{bottom:560.279550px;}
.y1c{bottom:561.632850px;}
.y4a{bottom:562.783500px;}
.ya8{bottom:563.037450px;}
.y1db{bottom:567.979050px;}
.ye9{bottom:568.287450px;}
.y1b2{bottom:568.783500px;}
.y24e{bottom:571.541400px;}
.y26e{bottom:571.783500px;}
.y69{bottom:575.775600px;}
.yc7{bottom:576.375750px;}
.y28d{bottom:576.952050px;}
.y17c{bottom:577.287450px;}
.y1b{bottom:579.632850px;}
.y19b{bottom:581.775600px;}
.y211{bottom:585.791400px;}
.y10b{bottom:585.837450px;}
.y164{bottom:588.358500px;}
.y86{bottom:590.279550px;}
.y233{bottom:591.087450px;}
.y49{bottom:592.783500px;}
.ya7{bottom:593.787450px;}
.y28c{bottom:596.152050px;}
.y1da{bottom:597.529050px;}
.y1a{bottom:597.632850px;}
.y1b1{bottom:598.783500px;}
.y24d{bottom:602.291400px;}
.y26d{bottom:603.283500px;}
.ye8{bottom:605.741400px;}
.y68{bottom:605.775600px;}
.yc6{bottom:606.675600px;}
.y17b{bottom:607.287450px;}
.y19a{bottom:611.775600px;}
.y19{bottom:615.632850px;}
.y210{bottom:615.791400px;}
.y163{bottom:618.358500px;}
.y85{bottom:620.279550px;}
.y12b{bottom:620.291400px;}
.y232{bottom:621.987450px;}
.y48{bottom:622.783500px;}
.y28b{bottom:623.856000px;}
.y10a{bottom:623.891400px;}
.ya6{bottom:624.537450px;}
.y1d9{bottom:627.079050px;}
.y1b0{bottom:628.783500px;}
.y24c{bottom:633.041400px;}
.y18{bottom:633.632850px;}
.ye7{bottom:634.691400px;}
.y26c{bottom:634.783500px;}
.y67{bottom:635.775600px;}
.yc5{bottom:636.975750px;}
.y17a{bottom:637.287450px;}
.y199{bottom:641.775600px;}
.y28a{bottom:643.056000px;}
.y1ee{bottom:645.791400px;}
.y162{bottom:648.358500px;}
.y84{bottom:650.279550px;}
.y17{bottom:651.632850px;}
.y12a{bottom:651.791400px;}
.y47{bottom:652.783500px;}
.y231{bottom:652.887450px;}
.y109{bottom:653.441400px;}
.y1d8{bottom:656.629050px;}
.y1af{bottom:658.783500px;}
.ye6{bottom:663.641400px;}
.ya5{bottom:663.791400px;}
.y66{bottom:665.775600px;}
.y26b{bottom:666.283500px;}
.yc4{bottom:667.275600px;}
.y179{bottom:667.287450px;}
.y289{bottom:670.759950px;}
.y1ed{bottom:675.791400px;}
.y16{bottom:678.136800px;}
.y161{bottom:678.358500px;}
.y198{bottom:680.279550px;}
.y46{bottom:682.783500px;}
.y108{bottom:682.991400px;}
.y129{bottom:683.291400px;}
.y230{bottom:683.787450px;}
.y1d7{bottom:686.179050px;}
.y83{bottom:688.783500px;}
.y288{bottom:689.959950px;}
.yf{bottom:690.124950px;}
.ye5{bottom:692.591400px;}
.ya4{bottom:694.541400px;}
.y65{bottom:695.775600px;}
.y15{bottom:696.136800px;}
.y178{bottom:697.287450px;}
.yc3{bottom:697.575600px;}
.y26a{bottom:697.783500px;}
.y24b{bottom:703.045350px;}
.y1ec{bottom:705.791400px;}
.ye{bottom:707.824950px;}
.y160{bottom:708.358500px;}
.y197{bottom:710.279550px;}
.y107{bottom:712.541400px;}
.y45{bottom:712.783500px;}
.y14{bottom:714.136800px;}
.y128{bottom:714.791400px;}
.y2b4{bottom:715.529550px;}
.y287{bottom:717.663900px;}
.y82{bottom:718.783500px;}
.ye4{bottom:721.541400px;}
.y22f{bottom:723.191400px;}
.y1d6{bottom:724.233000px;}
.ya3{bottom:725.291400px;}
.y64{bottom:725.775600px;}
.y177{bottom:727.287450px;}
.yc2{bottom:727.875750px;}
.y269{bottom:729.283500px;}
.y13{bottom:732.136800px;}
.y24a{bottom:733.795350px;}
.yd{bottom:734.028900px;}
.y1eb{bottom:735.791400px;}
.y15f{bottom:738.358500px;}
.y196{bottom:740.279550px;}
.y2b3{bottom:741.029550px;}
.y106{bottom:742.091400px;}
.y44{bottom:742.783500px;}
.y286{bottom:745.367850px;}
.y127{bottom:746.291400px;}
.y1c2{bottom:748.783500px;}
.y12{bottom:750.136800px;}
.ye3{bottom:750.491400px;}
.y22e{bottom:754.091400px;}
.y63{bottom:755.775600px;}
.ya2{bottom:756.041400px;}
.y81{bottom:757.287450px;}
.yc{bottom:760.232850px;}
.y268{bottom:760.783500px;}
.y2b2{bottom:764.279550px;}
.y249{bottom:764.545350px;}
.y285{bottom:764.567850px;}
.y176{bottom:765.791400px;}
.yc1{bottom:766.679550px;}
.y11{bottom:768.136800px;}
.y195{bottom:770.279700px;}
.y105{bottom:771.641400px;}
.y43{bottom:772.783500px;}
.y126{bottom:777.791400px;}
.y1c1{bottom:778.783500px;}
.ye2{bottom:779.441400px;}
.y22d{bottom:784.991400px;}
.y10{bottom:786.136800px;}
.yb{bottom:786.436800px;}
.ya1{bottom:786.791400px;}
.y80{bottom:787.287450px;}
.y284{bottom:792.271800px;}
.y62{bottom:794.279550px;}
.y248{bottom:795.295350px;}
.y175{bottom:795.791400px;}
.yc0{bottom:796.979550px;}
.y194{bottom:800.279550px;}
.y1d5{bottom:800.340900px;}
.y267{bottom:800.787450px;}
.ya{bottom:804.136800px;}
.y1c0{bottom:808.783500px;}
.y125{bottom:809.291400px;}
.y104{bottom:809.695350px;}
.y2b1{bottom:810.779550px;}
.y42{bottom:811.287450px;}
.y283{bottom:811.471650px;}
.y15e{bottom:815.366400px;}
.y22c{bottom:815.891400px;}
.ye1{bottom:816.895350px;}
.y1ae{bottom:817.287450px;}
.ya0{bottom:817.541400px;}
.y61{bottom:824.279550px;}
.y7f{bottom:825.791400px;}
.y247{bottom:826.045350px;}
.ybf{bottom:827.279550px;}
.y2b0{bottom:828.779550px;}
.y1d4{bottom:829.890900px;}
.y193{bottom:830.279550px;}
.y266{bottom:832.287450px;}
.y1bf{bottom:838.783500px;}
.y282{bottom:839.175600px;}
.y103{bottom:839.245350px;}
.y124{bottom:840.791400px;}
.y41{bottom:841.287450px;}
.y15d{bottom:845.553900px;}
.ye0{bottom:845.845350px;}
.y2af{bottom:846.779550px;}
.y22b{bottom:846.791400px;}
.y1ad{bottom:847.287450px;}
.y9f{bottom:848.291400px;}
.y9{bottom:848.986650px;}
.y15c{bottom:854.103900px;}
.y7e{bottom:855.791400px;}
.y246{bottom:856.795350px;}
.ybe{bottom:857.579550px;}
.y281{bottom:858.375600px;}
.y1d3{bottom:859.440900px;}
.y192{bottom:860.279550px;}
.y60{bottom:862.783500px;}
.y265{bottom:863.787450px;}
.y1be{bottom:868.783500px;}
.y102{bottom:868.795350px;}
.y40{bottom:871.287450px;}
.ydf{bottom:874.795350px;}
.y1ac{bottom:877.287450px;}
.y280{bottom:877.575600px;}
.y22a{bottom:877.691400px;}
.y9e{bottom:879.041400px;}
.y123{bottom:880.795350px;}
.y15b{bottom:885.341400px;}
.y7d{bottom:885.791400px;}
.y245{bottom:887.545350px;}
.ybd{bottom:887.879550px;}
.y1d2{bottom:888.990900px;}
.y191{bottom:890.279550px;}
.y2ae{bottom:893.279550px;}
.y264{bottom:895.287450px;}
.y8{bottom:896.086500px;}
.y27f{bottom:896.775750px;}
.y101{bottom:898.345350px;}
.y3f{bottom:901.287450px;}
.y159{bottom:902.441400px;}
.yde{bottom:903.745350px;}
.y1ab{bottom:907.287450px;}
.y9d{bottom:909.791400px;}
.y2ad{bottom:911.279550px;}
.y122{bottom:912.295350px;}
.y7c{bottom:915.791400px;}
.y229{bottom:917.095350px;}
.ybc{bottom:918.179700px;}
.y244{bottom:918.295350px;}
.y1d1{bottom:918.540900px;}
.y15a{bottom:919.541400px;}
.y208{bottom:924.295350px;}
.y27e{bottom:924.479550px;}
.y263{bottom:926.787450px;}
.y100{bottom:927.895350px;}
.y190{bottom:928.783500px;}
.y2ac{bottom:929.279550px;}
.y3e{bottom:931.287450px;}
.ydd{bottom:932.695350px;}
.y7{bottom:933.886500px;}
.y1bd{bottom:937.287450px;}
.y9c{bottom:940.541400px;}
.y158{bottom:942.228900px;}
.y27d{bottom:943.679700px;}
.y121{bottom:943.795350px;}
.y1aa{bottom:945.791250px;}
.y5f{bottom:945.791400px;}
.y2ab{bottom:947.279550px;}
.y228{bottom:947.995350px;}
.ybb{bottom:948.479550px;}
.y243{bottom:949.045350px;}
.y157{bottom:950.778900px;}
.y207{bottom:954.295350px;}
.y1d0{bottom:956.594850px;}
.yff{bottom:957.445350px;}
.y262{bottom:958.287450px;}
.y18f{bottom:958.783500px;}
.y3d{bottom:961.287450px;}
.ydc{bottom:961.645350px;}
.y2aa{bottom:965.279550px;}
.y1bc{bottom:967.287450px;}
.y27c{bottom:971.383500px;}
.y6{bottom:971.686500px;}
.y120{bottom:975.295350px;}
.y1a9{bottom:975.791250px;}
.y5e{bottom:975.791400px;}
.y227{bottom:978.895350px;}
.y9b{bottom:979.795350px;}
.y156{bottom:982.747650px;}
.y2a9{bottom:983.279550px;}
.y206{bottom:984.295350px;}
.y1cf{bottom:986.144850px;}
.yfe{bottom:986.995350px;}
.yba{bottom:987.283500px;}
.y18e{bottom:988.783500px;}
.y27b{bottom:990.583500px;}
.ydb{bottom:990.595350px;}
.y3c{bottom:991.287450px;}
.y155{bottom:991.297650px;}
.y261{bottom:998.291400px;}
.y1a8{bottom:1005.791250px;}
.y5d{bottom:1005.791400px;}
.y11f{bottom:1006.795350px;}
.y226{bottom:1009.795350px;}
.y9a{bottom:1010.545350px;}
.y7b{bottom:1014.295350px;}
.y2a8{bottom:1015.033500px;}
.y1ce{bottom:1015.694850px;}
.yfd{bottom:1016.545350px;}
.y27a{bottom:1018.287450px;}
.y18d{bottom:1018.783500px;}
.yda{bottom:1019.545350px;}
.y3b{bottom:1021.287450px;}
.y154{bottom:1023.997650px;}
.y5{bottom:1028.911350px;}
.y260{bottom:1029.791400px;}
.y153{bottom:1032.547650px;}
.y1a7{bottom:1035.791250px;}
.y5c{bottom:1035.791400px;}
.y11e{bottom:1038.295350px;}
.y225{bottom:1040.695350px;}
.y99{bottom:1041.295350px;}
.y7a{bottom:1044.295350px;}
.y1cd{bottom:1045.244850px;}
.yfc{bottom:1046.095350px;}
.yd9{bottom:1048.495350px;}
.y3a{bottom:1051.287450px;}
.y18c{bottom:1057.287450px;}
.y25f{bottom:1061.291400px;}
.y152{bottom:1064.516400px;}
.yb9{bottom:1064.891400px;}
.y5b{bottom:1065.791400px;}
.y11d{bottom:1069.795350px;}
.y224{bottom:1071.595350px;}
.y98{bottom:1072.045350px;}
.y14d{bottom:1073.066400px;}
.y1a6{bottom:1074.295200px;}
.y79{bottom:1074.295350px;}
.y1cc{bottom:1074.794850px;}
.yfb{bottom:1075.645350px;}
.yd8{bottom:1077.445350px;}
.y151{bottom:1081.616400px;}
.y2a7{bottom:1086.041250px;}
.y14c{bottom:1090.166400px;}
.y25e{bottom:1092.791400px;}
.yb8{bottom:1095.191400px;}
.y5a{bottom:1095.791400px;}
.y150{bottom:1098.716400px;}
.y11c{bottom:1101.295350px;}
.y223{bottom:1102.495350px;}
.y97{bottom:1102.795350px;}
.y2a6{bottom:1104.041250px;}
.y1a5{bottom:1104.295200px;}
.y78{bottom:1104.295350px;}
.y1cb{bottom:1104.344850px;}
.yfa{bottom:1105.195350px;}
.yd7{bottom:1106.395350px;}
.y14b{bottom:1107.266400px;}
.y14f{bottom:1115.816400px;}
.y4{bottom:1117.939950px;}
.y39{bottom:1119.791400px;}
.y14a{bottom:1124.366400px;}
.y2a5{bottom:1130.545200px;}
.y11b{bottom:1132.795350px;}
.y14e{bottom:1132.916400px;}
.y222{bottom:1133.395350px;}
.y96{bottom:1133.545350px;}
.y1ca{bottom:1133.894850px;}
.yb7{bottom:1133.995350px;}
.y1a4{bottom:1134.295200px;}
.y59{bottom:1134.295350px;}
.yf9{bottom:1134.745350px;}
.yd6{bottom:1135.345350px;}
.y3{bottom:1146.439950px;}
.y2a4{bottom:1148.545200px;}
.y1c9{bottom:1163.444850px;}
.y1a3{bottom:1164.295200px;}
.y58{bottom:1164.295350px;}
.y2a3{bottom:1166.545200px;}
.y2{bottom:1174.939950px;}
.y1{bottom:1203.439950px;}
.y36{bottom:1215.602400px;}
.hb{height:36.048000px;}
.ha{height:36.093750px;}
.h10{height:42.750000px;}
.hf{height:42.861328px;}
.h8{height:45.000000px;}
.h7{height:45.117188px;}
.h9{height:54.000000px;}
.h6{height:54.072000px;}
.he{height:54.140625px;}
.hc{height:57.142603px;}
.h4{height:63.164062px;}
.h3{height:67.500000px;}
.h2{height:67.590000px;}
.h11{height:77.061328px;}
.h5{height:94.500000px;}
.hd{height:179.769434px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:48.866850px;}
.xe{left:55.189050px;}
.x10{left:58.077750px;}
.xa{left:67.188600px;}
.x6{left:69.161550px;}
.x9{left:73.297050px;}
.x11{left:84.401550px;}
.x17{left:90.463200px;}
.xc{left:91.695450px;}
.x8{left:98.030850px;}
.x15{left:106.299150px;}
.xb{left:107.830650px;}
.x7{left:115.440600px;}
.x14{left:117.006750px;}
.x20{left:118.846500px;}
.x1e{left:122.795100px;}
.x26{left:126.743850px;}
.x27{left:133.299150px;}
.x25{left:134.716950px;}
.x1d{left:140.952000px;}
.x16{left:145.597800px;}
.x13{left:181.722450px;}
.xd{left:218.513400px;}
.x5{left:227.017350px;}
.x18{left:235.030200px;}
.x28{left:284.078700px;}
.x19{left:379.597200px;}
.x24{left:381.997350px;}
.x12{left:492.696900px;}
.x1a{left:524.164050px;}
.x3{left:643.191900px;}
.x29{left:647.196900px;}
.x1b{left:668.730900px;}
.x1f{left:685.934700px;}
.x21{left:692.847450px;}
.x23{left:699.311550px;}
.x1c{left:706.158150px;}
.x22{left:714.709650px;}
.x1{left:719.783100px;}
.x2{left:725.700000px;}
.x4{left:743.024100px;}
@media print{
.v1{vertical-align:-21.013867pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:30.400000pt;}
.v2{vertical-align:106.666667pt;}
.lsc{letter-spacing:-1.013333pt;}
.lsd{letter-spacing:-0.906667pt;}
.ls4{letter-spacing:-0.896000pt;}
.ls2{letter-spacing:-0.426667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls5{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.088000pt;}
.ls6{letter-spacing:1.472000pt;}
.lse{letter-spacing:2.291200pt;}
.ls3{letter-spacing:10.635147pt;}
.ws0{word-spacing:-36.000000pt;}
.ws2{word-spacing:-32.000000pt;}
.ws6{word-spacing:-19.200000pt;}
.ws11a{word-spacing:-18.560000pt;}
.wsf0{word-spacing:-17.920000pt;}
.ws31{word-spacing:-17.728000pt;}
.ws32{word-spacing:-8.896000pt;}
.ws11b{word-spacing:-8.064000pt;}
.ws104{word-spacing:-7.616000pt;}
.wse3{word-spacing:-7.296000pt;}
.ws70{word-spacing:-6.720000pt;}
.ws15{word-spacing:-6.400000pt;}
.ws110{word-spacing:-5.760000pt;}
.ws138{word-spacing:-5.706667pt;}
.ws80{word-spacing:-5.696000pt;}
.wsa2{word-spacing:-5.632000pt;}
.ws9f{word-spacing:-5.120000pt;}
.wsfb{word-spacing:-5.056000pt;}
.ws6b{word-spacing:-4.928000pt;}
.wse7{word-spacing:-4.736000pt;}
.ws19{word-spacing:-4.672000pt;}
.wsb7{word-spacing:-4.544000pt;}
.ws112{word-spacing:-4.352000pt;}
.wsb3{word-spacing:-4.224000pt;}
.ws33{word-spacing:-4.160000pt;}
.wsbd{word-spacing:-4.096000pt;}
.wsa0{word-spacing:-4.032000pt;}
.wsff{word-spacing:-3.968000pt;}
.ws64{word-spacing:-3.840000pt;}
.wsd2{word-spacing:-3.776000pt;}
.ws3b{word-spacing:-3.648000pt;}
.wsd3{word-spacing:-3.584000pt;}
.wsc9{word-spacing:-3.520000pt;}
.ws136{word-spacing:-3.466667pt;}
.ws38{word-spacing:-3.456000pt;}
.wsd8{word-spacing:-3.392000pt;}
.ws44{word-spacing:-3.328000pt;}
.ws74{word-spacing:-3.264000pt;}
.ws85{word-spacing:-3.200000pt;}
.ws39{word-spacing:-3.136000pt;}
.ws11{word-spacing:-3.072000pt;}
.wsb2{word-spacing:-3.008000pt;}
.ws12c{word-spacing:-2.933333pt;}
.ws109{word-spacing:-2.880000pt;}
.wseb{word-spacing:-2.816000pt;}
.wsb1{word-spacing:-2.752000pt;}
.wsa5{word-spacing:-2.688000pt;}
.wse1{word-spacing:-2.624000pt;}
.wsd0{word-spacing:-2.560000pt;}
.ws1f{word-spacing:-2.432000pt;}
.ws6a{word-spacing:-2.368000pt;}
.ws1a{word-spacing:-2.304000pt;}
.ws30{word-spacing:-2.240000pt;}
.ws29{word-spacing:-2.176000pt;}
.wsbf{word-spacing:-2.112000pt;}
.ws128{word-spacing:-2.080000pt;}
.wsf7{word-spacing:-2.048000pt;}
.wsbc{word-spacing:-1.984000pt;}
.wsa7{word-spacing:-1.920000pt;}
.ws43{word-spacing:-1.856000pt;}
.ws18{word-spacing:-1.792000pt;}
.ws24{word-spacing:-1.728000pt;}
.wsce{word-spacing:-1.600000pt;}
.ws37{word-spacing:-1.536000pt;}
.ws83{word-spacing:-1.472000pt;}
.ws2e{word-spacing:-1.344000pt;}
.wsea{word-spacing:-1.280000pt;}
.ws26{word-spacing:-1.216000pt;}
.wsec{word-spacing:-1.152000pt;}
.ws7e{word-spacing:-1.088000pt;}
.ws42{word-spacing:-1.024000pt;}
.ws4f{word-spacing:-0.960000pt;}
.wsb9{word-spacing:-0.896000pt;}
.ws130{word-spacing:-0.800000pt;}
.ws3d{word-spacing:-0.768000pt;}
.ws7c{word-spacing:-0.704000pt;}
.ws63{word-spacing:-0.640000pt;}
.ws69{word-spacing:-0.576000pt;}
.ws4{word-spacing:-0.533333pt;}
.ws45{word-spacing:-0.512000pt;}
.wsa3{word-spacing:-0.448000pt;}
.wsc8{word-spacing:-0.384000pt;}
.wsf3{word-spacing:-0.320000pt;}
.ws61{word-spacing:-0.256000pt;}
.ws3f{word-spacing:-0.192000pt;}
.ws46{word-spacing:-0.128000pt;}
.ws9b{word-spacing:-0.064000pt;}
.ws5{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws56{word-spacing:0.064000pt;}
.ws21{word-spacing:0.128000pt;}
.wsbb{word-spacing:0.192000pt;}
.ws8{word-spacing:0.256000pt;}
.wscc{word-spacing:0.320000pt;}
.ws7f{word-spacing:0.384000pt;}
.ws8f{word-spacing:0.448000pt;}
.ws53{word-spacing:0.512000pt;}
.ws16{word-spacing:0.576000pt;}
.ws12d{word-spacing:0.586667pt;}
.ws2d{word-spacing:0.640000pt;}
.ws3a{word-spacing:0.704000pt;}
.ws131{word-spacing:0.746667pt;}
.ws25{word-spacing:0.768000pt;}
.ws76{word-spacing:0.832000pt;}
.ws3c{word-spacing:0.896000pt;}
.wscf{word-spacing:0.960000pt;}
.ws4a{word-spacing:1.024000pt;}
.wse4{word-spacing:1.088000pt;}
.wsbe{word-spacing:1.152000pt;}
.ws101{word-spacing:1.216000pt;}
.wsaf{word-spacing:1.280000pt;}
.wsc{word-spacing:1.344000pt;}
.wsdd{word-spacing:1.408000pt;}
.ws14{word-spacing:1.472000pt;}
.ws87{word-spacing:1.536000pt;}
.ws35{word-spacing:1.600000pt;}
.wsf{word-spacing:1.728000pt;}
.wsa6{word-spacing:1.792000pt;}
.ws121{word-spacing:1.856000pt;}
.ws5c{word-spacing:1.920000pt;}
.ws8c{word-spacing:1.984000pt;}
.ws55{word-spacing:2.048000pt;}
.ws51{word-spacing:2.112000pt;}
.ws100{word-spacing:2.176000pt;}
.ws4b{word-spacing:2.240000pt;}
.ws13a{word-spacing:2.293333pt;}
.ws10b{word-spacing:2.304000pt;}
.ws4e{word-spacing:2.368000pt;}
.ws1e{word-spacing:2.432000pt;}
.ws1d{word-spacing:2.496000pt;}
.wsdf{word-spacing:2.560000pt;}
.ws77{word-spacing:2.624000pt;}
.ws114{word-spacing:2.688000pt;}
.ws34{word-spacing:2.752000pt;}
.ws60{word-spacing:2.880000pt;}
.ws48{word-spacing:2.944000pt;}
.ws6c{word-spacing:3.008000pt;}
.ws11e{word-spacing:3.072000pt;}
.wsd1{word-spacing:3.136000pt;}
.ws62{word-spacing:3.200000pt;}
.wsef{word-spacing:3.264000pt;}
.ws58{word-spacing:3.328000pt;}
.wsde{word-spacing:3.392000pt;}
.ws10a{word-spacing:3.456000pt;}
.ws137{word-spacing:3.466667pt;}
.ws50{word-spacing:3.520000pt;}
.wsad{word-spacing:3.584000pt;}
.wsc3{word-spacing:3.648000pt;}
.ws134{word-spacing:3.680000pt;}
.ws96{word-spacing:3.712000pt;}
.ws9e{word-spacing:3.776000pt;}
.ws65{word-spacing:3.840000pt;}
.wsae{word-spacing:3.904000pt;}
.wsd6{word-spacing:3.968000pt;}
.wsa4{word-spacing:4.032000pt;}
.ws78{word-spacing:4.096000pt;}
.ws75{word-spacing:4.160000pt;}
.ws9c{word-spacing:4.224000pt;}
.ws12f{word-spacing:4.266667pt;}
.wsd5{word-spacing:4.288000pt;}
.ws82{word-spacing:4.352000pt;}
.wse2{word-spacing:4.416000pt;}
.ws7a{word-spacing:4.480000pt;}
.ws94{word-spacing:4.544000pt;}
.ws10f{word-spacing:4.608000pt;}
.ws2a{word-spacing:4.672000pt;}
.ws113{word-spacing:4.736000pt;}
.wsf4{word-spacing:4.800000pt;}
.wsb8{word-spacing:4.864000pt;}
.ws41{word-spacing:4.928000pt;}
.ws133{word-spacing:4.960000pt;}
.ws47{word-spacing:5.056000pt;}
.ws12a{word-spacing:5.066667pt;}
.ws3e{word-spacing:5.248000pt;}
.ws9a{word-spacing:5.312000pt;}
.wse9{word-spacing:5.376000pt;}
.ws119{word-spacing:5.504000pt;}
.ws81{word-spacing:5.568000pt;}
.ws102{word-spacing:5.632000pt;}
.wsca{word-spacing:5.696000pt;}
.ws118{word-spacing:5.760000pt;}
.ws5e{word-spacing:5.824000pt;}
.wsab{word-spacing:5.888000pt;}
.ws108{word-spacing:5.952000pt;}
.ws8d{word-spacing:6.016000pt;}
.ws132{word-spacing:6.026667pt;}
.ws7b{word-spacing:6.080000pt;}
.wsfe{word-spacing:6.144000pt;}
.ws123{word-spacing:6.208000pt;}
.ws23{word-spacing:6.336000pt;}
.wsb4{word-spacing:6.400000pt;}
.wsa1{word-spacing:6.528000pt;}
.ws103{word-spacing:6.592000pt;}
.ws17{word-spacing:6.656000pt;}
.ws8a{word-spacing:6.720000pt;}
.ws49{word-spacing:6.784000pt;}
.ws107{word-spacing:6.848000pt;}
.ws5a{word-spacing:6.912000pt;}
.wsfc{word-spacing:6.976000pt;}
.ws117{word-spacing:7.040000pt;}
.wsa8{word-spacing:7.104000pt;}
.ws86{word-spacing:7.168000pt;}
.ws12b{word-spacing:7.200000pt;}
.ws126{word-spacing:7.296000pt;}
.wsba{word-spacing:7.360000pt;}
.ws66{word-spacing:7.424000pt;}
.ws79{word-spacing:7.488000pt;}
.wse6{word-spacing:7.552000pt;}
.wsda{word-spacing:7.616000pt;}
.ws71{word-spacing:7.680000pt;}
.wsdc{word-spacing:7.744000pt;}
.wsd4{word-spacing:7.808000pt;}
.wsac{word-spacing:7.872000pt;}
.wsc0{word-spacing:8.000000pt;}
.wse5{word-spacing:8.192000pt;}
.ws10{word-spacing:8.256000pt;}
.wsc5{word-spacing:8.320000pt;}
.wsc1{word-spacing:8.448000pt;}
.ws59{word-spacing:8.512000pt;}
.ws1b{word-spacing:8.576000pt;}
.ws72{word-spacing:8.640000pt;}
.ws2b{word-spacing:8.704000pt;}
.wscd{word-spacing:8.768000pt;}
.wsa9{word-spacing:8.832000pt;}
.ws40{word-spacing:8.896000pt;}
.wse0{word-spacing:9.024000pt;}
.ws99{word-spacing:9.088000pt;}
.ws27{word-spacing:9.152000pt;}
.ws6d{word-spacing:9.216000pt;}
.ws28{word-spacing:9.344000pt;}
.wsb{word-spacing:9.408000pt;}
.wsc6{word-spacing:9.472000pt;}
.ws57{word-spacing:9.536000pt;}
.ws2f{word-spacing:9.664000pt;}
.ws6f{word-spacing:9.728000pt;}
.wsf5{word-spacing:9.792000pt;}
.wsd{word-spacing:9.856000pt;}
.ws12{word-spacing:9.920000pt;}
.ws4d{word-spacing:10.048000pt;}
.ws91{word-spacing:10.112000pt;}
.wsb5{word-spacing:10.176000pt;}
.wscb{word-spacing:10.240000pt;}
.ws8b{word-spacing:10.368000pt;}
.ws5f{word-spacing:10.432000pt;}
.ws73{word-spacing:10.560000pt;}
.ws135{word-spacing:10.613333pt;}
.ws54{word-spacing:10.688000pt;}
.wsee{word-spacing:10.816000pt;}
.ws13b{word-spacing:10.826667pt;}
.ws11f{word-spacing:10.880000pt;}
.wsa{word-spacing:10.944000pt;}
.ws11c{word-spacing:11.008000pt;}
.ws5d{word-spacing:11.072000pt;}
.ws22{word-spacing:11.136000pt;}
.ws8e{word-spacing:11.264000pt;}
.wsb0{word-spacing:11.328000pt;}
.wse{word-spacing:11.392000pt;}
.ws10d{word-spacing:11.520000pt;}
.wsf2{word-spacing:11.584000pt;}
.wsf8{word-spacing:11.648000pt;}
.ws97{word-spacing:11.904000pt;}
.ws84{word-spacing:11.968000pt;}
.ws124{word-spacing:12.032000pt;}
.wsf9{word-spacing:12.160000pt;}
.wsaa{word-spacing:12.224000pt;}
.ws90{word-spacing:12.288000pt;}
.wsb6{word-spacing:12.352000pt;}
.ws111{word-spacing:12.480000pt;}
.ws139{word-spacing:12.586667pt;}
.wsfd{word-spacing:12.736000pt;}
.wsd9{word-spacing:12.864000pt;}
.ws7d{word-spacing:12.928000pt;}
.ws10e{word-spacing:13.120000pt;}
.ws6e{word-spacing:13.376000pt;}
.ws67{word-spacing:13.952000pt;}
.wsfa{word-spacing:14.016000pt;}
.ws5b{word-spacing:14.208000pt;}
.ws95{word-spacing:14.464000pt;}
.ws115{word-spacing:14.528000pt;}
.ws9{word-spacing:14.656000pt;}
.ws1c{word-spacing:14.976000pt;}
.ws106{word-spacing:15.232000pt;}
.wsdb{word-spacing:15.360000pt;}
.ws10c{word-spacing:15.680000pt;}
.ws68{word-spacing:15.808000pt;}
.wsc7{word-spacing:15.936000pt;}
.ws2c{word-spacing:16.128000pt;}
.wsc4{word-spacing:16.192000pt;}
.wsc2{word-spacing:16.384000pt;}
.wse8{word-spacing:16.576000pt;}
.ws127{word-spacing:16.832000pt;}
.ws88{word-spacing:16.896000pt;}
.ws4c{word-spacing:17.600000pt;}
.ws125{word-spacing:17.664000pt;}
.ws98{word-spacing:17.856000pt;}
.wsed{word-spacing:18.176000pt;}
.wsd7{word-spacing:19.392000pt;}
.ws105{word-spacing:19.520000pt;}
.ws7{word-spacing:19.584000pt;}
.ws89{word-spacing:19.904000pt;}
.ws129{word-spacing:20.853333pt;}
.wsf1{word-spacing:20.928000pt;}
.ws12e{word-spacing:21.280000pt;}
.ws122{word-spacing:21.440000pt;}
.ws52{word-spacing:22.208000pt;}
.ws11d{word-spacing:22.272000pt;}
.ws120{word-spacing:22.464000pt;}
.ws13{word-spacing:22.784000pt;}
.wsf6{word-spacing:22.848000pt;}
.ws116{word-spacing:24.576000pt;}
.ws20{word-spacing:33.280000pt;}
.ws36{word-spacing:40.000000pt;}
.ws1{word-spacing:89.300800pt;}
.ws9d{word-spacing:367.625067pt;}
.ws93{word-spacing:387.704000pt;}
.ws92{word-spacing:415.772800pt;}
._2{margin-left:-8.800000pt;}
._1d{margin-left:-6.534400pt;}
._b{margin-left:-5.484800pt;}
._1{margin-left:-4.000000pt;}
._4{margin-left:-2.560000pt;}
._0{margin-left:-1.200000pt;}
._3{width:1.066667pt;}
._7{width:1.979733pt;}
._9{width:3.168000pt;}
._e{width:4.684800pt;}
._8{width:6.169600pt;}
._c{width:7.264000pt;}
._a{width:8.300800pt;}
._21{width:9.273600pt;}
._f{width:10.295467pt;}
._6{width:11.276800pt;}
._d{width:12.313600pt;}
._1e{width:13.702400pt;}
._10{width:14.617600pt;}
._11{width:20.876800pt;}
._23{width:36.906667pt;}
._22{width:41.273600pt;}
._1f{width:56.512000pt;}
._24{width:79.908800pt;}
._20{width:81.048000pt;}
._5{width:108.717333pt;}
._15{width:204.130133pt;}
._1c{width:216.501333pt;}
._1b{width:218.161067pt;}
._16{width:244.570133pt;}
._17{width:258.626667pt;}
._14{width:272.640000pt;}
._1a{width:300.708800pt;}
._13{width:367.629333pt;}
._12{width:394.685867pt;}
._18{width:401.738667pt;}
._19{width:415.777600pt;}
.fs5{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:90.666667pt;}
.fs2{font-size:112.000000pt;}
.fs7{font-size:212.506667pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:33.984267pt;}
.y37{bottom:34.551200pt;}
.y35{bottom:59.352533pt;}
.y34{bottom:72.152533pt;}
.y11a{bottom:77.800667pt;}
.y1fb{bottom:78.918667pt;}
.y1ea{bottom:80.234000pt;}
.yf8{bottom:80.415867pt;}
.y20f{bottom:82.908267pt;}
.y57{bottom:83.790133pt;}
.y33{bottom:84.952533pt;}
.y279{bottom:86.015733pt;}
.y200{bottom:86.897733pt;}
.y174{bottom:88.759733pt;}
.y1bb{bottom:90.467333pt;}
.y25d{bottom:90.477733pt;}
.y2a2{bottom:93.973733pt;}
.y221{bottom:94.036800pt;}
.y77{bottom:96.682400pt;}
.y18b{bottom:98.026267pt;}
.y95{bottom:102.015733pt;}
.yb6{bottom:102.692933pt;}
.y119{bottom:104.067200pt;}
.yd5{bottom:105.031067pt;}
.y1fa{bottom:105.585333pt;}
.y242{bottom:105.852000pt;}
.y1e9{bottom:106.900667pt;}
.yf7{bottom:107.082533pt;}
.y20e{bottom:109.574933pt;}
.y56{bottom:110.456800pt;}
.y2a1{bottom:111.040400pt;}
.y1ff{bottom:113.564400pt;}
.y278{bottom:114.015733pt;}
.y149{bottom:115.159733pt;}
.y173{bottom:115.426400pt;}
.y1ba{bottom:117.134000pt;}
.y25c{bottom:117.811067pt;}
.y220{bottom:120.703467pt;}
.y32{bottom:122.819067pt;}
.y76{bottom:123.349067pt;}
.y18a{bottom:124.692933pt;}
.y2f{bottom:124.819067pt;}
.y2a0{bottom:128.107200pt;}
.y94{bottom:128.682400pt;}
.yb5{bottom:130.026267pt;}
.y118{bottom:130.333867pt;}
.y1f9{bottom:132.252000pt;}
.yf6{bottom:132.815867pt;}
.y1e8{bottom:133.167333pt;}
.y241{bottom:133.318667pt;}
.y20d{bottom:136.241600pt;}
.y55{bottom:137.123467pt;}
.y31{bottom:138.819067pt;}
.yd4{bottom:139.523467pt;}
.y1fe{bottom:140.231067pt;}
.y2e{bottom:140.819067pt;}
.y148{bottom:141.993067pt;}
.y172{bottom:142.093067pt;}
.y1b9{bottom:143.800667pt;}
.y25b{bottom:145.144400pt;}
.y21f{bottom:147.370133pt;}
.y277{bottom:149.574933pt;}
.y147{bottom:149.593067pt;}
.y75{bottom:150.015733pt;}
.y189{bottom:151.359600pt;}
.y29f{bottom:152.732933pt;}
.y30{bottom:154.819067pt;}
.y93{bottom:155.349067pt;}
.y117{bottom:156.600533pt;}
.y2d{bottom:156.819067pt;}
.yb4{bottom:157.359600pt;}
.y240{bottom:160.785467pt;}
.y20c{bottom:162.908267pt;}
.yf5{bottom:166.108267pt;}
.yd3{bottom:166.456800pt;}
.y1f8{bottom:166.477733pt;}
.y1e7{bottom:166.993200pt;}
.y29e{bottom:169.799600pt;}
.y1b8{bottom:170.467333pt;}
.y54{bottom:171.349067pt;}
.y25a{bottom:172.477733pt;}
.y21e{bottom:174.036800pt;}
.y1fd{bottom:174.456800pt;}
.y171{bottom:176.318667pt;}
.y74{bottom:176.682400pt;}
.y146{bottom:177.359733pt;}
.y276{bottom:177.574933pt;}
.y188{bottom:178.026267pt;}
.y92{bottom:182.015733pt;}
.y116{bottom:182.867333pt;}
.yb3{bottom:184.692933pt;}
.y23f{bottom:188.252000pt;}
.y20b{bottom:189.574933pt;}
.yf4{bottom:191.841600pt;}
.y144{bottom:192.559733pt;}
.y1f7{bottom:193.144400pt;}
.y1e6{bottom:193.259733pt;}
.yd2{bottom:193.390000pt;}
.y29d{bottom:194.425333pt;}
.y2c{bottom:194.685600pt;}
.y1c8{bottom:197.134000pt;}
.y259{bottom:199.811067pt;}
.y21d{bottom:200.703467pt;}
.y1fc{bottom:201.123467pt;}
.y170{bottom:202.985333pt;}
.y187{bottom:204.692933pt;}
.y275{bottom:205.574933pt;}
.y145{bottom:207.759733pt;}
.y91{bottom:208.682400pt;}
.y115{bottom:209.134000pt;}
.y73{bottom:210.908267pt;}
.y29c{bottom:211.492000pt;}
.yb2{bottom:212.026267pt;}
.y205{bottom:212.252000pt;}
.y23e{bottom:215.718667pt;}
.y20a{bottom:216.241600pt;}
.yf3{bottom:217.574933pt;}
.y1e5{bottom:219.526400pt;}
.y1f6{bottom:219.811067pt;}
.y1c7{bottom:223.800667pt;}
.y258{bottom:227.144400pt;}
.y21c{bottom:227.370133pt;}
.yd1{bottom:227.882533pt;}
.y143{bottom:227.926400pt;}
.y16f{bottom:229.652000pt;}
.y186{bottom:231.359600pt;}
.y274{bottom:233.574933pt;}
.y1a2{bottom:235.349067pt;}
.y114{bottom:235.400533pt;}
.y142{bottom:235.526400pt;}
.y29b{bottom:236.117733pt;}
.y2b{bottom:236.552000pt;}
.y72{bottom:237.574933pt;}
.y204{bottom:238.918667pt;}
.yb1{bottom:239.359600pt;}
.y90{bottom:242.908267pt;}
.y53{bottom:245.134000pt;}
.y1f5{bottom:246.477733pt;}
.y1c6{bottom:250.467333pt;}
.y23d{bottom:250.744400pt;}
.yf2{bottom:250.867333pt;}
.y2a{bottom:252.552000pt;}
.y29a{bottom:253.184267pt;}
.y1e4{bottom:253.352267pt;}
.y21b{bottom:254.036800pt;}
.y257{bottom:254.477733pt;}
.yd0{bottom:254.815867pt;}
.y16e{bottom:256.318667pt;}
.y185{bottom:258.026267pt;}
.y273{bottom:261.574933pt;}
.y113{bottom:261.667200pt;}
.y1a1{bottom:262.015733pt;}
.y141{bottom:263.943067pt;}
.y71{bottom:264.241600pt;}
.y203{bottom:265.585333pt;}
.yb0{bottom:266.692933pt;}
.y29{bottom:268.552000pt;}
.y8f{bottom:269.574933pt;}
.y299{bottom:270.250933pt;}
.y140{bottom:271.543067pt;}
.y52{bottom:271.800667pt;}
.y1f4{bottom:273.144400pt;}
.yf1{bottom:276.600533pt;}
.y23c{bottom:278.211067pt;}
.y1e3{bottom:279.618800pt;}
.y21a{bottom:280.703467pt;}
.ycf{bottom:281.749200pt;}
.y256{bottom:281.811067pt;}
.y16d{bottom:282.985333pt;}
.y28{bottom:284.552000pt;}
.y184{bottom:284.692933pt;}
.y298{bottom:287.317600pt;}
.y112{bottom:287.933867pt;}
.y1a0{bottom:288.682400pt;}
.y272{bottom:289.574933pt;}
.y70{bottom:290.908267pt;}
.y202{bottom:292.252000pt;}
.y8e{bottom:296.241600pt;}
.y51{bottom:298.467333pt;}
.y1f3{bottom:299.811067pt;}
.y13f{bottom:300.609733pt;}
.yaf{bottom:301.585333pt;}
.yf0{bottom:302.333867pt;}
.y23b{bottom:305.677733pt;}
.y219{bottom:307.370133pt;}
.y27{bottom:308.111067pt;}
.y13e{bottom:308.209733pt;}
.yce{bottom:308.682400pt;}
.y16c{bottom:309.652000pt;}
.y183{bottom:311.359600pt;}
.y297{bottom:311.943333pt;}
.y1e2{bottom:313.444533pt;}
.y255{bottom:316.703467pt;}
.y6f{bottom:317.574933pt;}
.y201{bottom:318.918667pt;}
.y111{bottom:321.759733pt;}
.y8d{bottom:322.908267pt;}
.y26{bottom:324.111067pt;}
.y50{bottom:325.134000pt;}
.y1f2{bottom:326.477733pt;}
.yef{bottom:328.067200pt;}
.yae{bottom:328.918667pt;}
.y296{bottom:329.010000pt;}
.y209{bottom:330.467333pt;}
.y23a{bottom:333.144400pt;}
.y218{bottom:334.036800pt;}
.ycd{bottom:335.615867pt;}
.y16b{bottom:336.318667pt;}
.y13d{bottom:336.626400pt;}
.y1b7{bottom:338.026267pt;}
.y1e1{bottom:339.711200pt;}
.y25{bottom:340.111067pt;}
.y254{bottom:344.036800pt;}
.y135{bottom:344.226400pt;}
.y6e{bottom:344.241600pt;}
.y182{bottom:345.585333pt;}
.y19f{bottom:349.574933pt;}
.y4f{bottom:351.800667pt;}
.y13c{bottom:351.826400pt;}
.y1f1{bottom:353.144400pt;}
.y295{bottom:353.635733pt;}
.y24{bottom:356.111067pt;}
.yad{bottom:356.252000pt;}
.y8c{bottom:357.134000pt;}
.y131{bottom:359.426400pt;}
.y239{bottom:360.611067pt;}
.y217{bottom:360.703467pt;}
.yee{bottom:361.359600pt;}
.y16a{bottom:362.985333pt;}
.y1b6{bottom:364.692933pt;}
.y1e0{bottom:365.977867pt;}
.y13b{bottom:367.026400pt;}
.ycc{bottom:370.108133pt;}
.y294{bottom:370.702400pt;}
.y6d{bottom:370.908267pt;}
.y253{bottom:371.370133pt;}
.y23{bottom:372.111067pt;}
.y181{bottom:372.252000pt;}
.y130{bottom:374.626400pt;}
.y19e{bottom:376.241600pt;}
.y4e{bottom:378.467200pt;}
.y1f0{bottom:379.811067pt;}
.y13a{bottom:382.226400pt;}
.yac{bottom:383.585333pt;}
.y8b{bottom:383.800533pt;}
.yed{bottom:387.092933pt;}
.y216{bottom:387.370133pt;}
.y293{bottom:387.769067pt;}
.y238{bottom:388.077733pt;}
.y22{bottom:388.111067pt;}
.y110{bottom:389.411067pt;}
.y169{bottom:389.652000pt;}
.y12f{bottom:389.826400pt;}
.y1b5{bottom:391.359600pt;}
.y271{bottom:396.252000pt;}
.ycb{bottom:397.041600pt;}
.y139{bottom:397.426400pt;}
.y6c{bottom:397.574933pt;}
.y252{bottom:398.703467pt;}
.y180{bottom:398.918667pt;}
.y1df{bottom:399.803600pt;}
.y21{bottom:404.111067pt;}
.y12e{bottom:405.026267pt;}
.y134{bottom:405.026400pt;}
.y4d{bottom:405.133867pt;}
.y1ef{bottom:406.477733pt;}
.y8a{bottom:410.467200pt;}
.yab{bottom:410.918667pt;}
.y292{bottom:412.394800pt;}
.y138{bottom:412.626400pt;}
.y215{bottom:414.036800pt;}
.y237{bottom:415.544400pt;}
.y10f{bottom:415.677733pt;}
.y168{bottom:416.318667pt;}
.y1b4{bottom:418.026267pt;}
.y12d{bottom:420.226267pt;}
.y133{bottom:420.226400pt;}
.yec{bottom:420.385333pt;}
.yca{bottom:423.974800pt;}
.y270{bottom:424.252000pt;}
.y1c5{bottom:425.585333pt;}
.y251{bottom:426.036800pt;}
.y1de{bottom:426.070267pt;}
.y20{bottom:427.670133pt;}
.y137{bottom:427.826400pt;}
.y291{bottom:429.461467pt;}
.y4c{bottom:431.800533pt;}
.y17f{bottom:433.144400pt;}
.y132{bottom:435.426400pt;}
.y89{bottom:437.133867pt;}
.yaa{bottom:438.252000pt;}
.y214{bottom:440.703467pt;}
.y10e{bottom:441.944400pt;}
.y167{bottom:442.985333pt;}
.y236{bottom:443.011067pt;}
.y136{bottom:443.026400pt;}
.y1f{bottom:443.670133pt;}
.y1b3{bottom:444.692933pt;}
.yeb{bottom:446.118667pt;}
.yc9{bottom:450.908267pt;}
.y1c4{bottom:452.252000pt;}
.y1dd{bottom:452.336933pt;}
.y250{bottom:453.370133pt;}
.y290{bottom:454.087200pt;}
.y6b{bottom:458.467200pt;}
.y1e{bottom:459.670133pt;}
.y17e{bottom:459.811067pt;}
.y19d{bottom:463.800533pt;}
.ya9{bottom:465.585333pt;}
.y4b{bottom:466.026267pt;}
.y213{bottom:467.370133pt;}
.y10d{bottom:468.211067pt;}
.y166{bottom:469.652000pt;}
.y235{bottom:470.477733pt;}
.y12c{bottom:470.918667pt;}
.y28f{bottom:471.153867pt;}
.y88{bottom:471.359600pt;}
.yea{bottom:471.852000pt;}
.y1d{bottom:475.670133pt;}
.yc8{bottom:477.841600pt;}
.y1dc{bottom:478.603600pt;}
.y1c3{bottom:478.918667pt;}
.y26f{bottom:480.252000pt;}
.y24f{bottom:480.703467pt;}
.y6a{bottom:485.133867pt;}
.y17d{bottom:486.477733pt;}
.y19c{bottom:490.467200pt;}
.y212{bottom:494.036800pt;}
.y10c{bottom:494.477733pt;}
.y28e{bottom:495.779600pt;}
.y165{bottom:496.318667pt;}
.y234{bottom:497.944400pt;}
.y87{bottom:498.026267pt;}
.y1c{bottom:499.229200pt;}
.y4a{bottom:500.252000pt;}
.ya8{bottom:500.477733pt;}
.y1db{bottom:504.870267pt;}
.ye9{bottom:505.144400pt;}
.y1b2{bottom:505.585333pt;}
.y24e{bottom:508.036800pt;}
.y26e{bottom:508.252000pt;}
.y69{bottom:511.800533pt;}
.yc7{bottom:512.334000pt;}
.y28d{bottom:512.846267pt;}
.y17c{bottom:513.144400pt;}
.y1b{bottom:515.229200pt;}
.y19b{bottom:517.133867pt;}
.y211{bottom:520.703467pt;}
.y10b{bottom:520.744400pt;}
.y164{bottom:522.985333pt;}
.y86{bottom:524.692933pt;}
.y233{bottom:525.411067pt;}
.y49{bottom:526.918667pt;}
.ya7{bottom:527.811067pt;}
.y28c{bottom:529.912933pt;}
.y1da{bottom:531.136933pt;}
.y1a{bottom:531.229200pt;}
.y1b1{bottom:532.252000pt;}
.y24d{bottom:535.370133pt;}
.y26d{bottom:536.252000pt;}
.ye8{bottom:538.436800pt;}
.y68{bottom:538.467200pt;}
.yc6{bottom:539.267200pt;}
.y17b{bottom:539.811067pt;}
.y19a{bottom:543.800533pt;}
.y19{bottom:547.229200pt;}
.y210{bottom:547.370133pt;}
.y163{bottom:549.652000pt;}
.y85{bottom:551.359600pt;}
.y12b{bottom:551.370133pt;}
.y232{bottom:552.877733pt;}
.y48{bottom:553.585333pt;}
.y28b{bottom:554.538667pt;}
.y10a{bottom:554.570133pt;}
.ya6{bottom:555.144400pt;}
.y1d9{bottom:557.403600pt;}
.y1b0{bottom:558.918667pt;}
.y24c{bottom:562.703467pt;}
.y18{bottom:563.229200pt;}
.ye7{bottom:564.170133pt;}
.y26c{bottom:564.252000pt;}
.y67{bottom:565.133867pt;}
.yc5{bottom:566.200667pt;}
.y17a{bottom:566.477733pt;}
.y199{bottom:570.467200pt;}
.y28a{bottom:571.605333pt;}
.y1ee{bottom:574.036800pt;}
.y162{bottom:576.318667pt;}
.y84{bottom:578.026267pt;}
.y17{bottom:579.229200pt;}
.y12a{bottom:579.370133pt;}
.y47{bottom:580.252000pt;}
.y231{bottom:580.344400pt;}
.y109{bottom:580.836800pt;}
.y1d8{bottom:583.670267pt;}
.y1af{bottom:585.585333pt;}
.ye6{bottom:589.903467pt;}
.ya5{bottom:590.036800pt;}
.y66{bottom:591.800533pt;}
.y26b{bottom:592.252000pt;}
.yc4{bottom:593.133867pt;}
.y179{bottom:593.144400pt;}
.y289{bottom:596.231067pt;}
.y1ed{bottom:600.703467pt;}
.y16{bottom:602.788267pt;}
.y161{bottom:602.985333pt;}
.y198{bottom:604.692933pt;}
.y46{bottom:606.918667pt;}
.y108{bottom:607.103467pt;}
.y129{bottom:607.370133pt;}
.y230{bottom:607.811067pt;}
.y1d7{bottom:609.936933pt;}
.y83{bottom:612.252000pt;}
.y288{bottom:613.297733pt;}
.yf{bottom:613.444400pt;}
.ye5{bottom:615.636800pt;}
.ya4{bottom:617.370133pt;}
.y65{bottom:618.467200pt;}
.y15{bottom:618.788267pt;}
.y178{bottom:619.811067pt;}
.yc3{bottom:620.067200pt;}
.y26a{bottom:620.252000pt;}
.y24b{bottom:624.929200pt;}
.y1ec{bottom:627.370133pt;}
.ye{bottom:629.177733pt;}
.y160{bottom:629.652000pt;}
.y197{bottom:631.359600pt;}
.y107{bottom:633.370133pt;}
.y45{bottom:633.585333pt;}
.y14{bottom:634.788267pt;}
.y128{bottom:635.370133pt;}
.y2b4{bottom:636.026267pt;}
.y287{bottom:637.923467pt;}
.y82{bottom:638.918667pt;}
.ye4{bottom:641.370133pt;}
.y22f{bottom:642.836800pt;}
.y1d6{bottom:643.762667pt;}
.ya3{bottom:644.703467pt;}
.y64{bottom:645.133867pt;}
.y177{bottom:646.477733pt;}
.yc2{bottom:647.000667pt;}
.y269{bottom:648.252000pt;}
.y13{bottom:650.788267pt;}
.y24a{bottom:652.262533pt;}
.yd{bottom:652.470133pt;}
.y1eb{bottom:654.036800pt;}
.y15f{bottom:656.318667pt;}
.y196{bottom:658.026267pt;}
.y2b3{bottom:658.692933pt;}
.y106{bottom:659.636800pt;}
.y44{bottom:660.252000pt;}
.y286{bottom:662.549200pt;}
.y127{bottom:663.370133pt;}
.y1c2{bottom:665.585333pt;}
.y12{bottom:666.788267pt;}
.ye3{bottom:667.103467pt;}
.y22e{bottom:670.303467pt;}
.y63{bottom:671.800533pt;}
.ya2{bottom:672.036800pt;}
.y81{bottom:673.144400pt;}
.yc{bottom:675.762533pt;}
.y268{bottom:676.252000pt;}
.y2b2{bottom:679.359600pt;}
.y249{bottom:679.595867pt;}
.y285{bottom:679.615867pt;}
.y176{bottom:680.703467pt;}
.yc1{bottom:681.492933pt;}
.y11{bottom:682.788267pt;}
.y195{bottom:684.693067pt;}
.y105{bottom:685.903467pt;}
.y43{bottom:686.918667pt;}
.y126{bottom:691.370133pt;}
.y1c1{bottom:692.252000pt;}
.ye2{bottom:692.836800pt;}
.y22d{bottom:697.770133pt;}
.y10{bottom:698.788267pt;}
.yb{bottom:699.054933pt;}
.ya1{bottom:699.370133pt;}
.y80{bottom:699.811067pt;}
.y284{bottom:704.241600pt;}
.y62{bottom:706.026267pt;}
.y248{bottom:706.929200pt;}
.y175{bottom:707.370133pt;}
.yc0{bottom:708.426267pt;}
.y194{bottom:711.359600pt;}
.y1d5{bottom:711.414133pt;}
.y267{bottom:711.811067pt;}
.ya{bottom:714.788267pt;}
.y1c0{bottom:718.918667pt;}
.y125{bottom:719.370133pt;}
.y104{bottom:719.729200pt;}
.y2b1{bottom:720.692933pt;}
.y42{bottom:721.144400pt;}
.y283{bottom:721.308133pt;}
.y15e{bottom:724.770133pt;}
.y22c{bottom:725.236800pt;}
.ye1{bottom:726.129200pt;}
.y1ae{bottom:726.477733pt;}
.ya0{bottom:726.703467pt;}
.y61{bottom:732.692933pt;}
.y7f{bottom:734.036800pt;}
.y247{bottom:734.262533pt;}
.ybf{bottom:735.359600pt;}
.y2b0{bottom:736.692933pt;}
.y1d4{bottom:737.680800pt;}
.y193{bottom:738.026267pt;}
.y266{bottom:739.811067pt;}
.y1bf{bottom:745.585333pt;}
.y282{bottom:745.933867pt;}
.y103{bottom:745.995867pt;}
.y124{bottom:747.370133pt;}
.y41{bottom:747.811067pt;}
.y15d{bottom:751.603467pt;}
.ye0{bottom:751.862533pt;}
.y2af{bottom:752.692933pt;}
.y22b{bottom:752.703467pt;}
.y1ad{bottom:753.144400pt;}
.y9f{bottom:754.036800pt;}
.y9{bottom:754.654800pt;}
.y15c{bottom:759.203467pt;}
.y7e{bottom:760.703467pt;}
.y246{bottom:761.595867pt;}
.ybe{bottom:762.292933pt;}
.y281{bottom:763.000533pt;}
.y1d3{bottom:763.947467pt;}
.y192{bottom:764.692933pt;}
.y60{bottom:766.918667pt;}
.y265{bottom:767.811067pt;}
.y1be{bottom:772.252000pt;}
.y102{bottom:772.262533pt;}
.y40{bottom:774.477733pt;}
.ydf{bottom:777.595867pt;}
.y1ac{bottom:779.811067pt;}
.y280{bottom:780.067200pt;}
.y22a{bottom:780.170133pt;}
.y9e{bottom:781.370133pt;}
.y123{bottom:782.929200pt;}
.y15b{bottom:786.970133pt;}
.y7d{bottom:787.370133pt;}
.y245{bottom:788.929200pt;}
.ybd{bottom:789.226267pt;}
.y1d2{bottom:790.214133pt;}
.y191{bottom:791.359600pt;}
.y2ae{bottom:794.026267pt;}
.y264{bottom:795.811067pt;}
.y8{bottom:796.521333pt;}
.y27f{bottom:797.134000pt;}
.y101{bottom:798.529200pt;}
.y3f{bottom:801.144400pt;}
.y159{bottom:802.170133pt;}
.yde{bottom:803.329200pt;}
.y1ab{bottom:806.477733pt;}
.y9d{bottom:808.703467pt;}
.y2ad{bottom:810.026267pt;}
.y122{bottom:810.929200pt;}
.y7c{bottom:814.036800pt;}
.y229{bottom:815.195867pt;}
.ybc{bottom:816.159733pt;}
.y244{bottom:816.262533pt;}
.y1d1{bottom:816.480800pt;}
.y15a{bottom:817.370133pt;}
.y208{bottom:821.595867pt;}
.y27e{bottom:821.759600pt;}
.y263{bottom:823.811067pt;}
.y100{bottom:824.795867pt;}
.y190{bottom:825.585333pt;}
.y2ac{bottom:826.026267pt;}
.y3e{bottom:827.811067pt;}
.ydd{bottom:829.062533pt;}
.y7{bottom:830.121333pt;}
.y1bd{bottom:833.144400pt;}
.y9c{bottom:836.036800pt;}
.y158{bottom:837.536800pt;}
.y27d{bottom:838.826400pt;}
.y121{bottom:838.929200pt;}
.y1aa{bottom:840.703333pt;}
.y5f{bottom:840.703467pt;}
.y2ab{bottom:842.026267pt;}
.y228{bottom:842.662533pt;}
.ybb{bottom:843.092933pt;}
.y243{bottom:843.595867pt;}
.y157{bottom:845.136800pt;}
.y207{bottom:848.262533pt;}
.y1d0{bottom:850.306533pt;}
.yff{bottom:851.062533pt;}
.y262{bottom:851.811067pt;}
.y18f{bottom:852.252000pt;}
.y3d{bottom:854.477733pt;}
.ydc{bottom:854.795867pt;}
.y2aa{bottom:858.026267pt;}
.y1bc{bottom:859.811067pt;}
.y27c{bottom:863.452000pt;}
.y6{bottom:863.721333pt;}
.y120{bottom:866.929200pt;}
.y1a9{bottom:867.370000pt;}
.y5e{bottom:867.370133pt;}
.y227{bottom:870.129200pt;}
.y9b{bottom:870.929200pt;}
.y156{bottom:873.553467pt;}
.y2a9{bottom:874.026267pt;}
.y206{bottom:874.929200pt;}
.y1cf{bottom:876.573200pt;}
.yfe{bottom:877.329200pt;}
.yba{bottom:877.585333pt;}
.y18e{bottom:878.918667pt;}
.y27b{bottom:880.518667pt;}
.ydb{bottom:880.529200pt;}
.y3c{bottom:881.144400pt;}
.y155{bottom:881.153467pt;}
.y261{bottom:887.370133pt;}
.y1a8{bottom:894.036667pt;}
.y5d{bottom:894.036800pt;}
.y11f{bottom:894.929200pt;}
.y226{bottom:897.595867pt;}
.y9a{bottom:898.262533pt;}
.y7b{bottom:901.595867pt;}
.y2a8{bottom:902.252000pt;}
.y1ce{bottom:902.839867pt;}
.yfd{bottom:903.595867pt;}
.y27a{bottom:905.144400pt;}
.y18d{bottom:905.585333pt;}
.yda{bottom:906.262533pt;}
.y3b{bottom:907.811067pt;}
.y154{bottom:910.220133pt;}
.y5{bottom:914.587867pt;}
.y260{bottom:915.370133pt;}
.y153{bottom:917.820133pt;}
.y1a7{bottom:920.703333pt;}
.y5c{bottom:920.703467pt;}
.y11e{bottom:922.929200pt;}
.y225{bottom:925.062533pt;}
.y99{bottom:925.595867pt;}
.y7a{bottom:928.262533pt;}
.y1cd{bottom:929.106533pt;}
.yfc{bottom:929.862533pt;}
.yd9{bottom:931.995867pt;}
.y3a{bottom:934.477733pt;}
.y18c{bottom:939.811067pt;}
.y25f{bottom:943.370133pt;}
.y152{bottom:946.236800pt;}
.yb9{bottom:946.570133pt;}
.y5b{bottom:947.370133pt;}
.y11d{bottom:950.929200pt;}
.y224{bottom:952.529200pt;}
.y98{bottom:952.929200pt;}
.y14d{bottom:953.836800pt;}
.y1a6{bottom:954.929067pt;}
.y79{bottom:954.929200pt;}
.y1cc{bottom:955.373200pt;}
.yfb{bottom:956.129200pt;}
.yd8{bottom:957.729200pt;}
.y151{bottom:961.436800pt;}
.y2a7{bottom:965.370000pt;}
.y14c{bottom:969.036800pt;}
.y25e{bottom:971.370133pt;}
.yb8{bottom:973.503467pt;}
.y5a{bottom:974.036800pt;}
.y150{bottom:976.636800pt;}
.y11c{bottom:978.929200pt;}
.y223{bottom:979.995867pt;}
.y97{bottom:980.262533pt;}
.y2a6{bottom:981.370000pt;}
.y1a5{bottom:981.595733pt;}
.y78{bottom:981.595867pt;}
.y1cb{bottom:981.639867pt;}
.yfa{bottom:982.395867pt;}
.yd7{bottom:983.462533pt;}
.y14b{bottom:984.236800pt;}
.y14f{bottom:991.836800pt;}
.y4{bottom:993.724400pt;}
.y39{bottom:995.370133pt;}
.y14a{bottom:999.436800pt;}
.y2a5{bottom:1004.929067pt;}
.y11b{bottom:1006.929200pt;}
.y14e{bottom:1007.036800pt;}
.y222{bottom:1007.462533pt;}
.y96{bottom:1007.595867pt;}
.y1ca{bottom:1007.906533pt;}
.yb7{bottom:1007.995867pt;}
.y1a4{bottom:1008.262400pt;}
.y59{bottom:1008.262533pt;}
.yf9{bottom:1008.662533pt;}
.yd6{bottom:1009.195867pt;}
.y3{bottom:1019.057733pt;}
.y2a4{bottom:1020.929067pt;}
.y1c9{bottom:1034.173200pt;}
.y1a3{bottom:1034.929067pt;}
.y58{bottom:1034.929200pt;}
.y2a3{bottom:1036.929067pt;}
.y2{bottom:1044.391067pt;}
.y1{bottom:1069.724400pt;}
.y36{bottom:1080.535467pt;}
.hb{height:32.042667pt;}
.ha{height:32.083333pt;}
.h10{height:38.000000pt;}
.hf{height:38.098958pt;}
.h8{height:40.000000pt;}
.h7{height:40.104167pt;}
.h9{height:48.000000pt;}
.h6{height:48.064000pt;}
.he{height:48.125000pt;}
.hc{height:50.793425pt;}
.h4{height:56.145833pt;}
.h3{height:60.000000pt;}
.h2{height:60.080000pt;}
.h11{height:68.498958pt;}
.h5{height:84.000000pt;}
.hd{height:159.795052pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:43.437200pt;}
.xe{left:49.056933pt;}
.x10{left:51.624667pt;}
.xa{left:59.723200pt;}
.x6{left:61.476933pt;}
.x9{left:65.152933pt;}
.x11{left:75.023600pt;}
.x17{left:80.411733pt;}
.xc{left:81.507067pt;}
.x8{left:87.138533pt;}
.x15{left:94.488133pt;}
.xb{left:95.849467pt;}
.x7{left:102.613867pt;}
.x14{left:104.006000pt;}
.x20{left:105.641333pt;}
.x1e{left:109.151200pt;}
.x26{left:112.661200pt;}
.x27{left:118.488133pt;}
.x25{left:119.748400pt;}
.x1d{left:125.290667pt;}
.x16{left:129.420267pt;}
.x13{left:161.531067pt;}
.xd{left:194.234133pt;}
.x5{left:201.793200pt;}
.x18{left:208.915733pt;}
.x28{left:252.514400pt;}
.x19{left:337.419733pt;}
.x24{left:339.553200pt;}
.x12{left:437.952800pt;}
.x1a{left:465.923600pt;}
.x3{left:571.726133pt;}
.x29{left:575.286133pt;}
.x1b{left:594.427467pt;}
.x1f{left:609.719733pt;}
.x21{left:615.864400pt;}
.x23{left:621.610267pt;}
.x1c{left:627.696133pt;}
.x22{left:635.297467pt;}
.x1{left:639.807200pt;}
.x2{left:645.066667pt;}
.x4{left:660.465867pt;}
}




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