
    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_3653ae273d712f4d4ff817cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_59d7fad5999b63c0be1f6458.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_4b6a339454ff9c533791410a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_5d56a859861dba28742b4af4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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_93bc42296e91eed986951989.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_aa0f4a36ada00d046aadca18.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_321967272bab60a66c956d50.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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_71a12baa3567d40a3c826c8d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:20.586854px;}
.ls2{letter-spacing:23.527834px;}
.ls3{letter-spacing:34.933094px;}
.ls5{letter-spacing:35.119200px;}
.ls6{letter-spacing:35.120400px;}
.ls0{letter-spacing:35.865600px;}
.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:-32.278875px;}
.ws9{word-spacing:-31.274803px;}
.wsa{word-spacing:-31.203072px;}
.ws1a{word-spacing:-19.510886px;}
.wse6{word-spacing:-7.818701px;}
.ws19{word-spacing:-3.945216px;}
.wsdc{word-spacing:-3.873485px;}
.wsd7{word-spacing:-3.586560px;}
.wsed{word-spacing:-3.371366px;}
.ws39{word-spacing:-3.012710px;}
.ws62{word-spacing:-2.797517px;}
.wse1{word-spacing:-2.510592px;}
.ws60{word-spacing:-2.438861px;}
.wsac{word-spacing:-2.295398px;}
.ws42{word-spacing:-2.151936px;}
.wsdd{word-spacing:-2.080205px;}
.wsae{word-spacing:-1.936742px;}
.ws43{word-spacing:-1.793280px;}
.ws3a{word-spacing:-1.721549px;}
.ws6a{word-spacing:-1.578086px;}
.ws70{word-spacing:-1.362893px;}
.ws8d{word-spacing:-1.219430px;}
.wsd8{word-spacing:-1.147699px;}
.wsde{word-spacing:-1.075968px;}
.ws34{word-spacing:-0.932506px;}
.ws9f{word-spacing:-0.860774px;}
.wsa7{word-spacing:-0.717312px;}
.wsd9{word-spacing:-0.645581px;}
.wse2{word-spacing:-0.573850px;}
.ws4e{word-spacing:-0.502118px;}
.wsb8{word-spacing:-0.358656px;}
.ws92{word-spacing:-0.286925px;}
.ws32{word-spacing:-0.071731px;}
.wsb{word-spacing:0.000000px;}
.ws30{word-spacing:0.071731px;}
.wsd3{word-spacing:0.143462px;}
.wsb9{word-spacing:0.215194px;}
.wsc5{word-spacing:0.502118px;}
.ws67{word-spacing:0.573850px;}
.ws63{word-spacing:0.645581px;}
.ws2d{word-spacing:0.717312px;}
.ws65{word-spacing:0.789043px;}
.ws1c{word-spacing:0.860774px;}
.ws1f{word-spacing:0.932506px;}
.wsd0{word-spacing:1.004237px;}
.ws81{word-spacing:1.075968px;}
.ws4f{word-spacing:1.147699px;}
.ws3b{word-spacing:1.219430px;}
.ws9a{word-spacing:1.291162px;}
.ws3d{word-spacing:1.362893px;}
.ws49{word-spacing:1.434624px;}
.wsc9{word-spacing:1.506355px;}
.ws40{word-spacing:1.578086px;}
.ws5c{word-spacing:1.649818px;}
.wsbb{word-spacing:1.721549px;}
.ws3f{word-spacing:1.793280px;}
.wsa1{word-spacing:1.865011px;}
.wsa9{word-spacing:1.936742px;}
.ws45{word-spacing:2.008474px;}
.ws5d{word-spacing:2.080205px;}
.ws5e{word-spacing:2.151936px;}
.ws38{word-spacing:2.223667px;}
.ws37{word-spacing:2.295398px;}
.ws5f{word-spacing:2.367130px;}
.wsc1{word-spacing:2.438861px;}
.ws58{word-spacing:2.510592px;}
.ws69{word-spacing:2.582323px;}
.ws66{word-spacing:2.654054px;}
.ws22{word-spacing:2.797517px;}
.ws26{word-spacing:2.869248px;}
.ws5a{word-spacing:2.940979px;}
.ws21{word-spacing:3.012710px;}
.ws4d{word-spacing:3.156173px;}
.ws50{word-spacing:3.227904px;}
.ws1e{word-spacing:3.299635px;}
.ws6c{word-spacing:3.371366px;}
.ws31{word-spacing:3.443098px;}
.ws71{word-spacing:3.514829px;}
.ws56{word-spacing:3.658291px;}
.ws36{word-spacing:3.730022px;}
.wsdf{word-spacing:3.801754px;}
.ws6{word-spacing:3.873485px;}
.ws7{word-spacing:3.945216px;}
.ws87{word-spacing:4.016947px;}
.ws9c{word-spacing:4.088678px;}
.wsab{word-spacing:4.160410px;}
.ws28{word-spacing:4.232141px;}
.ws25{word-spacing:4.303872px;}
.ws2e{word-spacing:4.375603px;}
.ws41{word-spacing:4.447334px;}
.ws5{word-spacing:4.483200px;}
.ws95{word-spacing:4.519066px;}
.ws9b{word-spacing:4.590797px;}
.ws1{word-spacing:4.648169px;}
.ws73{word-spacing:4.662528px;}
.ws72{word-spacing:4.734259px;}
.ws75{word-spacing:4.805990px;}
.ws33{word-spacing:4.877722px;}
.wsc3{word-spacing:4.923840px;}
.ws79{word-spacing:4.949453px;}
.ws91{word-spacing:5.021184px;}
.ws1d{word-spacing:5.092915px;}
.ws3c{word-spacing:5.164646px;}
.ws4b{word-spacing:5.308109px;}
.ws2c{word-spacing:5.379825px;}
.ws3e{word-spacing:5.379840px;}
.ws8f{word-spacing:5.451571px;}
.wsc7{word-spacing:5.481840px;}
.ws7b{word-spacing:5.523302px;}
.ws9d{word-spacing:5.595034px;}
.wsba{word-spacing:5.666765px;}
.ws64{word-spacing:5.738496px;}
.ws78{word-spacing:5.810227px;}
.wscf{word-spacing:5.881958px;}
.wsc8{word-spacing:5.953690px;}
.ws27{word-spacing:6.025421px;}
.ws86{word-spacing:6.097152px;}
.ws5b{word-spacing:6.240614px;}
.ws1b{word-spacing:6.455775px;}
.ws9e{word-spacing:6.455808px;}
.ws7f{word-spacing:6.527539px;}
.ws35{word-spacing:6.599270px;}
.ws96{word-spacing:6.671002px;}
.ws82{word-spacing:6.742733px;}
.ws99{word-spacing:6.814464px;}
.ws7d{word-spacing:6.886195px;}
.ws54{word-spacing:6.957926px;}
.wsad{word-spacing:7.029658px;}
.wse5{word-spacing:7.101389px;}
.ws8a{word-spacing:7.173120px;}
.wsa2{word-spacing:7.244851px;}
.ws7c{word-spacing:7.316582px;}
.wsaa{word-spacing:7.388314px;}
.ws57{word-spacing:7.460045px;}
.ws4a{word-spacing:7.531776px;}
.ws46{word-spacing:7.603507px;}
.wse9{word-spacing:7.625551px;}
.ws68{word-spacing:7.675238px;}
.ws90{word-spacing:7.746970px;}
.ws8e{word-spacing:7.818701px;}
.ws83{word-spacing:7.890432px;}
.ws53{word-spacing:8.105626px;}
.ws24{word-spacing:8.249088px;}
.ws97{word-spacing:8.320819px;}
.ws2a{word-spacing:8.392550px;}
.wsa8{word-spacing:8.464282px;}
.ws2b{word-spacing:8.607744px;}
.ws18{word-spacing:8.679475px;}
.wsa5{word-spacing:8.751206px;}
.wsca{word-spacing:8.822938px;}
.ws55{word-spacing:8.894669px;}
.ws59{word-spacing:8.966400px;}
.ws4c{word-spacing:9.038131px;}
.ws6b{word-spacing:9.109862px;}
.ws61{word-spacing:9.181594px;}
.ws88{word-spacing:9.253325px;}
.ws80{word-spacing:9.325056px;}
.wsa6{word-spacing:9.396787px;}
.wsc0{word-spacing:9.468518px;}
.ws94{word-spacing:9.540250px;}
.ws93{word-spacing:9.611981px;}
.ws23{word-spacing:9.683712px;}
.ws6e{word-spacing:9.755443px;}
.wsd4{word-spacing:9.827174px;}
.wsd1{word-spacing:9.898906px;}
.ws85{word-spacing:9.970637px;}
.wse4{word-spacing:10.185830px;}
.ws17{word-spacing:10.544486px;}
.wsa3{word-spacing:10.903142px;}
.wsec{word-spacing:10.974874px;}
.ws89{word-spacing:11.118336px;}
.ws29{word-spacing:11.190067px;}
.ws16{word-spacing:11.333530px;}
.ws6d{word-spacing:11.405261px;}
.ws84{word-spacing:11.476992px;}
.wsa0{word-spacing:11.620454px;}
.ws20{word-spacing:11.692186px;}
.ws6f{word-spacing:11.763917px;}
.ws48{word-spacing:11.835648px;}
.wsc4{word-spacing:11.979110px;}
.wsbf{word-spacing:12.050842px;}
.ws2f{word-spacing:12.122573px;}
.ws8b{word-spacing:12.194304px;}
.wse8{word-spacing:12.266035px;}
.wsd2{word-spacing:12.337766px;}
.wse{word-spacing:12.481229px;}
.wsc6{word-spacing:12.696422px;}
.wsd6{word-spacing:12.699600px;}
.ws8c{word-spacing:12.701146px;}
.ws7a{word-spacing:12.702000px;}
.ws7e{word-spacing:12.703200px;}
.ws44{word-spacing:12.768154px;}
.wsd{word-spacing:12.983347px;}
.ws12{word-spacing:13.126810px;}
.wscc{word-spacing:13.198541px;}
.wseb{word-spacing:13.342003px;}
.ws77{word-spacing:13.628928px;}
.ws76{word-spacing:13.772390px;}
.wsa4{word-spacing:13.915853px;}
.ws52{word-spacing:13.987584px;}
.ws2{word-spacing:14.030584px;}
.wsf{word-spacing:14.274509px;}
.ws51{word-spacing:14.417971px;}
.wsc2{word-spacing:14.704896px;}
.ws47{word-spacing:14.920090px;}
.ws98{word-spacing:15.278746px;}
.wscb{word-spacing:15.422208px;}
.ws11{word-spacing:18.147994px;}
.wsb7{word-spacing:21.730927px;}
.wsdb{word-spacing:23.338518px;}
.wse7{word-spacing:23.368552px;}
.ws8{word-spacing:23.599565px;}
.wsda{word-spacing:26.676140px;}
.wsea{word-spacing:27.172518px;}
.ws10{word-spacing:29.122867px;}
.wsf0{word-spacing:29.194598px;}
.wse0{word-spacing:31.322414px;}
.wsc{word-spacing:34.144051px;}
.wsaf{word-spacing:34.298210px;}
.wsb0{word-spacing:36.798106px;}
.wsb1{word-spacing:36.869837px;}
.ws0{word-spacing:37.316475px;}
.ws13{word-spacing:37.587149px;}
.ws4{word-spacing:42.572467px;}
.wsee{word-spacing:49.924915px;}
.wse3{word-spacing:50.713958px;}
.wsb4{word-spacing:52.213213px;}
.wsb3{word-spacing:52.215913px;}
.wsb5{word-spacing:52.215923px;}
.wsd5{word-spacing:58.281600px;}
.ws74{word-spacing:69.937725px;}
.wsb6{word-spacing:71.665595px;}
.wsb2{word-spacing:73.739674px;}
.ws15{word-spacing:83.925075px;}
.wsbc{word-spacing:110.681242px;}
.wsbe{word-spacing:147.551078px;}
.wsbd{word-spacing:184.492646px;}
.wscd{word-spacing:221.362483px;}
.wsef{word-spacing:231.835238px;}
.wsce{word-spacing:295.245619px;}
.ws14{word-spacing:2677.195444px;}
._a{margin-left:-35.937331px;}
._21{margin-left:-34.933094px;}
._79{margin-left:-29.109205px;}
._7a{margin-left:-28.037791px;}
._2{margin-left:-9.794025px;}
._2c{margin-left:-8.091257px;}
._6{margin-left:-6.742733px;}
._10{margin-left:-5.738496px;}
._37{margin-left:-4.232141px;}
._1{margin-left:-3.223350px;}
._c{margin-left:-1.865011px;}
._b{width:1.936742px;}
._3{width:3.223350px;}
._11{width:4.805990px;}
._0{width:6.446700px;}
._38{width:7.746970px;}
._7c{width:12.705530px;}
._25{width:16.569907px;}
._2d{width:18.573827px;}
._2e{width:19.726080px;}
._27{width:21.878016px;}
._33{width:23.025715px;}
._23{width:24.675533px;}
._30{width:25.894963px;}
._24{width:27.181571px;}
._35{width:28.405555px;}
._2a{width:29.692163px;}
._20{width:30.700954px;}
._19{width:32.279040px;}
._d{width:33.431293px;}
._3b{width:34.780524px;}
._2f{width:36.009062px;}
._29{width:37.300224px;}
._3a{width:38.371638px;}
._16{width:39.380429px;}
._36{width:41.245440px;}
._32{width:43.253914px;}
._1e{width:45.047194px;}
._f{width:46.338355px;}
._39{width:47.486054px;}
._1b{width:48.705485px;}
._1a{width:50.211840px;}
._34{width:51.493894px;}
._9{width:52.865894px;}
._28{width:54.372250px;}
._17{width:55.878605px;}
._31{width:57.600154px;}
._1d{width:59.895552px;}
._14{width:61.760563px;}
._60{width:63.410381px;}
._5{width:64.988467px;}
._e{width:68.364388px;}
._4c{width:70.749316px;}
._8{width:71.802931px;}
._42{width:73.811405px;}
._52{width:76.282344px;}
._46{width:78.463000px;}
._18{width:80.338944px;}
._7b{width:81.637794px;}
._4f{width:87.334404px;}
._2b{width:96.836850px;}
._3c{width:103.090995px;}
._47{width:106.198833px;}
._44{width:110.752973px;}
._26{width:116.203950px;}
._49{width:122.452404px;}
._78{width:125.528760px;}
._51{width:134.551213px;}
._3d{width:137.454660px;}
._5f{width:147.622810px;}
._77{width:156.910950px;}
._58{width:158.168279px;}
._5c{width:168.163196px;}
._4a{width:169.672404px;}
._3e{width:171.818325px;}
._45{width:184.564378px;}
._55{width:190.895579px;}
._41{width:206.181990px;}
._50{width:213.167409px;}
._43{width:221.434214px;}
._5a{width:222.713060px;}
._40{width:240.545655px;}
._4d{width:248.783299px;}
._4b{width:250.237586px;}
._4e{width:252.189763px;}
._56{width:256.290848px;}
._6c{width:258.375782px;}
._48{width:262.436540px;}
._59{width:265.587432px;}
._6b{width:295.245619px;}
._67{width:332.402381px;}
._3f{width:343.636650px;}
._53{width:349.949390px;}
._75{width:369.057024px;}
._5e{width:391.883128px;}
._71{width:406.070323px;}
._5d{width:441.909033px;}
._76{width:443.011891px;}
._70{width:479.953459px;}
._54{width:501.184719px;}
._6e{width:516.823296px;}
._65{width:553.836595px;}
._6d{width:590.562970px;}
._5b{width:628.454643px;}
._63{width:664.661299px;}
._57{width:679.365231px;}
._6f{width:701.244211px;}
._74{width:849.010483px;}
._72{width:885.736858px;}
._62{width:959.835187px;}
._64{width:996.848486px;}
._66{width:1070.588160px;}
._69{width:1107.529728px;}
._68{width:1255.152538px;}
._15{width:1422.138217px;}
._6a{width:1624.137830px;}
._13{width:1751.599619px;}
._1f{width:1861.568102px;}
._22{width:1919.091971px;}
._1c{width:1921.746025px;}
._73{width:1956.325018px;}
._61{width:1993.194854px;}
._12{width:2352.033114px;}
._7{width:2446.201834px;}
._4{width:2568.144874px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,255,0);}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y20{bottom:54.960000px;}
.y157{bottom:99.792000px;}
.yed{bottom:100.849500px;}
.y355{bottom:101.422500px;}
.y3b7{bottom:101.484000px;}
.y131{bottom:102.232500px;}
.y2e4{bottom:103.278000px;}
.y304{bottom:103.353000px;}
.y28a{bottom:104.847000px;}
.y10f{bottom:109.006500px;}
.y2b3{bottom:109.018500px;}
.y2c4{bottom:112.693500px;}
.y364{bottom:113.440500px;}
.y332{bottom:117.237000px;}
.y3a3{bottom:117.724500px;}
.y8c{bottom:118.297500px;}
.y303{bottom:121.285500px;}
.y156{bottom:121.461000px;}
.yec{bottom:122.518500px;}
.y354{bottom:123.091500px;}
.y3b6{bottom:123.153000px;}
.y130{bottom:123.900000px;}
.y289{bottom:126.516000px;}
.y10e{bottom:130.675500px;}
.y2b2{bottom:130.687500px;}
.y24d{bottom:131.055000px;}
.y2c3{bottom:134.361000px;}
.y358{bottom:135.108000px;}
.y20a{bottom:135.171000px;}
.y1f{bottom:135.349500px;}
.y3a2{bottom:135.657000px;}
.y2e3{bottom:137.935500px;}
.y302{bottom:139.218000px;}
.y8b{bottom:139.965000px;}
.y61{bottom:142.804500px;}
.y155{bottom:143.128500px;}
.yeb{bottom:144.187500px;}
.y353{bottom:144.760500px;}
.y3b5{bottom:144.822000px;}
.y288{bottom:148.185000px;}
.y10d{bottom:152.344500px;}
.y2b1{bottom:152.356500px;}
.y24c{bottom:152.724000px;}
.y3a1{bottom:153.589500px;}
.y357{bottom:156.777000px;}
.y209{bottom:156.840000px;}
.y1e{bottom:157.017000px;}
.y301{bottom:157.150500px;}
.yca{bottom:160.201500px;}
.y12f{bottom:160.513500px;}
.y8a{bottom:161.634000px;}
.y2a6{bottom:162.804000px;}
.y60{bottom:164.473500px;}
.y154{bottom:164.797500px;}
.yea{bottom:165.856500px;}
.y352{bottom:166.428000px;}
.y3b4{bottom:166.491000px;}
.y287{bottom:169.854000px;}
.y331{bottom:171.036000px;}
.y2e2{bottom:172.593000px;}
.y24b{bottom:174.393000px;}
.y2c2{bottom:175.458000px;}
.y363{bottom:178.446000px;}
.y208{bottom:178.509000px;}
.y1d{bottom:178.686000px;}
.yc9{bottom:181.870500px;}
.y12e{bottom:182.182500px;}
.y89{bottom:183.303000px;}
.y266{bottom:183.664500px;}
.y2a5{bottom:184.473000px;}
.y10c{bottom:185.595000px;}
.y5f{bottom:186.142500px;}
.y153{bottom:186.466500px;}
.ye9{bottom:187.524000px;}
.y351{bottom:188.097000px;}
.y3b3{bottom:188.160000px;}
.y330{bottom:188.968500px;}
.y3a0{bottom:189.454500px;}
.y356{bottom:190.027500px;}
.y286{bottom:191.521500px;}
.y300{bottom:193.015500px;}
.y2b0{bottom:193.452000px;}
.ya9{bottom:194.137500px;}
.y24a{bottom:196.062000px;}
.y2c1{bottom:197.125500px;}
.y1b9{bottom:197.556000px;}
.y362{bottom:200.115000px;}
.y207{bottom:200.176500px;}
.y1c{bottom:200.355000px;}
.yc8{bottom:203.539500px;}
.y88{bottom:204.972000px;}
.y265{bottom:205.333500px;}
.y2a4{bottom:206.142000px;}
.y32f{bottom:206.901000px;}
.y2e1{bottom:207.250500px;}
.y5e{bottom:207.811500px;}
.y152{bottom:208.135500px;}
.y3d5{bottom:209.131500px;}
.ye8{bottom:209.193000px;}
.y350{bottom:209.766000px;}
.y3b2{bottom:209.829000px;}
.y2ff{bottom:210.949500px;}
.y2af{bottom:215.121000px;}
.y249{bottom:217.731000px;}
.y12d{bottom:218.794500px;}
.y1b8{bottom:219.225000px;}
.y361{bottom:221.784000px;}
.y206{bottom:221.845500px;}
.y1b{bottom:222.024000px;}
.y285{bottom:224.772000px;}
.y32e{bottom:224.835000px;}
.yc7{bottom:225.208500px;}
.y39f{bottom:225.321000px;}
.y87{bottom:226.641000px;}
.y264{bottom:227.001000px;}
.y2a3{bottom:227.811000px;}
.y5d{bottom:229.480500px;}
.y151{bottom:229.804500px;}
.y1cf{bottom:230.034000px;}
.ya8{bottom:230.749500px;}
.y3d4{bottom:230.800500px;}
.ye7{bottom:230.862000px;}
.y34f{bottom:231.435000px;}
.y3b1{bottom:231.496500px;}
.y2ae{bottom:236.790000px;}
.y10b{bottom:237.586500px;}
.y248{bottom:239.398500px;}
.y12c{bottom:240.463500px;}
.y1b7{bottom:240.894000px;}
.y2e0{bottom:241.906500px;}
.y32d{bottom:242.767500px;}
.y39e{bottom:243.253500px;}
.y360{bottom:243.453000px;}
.y205{bottom:243.514500px;}
.y1a{bottom:243.693000px;}
.y2fe{bottom:246.814500px;}
.yc6{bottom:246.877500px;}
.y86{bottom:248.308500px;}
.y2a2{bottom:249.480000px;}
.y5c{bottom:251.148000px;}
.y175{bottom:251.473500px;}
.ya7{bottom:252.418500px;}
.y3d3{bottom:252.468000px;}
.y34e{bottom:253.104000px;}
.y3b0{bottom:253.165500px;}
.y1ce{bottom:254.467500px;}
.y2ad{bottom:258.459000px;}
.y10a{bottom:259.255500px;}
.y263{bottom:260.251500px;}
.y32c{bottom:260.700000px;}
.y247{bottom:261.067500px;}
.y39d{bottom:261.186000px;}
.y2c0{bottom:262.132500px;}
.y384{bottom:262.149000px;}
.y1b6{bottom:262.561500px;}
.y150{bottom:263.055000px;}
.y2fd{bottom:264.747000px;}
.y35f{bottom:265.120500px;}
.y204{bottom:265.183500px;}
.y19{bottom:265.362000px;}
.ye6{bottom:267.475500px;}
.yc5{bottom:268.546500px;}
.y85{bottom:269.977500px;}
.y2a1{bottom:271.149000px;}
.y284{bottom:271.534500px;}
.y5b{bottom:272.817000px;}
.y174{bottom:273.141000px;}
.ya6{bottom:274.087500px;}
.y3d2{bottom:274.137000px;}
.y34d{bottom:274.773000px;}
.y3af{bottom:274.834500px;}
.y2df{bottom:276.564000px;}
.y32b{bottom:278.632500px;}
.y1cd{bottom:278.901000px;}
.y39c{bottom:279.118500px;}
.y2ac{bottom:280.128000px;}
.y109{bottom:280.924500px;}
.y12b{bottom:281.559000px;}
.y2fc{bottom:282.679500px;}
.y2bf{bottom:283.801500px;}
.y1b5{bottom:284.230500px;}
.y203{bottom:286.852500px;}
.y18{bottom:287.029500px;}
.ye5{bottom:289.143000px;}
.yc4{bottom:290.214000px;}
.y84{bottom:291.646500px;}
.y2a0{bottom:292.816500px;}
.y283{bottom:293.203500px;}
.y5a{bottom:294.486000px;}
.y173{bottom:294.810000px;}
.y3d1{bottom:295.806000px;}
.y34c{bottom:296.440500px;}
.y3ae{bottom:296.503500px;}
.y32a{bottom:296.565000px;}
.y39b{bottom:297.051000px;}
.y383{bottom:300.078000px;}
.y2ab{bottom:301.795500px;}
.y108{bottom:302.593500px;}
.y12a{bottom:303.228000px;}
.y1cc{bottom:303.334500px;}
.y193{bottom:303.558000px;}
.y246{bottom:304.405500px;}
.y2be{bottom:305.470500px;}
.y1b4{bottom:305.899500px;}
.y35e{bottom:308.458500px;}
.y202{bottom:308.521500px;}
.ya5{bottom:310.699500px;}
.ye4{bottom:310.812000px;}
.y2de{bottom:311.221500px;}
.yc3{bottom:311.883000px;}
.y262{bottom:312.244500px;}
.y83{bottom:313.315500px;}
.y14f{bottom:314.112000px;}
.y29f{bottom:314.485500px;}
.y329{bottom:314.497500px;}
.y282{bottom:314.872500px;}
.y39a{bottom:314.985000px;}
.y172{bottom:316.479000px;}
.y3d0{bottom:317.475000px;}
.y34b{bottom:318.109500px;}
.y3ad{bottom:318.172500px;}
.y2fb{bottom:318.546000px;}
.y2aa{bottom:323.464500px;}
.y192{bottom:323.883000px;}
.y245{bottom:326.074500px;}
.y17{bottom:326.257500px;}
.y2bd{bottom:327.138000px;}
.y1b3{bottom:327.568500px;}
.y59{bottom:327.736500px;}
.y1cb{bottom:327.768000px;}
.y35d{bottom:330.127500px;}
.y201{bottom:330.189000px;}
.ya4{bottom:332.368500px;}
.y328{bottom:332.431500px;}
.ye3{bottom:332.481000px;}
.y2dd{bottom:332.890500px;}
.yc2{bottom:333.552000px;}
.y261{bottom:333.913500px;}
.y82{bottom:334.984500px;}
.y14e{bottom:335.781000px;}
.y29e{bottom:336.154500px;}
.y129{bottom:336.478500px;}
.y171{bottom:338.148000px;}
.y3cf{bottom:339.144000px;}
.y34a{bottom:339.778500px;}
.y3ac{bottom:339.840000px;}
.y107{bottom:342.021000px;}
.y191{bottom:344.206500px;}
.y2a9{bottom:345.133500px;}
.y244{bottom:347.743500px;}
.y16{bottom:347.926500px;}
.y2bc{bottom:348.807000px;}
.y1b2{bottom:349.237500px;}
.y327{bottom:350.364000px;}
.y399{bottom:350.850000px;}
.y281{bottom:351.484500px;}
.y35c{bottom:351.796500px;}
.y200{bottom:351.858000px;}
.y1ca{bottom:352.201500px;}
.ya3{bottom:354.037500px;}
.y382{bottom:354.091500px;}
.ye2{bottom:354.150000px;}
.y2fa{bottom:354.411000px;}
.yc1{bottom:355.221000px;}
.y260{bottom:355.582500px;}
.y81{bottom:356.653500px;}
.y14d{bottom:357.450000px;}
.y170{bottom:359.817000px;}
.y3ce{bottom:360.811500px;}
.y349{bottom:361.447500px;}
.y3ab{bottom:361.509000px;}
.y190{bottom:364.530000px;}
.y2dc{bottom:366.163500px;}
.y2a8{bottom:366.802500px;}
.y326{bottom:368.296500px;}
.y29d{bottom:369.405000px;}
.y243{bottom:369.411000px;}
.y15{bottom:369.595500px;}
.y2bb{bottom:370.476000px;}
.y1b1{bottom:370.906500px;}
.y280{bottom:373.153500px;}
.y1ff{bottom:373.527000px;}
.ya2{bottom:375.706500px;}
.y381{bottom:375.760500px;}
.ye1{bottom:375.819000px;}
.y1c9{bottom:376.635000px;}
.yc0{bottom:376.890000px;}
.y25f{bottom:377.250000px;}
.y80{bottom:378.321000px;}
.y14c{bottom:379.119000px;}
.y58{bottom:379.729500px;}
.y1e6{bottom:381.484500px;}
.y16f{bottom:381.486000px;}
.y3cd{bottom:382.480500px;}
.y348{bottom:383.116500px;}
.y18f{bottom:384.853500px;}
.y325{bottom:386.229000px;}
.y398{bottom:386.715000px;}
.y2db{bottom:387.832500px;}
.y128{bottom:388.471500px;}
.y14{bottom:391.264500px;}
.y2f9{bottom:391.771500px;}
.y2ba{bottom:392.145000px;}
.y1b0{bottom:392.574000px;}
.y27f{bottom:394.822500px;}
.y35b{bottom:395.133000px;}
.y1fe{bottom:395.196000px;}
.y380{bottom:397.429500px;}
.ye0{bottom:397.488000px;}
.y3d9{bottom:397.662000px;}
.ybf{bottom:398.559000px;}
.y25e{bottom:398.919000px;}
.y7f{bottom:399.990000px;}
.y1c8{bottom:400.470000px;}
.y14b{bottom:400.788000px;}
.y57{bottom:401.397000px;}
.y106{bottom:401.920500px;}
.y16e{bottom:403.153500px;}
.y324{bottom:404.161500px;}
.y347{bottom:404.785500px;}
.y3aa{bottom:404.847000px;}
.y18e{bottom:405.177000px;}
.y127{bottom:410.140500px;}
.ya1{bottom:412.318500px;}
.y242{bottom:412.749000px;}
.y29c{bottom:414.063000px;}
.y1af{bottom:414.243000px;}
.y27e{bottom:416.491500px;}
.y35a{bottom:416.802000px;}
.y1fd{bottom:416.865000px;}
.y225{bottom:417.754500px;}
.y37f{bottom:419.098500px;}
.ybe{bottom:420.226500px;}
.y25d{bottom:420.588000px;}
.y2da{bottom:421.083000px;}
.y7e{bottom:421.659000px;}
.y3cc{bottom:421.908000px;}
.y323{bottom:422.094000px;}
.y14a{bottom:422.457000px;}
.y397{bottom:422.581500px;}
.y56{bottom:423.066000px;}
.y105{bottom:423.589500px;}
.y16d{bottom:424.822500px;}
.y2b9{bottom:425.395500px;}
.y18d{bottom:425.500500px;}
.y346{bottom:426.453000px;}
.y3a9{bottom:426.516000px;}
.y13{bottom:430.491000px;}
.y126{bottom:431.808000px;}
.y2f8{bottom:432.867000px;}
.ya0{bottom:433.987500px;}
.y241{bottom:434.418000px;}
.y1ae{bottom:435.912000px;}
.y27d{bottom:438.159000px;}
.y1fc{bottom:438.534000px;}
.ydf{bottom:438.583500px;}
.y1c7{bottom:438.675000px;}
.y3d8{bottom:438.757500px;}
.y322{bottom:440.028000px;}
.y37e{bottom:440.767500px;}
.ybd{bottom:441.895500px;}
.y25c{bottom:442.257000px;}
.y7d{bottom:443.328000px;}
.y149{bottom:444.124500px;}
.y55{bottom:444.735000px;}
.y104{bottom:445.258500px;}
.y18c{bottom:445.825500px;}
.y16c{bottom:446.491500px;}
.y345{bottom:448.122000px;}
.y359{bottom:450.052500px;}
.y12{bottom:452.160000px;}
.y125{bottom:453.477000px;}
.y224{bottom:454.023000px;}
.y9f{bottom:455.656500px;}
.y240{bottom:456.087000px;}
.y1ad{bottom:457.581000px;}
.y321{bottom:457.960500px;}
.y3a8{bottom:459.766500px;}
.y27c{bottom:459.828000px;}
.y1fb{bottom:460.201500px;}
.yde{bottom:460.252500px;}
.ybc{bottom:463.564500px;}
.y25b{bottom:463.926000px;}
.y7c{bottom:464.997000px;}
.y148{bottom:465.793500px;}
.y18b{bottom:466.149000px;}
.y54{bottom:466.404000px;}
.y103{bottom:466.927500px;}
.y344{bottom:469.791000px;}
.y2d9{bottom:472.065000px;}
.y11{bottom:473.829000px;}
.y29b{bottom:473.962500px;}
.y37d{bottom:474.016500px;}
.y3a{bottom:474.025500px;}
.y124{bottom:475.146000px;}
.y3d7{bottom:475.369500px;}
.y223{bottom:475.692000px;}
.y320{bottom:475.893000px;}
.y396{bottom:476.379000px;}
.y9e{bottom:477.325500px;}
.y2b8{bottom:477.387000px;}
.y23f{bottom:477.756000px;}
.y1ac{bottom:479.250000px;}
.y16b{bottom:479.742000px;}
.y27b{bottom:481.497000px;}
.y3cb{bottom:481.809000px;}
.y1fa{bottom:481.870500px;}
.ydd{bottom:481.920000px;}
.ybb{bottom:485.233500px;}
.y25a{bottom:485.595000px;}
.y18a{bottom:486.472500px;}
.y7b{bottom:486.666000px;}
.y147{bottom:487.462500px;}
.y53{bottom:488.073000px;}
.y102{bottom:488.595000px;}
.y343{bottom:491.460000px;}
.y2d8{bottom:493.734000px;}
.y31f{bottom:493.825500px;}
.y395{bottom:494.311500px;}
.y123{bottom:496.815000px;}
.y222{bottom:497.361000px;}
.y2b7{bottom:499.056000px;}
.y1ab{bottom:500.919000px;}
.y3ca{bottom:503.478000px;}
.y1f9{bottom:503.539500px;}
.ydc{bottom:503.589000px;}
.y3a7{bottom:506.527500px;}
.y189{bottom:506.796000px;}
.yba{bottom:506.902500px;}
.y2f7{bottom:507.213000px;}
.y7a{bottom:508.333500px;}
.y146{bottom:509.131500px;}
.y52{bottom:509.742000px;}
.y101{bottom:510.264000px;}
.y31e{bottom:511.758000px;}
.y3d6{bottom:511.983000px;}
.y394{bottom:512.245500px;}
.y10{bottom:513.057000px;}
.y342{bottom:513.129000px;}
.y39{bottom:513.253500px;}
.y9d{bottom:513.937500px;}
.y29a{bottom:515.059500px;}
.y2d7{bottom:515.401500px;}
.y27a{bottom:518.110500px;}
.y122{bottom:518.484000px;}
.y221{bottom:519.028500px;}
.y2b6{bottom:520.725000px;}
.y23e{bottom:521.092500px;}
.y1aa{bottom:522.586500px;}
.y259{bottom:525.021000px;}
.y3c9{bottom:525.145500px;}
.y1f8{bottom:525.208500px;}
.ydb{bottom:525.258000px;}
.y37c{bottom:525.577500px;}
.y188{bottom:527.119500px;}
.yb9{bottom:528.570000px;}
.y31d{bottom:529.690500px;}
.y79{bottom:530.002500px;}
.y393{bottom:530.178000px;}
.y51{bottom:531.409500px;}
.y1e5{bottom:531.430500px;}
.y16a{bottom:531.651000px;}
.y100{bottom:531.933000px;}
.y3ea{bottom:532.854000px;}
.yf{bottom:534.726000px;}
.y341{bottom:534.796500px;}
.y9c{bottom:535.606500px;}
.y299{bottom:536.727000px;}
.y2d6{bottom:537.070500px;}
.y279{bottom:539.778000px;}
.y2a7{bottom:540.151500px;}
.y121{bottom:540.153000px;}
.y220{bottom:540.697500px;}
.y2b5{bottom:542.394000px;}
.y23d{bottom:542.761500px;}
.y1a9{bottom:544.255500px;}
.y3c8{bottom:546.814500px;}
.y1f7{bottom:546.877500px;}
.yda{bottom:546.927000px;}
.y37b{bottom:547.246500px;}
.y187{bottom:547.444500px;}
.y3a6{bottom:547.624500px;}
.y392{bottom:548.110500px;}
.y145{bottom:548.559000px;}
.yb8{bottom:550.239000px;}
.y78{bottom:551.671500px;}
.y38{bottom:552.481500px;}
.y50{bottom:553.078500px;}
.y1e4{bottom:553.099500px;}
.y169{bottom:553.320000px;}
.yff{bottom:553.602000px;}
.y2f6{bottom:553.975500px;}
.y3e9{bottom:554.523000px;}
.ye{bottom:556.395000px;}
.y9b{bottom:557.275500px;}
.y2d5{bottom:558.739500px;}
.y120{bottom:561.820500px;}
.y21f{bottom:562.366500px;}
.y2b4{bottom:564.063000px;}
.y31c{bottom:565.557000px;}
.y1a8{bottom:565.924500px;}
.y391{bottom:566.043000px;}
.y186{bottom:567.768000px;}
.y3c7{bottom:568.483500px;}
.y1f6{bottom:568.545000px;}
.yd9{bottom:568.596000px;}
.y37a{bottom:568.915500px;}
.yb7{bottom:571.908000px;}
.y77{bottom:573.340500px;}
.y4f{bottom:574.747500px;}
.y1e3{bottom:574.768500px;}
.y168{bottom:574.989000px;}
.yfe{bottom:575.271000px;}
.y3e8{bottom:576.192000px;}
.y278{bottom:576.391500px;}
.yd{bottom:578.062500px;}
.y340{bottom:578.134500px;}
.y9a{bottom:578.944500px;}
.y2d4{bottom:580.408500px;}
.y11f{bottom:583.489500px;}
.y21e{bottom:584.035500px;}
.y258{bottom:584.922000px;}
.y23c{bottom:586.099500px;}
.y1a7{bottom:587.593500px;}
.y185{bottom:588.091500px;}
.y2f5{bottom:589.840500px;}
.y3c6{bottom:590.152500px;}
.y1f5{bottom:590.214000px;}
.yd8{bottom:590.265000px;}
.y379{bottom:590.584500px;}
.y37{bottom:591.709500px;}
.yb6{bottom:593.577000px;}
.y76{bottom:595.009500px;}
.y4e{bottom:596.416500px;}
.y1e2{bottom:596.436000px;}
.y167{bottom:596.656500px;}
.yfd{bottom:596.940000px;}
.y277{bottom:598.060500px;}
.yc{bottom:599.731500px;}
.y33f{bottom:599.803500px;}
.y31b{bottom:601.422000px;}
.y390{bottom:601.908000px;}
.y2d3{bottom:602.077500px;}
.y11e{bottom:605.158500px;}
.y21d{bottom:605.704500px;}
.y257{bottom:606.591000px;}
.y144{bottom:607.525500px;}
.y23b{bottom:607.767000px;}
.y184{bottom:608.415000px;}
.y1a6{bottom:609.262500px;}
.y298{bottom:609.952500px;}
.y3c5{bottom:611.821500px;}
.y1f4{bottom:611.883000px;}
.yd7{bottom:611.932500px;}
.y378{bottom:612.253500px;}
.y3e7{bottom:612.804000px;}
.yb5{bottom:615.246000px;}
.y99{bottom:615.556500px;}
.y75{bottom:616.678500px;}
.y4d{bottom:618.085500px;}
.y1e1{bottom:618.105000px;}
.yb{bottom:621.400500px;}
.y2d2{bottom:623.746500px;}
.y2f4{bottom:625.705500px;}
.y11d{bottom:626.827500px;}
.y21c{bottom:627.372000px;}
.y256{bottom:628.260000px;}
.y183{bottom:628.738500px;}
.y143{bottom:629.193000px;}
.y23a{bottom:629.436000px;}
.y166{bottom:629.907000px;}
.y1a5{bottom:630.931500px;}
.y36{bottom:630.937500px;}
.y297{bottom:631.621500px;}
.y3c4{bottom:633.489000px;}
.yfc{bottom:633.552000px;}
.y377{bottom:633.921000px;}
.y3e6{bottom:634.473000px;}
.y276{bottom:634.672500px;}
.yb4{bottom:636.915000px;}
.y98{bottom:637.225500px;}
.y31a{bottom:637.288500px;}
.y74{bottom:638.346000px;}
.y4c{bottom:639.753000px;}
.y1e0{bottom:639.774000px;}
.y33e{bottom:643.141500px;}
.yd6{bottom:645.183000px;}
.y2d1{bottom:645.414000px;}
.y11c{bottom:648.496500px;}
.y21b{bottom:649.041000px;}
.y182{bottom:649.063500px;}
.y255{bottom:649.927500px;}
.y142{bottom:650.862000px;}
.y239{bottom:651.105000px;}
.y1a4{bottom:652.599000px;}
.y35{bottom:652.605000px;}
.y296{bottom:653.290500px;}
.y3c3{bottom:655.158000px;}
.yfb{bottom:655.221000px;}
.y376{bottom:655.590000px;}
.y38f{bottom:655.663500px;}
.y275{bottom:656.341500px;}
.yb3{bottom:658.582500px;}
.y97{bottom:658.894500px;}
.y73{bottom:660.015000px;}
.ya{bottom:660.628500px;}
.y4b{bottom:661.422000px;}
.y1df{bottom:661.443000px;}
.y2f3{bottom:661.572000px;}
.y33d{bottom:664.809000px;}
.y2d0{bottom:667.083000px;}
.y181{bottom:669.387000px;}
.y11b{bottom:670.164000px;}
.y21a{bottom:670.710000px;}
.y3e5{bottom:671.086500px;}
.y254{bottom:671.596500px;}
.y141{bottom:672.531000px;}
.y238{bottom:672.774000px;}
.y319{bottom:673.153500px;}
.y1a3{bottom:674.268000px;}
.y34{bottom:674.274000px;}
.y3c2{bottom:676.827000px;}
.yfa{bottom:676.890000px;}
.y375{bottom:677.259000px;}
.y274{bottom:678.010500px;}
.y2f2{bottom:679.504500px;}
.yb2{bottom:680.251500px;}
.y96{bottom:680.563500px;}
.y72{bottom:681.684000px;}
.y165{bottom:681.816000px;}
.y4a{bottom:683.091000px;}
.y1de{bottom:683.112000px;}
.y33c{bottom:686.478000px;}
.y38e{bottom:688.914000px;}
.y180{bottom:689.710500px;}
.y295{bottom:689.902500px;}
.y318{bottom:691.086000px;}
.y11a{bottom:691.833000px;}
.y253{bottom:693.265500px;}
.y140{bottom:694.200000px;}
.y237{bottom:694.443000px;}
.y1a2{bottom:695.937000px;}
.y33{bottom:695.943000px;}
.yd5{bottom:697.176000px;}
.y3c1{bottom:698.496000px;}
.y1f3{bottom:698.557500px;}
.yf9{bottom:698.559000px;}
.y374{bottom:698.928000px;}
.y9{bottom:700.056000px;}
.y2cf{bottom:700.356000px;}
.yb1{bottom:701.920500px;}
.y71{bottom:703.353000px;}
.y164{bottom:703.485000px;}
.y219{bottom:703.960500px;}
.y49{bottom:704.760000px;}
.y1dd{bottom:704.779500px;}
.y3e4{bottom:707.698500px;}
.y317{bottom:709.018500px;}
.y17f{bottom:710.034000px;}
.y1c6{bottom:710.560500px;}
.y294{bottom:711.571500px;}
.y119{bottom:713.502000px;}
.y273{bottom:714.622500px;}
.y252{bottom:714.934500px;}
.y2f1{bottom:715.369500px;}
.y13f{bottom:715.869000px;}
.y236{bottom:716.112000px;}
.y95{bottom:717.175500px;}
.y1a1{bottom:717.606000px;}
.y32{bottom:717.612000px;}
.yd4{bottom:718.845000px;}
.y3c0{bottom:720.165000px;}
.yf8{bottom:720.226500px;}
.y373{bottom:720.597000px;}
.yb0{bottom:723.589500px;}
.y70{bottom:725.022000px;}
.y163{bottom:725.154000px;}
.y48{bottom:726.429000px;}
.y1dc{bottom:726.448500px;}
.y316{bottom:726.951000px;}
.y3e3{bottom:729.367500px;}
.y33b{bottom:729.816000px;}
.y17e{bottom:730.357500px;}
.y1c5{bottom:732.229500px;}
.y293{bottom:733.240500px;}
.y2ce{bottom:733.630500px;}
.y118{bottom:735.171000px;}
.y38d{bottom:735.478500px;}
.y272{bottom:736.291500px;}
.y251{bottom:736.603500px;}
.y13e{bottom:737.536500px;}
.y235{bottom:737.779500px;}
.y94{bottom:738.844500px;}
.y1a0{bottom:739.275000px;}
.y31{bottom:739.281000px;}
.yd3{bottom:740.514000px;}
.y3bf{bottom:741.834000px;}
.yf7{bottom:741.895500px;}
.y372{bottom:742.266000px;}
.y315{bottom:744.885000px;}
.yaf{bottom:745.258500px;}
.y6f{bottom:746.689500px;}
.y162{bottom:746.823000px;}
.y47{bottom:748.098000px;}
.y1db{bottom:748.117500px;}
.y17d{bottom:750.682500px;}
.y2f0{bottom:751.236000px;}
.y33a{bottom:751.485000px;}
.y1c4{bottom:753.898500px;}
.y2cd{bottom:755.299500px;}
.y117{bottom:756.840000px;}
.y38c{bottom:757.147500px;}
.y271{bottom:757.960500px;}
.y250{bottom:758.272500px;}
.y13d{bottom:759.205500px;}
.y234{bottom:759.448500px;}
.y93{bottom:760.513500px;}
.y19f{bottom:760.942500px;}
.y30{bottom:760.950000px;}
.yd2{bottom:762.181500px;}
.y3a5{bottom:762.817500px;}
.y3be{bottom:763.501500px;}
.yf6{bottom:763.564500px;}
.y371{bottom:763.933500px;}
.y3e2{bottom:765.981000px;}
.yae{bottom:766.927500px;}
.y6e{bottom:768.358500px;}
.y161{bottom:768.492000px;}
.y46{bottom:769.765500px;}
.y17c{bottom:771.006000px;}
.y218{bottom:771.285000px;}
.y292{bottom:774.336000px;}
.y1c3{bottom:775.566000px;}
.y2cc{bottom:776.967000px;}
.y116{bottom:778.509000px;}
.y8{bottom:779.383500px;}
.y270{bottom:779.629500px;}
.y24f{bottom:779.940000px;}
.y314{bottom:780.750000px;}
.y13c{bottom:780.874500px;}
.y233{bottom:781.117500px;}
.y1da{bottom:781.368000px;}
.y92{bottom:782.182500px;}
.y19e{bottom:782.611500px;}
.y2f{bottom:782.617500px;}
.yd1{bottom:783.850500px;}
.y3bd{bottom:785.170500px;}
.yf5{bottom:785.233500px;}
.y370{bottom:785.602500px;}
.y2ef{bottom:787.101000px;}
.y3e1{bottom:787.648500px;}
.yad{bottom:788.595000px;}
.y6d{bottom:790.027500px;}
.y160{bottom:790.159500px;}
.y17b{bottom:791.329500px;}
.y45{bottom:791.434500px;}
.y339{bottom:792.580500px;}
.y217{bottom:792.954000px;}
.y291{bottom:796.005000px;}
.y38b{bottom:796.705500px;}
.y1c2{bottom:797.235000px;}
.y2cb{bottom:798.636000px;}
.y313{bottom:798.682500px;}
.y115{bottom:800.176500px;}
.y7{bottom:801.052500px;}
.y26f{bottom:801.298500px;}
.y24e{bottom:801.609000px;}
.y13b{bottom:802.543500px;}
.y232{bottom:802.786500px;}
.y19d{bottom:804.280500px;}
.y2e{bottom:804.286500px;}
.y1f2{bottom:804.660000px;}
.yd0{bottom:805.519500px;}
.y3bc{bottom:806.839500px;}
.yf4{bottom:806.902500px;}
.y36f{bottom:807.271500px;}
.y3e0{bottom:809.317500px;}
.yac{bottom:810.264000px;}
.y17a{bottom:811.653000px;}
.y44{bottom:813.103500px;}
.y216{bottom:814.623000px;}
.y312{bottom:816.615000px;}
.y1c1{bottom:818.904000px;}
.y2ca{bottom:820.305000px;}
.y114{bottom:821.845500px;}
.y2ee{bottom:822.966000px;}
.y6c{bottom:823.278000px;}
.y13a{bottom:824.212500px;}
.y231{bottom:824.455500px;}
.y338{bottom:825.831000px;}
.y19c{bottom:825.949500px;}
.y2d{bottom:825.955500px;}
.ycf{bottom:827.188500px;}
.y3bb{bottom:828.508500px;}
.yf3{bottom:828.570000px;}
.y36e{bottom:828.940500px;}
.y290{bottom:829.255500px;}
.y15f{bottom:830.610000px;}
.yab{bottom:831.933000px;}
.y179{bottom:831.976500px;}
.y311{bottom:834.547500px;}
.y43{bottom:834.772500px;}
.y38a{bottom:836.265000px;}
.y215{bottom:836.292000px;}
.y26e{bottom:837.910500px;}
.y1c0{bottom:840.573000px;}
.y2ed{bottom:840.900000px;}
.y2c9{bottom:841.974000px;}
.y113{bottom:843.514500px;}
.y6{bottom:843.925500px;}
.y91{bottom:844.947000px;}
.y1f1{bottom:845.755500px;}
.y139{bottom:845.881500px;}
.y3df{bottom:845.931000px;}
.y230{bottom:846.124500px;}
.y19b{bottom:847.618500px;}
.y2c{bottom:847.624500px;}
.yce{bottom:848.857500px;}
.y3ba{bottom:850.177500px;}
.yf2{bottom:850.239000px;}
.y36d{bottom:850.609500px;}
.y15e{bottom:852.279000px;}
.y178{bottom:852.301500px;}
.y310{bottom:852.481500px;}
.yaa{bottom:853.602000px;}
.y1d9{bottom:854.743500px;}
.y389{bottom:857.932500px;}
.y214{bottom:857.961000px;}
.y26d{bottom:859.579500px;}
.y1bf{bottom:862.242000px;}
.y2c8{bottom:863.643000px;}
.y112{bottom:865.183500px;}
.y1f0{bottom:867.424500px;}
.y138{bottom:867.549000px;}
.y3de{bottom:867.598500px;}
.y22f{bottom:867.792000px;}
.y19a{bottom:869.287500px;}
.y2b{bottom:869.293500px;}
.y30f{bottom:870.414000px;}
.ycd{bottom:870.526500px;}
.y3b9{bottom:871.846500px;}
.yf1{bottom:871.908000px;}
.y36c{bottom:872.277000px;}
.y337{bottom:872.593500px;}
.y177{bottom:872.625000px;}
.y5{bottom:873.514500px;}
.y42{bottom:874.200000px;}
.y6b{bottom:875.271000px;}
.y28f{bottom:876.018000px;}
.y2ec{bottom:876.765000px;}
.y1d8{bottom:877.099500px;}
.y90{bottom:878.197500px;}
.y213{bottom:879.628500px;}
.y26c{bottom:881.248500px;}
.y1be{bottom:883.911000px;}
.y111{bottom:886.852500px;}
.y30e{bottom:888.346500px;}
.y15d{bottom:888.730500px;}
.y1ef{bottom:889.093500px;}
.y137{bottom:889.218000px;}
.y22e{bottom:889.461000px;}
.y199{bottom:890.955000px;}
.y2a{bottom:890.962500px;}
.ycc{bottom:892.194000px;}
.yf0{bottom:893.577000px;}
.y36b{bottom:893.946000px;}
.y336{bottom:894.261000px;}
.y2c7{bottom:896.916000px;}
.y6a{bottom:896.940000px;}
.y388{bottom:897.492000px;}
.y1d7{bottom:900.054000px;}
.y212{bottom:901.297500px;}
.y4{bottom:903.105000px;}
.y3dd{bottom:904.212000px;}
.y3b8{bottom:905.095500px;}
.y1bd{bottom:905.578500px;}
.y30d{bottom:906.279000px;}
.y110{bottom:908.521500px;}
.y1ee{bottom:910.762500px;}
.y136{bottom:910.887000px;}
.y22d{bottom:911.130000px;}
.y176{bottom:912.375000px;}
.y198{bottom:912.624000px;}
.y29{bottom:912.630000px;}
.yef{bottom:915.246000px;}
.y36a{bottom:915.615000px;}
.y335{bottom:915.930000px;}
.y26b{bottom:917.860500px;}
.y2c6{bottom:918.585000px;}
.y69{bottom:918.607500px;}
.y1d6{bottom:922.410000px;}
.y211{bottom:922.966500px;}
.y30c{bottom:924.211500px;}
.y15c{bottom:925.180500px;}
.ycb{bottom:925.444500px;}
.y1bc{bottom:927.247500px;}
.y8f{bottom:930.189000px;}
.y2eb{bottom:930.562500px;}
.y1ed{bottom:932.431500px;}
.y135{bottom:932.556000px;}
.y22c{bottom:932.799000px;}
.y41{bottom:934.099500px;}
.y197{bottom:934.293000px;}
.y28{bottom:934.299000px;}
.yee{bottom:936.915000px;}
.y387{bottom:937.050000px;}
.y369{bottom:937.284000px;}
.y26a{bottom:939.529500px;}
.y2c5{bottom:940.254000px;}
.y68{bottom:940.276500px;}
.y3dc{bottom:940.824000px;}
.y3a4{bottom:942.144000px;}
.y210{bottom:944.635500px;}
.y1d5{bottom:945.364500px;}
.y15b{bottom:946.849500px;}
.y2ea{bottom:948.496500px;}
.y1bb{bottom:948.916500px;}
.y334{bottom:949.180500px;}
.y28e{bottom:949.243500px;}
.y8e{bottom:951.858000px;}
.y1ec{bottom:954.100500px;}
.y134{bottom:954.225000px;}
.y22b{bottom:954.468000px;}
.y40{bottom:955.768500px;}
.y196{bottom:955.962000px;}
.y27{bottom:955.968000px;}
.y3{bottom:956.341500px;}
.y386{bottom:958.719000px;}
.y368{bottom:958.953000px;}
.y30b{bottom:960.078000px;}
.y269{bottom:961.198500px;}
.y67{bottom:961.945500px;}
.y3db{bottom:962.493000px;}
.y20f{bottom:966.304500px;}
.y1d4{bottom:967.720500px;}
.y28d{bottom:970.912500px;}
.y8d{bottom:973.527000px;}
.y1eb{bottom:975.768000px;}
.y133{bottom:975.894000px;}
.y22a{bottom:976.137000px;}
.y3f{bottom:977.437500px;}
.y195{bottom:977.631000px;}
.y30a{bottom:978.010500px;}
.y15a{bottom:983.301000px;}
.y66{bottom:983.614500px;}
.y3da{bottom:984.162000px;}
.y2e9{bottom:984.361500px;}
.y20e{bottom:987.973500px;}
.y1ba{bottom:990.012000px;}
.y268{bottom:990.339000px;}
.y1d3{bottom:990.675000px;}
.y385{bottom:991.969500px;}
.y2{bottom:993.702000px;}
.y26{bottom:995.196000px;}
.y309{bottom:995.943000px;}
.y1ea{bottom:997.437000px;}
.y229{bottom:997.804500px;}
.y3e{bottom:999.106500px;}
.y367{bottom:1002.289500px;}
.y2e8{bottom:1002.294000px;}
.y65{bottom:1005.283500px;}
.y28c{bottom:1007.524500px;}
.y132{bottom:1009.143000px;}
.y20d{bottom:1009.641000px;}
.y267{bottom:1012.008000px;}
.y1d2{bottom:1013.031000px;}
.y333{bottom:1013.875500px;}
.y25{bottom:1016.865000px;}
.y194{bottom:1018.726500px;}
.y1e9{bottom:1019.106000px;}
.y228{bottom:1019.473500px;}
.y159{bottom:1019.752500px;}
.y2e7{bottom:1020.226500px;}
.y3d{bottom:1020.775500px;}
.y366{bottom:1023.958500px;}
.y64{bottom:1026.951000px;}
.y28b{bottom:1029.193500px;}
.y1{bottom:1031.061000px;}
.y20c{bottom:1031.310000px;}
.y308{bottom:1031.808000px;}
.y24{bottom:1038.534000px;}
.y1d1{bottom:1038.973500px;}
.y1e8{bottom:1040.775000px;}
.y227{bottom:1041.142500px;}
.y158{bottom:1041.421500px;}
.y3c{bottom:1042.443000px;}
.y63{bottom:1048.620000px;}
.y307{bottom:1049.740500px;}
.y20b{bottom:1052.979000px;}
.y2e6{bottom:1056.093000px;}
.y365{bottom:1057.209000px;}
.y23{bottom:1060.201500px;}
.y1e7{bottom:1062.444000px;}
.y3b{bottom:1064.112000px;}
.y306{bottom:1067.674500px;}
.y62{bottom:1070.289000px;}
.y2e5{bottom:1074.025500px;}
.y22{bottom:1081.870500px;}
.y226{bottom:1082.238000px;}
.y305{bottom:1085.607000px;}
.y1d0{bottom:1094.074500px;}
.y21{bottom:1103.539500px;}
.h8{height:41.484266px;}
.h5{height:45.425492px;}
.h7{height:49.090950px;}
.h6{height:49.781453px;}
.h4{height:53.798400px;}
.h2{height:64.557900px;}
.h3{height:77.469300px;}
.h1{height:87.650325px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:55.480500px;}
.x9{left:64.260000px;}
.x12{left:69.631500px;}
.x2a{left:73.488000px;}
.x10{left:80.842500px;}
.x13{left:83.769000px;}
.xd{left:85.720500px;}
.xa{left:90.598500px;}
.x2c{left:95.641500px;}
.x26{left:101.172000px;}
.x2f{left:103.488000px;}
.xe{left:108.157500px;}
.x2b{left:110.400000px;}
.x28{left:115.570500px;}
.x2d{left:119.178000px;}
.x1b{left:127.239000px;}
.x24{left:128.854500px;}
.xb{left:130.984500px;}
.x22{left:132.292500px;}
.x19{left:139.126500px;}
.x29{left:146.787000px;}
.x2{left:155.413500px;}
.x16{left:175.941000px;}
.x17{left:184.531500px;}
.x23{left:187.477500px;}
.x1a{left:211.906500px;}
.x14{left:232.642500px;}
.x15{left:244.666500px;}
.x1c{left:248.817000px;}
.x1e{left:256.035000px;}
.x21{left:269.203500px;}
.x20{left:272.254500px;}
.x1d{left:281.410500px;}
.x27{left:292.117500px;}
.x4{left:302.155500px;}
.x1{left:315.667500px;}
.x8{left:320.577000px;}
.x6{left:322.633500px;}
.x1f{left:331.515000px;}
.x25{left:347.751000px;}
.x5{left:359.791500px;}
.x7{left:368.863500px;}
.x3{left:381.909000px;}
.x2e{left:441.441000px;}
.xf{left:450.220500px;}
.xc{left:454.611000px;}
.x18{left:485.209500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:18.299426pt;}
.ls2{letter-spacing:20.913630pt;}
.ls3{letter-spacing:31.051639pt;}
.ls5{letter-spacing:31.217067pt;}
.ls6{letter-spacing:31.218133pt;}
.ls0{letter-spacing:31.880533pt;}
.ws3{word-spacing:-28.692333pt;}
.ws9{word-spacing:-27.799825pt;}
.wsa{word-spacing:-27.736064pt;}
.ws1a{word-spacing:-17.343010pt;}
.wse6{word-spacing:-6.949956pt;}
.ws19{word-spacing:-3.506859pt;}
.wsdc{word-spacing:-3.443098pt;}
.wsd7{word-spacing:-3.188053pt;}
.wsed{word-spacing:-2.996770pt;}
.ws39{word-spacing:-2.677965pt;}
.ws62{word-spacing:-2.486682pt;}
.wse1{word-spacing:-2.231637pt;}
.ws60{word-spacing:-2.167876pt;}
.wsac{word-spacing:-2.040354pt;}
.ws42{word-spacing:-1.912832pt;}
.wsdd{word-spacing:-1.849071pt;}
.wsae{word-spacing:-1.721549pt;}
.ws43{word-spacing:-1.594027pt;}
.ws3a{word-spacing:-1.530266pt;}
.ws6a{word-spacing:-1.402743pt;}
.ws70{word-spacing:-1.211460pt;}
.ws8d{word-spacing:-1.083938pt;}
.wsd8{word-spacing:-1.020177pt;}
.wsde{word-spacing:-0.956416pt;}
.ws34{word-spacing:-0.828894pt;}
.ws9f{word-spacing:-0.765133pt;}
.wsa7{word-spacing:-0.637611pt;}
.wsd9{word-spacing:-0.573850pt;}
.wse2{word-spacing:-0.510089pt;}
.ws4e{word-spacing:-0.446327pt;}
.wsb8{word-spacing:-0.318805pt;}
.ws92{word-spacing:-0.255044pt;}
.ws32{word-spacing:-0.063761pt;}
.wsb{word-spacing:0.000000pt;}
.ws30{word-spacing:0.063761pt;}
.wsd3{word-spacing:0.127522pt;}
.wsb9{word-spacing:0.191283pt;}
.wsc5{word-spacing:0.446327pt;}
.ws67{word-spacing:0.510089pt;}
.ws63{word-spacing:0.573850pt;}
.ws2d{word-spacing:0.637611pt;}
.ws65{word-spacing:0.701372pt;}
.ws1c{word-spacing:0.765133pt;}
.ws1f{word-spacing:0.828894pt;}
.wsd0{word-spacing:0.892655pt;}
.ws81{word-spacing:0.956416pt;}
.ws4f{word-spacing:1.020177pt;}
.ws3b{word-spacing:1.083938pt;}
.ws9a{word-spacing:1.147699pt;}
.ws3d{word-spacing:1.211460pt;}
.ws49{word-spacing:1.275221pt;}
.wsc9{word-spacing:1.338982pt;}
.ws40{word-spacing:1.402743pt;}
.ws5c{word-spacing:1.466505pt;}
.wsbb{word-spacing:1.530266pt;}
.ws3f{word-spacing:1.594027pt;}
.wsa1{word-spacing:1.657788pt;}
.wsa9{word-spacing:1.721549pt;}
.ws45{word-spacing:1.785310pt;}
.ws5d{word-spacing:1.849071pt;}
.ws5e{word-spacing:1.912832pt;}
.ws38{word-spacing:1.976593pt;}
.ws37{word-spacing:2.040354pt;}
.ws5f{word-spacing:2.104115pt;}
.wsc1{word-spacing:2.167876pt;}
.ws58{word-spacing:2.231637pt;}
.ws69{word-spacing:2.295398pt;}
.ws66{word-spacing:2.359159pt;}
.ws22{word-spacing:2.486682pt;}
.ws26{word-spacing:2.550443pt;}
.ws5a{word-spacing:2.614204pt;}
.ws21{word-spacing:2.677965pt;}
.ws4d{word-spacing:2.805487pt;}
.ws50{word-spacing:2.869248pt;}
.ws1e{word-spacing:2.933009pt;}
.ws6c{word-spacing:2.996770pt;}
.ws31{word-spacing:3.060531pt;}
.ws71{word-spacing:3.124292pt;}
.ws56{word-spacing:3.251814pt;}
.ws36{word-spacing:3.315575pt;}
.wsdf{word-spacing:3.379337pt;}
.ws6{word-spacing:3.443098pt;}
.ws7{word-spacing:3.506859pt;}
.ws87{word-spacing:3.570620pt;}
.ws9c{word-spacing:3.634381pt;}
.wsab{word-spacing:3.698142pt;}
.ws28{word-spacing:3.761903pt;}
.ws25{word-spacing:3.825664pt;}
.ws2e{word-spacing:3.889425pt;}
.ws41{word-spacing:3.953186pt;}
.ws5{word-spacing:3.985067pt;}
.ws95{word-spacing:4.016947pt;}
.ws9b{word-spacing:4.080708pt;}
.ws1{word-spacing:4.131706pt;}
.ws73{word-spacing:4.144469pt;}
.ws72{word-spacing:4.208230pt;}
.ws75{word-spacing:4.271991pt;}
.ws33{word-spacing:4.335753pt;}
.wsc3{word-spacing:4.376747pt;}
.ws79{word-spacing:4.399514pt;}
.ws91{word-spacing:4.463275pt;}
.ws1d{word-spacing:4.527036pt;}
.ws3c{word-spacing:4.590797pt;}
.ws4b{word-spacing:4.718319pt;}
.ws2c{word-spacing:4.782067pt;}
.ws3e{word-spacing:4.782080pt;}
.ws8f{word-spacing:4.845841pt;}
.wsc7{word-spacing:4.872747pt;}
.ws7b{word-spacing:4.909602pt;}
.ws9d{word-spacing:4.973363pt;}
.wsba{word-spacing:5.037124pt;}
.ws64{word-spacing:5.100885pt;}
.ws78{word-spacing:5.164646pt;}
.wscf{word-spacing:5.228407pt;}
.wsc8{word-spacing:5.292169pt;}
.ws27{word-spacing:5.355930pt;}
.ws86{word-spacing:5.419691pt;}
.ws5b{word-spacing:5.547213pt;}
.ws1b{word-spacing:5.738467pt;}
.ws9e{word-spacing:5.738496pt;}
.ws7f{word-spacing:5.802257pt;}
.ws35{word-spacing:5.866018pt;}
.ws96{word-spacing:5.929779pt;}
.ws82{word-spacing:5.993540pt;}
.ws99{word-spacing:6.057301pt;}
.ws7d{word-spacing:6.121062pt;}
.ws54{word-spacing:6.184823pt;}
.wsad{word-spacing:6.248585pt;}
.wse5{word-spacing:6.312346pt;}
.ws8a{word-spacing:6.376107pt;}
.wsa2{word-spacing:6.439868pt;}
.ws7c{word-spacing:6.503629pt;}
.wsaa{word-spacing:6.567390pt;}
.ws57{word-spacing:6.631151pt;}
.ws4a{word-spacing:6.694912pt;}
.ws46{word-spacing:6.758673pt;}
.wse9{word-spacing:6.778267pt;}
.ws68{word-spacing:6.822434pt;}
.ws90{word-spacing:6.886195pt;}
.ws8e{word-spacing:6.949956pt;}
.ws83{word-spacing:7.013717pt;}
.ws53{word-spacing:7.205001pt;}
.ws24{word-spacing:7.332523pt;}
.ws97{word-spacing:7.396284pt;}
.ws2a{word-spacing:7.460045pt;}
.wsa8{word-spacing:7.523806pt;}
.ws2b{word-spacing:7.651328pt;}
.ws18{word-spacing:7.715089pt;}
.wsa5{word-spacing:7.778850pt;}
.wsca{word-spacing:7.842611pt;}
.ws55{word-spacing:7.906372pt;}
.ws59{word-spacing:7.970133pt;}
.ws4c{word-spacing:8.033894pt;}
.ws6b{word-spacing:8.097655pt;}
.ws61{word-spacing:8.161417pt;}
.ws88{word-spacing:8.225178pt;}
.ws80{word-spacing:8.288939pt;}
.wsa6{word-spacing:8.352700pt;}
.wsc0{word-spacing:8.416461pt;}
.ws94{word-spacing:8.480222pt;}
.ws93{word-spacing:8.543983pt;}
.ws23{word-spacing:8.607744pt;}
.ws6e{word-spacing:8.671505pt;}
.wsd4{word-spacing:8.735266pt;}
.wsd1{word-spacing:8.799027pt;}
.ws85{word-spacing:8.862788pt;}
.wse4{word-spacing:9.054071pt;}
.ws17{word-spacing:9.372877pt;}
.wsa3{word-spacing:9.691682pt;}
.wsec{word-spacing:9.755443pt;}
.ws89{word-spacing:9.882965pt;}
.ws29{word-spacing:9.946726pt;}
.ws16{word-spacing:10.074249pt;}
.ws6d{word-spacing:10.138010pt;}
.ws84{word-spacing:10.201771pt;}
.wsa0{word-spacing:10.329293pt;}
.ws20{word-spacing:10.393054pt;}
.ws6f{word-spacing:10.456815pt;}
.ws48{word-spacing:10.520576pt;}
.wsc4{word-spacing:10.648098pt;}
.wsbf{word-spacing:10.711859pt;}
.ws2f{word-spacing:10.775620pt;}
.ws8b{word-spacing:10.839381pt;}
.wse8{word-spacing:10.903142pt;}
.wsd2{word-spacing:10.966903pt;}
.wse{word-spacing:11.094426pt;}
.wsc6{word-spacing:11.285709pt;}
.wsd6{word-spacing:11.288533pt;}
.ws8c{word-spacing:11.289907pt;}
.ws7a{word-spacing:11.290667pt;}
.ws7e{word-spacing:11.291733pt;}
.ws44{word-spacing:11.349470pt;}
.wsd{word-spacing:11.540753pt;}
.ws12{word-spacing:11.668275pt;}
.wscc{word-spacing:11.732036pt;}
.wseb{word-spacing:11.859558pt;}
.ws77{word-spacing:12.114603pt;}
.ws76{word-spacing:12.242125pt;}
.wsa4{word-spacing:12.369647pt;}
.ws52{word-spacing:12.433408pt;}
.ws2{word-spacing:12.471630pt;}
.wsf{word-spacing:12.688452pt;}
.ws51{word-spacing:12.815974pt;}
.wsc2{word-spacing:13.071019pt;}
.ws47{word-spacing:13.262302pt;}
.ws98{word-spacing:13.581107pt;}
.wscb{word-spacing:13.708629pt;}
.ws11{word-spacing:16.131550pt;}
.wsb7{word-spacing:19.316380pt;}
.wsdb{word-spacing:20.745349pt;}
.wse7{word-spacing:20.772047pt;}
.ws8{word-spacing:20.977391pt;}
.wsda{word-spacing:23.712125pt;}
.wsea{word-spacing:24.153349pt;}
.ws10{word-spacing:25.886993pt;}
.wsf0{word-spacing:25.950754pt;}
.wse0{word-spacing:27.842146pt;}
.wsc{word-spacing:30.350268pt;}
.wsaf{word-spacing:30.487298pt;}
.wsb0{word-spacing:32.709427pt;}
.wsb1{word-spacing:32.773188pt;}
.ws0{word-spacing:33.170200pt;}
.ws13{word-spacing:33.410799pt;}
.ws4{word-spacing:37.842193pt;}
.wsee{word-spacing:44.377702pt;}
.wse3{word-spacing:45.079074pt;}
.wsb4{word-spacing:46.411745pt;}
.wsb3{word-spacing:46.414145pt;}
.wsb5{word-spacing:46.414153pt;}
.wsd5{word-spacing:51.805867pt;}
.ws74{word-spacing:62.166867pt;}
.wsb6{word-spacing:63.702751pt;}
.wsb2{word-spacing:65.546377pt;}
.ws15{word-spacing:74.600067pt;}
.wsbc{word-spacing:98.383326pt;}
.wsbe{word-spacing:131.156514pt;}
.wsbd{word-spacing:163.993463pt;}
.wscd{word-spacing:196.766652pt;}
.wsef{word-spacing:206.075767pt;}
.wsce{word-spacing:262.440550pt;}
.ws14{word-spacing:2379.729283pt;}
._a{margin-left:-31.944294pt;}
._21{margin-left:-31.051639pt;}
._79{margin-left:-25.874849pt;}
._7a{margin-left:-24.922481pt;}
._2{margin-left:-8.705800pt;}
._2c{margin-left:-7.192228pt;}
._6{margin-left:-5.993540pt;}
._10{margin-left:-5.100885pt;}
._37{margin-left:-3.761903pt;}
._1{margin-left:-2.865200pt;}
._c{margin-left:-1.657788pt;}
._b{width:1.721549pt;}
._3{width:2.865200pt;}
._11{width:4.271991pt;}
._0{width:5.730400pt;}
._38{width:6.886195pt;}
._7c{width:11.293805pt;}
._25{width:14.728806pt;}
._2d{width:16.510068pt;}
._2e{width:17.534293pt;}
._27{width:19.447125pt;}
._33{width:20.467302pt;}
._23{width:21.933807pt;}
._30{width:23.017745pt;}
._24{width:24.161396pt;}
._35{width:25.249382pt;}
._2a{width:26.393034pt;}
._20{width:27.289737pt;}
._19{width:28.692480pt;}
._d{width:29.716705pt;}
._3b{width:30.916021pt;}
._2f{width:32.008055pt;}
._29{width:33.155755pt;}
._3a{width:34.108123pt;}
._16{width:35.004826pt;}
._36{width:36.662613pt;}
._32{width:38.447923pt;}
._1e{width:40.041950pt;}
._f{width:41.189649pt;}
._39{width:42.209826pt;}
._1b{width:43.293764pt;}
._1a{width:44.632747pt;}
._34{width:45.772350pt;}
._9{width:46.991906pt;}
._28{width:48.330889pt;}
._17{width:49.669871pt;}
._31{width:51.200137pt;}
._1d{width:53.240491pt;}
._14{width:54.898278pt;}
._60{width:56.364783pt;}
._5{width:57.767526pt;}
._e{width:60.768345pt;}
._4c{width:62.888281pt;}
._8{width:63.824828pt;}
._42{width:65.610138pt;}
._52{width:67.806528pt;}
._46{width:69.744889pt;}
._18{width:71.412395pt;}
._7b{width:72.566928pt;}
._4f{width:77.630582pt;}
._2b{width:86.077200pt;}
._3c{width:91.636440pt;}
._47{width:94.398962pt;}
._44{width:98.447087pt;}
._26{width:103.292400pt;}
._49{width:108.846582pt;}
._78{width:111.581120pt;}
._51{width:119.601079pt;}
._3d{width:122.181920pt;}
._5f{width:131.220275pt;}
._77{width:139.476400pt;}
._58{width:140.594025pt;}
._5c{width:149.478397pt;}
._4a{width:150.819915pt;}
._3e{width:152.727400pt;}
._45{width:164.057225pt;}
._55{width:169.684959pt;}
._41{width:183.272880pt;}
._50{width:189.482141pt;}
._43{width:196.830413pt;}
._5a{width:197.967164pt;}
._40{width:213.818360pt;}
._4d{width:221.140710pt;}
._4b{width:222.433410pt;}
._4e{width:224.168678pt;}
._56{width:227.814087pt;}
._6c{width:229.667362pt;}
._48{width:233.276925pt;}
._59{width:236.077717pt;}
._6b{width:262.440550pt;}
._67{width:295.468783pt;}
._3f{width:305.454800pt;}
._53{width:311.066124pt;}
._75{width:328.050688pt;}
._5e{width:348.340558pt;}
._71{width:360.951398pt;}
._5d{width:392.808029pt;}
._76{width:393.788348pt;}
._70{width:426.625297pt;}
._54{width:445.497528pt;}
._6e{width:459.398485pt;}
._65{width:492.299196pt;}
._6d{width:524.944862pt;}
._5b{width:558.626349pt;}
._63{width:590.810044pt;}
._57{width:603.880205pt;}
._6f{width:623.328188pt;}
._74{width:754.675985pt;}
._72{width:787.321651pt;}
._62{width:853.186833pt;}
._64{width:886.087543pt;}
._66{width:951.633920pt;}
._69{width:984.470869pt;}
._68{width:1115.691145pt;}
._15{width:1264.122860pt;}
._6a{width:1443.678071pt;}
._13{width:1556.977439pt;}
._1f{width:1654.727202pt;}
._22{width:1705.859530pt;}
._1c{width:1708.218689pt;}
._73{width:1738.955571pt;}
._61{width:1771.728759pt;}
._12{width:2090.696102pt;}
._7{width:2174.401630pt;}
._4{width:2282.795443pt;}
.fs5{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:48.853333pt;}
.y157{bottom:88.704000pt;}
.yed{bottom:89.644000pt;}
.y355{bottom:90.153333pt;}
.y3b7{bottom:90.208000pt;}
.y131{bottom:90.873333pt;}
.y2e4{bottom:91.802667pt;}
.y304{bottom:91.869333pt;}
.y28a{bottom:93.197333pt;}
.y10f{bottom:96.894667pt;}
.y2b3{bottom:96.905333pt;}
.y2c4{bottom:100.172000pt;}
.y364{bottom:100.836000pt;}
.y332{bottom:104.210667pt;}
.y3a3{bottom:104.644000pt;}
.y8c{bottom:105.153333pt;}
.y303{bottom:107.809333pt;}
.y156{bottom:107.965333pt;}
.yec{bottom:108.905333pt;}
.y354{bottom:109.414667pt;}
.y3b6{bottom:109.469333pt;}
.y130{bottom:110.133333pt;}
.y289{bottom:112.458667pt;}
.y10e{bottom:116.156000pt;}
.y2b2{bottom:116.166667pt;}
.y24d{bottom:116.493333pt;}
.y2c3{bottom:119.432000pt;}
.y358{bottom:120.096000pt;}
.y20a{bottom:120.152000pt;}
.y1f{bottom:120.310667pt;}
.y3a2{bottom:120.584000pt;}
.y2e3{bottom:122.609333pt;}
.y302{bottom:123.749333pt;}
.y8b{bottom:124.413333pt;}
.y61{bottom:126.937333pt;}
.y155{bottom:127.225333pt;}
.yeb{bottom:128.166667pt;}
.y353{bottom:128.676000pt;}
.y3b5{bottom:128.730667pt;}
.y288{bottom:131.720000pt;}
.y10d{bottom:135.417333pt;}
.y2b1{bottom:135.428000pt;}
.y24c{bottom:135.754667pt;}
.y3a1{bottom:136.524000pt;}
.y357{bottom:139.357333pt;}
.y209{bottom:139.413333pt;}
.y1e{bottom:139.570667pt;}
.y301{bottom:139.689333pt;}
.yca{bottom:142.401333pt;}
.y12f{bottom:142.678667pt;}
.y8a{bottom:143.674667pt;}
.y2a6{bottom:144.714667pt;}
.y60{bottom:146.198667pt;}
.y154{bottom:146.486667pt;}
.yea{bottom:147.428000pt;}
.y352{bottom:147.936000pt;}
.y3b4{bottom:147.992000pt;}
.y287{bottom:150.981333pt;}
.y331{bottom:152.032000pt;}
.y2e2{bottom:153.416000pt;}
.y24b{bottom:155.016000pt;}
.y2c2{bottom:155.962667pt;}
.y363{bottom:158.618667pt;}
.y208{bottom:158.674667pt;}
.y1d{bottom:158.832000pt;}
.yc9{bottom:161.662667pt;}
.y12e{bottom:161.940000pt;}
.y89{bottom:162.936000pt;}
.y266{bottom:163.257333pt;}
.y2a5{bottom:163.976000pt;}
.y10c{bottom:164.973333pt;}
.y5f{bottom:165.460000pt;}
.y153{bottom:165.748000pt;}
.ye9{bottom:166.688000pt;}
.y351{bottom:167.197333pt;}
.y3b3{bottom:167.253333pt;}
.y330{bottom:167.972000pt;}
.y3a0{bottom:168.404000pt;}
.y356{bottom:168.913333pt;}
.y286{bottom:170.241333pt;}
.y300{bottom:171.569333pt;}
.y2b0{bottom:171.957333pt;}
.ya9{bottom:172.566667pt;}
.y24a{bottom:174.277333pt;}
.y2c1{bottom:175.222667pt;}
.y1b9{bottom:175.605333pt;}
.y362{bottom:177.880000pt;}
.y207{bottom:177.934667pt;}
.y1c{bottom:178.093333pt;}
.yc8{bottom:180.924000pt;}
.y88{bottom:182.197333pt;}
.y265{bottom:182.518667pt;}
.y2a4{bottom:183.237333pt;}
.y32f{bottom:183.912000pt;}
.y2e1{bottom:184.222667pt;}
.y5e{bottom:184.721333pt;}
.y152{bottom:185.009333pt;}
.y3d5{bottom:185.894667pt;}
.ye8{bottom:185.949333pt;}
.y350{bottom:186.458667pt;}
.y3b2{bottom:186.514667pt;}
.y2ff{bottom:187.510667pt;}
.y2af{bottom:191.218667pt;}
.y249{bottom:193.538667pt;}
.y12d{bottom:194.484000pt;}
.y1b8{bottom:194.866667pt;}
.y361{bottom:197.141333pt;}
.y206{bottom:197.196000pt;}
.y1b{bottom:197.354667pt;}
.y285{bottom:199.797333pt;}
.y32e{bottom:199.853333pt;}
.yc7{bottom:200.185333pt;}
.y39f{bottom:200.285333pt;}
.y87{bottom:201.458667pt;}
.y264{bottom:201.778667pt;}
.y2a3{bottom:202.498667pt;}
.y5d{bottom:203.982667pt;}
.y151{bottom:204.270667pt;}
.y1cf{bottom:204.474667pt;}
.ya8{bottom:205.110667pt;}
.y3d4{bottom:205.156000pt;}
.ye7{bottom:205.210667pt;}
.y34f{bottom:205.720000pt;}
.y3b1{bottom:205.774667pt;}
.y2ae{bottom:210.480000pt;}
.y10b{bottom:211.188000pt;}
.y248{bottom:212.798667pt;}
.y12c{bottom:213.745333pt;}
.y1b7{bottom:214.128000pt;}
.y2e0{bottom:215.028000pt;}
.y32d{bottom:215.793333pt;}
.y39e{bottom:216.225333pt;}
.y360{bottom:216.402667pt;}
.y205{bottom:216.457333pt;}
.y1a{bottom:216.616000pt;}
.y2fe{bottom:219.390667pt;}
.yc6{bottom:219.446667pt;}
.y86{bottom:220.718667pt;}
.y2a2{bottom:221.760000pt;}
.y5c{bottom:223.242667pt;}
.y175{bottom:223.532000pt;}
.ya7{bottom:224.372000pt;}
.y3d3{bottom:224.416000pt;}
.y34e{bottom:224.981333pt;}
.y3b0{bottom:225.036000pt;}
.y1ce{bottom:226.193333pt;}
.y2ad{bottom:229.741333pt;}
.y10a{bottom:230.449333pt;}
.y263{bottom:231.334667pt;}
.y32c{bottom:231.733333pt;}
.y247{bottom:232.060000pt;}
.y39d{bottom:232.165333pt;}
.y2c0{bottom:233.006667pt;}
.y384{bottom:233.021333pt;}
.y1b6{bottom:233.388000pt;}
.y150{bottom:233.826667pt;}
.y2fd{bottom:235.330667pt;}
.y35f{bottom:235.662667pt;}
.y204{bottom:235.718667pt;}
.y19{bottom:235.877333pt;}
.ye6{bottom:237.756000pt;}
.yc5{bottom:238.708000pt;}
.y85{bottom:239.980000pt;}
.y2a1{bottom:241.021333pt;}
.y284{bottom:241.364000pt;}
.y5b{bottom:242.504000pt;}
.y174{bottom:242.792000pt;}
.ya6{bottom:243.633333pt;}
.y3d2{bottom:243.677333pt;}
.y34d{bottom:244.242667pt;}
.y3af{bottom:244.297333pt;}
.y2df{bottom:245.834667pt;}
.y32b{bottom:247.673333pt;}
.y1cd{bottom:247.912000pt;}
.y39c{bottom:248.105333pt;}
.y2ac{bottom:249.002667pt;}
.y109{bottom:249.710667pt;}
.y12b{bottom:250.274667pt;}
.y2fc{bottom:251.270667pt;}
.y2bf{bottom:252.268000pt;}
.y1b5{bottom:252.649333pt;}
.y203{bottom:254.980000pt;}
.y18{bottom:255.137333pt;}
.ye5{bottom:257.016000pt;}
.yc4{bottom:257.968000pt;}
.y84{bottom:259.241333pt;}
.y2a0{bottom:260.281333pt;}
.y283{bottom:260.625333pt;}
.y5a{bottom:261.765333pt;}
.y173{bottom:262.053333pt;}
.y3d1{bottom:262.938667pt;}
.y34c{bottom:263.502667pt;}
.y3ae{bottom:263.558667pt;}
.y32a{bottom:263.613333pt;}
.y39b{bottom:264.045333pt;}
.y383{bottom:266.736000pt;}
.y2ab{bottom:268.262667pt;}
.y108{bottom:268.972000pt;}
.y12a{bottom:269.536000pt;}
.y1cc{bottom:269.630667pt;}
.y193{bottom:269.829333pt;}
.y246{bottom:270.582667pt;}
.y2be{bottom:271.529333pt;}
.y1b4{bottom:271.910667pt;}
.y35e{bottom:274.185333pt;}
.y202{bottom:274.241333pt;}
.ya5{bottom:276.177333pt;}
.ye4{bottom:276.277333pt;}
.y2de{bottom:276.641333pt;}
.yc3{bottom:277.229333pt;}
.y262{bottom:277.550667pt;}
.y83{bottom:278.502667pt;}
.y14f{bottom:279.210667pt;}
.y29f{bottom:279.542667pt;}
.y329{bottom:279.553333pt;}
.y282{bottom:279.886667pt;}
.y39a{bottom:279.986667pt;}
.y172{bottom:281.314667pt;}
.y3d0{bottom:282.200000pt;}
.y34b{bottom:282.764000pt;}
.y3ad{bottom:282.820000pt;}
.y2fb{bottom:283.152000pt;}
.y2aa{bottom:287.524000pt;}
.y192{bottom:287.896000pt;}
.y245{bottom:289.844000pt;}
.y17{bottom:290.006667pt;}
.y2bd{bottom:290.789333pt;}
.y1b3{bottom:291.172000pt;}
.y59{bottom:291.321333pt;}
.y1cb{bottom:291.349333pt;}
.y35d{bottom:293.446667pt;}
.y201{bottom:293.501333pt;}
.ya4{bottom:295.438667pt;}
.y328{bottom:295.494667pt;}
.ye3{bottom:295.538667pt;}
.y2dd{bottom:295.902667pt;}
.yc2{bottom:296.490667pt;}
.y261{bottom:296.812000pt;}
.y82{bottom:297.764000pt;}
.y14e{bottom:298.472000pt;}
.y29e{bottom:298.804000pt;}
.y129{bottom:299.092000pt;}
.y171{bottom:300.576000pt;}
.y3cf{bottom:301.461333pt;}
.y34a{bottom:302.025333pt;}
.y3ac{bottom:302.080000pt;}
.y107{bottom:304.018667pt;}
.y191{bottom:305.961333pt;}
.y2a9{bottom:306.785333pt;}
.y244{bottom:309.105333pt;}
.y16{bottom:309.268000pt;}
.y2bc{bottom:310.050667pt;}
.y1b2{bottom:310.433333pt;}
.y327{bottom:311.434667pt;}
.y399{bottom:311.866667pt;}
.y281{bottom:312.430667pt;}
.y35c{bottom:312.708000pt;}
.y200{bottom:312.762667pt;}
.y1ca{bottom:313.068000pt;}
.ya3{bottom:314.700000pt;}
.y382{bottom:314.748000pt;}
.ye2{bottom:314.800000pt;}
.y2fa{bottom:315.032000pt;}
.yc1{bottom:315.752000pt;}
.y260{bottom:316.073333pt;}
.y81{bottom:317.025333pt;}
.y14d{bottom:317.733333pt;}
.y170{bottom:319.837333pt;}
.y3ce{bottom:320.721333pt;}
.y349{bottom:321.286667pt;}
.y3ab{bottom:321.341333pt;}
.y190{bottom:324.026667pt;}
.y2dc{bottom:325.478667pt;}
.y2a8{bottom:326.046667pt;}
.y326{bottom:327.374667pt;}
.y29d{bottom:328.360000pt;}
.y243{bottom:328.365333pt;}
.y15{bottom:328.529333pt;}
.y2bb{bottom:329.312000pt;}
.y1b1{bottom:329.694667pt;}
.y280{bottom:331.692000pt;}
.y1ff{bottom:332.024000pt;}
.ya2{bottom:333.961333pt;}
.y381{bottom:334.009333pt;}
.ye1{bottom:334.061333pt;}
.y1c9{bottom:334.786667pt;}
.yc0{bottom:335.013333pt;}
.y25f{bottom:335.333333pt;}
.y80{bottom:336.285333pt;}
.y14c{bottom:336.994667pt;}
.y58{bottom:337.537333pt;}
.y1e6{bottom:339.097333pt;}
.y16f{bottom:339.098667pt;}
.y3cd{bottom:339.982667pt;}
.y348{bottom:340.548000pt;}
.y18f{bottom:342.092000pt;}
.y325{bottom:343.314667pt;}
.y398{bottom:343.746667pt;}
.y2db{bottom:344.740000pt;}
.y128{bottom:345.308000pt;}
.y14{bottom:347.790667pt;}
.y2f9{bottom:348.241333pt;}
.y2ba{bottom:348.573333pt;}
.y1b0{bottom:348.954667pt;}
.y27f{bottom:350.953333pt;}
.y35b{bottom:351.229333pt;}
.y1fe{bottom:351.285333pt;}
.y380{bottom:353.270667pt;}
.ye0{bottom:353.322667pt;}
.y3d9{bottom:353.477333pt;}
.ybf{bottom:354.274667pt;}
.y25e{bottom:354.594667pt;}
.y7f{bottom:355.546667pt;}
.y1c8{bottom:355.973333pt;}
.y14b{bottom:356.256000pt;}
.y57{bottom:356.797333pt;}
.y106{bottom:357.262667pt;}
.y16e{bottom:358.358667pt;}
.y324{bottom:359.254667pt;}
.y347{bottom:359.809333pt;}
.y3aa{bottom:359.864000pt;}
.y18e{bottom:360.157333pt;}
.y127{bottom:364.569333pt;}
.ya1{bottom:366.505333pt;}
.y242{bottom:366.888000pt;}
.y29c{bottom:368.056000pt;}
.y1af{bottom:368.216000pt;}
.y27e{bottom:370.214667pt;}
.y35a{bottom:370.490667pt;}
.y1fd{bottom:370.546667pt;}
.y225{bottom:371.337333pt;}
.y37f{bottom:372.532000pt;}
.ybe{bottom:373.534667pt;}
.y25d{bottom:373.856000pt;}
.y2da{bottom:374.296000pt;}
.y7e{bottom:374.808000pt;}
.y3cc{bottom:375.029333pt;}
.y323{bottom:375.194667pt;}
.y14a{bottom:375.517333pt;}
.y397{bottom:375.628000pt;}
.y56{bottom:376.058667pt;}
.y105{bottom:376.524000pt;}
.y16d{bottom:377.620000pt;}
.y2b9{bottom:378.129333pt;}
.y18d{bottom:378.222667pt;}
.y346{bottom:379.069333pt;}
.y3a9{bottom:379.125333pt;}
.y13{bottom:382.658667pt;}
.y126{bottom:383.829333pt;}
.y2f8{bottom:384.770667pt;}
.ya0{bottom:385.766667pt;}
.y241{bottom:386.149333pt;}
.y1ae{bottom:387.477333pt;}
.y27d{bottom:389.474667pt;}
.y1fc{bottom:389.808000pt;}
.ydf{bottom:389.852000pt;}
.y1c7{bottom:389.933333pt;}
.y3d8{bottom:390.006667pt;}
.y322{bottom:391.136000pt;}
.y37e{bottom:391.793333pt;}
.ybd{bottom:392.796000pt;}
.y25c{bottom:393.117333pt;}
.y7d{bottom:394.069333pt;}
.y149{bottom:394.777333pt;}
.y55{bottom:395.320000pt;}
.y104{bottom:395.785333pt;}
.y18c{bottom:396.289333pt;}
.y16c{bottom:396.881333pt;}
.y345{bottom:398.330667pt;}
.y359{bottom:400.046667pt;}
.y12{bottom:401.920000pt;}
.y125{bottom:403.090667pt;}
.y224{bottom:403.576000pt;}
.y9f{bottom:405.028000pt;}
.y240{bottom:405.410667pt;}
.y1ad{bottom:406.738667pt;}
.y321{bottom:407.076000pt;}
.y3a8{bottom:408.681333pt;}
.y27c{bottom:408.736000pt;}
.y1fb{bottom:409.068000pt;}
.yde{bottom:409.113333pt;}
.ybc{bottom:412.057333pt;}
.y25b{bottom:412.378667pt;}
.y7c{bottom:413.330667pt;}
.y148{bottom:414.038667pt;}
.y18b{bottom:414.354667pt;}
.y54{bottom:414.581333pt;}
.y103{bottom:415.046667pt;}
.y344{bottom:417.592000pt;}
.y2d9{bottom:419.613333pt;}
.y11{bottom:421.181333pt;}
.y29b{bottom:421.300000pt;}
.y37d{bottom:421.348000pt;}
.y3a{bottom:421.356000pt;}
.y124{bottom:422.352000pt;}
.y3d7{bottom:422.550667pt;}
.y223{bottom:422.837333pt;}
.y320{bottom:423.016000pt;}
.y396{bottom:423.448000pt;}
.y9e{bottom:424.289333pt;}
.y2b8{bottom:424.344000pt;}
.y23f{bottom:424.672000pt;}
.y1ac{bottom:426.000000pt;}
.y16b{bottom:426.437333pt;}
.y27b{bottom:427.997333pt;}
.y3cb{bottom:428.274667pt;}
.y1fa{bottom:428.329333pt;}
.ydd{bottom:428.373333pt;}
.ybb{bottom:431.318667pt;}
.y25a{bottom:431.640000pt;}
.y18a{bottom:432.420000pt;}
.y7b{bottom:432.592000pt;}
.y147{bottom:433.300000pt;}
.y53{bottom:433.842667pt;}
.y102{bottom:434.306667pt;}
.y343{bottom:436.853333pt;}
.y2d8{bottom:438.874667pt;}
.y31f{bottom:438.956000pt;}
.y395{bottom:439.388000pt;}
.y123{bottom:441.613333pt;}
.y222{bottom:442.098667pt;}
.y2b7{bottom:443.605333pt;}
.y1ab{bottom:445.261333pt;}
.y3ca{bottom:447.536000pt;}
.y1f9{bottom:447.590667pt;}
.ydc{bottom:447.634667pt;}
.y3a7{bottom:450.246667pt;}
.y189{bottom:450.485333pt;}
.yba{bottom:450.580000pt;}
.y2f7{bottom:450.856000pt;}
.y7a{bottom:451.852000pt;}
.y146{bottom:452.561333pt;}
.y52{bottom:453.104000pt;}
.y101{bottom:453.568000pt;}
.y31e{bottom:454.896000pt;}
.y3d6{bottom:455.096000pt;}
.y394{bottom:455.329333pt;}
.y10{bottom:456.050667pt;}
.y342{bottom:456.114667pt;}
.y39{bottom:456.225333pt;}
.y9d{bottom:456.833333pt;}
.y29a{bottom:457.830667pt;}
.y2d7{bottom:458.134667pt;}
.y27a{bottom:460.542667pt;}
.y122{bottom:460.874667pt;}
.y221{bottom:461.358667pt;}
.y2b6{bottom:462.866667pt;}
.y23e{bottom:463.193333pt;}
.y1aa{bottom:464.521333pt;}
.y259{bottom:466.685333pt;}
.y3c9{bottom:466.796000pt;}
.y1f8{bottom:466.852000pt;}
.ydb{bottom:466.896000pt;}
.y37c{bottom:467.180000pt;}
.y188{bottom:468.550667pt;}
.yb9{bottom:469.840000pt;}
.y31d{bottom:470.836000pt;}
.y79{bottom:471.113333pt;}
.y393{bottom:471.269333pt;}
.y51{bottom:472.364000pt;}
.y1e5{bottom:472.382667pt;}
.y16a{bottom:472.578667pt;}
.y100{bottom:472.829333pt;}
.y3ea{bottom:473.648000pt;}
.yf{bottom:475.312000pt;}
.y341{bottom:475.374667pt;}
.y9c{bottom:476.094667pt;}
.y299{bottom:477.090667pt;}
.y2d6{bottom:477.396000pt;}
.y279{bottom:479.802667pt;}
.y2a7{bottom:480.134667pt;}
.y121{bottom:480.136000pt;}
.y220{bottom:480.620000pt;}
.y2b5{bottom:482.128000pt;}
.y23d{bottom:482.454667pt;}
.y1a9{bottom:483.782667pt;}
.y3c8{bottom:486.057333pt;}
.y1f7{bottom:486.113333pt;}
.yda{bottom:486.157333pt;}
.y37b{bottom:486.441333pt;}
.y187{bottom:486.617333pt;}
.y3a6{bottom:486.777333pt;}
.y392{bottom:487.209333pt;}
.y145{bottom:487.608000pt;}
.yb8{bottom:489.101333pt;}
.y78{bottom:490.374667pt;}
.y38{bottom:491.094667pt;}
.y50{bottom:491.625333pt;}
.y1e4{bottom:491.644000pt;}
.y169{bottom:491.840000pt;}
.yff{bottom:492.090667pt;}
.y2f6{bottom:492.422667pt;}
.y3e9{bottom:492.909333pt;}
.ye{bottom:494.573333pt;}
.y9b{bottom:495.356000pt;}
.y2d5{bottom:496.657333pt;}
.y120{bottom:499.396000pt;}
.y21f{bottom:499.881333pt;}
.y2b4{bottom:501.389333pt;}
.y31c{bottom:502.717333pt;}
.y1a8{bottom:503.044000pt;}
.y391{bottom:503.149333pt;}
.y186{bottom:504.682667pt;}
.y3c7{bottom:505.318667pt;}
.y1f6{bottom:505.373333pt;}
.yd9{bottom:505.418667pt;}
.y37a{bottom:505.702667pt;}
.yb7{bottom:508.362667pt;}
.y77{bottom:509.636000pt;}
.y4f{bottom:510.886667pt;}
.y1e3{bottom:510.905333pt;}
.y168{bottom:511.101333pt;}
.yfe{bottom:511.352000pt;}
.y3e8{bottom:512.170667pt;}
.y278{bottom:512.348000pt;}
.yd{bottom:513.833333pt;}
.y340{bottom:513.897333pt;}
.y9a{bottom:514.617333pt;}
.y2d4{bottom:515.918667pt;}
.y11f{bottom:518.657333pt;}
.y21e{bottom:519.142667pt;}
.y258{bottom:519.930667pt;}
.y23c{bottom:520.977333pt;}
.y1a7{bottom:522.305333pt;}
.y185{bottom:522.748000pt;}
.y2f5{bottom:524.302667pt;}
.y3c6{bottom:524.580000pt;}
.y1f5{bottom:524.634667pt;}
.yd8{bottom:524.680000pt;}
.y379{bottom:524.964000pt;}
.y37{bottom:525.964000pt;}
.yb6{bottom:527.624000pt;}
.y76{bottom:528.897333pt;}
.y4e{bottom:530.148000pt;}
.y1e2{bottom:530.165333pt;}
.y167{bottom:530.361333pt;}
.yfd{bottom:530.613333pt;}
.y277{bottom:531.609333pt;}
.yc{bottom:533.094667pt;}
.y33f{bottom:533.158667pt;}
.y31b{bottom:534.597333pt;}
.y390{bottom:535.029333pt;}
.y2d3{bottom:535.180000pt;}
.y11e{bottom:537.918667pt;}
.y21d{bottom:538.404000pt;}
.y257{bottom:539.192000pt;}
.y144{bottom:540.022667pt;}
.y23b{bottom:540.237333pt;}
.y184{bottom:540.813333pt;}
.y1a6{bottom:541.566667pt;}
.y298{bottom:542.180000pt;}
.y3c5{bottom:543.841333pt;}
.y1f4{bottom:543.896000pt;}
.yd7{bottom:543.940000pt;}
.y378{bottom:544.225333pt;}
.y3e7{bottom:544.714667pt;}
.yb5{bottom:546.885333pt;}
.y99{bottom:547.161333pt;}
.y75{bottom:548.158667pt;}
.y4d{bottom:549.409333pt;}
.y1e1{bottom:549.426667pt;}
.yb{bottom:552.356000pt;}
.y2d2{bottom:554.441333pt;}
.y2f4{bottom:556.182667pt;}
.y11d{bottom:557.180000pt;}
.y21c{bottom:557.664000pt;}
.y256{bottom:558.453333pt;}
.y183{bottom:558.878667pt;}
.y143{bottom:559.282667pt;}
.y23a{bottom:559.498667pt;}
.y166{bottom:559.917333pt;}
.y1a5{bottom:560.828000pt;}
.y36{bottom:560.833333pt;}
.y297{bottom:561.441333pt;}
.y3c4{bottom:563.101333pt;}
.yfc{bottom:563.157333pt;}
.y377{bottom:563.485333pt;}
.y3e6{bottom:563.976000pt;}
.y276{bottom:564.153333pt;}
.yb4{bottom:566.146667pt;}
.y98{bottom:566.422667pt;}
.y31a{bottom:566.478667pt;}
.y74{bottom:567.418667pt;}
.y4c{bottom:568.669333pt;}
.y1e0{bottom:568.688000pt;}
.y33e{bottom:571.681333pt;}
.yd6{bottom:573.496000pt;}
.y2d1{bottom:573.701333pt;}
.y11c{bottom:576.441333pt;}
.y21b{bottom:576.925333pt;}
.y182{bottom:576.945333pt;}
.y255{bottom:577.713333pt;}
.y142{bottom:578.544000pt;}
.y239{bottom:578.760000pt;}
.y1a4{bottom:580.088000pt;}
.y35{bottom:580.093333pt;}
.y296{bottom:580.702667pt;}
.y3c3{bottom:582.362667pt;}
.yfb{bottom:582.418667pt;}
.y376{bottom:582.746667pt;}
.y38f{bottom:582.812000pt;}
.y275{bottom:583.414667pt;}
.yb3{bottom:585.406667pt;}
.y97{bottom:585.684000pt;}
.y73{bottom:586.680000pt;}
.ya{bottom:587.225333pt;}
.y4b{bottom:587.930667pt;}
.y1df{bottom:587.949333pt;}
.y2f3{bottom:588.064000pt;}
.y33d{bottom:590.941333pt;}
.y2d0{bottom:592.962667pt;}
.y181{bottom:595.010667pt;}
.y11b{bottom:595.701333pt;}
.y21a{bottom:596.186667pt;}
.y3e5{bottom:596.521333pt;}
.y254{bottom:596.974667pt;}
.y141{bottom:597.805333pt;}
.y238{bottom:598.021333pt;}
.y319{bottom:598.358667pt;}
.y1a3{bottom:599.349333pt;}
.y34{bottom:599.354667pt;}
.y3c2{bottom:601.624000pt;}
.yfa{bottom:601.680000pt;}
.y375{bottom:602.008000pt;}
.y274{bottom:602.676000pt;}
.y2f2{bottom:604.004000pt;}
.yb2{bottom:604.668000pt;}
.y96{bottom:604.945333pt;}
.y72{bottom:605.941333pt;}
.y165{bottom:606.058667pt;}
.y4a{bottom:607.192000pt;}
.y1de{bottom:607.210667pt;}
.y33c{bottom:610.202667pt;}
.y38e{bottom:612.368000pt;}
.y180{bottom:613.076000pt;}
.y295{bottom:613.246667pt;}
.y318{bottom:614.298667pt;}
.y11a{bottom:614.962667pt;}
.y253{bottom:616.236000pt;}
.y140{bottom:617.066667pt;}
.y237{bottom:617.282667pt;}
.y1a2{bottom:618.610667pt;}
.y33{bottom:618.616000pt;}
.yd5{bottom:619.712000pt;}
.y3c1{bottom:620.885333pt;}
.y1f3{bottom:620.940000pt;}
.yf9{bottom:620.941333pt;}
.y374{bottom:621.269333pt;}
.y9{bottom:622.272000pt;}
.y2cf{bottom:622.538667pt;}
.yb1{bottom:623.929333pt;}
.y71{bottom:625.202667pt;}
.y164{bottom:625.320000pt;}
.y219{bottom:625.742667pt;}
.y49{bottom:626.453333pt;}
.y1dd{bottom:626.470667pt;}
.y3e4{bottom:629.065333pt;}
.y317{bottom:630.238667pt;}
.y17f{bottom:631.141333pt;}
.y1c6{bottom:631.609333pt;}
.y294{bottom:632.508000pt;}
.y119{bottom:634.224000pt;}
.y273{bottom:635.220000pt;}
.y252{bottom:635.497333pt;}
.y2f1{bottom:635.884000pt;}
.y13f{bottom:636.328000pt;}
.y236{bottom:636.544000pt;}
.y95{bottom:637.489333pt;}
.y1a1{bottom:637.872000pt;}
.y32{bottom:637.877333pt;}
.yd4{bottom:638.973333pt;}
.y3c0{bottom:640.146667pt;}
.yf8{bottom:640.201333pt;}
.y373{bottom:640.530667pt;}
.yb0{bottom:643.190667pt;}
.y70{bottom:644.464000pt;}
.y163{bottom:644.581333pt;}
.y48{bottom:645.714667pt;}
.y1dc{bottom:645.732000pt;}
.y316{bottom:646.178667pt;}
.y3e3{bottom:648.326667pt;}
.y33b{bottom:648.725333pt;}
.y17e{bottom:649.206667pt;}
.y1c5{bottom:650.870667pt;}
.y293{bottom:651.769333pt;}
.y2ce{bottom:652.116000pt;}
.y118{bottom:653.485333pt;}
.y38d{bottom:653.758667pt;}
.y272{bottom:654.481333pt;}
.y251{bottom:654.758667pt;}
.y13e{bottom:655.588000pt;}
.y235{bottom:655.804000pt;}
.y94{bottom:656.750667pt;}
.y1a0{bottom:657.133333pt;}
.y31{bottom:657.138667pt;}
.yd3{bottom:658.234667pt;}
.y3bf{bottom:659.408000pt;}
.yf7{bottom:659.462667pt;}
.y372{bottom:659.792000pt;}
.y315{bottom:662.120000pt;}
.yaf{bottom:662.452000pt;}
.y6f{bottom:663.724000pt;}
.y162{bottom:663.842667pt;}
.y47{bottom:664.976000pt;}
.y1db{bottom:664.993333pt;}
.y17d{bottom:667.273333pt;}
.y2f0{bottom:667.765333pt;}
.y33a{bottom:667.986667pt;}
.y1c4{bottom:670.132000pt;}
.y2cd{bottom:671.377333pt;}
.y117{bottom:672.746667pt;}
.y38c{bottom:673.020000pt;}
.y271{bottom:673.742667pt;}
.y250{bottom:674.020000pt;}
.y13d{bottom:674.849333pt;}
.y234{bottom:675.065333pt;}
.y93{bottom:676.012000pt;}
.y19f{bottom:676.393333pt;}
.y30{bottom:676.400000pt;}
.yd2{bottom:677.494667pt;}
.y3a5{bottom:678.060000pt;}
.y3be{bottom:678.668000pt;}
.yf6{bottom:678.724000pt;}
.y371{bottom:679.052000pt;}
.y3e2{bottom:680.872000pt;}
.yae{bottom:681.713333pt;}
.y6e{bottom:682.985333pt;}
.y161{bottom:683.104000pt;}
.y46{bottom:684.236000pt;}
.y17c{bottom:685.338667pt;}
.y218{bottom:685.586667pt;}
.y292{bottom:688.298667pt;}
.y1c3{bottom:689.392000pt;}
.y2cc{bottom:690.637333pt;}
.y116{bottom:692.008000pt;}
.y8{bottom:692.785333pt;}
.y270{bottom:693.004000pt;}
.y24f{bottom:693.280000pt;}
.y314{bottom:694.000000pt;}
.y13c{bottom:694.110667pt;}
.y233{bottom:694.326667pt;}
.y1da{bottom:694.549333pt;}
.y92{bottom:695.273333pt;}
.y19e{bottom:695.654667pt;}
.y2f{bottom:695.660000pt;}
.yd1{bottom:696.756000pt;}
.y3bd{bottom:697.929333pt;}
.yf5{bottom:697.985333pt;}
.y370{bottom:698.313333pt;}
.y2ef{bottom:699.645333pt;}
.y3e1{bottom:700.132000pt;}
.yad{bottom:700.973333pt;}
.y6d{bottom:702.246667pt;}
.y160{bottom:702.364000pt;}
.y17b{bottom:703.404000pt;}
.y45{bottom:703.497333pt;}
.y339{bottom:704.516000pt;}
.y217{bottom:704.848000pt;}
.y291{bottom:707.560000pt;}
.y38b{bottom:708.182667pt;}
.y1c2{bottom:708.653333pt;}
.y2cb{bottom:709.898667pt;}
.y313{bottom:709.940000pt;}
.y115{bottom:711.268000pt;}
.y7{bottom:712.046667pt;}
.y26f{bottom:712.265333pt;}
.y24e{bottom:712.541333pt;}
.y13b{bottom:713.372000pt;}
.y232{bottom:713.588000pt;}
.y19d{bottom:714.916000pt;}
.y2e{bottom:714.921333pt;}
.y1f2{bottom:715.253333pt;}
.yd0{bottom:716.017333pt;}
.y3bc{bottom:717.190667pt;}
.yf4{bottom:717.246667pt;}
.y36f{bottom:717.574667pt;}
.y3e0{bottom:719.393333pt;}
.yac{bottom:720.234667pt;}
.y17a{bottom:721.469333pt;}
.y44{bottom:722.758667pt;}
.y216{bottom:724.109333pt;}
.y312{bottom:725.880000pt;}
.y1c1{bottom:727.914667pt;}
.y2ca{bottom:729.160000pt;}
.y114{bottom:730.529333pt;}
.y2ee{bottom:731.525333pt;}
.y6c{bottom:731.802667pt;}
.y13a{bottom:732.633333pt;}
.y231{bottom:732.849333pt;}
.y338{bottom:734.072000pt;}
.y19c{bottom:734.177333pt;}
.y2d{bottom:734.182667pt;}
.ycf{bottom:735.278667pt;}
.y3bb{bottom:736.452000pt;}
.yf3{bottom:736.506667pt;}
.y36e{bottom:736.836000pt;}
.y290{bottom:737.116000pt;}
.y15f{bottom:738.320000pt;}
.yab{bottom:739.496000pt;}
.y179{bottom:739.534667pt;}
.y311{bottom:741.820000pt;}
.y43{bottom:742.020000pt;}
.y38a{bottom:743.346667pt;}
.y215{bottom:743.370667pt;}
.y26e{bottom:744.809333pt;}
.y1c0{bottom:747.176000pt;}
.y2ed{bottom:747.466667pt;}
.y2c9{bottom:748.421333pt;}
.y113{bottom:749.790667pt;}
.y6{bottom:750.156000pt;}
.y91{bottom:751.064000pt;}
.y1f1{bottom:751.782667pt;}
.y139{bottom:751.894667pt;}
.y3df{bottom:751.938667pt;}
.y230{bottom:752.110667pt;}
.y19b{bottom:753.438667pt;}
.y2c{bottom:753.444000pt;}
.yce{bottom:754.540000pt;}
.y3ba{bottom:755.713333pt;}
.yf2{bottom:755.768000pt;}
.y36d{bottom:756.097333pt;}
.y15e{bottom:757.581333pt;}
.y178{bottom:757.601333pt;}
.y310{bottom:757.761333pt;}
.yaa{bottom:758.757333pt;}
.y1d9{bottom:759.772000pt;}
.y389{bottom:762.606667pt;}
.y214{bottom:762.632000pt;}
.y26d{bottom:764.070667pt;}
.y1bf{bottom:766.437333pt;}
.y2c8{bottom:767.682667pt;}
.y112{bottom:769.052000pt;}
.y1f0{bottom:771.044000pt;}
.y138{bottom:771.154667pt;}
.y3de{bottom:771.198667pt;}
.y22f{bottom:771.370667pt;}
.y19a{bottom:772.700000pt;}
.y2b{bottom:772.705333pt;}
.y30f{bottom:773.701333pt;}
.ycd{bottom:773.801333pt;}
.y3b9{bottom:774.974667pt;}
.yf1{bottom:775.029333pt;}
.y36c{bottom:775.357333pt;}
.y337{bottom:775.638667pt;}
.y177{bottom:775.666667pt;}
.y5{bottom:776.457333pt;}
.y42{bottom:777.066667pt;}
.y6b{bottom:778.018667pt;}
.y28f{bottom:778.682667pt;}
.y2ec{bottom:779.346667pt;}
.y1d8{bottom:779.644000pt;}
.y90{bottom:780.620000pt;}
.y213{bottom:781.892000pt;}
.y26c{bottom:783.332000pt;}
.y1be{bottom:785.698667pt;}
.y111{bottom:788.313333pt;}
.y30e{bottom:789.641333pt;}
.y15d{bottom:789.982667pt;}
.y1ef{bottom:790.305333pt;}
.y137{bottom:790.416000pt;}
.y22e{bottom:790.632000pt;}
.y199{bottom:791.960000pt;}
.y2a{bottom:791.966667pt;}
.ycc{bottom:793.061333pt;}
.yf0{bottom:794.290667pt;}
.y36b{bottom:794.618667pt;}
.y336{bottom:794.898667pt;}
.y2c7{bottom:797.258667pt;}
.y6a{bottom:797.280000pt;}
.y388{bottom:797.770667pt;}
.y1d7{bottom:800.048000pt;}
.y212{bottom:801.153333pt;}
.y4{bottom:802.760000pt;}
.y3dd{bottom:803.744000pt;}
.y3b8{bottom:804.529333pt;}
.y1bd{bottom:804.958667pt;}
.y30d{bottom:805.581333pt;}
.y110{bottom:807.574667pt;}
.y1ee{bottom:809.566667pt;}
.y136{bottom:809.677333pt;}
.y22d{bottom:809.893333pt;}
.y176{bottom:811.000000pt;}
.y198{bottom:811.221333pt;}
.y29{bottom:811.226667pt;}
.yef{bottom:813.552000pt;}
.y36a{bottom:813.880000pt;}
.y335{bottom:814.160000pt;}
.y26b{bottom:815.876000pt;}
.y2c6{bottom:816.520000pt;}
.y69{bottom:816.540000pt;}
.y1d6{bottom:819.920000pt;}
.y211{bottom:820.414667pt;}
.y30c{bottom:821.521333pt;}
.y15c{bottom:822.382667pt;}
.ycb{bottom:822.617333pt;}
.y1bc{bottom:824.220000pt;}
.y8f{bottom:826.834667pt;}
.y2eb{bottom:827.166667pt;}
.y1ed{bottom:828.828000pt;}
.y135{bottom:828.938667pt;}
.y22c{bottom:829.154667pt;}
.y41{bottom:830.310667pt;}
.y197{bottom:830.482667pt;}
.y28{bottom:830.488000pt;}
.yee{bottom:832.813333pt;}
.y387{bottom:832.933333pt;}
.y369{bottom:833.141333pt;}
.y26a{bottom:835.137333pt;}
.y2c5{bottom:835.781333pt;}
.y68{bottom:835.801333pt;}
.y3dc{bottom:836.288000pt;}
.y3a4{bottom:837.461333pt;}
.y210{bottom:839.676000pt;}
.y1d5{bottom:840.324000pt;}
.y15b{bottom:841.644000pt;}
.y2ea{bottom:843.108000pt;}
.y1bb{bottom:843.481333pt;}
.y334{bottom:843.716000pt;}
.y28e{bottom:843.772000pt;}
.y8e{bottom:846.096000pt;}
.y1ec{bottom:848.089333pt;}
.y134{bottom:848.200000pt;}
.y22b{bottom:848.416000pt;}
.y40{bottom:849.572000pt;}
.y196{bottom:849.744000pt;}
.y27{bottom:849.749333pt;}
.y3{bottom:850.081333pt;}
.y386{bottom:852.194667pt;}
.y368{bottom:852.402667pt;}
.y30b{bottom:853.402667pt;}
.y269{bottom:854.398667pt;}
.y67{bottom:855.062667pt;}
.y3db{bottom:855.549333pt;}
.y20f{bottom:858.937333pt;}
.y1d4{bottom:860.196000pt;}
.y28d{bottom:863.033333pt;}
.y8d{bottom:865.357333pt;}
.y1eb{bottom:867.349333pt;}
.y133{bottom:867.461333pt;}
.y22a{bottom:867.677333pt;}
.y3f{bottom:868.833333pt;}
.y195{bottom:869.005333pt;}
.y30a{bottom:869.342667pt;}
.y15a{bottom:874.045333pt;}
.y66{bottom:874.324000pt;}
.y3da{bottom:874.810667pt;}
.y2e9{bottom:874.988000pt;}
.y20e{bottom:878.198667pt;}
.y1ba{bottom:880.010667pt;}
.y268{bottom:880.301333pt;}
.y1d3{bottom:880.600000pt;}
.y385{bottom:881.750667pt;}
.y2{bottom:883.290667pt;}
.y26{bottom:884.618667pt;}
.y309{bottom:885.282667pt;}
.y1ea{bottom:886.610667pt;}
.y229{bottom:886.937333pt;}
.y3e{bottom:888.094667pt;}
.y367{bottom:890.924000pt;}
.y2e8{bottom:890.928000pt;}
.y65{bottom:893.585333pt;}
.y28c{bottom:895.577333pt;}
.y132{bottom:897.016000pt;}
.y20d{bottom:897.458667pt;}
.y267{bottom:899.562667pt;}
.y1d2{bottom:900.472000pt;}
.y333{bottom:901.222667pt;}
.y25{bottom:903.880000pt;}
.y194{bottom:905.534667pt;}
.y1e9{bottom:905.872000pt;}
.y228{bottom:906.198667pt;}
.y159{bottom:906.446667pt;}
.y2e7{bottom:906.868000pt;}
.y3d{bottom:907.356000pt;}
.y366{bottom:910.185333pt;}
.y64{bottom:912.845333pt;}
.y28b{bottom:914.838667pt;}
.y1{bottom:916.498667pt;}
.y20c{bottom:916.720000pt;}
.y308{bottom:917.162667pt;}
.y24{bottom:923.141333pt;}
.y1d1{bottom:923.532000pt;}
.y1e8{bottom:925.133333pt;}
.y227{bottom:925.460000pt;}
.y158{bottom:925.708000pt;}
.y3c{bottom:926.616000pt;}
.y63{bottom:932.106667pt;}
.y307{bottom:933.102667pt;}
.y20b{bottom:935.981333pt;}
.y2e6{bottom:938.749333pt;}
.y365{bottom:939.741333pt;}
.y23{bottom:942.401333pt;}
.y1e7{bottom:944.394667pt;}
.y3b{bottom:945.877333pt;}
.y306{bottom:949.044000pt;}
.y62{bottom:951.368000pt;}
.y2e5{bottom:954.689333pt;}
.y22{bottom:961.662667pt;}
.y226{bottom:961.989333pt;}
.y305{bottom:964.984000pt;}
.y1d0{bottom:972.510667pt;}
.y21{bottom:980.924000pt;}
.h8{height:36.874903pt;}
.h5{height:40.378215pt;}
.h7{height:43.636400pt;}
.h6{height:44.250180pt;}
.h4{height:47.820800pt;}
.h2{height:57.384800pt;}
.h3{height:68.861600pt;}
.h1{height:77.911400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:49.316000pt;}
.x9{left:57.120000pt;}
.x12{left:61.894667pt;}
.x2a{left:65.322667pt;}
.x10{left:71.860000pt;}
.x13{left:74.461333pt;}
.xd{left:76.196000pt;}
.xa{left:80.532000pt;}
.x2c{left:85.014667pt;}
.x26{left:89.930667pt;}
.x2f{left:91.989333pt;}
.xe{left:96.140000pt;}
.x2b{left:98.133333pt;}
.x28{left:102.729333pt;}
.x2d{left:105.936000pt;}
.x1b{left:113.101333pt;}
.x24{left:114.537333pt;}
.xb{left:116.430667pt;}
.x22{left:117.593333pt;}
.x19{left:123.668000pt;}
.x29{left:130.477333pt;}
.x2{left:138.145333pt;}
.x16{left:156.392000pt;}
.x17{left:164.028000pt;}
.x23{left:166.646667pt;}
.x1a{left:188.361333pt;}
.x14{left:206.793333pt;}
.x15{left:217.481333pt;}
.x1c{left:221.170667pt;}
.x1e{left:227.586667pt;}
.x21{left:239.292000pt;}
.x20{left:242.004000pt;}
.x1d{left:250.142667pt;}
.x27{left:259.660000pt;}
.x4{left:268.582667pt;}
.x1{left:280.593333pt;}
.x8{left:284.957333pt;}
.x6{left:286.785333pt;}
.x1f{left:294.680000pt;}
.x25{left:309.112000pt;}
.x5{left:319.814667pt;}
.x7{left:327.878667pt;}
.x3{left:339.474667pt;}
.x2e{left:392.392000pt;}
.xf{left:400.196000pt;}
.xc{left:404.098667pt;}
.x18{left:431.297333pt;}
}




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