
    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_4d6eeb02c14b24e8cacf4786.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_7ebb81fa0ddb74562d1aa5e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_c1f99691e61a1097f4f34f85.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_fffac5734be09018424eeea4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_dca86a5dafa95499a986a13c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_c088b20f75f11d403174013b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.720703;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_6ecc33229344fb089b014410.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.896973;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);}
.v3{vertical-align:-27.321681px;}
.v2{vertical-align:-22.768069px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.v4{vertical-align:28.516641px;}
.v5{vertical-align:31.875294px;}
.v6{vertical-align:36.428905px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000002px;}
.ls7{letter-spacing:0.000033px;}
.ls1{letter-spacing:16.663445px;}
.lsc{letter-spacing:18.000000px;}
.ls5{letter-spacing:18.000023px;}
.ls9{letter-spacing:22.500000px;}
.ls8{letter-spacing:27.000000px;}
.ls4{letter-spacing:31.485959px;}
.lsd{letter-spacing:31.500000px;}
.ls3{letter-spacing:35.985959px;}
.ls2{letter-spacing:40.485937px;}
.lsb{letter-spacing:40.500000px;}
.lsa{letter-spacing:45.000000px;}
.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;}
}
.wsf{word-spacing:-50.999999px;}
.ws108{word-spacing:-41.999999px;}
.ws65{word-spacing:-38.542970px;}
.ws16{word-spacing:-36.000000px;}
.ws23{word-spacing:-35.039062px;}
.ws70{word-spacing:-29.999999px;}
.ws112{word-spacing:-29.432812px;}
.ws12d{word-spacing:-28.800000px;}
.wsf6{word-spacing:-25.200000px;}
.ws171{word-spacing:-24.022753px;}
.ws17d{word-spacing:-24.018852px;}
.ws184{word-spacing:-24.016246px;}
.ws12c{word-spacing:-24.016229px;}
.ws109{word-spacing:-23.125782px;}
.wsd4{word-spacing:-21.600001px;}
.ws17a{word-spacing:-21.045575px;}
.wsfb{word-spacing:-21.045568px;}
.ws16b{word-spacing:-21.045566px;}
.wsf5{word-spacing:-21.045548px;}
.ws15d{word-spacing:-21.037860px;}
.ws16c{word-spacing:-21.037842px;}
.ws151{word-spacing:-21.037816px;}
.ws14a{word-spacing:-21.037806px;}
.ws129{word-spacing:-21.037792px;}
.ws163{word-spacing:-21.037789px;}
.ws11f{word-spacing:-21.037787px;}
.ws189{word-spacing:-21.037786px;}
.ws132{word-spacing:-21.037784px;}
.ws94{word-spacing:-21.037782px;}
.ws165{word-spacing:-21.037771px;}
.ws174{word-spacing:-21.037767px;}
.ws133{word-spacing:-21.037652px;}
.ws18c{word-spacing:-21.035249px;}
.ws10f{word-spacing:-21.035242px;}
.ws131{word-spacing:-21.035204px;}
.ws168{word-spacing:-21.035159px;}
.ws161{word-spacing:-21.035156px;}
.ws3f{word-spacing:-21.035154px;}
.ws111{word-spacing:-21.035152px;}
.ws136{word-spacing:-21.035142px;}
.ws13e{word-spacing:-21.032556px;}
.ws103{word-spacing:-21.032533px;}
.ws146{word-spacing:-21.032525px;}
.ws14e{word-spacing:-21.032522px;}
.ws142{word-spacing:-21.032520px;}
.ws122{word-spacing:-21.032488px;}
.ws153{word-spacing:-21.029962px;}
.ws13b{word-spacing:-21.029959px;}
.ws180{word-spacing:-21.027326px;}
.ws24{word-spacing:-21.023438px;}
.ws12b{word-spacing:-19.516197px;}
.ws16f{word-spacing:-18.395236px;}
.wsce{word-spacing:-18.392591px;}
.wsbc{word-spacing:-18.392566px;}
.ws8e{word-spacing:-18.392544px;}
.ws87{word-spacing:-18.392510px;}
.wsd3{word-spacing:-18.391397px;}
.ws47{word-spacing:-18.391275px;}
.ws20{word-spacing:-18.391262px;}
.ws61{word-spacing:-18.391253px;}
.ws76{word-spacing:-18.391251px;}
.ws186{word-spacing:-18.391250px;}
.ws88{word-spacing:-18.391248px;}
.ws74{word-spacing:-18.388856px;}
.ws62{word-spacing:-18.388760px;}
.wsea{word-spacing:-18.388744px;}
.wsaf{word-spacing:-18.388734px;}
.ws59{word-spacing:-18.388721px;}
.ws95{word-spacing:-18.388714px;}
.wsd1{word-spacing:-18.388709px;}
.wsae{word-spacing:-18.388708px;}
.ws33{word-spacing:-18.388702px;}
.ws6d{word-spacing:-18.388693px;}
.wsac{word-spacing:-18.388690px;}
.ws9d{word-spacing:-18.388688px;}
.wsd7{word-spacing:-18.388682px;}
.wsbb{word-spacing:-18.388680px;}
.ws75{word-spacing:-18.388676px;}
.ws2f{word-spacing:-18.388657px;}
.ws5e{word-spacing:-18.388639px;}
.ws81{word-spacing:-18.388637px;}
.ws63{word-spacing:-18.388632px;}
.wsa8{word-spacing:-18.388627px;}
.ws46{word-spacing:-18.388625px;}
.ws32{word-spacing:-18.388622px;}
.ws45{word-spacing:-18.388621px;}
.ws55{word-spacing:-18.388620px;}
.ws34{word-spacing:-18.388618px;}
.ws2e{word-spacing:-18.388616px;}
.ws6f{word-spacing:-18.388615px;}
.wsa1{word-spacing:-18.388613px;}
.ws30{word-spacing:-18.388612px;}
.ws89{word-spacing:-18.388603px;}
.ws144{word-spacing:-18.388600px;}
.wsab{word-spacing:-18.388597px;}
.ws13c{word-spacing:-18.388586px;}
.wsdd{word-spacing:-18.388567px;}
.ws6c{word-spacing:-18.388541px;}
.ws44{word-spacing:-18.388522px;}
.ws18a{word-spacing:-18.387339px;}
.ws79{word-spacing:-18.387338px;}
.ws48{word-spacing:-18.387336px;}
.wsf0{word-spacing:-18.387335px;}
.ws9c{word-spacing:-18.387330px;}
.wsad{word-spacing:-18.383424px;}
.wsc0{word-spacing:-18.383421px;}
.ws43{word-spacing:-18.383419px;}
.ws6e{word-spacing:-18.383415px;}
.ws42{word-spacing:-18.382253px;}
.wsb3{word-spacing:-18.382208px;}
.ws57{word-spacing:-18.382129px;}
.ws13f{word-spacing:-18.382108px;}
.ws60{word-spacing:-18.382105px;}
.ws21{word-spacing:-18.382097px;}
.ws25{word-spacing:-18.382095px;}
.ws26{word-spacing:-18.382093px;}
.ws9f{word-spacing:-18.382092px;}
.wsaa{word-spacing:-18.382079px;}
.ws54{word-spacing:-18.382075px;}
.ws97{word-spacing:-18.381993px;}
.ws80{word-spacing:-18.381961px;}
.wsed{word-spacing:-18.381938px;}
.wsa3{word-spacing:-18.381916px;}
.ws14b{word-spacing:-18.000037px;}
.wse1{word-spacing:-18.000035px;}
.wsfc{word-spacing:-18.000025px;}
.wse9{word-spacing:-18.000024px;}
.ws27{word-spacing:-18.000023px;}
.wse0{word-spacing:-18.000014px;}
.ws0{word-spacing:-18.000012px;}
.wsa4{word-spacing:-18.000003px;}
.ws104{word-spacing:-18.000001px;}
.ws6{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.999998px;}
.ws15e{word-spacing:-17.999997px;}
.ws51{word-spacing:-17.999989px;}
.ws143{word-spacing:-17.999978px;}
.ws3{word-spacing:-17.999977px;}
.ws2{word-spacing:-17.999967px;}
.ws13a{word-spacing:-16.545658px;}
.ws14c{word-spacing:-16.545567px;}
.ws173{word-spacing:-16.537716px;}
.ws140{word-spacing:-16.535236px;}
.ws175{word-spacing:-16.535174px;}
.ws16d{word-spacing:-16.535153px;}
.ws18b{word-spacing:-16.535151px;}
.ws15b{word-spacing:-16.532533px;}
.ws10e{word-spacing:-16.532523px;}
.ws107{word-spacing:-16.530121px;}
.wsc3{word-spacing:-15.016224px;}
.wsc2{word-spacing:-15.015019px;}
.wsc9{word-spacing:-13.888774px;}
.wsb8{word-spacing:-13.500035px;}
.ws121{word-spacing:-13.500033px;}
.ws98{word-spacing:-13.500023px;}
.ws4e{word-spacing:-13.500012px;}
.wsb7{word-spacing:-13.500003px;}
.ws130{word-spacing:-13.500002px;}
.ws4f{word-spacing:-13.500000px;}
.ws138{word-spacing:-13.499999px;}
.wsdf{word-spacing:-13.499988px;}
.ws16e{word-spacing:-13.499978px;}
.ws113{word-spacing:-13.499967px;}
.ws5f{word-spacing:-13.354785px;}
.ws90{word-spacing:-13.353548px;}
.wsd2{word-spacing:-13.353448px;}
.ws8d{word-spacing:-13.353445px;}
.ws10b{word-spacing:-13.352280px;}
.ws8f{word-spacing:-13.352247px;}
.ws7f{word-spacing:-13.352221px;}
.wsa2{word-spacing:-13.352176px;}
.ws8a{word-spacing:-13.352158px;}
.wsf8{word-spacing:-13.352106px;}
.ws96{word-spacing:-13.350838px;}
.wsde{word-spacing:-13.349794px;}
.wsb4{word-spacing:-13.349774px;}
.wsff{word-spacing:-13.349714px;}
.wsa7{word-spacing:-13.349659px;}
.ws41{word-spacing:-13.349650px;}
.ws5a{word-spacing:-13.349648px;}
.ws118{word-spacing:-13.349640px;}
.ws31{word-spacing:-13.349639px;}
.wse5{word-spacing:-13.349637px;}
.ws91{word-spacing:-13.349632px;}
.ws38{word-spacing:-13.349627px;}
.ws11b{word-spacing:-13.349625px;}
.ws148{word-spacing:-13.349616px;}
.ws124{word-spacing:-13.349614px;}
.ws100{word-spacing:-13.349575px;}
.ws78{word-spacing:-13.349566px;}
.wsd8{word-spacing:-13.349559px;}
.ws106{word-spacing:-13.349557px;}
.ws58{word-spacing:-13.349556px;}
.ws8b{word-spacing:-13.349554px;}
.ws56{word-spacing:-13.349552px;}
.wsdb{word-spacing:-13.349550px;}
.ws7a{word-spacing:-13.349549px;}
.ws12a{word-spacing:-13.349524px;}
.ws86{word-spacing:-13.349504px;}
.wsa0{word-spacing:-13.349484px;}
.ws8c{word-spacing:-13.349479px;}
.wsb2{word-spacing:-13.349459px;}
.wsfd{word-spacing:-13.348344px;}
.wsa9{word-spacing:-13.348287px;}
.wsd0{word-spacing:-13.348273px;}
.ws64{word-spacing:-13.344347px;}
.ws105{word-spacing:-13.343035px;}
.wsd6{word-spacing:-13.343031px;}
.wsf2{word-spacing:-13.341805px;}
.ws178{word-spacing:-13.341760px;}
.ws176{word-spacing:-13.341746px;}
.ws22{word-spacing:-13.341741px;}
.ws14f{word-spacing:-13.341737px;}
.ws77{word-spacing:-13.341728px;}
.wsdc{word-spacing:-13.341724px;}
.ws172{word-spacing:-13.341719px;}
.ws15c{word-spacing:-13.341715px;}
.ws187{word-spacing:-13.341706px;}
.ws152{word-spacing:-13.341670px;}
.ws10c{word-spacing:-12.037796px;}
.ws160{word-spacing:-12.037771px;}
.ws141{word-spacing:-12.035150px;}
.ws14d{word-spacing:-12.035142px;}
.wsf4{word-spacing:-12.032745px;}
.ws110{word-spacing:-12.032518px;}
.wsfa{word-spacing:-12.032511px;}
.ws185{word-spacing:-12.027324px;}
.ws1c{word-spacing:-10.800000px;}
.wsda{word-spacing:-9.000034px;}
.wsee{word-spacing:-9.000023px;}
.ws3a{word-spacing:-9.000011px;}
.ws5b{word-spacing:-9.000000px;}
.wsf7{word-spacing:-8.999989px;}
.ws120{word-spacing:-8.999978px;}
.ws19a{word-spacing:-8.999966px;}
.ws17e{word-spacing:-7.545613px;}
.ws116{word-spacing:-7.537906px;}
.ws93{word-spacing:-7.537782px;}
.wsfe{word-spacing:-7.535142px;}
.ws119{word-spacing:-7.535093px;}
.ws182{word-spacing:-7.532588px;}
.ws123{word-spacing:-4.500034px;}
.ws9a{word-spacing:-4.500023px;}
.ws1b{word-spacing:-4.500012px;}
.ws1cd{word-spacing:-4.500003px;}
.ws99{word-spacing:-4.500000px;}
.ws84{word-spacing:-4.499989px;}
.wsc8{word-spacing:-4.499978px;}
.ws53{word-spacing:-4.359993px;}
.ws9b{word-spacing:-3.614064px;}
.ws137{word-spacing:-3.612422px;}
.ws3e{word-spacing:-3.035187px;}
.ws11e{word-spacing:-3.035159px;}
.ws102{word-spacing:-3.035155px;}
.ws181{word-spacing:-3.032520px;}
.ws177{word-spacing:-3.032453px;}
.ws16a{word-spacing:-3.027326px;}
.wsf3{word-spacing:-1.718464px;}
.wsc4{word-spacing:-0.011730px;}
.wsc1{word-spacing:-0.011719px;}
.ws92{word-spacing:-0.000035px;}
.wsc6{word-spacing:-0.000034px;}
.wscc{word-spacing:-0.000024px;}
.ws13{word-spacing:-0.000023px;}
.wsbd{word-spacing:-0.000015px;}
.ws18{word-spacing:-0.000012px;}
.ws4{word-spacing:-0.000011px;}
.ws11a{word-spacing:-0.000004px;}
.ws11{word-spacing:-0.000003px;}
.ws35{word-spacing:-0.000001px;}
.wse{word-spacing:0.000000px;}
.ws10{word-spacing:0.000001px;}
.ws19{word-spacing:0.000002px;}
.ws5{word-spacing:0.000010px;}
.ws6b{word-spacing:0.000012px;}
.ws2d{word-spacing:0.000022px;}
.ws1{word-spacing:0.000033px;}
.ws73{word-spacing:0.885936px;}
.ws158{word-spacing:1.462149px;}
.ws145{word-spacing:1.462155px;}
.ws125{word-spacing:1.462249px;}
.ws150{word-spacing:1.464796px;}
.ws155{word-spacing:1.464813px;}
.ws13d{word-spacing:1.467477px;}
.ws69{word-spacing:1.538084px;}
.ws17c{word-spacing:2.983695px;}
.ws9e{word-spacing:4.499966px;}
.ws3b{word-spacing:4.499977px;}
.ws9{word-spacing:4.499988px;}
.ws169{word-spacing:4.499990px;}
.ws50{word-spacing:4.499997px;}
.ws40{word-spacing:4.499999px;}
.wsa{word-spacing:4.500000px;}
.wsb6{word-spacing:4.500002px;}
.ws3c{word-spacing:4.500010px;}
.ws188{word-spacing:4.500021px;}
.ws39{word-spacing:4.500022px;}
.wsba{word-spacing:4.500033px;}
.ws17f{word-spacing:5.964796px;}
.ws72{word-spacing:7.185936px;}
.wsd5{word-spacing:7.185959px;}
.ws12e{word-spacing:7.187516px;}
.ws170{word-spacing:7.481036px;}
.ws7d{word-spacing:8.999967px;}
.ws1d{word-spacing:8.999977px;}
.ws82{word-spacing:8.999986px;}
.wsd{word-spacing:8.999988px;}
.ws157{word-spacing:8.999995px;}
.ws83{word-spacing:8.999997px;}
.ws7b{word-spacing:8.999999px;}
.ws17{word-spacing:9.000000px;}
.wsa5{word-spacing:9.000002px;}
.ws3d{word-spacing:9.000011px;}
.ws37{word-spacing:9.000022px;}
.ws15f{word-spacing:9.000023px;}
.ws135{word-spacing:9.000033px;}
.ws10a{word-spacing:10.457027px;}
.wsf1{word-spacing:11.685914px;}
.ws49{word-spacing:11.685922px;}
.ws66{word-spacing:11.685936px;}
.wscf{word-spacing:12.303451px;}
.wse4{word-spacing:13.499932px;}
.ws134{word-spacing:13.499965px;}
.wse7{word-spacing:13.499966px;}
.ws4d{word-spacing:13.499977px;}
.ws85{word-spacing:13.499978px;}
.ws139{word-spacing:13.499987px;}
.ws28{word-spacing:13.499988px;}
.ws71{word-spacing:13.499997px;}
.wsb9{word-spacing:13.499999px;}
.ws1a{word-spacing:13.500000px;}
.wscb{word-spacing:13.500001px;}
.ws36{word-spacing:13.500011px;}
.wsb{word-spacing:13.500022px;}
.ws101{word-spacing:13.500023px;}
.ws12f{word-spacing:13.500034px;}
.ws162{word-spacing:14.954477px;}
.wse6{word-spacing:16.185900px;}
.ws7c{word-spacing:16.185936px;}
.ws114{word-spacing:17.999965px;}
.wsc{word-spacing:17.999977px;}
.ws2c{word-spacing:17.999988px;}
.ws15a{word-spacing:17.999997px;}
.ws2a{word-spacing:18.000000px;}
.ws2b{word-spacing:18.000002px;}
.ws1f{word-spacing:18.000011px;}
.ws6a{word-spacing:18.000022px;}
.ws154{word-spacing:19.462207px;}
.wse3{word-spacing:20.685900px;}
.wsc5{word-spacing:20.685936px;}
.wsbf{word-spacing:22.499966px;}
.ws7{word-spacing:22.499977px;}
.ws4c{word-spacing:22.499988px;}
.ws68{word-spacing:22.499998px;}
.ws29{word-spacing:22.500000px;}
.wse8{word-spacing:22.500010px;}
.ws128{word-spacing:22.500022px;}
.wsa6{word-spacing:22.500033px;}
.ws115{word-spacing:23.967467px;}
.ws52{word-spacing:25.185936px;}
.ws147{word-spacing:25.187511px;}
.ws11d{word-spacing:26.999966px;}
.ws7e{word-spacing:26.999978px;}
.ws15{word-spacing:26.999988px;}
.wsd9{word-spacing:26.999998px;}
.ws4a{word-spacing:26.999999px;}
.wsec{word-spacing:27.000002px;}
.ws149{word-spacing:27.000011px;}
.wsc7{word-spacing:27.000022px;}
.wseb{word-spacing:27.000023px;}
.ws159{word-spacing:28.462187px;}
.wse2{word-spacing:31.441157px;}
.ws5c{word-spacing:31.499966px;}
.ws8{word-spacing:31.499977px;}
.wsb0{word-spacing:31.499988px;}
.ws5d{word-spacing:31.500000px;}
.wscd{word-spacing:31.500001px;}
.wsef{word-spacing:31.500002px;}
.ws179{word-spacing:32.967467px;}
.ws4b{word-spacing:34.185936px;}
.ws167{word-spacing:35.999978px;}
.wsca{word-spacing:35.999988px;}
.ws1c6{word-spacing:35.999998px;}
.ws12{word-spacing:36.000000px;}
.ws1e{word-spacing:36.000002px;}
.ws1ca{word-spacing:36.000012px;}
.ws10d{word-spacing:36.000022px;}
.ws156{word-spacing:37.462218px;}
.ws127{word-spacing:40.499977px;}
.ws11c{word-spacing:40.499989px;}
.ws1a8{word-spacing:40.499998px;}
.wsf9{word-spacing:40.500000px;}
.wsb1{word-spacing:40.500010px;}
.ws67{word-spacing:44.999988px;}
.ws117{word-spacing:45.000000px;}
.ws1cf{word-spacing:45.000011px;}
.wsbe{word-spacing:49.500000px;}
.ws164{word-spacing:50.962323px;}
.ws1b6{word-spacing:53.999978px;}
.ws1b5{word-spacing:53.999989px;}
.wsb5{word-spacing:53.999999px;}
.ws1f0{word-spacing:54.000011px;}
.ws126{word-spacing:58.499988px;}
.ws17b{word-spacing:58.499999px;}
.ws18f{word-spacing:63.000000px;}
.ws1c3{word-spacing:67.499988px;}
.ws1a3{word-spacing:71.999978px;}
.ws1f8{word-spacing:72.000000px;}
.ws1ed{word-spacing:76.499988px;}
.ws206{word-spacing:76.500000px;}
.ws18e{word-spacing:76.500033px;}
.ws183{word-spacing:79.484983px;}
.ws190{word-spacing:81.000000px;}
.ws1c2{word-spacing:90.000000px;}
.ws205{word-spacing:94.499988px;}
.ws1ec{word-spacing:94.500000px;}
.ws166{word-spacing:98.999966px;}
.ws208{word-spacing:99.000000px;}
.ws1a4{word-spacing:103.500000px;}
.ws191{word-spacing:107.999978px;}
.ws1a9{word-spacing:112.499988px;}
.ws195{word-spacing:112.500000px;}
.ws19f{word-spacing:117.000000px;}
.ws1fd{word-spacing:117.000011px;}
.ws1a5{word-spacing:121.500000px;}
.ws192{word-spacing:126.000000px;}
.ws196{word-spacing:130.500000px;}
.ws1ff{word-spacing:139.499999px;}
.ws1ce{word-spacing:144.000000px;}
.ws1eb{word-spacing:153.000000px;}
.ws1fe{word-spacing:157.499966px;}
.ws1ea{word-spacing:170.999966px;}
.ws1f5{word-spacing:175.499988px;}
.ws1df{word-spacing:175.500000px;}
.ws203{word-spacing:188.999989px;}
.ws1de{word-spacing:193.499999px;}
.ws1b8{word-spacing:197.999988px;}
.ws1b1{word-spacing:202.500000px;}
.ws204{word-spacing:206.999989px;}
.ws1af{word-spacing:207.000000px;}
.ws1a6{word-spacing:211.500000px;}
.ws1b9{word-spacing:211.500011px;}
.ws1b0{word-spacing:220.499989px;}
.ws1e8{word-spacing:220.500000px;}
.ws1d6{word-spacing:229.500000px;}
.ws1bd{word-spacing:234.000000px;}
.ws207{word-spacing:242.999977px;}
.ws1e7{word-spacing:242.999999px;}
.ws1d5{word-spacing:247.499989px;}
.ws1be{word-spacing:247.500000px;}
.ws1bf{word-spacing:265.500000px;}
.ws1c8{word-spacing:270.000000px;}
.ws1c7{word-spacing:278.999988px;}
.ws1c9{word-spacing:283.499989px;}
.ws1c0{word-spacing:283.500000px;}
.ws1d9{word-spacing:301.500000px;}
.ws1dd{word-spacing:310.500000px;}
.ws1a2{word-spacing:315.000000px;}
.ws1d8{word-spacing:319.500000px;}
.ws1dc{word-spacing:332.999999px;}
.ws1a1{word-spacing:333.000000px;}
.ws1e4{word-spacing:337.500000px;}
.ws1e3{word-spacing:355.500011px;}
.ws202{word-spacing:359.999999px;}
.ws1f7{word-spacing:373.500000px;}
.ws1c4{word-spacing:378.000000px;}
.ws201{word-spacing:378.000022px;}
.ws1ad{word-spacing:387.000000px;}
.ws1c5{word-spacing:391.499989px;}
.ws1f6{word-spacing:395.999988px;}
.ws1e9{word-spacing:396.000011px;}
.ws1ae{word-spacing:400.500000px;}
.ws1cb{word-spacing:522.000022px;}
.ws197{word-spacing:535.499988px;}
.ws1cc{word-spacing:540.000000px;}
.ws1ef{word-spacing:544.500000px;}
.ws1a7{word-spacing:548.999999px;}
.ws1f4{word-spacing:558.000000px;}
.ws200{word-spacing:562.499977px;}
.ws1ee{word-spacing:562.499989px;}
.ws18d{word-spacing:566.999977px;}
.ws1e2{word-spacing:571.500000px;}
.ws1f3{word-spacing:580.500011px;}
.ws1e1{word-spacing:594.000000px;}
.ws1b7{word-spacing:598.500000px;}
.ws1bc{word-spacing:607.500012px;}
.ws1bb{word-spacing:625.499988px;}
.ws1fc{word-spacing:783.000000px;}
.ws1f2{word-spacing:787.500000px;}
.ws1ba{word-spacing:796.500000px;}
.ws1fb{word-spacing:805.500011px;}
.ws1aa{word-spacing:809.999988px;}
.ws1f1{word-spacing:810.000023px;}
.ws1fa{word-spacing:832.500000px;}
.ws19b{word-spacing:845.999988px;}
.ws1f9{word-spacing:850.500011px;}
.ws19c{word-spacing:864.000000px;}
.ws1db{word-spacing:868.500000px;}
.ws1e0{word-spacing:886.499988px;}
.ws1d4{word-spacing:886.500000px;}
.ws1da{word-spacing:886.500010px;}
.ws1d7{word-spacing:895.500000px;}
.ws193{word-spacing:900.000011px;}
.ws1d3{word-spacing:904.500011px;}
.ws1c1{word-spacing:909.000033px;}
.ws198{word-spacing:918.000022px;}
.ws1e6{word-spacing:931.500000px;}
.ws1d1{word-spacing:935.999989px;}
.ws199{word-spacing:936.000000px;}
.ws1e5{word-spacing:949.499988px;}
.ws1ac{word-spacing:967.499988px;}
.ws1ab{word-spacing:971.999988px;}
.ws194{word-spacing:985.500011px;}
.ws19e{word-spacing:989.999989px;}
.ws1b4{word-spacing:1012.500000px;}
.ws1a0{word-spacing:2043.000022px;}
.ws1d2{word-spacing:2061.000000px;}
.ws1d0{word-spacing:2083.499988px;}
.ws1b2{word-spacing:2178.000000px;}
.ws19d{word-spacing:2227.499989px;}
.ws1b3{word-spacing:2227.500000px;}
._27{margin-left:-18.001061px;}
._19{margin-left:-11.386457px;}
._e{margin-left:-9.281250px;}
._10{margin-left:-7.980475px;}
._1{margin-left:-6.609375px;}
._0{margin-left:-5.343781px;}
._b{margin-left:-4.324218px;}
._6{margin-left:-3.128886px;}
._f{margin-left:-2.038982px;}
._d{margin-left:-1.008462px;}
._18{width:1.126921px;}
._5{width:17.999997px;}
._25{width:20.043525px;}
._1e{width:21.268881px;}
._a{width:22.499998px;}
._1f{width:24.497546px;}
._17{width:25.581555px;}
._4{width:27.000002px;}
._1c{width:29.850185px;}
._8{width:31.500214px;}
._23{width:32.959048px;}
._1b{width:34.433580px;}
._7{width:36.000002px;}
._13{width:38.933580px;}
._c{width:40.500000px;}
._31{width:41.682329px;}
._11{width:43.247444px;}
._2{width:45.000000px;}
._21{width:47.891972px;}
._9{width:49.500000px;}
._3{width:53.999999px;}
._32{width:55.435656px;}
._1d{width:56.923170px;}
._12{width:58.499999px;}
._2f{width:59.935656px;}
._2b{width:61.371124px;}
._16{width:63.000019px;}
._2a{width:67.500000px;}
._20{width:70.417975px;}
._14{width:71.999994px;}
._29{width:74.933580px;}
._15{width:76.499999px;}
._30{width:78.607112px;}
._22{width:80.128169px;}
._1a{width:81.871833px;}
._28{width:84.363963px;}
._4d{width:85.500000px;}
._34{width:90.000001px;}
._3c{width:94.500027px;}
._2c{width:97.214809px;}
._2d{width:98.332663px;}
._53{width:99.667337px;}
._35{width:103.499999px;}
._26{width:107.999984px;}
._24{width:115.945293px;}
._59{width:117.000000px;}
._2e{width:121.499999px;}
._54{width:130.499919px;}
._33{width:131.935656px;}
._51{width:134.999999px;}
._3d{width:144.000000px;}
._3a{width:148.500010px;}
._38{width:153.000010px;}
._52{width:166.499998px;}
._55{width:180.000002px;}
._50{width:193.500002px;}
._3e{width:225.000009px;}
._58{width:229.500002px;}
._45{width:234.000057px;}
._41{width:238.500000px;}
._42{width:243.000000px;}
._5a{width:265.500000px;}
._47{width:270.000023px;}
._4b{width:283.500011px;}
._4a{width:301.500000px;}
._4c{width:306.000000px;}
._3b{width:355.500000px;}
._4f{width:377.999988px;}
._57{width:400.500000px;}
._49{width:414.000000px;}
._3f{width:571.500022px;}
._56{width:584.999989px;}
._44{width:621.000000px;}
._46{width:818.999989px;}
._36{width:922.500000px;}
._48{width:931.499988px;}
._4e{width:976.500000px;}
._40{width:990.000023px;}
._37{width:1007.999989px;}
._39{width:1012.500023px;}
._43{width:1035.000023px;}
.fc1{color:rgb(255,153,0);}
.fc3{color:rgb(5,16,62);}
.fc2{color:rgb(20,20,20);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs8{font-size:39.600001px;}
.fs3{font-size:43.200002px;}
.fs7{font-size:50.399999px;}
.fsa{font-size:57.600001px;}
.fs5{font-size:59.999999px;}
.fs1{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.999997px;}
.fs9{font-size:96.000003px;}
.fs2{font-size:101.999997px;}
.y0{bottom:0.000000px;}
.y48{bottom:59.967044px;}
.y11{bottom:59.967584px;}
.y2a{bottom:59.967779px;}
.ya5{bottom:59.968499px;}
.y38{bottom:111.344230px;}
.yd1{bottom:113.630858px;}
.y216{bottom:113.636723px;}
.y51a{bottom:113.648438px;}
.y1bb{bottom:116.220698px;}
.yd3{bottom:117.036248px;}
.y379{bottom:117.820312px;}
.y3ef{bottom:123.843742px;}
.y19d{bottom:128.588380px;}
.y37{bottom:128.592775px;}
.ya1{bottom:128.594230px;}
.y3c5{bottom:129.855473px;}
.y47{bottom:134.284793px;}
.yc0{bottom:134.286248px;}
.y509{bottom:134.320312px;}
.yd0{bottom:144.679688px;}
.y432{bottom:145.832515px;}
.y36{bottom:145.841305px;}
.y114{bottom:145.844230px;}
.y1ba{bottom:147.263678px;}
.y49f{bottom:147.609367px;}
.y4ce{bottom:151.524533px;}
.y46{bottom:151.533323px;}
.y215{bottom:151.536248px;}
.y378{bottom:153.843742px;}
.y3d8{bottom:159.843742px;}
.y19c{bottom:163.082515px;}
.ya2{bottom:163.088380px;}
.y3f{bottom:163.089850px;}
.y431{bottom:163.094230px;}
.y508{bottom:165.386723px;}
.y3c4{bottom:165.867187px;}
.y1dd{bottom:168.774533px;}
.yc6{bottom:168.780398px;}
.y35{bottom:168.781868px;}
.y446{bottom:168.786248px;}
.yd6{bottom:170.103156px;}
.y406{bottom:171.878902px;}
.y519{bottom:175.710938px;}
.y1c8{bottom:175.722652px;}
.y7{bottom:175.727048px;}
.yd2{bottom:175.728517px;}
.y1b9{bottom:178.312492px;}
.y3b{bottom:180.338380px;}
.yd5{bottom:180.404298px;}
.y2b3{bottom:180.960938px;}
.y49e{bottom:183.632812px;}
.yd8{bottom:184.691890px;}
.y60{bottom:186.030398px;}
.y248{bottom:186.036248px;}
.y214{bottom:189.011722px;}
.y377{bottom:189.855473px;}
.y4e7{bottom:190.429688px;}
.ybf{bottom:194.774408px;}
.y278{bottom:195.210938px;}
.y3d7{bottom:195.867187px;}
.y507{bottom:196.429688px;}
.y3b5{bottom:196.453117px;}
.y3a{bottom:197.586910px;}
.ya4{bottom:197.588380px;}
.y1dc{bottom:198.240233px;}
.y3c3{bottom:201.878902px;}
.y77{bottom:203.278928px;}
.ydf{bottom:203.280398px;}
.yd4{bottom:203.344853px;}
.y512{bottom:206.765617px;}
.y6{bottom:206.774408px;}
.yfd{bottom:206.777348px;}
.yd7{bottom:207.633908px;}
.y405{bottom:207.902347px;}
.y4cd{bottom:208.664062px;}
.y1b8{bottom:209.355473px;}
.y2b2{bottom:212.015617px;}
.y3eb{bottom:213.292973px;}
.y445{bottom:214.687492px;}
.y66{bottom:214.835455px;}
.yda{bottom:219.191890px;}
.y213{bottom:220.054687px;}
.y39{bottom:220.527473px;}
.y4f1{bottom:220.710938px;}
.y4b4{bottom:223.921867px;}
.y29{bottom:224.885378px;}
.ybe{bottom:225.823238px;}
.y376{bottom:225.867187px;}
.y277{bottom:226.265617px;}
.y3a6{bottom:226.453117px;}
.y41b{bottom:227.249992px;}
.y113{bottom:227.472652px;}
.y3d1{bottom:228.656242px;}
.y1db{bottom:229.283198px;}
.y19b{bottom:230.056642px;}
.y2a2{bottom:231.210938px;}
.y491{bottom:231.890617px;}
.yc7{bottom:232.082515px;}
.y42{bottom:232.083985px;}
.y28f{bottom:232.253903px;}
.y3b4{bottom:232.476563px;}
.y4a8{bottom:233.156242px;}
.y479{bottom:235.839847px;}
.ya3{bottom:237.774533px;}
.y65{bottom:237.776003px;}
.ycf{bottom:237.820312px;}
.y45{bottom:237.821783px;}
.y190{bottom:237.826178px;}
.y3c2{bottom:237.890617px;}
.y2c9{bottom:239.765617px;}
.y1b7{bottom:240.410152px;}
.yd9{bottom:242.130983px;}
.y264{bottom:242.542973px;}
.y1c6{bottom:242.917973px;}
.y2b1{bottom:243.058598px;}
.y38b{bottom:244.687492px;}
.y2da{bottom:244.921867px;}
.y2e4{bottom:245.976563px;}
.y232{bottom:246.890617px;}
.y428{bottom:248.109367px;}
.y4af{bottom:249.164062px;}
.y3ea{bottom:249.304687px;}
.y41{bottom:249.332515px;}
.y49d{bottom:249.656242px;}
.y444{bottom:250.687492px;}
.y212{bottom:251.109367px;}
.y430{bottom:251.484367px;}
.ydc{bottom:253.686040px;}
.y5f{bottom:255.024533px;}
.y325{bottom:255.210938px;}
.y28{bottom:255.932737px;}
.y45a{bottom:256.453117px;}
.y4f0{bottom:256.722652px;}
.ybd{bottom:256.869142px;}
.y276{bottom:257.296867px;}
.y35f{bottom:257.507812px;}
.y34d{bottom:258.445312px;}
.y506{bottom:258.515617px;}
.y112{bottom:258.521483px;}
.y4b3{bottom:259.921868px;}
.y4df{bottom:259.945312px;}
.y1da{bottom:260.332028px;}
.y19a{bottom:261.105473px;}
.y466{bottom:261.867187px;}
.y375{bottom:261.878902px;}
.y2a1{bottom:262.265617px;}
.y3a5{bottom:262.476563px;}
.y41a{bottom:263.261722px;}
.y28e{bottom:263.308598px;}
.y3d0{bottom:264.667973px;}
.y78{bottom:266.581060px;}
.yc9{bottom:266.582515px;}
.y48e{bottom:266.929688px;}
.y247{bottom:267.749992px;}
.y3fb{bottom:267.820312px;}
.y490{bottom:267.902347px;}
.y3b3{bottom:268.476563px;}
.y44{bottom:268.869142px;}
.y511{bottom:268.874992px;}
.y4a7{bottom:269.167973px;}
.y2f1{bottom:269.976563px;}
.y2c8{bottom:270.796867px;}
.y1c1{bottom:271.371098px;}
.y1b6{bottom:271.453117px;}
.y478{bottom:271.839847px;}
.y40{bottom:272.273078px;}
.ye0{bottom:272.274533px;}
.y263{bottom:273.585938px;}
.y404{bottom:273.914062px;}
.y142{bottom:273.960938px;}
.y1c5{bottom:273.966803px;}
.y2b0{bottom:274.101563px;}
.y303{bottom:275.156242px;}
.y36a{bottom:275.835938px;}
.y2d9{bottom:275.976563px;}
.ydb{bottom:276.628058px;}
.y45f{bottom:276.855461px;}
.y2e3{bottom:277.031242px;}
.y231{bottom:277.939447px;}
.y1e7{bottom:278.097652px;}
.y38a{bottom:280.699223px;}
.y211{bottom:282.152347px;}
.y489{bottom:282.632812px;}
.y62{bottom:283.829590px;}
.y427{bottom:284.132812px;}
.y4ae{bottom:285.164062px;}
.y3e9{bottom:285.328117px;}
.y452{bottom:285.679688px;}
.y443{bottom:286.710938px;}
.y27{bottom:286.980098px;}
.y39a{bottom:287.507812px;}
.ybc{bottom:287.917973px;}
.yde{bottom:288.186040px;}
.y153{bottom:288.445312px;}
.y67{bottom:289.521608px;}
.y505{bottom:289.558598px;}
.y134{bottom:289.570312px;}
.y324{bottom:291.234367px;}
.y199{bottom:292.148438px;}
.y459{bottom:292.476563px;}
.y2f6{bottom:293.296867px;}
.y35e{bottom:293.519528px;}
.y28d{bottom:294.351563px;}
.y34c{bottom:294.457028px;}
.y4de{bottom:295.945312px;}
.y465{bottom:297.890617px;}
.y339{bottom:297.902347px;}
.y23a{bottom:298.792973px;}
.y182{bottom:299.759768px;}
.y241{bottom:299.906242px;}
.y1c7{bottom:299.912108px;}
.y43{bottom:299.916503px;}
.ya0{bottom:299.917973px;}
.y48d{bottom:300.855461px;}
.y2f0{bottom:301.031242px;}
.yc8{bottom:301.076665px;}
.y7a{bottom:301.078120px;}
.y12e{bottom:301.382812px;}
.y1c0{bottom:302.425777px;}
.y3fa{bottom:303.843742px;}
.y3c1{bottom:303.914062px;}
.y228{bottom:303.972652px;}
.y262{bottom:304.640617px;}
.y141{bottom:305.009768px;}
.y4a6{bottom:305.179688px;}
.y45e{bottom:306.082031px;}
.y302{bottom:306.210938px;}
.y61{bottom:306.770138px;}
.y477{bottom:307.851563px;}
.y2e2{bottom:308.074223px;}
.y4b2{bottom:308.964848px;}
.y230{bottom:308.982428px;}
.y1e6{bottom:309.140617px;}
.y403{bottom:309.925777px;}
.ydd{bottom:311.125118px;}
.y369{bottom:311.847652px;}
.yfb{bottom:312.322267px;}
.y1d9{bottom:315.568361px;}
.y389{bottom:316.710938px;}
.y26{bottom:318.027472px;}
.y64{bottom:318.326665px;}
.y275{bottom:318.351563px;}
.y488{bottom:318.656242px;}
.y152{bottom:319.494142px;}
.y426{bottom:320.144528px;}
.y111{bottom:320.613278px;}
.y504{bottom:320.624992px;}
.y4ad{bottom:321.187492px;}
.y451{bottom:321.691403px;}
.y442{bottom:322.734367px;}
.y198{bottom:323.203117px;}
.y2a0{bottom:323.308598px;}
.y399{bottom:323.519528px;}
.y79{bottom:324.018683px;}
.y2f5{bottom:324.351563px;}
.y28c{bottom:325.406242px;}
.y171{bottom:325.570312px;}
.y323{bottom:327.246098px;}
.y374{bottom:327.890617px;}
.y3ee{bottom:328.476563px;}
.y3a4{bottom:328.488278px;}
.y458{bottom:328.499992px;}
.y419{bottom:329.273438px;}
.y35d{bottom:329.531242px;}
.y239{bottom:329.835938px;}
.y48c{bottom:330.070316px;}
.y3cf{bottom:330.679688px;}
.y181{bottom:330.808598px;}
.y164{bottom:330.960938px;}
.y5{bottom:330.963863px;}
.y510{bottom:330.972652px;}
.y2c7{bottom:331.851563px;}
.y4dd{bottom:331.957028px;}
.y2ef{bottom:332.074223px;}
.y12d{bottom:332.431642px;}
.y1bf{bottom:333.468742px;}
.y1b5{bottom:333.550778px;}
.y338{bottom:333.914062px;}
.y3b2{bottom:334.499992px;}
.y227{bottom:335.015617px;}
.y2af{bottom:335.156242px;}
.y7e{bottom:335.575195px;}
.yce{bottom:335.576665px;}
.y261{bottom:335.683598px;}
.y1c4{bottom:336.058598px;}
.y2d8{bottom:337.031242px;}
.y301{bottom:337.242188px;}
.y3f9{bottom:339.855473px;}
.y48f{bottom:339.914062px;}
.y3c0{bottom:339.925777px;}
.y1e5{bottom:340.195312px;}
.y63{bottom:341.267213px;}
.yca{bottom:341.268683px;}
.y1d8{bottom:341.308598px;}
.y4b1{bottom:342.878906px;}
.yfa{bottom:343.371098px;}
.y210{bottom:344.244142px;}
.y402{bottom:345.937492px;}
.y368{bottom:347.859367px;}
.y25{bottom:349.074832px;}
.y274{bottom:349.394528px;}
.ybb{bottom:350.012693px;}
.y151{bottom:350.542973px;}
.y3e8{bottom:351.339847px;}
.y503{bottom:351.656242px;}
.y110{bottom:351.662108px;}
.y388{bottom:352.734367px;}
.y7d{bottom:352.823725px;}
.y4a5{bottom:354.210938px;}
.y197{bottom:354.246098px;}
.y29f{bottom:354.351563px;}
.y487{bottom:354.667973px;}
.y2f4{bottom:355.394528px;}
.y170{bottom:356.619142px;}
.y450{bottom:357.691403px;}
.y8a{bottom:358.515743px;}
.y76{bottom:358.546867px;}
.y4ef{bottom:358.746098px;}
.y398{bottom:359.531242px;}
.y34b{bottom:360.468742px;}
.y1fb{bottom:360.890617px;}
.y180{bottom:361.851563px;}
.y15f{bottom:361.933598px;}
.y9f{bottom:362.009768px;}
.y4{bottom:362.011238px;}
.y18f{bottom:362.015617px;}
.y2c6{bottom:362.894528px;}
.y12c{bottom:363.480473px;}
.y373{bottom:363.914062px;}
.y30f{bottom:363.949223px;}
.y3a3{bottom:364.499992px;}
.y1be{bottom:364.523438px;}
.y1b4{bottom:364.599607px;}
.y418{bottom:365.296867px;}
.y35c{bottom:365.554687px;}
.y226{bottom:366.070312px;}
.y2ae{bottom:366.199223px;}
.y3ce{bottom:366.691403px;}
.y260{bottom:366.738278px;}
.y140{bottom:367.101563px;}
.y2d7{bottom:368.074223px;}
.y2e1{bottom:369.117187px;}
.y337{bottom:369.925777px;}
.ye1{bottom:370.070800px;}
.y7c{bottom:370.072270px;}
.y3b1{bottom:370.511722px;}
.y5e{bottom:370.709468px;}
.y22f{bottom:371.074223px;}
.y4b0{bottom:372.105461px;}
.y1d7{bottom:372.363278px;}
.y476{bottom:373.874992px;}
.yf9{bottom:374.416988px;}
.y20f{bottom:375.292973px;}
.ycb{bottom:375.762818px;}
.y3f8{bottom:375.867187px;}
.y3bf{bottom:375.937492px;}
.y3ed{bottom:378.890621px;}
.y97{bottom:379.406242px;}
.y273{bottom:380.449223px;}
.yba{bottom:381.058598px;}
.y150{bottom:381.585938px;}
.y401{bottom:381.960938px;}
.y10f{bottom:382.710938px;}
.y367{bottom:383.871098px;}
.y163{bottom:385.078121px;}
.y196{bottom:385.300778px;}
.y29e{bottom:385.394528px;}
.y425{bottom:386.156242px;}
.y4c8{bottom:386.203117px;}
.y28b{bottom:386.449223px;}
.y4ac{bottom:387.210938px;}
.y88{bottom:387.320800px;}
.y3e7{bottom:387.351563px;}
.y16f{bottom:387.667973px;}
.y387{bottom:388.746098px;}
.y441{bottom:388.757812px;}
.y75{bottom:389.592773px;}
.y486{bottom:390.679688px;}
.y1fa{bottom:391.933598px;}
.y15e{bottom:392.976563px;}
.y7b{bottom:393.012818px;}
.y34{bottom:393.058598px;}
.y518{bottom:393.070312px;}
.y2ee{bottom:393.117187px;}
.y322{bottom:393.257812px;}
.y44f{bottom:393.703117px;}
.y2c5{bottom:393.949223px;}
.y4a2{bottom:394.499993px;}
.y12b{bottom:394.523438px;}
.y4ee{bottom:394.757812px;}
.y30e{bottom:394.992188px;}
.y397{bottom:395.542973px;}
.y1b3{bottom:395.642573px;}
.y34a{bottom:396.492188px;}
.y225{bottom:397.113278px;}
.y2ad{bottom:397.253903px;}
.y25f{bottom:397.781242px;}
.y4dc{bottom:397.980473px;}
.y13f{bottom:398.150393px;}
.y1c3{bottom:398.156242px;}
.y300{bottom:398.296867px;}
.y2d6{bottom:399.117187px;}
.y372{bottom:399.925777px;}
.y464{bottom:399.937492px;}
.y2e0{bottom:400.171867px;}
.y457{bottom:400.511722px;}
.y417{bottom:401.296867px;}
.y5d{bottom:401.756842px;}
.y22e{bottom:402.128902px;}
.y1e4{bottom:402.287107px;}
.y3cd{bottom:402.703117px;}
.y1d6{bottom:403.412108px;}
.y82{bottom:404.569330px;}
.ycc{bottom:404.570800px;}
.yf8{bottom:405.462892px;}
.y336{bottom:405.937492px;}
.y20e{bottom:406.335938px;}
.y3b0{bottom:406.535152px;}
.y3ec{bottom:408.105461px;}
.y475{bottom:409.898438px;}
.y4a4{bottom:409.945316px;}
.y87{bottom:410.261348px;}
.ye2{bottom:410.262818px;}
.y96{bottom:410.455073px;}
.y24{bottom:411.169552px;}
.y272{bottom:411.492188px;}
.y3be{bottom:411.960938px;}
.yb9{bottom:412.107428px;}
.y14f{bottom:412.634767px;}
.y133{bottom:413.753903px;}
.y502{bottom:413.765617px;}
.y195{bottom:416.343742px;}
.y29d{bottom:416.449223px;}
.y28a{bottom:417.492188px;}
.y400{bottom:417.960938px;}
.y16e{bottom:418.710938px;}
.y4cc{bottom:418.734367px;}
.y74{bottom:420.641603px;}
.y162{bottom:421.306646px;}
.y81{bottom:421.817875px;}
.y424{bottom:422.167973px;}
.y4c7{bottom:422.226563px;}
.y1f9{bottom:422.988278px;}
.y3e6{bottom:423.363278px;}
.y17f{bottom:423.949223px;}
.y15d{bottom:424.025392px;}
.y18e{bottom:424.101563px;}
.y33{bottom:424.105957px;}
.y9e{bottom:424.107428px;}
.y2ed{bottom:424.171867px;}
.y386{bottom:424.757812px;}
.y2c4{bottom:424.992188px;}
.y12a{bottom:425.572267px;}
.y30d{bottom:426.046867px;}
.y1bd{bottom:426.398441px;}
.y1b2{bottom:426.691403px;}
.y485{bottom:426.703117px;}
.y8b{bottom:427.509893px;}
.y224{bottom:428.162108px;}
.y25e{bottom:428.835938px;}
.y13e{bottom:429.199223px;}
.y321{bottom:429.281242px;}
.y2ff{bottom:429.339847px;}
.y48b{bottom:429.914062px;}
.y2d5{bottom:430.171867px;}
.y3a2{bottom:430.523438px;}
.y4ed{bottom:430.781242px;}
.y2df{bottom:431.214848px;}
.y35b{bottom:431.566402px;}
.y349{bottom:432.503903px;}
.y5c{bottom:432.804202px;}
.y22d{bottom:433.171867px;}
.y1e3{bottom:433.330073px;}
.y4db{bottom:433.992188px;}
.y1d5{bottom:434.455073px;}
.y371{bottom:435.937492px;}
.y463{bottom:435.949223px;}
.yf7{bottom:436.511722px;}
.y4e6{bottom:436.523438px;}
.y20d{bottom:437.390617px;}
.y3cc{bottom:438.726563px;}
.y4ab{bottom:438.984376px;}
.ycd{bottom:439.064935px;}
.y80{bottom:439.066405px;}
.y4a3{bottom:439.160156px;}
.y3f7{bottom:441.878902px;}
.y45d{bottom:441.960938px;}
.y271{bottom:442.546867px;}
.yb8{bottom:443.153318px;}
.ye3{bottom:444.756953px;}
.y10e{bottom:444.802733px;}
.y501{bottom:444.808598px;}
.y4a1{bottom:444.902336px;}
.y474{bottom:445.921867px;}
.y161{bottom:447.175781px;}
.y194{bottom:447.392573px;}
.y29c{bottom:447.492188px;}
.y3bd{bottom:447.972652px;}
.y16d{bottom:449.759768px;}
.y366{bottom:449.882812px;}
.y73{bottom:451.687492px;}
.y1f8{bottom:454.031242px;}
.y4cb{bottom:454.757812px;}
.y17e{bottom:454.992188px;}
.y517{bottom:455.132812px;}
.y50f{bottom:455.144528px;}
.y32{bottom:455.153318px;}
.yfc{bottom:455.156242px;}
.y2ec{bottom:455.214848px;}
.y89{bottom:456.314935px;}
.y129{bottom:456.621098px;}
.y1b1{bottom:457.734367px;}
.y423{bottom:458.179688px;}
.y4c6{bottom:458.238278px;}
.y2ac{bottom:458.296867px;}
.y223{bottom:459.205073px;}
.y3e5{bottom:459.374992px;}
.y44e{bottom:459.726563px;}
.y25d{bottom:459.867187px;}
.y13d{bottom:460.248053px;}
.y1c2{bottom:460.253903px;}
.y2fe{bottom:460.394528px;}
.y440{bottom:460.769528px;}
.y2d4{bottom:461.214848px;}
.y396{bottom:461.554687px;}
.y7f{bottom:462.006953px;}
.y5b{bottom:463.851563px;}
.y22c{bottom:464.226563px;}
.y1e2{bottom:464.378902px;}
.y320{bottom:465.281242px;}
.y48a{bottom:465.937492px;}
.y456{bottom:466.523438px;}
.y3a1{bottom:466.535152px;}
.y416{bottom:467.320312px;}
.y35a{bottom:467.578117px;}
.y348{bottom:468.515617px;}
.y4da{bottom:470.015617px;}
.y462{bottom:471.949223px;}
.y335{bottom:471.960938px;}
.y4aa{bottom:472.382806px;}
.y4e5{bottom:472.546867px;}
.y95{bottom:472.549807px;}
.y23{bottom:473.264287px;}
.ye4{bottom:473.564935px;}
.y4a0{bottom:474.128906px;}
.yb7{bottom:474.202148px;}
.y14e{bottom:474.732428px;}
.y3cb{bottom:474.738278px;}
.y10d{bottom:475.851563px;}
.y3f6{bottom:477.902347px;}
.y45c{bottom:477.984367px;}
.y29b{bottom:478.535153px;}
.y289{bottom:478.546867px;}
.y83{bottom:479.255498px;}
.y16c{bottom:480.808598px;}
.y473{bottom:481.921867px;}
.y72{bottom:482.736322px;}
.y160{bottom:483.398441px;}
.y15c{bottom:483.533198px;}
.y3bc{bottom:483.984367px;}
.y1f7{bottom:485.080073px;}
.y24b{bottom:485.085938px;}
.y365{bottom:485.906242px;}
.y2c3{bottom:486.035152px;}
.y17d{bottom:486.041018px;}
.y9d{bottom:486.199222px;}
.y3{bottom:486.200677px;}
.y18d{bottom:486.205072px;}
.y240{bottom:486.210938px;}
.y30c{bottom:487.078118px;}
.y128{bottom:487.669928px;}
.y1b0{bottom:488.789063px;}
.y2ab{bottom:489.339848px;}
.y222{bottom:490.253902px;}
.y385{bottom:490.781242px;}
.y85{bottom:490.812010px;}
.y13c{bottom:491.296867px;}
.y2d3{bottom:492.257812px;}
.y484{bottom:492.703118px;}
.y422{bottom:494.203118px;}
.y4c5{bottom:494.249992px;}
.y5a{bottom:494.898922px;}
.y1e1{bottom:495.421867px;}
.y44d{bottom:495.749992px;}
.y1d4{bottom:496.546867px;}
.y43f{bottom:496.781242px;}
.y395{bottom:497.578118px;}
.yf6{bottom:498.606442px;}
.y20c{bottom:499.488277px;}
.y31f{bottom:501.304688px;}
.y3d6{bottom:501.960938px;}
.y3a0{bottom:502.546867px;}
.y415{bottom:503.332027px;}
.y270{bottom:503.589848px;}
.y94{bottom:503.595698px;}
.y22{bottom:504.311648px;}
.yb6{bottom:505.248052px;}
.y14d{bottom:505.781242px;}
.y500{bottom:506.894527px;}
.y10c{bottom:506.900392px;}
.y334{bottom:507.960938px;}
.y3af{bottom:508.570312px;}
.y193{bottom:509.273441px;}
.y288{bottom:509.578118px;}
.y84{bottom:513.752558px;}
.y71{bottom:513.782228px;}
.y3f5{bottom:513.914062px;}
.y16b{bottom:514.278800px;}
.y15b{bottom:514.582027px;}
.yec{bottom:515.888678px;}
.y246{bottom:516.117188px;}
.y1f6{bottom:516.123052px;}
.y2eb{bottom:516.257812px;}
.y455{bottom:516.949211px;}
.y2c2{bottom:517.089848px;}
.y23f{bottom:517.242188px;}
.y31{bottom:517.248052px;}
.y472{bottom:517.933598px;}
.y30b{bottom:518.132812px;}
.y22b{bottom:519.468746px;}
.y1af{bottom:519.832027px;}
.y3ff{bottom:519.996098px;}
.y2aa{bottom:520.394527px;}
.y25c{bottom:520.921867px;}
.y2fd{bottom:521.437492px;}
.y364{bottom:521.929688px;}
.y13b{bottom:522.339848px;}
.y2de{bottom:523.312492px;}
.y3e4{bottom:525.398438px;}
.y59{bottom:525.946283px;}
.y1e0{bottom:526.476562px;}
.y384{bottom:526.792973px;}
.y1d3{bottom:527.601562px;}
.y483{bottom:528.726562px;}
.yf5{bottom:529.652348px;}
.y421{bottom:530.214848px;}
.y20b{bottom:530.531242px;}
.y44c{bottom:531.749992px;}
.y43e{bottom:532.804688px;}
.y29a{bottom:533.589848px;}
.y394{bottom:533.601562px;}
.y347{bottom:534.539063px;}
.y26f{bottom:534.632812px;}
.y93{bottom:534.644527px;}
.y21{bottom:535.359007px;}
.y4d9{bottom:536.015618px;}
.yb5{bottom:536.296867px;}
.y14c{bottom:536.824223px;}
.y4ff{bottom:537.937492px;}
.y169{bottom:537.949222px;}
.y3d5{bottom:537.972652px;}
.y49b{bottom:538.546867px;}
.y39f{bottom:538.558598px;}
.y414{bottom:539.355473px;}
.y359{bottom:539.601562px;}
.y132{bottom:540.322271px;}
.y287{bottom:540.632812px;}
.y3ca{bottom:540.749993px;}
.y333{bottom:543.984367px;}
.y3ae{bottom:544.570312px;}
.y70{bottom:544.831058px;}
.y192{bottom:545.490236px;}
.y15a{bottom:545.624992px;}
.y454{bottom:546.152336px;}
.yeb{bottom:546.937492px;}
.y1f5{bottom:547.171867px;}
.y2ea{bottom:547.312492px;}
.y2c1{bottom:548.132812px;}
.y18c{bottom:548.291018px;}
.y3e{bottom:548.295412px;}
.y9c{bottom:548.296867px;}
.y30a{bottom:549.187492px;}
.y127{bottom:549.761723px;}
.y3f4{bottom:549.925777px;}
.y3bb{bottom:550.007812px;}
.y16a{bottom:550.587896px;}
.y1ae{bottom:550.886723px;}
.y2a9{bottom:551.437492px;}
.y25b{bottom:551.976562px;}
.y221{bottom:552.351562px;}
.y2fc{bottom:552.480473px;}
.y2d2{bottom:553.312492px;}
.y13a{bottom:553.388678px;}
.y471{bottom:553.945312px;}
.y2dd{bottom:554.355473px;}
.y22a{bottom:555.685541px;}
.y58{bottom:556.993658px;}
.y363{bottom:557.929688px;}
.y1d2{bottom:558.644527px;}
.y4c4{bottom:560.261723px;}
.yf4{bottom:560.701178px;}
.y3e3{bottom:561.410152px;}
.y20a{bottom:561.580073px;}
.y383{bottom:562.804688px;}
.y299{bottom:564.632812px;}
.y482{bottom:564.749992px;}
.y26e{bottom:565.687492px;}
.y92{bottom:565.690432px;}
.y420{bottom:566.226562px;}
.y20{bottom:566.406367px;}
.y31e{bottom:567.316402px;}
.yb4{bottom:567.342773px;}
.y44b{bottom:567.773438px;}
.y14b{bottom:567.873052px;}
.y4ec{bottom:568.828118px;}
.y10b{bottom:568.992188px;}
.y393{bottom:569.601562px;}
.y346{bottom:570.539063px;}
.y317{bottom:571.687492px;}
.y4d8{bottom:572.039063px;}
.y3d4{bottom:573.984367px;}
.y17c{bottom:574.089848px;}
.y49a{bottom:574.570312px;}
.y39e{bottom:574.582027px;}
.y413{bottom:575.367188px;}
.y358{bottom:575.624992px;}
.y6f{bottom:575.876948px;}
.y131{bottom:576.539066px;}
.y159{bottom:576.673822px;}
.yea{bottom:577.986322px;}
.y1f4{bottom:578.214848px;}
.y2e9{bottom:578.355473px;}
.y2c0{bottom:579.187492px;}
.y116{bottom:579.339848px;}
.y2{bottom:579.342773px;}
.y50e{bottom:579.351562px;}
.y332{bottom:580.007812px;}
.y309{bottom:580.230473px;}
.y3ad{bottom:580.593742px;}
.y126{bottom:580.810552px;}
.y1ad{bottom:581.929688px;}
.y2a8{bottom:582.480473px;}
.y25a{bottom:583.019527px;}
.y220{bottom:583.394527px;}
.y2fb{bottom:583.535152px;}
.y1df{bottom:584.085931px;}
.y2d1{bottom:584.367188px;}
.y2dc{bottom:585.410152px;}
.y3ba{bottom:586.007812px;}
.y57{bottom:588.041018px;}
.y1d1{bottom:589.687492px;}
.y470{bottom:589.968742px;}
.y3c9{bottom:591.164066px;}
.yf3{bottom:591.749992px;}
.y209{bottom:592.623052px;}
.y362{bottom:593.953118px;}
.y298{bottom:595.687492px;}
.y4c3{bottom:596.273438px;}
.y91{bottom:596.739262px;}
.y3e2{bottom:597.433598px;}
.yb3{bottom:598.391602px;}
.y382{bottom:598.816402px;}
.y43d{bottom:598.828118px;}
.y14a{bottom:598.921867px;}
.y10a{bottom:600.041018px;}
.y4fe{bottom:600.046867px;}
.y481{bottom:600.761723px;}
.y286{bottom:601.687492px;}
.y41f{bottom:602.249992px;}
.y184{bottom:602.414066px;}
.y31d{bottom:603.339848px;}
.y44a{bottom:603.785152px;}
.y4eb{bottom:604.839848px;}
.y17b{bottom:605.132812px;}
.y392{bottom:605.624992px;}
.y345{bottom:606.562492px;}
.y6e{bottom:606.925777px;}
.y158{bottom:607.722652px;}
.y4d7{bottom:608.062492px;}
.ye9{bottom:609.032228px;}
.y236{bottom:609.269527px;}
.y2e8{bottom:609.398438px;}
.y370{bottom:609.996098px;}
.y461{bottom:610.007812px;}
.y2bf{bottom:610.230473px;}
.y516{bottom:610.382812px;}
.y9b{bottom:610.388678px;}
.y1{bottom:610.390133px;}
.y18b{bottom:610.394527px;}
.y4e4{bottom:610.593742px;}
.y412{bottom:611.378902px;}
.y125{bottom:611.859367px;}
.y1ac{bottom:612.978517px;}
.y2a7{bottom:613.535152px;}
.y259{bottom:614.062492px;}
.y21f{bottom:614.449222px;}
.y2fa{bottom:614.578118px;}
.y2d0{bottom:615.398438px;}
.y139{bottom:615.480473px;}
.y3f3{bottom:615.949223px;}
.y331{bottom:616.019527px;}
.y56{bottom:619.088377px;}
.y3c8{bottom:620.378906px;}
.y3b9{bottom:622.031242px;}
.yf2{bottom:622.795898px;}
.y1de{bottom:625.482421px;}
.y46f{bottom:625.992188px;}
.y26d{bottom:626.730473px;}
.y90{bottom:627.785152px;}
.y1f{bottom:628.501103px;}
.y4ca{bottom:628.816402px;}
.yb2{bottom:629.437492px;}
.y149{bottom:629.964848px;}
.y4fd{bottom:631.078118px;}
.y109{bottom:631.089848px;}
.y4c2{bottom:632.296867px;}
.y285{bottom:632.730473px;}
.y43c{bottom:634.828118px;}
.y381{bottom:634.839848px;}
.y17a{bottom:636.181642px;}
.y2f3{bottom:636.609371px;}
.y480{bottom:636.761723px;}
.y183{bottom:638.636711px;}
.y157{bottom:638.771482px;}
.y31c{bottom:639.351562px;}
.ye8{bottom:640.078118px;}
.y1f3{bottom:640.312492px;}
.y2e7{bottom:640.453118px;}
.y39d{bottom:640.593743px;}
.y4ea{bottom:640.851562px;}
.y2be{bottom:641.273438px;}
.y30{bottom:641.437492px;}
.y357{bottom:641.636723px;}
.y124{bottom:642.902348px;}
.y1ab{bottom:644.021482px;}
.y4d6{bottom:644.074223px;}
.y258{bottom:645.117188px;}
.y21e{bottom:645.492188px;}
.y453{bottom:646.007812px;}
.y36f{bottom:646.019527px;}
.y2cf{bottom:646.453118px;}
.y138{bottom:646.529303px;}
.y229{bottom:646.535152px;}
.y4e3{bottom:646.605473px;}
.y1d0{bottom:651.791018px;}
.y330{bottom:652.031242px;}
.y3ac{bottom:653.435892px;}
.yf1{bottom:653.841803px;}
.y208{bottom:654.714848px;}
.y26c{bottom:657.773438px;}
.y3fe{bottom:658.054688px;}
.y8f{bottom:658.833982px;}
.y1e{bottom:659.548463px;}
.y108{bottom:662.132812px;}
.y4fc{bottom:662.144527px;}
.y3e1{bottom:663.445312px;}
.y284{bottom:663.773438px;}
.y24a{bottom:664.511711px;}
.y4c9{bottom:664.828118px;}
.y3f2{bottom:666.363281px;}
.y179{bottom:667.230473px;}
.y297{bottom:667.652336px;}
.y41e{bottom:668.261723px;}
.y4c1{bottom:668.320312px;}
.y6d{bottom:669.020512px;}
.y49c{bottom:669.796868px;}
.y43b{bottom:670.851562px;}
.y1f2{bottom:671.367188px;}
.y391{bottom:671.636723px;}
.y308{bottom:672.328118px;}
.y1bc{bottom:672.480473px;}
.y2f{bottom:672.484868px;}
.y9a{bottom:672.486322px;}
.y515{bottom:672.492188px;}
.y344{bottom:672.574223px;}
.y47f{bottom:672.773438px;}
.y2f2{bottom:672.832031px;}
.y2a6{bottom:674.578118px;}
.y156{bottom:674.819572px;}
.y1aa{bottom:675.070312px;}
.y31b{bottom:675.363277px;}
.y2f9{bottom:675.632812px;}
.y3d3{bottom:676.007812px;}
.y257{bottom:676.160152px;}
.y21d{bottom:676.541018px;}
.y499{bottom:676.617188px;}
.y449{bottom:676.627287px;}
.y411{bottom:677.390618px;}
.y2ce{bottom:677.496098px;}
.y137{bottom:677.578118px;}
.y356{bottom:677.660152px;}
.y86{bottom:679.315288px;}
.y55{bottom:681.183112px;}
.y36e{bottom:682.031242px;}
.y1cf{bottom:682.833982px;}
.yf0{bottom:684.890618px;}
.y207{bottom:685.769527px;}
.y3b8{bottom:688.042973px;}
.y47a{bottom:688.054688px;}
.y26b{bottom:688.828118px;}
.y8e{bottom:689.879887px;}
.y1d{bottom:690.595822px;}
.y39c{bottom:690.996086px;}
.yb1{bottom:691.532228px;}
.y148{bottom:692.062492px;}
.y107{bottom:693.181642px;}
.y4fb{bottom:693.187492px;}
.y3fd{bottom:694.054688px;}
.y316{bottom:694.828118px;}
.y3f1{bottom:695.566406px;}
.y3ab{bottom:697.019531px;}
.y178{bottom:698.273438px;}
.y46e{bottom:698.822607px;}
.y3e0{bottom:699.457028px;}
.y6c{bottom:700.066402px;}
.y155{bottom:700.652336px;}
.y249{bottom:700.734371px;}
.y380{bottom:700.851562px;}
.y2e6{bottom:701.507812px;}
.ye7{bottom:702.175777px;}
.y2bd{bottom:702.328118px;}
.y1f1{bottom:702.410152px;}
.y361{bottom:702.806982px;}
.y307{bottom:703.371098px;}
.y50d{bottom:703.523438px;}
.y2e{bottom:703.532228px;}
.y115{bottom:703.535152px;}
.y296{bottom:703.863281px;}
.y4c0{bottom:704.332027px;}
.y123{bottom:704.999992px;}
.y2a5{bottom:705.621098px;}
.y2f8{bottom:706.664062px;}
.y256{bottom:707.203118px;}
.y21c{bottom:707.583982px;}
.y390{bottom:707.648438px;}
.y2cd{bottom:708.550777px;}
.y343{bottom:708.597652px;}
.y136{bottom:708.626948px;}
.y4d5{bottom:710.085938px;}
.y31a{bottom:711.374992px;}
.y3d2{bottom:712.031242px;}
.y54{bottom:712.230473px;}
.y4e2{bottom:712.617188px;}
.y498{bottom:712.628902px;}
.y410{bottom:713.414062px;}
.y355{bottom:713.671867px;}
.y4e9{bottom:713.705412px;}
.y1ce{bottom:713.876948px;}
.yef{bottom:715.939448px;}
.y206{bottom:716.812492px;}
.y32f{bottom:718.042973px;}
.y41d{bottom:720.046876px;}
.y39b{bottom:720.222656px;}
.yb0{bottom:722.581058px;}
.y147{bottom:723.111322px;}
.y4b6{bottom:724.054688px;}
.y3b7{bottom:724.066402px;}
.y168{bottom:724.230473px;}
.y283{bottom:724.828118px;}
.y315{bottom:725.871098px;}
.y3aa{bottom:726.222656px;}
.y3c7{bottom:730.078118px;}
.y6b{bottom:731.115233px;}
.ye6{bottom:733.221683px;}
.y2bc{bottom:733.371098px;}
.y245{bottom:733.453118px;}
.y1f0{bottom:733.458982px;}
.y99{bottom:734.578118px;}
.y3d{bottom:734.579588px;}
.y18a{bottom:734.583982px;}
.y8d{bottom:735.303221px;}
.y3df{bottom:735.468742px;}
.y122{bottom:736.048822px;}
.y2a4{bottom:736.675777px;}
.y37f{bottom:736.863277px;}
.y43a{bottom:736.874992px;}
.y154{bottom:736.874996px;}
.y1a9{bottom:737.167973px;}
.y2f7{bottom:737.718742px;}
.y255{bottom:738.257812px;}
.y2cc{bottom:739.593742px;}
.y135{bottom:739.675777px;}
.y46d{bottom:742.394531px;}
.y53{bottom:743.277833px;}
.y38f{bottom:743.671867px;}
.y342{bottom:744.609367px;}
.y1cd{bottom:744.925777px;}
.y47e{bottom:745.627287px;}
.y4d4{bottom:746.097652px;}
.y360{bottom:746.390621px;}
.yee{bottom:746.985352px;}
.y319{bottom:747.398438px;}
.y205{bottom:747.867188px;}
.y36d{bottom:748.054688px;}
.y497{bottom:748.628902px;}
.y40f{bottom:749.425777px;}
.y354{bottom:749.683598px;}
.y26a{bottom:749.882812px;}
.y1c{bottom:752.690558px;}
.y41c{bottom:753.421876px;}
.yaf{bottom:753.626948px;}
.y32e{bottom:754.054688px;}
.y146{bottom:754.160152px;}
.y4fa{bottom:755.273438px;}
.y106{bottom:755.279303px;}
.y282{bottom:755.871098px;}
.y4e8{bottom:757.277336px;}
.y3b6{bottom:760.078118px;}
.y177{bottom:760.371098px;}
.y6a{bottom:762.161137px;}
.y4e1{bottom:763.042961px;}
.y2bb{bottom:764.425777px;}
.y1ef{bottom:764.501948px;}
.y244{bottom:764.507812px;}
.y2e5{bottom:764.917961px;}
.ye5{bottom:765.328119px;}
.y2d{bottom:765.626948px;}
.y23e{bottom:765.632812px;}
.y121{bottom:767.097652px;}
.y295{bottom:767.718742px;}
.y1a8{bottom:768.210938px;}
.y21b{bottom:769.675777px;}
.y4bf{bottom:770.343742px;}
.y3de{bottom:771.492188px;}
.y8c{bottom:771.524411px;}
.y46c{bottom:771.621086px;}
.y37e{bottom:772.874992px;}
.y439{bottom:772.886723px;}
.y52{bottom:774.325192px;}
.y1cc{bottom:775.980473px;}
.yed{bottom:778.031242px;}
.y204{bottom:778.910152px;}
.y42f{bottom:779.683598px;}
.y341{bottom:780.621098px;}
.y4d3{bottom:782.109367px;}
.y1b{bottom:783.737917px;}
.y36c{bottom:784.054688px;}
.y460{bottom:784.066402px;}
.yae{bottom:784.675777px;}
.y145{bottom:785.203118px;}
.y40e{bottom:785.437492px;}
.y4f9{bottom:786.316402px;}
.y105{bottom:786.328118px;}
.y281{bottom:786.925777px;}
.y32d{bottom:790.078118px;}
.y47d{bottom:790.570306px;}
.y269{bottom:790.792961px;}
.y176{bottom:791.419928px;}
.y4e0{bottom:792.234371px;}
.y69{bottom:793.209968px;}
.y2ba{bottom:795.468742px;}
.y235{bottom:795.550777px;}
.y3c6{bottom:796.089848px;}
.y23d{bottom:796.664062px;}
.y189{bottom:796.669928px;}
.y2c{bottom:796.674322px;}
.y98{bottom:796.675777px;}
.y318{bottom:797.800781px;}
.y120{bottom:798.140618px;}
.y294{bottom:798.773438px;}
.y1a7{bottom:799.265618px;}
.y254{bottom:799.300777px;}
.y2cb{bottom:800.636723px;}
.y21a{bottom:800.730473px;}
.y51{bottom:805.372552px;}
.y4be{bottom:806.355473px;}
.y1cb{bottom:807.023438px;}
.y3dd{bottom:807.492188px;}
.y438{bottom:808.886723px;}
.y37d{bottom:808.898438px;}
.y496{bottom:814.652348px;}
.y1a{bottom:814.785278px;}
.yad{bottom:815.721683px;}
.y38e{bottom:816.514017px;}
.y104{bottom:817.371098px;}
.y4f8{bottom:817.382812px;}
.y280{bottom:817.968742px;}
.y4d2{bottom:818.121098px;}
.y36b{bottom:820.078118px;}
.y40d{bottom:821.460938px;}
.y175{bottom:822.468742px;}
.y353{bottom:822.525732px;}
.y47c{bottom:823.968751px;}
.y68{bottom:825.957278px;}
.y3a9{bottom:826.089848px;}
.y45b{bottom:826.101562px;}
.y306{bottom:826.523438px;}
.y1ee{bottom:826.593742px;}
.y268{bottom:827.015621px;}
.y130{bottom:827.718742px;}
.y2b{bottom:827.721683px;}
.y50c{bottom:827.730473px;}
.y514{bottom:827.742188px;}
.y2db{bottom:828.773438px;}
.y11f{bottom:829.189448px;}
.y293{bottom:829.816402px;}
.y1a6{bottom:830.308598px;}
.y253{bottom:830.343742px;}
.y219{bottom:831.773438px;}
.y50{bottom:836.419928px;}
.y144{bottom:840.445316px;}
.y203{bottom:841.001948px;}
.y4bd{bottom:842.367188px;}
.y3dc{bottom:843.515618px;}
.y437{bottom:844.898438px;}
.y37c{bottom:844.910152px;}
.y42e{bottom:845.695312px;}
.y19{bottom:845.832638px;}
.y340{bottom:846.632812px;}
.yac{bottom:846.770512px;}
.y4f7{bottom:848.414062px;}
.y103{bottom:848.419928px;}
.y314{bottom:849.023438px;}
.y495{bottom:850.664062px;}
.y174{bottom:853.511723px;}
.y448{bottom:856.078118px;}
.y32c{bottom:856.089848px;}
.y2b9{bottom:856.511723px;}
.y40c{bottom:857.472652px;}
.y1ed{bottom:857.648438px;}
.y2ca{bottom:858.058586px;}
.yc5{bottom:858.767573px;}
.y10{bottom:858.769043px;}
.y188{bottom:858.773438px;}
.y2a3{bottom:859.816402px;}
.y38d{bottom:860.097656px;}
.y1a5{bottom:861.357428px;}
.y252{bottom:861.398438px;}
.y3a8{bottom:862.101562px;}
.y4a9{bottom:862.113277px;}
.y352{bottom:866.109371px;}
.y4d1{bottom:867.164062px;}
.y4f{bottom:867.467287px;}
.y1ca{bottom:871.494146px;}
.y202{bottom:872.050777px;}
.y46b{bottom:874.910152px;}
.y143{bottom:876.667961px;}
.yab{bottom:877.816402px;}
.y4bc{bottom:878.390617px;}
.y27f{bottom:879.011723px;}
.y102{bottom:879.468742px;}
.y313{bottom:880.054688px;}
.y436{bottom:880.921867px;}
.y42d{bottom:881.718742px;}
.y238{bottom:881.835941px;}
.y11e{bottom:882.058598px;}
.y33f{bottom:882.656242px;}
.y494{bottom:886.675778px;}
.y2b8{bottom:887.566402px;}
.y1ec{bottom:888.691402px;}
.y38c{bottom:889.300781px;}
.y513{bottom:889.804688px;}
.yf{bottom:889.816402px;}
.y292{bottom:890.859367px;}
.y32b{bottom:892.101562px;}
.y1a4{bottom:892.400392px;}
.y40b{bottom:893.484367px;}
.y218{bottom:893.871097px;}
.y351{bottom:895.324211px;}
.y4b5{bottom:898.113277px;}
.y3a7{bottom:898.124992px;}
.y4e{bottom:898.514647px;}
.y4d0{bottom:901.078121px;}
.y201{bottom:903.093742px;}
.y1c9{bottom:907.710941px;}
.y18{bottom:907.927373px;}
.yaa{bottom:908.865232px;}
.y3db{bottom:909.539063px;}
.y27e{bottom:910.066402px;}
.y101{bottom:910.511723px;}
.y4f6{bottom:910.523438px;}
.y46a{bottom:910.921867px;}
.y312{bottom:911.109367px;}
.y11d{bottom:913.101562px;}
.y42c{bottom:917.730473px;}
.y37b{bottom:917.752287px;}
.y173{bottom:917.982416px;}
.y237{bottom:918.058586px;}
.y2b7{bottom:918.609367px;}
.y33e{bottom:918.667973px;}
.y1eb{bottom:919.746098px;}
.y191{bottom:920.859367px;}
.ye{bottom:920.863762px;}
.yc4{bottom:920.865232px;}
.y267{bottom:921.914062px;}
.y251{bottom:922.441402px;}
.y1a3{bottom:923.449223px;}
.y217{bottom:924.919928px;}
.y32a{bottom:928.124992px;}
.y40a{bottom:929.496098px;}
.y4d{bottom:929.562007px;}
.y4cf{bottom:930.292961px;}
.y3fc{bottom:934.136723px;}
.y493{bottom:937.089836px;}
.y17{bottom:938.974733px;}
.ya9{bottom:939.911137px;}
.y27d{bottom:941.109367px;}
.y4f5{bottom:941.566402px;}
.y311{bottom:942.152348px;}
.y11c{bottom:944.150392px;}
.y4bb{bottom:944.390617px;}
.y469{bottom:946.945312px;}
.y2b6{bottom:949.652348px;}
.y234{bottom:950.789062px;}
.y50b{bottom:951.902348px;}
.yd{bottom:951.911137px;}
.y12f{bottom:951.914062px;}
.y266{bottom:952.957027px;}
.y250{bottom:953.496098px;}
.y42b{bottom:953.742188px;}
.y435{bottom:953.764017px;}
.y172{bottom:954.205076px;}
.y1a2{bottom:954.492188px;}
.y33d{bottom:954.679688px;}
.y200{bottom:955.962892px;}
.y3f0{bottom:958.124992px;}
.y4c{bottom:960.609367px;}
.y37a{bottom:961.335941px;}
.y350{bottom:964.136723px;}
.y3da{bottom:965.400733px;}
.y492{bottom:966.316406px;}
.y16{bottom:970.022092px;}
.ya8{bottom:970.959967px;}
.y27c{bottom:972.152348px;}
.y167{bottom:972.609367px;}
.y100{bottom:974.988281px;}
.y11b{bottom:975.199223px;}
.y4ba{bottom:980.414062px;}
.y305{bottom:980.707027px;}
.y1ea{bottom:981.837892px;}
.y243{bottom:981.843742px;}
.yc3{bottom:982.957027px;}
.yc{bottom:982.958498px;}
.y187{bottom:982.962892px;}
.y23c{bottom:982.968742px;}
.y265{bottom:984.011723px;}
.y24f{bottom:984.539062px;}
.y1a1{bottom:985.546867px;}
.y1ff{bottom:987.011723px;}
.y42a{bottom:989.753902px;}
.y33c{bottom:990.691406px;}
.y4b{bottom:991.656742px;}
.y3d9{bottom:992.484374px;}
.y329{bottom:994.136723px;}
.y447{bottom:994.148438px;}
.y409{bottom:995.507813px;}
.y434{bottom:997.347656px;}
.y34f{bottom:1000.148438px;}
.y15{bottom:1001.069458px;}
.ya7{bottom:1002.005859px;}
.y27b{bottom:1003.195313px;}
.y4f4{bottom:1003.652343px;}
.y166{bottom:1003.658203px;}
.y11a{bottom:1006.242188px;}
.y2b5{bottom:1010.707031px;}
.yff{bottom:1011.205077px;}
.y242{bottom:1012.875000px;}
.y1e9{bottom:1012.880859px;}
.y23b{bottom:1014.000000px;}
.yb{bottom:1014.005859px;}
.y291{bottom:1015.054688px;}
.y24e{bottom:1015.593750px;}
.y4b9{bottom:1016.437500px;}
.y1fe{bottom:1018.054688px;}
.y468{bottom:1018.968750px;}
.y328{bottom:1030.148438px;}
.y14{bottom:1032.116822px;}
.ya6{bottom:1033.054688px;}
.y4f3{bottom:1034.695312px;}
.y165{bottom:1034.707030px;}
.y34e{bottom:1036.160155px;}
.y47b{bottom:1036.171875px;}
.y4a{bottom:1037.077880px;}
.y119{bottom:1037.291016px;}
.y33b{bottom:1039.734375px;}
.y304{bottom:1041.750001px;}
.y1e8{bottom:1043.929688px;}
.y186{bottom:1045.048829px;}
.ya{bottom:1045.053222px;}
.yc2{bottom:1045.054688px;}
.y408{bottom:1045.921874px;}
.y290{bottom:1046.109375px;}
.y24d{bottom:1046.625000px;}
.y1a0{bottom:1047.644530px;}
.y1fd{bottom:1049.109375px;}
.y4b8{bottom:1052.437501px;}
.y429{bottom:1055.765626px;}
.y310{bottom:1058.250000px;}
.y27a{bottom:1060.628906px;}
.y13{bottom:1063.164184px;}
.y4f2{bottom:1065.750000px;}
.y433{bottom:1066.160155px;}
.y327{bottom:1066.171875px;}
.y2b4{bottom:1068.128906px;}
.y49{bottom:1073.299805px;}
.y233{bottom:1073.344958px;}
.y407{bottom:1075.136718px;}
.yfe{bottom:1076.097655px;}
.y9{bottom:1076.100586px;}
.y50a{bottom:1076.109375px;}
.y19f{bottom:1078.687500px;}
.y1fc{bottom:1080.152343px;}
.y467{bottom:1084.992188px;}
.y279{bottom:1096.839843px;}
.y118{bottom:1099.171874px;}
.y4b7{bottom:1101.492188px;}
.y326{bottom:1102.171875px;}
.y24c{bottom:1104.351561px;}
.y33a{bottom:1106.179686px;}
.yc1{bottom:1107.146484px;}
.y3c{bottom:1107.147950px;}
.y185{bottom:1107.152343px;}
.y51b{bottom:1107.164062px;}
.y19e{bottom:1109.736329px;}
.y12{bottom:1131.193359px;}
.y117{bottom:1135.394531px;}
.y8{bottom:1138.195312px;}
.ha{height:32.185547px;}
.h7{height:32.273438px;}
.h10{height:35.500782px;}
.hb{height:38.728127px;}
.hf{height:49.042969px;}
.h8{height:53.789061px;}
.h4{height:59.167970px;}
.hc{height:63.351563px;}
.h1{height:63.949219px;}
.h2{height:64.546875px;}
.hd{height:65.332620px;}
.h6{height:66.049807px;}
.h9{height:74.607419px;}
.he{height:76.639747px;}
.h11{height:77.058106px;}
.h12{height:85.265628px;}
.h13{height:87.588281px;}
.h5{height:90.594724px;}
.h3{height:107.625000px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x7{left:108.000000px;}
.x13{left:113.625000px;}
.x10{left:120.375000px;}
.xa{left:135.000000px;}
.xb{left:162.000000px;}
.x3{left:168.111479px;}
.xc{left:189.000000px;}
.x4{left:294.485006px;}
.x6{left:306.618311px;}
.x1{left:320.447903px;}
.x5{left:336.567038px;}
.x2{left:364.476701px;}
.x9{left:400.427179px;}
.xf{left:757.403370px;}
.x11{left:758.628000px;}
.x12{left:759.852630px;}
.xd{left:766.573380px;}
.xe{left:767.798010px;}
.x8{left:775.743390px;}
@media print{
.v3{vertical-align:-24.285938pt;}
.v2{vertical-align:-20.238283pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.v4{vertical-align:25.348125pt;}
.v5{vertical-align:28.333595pt;}
.v6{vertical-align:32.381249pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000002pt;}
.ls7{letter-spacing:0.000030pt;}
.ls1{letter-spacing:14.811951pt;}
.lsc{letter-spacing:16.000000pt;}
.ls5{letter-spacing:16.000020pt;}
.ls9{letter-spacing:20.000000pt;}
.ls8{letter-spacing:24.000000pt;}
.ls4{letter-spacing:27.987519pt;}
.lsd{letter-spacing:28.000000pt;}
.ls3{letter-spacing:31.987519pt;}
.ls2{letter-spacing:35.987499pt;}
.lsb{letter-spacing:36.000000pt;}
.lsa{letter-spacing:40.000000pt;}
.wsf{word-spacing:-45.333332pt;}
.ws108{word-spacing:-37.333332pt;}
.ws65{word-spacing:-34.260418pt;}
.ws16{word-spacing:-32.000000pt;}
.ws23{word-spacing:-31.145833pt;}
.ws70{word-spacing:-26.666666pt;}
.ws112{word-spacing:-26.162500pt;}
.ws12d{word-spacing:-25.600000pt;}
.wsf6{word-spacing:-22.400000pt;}
.ws171{word-spacing:-21.353558pt;}
.ws17d{word-spacing:-21.350090pt;}
.ws184{word-spacing:-21.347774pt;}
.ws12c{word-spacing:-21.347759pt;}
.ws109{word-spacing:-20.556251pt;}
.wsd4{word-spacing:-19.200001pt;}
.ws17a{word-spacing:-18.707178pt;}
.wsfb{word-spacing:-18.707171pt;}
.ws16b{word-spacing:-18.707170pt;}
.wsf5{word-spacing:-18.707154pt;}
.ws15d{word-spacing:-18.700320pt;}
.ws16c{word-spacing:-18.700304pt;}
.ws151{word-spacing:-18.700281pt;}
.ws14a{word-spacing:-18.700272pt;}
.ws129{word-spacing:-18.700260pt;}
.ws163{word-spacing:-18.700257pt;}
.ws11f{word-spacing:-18.700255pt;}
.ws189{word-spacing:-18.700254pt;}
.ws132{word-spacing:-18.700253pt;}
.ws94{word-spacing:-18.700251pt;}
.ws165{word-spacing:-18.700241pt;}
.ws174{word-spacing:-18.700238pt;}
.ws133{word-spacing:-18.700135pt;}
.ws18c{word-spacing:-18.697999pt;}
.ws10f{word-spacing:-18.697993pt;}
.ws131{word-spacing:-18.697959pt;}
.ws168{word-spacing:-18.697919pt;}
.ws161{word-spacing:-18.697917pt;}
.ws3f{word-spacing:-18.697914pt;}
.ws111{word-spacing:-18.697913pt;}
.ws136{word-spacing:-18.697904pt;}
.ws13e{word-spacing:-18.695605pt;}
.ws103{word-spacing:-18.695585pt;}
.ws146{word-spacing:-18.695578pt;}
.ws14e{word-spacing:-18.695575pt;}
.ws142{word-spacing:-18.695573pt;}
.ws122{word-spacing:-18.695545pt;}
.ws153{word-spacing:-18.693300pt;}
.ws13b{word-spacing:-18.693297pt;}
.ws180{word-spacing:-18.690957pt;}
.ws24{word-spacing:-18.687500pt;}
.ws12b{word-spacing:-17.347731pt;}
.ws16f{word-spacing:-16.351321pt;}
.wsce{word-spacing:-16.348970pt;}
.wsbc{word-spacing:-16.348947pt;}
.ws8e{word-spacing:-16.348928pt;}
.ws87{word-spacing:-16.348898pt;}
.wsd3{word-spacing:-16.347909pt;}
.ws47{word-spacing:-16.347800pt;}
.ws20{word-spacing:-16.347789pt;}
.ws61{word-spacing:-16.347781pt;}
.ws76{word-spacing:-16.347779pt;}
.ws186{word-spacing:-16.347778pt;}
.ws88{word-spacing:-16.347776pt;}
.ws74{word-spacing:-16.345650pt;}
.ws62{word-spacing:-16.345564pt;}
.wsea{word-spacing:-16.345551pt;}
.wsaf{word-spacing:-16.345541pt;}
.ws59{word-spacing:-16.345530pt;}
.ws95{word-spacing:-16.345523pt;}
.wsd1{word-spacing:-16.345519pt;}
.wsae{word-spacing:-16.345518pt;}
.ws33{word-spacing:-16.345513pt;}
.ws6d{word-spacing:-16.345505pt;}
.wsac{word-spacing:-16.345502pt;}
.ws9d{word-spacing:-16.345501pt;}
.wsd7{word-spacing:-16.345495pt;}
.wsbb{word-spacing:-16.345493pt;}
.ws75{word-spacing:-16.345490pt;}
.ws2f{word-spacing:-16.345473pt;}
.ws5e{word-spacing:-16.345457pt;}
.ws81{word-spacing:-16.345455pt;}
.ws63{word-spacing:-16.345451pt;}
.wsa8{word-spacing:-16.345446pt;}
.ws46{word-spacing:-16.345445pt;}
.ws32{word-spacing:-16.345442pt;}
.ws45{word-spacing:-16.345441pt;}
.ws55{word-spacing:-16.345440pt;}
.ws34{word-spacing:-16.345438pt;}
.ws2e{word-spacing:-16.345437pt;}
.ws6f{word-spacing:-16.345435pt;}
.wsa1{word-spacing:-16.345434pt;}
.ws30{word-spacing:-16.345433pt;}
.ws89{word-spacing:-16.345425pt;}
.ws144{word-spacing:-16.345422pt;}
.wsab{word-spacing:-16.345420pt;}
.ws13c{word-spacing:-16.345410pt;}
.wsdd{word-spacing:-16.345393pt;}
.ws6c{word-spacing:-16.345370pt;}
.ws44{word-spacing:-16.345353pt;}
.ws18a{word-spacing:-16.344302pt;}
.ws79{word-spacing:-16.344300pt;}
.ws48{word-spacing:-16.344299pt;}
.wsf0{word-spacing:-16.344298pt;}
.ws9c{word-spacing:-16.344294pt;}
.wsad{word-spacing:-16.340821pt;}
.wsc0{word-spacing:-16.340819pt;}
.ws43{word-spacing:-16.340817pt;}
.ws6e{word-spacing:-16.340814pt;}
.ws42{word-spacing:-16.339781pt;}
.wsb3{word-spacing:-16.339741pt;}
.ws57{word-spacing:-16.339670pt;}
.ws13f{word-spacing:-16.339652pt;}
.ws60{word-spacing:-16.339649pt;}
.ws21{word-spacing:-16.339642pt;}
.ws25{word-spacing:-16.339640pt;}
.ws26{word-spacing:-16.339638pt;}
.ws9f{word-spacing:-16.339637pt;}
.wsaa{word-spacing:-16.339626pt;}
.ws54{word-spacing:-16.339622pt;}
.ws97{word-spacing:-16.339550pt;}
.ws80{word-spacing:-16.339521pt;}
.wsed{word-spacing:-16.339501pt;}
.wsa3{word-spacing:-16.339481pt;}
.ws14b{word-spacing:-16.000032pt;}
.wse1{word-spacing:-16.000031pt;}
.wsfc{word-spacing:-16.000022pt;}
.wse9{word-spacing:-16.000021pt;}
.ws27{word-spacing:-16.000020pt;}
.wse0{word-spacing:-16.000012pt;}
.ws0{word-spacing:-16.000010pt;}
.wsa4{word-spacing:-16.000003pt;}
.ws104{word-spacing:-16.000001pt;}
.ws6{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.999998pt;}
.ws15e{word-spacing:-15.999997pt;}
.ws51{word-spacing:-15.999990pt;}
.ws143{word-spacing:-15.999980pt;}
.ws3{word-spacing:-15.999979pt;}
.ws2{word-spacing:-15.999970pt;}
.ws13a{word-spacing:-14.707251pt;}
.ws14c{word-spacing:-14.707171pt;}
.ws173{word-spacing:-14.700192pt;}
.ws140{word-spacing:-14.697987pt;}
.ws175{word-spacing:-14.697933pt;}
.ws16d{word-spacing:-14.697914pt;}
.ws18b{word-spacing:-14.697912pt;}
.ws15b{word-spacing:-14.695585pt;}
.ws10e{word-spacing:-14.695576pt;}
.ws107{word-spacing:-14.693441pt;}
.wsc3{word-spacing:-13.347755pt;}
.wsc2{word-spacing:-13.346684pt;}
.wsc9{word-spacing:-12.345577pt;}
.wsb8{word-spacing:-12.000031pt;}
.ws121{word-spacing:-12.000030pt;}
.ws98{word-spacing:-12.000020pt;}
.ws4e{word-spacing:-12.000010pt;}
.wsb7{word-spacing:-12.000003pt;}
.ws130{word-spacing:-12.000002pt;}
.ws4f{word-spacing:-12.000000pt;}
.ws138{word-spacing:-11.999999pt;}
.wsdf{word-spacing:-11.999990pt;}
.ws16e{word-spacing:-11.999980pt;}
.ws113{word-spacing:-11.999971pt;}
.ws5f{word-spacing:-11.870920pt;}
.ws90{word-spacing:-11.869821pt;}
.wsd2{word-spacing:-11.869732pt;}
.ws8d{word-spacing:-11.869729pt;}
.ws10b{word-spacing:-11.868693pt;}
.ws8f{word-spacing:-11.868664pt;}
.ws7f{word-spacing:-11.868641pt;}
.wsa2{word-spacing:-11.868601pt;}
.ws8a{word-spacing:-11.868585pt;}
.wsf8{word-spacing:-11.868539pt;}
.ws96{word-spacing:-11.867411pt;}
.wsde{word-spacing:-11.866483pt;}
.wsb4{word-spacing:-11.866466pt;}
.wsff{word-spacing:-11.866413pt;}
.wsa7{word-spacing:-11.866364pt;}
.ws41{word-spacing:-11.866356pt;}
.ws5a{word-spacing:-11.866354pt;}
.ws118{word-spacing:-11.866347pt;}
.ws31{word-spacing:-11.866346pt;}
.wse5{word-spacing:-11.866344pt;}
.ws91{word-spacing:-11.866339pt;}
.ws38{word-spacing:-11.866335pt;}
.ws11b{word-spacing:-11.866333pt;}
.ws148{word-spacing:-11.866325pt;}
.ws124{word-spacing:-11.866324pt;}
.ws100{word-spacing:-11.866289pt;}
.ws78{word-spacing:-11.866281pt;}
.wsd8{word-spacing:-11.866275pt;}
.ws106{word-spacing:-11.866273pt;}
.ws58{word-spacing:-11.866272pt;}
.ws8b{word-spacing:-11.866270pt;}
.ws56{word-spacing:-11.866269pt;}
.wsdb{word-spacing:-11.866267pt;}
.ws7a{word-spacing:-11.866266pt;}
.ws12a{word-spacing:-11.866244pt;}
.ws86{word-spacing:-11.866226pt;}
.wsa0{word-spacing:-11.866208pt;}
.ws8c{word-spacing:-11.866203pt;}
.wsb2{word-spacing:-11.866186pt;}
.wsfd{word-spacing:-11.865195pt;}
.wsa9{word-spacing:-11.865144pt;}
.wsd0{word-spacing:-11.865132pt;}
.ws64{word-spacing:-11.861642pt;}
.ws105{word-spacing:-11.860475pt;}
.wsd6{word-spacing:-11.860472pt;}
.wsf2{word-spacing:-11.859382pt;}
.ws178{word-spacing:-11.859342pt;}
.ws176{word-spacing:-11.859330pt;}
.ws22{word-spacing:-11.859325pt;}
.ws14f{word-spacing:-11.859322pt;}
.ws77{word-spacing:-11.859314pt;}
.wsdc{word-spacing:-11.859310pt;}
.ws172{word-spacing:-11.859306pt;}
.ws15c{word-spacing:-11.859302pt;}
.ws187{word-spacing:-11.859294pt;}
.ws152{word-spacing:-11.859262pt;}
.ws10c{word-spacing:-10.700263pt;}
.ws160{word-spacing:-10.700241pt;}
.ws141{word-spacing:-10.697911pt;}
.ws14d{word-spacing:-10.697904pt;}
.wsf4{word-spacing:-10.695774pt;}
.ws110{word-spacing:-10.695571pt;}
.wsfa{word-spacing:-10.695565pt;}
.ws185{word-spacing:-10.690954pt;}
.ws1c{word-spacing:-9.600000pt;}
.wsda{word-spacing:-8.000030pt;}
.wsee{word-spacing:-8.000020pt;}
.ws3a{word-spacing:-8.000010pt;}
.ws5b{word-spacing:-8.000000pt;}
.wsf7{word-spacing:-7.999990pt;}
.ws120{word-spacing:-7.999980pt;}
.ws19a{word-spacing:-7.999970pt;}
.ws17e{word-spacing:-6.707211pt;}
.ws116{word-spacing:-6.700361pt;}
.ws93{word-spacing:-6.700251pt;}
.wsfe{word-spacing:-6.697904pt;}
.ws119{word-spacing:-6.697861pt;}
.ws182{word-spacing:-6.695634pt;}
.ws123{word-spacing:-4.000030pt;}
.ws9a{word-spacing:-4.000020pt;}
.ws1b{word-spacing:-4.000010pt;}
.ws1cd{word-spacing:-4.000002pt;}
.ws99{word-spacing:-4.000000pt;}
.ws84{word-spacing:-3.999990pt;}
.wsc8{word-spacing:-3.999980pt;}
.ws53{word-spacing:-3.875549pt;}
.ws9b{word-spacing:-3.212502pt;}
.ws137{word-spacing:-3.211042pt;}
.ws3e{word-spacing:-2.697944pt;}
.ws11e{word-spacing:-2.697919pt;}
.ws102{word-spacing:-2.697916pt;}
.ws181{word-spacing:-2.695574pt;}
.ws177{word-spacing:-2.695514pt;}
.ws16a{word-spacing:-2.690957pt;}
.wsf3{word-spacing:-1.527524pt;}
.wsc4{word-spacing:-0.010427pt;}
.wsc1{word-spacing:-0.010417pt;}
.ws92{word-spacing:-0.000031pt;}
.wsc6{word-spacing:-0.000030pt;}
.wscc{word-spacing:-0.000021pt;}
.ws13{word-spacing:-0.000020pt;}
.wsbd{word-spacing:-0.000013pt;}
.ws18{word-spacing:-0.000011pt;}
.ws4{word-spacing:-0.000010pt;}
.ws11a{word-spacing:-0.000003pt;}
.ws11{word-spacing:-0.000002pt;}
.ws35{word-spacing:-0.000001pt;}
.wse{word-spacing:0.000000pt;}
.ws10{word-spacing:0.000000pt;}
.ws19{word-spacing:0.000002pt;}
.ws5{word-spacing:0.000009pt;}
.ws6b{word-spacing:0.000010pt;}
.ws2d{word-spacing:0.000020pt;}
.ws1{word-spacing:0.000030pt;}
.ws73{word-spacing:0.787498pt;}
.ws158{word-spacing:1.299688pt;}
.ws145{word-spacing:1.299694pt;}
.ws125{word-spacing:1.299777pt;}
.ws150{word-spacing:1.302041pt;}
.ws155{word-spacing:1.302056pt;}
.ws13d{word-spacing:1.304424pt;}
.ws69{word-spacing:1.367186pt;}
.ws17c{word-spacing:2.652173pt;}
.ws9e{word-spacing:3.999970pt;}
.ws3b{word-spacing:3.999980pt;}
.ws9{word-spacing:3.999990pt;}
.ws169{word-spacing:3.999991pt;}
.ws50{word-spacing:3.999997pt;}
.ws40{word-spacing:3.999999pt;}
.wsa{word-spacing:4.000000pt;}
.wsb6{word-spacing:4.000002pt;}
.ws3c{word-spacing:4.000009pt;}
.ws188{word-spacing:4.000019pt;}
.ws39{word-spacing:4.000020pt;}
.wsba{word-spacing:4.000030pt;}
.ws17f{word-spacing:5.302041pt;}
.ws72{word-spacing:6.387499pt;}
.wsd5{word-spacing:6.387519pt;}
.ws12e{word-spacing:6.388903pt;}
.ws170{word-spacing:6.649810pt;}
.ws7d{word-spacing:7.999970pt;}
.ws1d{word-spacing:7.999980pt;}
.ws82{word-spacing:7.999988pt;}
.wsd{word-spacing:7.999990pt;}
.ws157{word-spacing:7.999996pt;}
.ws83{word-spacing:7.999998pt;}
.ws7b{word-spacing:7.999999pt;}
.ws17{word-spacing:8.000000pt;}
.wsa5{word-spacing:8.000002pt;}
.ws3d{word-spacing:8.000010pt;}
.ws37{word-spacing:8.000019pt;}
.ws15f{word-spacing:8.000020pt;}
.ws135{word-spacing:8.000030pt;}
.ws10a{word-spacing:9.295135pt;}
.wsf1{word-spacing:10.387479pt;}
.ws49{word-spacing:10.387486pt;}
.ws66{word-spacing:10.387499pt;}
.wscf{word-spacing:10.936401pt;}
.wse4{word-spacing:11.999940pt;}
.ws134{word-spacing:11.999969pt;}
.wse7{word-spacing:11.999970pt;}
.ws4d{word-spacing:11.999979pt;}
.ws85{word-spacing:11.999980pt;}
.ws139{word-spacing:11.999989pt;}
.ws28{word-spacing:11.999990pt;}
.ws71{word-spacing:11.999998pt;}
.wsb9{word-spacing:11.999999pt;}
.ws1a{word-spacing:12.000000pt;}
.wscb{word-spacing:12.000001pt;}
.ws36{word-spacing:12.000010pt;}
.wsb{word-spacing:12.000019pt;}
.ws101{word-spacing:12.000020pt;}
.ws12f{word-spacing:12.000030pt;}
.ws162{word-spacing:13.292869pt;}
.wse6{word-spacing:14.387466pt;}
.ws7c{word-spacing:14.387499pt;}
.ws114{word-spacing:15.999969pt;}
.wsc{word-spacing:15.999980pt;}
.ws2c{word-spacing:15.999990pt;}
.ws15a{word-spacing:15.999998pt;}
.ws2a{word-spacing:16.000000pt;}
.ws2b{word-spacing:16.000002pt;}
.ws1f{word-spacing:16.000010pt;}
.ws6a{word-spacing:16.000020pt;}
.ws154{word-spacing:17.299739pt;}
.wse3{word-spacing:18.387466pt;}
.wsc5{word-spacing:18.387499pt;}
.wsbf{word-spacing:19.999970pt;}
.ws7{word-spacing:19.999980pt;}
.ws4c{word-spacing:19.999990pt;}
.ws68{word-spacing:19.999998pt;}
.ws29{word-spacing:20.000000pt;}
.wse8{word-spacing:20.000009pt;}
.ws128{word-spacing:20.000020pt;}
.wsa6{word-spacing:20.000030pt;}
.ws115{word-spacing:21.304415pt;}
.ws52{word-spacing:22.387499pt;}
.ws147{word-spacing:22.388899pt;}
.ws11d{word-spacing:23.999970pt;}
.ws7e{word-spacing:23.999980pt;}
.ws15{word-spacing:23.999990pt;}
.wsd9{word-spacing:23.999998pt;}
.ws4a{word-spacing:24.000000pt;}
.wsec{word-spacing:24.000002pt;}
.ws149{word-spacing:24.000010pt;}
.wsc7{word-spacing:24.000019pt;}
.wseb{word-spacing:24.000020pt;}
.ws159{word-spacing:25.299722pt;}
.wse2{word-spacing:27.947695pt;}
.ws5c{word-spacing:27.999970pt;}
.ws8{word-spacing:27.999980pt;}
.wsb0{word-spacing:27.999989pt;}
.ws5d{word-spacing:28.000000pt;}
.wscd{word-spacing:28.000001pt;}
.wsef{word-spacing:28.000002pt;}
.ws179{word-spacing:29.304415pt;}
.ws4b{word-spacing:30.387499pt;}
.ws167{word-spacing:31.999980pt;}
.wsca{word-spacing:31.999990pt;}
.ws1c6{word-spacing:31.999998pt;}
.ws12{word-spacing:32.000000pt;}
.ws1e{word-spacing:32.000002pt;}
.ws1ca{word-spacing:32.000011pt;}
.ws10d{word-spacing:32.000020pt;}
.ws156{word-spacing:33.299749pt;}
.ws127{word-spacing:35.999980pt;}
.ws11c{word-spacing:35.999990pt;}
.ws1a8{word-spacing:35.999998pt;}
.wsf9{word-spacing:36.000000pt;}
.wsb1{word-spacing:36.000009pt;}
.ws67{word-spacing:39.999990pt;}
.ws117{word-spacing:40.000000pt;}
.ws1cf{word-spacing:40.000010pt;}
.wsbe{word-spacing:44.000000pt;}
.ws164{word-spacing:45.299842pt;}
.ws1b6{word-spacing:47.999980pt;}
.ws1b5{word-spacing:47.999990pt;}
.wsb5{word-spacing:47.999999pt;}
.ws1f0{word-spacing:48.000010pt;}
.ws126{word-spacing:51.999990pt;}
.ws17b{word-spacing:51.999999pt;}
.ws18f{word-spacing:56.000000pt;}
.ws1c3{word-spacing:59.999989pt;}
.ws1a3{word-spacing:63.999980pt;}
.ws1f8{word-spacing:64.000000pt;}
.ws1ed{word-spacing:67.999990pt;}
.ws206{word-spacing:68.000000pt;}
.ws18e{word-spacing:68.000030pt;}
.ws183{word-spacing:70.653318pt;}
.ws190{word-spacing:72.000000pt;}
.ws1c2{word-spacing:80.000000pt;}
.ws205{word-spacing:83.999989pt;}
.ws1ec{word-spacing:84.000000pt;}
.ws166{word-spacing:87.999970pt;}
.ws208{word-spacing:88.000000pt;}
.ws1a4{word-spacing:92.000000pt;}
.ws191{word-spacing:95.999980pt;}
.ws1a9{word-spacing:99.999990pt;}
.ws195{word-spacing:100.000000pt;}
.ws19f{word-spacing:104.000000pt;}
.ws1fd{word-spacing:104.000010pt;}
.ws1a5{word-spacing:108.000000pt;}
.ws192{word-spacing:112.000000pt;}
.ws196{word-spacing:116.000000pt;}
.ws1ff{word-spacing:123.999999pt;}
.ws1ce{word-spacing:128.000000pt;}
.ws1eb{word-spacing:136.000000pt;}
.ws1fe{word-spacing:139.999970pt;}
.ws1ea{word-spacing:151.999970pt;}
.ws1f5{word-spacing:155.999990pt;}
.ws1df{word-spacing:156.000000pt;}
.ws203{word-spacing:167.999990pt;}
.ws1de{word-spacing:172.000000pt;}
.ws1b8{word-spacing:175.999990pt;}
.ws1b1{word-spacing:180.000000pt;}
.ws204{word-spacing:183.999990pt;}
.ws1af{word-spacing:184.000000pt;}
.ws1a6{word-spacing:188.000000pt;}
.ws1b9{word-spacing:188.000010pt;}
.ws1b0{word-spacing:195.999990pt;}
.ws1e8{word-spacing:196.000000pt;}
.ws1d6{word-spacing:204.000000pt;}
.ws1bd{word-spacing:208.000000pt;}
.ws207{word-spacing:215.999980pt;}
.ws1e7{word-spacing:216.000000pt;}
.ws1d5{word-spacing:219.999990pt;}
.ws1be{word-spacing:220.000000pt;}
.ws1bf{word-spacing:236.000000pt;}
.ws1c8{word-spacing:240.000000pt;}
.ws1c7{word-spacing:247.999989pt;}
.ws1c9{word-spacing:251.999990pt;}
.ws1c0{word-spacing:252.000000pt;}
.ws1d9{word-spacing:268.000000pt;}
.ws1dd{word-spacing:276.000000pt;}
.ws1a2{word-spacing:280.000000pt;}
.ws1d8{word-spacing:284.000000pt;}
.ws1dc{word-spacing:295.999999pt;}
.ws1a1{word-spacing:296.000000pt;}
.ws1e4{word-spacing:300.000000pt;}
.ws1e3{word-spacing:316.000010pt;}
.ws202{word-spacing:319.999999pt;}
.ws1f7{word-spacing:332.000000pt;}
.ws1c4{word-spacing:336.000000pt;}
.ws201{word-spacing:336.000020pt;}
.ws1ad{word-spacing:344.000000pt;}
.ws1c5{word-spacing:347.999990pt;}
.ws1f6{word-spacing:351.999990pt;}
.ws1e9{word-spacing:352.000010pt;}
.ws1ae{word-spacing:356.000000pt;}
.ws1cb{word-spacing:464.000020pt;}
.ws197{word-spacing:475.999990pt;}
.ws1cc{word-spacing:480.000000pt;}
.ws1ef{word-spacing:484.000000pt;}
.ws1a7{word-spacing:487.999999pt;}
.ws1f4{word-spacing:496.000000pt;}
.ws200{word-spacing:499.999980pt;}
.ws1ee{word-spacing:499.999990pt;}
.ws18d{word-spacing:503.999979pt;}
.ws1e2{word-spacing:508.000000pt;}
.ws1f3{word-spacing:516.000010pt;}
.ws1e1{word-spacing:528.000000pt;}
.ws1b7{word-spacing:532.000000pt;}
.ws1bc{word-spacing:540.000010pt;}
.ws1bb{word-spacing:555.999990pt;}
.ws1fc{word-spacing:696.000000pt;}
.ws1f2{word-spacing:700.000000pt;}
.ws1ba{word-spacing:708.000000pt;}
.ws1fb{word-spacing:716.000010pt;}
.ws1aa{word-spacing:719.999990pt;}
.ws1f1{word-spacing:720.000020pt;}
.ws1fa{word-spacing:740.000000pt;}
.ws19b{word-spacing:751.999990pt;}
.ws1f9{word-spacing:756.000010pt;}
.ws19c{word-spacing:768.000000pt;}
.ws1db{word-spacing:772.000000pt;}
.ws1e0{word-spacing:787.999989pt;}
.ws1d4{word-spacing:788.000000pt;}
.ws1da{word-spacing:788.000009pt;}
.ws1d7{word-spacing:796.000000pt;}
.ws193{word-spacing:800.000010pt;}
.ws1d3{word-spacing:804.000010pt;}
.ws1c1{word-spacing:808.000029pt;}
.ws198{word-spacing:816.000020pt;}
.ws1e6{word-spacing:828.000000pt;}
.ws1d1{word-spacing:831.999990pt;}
.ws199{word-spacing:832.000000pt;}
.ws1e5{word-spacing:843.999989pt;}
.ws1ac{word-spacing:859.999990pt;}
.ws1ab{word-spacing:863.999990pt;}
.ws194{word-spacing:876.000010pt;}
.ws19e{word-spacing:879.999990pt;}
.ws1b4{word-spacing:900.000000pt;}
.ws1a0{word-spacing:1816.000019pt;}
.ws1d2{word-spacing:1832.000000pt;}
.ws1d0{word-spacing:1851.999990pt;}
.ws1b2{word-spacing:1936.000000pt;}
.ws19d{word-spacing:1979.999990pt;}
.ws1b3{word-spacing:1980.000000pt;}
._27{margin-left:-16.000943pt;}
._19{margin-left:-10.121295pt;}
._e{margin-left:-8.250000pt;}
._10{margin-left:-7.093755pt;}
._1{margin-left:-5.875000pt;}
._0{margin-left:-4.750028pt;}
._b{margin-left:-3.843750pt;}
._6{margin-left:-2.781232pt;}
._f{margin-left:-1.812429pt;}
._d{margin-left:-0.896410pt;}
._18{width:1.001708pt;}
._5{width:15.999997pt;}
._25{width:17.816467pt;}
._1e{width:18.905672pt;}
._a{width:19.999999pt;}
._1f{width:21.775596pt;}
._17{width:22.739160pt;}
._4{width:24.000001pt;}
._1c{width:26.533497pt;}
._8{width:28.000190pt;}
._23{width:29.296931pt;}
._1b{width:30.607626pt;}
._7{width:32.000002pt;}
._13{width:34.607626pt;}
._c{width:36.000000pt;}
._31{width:37.050959pt;}
._11{width:38.442172pt;}
._2{width:40.000000pt;}
._21{width:42.570642pt;}
._9{width:44.000000pt;}
._3{width:48.000000pt;}
._32{width:49.276139pt;}
._1d{width:50.598373pt;}
._12{width:52.000000pt;}
._2f{width:53.276139pt;}
._2b{width:54.552110pt;}
._16{width:56.000017pt;}
._2a{width:60.000000pt;}
._20{width:62.593755pt;}
._14{width:63.999995pt;}
._29{width:66.607626pt;}
._15{width:68.000000pt;}
._30{width:69.872988pt;}
._22{width:71.225039pt;}
._1a{width:72.774962pt;}
._28{width:74.990190pt;}
._4d{width:76.000000pt;}
._34{width:80.000001pt;}
._3c{width:84.000024pt;}
._2c{width:86.413164pt;}
._2d{width:87.406812pt;}
._53{width:88.593188pt;}
._35{width:91.999999pt;}
._26{width:95.999986pt;}
._24{width:103.062483pt;}
._59{width:104.000000pt;}
._2e{width:107.999999pt;}
._54{width:115.999928pt;}
._33{width:117.276139pt;}
._51{width:120.000000pt;}
._3d{width:128.000000pt;}
._3a{width:132.000009pt;}
._38{width:136.000009pt;}
._52{width:147.999998pt;}
._55{width:160.000002pt;}
._50{width:172.000002pt;}
._3e{width:200.000008pt;}
._58{width:204.000002pt;}
._45{width:208.000051pt;}
._41{width:212.000000pt;}
._42{width:216.000000pt;}
._5a{width:236.000000pt;}
._47{width:240.000020pt;}
._4b{width:252.000010pt;}
._4a{width:268.000000pt;}
._4c{width:272.000000pt;}
._3b{width:316.000000pt;}
._4f{width:335.999989pt;}
._57{width:356.000000pt;}
._49{width:368.000000pt;}
._3f{width:508.000020pt;}
._56{width:519.999990pt;}
._44{width:552.000000pt;}
._46{width:727.999990pt;}
._36{width:820.000000pt;}
._48{width:827.999989pt;}
._4e{width:868.000000pt;}
._40{width:880.000020pt;}
._37{width:895.999990pt;}
._39{width:900.000020pt;}
._43{width:920.000020pt;}
.fs4{font-size:32.000000pt;}
.fs8{font-size:35.200001pt;}
.fs3{font-size:38.400002pt;}
.fs7{font-size:44.799999pt;}
.fsa{font-size:51.200001pt;}
.fs5{font-size:53.333332pt;}
.fs1{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.666664pt;}
.fs9{font-size:85.333336pt;}
.fs2{font-size:90.666664pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:53.304039pt;}
.y11{bottom:53.304519pt;}
.y2a{bottom:53.304692pt;}
.ya5{bottom:53.305332pt;}
.y38{bottom:98.972649pt;}
.yd1{bottom:101.005207pt;}
.y216{bottom:101.010420pt;}
.y51a{bottom:101.020833pt;}
.y1bb{bottom:103.307287pt;}
.yd3{bottom:104.032220pt;}
.y379{bottom:104.729167pt;}
.y3ef{bottom:110.083327pt;}
.y19d{bottom:114.300783pt;}
.y37{bottom:114.304689pt;}
.ya1{bottom:114.305983pt;}
.y3c5{bottom:115.427087pt;}
.y47{bottom:119.364260pt;}
.yc0{bottom:119.365553pt;}
.y509{bottom:119.395833pt;}
.yd0{bottom:128.604167pt;}
.y432{bottom:129.628903pt;}
.y36{bottom:129.636716pt;}
.y114{bottom:129.639316pt;}
.y1ba{bottom:130.901047pt;}
.y49f{bottom:131.208327pt;}
.y4ce{bottom:134.688473pt;}
.y46{bottom:134.696287pt;}
.y215{bottom:134.698887pt;}
.y378{bottom:136.749993pt;}
.y3d8{bottom:142.083327pt;}
.y19c{bottom:144.962236pt;}
.ya2{bottom:144.967449pt;}
.y3f{bottom:144.968756pt;}
.y431{bottom:144.972649pt;}
.y508{bottom:147.010420pt;}
.y3c4{bottom:147.437500pt;}
.y1dd{bottom:150.021807pt;}
.yc6{bottom:150.027020pt;}
.y35{bottom:150.028327pt;}
.y446{bottom:150.032220pt;}
.yd6{bottom:151.202805pt;}
.y406{bottom:152.781247pt;}
.y519{bottom:156.187500pt;}
.y1c8{bottom:156.197913pt;}
.y7{bottom:156.201820pt;}
.yd2{bottom:156.203127pt;}
.y1b9{bottom:158.499993pt;}
.y3b{bottom:160.300783pt;}
.yd5{bottom:160.359376pt;}
.y2b3{bottom:160.854167pt;}
.y49e{bottom:163.229167pt;}
.yd8{bottom:164.170569pt;}
.y60{bottom:165.360353pt;}
.y248{bottom:165.365553pt;}
.y214{bottom:168.010420pt;}
.y377{bottom:168.760420pt;}
.y4e7{bottom:169.270833pt;}
.ybf{bottom:173.132807pt;}
.y278{bottom:173.520833pt;}
.y3d7{bottom:174.104167pt;}
.y507{bottom:174.604167pt;}
.y3b5{bottom:174.624993pt;}
.y3a{bottom:175.632809pt;}
.ya4{bottom:175.634116pt;}
.y1dc{bottom:176.213540pt;}
.y3c3{bottom:179.447913pt;}
.y77{bottom:180.692380pt;}
.ydf{bottom:180.693687pt;}
.yd4{bottom:180.750980pt;}
.y512{bottom:183.791660pt;}
.y6{bottom:183.799473pt;}
.yfd{bottom:183.802087pt;}
.yd7{bottom:184.563473pt;}
.y405{bottom:184.802087pt;}
.y4cd{bottom:185.479167pt;}
.y1b8{bottom:186.093753pt;}
.y2b2{bottom:188.458327pt;}
.y3eb{bottom:189.593753pt;}
.y445{bottom:190.833327pt;}
.y66{bottom:190.964849pt;}
.yda{bottom:194.837236pt;}
.y213{bottom:195.604167pt;}
.y39{bottom:196.024420pt;}
.y4f1{bottom:196.187500pt;}
.y4b4{bottom:199.041660pt;}
.y29{bottom:199.898113pt;}
.ybe{bottom:200.731767pt;}
.y376{bottom:200.770833pt;}
.y277{bottom:201.124993pt;}
.y3a6{bottom:201.291660pt;}
.y41b{bottom:201.999993pt;}
.y113{bottom:202.197913pt;}
.y3d1{bottom:203.249993pt;}
.y1db{bottom:203.807287pt;}
.y19b{bottom:204.494793pt;}
.y2a2{bottom:205.520833pt;}
.y491{bottom:206.124993pt;}
.yc7{bottom:206.295569pt;}
.y42{bottom:206.296876pt;}
.y28f{bottom:206.447913pt;}
.y3b4{bottom:206.645833pt;}
.y4a8{bottom:207.249993pt;}
.y479{bottom:209.635420pt;}
.ya3{bottom:211.355140pt;}
.y65{bottom:211.356447pt;}
.ycf{bottom:211.395833pt;}
.y45{bottom:211.397140pt;}
.y190{bottom:211.401047pt;}
.y3c2{bottom:211.458327pt;}
.y2c9{bottom:213.124993pt;}
.y1b7{bottom:213.697913pt;}
.yd9{bottom:215.227540pt;}
.y264{bottom:215.593753pt;}
.y1c6{bottom:215.927087pt;}
.y2b1{bottom:216.052087pt;}
.y38b{bottom:217.499993pt;}
.y2da{bottom:217.708327pt;}
.y2e4{bottom:218.645833pt;}
.y232{bottom:219.458327pt;}
.y428{bottom:220.541660pt;}
.y4af{bottom:221.479167pt;}
.y3ea{bottom:221.604167pt;}
.y41{bottom:221.628903pt;}
.y49d{bottom:221.916660pt;}
.y444{bottom:222.833327pt;}
.y212{bottom:223.208327pt;}
.y430{bottom:223.541660pt;}
.ydc{bottom:225.498703pt;}
.y5f{bottom:226.688473pt;}
.y325{bottom:226.854167pt;}
.y28{bottom:227.495767pt;}
.y45a{bottom:227.958327pt;}
.y4f0{bottom:228.197913pt;}
.ybd{bottom:228.328127pt;}
.y276{bottom:228.708327pt;}
.y35f{bottom:228.895833pt;}
.y34d{bottom:229.729167pt;}
.y506{bottom:229.791660pt;}
.y112{bottom:229.796873pt;}
.y4b3{bottom:231.041661pt;}
.y4df{bottom:231.062500pt;}
.y1da{bottom:231.406247pt;}
.y19a{bottom:232.093753pt;}
.y466{bottom:232.770833pt;}
.y375{bottom:232.781247pt;}
.y2a1{bottom:233.124993pt;}
.y3a5{bottom:233.312500pt;}
.y41a{bottom:234.010420pt;}
.y28e{bottom:234.052087pt;}
.y3d0{bottom:235.260420pt;}
.y78{bottom:236.960943pt;}
.yc9{bottom:236.962236pt;}
.y48e{bottom:237.270833pt;}
.y247{bottom:237.999993pt;}
.y3fb{bottom:238.062500pt;}
.y490{bottom:238.135420pt;}
.y3b3{bottom:238.645833pt;}
.y44{bottom:238.994793pt;}
.y511{bottom:238.999993pt;}
.y4a7{bottom:239.260420pt;}
.y2f1{bottom:239.979167pt;}
.y2c8{bottom:240.708327pt;}
.y1c1{bottom:241.218753pt;}
.y1b6{bottom:241.291660pt;}
.y478{bottom:241.635420pt;}
.y40{bottom:242.020513pt;}
.ye0{bottom:242.021807pt;}
.y263{bottom:243.187500pt;}
.y404{bottom:243.479167pt;}
.y142{bottom:243.520833pt;}
.y1c5{bottom:243.526047pt;}
.y2b0{bottom:243.645833pt;}
.y303{bottom:244.583327pt;}
.y36a{bottom:245.187500pt;}
.y2d9{bottom:245.312500pt;}
.ydb{bottom:245.891607pt;}
.y45f{bottom:246.093743pt;}
.y2e3{bottom:246.249993pt;}
.y231{bottom:247.057287pt;}
.y1e7{bottom:247.197913pt;}
.y38a{bottom:249.510420pt;}
.y211{bottom:250.802087pt;}
.y489{bottom:251.229167pt;}
.y62{bottom:252.292969pt;}
.y427{bottom:252.562500pt;}
.y4ae{bottom:253.479167pt;}
.y3e9{bottom:253.624993pt;}
.y452{bottom:253.937500pt;}
.y443{bottom:254.854167pt;}
.y27{bottom:255.093420pt;}
.y39a{bottom:255.562500pt;}
.ybc{bottom:255.927087pt;}
.yde{bottom:256.165369pt;}
.y153{bottom:256.395833pt;}
.y67{bottom:257.352540pt;}
.y505{bottom:257.385420pt;}
.y134{bottom:257.395833pt;}
.y324{bottom:258.874993pt;}
.y199{bottom:259.687500pt;}
.y459{bottom:259.979167pt;}
.y2f6{bottom:260.708327pt;}
.y35e{bottom:260.906247pt;}
.y28d{bottom:261.645833pt;}
.y34c{bottom:261.739580pt;}
.y4de{bottom:263.062500pt;}
.y465{bottom:264.791660pt;}
.y339{bottom:264.802087pt;}
.y23a{bottom:265.593753pt;}
.y182{bottom:266.453127pt;}
.y241{bottom:266.583327pt;}
.y1c7{bottom:266.588540pt;}
.y43{bottom:266.592447pt;}
.ya0{bottom:266.593753pt;}
.y48d{bottom:267.427076pt;}
.y2f0{bottom:267.583327pt;}
.yc8{bottom:267.623703pt;}
.y7a{bottom:267.624996pt;}
.y12e{bottom:267.895833pt;}
.y1c0{bottom:268.822913pt;}
.y3fa{bottom:270.083327pt;}
.y3c1{bottom:270.145833pt;}
.y228{bottom:270.197913pt;}
.y262{bottom:270.791660pt;}
.y141{bottom:271.119793pt;}
.y4a6{bottom:271.270834pt;}
.y45e{bottom:272.072916pt;}
.y302{bottom:272.187500pt;}
.y61{bottom:272.684567pt;}
.y477{bottom:273.645833pt;}
.y2e2{bottom:273.843753pt;}
.y4b2{bottom:274.635420pt;}
.y230{bottom:274.651047pt;}
.y1e6{bottom:274.791660pt;}
.y403{bottom:275.489580pt;}
.ydd{bottom:276.555660pt;}
.y369{bottom:277.197913pt;}
.yfb{bottom:277.619793pt;}
.y1d9{bottom:280.505209pt;}
.y389{bottom:281.520833pt;}
.y26{bottom:282.691087pt;}
.y64{bottom:282.957036pt;}
.y275{bottom:282.979167pt;}
.y488{bottom:283.249993pt;}
.y152{bottom:283.994793pt;}
.y426{bottom:284.572913pt;}
.y111{bottom:284.989580pt;}
.y504{bottom:284.999993pt;}
.y4ad{bottom:285.499993pt;}
.y451{bottom:285.947913pt;}
.y442{bottom:286.874993pt;}
.y198{bottom:287.291660pt;}
.y2a0{bottom:287.385420pt;}
.y399{bottom:287.572913pt;}
.y79{bottom:288.016607pt;}
.y2f5{bottom:288.312500pt;}
.y28c{bottom:289.249993pt;}
.y171{bottom:289.395833pt;}
.y323{bottom:290.885420pt;}
.y374{bottom:291.458327pt;}
.y3ee{bottom:291.979167pt;}
.y3a4{bottom:291.989580pt;}
.y458{bottom:291.999993pt;}
.y419{bottom:292.687500pt;}
.y35d{bottom:292.916660pt;}
.y239{bottom:293.187500pt;}
.y48c{bottom:293.395836pt;}
.y3cf{bottom:293.937500pt;}
.y181{bottom:294.052087pt;}
.y164{bottom:294.187500pt;}
.y5{bottom:294.190100pt;}
.y510{bottom:294.197913pt;}
.y2c7{bottom:294.979167pt;}
.y4dd{bottom:295.072913pt;}
.y2ef{bottom:295.177087pt;}
.y12d{bottom:295.494793pt;}
.y1bf{bottom:296.416660pt;}
.y1b5{bottom:296.489580pt;}
.y338{bottom:296.812500pt;}
.y3b2{bottom:297.333327pt;}
.y227{bottom:297.791660pt;}
.y2af{bottom:297.916660pt;}
.y7e{bottom:298.289063pt;}
.yce{bottom:298.290369pt;}
.y261{bottom:298.385420pt;}
.y1c4{bottom:298.718753pt;}
.y2d8{bottom:299.583327pt;}
.y301{bottom:299.770833pt;}
.y3f9{bottom:302.093753pt;}
.y48f{bottom:302.145833pt;}
.y3c0{bottom:302.156247pt;}
.y1e5{bottom:302.395833pt;}
.y63{bottom:303.348633pt;}
.yca{bottom:303.349940pt;}
.y1d8{bottom:303.385420pt;}
.y4b1{bottom:304.781249pt;}
.yfa{bottom:305.218753pt;}
.y210{bottom:305.994793pt;}
.y402{bottom:307.499993pt;}
.y368{bottom:309.208327pt;}
.y25{bottom:310.288740pt;}
.y274{bottom:310.572913pt;}
.ybb{bottom:311.122393pt;}
.y151{bottom:311.593753pt;}
.y3e8{bottom:312.302087pt;}
.y503{bottom:312.583327pt;}
.y110{bottom:312.588540pt;}
.y388{bottom:313.541660pt;}
.y7d{bottom:313.621089pt;}
.y4a5{bottom:314.854167pt;}
.y197{bottom:314.885420pt;}
.y29f{bottom:314.979167pt;}
.y487{bottom:315.260420pt;}
.y2f4{bottom:315.906247pt;}
.y170{bottom:316.994793pt;}
.y450{bottom:317.947913pt;}
.y8a{bottom:318.680660pt;}
.y76{bottom:318.708327pt;}
.y4ef{bottom:318.885420pt;}
.y398{bottom:319.583327pt;}
.y34b{bottom:320.416660pt;}
.y1fb{bottom:320.791660pt;}
.y180{bottom:321.645833pt;}
.y15f{bottom:321.718753pt;}
.y9f{bottom:321.786460pt;}
.y4{bottom:321.787767pt;}
.y18f{bottom:321.791660pt;}
.y2c6{bottom:322.572913pt;}
.y12c{bottom:323.093753pt;}
.y373{bottom:323.479167pt;}
.y30f{bottom:323.510420pt;}
.y3a3{bottom:323.999993pt;}
.y1be{bottom:324.020833pt;}
.y1b4{bottom:324.088540pt;}
.y418{bottom:324.708327pt;}
.y35c{bottom:324.937500pt;}
.y226{bottom:325.395833pt;}
.y2ae{bottom:325.510420pt;}
.y3ce{bottom:325.947913pt;}
.y260{bottom:325.989580pt;}
.y140{bottom:326.312500pt;}
.y2d7{bottom:327.177087pt;}
.y2e1{bottom:328.104167pt;}
.y337{bottom:328.822913pt;}
.ye1{bottom:328.951823pt;}
.y7c{bottom:328.953129pt;}
.y3b1{bottom:329.343753pt;}
.y5e{bottom:329.519527pt;}
.y22f{bottom:329.843753pt;}
.y4b0{bottom:330.760409pt;}
.y1d7{bottom:330.989580pt;}
.y476{bottom:332.333327pt;}
.yf9{bottom:332.815100pt;}
.y20f{bottom:333.593753pt;}
.ycb{bottom:334.011393pt;}
.y3f8{bottom:334.104167pt;}
.y3bf{bottom:334.166660pt;}
.y3ed{bottom:336.791663pt;}
.y97{bottom:337.249993pt;}
.y273{bottom:338.177087pt;}
.yba{bottom:338.718753pt;}
.y150{bottom:339.187500pt;}
.y401{bottom:339.520833pt;}
.y10f{bottom:340.187500pt;}
.y367{bottom:341.218753pt;}
.y163{bottom:342.291663pt;}
.y196{bottom:342.489580pt;}
.y29e{bottom:342.572913pt;}
.y425{bottom:343.249993pt;}
.y4c8{bottom:343.291660pt;}
.y28b{bottom:343.510420pt;}
.y4ac{bottom:344.187501pt;}
.y88{bottom:344.285156pt;}
.y3e7{bottom:344.312500pt;}
.y16f{bottom:344.593753pt;}
.y387{bottom:345.552087pt;}
.y441{bottom:345.562500pt;}
.y75{bottom:346.304687pt;}
.y486{bottom:347.270833pt;}
.y1fa{bottom:348.385420pt;}
.y15e{bottom:349.312500pt;}
.y7b{bottom:349.344727pt;}
.y34{bottom:349.385420pt;}
.y518{bottom:349.395833pt;}
.y2ee{bottom:349.437500pt;}
.y322{bottom:349.562500pt;}
.y44f{bottom:349.958327pt;}
.y2c5{bottom:350.177087pt;}
.y4a2{bottom:350.666661pt;}
.y12b{bottom:350.687500pt;}
.y4ee{bottom:350.895833pt;}
.y30e{bottom:351.104167pt;}
.y397{bottom:351.593753pt;}
.y1b3{bottom:351.682287pt;}
.y34a{bottom:352.437500pt;}
.y225{bottom:352.989580pt;}
.y2ad{bottom:353.114580pt;}
.y25f{bottom:353.583327pt;}
.y4dc{bottom:353.760420pt;}
.y13f{bottom:353.911460pt;}
.y1c3{bottom:353.916660pt;}
.y300{bottom:354.041660pt;}
.y2d6{bottom:354.770833pt;}
.y372{bottom:355.489580pt;}
.y464{bottom:355.499993pt;}
.y2e0{bottom:355.708327pt;}
.y457{bottom:356.010420pt;}
.y417{bottom:356.708327pt;}
.y5d{bottom:357.117193pt;}
.y22e{bottom:357.447913pt;}
.y1e4{bottom:357.588540pt;}
.y3cd{bottom:357.958327pt;}
.y1d6{bottom:358.588540pt;}
.y82{bottom:359.617183pt;}
.ycc{bottom:359.618489pt;}
.yf8{bottom:360.411460pt;}
.y336{bottom:360.833327pt;}
.y20e{bottom:361.187500pt;}
.y3b0{bottom:361.364580pt;}
.y3ec{bottom:362.760409pt;}
.y475{bottom:364.354167pt;}
.y4a4{bottom:364.395836pt;}
.y87{bottom:364.676753pt;}
.ye2{bottom:364.678060pt;}
.y96{bottom:364.848953pt;}
.y24{bottom:365.484047pt;}
.y272{bottom:365.770833pt;}
.y3be{bottom:366.187500pt;}
.yb9{bottom:366.317713pt;}
.y14f{bottom:366.786460pt;}
.y133{bottom:367.781247pt;}
.y502{bottom:367.791660pt;}
.y195{bottom:370.083327pt;}
.y29d{bottom:370.177087pt;}
.y28a{bottom:371.104167pt;}
.y400{bottom:371.520833pt;}
.y16e{bottom:372.187500pt;}
.y4cc{bottom:372.208327pt;}
.y74{bottom:373.903647pt;}
.y162{bottom:374.494796pt;}
.y81{bottom:374.949223pt;}
.y424{bottom:375.260420pt;}
.y4c7{bottom:375.312500pt;}
.y1f9{bottom:375.989580pt;}
.y3e6{bottom:376.322913pt;}
.y17f{bottom:376.843753pt;}
.y15d{bottom:376.911460pt;}
.y18e{bottom:376.979167pt;}
.y33{bottom:376.983073pt;}
.y9e{bottom:376.984380pt;}
.y2ed{bottom:377.041660pt;}
.y386{bottom:377.562500pt;}
.y2c4{bottom:377.770833pt;}
.y12a{bottom:378.286460pt;}
.y30d{bottom:378.708327pt;}
.y1bd{bottom:379.020836pt;}
.y1b2{bottom:379.281247pt;}
.y485{bottom:379.291660pt;}
.y8b{bottom:380.008793pt;}
.y224{bottom:380.588540pt;}
.y25e{bottom:381.187500pt;}
.y13e{bottom:381.510420pt;}
.y321{bottom:381.583327pt;}
.y2ff{bottom:381.635420pt;}
.y48b{bottom:382.145833pt;}
.y2d5{bottom:382.374993pt;}
.y3a2{bottom:382.687500pt;}
.y4ed{bottom:382.916660pt;}
.y2df{bottom:383.302087pt;}
.y35b{bottom:383.614580pt;}
.y349{bottom:384.447913pt;}
.y5c{bottom:384.714847pt;}
.y22d{bottom:385.041660pt;}
.y1e3{bottom:385.182287pt;}
.y4db{bottom:385.770833pt;}
.y1d5{bottom:386.182287pt;}
.y371{bottom:387.499993pt;}
.y463{bottom:387.510420pt;}
.yf7{bottom:388.010420pt;}
.y4e6{bottom:388.020833pt;}
.y20d{bottom:388.791660pt;}
.y3cc{bottom:389.979167pt;}
.y4ab{bottom:390.208334pt;}
.ycd{bottom:390.279943pt;}
.y80{bottom:390.281249pt;}
.y4a3{bottom:390.364583pt;}
.y3f7{bottom:392.781247pt;}
.y45d{bottom:392.854167pt;}
.y271{bottom:393.374993pt;}
.yb8{bottom:393.914060pt;}
.ye3{bottom:395.339513pt;}
.y10e{bottom:395.380207pt;}
.y501{bottom:395.385420pt;}
.y4a1{bottom:395.468743pt;}
.y474{bottom:396.374993pt;}
.y161{bottom:397.489583pt;}
.y194{bottom:397.682287pt;}
.y29c{bottom:397.770833pt;}
.y3bd{bottom:398.197913pt;}
.y16d{bottom:399.786460pt;}
.y366{bottom:399.895833pt;}
.y73{bottom:401.499993pt;}
.y1f8{bottom:403.583327pt;}
.y4cb{bottom:404.229167pt;}
.y17e{bottom:404.437500pt;}
.y517{bottom:404.562500pt;}
.y50f{bottom:404.572913pt;}
.y32{bottom:404.580727pt;}
.yfc{bottom:404.583327pt;}
.y2ec{bottom:404.635420pt;}
.y89{bottom:405.613276pt;}
.y129{bottom:405.885420pt;}
.y1b1{bottom:406.874993pt;}
.y423{bottom:407.270833pt;}
.y4c6{bottom:407.322913pt;}
.y2ac{bottom:407.374993pt;}
.y223{bottom:408.182287pt;}
.y3e5{bottom:408.333327pt;}
.y44e{bottom:408.645833pt;}
.y25d{bottom:408.770833pt;}
.y13d{bottom:409.109380pt;}
.y1c2{bottom:409.114580pt;}
.y2fe{bottom:409.239580pt;}
.y440{bottom:409.572913pt;}
.y2d4{bottom:409.968753pt;}
.y396{bottom:410.270833pt;}
.y7f{bottom:410.672847pt;}
.y5b{bottom:412.312500pt;}
.y22c{bottom:412.645833pt;}
.y1e2{bottom:412.781247pt;}
.y320{bottom:413.583327pt;}
.y48a{bottom:414.166660pt;}
.y456{bottom:414.687501pt;}
.y3a1{bottom:414.697913pt;}
.y416{bottom:415.395833pt;}
.y35a{bottom:415.624993pt;}
.y348{bottom:416.458327pt;}
.y4da{bottom:417.791660pt;}
.y462{bottom:419.510420pt;}
.y335{bottom:419.520833pt;}
.y4aa{bottom:419.895827pt;}
.y4e5{bottom:420.041660pt;}
.y95{bottom:420.044273pt;}
.y23{bottom:420.679367pt;}
.ye4{bottom:420.946609pt;}
.y4a0{bottom:421.447916pt;}
.yb7{bottom:421.513020pt;}
.y14e{bottom:421.984380pt;}
.y3cb{bottom:421.989580pt;}
.y10d{bottom:422.979167pt;}
.y3f6{bottom:424.802087pt;}
.y45c{bottom:424.874993pt;}
.y29b{bottom:425.364581pt;}
.y289{bottom:425.374993pt;}
.y83{bottom:426.004887pt;}
.y16c{bottom:427.385420pt;}
.y473{bottom:428.374993pt;}
.y72{bottom:429.098953pt;}
.y160{bottom:429.687503pt;}
.y15c{bottom:429.807287pt;}
.y3bc{bottom:430.208327pt;}
.y1f7{bottom:431.182287pt;}
.y24b{bottom:431.187500pt;}
.y365{bottom:431.916660pt;}
.y2c3{bottom:432.031247pt;}
.y17d{bottom:432.036460pt;}
.y9d{bottom:432.177087pt;}
.y3{bottom:432.178380pt;}
.y18d{bottom:432.182287pt;}
.y240{bottom:432.187500pt;}
.y30c{bottom:432.958327pt;}
.y128{bottom:433.484380pt;}
.y1b0{bottom:434.479167pt;}
.y2ab{bottom:434.968753pt;}
.y222{bottom:435.781247pt;}
.y385{bottom:436.249993pt;}
.y85{bottom:436.277343pt;}
.y13c{bottom:436.708327pt;}
.y2d3{bottom:437.562500pt;}
.y484{bottom:437.958327pt;}
.y422{bottom:439.291660pt;}
.y4c5{bottom:439.333327pt;}
.y5a{bottom:439.910153pt;}
.y1e1{bottom:440.374993pt;}
.y44d{bottom:440.666660pt;}
.y1d4{bottom:441.374993pt;}
.y43f{bottom:441.583327pt;}
.y395{bottom:442.291660pt;}
.yf6{bottom:443.205727pt;}
.y20c{bottom:443.989580pt;}
.y31f{bottom:445.604167pt;}
.y3d6{bottom:446.187500pt;}
.y3a0{bottom:446.708327pt;}
.y415{bottom:447.406247pt;}
.y270{bottom:447.635420pt;}
.y94{bottom:447.640620pt;}
.y22{bottom:448.277020pt;}
.yb6{bottom:449.109380pt;}
.y14d{bottom:449.583327pt;}
.y500{bottom:450.572913pt;}
.y10c{bottom:450.578127pt;}
.y334{bottom:451.520833pt;}
.y3af{bottom:452.062500pt;}
.y193{bottom:452.687503pt;}
.y288{bottom:452.958327pt;}
.y84{bottom:456.668940pt;}
.y71{bottom:456.695313pt;}
.y3f5{bottom:456.812500pt;}
.y16b{bottom:457.136711pt;}
.y15b{bottom:457.406247pt;}
.yec{bottom:458.567713pt;}
.y246{bottom:458.770833pt;}
.y1f6{bottom:458.776047pt;}
.y2eb{bottom:458.895833pt;}
.y455{bottom:459.510409pt;}
.y2c2{bottom:459.635420pt;}
.y23f{bottom:459.770833pt;}
.y31{bottom:459.776047pt;}
.y472{bottom:460.385420pt;}
.y30b{bottom:460.562500pt;}
.y22b{bottom:461.749996pt;}
.y1af{bottom:462.072913pt;}
.y3ff{bottom:462.218753pt;}
.y2aa{bottom:462.572913pt;}
.y25c{bottom:463.041660pt;}
.y2fd{bottom:463.499993pt;}
.y364{bottom:463.937500pt;}
.y13b{bottom:464.302087pt;}
.y2de{bottom:465.166660pt;}
.y3e4{bottom:467.020833pt;}
.y59{bottom:467.507807pt;}
.y1e0{bottom:467.979167pt;}
.y384{bottom:468.260420pt;}
.y1d3{bottom:468.979167pt;}
.y483{bottom:469.979167pt;}
.yf5{bottom:470.802087pt;}
.y421{bottom:471.302087pt;}
.y20b{bottom:471.583327pt;}
.y44c{bottom:472.666660pt;}
.y43e{bottom:473.604167pt;}
.y29a{bottom:474.302087pt;}
.y394{bottom:474.312500pt;}
.y347{bottom:475.145833pt;}
.y26f{bottom:475.229167pt;}
.y93{bottom:475.239580pt;}
.y21{bottom:475.874673pt;}
.y4d9{bottom:476.458327pt;}
.yb5{bottom:476.708327pt;}
.y14c{bottom:477.177087pt;}
.y4ff{bottom:478.166660pt;}
.y169{bottom:478.177087pt;}
.y3d5{bottom:478.197913pt;}
.y49b{bottom:478.708327pt;}
.y39f{bottom:478.718753pt;}
.y414{bottom:479.427087pt;}
.y359{bottom:479.645833pt;}
.y132{bottom:480.286463pt;}
.y287{bottom:480.562500pt;}
.y3ca{bottom:480.666661pt;}
.y333{bottom:483.541660pt;}
.y3ae{bottom:484.062500pt;}
.y70{bottom:484.294273pt;}
.y192{bottom:484.880209pt;}
.y15a{bottom:484.999993pt;}
.y454{bottom:485.468743pt;}
.yeb{bottom:486.166660pt;}
.y1f5{bottom:486.374993pt;}
.y2ea{bottom:486.499993pt;}
.y2c1{bottom:487.229167pt;}
.y18c{bottom:487.369793pt;}
.y3e{bottom:487.373700pt;}
.y9c{bottom:487.374993pt;}
.y30a{bottom:488.166660pt;}
.y127{bottom:488.677087pt;}
.y3f4{bottom:488.822913pt;}
.y3bb{bottom:488.895833pt;}
.y16a{bottom:489.411463pt;}
.y1ae{bottom:489.677087pt;}
.y2a9{bottom:490.166660pt;}
.y25b{bottom:490.645833pt;}
.y221{bottom:490.979167pt;}
.y2fc{bottom:491.093753pt;}
.y2d2{bottom:491.833327pt;}
.y13a{bottom:491.901047pt;}
.y471{bottom:492.395833pt;}
.y2dd{bottom:492.760420pt;}
.y22a{bottom:493.942703pt;}
.y58{bottom:495.105473pt;}
.y363{bottom:495.937500pt;}
.y1d2{bottom:496.572913pt;}
.y4c4{bottom:498.010420pt;}
.yf4{bottom:498.401047pt;}
.y3e3{bottom:499.031247pt;}
.y20a{bottom:499.182287pt;}
.y383{bottom:500.270833pt;}
.y299{bottom:501.895833pt;}
.y482{bottom:501.999993pt;}
.y26e{bottom:502.833327pt;}
.y92{bottom:502.835940pt;}
.y420{bottom:503.312500pt;}
.y20{bottom:503.472327pt;}
.y31e{bottom:504.281247pt;}
.yb4{bottom:504.304687pt;}
.y44b{bottom:504.687500pt;}
.y14b{bottom:504.776047pt;}
.y4ec{bottom:505.624993pt;}
.y10b{bottom:505.770833pt;}
.y393{bottom:506.312500pt;}
.y346{bottom:507.145833pt;}
.y317{bottom:508.166660pt;}
.y4d8{bottom:508.479167pt;}
.y3d4{bottom:510.208327pt;}
.y17c{bottom:510.302087pt;}
.y49a{bottom:510.729167pt;}
.y39e{bottom:510.739580pt;}
.y413{bottom:511.437500pt;}
.y358{bottom:511.666660pt;}
.y6f{bottom:511.890620pt;}
.y131{bottom:512.479169pt;}
.y159{bottom:512.598953pt;}
.yea{bottom:513.765620pt;}
.y1f4{bottom:513.968753pt;}
.y2e9{bottom:514.093753pt;}
.y2c0{bottom:514.833327pt;}
.y116{bottom:514.968753pt;}
.y2{bottom:514.971353pt;}
.y50e{bottom:514.979167pt;}
.y332{bottom:515.562500pt;}
.y309{bottom:515.760420pt;}
.y3ad{bottom:516.083327pt;}
.y126{bottom:516.276047pt;}
.y1ad{bottom:517.270833pt;}
.y2a8{bottom:517.760420pt;}
.y25a{bottom:518.239580pt;}
.y220{bottom:518.572913pt;}
.y2fb{bottom:518.697913pt;}
.y1df{bottom:519.187494pt;}
.y2d1{bottom:519.437500pt;}
.y2dc{bottom:520.364580pt;}
.y3ba{bottom:520.895833pt;}
.y57{bottom:522.703127pt;}
.y1d1{bottom:524.166660pt;}
.y470{bottom:524.416660pt;}
.y3c9{bottom:525.479169pt;}
.yf3{bottom:525.999993pt;}
.y209{bottom:526.776047pt;}
.y362{bottom:527.958327pt;}
.y298{bottom:529.499993pt;}
.y4c3{bottom:530.020833pt;}
.y91{bottom:530.434900pt;}
.y3e2{bottom:531.052087pt;}
.yb3{bottom:531.903647pt;}
.y382{bottom:532.281247pt;}
.y43d{bottom:532.291660pt;}
.y14a{bottom:532.374993pt;}
.y10a{bottom:533.369793pt;}
.y4fe{bottom:533.374993pt;}
.y481{bottom:534.010420pt;}
.y286{bottom:534.833327pt;}
.y41f{bottom:535.333327pt;}
.y184{bottom:535.479169pt;}
.y31d{bottom:536.302087pt;}
.y44a{bottom:536.697913pt;}
.y4eb{bottom:537.635420pt;}
.y17b{bottom:537.895833pt;}
.y392{bottom:538.333327pt;}
.y345{bottom:539.166660pt;}
.y6e{bottom:539.489580pt;}
.y158{bottom:540.197913pt;}
.y4d7{bottom:540.499993pt;}
.ye9{bottom:541.361980pt;}
.y236{bottom:541.572913pt;}
.y2e8{bottom:541.687500pt;}
.y370{bottom:542.218753pt;}
.y461{bottom:542.229167pt;}
.y2bf{bottom:542.427087pt;}
.y516{bottom:542.562500pt;}
.y9b{bottom:542.567713pt;}
.y1{bottom:542.569007pt;}
.y18b{bottom:542.572913pt;}
.y4e4{bottom:542.749993pt;}
.y412{bottom:543.447913pt;}
.y125{bottom:543.874993pt;}
.y1ac{bottom:544.869793pt;}
.y2a7{bottom:545.364580pt;}
.y259{bottom:545.833327pt;}
.y21f{bottom:546.177087pt;}
.y2fa{bottom:546.291660pt;}
.y2d0{bottom:547.020833pt;}
.y139{bottom:547.093753pt;}
.y3f3{bottom:547.510421pt;}
.y331{bottom:547.572913pt;}
.y56{bottom:550.300780pt;}
.y3c8{bottom:551.447916pt;}
.y3b9{bottom:552.916660pt;}
.yf2{bottom:553.596353pt;}
.y1de{bottom:555.984374pt;}
.y46f{bottom:556.437500pt;}
.y26d{bottom:557.093753pt;}
.y90{bottom:558.031247pt;}
.y1f{bottom:558.667647pt;}
.y4ca{bottom:558.947913pt;}
.yb2{bottom:559.499993pt;}
.y149{bottom:559.968753pt;}
.y4fd{bottom:560.958327pt;}
.y109{bottom:560.968753pt;}
.y4c2{bottom:562.041660pt;}
.y285{bottom:562.427087pt;}
.y43c{bottom:564.291660pt;}
.y381{bottom:564.302087pt;}
.y17a{bottom:565.494793pt;}
.y2f3{bottom:565.874996pt;}
.y480{bottom:566.010420pt;}
.y183{bottom:567.677076pt;}
.y157{bottom:567.796873pt;}
.y31c{bottom:568.312500pt;}
.ye8{bottom:568.958327pt;}
.y1f3{bottom:569.166660pt;}
.y2e7{bottom:569.291660pt;}
.y39d{bottom:569.416661pt;}
.y4ea{bottom:569.645833pt;}
.y2be{bottom:570.020833pt;}
.y30{bottom:570.166660pt;}
.y357{bottom:570.343753pt;}
.y124{bottom:571.468753pt;}
.y1ab{bottom:572.463540pt;}
.y4d6{bottom:572.510420pt;}
.y258{bottom:573.437500pt;}
.y21e{bottom:573.770833pt;}
.y453{bottom:574.229167pt;}
.y36f{bottom:574.239580pt;}
.y2cf{bottom:574.624993pt;}
.y138{bottom:574.692713pt;}
.y229{bottom:574.697913pt;}
.y4e3{bottom:574.760420pt;}
.y1d0{bottom:579.369793pt;}
.y330{bottom:579.583327pt;}
.y3ac{bottom:580.831904pt;}
.yf1{bottom:581.192713pt;}
.y208{bottom:581.968753pt;}
.y26c{bottom:584.687500pt;}
.y3fe{bottom:584.937500pt;}
.y8f{bottom:585.630207pt;}
.y1e{bottom:586.265300pt;}
.y108{bottom:588.562500pt;}
.y4fc{bottom:588.572913pt;}
.y3e1{bottom:589.729167pt;}
.y284{bottom:590.020833pt;}
.y24a{bottom:590.677076pt;}
.y4c9{bottom:590.958327pt;}
.y3f2{bottom:592.322916pt;}
.y179{bottom:593.093753pt;}
.y297{bottom:593.468743pt;}
.y41e{bottom:594.010421pt;}
.y4c1{bottom:594.062500pt;}
.y6d{bottom:594.684900pt;}
.y49c{bottom:595.374994pt;}
.y43b{bottom:596.312500pt;}
.y1f2{bottom:596.770833pt;}
.y391{bottom:597.010420pt;}
.y308{bottom:597.624993pt;}
.y1bc{bottom:597.760420pt;}
.y2f{bottom:597.764327pt;}
.y9a{bottom:597.765620pt;}
.y515{bottom:597.770833pt;}
.y344{bottom:597.843753pt;}
.y47f{bottom:598.020833pt;}
.y2f2{bottom:598.072916pt;}
.y2a6{bottom:599.624993pt;}
.y156{bottom:599.839619pt;}
.y1aa{bottom:600.062500pt;}
.y31b{bottom:600.322913pt;}
.y2f9{bottom:600.562500pt;}
.y3d3{bottom:600.895833pt;}
.y257{bottom:601.031247pt;}
.y21d{bottom:601.369793pt;}
.y499{bottom:601.437500pt;}
.y449{bottom:601.446478pt;}
.y411{bottom:602.124993pt;}
.y2ce{bottom:602.218753pt;}
.y137{bottom:602.291660pt;}
.y356{bottom:602.364580pt;}
.y86{bottom:603.835811pt;}
.y55{bottom:605.496100pt;}
.y36e{bottom:606.249993pt;}
.y1cf{bottom:606.963540pt;}
.yf0{bottom:608.791660pt;}
.y207{bottom:609.572913pt;}
.y3b8{bottom:611.593753pt;}
.y47a{bottom:611.604167pt;}
.y26b{bottom:612.291660pt;}
.y8e{bottom:613.226567pt;}
.y1d{bottom:613.862953pt;}
.y39c{bottom:614.218743pt;}
.yb1{bottom:614.695313pt;}
.y148{bottom:615.166660pt;}
.y107{bottom:616.161460pt;}
.y4fb{bottom:616.166660pt;}
.y3fd{bottom:616.937500pt;}
.y316{bottom:617.624993pt;}
.y3f1{bottom:618.281249pt;}
.y3ab{bottom:619.572916pt;}
.y178{bottom:620.687500pt;}
.y46e{bottom:621.175651pt;}
.y3e0{bottom:621.739580pt;}
.y6c{bottom:622.281247pt;}
.y155{bottom:622.802076pt;}
.y249{bottom:622.874996pt;}
.y380{bottom:622.979167pt;}
.y2e6{bottom:623.562500pt;}
.ye7{bottom:624.156247pt;}
.y2bd{bottom:624.291660pt;}
.y1f1{bottom:624.364580pt;}
.y361{bottom:624.717318pt;}
.y307{bottom:625.218753pt;}
.y50d{bottom:625.354167pt;}
.y2e{bottom:625.361980pt;}
.y115{bottom:625.364580pt;}
.y296{bottom:625.656249pt;}
.y4c0{bottom:626.072913pt;}
.y123{bottom:626.666660pt;}
.y2a5{bottom:627.218753pt;}
.y2f8{bottom:628.145833pt;}
.y256{bottom:628.624993pt;}
.y21c{bottom:628.963540pt;}
.y390{bottom:629.020833pt;}
.y2cd{bottom:629.822913pt;}
.y343{bottom:629.864580pt;}
.y136{bottom:629.890620pt;}
.y4d5{bottom:631.187500pt;}
.y31a{bottom:632.333327pt;}
.y3d2{bottom:632.916660pt;}
.y54{bottom:633.093753pt;}
.y4e2{bottom:633.437501pt;}
.y498{bottom:633.447913pt;}
.y410{bottom:634.145833pt;}
.y355{bottom:634.374993pt;}
.y4e9{bottom:634.404811pt;}
.y1ce{bottom:634.557287pt;}
.yef{bottom:636.390620pt;}
.y206{bottom:637.166660pt;}
.y32f{bottom:638.260420pt;}
.y41d{bottom:640.041667pt;}
.y39b{bottom:640.197916pt;}
.yb0{bottom:642.294273pt;}
.y147{bottom:642.765620pt;}
.y4b6{bottom:643.604167pt;}
.y3b7{bottom:643.614580pt;}
.y168{bottom:643.760420pt;}
.y283{bottom:644.291660pt;}
.y315{bottom:645.218753pt;}
.y3aa{bottom:645.531249pt;}
.y3c7{bottom:648.958327pt;}
.y6b{bottom:649.880207pt;}
.ye6{bottom:651.752607pt;}
.y2bc{bottom:651.885420pt;}
.y245{bottom:651.958327pt;}
.y1f0{bottom:651.963540pt;}
.y99{bottom:652.958327pt;}
.y3d{bottom:652.959633pt;}
.y18a{bottom:652.963540pt;}
.y8d{bottom:653.602863pt;}
.y3df{bottom:653.749993pt;}
.y122{bottom:654.265620pt;}
.y2a4{bottom:654.822913pt;}
.y37f{bottom:654.989580pt;}
.y43a{bottom:654.999993pt;}
.y154{bottom:654.999996pt;}
.y1a9{bottom:655.260420pt;}
.y2f7{bottom:655.749993pt;}
.y255{bottom:656.229167pt;}
.y2cc{bottom:657.416660pt;}
.y135{bottom:657.489580pt;}
.y46d{bottom:659.906249pt;}
.y53{bottom:660.691407pt;}
.y38f{bottom:661.041660pt;}
.y342{bottom:661.874993pt;}
.y1cd{bottom:662.156247pt;}
.y47e{bottom:662.779811pt;}
.y4d4{bottom:663.197913pt;}
.y360{bottom:663.458329pt;}
.yee{bottom:663.986980pt;}
.y319{bottom:664.354167pt;}
.y205{bottom:664.770833pt;}
.y36d{bottom:664.937500pt;}
.y497{bottom:665.447913pt;}
.y40f{bottom:666.156247pt;}
.y354{bottom:666.385420pt;}
.y26a{bottom:666.562500pt;}
.y1c{bottom:669.058273pt;}
.y41c{bottom:669.708334pt;}
.yaf{bottom:669.890620pt;}
.y32e{bottom:670.270833pt;}
.y146{bottom:670.364580pt;}
.y4fa{bottom:671.354167pt;}
.y106{bottom:671.359380pt;}
.y282{bottom:671.885420pt;}
.y4e8{bottom:673.135409pt;}
.y3b6{bottom:675.624993pt;}
.y177{bottom:675.885420pt;}
.y6a{bottom:677.476567pt;}
.y4e1{bottom:678.260409pt;}
.y2bb{bottom:679.489580pt;}
.y1ef{bottom:679.557287pt;}
.y244{bottom:679.562500pt;}
.y2e5{bottom:679.927076pt;}
.ye5{bottom:680.291662pt;}
.y2d{bottom:680.557287pt;}
.y23e{bottom:680.562500pt;}
.y121{bottom:681.864580pt;}
.y295{bottom:682.416660pt;}
.y1a8{bottom:682.854167pt;}
.y21b{bottom:684.156247pt;}
.y4bf{bottom:684.749993pt;}
.y3de{bottom:685.770833pt;}
.y8c{bottom:685.799476pt;}
.y46c{bottom:685.885409pt;}
.y37e{bottom:686.999993pt;}
.y439{bottom:687.010420pt;}
.y52{bottom:688.289060pt;}
.y1cc{bottom:689.760420pt;}
.yed{bottom:691.583327pt;}
.y204{bottom:692.364580pt;}
.y42f{bottom:693.052087pt;}
.y341{bottom:693.885420pt;}
.y4d3{bottom:695.208327pt;}
.y1b{bottom:696.655927pt;}
.y36c{bottom:696.937500pt;}
.y460{bottom:696.947913pt;}
.yae{bottom:697.489580pt;}
.y145{bottom:697.958327pt;}
.y40e{bottom:698.166660pt;}
.y4f9{bottom:698.947913pt;}
.y105{bottom:698.958327pt;}
.y281{bottom:699.489580pt;}
.y32d{bottom:702.291660pt;}
.y47d{bottom:702.729161pt;}
.y269{bottom:702.927076pt;}
.y176{bottom:703.484380pt;}
.y4e0{bottom:704.208329pt;}
.y69{bottom:705.075527pt;}
.y2ba{bottom:707.083327pt;}
.y235{bottom:707.156247pt;}
.y3c6{bottom:707.635420pt;}
.y23d{bottom:708.145833pt;}
.y189{bottom:708.151047pt;}
.y2c{bottom:708.154953pt;}
.y98{bottom:708.156247pt;}
.y318{bottom:709.156249pt;}
.y120{bottom:709.458327pt;}
.y294{bottom:710.020833pt;}
.y1a7{bottom:710.458327pt;}
.y254{bottom:710.489580pt;}
.y2cb{bottom:711.677087pt;}
.y21a{bottom:711.760420pt;}
.y51{bottom:715.886713pt;}
.y4be{bottom:716.760420pt;}
.y1cb{bottom:717.354167pt;}
.y3dd{bottom:717.770833pt;}
.y438{bottom:719.010420pt;}
.y37d{bottom:719.020833pt;}
.y496{bottom:724.135420pt;}
.y1a{bottom:724.253580pt;}
.yad{bottom:725.085940pt;}
.y38e{bottom:725.790238pt;}
.y104{bottom:726.552087pt;}
.y4f8{bottom:726.562500pt;}
.y280{bottom:727.083327pt;}
.y4d2{bottom:727.218754pt;}
.y36b{bottom:728.958327pt;}
.y40d{bottom:730.187500pt;}
.y175{bottom:731.083327pt;}
.y353{bottom:731.133984pt;}
.y47c{bottom:732.416667pt;}
.y68{bottom:734.184247pt;}
.y3a9{bottom:734.302087pt;}
.y45b{bottom:734.312500pt;}
.y306{bottom:734.687500pt;}
.y1ee{bottom:734.749993pt;}
.y268{bottom:735.124996pt;}
.y130{bottom:735.749993pt;}
.y2b{bottom:735.752607pt;}
.y50c{bottom:735.760420pt;}
.y514{bottom:735.770833pt;}
.y2db{bottom:736.687500pt;}
.y11f{bottom:737.057287pt;}
.y293{bottom:737.614580pt;}
.y1a6{bottom:738.052087pt;}
.y253{bottom:738.083327pt;}
.y219{bottom:739.354167pt;}
.y50{bottom:743.484380pt;}
.y144{bottom:747.062503pt;}
.y203{bottom:747.557287pt;}
.y4bd{bottom:748.770833pt;}
.y3dc{bottom:749.791660pt;}
.y437{bottom:751.020833pt;}
.y37c{bottom:751.031247pt;}
.y42e{bottom:751.729167pt;}
.y19{bottom:751.851233pt;}
.y340{bottom:752.562500pt;}
.yac{bottom:752.684900pt;}
.y4f7{bottom:754.145833pt;}
.y103{bottom:754.151047pt;}
.y314{bottom:754.687500pt;}
.y495{bottom:756.145833pt;}
.y174{bottom:758.677087pt;}
.y448{bottom:760.958327pt;}
.y32c{bottom:760.968753pt;}
.y2b9{bottom:761.343753pt;}
.y40c{bottom:762.197913pt;}
.y1ed{bottom:762.354167pt;}
.y2ca{bottom:762.718743pt;}
.yc5{bottom:763.348953pt;}
.y10{bottom:763.350260pt;}
.y188{bottom:763.354167pt;}
.y2a3{bottom:764.281247pt;}
.y38d{bottom:764.531249pt;}
.y1a5{bottom:765.651047pt;}
.y252{bottom:765.687500pt;}
.y3a8{bottom:766.312500pt;}
.y4a9{bottom:766.322913pt;}
.y352{bottom:769.874996pt;}
.y4d1{bottom:770.812500pt;}
.y4f{bottom:771.082033pt;}
.y1ca{bottom:774.661463pt;}
.y202{bottom:775.156247pt;}
.y46b{bottom:777.697913pt;}
.y143{bottom:779.260409pt;}
.yab{bottom:780.281247pt;}
.y4bc{bottom:780.791660pt;}
.y27f{bottom:781.343753pt;}
.y102{bottom:781.749993pt;}
.y313{bottom:782.270833pt;}
.y436{bottom:783.041660pt;}
.y42d{bottom:783.749993pt;}
.y238{bottom:783.854169pt;}
.y11e{bottom:784.052087pt;}
.y33f{bottom:784.583327pt;}
.y494{bottom:788.156247pt;}
.y2b8{bottom:788.947913pt;}
.y1ec{bottom:789.947913pt;}
.y38c{bottom:790.489583pt;}
.y513{bottom:790.937500pt;}
.yf{bottom:790.947913pt;}
.y292{bottom:791.874993pt;}
.y32b{bottom:792.979167pt;}
.y1a4{bottom:793.244793pt;}
.y40b{bottom:794.208327pt;}
.y218{bottom:794.552087pt;}
.y351{bottom:795.843743pt;}
.y4b5{bottom:798.322913pt;}
.y3a7{bottom:798.333327pt;}
.y4e{bottom:798.679687pt;}
.y4d0{bottom:800.958329pt;}
.y201{bottom:802.749993pt;}
.y1c9{bottom:806.854169pt;}
.y18{bottom:807.046553pt;}
.yaa{bottom:807.880207pt;}
.y3db{bottom:808.479167pt;}
.y27e{bottom:808.947913pt;}
.y101{bottom:809.343753pt;}
.y4f6{bottom:809.354167pt;}
.y46a{bottom:809.708327pt;}
.y312{bottom:809.874993pt;}
.y11d{bottom:811.645833pt;}
.y42c{bottom:815.760420pt;}
.y37b{bottom:815.779811pt;}
.y173{bottom:815.984369pt;}
.y237{bottom:816.052076pt;}
.y2b7{bottom:816.541660pt;}
.y33e{bottom:816.593753pt;}
.y1eb{bottom:817.552087pt;}
.y191{bottom:818.541660pt;}
.ye{bottom:818.545567pt;}
.yc4{bottom:818.546873pt;}
.y267{bottom:819.479167pt;}
.y251{bottom:819.947913pt;}
.y1a3{bottom:820.843753pt;}
.y217{bottom:822.151047pt;}
.y32a{bottom:824.999993pt;}
.y40a{bottom:826.218753pt;}
.y4d{bottom:826.277340pt;}
.y4cf{bottom:826.927076pt;}
.y3fc{bottom:830.343753pt;}
.y493{bottom:832.968743pt;}
.y17{bottom:834.644207pt;}
.ya9{bottom:835.476567pt;}
.y27d{bottom:836.541660pt;}
.y4f5{bottom:836.947913pt;}
.y311{bottom:837.468753pt;}
.y11c{bottom:839.244793pt;}
.y4bb{bottom:839.458327pt;}
.y469{bottom:841.729167pt;}
.y2b6{bottom:844.135420pt;}
.y234{bottom:845.145833pt;}
.y50b{bottom:846.135420pt;}
.yd{bottom:846.143233pt;}
.y12f{bottom:846.145833pt;}
.y266{bottom:847.072913pt;}
.y250{bottom:847.552087pt;}
.y42b{bottom:847.770833pt;}
.y435{bottom:847.790238pt;}
.y172{bottom:848.182289pt;}
.y1a2{bottom:848.437500pt;}
.y33d{bottom:848.604167pt;}
.y200{bottom:849.744793pt;}
.y3f0{bottom:851.666660pt;}
.y4c{bottom:853.874993pt;}
.y37a{bottom:854.520836pt;}
.y350{bottom:857.010420pt;}
.y3da{bottom:858.133985pt;}
.y492{bottom:858.947916pt;}
.y16{bottom:862.241860pt;}
.ya8{bottom:863.075527pt;}
.y27c{bottom:864.135420pt;}
.y167{bottom:864.541660pt;}
.y100{bottom:866.656249pt;}
.y11b{bottom:866.843753pt;}
.y4ba{bottom:871.479167pt;}
.y305{bottom:871.739580pt;}
.y1ea{bottom:872.744793pt;}
.y243{bottom:872.749993pt;}
.yc3{bottom:873.739580pt;}
.yc{bottom:873.740887pt;}
.y187{bottom:873.744793pt;}
.y23c{bottom:873.749993pt;}
.y265{bottom:874.677087pt;}
.y24f{bottom:875.145833pt;}
.y1a1{bottom:876.041660pt;}
.y1ff{bottom:877.343753pt;}
.y42a{bottom:879.781247pt;}
.y33c{bottom:880.614583pt;}
.y4b{bottom:881.472660pt;}
.y3d9{bottom:882.208332pt;}
.y329{bottom:883.677087pt;}
.y447{bottom:883.687500pt;}
.y409{bottom:884.895834pt;}
.y434{bottom:886.531249pt;}
.y34f{bottom:889.020833pt;}
.y15{bottom:889.839519pt;}
.ya7{bottom:890.671875pt;}
.y27b{bottom:891.729167pt;}
.y4f4{bottom:892.135416pt;}
.y166{bottom:892.140625pt;}
.y11a{bottom:894.437500pt;}
.y2b5{bottom:898.406250pt;}
.yff{bottom:898.848957pt;}
.y242{bottom:900.333333pt;}
.y1e9{bottom:900.338541pt;}
.y23b{bottom:901.333333pt;}
.yb{bottom:901.338541pt;}
.y291{bottom:902.270833pt;}
.y24e{bottom:902.750000pt;}
.y4b9{bottom:903.500000pt;}
.y1fe{bottom:904.937500pt;}
.y468{bottom:905.750000pt;}
.y328{bottom:915.687500pt;}
.y14{bottom:917.437175pt;}
.ya6{bottom:918.270833pt;}
.y4f3{bottom:919.729167pt;}
.y165{bottom:919.739583pt;}
.y34e{bottom:921.031249pt;}
.y47b{bottom:921.041667pt;}
.y4a{bottom:921.847004pt;}
.y119{bottom:922.036459pt;}
.y33b{bottom:924.208333pt;}
.y304{bottom:926.000001pt;}
.y1e8{bottom:927.937500pt;}
.y186{bottom:928.932292pt;}
.ya{bottom:928.936197pt;}
.yc2{bottom:928.937500pt;}
.y408{bottom:929.708332pt;}
.y290{bottom:929.875000pt;}
.y24d{bottom:930.333333pt;}
.y1a0{bottom:931.239583pt;}
.y1fd{bottom:932.541667pt;}
.y4b8{bottom:935.500001pt;}
.y429{bottom:938.458334pt;}
.y310{bottom:940.666667pt;}
.y27a{bottom:942.781249pt;}
.y13{bottom:945.034831pt;}
.y4f2{bottom:947.333333pt;}
.y433{bottom:947.697916pt;}
.y327{bottom:947.708333pt;}
.y2b4{bottom:949.447916pt;}
.y49{bottom:954.044271pt;}
.y233{bottom:954.084407pt;}
.y407{bottom:955.677083pt;}
.yfe{bottom:956.531249pt;}
.y9{bottom:956.533855pt;}
.y50a{bottom:956.541667pt;}
.y19f{bottom:958.833333pt;}
.y1fc{bottom:960.135416pt;}
.y467{bottom:964.437501pt;}
.y279{bottom:974.968749pt;}
.y118{bottom:977.041665pt;}
.y4b7{bottom:979.104167pt;}
.y326{bottom:979.708333pt;}
.y24c{bottom:981.645832pt;}
.y33a{bottom:983.270832pt;}
.yc1{bottom:984.130208pt;}
.y3c{bottom:984.131511pt;}
.y185{bottom:984.135416pt;}
.y51b{bottom:984.145833pt;}
.y19e{bottom:986.432292pt;}
.y12{bottom:1005.505208pt;}
.y117{bottom:1009.239583pt;}
.y8{bottom:1011.729167pt;}
.ha{height:28.609375pt;}
.h7{height:28.687500pt;}
.h10{height:31.556251pt;}
.hb{height:34.425001pt;}
.hf{height:43.593750pt;}
.h8{height:47.812499pt;}
.h4{height:52.593751pt;}
.hc{height:56.312500pt;}
.h1{height:56.843750pt;}
.h2{height:57.375000pt;}
.hd{height:58.073440pt;}
.h6{height:58.710940pt;}
.h9{height:66.317706pt;}
.he{height:68.124219pt;}
.h11{height:68.496095pt;}
.h12{height:75.791669pt;}
.h13{height:77.856249pt;}
.h5{height:80.528643pt;}
.h3{height:95.666667pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x7{left:96.000000pt;}
.x13{left:101.000000pt;}
.x10{left:107.000000pt;}
.xa{left:120.000000pt;}
.xb{left:144.000000pt;}
.x3{left:149.432426pt;}
.xc{left:168.000000pt;}
.x4{left:261.764450pt;}
.x6{left:272.549610pt;}
.x1{left:284.842580pt;}
.x5{left:299.170700pt;}
.x2{left:323.979290pt;}
.x9{left:355.935270pt;}
.xf{left:673.247440pt;}
.x11{left:674.336000pt;}
.x12{left:675.424560pt;}
.xd{left:681.398560pt;}
.xe{left:682.487120pt;}
.x8{left:689.549680pt;}
}




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