
    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_e65d4ea3def9f2f6aae92acd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.230957;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_8bb78eb7c5acf418a0034717.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_484be30f9b8253470deec62a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_8a90c735eee5f6df1bf6bd22.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402832;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_dc61a67c1685efdaaf1a8e20.woff')format("woff");}.ff5{font-family:ff5;line-height:1.041992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_62399167f2cfa522cc3fd98f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.099609;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_a211f81019c819da0b068b47.woff')format("woff");}.ff7{font-family:ff7;line-height:1.066406;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);}
.v2{vertical-align:-11.982000px;}
.v5{vertical-align:-10.977000px;}
.v7{vertical-align:-7.980000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.977000px;}
.v4{vertical-align:11.982000px;}
.v3{vertical-align:13.977600px;}
.v1{vertical-align:16.968600px;}
.ls26{letter-spacing:-5.832000px;}
.ls4c{letter-spacing:-5.520000px;}
.ls3f{letter-spacing:-4.485000px;}
.ls7f{letter-spacing:-4.221000px;}
.ls70{letter-spacing:-4.200000px;}
.ls4e{letter-spacing:-4.071000px;}
.ls5e{letter-spacing:-3.420000px;}
.ls63{letter-spacing:-3.375000px;}
.ls44{letter-spacing:-3.105000px;}
.ls83{letter-spacing:-2.898000px;}
.lse{letter-spacing:-2.880000px;}
.ls2e{letter-spacing:-2.829000px;}
.ls8c{letter-spacing:-2.772000px;}
.ls89{letter-spacing:-2.520000px;}
.ls25{letter-spacing:-2.268000px;}
.ls48{letter-spacing:-2.208000px;}
.ls92{letter-spacing:-2.142000px;}
.ls27{letter-spacing:-1.998000px;}
.ls1{letter-spacing:-1.950000px;}
.ls40{letter-spacing:-1.863000px;}
.ls94{letter-spacing:-1.827000px;}
.ls3b{letter-spacing:-1.725000px;}
.ls1c{letter-spacing:-1.656000px;}
.ls54{letter-spacing:-1.587000px;}
.ls82{letter-spacing:-1.575000px;}
.ls7c{letter-spacing:-1.512000px;}
.ls7d{letter-spacing:-1.386000px;}
.ls61{letter-spacing:-1.380000px;}
.ls96{letter-spacing:-1.323000px;}
.ls39{letter-spacing:-1.311000px;}
.ls13{letter-spacing:-1.215000px;}
.ls79{letter-spacing:-1.197000px;}
.ls8a{letter-spacing:-1.134000px;}
.ls1d{letter-spacing:-1.104000px;}
.ls5{letter-spacing:-1.092000px;}
.ls57{letter-spacing:-1.086129px;}
.ls78{letter-spacing:-1.071000px;}
.ls4b{letter-spacing:-1.035000px;}
.ls86{letter-spacing:-1.008000px;}
.ls6d{letter-spacing:-0.972000px;}
.ls55{letter-spacing:-0.966000px;}
.ls9c{letter-spacing:-0.960000px;}
.ls77{letter-spacing:-0.945000px;}
.ls46{letter-spacing:-0.925221px;}
.ls31{letter-spacing:-0.897000px;}
.ls7e{letter-spacing:-0.819000px;}
.ls5b{letter-spacing:-0.780000px;}
.ls2f{letter-spacing:-0.759000px;}
.ls35{letter-spacing:-0.756000px;}
.ls5a{letter-spacing:-0.724086px;}
.ls7a{letter-spacing:-0.693000px;}
.ls1b{letter-spacing:-0.690000px;}
.ls66{letter-spacing:-0.683859px;}
.ls75{letter-spacing:-0.630000px;}
.ls59{letter-spacing:-0.621000px;}
.ls64{letter-spacing:-0.603405px;}
.ls50{letter-spacing:-0.598158px;}
.ls7b{letter-spacing:-0.567000px;}
.ls49{letter-spacing:-0.552000px;}
.ls76{letter-spacing:-0.504000px;}
.ls23{letter-spacing:-0.486000px;}
.ls3a{letter-spacing:-0.483000px;}
.ls8d{letter-spacing:-0.441000px;}
.ls14{letter-spacing:-0.414000px;}
.ls6a{letter-spacing:-0.409266px;}
.ls16{letter-spacing:-0.378000px;}
.ls65{letter-spacing:-0.346302px;}
.ls38{letter-spacing:-0.345000px;}
.ls91{letter-spacing:-0.315000px;}
.ls22{letter-spacing:-0.300000px;}
.ls4a{letter-spacing:-0.276000px;}
.ls45{letter-spacing:-0.241362px;}
.ls9a{letter-spacing:-0.240000px;}
.ls37{letter-spacing:-0.225000px;}
.ls24{letter-spacing:-0.216000px;}
.ls41{letter-spacing:-0.207000px;}
.ls56{letter-spacing:-0.201135px;}
.ls88{letter-spacing:-0.189000px;}
.ls8{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.162000px;}
.ls87{letter-spacing:-0.126000px;}
.ls60{letter-spacing:-0.069000px;}
.ls8b{letter-spacing:-0.063000px;}
.ls4f{letter-spacing:-0.062964px;}
.ls33{letter-spacing:-0.054000px;}
.ls5d{letter-spacing:-0.040227px;}
.ls4{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.000300px;}
.ls20{letter-spacing:0.054000px;}
.ls5f{letter-spacing:0.094446px;}
.ls47{letter-spacing:0.281589px;}
.ls8e{letter-spacing:0.378000px;}
.lsd{letter-spacing:0.540000px;}
.ls51{letter-spacing:0.566676px;}
.ls32{letter-spacing:0.621000px;}
.ls21{letter-spacing:0.675000px;}
.ls72{letter-spacing:0.759000px;}
.ls52{letter-spacing:0.818532px;}
.ls30{letter-spacing:0.828000px;}
.ls34{letter-spacing:1.133352px;}
.ls9b{letter-spacing:1.140000px;}
.ls15{letter-spacing:1.173000px;}
.ls81{letter-spacing:1.197000px;}
.ls2a{letter-spacing:1.214100px;}
.ls3d{letter-spacing:1.218000px;}
.ls28{letter-spacing:1.242000px;}
.ls3{letter-spacing:1.260000px;}
.ls6c{letter-spacing:1.296000px;}
.ls7{letter-spacing:1.320000px;}
.ls68{letter-spacing:1.449000px;}
.ls12{letter-spacing:1.488000px;}
.ls1f{letter-spacing:1.552158px;}
.ls69{letter-spacing:1.587000px;}
.lsa{letter-spacing:1.620000px;}
.ls71{letter-spacing:1.725000px;}
.ls99{letter-spacing:1.740000px;}
.ls67{letter-spacing:1.863000px;}
.ls11{letter-spacing:2.345700px;}
.ls58{letter-spacing:2.898000px;}
.ls2c{letter-spacing:3.102558px;}
.ls6e{letter-spacing:3.486000px;}
.lsb{letter-spacing:3.696000px;}
.ls98{letter-spacing:3.720000px;}
.lsf{letter-spacing:4.200000px;}
.ls74{letter-spacing:4.284000px;}
.ls1a{letter-spacing:4.395600px;}
.ls93{letter-spacing:5.103000px;}
.ls4d{letter-spacing:5.520000px;}
.lsc{letter-spacing:5.760000px;}
.ls8f{letter-spacing:5.859000px;}
.ls6{letter-spacing:5.880000px;}
.ls80{letter-spacing:5.985000px;}
.ls2{letter-spacing:6.000000px;}
.ls90{letter-spacing:6.174000px;}
.ls73{letter-spacing:6.300000px;}
.ls85{letter-spacing:6.993000px;}
.ls95{letter-spacing:7.497000px;}
.ls43{letter-spacing:8.160156px;}
.ls2d{letter-spacing:9.660000px;}
.ls19{letter-spacing:76.192758px;}
.ls1e{letter-spacing:464.879400px;}
.ls53{letter-spacing:465.614400px;}
.ls5c{letter-spacing:465.802200px;}
.ls3e{letter-spacing:466.057200px;}
.ls36{letter-spacing:467.482200px;}
.ls6b{letter-spacing:472.147200px;}
.ls62{letter-spacing:473.774400px;}
.ls97{letter-spacing:474.187200px;}
.ls84{letter-spacing:474.554400px;}
.ls0{letter-spacing:474.969000px;}
.ls10{letter-spacing:475.156800px;}
.ls6f{letter-spacing:475.514400px;}
.ls18{letter-spacing:952.522800px;}
.ls3c{letter-spacing:953.017800px;}
.ls42{letter-spacing:955.642800px;}
.ls9{letter-spacing:959.692800px;}
.ls29{letter-spacing:961.672800px;}
.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;}
}
.ws3{word-spacing:-22.740000px;}
.ws9{word-spacing:-22.620000px;}
.ws2{word-spacing:-22.512000px;}
.ws60{word-spacing:-21.987000px;}
.ws5d{word-spacing:-21.789000px;}
.ws19{word-spacing:-21.750000px;}
.wsf{word-spacing:-21.546000px;}
.ws2d{word-spacing:-20.850000px;}
.ws89{word-spacing:-20.580000px;}
.ws0{word-spacing:-19.125000px;}
.ws82{word-spacing:-18.900000px;}
.ws16{word-spacing:-18.285000px;}
.ws53{word-spacing:-17.700000px;}
.ws76{word-spacing:-17.577000px;}
.ws83{word-spacing:-17.514000px;}
.wsa{word-spacing:-17.400000px;}
.ws67{word-spacing:-17.325000px;}
.ws77{word-spacing:-17.073000px;}
.ws5f{word-spacing:-16.875000px;}
.ws1d{word-spacing:-16.416000px;}
.ws69{word-spacing:-16.128000px;}
.ws66{word-spacing:-15.561000px;}
.ws1c{word-spacing:-15.174000px;}
.ws23{word-spacing:-15.120000px;}
.ws6a{word-spacing:-14.805000px;}
.ws85{word-spacing:-14.238000px;}
.wsb{word-spacing:-13.980000px;}
.ws8a{word-spacing:-13.860000px;}
.ws84{word-spacing:-13.734000px;}
.ws68{word-spacing:-13.482000px;}
.ws1b{word-spacing:-13.122000px;}
.ws1{word-spacing:-13.062000px;}
.ws1a{word-spacing:-12.852000px;}
.ws25{word-spacing:-12.582000px;}
.ws38{word-spacing:-11.585376px;}
.ws39{word-spacing:-11.523000px;}
.ws4e{word-spacing:-11.400000px;}
.ws10{word-spacing:-11.303787px;}
.ws4d{word-spacing:-11.263560px;}
.ws45{word-spacing:-11.102652px;}
.ws36{word-spacing:-11.062425px;}
.ws54{word-spacing:-10.700382px;}
.ws57{word-spacing:-10.619928px;}
.ws37{word-spacing:-10.378566px;}
.ws46{word-spacing:-10.217658px;}
.ws24{word-spacing:-9.979794px;}
.ws3a{word-spacing:-9.664974px;}
.ws26{word-spacing:-9.660000px;}
.ws88{word-spacing:-7.497000px;}
.ws63{word-spacing:-6.300000px;}
.ws81{word-spacing:-6.174000px;}
.ws5{word-spacing:-6.000000px;}
.ws73{word-spacing:-5.985000px;}
.ws80{word-spacing:-5.859000px;}
.ws40{word-spacing:-5.520000px;}
.ws87{word-spacing:-5.103000px;}
.ws5c{word-spacing:-4.260000px;}
.wse{word-spacing:-4.200000px;}
.ws50{word-spacing:-3.840000px;}
.wsd{word-spacing:-3.696000px;}
.ws5e{word-spacing:-3.486000px;}
.ws49{word-spacing:-2.898000px;}
.ws58{word-spacing:-1.863000px;}
.ws8b{word-spacing:-1.740000px;}
.ws61{word-spacing:-1.725000px;}
.wsc{word-spacing:-1.620000px;}
.ws5a{word-spacing:-1.587000px;}
.ws55{word-spacing:-1.500000px;}
.ws11{word-spacing:-1.488000px;}
.ws59{word-spacing:-1.449000px;}
.ws7{word-spacing:-1.320000px;}
.ws6{word-spacing:-1.260000px;}
.ws2e{word-spacing:-1.242000px;}
.ws74{word-spacing:-1.197000px;}
.ws13{word-spacing:-1.173000px;}
.ws8d{word-spacing:-1.140000px;}
.ws29{word-spacing:-0.828000px;}
.ws62{word-spacing:-0.759000px;}
.ws2b{word-spacing:-0.621000px;}
.ws44{word-spacing:-0.566676px;}
.ws7f{word-spacing:-0.378000px;}
.ws4f{word-spacing:-0.094446px;}
.ws4{word-spacing:0.000000px;}
.ws42{word-spacing:0.062964px;}
.ws7c{word-spacing:0.063000px;}
.ws51{word-spacing:0.069000px;}
.ws15{word-spacing:0.162000px;}
.ws8{word-spacing:0.180000px;}
.ws79{word-spacing:0.189000px;}
.ws35{word-spacing:0.207000px;}
.ws8c{word-spacing:0.240000px;}
.ws3e{word-spacing:0.276000px;}
.ws1e{word-spacing:0.300000px;}
.ws86{word-spacing:0.315000px;}
.ws2f{word-spacing:0.345000px;}
.ws56{word-spacing:0.346302px;}
.ws14{word-spacing:0.378000px;}
.ws5b{word-spacing:0.409266px;}
.ws12{word-spacing:0.414000px;}
.ws7e{word-spacing:0.441000px;}
.ws31{word-spacing:0.483000px;}
.ws65{word-spacing:0.504000px;}
.ws3d{word-spacing:0.552000px;}
.ws6f{word-spacing:0.567000px;}
.ws43{word-spacing:0.598158px;}
.ws4a{word-spacing:0.621000px;}
.ws64{word-spacing:0.630000px;}
.ws17{word-spacing:0.690000px;}
.ws6e{word-spacing:0.693000px;}
.ws4b{word-spacing:0.724086px;}
.ws75{word-spacing:0.756000px;}
.ws28{word-spacing:0.759000px;}
.ws4c{word-spacing:0.780000px;}
.ws72{word-spacing:0.819000px;}
.ws2a{word-spacing:0.897000px;}
.ws6b{word-spacing:0.945000px;}
.ws48{word-spacing:0.966000px;}
.ws78{word-spacing:1.008000px;}
.ws3f{word-spacing:1.035000px;}
.ws6c{word-spacing:1.071000px;}
.ws7b{word-spacing:1.134000px;}
.ws6d{word-spacing:1.197000px;}
.ws30{word-spacing:1.311000px;}
.ws52{word-spacing:1.380000px;}
.ws71{word-spacing:1.386000px;}
.ws70{word-spacing:1.512000px;}
.ws47{word-spacing:1.587000px;}
.ws18{word-spacing:1.656000px;}
.ws32{word-spacing:1.725000px;}
.ws34{word-spacing:1.863000px;}
.ws21{word-spacing:1.998000px;}
.ws3c{word-spacing:2.208000px;}
.ws1f{word-spacing:2.268000px;}
.ws7a{word-spacing:2.520000px;}
.ws7d{word-spacing:2.772000px;}
.ws27{word-spacing:2.829000px;}
.ws3b{word-spacing:3.105000px;}
.ws41{word-spacing:4.071000px;}
.ws33{word-spacing:4.485000px;}
.ws20{word-spacing:5.832000px;}
.ws2c{word-spacing:43.445160px;}
.ws22{word-spacing:59.186160px;}
._1c{margin-left:-20.092800px;}
._22{margin-left:-18.345600px;}
._15{margin-left:-16.314000px;}
._16{margin-left:-15.174000px;}
._14{margin-left:-11.652000px;}
._9{margin-left:-9.787800px;}
._13{margin-left:-7.913400px;}
._6{margin-left:-6.834000px;}
._a{margin-left:-5.110200px;}
._5{margin-left:-3.786600px;}
._4{margin-left:-2.337000px;}
._1{margin-left:-1.047000px;}
._2{width:1.248000px;}
._0{width:2.790000px;}
._b{width:3.819000px;}
._7{width:4.842000px;}
._3{width:6.126000px;}
._8{width:7.920000px;}
._c{width:9.492000px;}
._d{width:10.758000px;}
._f{width:12.528000px;}
._1e{width:14.050800px;}
._21{width:15.546000px;}
._20{width:19.565700px;}
._17{width:27.767124px;}
._1f{width:29.243676px;}
._23{width:33.471600px;}
._12{width:43.445160px;}
._11{width:71.400000px;}
._1d{width:92.891400px;}
._10{width:253.008000px;}
._1b{width:454.590000px;}
._1a{width:474.852000px;}
._19{width:481.725000px;}
._18{width:486.311400px;}
._e{width:578.400000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.482000px;}
.fsd{font-size:34.980000px;}
.fsa{font-size:40.227000px;}
.fs3{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y23c{bottom:106.118850px;}
.y21c{bottom:106.166100px;}
.y1d7{bottom:106.249350px;}
.yca{bottom:106.281450px;}
.y6d{bottom:106.284300px;}
.y8f{bottom:106.284450px;}
.ya2{bottom:106.287450px;}
.y167{bottom:106.290300px;}
.y154{bottom:106.291950px;}
.yf6{bottom:106.293450px;}
.y12e{bottom:106.296300px;}
.y10c{bottom:106.296450px;}
.y46{bottom:106.304550px;}
.y1fd{bottom:106.316550px;}
.y1b5{bottom:106.366050px;}
.y20{bottom:106.389150px;}
.yed{bottom:106.506300px;}
.y17c{bottom:112.927350px;}
.yc9{bottom:123.534450px;}
.y6c{bottom:123.537300px;}
.y8e{bottom:123.537450px;}
.ya1{bottom:123.540450px;}
.y166{bottom:123.543300px;}
.yf5{bottom:123.546450px;}
.y12d{bottom:126.544800px;}
.y10b{bottom:126.544950px;}
.y1b4{bottom:126.738300px;}
.y1fc{bottom:126.760050px;}
.y1f{bottom:127.179150px;}
.y153{bottom:127.354200px;}
.y1d6{bottom:127.708350px;}
.y23b{bottom:127.853850px;}
.y21b{bottom:128.326350px;}
.yec{bottom:128.482800px;}
.y45{bottom:128.594550px;}
.y17b{bottom:133.178850px;}
.yc8{bottom:140.787450px;}
.y6b{bottom:140.790300px;}
.y8d{bottom:140.790450px;}
.ya0{bottom:140.793450px;}
.y165{bottom:140.796300px;}
.yf4{bottom:143.794950px;}
.y142{bottom:145.048200px;}
.y1b3{bottom:147.110550px;}
.y1fb{bottom:147.203550px;}
.y1e{bottom:147.969150px;}
.y12c{bottom:148.046700px;}
.y152{bottom:148.416450px;}
.y1d5{bottom:149.167350px;}
.yeb{bottom:150.459300px;}
.y44{bottom:151.016250px;}
.y17a{bottom:153.430350px;}
.yc7{bottom:158.040450px;}
.y6a{bottom:158.043300px;}
.y8c{bottom:158.043450px;}
.y9f{bottom:158.046450px;}
.y23a{bottom:158.093850px;}
.y21a{bottom:158.991600px;}
.y164{bottom:161.044800px;}
.y1a7{bottom:162.298500px;}
.y141{bottom:165.296700px;}
.yf3{bottom:165.297000px;}
.y12b{bottom:166.544250px;}
.y1b2{bottom:167.482800px;}
.y25a{bottom:168.488850px;}
.y1d{bottom:168.759150px;}
.y151{bottom:169.478700px;}
.y1d4{bottom:170.626350px;}
.y43{bottom:171.806250px;}
.yea{bottom:172.435800px;}
.y10a{bottom:173.677350px;}
.y179{bottom:173.681850px;}
.y184{bottom:174.940050px;}
.yc6{bottom:175.293450px;}
.y69{bottom:175.296300px;}
.y8b{bottom:175.296450px;}
.y9e{bottom:175.299450px;}
.y1fa{bottom:176.152050px;}
.y9d{bottom:178.294950px;}
.y1a6{bottom:179.551500px;}
.y239{bottom:179.828850px;}
.y219{bottom:181.151850px;}
.y12a{bottom:183.797250px;}
.y1b1{bottom:187.855050px;}
.y259{bottom:188.743350px;}
.y1c{bottom:189.549150px;}
.y150{bottom:190.540950px;}
.y1d3{bottom:192.085350px;}
.y9c{bottom:192.543450px;}
.yc5{bottom:192.546450px;}
.y42{bottom:192.596250px;}
.y109{bottom:193.928850px;}
.y178{bottom:193.933350px;}
.ye9{bottom:194.412300px;}
.y183{bottom:195.187050px;}
.y68{bottom:195.544800px;}
.y8a{bottom:195.544950px;}
.y1f9{bottom:197.351550px;}
.y129{bottom:201.050250px;}
.y238{bottom:201.563850px;}
.y1b0{bottom:208.227300px;}
.y140{bottom:209.314950px;}
.yc4{bottom:209.790450px;}
.y89{bottom:209.796450px;}
.y1b{bottom:210.339150px;}
.y14f{bottom:211.603200px;}
.y218{bottom:211.817100px;}
.y41{bottom:213.386250px;}
.y1d2{bottom:213.544350px;}
.y163{bottom:213.751350px;}
.y67{bottom:214.030200px;}
.y108{bottom:214.180350px;}
.y177{bottom:214.184850px;}
.y182{bottom:215.438550px;}
.ye8{bottom:216.388800px;}
.y258{bottom:217.502850px;}
.y128{bottom:221.298750px;}
.y1a5{bottom:226.488750px;}
.yc3{bottom:227.043450px;}
.y88{bottom:227.049450px;}
.y1af{bottom:228.599550px;}
.y9b{bottom:230.044950px;}
.y1a{bottom:231.129150px;}
.y66{bottom:231.283200px;}
.y237{bottom:231.803850px;}
.y217{bottom:233.977350px;}
.y162{bottom:234.001350px;}
.y40{bottom:234.176250px;}
.y107{bottom:234.431850px;}
.y176{bottom:234.436350px;}
.y1d1{bottom:235.003350px;}
.y181{bottom:235.690050px;}
.yf2{bottom:237.451350px;}
.y257{bottom:237.757350px;}
.ye7{bottom:238.365300px;}
.y9a{bottom:244.275450px;}
.yc2{bottom:244.296450px;}
.y1a4{bottom:246.981750px;}
.y65{bottom:248.536200px;}
.y1ae{bottom:248.971800px;}
.y19{bottom:251.919150px;}
.y236{bottom:253.538850px;}
.y14e{bottom:253.932900px;}
.y161{bottom:254.251350px;}
.y106{bottom:254.683350px;}
.y175{bottom:254.687850px;}
.y3f{bottom:254.966250px;}
.y180{bottom:255.941550px;}
.y216{bottom:256.137600px;}
.y1d0{bottom:256.462350px;}
.yf1{bottom:257.701350px;}
.ye6{bottom:260.341800px;}
.y99{bottom:261.528450px;}
.yc1{bottom:264.544950px;}
.y127{bottom:265.402500px;}
.y64{bottom:265.789200px;}
.y256{bottom:266.516850px;}
.y1a3{bottom:267.474750px;}
.y1f8{bottom:269.022600px;}
.y1ad{bottom:269.344050px;}
.y18{bottom:272.709150px;}
.y87{bottom:274.056600px;}
.y160{bottom:274.501350px;}
.y105{bottom:274.934850px;}
.y174{bottom:274.939350px;}
.y235{bottom:275.273850px;}
.y3e{bottom:275.756250px;}
.y1cf{bottom:277.921350px;}
.yf0{bottom:277.951350px;}
.y14d{bottom:278.739150px;}
.y98{bottom:278.781450px;}
.ye5{bottom:282.318300px;}
.y63{bottom:283.042200px;}
.yc0{bottom:283.045500px;}
.y126{bottom:286.240500px;}
.y255{bottom:286.771350px;}
.y215{bottom:286.802850px;}
.y1a2{bottom:287.967750px;}
.y275{bottom:289.434750px;}
.y1f7{bottom:289.463850px;}
.y1ac{bottom:289.716300px;}
.y17{bottom:293.499150px;}
.y15f{bottom:294.751350px;}
.y104{bottom:295.186350px;}
.y173{bottom:295.190850px;}
.y97{bottom:296.034450px;}
.y3d{bottom:296.546250px;}
.y86{bottom:296.671350px;}
.yef{bottom:298.201350px;}
.y1ce{bottom:299.380350px;}
.y62{bottom:300.295200px;}
.ybf{bottom:300.298500px;}
.y14c{bottom:303.545400px;}
.ye4{bottom:304.294800px;}
.y234{bottom:305.513850px;}
.y125{bottom:307.078500px;}
.y1a1{bottom:308.460750px;}
.y214{bottom:308.963100px;}
.y274{bottom:309.684750px;}
.y1f6{bottom:309.905100px;}
.y1ab{bottom:310.088550px;}
.y96{bottom:313.287450px;}
.y16{bottom:314.289150px;}
.y15e{bottom:315.001350px;}
.y103{bottom:315.437850px;}
.y172{bottom:315.442350px;}
.y254{bottom:315.530850px;}
.y3c{bottom:317.336250px;}
.y61{bottom:317.548200px;}
.ybe{bottom:317.551500px;}
.y85{bottom:319.286100px;}
.ybd{bottom:320.547000px;}
.y1cd{bottom:320.839350px;}
.ye3{bottom:326.271300px;}
.y233{bottom:327.248850px;}
.y124{bottom:327.916500px;}
.y1a0{bottom:328.953750px;}
.y273{bottom:329.934750px;}
.y1f5{bottom:330.346350px;}
.y1aa{bottom:330.460800px;}
.y95{bottom:330.540450px;}
.y213{bottom:331.123350px;}
.y15{bottom:335.079150px;}
.y102{bottom:335.689350px;}
.y171{bottom:335.693850px;}
.y253{bottom:335.785350px;}
.y60{bottom:337.796700px;}
.y3b{bottom:338.126250px;}
.ybc{bottom:339.050700px;}
.y84{bottom:341.900850px;}
.y1cc{bottom:342.298350px;}
.y94{bottom:347.793450px;}
.ye2{bottom:348.247800px;}
.y123{bottom:348.754500px;}
.y19f{bottom:349.446750px;}
.y272{bottom:350.184750px;}
.y1f4{bottom:350.787600px;}
.y1a9{bottom:350.833050px;}
.y14{bottom:355.869150px;}
.y101{bottom:355.940850px;}
.y170{bottom:355.945350px;}
.y252{bottom:356.039850px;}
.y232{bottom:357.488850px;}
.y3a{bottom:358.916250px;}
.ybb{bottom:359.299200px;}
.y212{bottom:361.788600px;}
.y1cb{bottom:363.757350px;}
.y83{bottom:364.515600px;}
.y93{bottom:365.046450px;}
.y14b{bottom:366.615300px;}
.y122{bottom:369.592500px;}
.y19e{bottom:369.939750px;}
.ye1{bottom:370.224300px;}
.y1a8{bottom:371.205300px;}
.y1f3{bottom:371.228850px;}
.y100{bottom:376.192350px;}
.y16f{bottom:376.196850px;}
.y13{bottom:376.659150px;}
.yba{bottom:377.802750px;}
.y231{bottom:379.223850px;}
.y39{bottom:379.706250px;}
.y5f{bottom:381.815100px;}
.y271{bottom:383.184750px;}
.y211{bottom:383.948850px;}
.y251{bottom:384.799350px;}
.y1ca{bottom:385.216350px;}
.y92{bottom:385.294950px;}
.y82{bottom:387.130350px;}
.y14a{bottom:387.677550px;}
.y121{bottom:390.430500px;}
.y19d{bottom:390.432750px;}
.y1f2{bottom:391.670100px;}
.ye0{bottom:392.200800px;}
.y13f{bottom:395.333850px;}
.yff{bottom:396.443850px;}
.y16e{bottom:396.448350px;}
.y12{bottom:397.449150px;}
.yb9{bottom:398.051250px;}
.y38{bottom:400.496250px;}
.y230{bottom:400.958850px;}
.y5e{bottom:402.550650px;}
.y250{bottom:405.053850px;}
.y1c9{bottom:406.675350px;}
.y149{bottom:408.739800px;}
.y81{bottom:409.745100px;}
.y19c{bottom:410.925750px;}
.y120{bottom:411.268500px;}
.y1f1{bottom:412.111350px;}
.yb8{bottom:412.302750px;}
.ydf{bottom:414.177300px;}
.y210{bottom:414.614100px;}
.yfe{bottom:416.695350px;}
.y16d{bottom:416.699850px;}
.y11{bottom:418.239150px;}
.y37{bottom:421.286250px;}
.y5d{bottom:423.285150px;}
.y270{bottom:424.689750px;}
.yb7{bottom:429.555750px;}
.y148{bottom:429.802050px;}
.y22f{bottom:431.198850px;}
.y19b{bottom:431.418750px;}
.y11f{bottom:432.106500px;}
.y80{bottom:432.359850px;}
.y1f0{bottom:432.552600px;}
.y24f{bottom:433.813350px;}
.yde{bottom:436.153800px;}
.y20f{bottom:436.774350px;}
.yfd{bottom:436.946850px;}
.y16c{bottom:436.951350px;}
.y10{bottom:439.029150px;}
.y36{bottom:442.076250px;}
.y5c{bottom:444.019650px;}
.y26f{bottom:444.189750px;}
.y1c8{bottom:449.390550px;}
.y147{bottom:450.864300px;}
.y19a{bottom:451.911750px;}
.y22e{bottom:452.933850px;}
.y11e{bottom:452.944500px;}
.y1ef{bottom:452.993850px;}
.y24e{bottom:454.067850px;}
.y7f{bottom:454.974600px;}
.yfc{bottom:457.198350px;}
.ydd{bottom:458.130300px;}
.yf{bottom:459.819150px;}
.y35{bottom:462.866250px;}
.y26e{bottom:463.689750px;}
.y5b{bottom:464.754150px;}
.y20e{bottom:467.439600px;}
.y1c2{bottom:470.434350px;}
.y146{bottom:471.926550px;}
.y199{bottom:472.404750px;}
.y1ee{bottom:473.435100px;}
.y11d{bottom:473.799600px;}
.y24d{bottom:474.322350px;}
.y22d{bottom:474.668850px;}
.yb6{bottom:476.612100px;}
.yfb{bottom:477.449850px;}
.y16b{bottom:477.451350px;}
.y7e{bottom:477.589350px;}
.ydc{bottom:480.106800px;}
.ye{bottom:480.609150px;}
.y26d{bottom:483.189750px;}
.y34{bottom:483.656250px;}
.y5a{bottom:485.488650px;}
.y20d{bottom:489.599850px;}
.y1c1{bottom:490.684350px;}
.y198{bottom:492.897750px;}
.y145{bottom:492.988800px;}
.y1ed{bottom:493.876350px;}
.y11c{bottom:494.637600px;}
.yfa{bottom:497.701350px;}
.yb5{bottom:497.915850px;}
.y7d{bottom:500.204100px;}
.yd{bottom:501.399150px;}
.ydb{bottom:502.083300px;}
.y26c{bottom:502.689750px;}
.y24c{bottom:503.081850px;}
.y33{bottom:504.446250px;}
.y22c{bottom:504.908850px;}
.y59{bottom:506.223150px;}
.y1c0{bottom:510.934350px;}
.y1c7{bottom:512.849550px;}
.y197{bottom:513.390750px;}
.y1ec{bottom:514.317600px;}
.y11b{bottom:515.492700px;}
.y16a{bottom:517.951350px;}
.yb4{bottom:519.219600px;}
.y20c{bottom:520.265100px;}
.y26b{bottom:522.189750px;}
.y7c{bottom:522.818850px;}
.yda{bottom:524.059800px;}
.y32{bottom:525.236250px;}
.y22b{bottom:526.643850px;}
.y58{bottom:526.957650px;}
.y1bf{bottom:531.184350px;}
.y24b{bottom:531.841350px;}
.y196{bottom:533.883750px;}
.y1c6{bottom:534.308550px;}
.y1eb{bottom:534.758850px;}
.yc{bottom:534.954150px;}
.y11a{bottom:536.330700px;}
.yf9{bottom:538.201350px;}
.yb3{bottom:540.523350px;}
.y26a{bottom:541.689750px;}
.y20b{bottom:542.425350px;}
.y7b{bottom:545.433600px;}
.y31{bottom:546.026250px;}
.yd9{bottom:546.036300px;}
.y57{bottom:547.694250px;}
.y1be{bottom:551.434350px;}
.y24a{bottom:552.095850px;}
.y195{bottom:554.376750px;}
.y1ea{bottom:555.200100px;}
.y1c5{bottom:555.767550px;}
.y144{bottom:556.370250px;}
.y22a{bottom:556.883850px;}
.y119{bottom:557.194350px;}
.y169{bottom:558.451350px;}
.y269{bottom:561.189750px;}
.yb2{bottom:561.827100px;}
.y20a{bottom:564.585600px;}
.y30{bottom:566.816250px;}
.yd8{bottom:568.012800px;}
.y7a{bottom:568.048350px;}
.y56{bottom:568.428750px;}
.y1bd{bottom:571.684350px;}
.y13e{bottom:572.398200px;}
.y194{bottom:574.869750px;}
.y1e9{bottom:575.641350px;}
.y1c4{bottom:577.226550px;}
.y118{bottom:578.032350px;}
.y229{bottom:578.618850px;}
.y168{bottom:578.701350px;}
.y268{bottom:580.689750px;}
.y249{bottom:580.855350px;}
.yb1{bottom:583.130850px;}
.y2f{bottom:587.606250px;}
.y55{bottom:589.163250px;}
.yd7{bottom:589.989300px;}
.y79{bottom:590.663100px;}
.y1bc{bottom:591.934350px;}
.y13d{bottom:593.046450px;}
.yb{bottom:594.032700px;}
.y209{bottom:595.250850px;}
.y193{bottom:595.362750px;}
.y1e8{bottom:596.082600px;}
.y1c3{bottom:598.685550px;}
.y117{bottom:598.870350px;}
.y267{bottom:600.189750px;}
.y228{bottom:600.353850px;}
.y248{bottom:601.109850px;}
.yb0{bottom:604.434600px;}
.y2e{bottom:608.396250px;}
.y54{bottom:609.897750px;}
.yd6{bottom:611.965800px;}
.y1bb{bottom:612.184350px;}
.y78{bottom:613.277850px;}
.y13c{bottom:613.694700px;}
.y192{bottom:615.807450px;}
.y1e7{bottom:616.523850px;}
.y266{bottom:619.689750px;}
.y116{bottom:619.708350px;}
.y247{bottom:621.364350px;}
.yee{bottom:622.201350px;}
.ya{bottom:622.319700px;}
.yaf{bottom:625.738350px;}
.y208{bottom:625.916100px;}
.y2d{bottom:629.186250px;}
.y227{bottom:630.593850px;}
.y53{bottom:630.632250px;}
.y1ba{bottom:632.434350px;}
.yd5{bottom:633.942300px;}
.y13b{bottom:634.332450px;}
.y77{bottom:635.892600px;}
.y191{bottom:636.300450px;}
.y1e6{bottom:636.965100px;}
.y265{bottom:639.189750px;}
.yae{bottom:647.042100px;}
.y207{bottom:648.076350px;}
.y2c{bottom:649.976250px;}
.y246{bottom:650.123850px;}
.y9{bottom:650.606700px;}
.y52{bottom:651.366750px;}
.y226{bottom:652.328850px;}
.y1b9{bottom:652.684350px;}
.y13a{bottom:654.980700px;}
.yd4{bottom:655.918800px;}
.y190{bottom:656.793450px;}
.y1e5{bottom:657.406350px;}
.y76{bottom:658.507350px;}
.y264{bottom:658.689750px;}
.y115{bottom:661.793100px;}
.yad{bottom:668.345850px;}
.y51{bottom:672.101250px;}
.y1b8{bottom:672.934350px;}
.y139{bottom:675.570600px;}
.y18f{bottom:677.286450px;}
.y1e4{bottom:677.847600px;}
.yd3{bottom:677.895300px;}
.y263{bottom:678.189750px;}
.y206{bottom:678.741600px;}
.y245{bottom:678.883350px;}
.y15d{bottom:679.943850px;}
.y75{bottom:681.122100px;}
.y225{bottom:682.568850px;}
.y2b{bottom:683.531250px;}
.y114{bottom:686.396850px;}
.yac{bottom:689.649600px;}
.y50{bottom:692.835750px;}
.y1b7{bottom:693.184350px;}
.y138{bottom:696.218850px;}
.y262{bottom:697.689750px;}
.y18e{bottom:697.779450px;}
.y1e3{bottom:698.288850px;}
.y244{bottom:699.137850px;}
.yd2{bottom:699.871800px;}
.y8{bottom:700.141350px;}
.y15c{bottom:700.195350px;}
.y205{bottom:700.901850px;}
.y1d9{bottom:702.075600px;}
.y74{bottom:703.736850px;}
.yab{bottom:710.953350px;}
.y113{bottom:711.000600px;}
.y224{bottom:712.808850px;}
.y1b6{bottom:713.434350px;}
.y4f{bottom:713.570250px;}
.y137{bottom:716.867100px;}
.y261{bottom:717.189750px;}
.y18d{bottom:718.272450px;}
.y1e2{bottom:718.730100px;}
.y15b{bottom:720.446850px;}
.yd1{bottom:721.848300px;}
.y1d8{bottom:722.325600px;}
.y204{bottom:723.062100px;}
.y73{bottom:726.351600px;}
.y243{bottom:727.897350px;}
.yaa{bottom:732.257100px;}
.y7{bottom:732.946350px;}
.y4e{bottom:734.304750px;}
.y223{bottom:734.543850px;}
.y112{bottom:735.604350px;}
.y260{bottom:736.689750px;}
.y136{bottom:737.515350px;}
.y18c{bottom:738.765450px;}
.y1e1{bottom:739.171350px;}
.y15a{bottom:740.698350px;}
.y143{bottom:741.748950px;}
.yd0{bottom:743.824800px;}
.y242{bottom:748.151850px;}
.ya9{bottom:753.560850px;}
.y203{bottom:753.727350px;}
.y4d{bottom:755.039250px;}
.y2a{bottom:755.636250px;}
.y25f{bottom:756.189750px;}
.y222{bottom:756.278850px;}
.y135{bottom:758.163600px;}
.y18b{bottom:759.258450px;}
.y1e0{bottom:759.612600px;}
.y159{bottom:760.949850px;}
.y17f{bottom:762.191550px;}
.y6{bottom:765.751350px;}
.ycf{bottom:765.801300px;}
.y72{bottom:770.225850px;}
.ya8{bottom:774.864600px;}
.y4c{bottom:775.773750px;}
.y202{bottom:775.887600px;}
.y241{bottom:776.911350px;}
.y29{bottom:777.926250px;}
.y134{bottom:778.811850px;}
.y18a{bottom:779.751450px;}
.y1df{bottom:780.053850px;}
.y158{bottom:781.192350px;}
.y17e{bottom:781.691550px;}
.y221{bottom:786.518850px;}
.yce{bottom:787.777800px;}
.y25e{bottom:788.439750px;}
.ya7{bottom:796.174050px;}
.y4b{bottom:796.508250px;}
.y240{bottom:797.165850px;}
.y201{bottom:798.047850px;}
.y111{bottom:798.511350px;}
.y133{bottom:799.460100px;}
.y189{bottom:800.244450px;}
.y28{bottom:800.247750px;}
.y1de{bottom:800.495100px;}
.y17d{bottom:801.191550px;}
.y157{bottom:801.443850px;}
.y220{bottom:808.253850px;}
.ycd{bottom:809.754300px;}
.y4a{bottom:817.242750px;}
.ya6{bottom:817.477800px;}
.y110{bottom:819.349350px;}
.y132{bottom:820.108350px;}
.y188{bottom:820.737450px;}
.y1dd{bottom:820.936350px;}
.y27{bottom:821.037750px;}
.y156{bottom:821.695350px;}
.y23f{bottom:825.925350px;}
.y5{bottom:828.319050px;}
.y200{bottom:828.713100px;}
.y21f{bottom:829.988850px;}
.ycc{bottom:831.730800px;}
.y71{bottom:834.857100px;}
.y49{bottom:837.977250px;}
.ya5{bottom:838.787250px;}
.y10f{bottom:840.187350px;}
.y131{bottom:840.756600px;}
.y187{bottom:841.230450px;}
.y1dc{bottom:841.377600px;}
.y26{bottom:841.827750px;}
.y155{bottom:841.946850px;}
.y25d{bottom:846.195450px;}
.y4{bottom:850.609050px;}
.y1ff{bottom:850.873350px;}
.y23e{bottom:854.684850px;}
.y70{bottom:857.471850px;}
.y48{bottom:858.711750px;}
.ya4{bottom:860.091000px;}
.y21e{bottom:860.228850px;}
.y10e{bottom:861.025350px;}
.y130{bottom:861.404850px;}
.y186{bottom:861.715350px;}
.y1db{bottom:861.818850px;}
.yf8{bottom:862.198350px;}
.y25{bottom:862.617750px;}
.y91{bottom:864.657000px;}
.y25c{bottom:873.201450px;}
.ycb{bottom:874.968450px;}
.y6f{bottom:880.086600px;}
.ya3{bottom:881.397600px;}
.y3{bottom:881.404050px;}
.y1fe{bottom:881.538600px;}
.y10d{bottom:881.863350px;}
.y21d{bottom:881.963850px;}
.y12f{bottom:882.053100px;}
.y185{bottom:882.208350px;}
.y1da{bottom:882.260100px;}
.yf7{bottom:882.449850px;}
.y24{bottom:883.407750px;}
.y23d{bottom:883.444350px;}
.y90{bottom:884.427750px;}
.y25b{bottom:900.207450px;}
.y47{bottom:900.706200px;}
.y6e{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y23{bottom:904.197750px;}
.y22{bottom:948.189000px;}
.y21{bottom:966.189000px;}
.hd{height:21.720735px;}
.hb{height:40.620539px;}
.h7{height:41.396484px;}
.h8{height:46.757812px;}
.hc{height:52.602539px;}
.he{height:52.638539px;}
.h12{height:55.488281px;}
.h16{height:58.262695px;}
.h4{height:58.447266px;}
.h3{height:61.369629px;}
.ha{height:67.214355px;}
.h13{height:67.232355px;}
.h14{height:67.246755px;}
.h11{height:67.250355px;}
.h10{height:67.256355px;}
.h15{height:67.407555px;}
.hf{height:67.447755px;}
.h2{height:73.059082px;}
.h9{height:78.903809px;}
.h6{height:81.826172px;}
.h5{height:105.205078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:82.214250px;}
.x7{left:84.036900px;}
.x4{left:85.080600px;}
.x5{left:104.236350px;}
.x3{left:105.885600px;}
.x9{left:106.953450px;}
.x8{left:191.512950px;}
.x6{left:231.420750px;}
.x2{left:233.415450px;}
.xa{left:382.881000px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v5{vertical-align:-9.757333pt;}
.v7{vertical-align:-7.093333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.757333pt;}
.v4{vertical-align:10.650667pt;}
.v3{vertical-align:12.424533pt;}
.v1{vertical-align:15.083200pt;}
.ls26{letter-spacing:-5.184000pt;}
.ls4c{letter-spacing:-4.906667pt;}
.ls3f{letter-spacing:-3.986667pt;}
.ls7f{letter-spacing:-3.752000pt;}
.ls70{letter-spacing:-3.733333pt;}
.ls4e{letter-spacing:-3.618667pt;}
.ls5e{letter-spacing:-3.040000pt;}
.ls63{letter-spacing:-3.000000pt;}
.ls44{letter-spacing:-2.760000pt;}
.ls83{letter-spacing:-2.576000pt;}
.lse{letter-spacing:-2.560000pt;}
.ls2e{letter-spacing:-2.514667pt;}
.ls8c{letter-spacing:-2.464000pt;}
.ls89{letter-spacing:-2.240000pt;}
.ls25{letter-spacing:-2.016000pt;}
.ls48{letter-spacing:-1.962667pt;}
.ls92{letter-spacing:-1.904000pt;}
.ls27{letter-spacing:-1.776000pt;}
.ls1{letter-spacing:-1.733333pt;}
.ls40{letter-spacing:-1.656000pt;}
.ls94{letter-spacing:-1.624000pt;}
.ls3b{letter-spacing:-1.533333pt;}
.ls1c{letter-spacing:-1.472000pt;}
.ls54{letter-spacing:-1.410667pt;}
.ls82{letter-spacing:-1.400000pt;}
.ls7c{letter-spacing:-1.344000pt;}
.ls7d{letter-spacing:-1.232000pt;}
.ls61{letter-spacing:-1.226667pt;}
.ls96{letter-spacing:-1.176000pt;}
.ls39{letter-spacing:-1.165333pt;}
.ls13{letter-spacing:-1.080000pt;}
.ls79{letter-spacing:-1.064000pt;}
.ls8a{letter-spacing:-1.008000pt;}
.ls1d{letter-spacing:-0.981333pt;}
.ls5{letter-spacing:-0.970667pt;}
.ls57{letter-spacing:-0.965448pt;}
.ls78{letter-spacing:-0.952000pt;}
.ls4b{letter-spacing:-0.920000pt;}
.ls86{letter-spacing:-0.896000pt;}
.ls6d{letter-spacing:-0.864000pt;}
.ls55{letter-spacing:-0.858667pt;}
.ls9c{letter-spacing:-0.853333pt;}
.ls77{letter-spacing:-0.840000pt;}
.ls46{letter-spacing:-0.822419pt;}
.ls31{letter-spacing:-0.797333pt;}
.ls7e{letter-spacing:-0.728000pt;}
.ls5b{letter-spacing:-0.693333pt;}
.ls2f{letter-spacing:-0.674667pt;}
.ls35{letter-spacing:-0.672000pt;}
.ls5a{letter-spacing:-0.643632pt;}
.ls7a{letter-spacing:-0.616000pt;}
.ls1b{letter-spacing:-0.613333pt;}
.ls66{letter-spacing:-0.607875pt;}
.ls75{letter-spacing:-0.560000pt;}
.ls59{letter-spacing:-0.552000pt;}
.ls64{letter-spacing:-0.536360pt;}
.ls50{letter-spacing:-0.531696pt;}
.ls7b{letter-spacing:-0.504000pt;}
.ls49{letter-spacing:-0.490667pt;}
.ls76{letter-spacing:-0.448000pt;}
.ls23{letter-spacing:-0.432000pt;}
.ls3a{letter-spacing:-0.429333pt;}
.ls8d{letter-spacing:-0.392000pt;}
.ls14{letter-spacing:-0.368000pt;}
.ls6a{letter-spacing:-0.363792pt;}
.ls16{letter-spacing:-0.336000pt;}
.ls65{letter-spacing:-0.307824pt;}
.ls38{letter-spacing:-0.306667pt;}
.ls91{letter-spacing:-0.280000pt;}
.ls22{letter-spacing:-0.266667pt;}
.ls4a{letter-spacing:-0.245333pt;}
.ls45{letter-spacing:-0.214544pt;}
.ls9a{letter-spacing:-0.213333pt;}
.ls37{letter-spacing:-0.200000pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls41{letter-spacing:-0.184000pt;}
.ls56{letter-spacing:-0.178787pt;}
.ls88{letter-spacing:-0.168000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.144000pt;}
.ls87{letter-spacing:-0.112000pt;}
.ls60{letter-spacing:-0.061333pt;}
.ls8b{letter-spacing:-0.056000pt;}
.ls4f{letter-spacing:-0.055968pt;}
.ls33{letter-spacing:-0.048000pt;}
.ls5d{letter-spacing:-0.035757pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.000267pt;}
.ls20{letter-spacing:0.048000pt;}
.ls5f{letter-spacing:0.083952pt;}
.ls47{letter-spacing:0.250301pt;}
.ls8e{letter-spacing:0.336000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls51{letter-spacing:0.503712pt;}
.ls32{letter-spacing:0.552000pt;}
.ls21{letter-spacing:0.600000pt;}
.ls72{letter-spacing:0.674667pt;}
.ls52{letter-spacing:0.727584pt;}
.ls30{letter-spacing:0.736000pt;}
.ls34{letter-spacing:1.007424pt;}
.ls9b{letter-spacing:1.013333pt;}
.ls15{letter-spacing:1.042667pt;}
.ls81{letter-spacing:1.064000pt;}
.ls2a{letter-spacing:1.079200pt;}
.ls3d{letter-spacing:1.082667pt;}
.ls28{letter-spacing:1.104000pt;}
.ls3{letter-spacing:1.120000pt;}
.ls6c{letter-spacing:1.152000pt;}
.ls7{letter-spacing:1.173333pt;}
.ls68{letter-spacing:1.288000pt;}
.ls12{letter-spacing:1.322667pt;}
.ls1f{letter-spacing:1.379696pt;}
.ls69{letter-spacing:1.410667pt;}
.lsa{letter-spacing:1.440000pt;}
.ls71{letter-spacing:1.533333pt;}
.ls99{letter-spacing:1.546667pt;}
.ls67{letter-spacing:1.656000pt;}
.ls11{letter-spacing:2.085067pt;}
.ls58{letter-spacing:2.576000pt;}
.ls2c{letter-spacing:2.757829pt;}
.ls6e{letter-spacing:3.098667pt;}
.lsb{letter-spacing:3.285333pt;}
.ls98{letter-spacing:3.306667pt;}
.lsf{letter-spacing:3.733333pt;}
.ls74{letter-spacing:3.808000pt;}
.ls1a{letter-spacing:3.907200pt;}
.ls93{letter-spacing:4.536000pt;}
.ls4d{letter-spacing:4.906667pt;}
.lsc{letter-spacing:5.120000pt;}
.ls8f{letter-spacing:5.208000pt;}
.ls6{letter-spacing:5.226667pt;}
.ls80{letter-spacing:5.320000pt;}
.ls2{letter-spacing:5.333333pt;}
.ls90{letter-spacing:5.488000pt;}
.ls73{letter-spacing:5.600000pt;}
.ls85{letter-spacing:6.216000pt;}
.ls95{letter-spacing:6.664000pt;}
.ls43{letter-spacing:7.253472pt;}
.ls2d{letter-spacing:8.586667pt;}
.ls19{letter-spacing:67.726896pt;}
.ls1e{letter-spacing:413.226133pt;}
.ls53{letter-spacing:413.879467pt;}
.ls5c{letter-spacing:414.046400pt;}
.ls3e{letter-spacing:414.273067pt;}
.ls36{letter-spacing:415.539733pt;}
.ls6b{letter-spacing:419.686400pt;}
.ls62{letter-spacing:421.132800pt;}
.ls97{letter-spacing:421.499733pt;}
.ls84{letter-spacing:421.826133pt;}
.ls0{letter-spacing:422.194667pt;}
.ls10{letter-spacing:422.361600pt;}
.ls6f{letter-spacing:422.679467pt;}
.ls18{letter-spacing:846.686933pt;}
.ls3c{letter-spacing:847.126933pt;}
.ls42{letter-spacing:849.460267pt;}
.ls9{letter-spacing:853.060267pt;}
.ls29{letter-spacing:854.820267pt;}
.ws3{word-spacing:-20.213333pt;}
.ws9{word-spacing:-20.106667pt;}
.ws2{word-spacing:-20.010667pt;}
.ws60{word-spacing:-19.544000pt;}
.ws5d{word-spacing:-19.368000pt;}
.ws19{word-spacing:-19.333333pt;}
.wsf{word-spacing:-19.152000pt;}
.ws2d{word-spacing:-18.533333pt;}
.ws89{word-spacing:-18.293333pt;}
.ws0{word-spacing:-17.000000pt;}
.ws82{word-spacing:-16.800000pt;}
.ws16{word-spacing:-16.253333pt;}
.ws53{word-spacing:-15.733333pt;}
.ws76{word-spacing:-15.624000pt;}
.ws83{word-spacing:-15.568000pt;}
.wsa{word-spacing:-15.466667pt;}
.ws67{word-spacing:-15.400000pt;}
.ws77{word-spacing:-15.176000pt;}
.ws5f{word-spacing:-15.000000pt;}
.ws1d{word-spacing:-14.592000pt;}
.ws69{word-spacing:-14.336000pt;}
.ws66{word-spacing:-13.832000pt;}
.ws1c{word-spacing:-13.488000pt;}
.ws23{word-spacing:-13.440000pt;}
.ws6a{word-spacing:-13.160000pt;}
.ws85{word-spacing:-12.656000pt;}
.wsb{word-spacing:-12.426667pt;}
.ws8a{word-spacing:-12.320000pt;}
.ws84{word-spacing:-12.208000pt;}
.ws68{word-spacing:-11.984000pt;}
.ws1b{word-spacing:-11.664000pt;}
.ws1{word-spacing:-11.610667pt;}
.ws1a{word-spacing:-11.424000pt;}
.ws25{word-spacing:-11.184000pt;}
.ws38{word-spacing:-10.298112pt;}
.ws39{word-spacing:-10.242667pt;}
.ws4e{word-spacing:-10.133333pt;}
.ws10{word-spacing:-10.047811pt;}
.ws4d{word-spacing:-10.012053pt;}
.ws45{word-spacing:-9.869024pt;}
.ws36{word-spacing:-9.833267pt;}
.ws54{word-spacing:-9.511451pt;}
.ws57{word-spacing:-9.439936pt;}
.ws37{word-spacing:-9.225392pt;}
.ws46{word-spacing:-9.082363pt;}
.ws24{word-spacing:-8.870928pt;}
.ws3a{word-spacing:-8.591088pt;}
.ws26{word-spacing:-8.586667pt;}
.ws88{word-spacing:-6.664000pt;}
.ws63{word-spacing:-5.600000pt;}
.ws81{word-spacing:-5.488000pt;}
.ws5{word-spacing:-5.333333pt;}
.ws73{word-spacing:-5.320000pt;}
.ws80{word-spacing:-5.208000pt;}
.ws40{word-spacing:-4.906667pt;}
.ws87{word-spacing:-4.536000pt;}
.ws5c{word-spacing:-3.786667pt;}
.wse{word-spacing:-3.733333pt;}
.ws50{word-spacing:-3.413333pt;}
.wsd{word-spacing:-3.285333pt;}
.ws5e{word-spacing:-3.098667pt;}
.ws49{word-spacing:-2.576000pt;}
.ws58{word-spacing:-1.656000pt;}
.ws8b{word-spacing:-1.546667pt;}
.ws61{word-spacing:-1.533333pt;}
.wsc{word-spacing:-1.440000pt;}
.ws5a{word-spacing:-1.410667pt;}
.ws55{word-spacing:-1.333333pt;}
.ws11{word-spacing:-1.322667pt;}
.ws59{word-spacing:-1.288000pt;}
.ws7{word-spacing:-1.173333pt;}
.ws6{word-spacing:-1.120000pt;}
.ws2e{word-spacing:-1.104000pt;}
.ws74{word-spacing:-1.064000pt;}
.ws13{word-spacing:-1.042667pt;}
.ws8d{word-spacing:-1.013333pt;}
.ws29{word-spacing:-0.736000pt;}
.ws62{word-spacing:-0.674667pt;}
.ws2b{word-spacing:-0.552000pt;}
.ws44{word-spacing:-0.503712pt;}
.ws7f{word-spacing:-0.336000pt;}
.ws4f{word-spacing:-0.083952pt;}
.ws4{word-spacing:0.000000pt;}
.ws42{word-spacing:0.055968pt;}
.ws7c{word-spacing:0.056000pt;}
.ws51{word-spacing:0.061333pt;}
.ws15{word-spacing:0.144000pt;}
.ws8{word-spacing:0.160000pt;}
.ws79{word-spacing:0.168000pt;}
.ws35{word-spacing:0.184000pt;}
.ws8c{word-spacing:0.213333pt;}
.ws3e{word-spacing:0.245333pt;}
.ws1e{word-spacing:0.266667pt;}
.ws86{word-spacing:0.280000pt;}
.ws2f{word-spacing:0.306667pt;}
.ws56{word-spacing:0.307824pt;}
.ws14{word-spacing:0.336000pt;}
.ws5b{word-spacing:0.363792pt;}
.ws12{word-spacing:0.368000pt;}
.ws7e{word-spacing:0.392000pt;}
.ws31{word-spacing:0.429333pt;}
.ws65{word-spacing:0.448000pt;}
.ws3d{word-spacing:0.490667pt;}
.ws6f{word-spacing:0.504000pt;}
.ws43{word-spacing:0.531696pt;}
.ws4a{word-spacing:0.552000pt;}
.ws64{word-spacing:0.560000pt;}
.ws17{word-spacing:0.613333pt;}
.ws6e{word-spacing:0.616000pt;}
.ws4b{word-spacing:0.643632pt;}
.ws75{word-spacing:0.672000pt;}
.ws28{word-spacing:0.674667pt;}
.ws4c{word-spacing:0.693333pt;}
.ws72{word-spacing:0.728000pt;}
.ws2a{word-spacing:0.797333pt;}
.ws6b{word-spacing:0.840000pt;}
.ws48{word-spacing:0.858667pt;}
.ws78{word-spacing:0.896000pt;}
.ws3f{word-spacing:0.920000pt;}
.ws6c{word-spacing:0.952000pt;}
.ws7b{word-spacing:1.008000pt;}
.ws6d{word-spacing:1.064000pt;}
.ws30{word-spacing:1.165333pt;}
.ws52{word-spacing:1.226667pt;}
.ws71{word-spacing:1.232000pt;}
.ws70{word-spacing:1.344000pt;}
.ws47{word-spacing:1.410667pt;}
.ws18{word-spacing:1.472000pt;}
.ws32{word-spacing:1.533333pt;}
.ws34{word-spacing:1.656000pt;}
.ws21{word-spacing:1.776000pt;}
.ws3c{word-spacing:1.962667pt;}
.ws1f{word-spacing:2.016000pt;}
.ws7a{word-spacing:2.240000pt;}
.ws7d{word-spacing:2.464000pt;}
.ws27{word-spacing:2.514667pt;}
.ws3b{word-spacing:2.760000pt;}
.ws41{word-spacing:3.618667pt;}
.ws33{word-spacing:3.986667pt;}
.ws20{word-spacing:5.184000pt;}
.ws2c{word-spacing:38.617920pt;}
.ws22{word-spacing:52.609920pt;}
._1c{margin-left:-17.860267pt;}
._22{margin-left:-16.307200pt;}
._15{margin-left:-14.501333pt;}
._16{margin-left:-13.488000pt;}
._14{margin-left:-10.357333pt;}
._9{margin-left:-8.700267pt;}
._13{margin-left:-7.034133pt;}
._6{margin-left:-6.074667pt;}
._a{margin-left:-4.542400pt;}
._5{margin-left:-3.365867pt;}
._4{margin-left:-2.077333pt;}
._1{margin-left:-0.930667pt;}
._2{width:1.109333pt;}
._0{width:2.480000pt;}
._b{width:3.394667pt;}
._7{width:4.304000pt;}
._3{width:5.445333pt;}
._8{width:7.040000pt;}
._c{width:8.437333pt;}
._d{width:9.562667pt;}
._f{width:11.136000pt;}
._1e{width:12.489600pt;}
._21{width:13.818667pt;}
._20{width:17.391733pt;}
._17{width:24.681888pt;}
._1f{width:25.994379pt;}
._23{width:29.752533pt;}
._12{width:38.617920pt;}
._11{width:63.466667pt;}
._1d{width:82.570133pt;}
._10{width:224.896000pt;}
._1b{width:404.080000pt;}
._1a{width:422.090667pt;}
._19{width:428.200000pt;}
._18{width:432.276800pt;}
._e{width:514.133333pt;}
.fsb{font-size:27.984000pt;}
.fsd{font-size:31.093333pt;}
.fsa{font-size:35.757333pt;}
.fs3{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y23c{bottom:94.327867pt;}
.y21c{bottom:94.369867pt;}
.y1d7{bottom:94.443867pt;}
.yca{bottom:94.472400pt;}
.y6d{bottom:94.474933pt;}
.y8f{bottom:94.475067pt;}
.ya2{bottom:94.477733pt;}
.y167{bottom:94.480267pt;}
.y154{bottom:94.481733pt;}
.yf6{bottom:94.483067pt;}
.y12e{bottom:94.485600pt;}
.y10c{bottom:94.485733pt;}
.y46{bottom:94.492933pt;}
.y1fd{bottom:94.503600pt;}
.y1b5{bottom:94.547600pt;}
.y20{bottom:94.568133pt;}
.yed{bottom:94.672267pt;}
.y17c{bottom:100.379867pt;}
.yc9{bottom:109.808400pt;}
.y6c{bottom:109.810933pt;}
.y8e{bottom:109.811067pt;}
.ya1{bottom:109.813733pt;}
.y166{bottom:109.816267pt;}
.yf5{bottom:109.819067pt;}
.y12d{bottom:112.484267pt;}
.y10b{bottom:112.484400pt;}
.y1b4{bottom:112.656267pt;}
.y1fc{bottom:112.675600pt;}
.y1f{bottom:113.048133pt;}
.y153{bottom:113.203733pt;}
.y1d6{bottom:113.518533pt;}
.y23b{bottom:113.647867pt;}
.y21b{bottom:114.067867pt;}
.yec{bottom:114.206933pt;}
.y45{bottom:114.306267pt;}
.y17b{bottom:118.381200pt;}
.yc8{bottom:125.144400pt;}
.y6b{bottom:125.146933pt;}
.y8d{bottom:125.147067pt;}
.ya0{bottom:125.149733pt;}
.y165{bottom:125.152267pt;}
.yf4{bottom:127.817733pt;}
.y142{bottom:128.931733pt;}
.y1b3{bottom:130.764933pt;}
.y1fb{bottom:130.847600pt;}
.y1e{bottom:131.528133pt;}
.y12c{bottom:131.597067pt;}
.y152{bottom:131.925733pt;}
.y1d5{bottom:132.593200pt;}
.yeb{bottom:133.741600pt;}
.y44{bottom:134.236667pt;}
.y17a{bottom:136.382533pt;}
.yc7{bottom:140.480400pt;}
.y6a{bottom:140.482933pt;}
.y8c{bottom:140.483067pt;}
.y9f{bottom:140.485733pt;}
.y23a{bottom:140.527867pt;}
.y21a{bottom:141.325867pt;}
.y164{bottom:143.150933pt;}
.y1a7{bottom:144.265333pt;}
.y141{bottom:146.930400pt;}
.yf3{bottom:146.930667pt;}
.y12b{bottom:148.039333pt;}
.y1b2{bottom:148.873600pt;}
.y25a{bottom:149.767867pt;}
.y1d{bottom:150.008133pt;}
.y151{bottom:150.647733pt;}
.y1d4{bottom:151.667867pt;}
.y43{bottom:152.716667pt;}
.yea{bottom:153.276267pt;}
.y10a{bottom:154.379867pt;}
.y179{bottom:154.383867pt;}
.y184{bottom:155.502267pt;}
.yc6{bottom:155.816400pt;}
.y69{bottom:155.818933pt;}
.y8b{bottom:155.819067pt;}
.y9e{bottom:155.821733pt;}
.y1fa{bottom:156.579600pt;}
.y9d{bottom:158.484400pt;}
.y1a6{bottom:159.601333pt;}
.y239{bottom:159.847867pt;}
.y219{bottom:161.023867pt;}
.y12a{bottom:163.375333pt;}
.y1b1{bottom:166.982267pt;}
.y259{bottom:167.771867pt;}
.y1c{bottom:168.488133pt;}
.y150{bottom:169.369733pt;}
.y1d3{bottom:170.742533pt;}
.y9c{bottom:171.149733pt;}
.yc5{bottom:171.152400pt;}
.y42{bottom:171.196667pt;}
.y109{bottom:172.381200pt;}
.y178{bottom:172.385200pt;}
.ye9{bottom:172.810933pt;}
.y183{bottom:173.499600pt;}
.y68{bottom:173.817600pt;}
.y8a{bottom:173.817733pt;}
.y1f9{bottom:175.423600pt;}
.y129{bottom:178.711333pt;}
.y238{bottom:179.167867pt;}
.y1b0{bottom:185.090933pt;}
.y140{bottom:186.057733pt;}
.yc4{bottom:186.480400pt;}
.y89{bottom:186.485733pt;}
.y1b{bottom:186.968133pt;}
.y14f{bottom:188.091733pt;}
.y218{bottom:188.281867pt;}
.y41{bottom:189.676667pt;}
.y1d2{bottom:189.817200pt;}
.y163{bottom:190.001200pt;}
.y67{bottom:190.249067pt;}
.y108{bottom:190.382533pt;}
.y177{bottom:190.386533pt;}
.y182{bottom:191.500933pt;}
.ye8{bottom:192.345600pt;}
.y258{bottom:193.335867pt;}
.y128{bottom:196.710000pt;}
.y1a5{bottom:201.323333pt;}
.yc3{bottom:201.816400pt;}
.y88{bottom:201.821733pt;}
.y1af{bottom:203.199600pt;}
.y9b{bottom:204.484400pt;}
.y1a{bottom:205.448133pt;}
.y66{bottom:205.585067pt;}
.y237{bottom:206.047867pt;}
.y217{bottom:207.979867pt;}
.y162{bottom:208.001200pt;}
.y40{bottom:208.156667pt;}
.y107{bottom:208.383867pt;}
.y176{bottom:208.387867pt;}
.y1d1{bottom:208.891867pt;}
.y181{bottom:209.502267pt;}
.yf2{bottom:211.067867pt;}
.y257{bottom:211.339867pt;}
.ye7{bottom:211.880267pt;}
.y9a{bottom:217.133733pt;}
.yc2{bottom:217.152400pt;}
.y1a4{bottom:219.539333pt;}
.y65{bottom:220.921067pt;}
.y1ae{bottom:221.308267pt;}
.y19{bottom:223.928133pt;}
.y236{bottom:225.367867pt;}
.y14e{bottom:225.718133pt;}
.y161{bottom:226.001200pt;}
.y106{bottom:226.385200pt;}
.y175{bottom:226.389200pt;}
.y3f{bottom:226.636667pt;}
.y180{bottom:227.503600pt;}
.y216{bottom:227.677867pt;}
.y1d0{bottom:227.966533pt;}
.yf1{bottom:229.067867pt;}
.ye6{bottom:231.414933pt;}
.y99{bottom:232.469733pt;}
.yc1{bottom:235.151067pt;}
.y127{bottom:235.913333pt;}
.y64{bottom:236.257067pt;}
.y256{bottom:236.903867pt;}
.y1a3{bottom:237.755333pt;}
.y1f8{bottom:239.131200pt;}
.y1ad{bottom:239.416933pt;}
.y18{bottom:242.408133pt;}
.y87{bottom:243.605867pt;}
.y160{bottom:244.001200pt;}
.y105{bottom:244.386533pt;}
.y174{bottom:244.390533pt;}
.y235{bottom:244.687867pt;}
.y3e{bottom:245.116667pt;}
.y1cf{bottom:247.041200pt;}
.yf0{bottom:247.067867pt;}
.y14d{bottom:247.768133pt;}
.y98{bottom:247.805733pt;}
.ye5{bottom:250.949600pt;}
.y63{bottom:251.593067pt;}
.yc0{bottom:251.596000pt;}
.y126{bottom:254.436000pt;}
.y255{bottom:254.907867pt;}
.y215{bottom:254.935867pt;}
.y1a2{bottom:255.971333pt;}
.y275{bottom:257.275333pt;}
.y1f7{bottom:257.301200pt;}
.y1ac{bottom:257.525600pt;}
.y17{bottom:260.888133pt;}
.y15f{bottom:262.001200pt;}
.y104{bottom:262.387867pt;}
.y173{bottom:262.391867pt;}
.y97{bottom:263.141733pt;}
.y3d{bottom:263.596667pt;}
.y86{bottom:263.707867pt;}
.yef{bottom:265.067867pt;}
.y1ce{bottom:266.115867pt;}
.y62{bottom:266.929067pt;}
.ybf{bottom:266.932000pt;}
.y14c{bottom:269.818133pt;}
.ye4{bottom:270.484267pt;}
.y234{bottom:271.567867pt;}
.y125{bottom:272.958667pt;}
.y1a1{bottom:274.187333pt;}
.y214{bottom:274.633867pt;}
.y274{bottom:275.275333pt;}
.y1f6{bottom:275.471200pt;}
.y1ab{bottom:275.634267pt;}
.y96{bottom:278.477733pt;}
.y16{bottom:279.368133pt;}
.y15e{bottom:280.001200pt;}
.y103{bottom:280.389200pt;}
.y172{bottom:280.393200pt;}
.y254{bottom:280.471867pt;}
.y3c{bottom:282.076667pt;}
.y61{bottom:282.265067pt;}
.ybe{bottom:282.268000pt;}
.y85{bottom:283.809867pt;}
.ybd{bottom:284.930667pt;}
.y1cd{bottom:285.190533pt;}
.ye3{bottom:290.018933pt;}
.y233{bottom:290.887867pt;}
.y124{bottom:291.481333pt;}
.y1a0{bottom:292.403333pt;}
.y273{bottom:293.275333pt;}
.y1f5{bottom:293.641200pt;}
.y1aa{bottom:293.742933pt;}
.y95{bottom:293.813733pt;}
.y213{bottom:294.331867pt;}
.y15{bottom:297.848133pt;}
.y102{bottom:298.390533pt;}
.y171{bottom:298.394533pt;}
.y253{bottom:298.475867pt;}
.y60{bottom:300.263733pt;}
.y3b{bottom:300.556667pt;}
.ybc{bottom:301.378400pt;}
.y84{bottom:303.911867pt;}
.y1cc{bottom:304.265200pt;}
.y94{bottom:309.149733pt;}
.ye2{bottom:309.553600pt;}
.y123{bottom:310.004000pt;}
.y19f{bottom:310.619333pt;}
.y272{bottom:311.275333pt;}
.y1f4{bottom:311.811200pt;}
.y1a9{bottom:311.851600pt;}
.y14{bottom:316.328133pt;}
.y101{bottom:316.391867pt;}
.y170{bottom:316.395867pt;}
.y252{bottom:316.479867pt;}
.y232{bottom:317.767867pt;}
.y3a{bottom:319.036667pt;}
.ybb{bottom:319.377067pt;}
.y212{bottom:321.589867pt;}
.y1cb{bottom:323.339867pt;}
.y83{bottom:324.013867pt;}
.y93{bottom:324.485733pt;}
.y14b{bottom:325.880267pt;}
.y122{bottom:328.526667pt;}
.y19e{bottom:328.835333pt;}
.ye1{bottom:329.088267pt;}
.y1a8{bottom:329.960267pt;}
.y1f3{bottom:329.981200pt;}
.y100{bottom:334.393200pt;}
.y16f{bottom:334.397200pt;}
.y13{bottom:334.808133pt;}
.yba{bottom:335.824667pt;}
.y231{bottom:337.087867pt;}
.y39{bottom:337.516667pt;}
.y5f{bottom:339.391200pt;}
.y271{bottom:340.608667pt;}
.y211{bottom:341.287867pt;}
.y251{bottom:342.043867pt;}
.y1ca{bottom:342.414533pt;}
.y92{bottom:342.484400pt;}
.y82{bottom:344.115867pt;}
.y14a{bottom:344.602267pt;}
.y121{bottom:347.049333pt;}
.y19d{bottom:347.051333pt;}
.y1f2{bottom:348.151200pt;}
.ye0{bottom:348.622933pt;}
.y13f{bottom:351.407867pt;}
.yff{bottom:352.394533pt;}
.y16e{bottom:352.398533pt;}
.y12{bottom:353.288133pt;}
.yb9{bottom:353.823333pt;}
.y38{bottom:355.996667pt;}
.y230{bottom:356.407867pt;}
.y5e{bottom:357.822800pt;}
.y250{bottom:360.047867pt;}
.y1c9{bottom:361.489200pt;}
.y149{bottom:363.324267pt;}
.y81{bottom:364.217867pt;}
.y19c{bottom:365.267333pt;}
.y120{bottom:365.572000pt;}
.y1f1{bottom:366.321200pt;}
.yb8{bottom:366.491333pt;}
.ydf{bottom:368.157600pt;}
.y210{bottom:368.545867pt;}
.yfe{bottom:370.395867pt;}
.y16d{bottom:370.399867pt;}
.y11{bottom:371.768133pt;}
.y37{bottom:374.476667pt;}
.y5d{bottom:376.253467pt;}
.y270{bottom:377.502000pt;}
.yb7{bottom:381.827333pt;}
.y148{bottom:382.046267pt;}
.y22f{bottom:383.287867pt;}
.y19b{bottom:383.483333pt;}
.y11f{bottom:384.094667pt;}
.y80{bottom:384.319867pt;}
.y1f0{bottom:384.491200pt;}
.y24f{bottom:385.611867pt;}
.yde{bottom:387.692267pt;}
.y20f{bottom:388.243867pt;}
.yfd{bottom:388.397200pt;}
.y16c{bottom:388.401200pt;}
.y10{bottom:390.248133pt;}
.y36{bottom:392.956667pt;}
.y5c{bottom:394.684133pt;}
.y26f{bottom:394.835333pt;}
.y1c8{bottom:399.458267pt;}
.y147{bottom:400.768267pt;}
.y19a{bottom:401.699333pt;}
.y22e{bottom:402.607867pt;}
.y11e{bottom:402.617333pt;}
.y1ef{bottom:402.661200pt;}
.y24e{bottom:403.615867pt;}
.y7f{bottom:404.421867pt;}
.yfc{bottom:406.398533pt;}
.ydd{bottom:407.226933pt;}
.yf{bottom:408.728133pt;}
.y35{bottom:411.436667pt;}
.y26e{bottom:412.168667pt;}
.y5b{bottom:413.114800pt;}
.y20e{bottom:415.501867pt;}
.y1c2{bottom:418.163867pt;}
.y146{bottom:419.490267pt;}
.y199{bottom:419.915333pt;}
.y1ee{bottom:420.831200pt;}
.y11d{bottom:421.155200pt;}
.y24d{bottom:421.619867pt;}
.y22d{bottom:421.927867pt;}
.yb6{bottom:423.655200pt;}
.yfb{bottom:424.399867pt;}
.y16b{bottom:424.401200pt;}
.y7e{bottom:424.523867pt;}
.ydc{bottom:426.761600pt;}
.ye{bottom:427.208133pt;}
.y26d{bottom:429.502000pt;}
.y34{bottom:429.916667pt;}
.y5a{bottom:431.545467pt;}
.y20d{bottom:435.199867pt;}
.y1c1{bottom:436.163867pt;}
.y198{bottom:438.131333pt;}
.y145{bottom:438.212267pt;}
.y1ed{bottom:439.001200pt;}
.y11c{bottom:439.677867pt;}
.yfa{bottom:442.401200pt;}
.yb5{bottom:442.591867pt;}
.y7d{bottom:444.625867pt;}
.yd{bottom:445.688133pt;}
.ydb{bottom:446.296267pt;}
.y26c{bottom:446.835333pt;}
.y24c{bottom:447.183867pt;}
.y33{bottom:448.396667pt;}
.y22c{bottom:448.807867pt;}
.y59{bottom:449.976133pt;}
.y1c0{bottom:454.163867pt;}
.y1c7{bottom:455.866267pt;}
.y197{bottom:456.347333pt;}
.y1ec{bottom:457.171200pt;}
.y11b{bottom:458.215733pt;}
.y16a{bottom:460.401200pt;}
.yb4{bottom:461.528533pt;}
.y20c{bottom:462.457867pt;}
.y26b{bottom:464.168667pt;}
.y7c{bottom:464.727867pt;}
.yda{bottom:465.830933pt;}
.y32{bottom:466.876667pt;}
.y22b{bottom:468.127867pt;}
.y58{bottom:468.406800pt;}
.y1bf{bottom:472.163867pt;}
.y24b{bottom:472.747867pt;}
.y196{bottom:474.563333pt;}
.y1c6{bottom:474.940933pt;}
.y1eb{bottom:475.341200pt;}
.yc{bottom:475.514800pt;}
.y11a{bottom:476.738400pt;}
.yf9{bottom:478.401200pt;}
.yb3{bottom:480.465200pt;}
.y26a{bottom:481.502000pt;}
.y20b{bottom:482.155867pt;}
.y7b{bottom:484.829867pt;}
.y31{bottom:485.356667pt;}
.yd9{bottom:485.365600pt;}
.y57{bottom:486.839333pt;}
.y1be{bottom:490.163867pt;}
.y24a{bottom:490.751867pt;}
.y195{bottom:492.779333pt;}
.y1ea{bottom:493.511200pt;}
.y1c5{bottom:494.015600pt;}
.y144{bottom:494.551333pt;}
.y22a{bottom:495.007867pt;}
.y119{bottom:495.283867pt;}
.y169{bottom:496.401200pt;}
.y269{bottom:498.835333pt;}
.yb2{bottom:499.401867pt;}
.y20a{bottom:501.853867pt;}
.y30{bottom:503.836667pt;}
.yd8{bottom:504.900267pt;}
.y7a{bottom:504.931867pt;}
.y56{bottom:505.270000pt;}
.y1bd{bottom:508.163867pt;}
.y13e{bottom:508.798400pt;}
.y194{bottom:510.995333pt;}
.y1e9{bottom:511.681200pt;}
.y1c4{bottom:513.090267pt;}
.y118{bottom:513.806533pt;}
.y229{bottom:514.327867pt;}
.y168{bottom:514.401200pt;}
.y268{bottom:516.168667pt;}
.y249{bottom:516.315867pt;}
.yb1{bottom:518.338533pt;}
.y2f{bottom:522.316667pt;}
.y55{bottom:523.700667pt;}
.yd7{bottom:524.434933pt;}
.y79{bottom:525.033867pt;}
.y1bc{bottom:526.163867pt;}
.y13d{bottom:527.152400pt;}
.yb{bottom:528.029067pt;}
.y209{bottom:529.111867pt;}
.y193{bottom:529.211333pt;}
.y1e8{bottom:529.851200pt;}
.y1c3{bottom:532.164933pt;}
.y117{bottom:532.329200pt;}
.y267{bottom:533.502000pt;}
.y228{bottom:533.647867pt;}
.y248{bottom:534.319867pt;}
.yb0{bottom:537.275200pt;}
.y2e{bottom:540.796667pt;}
.y54{bottom:542.131333pt;}
.yd6{bottom:543.969600pt;}
.y1bb{bottom:544.163867pt;}
.y78{bottom:545.135867pt;}
.y13c{bottom:545.506400pt;}
.y192{bottom:547.384400pt;}
.y1e7{bottom:548.021200pt;}
.y266{bottom:550.835333pt;}
.y116{bottom:550.851867pt;}
.y247{bottom:552.323867pt;}
.yee{bottom:553.067867pt;}
.ya{bottom:553.173067pt;}
.yaf{bottom:556.211867pt;}
.y208{bottom:556.369867pt;}
.y2d{bottom:559.276667pt;}
.y227{bottom:560.527867pt;}
.y53{bottom:560.562000pt;}
.y1ba{bottom:562.163867pt;}
.yd5{bottom:563.504267pt;}
.y13b{bottom:563.851067pt;}
.y77{bottom:565.237867pt;}
.y191{bottom:565.600400pt;}
.y1e6{bottom:566.191200pt;}
.y265{bottom:568.168667pt;}
.yae{bottom:575.148533pt;}
.y207{bottom:576.067867pt;}
.y2c{bottom:577.756667pt;}
.y246{bottom:577.887867pt;}
.y9{bottom:578.317067pt;}
.y52{bottom:578.992667pt;}
.y226{bottom:579.847867pt;}
.y1b9{bottom:580.163867pt;}
.y13a{bottom:582.205067pt;}
.yd4{bottom:583.038933pt;}
.y190{bottom:583.816400pt;}
.y1e5{bottom:584.361200pt;}
.y76{bottom:585.339867pt;}
.y264{bottom:585.502000pt;}
.y115{bottom:588.260533pt;}
.yad{bottom:594.085200pt;}
.y51{bottom:597.423333pt;}
.y1b8{bottom:598.163867pt;}
.y139{bottom:600.507200pt;}
.y18f{bottom:602.032400pt;}
.y1e4{bottom:602.531200pt;}
.yd3{bottom:602.573600pt;}
.y263{bottom:602.835333pt;}
.y206{bottom:603.325867pt;}
.y245{bottom:603.451867pt;}
.y15d{bottom:604.394533pt;}
.y75{bottom:605.441867pt;}
.y225{bottom:606.727867pt;}
.y2b{bottom:607.583333pt;}
.y114{bottom:610.130533pt;}
.yac{bottom:613.021867pt;}
.y50{bottom:615.854000pt;}
.y1b7{bottom:616.163867pt;}
.y138{bottom:618.861200pt;}
.y262{bottom:620.168667pt;}
.y18e{bottom:620.248400pt;}
.y1e3{bottom:620.701200pt;}
.y244{bottom:621.455867pt;}
.yd2{bottom:622.108267pt;}
.y8{bottom:622.347867pt;}
.y15c{bottom:622.395867pt;}
.y205{bottom:623.023867pt;}
.y1d9{bottom:624.067200pt;}
.y74{bottom:625.543867pt;}
.yab{bottom:631.958533pt;}
.y113{bottom:632.000533pt;}
.y224{bottom:633.607867pt;}
.y1b6{bottom:634.163867pt;}
.y4f{bottom:634.284667pt;}
.y137{bottom:637.215200pt;}
.y261{bottom:637.502000pt;}
.y18d{bottom:638.464400pt;}
.y1e2{bottom:638.871200pt;}
.y15b{bottom:640.397200pt;}
.yd1{bottom:641.642933pt;}
.y1d8{bottom:642.067200pt;}
.y204{bottom:642.721867pt;}
.y73{bottom:645.645867pt;}
.y243{bottom:647.019867pt;}
.yaa{bottom:650.895200pt;}
.y7{bottom:651.507867pt;}
.y4e{bottom:652.715333pt;}
.y223{bottom:652.927867pt;}
.y112{bottom:653.870533pt;}
.y260{bottom:654.835333pt;}
.y136{bottom:655.569200pt;}
.y18c{bottom:656.680400pt;}
.y1e1{bottom:657.041200pt;}
.y15a{bottom:658.398533pt;}
.y143{bottom:659.332400pt;}
.yd0{bottom:661.177600pt;}
.y242{bottom:665.023867pt;}
.ya9{bottom:669.831867pt;}
.y203{bottom:669.979867pt;}
.y4d{bottom:671.146000pt;}
.y2a{bottom:671.676667pt;}
.y25f{bottom:672.168667pt;}
.y222{bottom:672.247867pt;}
.y135{bottom:673.923200pt;}
.y18b{bottom:674.896400pt;}
.y1e0{bottom:675.211200pt;}
.y159{bottom:676.399867pt;}
.y17f{bottom:677.503600pt;}
.y6{bottom:680.667867pt;}
.ycf{bottom:680.712267pt;}
.y72{bottom:684.645200pt;}
.ya8{bottom:688.768533pt;}
.y4c{bottom:689.576667pt;}
.y202{bottom:689.677867pt;}
.y241{bottom:690.587867pt;}
.y29{bottom:691.490000pt;}
.y134{bottom:692.277200pt;}
.y18a{bottom:693.112400pt;}
.y1df{bottom:693.381200pt;}
.y158{bottom:694.393200pt;}
.y17e{bottom:694.836933pt;}
.y221{bottom:699.127867pt;}
.yce{bottom:700.246933pt;}
.y25e{bottom:700.835333pt;}
.ya7{bottom:707.710267pt;}
.y4b{bottom:708.007333pt;}
.y240{bottom:708.591867pt;}
.y201{bottom:709.375867pt;}
.y111{bottom:709.787867pt;}
.y133{bottom:710.631200pt;}
.y189{bottom:711.328400pt;}
.y28{bottom:711.331333pt;}
.y1de{bottom:711.551200pt;}
.y17d{bottom:712.170267pt;}
.y157{bottom:712.394533pt;}
.y220{bottom:718.447867pt;}
.ycd{bottom:719.781600pt;}
.y4a{bottom:726.438000pt;}
.ya6{bottom:726.646933pt;}
.y110{bottom:728.310533pt;}
.y132{bottom:728.985200pt;}
.y188{bottom:729.544400pt;}
.y1dd{bottom:729.721200pt;}
.y27{bottom:729.811333pt;}
.y156{bottom:730.395867pt;}
.y23f{bottom:734.155867pt;}
.y5{bottom:736.283600pt;}
.y200{bottom:736.633867pt;}
.y21f{bottom:737.767867pt;}
.ycc{bottom:739.316267pt;}
.y71{bottom:742.095200pt;}
.y49{bottom:744.868667pt;}
.ya5{bottom:745.588667pt;}
.y10f{bottom:746.833200pt;}
.y131{bottom:747.339200pt;}
.y187{bottom:747.760400pt;}
.y1dc{bottom:747.891200pt;}
.y26{bottom:748.291333pt;}
.y155{bottom:748.397200pt;}
.y25d{bottom:752.173733pt;}
.y4{bottom:756.096933pt;}
.y1ff{bottom:756.331867pt;}
.y23e{bottom:759.719867pt;}
.y70{bottom:762.197200pt;}
.y48{bottom:763.299333pt;}
.ya4{bottom:764.525333pt;}
.y21e{bottom:764.647867pt;}
.y10e{bottom:765.355867pt;}
.y130{bottom:765.693200pt;}
.y186{bottom:765.969200pt;}
.y1db{bottom:766.061200pt;}
.yf8{bottom:766.398533pt;}
.y25{bottom:766.771333pt;}
.y91{bottom:768.584000pt;}
.y25c{bottom:776.179067pt;}
.ycb{bottom:777.749733pt;}
.y6f{bottom:782.299200pt;}
.ya3{bottom:783.464533pt;}
.y3{bottom:783.470267pt;}
.y1fe{bottom:783.589867pt;}
.y10d{bottom:783.878533pt;}
.y21d{bottom:783.967867pt;}
.y12f{bottom:784.047200pt;}
.y185{bottom:784.185200pt;}
.y1da{bottom:784.231200pt;}
.yf7{bottom:784.399867pt;}
.y24{bottom:785.251333pt;}
.y23d{bottom:785.283867pt;}
.y90{bottom:786.158000pt;}
.y25b{bottom:800.184400pt;}
.y47{bottom:800.627733pt;}
.y6e{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y23{bottom:803.731333pt;}
.y22{bottom:842.834667pt;}
.y21{bottom:858.834667pt;}
.hd{height:19.307320pt;}
.hb{height:36.107146pt;}
.h7{height:36.796875pt;}
.h8{height:41.562500pt;}
.hc{height:46.757812pt;}
.he{height:46.789813pt;}
.h12{height:49.322917pt;}
.h16{height:51.789062pt;}
.h4{height:51.953125pt;}
.h3{height:54.550781pt;}
.ha{height:59.746094pt;}
.h13{height:59.762094pt;}
.h14{height:59.774894pt;}
.h11{height:59.778094pt;}
.h10{height:59.783427pt;}
.h15{height:59.917827pt;}
.hf{height:59.953560pt;}
.h2{height:64.941406pt;}
.h9{height:70.136719pt;}
.h6{height:72.734375pt;}
.h5{height:93.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:73.079333pt;}
.x7{left:74.699467pt;}
.x4{left:75.627200pt;}
.x5{left:92.654533pt;}
.x3{left:94.120533pt;}
.x9{left:95.069733pt;}
.x8{left:170.233733pt;}
.x6{left:205.707333pt;}
.x2{left:207.480400pt;}
.xa{left:340.338667pt;}
}




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