
    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_4351daf57d2d9341d708a55a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_ef8af719a9d5747d0d61f33f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_8a52b27cf78931f589387a28.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.961000;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_bd97d44b1f046a4a93e26d44.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.888000;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_72330eff315105128070ed3f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.710000;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_810c82dc0e32a1742b4accd1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_c0aaff6e73a4dae6d569ba96.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.856934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7ad7eced0a1f606c0259078d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.856934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f4731909a4e95a3749ea5b05.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.777000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0e2c3244959af166ae063c05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_21b2ec8515953a92be94565a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.191000;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:ffc;src:url('chunks/assets/font_438796e6c695ab76c9381655.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.482000;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:ffd;src:url('chunks/assets/font_ea5ed0ec1b02d5db2f9a4713.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.762000;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:ffe;src:url('chunks/assets/font_0d13dcde4b0c6d807cfb3edc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.429000;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:fff;src:url('chunks/assets/font_2fbb3b579f18345b98bacb8b.woff2')format("woff");}.fff{font-family:fff;line-height:0.442000;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:ff10;src:url('chunks/assets/font_6598687390811575f1fe7575.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.900000;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:ff11;src:url('chunks/assets/font_1a1be7500aad2244a74b5bc0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.479000;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:-23.910000px;}
.v2{vertical-align:-20.922000px;}
.v4{vertical-align:-9.000000px;}
.v8{vertical-align:-7.272000px;}
.v7{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:16.938000px;}
.v5{vertical-align:21.774000px;}
.v1{vertical-align:23.016000px;}
.lsd{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000144px;}
.ls12{letter-spacing:0.000222px;}
.ls1f{letter-spacing:0.000287px;}
.ls5{letter-spacing:0.000288px;}
.lsb{letter-spacing:0.000300px;}
.ls17{letter-spacing:0.000312px;}
.ls25{letter-spacing:0.000365px;}
.ls19{letter-spacing:0.000467px;}
.ls6{letter-spacing:0.000600px;}
.ls3a{letter-spacing:0.180270px;}
.ls2f{letter-spacing:0.222384px;}
.ls1b{letter-spacing:0.720148px;}
.ls3{letter-spacing:1.799964px;}
.ls2{letter-spacing:1.949961px;}
.ls26{letter-spacing:2.985120px;}
.ls20{letter-spacing:2.985983px;}
.ls2d{letter-spacing:2.987751px;}
.ls34{letter-spacing:2.991983px;}
.ls33{letter-spacing:3.060353px;}
.ls1{letter-spacing:3.119961px;}
.ls30{letter-spacing:3.168339px;}
.ls2a{letter-spacing:3.479704px;}
.ls2c{letter-spacing:3.822296px;}
.ls4{letter-spacing:3.899961px;}
.ls31{letter-spacing:4.140388px;}
.ls16{letter-spacing:9.996467px;}
.ls18{letter-spacing:10.002467px;}
.ls1a{letter-spacing:10.182270px;}
.ls3d{letter-spacing:11.034294px;}
.ls0{letter-spacing:11.040294px;}
.ls1e{letter-spacing:12.258144px;}
.ls24{letter-spacing:12.416880px;}
.ls23{letter-spacing:12.422880px;}
.lsf{letter-spacing:13.158288px;}
.ls8{letter-spacing:13.194600px;}
.ls29{letter-spacing:13.254144px;}
.ls28{letter-spacing:13.524144px;}
.ls11{letter-spacing:13.794144px;}
.ls2e{letter-spacing:13.794467px;}
.ls3c{letter-spacing:13.794600px;}
.lsc{letter-spacing:13.800144px;}
.ls10{letter-spacing:13.800288px;}
.ls14{letter-spacing:13.800312px;}
.ls32{letter-spacing:13.800467px;}
.ls3b{letter-spacing:13.800600px;}
.ls15{letter-spacing:14.202436px;}
.ls1c{letter-spacing:16.785120px;}
.ls1d{letter-spacing:16.787751px;}
.ls13{letter-spacing:18.000436px;}
.lsa{letter-spacing:21.831983px;}
.lse{letter-spacing:23.910300px;}
.ls9{letter-spacing:26.688288px;}
.ls22{letter-spacing:136.569983px;}
.ls27{letter-spacing:171.822222px;}
.ls21{letter-spacing:201.948222px;}
.ls37{letter-spacing:260.697983px;}
.ls35{letter-spacing:364.800222px;}
.ls39{letter-spacing:381.858222px;}
.ls36{letter-spacing:425.070288px;}
.ls38{letter-spacing:479.337983px;}
.ls2b{letter-spacing:659.808222px;}
.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;}
}
.ws172{word-spacing:-55.007542px;}
.ws13{word-spacing:-50.423542px;}
.ws173{word-spacing:-40.679661px;}
.ws16{word-spacing:-40.607662px;}
.ws11{word-spacing:-36.671542px;}
.ws55{word-spacing:-33.839662px;}
.ws1f{word-spacing:-32.044264px;}
.ws21{word-spacing:-31.798713px;}
.ws1d{word-spacing:-28.799712px;}
.ws78{word-spacing:-28.199718px;}
.ws6d{word-spacing:-27.551656px;}
.ws2f{word-spacing:-27.119661px;}
.ws12{word-spacing:-27.116941px;}
.ws10{word-spacing:-27.069733px;}
.ws3{word-spacing:-26.999700px;}
.wsc{word-spacing:-26.639734px;}
.ws35{word-spacing:-25.919712px;}
.ws177{word-spacing:-25.636954px;}
.ws17c{word-spacing:-25.636660px;}
.ws174{word-spacing:-25.630954px;}
.ws176{word-spacing:-25.630660px;}
.ws135{word-spacing:-25.379718px;}
.ws39{word-spacing:-23.975734px;}
.ws2{word-spacing:-23.039712px;}
.ws17f{word-spacing:-21.311734px;}
.ws6c{word-spacing:-18.839812px;}
.ws7c{word-spacing:-18.802848px;}
.ws51{word-spacing:-18.797136px;}
.ws7b{word-spacing:-18.796848px;}
.ws81{word-spacing:-18.796626px;}
.ws54{word-spacing:-18.796117px;}
.ws52{word-spacing:-18.771243px;}
.wsa{word-spacing:-18.599814px;}
.ws133{word-spacing:-18.211392px;}
.ws6f{word-spacing:-16.955812px;}
.ws5{word-spacing:-16.949661px;}
.ws168{word-spacing:-16.901812px;}
.ws9{word-spacing:-16.799664px;}
.ws14{word-spacing:-16.565849px;}
.ws60{word-spacing:-16.559834px;}
.ws15{word-spacing:-16.499850px;}
.ws22{word-spacing:-16.439836px;}
.ws23{word-spacing:-16.259837px;}
.wsff{word-spacing:-16.199838px;}
.ws5c{word-spacing:-16.019840px;}
.ws101{word-spacing:-15.899841px;}
.ws102{word-spacing:-15.885538px;}
.ws68{word-spacing:-15.839842px;}
.ws69{word-spacing:-15.779842px;}
.ws15c{word-spacing:-15.759910px;}
.ws28{word-spacing:-15.719843px;}
.ws27{word-spacing:-15.700180px;}
.ws19{word-spacing:-15.659843px;}
.ws120{word-spacing:-15.659083px;}
.ws119{word-spacing:-15.616423px;}
.ws26{word-spacing:-15.599844px;}
.wsaa{word-spacing:-15.551140px;}
.ws64{word-spacing:-15.539845px;}
.ws62{word-spacing:-15.537198px;}
.ws31{word-spacing:-15.479845px;}
.ws9f{word-spacing:-15.424265px;}
.ws53{word-spacing:-15.419846px;}
.ws79{word-spacing:-15.359846px;}
.ws1e{word-spacing:-15.299847px;}
.ws111{word-spacing:-15.239848px;}
.ws67{word-spacing:-15.179848px;}
.ws24{word-spacing:-15.119849px;}
.ws61{word-spacing:-15.062733px;}
.ws158{word-spacing:-15.062617px;}
.wsac{word-spacing:-15.062256px;}
.ws2c{word-spacing:-15.062194px;}
.wsa8{word-spacing:-15.062149px;}
.ws30{word-spacing:-15.062135px;}
.ws15b{word-spacing:-15.061643px;}
.ws155{word-spacing:-15.061600px;}
.ws18{word-spacing:-15.059849px;}
.ws10b{word-spacing:-15.058911px;}
.ws85{word-spacing:-15.058772px;}
.ws9c{word-spacing:-15.058726px;}
.ws7a{word-spacing:-15.058596px;}
.ws100{word-spacing:-15.058592px;}
.ws15d{word-spacing:-15.058567px;}
.ws82{word-spacing:-15.058508px;}
.ws56{word-spacing:-15.058438px;}
.ws10a{word-spacing:-15.058421px;}
.ws118{word-spacing:-15.058333px;}
.ws104{word-spacing:-15.058290px;}
.ws122{word-spacing:-15.058225px;}
.ws157{word-spacing:-15.058197px;}
.ws11d{word-spacing:-15.058194px;}
.ws11a{word-spacing:-15.058157px;}
.ws116{word-spacing:-15.058137px;}
.ws11b{word-spacing:-15.058112px;}
.ws130{word-spacing:-15.058037px;}
.ws5f{word-spacing:-15.057995px;}
.ws108{word-spacing:-15.057976px;}
.ws29{word-spacing:-15.057935px;}
.ws109{word-spacing:-15.057887px;}
.ws15a{word-spacing:-15.057778px;}
.ws2e{word-spacing:-15.057722px;}
.ws6a{word-spacing:-15.057591px;}
.ws65{word-spacing:-15.057472px;}
.ws159{word-spacing:-15.057468px;}
.ws105{word-spacing:-15.057302px;}
.ws2d{word-spacing:-15.056965px;}
.wsa9{word-spacing:-15.005140px;}
.ws131{word-spacing:-15.005136px;}
.ws2a{word-spacing:-15.004992px;}
.ws11e{word-spacing:-15.002205px;}
.ws110{word-spacing:-15.001948px;}
.ws20{word-spacing:-15.001867px;}
.ws115{word-spacing:-15.001742px;}
.ws17{word-spacing:-14.999850px;}
.ws66{word-spacing:-14.999309px;}
.ws5a{word-spacing:-14.999140px;}
.ws12f{word-spacing:-14.999136px;}
.ws2b{word-spacing:-14.998992px;}
.ws15e{word-spacing:-14.998806px;}
.ws113{word-spacing:-14.998639px;}
.ws11f{word-spacing:-14.998631px;}
.ws10e{word-spacing:-14.998552px;}
.ws5d{word-spacing:-14.998525px;}
.ws10d{word-spacing:-14.998510px;}
.ws107{word-spacing:-14.998487px;}
.ws84{word-spacing:-14.998461px;}
.ws10f{word-spacing:-14.998412px;}
.wsfe{word-spacing:-14.998285px;}
.ws121{word-spacing:-14.998128px;}
.ws57{word-spacing:-14.998111px;}
.ws156{word-spacing:-14.998054px;}
.ws58{word-spacing:-14.998045px;}
.ws5b{word-spacing:-14.997965px;}
.ws10c{word-spacing:-14.997806px;}
.ws103{word-spacing:-14.997796px;}
.ws11c{word-spacing:-14.997731px;}
.ws114{word-spacing:-14.997688px;}
.ws9b{word-spacing:-14.997650px;}
.ws112{word-spacing:-14.997606px;}
.ws106{word-spacing:-14.997529px;}
.ws5e{word-spacing:-14.997435px;}
.ws117{word-spacing:-14.997359px;}
.ws9e{word-spacing:-14.997312px;}
.ws63{word-spacing:-14.879851px;}
.ws4{word-spacing:-14.879814px;}
.wsa0{word-spacing:-14.819852px;}
.ws99{word-spacing:-14.759852px;}
.wsab{word-spacing:-14.519855px;}
.ws59{word-spacing:-14.459855px;}
.ws139{word-spacing:-14.417840px;}
.ws1c{word-spacing:-14.399856px;}
.ws9d{word-spacing:-14.339857px;}
.ws1a{word-spacing:-13.967825px;}
.ws134{word-spacing:-13.715848px;}
.wsf4{word-spacing:-13.554332px;}
.ws32{word-spacing:-13.553849px;}
.wse5{word-spacing:-13.553083px;}
.wsd9{word-spacing:-13.552911px;}
.wsa6{word-spacing:-13.552772px;}
.wsa7{word-spacing:-13.552726px;}
.ws165{word-spacing:-13.552712px;}
.ws164{word-spacing:-13.552666px;}
.wsa5{word-spacing:-13.552596px;}
.wsc3{word-spacing:-13.552592px;}
.ws16b{word-spacing:-13.552567px;}
.ws171{word-spacing:-13.552492px;}
.wsbf{word-spacing:-13.552423px;}
.wsb2{word-spacing:-13.552421px;}
.wsdf{word-spacing:-13.552373px;}
.wsbb{word-spacing:-13.552333px;}
.wscf{word-spacing:-13.552290px;}
.ws8f{word-spacing:-13.552265px;}
.ws16c{word-spacing:-13.552197px;}
.wse3{word-spacing:-13.552194px;}
.wse2{word-spacing:-13.552172px;}
.wscb{word-spacing:-13.552157px;}
.ws89{word-spacing:-13.552148px;}
.wsad{word-spacing:-13.552137px;}
.wsd5{word-spacing:-13.552112px;}
.ws16d{word-spacing:-13.552087px;}
.ws15f{word-spacing:-13.552037px;}
.ws40{word-spacing:-13.551995px;}
.wsd4{word-spacing:-13.551976px;}
.wsd8{word-spacing:-13.551887px;}
.wsb6{word-spacing:-13.551853px;}
.ws167{word-spacing:-13.551778px;}
.wsc9{word-spacing:-13.551735px;}
.ws160{word-spacing:-13.551695px;}
.ws4a{word-spacing:-13.551591px;}
.ws44{word-spacing:-13.551472px;}
.ws16a{word-spacing:-13.551468px;}
.wsf9{word-spacing:-13.551353px;}
.wsd1{word-spacing:-13.551302px;}
.ws4d{word-spacing:-13.551198px;}
.ws42{word-spacing:-13.550733px;}
.ws4f{word-spacing:-13.550675px;}
.ws137{word-spacing:-13.530584px;}
.wsb4{word-spacing:-13.505140px;}
.ws138{word-spacing:-13.504806px;}
.ws147{word-spacing:-13.503469px;}
.ws162{word-spacing:-13.502947px;}
.ws163{word-spacing:-13.502841px;}
.ws128{word-spacing:-13.501948px;}
.ws12d{word-spacing:-13.501742px;}
.ws4c{word-spacing:-13.499850px;}
.ws46{word-spacing:-13.499309px;}
.wsc5{word-spacing:-13.499234px;}
.ws3a{word-spacing:-13.499140px;}
.wsb3{word-spacing:-13.498856px;}
.ws48{word-spacing:-13.498778px;}
.ws91{word-spacing:-13.498772px;}
.ws93{word-spacing:-13.498727px;}
.ws13e{word-spacing:-13.498712px;}
.ws13c{word-spacing:-13.498667px;}
.wsf6{word-spacing:-13.498639px;}
.ws86{word-spacing:-13.498597px;}
.ws149{word-spacing:-13.498568px;}
.wsdd{word-spacing:-13.498552px;}
.ws3c{word-spacing:-13.498525px;}
.wsdb{word-spacing:-13.498510px;}
.ws153{word-spacing:-13.498492px;}
.wsd3{word-spacing:-13.498487px;}
.ws8b{word-spacing:-13.498461px;}
.wsfb{word-spacing:-13.498456px;}
.ws166{word-spacing:-13.498434px;}
.wsf0{word-spacing:-13.498412px;}
.ws169{word-spacing:-13.498390px;}
.wsb0{word-spacing:-13.498367px;}
.wsbd{word-spacing:-13.498285px;}
.ws14b{word-spacing:-13.498198px;}
.wsa1{word-spacing:-13.498148px;}
.wsf2{word-spacing:-13.498128px;}
.ws123{word-spacing:-13.498115px;}
.ws33{word-spacing:-13.498111px;}
.ws14c{word-spacing:-13.498087px;}
.ws143{word-spacing:-13.498054px;}
.ws13a{word-spacing:-13.498038px;}
.ws37{word-spacing:-13.497965px;}
.wsde{word-spacing:-13.497806px;}
.wscd{word-spacing:-13.497796px;}
.ws141{word-spacing:-13.497779px;}
.wsec{word-spacing:-13.497731px;}
.ws144{word-spacing:-13.497695px;}
.wsf7{word-spacing:-13.497688px;}
.ws8c{word-spacing:-13.497650px;}
.wseb{word-spacing:-13.497606px;}
.wsee{word-spacing:-13.497572px;}
.wsc8{word-spacing:-13.497538px;}
.wse7{word-spacing:-13.497529px;}
.ws161{word-spacing:-13.497469px;}
.ws3e{word-spacing:-13.497435px;}
.ws87{word-spacing:-13.497434px;}
.wsc1{word-spacing:-13.497417px;}
.wsb7{word-spacing:-13.497359px;}
.ws95{word-spacing:-13.497312px;}
.wsb9{word-spacing:-13.496987px;}
.ws16f{word-spacing:-13.496947px;}
.ws170{word-spacing:-13.496841px;}
.wsea{word-spacing:-13.495948px;}
.wsfd{word-spacing:-13.495742px;}
.ws150{word-spacing:-13.448947px;}
.ws152{word-spacing:-13.448842px;}
.ws140{word-spacing:-13.444435px;}
.ws146{word-spacing:-13.444390px;}
.ws97{word-spacing:-13.443650px;}
.wsd{word-spacing:-13.199868px;}
.ws34{word-spacing:-12.959856px;}
.wsae{word-spacing:-12.905857px;}
.ws6e{word-spacing:-12.527843px;}
.ws189{word-spacing:-12.479844px;}
.ws80{word-spacing:-12.431845px;}
.ws179{word-spacing:-12.335846px;}
.ws198{word-spacing:-12.287846px;}
.ws18b{word-spacing:-12.215080px;}
.ws184{word-spacing:-12.191848px;}
.ws196{word-spacing:-12.143848px;}
.ws197{word-spacing:-12.095849px;}
.wsf{word-spacing:-12.047849px;}
.ws1a2{word-spacing:-12.047080px;}
.ws186{word-spacing:-12.045299px;}
.ws1a0{word-spacing:-12.004687px;}
.ws187{word-spacing:-12.004202px;}
.ws1a7{word-spacing:-12.003847px;}
.ws18e{word-spacing:-12.003474px;}
.ws195{word-spacing:-12.003448px;}
.ws19b{word-spacing:-12.003269px;}
.ws193{word-spacing:-12.003038px;}
.ws194{word-spacing:-12.002635px;}
.ws191{word-spacing:-12.002474px;}
.ws19f{word-spacing:-12.002000px;}
.ws18c{word-spacing:-12.001351px;}
.ws180{word-spacing:-11.999874px;}
.ws1{word-spacing:-11.999850px;}
.ws7f{word-spacing:-11.997535px;}
.ws19e{word-spacing:-11.956100px;}
.ws1a1{word-spacing:-11.956035px;}
.ws1af{word-spacing:-11.955974px;}
.ws178{word-spacing:-11.955756px;}
.ws185{word-spacing:-11.711854px;}
.ws1a3{word-spacing:-11.569327px;}
.ws0{word-spacing:-11.569306px;}
.ws199{word-spacing:-11.568278px;}
.ws175{word-spacing:-11.567855px;}
.ws1ad{word-spacing:-11.565752px;}
.ws19a{word-spacing:-11.524133px;}
.ws19d{word-spacing:-11.523785px;}
.ws1b0{word-spacing:-11.523736px;}
.ws192{word-spacing:-11.523550px;}
.ws1a5{word-spacing:-11.522885px;}
.ws1aa{word-spacing:-11.522639px;}
.ws18a{word-spacing:-11.522575px;}
.ws1b{word-spacing:-11.519856px;}
.ws18f{word-spacing:-11.519620px;}
.ws190{word-spacing:-11.518009px;}
.ws1ae{word-spacing:-11.517320px;}
.ws17a{word-spacing:-11.517052px;}
.ws1a6{word-spacing:-11.516887px;}
.ws17d{word-spacing:-11.476367px;}
.ws181{word-spacing:-11.476009px;}
.ws1a8{word-spacing:-11.475878px;}
.ws19c{word-spacing:-11.475053px;}
.ws1ab{word-spacing:-11.474082px;}
.ws18d{word-spacing:-11.473772px;}
.ws1ac{word-spacing:-11.473128px;}
.ws1a4{word-spacing:-10.700818px;}
.ws7{word-spacing:-10.240649px;}
.ws6{word-spacing:-10.199850px;}
.ws182{word-spacing:-8.781042px;}
.ws188{word-spacing:-8.780242px;}
.ws183{word-spacing:-8.738242px;}
.ws17b{word-spacing:-8.686650px;}
.ws25{word-spacing:-5.759942px;}
.ws8{word-spacing:-5.639887px;}
.ws17e{word-spacing:-5.038692px;}
.ws6b{word-spacing:-3.446640px;}
.ws136{word-spacing:-2.421804px;}
.ws83{word-spacing:-0.059999px;}
.ws7e{word-spacing:-0.053999px;}
.ws1a9{word-spacing:-0.047999px;}
.wse{word-spacing:-0.035999px;}
.wsb{word-spacing:0.000000px;}
.ws9a{word-spacing:13.704934px;}
.ws98{word-spacing:13.734934px;}
.ws16e{word-spacing:99.574894px;}
.ws77{word-spacing:107.620804px;}
.ws73{word-spacing:112.858746px;}
.ws132{word-spacing:147.444510px;}
.ws75{word-spacing:154.752510px;}
.ws151{word-spacing:168.588510px;}
.ws7d{word-spacing:170.136510px;}
.ws74{word-spacing:179.430510px;}
.ws96{word-spacing:179.520510px;}
.ws88{word-spacing:179.522993px;}
.ws12e{word-spacing:180.816510px;}
.ws8e{word-spacing:193.992510px;}
.ws8d{word-spacing:209.922510px;}
.ws148{word-spacing:215.568510px;}
.ws50{word-spacing:226.716510px;}
.ws43{word-spacing:231.954510px;}
.ws145{word-spacing:235.980510px;}
.ws142{word-spacing:243.486510px;}
.ws126{word-spacing:248.436510px;}
.ws8a{word-spacing:254.796510px;}
.ws90{word-spacing:265.326510px;}
.ws13b{word-spacing:266.814510px;}
.ws14f{word-spacing:268.272510px;}
.ws14d{word-spacing:271.242510px;}
.ws3b{word-spacing:273.270510px;}
.ws4e{word-spacing:273.804510px;}
.ws71{word-spacing:278.042878px;}
.ws12b{word-spacing:278.767591px;}
.ws14e{word-spacing:281.178510px;}
.wsf5{word-spacing:292.290510px;}
.ws3f{word-spacing:295.080510px;}
.ws45{word-spacing:298.482510px;}
.ws94{word-spacing:306.852510px;}
.ws154{word-spacing:307.692510px;}
.ws4b{word-spacing:309.174510px;}
.ws92{word-spacing:310.956510px;}
.ws14a{word-spacing:314.496510px;}
.ws125{word-spacing:315.121591px;}
.ws12c{word-spacing:315.379103px;}
.ws13d{word-spacing:323.406510px;}
.ws76{word-spacing:332.407592px;}
.ws129{word-spacing:336.870864px;}
.ws38{word-spacing:342.762510px;}
.ws41{word-spacing:345.570510px;}
.ws13f{word-spacing:353.430510px;}
.ws12a{word-spacing:353.721012px;}
.ws36{word-spacing:355.932510px;}
.wsa3{word-spacing:368.929103px;}
.ws127{word-spacing:373.230864px;}
.ws72{word-spacing:376.363103px;}
.ws124{word-spacing:390.129011px;}
.ws3d{word-spacing:393.192510px;}
.ws47{word-spacing:397.296510px;}
.wsa4{word-spacing:400.129103px;}
.ws49{word-spacing:415.926510px;}
.wsa2{word-spacing:416.749103px;}
.ws70{word-spacing:518.515103px;}
.wsba{word-spacing:557.160510px;}
.wsfa{word-spacing:564.234510px;}
.wsb5{word-spacing:575.634510px;}
.wse8{word-spacing:579.996510px;}
.wsef{word-spacing:583.830510px;}
.wsd2{word-spacing:585.558510px;}
.wsb8{word-spacing:590.580510px;}
.wsf8{word-spacing:594.252510px;}
.wsc2{word-spacing:595.818510px;}
.wsed{word-spacing:598.140510px;}
.wsca{word-spacing:624.492510px;}
.wsce{word-spacing:629.946510px;}
.wse0{word-spacing:646.200510px;}
.wsd6{word-spacing:658.404510px;}
.wsf1{word-spacing:659.430510px;}
.wsaf{word-spacing:660.672510px;}
.wscc{word-spacing:662.508510px;}
.wsfc{word-spacing:663.372510px;}
.wse4{word-spacing:665.802510px;}
.wse9{word-spacing:666.234510px;}
.wsbe{word-spacing:673.902510px;}
.wsd0{word-spacing:674.442510px;}
.wsbc{word-spacing:678.276510px;}
.wsb1{word-spacing:681.354510px;}
.wse1{word-spacing:681.948510px;}
.wsc0{word-spacing:686.376510px;}
.wsd7{word-spacing:692.154510px;}
.wsdc{word-spacing:694.152510px;}
.wsc4{word-spacing:701.604510px;}
.wse6{word-spacing:719.910510px;}
.wsda{word-spacing:730.332510px;}
.wsc7{word-spacing:733.459729px;}
.wsf3{word-spacing:745.844222px;}
.wsc6{word-spacing:759.330510px;}
._122{margin-left:-18.050550px;}
._a3{margin-left:-9.473726px;}
._b{margin-left:-7.430831px;}
._c{margin-left:-5.639944px;}
._9{margin-left:-3.932887px;}
._2{margin-left:-2.738867px;}
._0{margin-left:-1.389081px;}
._3{width:1.109978px;}
._4{width:2.339953px;}
._123{width:5.903926px;}
._2a{width:8.328472px;}
._7{width:9.557905px;}
._d{width:11.449899px;}
._8{width:12.749884px;}
._5{width:14.171869px;}
._6{width:16.172947px;}
._121{width:18.000732px;}
._11f{width:56.695364px;}
._11d{width:58.903315px;}
._d8{width:59.922828px;}
._fc{width:67.580026px;}
._ee{width:69.393507px;}
._119{width:77.327141px;}
._4f{width:79.551892px;}
._c7{width:80.740200px;}
._da{width:83.871844px;}
._db{width:85.125779px;}
._42{width:86.157820px;}
._cf{width:87.695026px;}
._101{width:92.218123px;}
._102{width:97.927448px;}
._d4{width:103.566530px;}
._fd{width:105.455994px;}
._fa{width:107.400801px;}
._fb{width:111.666754px;}
._ea{width:113.550641px;}
._a4{width:116.635305px;}
._ff{width:118.087691px;}
._f6{width:119.986667px;}
._114{width:121.662643px;}
._46{width:122.670545px;}
._f8{width:125.533702px;}
._37{width:127.326266px;}
._117{width:128.934304px;}
._113{width:130.998514px;}
._1d{width:133.726707px;}
._4b{width:134.782502px;}
._f7{width:136.598598px;}
._79{width:139.966445px;}
._7e{width:141.399206px;}
._e0{width:145.771470px;}
._d2{width:147.430108px;}
._3d{width:149.136246px;}
._45{width:151.950240px;}
._73{width:155.190204px;}
._5c{width:156.599197px;}
._69{width:158.247019px;}
._11b{width:161.076205px;}
._4a{width:162.155002px;}
._f4{width:164.413931px;}
._ef{width:165.961921px;}
._3f{width:170.444003px;}
._63{width:172.033926px;}
._f5{width:174.148991px;}
._111{width:177.428214px;}
._23{width:180.943894px;}
._e6{width:185.133893px;}
._6f{width:186.239351px;}
._61{width:188.482991px;}
._df{width:190.072635px;}
._d7{width:192.079902px;}
._f9{width:193.285925px;}
._f0{width:194.288927px;}
._100{width:195.630094px;}
._d9{width:196.689492px;}
._40{width:198.497002px;}
._27{width:202.748116px;}
._cd{width:203.768410px;}
._29{width:205.562148px;}
._c9{width:207.405412px;}
._f2{width:208.853001px;}
._35{width:209.938828px;}
._d0{width:213.012494px;}
._d1{width:214.183920px;}
._2c{width:215.729002px;}
._7d{width:217.235007px;}
._74{width:218.532937px;}
._ec{width:220.171894px;}
._fe{width:221.425696px;}
._e7{width:222.603525px;}
._d3{width:223.634419px;}
._f1{width:224.998801px;}
._76{width:226.687924px;}
._e4{width:228.347003px;}
._de{width:229.356301px;}
._7c{width:231.654791px;}
._44{width:232.821509px;}
._118{width:234.037093px;}
._60{width:235.066104px;}
._3e{width:236.398735px;}
._43{width:239.571434px;}
._e1{width:242.015596px;}
._64{width:243.530146px;}
._71{width:244.717894px;}
._3a{width:247.291894px;}
._f3{width:248.336202px;}
._22{width:250.483894px;}
._10{width:252.908696px;}
._af{width:254.971894px;}
._6e{width:256.927919px;}
._c1{width:258.800213px;}
._e9{width:260.813749px;}
._41{width:262.280576px;}
._1e{width:263.512828px;}
._b9{width:264.950116px;}
._75{width:266.855437px;}
._7b{width:268.267924px;}
._49{width:270.025894px;}
._78{width:272.542829px;}
._5d{width:273.715920px;}
._4d{width:275.294432px;}
._c3{width:277.478182px;}
._ed{width:278.552855px;}
._e8{width:280.478629px;}
._4e{width:282.421165px;}
._68{width:285.055924px;}
._b7{width:286.093929px;}
._e5{width:287.293894px;}
._67{width:288.688801px;}
._ac{width:290.428962px;}
._2e{width:291.905820px;}
._eb{width:294.437154px;}
._a6{width:295.579727px;}
._110{width:296.744282px;}
._25{width:300.865894px;}
._28{width:304.003826px;}
._1c{width:305.744570px;}
._2f{width:307.768962px;}
._55{width:309.649894px;}
._e2{width:310.980820px;}
._b0{width:313.300804px;}
._dc{width:315.185104px;}
._bc{width:317.335921px;}
._ce{width:320.207497px;}
._52{width:321.805920px;}
._2b{width:323.599894px;}
._34{width:325.653182px;}
._d6{width:328.529195px;}
._115{width:329.612518px;}
._6a{width:331.616757px;}
._11a{width:332.647644px;}
._11e{width:336.740518px;}
._a9{width:337.903895px;}
._a5{width:339.985926px;}
._a8{width:341.026400px;}
._c2{width:342.026600px;}
._bf{width:343.318826px;}
._4c{width:345.455472px;}
._c5{width:347.958007px;}
._32{width:349.976518px;}
._6b{width:353.180518px;}
._56{width:354.433180px;}
._b2{width:356.578808px;}
._21{width:358.366400px;}
._bd{width:360.227001px;}
._b3{width:364.655001px;}
._47{width:366.066235px;}
._bb{width:367.212323px;}
._ba{width:371.545894px;}
._b4{width:373.230864px;}
._ae{width:374.740821px;}
._b8{width:376.810353px;}
._20{width:378.049766px;}
._b5{width:379.721003px;}
._62{width:381.590693px;}
._5f{width:382.996930px;}
._be{width:384.743035px;}
._120{width:388.165534px;}
._c6{width:389.446739px;}
._66{width:394.725913px;}
._2d{width:399.029472px;}
._31{width:401.578484px;}
._112{width:403.194643px;}
._ad{width:404.353929px;}
._cb{width:408.671279px;}
._26{width:410.516303px;}
._59{width:413.901302px;}
._53{width:415.134163px;}
._b1{width:416.517121px;}
._50{width:418.112518px;}
._11c{width:420.464761px;}
._48{width:421.557731px;}
._aa{width:425.070288px;}
._ab{width:428.377163px;}
._10f{width:429.666353px;}
._54{width:430.745164px;}
._1f{width:436.436015px;}
._b6{width:438.667894px;}
._65{width:442.545913px;}
._a1{width:445.733280px;}
._c4{width:447.650219px;}
._70{width:451.248485px;}
._e3{width:457.937540px;}
._1b{width:461.220205px;}
._15{width:462.324163px;}
._5e{width:464.160576px;}
._c8{width:466.268389px;}
._ca{width:468.149091px;}
._6d{width:469.839182px;}
._116{width:478.958441px;}
._39{width:480.685459px;}
._18{width:487.205614px;}
._9b{width:490.348939px;}
._10d{width:494.551101px;}
._51{width:496.790501px;}
._38{width:498.031585px;}
._a7{width:502.177766px;}
._6c{width:506.185796px;}
._a2{width:511.456833px;}
._77{width:512.489322px;}
._19{width:518.081472px;}
._e{width:522.602518px;}
._7f{width:524.016486px;}
._d5{width:533.537749px;}
._dd{width:534.564852px;}
._3c{width:538.557913px;}
._5a{width:539.607732px;}
._30{width:544.523839px;}
._36{width:548.130710px;}
._cc{width:551.221010px;}
._93{width:562.570259px;}
._24{width:565.926576px;}
._5b{width:570.441389px;}
._8a{width:573.393934px;}
._57{width:584.190308px;}
._c0{width:587.034391px;}
._33{width:593.797796px;}
._109{width:595.708709px;}
._89{width:602.359894px;}
._72{width:604.446114px;}
._58{width:606.512989px;}
._12{width:608.761433px;}
._9e{width:612.590192px;}
._f{width:616.052501px;}
._8b{width:621.646999px;}
._7a{width:624.920879px;}
._8f{width:633.481929px;}
._96{width:641.595387px;}
._a0{width:646.991279px;}
._107{width:653.299496px;}
._13{width:655.677742px;}
._99{width:657.363212px;}
._87{width:660.688804px;}
._97{width:664.723921px;}
._9d{width:668.980302px;}
._94{width:672.910991px;}
._3b{width:682.017913px;}
._1a{width:689.703611px;}
._90{width:694.976788px;}
._17{width:704.322545px;}
._9f{width:706.469091px;}
._9c{width:707.615001px;}
._8d{width:708.716431px;}
._8c{width:710.351515px;}
._84{width:712.945920px;}
._92{width:718.933894px;}
._81{width:720.734501px;}
._9a{width:723.760801px;}
._16{width:725.196065px;}
._14{width:726.368957px;}
._11{width:731.891828px;}
._98{width:737.189216px;}
._85{width:751.741929px;}
._10a{width:769.654588px;}
._103{width:780.554630px;}
._10c{width:805.420192px;}
._105{width:819.109168px;}
._80{width:824.966518px;}
._106{width:829.648120px;}
._82{width:831.674981px;}
._8e{width:835.446003px;}
._86{width:836.666894px;}
._88{width:839.765955px;}
._83{width:845.075897px;}
._95{width:866.621658px;}
._91{width:884.369459px;}
._10b{width:890.613276px;}
._10e{width:891.630196px;}
._104{width:896.337212px;}
._108{width:899.151181px;}
._1{width:1113.501462px;}
._a{width:1598.535462px;}
.fc3{color:rgb(167,208,57);}
.fc2{color:rgb(210,32,39);}
.fc1{color:rgb(47,122,181);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:29.999400px;}
.fs5{font-size:34.799400px;}
.fs6{font-size:35.999400px;}
.fs7{font-size:37.799400px;}
.fsd{font-size:37.940400px;}
.fs3{font-size:40.799400px;}
.fsc{font-size:41.999400px;}
.fsb{font-size:42.156000px;}
.fs0{font-size:47.999400px;}
.fsa{font-size:53.999400px;}
.fs4{font-size:59.999400px;}
.fs8{font-size:65.999400px;}
.fs9{font-size:71.999400px;}
.fs1{font-size:107.998800px;}
.y0{bottom:0.000000px;}
.yfc{bottom:39.301500px;}
.y7f{bottom:39.391500px;}
.yb9{bottom:39.481500px;}
.ydb{bottom:39.571500px;}
.y46{bottom:40.411500px;}
.y7e{bottom:71.053500px;}
.yfb{bottom:71.623500px;}
.y2d1{bottom:79.123500px;}
.y45{bottom:81.931500px;}
.y297{bottom:86.053500px;}
.y7d{bottom:89.803500px;}
.yfa{bottom:90.373500px;}
.y2d0{bottom:94.123500px;}
.y44{bottom:100.681500px;}
.y296{bottom:101.053500px;}
.y1fb{bottom:106.918500px;}
.y7c{bottom:108.553500px;}
.yf9{bottom:109.123500px;}
.y262{bottom:109.951500px;}
.y1d8{bottom:111.846000px;}
.y295{bottom:116.053500px;}
.y43{bottom:119.431500px;}
.y2cf{bottom:124.123500px;}
.y20e{bottom:124.851000px;}
.y1fa{bottom:125.668500px;}
.y16b{bottom:127.233000px;}
.y7b{bottom:127.303500px;}
.yf8{bottom:127.873500px;}
.y261{bottom:128.701500px;}
.y294{bottom:131.053500px;}
.y1d7{bottom:133.276500px;}
.y42{bottom:138.181500px;}
.y2ce{bottom:139.123500px;}
.y20d{bottom:143.601000px;}
.y1f9{bottom:144.418500px;}
.y7a{bottom:146.053500px;}
.yf7{bottom:146.623500px;}
.y260{bottom:147.451500px;}
.y1d6{bottom:149.776500px;}
.y2cd{bottom:154.123500px;}
.y41{bottom:156.931500px;}
.y293{bottom:161.053500px;}
.y18e{bottom:161.346000px;}
.y20c{bottom:162.351000px;}
.y1f8{bottom:163.168500px;}
.y79{bottom:164.803500px;}
.yf6{bottom:165.373500px;}
.y25f{bottom:166.201500px;}
.y1d5{bottom:166.276500px;}
.y16a{bottom:167.719500px;}
.y2cc{bottom:169.123500px;}
.y40{bottom:175.681500px;}
.y292{bottom:176.053500px;}
.y20b{bottom:181.101000px;}
.y1f7{bottom:181.918500px;}
.y1d4{bottom:182.776500px;}
.y18d{bottom:182.778000px;}
.y78{bottom:183.553500px;}
.yf5{bottom:184.123500px;}
.y25e{bottom:184.951500px;}
.y169{bottom:186.469500px;}
.y291{bottom:191.053500px;}
.y3f{bottom:194.431500px;}
.y2cb{bottom:199.123500px;}
.y18c{bottom:199.276500px;}
.y20a{bottom:199.851000px;}
.y1c0{bottom:200.262000px;}
.y1f6{bottom:200.668500px;}
.y77{bottom:202.303500px;}
.yf4{bottom:202.873500px;}
.y25d{bottom:203.701500px;}
.y168{bottom:205.219500px;}
.y290{bottom:206.053500px;}
.y3e{bottom:213.181500px;}
.y2ca{bottom:214.123500px;}
.y18b{bottom:215.776500px;}
.y209{bottom:218.601000px;}
.y1f5{bottom:219.418500px;}
.y76{bottom:221.053500px;}
.yf3{bottom:221.623500px;}
.y1bf{bottom:221.692500px;}
.y25c{bottom:222.451500px;}
.y167{bottom:223.969500px;}
.y2c9{bottom:229.123500px;}
.y3d{bottom:231.931500px;}
.y18a{bottom:232.276500px;}
.y28f{bottom:236.053500px;}
.y208{bottom:237.351000px;}
.y1f4{bottom:238.168500px;}
.y1be{bottom:238.192500px;}
.y75{bottom:239.803500px;}
.yf2{bottom:240.373500px;}
.y25b{bottom:241.201500px;}
.y166{bottom:242.719500px;}
.y237{bottom:243.844500px;}
.y2c8{bottom:244.123500px;}
.y189{bottom:248.776500px;}
.y3c{bottom:250.681500px;}
.y28e{bottom:251.053500px;}
.y1bd{bottom:254.692500px;}
.y207{bottom:256.101000px;}
.y1f3{bottom:256.918500px;}
.y74{bottom:258.553500px;}
.y12b{bottom:258.702000px;}
.yf1{bottom:259.123500px;}
.y25a{bottom:259.951500px;}
.y165{bottom:261.469500px;}
.y188{bottom:265.276500px;}
.y28d{bottom:266.053500px;}
.y3b{bottom:269.431500px;}
.y1bc{bottom:271.192500px;}
.y2c7{bottom:274.123500px;}
.y206{bottom:274.851000px;}
.y1f2{bottom:275.668500px;}
.y8d{bottom:277.233000px;}
.y73{bottom:277.303500px;}
.yf0{bottom:277.873500px;}
.y259{bottom:278.701500px;}
.y164{bottom:280.219500px;}
.y28c{bottom:281.053500px;}
.y187{bottom:281.776500px;}
.y1bb{bottom:287.692500px;}
.y3a{bottom:288.181500px;}
.y2c6{bottom:289.123500px;}
.y205{bottom:293.601000px;}
.y1f1{bottom:294.418500px;}
.y72{bottom:296.053500px;}
.yef{bottom:296.623500px;}
.y258{bottom:297.451500px;}
.y186{bottom:298.276500px;}
.y163{bottom:298.969500px;}
.y2c5{bottom:304.123500px;}
.y1ba{bottom:304.192500px;}
.y39{bottom:306.931500px;}
.y1dd{bottom:309.438000px;}
.y12a{bottom:310.228500px;}
.y28b{bottom:311.053500px;}
.y204{bottom:312.351000px;}
.y1f0{bottom:313.168500px;}
.y8c{bottom:313.902000px;}
.y185{bottom:314.776500px;}
.yb8{bottom:314.803500px;}
.yee{bottom:315.373500px;}
.y257{bottom:316.201500px;}
.y2c4{bottom:319.123500px;}
.y1b9{bottom:320.692500px;}
.y38{bottom:325.681500px;}
.y1dc{bottom:325.938000px;}
.y28a{bottom:326.053500px;}
.y129{bottom:328.978500px;}
.y203{bottom:331.101000px;}
.y184{bottom:331.276500px;}
.y1ef{bottom:331.918500px;}
.y8b{bottom:332.652000px;}
.yb7{bottom:333.553500px;}
.y71{bottom:333.696000px;}
.yed{bottom:334.123500px;}
.y256{bottom:334.951500px;}
.y1b8{bottom:337.192500px;}
.y289{bottom:341.053500px;}
.y1db{bottom:342.438000px;}
.y37{bottom:344.431500px;}
.y128{bottom:347.728500px;}
.y183{bottom:347.776500px;}
.y2c3{bottom:349.123500px;}
.y202{bottom:349.851000px;}
.y162{bottom:349.875000px;}
.y1ee{bottom:350.668500px;}
.y8a{bottom:351.402000px;}
.yda{bottom:352.303500px;}
.y70{bottom:352.446000px;}
.yb6{bottom:352.453500px;}
.yec{bottom:352.873500px;}
.y1b7{bottom:353.692500px;}
.y255{bottom:353.701500px;}
.y288{bottom:356.053500px;}
.y1da{bottom:358.938000px;}
.y36{bottom:363.181500px;}
.y2c2{bottom:364.123500px;}
.y182{bottom:364.276500px;}
.y161{bottom:366.375000px;}
.y127{bottom:366.478500px;}
.y201{bottom:368.601000px;}
.y1ed{bottom:369.418500px;}
.y89{bottom:370.152000px;}
.y1b6{bottom:370.192500px;}
.y235{bottom:370.983000px;}
.yd9{bottom:371.053500px;}
.y6f{bottom:371.196000px;}
.yeb{bottom:371.623500px;}
.y254{bottom:372.451500px;}
.y1d9{bottom:375.438000px;}
.y2c1{bottom:379.123500px;}
.y181{bottom:380.776500px;}
.y35{bottom:381.931500px;}
.y160{bottom:382.875000px;}
.y126{bottom:385.228500px;}
.y287{bottom:386.053500px;}
.y1b5{bottom:386.692500px;}
.y200{bottom:387.351000px;}
.y1ec{bottom:388.168500px;}
.y88{bottom:388.902000px;}
.yd8{bottom:389.803500px;}
.y6e{bottom:389.946000px;}
.yea{bottom:390.373500px;}
.y253{bottom:391.201500px;}
.y2c0{bottom:394.123500px;}
.y180{bottom:397.276500px;}
.yb5{bottom:398.584500px;}
.y34{bottom:400.681500px;}
.y285{bottom:401.052000px;}
.y286{bottom:401.053500px;}
.y1b4{bottom:403.192500px;}
.y125{bottom:403.978500px;}
.y15f{bottom:404.713500px;}
.y1ff{bottom:406.101000px;}
.y1eb{bottom:406.918500px;}
.y87{bottom:407.652000px;}
.yd7{bottom:408.553500px;}
.y6d{bottom:408.696000px;}
.ye9{bottom:409.123500px;}
.y252{bottom:409.951500px;}
.y17f{bottom:413.776500px;}
.y284{bottom:416.052000px;}
.yb4{bottom:417.334500px;}
.y33{bottom:419.431500px;}
.y1b3{bottom:419.692500px;}
.y15e{bottom:421.213500px;}
.y124{bottom:422.728500px;}
.y234{bottom:423.367500px;}
.y2bf{bottom:424.123500px;}
.y1fe{bottom:424.851000px;}
.y143{bottom:424.938000px;}
.y1ea{bottom:425.668500px;}
.y86{bottom:426.402000px;}
.yd6{bottom:427.303500px;}
.y6c{bottom:427.446000px;}
.ye8{bottom:427.873500px;}
.y251{bottom:428.701500px;}
.y17e{bottom:430.276500px;}
.y283{bottom:431.052000px;}
.y1b2{bottom:436.192500px;}
.yb3{bottom:436.234500px;}
.y15d{bottom:437.713500px;}
.y32{bottom:438.181500px;}
.y2be{bottom:439.123500px;}
.y142{bottom:441.438000px;}
.y123{bottom:441.478500px;}
.y233{bottom:442.117500px;}
.y1fd{bottom:443.601000px;}
.y1e9{bottom:444.418500px;}
.y282{bottom:446.052000px;}
.yd5{bottom:446.053500px;}
.ye7{bottom:446.623500px;}
.y17d{bottom:446.776500px;}
.y250{bottom:447.451500px;}
.y1b1{bottom:452.692500px;}
.y2bd{bottom:454.123500px;}
.y15c{bottom:454.213500px;}
.y31{bottom:456.931500px;}
.y141{bottom:457.938000px;}
.y122{bottom:460.228500px;}
.y232{bottom:460.867500px;}
.y281{bottom:461.052000px;}
.y1fc{bottom:462.501000px;}
.y1e8{bottom:463.168500px;}
.y17c{bottom:463.276500px;}
.yd4{bottom:464.803500px;}
.y6b{bottom:465.088500px;}
.ye6{bottom:465.373500px;}
.y24f{bottom:466.201500px;}
.y2bc{bottom:469.123500px;}
.y1b0{bottom:469.192500px;}
.y15b{bottom:470.713500px;}
.y140{bottom:474.438000px;}
.y30{bottom:475.681500px;}
.y280{bottom:476.052000px;}
.y121{bottom:478.978500px;}
.y231{bottom:479.617500px;}
.y17b{bottom:479.776500px;}
.y1e7{bottom:481.918500px;}
.yb2{bottom:482.367000px;}
.yd3{bottom:483.553500px;}
.y6a{bottom:483.838500px;}
.ye5{bottom:484.123500px;}
.y24e{bottom:484.951500px;}
.y1af{bottom:485.692500px;}
.y15a{bottom:487.213500px;}
.y85{bottom:488.868000px;}
.y27f{bottom:491.052000px;}
.y13f{bottom:496.276500px;}
.y120{bottom:497.728500px;}
.y230{bottom:498.367500px;}
.y2bb{bottom:499.123500px;}
.y1e6{bottom:500.668500px;}
.yb1{bottom:501.117000px;}
.y1ae{bottom:502.192500px;}
.yd2{bottom:502.303500px;}
.y84{bottom:502.368000px;}
.y1d3{bottom:502.453500px;}
.y69{bottom:502.588500px;}
.ye4{bottom:502.873500px;}
.y24d{bottom:503.701500px;}
.y159{bottom:503.713500px;}
.y27e{bottom:506.052000px;}
.y13e{bottom:512.776500px;}
.y2f{bottom:513.111000px;}
.y2ba{bottom:514.123500px;}
.y83{bottom:515.868000px;}
.y11f{bottom:516.478500px;}
.y22f{bottom:517.117500px;}
.y1ad{bottom:518.692500px;}
.y1e5{bottom:519.418500px;}
.yb0{bottom:519.867000px;}
.y158{bottom:520.213500px;}
.y27d{bottom:521.052000px;}
.yd1{bottom:521.053500px;}
.ye3{bottom:521.623500px;}
.y24c{bottom:522.451500px;}
.y2b9{bottom:529.123500px;}
.y13d{bottom:529.276500px;}
.y1ac{bottom:535.192500px;}
.y11e{bottom:535.228500px;}
.y22e{bottom:535.867500px;}
.y27c{bottom:536.052000px;}
.y157{bottom:536.713500px;}
.y1e4{bottom:538.168500px;}
.yaf{bottom:538.617000px;}
.yd0{bottom:539.803500px;}
.y68{bottom:540.231000px;}
.ye2{bottom:540.373500px;}
.y24b{bottom:541.201500px;}
.y1d2{bottom:543.045000px;}
.y2b8{bottom:544.123500px;}
.y13c{bottom:545.776500px;}
.y27b{bottom:551.052000px;}
.y1ab{bottom:551.692500px;}
.y156{bottom:553.213500px;}
.y11d{bottom:553.978500px;}
.y22d{bottom:554.617500px;}
.y1e3{bottom:556.918500px;}
.yae{bottom:557.367000px;}
.ycf{bottom:558.553500px;}
.y67{bottom:558.981000px;}
.ye1{bottom:559.123500px;}
.y24a{bottom:559.951500px;}
.y1d1{bottom:561.795000px;}
.y13b{bottom:562.276500px;}
.y27a{bottom:566.052000px;}
.y1aa{bottom:568.192500px;}
.y155{bottom:569.713500px;}
.y11c{bottom:572.728500px;}
.y22c{bottom:573.367500px;}
.y2b7{bottom:574.123500px;}
.y1e2{bottom:575.668500px;}
.y2e{bottom:575.916000px;}
.yad{bottom:576.117000px;}
.yce{bottom:577.303500px;}
.y66{bottom:577.731000px;}
.ye0{bottom:577.873500px;}
.y249{bottom:578.701500px;}
.y13a{bottom:578.776500px;}
.y1d0{bottom:580.545000px;}
.y279{bottom:581.052000px;}
.y1a9{bottom:584.692500px;}
.y154{bottom:586.212000px;}
.y2b6{bottom:589.123500px;}
.y11b{bottom:591.478500px;}
.y22b{bottom:592.117500px;}
.yac{bottom:594.867000px;}
.y139{bottom:595.276500px;}
.y278{bottom:596.052000px;}
.ycd{bottom:596.053500px;}
.y2d{bottom:596.166000px;}
.y65{bottom:596.481000px;}
.ydf{bottom:596.623500px;}
.y248{bottom:597.451500px;}
.y1cf{bottom:599.445000px;}
.y1a8{bottom:601.192500px;}
.y153{bottom:602.712000px;}
.y2b5{bottom:604.123500px;}
.y11a{bottom:610.228500px;}
.y22a{bottom:610.867500px;}
.y277{bottom:611.052000px;}
.y138{bottom:611.776500px;}
.yab{bottom:613.617000px;}
.ycc{bottom:614.803500px;}
.y64{bottom:615.231000px;}
.yde{bottom:615.373500px;}
.y247{bottom:616.201500px;}
.y2c{bottom:616.416000px;}
.y1a7{bottom:617.692500px;}
.y2b4{bottom:619.123500px;}
.y152{bottom:619.212000px;}
.y1e1{bottom:622.938000px;}
.y276{bottom:626.052000px;}
.y137{bottom:628.276500px;}
.y119{bottom:628.978500px;}
.yaa{bottom:632.367000px;}
.ycb{bottom:633.553500px;}
.y63{bottom:633.981000px;}
.ydd{bottom:634.123500px;}
.y1a6{bottom:634.192500px;}
.y246{bottom:634.951500px;}
.y151{bottom:635.712000px;}
.y2b{bottom:636.666000px;}
.y1e0{bottom:639.438000px;}
.y1ce{bottom:640.038000px;}
.y136{bottom:644.776500px;}
.y118{bottom:647.728500px;}
.y2b3{bottom:649.123500px;}
.y1a5{bottom:650.692500px;}
.y150{bottom:652.212000px;}
.yca{bottom:652.303500px;}
.ydc{bottom:652.873500px;}
.y245{bottom:653.701500px;}
.y1df{bottom:655.938000px;}
.y2a{bottom:656.916000px;}
.y1cd{bottom:658.788000px;}
.y275{bottom:659.733000px;}
.y135{bottom:661.276500px;}
.y2b2{bottom:664.123500px;}
.y1a4{bottom:667.192500px;}
.y14f{bottom:668.712000px;}
.yc9{bottom:671.053500px;}
.y62{bottom:671.623500px;}
.y1de{bottom:672.438000px;}
.y244{bottom:672.451500px;}
.y29{bottom:677.166000px;}
.y1cc{bottom:677.538000px;}
.y134{bottom:677.776500px;}
.y2b1{bottom:679.123500px;}
.y229{bottom:680.692500px;}
.y1a3{bottom:683.692500px;}
.y14e{bottom:685.212000px;}
.ya9{bottom:688.938000px;}
.yc8{bottom:689.803500px;}
.y61{bottom:690.373500px;}
.y243{bottom:691.201500px;}
.y2b0{bottom:694.123500px;}
.y133{bottom:694.276500px;}
.y274{bottom:695.587500px;}
.y1cb{bottom:696.288000px;}
.y228{bottom:697.192500px;}
.y28{bottom:697.416000px;}
.y1a2{bottom:700.192500px;}
.y14d{bottom:701.712000px;}
.ya8{bottom:705.438000px;}
.yc7{bottom:708.553500px;}
.y60{bottom:709.123500px;}
.y242{bottom:709.951500px;}
.y132{bottom:710.776500px;}
.y227{bottom:713.692500px;}
.y273{bottom:714.337500px;}
.y1ca{bottom:715.038000px;}
.y117{bottom:716.692500px;}
.y27{bottom:717.666000px;}
.y14c{bottom:718.212000px;}
.ya7{bottom:721.938000px;}
.y2af{bottom:724.123500px;}
.y16{bottom:724.174500px;}
.y131{bottom:727.276500px;}
.yc6{bottom:727.303500px;}
.y5f{bottom:727.873500px;}
.y241{bottom:728.701500px;}
.y226{bottom:730.192500px;}
.y272{bottom:733.087500px;}
.y116{bottom:733.192500px;}
.y1c9{bottom:733.788000px;}
.y14b{bottom:734.712000px;}
.y15{bottom:736.174500px;}
.y26{bottom:737.916000px;}
.ya6{bottom:738.438000px;}
.y2ae{bottom:739.123500px;}
.y130{bottom:743.776500px;}
.yc5{bottom:746.053500px;}
.y5e{bottom:746.623500px;}
.y225{bottom:746.692500px;}
.y240{bottom:747.451500px;}
.y14{bottom:748.174500px;}
.y115{bottom:749.692500px;}
.y1c8{bottom:752.538000px;}
.y2ad{bottom:754.123500px;}
.y25{bottom:758.166000px;}
.y13{bottom:760.174500px;}
.ya5{bottom:760.276500px;}
.y224{bottom:763.192500px;}
.y14a{bottom:764.440500px;}
.yc4{bottom:764.803500px;}
.y17a{bottom:764.953500px;}
.y5d{bottom:765.373500px;}
.y114{bottom:766.192500px;}
.y23f{bottom:766.201500px;}
.y2ac{bottom:769.123500px;}
.y271{bottom:770.517000px;}
.y1c7{bottom:771.288000px;}
.y12{bottom:772.174500px;}
.ya4{bottom:776.776500px;}
.y24{bottom:778.416000px;}
.y223{bottom:779.692500px;}
.y113{bottom:782.692500px;}
.yc3{bottom:783.553500px;}
.y5c{bottom:784.123500px;}
.y11{bottom:784.174500px;}
.y23e{bottom:784.951500px;}
.y149{bottom:789.804000px;}
.y1c6{bottom:790.038000px;}
.ya3{bottom:793.276500px;}
.y222{bottom:796.192500px;}
.y23{bottom:798.666000px;}
.y2ab{bottom:799.123500px;}
.y112{bottom:799.192500px;}
.y10{bottom:802.152000px;}
.yc2{bottom:802.303500px;}
.y179{bottom:802.588500px;}
.y5b{bottom:802.873500px;}
.y148{bottom:803.304000px;}
.y23d{bottom:803.701500px;}
.y270{bottom:806.373000px;}
.y1c5{bottom:808.788000px;}
.ya2{bottom:809.776500px;}
.y221{bottom:812.692500px;}
.y2aa{bottom:814.123500px;}
.yf{bottom:814.152000px;}
.y111{bottom:815.692500px;}
.y22{bottom:818.916000px;}
.y147{bottom:820.938000px;}
.yc1{bottom:821.053500px;}
.y178{bottom:821.338500px;}
.y5a{bottom:821.623500px;}
.y23c{bottom:822.451500px;}
.y26f{bottom:825.123000px;}
.ye{bottom:826.152000px;}
.ya1{bottom:826.276500px;}
.y1c4{bottom:827.538000px;}
.y2a9{bottom:829.123500px;}
.y220{bottom:829.192500px;}
.y110{bottom:832.192500px;}
.y146{bottom:837.438000px;}
.yd{bottom:838.152000px;}
.yc0{bottom:839.803500px;}
.y177{bottom:840.088500px;}
.y59{bottom:840.373500px;}
.ya0{bottom:842.776500px;}
.y26e{bottom:843.873000px;}
.y2a8{bottom:844.123500px;}
.y21f{bottom:845.692500px;}
.y1c3{bottom:846.288000px;}
.y10f{bottom:848.692500px;}
.yc{bottom:850.152000px;}
.y82{bottom:851.929500px;}
.y145{bottom:853.938000px;}
.ybf{bottom:858.553500px;}
.y176{bottom:858.838500px;}
.y58{bottom:859.123500px;}
.y9f{bottom:859.276500px;}
.y21e{bottom:862.192500px;}
.y1c2{bottom:865.038000px;}
.y10e{bottom:865.192500px;}
.y81{bottom:865.429500px;}
.y144{bottom:870.438000px;}
.y21{bottom:873.214500px;}
.y2a7{bottom:874.123500px;}
.y9e{bottom:875.776500px;}
.ybe{bottom:877.303500px;}
.y175{bottom:877.588500px;}
.y57{bottom:877.873500px;}
.y21d{bottom:878.692500px;}
.y80{bottom:878.929500px;}
.y26d{bottom:881.302500px;}
.y10d{bottom:881.692500px;}
.y1c1{bottom:883.788000px;}
.yb{bottom:885.715500px;}
.y23b{bottom:886.936500px;}
.y2a6{bottom:889.123500px;}
.y9d{bottom:892.276500px;}
.y21c{bottom:895.192500px;}
.ybd{bottom:896.053500px;}
.y174{bottom:896.338500px;}
.y56{bottom:896.623500px;}
.ya{bottom:898.038000px;}
.y10c{bottom:898.192500px;}
.y20{bottom:898.836000px;}
.y23a{bottom:903.436500px;}
.y2a5{bottom:904.123500px;}
.y9c{bottom:908.776500px;}
.y21b{bottom:911.692500px;}
.y10b{bottom:914.692500px;}
.ybc{bottom:914.803500px;}
.y173{bottom:915.088500px;}
.y55{bottom:915.373500px;}
.y26c{bottom:917.158500px;}
.y9{bottom:917.539500px;}
.y2a4{bottom:919.123500px;}
.y239{bottom:919.936500px;}
.y9b{bottom:925.276500px;}
.y1f{bottom:925.950000px;}
.y21a{bottom:928.192500px;}
.y8{bottom:929.862000px;}
.y10a{bottom:931.192500px;}
.ybb{bottom:933.553500px;}
.y172{bottom:933.838500px;}
.y54{bottom:934.123500px;}
.y1e{bottom:934.972500px;}
.y238{bottom:936.436500px;}
.y1d{bottom:940.203000px;}
.y236{bottom:941.775000px;}
.y9a{bottom:941.776500px;}
.y219{bottom:944.692500px;}
.y109{bottom:947.692500px;}
.y2a3{bottom:949.123500px;}
.y7{bottom:949.363500px;}
.y199{bottom:949.665000px;}
.y1c{bottom:949.972500px;}
.y1a1{bottom:952.303500px;}
.yba{bottom:952.453500px;}
.y171{bottom:952.588500px;}
.y53{bottom:952.873500px;}
.y26b{bottom:954.588000px;}
.y1b{bottom:955.203000px;}
.y12f{bottom:958.275000px;}
.y99{bottom:958.276500px;}
.y218{bottom:961.192500px;}
.y6{bottom:961.227000px;}
.y2a2{bottom:964.123500px;}
.y108{bottom:964.192500px;}
.y198{bottom:966.165000px;}
.y1a0{bottom:971.053500px;}
.y170{bottom:971.338500px;}
.y52{bottom:971.623500px;}
.y1a{bottom:973.062000px;}
.y12e{bottom:974.775000px;}
.y98{bottom:974.776500px;}
.y217{bottom:977.692500px;}
.y2a1{bottom:979.123500px;}
.y107{bottom:980.692500px;}
.y5{bottom:980.728500px;}
.y197{bottom:982.665000px;}
.y19f{bottom:989.803500px;}
.y16f{bottom:990.088500px;}
.y51{bottom:990.373500px;}
.y26a{bottom:990.442500px;}
.y12d{bottom:991.275000px;}
.y97{bottom:991.276500px;}
.y4{bottom:992.527500px;}
.y2a0{bottom:994.123500px;}
.y216{bottom:994.192500px;}
.y106{bottom:997.191000px;}
.y196{bottom:999.165000px;}
.y12c{bottom:1007.775000px;}
.y96{bottom:1007.776500px;}
.y19e{bottom:1008.553500px;}
.y16e{bottom:1008.838500px;}
.y50{bottom:1009.123500px;}
.y269{bottom:1009.192500px;}
.y19{bottom:1010.097000px;}
.y215{bottom:1010.691000px;}
.y105{bottom:1013.691000px;}
.y195{bottom:1015.665000px;}
.y29f{bottom:1024.123500px;}
.y95{bottom:1024.275000px;}
.y214{bottom:1027.191000px;}
.y19d{bottom:1027.303500px;}
.y16d{bottom:1027.588500px;}
.y4f{bottom:1027.873500px;}
.y268{bottom:1027.942500px;}
.y3{bottom:1028.361000px;}
.y104{bottom:1030.191000px;}
.y194{bottom:1037.503500px;}
.y29e{bottom:1039.123500px;}
.y94{bottom:1040.775000px;}
.y18{bottom:1041.597000px;}
.y213{bottom:1043.691000px;}
.y19c{bottom:1046.053500px;}
.y16c{bottom:1046.487000px;}
.y4e{bottom:1046.623500px;}
.y103{bottom:1046.691000px;}
.y267{bottom:1046.692500px;}
.y193{bottom:1054.003500px;}
.y29d{bottom:1054.123500px;}
.y93{bottom:1057.275000px;}
.y212{bottom:1060.191000px;}
.y102{bottom:1063.191000px;}
.y19b{bottom:1064.803500px;}
.y4d{bottom:1065.373500px;}
.y266{bottom:1065.442500px;}
.y29c{bottom:1069.123500px;}
.y192{bottom:1070.503500px;}
.y92{bottom:1073.775000px;}
.y211{bottom:1076.691000px;}
.y17{bottom:1082.172000px;}
.y19a{bottom:1083.703500px;}
.y4c{bottom:1084.123500px;}
.y265{bottom:1084.192500px;}
.y191{bottom:1087.003500px;}
.y91{bottom:1090.275000px;}
.y100{bottom:1092.919500px;}
.y29b{bottom:1099.123500px;}
.y4b{bottom:1102.873500px;}
.y264{bottom:1102.942500px;}
.y190{bottom:1103.503500px;}
.y20f{bottom:1106.419500px;}
.y90{bottom:1106.775000px;}
.y101{bottom:1109.419500px;}
.y29a{bottom:1114.123500px;}
.y18f{bottom:1120.003500px;}
.y4a{bottom:1121.623500px;}
.y263{bottom:1121.692500px;}
.y210{bottom:1122.919500px;}
.y299{bottom:1129.123500px;}
.yff{bottom:1134.783000px;}
.y8f{bottom:1136.503500px;}
.y49{bottom:1140.373500px;}
.y298{bottom:1144.123500px;}
.yfe{bottom:1148.283000px;}
.y2{bottom:1151.949000px;}
.y48{bottom:1159.123500px;}
.yfd{bottom:1161.783000px;}
.y8e{bottom:1161.867000px;}
.y1{bottom:1196.496000px;}
.y47{bottom:1211.496000px;}
.ha{height:16.739721px;}
.h5{height:20.999580px;}
.h9{height:27.102170px;}
.h6{height:29.253170px;}
.h4{height:33.599580px;}
.hb{height:34.079574px;}
.h2{height:34.415570px;}
.h10{height:38.717570px;}
.h12{height:38.723570px;}
.h13{height:39.677721px;}
.h15{height:39.683721px;}
.h7{height:41.999580px;}
.h11{height:42.599574px;}
.hf{height:43.019570px;}
.hc{height:46.859574px;}
.h16{height:47.138200px;}
.hd{height:47.321570px;}
.h8{height:47.967170px;}
.he{height:51.119574px;}
.h14{height:51.993852px;}
.h3{height:75.599160px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:63.780000px;}
.x1{left:178.582500px;}
.x3f{left:180.042000px;}
.x39{left:185.802000px;}
.x37{left:191.562000px;}
.x7{left:192.780000px;}
.x9{left:193.975500px;}
.xc{left:195.187500px;}
.x6{left:200.998500px;}
.x38{left:210.702000px;}
.x17{left:212.451000px;}
.xe{left:219.448500px;}
.xb{left:222.400500px;}
.x3b{left:225.460500px;}
.xf{left:242.584500px;}
.xd{left:249.685500px;}
.x2e{left:257.283000px;}
.x1e{left:263.742000px;}
.x12{left:273.652500px;}
.xa{left:281.758500px;}
.x16{left:283.270500px;}
.x36{left:285.769500px;}
.x40{left:295.384500px;}
.x23{left:309.724500px;}
.x2a{left:312.453000px;}
.x1c{left:314.344500px;}
.x13{left:318.396000px;}
.x2d{left:321.484500px;}
.x1d{left:322.912500px;}
.x10{left:331.789500px;}
.x30{left:339.610500px;}
.x28{left:342.550500px;}
.x25{left:350.296500px;}
.x19{left:357.276000px;}
.x2f{left:365.199000px;}
.x3a{left:368.763000px;}
.x3e{left:375.231000px;}
.x27{left:377.563500px;}
.x4{left:386.085000px;}
.x3{left:412.719000px;}
.x18{left:439.257000px;}
.x8{left:442.857000px;}
.x2b{left:446.323500px;}
.x31{left:448.884000px;}
.x22{left:451.791000px;}
.x3d{left:457.686000px;}
.x41{left:469.836000px;}
.x1f{left:478.483500px;}
.x11{left:486.231000px;}
.x5{left:490.339500px;}
.x14{left:507.264000px;}
.x34{left:533.686500px;}
.x33{left:572.508000px;}
.x2c{left:598.128000px;}
.x35{left:605.220000px;}
.x3c{left:637.102500px;}
.x24{left:642.885000px;}
.x15{left:660.267000px;}
.x1b{left:671.295000px;}
.x1a{left:675.211500px;}
.x29{left:691.648500px;}
.x32{left:708.087000px;}
.x20{left:714.948000px;}
.x21{left:716.271000px;}
.x26{left:757.611000px;}
@media print{
.v3{vertical-align:-21.253333pt;}
.v2{vertical-align:-18.597333pt;}
.v4{vertical-align:-8.000000pt;}
.v8{vertical-align:-6.464000pt;}
.v7{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.056000pt;}
.v5{vertical-align:19.354667pt;}
.v1{vertical-align:20.458667pt;}
.lsd{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000128pt;}
.ls12{letter-spacing:0.000197pt;}
.ls1f{letter-spacing:0.000255pt;}
.ls5{letter-spacing:0.000256pt;}
.lsb{letter-spacing:0.000267pt;}
.ls17{letter-spacing:0.000277pt;}
.ls25{letter-spacing:0.000324pt;}
.ls19{letter-spacing:0.000415pt;}
.ls6{letter-spacing:0.000533pt;}
.ls3a{letter-spacing:0.160240pt;}
.ls2f{letter-spacing:0.197675pt;}
.ls1b{letter-spacing:0.640131pt;}
.ls3{letter-spacing:1.599968pt;}
.ls2{letter-spacing:1.733299pt;}
.ls26{letter-spacing:2.653440pt;}
.ls20{letter-spacing:2.654207pt;}
.ls2d{letter-spacing:2.655779pt;}
.ls34{letter-spacing:2.659541pt;}
.ls33{letter-spacing:2.720314pt;}
.ls1{letter-spacing:2.773299pt;}
.ls30{letter-spacing:2.816302pt;}
.ls2a{letter-spacing:3.093070pt;}
.ls2c{letter-spacing:3.397597pt;}
.ls4{letter-spacing:3.466632pt;}
.ls31{letter-spacing:3.680345pt;}
.ls16{letter-spacing:8.885748pt;}
.ls18{letter-spacing:8.891081pt;}
.ls1a{letter-spacing:9.050907pt;}
.ls3d{letter-spacing:9.808261pt;}
.ls0{letter-spacing:9.813595pt;}
.ls1e{letter-spacing:10.896128pt;}
.ls24{letter-spacing:11.037226pt;}
.ls23{letter-spacing:11.042560pt;}
.lsf{letter-spacing:11.696256pt;}
.ls8{letter-spacing:11.728533pt;}
.ls29{letter-spacing:11.781461pt;}
.ls28{letter-spacing:12.021461pt;}
.ls11{letter-spacing:12.261461pt;}
.ls2e{letter-spacing:12.261748pt;}
.ls3c{letter-spacing:12.261867pt;}
.lsc{letter-spacing:12.266795pt;}
.ls10{letter-spacing:12.266923pt;}
.ls14{letter-spacing:12.266944pt;}
.ls32{letter-spacing:12.267081pt;}
.ls3b{letter-spacing:12.267200pt;}
.ls15{letter-spacing:12.624387pt;}
.ls1c{letter-spacing:14.920107pt;}
.ls1d{letter-spacing:14.922445pt;}
.ls13{letter-spacing:16.000387pt;}
.lsa{letter-spacing:19.406207pt;}
.lse{letter-spacing:21.253600pt;}
.ls9{letter-spacing:23.722923pt;}
.ls22{letter-spacing:121.395541pt;}
.ls27{letter-spacing:152.730864pt;}
.ls21{letter-spacing:179.509531pt;}
.ls37{letter-spacing:231.731541pt;}
.ls35{letter-spacing:324.266864pt;}
.ls39{letter-spacing:339.429531pt;}
.ls36{letter-spacing:377.840256pt;}
.ls38{letter-spacing:426.078207pt;}
.ls2b{letter-spacing:586.496197pt;}
.ws172{word-spacing:-48.895593pt;}
.ws13{word-spacing:-44.820926pt;}
.ws173{word-spacing:-36.159699pt;}
.ws16{word-spacing:-36.095699pt;}
.ws11{word-spacing:-32.596926pt;}
.ws55{word-spacing:-30.079699pt;}
.ws1f{word-spacing:-28.483790pt;}
.ws21{word-spacing:-28.265523pt;}
.ws1d{word-spacing:-25.599744pt;}
.ws78{word-spacing:-25.066416pt;}
.ws6d{word-spacing:-24.490361pt;}
.ws2f{word-spacing:-24.106365pt;}
.ws12{word-spacing:-24.103947pt;}
.ws10{word-spacing:-24.061985pt;}
.ws3{word-spacing:-23.999733pt;}
.wsc{word-spacing:-23.679763pt;}
.ws35{word-spacing:-23.039744pt;}
.ws177{word-spacing:-22.788403pt;}
.ws17c{word-spacing:-22.788142pt;}
.ws174{word-spacing:-22.783070pt;}
.ws176{word-spacing:-22.782809pt;}
.ws135{word-spacing:-22.559749pt;}
.ws39{word-spacing:-21.311763pt;}
.ws2{word-spacing:-20.479744pt;}
.ws17f{word-spacing:-18.943763pt;}
.ws6c{word-spacing:-16.746499pt;}
.ws7c{word-spacing:-16.713643pt;}
.ws51{word-spacing:-16.708565pt;}
.ws7b{word-spacing:-16.708309pt;}
.ws81{word-spacing:-16.708112pt;}
.ws54{word-spacing:-16.707659pt;}
.ws52{word-spacing:-16.685549pt;}
.wsa{word-spacing:-16.533168pt;}
.ws133{word-spacing:-16.187904pt;}
.ws6f{word-spacing:-15.071833pt;}
.ws5{word-spacing:-15.066365pt;}
.ws168{word-spacing:-15.023833pt;}
.ws9{word-spacing:-14.933035pt;}
.ws14{word-spacing:-14.725199pt;}
.ws60{word-spacing:-14.719853pt;}
.ws15{word-spacing:-14.666533pt;}
.ws22{word-spacing:-14.613187pt;}
.ws23{word-spacing:-14.453189pt;}
.wsff{word-spacing:-14.399856pt;}
.ws5c{word-spacing:-14.239858pt;}
.ws101{word-spacing:-14.133192pt;}
.ws102{word-spacing:-14.120478pt;}
.ws68{word-spacing:-14.079859pt;}
.ws69{word-spacing:-14.026526pt;}
.ws15c{word-spacing:-14.008809pt;}
.ws28{word-spacing:-13.973194pt;}
.ws27{word-spacing:-13.955716pt;}
.ws19{word-spacing:-13.919861pt;}
.ws120{word-spacing:-13.919185pt;}
.ws119{word-spacing:-13.881265pt;}
.ws26{word-spacing:-13.866528pt;}
.wsaa{word-spacing:-13.823236pt;}
.ws64{word-spacing:-13.813195pt;}
.ws62{word-spacing:-13.810843pt;}
.ws31{word-spacing:-13.759862pt;}
.ws9f{word-spacing:-13.710458pt;}
.ws53{word-spacing:-13.706530pt;}
.ws79{word-spacing:-13.653197pt;}
.ws1e{word-spacing:-13.599864pt;}
.ws111{word-spacing:-13.546531pt;}
.ws67{word-spacing:-13.493198pt;}
.ws24{word-spacing:-13.439866pt;}
.ws61{word-spacing:-13.389096pt;}
.ws158{word-spacing:-13.388993pt;}
.wsac{word-spacing:-13.388672pt;}
.ws2c{word-spacing:-13.388617pt;}
.wsa8{word-spacing:-13.388577pt;}
.ws30{word-spacing:-13.388564pt;}
.ws15b{word-spacing:-13.388127pt;}
.ws155{word-spacing:-13.388089pt;}
.ws18{word-spacing:-13.386533pt;}
.ws10b{word-spacing:-13.385699pt;}
.ws85{word-spacing:-13.385575pt;}
.ws9c{word-spacing:-13.385534pt;}
.ws7a{word-spacing:-13.385419pt;}
.ws100{word-spacing:-13.385415pt;}
.ws15d{word-spacing:-13.385393pt;}
.ws82{word-spacing:-13.385340pt;}
.ws56{word-spacing:-13.385278pt;}
.ws10a{word-spacing:-13.385263pt;}
.ws118{word-spacing:-13.385185pt;}
.ws104{word-spacing:-13.385147pt;}
.ws122{word-spacing:-13.385089pt;}
.ws157{word-spacing:-13.385064pt;}
.ws11d{word-spacing:-13.385061pt;}
.ws11a{word-spacing:-13.385029pt;}
.ws116{word-spacing:-13.385011pt;}
.ws11b{word-spacing:-13.384988pt;}
.ws130{word-spacing:-13.384922pt;}
.ws5f{word-spacing:-13.384885pt;}
.ws108{word-spacing:-13.384868pt;}
.ws29{word-spacing:-13.384831pt;}
.ws109{word-spacing:-13.384788pt;}
.ws15a{word-spacing:-13.384692pt;}
.ws2e{word-spacing:-13.384642pt;}
.ws6a{word-spacing:-13.384525pt;}
.ws65{word-spacing:-13.384420pt;}
.ws159{word-spacing:-13.384416pt;}
.ws105{word-spacing:-13.384269pt;}
.ws2d{word-spacing:-13.383969pt;}
.wsa9{word-spacing:-13.337902pt;}
.ws131{word-spacing:-13.337899pt;}
.ws2a{word-spacing:-13.337771pt;}
.ws11e{word-spacing:-13.335293pt;}
.ws110{word-spacing:-13.335065pt;}
.ws20{word-spacing:-13.334993pt;}
.ws115{word-spacing:-13.334882pt;}
.ws17{word-spacing:-13.333200pt;}
.ws66{word-spacing:-13.332719pt;}
.ws5a{word-spacing:-13.332569pt;}
.ws12f{word-spacing:-13.332565pt;}
.ws2b{word-spacing:-13.332437pt;}
.ws15e{word-spacing:-13.332272pt;}
.ws113{word-spacing:-13.332123pt;}
.ws11f{word-spacing:-13.332116pt;}
.ws10e{word-spacing:-13.332046pt;}
.ws5d{word-spacing:-13.332022pt;}
.ws10d{word-spacing:-13.332009pt;}
.ws107{word-spacing:-13.331989pt;}
.ws84{word-spacing:-13.331965pt;}
.ws10f{word-spacing:-13.331922pt;}
.wsfe{word-spacing:-13.331809pt;}
.ws121{word-spacing:-13.331669pt;}
.ws57{word-spacing:-13.331654pt;}
.ws156{word-spacing:-13.331604pt;}
.ws58{word-spacing:-13.331596pt;}
.ws5b{word-spacing:-13.331524pt;}
.ws10c{word-spacing:-13.331383pt;}
.ws103{word-spacing:-13.331374pt;}
.ws11c{word-spacing:-13.331316pt;}
.ws114{word-spacing:-13.331278pt;}
.ws9b{word-spacing:-13.331244pt;}
.ws112{word-spacing:-13.331205pt;}
.ws106{word-spacing:-13.331137pt;}
.ws5e{word-spacing:-13.331053pt;}
.ws117{word-spacing:-13.330986pt;}
.ws9e{word-spacing:-13.330944pt;}
.ws63{word-spacing:-13.226534pt;}
.ws4{word-spacing:-13.226501pt;}
.wsa0{word-spacing:-13.173202pt;}
.ws99{word-spacing:-13.119869pt;}
.wsab{word-spacing:-12.906538pt;}
.ws59{word-spacing:-12.853205pt;}
.ws139{word-spacing:-12.815858pt;}
.ws1c{word-spacing:-12.799872pt;}
.ws9d{word-spacing:-12.746539pt;}
.ws1a{word-spacing:-12.415845pt;}
.ws134{word-spacing:-12.191865pt;}
.wsf4{word-spacing:-12.048295pt;}
.ws32{word-spacing:-12.047866pt;}
.wse5{word-spacing:-12.047185pt;}
.wsd9{word-spacing:-12.047032pt;}
.wsa6{word-spacing:-12.046908pt;}
.wsa7{word-spacing:-12.046868pt;}
.ws165{word-spacing:-12.046855pt;}
.ws164{word-spacing:-12.046814pt;}
.wsa5{word-spacing:-12.046752pt;}
.wsc3{word-spacing:-12.046748pt;}
.ws16b{word-spacing:-12.046726pt;}
.ws171{word-spacing:-12.046659pt;}
.wsbf{word-spacing:-12.046598pt;}
.wsb2{word-spacing:-12.046597pt;}
.wsdf{word-spacing:-12.046554pt;}
.wsbb{word-spacing:-12.046518pt;}
.wscf{word-spacing:-12.046480pt;}
.ws8f{word-spacing:-12.046458pt;}
.ws16c{word-spacing:-12.046397pt;}
.wse3{word-spacing:-12.046395pt;}
.wse2{word-spacing:-12.046375pt;}
.wscb{word-spacing:-12.046362pt;}
.ws89{word-spacing:-12.046354pt;}
.wsad{word-spacing:-12.046344pt;}
.wsd5{word-spacing:-12.046322pt;}
.ws16d{word-spacing:-12.046299pt;}
.ws15f{word-spacing:-12.046255pt;}
.ws40{word-spacing:-12.046218pt;}
.wsd4{word-spacing:-12.046201pt;}
.wsd8{word-spacing:-12.046122pt;}
.wsb6{word-spacing:-12.046092pt;}
.ws167{word-spacing:-12.046025pt;}
.wsc9{word-spacing:-12.045987pt;}
.ws160{word-spacing:-12.045951pt;}
.ws4a{word-spacing:-12.045859pt;}
.ws44{word-spacing:-12.045753pt;}
.ws16a{word-spacing:-12.045749pt;}
.wsf9{word-spacing:-12.045647pt;}
.wsd1{word-spacing:-12.045602pt;}
.ws4d{word-spacing:-12.045509pt;}
.ws42{word-spacing:-12.045096pt;}
.ws4f{word-spacing:-12.045044pt;}
.ws137{word-spacing:-12.027186pt;}
.wsb4{word-spacing:-12.004569pt;}
.ws138{word-spacing:-12.004272pt;}
.ws147{word-spacing:-12.003083pt;}
.ws162{word-spacing:-12.002619pt;}
.ws163{word-spacing:-12.002525pt;}
.ws128{word-spacing:-12.001732pt;}
.ws12d{word-spacing:-12.001548pt;}
.ws4c{word-spacing:-11.999867pt;}
.ws46{word-spacing:-11.999386pt;}
.wsc5{word-spacing:-11.999319pt;}
.ws3a{word-spacing:-11.999236pt;}
.wsb3{word-spacing:-11.998983pt;}
.ws48{word-spacing:-11.998914pt;}
.ws91{word-spacing:-11.998909pt;}
.ws93{word-spacing:-11.998868pt;}
.ws13e{word-spacing:-11.998855pt;}
.ws13c{word-spacing:-11.998815pt;}
.wsf6{word-spacing:-11.998790pt;}
.ws86{word-spacing:-11.998753pt;}
.ws149{word-spacing:-11.998727pt;}
.wsdd{word-spacing:-11.998713pt;}
.ws3c{word-spacing:-11.998689pt;}
.wsdb{word-spacing:-11.998675pt;}
.ws153{word-spacing:-11.998660pt;}
.wsd3{word-spacing:-11.998655pt;}
.ws8b{word-spacing:-11.998632pt;}
.wsfb{word-spacing:-11.998627pt;}
.ws166{word-spacing:-11.998608pt;}
.wsf0{word-spacing:-11.998588pt;}
.ws169{word-spacing:-11.998569pt;}
.wsb0{word-spacing:-11.998549pt;}
.wsbd{word-spacing:-11.998475pt;}
.ws14b{word-spacing:-11.998398pt;}
.wsa1{word-spacing:-11.998354pt;}
.wsf2{word-spacing:-11.998336pt;}
.ws123{word-spacing:-11.998325pt;}
.ws33{word-spacing:-11.998321pt;}
.ws14c{word-spacing:-11.998300pt;}
.ws143{word-spacing:-11.998270pt;}
.ws13a{word-spacing:-11.998256pt;}
.ws37{word-spacing:-11.998191pt;}
.wsde{word-spacing:-11.998050pt;}
.wscd{word-spacing:-11.998041pt;}
.ws141{word-spacing:-11.998026pt;}
.wsec{word-spacing:-11.997983pt;}
.ws144{word-spacing:-11.997951pt;}
.wsf7{word-spacing:-11.997945pt;}
.ws8c{word-spacing:-11.997911pt;}
.wseb{word-spacing:-11.997872pt;}
.wsee{word-spacing:-11.997842pt;}
.wsc8{word-spacing:-11.997812pt;}
.wse7{word-spacing:-11.997804pt;}
.ws161{word-spacing:-11.997750pt;}
.ws3e{word-spacing:-11.997720pt;}
.ws87{word-spacing:-11.997719pt;}
.wsc1{word-spacing:-11.997704pt;}
.wsb7{word-spacing:-11.997652pt;}
.ws95{word-spacing:-11.997611pt;}
.wsb9{word-spacing:-11.997322pt;}
.ws16f{word-spacing:-11.997286pt;}
.ws170{word-spacing:-11.997192pt;}
.wsea{word-spacing:-11.996398pt;}
.wsfd{word-spacing:-11.996215pt;}
.ws150{word-spacing:-11.954620pt;}
.ws152{word-spacing:-11.954526pt;}
.ws140{word-spacing:-11.950609pt;}
.ws146{word-spacing:-11.950569pt;}
.ws97{word-spacing:-11.949911pt;}
.wsd{word-spacing:-11.733216pt;}
.ws34{word-spacing:-11.519872pt;}
.wsae{word-spacing:-11.471873pt;}
.ws6e{word-spacing:-11.135861pt;}
.ws189{word-spacing:-11.093195pt;}
.ws80{word-spacing:-11.050529pt;}
.ws179{word-spacing:-10.965196pt;}
.ws198{word-spacing:-10.922530pt;}
.ws18b{word-spacing:-10.857849pt;}
.ws184{word-spacing:-10.837198pt;}
.ws196{word-spacing:-10.794532pt;}
.ws197{word-spacing:-10.751866pt;}
.wsf{word-spacing:-10.709199pt;}
.ws1a2{word-spacing:-10.708515pt;}
.ws186{word-spacing:-10.706932pt;}
.ws1a0{word-spacing:-10.670833pt;}
.ws187{word-spacing:-10.670402pt;}
.ws1a7{word-spacing:-10.670086pt;}
.ws18e{word-spacing:-10.669755pt;}
.ws195{word-spacing:-10.669731pt;}
.ws19b{word-spacing:-10.669572pt;}
.ws193{word-spacing:-10.669367pt;}
.ws194{word-spacing:-10.669009pt;}
.ws191{word-spacing:-10.668866pt;}
.ws19f{word-spacing:-10.668444pt;}
.ws18c{word-spacing:-10.667868pt;}
.ws180{word-spacing:-10.666555pt;}
.ws1{word-spacing:-10.666533pt;}
.ws7f{word-spacing:-10.664476pt;}
.ws19e{word-spacing:-10.627645pt;}
.ws1a1{word-spacing:-10.627587pt;}
.ws1af{word-spacing:-10.627532pt;}
.ws178{word-spacing:-10.627339pt;}
.ws185{word-spacing:-10.410537pt;}
.ws1a3{word-spacing:-10.283846pt;}
.ws0{word-spacing:-10.283828pt;}
.ws199{word-spacing:-10.282914pt;}
.ws175{word-spacing:-10.282538pt;}
.ws1ad{word-spacing:-10.280669pt;}
.ws19a{word-spacing:-10.243674pt;}
.ws19d{word-spacing:-10.243365pt;}
.ws1b0{word-spacing:-10.243321pt;}
.ws192{word-spacing:-10.243156pt;}
.ws1a5{word-spacing:-10.242565pt;}
.ws1aa{word-spacing:-10.242346pt;}
.ws18a{word-spacing:-10.242289pt;}
.ws1b{word-spacing:-10.239872pt;}
.ws18f{word-spacing:-10.239662pt;}
.ws190{word-spacing:-10.238230pt;}
.ws1ae{word-spacing:-10.237618pt;}
.ws17a{word-spacing:-10.237380pt;}
.ws1a6{word-spacing:-10.237233pt;}
.ws17d{word-spacing:-10.201215pt;}
.ws181{word-spacing:-10.200897pt;}
.ws1a8{word-spacing:-10.200780pt;}
.ws19c{word-spacing:-10.200047pt;}
.ws1ab{word-spacing:-10.199184pt;}
.ws18d{word-spacing:-10.198909pt;}
.ws1ac{word-spacing:-10.198336pt;}
.ws1a4{word-spacing:-9.511838pt;}
.ws7{word-spacing:-9.102799pt;}
.ws6{word-spacing:-9.066533pt;}
.ws182{word-spacing:-7.805371pt;}
.ws188{word-spacing:-7.804659pt;}
.ws183{word-spacing:-7.767326pt;}
.ws17b{word-spacing:-7.721467pt;}
.ws25{word-spacing:-5.119949pt;}
.ws8{word-spacing:-5.013233pt;}
.ws17e{word-spacing:-4.478837pt;}
.ws6b{word-spacing:-3.063680pt;}
.ws136{word-spacing:-2.152715pt;}
.ws83{word-spacing:-0.053333pt;}
.ws7e{word-spacing:-0.047999pt;}
.ws1a9{word-spacing:-0.042666pt;}
.wse{word-spacing:-0.031999pt;}
.wsb{word-spacing:0.000000pt;}
.ws9a{word-spacing:12.182164pt;}
.ws98{word-spacing:12.208830pt;}
.ws16e{word-spacing:88.511017pt;}
.ws77{word-spacing:95.662937pt;}
.ws73{word-spacing:100.318885pt;}
.ws132{word-spacing:131.061787pt;}
.ws75{word-spacing:137.557787pt;}
.ws151{word-spacing:149.856453pt;}
.ws7d{word-spacing:151.232453pt;}
.ws74{word-spacing:159.493787pt;}
.ws96{word-spacing:159.573787pt;}
.ws88{word-spacing:159.575994pt;}
.ws12e{word-spacing:160.725787pt;}
.ws8e{word-spacing:172.437787pt;}
.ws8d{word-spacing:186.597787pt;}
.ws148{word-spacing:191.616453pt;}
.ws50{word-spacing:201.525787pt;}
.ws43{word-spacing:206.181787pt;}
.ws145{word-spacing:209.760453pt;}
.ws142{word-spacing:216.432453pt;}
.ws126{word-spacing:220.832453pt;}
.ws8a{word-spacing:226.485787pt;}
.ws90{word-spacing:235.845787pt;}
.ws13b{word-spacing:237.168453pt;}
.ws14f{word-spacing:238.464453pt;}
.ws14d{word-spacing:241.104453pt;}
.ws3b{word-spacing:242.907120pt;}
.ws4e{word-spacing:243.381787pt;}
.ws71{word-spacing:247.149225pt;}
.ws12b{word-spacing:247.793414pt;}
.ws14e{word-spacing:249.936453pt;}
.wsf5{word-spacing:259.813787pt;}
.ws3f{word-spacing:262.293787pt;}
.ws45{word-spacing:265.317787pt;}
.ws94{word-spacing:272.757787pt;}
.ws154{word-spacing:273.504453pt;}
.ws4b{word-spacing:274.821787pt;}
.ws92{word-spacing:276.405787pt;}
.ws14a{word-spacing:279.552453pt;}
.ws125{word-spacing:280.108081pt;}
.ws12c{word-spacing:280.336980pt;}
.ws13d{word-spacing:287.472453pt;}
.ws76{word-spacing:295.473415pt;}
.ws129{word-spacing:299.440768pt;}
.ws38{word-spacing:304.677787pt;}
.ws41{word-spacing:307.173787pt;}
.ws13f{word-spacing:314.160453pt;}
.ws12a{word-spacing:314.418677pt;}
.ws36{word-spacing:316.384453pt;}
.wsa3{word-spacing:327.936980pt;}
.ws127{word-spacing:331.760768pt;}
.ws72{word-spacing:334.544981pt;}
.ws124{word-spacing:346.781343pt;}
.ws3d{word-spacing:349.504453pt;}
.ws47{word-spacing:353.152453pt;}
.wsa4{word-spacing:355.670314pt;}
.ws49{word-spacing:369.712453pt;}
.wsa2{word-spacing:370.443647pt;}
.ws70{word-spacing:460.902314pt;}
.wsba{word-spacing:495.253787pt;}
.wsfa{word-spacing:501.541787pt;}
.wsb5{word-spacing:511.675120pt;}
.wse8{word-spacing:515.552453pt;}
.wsef{word-spacing:518.960453pt;}
.wsd2{word-spacing:520.496453pt;}
.wsb8{word-spacing:524.960453pt;}
.wsf8{word-spacing:528.224453pt;}
.wsc2{word-spacing:529.616453pt;}
.wsed{word-spacing:531.680453pt;}
.wsca{word-spacing:555.104453pt;}
.wsce{word-spacing:559.952453pt;}
.wse0{word-spacing:574.400453pt;}
.wsd6{word-spacing:585.248453pt;}
.wsf1{word-spacing:586.160453pt;}
.wsaf{word-spacing:587.264453pt;}
.wscc{word-spacing:588.896453pt;}
.wsfc{word-spacing:589.664453pt;}
.wse4{word-spacing:591.824453pt;}
.wse9{word-spacing:592.208453pt;}
.wsbe{word-spacing:599.024453pt;}
.wsd0{word-spacing:599.504453pt;}
.wsbc{word-spacing:602.912453pt;}
.wsb1{word-spacing:605.648453pt;}
.wse1{word-spacing:606.176453pt;}
.wsc0{word-spacing:610.112453pt;}
.wsd7{word-spacing:615.248453pt;}
.wsdc{word-spacing:617.024453pt;}
.wsc4{word-spacing:623.648453pt;}
.wse6{word-spacing:639.920453pt;}
.wsda{word-spacing:649.184453pt;}
.wsc7{word-spacing:651.964204pt;}
.wsf3{word-spacing:662.972642pt;}
.wsc6{word-spacing:674.960453pt;}
._122{margin-left:-16.044933pt;}
._a3{margin-left:-8.421090pt;}
._b{margin-left:-6.605183pt;}
._c{margin-left:-5.013283pt;}
._9{margin-left:-3.495900pt;}
._2{margin-left:-2.434549pt;}
._0{margin-left:-1.234739pt;}
._3{width:0.986647pt;}
._4{width:2.079958pt;}
._123{width:5.247934pt;}
._2a{width:7.403086pt;}
._7{width:8.495916pt;}
._d{width:10.177688pt;}
._8{width:11.333230pt;}
._5{width:12.597217pt;}
._6{width:14.375953pt;}
._121{width:16.000651pt;}
._11f{width:50.395879pt;}
._11d{width:52.358502pt;}
._d8{width:53.264736pt;}
._fc{width:60.071134pt;}
._ee{width:61.683117pt;}
._119{width:68.735236pt;}
._4f{width:70.712793pt;}
._c7{width:71.769067pt;}
._da{width:74.552750pt;}
._db{width:75.667359pt;}
._42{width:76.584729pt;}
._cf{width:77.951134pt;}
._101{width:81.971665pt;}
._102{width:87.046620pt;}
._d4{width:92.059138pt;}
._fd{width:93.738661pt;}
._fa{width:95.467379pt;}
._fb{width:99.259337pt;}
._ea{width:100.933903pt;}
._a4{width:103.675827pt;}
._ff{width:104.966837pt;}
._f6{width:106.654815pt;}
._114{width:108.144571pt;}
._46{width:109.040485pt;}
._f8{width:111.585513pt;}
._37{width:113.178903pt;}
._117{width:114.608270pt;}
._113{width:116.443123pt;}
._1d{width:118.868184pt;}
._4b{width:119.806669pt;}
._f7{width:121.420976pt;}
._79{width:124.414618pt;}
._7e{width:125.688183pt;}
._e0{width:129.574640pt;}
._d2{width:131.048985pt;}
._3d{width:132.565552pt;}
._45{width:135.066880pt;}
._73{width:137.946848pt;}
._5c{width:139.199286pt;}
._69{width:140.664017pt;}
._11b{width:143.178849pt;}
._4a{width:144.137779pt;}
._f4{width:146.145716pt;}
._ef{width:147.521708pt;}
._3f{width:151.505780pt;}
._63{width:152.919045pt;}
._f5{width:154.799103pt;}
._111{width:157.713968pt;}
._23{width:160.839017pt;}
._e6{width:164.563460pt;}
._6f{width:165.546090pt;}
._61{width:167.540437pt;}
._df{width:168.953453pt;}
._d7{width:170.737691pt;}
._f9{width:171.809711pt;}
._f0{width:172.701269pt;}
._100{width:173.893417pt;}
._d9{width:174.835104pt;}
._40{width:176.441780pt;}
._27{width:180.220548pt;}
._cd{width:181.127475pt;}
._29{width:182.721909pt;}
._c9{width:184.360366pt;}
._f2{width:185.647112pt;}
._35{width:186.612292pt;}
._d0{width:189.344439pt;}
._d1{width:190.385707pt;}
._2c{width:191.759113pt;}
._7d{width:193.097784pt;}
._74{width:194.251499pt;}
._ec{width:195.708350pt;}
._fe{width:196.822841pt;}
._e7{width:197.869800pt;}
._d3{width:198.786150pt;}
._f1{width:199.998934pt;}
._76{width:201.500377pt;}
._e4{width:202.975114pt;}
._de{width:203.872268pt;}
._7c{width:205.915370pt;}
._44{width:206.952452pt;}
._118{width:208.032972pt;}
._60{width:208.947648pt;}
._3e{width:210.132209pt;}
._43{width:212.952386pt;}
._e1{width:215.124974pt;}
._64{width:216.471241pt;}
._71{width:217.527017pt;}
._3a{width:219.815017pt;}
._f3{width:220.743291pt;}
._22{width:222.652350pt;}
._10{width:224.807730pt;}
._af{width:226.641684pt;}
._6e{width:228.380373pt;}
._c1{width:230.044634pt;}
._e9{width:231.834444pt;}
._41{width:233.138290pt;}
._1e{width:234.233625pt;}
._b9{width:235.511214pt;}
._75{width:237.204833pt;}
._7b{width:238.460377pt;}
._49{width:240.023017pt;}
._78{width:242.260293pt;}
._5d{width:243.303040pt;}
._4d{width:244.706162pt;}
._c3{width:246.647273pt;}
._ed{width:247.602538pt;}
._e8{width:249.314337pt;}
._4e{width:251.041035pt;}
._68{width:253.383044pt;}
._b7{width:254.305715pt;}
._e5{width:255.372350pt;}
._67{width:256.612267pt;}
._ac{width:258.159077pt;}
._2e{width:259.471840pt;}
._eb{width:261.721915pt;}
._a6{width:262.737535pt;}
._110{width:263.772695pt;}
._25{width:267.436350pt;}
._28{width:270.225623pt;}
._1c{width:271.772951pt;}
._2f{width:273.572411pt;}
._55{width:275.244350pt;}
._e2{width:276.427395pt;}
._b0{width:278.489603pt;}
._dc{width:280.164537pt;}
._bc{width:282.076374pt;}
._ce{width:284.628886pt;}
._52{width:286.049707pt;}
._2b{width:287.644350pt;}
._34{width:289.469495pt;}
._d6{width:292.025951pt;}
._115{width:292.988905pt;}
._6a{width:294.770451pt;}
._11a{width:295.686795pt;}
._11e{width:299.324905pt;}
._a9{width:300.359018pt;}
._a5{width:302.209712pt;}
._a8{width:303.134578pt;}
._c2{width:304.023645pt;}
._bf{width:305.172290pt;}
._4c{width:307.071531pt;}
._c5{width:309.296006pt;}
._32{width:311.090238pt;}
._6b{width:313.938238pt;}
._56{width:315.051715pt;}
._b2{width:316.958941pt;}
._21{width:318.547911pt;}
._bd{width:320.201779pt;}
._b3{width:324.137779pt;}
._47{width:325.392209pt;}
._bb{width:326.410954pt;}
._ba{width:330.263017pt;}
._b4{width:331.760768pt;}
._ae{width:333.102952pt;}
._b8{width:334.942536pt;}
._20{width:336.044237pt;}
._b5{width:337.529780pt;}
._62{width:339.191727pt;}
._5f{width:340.441716pt;}
._be{width:341.993809pt;}
._120{width:345.036030pt;}
._c6{width:346.174879pt;}
._66{width:350.867478pt;}
._2d{width:354.692864pt;}
._31{width:356.958652pt;}
._112{width:358.395238pt;}
._ad{width:359.425715pt;}
._cb{width:363.263359pt;}
._26{width:364.903380pt;}
._59{width:367.912269pt;}
._53{width:369.008145pt;}
._b1{width:370.237441pt;}
._50{width:371.655572pt;}
._11c{width:373.746454pt;}
._48{width:374.717983pt;}
._aa{width:377.840256pt;}
._ab{width:380.779701pt;}
._10f{width:381.925647pt;}
._54{width:382.884590pt;}
._1f{width:387.943124pt;}
._b6{width:389.927017pt;}
._65{width:393.374145pt;}
._a1{width:396.207360pt;}
._c4{width:397.911306pt;}
._70{width:401.109764pt;}
._e3{width:407.055591pt;}
._1b{width:409.973515pt;}
._15{width:410.954812pt;}
._5e{width:412.587179pt;}
._c8{width:414.460790pt;}
._ca{width:416.132525pt;}
._6d{width:417.634828pt;}
._116{width:425.740836pt;}
._39{width:427.275964pt;}
._18{width:433.071657pt;}
._9b{width:435.865724pt;}
._10d{width:439.600979pt;}
._51{width:441.591557pt;}
._38{width:442.694742pt;}
._a7{width:446.380237pt;}
._6c{width:449.942930pt;}
._a2{width:454.628296pt;}
._77{width:455.546064pt;}
._19{width:460.516864pt;}
._e{width:464.535572pt;}
._7f{width:465.792432pt;}
._d5{width:474.255777pt;}
._dd{width:475.168757pt;}
._3c{width:478.718145pt;}
._5a{width:479.651317pt;}
._30{width:484.021190pt;}
._36{width:487.227298pt;}
._cc{width:489.974231pt;}
._93{width:500.062452pt;}
._24{width:503.045845pt;}
._5b{width:507.059013pt;}
._8a{width:509.683497pt;}
._57{width:519.280274pt;}
._c0{width:521.808348pt;}
._33{width:527.820263pt;}
._109{width:529.518853pt;}
._89{width:535.431017pt;}
._72{width:537.285435pt;}
._58{width:539.122657pt;}
._12{width:541.121274pt;}
._9e{width:544.524615pt;}
._f{width:547.602223pt;}
._8b{width:552.575110pt;}
._7a{width:555.485226pt;}
._8f{width:563.095048pt;}
._96{width:570.307011pt;}
._a0{width:575.103359pt;}
._107{width:580.710663pt;}
._13{width:582.824660pt;}
._99{width:584.322855pt;}
._87{width:587.278937pt;}
._97{width:590.865708pt;}
._9d{width:594.649157pt;}
._94{width:598.143103pt;}
._3b{width:606.238145pt;}
._1a{width:613.069877pt;}
._90{width:617.757145pt;}
._17{width:626.064485pt;}
._9f{width:627.972525pt;}
._9c{width:628.991112pt;}
._8d{width:629.970161pt;}
._8c{width:631.423569pt;}
._84{width:633.729707pt;}
._92{width:639.052350pt;}
._81{width:640.652890pt;}
._9a{width:643.342934pt;}
._16{width:644.618724pt;}
._14{width:645.661295pt;}
._11{width:650.570514pt;}
._98{width:655.279303pt;}
._85{width:668.215048pt;}
._10a{width:684.137411pt;}
._103{width:693.826338pt;}
._10c{width:715.929059pt;}
._105{width:728.097038pt;}
._80{width:733.303572pt;}
._106{width:737.464995pt;}
._82{width:739.266650pt;}
._8e{width:742.618669pt;}
._86{width:743.703906pt;}
._88{width:746.458627pt;}
._83{width:751.178575pt;}
._95{width:770.330363pt;}
._91{width:786.106186pt;}
._10b{width:791.656245pt;}
._10e{width:792.560174pt;}
._104{width:796.744189pt;}
._108{width:799.245494pt;}
._1{width:989.779077pt;}
._a{width:1420.920411pt;}
.fs2{font-size:26.666133pt;}
.fs5{font-size:30.932800pt;}
.fs6{font-size:31.999467pt;}
.fs7{font-size:33.599467pt;}
.fsd{font-size:33.724800pt;}
.fs3{font-size:36.266133pt;}
.fsc{font-size:37.332800pt;}
.fsb{font-size:37.472000pt;}
.fs0{font-size:42.666133pt;}
.fsa{font-size:47.999467pt;}
.fs4{font-size:53.332800pt;}
.fs8{font-size:58.666133pt;}
.fs9{font-size:63.999467pt;}
.fs1{font-size:95.998933pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:34.934667pt;}
.y7f{bottom:35.014667pt;}
.yb9{bottom:35.094667pt;}
.ydb{bottom:35.174667pt;}
.y46{bottom:35.921333pt;}
.y7e{bottom:63.158667pt;}
.yfb{bottom:63.665333pt;}
.y2d1{bottom:70.332000pt;}
.y45{bottom:72.828000pt;}
.y297{bottom:76.492000pt;}
.y7d{bottom:79.825333pt;}
.yfa{bottom:80.332000pt;}
.y2d0{bottom:83.665333pt;}
.y44{bottom:89.494667pt;}
.y296{bottom:89.825333pt;}
.y1fb{bottom:95.038667pt;}
.y7c{bottom:96.492000pt;}
.yf9{bottom:96.998667pt;}
.y262{bottom:97.734667pt;}
.y1d8{bottom:99.418667pt;}
.y295{bottom:103.158667pt;}
.y43{bottom:106.161333pt;}
.y2cf{bottom:110.332000pt;}
.y20e{bottom:110.978667pt;}
.y1fa{bottom:111.705333pt;}
.y16b{bottom:113.096000pt;}
.y7b{bottom:113.158667pt;}
.yf8{bottom:113.665333pt;}
.y261{bottom:114.401333pt;}
.y294{bottom:116.492000pt;}
.y1d7{bottom:118.468000pt;}
.y42{bottom:122.828000pt;}
.y2ce{bottom:123.665333pt;}
.y20d{bottom:127.645333pt;}
.y1f9{bottom:128.372000pt;}
.y7a{bottom:129.825333pt;}
.yf7{bottom:130.332000pt;}
.y260{bottom:131.068000pt;}
.y1d6{bottom:133.134667pt;}
.y2cd{bottom:136.998667pt;}
.y41{bottom:139.494667pt;}
.y293{bottom:143.158667pt;}
.y18e{bottom:143.418667pt;}
.y20c{bottom:144.312000pt;}
.y1f8{bottom:145.038667pt;}
.y79{bottom:146.492000pt;}
.yf6{bottom:146.998667pt;}
.y25f{bottom:147.734667pt;}
.y1d5{bottom:147.801333pt;}
.y16a{bottom:149.084000pt;}
.y2cc{bottom:150.332000pt;}
.y40{bottom:156.161333pt;}
.y292{bottom:156.492000pt;}
.y20b{bottom:160.978667pt;}
.y1f7{bottom:161.705333pt;}
.y1d4{bottom:162.468000pt;}
.y18d{bottom:162.469333pt;}
.y78{bottom:163.158667pt;}
.yf5{bottom:163.665333pt;}
.y25e{bottom:164.401333pt;}
.y169{bottom:165.750667pt;}
.y291{bottom:169.825333pt;}
.y3f{bottom:172.828000pt;}
.y2cb{bottom:176.998667pt;}
.y18c{bottom:177.134667pt;}
.y20a{bottom:177.645333pt;}
.y1c0{bottom:178.010667pt;}
.y1f6{bottom:178.372000pt;}
.y77{bottom:179.825333pt;}
.yf4{bottom:180.332000pt;}
.y25d{bottom:181.068000pt;}
.y168{bottom:182.417333pt;}
.y290{bottom:183.158667pt;}
.y3e{bottom:189.494667pt;}
.y2ca{bottom:190.332000pt;}
.y18b{bottom:191.801333pt;}
.y209{bottom:194.312000pt;}
.y1f5{bottom:195.038667pt;}
.y76{bottom:196.492000pt;}
.yf3{bottom:196.998667pt;}
.y1bf{bottom:197.060000pt;}
.y25c{bottom:197.734667pt;}
.y167{bottom:199.084000pt;}
.y2c9{bottom:203.665333pt;}
.y3d{bottom:206.161333pt;}
.y18a{bottom:206.468000pt;}
.y28f{bottom:209.825333pt;}
.y208{bottom:210.978667pt;}
.y1f4{bottom:211.705333pt;}
.y1be{bottom:211.726667pt;}
.y75{bottom:213.158667pt;}
.yf2{bottom:213.665333pt;}
.y25b{bottom:214.401333pt;}
.y166{bottom:215.750667pt;}
.y237{bottom:216.750667pt;}
.y2c8{bottom:216.998667pt;}
.y189{bottom:221.134667pt;}
.y3c{bottom:222.828000pt;}
.y28e{bottom:223.158667pt;}
.y1bd{bottom:226.393333pt;}
.y207{bottom:227.645333pt;}
.y1f3{bottom:228.372000pt;}
.y74{bottom:229.825333pt;}
.y12b{bottom:229.957333pt;}
.yf1{bottom:230.332000pt;}
.y25a{bottom:231.068000pt;}
.y165{bottom:232.417333pt;}
.y188{bottom:235.801333pt;}
.y28d{bottom:236.492000pt;}
.y3b{bottom:239.494667pt;}
.y1bc{bottom:241.060000pt;}
.y2c7{bottom:243.665333pt;}
.y206{bottom:244.312000pt;}
.y1f2{bottom:245.038667pt;}
.y8d{bottom:246.429333pt;}
.y73{bottom:246.492000pt;}
.yf0{bottom:246.998667pt;}
.y259{bottom:247.734667pt;}
.y164{bottom:249.084000pt;}
.y28c{bottom:249.825333pt;}
.y187{bottom:250.468000pt;}
.y1bb{bottom:255.726667pt;}
.y3a{bottom:256.161333pt;}
.y2c6{bottom:256.998667pt;}
.y205{bottom:260.978667pt;}
.y1f1{bottom:261.705333pt;}
.y72{bottom:263.158667pt;}
.yef{bottom:263.665333pt;}
.y258{bottom:264.401333pt;}
.y186{bottom:265.134667pt;}
.y163{bottom:265.750667pt;}
.y2c5{bottom:270.332000pt;}
.y1ba{bottom:270.393333pt;}
.y39{bottom:272.828000pt;}
.y1dd{bottom:275.056000pt;}
.y12a{bottom:275.758667pt;}
.y28b{bottom:276.492000pt;}
.y204{bottom:277.645333pt;}
.y1f0{bottom:278.372000pt;}
.y8c{bottom:279.024000pt;}
.y185{bottom:279.801333pt;}
.yb8{bottom:279.825333pt;}
.yee{bottom:280.332000pt;}
.y257{bottom:281.068000pt;}
.y2c4{bottom:283.665333pt;}
.y1b9{bottom:285.060000pt;}
.y38{bottom:289.494667pt;}
.y1dc{bottom:289.722667pt;}
.y28a{bottom:289.825333pt;}
.y129{bottom:292.425333pt;}
.y203{bottom:294.312000pt;}
.y184{bottom:294.468000pt;}
.y1ef{bottom:295.038667pt;}
.y8b{bottom:295.690667pt;}
.yb7{bottom:296.492000pt;}
.y71{bottom:296.618667pt;}
.yed{bottom:296.998667pt;}
.y256{bottom:297.734667pt;}
.y1b8{bottom:299.726667pt;}
.y289{bottom:303.158667pt;}
.y1db{bottom:304.389333pt;}
.y37{bottom:306.161333pt;}
.y128{bottom:309.092000pt;}
.y183{bottom:309.134667pt;}
.y2c3{bottom:310.332000pt;}
.y202{bottom:310.978667pt;}
.y162{bottom:311.000000pt;}
.y1ee{bottom:311.705333pt;}
.y8a{bottom:312.357333pt;}
.yda{bottom:313.158667pt;}
.y70{bottom:313.285333pt;}
.yb6{bottom:313.292000pt;}
.yec{bottom:313.665333pt;}
.y1b7{bottom:314.393333pt;}
.y255{bottom:314.401333pt;}
.y288{bottom:316.492000pt;}
.y1da{bottom:319.056000pt;}
.y36{bottom:322.828000pt;}
.y2c2{bottom:323.665333pt;}
.y182{bottom:323.801333pt;}
.y161{bottom:325.666667pt;}
.y127{bottom:325.758667pt;}
.y201{bottom:327.645333pt;}
.y1ed{bottom:328.372000pt;}
.y89{bottom:329.024000pt;}
.y1b6{bottom:329.060000pt;}
.y235{bottom:329.762667pt;}
.yd9{bottom:329.825333pt;}
.y6f{bottom:329.952000pt;}
.yeb{bottom:330.332000pt;}
.y254{bottom:331.068000pt;}
.y1d9{bottom:333.722667pt;}
.y2c1{bottom:336.998667pt;}
.y181{bottom:338.468000pt;}
.y35{bottom:339.494667pt;}
.y160{bottom:340.333333pt;}
.y126{bottom:342.425333pt;}
.y287{bottom:343.158667pt;}
.y1b5{bottom:343.726667pt;}
.y200{bottom:344.312000pt;}
.y1ec{bottom:345.038667pt;}
.y88{bottom:345.690667pt;}
.yd8{bottom:346.492000pt;}
.y6e{bottom:346.618667pt;}
.yea{bottom:346.998667pt;}
.y253{bottom:347.734667pt;}
.y2c0{bottom:350.332000pt;}
.y180{bottom:353.134667pt;}
.yb5{bottom:354.297333pt;}
.y34{bottom:356.161333pt;}
.y285{bottom:356.490667pt;}
.y286{bottom:356.492000pt;}
.y1b4{bottom:358.393333pt;}
.y125{bottom:359.092000pt;}
.y15f{bottom:359.745333pt;}
.y1ff{bottom:360.978667pt;}
.y1eb{bottom:361.705333pt;}
.y87{bottom:362.357333pt;}
.yd7{bottom:363.158667pt;}
.y6d{bottom:363.285333pt;}
.ye9{bottom:363.665333pt;}
.y252{bottom:364.401333pt;}
.y17f{bottom:367.801333pt;}
.y284{bottom:369.824000pt;}
.yb4{bottom:370.964000pt;}
.y33{bottom:372.828000pt;}
.y1b3{bottom:373.060000pt;}
.y15e{bottom:374.412000pt;}
.y124{bottom:375.758667pt;}
.y234{bottom:376.326667pt;}
.y2bf{bottom:376.998667pt;}
.y1fe{bottom:377.645333pt;}
.y143{bottom:377.722667pt;}
.y1ea{bottom:378.372000pt;}
.y86{bottom:379.024000pt;}
.yd6{bottom:379.825333pt;}
.y6c{bottom:379.952000pt;}
.ye8{bottom:380.332000pt;}
.y251{bottom:381.068000pt;}
.y17e{bottom:382.468000pt;}
.y283{bottom:383.157333pt;}
.y1b2{bottom:387.726667pt;}
.yb3{bottom:387.764000pt;}
.y15d{bottom:389.078667pt;}
.y32{bottom:389.494667pt;}
.y2be{bottom:390.332000pt;}
.y142{bottom:392.389333pt;}
.y123{bottom:392.425333pt;}
.y233{bottom:392.993333pt;}
.y1fd{bottom:394.312000pt;}
.y1e9{bottom:395.038667pt;}
.y282{bottom:396.490667pt;}
.yd5{bottom:396.492000pt;}
.ye7{bottom:396.998667pt;}
.y17d{bottom:397.134667pt;}
.y250{bottom:397.734667pt;}
.y1b1{bottom:402.393333pt;}
.y2bd{bottom:403.665333pt;}
.y15c{bottom:403.745333pt;}
.y31{bottom:406.161333pt;}
.y141{bottom:407.056000pt;}
.y122{bottom:409.092000pt;}
.y232{bottom:409.660000pt;}
.y281{bottom:409.824000pt;}
.y1fc{bottom:411.112000pt;}
.y1e8{bottom:411.705333pt;}
.y17c{bottom:411.801333pt;}
.yd4{bottom:413.158667pt;}
.y6b{bottom:413.412000pt;}
.ye6{bottom:413.665333pt;}
.y24f{bottom:414.401333pt;}
.y2bc{bottom:416.998667pt;}
.y1b0{bottom:417.060000pt;}
.y15b{bottom:418.412000pt;}
.y140{bottom:421.722667pt;}
.y30{bottom:422.828000pt;}
.y280{bottom:423.157333pt;}
.y121{bottom:425.758667pt;}
.y231{bottom:426.326667pt;}
.y17b{bottom:426.468000pt;}
.y1e7{bottom:428.372000pt;}
.yb2{bottom:428.770667pt;}
.yd3{bottom:429.825333pt;}
.y6a{bottom:430.078667pt;}
.ye5{bottom:430.332000pt;}
.y24e{bottom:431.068000pt;}
.y1af{bottom:431.726667pt;}
.y15a{bottom:433.078667pt;}
.y85{bottom:434.549333pt;}
.y27f{bottom:436.490667pt;}
.y13f{bottom:441.134667pt;}
.y120{bottom:442.425333pt;}
.y230{bottom:442.993333pt;}
.y2bb{bottom:443.665333pt;}
.y1e6{bottom:445.038667pt;}
.yb1{bottom:445.437333pt;}
.y1ae{bottom:446.393333pt;}
.yd2{bottom:446.492000pt;}
.y84{bottom:446.549333pt;}
.y1d3{bottom:446.625333pt;}
.y69{bottom:446.745333pt;}
.ye4{bottom:446.998667pt;}
.y24d{bottom:447.734667pt;}
.y159{bottom:447.745333pt;}
.y27e{bottom:449.824000pt;}
.y13e{bottom:455.801333pt;}
.y2f{bottom:456.098667pt;}
.y2ba{bottom:456.998667pt;}
.y83{bottom:458.549333pt;}
.y11f{bottom:459.092000pt;}
.y22f{bottom:459.660000pt;}
.y1ad{bottom:461.060000pt;}
.y1e5{bottom:461.705333pt;}
.yb0{bottom:462.104000pt;}
.y158{bottom:462.412000pt;}
.y27d{bottom:463.157333pt;}
.yd1{bottom:463.158667pt;}
.ye3{bottom:463.665333pt;}
.y24c{bottom:464.401333pt;}
.y2b9{bottom:470.332000pt;}
.y13d{bottom:470.468000pt;}
.y1ac{bottom:475.726667pt;}
.y11e{bottom:475.758667pt;}
.y22e{bottom:476.326667pt;}
.y27c{bottom:476.490667pt;}
.y157{bottom:477.078667pt;}
.y1e4{bottom:478.372000pt;}
.yaf{bottom:478.770667pt;}
.yd0{bottom:479.825333pt;}
.y68{bottom:480.205333pt;}
.ye2{bottom:480.332000pt;}
.y24b{bottom:481.068000pt;}
.y1d2{bottom:482.706667pt;}
.y2b8{bottom:483.665333pt;}
.y13c{bottom:485.134667pt;}
.y27b{bottom:489.824000pt;}
.y1ab{bottom:490.393333pt;}
.y156{bottom:491.745333pt;}
.y11d{bottom:492.425333pt;}
.y22d{bottom:492.993333pt;}
.y1e3{bottom:495.038667pt;}
.yae{bottom:495.437333pt;}
.ycf{bottom:496.492000pt;}
.y67{bottom:496.872000pt;}
.ye1{bottom:496.998667pt;}
.y24a{bottom:497.734667pt;}
.y1d1{bottom:499.373333pt;}
.y13b{bottom:499.801333pt;}
.y27a{bottom:503.157333pt;}
.y1aa{bottom:505.060000pt;}
.y155{bottom:506.412000pt;}
.y11c{bottom:509.092000pt;}
.y22c{bottom:509.660000pt;}
.y2b7{bottom:510.332000pt;}
.y1e2{bottom:511.705333pt;}
.y2e{bottom:511.925333pt;}
.yad{bottom:512.104000pt;}
.yce{bottom:513.158667pt;}
.y66{bottom:513.538667pt;}
.ye0{bottom:513.665333pt;}
.y249{bottom:514.401333pt;}
.y13a{bottom:514.468000pt;}
.y1d0{bottom:516.040000pt;}
.y279{bottom:516.490667pt;}
.y1a9{bottom:519.726667pt;}
.y154{bottom:521.077333pt;}
.y2b6{bottom:523.665333pt;}
.y11b{bottom:525.758667pt;}
.y22b{bottom:526.326667pt;}
.yac{bottom:528.770667pt;}
.y139{bottom:529.134667pt;}
.y278{bottom:529.824000pt;}
.ycd{bottom:529.825333pt;}
.y2d{bottom:529.925333pt;}
.y65{bottom:530.205333pt;}
.ydf{bottom:530.332000pt;}
.y248{bottom:531.068000pt;}
.y1cf{bottom:532.840000pt;}
.y1a8{bottom:534.393333pt;}
.y153{bottom:535.744000pt;}
.y2b5{bottom:536.998667pt;}
.y11a{bottom:542.425333pt;}
.y22a{bottom:542.993333pt;}
.y277{bottom:543.157333pt;}
.y138{bottom:543.801333pt;}
.yab{bottom:545.437333pt;}
.ycc{bottom:546.492000pt;}
.y64{bottom:546.872000pt;}
.yde{bottom:546.998667pt;}
.y247{bottom:547.734667pt;}
.y2c{bottom:547.925333pt;}
.y1a7{bottom:549.060000pt;}
.y2b4{bottom:550.332000pt;}
.y152{bottom:550.410667pt;}
.y1e1{bottom:553.722667pt;}
.y276{bottom:556.490667pt;}
.y137{bottom:558.468000pt;}
.y119{bottom:559.092000pt;}
.yaa{bottom:562.104000pt;}
.ycb{bottom:563.158667pt;}
.y63{bottom:563.538667pt;}
.ydd{bottom:563.665333pt;}
.y1a6{bottom:563.726667pt;}
.y246{bottom:564.401333pt;}
.y151{bottom:565.077333pt;}
.y2b{bottom:565.925333pt;}
.y1e0{bottom:568.389333pt;}
.y1ce{bottom:568.922667pt;}
.y136{bottom:573.134667pt;}
.y118{bottom:575.758667pt;}
.y2b3{bottom:576.998667pt;}
.y1a5{bottom:578.393333pt;}
.y150{bottom:579.744000pt;}
.yca{bottom:579.825333pt;}
.ydc{bottom:580.332000pt;}
.y245{bottom:581.068000pt;}
.y1df{bottom:583.056000pt;}
.y2a{bottom:583.925333pt;}
.y1cd{bottom:585.589333pt;}
.y275{bottom:586.429333pt;}
.y135{bottom:587.801333pt;}
.y2b2{bottom:590.332000pt;}
.y1a4{bottom:593.060000pt;}
.y14f{bottom:594.410667pt;}
.yc9{bottom:596.492000pt;}
.y62{bottom:596.998667pt;}
.y1de{bottom:597.722667pt;}
.y244{bottom:597.734667pt;}
.y29{bottom:601.925333pt;}
.y1cc{bottom:602.256000pt;}
.y134{bottom:602.468000pt;}
.y2b1{bottom:603.665333pt;}
.y229{bottom:605.060000pt;}
.y1a3{bottom:607.726667pt;}
.y14e{bottom:609.077333pt;}
.ya9{bottom:612.389333pt;}
.yc8{bottom:613.158667pt;}
.y61{bottom:613.665333pt;}
.y243{bottom:614.401333pt;}
.y2b0{bottom:616.998667pt;}
.y133{bottom:617.134667pt;}
.y274{bottom:618.300000pt;}
.y1cb{bottom:618.922667pt;}
.y228{bottom:619.726667pt;}
.y28{bottom:619.925333pt;}
.y1a2{bottom:622.393333pt;}
.y14d{bottom:623.744000pt;}
.ya8{bottom:627.056000pt;}
.yc7{bottom:629.825333pt;}
.y60{bottom:630.332000pt;}
.y242{bottom:631.068000pt;}
.y132{bottom:631.801333pt;}
.y227{bottom:634.393333pt;}
.y273{bottom:634.966667pt;}
.y1ca{bottom:635.589333pt;}
.y117{bottom:637.060000pt;}
.y27{bottom:637.925333pt;}
.y14c{bottom:638.410667pt;}
.ya7{bottom:641.722667pt;}
.y2af{bottom:643.665333pt;}
.y16{bottom:643.710667pt;}
.y131{bottom:646.468000pt;}
.yc6{bottom:646.492000pt;}
.y5f{bottom:646.998667pt;}
.y241{bottom:647.734667pt;}
.y226{bottom:649.060000pt;}
.y272{bottom:651.633333pt;}
.y116{bottom:651.726667pt;}
.y1c9{bottom:652.256000pt;}
.y14b{bottom:653.077333pt;}
.y15{bottom:654.377333pt;}
.y26{bottom:655.925333pt;}
.ya6{bottom:656.389333pt;}
.y2ae{bottom:656.998667pt;}
.y130{bottom:661.134667pt;}
.yc5{bottom:663.158667pt;}
.y5e{bottom:663.665333pt;}
.y225{bottom:663.726667pt;}
.y240{bottom:664.401333pt;}
.y14{bottom:665.044000pt;}
.y115{bottom:666.393333pt;}
.y1c8{bottom:668.922667pt;}
.y2ad{bottom:670.332000pt;}
.y25{bottom:673.925333pt;}
.y13{bottom:675.710667pt;}
.ya5{bottom:675.801333pt;}
.y224{bottom:678.393333pt;}
.y14a{bottom:679.502667pt;}
.yc4{bottom:679.825333pt;}
.y17a{bottom:679.958667pt;}
.y5d{bottom:680.332000pt;}
.y114{bottom:681.060000pt;}
.y23f{bottom:681.068000pt;}
.y2ac{bottom:683.665333pt;}
.y271{bottom:684.904000pt;}
.y1c7{bottom:685.589333pt;}
.y12{bottom:686.377333pt;}
.ya4{bottom:690.468000pt;}
.y24{bottom:691.925333pt;}
.y223{bottom:693.060000pt;}
.y113{bottom:695.726667pt;}
.yc3{bottom:696.492000pt;}
.y5c{bottom:696.998667pt;}
.y11{bottom:697.044000pt;}
.y23e{bottom:697.734667pt;}
.y149{bottom:702.048000pt;}
.y1c6{bottom:702.256000pt;}
.ya3{bottom:705.134667pt;}
.y222{bottom:707.726667pt;}
.y23{bottom:709.925333pt;}
.y2ab{bottom:710.332000pt;}
.y112{bottom:710.393333pt;}
.y10{bottom:713.024000pt;}
.yc2{bottom:713.158667pt;}
.y179{bottom:713.412000pt;}
.y5b{bottom:713.665333pt;}
.y148{bottom:714.048000pt;}
.y23d{bottom:714.401333pt;}
.y270{bottom:716.776000pt;}
.y1c5{bottom:718.922667pt;}
.ya2{bottom:719.801333pt;}
.y221{bottom:722.393333pt;}
.y2aa{bottom:723.665333pt;}
.yf{bottom:723.690667pt;}
.y111{bottom:725.060000pt;}
.y22{bottom:727.925333pt;}
.y147{bottom:729.722667pt;}
.yc1{bottom:729.825333pt;}
.y178{bottom:730.078667pt;}
.y5a{bottom:730.332000pt;}
.y23c{bottom:731.068000pt;}
.y26f{bottom:733.442667pt;}
.ye{bottom:734.357333pt;}
.ya1{bottom:734.468000pt;}
.y1c4{bottom:735.589333pt;}
.y2a9{bottom:736.998667pt;}
.y220{bottom:737.060000pt;}
.y110{bottom:739.726667pt;}
.y146{bottom:744.389333pt;}
.yd{bottom:745.024000pt;}
.yc0{bottom:746.492000pt;}
.y177{bottom:746.745333pt;}
.y59{bottom:746.998667pt;}
.ya0{bottom:749.134667pt;}
.y26e{bottom:750.109333pt;}
.y2a8{bottom:750.332000pt;}
.y21f{bottom:751.726667pt;}
.y1c3{bottom:752.256000pt;}
.y10f{bottom:754.393333pt;}
.yc{bottom:755.690667pt;}
.y82{bottom:757.270667pt;}
.y145{bottom:759.056000pt;}
.ybf{bottom:763.158667pt;}
.y176{bottom:763.412000pt;}
.y58{bottom:763.665333pt;}
.y9f{bottom:763.801333pt;}
.y21e{bottom:766.393333pt;}
.y1c2{bottom:768.922667pt;}
.y10e{bottom:769.060000pt;}
.y81{bottom:769.270667pt;}
.y144{bottom:773.722667pt;}
.y21{bottom:776.190667pt;}
.y2a7{bottom:776.998667pt;}
.y9e{bottom:778.468000pt;}
.ybe{bottom:779.825333pt;}
.y175{bottom:780.078667pt;}
.y57{bottom:780.332000pt;}
.y21d{bottom:781.060000pt;}
.y80{bottom:781.270667pt;}
.y26d{bottom:783.380000pt;}
.y10d{bottom:783.726667pt;}
.y1c1{bottom:785.589333pt;}
.yb{bottom:787.302667pt;}
.y23b{bottom:788.388000pt;}
.y2a6{bottom:790.332000pt;}
.y9d{bottom:793.134667pt;}
.y21c{bottom:795.726667pt;}
.ybd{bottom:796.492000pt;}
.y174{bottom:796.745333pt;}
.y56{bottom:796.998667pt;}
.ya{bottom:798.256000pt;}
.y10c{bottom:798.393333pt;}
.y20{bottom:798.965333pt;}
.y23a{bottom:803.054667pt;}
.y2a5{bottom:803.665333pt;}
.y9c{bottom:807.801333pt;}
.y21b{bottom:810.393333pt;}
.y10b{bottom:813.060000pt;}
.ybc{bottom:813.158667pt;}
.y173{bottom:813.412000pt;}
.y55{bottom:813.665333pt;}
.y26c{bottom:815.252000pt;}
.y9{bottom:815.590667pt;}
.y2a4{bottom:816.998667pt;}
.y239{bottom:817.721333pt;}
.y9b{bottom:822.468000pt;}
.y1f{bottom:823.066667pt;}
.y21a{bottom:825.060000pt;}
.y8{bottom:826.544000pt;}
.y10a{bottom:827.726667pt;}
.ybb{bottom:829.825333pt;}
.y172{bottom:830.078667pt;}
.y54{bottom:830.332000pt;}
.y1e{bottom:831.086667pt;}
.y238{bottom:832.388000pt;}
.y1d{bottom:835.736000pt;}
.y236{bottom:837.133333pt;}
.y9a{bottom:837.134667pt;}
.y219{bottom:839.726667pt;}
.y109{bottom:842.393333pt;}
.y2a3{bottom:843.665333pt;}
.y7{bottom:843.878667pt;}
.y199{bottom:844.146667pt;}
.y1c{bottom:844.420000pt;}
.y1a1{bottom:846.492000pt;}
.yba{bottom:846.625333pt;}
.y171{bottom:846.745333pt;}
.y53{bottom:846.998667pt;}
.y26b{bottom:848.522667pt;}
.y1b{bottom:849.069333pt;}
.y12f{bottom:851.800000pt;}
.y99{bottom:851.801333pt;}
.y218{bottom:854.393333pt;}
.y6{bottom:854.424000pt;}
.y2a2{bottom:856.998667pt;}
.y108{bottom:857.060000pt;}
.y198{bottom:858.813333pt;}
.y1a0{bottom:863.158667pt;}
.y170{bottom:863.412000pt;}
.y52{bottom:863.665333pt;}
.y1a{bottom:864.944000pt;}
.y12e{bottom:866.466667pt;}
.y98{bottom:866.468000pt;}
.y217{bottom:869.060000pt;}
.y2a1{bottom:870.332000pt;}
.y107{bottom:871.726667pt;}
.y5{bottom:871.758667pt;}
.y197{bottom:873.480000pt;}
.y19f{bottom:879.825333pt;}
.y16f{bottom:880.078667pt;}
.y51{bottom:880.332000pt;}
.y26a{bottom:880.393333pt;}
.y12d{bottom:881.133333pt;}
.y97{bottom:881.134667pt;}
.y4{bottom:882.246667pt;}
.y2a0{bottom:883.665333pt;}
.y216{bottom:883.726667pt;}
.y106{bottom:886.392000pt;}
.y196{bottom:888.146667pt;}
.y12c{bottom:895.800000pt;}
.y96{bottom:895.801333pt;}
.y19e{bottom:896.492000pt;}
.y16e{bottom:896.745333pt;}
.y50{bottom:896.998667pt;}
.y269{bottom:897.060000pt;}
.y19{bottom:897.864000pt;}
.y215{bottom:898.392000pt;}
.y105{bottom:901.058667pt;}
.y195{bottom:902.813333pt;}
.y29f{bottom:910.332000pt;}
.y95{bottom:910.466667pt;}
.y214{bottom:913.058667pt;}
.y19d{bottom:913.158667pt;}
.y16d{bottom:913.412000pt;}
.y4f{bottom:913.665333pt;}
.y268{bottom:913.726667pt;}
.y3{bottom:914.098667pt;}
.y104{bottom:915.725333pt;}
.y194{bottom:922.225333pt;}
.y29e{bottom:923.665333pt;}
.y94{bottom:925.133333pt;}
.y18{bottom:925.864000pt;}
.y213{bottom:927.725333pt;}
.y19c{bottom:929.825333pt;}
.y16c{bottom:930.210667pt;}
.y4e{bottom:930.332000pt;}
.y103{bottom:930.392000pt;}
.y267{bottom:930.393333pt;}
.y193{bottom:936.892000pt;}
.y29d{bottom:936.998667pt;}
.y93{bottom:939.800000pt;}
.y212{bottom:942.392000pt;}
.y102{bottom:945.058667pt;}
.y19b{bottom:946.492000pt;}
.y4d{bottom:946.998667pt;}
.y266{bottom:947.060000pt;}
.y29c{bottom:950.332000pt;}
.y192{bottom:951.558667pt;}
.y92{bottom:954.466667pt;}
.y211{bottom:957.058667pt;}
.y17{bottom:961.930667pt;}
.y19a{bottom:963.292000pt;}
.y4c{bottom:963.665333pt;}
.y265{bottom:963.726667pt;}
.y191{bottom:966.225333pt;}
.y91{bottom:969.133333pt;}
.y100{bottom:971.484000pt;}
.y29b{bottom:976.998667pt;}
.y4b{bottom:980.332000pt;}
.y264{bottom:980.393333pt;}
.y190{bottom:980.892000pt;}
.y20f{bottom:983.484000pt;}
.y90{bottom:983.800000pt;}
.y101{bottom:986.150667pt;}
.y29a{bottom:990.332000pt;}
.y18f{bottom:995.558667pt;}
.y4a{bottom:996.998667pt;}
.y263{bottom:997.060000pt;}
.y210{bottom:998.150667pt;}
.y299{bottom:1003.665333pt;}
.yff{bottom:1008.696000pt;}
.y8f{bottom:1010.225333pt;}
.y49{bottom:1013.665333pt;}
.y298{bottom:1016.998667pt;}
.yfe{bottom:1020.696000pt;}
.y2{bottom:1023.954667pt;}
.y48{bottom:1030.332000pt;}
.yfd{bottom:1032.696000pt;}
.y8e{bottom:1032.770667pt;}
.y1{bottom:1063.552000pt;}
.y47{bottom:1076.885333pt;}
.ha{height:14.879752pt;}
.h5{height:18.666293pt;}
.h9{height:24.090818pt;}
.h6{height:26.002818pt;}
.h4{height:29.866293pt;}
.hb{height:30.292955pt;}
.h2{height:30.591618pt;}
.h10{height:34.415618pt;}
.h12{height:34.420951pt;}
.h13{height:35.269085pt;}
.h15{height:35.274419pt;}
.h7{height:37.332960pt;}
.h11{height:37.866288pt;}
.hf{height:38.239618pt;}
.hc{height:41.652955pt;}
.h16{height:41.900623pt;}
.hd{height:42.063618pt;}
.h8{height:42.637484pt;}
.he{height:45.439621pt;}
.h14{height:46.216757pt;}
.h3{height:67.199253pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:56.693333pt;}
.x1{left:158.740000pt;}
.x3f{left:160.037333pt;}
.x39{left:165.157333pt;}
.x37{left:170.277333pt;}
.x7{left:171.360000pt;}
.x9{left:172.422667pt;}
.xc{left:173.500000pt;}
.x6{left:178.665333pt;}
.x38{left:187.290667pt;}
.x17{left:188.845333pt;}
.xe{left:195.065333pt;}
.xb{left:197.689333pt;}
.x3b{left:200.409333pt;}
.xf{left:215.630667pt;}
.xd{left:221.942667pt;}
.x2e{left:228.696000pt;}
.x1e{left:234.437333pt;}
.x12{left:243.246667pt;}
.xa{left:250.452000pt;}
.x16{left:251.796000pt;}
.x36{left:254.017333pt;}
.x40{left:262.564000pt;}
.x23{left:275.310667pt;}
.x2a{left:277.736000pt;}
.x1c{left:279.417333pt;}
.x13{left:283.018667pt;}
.x2d{left:285.764000pt;}
.x1d{left:287.033333pt;}
.x10{left:294.924000pt;}
.x30{left:301.876000pt;}
.x28{left:304.489333pt;}
.x25{left:311.374667pt;}
.x19{left:317.578667pt;}
.x2f{left:324.621333pt;}
.x3a{left:327.789333pt;}
.x3e{left:333.538667pt;}
.x27{left:335.612000pt;}
.x4{left:343.186667pt;}
.x3{left:366.861333pt;}
.x18{left:390.450667pt;}
.x8{left:393.650667pt;}
.x2b{left:396.732000pt;}
.x31{left:399.008000pt;}
.x22{left:401.592000pt;}
.x3d{left:406.832000pt;}
.x41{left:417.632000pt;}
.x1f{left:425.318667pt;}
.x11{left:432.205333pt;}
.x5{left:435.857333pt;}
.x14{left:450.901333pt;}
.x34{left:474.388000pt;}
.x33{left:508.896000pt;}
.x2c{left:531.669333pt;}
.x35{left:537.973333pt;}
.x3c{left:566.313333pt;}
.x24{left:571.453333pt;}
.x15{left:586.904000pt;}
.x1b{left:596.706667pt;}
.x1a{left:600.188000pt;}
.x29{left:614.798667pt;}
.x32{left:629.410667pt;}
.x20{left:635.509333pt;}
.x21{left:636.685333pt;}
.x26{left:673.432000pt;}
}




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