
    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_0ededd65ca03d78e5c1e384f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_313fab36542e30d47163e095.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;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_1666309f9197df42000fc441.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;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_465bfdc797b5f3dd004cabee.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.711426;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_502c6cc737a5ca6364babf85.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.392000;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_2941556799086e5c8fed6dd6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_0b4931e6be457ff083ab9605.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b8069e2bc3d40f9eda1507c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006000;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_c1b939633a5ebb9f2be27f9d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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_b4c7dbd4c51a423e70d5e4cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.094000;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_9b3ee5c04ea5b4453e173ae9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.064000;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_95035a59588434c1d3240bd4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.736816;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_565fada3f05e8a6b58327456.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.998000;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_dd2ff66f95798aec98c6982b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.734000;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_cf878b9e008d802b661ce222.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_25f35e0903bb7d05cb5d842a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.999000;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_da50951d571120bc46f6b392.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.882000;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:ff12;src:url('chunks/assets/font_54c4ea27c9965b68fcd9ec0f.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_83a24a8c696297b884630b79.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938000;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(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v4{vertical-align:-17.346000px;}
.v1{vertical-align:-5.778000px;}
.v2{vertical-align:-1.350000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.371361px;}
.lsa{letter-spacing:-1.263600px;}
.lsf{letter-spacing:-1.200600px;}
.ls13{letter-spacing:-1.199985px;}
.ls10{letter-spacing:-0.241496px;}
.ls12{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.239997px;}
.ls11{letter-spacing:-0.239400px;}
.lsc{letter-spacing:-0.238497px;}
.lsb{letter-spacing:-0.237600px;}
.ls18{letter-spacing:-0.237598px;}
.lsd{letter-spacing:-0.212372px;}
.ls1b{letter-spacing:-0.211976px;}
.lse{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.780000px;}
.ls1a{letter-spacing:1.140000px;}
.ls17{letter-spacing:1.343983px;}
.ls6{letter-spacing:1.679979px;}
.ls27{letter-spacing:2.929200px;}
.ls1f{letter-spacing:2.934600px;}
.ls32{letter-spacing:3.180000px;}
.ls3{letter-spacing:5.087936px;}
.ls0{letter-spacing:5.508000px;}
.ls1{letter-spacing:5.832000px;}
.ls8{letter-spacing:9.455882px;}
.ls4{letter-spacing:10.367870px;}
.ls26{letter-spacing:10.847864px;}
.ls20{letter-spacing:10.991863px;}
.ls22{letter-spacing:11.039862px;}
.ls23{letter-spacing:11.087861px;}
.ls5{letter-spacing:12.465900px;}
.ls21{letter-spacing:12.780000px;}
.ls1c{letter-spacing:12.900000px;}
.ls14{letter-spacing:12.960000px;}
.ls1d{letter-spacing:13.020000px;}
.ls7{letter-spacing:13.247834px;}
.ls15{letter-spacing:13.320000px;}
.ls19{letter-spacing:13.350000px;}
.ls16{letter-spacing:13.380000px;}
.ls30{letter-spacing:13.410000px;}
.ls2{letter-spacing:20.783740px;}
.ls25{letter-spacing:189.336600px;}
.ls24{letter-spacing:189.678600px;}
.ls28{letter-spacing:272.334600px;}
.ls2c{letter-spacing:292.746600px;}
.ls2e{letter-spacing:297.846600px;}
.ls2a{letter-spacing:326.076600px;}
.ls1e{letter-spacing:340.368600px;}
.ls29{letter-spacing:496.836600px;}
.ls2d{letter-spacing:515.892600px;}
.ls2b{letter-spacing:653.271834px;}
.ls2f{letter-spacing:688.311396px;}
.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;}
}
.ws2a{word-spacing:-37.151856px;}
.wse2{word-spacing:-33.598800px;}
.ws2e{word-spacing:-25.247684px;}
.ws11c{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.247834px;}
.wsfe{word-spacing:-10.991863px;}
.ws31{word-spacing:-10.799865px;}
.wsd6{word-spacing:-10.463869px;}
.ws11a{word-spacing:-4.233565px;}
.ws117{word-spacing:-4.082366px;}
.ws4f{word-spacing:-4.064029px;}
.ws125{word-spacing:-3.758353px;}
.ws12a{word-spacing:-3.599955px;}
.ws138{word-spacing:-3.575955px;}
.ws127{word-spacing:-3.537556px;}
.ws149{word-spacing:-3.518356px;}
.ws15{word-spacing:-3.508756px;}
.ws14b{word-spacing:-3.499156px;}
.ws13c{word-spacing:-3.475157px;}
.ws72{word-spacing:-3.460757px;}
.ws13d{word-spacing:-3.455957px;}
.ws24{word-spacing:-3.408600px;}
.ws53{word-spacing:-3.402900px;}
.ws28{word-spacing:-3.391500px;}
.ws130{word-spacing:-3.388758px;}
.ws14e{word-spacing:-3.374358px;}
.ws9{word-spacing:-3.342600px;}
.ws1a{word-spacing:-3.335958px;}
.ws26{word-spacing:-3.323100px;}
.ws19{word-spacing:-3.316759px;}
.ws153{word-spacing:-3.311959px;}
.ws129{word-spacing:-3.307159px;}
.ws50{word-spacing:-3.306000px;}
.ws154{word-spacing:-3.302359px;}
.ws134{word-spacing:-3.292759px;}
.ws11f{word-spacing:-3.287959px;}
.ws13e{word-spacing:-3.278359px;}
.wsc{word-spacing:-3.277800px;}
.ws131{word-spacing:-3.273559px;}
.ws4{word-spacing:-3.272400px;}
.ws151{word-spacing:-3.263959px;}
.ws54{word-spacing:-3.254700px;}
.ws12{word-spacing:-3.239960px;}
.ws13{word-spacing:-3.230360px;}
.ws7{word-spacing:-3.229200px;}
.ws55{word-spacing:-3.226200px;}
.ws124{word-spacing:-3.225560px;}
.wsa{word-spacing:-3.213000px;}
.ws12d{word-spacing:-3.206360px;}
.ws139{word-spacing:-3.196760px;}
.ws21{word-spacing:-3.192000px;}
.ws12e{word-spacing:-3.191960px;}
.ws20{word-spacing:-3.186300px;}
.ws10{word-spacing:-3.182360px;}
.ws3{word-spacing:-3.180600px;}
.wsf{word-spacing:-3.177560px;}
.ws23{word-spacing:-3.174900px;}
.ws148{word-spacing:-3.172760px;}
.ws113{word-spacing:-3.167960px;}
.ws143{word-spacing:-3.163160px;}
.ws136{word-spacing:-3.158361px;}
.ws128{word-spacing:-3.153561px;}
.ws4c{word-spacing:-3.152100px;}
.ws6{word-spacing:-3.137400px;}
.ws5{word-spacing:-3.132000px;}
.ws2b{word-spacing:-3.124761px;}
.ws126{word-spacing:-3.119961px;}
.ws27{word-spacing:-3.117900px;}
.ws12c{word-spacing:-3.115161px;}
.ws123{word-spacing:-3.110361px;}
.ws13f{word-spacing:-3.100761px;}
.ws120{word-spacing:-3.095961px;}
.ws145{word-spacing:-3.091161px;}
.ws51{word-spacing:-3.089400px;}
.wsb{word-spacing:-3.083400px;}
.ws12f{word-spacing:-3.081561px;}
.ws121{word-spacing:-3.067162px;}
.ws4e{word-spacing:-3.066600px;}
.ws13a{word-spacing:-3.057562px;}
.ws8{word-spacing:-3.056400px;}
.ws52{word-spacing:-3.049500px;}
.ws29{word-spacing:-3.009600px;}
.wsd{word-spacing:-2.999962px;}
.ws1e{word-spacing:-2.995163px;}
.ws14f{word-spacing:-2.990363px;}
.ws1c{word-spacing:-2.975963px;}
.ws25{word-spacing:-2.975400px;}
.ws147{word-spacing:-2.971163px;}
.ws14{word-spacing:-2.966363px;}
.ws141{word-spacing:-2.956763px;}
.ws150{word-spacing:-2.951963px;}
.ws18{word-spacing:-2.942363px;}
.ws22{word-spacing:-2.941200px;}
.ws132{word-spacing:-2.937563px;}
.ws122{word-spacing:-2.927963px;}
.ws1{word-spacing:-2.916000px;}
.ws142{word-spacing:-2.899164px;}
.wse{word-spacing:-2.894364px;}
.ws155{word-spacing:-2.889564px;}
.ws56{word-spacing:-2.872800px;}
.ws11e{word-spacing:-2.865564px;}
.ws135{word-spacing:-2.860764px;}
.ws14d{word-spacing:-2.855964px;}
.ws4b{word-spacing:-2.855700px;}
.ws14c{word-spacing:-2.851164px;}
.ws146{word-spacing:-2.827165px;}
.ws2d{word-spacing:-2.822365px;}
.ws11{word-spacing:-2.812765px;}
.ws4d{word-spacing:-2.804400px;}
.ws14a{word-spacing:-2.798365px;}
.ws133{word-spacing:-2.793565px;}
.ws137{word-spacing:-2.779165px;}
.ws152{word-spacing:-2.774365px;}
.ws12b{word-spacing:-2.764765px;}
.ws140{word-spacing:-2.750366px;}
.ws17{word-spacing:-2.745566px;}
.ws2{word-spacing:-2.743200px;}
.ws144{word-spacing:-2.735966px;}
.ws57{word-spacing:-2.730300px;}
.ws1d{word-spacing:-2.702366px;}
.ws16{word-spacing:-2.697566px;}
.ws0{word-spacing:-2.649567px;}
.ws40{word-spacing:-1.060787px;}
.ws7f{word-spacing:-0.955188px;}
.ws42{word-spacing:-0.921588px;}
.ws3e{word-spacing:-0.911989px;}
.ws109{word-spacing:-0.878389px;}
.ws3a{word-spacing:-0.863989px;}
.ws47{word-spacing:-0.820790px;}
.ws38{word-spacing:-0.815990px;}
.ws44{word-spacing:-0.811190px;}
.ws7b{word-spacing:-0.806390px;}
.wsa2{word-spacing:-0.796790px;}
.ws78{word-spacing:-0.782390px;}
.ws33{word-spacing:-0.777590px;}
.ws8b{word-spacing:-0.774000px;}
.ws3c{word-spacing:-0.767990px;}
.ws49{word-spacing:-0.758391px;}
.ws104{word-spacing:-0.748791px;}
.ws81{word-spacing:-0.743991px;}
.ws36{word-spacing:-0.739191px;}
.ws68{word-spacing:-0.738000px;}
.ws3f{word-spacing:-0.729591px;}
.ws73{word-spacing:-0.719991px;}
.ws34{word-spacing:-0.715191px;}
.ws75{word-spacing:-0.691191px;}
.ws3d{word-spacing:-0.686391px;}
.ws82{word-spacing:-0.681591px;}
.ws37{word-spacing:-0.676792px;}
.ws43{word-spacing:-0.671992px;}
.ws46{word-spacing:-0.667192px;}
.ws76{word-spacing:-0.652792px;}
.ws45{word-spacing:-0.647992px;}
.ws77{word-spacing:-0.643192px;}
.wsf1{word-spacing:-0.638392px;}
.ws32{word-spacing:-0.633592px;}
.ws2f{word-spacing:-0.623992px;}
.ws7d{word-spacing:-0.619192px;}
.ws69{word-spacing:-0.618000px;}
.ws7a{word-spacing:-0.590393px;}
.ws35{word-spacing:-0.575993px;}
.ws9a{word-spacing:-0.552000px;}
.wsdb{word-spacing:-0.542393px;}
.ws74{word-spacing:-0.537593px;}
.ws3b{word-spacing:-0.523193px;}
.ws39{word-spacing:-0.518394px;}
.wsce{word-spacing:-0.513594px;}
.wsa5{word-spacing:-0.510000px;}
.wsd8{word-spacing:-0.508794px;}
.ws65{word-spacing:-0.504000px;}
.ws66{word-spacing:-0.498000px;}
.ws80{word-spacing:-0.494394px;}
.wsb9{word-spacing:-0.489594px;}
.wsba{word-spacing:-0.479994px;}
.wsee{word-spacing:-0.475194px;}
.ws8a{word-spacing:-0.474000px;}
.ws41{word-spacing:-0.470394px;}
.ws9c{word-spacing:-0.468000px;}
.ws79{word-spacing:-0.465594px;}
.ws92{word-spacing:-0.462000px;}
.ws7c{word-spacing:-0.460794px;}
.ws7e{word-spacing:-0.455994px;}
.ws48{word-spacing:-0.446394px;}
.ws30{word-spacing:-0.441594px;}
.ws83{word-spacing:-0.438000px;}
.ws8f{word-spacing:-0.432000px;}
.ws89{word-spacing:-0.426000px;}
.wsbe{word-spacing:-0.420000px;}
.wsb6{word-spacing:-0.417595px;}
.ws112{word-spacing:-0.407995px;}
.ws10e{word-spacing:-0.403195px;}
.ws6f{word-spacing:-0.402000px;}
.wsda{word-spacing:-0.398395px;}
.wsaa{word-spacing:-0.396000px;}
.wse4{word-spacing:-0.390000px;}
.ws67{word-spacing:-0.384000px;}
.wsb1{word-spacing:-0.383995px;}
.wse1{word-spacing:-0.379195px;}
.wsc1{word-spacing:-0.378000px;}
.wsbc{word-spacing:-0.374395px;}
.ws8d{word-spacing:-0.372000px;}
.wseb{word-spacing:-0.369595px;}
.ws85{word-spacing:-0.366000px;}
.ws63{word-spacing:-0.360000px;}
.wscf{word-spacing:-0.355196px;}
.ws86{word-spacing:-0.354000px;}
.ws5b{word-spacing:-0.348000px;}
.ws87{word-spacing:-0.342000px;}
.wsc8{word-spacing:-0.340796px;}
.wsa7{word-spacing:-0.336000px;}
.wsdf{word-spacing:-0.335996px;}
.ws103{word-spacing:-0.331196px;}
.wsbf{word-spacing:-0.330000px;}
.ws102{word-spacing:-0.326396px;}
.ws6e{word-spacing:-0.324000px;}
.ws5f{word-spacing:-0.318000px;}
.wsec{word-spacing:-0.307196px;}
.wsbd{word-spacing:-0.306000px;}
.ws58{word-spacing:-0.294000px;}
.ws91{word-spacing:-0.288000px;}
.wsb5{word-spacing:-0.283196px;}
.ws59{word-spacing:-0.282000px;}
.ws100{word-spacing:-0.278397px;}
.ws5c{word-spacing:-0.276000px;}
.wsd0{word-spacing:-0.273597px;}
.wsad{word-spacing:-0.268797px;}
.ws61{word-spacing:-0.264000px;}
.wsd9{word-spacing:-0.263997px;}
.ws60{word-spacing:-0.258000px;}
.wsab{word-spacing:-0.252000px;}
.wsa1{word-spacing:-0.249597px;}
.ws8e{word-spacing:-0.246000px;}
.ws98{word-spacing:-0.240000px;}
.ws108{word-spacing:-0.239997px;}
.ws6c{word-spacing:-0.234000px;}
.wsf3{word-spacing:-0.230397px;}
.wsc4{word-spacing:-0.228000px;}
.wscd{word-spacing:-0.225597px;}
.ws64{word-spacing:-0.222000px;}
.wse3{word-spacing:-0.220797px;}
.ws6d{word-spacing:-0.216000px;}
.wsa0{word-spacing:-0.210000px;}
.ws8c{word-spacing:-0.204000px;}
.wsca{word-spacing:-0.201597px;}
.ws107{word-spacing:-0.198000px;}
.ws6b{word-spacing:-0.192000px;}
.wsa6{word-spacing:-0.186000px;}
.wse0{word-spacing:-0.182398px;}
.ws5a{word-spacing:-0.174000px;}
.wsdd{word-spacing:-0.172798px;}
.wsb4{word-spacing:-0.167998px;}
.ws106{word-spacing:-0.162000px;}
.ws114{word-spacing:-0.150000px;}
.wsb0{word-spacing:-0.148798px;}
.wsac{word-spacing:-0.144000px;}
.wsc9{word-spacing:-0.139198px;}
.wsed{word-spacing:-0.134398px;}
.wsd2{word-spacing:-0.132000px;}
.ws95{word-spacing:-0.126000px;}
.ws96{word-spacing:-0.120000px;}
.ws88{word-spacing:-0.108000px;}
.ws115{word-spacing:-0.102000px;}
.wsc0{word-spacing:-0.096000px;}
.wsb3{word-spacing:-0.095999px;}
.ws94{word-spacing:-0.090000px;}
.wsb2{word-spacing:-0.081599px;}
.ws62{word-spacing:-0.072000px;}
.wsbb{word-spacing:-0.067199px;}
.wsb8{word-spacing:-0.057599px;}
.ws97{word-spacing:-0.042000px;}
.wsa4{word-spacing:-0.036000px;}
.wscb{word-spacing:-0.033600px;}
.ws9e{word-spacing:-0.030000px;}
.wsde{word-spacing:-0.028800px;}
.ws5e{word-spacing:-0.024000px;}
.wse5{word-spacing:-0.018000px;}
.ws9d{word-spacing:-0.012000px;}
.ws90{word-spacing:-0.006000px;}
.ws4a{word-spacing:0.000000px;}
.ws99{word-spacing:0.018000px;}
.wse6{word-spacing:0.019200px;}
.ws70{word-spacing:0.024000px;}
.wsc2{word-spacing:0.030000px;}
.wsfc{word-spacing:0.033600px;}
.ws84{word-spacing:0.042000px;}
.ws93{word-spacing:0.050400px;}
.wsc3{word-spacing:0.060000px;}
.ws101{word-spacing:0.062399px;}
.wsa3{word-spacing:0.084000px;}
.ws9f{word-spacing:0.090000px;}
.ws10c{word-spacing:0.091199px;}
.ws6a{word-spacing:0.096000px;}
.wse7{word-spacing:0.105599px;}
.wsd3{word-spacing:0.126000px;}
.ws10b{word-spacing:0.148798px;}
.wsf4{word-spacing:0.163198px;}
.wsb7{word-spacing:0.167998px;}
.ws116{word-spacing:0.168000px;}
.wsfb{word-spacing:0.172798px;}
.ws9b{word-spacing:0.180000px;}
.ws105{word-spacing:0.194398px;}
.wsd4{word-spacing:0.196798px;}
.wsdc{word-spacing:0.215997px;}
.wsa9{word-spacing:0.216000px;}
.ws71{word-spacing:0.234000px;}
.ws5d{word-spacing:0.240000px;}
.wsa8{word-spacing:0.316797px;}
.wscc{word-spacing:0.326396px;}
.wsf2{word-spacing:0.331196px;}
.ws10a{word-spacing:0.335996px;}
.ws11b{word-spacing:0.342000px;}
.wsc5{word-spacing:0.374395px;}
.wsc6{word-spacing:0.422395px;}
.wsd1{word-spacing:0.475196px;}
.ws118{word-spacing:0.486000px;}
.ws119{word-spacing:0.558000px;}
.ws1b{word-spacing:7.727903px;}
.ws2c{word-spacing:34.569168px;}
.wsfd{word-spacing:40.597893px;}
.wsf8{word-spacing:40.818690px;}
.wsef{word-spacing:41.159485px;}
.ws13b{word-spacing:46.847414px;}
.ws11d{word-spacing:46.895414px;}
.wsf9{word-spacing:50.346571px;}
.wsf0{word-spacing:69.056737px;}
.wsfa{word-spacing:118.716916px;}
.wsea{word-spacing:147.036562px;}
.ws111{word-spacing:173.345033px;}
.ws110{word-spacing:174.353021px;}
.ws10f{word-spacing:175.034612px;}
.wsd7{word-spacing:223.101211px;}
.wsd5{word-spacing:234.333071px;}
.ws10d{word-spacing:234.381070px;}
.wsf7{word-spacing:242.972963px;}
.wsaf{word-spacing:316.076049px;}
.wsf5{word-spacing:389.769945px;}
.wse8{word-spacing:394.527945px;}
.wsf6{word-spacing:409.962875px;}
.wse9{word-spacing:414.042824px;}
.wsae{word-spacing:511.481606px;}
.wsff{word-spacing:513.881576px;}
.wsc7{word-spacing:670.311621px;}
._98{margin-left:-25.156800px;}
._e{margin-left:-24.108000px;}
._a{margin-left:-19.055762px;}
._9{margin-left:-18.009375px;}
._d{margin-left:-16.535793px;}
._7{margin-left:-8.421087px;}
._c{margin-left:-4.831214px;}
._6{margin-left:-3.095988px;}
._0{margin-left:-1.108786px;}
._54{width:2.166000px;}
._2{width:3.693000px;}
._3{width:9.206285px;}
._4{width:11.198260px;}
._b{width:12.204000px;}
._5{width:13.919400px;}
._2b{width:14.982600px;}
._f{width:16.127798px;}
._99{width:20.217347px;}
._10{width:21.268534px;}
._1{width:25.272000px;}
._11{width:38.821914px;}
._77{width:42.095474px;}
._74{width:47.255409px;}
._83{width:50.869764px;}
._59{width:51.930551px;}
._5c{width:53.053737px;}
._71{width:61.204035px;}
._58{width:63.349608px;}
._82{width:69.771928px;}
._75{width:71.797503px;}
._7d{width:75.445457px;}
._1f{width:79.141411px;}
._65{width:80.269397px;}
._6f{width:81.877377px;}
._70{width:83.566955px;}
._79{width:87.406907px;}
._8b{width:90.781265px;}
._5b{width:93.651629px;}
._78{width:97.525181px;}
._5a{width:99.901151px;}
._56{width:101.403532px;}
._8e{width:104.389095px;}
._72{width:107.043462px;}
._8a{width:108.209847px;}
._67{width:110.926613px;}
._17{width:112.136198px;}
._7e{width:113.240184px;}
._7a{width:115.894551px;}
._80{width:117.953726px;}
._61{width:123.737653px;}
._34{width:125.744028px;}
._5e{width:130.044774px;}
._7f{width:131.638355px;}
._64{width:133.918326px;}
._5d{width:135.622305px;}
._6e{width:138.651067px;}
._89{width:141.617430px;}
._8f{width:143.446207px;}
._57{width:147.761353px;}
._7b{width:154.332471px;}
._63{width:158.206022px;}
._7c{width:164.297146px;}
._84{width:177.799377px;}
._2d{width:187.077662px;}
._66{width:192.847189px;}
._62{width:202.173473px;}
._3c{width:206.800615px;}
._52{width:210.400570px;}
._92{width:227.685154px;}
._40{width:232.974688px;}
._93{width:236.320246px;}
._86{width:239.608205px;}
._4f{width:243.116961px;}
._6b{width:256.124798px;}
._31{width:258.361570px;}
._6c{width:262.974313px;}
._25{width:280.479694px;}
._90{width:290.165973px;}
._76{width:291.994750px;}
._37{width:310.584918px;}
._45{width:318.552818px;}
._91{width:321.888776px;}
._8d{width:328.493494px;}
._35{width:331.541456px;}
._4b{width:338.626167px;}
._33{width:342.422920px;}
._51{width:354.835564px;}
._4c{width:357.105936px;}
._49{width:365.217835px;}
._42{width:367.425807px;}
._3b{width:368.836989px;}
._18{width:371.870552px;}
._96{width:374.596917px;}
._48{width:376.665692px;}
._3a{width:379.190460px;}
._85{width:384.777590px;}
._69{width:386.155173px;}
._4a{width:390.241869px;}
._53{width:392.030300px;}
._81{width:397.372633px;}
._3e{width:402.513369px;}
._38{width:411.100461px;}
._3d{width:412.847639px;}
._3f{width:414.009225px;}
._94{width:415.742003px;}
._8c{width:421.866727px;}
._20{width:428.159448px;}
._68{width:432.512994px;}
._73{width:439.924101px;}
._95{width:448.165598px;}
._22{width:452.677541px;}
._87{width:455.139911px;}
._16{width:456.522293px;}
._55{width:458.312671px;}
._88{width:460.616642px;}
._5f{width:463.386208px;}
._1c{width:470.000525px;}
._29{width:475.530056px;}
._6a{width:477.018037px;}
._24{width:481.342783px;}
._1e{width:490.069074px;}
._4e{width:496.496194px;}
._28{width:498.896164px;}
._46{width:504.488094px;}
._6d{width:509.787228px;}
._21{width:514.423970px;}
._43{width:517.423932px;}
._2c{width:533.417332px;}
._12{width:541.577230px;}
._1a{width:551.757903px;}
._27{width:561.237784px;}
._13{width:563.128961px;}
._2a{width:585.434282px;}
._4d{width:589.528631px;}
._1d{width:597.539731px;}
._14{width:599.560505px;}
._36{width:602.565268px;}
._26{width:608.661192px;}
._2e{width:612.712341px;}
._30{width:625.580980px;}
._60{width:627.160160px;}
._19{width:650.727866px;}
._39{width:654.371020px;}
._44{width:659.598155px;}
._1b{width:663.356508px;}
._32{width:671.362808px;}
._41{width:682.604267px;}
._50{width:694.551318px;}
._23{width:705.063187px;}
._2f{width:727.574905px;}
._15{width:821.509731px;}
._47{width:829.093636px;}
._97{width:1544.390295px;}
._8{width:1569.570780px;}
.fc5{color:transparent;}
.fc4{color:rgb(188,27,149);}
.fc6{color:rgb(16,15,13);}
.fc3{color:rgb(16,15,13);}
.fc2{color:rgb(66,93,177);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:31.995000px;}
.fsd{font-size:33.598800px;}
.fs4{font-size:35.995200px;}
.fsc{font-size:39.995400px;}
.fs3{font-size:44.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs6{font-size:68.998800px;}
.fsa{font-size:71.999400px;}
.fs5{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.fs8{font-size:123.839520px;}
.y0{bottom:0.000000px;}
.y7b{bottom:4.537500px;}
.y2e{bottom:8.513967px;}
.y2f{bottom:54.000000px;}
.y1d8{bottom:119.666325px;}
.y51{bottom:124.454052px;}
.y2c{bottom:124.498500px;}
.y1fb{bottom:124.507080px;}
.ydf{bottom:124.507500px;}
.y112{bottom:124.508737px;}
.yc0{bottom:124.515000px;}
.y223{bottom:124.518356px;}
.y79{bottom:124.552500px;}
.y18d{bottom:126.493500px;}
.y165{bottom:128.286000px;}
.y12b{bottom:128.386500px;}
.y222{bottom:138.810177px;}
.y50{bottom:140.953846px;}
.y1d7{bottom:142.886034px;}
.yde{bottom:143.977500px;}
.ybf{bottom:143.985000px;}
.y78{bottom:144.022500px;}
.y2b{bottom:145.503000px;}
.y18c{bottom:145.963500px;}
.y164{bottom:147.756000px;}
.y12a{bottom:147.856500px;}
.y1fa{bottom:151.554742px;}
.y111{bottom:151.556399px;}
.y221{bottom:153.006000px;}
.y1d6{bottom:157.165856px;}
.y4f{bottom:157.453639px;}
.ydd{bottom:163.537500px;}
.ybe{bottom:163.545000px;}
.y77{bottom:163.582500px;}
.y18b{bottom:165.433500px;}
.y2a{bottom:166.507500px;}
.y163{bottom:167.316000px;}
.y129{bottom:167.326500px;}
.y1f9{bottom:169.494517px;}
.y110{bottom:169.496175px;}
.y1d5{bottom:171.361679px;}
.y220{bottom:172.481756px;}
.y4e{bottom:173.953433px;}
.ydc{bottom:183.007500px;}
.ybd{bottom:183.015000px;}
.y76{bottom:183.052500px;}
.y18a{bottom:184.903500px;}
.y1d4{bottom:185.641500px;}
.y21f{bottom:186.773577px;}
.y162{bottom:186.786000px;}
.y128{bottom:186.886500px;}
.y10f{bottom:187.519950px;}
.y4d{bottom:190.453227px;}
.y29{bottom:192.018000px;}
.y1f8{bottom:197.646165px;}
.y21e{bottom:201.053399px;}
.ydb{bottom:202.477500px;}
.ybc{bottom:202.485000px;}
.y75{bottom:202.522500px;}
.y189{bottom:204.463500px;}
.y10e{bottom:205.543724px;}
.y161{bottom:206.256000px;}
.y127{bottom:206.356500px;}
.y4c{bottom:206.953021px;}
.y1f7{bottom:211.937987px;}
.y21d{bottom:220.529155px;}
.yda{bottom:222.037500px;}
.ybb{bottom:222.045000px;}
.y74{bottom:222.082500px;}
.y4b{bottom:223.452814px;}
.y10d{bottom:223.483500px;}
.y10b{bottom:223.488225px;}
.y188{bottom:223.933500px;}
.y160{bottom:225.726000px;}
.y126{bottom:225.826500px;}
.y10c{bottom:228.841500px;}
.y1f6{bottom:230.645753px;}
.y28{bottom:232.327500px;}
.y21c{bottom:234.724978px;}
.y4a{bottom:239.952608px;}
.yba{bottom:241.515000px;}
.y73{bottom:241.552500px;}
.y187{bottom:243.403500px;}
.y1f5{bottom:244.925574px;}
.y15f{bottom:245.286000px;}
.y125{bottom:245.386500px;}
.y10a{bottom:245.848500px;}
.yd9{bottom:247.464000px;}
.y21b{bottom:254.284734px;}
.y49{bottom:256.452402px;}
.y27{bottom:257.839500px;}
.y109{bottom:259.539576px;}
.yb9{bottom:260.985000px;}
.yb7{bottom:260.995500px;}
.y72{bottom:261.022500px;}
.y186{bottom:262.963500px;}
.y1f4{bottom:263.633341px;}
.y15e{bottom:264.756000px;}
.y124{bottom:264.856500px;}
.yb8{bottom:267.703500px;}
.y21a{bottom:268.480556px;}
.y48{bottom:272.952196px;}
.y108{bottom:277.479352px;}
.y1f3{bottom:277.925162px;}
.yb6{bottom:280.465500px;}
.y71{bottom:280.492500px;}
.y185{bottom:282.433500px;}
.y219{bottom:282.760378px;}
.y15d{bottom:284.226000px;}
.y123{bottom:284.326500px;}
.y47{bottom:289.451989px;}
.yd8{bottom:290.169000px;}
.y1f2{bottom:296.632928px;}
.y26{bottom:298.147500px;}
.yb5{bottom:300.025500px;}
.y70{bottom:300.052500px;}
.y184{bottom:301.903500px;}
.y218{bottom:302.236134px;}
.y15c{bottom:303.786000px;}
.y122{bottom:303.886500px;}
.y107{bottom:305.626160px;}
.yd7{bottom:309.639000px;}
.y1f1{bottom:310.924749px;}
.y46{bottom:314.963670px;}
.y217{bottom:316.515956px;}
.yb4{bottom:319.495500px;}
.y6f{bottom:319.522500px;}
.y183{bottom:321.463500px;}
.y15b{bottom:323.256000px;}
.y121{bottom:323.356500px;}
.y25{bottom:323.659500px;}
.y106{bottom:324.333926px;}
.yd6{bottom:329.109000px;}
.y1f0{bottom:329.632516px;}
.y216{bottom:330.711778px;}
.y45{bottom:331.463464px;}
.yb3{bottom:338.965500px;}
.y6e{bottom:338.992500px;}
.y182{bottom:340.933500px;}
.y15a{bottom:342.726000px;}
.y120{bottom:342.826500px;}
.y105{bottom:343.125691px;}
.y1ef{bottom:343.912337px;}
.y215{bottom:345.003600px;}
.y44{bottom:347.963258px;}
.yd5{bottom:348.669000px;}
.yb2{bottom:358.525500px;}
.y6d{bottom:358.552500px;}
.y181{bottom:360.403500px;}
.y104{bottom:361.845457px;}
.y159{bottom:362.286000px;}
.y11f{bottom:362.296500px;}
.y1ee{bottom:362.620103px;}
.y24{bottom:363.969000px;}
.y43{bottom:364.463052px;}
.y214{bottom:364.479356px;}
.yd4{bottom:368.139000px;}
.y103{bottom:376.125279px;}
.y1ed{bottom:376.899925px;}
.y6c{bottom:378.022500px;}
.y213{bottom:378.771177px;}
.y180{bottom:379.873500px;}
.y42{bottom:380.962845px;}
.y158{bottom:381.756000px;}
.y11e{bottom:381.856500px;}
.yb1{bottom:384.037500px;}
.yd3{bottom:387.609000px;}
.yd1{bottom:387.612000px;}
.y23{bottom:389.481000px;}
.y212{bottom:392.967000px;}
.yd2{bottom:394.327500px;}
.y1ec{bottom:395.607691px;}
.y41{bottom:397.462639px;}
.y6b{bottom:397.492500px;}
.y102{bottom:398.409000px;}
.y17f{bottom:399.433500px;}
.y157{bottom:401.226000px;}
.y11d{bottom:401.326500px;}
.yd0{bottom:407.172000px;}
.y211{bottom:413.290500px;}
.y1eb{bottom:414.399456px;}
.y6a{bottom:417.052500px;}
.y17e{bottom:418.903500px;}
.y156{bottom:420.786000px;}
.y11c{bottom:420.796500px;}
.y40{bottom:422.974320px;}
.yb0{bottom:423.705000px;}
.ycf{bottom:426.642000px;}
.y22{bottom:429.789000px;}
.y101{bottom:433.278000px;}
.y69{bottom:436.522500px;}
.y1ea{bottom:436.599178px;}
.y155{bottom:440.256000px;}
.y11b{bottom:440.356500px;}
.yaf{bottom:443.265000px;}
.y3f{bottom:448.486001px;}
.y21{bottom:450.793500px;}
.y1e9{bottom:450.879000px;}
.yce{bottom:452.154000px;}
.y100{bottom:452.838000px;}
.y68{bottom:455.992500px;}
.y154{bottom:459.726000px;}
.y11a{bottom:459.826500px;}
.yae{bottom:462.735000px;}
.y1bb{bottom:464.483062px;}
.y248{bottom:467.548444px;}
.y210{bottom:469.843500px;}
.y20{bottom:471.798000px;}
.yff{bottom:472.308000px;}
.y3e{bottom:473.997682px;}
.y67{bottom:475.552500px;}
.y153{bottom:479.196000px;}
.y119{bottom:479.296500px;}
.y247{bottom:481.840266px;}
.yad{bottom:482.205000px;}
.y20f{bottom:489.313500px;}
.y1ba{bottom:491.446725px;}
.y1f{bottom:492.802500px;}
.ycd{bottom:494.781000px;}
.y66{bottom:495.022500px;}
.y246{bottom:496.120087px;}
.yfe{bottom:497.820000px;}
.y1e2{bottom:498.693000px;}
.y118{bottom:498.856500px;}
.y3d{bottom:499.509364px;}
.yac{bottom:501.765000px;}
.y1d3{bottom:504.193838px;}
.y152{bottom:504.715725px;}
.y1b9{bottom:509.470500px;}
.ycc{bottom:514.251000px;}
.y65{bottom:514.492500px;}
.y1b8{bottom:514.828500px;}
.y245{bottom:515.595844px;}
.y3c{bottom:516.009157px;}
.y20e{bottom:516.358500px;}
.y1e1{bottom:518.163000px;}
.y1e{bottom:518.314500px;}
.y117{bottom:518.326500px;}
.yab{bottom:521.235000px;}
.y1b7{bottom:527.499000px;}
.y244{bottom:529.791666px;}
.y151{bottom:531.751500px;}
.y3b{bottom:532.508951px;}
.y1b6{bottom:532.771500px;}
.ycb{bottom:533.811000px;}
.y64{bottom:533.962500px;}
.y1d2{bottom:535.578000px;}
.y1e0{bottom:537.723000px;}
.y116{bottom:537.796500px;}
.yaa{bottom:540.705000px;}
.y20d{bottom:541.870500px;}
.yfd{bottom:542.496000px;}
.y243{bottom:544.083488px;}
.y1b5{bottom:545.442000px;}
.y1b4{bottom:550.800000px;}
.yca{bottom:553.281000px;}
.y1d1{bottom:553.606500px;}
.y1df{bottom:557.193000px;}
.y115{bottom:557.356500px;}
.y3a{bottom:558.020632px;}
.y63{bottom:559.474500px;}
.ya9{bottom:560.265000px;}
.yfc{bottom:561.966000px;}
.y1b3{bottom:563.470500px;}
.y242{bottom:563.559244px;}
.y1b2{bottom:568.828500px;}
.y1d{bottom:570.699000px;}
.y1d0{bottom:571.549500px;}
.yc9{bottom:572.751000px;}
.y39{bottom:574.520426px;}
.y1de{bottom:576.663000px;}
.y114{bottom:576.826500px;}
.y241{bottom:577.839066px;}
.ya8{bottom:579.735000px;}
.yfb{bottom:581.436000px;}
.y1cf{bottom:585.233113px;}
.y1b1{bottom:585.835500px;}
.y38{bottom:591.020220px;}
.y240{bottom:592.034888px;}
.yc8{bottom:592.311000px;}
.y1dd{bottom:596.223000px;}
.y113{bottom:596.296500px;}
.ya7{bottom:599.205000px;}
.y20c{bottom:599.961000px;}
.yfa{bottom:600.996000px;}
.y1b0{bottom:603.780000px;}
.y37{bottom:607.520013px;}
.y17d{bottom:610.152338px;}
.y23f{bottom:611.594644px;}
.yc7{bottom:611.781000px;}
.y1ce{bottom:613.300763px;}
.y1dc{bottom:615.693000px;}
.y1af{bottom:617.472529px;}
.ya6{bottom:618.675000px;}
.y20b{bottom:619.431000px;}
.yf9{bottom:620.466000px;}
.y36{bottom:624.019807px;}
.y23e{bottom:625.790466px;}
.y1c{bottom:631.036499px;}
.yc6{bottom:631.251000px;}
.y1cd{bottom:632.092528px;}
.y150{bottom:633.201562px;}
.y1db{bottom:635.163000px;}
.ya5{bottom:638.235000px;}
.y20a{bottom:638.901000px;}
.yf8{bottom:639.936000px;}
.y23d{bottom:640.082288px;}
.y17c{bottom:641.536500px;}
.y1ae{bottom:645.624177px;}
.y35{bottom:648.595500px;}
.yc5{bottom:650.721000px;}
.yc3{bottom:650.724000px;}
.y1cc{bottom:650.800294px;}
.y1da{bottom:654.633000px;}
.y62{bottom:656.674500px;}
.yc4{bottom:657.439500px;}
.ya4{bottom:657.705000px;}
.y17b{bottom:659.481000px;}
.yf7{bottom:659.496000px;}
.y23c{bottom:659.558044px;}
.y1ab{bottom:659.815912px;}
.y1ad{bottom:659.820000px;}
.y14f{bottom:660.249224px;}
.y1b{bottom:660.976125px;}
.y209{bottom:664.413000px;}
.y1ac{bottom:665.178000px;}
.y1cb{bottom:669.592059px;}
.yc2{bottom:670.284000px;}
.y17a{bottom:673.176258px;}
.y23b{bottom:673.849865px;}
.y1a{bottom:676.023937px;}
.ya3{bottom:677.175000px;}
.y61{bottom:677.679000px;}
.y14e{bottom:678.189000px;}
.y1aa{bottom:678.619677px;}
.yf6{bottom:678.966000px;}
.y1d9{bottom:680.145000px;}
.y14d{bottom:683.547000px;}
.y23a{bottom:688.045688px;}
.y1ca{bottom:688.299825px;}
.yc1{bottom:689.754000px;}
.y19{bottom:690.987750px;}
.y1a7{bottom:692.811412px;}
.y1a9{bottom:692.815500px;}
.y14c{bottom:696.217500px;}
.ya2{bottom:696.735000px;}
.y1a8{bottom:698.173500px;}
.yf5{bottom:698.436000px;}
.y60{bottom:698.683500px;}
.y179{bottom:701.327906px;}
.y14b{bottom:701.574000px;}
.y239{bottom:702.337509px;}
.y1c9{bottom:702.591646px;}
.y18{bottom:706.035562px;}
.y1a6{bottom:711.615177px;}
.y208{bottom:713.505000px;}
.y1e8{bottom:714.182503px;}
.y14a{bottom:714.246000px;}
.ya1{bottom:716.205000px;}
.yf4{bottom:717.996000px;}
.y149{bottom:719.518500px;}
.y178{bottom:720.035672px;}
.y17{bottom:720.999375px;}
.y1c8{bottom:721.299413px;}
.y238{bottom:721.813266px;}
.y91{bottom:724.059624px;}
.y5f{bottom:724.195500px;}
.y1a3{bottom:725.806912px;}
.y1a5{bottom:725.811000px;}
.ye3{bottom:728.967647px;}
.y1a4{bottom:731.169000px;}
.y148{bottom:732.189000px;}
.y207{bottom:733.065000px;}
.y34{bottom:735.502500px;}
.ya0{bottom:735.675000px;}
.y16{bottom:735.963188px;}
.y237{bottom:736.105087px;}
.yf3{bottom:737.466000px;}
.y1e7{bottom:737.486212px;}
.y147{bottom:737.547000px;}
.y177{bottom:738.827437px;}
.y1c6{bottom:740.100056px;}
.y90{bottom:740.559418px;}
.y1a2{bottom:744.610677px;}
.y146{bottom:750.213352px;}
.y236{bottom:750.300910px;}
.y15{bottom:751.011000px;}
.y1e6{bottom:751.682034px;}
.ye2{bottom:752.271356px;}
.y206{bottom:752.535000px;}
.y33{bottom:752.767500px;}
.y1c5{bottom:754.295879px;}
.y1c7{bottom:754.299000px;}
.y9f{bottom:755.235000px;}
.yf2{bottom:756.936000px;}
.yf0{bottom:756.939000px;}
.y176{bottom:757.535204px;}
.y19f{bottom:758.799675px;}
.y1a1{bottom:758.806500px;}
.yf1{bottom:763.653000px;}
.y5e{bottom:763.654500px;}
.y1a0{bottom:764.163000px;}
.y1e5{bottom:765.961856px;}
.y13{bottom:765.974812px;}
.y8f{bottom:765.987100px;}
.y14{bottom:766.226809px;}
.ye1{bottom:766.467179px;}
.y235{bottom:769.860665px;}
.y32{bottom:770.032500px;}
.y205{bottom:772.005000px;}
.y1c4{bottom:773.087644px;}
.y175{bottom:776.326969px;}
.yef{bottom:776.409000px;}
.y19e{bottom:777.591440px;}
.y145{bottom:778.365000px;}
.y143{bottom:778.366734px;}
.y1e4{bottom:780.157678px;}
.y9e{bottom:780.661500px;}
.ye0{bottom:780.747000px;}
.y12{bottom:780.938625px;}
.y8e{bottom:782.570893px;}
.y144{bottom:783.637500px;}
.y234{bottom:784.056488px;}
.y5d{bottom:784.659000px;}
.y31{bottom:787.207500px;}
.y204{bottom:791.565000px;}
.y1c3{bottom:791.795410px;}
.y1e3{bottom:794.437500px;}
.y174{bottom:795.034735px;}
.yee{bottom:795.969000px;}
.y11{bottom:795.986437px;}
.y19d{bottom:796.299206px;}
.y142{bottom:797.074500px;}
.y140{bottom:797.076235px;}
.y233{bottom:798.336309px;}
.y8d{bottom:799.070686px;}
.y141{bottom:802.431000px;}
.y30{bottom:804.472500px;}
.y5c{bottom:805.663500px;}
.y1c2{bottom:810.587175px;}
.y19c{bottom:810.591028px;}
.y10{bottom:810.950250px;}
.y203{bottom:811.035000px;}
.y173{bottom:813.839343px;}
.y8c{bottom:815.570480px;}
.y13f{bottom:815.868000px;}
.y13d{bottom:815.868234px;}
.y232{bottom:817.812066px;}
.y9d{bottom:820.381500px;}
.y13e{bottom:821.140500px;}
.yed{bottom:821.481000px;}
.yf{bottom:825.998062px;}
.y5b{bottom:826.668000px;}
.y1c1{bottom:829.294941px;}
.y19b{bottom:829.298794px;}
.y202{bottom:830.505000px;}
.y8b{bottom:832.070274px;}
.y231{bottom:832.103887px;}
.y172{bottom:832.547109px;}
.y13c{bottom:834.576000px;}
.y13a{bottom:834.585140px;}
.y13b{bottom:839.934000px;}
.y9c{bottom:839.941500px;}
.ye{bottom:840.961875px;}
.y5a{bottom:847.672500px;}
.y1c0{bottom:848.086706px;}
.y19a{bottom:848.102559px;}
.y8a{bottom:848.570068px;}
.y201{bottom:850.065000px;}
.y171{bottom:851.254875px;}
.y230{bottom:851.579644px;}
.y139{bottom:853.376905px;}
.yd{bottom:855.925688px;}
.y9b{bottom:859.411500px;}
.y199{bottom:862.298381px;}
.y89{bottom:865.069862px;}
.y22f{bottom:865.871465px;}
.yec{bottom:866.143500px;}
.y1bf{bottom:866.794472px;}
.y200{bottom:869.535000px;}
.y170{bottom:870.046640px;}
.yc{bottom:870.973500px;}
.y138{bottom:872.084671px;}
.y59{bottom:873.184500px;}
.y9a{bottom:878.881500px;}
.y198{bottom:881.090146px;}
.y88{bottom:881.569655px;}
.y22e{bottom:885.347222px;}
.y1be{bottom:885.598237px;}
.yeb{bottom:885.613500px;}
.y16f{bottom:888.754406px;}
.y1ff{bottom:889.005000px;}
.y137{bottom:890.876436px;}
.y9{bottom:897.931500px;}
.y87{bottom:898.069449px;}
.ya{bottom:898.269000px;}
.y22d{bottom:899.543044px;}
.y1bd{bottom:899.794060px;}
.y197{bottom:899.797912px;}
.yb{bottom:903.969000px;}
.y99{bottom:904.393500px;}
.yea{bottom:905.083500px;}
.y16e{bottom:907.546171px;}
.y1fe{bottom:908.475000px;}
.y136{bottom:909.584203px;}
.y58{bottom:912.642000px;}
.y22c{bottom:913.822866px;}
.y196{bottom:914.089734px;}
.y7{bottom:914.428500px;}
.y86{bottom:914.569243px;}
.y1bc{bottom:918.597825px;}
.y8{bottom:920.466000px;}
.ye9{bottom:924.643500px;}
.y16d{bottom:926.253937px;}
.y1fd{bottom:928.035000px;}
.y135{bottom:928.375968px;}
.y4{bottom:930.925500px;}
.y85{bottom:931.069037px;}
.y6{bottom:931.263000px;}
.y193{bottom:932.793647px;}
.y195{bottom:932.797500px;}
.y22b{bottom:933.298622px;}
.y57{bottom:933.646500px;}
.y5{bottom:936.964500px;}
.y194{bottom:938.154000px;}
.ye8{bottom:944.113500px;}
.y98{bottom:944.121000px;}
.y16c{bottom:945.045703px;}
.y134{bottom:947.083734px;}
.y84{bottom:947.568830px;}
.y22a{bottom:947.590444px;}
.y192{bottom:951.585412px;}
.y1fc{bottom:953.547000px;}
.y56{bottom:959.158500px;}
.ye7{bottom:963.583500px;}
.y97{bottom:963.591000px;}
.y16b{bottom:963.753469px;}
.y83{bottom:964.068624px;}
.y133{bottom:965.791500px;}
.y131{bottom:965.794216px;}
.y229{bottom:967.066200px;}
.y3{bottom:968.439000px;}
.y191{bottom:970.305178px;}
.y132{bottom:971.149500px;}
.y82{bottom:980.568418px;}
.y228{bottom:981.358022px;}
.y16a{bottom:982.545234px;}
.ye6{bottom:983.143500px;}
.y96{bottom:983.151000px;}
.y190{bottom:984.585000px;}
.y130{bottom:984.585981px;}
.y81{bottom:997.068212px;}
.y55{bottom:998.617500px;}
.y227{bottom:1000.833778px;}
.y169{bottom:1001.253000px;}
.y2{bottom:1002.189000px;}
.ye5{bottom:1002.613500px;}
.y95{bottom:1002.621000px;}
.y12f{bottom:1003.293747px;}
.y18f{bottom:1003.296235px;}
.ye4{bottom:1009.246500px;}
.y80{bottom:1013.568005px;}
.y226{bottom:1015.125599px;}
.y54{bottom:1019.622000px;}
.y168{bottom:1020.044012px;}
.y12e{bottom:1022.085512px;}
.y18e{bottom:1022.088000px;}
.y94{bottom:1022.091000px;}
.y7f{bottom:1030.067799px;}
.y225{bottom:1034.601356px;}
.y1{bottom:1035.949500px;}
.y167{bottom:1038.751779px;}
.y53{bottom:1040.626500px;}
.y12d{bottom:1040.793279px;}
.y93{bottom:1041.561000px;}
.y7e{bottom:1046.567593px;}
.y224{bottom:1048.797178px;}
.y166{bottom:1061.035500px;}
.y92{bottom:1061.121000px;}
.y52{bottom:1061.631000px;}
.y7d{bottom:1063.067386px;}
.y12c{bottom:1063.077000px;}
.y2d{bottom:1107.042023px;}
.y7a{bottom:1114.101013px;}
.y7c{bottom:1118.692500px;}
.h11{height:18.538487px;}
.h18{height:23.996250px;}
.h17{height:26.039070px;}
.h4{height:27.932275px;}
.h14{height:29.996550px;}
.h9{height:34.780477px;}
.hc{height:34.968313px;}
.h15{height:35.999550px;}
.h1{height:37.199535px;}
.h5{height:37.247534px;}
.he{height:39.119511px;}
.hd{height:40.559493px;}
.h3{height:41.904000px;}
.h1a{height:43.333699px;}
.h1d{height:43.378846px;}
.h19{height:43.401020px;}
.h16{height:43.410431px;}
.h1c{height:43.720130px;}
.h1b{height:43.743956px;}
.h8{height:44.175000px;}
.hb{height:45.000000px;}
.h10{height:46.500000px;}
.h12{height:52.800000px;}
.h7{height:53.543069px;}
.h13{height:53.999550px;}
.hf{height:55.871534px;}
.h6{height:70.905000px;}
.h2{height:88.020000px;}
.ha{height:99.071616px;}
.h0{height:1188.000000px;}
.w2{width:84.783750px;}
.w1{width:160.979853px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:52.044147px;}
.x1d{left:54.000000px;}
.x35{left:57.911700px;}
.x3e{left:61.313250px;}
.x47{left:65.988607px;}
.x1e{left:71.433000px;}
.x34{left:82.573200px;}
.x33{left:143.716500px;}
.x30{left:180.538500px;}
.x32{left:182.494500px;}
.x3b{left:225.780000px;}
.x41{left:234.537743px;}
.x31{left:245.253000px;}
.x48{left:246.525593px;}
.x1{left:300.018000px;}
.x38{left:307.760828px;}
.x4a{left:312.104774px;}
.x1f{left:317.943000px;}
.x49{left:329.276559px;}
.x3f{left:332.589000px;}
.x37{left:337.606500px;}
.x16{left:348.240000px;}
.x17{left:355.557000px;}
.x40{left:361.508639px;}
.x23{left:364.479000px;}
.x18{left:368.139000px;}
.xe{left:371.877000px;}
.x25{left:376.213500px;}
.xf{left:377.490000px;}
.x26{left:381.571500px;}
.x24{left:386.334000px;}
.x55{left:388.975813px;}
.x4c{left:391.111786px;}
.x19{left:394.761000px;}
.x21{left:404.787000px;}
.x4b{left:408.283571px;}
.x1a{left:411.760500px;}
.x22{left:413.461500px;}
.x2{left:416.268000px;}
.x3{left:430.129500px;}
.x2b{left:432.085500px;}
.x2c{left:436.422000px;}
.x29{left:439.398000px;}
.x2a{left:448.072500px;}
.x56{left:470.094799px;}
.x4d{left:472.146773px;}
.x36{left:475.962725px;}
.x10{left:483.024000px;}
.x42{left:484.794615px;}
.x3c{left:486.848737px;}
.x11{left:488.551500px;}
.x27{left:491.358000px;}
.x20{left:499.606500px;}
.x28{left:503.943000px;}
.x4{left:549.270000px;}
.x58{left:551.129786px;}
.x4f{left:553.265759px;}
.x5{left:563.130000px;}
.x57{left:568.397570px;}
.x4e{left:570.533543px;}
.x39{left:581.753403px;}
.x43{left:584.033375px;}
.x2f{left:595.949226px;}
.x12{left:602.248500px;}
.x6{left:616.792500px;}
.x13{left:630.057000px;}
.x5a{left:632.248772px;}
.x50{left:634.396745px;}
.x59{left:649.516556px;}
.x3d{left:651.906673px;}
.x7{left:656.590500px;}
.x44{left:659.380433px;}
.x8{left:662.967000px;}
.x9{left:668.494500px;}
.x3a{left:690.688041px;}
.x45{left:697.983950px;}
.x5b{left:713.367758px;}
.x52{left:715.527731px;}
.x14{left:721.303500px;}
.x51{left:732.699516px;}
.xa{left:753.108000px;}
.xb{left:758.635500px;}
.x15{left:762.973500px;}
.x46{left:770.007050px;}
.x2d{left:780.151500px;}
.x2e{left:784.488000px;}
.x5c{left:794.486744px;}
.x54{left:796.658717px;}
.x53{left:813.830502px;}
.x1b{left:832.703341px;}
.xc{left:846.481500px;}
.xd{left:852.009000px;}
@media print{
.v4{vertical-align:-15.418667pt;}
.v1{vertical-align:-5.136000pt;}
.v2{vertical-align:-1.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.441210pt;}
.lsa{letter-spacing:-1.123200pt;}
.lsf{letter-spacing:-1.067200pt;}
.ls13{letter-spacing:-1.066653pt;}
.ls10{letter-spacing:-0.214663pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.213331pt;}
.ls11{letter-spacing:-0.212800pt;}
.lsc{letter-spacing:-0.211997pt;}
.lsb{letter-spacing:-0.211200pt;}
.ls18{letter-spacing:-0.211198pt;}
.lsd{letter-spacing:-0.188775pt;}
.ls1b{letter-spacing:-0.188423pt;}
.lse{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.693333pt;}
.ls1a{letter-spacing:1.013333pt;}
.ls17{letter-spacing:1.194652pt;}
.ls6{letter-spacing:1.493315pt;}
.ls27{letter-spacing:2.603733pt;}
.ls1f{letter-spacing:2.608533pt;}
.ls32{letter-spacing:2.826667pt;}
.ls3{letter-spacing:4.522610pt;}
.ls0{letter-spacing:4.896000pt;}
.ls1{letter-spacing:5.184000pt;}
.ls8{letter-spacing:8.405228pt;}
.ls4{letter-spacing:9.215885pt;}
.ls26{letter-spacing:9.642546pt;}
.ls20{letter-spacing:9.770545pt;}
.ls22{letter-spacing:9.813211pt;}
.ls23{letter-spacing:9.855877pt;}
.ls5{letter-spacing:11.080800pt;}
.ls21{letter-spacing:11.360000pt;}
.ls1c{letter-spacing:11.466667pt;}
.ls14{letter-spacing:11.520000pt;}
.ls1d{letter-spacing:11.573333pt;}
.ls7{letter-spacing:11.775853pt;}
.ls15{letter-spacing:11.840000pt;}
.ls19{letter-spacing:11.866667pt;}
.ls16{letter-spacing:11.893333pt;}
.ls30{letter-spacing:11.920000pt;}
.ls2{letter-spacing:18.474436pt;}
.ls25{letter-spacing:168.299200pt;}
.ls24{letter-spacing:168.603200pt;}
.ls28{letter-spacing:242.075200pt;}
.ls2c{letter-spacing:260.219200pt;}
.ls2e{letter-spacing:264.752533pt;}
.ls2a{letter-spacing:289.845867pt;}
.ls1e{letter-spacing:302.549867pt;}
.ls29{letter-spacing:441.632533pt;}
.ls2d{letter-spacing:458.571200pt;}
.ls2b{letter-spacing:580.686075pt;}
.ls2f{letter-spacing:611.832352pt;}
.ws2a{word-spacing:-33.023872pt;}
.wse2{word-spacing:-29.865600pt;}
.ws2e{word-spacing:-22.442386pt;}
.ws11c{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.775853pt;}
.wsfe{word-spacing:-9.770545pt;}
.ws31{word-spacing:-9.599880pt;}
.wsd6{word-spacing:-9.301217pt;}
.ws11a{word-spacing:-3.763169pt;}
.ws117{word-spacing:-3.628770pt;}
.ws4f{word-spacing:-3.612471pt;}
.ws125{word-spacing:-3.340758pt;}
.ws12a{word-spacing:-3.199960pt;}
.ws138{word-spacing:-3.178627pt;}
.ws127{word-spacing:-3.144494pt;}
.ws149{word-spacing:-3.127428pt;}
.ws15{word-spacing:-3.118894pt;}
.ws14b{word-spacing:-3.110361pt;}
.ws13c{word-spacing:-3.089028pt;}
.ws72{word-spacing:-3.076228pt;}
.ws13d{word-spacing:-3.071962pt;}
.ws24{word-spacing:-3.029867pt;}
.ws53{word-spacing:-3.024800pt;}
.ws28{word-spacing:-3.014667pt;}
.ws130{word-spacing:-3.012229pt;}
.ws14e{word-spacing:-2.999429pt;}
.ws9{word-spacing:-2.971200pt;}
.ws1a{word-spacing:-2.965296pt;}
.ws26{word-spacing:-2.953867pt;}
.ws19{word-spacing:-2.948230pt;}
.ws153{word-spacing:-2.943963pt;}
.ws129{word-spacing:-2.939697pt;}
.ws50{word-spacing:-2.938667pt;}
.ws154{word-spacing:-2.935430pt;}
.ws134{word-spacing:-2.926897pt;}
.ws11f{word-spacing:-2.922630pt;}
.ws13e{word-spacing:-2.914097pt;}
.wsc{word-spacing:-2.913600pt;}
.ws131{word-spacing:-2.909830pt;}
.ws4{word-spacing:-2.908800pt;}
.ws151{word-spacing:-2.901297pt;}
.ws54{word-spacing:-2.893067pt;}
.ws12{word-spacing:-2.879964pt;}
.ws13{word-spacing:-2.871431pt;}
.ws7{word-spacing:-2.870400pt;}
.ws55{word-spacing:-2.867733pt;}
.ws124{word-spacing:-2.867164pt;}
.wsa{word-spacing:-2.856000pt;}
.ws12d{word-spacing:-2.850098pt;}
.ws139{word-spacing:-2.841564pt;}
.ws21{word-spacing:-2.837333pt;}
.ws12e{word-spacing:-2.837298pt;}
.ws20{word-spacing:-2.832267pt;}
.ws10{word-spacing:-2.828765pt;}
.ws3{word-spacing:-2.827200pt;}
.wsf{word-spacing:-2.824498pt;}
.ws23{word-spacing:-2.822133pt;}
.ws148{word-spacing:-2.820231pt;}
.ws113{word-spacing:-2.815965pt;}
.ws143{word-spacing:-2.811698pt;}
.ws136{word-spacing:-2.807432pt;}
.ws128{word-spacing:-2.803165pt;}
.ws4c{word-spacing:-2.801867pt;}
.ws6{word-spacing:-2.788800pt;}
.ws5{word-spacing:-2.784000pt;}
.ws2b{word-spacing:-2.777565pt;}
.ws126{word-spacing:-2.773299pt;}
.ws27{word-spacing:-2.771467pt;}
.ws12c{word-spacing:-2.769032pt;}
.ws123{word-spacing:-2.764765pt;}
.ws13f{word-spacing:-2.756232pt;}
.ws120{word-spacing:-2.751966pt;}
.ws145{word-spacing:-2.747699pt;}
.ws51{word-spacing:-2.746133pt;}
.wsb{word-spacing:-2.740800pt;}
.ws12f{word-spacing:-2.739166pt;}
.ws121{word-spacing:-2.726366pt;}
.ws4e{word-spacing:-2.725867pt;}
.ws13a{word-spacing:-2.717833pt;}
.ws8{word-spacing:-2.716800pt;}
.ws52{word-spacing:-2.710667pt;}
.ws29{word-spacing:-2.675200pt;}
.wsd{word-spacing:-2.666633pt;}
.ws1e{word-spacing:-2.662367pt;}
.ws14f{word-spacing:-2.658100pt;}
.ws1c{word-spacing:-2.645300pt;}
.ws25{word-spacing:-2.644800pt;}
.ws147{word-spacing:-2.641034pt;}
.ws14{word-spacing:-2.636767pt;}
.ws141{word-spacing:-2.628234pt;}
.ws150{word-spacing:-2.623967pt;}
.ws18{word-spacing:-2.615434pt;}
.ws22{word-spacing:-2.614400pt;}
.ws132{word-spacing:-2.611167pt;}
.ws122{word-spacing:-2.602634pt;}
.ws1{word-spacing:-2.592000pt;}
.ws142{word-spacing:-2.577034pt;}
.wse{word-spacing:-2.572768pt;}
.ws155{word-spacing:-2.568501pt;}
.ws56{word-spacing:-2.553600pt;}
.ws11e{word-spacing:-2.547168pt;}
.ws135{word-spacing:-2.542902pt;}
.ws14d{word-spacing:-2.538635pt;}
.ws4b{word-spacing:-2.538400pt;}
.ws14c{word-spacing:-2.534368pt;}
.ws146{word-spacing:-2.513035pt;}
.ws2d{word-spacing:-2.508769pt;}
.ws11{word-spacing:-2.500235pt;}
.ws4d{word-spacing:-2.492800pt;}
.ws14a{word-spacing:-2.487436pt;}
.ws133{word-spacing:-2.483169pt;}
.ws137{word-spacing:-2.470369pt;}
.ws152{word-spacing:-2.466103pt;}
.ws12b{word-spacing:-2.457569pt;}
.ws140{word-spacing:-2.444769pt;}
.ws17{word-spacing:-2.440503pt;}
.ws2{word-spacing:-2.438400pt;}
.ws144{word-spacing:-2.431970pt;}
.ws57{word-spacing:-2.426933pt;}
.ws1d{word-spacing:-2.402103pt;}
.ws16{word-spacing:-2.397837pt;}
.ws0{word-spacing:-2.355171pt;}
.ws40{word-spacing:-0.942922pt;}
.ws7f{word-spacing:-0.849056pt;}
.ws42{word-spacing:-0.819190pt;}
.ws3e{word-spacing:-0.810657pt;}
.ws109{word-spacing:-0.780790pt;}
.ws3a{word-spacing:-0.767990pt;}
.ws47{word-spacing:-0.729591pt;}
.ws38{word-spacing:-0.725324pt;}
.ws44{word-spacing:-0.721058pt;}
.ws7b{word-spacing:-0.716791pt;}
.wsa2{word-spacing:-0.708258pt;}
.ws78{word-spacing:-0.695458pt;}
.ws33{word-spacing:-0.691191pt;}
.ws8b{word-spacing:-0.688000pt;}
.ws3c{word-spacing:-0.682658pt;}
.ws49{word-spacing:-0.674125pt;}
.ws104{word-spacing:-0.665592pt;}
.ws81{word-spacing:-0.661325pt;}
.ws36{word-spacing:-0.657058pt;}
.ws68{word-spacing:-0.656000pt;}
.ws3f{word-spacing:-0.648525pt;}
.ws73{word-spacing:-0.639992pt;}
.ws34{word-spacing:-0.635725pt;}
.ws75{word-spacing:-0.614392pt;}
.ws3d{word-spacing:-0.610126pt;}
.ws82{word-spacing:-0.605859pt;}
.ws37{word-spacing:-0.601592pt;}
.ws43{word-spacing:-0.597326pt;}
.ws46{word-spacing:-0.593059pt;}
.ws76{word-spacing:-0.580259pt;}
.ws45{word-spacing:-0.575993pt;}
.ws77{word-spacing:-0.571726pt;}
.wsf1{word-spacing:-0.567460pt;}
.ws32{word-spacing:-0.563193pt;}
.ws2f{word-spacing:-0.554660pt;}
.ws7d{word-spacing:-0.550393pt;}
.ws69{word-spacing:-0.549333pt;}
.ws7a{word-spacing:-0.524793pt;}
.ws35{word-spacing:-0.511994pt;}
.ws9a{word-spacing:-0.490667pt;}
.wsdb{word-spacing:-0.482127pt;}
.ws74{word-spacing:-0.477861pt;}
.ws3b{word-spacing:-0.465061pt;}
.ws39{word-spacing:-0.460794pt;}
.wsce{word-spacing:-0.456528pt;}
.wsa5{word-spacing:-0.453333pt;}
.wsd8{word-spacing:-0.452261pt;}
.ws65{word-spacing:-0.448000pt;}
.ws66{word-spacing:-0.442667pt;}
.ws80{word-spacing:-0.439461pt;}
.wsb9{word-spacing:-0.435195pt;}
.wsba{word-spacing:-0.426661pt;}
.wsee{word-spacing:-0.422395pt;}
.ws8a{word-spacing:-0.421333pt;}
.ws41{word-spacing:-0.418128pt;}
.ws9c{word-spacing:-0.416000pt;}
.ws79{word-spacing:-0.413861pt;}
.ws92{word-spacing:-0.410667pt;}
.ws7c{word-spacing:-0.409595pt;}
.ws7e{word-spacing:-0.405328pt;}
.ws48{word-spacing:-0.396795pt;}
.ws30{word-spacing:-0.392528pt;}
.ws83{word-spacing:-0.389333pt;}
.ws8f{word-spacing:-0.384000pt;}
.ws89{word-spacing:-0.378667pt;}
.wsbe{word-spacing:-0.373333pt;}
.wsb6{word-spacing:-0.371195pt;}
.ws112{word-spacing:-0.362662pt;}
.ws10e{word-spacing:-0.358396pt;}
.ws6f{word-spacing:-0.357333pt;}
.wsda{word-spacing:-0.354129pt;}
.wsaa{word-spacing:-0.352000pt;}
.wse4{word-spacing:-0.346667pt;}
.ws67{word-spacing:-0.341333pt;}
.wsb1{word-spacing:-0.341329pt;}
.wse1{word-spacing:-0.337062pt;}
.wsc1{word-spacing:-0.336000pt;}
.wsbc{word-spacing:-0.332796pt;}
.ws8d{word-spacing:-0.330667pt;}
.wseb{word-spacing:-0.328529pt;}
.ws85{word-spacing:-0.325333pt;}
.ws63{word-spacing:-0.320000pt;}
.wscf{word-spacing:-0.315729pt;}
.ws86{word-spacing:-0.314667pt;}
.ws5b{word-spacing:-0.309333pt;}
.ws87{word-spacing:-0.304000pt;}
.wsc8{word-spacing:-0.302930pt;}
.wsa7{word-spacing:-0.298667pt;}
.wsdf{word-spacing:-0.298663pt;}
.ws103{word-spacing:-0.294396pt;}
.wsbf{word-spacing:-0.293333pt;}
.ws102{word-spacing:-0.290130pt;}
.ws6e{word-spacing:-0.288000pt;}
.ws5f{word-spacing:-0.282667pt;}
.wsec{word-spacing:-0.273063pt;}
.wsbd{word-spacing:-0.272000pt;}
.ws58{word-spacing:-0.261333pt;}
.ws91{word-spacing:-0.256000pt;}
.wsb5{word-spacing:-0.251730pt;}
.ws59{word-spacing:-0.250667pt;}
.ws100{word-spacing:-0.247464pt;}
.ws5c{word-spacing:-0.245333pt;}
.wsd0{word-spacing:-0.243197pt;}
.wsad{word-spacing:-0.238930pt;}
.ws61{word-spacing:-0.234667pt;}
.wsd9{word-spacing:-0.234664pt;}
.ws60{word-spacing:-0.229333pt;}
.wsab{word-spacing:-0.224000pt;}
.wsa1{word-spacing:-0.221864pt;}
.ws8e{word-spacing:-0.218667pt;}
.ws98{word-spacing:-0.213333pt;}
.ws108{word-spacing:-0.213331pt;}
.ws6c{word-spacing:-0.208000pt;}
.wsf3{word-spacing:-0.204797pt;}
.wsc4{word-spacing:-0.202667pt;}
.wscd{word-spacing:-0.200531pt;}
.ws64{word-spacing:-0.197333pt;}
.wse3{word-spacing:-0.196264pt;}
.ws6d{word-spacing:-0.192000pt;}
.wsa0{word-spacing:-0.186667pt;}
.ws8c{word-spacing:-0.181333pt;}
.wsca{word-spacing:-0.179198pt;}
.ws107{word-spacing:-0.176000pt;}
.ws6b{word-spacing:-0.170667pt;}
.wsa6{word-spacing:-0.165333pt;}
.wse0{word-spacing:-0.162131pt;}
.ws5a{word-spacing:-0.154667pt;}
.wsdd{word-spacing:-0.153598pt;}
.wsb4{word-spacing:-0.149331pt;}
.ws106{word-spacing:-0.144000pt;}
.ws114{word-spacing:-0.133333pt;}
.wsb0{word-spacing:-0.132265pt;}
.wsac{word-spacing:-0.128000pt;}
.wsc9{word-spacing:-0.123732pt;}
.wsed{word-spacing:-0.119465pt;}
.wsd2{word-spacing:-0.117333pt;}
.ws95{word-spacing:-0.112000pt;}
.ws96{word-spacing:-0.106667pt;}
.ws88{word-spacing:-0.096000pt;}
.ws115{word-spacing:-0.090667pt;}
.wsc0{word-spacing:-0.085333pt;}
.wsb3{word-spacing:-0.085332pt;}
.ws94{word-spacing:-0.080000pt;}
.wsb2{word-spacing:-0.072532pt;}
.ws62{word-spacing:-0.064000pt;}
.wsbb{word-spacing:-0.059733pt;}
.wsb8{word-spacing:-0.051199pt;}
.ws97{word-spacing:-0.037333pt;}
.wsa4{word-spacing:-0.032000pt;}
.wscb{word-spacing:-0.029866pt;}
.ws9e{word-spacing:-0.026667pt;}
.wsde{word-spacing:-0.025600pt;}
.ws5e{word-spacing:-0.021333pt;}
.wse5{word-spacing:-0.016000pt;}
.ws9d{word-spacing:-0.010667pt;}
.ws90{word-spacing:-0.005333pt;}
.ws4a{word-spacing:0.000000pt;}
.ws99{word-spacing:0.016000pt;}
.wse6{word-spacing:0.017066pt;}
.ws70{word-spacing:0.021333pt;}
.wsc2{word-spacing:0.026667pt;}
.wsfc{word-spacing:0.029866pt;}
.ws84{word-spacing:0.037333pt;}
.ws93{word-spacing:0.044800pt;}
.wsc3{word-spacing:0.053333pt;}
.ws101{word-spacing:0.055466pt;}
.wsa3{word-spacing:0.074667pt;}
.ws9f{word-spacing:0.080000pt;}
.ws10c{word-spacing:0.081066pt;}
.ws6a{word-spacing:0.085333pt;}
.wse7{word-spacing:0.093865pt;}
.wsd3{word-spacing:0.112000pt;}
.ws10b{word-spacing:0.132265pt;}
.wsf4{word-spacing:0.145065pt;}
.wsb7{word-spacing:0.149331pt;}
.ws116{word-spacing:0.149333pt;}
.wsfb{word-spacing:0.153598pt;}
.ws9b{word-spacing:0.160000pt;}
.ws105{word-spacing:0.172799pt;}
.wsd4{word-spacing:0.174931pt;}
.wsdc{word-spacing:0.191998pt;}
.wsa9{word-spacing:0.192000pt;}
.ws71{word-spacing:0.208000pt;}
.ws5d{word-spacing:0.213333pt;}
.wsa8{word-spacing:0.281598pt;}
.wscc{word-spacing:0.290130pt;}
.wsf2{word-spacing:0.294396pt;}
.ws10a{word-spacing:0.298663pt;}
.ws11b{word-spacing:0.304000pt;}
.wsc5{word-spacing:0.332796pt;}
.wsc6{word-spacing:0.375462pt;}
.wsd1{word-spacing:0.422396pt;}
.ws118{word-spacing:0.432000pt;}
.ws119{word-spacing:0.496000pt;}
.ws1b{word-spacing:6.869247pt;}
.ws2c{word-spacing:30.728149pt;}
.wsfd{word-spacing:36.087016pt;}
.wsf8{word-spacing:36.283280pt;}
.wsef{word-spacing:36.586209pt;}
.ws13b{word-spacing:41.642146pt;}
.ws11d{word-spacing:41.684812pt;}
.wsf9{word-spacing:44.752507pt;}
.wsf0{word-spacing:61.383766pt;}
.wsfa{word-spacing:105.526148pt;}
.wsea{word-spacing:130.699166pt;}
.ws111{word-spacing:154.084474pt;}
.ws110{word-spacing:154.980463pt;}
.ws10f{word-spacing:155.586322pt;}
.wsd7{word-spacing:198.312188pt;}
.wsd5{word-spacing:208.296063pt;}
.ws10d{word-spacing:208.338729pt;}
.wsf7{word-spacing:215.975967pt;}
.wsaf{word-spacing:280.956488pt;}
.wsf5{word-spacing:346.462173pt;}
.wse8{word-spacing:350.691506pt;}
.wsf6{word-spacing:364.411445pt;}
.wse9{word-spacing:368.038066pt;}
.wsae{word-spacing:454.650317pt;}
.wsff{word-spacing:456.783623pt;}
.wsc7{word-spacing:595.832552pt;}
._98{margin-left:-22.361600pt;}
._e{margin-left:-21.429333pt;}
._a{margin-left:-16.938455pt;}
._9{margin-left:-16.008333pt;}
._d{margin-left:-14.698483pt;}
._7{margin-left:-7.485411pt;}
._c{margin-left:-4.294412pt;}
._6{margin-left:-2.751989pt;}
._0{margin-left:-0.985588pt;}
._54{width:1.925333pt;}
._2{width:3.282667pt;}
._3{width:8.183364pt;}
._4{width:9.954009pt;}
._b{width:10.848000pt;}
._5{width:12.372800pt;}
._2b{width:13.317867pt;}
._f{width:14.335821pt;}
._99{width:17.970975pt;}
._10{width:18.905364pt;}
._1{width:22.464000pt;}
._11{width:34.508368pt;}
._77{width:37.418199pt;}
._74{width:42.004808pt;}
._83{width:45.217568pt;}
._59{width:46.160490pt;}
._5c{width:47.158877pt;}
._71{width:54.403587pt;}
._58{width:56.310763pt;}
._82{width:62.019491pt;}
._75{width:63.820002pt;}
._7d{width:67.062628pt;}
._1f{width:70.347921pt;}
._65{width:71.350575pt;}
._6f{width:72.779890pt;}
._70{width:74.281738pt;}
._79{width:77.695029pt;}
._8b{width:80.694458pt;}
._5b{width:83.245893pt;}
._78{width:86.689050pt;}
._5a{width:88.801023pt;}
._56{width:90.136473pt;}
._8e{width:92.790307pt;}
._72{width:95.149744pt;}
._8a{width:96.186531pt;}
._67{width:98.601434pt;}
._17{width:99.676621pt;}
._7e{width:100.657942pt;}
._7a{width:103.017379pt;}
._80{width:104.847756pt;}
._61{width:109.989025pt;}
._34{width:111.772469pt;}
._5e{width:115.595355pt;}
._7f{width:117.011871pt;}
._64{width:119.038512pt;}
._5d{width:120.553160pt;}
._6e{width:123.245393pt;}
._89{width:125.882160pt;}
._8f{width:127.507739pt;}
._57{width:131.343425pt;}
._7b{width:137.184419pt;}
._63{width:140.627575pt;}
._7c{width:146.041908pt;}
._84{width:158.043891pt;}
._2d{width:166.291255pt;}
._66{width:171.419724pt;}
._62{width:179.709754pt;}
._3c{width:183.822769pt;}
._52{width:187.022729pt;}
._92{width:202.386803pt;}
._40{width:207.088611pt;}
._93{width:210.062441pt;}
._86{width:212.985071pt;}
._4f{width:216.103965pt;}
._6b{width:227.666487pt;}
._31{width:229.654729pt;}
._6c{width:233.754945pt;}
._25{width:249.315284pt;}
._90{width:257.925309pt;}
._76{width:259.550889pt;}
._37{width:276.075482pt;}
._45{width:283.158060pt;}
._91{width:286.123357pt;}
._8d{width:291.994217pt;}
._35{width:294.703516pt;}
._4b{width:301.001037pt;}
._33{width:304.375929pt;}
._51{width:315.409391pt;}
._4c{width:317.427499pt;}
._49{width:324.638075pt;}
._42{width:326.600717pt;}
._3b{width:327.855102pt;}
._18{width:330.551601pt;}
._96{width:332.975038pt;}
._48{width:334.813948pt;}
._3a{width:337.058187pt;}
._85{width:342.024525pt;}
._69{width:343.249043pt;}
._4a{width:346.881661pt;}
._53{width:348.471377pt;}
._81{width:353.220118pt;}
._3e{width:357.789661pt;}
._38{width:365.422632pt;}
._3d{width:366.975679pt;}
._3f{width:368.008200pt;}
._94{width:369.548447pt;}
._8c{width:374.992646pt;}
._20{width:380.586176pt;}
._68{width:384.455994pt;}
._73{width:391.043645pt;}
._95{width:398.369420pt;}
._22{width:402.380037pt;}
._87{width:404.568809pt;}
._16{width:405.797594pt;}
._55{width:407.389041pt;}
._88{width:409.437015pt;}
._5f{width:411.898851pt;}
._1c{width:417.778244pt;}
._29{width:422.693383pt;}
._6a{width:424.016033pt;}
._24{width:427.860252pt;}
._1e{width:435.616955pt;}
._4e{width:441.329950pt;}
._28{width:443.463257pt;}
._46{width:448.433861pt;}
._6d{width:453.144202pt;}
._21{width:457.265751pt;}
._43{width:459.932384pt;}
._2c{width:474.148740pt;}
._12{width:481.401982pt;}
._1a{width:490.451469pt;}
._27{width:498.878031pt;}
._13{width:500.559076pt;}
._2a{width:520.386028pt;}
._4d{width:524.025450pt;}
._1d{width:531.146427pt;}
._14{width:532.942671pt;}
._36{width:535.613571pt;}
._26{width:541.032170pt;}
._2e{width:544.633192pt;}
._30{width:556.071982pt;}
._60{width:557.475698pt;}
._19{width:578.424770pt;}
._39{width:581.663129pt;}
._44{width:586.309471pt;}
._1b{width:589.650229pt;}
._32{width:596.766940pt;}
._41{width:606.759349pt;}
._50{width:617.378949pt;}
._23{width:626.722833pt;}
._2f{width:646.733249pt;}
._15{width:730.230872pt;}
._47{width:736.972121pt;}
._97{width:1372.791373pt;}
._8{width:1395.174027pt;}
.fse{font-size:28.440000pt;}
.fsd{font-size:29.865600pt;}
.fs4{font-size:31.995733pt;}
.fsc{font-size:35.551467pt;}
.fs3{font-size:39.999467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs6{font-size:61.332267pt;}
.fsa{font-size:63.999467pt;}
.fs5{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.fs8{font-size:110.079573pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:4.033333pt;}
.y2e{bottom:7.567971pt;}
.y2f{bottom:48.000000pt;}
.y1d8{bottom:106.370066pt;}
.y51{bottom:110.625824pt;}
.y2c{bottom:110.665333pt;}
.y1fb{bottom:110.672960pt;}
.ydf{bottom:110.673333pt;}
.y112{bottom:110.674433pt;}
.yc0{bottom:110.680000pt;}
.y223{bottom:110.682983pt;}
.y79{bottom:110.713333pt;}
.y18d{bottom:112.438667pt;}
.y165{bottom:114.032000pt;}
.y12b{bottom:114.121333pt;}
.y222{bottom:123.386824pt;}
.y50{bottom:125.292307pt;}
.y1d7{bottom:127.009808pt;}
.yde{bottom:127.980000pt;}
.ybf{bottom:127.986667pt;}
.y78{bottom:128.020000pt;}
.y2b{bottom:129.336000pt;}
.y18c{bottom:129.745333pt;}
.y164{bottom:131.338667pt;}
.y12a{bottom:131.428000pt;}
.y1fa{bottom:134.715326pt;}
.y111{bottom:134.716799pt;}
.y221{bottom:136.005333pt;}
.y1d6{bottom:139.702983pt;}
.y4f{bottom:139.958791pt;}
.ydd{bottom:145.366667pt;}
.ybe{bottom:145.373333pt;}
.y77{bottom:145.406667pt;}
.y18b{bottom:147.052000pt;}
.y2a{bottom:148.006667pt;}
.y163{bottom:148.725333pt;}
.y129{bottom:148.734667pt;}
.y1f9{bottom:150.661793pt;}
.y110{bottom:150.663267pt;}
.y1d5{bottom:152.321492pt;}
.y220{bottom:153.317117pt;}
.y4e{bottom:154.625274pt;}
.ydc{bottom:162.673333pt;}
.ybd{bottom:162.680000pt;}
.y76{bottom:162.713333pt;}
.y18a{bottom:164.358667pt;}
.y1d4{bottom:165.014667pt;}
.y21f{bottom:166.020958pt;}
.y162{bottom:166.032000pt;}
.y128{bottom:166.121333pt;}
.y10f{bottom:166.684400pt;}
.y4d{bottom:169.291757pt;}
.y29{bottom:170.682667pt;}
.y1f8{bottom:175.685480pt;}
.y21e{bottom:178.714132pt;}
.ydb{bottom:179.980000pt;}
.ybc{bottom:179.986667pt;}
.y75{bottom:180.020000pt;}
.y189{bottom:181.745333pt;}
.y10e{bottom:182.705533pt;}
.y161{bottom:183.338667pt;}
.y127{bottom:183.428000pt;}
.y4c{bottom:183.958241pt;}
.y1f7{bottom:188.389322pt;}
.y21d{bottom:196.025916pt;}
.yda{bottom:197.366667pt;}
.ybb{bottom:197.373333pt;}
.y74{bottom:197.406667pt;}
.y4b{bottom:198.624724pt;}
.y10d{bottom:198.652000pt;}
.y10b{bottom:198.656200pt;}
.y188{bottom:199.052000pt;}
.y160{bottom:200.645333pt;}
.y126{bottom:200.734667pt;}
.y10c{bottom:203.414667pt;}
.y1f6{bottom:205.018447pt;}
.y28{bottom:206.513333pt;}
.y21c{bottom:208.644425pt;}
.y4a{bottom:213.291207pt;}
.yba{bottom:214.680000pt;}
.y73{bottom:214.713333pt;}
.y187{bottom:216.358667pt;}
.y1f5{bottom:217.711622pt;}
.y15f{bottom:218.032000pt;}
.y125{bottom:218.121333pt;}
.y10a{bottom:218.532000pt;}
.yd9{bottom:219.968000pt;}
.y21b{bottom:226.030874pt;}
.y49{bottom:227.957691pt;}
.y27{bottom:229.190667pt;}
.y109{bottom:230.701845pt;}
.yb9{bottom:231.986667pt;}
.yb7{bottom:231.996000pt;}
.y72{bottom:232.020000pt;}
.y186{bottom:233.745333pt;}
.y1f4{bottom:234.340747pt;}
.y15e{bottom:235.338667pt;}
.y124{bottom:235.428000pt;}
.yb8{bottom:237.958667pt;}
.y21a{bottom:238.649383pt;}
.y48{bottom:242.624174pt;}
.y108{bottom:246.648313pt;}
.y1f3{bottom:247.044588pt;}
.yb6{bottom:249.302667pt;}
.y71{bottom:249.326667pt;}
.y185{bottom:251.052000pt;}
.y219{bottom:251.342558pt;}
.y15d{bottom:252.645333pt;}
.y123{bottom:252.734667pt;}
.y47{bottom:257.290657pt;}
.yd8{bottom:257.928000pt;}
.y1f2{bottom:263.673714pt;}
.y26{bottom:265.020000pt;}
.yb5{bottom:266.689333pt;}
.y70{bottom:266.713333pt;}
.y184{bottom:268.358667pt;}
.y218{bottom:268.654341pt;}
.y15c{bottom:270.032000pt;}
.y122{bottom:270.121333pt;}
.y107{bottom:271.667698pt;}
.yd7{bottom:275.234667pt;}
.y1f1{bottom:276.377555pt;}
.y46{bottom:279.967707pt;}
.y217{bottom:281.347516pt;}
.yb4{bottom:283.996000pt;}
.y6f{bottom:284.020000pt;}
.y183{bottom:285.745333pt;}
.y15b{bottom:287.338667pt;}
.y121{bottom:287.428000pt;}
.y25{bottom:287.697333pt;}
.y106{bottom:288.296823pt;}
.yd6{bottom:292.541333pt;}
.y1f0{bottom:293.006681pt;}
.y216{bottom:293.966025pt;}
.y45{bottom:294.634190pt;}
.yb3{bottom:301.302667pt;}
.y6e{bottom:301.326667pt;}
.y182{bottom:303.052000pt;}
.y15a{bottom:304.645333pt;}
.y120{bottom:304.734667pt;}
.y105{bottom:305.000614pt;}
.y1ef{bottom:305.699855pt;}
.y215{bottom:306.669866pt;}
.y44{bottom:309.300674pt;}
.yd5{bottom:309.928000pt;}
.yb2{bottom:318.689333pt;}
.y6d{bottom:318.713333pt;}
.y181{bottom:320.358667pt;}
.y104{bottom:321.640406pt;}
.y159{bottom:322.032000pt;}
.y11f{bottom:322.041333pt;}
.y1ee{bottom:322.328981pt;}
.y24{bottom:323.528000pt;}
.y43{bottom:323.967157pt;}
.y214{bottom:323.981650pt;}
.yd4{bottom:327.234667pt;}
.y103{bottom:334.333581pt;}
.y1ed{bottom:335.022155pt;}
.y6c{bottom:336.020000pt;}
.y213{bottom:336.685491pt;}
.y180{bottom:337.665333pt;}
.y42{bottom:338.633640pt;}
.y158{bottom:339.338667pt;}
.y11e{bottom:339.428000pt;}
.yb1{bottom:341.366667pt;}
.yd3{bottom:344.541333pt;}
.yd1{bottom:344.544000pt;}
.y23{bottom:346.205333pt;}
.y212{bottom:349.304000pt;}
.yd2{bottom:350.513333pt;}
.y1ec{bottom:351.651281pt;}
.y41{bottom:353.300124pt;}
.y6b{bottom:353.326667pt;}
.y102{bottom:354.141333pt;}
.y17f{bottom:355.052000pt;}
.y157{bottom:356.645333pt;}
.y11d{bottom:356.734667pt;}
.yd0{bottom:361.930667pt;}
.y211{bottom:367.369333pt;}
.y1eb{bottom:368.355072pt;}
.y6a{bottom:370.713333pt;}
.y17e{bottom:372.358667pt;}
.y156{bottom:374.032000pt;}
.y11c{bottom:374.041333pt;}
.y40{bottom:375.977174pt;}
.yb0{bottom:376.626667pt;}
.ycf{bottom:379.237333pt;}
.y22{bottom:382.034667pt;}
.y101{bottom:385.136000pt;}
.y69{bottom:388.020000pt;}
.y1ea{bottom:388.088159pt;}
.y155{bottom:391.338667pt;}
.y11b{bottom:391.428000pt;}
.yaf{bottom:394.013333pt;}
.y3f{bottom:398.654223pt;}
.y21{bottom:400.705333pt;}
.y1e9{bottom:400.781333pt;}
.yce{bottom:401.914667pt;}
.y100{bottom:402.522667pt;}
.y68{bottom:405.326667pt;}
.y154{bottom:408.645333pt;}
.y11a{bottom:408.734667pt;}
.yae{bottom:411.320000pt;}
.y1bb{bottom:412.873833pt;}
.y248{bottom:415.598617pt;}
.y210{bottom:417.638667pt;}
.y20{bottom:419.376000pt;}
.yff{bottom:419.829333pt;}
.y3e{bottom:421.331273pt;}
.y67{bottom:422.713333pt;}
.y153{bottom:425.952000pt;}
.y119{bottom:426.041333pt;}
.y247{bottom:428.302458pt;}
.yad{bottom:428.626667pt;}
.y20f{bottom:434.945333pt;}
.y1ba{bottom:436.841534pt;}
.y1f{bottom:438.046667pt;}
.ycd{bottom:439.805333pt;}
.y66{bottom:440.020000pt;}
.y246{bottom:440.995633pt;}
.yfe{bottom:442.506667pt;}
.y1e2{bottom:443.282667pt;}
.y118{bottom:443.428000pt;}
.y3d{bottom:444.008323pt;}
.yac{bottom:446.013333pt;}
.y1d3{bottom:448.172301pt;}
.y152{bottom:448.636200pt;}
.y1b9{bottom:452.862667pt;}
.ycc{bottom:457.112000pt;}
.y65{bottom:457.326667pt;}
.y1b8{bottom:457.625333pt;}
.y245{bottom:458.307417pt;}
.y3c{bottom:458.674807pt;}
.y20e{bottom:458.985333pt;}
.y1e1{bottom:460.589333pt;}
.y1e{bottom:460.724000pt;}
.y117{bottom:460.734667pt;}
.yab{bottom:463.320000pt;}
.y1b7{bottom:468.888000pt;}
.y244{bottom:470.925925pt;}
.y151{bottom:472.668000pt;}
.y3b{bottom:473.341290pt;}
.y1b6{bottom:473.574667pt;}
.ycb{bottom:474.498667pt;}
.y64{bottom:474.633333pt;}
.y1d2{bottom:476.069333pt;}
.y1e0{bottom:477.976000pt;}
.y116{bottom:478.041333pt;}
.yaa{bottom:480.626667pt;}
.y20d{bottom:481.662667pt;}
.yfd{bottom:482.218667pt;}
.y243{bottom:483.629767pt;}
.y1b5{bottom:484.837333pt;}
.y1b4{bottom:489.600000pt;}
.yca{bottom:491.805333pt;}
.y1d1{bottom:492.094667pt;}
.y1df{bottom:495.282667pt;}
.y115{bottom:495.428000pt;}
.y3a{bottom:496.018340pt;}
.y63{bottom:497.310667pt;}
.ya9{bottom:498.013333pt;}
.yfc{bottom:499.525333pt;}
.y1b3{bottom:500.862667pt;}
.y242{bottom:500.941550pt;}
.y1b2{bottom:505.625333pt;}
.y1d{bottom:507.288000pt;}
.y1d0{bottom:508.044000pt;}
.yc9{bottom:509.112000pt;}
.y39{bottom:510.684823pt;}
.y1de{bottom:512.589333pt;}
.y114{bottom:512.734667pt;}
.y241{bottom:513.634725pt;}
.ya8{bottom:515.320000pt;}
.yfb{bottom:516.832000pt;}
.y1cf{bottom:520.207212pt;}
.y1b1{bottom:520.742667pt;}
.y38{bottom:525.351306pt;}
.y240{bottom:526.253234pt;}
.yc8{bottom:526.498667pt;}
.y1dd{bottom:529.976000pt;}
.y113{bottom:530.041333pt;}
.ya7{bottom:532.626667pt;}
.y20c{bottom:533.298667pt;}
.yfa{bottom:534.218667pt;}
.y1b0{bottom:536.693333pt;}
.y37{bottom:540.017790pt;}
.y17d{bottom:542.357634pt;}
.y23f{bottom:543.639683pt;}
.yc7{bottom:543.805333pt;}
.y1ce{bottom:545.156233pt;}
.y1dc{bottom:547.282667pt;}
.y1af{bottom:548.864471pt;}
.ya6{bottom:549.933333pt;}
.y20b{bottom:550.605333pt;}
.yf9{bottom:551.525333pt;}
.y36{bottom:554.684273pt;}
.y23e{bottom:556.258192pt;}
.y1c{bottom:560.921333pt;}
.yc6{bottom:561.112000pt;}
.y1cd{bottom:561.860025pt;}
.y150{bottom:562.845833pt;}
.y1db{bottom:564.589333pt;}
.ya5{bottom:567.320000pt;}
.y20a{bottom:567.912000pt;}
.yf8{bottom:568.832000pt;}
.y23d{bottom:568.962033pt;}
.y17c{bottom:570.254667pt;}
.y1ae{bottom:573.888158pt;}
.y35{bottom:576.529333pt;}
.yc5{bottom:578.418667pt;}
.yc3{bottom:578.421333pt;}
.y1cc{bottom:578.489150pt;}
.y1da{bottom:581.896000pt;}
.y62{bottom:583.710667pt;}
.yc4{bottom:584.390667pt;}
.ya4{bottom:584.626667pt;}
.y17b{bottom:586.205333pt;}
.yf7{bottom:586.218667pt;}
.y23c{bottom:586.273817pt;}
.y1ab{bottom:586.503033pt;}
.y1ad{bottom:586.506667pt;}
.y14f{bottom:586.888199pt;}
.y1b{bottom:587.534333pt;}
.y209{bottom:590.589333pt;}
.y1ac{bottom:591.269333pt;}
.y1cb{bottom:595.192941pt;}
.yc2{bottom:595.808000pt;}
.y17a{bottom:598.378896pt;}
.y23b{bottom:598.977658pt;}
.y1a{bottom:600.910166pt;}
.ya3{bottom:601.933333pt;}
.y61{bottom:602.381333pt;}
.y14e{bottom:602.834667pt;}
.y1aa{bottom:603.217491pt;}
.yf6{bottom:603.525333pt;}
.y1d9{bottom:604.573333pt;}
.y14d{bottom:607.597333pt;}
.y23a{bottom:611.596167pt;}
.y1ca{bottom:611.822067pt;}
.yc1{bottom:613.114667pt;}
.y19{bottom:614.211333pt;}
.y1a7{bottom:615.832367pt;}
.y1a9{bottom:615.836000pt;}
.y14c{bottom:618.860000pt;}
.ya2{bottom:619.320000pt;}
.y1a8{bottom:620.598667pt;}
.yf5{bottom:620.832000pt;}
.y60{bottom:621.052000pt;}
.y179{bottom:623.402583pt;}
.y14b{bottom:623.621333pt;}
.y239{bottom:624.300008pt;}
.y1c9{bottom:624.525908pt;}
.y18{bottom:627.587166pt;}
.y1a6{bottom:632.546824pt;}
.y208{bottom:634.226667pt;}
.y1e8{bottom:634.828892pt;}
.y14a{bottom:634.885333pt;}
.ya1{bottom:636.626667pt;}
.yf4{bottom:638.218667pt;}
.y149{bottom:639.572000pt;}
.y178{bottom:640.031709pt;}
.y17{bottom:640.888333pt;}
.y1c8{bottom:641.155033pt;}
.y238{bottom:641.611792pt;}
.y91{bottom:643.608555pt;}
.y5f{bottom:643.729333pt;}
.y1a3{bottom:645.161700pt;}
.y1a5{bottom:645.165333pt;}
.ye3{bottom:647.971242pt;}
.y1a4{bottom:649.928000pt;}
.y148{bottom:650.834667pt;}
.y207{bottom:651.613333pt;}
.y34{bottom:653.780000pt;}
.ya0{bottom:653.933333pt;}
.y16{bottom:654.189500pt;}
.y237{bottom:654.315633pt;}
.yf3{bottom:655.525333pt;}
.y1e7{bottom:655.543299pt;}
.y147{bottom:655.597333pt;}
.y177{bottom:656.735500pt;}
.y1c6{bottom:657.866717pt;}
.y90{bottom:658.275038pt;}
.y1a2{bottom:661.876158pt;}
.y146{bottom:666.856313pt;}
.y236{bottom:666.934142pt;}
.y15{bottom:667.565333pt;}
.y1e6{bottom:668.161808pt;}
.ye2{bottom:668.685650pt;}
.y206{bottom:668.920000pt;}
.y33{bottom:669.126667pt;}
.y1c5{bottom:670.485225pt;}
.y1c7{bottom:670.488000pt;}
.y9f{bottom:671.320000pt;}
.yf2{bottom:672.832000pt;}
.yf0{bottom:672.834667pt;}
.y176{bottom:673.364625pt;}
.y19f{bottom:674.488600pt;}
.y1a1{bottom:674.494667pt;}
.yf1{bottom:678.802667pt;}
.y5e{bottom:678.804000pt;}
.y1a0{bottom:679.256000pt;}
.y1e5{bottom:680.854983pt;}
.y13{bottom:680.866500pt;}
.y8f{bottom:680.877422pt;}
.y14{bottom:681.090497pt;}
.ye1{bottom:681.304159pt;}
.y235{bottom:684.320591pt;}
.y32{bottom:684.473333pt;}
.y205{bottom:686.226667pt;}
.y1c4{bottom:687.189017pt;}
.y175{bottom:690.068417pt;}
.yef{bottom:690.141333pt;}
.y19e{bottom:691.192391pt;}
.y145{bottom:691.880000pt;}
.y143{bottom:691.881541pt;}
.y1e4{bottom:693.473492pt;}
.y9e{bottom:693.921333pt;}
.ye0{bottom:693.997333pt;}
.y12{bottom:694.167667pt;}
.y8e{bottom:695.618571pt;}
.y144{bottom:696.566667pt;}
.y234{bottom:696.939100pt;}
.y5d{bottom:697.474667pt;}
.y31{bottom:699.740000pt;}
.y204{bottom:703.613333pt;}
.y1c3{bottom:703.818142pt;}
.y1e3{bottom:706.166667pt;}
.y174{bottom:706.697542pt;}
.yee{bottom:707.528000pt;}
.y11{bottom:707.543500pt;}
.y19d{bottom:707.821517pt;}
.y142{bottom:708.510667pt;}
.y140{bottom:708.512209pt;}
.y233{bottom:709.632275pt;}
.y8d{bottom:710.285055pt;}
.y141{bottom:713.272000pt;}
.y30{bottom:715.086667pt;}
.y5c{bottom:716.145333pt;}
.y1c2{bottom:720.521933pt;}
.y19c{bottom:720.525358pt;}
.y10{bottom:720.844667pt;}
.y203{bottom:720.920000pt;}
.y173{bottom:723.412749pt;}
.y8c{bottom:724.951538pt;}
.y13f{bottom:725.216000pt;}
.y13d{bottom:725.216208pt;}
.y232{bottom:726.944059pt;}
.y9d{bottom:729.228000pt;}
.y13e{bottom:729.902667pt;}
.yed{bottom:730.205333pt;}
.yf{bottom:734.220500pt;}
.y5b{bottom:734.816000pt;}
.y1c1{bottom:737.151059pt;}
.y19b{bottom:737.154483pt;}
.y202{bottom:738.226667pt;}
.y8b{bottom:739.618021pt;}
.y231{bottom:739.647900pt;}
.y172{bottom:740.041875pt;}
.y13c{bottom:741.845333pt;}
.y13a{bottom:741.853458pt;}
.y13b{bottom:746.608000pt;}
.y9c{bottom:746.614667pt;}
.ye{bottom:747.521667pt;}
.y5a{bottom:753.486667pt;}
.y1c0{bottom:753.854850pt;}
.y19a{bottom:753.868941pt;}
.y8a{bottom:754.284505pt;}
.y201{bottom:755.613333pt;}
.y171{bottom:756.671000pt;}
.y230{bottom:756.959683pt;}
.y139{bottom:758.557249pt;}
.yd{bottom:760.822834pt;}
.y9b{bottom:763.921333pt;}
.y199{bottom:766.487450pt;}
.y89{bottom:768.950988pt;}
.y22f{bottom:769.663525pt;}
.yec{bottom:769.905333pt;}
.y1bf{bottom:770.483975pt;}
.y200{bottom:772.920000pt;}
.y170{bottom:773.374791pt;}
.yc{bottom:774.198667pt;}
.y138{bottom:775.186375pt;}
.y59{bottom:776.164000pt;}
.y9a{bottom:781.228000pt;}
.y198{bottom:783.191241pt;}
.y88{bottom:783.617471pt;}
.y22e{bottom:786.975308pt;}
.y1be{bottom:787.198433pt;}
.yeb{bottom:787.212000pt;}
.y16f{bottom:790.003917pt;}
.y1ff{bottom:790.226667pt;}
.y137{bottom:791.890166pt;}
.y9{bottom:798.161333pt;}
.y87{bottom:798.283955pt;}
.ya{bottom:798.461333pt;}
.y22d{bottom:799.593817pt;}
.y1bd{bottom:799.816942pt;}
.y197{bottom:799.820367pt;}
.yb{bottom:803.528000pt;}
.y99{bottom:803.905333pt;}
.yea{bottom:804.518667pt;}
.y16e{bottom:806.707708pt;}
.y1fe{bottom:807.533333pt;}
.y136{bottom:808.519291pt;}
.y58{bottom:811.237333pt;}
.y22c{bottom:812.286992pt;}
.y196{bottom:812.524208pt;}
.y7{bottom:812.825333pt;}
.y86{bottom:812.950438pt;}
.y1bc{bottom:816.531400pt;}
.y8{bottom:818.192000pt;}
.ye9{bottom:821.905333pt;}
.y16d{bottom:823.336833pt;}
.y1fd{bottom:824.920000pt;}
.y135{bottom:825.223082pt;}
.y4{bottom:827.489333pt;}
.y85{bottom:827.616921pt;}
.y6{bottom:827.789333pt;}
.y193{bottom:829.149909pt;}
.y195{bottom:829.153333pt;}
.y22b{bottom:829.598775pt;}
.y57{bottom:829.908000pt;}
.y5{bottom:832.857333pt;}
.y194{bottom:833.914667pt;}
.ye8{bottom:839.212000pt;}
.y98{bottom:839.218667pt;}
.y16c{bottom:840.040625pt;}
.y134{bottom:841.852208pt;}
.y84{bottom:842.283405pt;}
.y22a{bottom:842.302617pt;}
.y192{bottom:845.853700pt;}
.y1fc{bottom:847.597333pt;}
.y56{bottom:852.585333pt;}
.ye7{bottom:856.518667pt;}
.y97{bottom:856.525333pt;}
.y16b{bottom:856.669750pt;}
.y83{bottom:856.949888pt;}
.y133{bottom:858.481333pt;}
.y131{bottom:858.483748pt;}
.y229{bottom:859.614400pt;}
.y3{bottom:860.834667pt;}
.y191{bottom:862.493492pt;}
.y132{bottom:863.244000pt;}
.y82{bottom:871.616371pt;}
.y228{bottom:872.318241pt;}
.y16a{bottom:873.373541pt;}
.ye6{bottom:873.905333pt;}
.y96{bottom:873.912000pt;}
.y190{bottom:875.186667pt;}
.y130{bottom:875.187539pt;}
.y81{bottom:886.282855pt;}
.y55{bottom:887.660000pt;}
.y227{bottom:889.630025pt;}
.y169{bottom:890.002667pt;}
.y2{bottom:890.834667pt;}
.ye5{bottom:891.212000pt;}
.y95{bottom:891.218667pt;}
.y12f{bottom:891.816664pt;}
.y18f{bottom:891.818875pt;}
.ye4{bottom:897.108000pt;}
.y80{bottom:900.949338pt;}
.y226{bottom:902.333866pt;}
.y54{bottom:906.330667pt;}
.y168{bottom:906.705789pt;}
.y12e{bottom:908.520455pt;}
.y18e{bottom:908.522667pt;}
.y94{bottom:908.525333pt;}
.y7f{bottom:915.615821pt;}
.y225{bottom:919.645650pt;}
.y1{bottom:920.844000pt;}
.y167{bottom:923.334914pt;}
.y53{bottom:925.001333pt;}
.y12d{bottom:925.149581pt;}
.y93{bottom:925.832000pt;}
.y7e{bottom:930.282305pt;}
.y224{bottom:932.264159pt;}
.y166{bottom:943.142667pt;}
.y92{bottom:943.218667pt;}
.y52{bottom:943.672000pt;}
.y7d{bottom:944.948788pt;}
.y12c{bottom:944.957333pt;}
.y2d{bottom:984.037353pt;}
.y7a{bottom:990.312012pt;}
.y7c{bottom:994.393333pt;}
.h11{height:16.478655pt;}
.h18{height:21.330000pt;}
.h17{height:23.145840pt;}
.h4{height:24.828689pt;}
.h14{height:26.663600pt;}
.h9{height:30.915980pt;}
.hc{height:31.082945pt;}
.h15{height:31.999600pt;}
.h1{height:33.066253pt;}
.h5{height:33.108919pt;}
.he{height:34.772899pt;}
.hd{height:36.052883pt;}
.h3{height:37.248000pt;}
.h1a{height:38.518844pt;}
.h1d{height:38.558974pt;}
.h19{height:38.578685pt;}
.h16{height:38.587050pt;}
.h1c{height:38.862338pt;}
.h1b{height:38.883516pt;}
.h8{height:39.266667pt;}
.hb{height:40.000000pt;}
.h10{height:41.333333pt;}
.h12{height:46.933333pt;}
.h7{height:47.593839pt;}
.h13{height:47.999600pt;}
.hf{height:49.663586pt;}
.h6{height:63.026667pt;}
.h2{height:78.240000pt;}
.ha{height:88.063659pt;}
.h0{height:1056.000000pt;}
.w2{width:75.363334pt;}
.w1{width:143.093202pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:46.261464pt;}
.x1d{left:48.000000pt;}
.x35{left:51.477067pt;}
.x3e{left:54.500667pt;}
.x47{left:58.656539pt;}
.x1e{left:63.496000pt;}
.x34{left:73.398400pt;}
.x33{left:127.748000pt;}
.x30{left:160.478667pt;}
.x32{left:162.217333pt;}
.x3b{left:200.693333pt;}
.x41{left:208.477994pt;}
.x31{left:218.002667pt;}
.x48{left:219.133861pt;}
.x1{left:266.682667pt;}
.x38{left:273.565180pt;}
.x4a{left:277.426465pt;}
.x1f{left:282.616000pt;}
.x49{left:292.690275pt;}
.x3f{left:295.634667pt;}
.x37{left:300.094667pt;}
.x16{left:309.546667pt;}
.x17{left:316.050667pt;}
.x40{left:321.341012pt;}
.x23{left:323.981333pt;}
.x18{left:327.234667pt;}
.xe{left:330.557333pt;}
.x25{left:334.412000pt;}
.xf{left:335.546667pt;}
.x26{left:339.174667pt;}
.x24{left:343.408000pt;}
.x55{left:345.756278pt;}
.x4c{left:347.654921pt;}
.x19{left:350.898667pt;}
.x21{left:359.810667pt;}
.x4b{left:362.918730pt;}
.x1a{left:366.009333pt;}
.x22{left:367.521333pt;}
.x2{left:370.016000pt;}
.x3{left:382.337333pt;}
.x2b{left:384.076000pt;}
.x2c{left:387.930667pt;}
.x29{left:390.576000pt;}
.x2a{left:398.286667pt;}
.x56{left:417.862043pt;}
.x4d{left:419.686021pt;}
.x36{left:423.077978pt;}
.x10{left:429.354667pt;}
.x42{left:430.928547pt;}
.x3c{left:432.754433pt;}
.x11{left:434.268000pt;}
.x27{left:436.762667pt;}
.x20{left:444.094667pt;}
.x28{left:447.949333pt;}
.x4{left:488.240000pt;}
.x58{left:489.893143pt;}
.x4f{left:491.791786pt;}
.x5{left:500.560000pt;}
.x57{left:505.242284pt;}
.x4e{left:507.140927pt;}
.x39{left:517.114136pt;}
.x43{left:519.140777pt;}
.x2f{left:529.732645pt;}
.x12{left:535.332000pt;}
.x6{left:548.260000pt;}
.x13{left:560.050667pt;}
.x5a{left:561.998908pt;}
.x50{left:563.908218pt;}
.x59{left:577.348050pt;}
.x3d{left:579.472599pt;}
.x7{left:583.636000pt;}
.x44{left:586.115940pt;}
.x8{left:589.304000pt;}
.x9{left:594.217333pt;}
.x3a{left:613.944926pt;}
.x45{left:620.430178pt;}
.x5b{left:634.104674pt;}
.x52{left:636.024650pt;}
.x14{left:641.158667pt;}
.x51{left:651.288459pt;}
.xa{left:669.429333pt;}
.xb{left:674.342667pt;}
.x15{left:678.198667pt;}
.x46{left:684.450711pt;}
.x2d{left:693.468000pt;}
.x2e{left:697.322667pt;}
.x5c{left:706.210439pt;}
.x54{left:708.141081pt;}
.x53{left:723.404891pt;}
.x1b{left:740.180748pt;}
.xc{left:752.428000pt;}
.xd{left:757.341333pt;}
}




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