
    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_bfc63dc8e15a0abb7569604d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_e25a3be09c6394ecc009b69f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_4c03d83f7e3ed1097d24df53.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_6f7c20a1856244982eb7533d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_6c16c7c440c79947e40ff7a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.457000;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_8316d9d91552fc1b50d29f07.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.972000;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_e2f69f256fad1c4c586225c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_38dcbfa75cfd0918b4148619.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_188ec326f3a0c6874241661b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.251000;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_3889dcaee4f0659a339e7484.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.728000;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_dad570eda0d7b691930a80b0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.962000;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_9c0317d86d978334b29dd1fd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.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:ffd;src:url('chunks/assets/font_87aae0fd0983e10cd4db3161.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919000;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_9759ed63d277ee4870dcc402.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.919000;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_5d8eb406c4a8c1e8a654ca8b.woff2')format("woff");}.fff{font-family:fff;line-height:0.919000;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_283168e170703808274f4b83.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.941000;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_4029c70e959e8cfe08e1c092.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.264000;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_7d069f65c3fd3e0753b3cd9c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.984000;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_426953aee70849759b6b0457.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.972000;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;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m7{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls48{letter-spacing:-1.466976px;}
.ls49{letter-spacing:-1.286983px;}
.ls44{letter-spacing:-1.250983px;}
.ls46{letter-spacing:-1.232984px;}
.ls18{letter-spacing:-1.211268px;}
.ls45{letter-spacing:-1.210484px;}
.ls43{letter-spacing:-1.192484px;}
.ls28{letter-spacing:-1.158348px;}
.ls1b{letter-spacing:-1.146588px;}
.ls47{letter-spacing:-1.142985px;}
.ls39{letter-spacing:-1.128948px;}
.ls1a{letter-spacing:-1.123069px;}
.lsb{letter-spacing:-1.117189px;}
.ls6{letter-spacing:-1.111309px;}
.ls26{letter-spacing:-1.105429px;}
.ls19{letter-spacing:-1.099549px;}
.lsa{letter-spacing:-1.093669px;}
.ls1c{letter-spacing:-1.093663px;}
.ls25{letter-spacing:-1.087789px;}
.ls2f{letter-spacing:-1.081909px;}
.ls5{letter-spacing:-1.076029px;}
.ls2c{letter-spacing:-1.070149px;}
.ls9{letter-spacing:-1.064269px;}
.lse{letter-spacing:-1.058389px;}
.ls3a{letter-spacing:-1.046629px;}
.ls2b{letter-spacing:-1.034869px;}
.ls24{letter-spacing:-1.028990px;}
.ls8{letter-spacing:-1.023110px;}
.ls2e{letter-spacing:-1.017230px;}
.ls2a{letter-spacing:-1.011350px;}
.ls27{letter-spacing:-1.005470px;}
.ls7{letter-spacing:-0.981950px;}
.ls29{letter-spacing:-0.940790px;}
.ls30{letter-spacing:-0.899631px;}
.ls38{letter-spacing:-0.652673px;}
.ls37{letter-spacing:-0.646793px;}
.ls1{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.000146px;}
.ls40{letter-spacing:0.004500px;}
.ls2{letter-spacing:0.005880px;}
.ls33{letter-spacing:0.011760px;}
.ls21{letter-spacing:0.023999px;}
.ls11{letter-spacing:0.024038px;}
.ls34{letter-spacing:0.029399px;}
.lsd{letter-spacing:0.029400px;}
.ls32{letter-spacing:0.041158px;}
.ls3f{letter-spacing:0.058476px;}
.ls3e{letter-spacing:0.058524px;}
.ls3d{letter-spacing:0.058573px;}
.ls15{letter-spacing:0.134392px;}
.ls23{letter-spacing:0.134398px;}
.ls17{letter-spacing:0.134484px;}
.ls20{letter-spacing:0.139198px;}
.ls13{letter-spacing:0.153560px;}
.ls22{letter-spacing:0.153598px;}
.ls12{letter-spacing:0.153651px;}
.ls1e{letter-spacing:0.164638px;}
.ls0{letter-spacing:0.246016px;}
.ls3{letter-spacing:0.364556px;}
.ls14{letter-spacing:0.449394px;}
.ls3c{letter-spacing:0.818989px;}
.ls41{letter-spacing:13.140050px;}
.ls3b{letter-spacing:13.504296px;}
.ls36{letter-spacing:13.504320px;}
.lsc{letter-spacing:14.746890px;}
.ls2d{letter-spacing:15.552441px;}
.lsf{letter-spacing:15.859772px;}
.ls4{letter-spacing:17.716260px;}
.ls35{letter-spacing:25.877614px;}
.ls31{letter-spacing:30.699165px;}
.ls1d{letter-spacing:33.503899px;}
.ls16{letter-spacing:135.780755px;}
.ls1f{letter-spacing:136.798283px;}
.ls10{letter-spacing:923.239647px;}
.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;}
}
.wsc5{word-spacing:-33.562698px;}
.ws135{word-spacing:-30.757965px;}
.ws128{word-spacing:-15.611241px;}
.ws40{word-spacing:-14.805690px;}
.ws221{word-spacing:-10.508400px;}
.wsec{word-spacing:-0.491393px;}
.ws2c{word-spacing:-0.061800px;}
.ws93{word-spacing:-0.058799px;}
.ws2a{word-spacing:-0.047999px;}
.ws20{word-spacing:-0.044999px;}
.ws218{word-spacing:-0.043801px;}
.ws2b{word-spacing:0.000000px;}
.ws122{word-spacing:0.952550px;}
.ws125{word-spacing:1.017230px;}
.ws204{word-spacing:1.097985px;}
.ws203{word-spacing:1.241983px;}
.ws202{word-spacing:1.421977px;}
.ws1f{word-spacing:11.884342px;}
.ws24{word-spacing:12.272225px;}
.wsed{word-spacing:12.431822px;}
.ws25{word-spacing:12.465421px;}
.wseb{word-spacing:12.524221px;}
.ws26{word-spacing:12.557820px;}
.ws200{word-spacing:12.770832px;}
.wsff{word-spacing:12.885415px;}
.ws21d{word-spacing:12.982497px;}
.ws21f{word-spacing:13.026298px;}
.ws201{word-spacing:13.027297px;}
.ws219{word-spacing:13.030678px;}
.ws1fd{word-spacing:13.036326px;}
.ws1ff{word-spacing:13.126324px;}
.ws1f7{word-spacing:13.130824px;}
.ws21c{word-spacing:13.144560px;}
.ws210{word-spacing:13.157824px;}
.ws1ee{word-spacing:13.175824px;}
.ws1f1{word-spacing:13.189324px;}
.ws21b{word-spacing:13.210261px;}
.ws1f8{word-spacing:13.216324px;}
.ws1e7{word-spacing:13.229823px;}
.ws22{word-spacing:13.234324px;}
.ws20f{word-spacing:13.247823px;}
.ws1fc{word-spacing:13.247853px;}
.ws1dd{word-spacing:13.256823px;}
.ws208{word-spacing:13.261323px;}
.ws1cf{word-spacing:13.265822px;}
.ws206{word-spacing:13.270323px;}
.ws215{word-spacing:13.274823px;}
.ws1ea{word-spacing:13.279323px;}
.ws1c4{word-spacing:13.283823px;}
.ws20d{word-spacing:13.288525px;}
.ws1ec{word-spacing:13.292822px;}
.ws1e9{word-spacing:13.297342px;}
.ws1d3{word-spacing:13.301823px;}
.ws1d0{word-spacing:13.310822px;}
.ws205{word-spacing:13.319822px;}
.ws220{word-spacing:13.319835px;}
.ws1f2{word-spacing:13.328769px;}
.ws1f5{word-spacing:13.328817px;}
.ws1fb{word-spacing:13.328823px;}
.ws1eb{word-spacing:13.328865px;}
.ws1d5{word-spacing:13.333321px;}
.ws23{word-spacing:13.342322px;}
.ws1c8{word-spacing:13.351322px;}
.ws1e8{word-spacing:13.355821px;}
.ws216{word-spacing:13.360321px;}
.ws214{word-spacing:13.364777px;}
.ws1cd{word-spacing:13.364822px;}
.ws1ce{word-spacing:13.369322px;}
.ws213{word-spacing:13.373822px;}
.ws1dc{word-spacing:13.378321px;}
.ws1f3{word-spacing:13.382821px;}
.ws209{word-spacing:13.387321px;}
.ws20b{word-spacing:13.391821px;}
.ws1ef{word-spacing:13.396322px;}
.ws1d7{word-spacing:13.400821px;}
.ws1fe{word-spacing:13.409821px;}
.ws1d9{word-spacing:13.414321px;}
.ws217{word-spacing:13.418821px;}
.ws1cb{word-spacing:13.432321px;}
.ws1de{word-spacing:13.436821px;}
.ws1c6{word-spacing:13.459321px;}
.ws1e4{word-spacing:13.468320px;}
.ws20c{word-spacing:13.486320px;}
.ws211{word-spacing:13.490808px;}
.ws1e1{word-spacing:13.490819px;}
.ws1cc{word-spacing:13.495320px;}
.ws1e5{word-spacing:13.504320px;}
.ws21e{word-spacing:13.508027px;}
.ws1d2{word-spacing:13.513319px;}
.ws1f0{word-spacing:13.517819px;}
.ws1fa{word-spacing:13.531319px;}
.ws1ed{word-spacing:13.531366px;}
.ws21a{word-spacing:13.534335px;}
.ws1e0{word-spacing:13.540319px;}
.ws212{word-spacing:13.540481px;}
.ws1d6{word-spacing:13.544819px;}
.ws1c7{word-spacing:13.553820px;}
.ws1f6{word-spacing:13.558318px;}
.ws1f4{word-spacing:13.558338px;}
.ws21{word-spacing:13.576319px;}
.ws1e2{word-spacing:13.580818px;}
.ws20e{word-spacing:13.589819px;}
.ws1e3{word-spacing:13.594319px;}
.ws207{word-spacing:13.603318px;}
.ws1d4{word-spacing:13.621319px;}
.ws1da{word-spacing:13.648317px;}
.ws1d8{word-spacing:13.666318px;}
.ws1f9{word-spacing:13.684283px;}
.ws1db{word-spacing:13.697817px;}
.ws20a{word-spacing:13.724709px;}
.ws1c9{word-spacing:13.729317px;}
.ws102{word-spacing:13.751828px;}
.ws103{word-spacing:13.804627px;}
.ws101{word-spacing:13.809428px;}
.ws1df{word-spacing:13.814816px;}
.ws1d1{word-spacing:13.832815px;}
.ws1c5{word-spacing:13.837315px;}
.ws1ca{word-spacing:13.882315px;}
.ws106{word-spacing:13.924607px;}
.ws97{word-spacing:13.924621px;}
.ws27{word-spacing:13.924653px;}
.ws163{word-spacing:13.948626px;}
.ws100{word-spacing:13.982224px;}
.ws28{word-spacing:13.996625px;}
.wse9{word-spacing:14.087824px;}
.ws105{word-spacing:14.111823px;}
.ws104{word-spacing:14.164623px;}
.wscb{word-spacing:14.246078px;}
.wsca{word-spacing:14.246210px;}
.wsf0{word-spacing:14.246215px;}
.ws162{word-spacing:14.246223px;}
.ws99{word-spacing:14.251021px;}
.wse5{word-spacing:14.270221px;}
.wsf1{word-spacing:14.284621px;}
.ws98{word-spacing:14.351817px;}
.ws107{word-spacing:14.351820px;}
.ws29{word-spacing:14.351911px;}
.ws118{word-spacing:14.858608px;}
.wsb4{word-spacing:14.870368px;}
.wsbe{word-spacing:15.146726px;}
.wsc2{word-spacing:15.176126px;}
.ws8c{word-spacing:15.270205px;}
.ws12b{word-spacing:15.311363px;}
.wsba{word-spacing:15.358404px;}
.wsef{word-spacing:15.843600px;}
.ws87{word-spacing:15.911118px;}
.wsc8{word-spacing:16.016400px;}
.wsee{word-spacing:16.043400px;}
.ws161{word-spacing:16.183801px;}
.wsc9{word-spacing:16.313400px;}
.ws131{word-spacing:16.434433px;}
.wsa3{word-spacing:16.469713px;}
.ws12d{word-spacing:16.499111px;}
.ws88{word-spacing:16.516751px;}
.wsa2{word-spacing:16.575551px;}
.ws1e6{word-spacing:16.636278px;}
.ws1a7{word-spacing:16.675510px;}
.ws121{word-spacing:16.699030px;}
.ws1a2{word-spacing:16.893068px;}
.ws1a1{word-spacing:16.957747px;}
.ws184{word-spacing:16.981266px;}
.ws12c{word-spacing:17.069466px;}
.ws1a0{word-spacing:17.128265px;}
.ws154{word-spacing:17.216464px;}
.ws177{word-spacing:17.298784px;}
.ws183{word-spacing:17.322304px;}
.ws4b{word-spacing:17.351687px;}
.ws198{word-spacing:17.351703px;}
.ws79{word-spacing:17.363462px;}
.wsaa{word-spacing:17.439902px;}
.ws182{word-spacing:17.563382px;}
.ws11c{word-spacing:17.569261px;}
.ws1c3{word-spacing:17.575140px;}
.ws179{word-spacing:17.598660px;}
.ws10d{word-spacing:17.633940px;}
.ws1b7{word-spacing:17.639820px;}
.ws9e{word-spacing:17.698619px;}
.wse{word-spacing:17.718177px;}
.ws32{word-spacing:17.733900px;}
.wsa{word-spacing:17.742178px;}
.ws13c{word-spacing:17.745658px;}
.ws12a{word-spacing:17.745660px;}
.ws55{word-spacing:17.751539px;}
.ws149{word-spacing:17.780938px;}
.ws19{word-spacing:17.784178px;}
.ws16{word-spacing:17.790178px;}
.ws143{word-spacing:17.798579px;}
.ws17{word-spacing:17.802179px;}
.ws5f{word-spacing:17.810338px;}
.ws12{word-spacing:17.820178px;}
.wsd{word-spacing:17.826179px;}
.ws4c{word-spacing:17.845618px;}
.ws1b{word-spacing:17.898178px;}
.ws73{word-spacing:17.910298px;}
.ws14{word-spacing:17.940180px;}
.ws1e{word-spacing:17.946180px;}
.ws11{word-spacing:17.970180px;}
.ws1ac{word-spacing:17.986736px;}
.ws9{word-spacing:17.988179px;}
.ws15{word-spacing:17.994180px;}
.ws1bc{word-spacing:17.998497px;}
.ws6f{word-spacing:18.027896px;}
.ws13{word-spacing:18.072182px;}
.ws7{word-spacing:18.090181px;}
.ws8{word-spacing:18.120181px;}
.wsb{word-spacing:18.132182px;}
.ws1a{word-spacing:18.168181px;}
.ws1c2{word-spacing:18.180775px;}
.wsc{word-spacing:18.186182px;}
.ws7b{word-spacing:18.186654px;}
.ws18{word-spacing:18.204192px;}
.wsf{word-spacing:18.216183px;}
.ws10{word-spacing:18.276183px;}
.wsb6{word-spacing:18.321893px;}
.ws17c{word-spacing:18.327774px;}
.ws1c{word-spacing:18.330184px;}
.ws14a{word-spacing:18.339533px;}
.ws34{word-spacing:18.374813px;}
.ws1d{word-spacing:18.432217px;}
.ws89{word-spacing:18.463012px;}
.ws17b{word-spacing:18.557091px;}
.ws6{word-spacing:18.582180px;}
.ws57{word-spacing:18.804047px;}
.ws2f{word-spacing:18.868727px;}
.ws15f{word-spacing:18.898127px;}
.ws60{word-spacing:18.898440px;}
.wsaf{word-spacing:18.915768px;}
.ws3a{word-spacing:18.939288px;}
.ws94{word-spacing:18.974567px;}
.wsae{word-spacing:18.980446px;}
.ws39{word-spacing:19.009846px;}
.ws61{word-spacing:19.098045px;}
.ws15d{word-spacing:19.145085px;}
.wsbf{word-spacing:19.180365px;}
.wsb2{word-spacing:19.297964px;}
.ws86{word-spacing:19.439082px;}
.ws7d{word-spacing:19.480241px;}
.ws15c{word-spacing:19.544920px;}
.ws1a4{word-spacing:19.574320px;}
.wsa4{word-spacing:19.597839px;}
.ws1b2{word-spacing:19.615480px;}
.ws5{word-spacing:19.635179px;}
.ws18a{word-spacing:19.656639px;}
.ws1be{word-spacing:19.744838px;}
.ws4{word-spacing:19.773780px;}
.ws1a3{word-spacing:19.797758px;}
.ws66{word-spacing:19.821278px;}
.ws9f{word-spacing:19.833037px;}
.ws113{word-spacing:19.938877px;}
.ws1b6{word-spacing:19.974157px;}
.ws3{word-spacing:19.978383px;}
.ws124{word-spacing:20.021195px;}
.ws173{word-spacing:20.044715px;}
.ws178{word-spacing:20.056476px;}
.wsb1{word-spacing:20.068235px;}
.ws112{word-spacing:20.079995px;}
.ws130{word-spacing:20.103515px;}
.ws45{word-spacing:20.162314px;}
.ws116{word-spacing:20.226994px;}
.ws62{word-spacing:20.332832px;}
.ws3b{word-spacing:20.379872px;}
.ws17d{word-spacing:20.409272px;}
.ws14f{word-spacing:20.503352px;}
.ws19f{word-spacing:20.526871px;}
.wsa1{word-spacing:20.568025px;}
.ws71{word-spacing:20.597429px;}
.ws3c{word-spacing:20.603310px;}
.ws13b{word-spacing:20.620950px;}
.ws41{word-spacing:20.691509px;}
.ws58{word-spacing:20.709150px;}
.ws52{word-spacing:20.732669px;}
.ws170{word-spacing:20.750308px;}
.wsa9{word-spacing:20.762069px;}
.ws158{word-spacing:20.785588px;}
.ws187{word-spacing:20.867907px;}
.ws91{word-spacing:20.979625px;}
.ws155{word-spacing:21.061946px;}
.ws65{word-spacing:21.138384px;}
.wsa5{word-spacing:21.208944px;}
.ws1a6{word-spacing:21.232464px;}
.ws1a5{word-spacing:21.238343px;}
.ws2e{word-spacing:21.244223px;}
.ws188{word-spacing:21.279503px;}
.ws10b{word-spacing:21.297144px;}
.ws8e{word-spacing:21.308902px;}
.wsb3{word-spacing:21.379462px;}
.ws13f{word-spacing:21.402982px;}
.ws120{word-spacing:21.555860px;}
.ws1b0{word-spacing:21.561741px;}
.ws64{word-spacing:21.585260px;}
.ws51{word-spacing:21.620540px;}
.wsbd{word-spacing:21.691098px;}
.ws18f{word-spacing:21.744018px;}
.ws180{word-spacing:21.785178px;}
.ws18d{word-spacing:21.861616px;}
.ws115{word-spacing:21.891016px;}
.ws151{word-spacing:21.902777px;}
.ws199{word-spacing:21.996856px;}
.ws1b4{word-spacing:22.126214px;}
.ws1b3{word-spacing:22.202654px;}
.ws3d{word-spacing:22.290853px;}
.ws17a{word-spacing:22.302612px;}
.ws156{word-spacing:22.361411px;}
.ws153{word-spacing:22.408452px;}
.ws1a8{word-spacing:22.420211px;}
.ws36{word-spacing:22.455491px;}
.ws152{word-spacing:22.561331px;}
.ws19c{word-spacing:22.608369px;}
.ws37{word-spacing:22.649530px;}
.ws150{word-spacing:22.655408px;}
.ws5c{word-spacing:22.667169px;}
.wsad{word-spacing:22.790648px;}
.ws6e{word-spacing:22.920006px;}
.ws8d{word-spacing:23.002326px;}
.ws1ba{word-spacing:23.014085px;}
.ws13d{word-spacing:23.225763px;}
.ws6c{word-spacing:23.290443px;}
.ws9c{word-spacing:23.425682px;}
.ws13e{word-spacing:23.519760px;}
.ws9d{word-spacing:23.525640px;}
.ws181{word-spacing:23.555040px;}
.ws4e{word-spacing:23.566799px;}
.ws14d{word-spacing:23.607959px;}
.ws148{word-spacing:23.631479px;}
.ws0{word-spacing:23.649601px;}
.ws1b5{word-spacing:23.660878px;}
.ws110{word-spacing:23.690278px;}
.ws80{word-spacing:23.766718px;}
.wsb0{word-spacing:23.813757px;}
.wsa8{word-spacing:23.901956px;}
.ws108{word-spacing:23.943117px;}
.ws63{word-spacing:23.966636px;}
.ws11e{word-spacing:24.207713px;}
.ws15b{word-spacing:24.231234px;}
.ws70{word-spacing:24.242992px;}
.ws31{word-spacing:24.266513px;}
.ws132{word-spacing:24.290033px;}
.ws159{word-spacing:24.342952px;}
.ws18e{word-spacing:24.542869px;}
.wsbb{word-spacing:24.683988px;}
.ws176{word-spacing:24.701628px;}
.ws1a9{word-spacing:24.766308px;}
.ws44{word-spacing:24.807467px;}
.ws59{word-spacing:24.878027px;}
.ws81{word-spacing:25.019145px;}
.ws5a{word-spacing:25.083825px;}
.ws15a{word-spacing:25.260223px;}
.ws114{word-spacing:25.383702px;}
.ws1ab{word-spacing:25.430741px;}
.ws7e{word-spacing:25.483660px;}
.ws111{word-spacing:25.524820px;}
.ws136{word-spacing:25.560100px;}
.ws1aa{word-spacing:25.630659px;}
.ws141{word-spacing:25.701218px;}
.ws3e{word-spacing:25.795297px;}
.ws49{word-spacing:25.812937px;}
.ws14b{word-spacing:26.071654px;}
.wsc3{word-spacing:26.101053px;}
.ws33{word-spacing:26.165733px;}
.wsbc{word-spacing:26.183372px;}
.ws1bb{word-spacing:26.201013px;}
.ws6a{word-spacing:26.383292px;}
.ws175{word-spacing:26.406811px;}
.ws3f{word-spacing:26.436211px;}
.ws50{word-spacing:26.618489px;}
.wsc7{word-spacing:26.624368px;}
.ws6b{word-spacing:26.694928px;}
.ws8b{word-spacing:26.712567px;}
.ws197{word-spacing:26.736088px;}
.ws4f{word-spacing:26.830166px;}
.wsb7{word-spacing:26.918365px;}
.ws69{word-spacing:27.030085px;}
.wsa7{word-spacing:27.059485px;}
.wsab{word-spacing:27.135923px;}
.ws42{word-spacing:27.206483px;}
.ws5e{word-spacing:27.306441px;}
.wsc4{word-spacing:27.377001px;}
.ws15e{word-spacing:27.400521px;}
.ws171{word-spacing:27.471081px;}
.ws1ad{word-spacing:27.647479px;}
.ws14c{word-spacing:27.665118px;}
.ws38{word-spacing:27.700398px;}
.ws7f{word-spacing:27.741556px;}
.ws7a{word-spacing:27.853277px;}
.ws78{word-spacing:27.865035px;}
.ws96{word-spacing:27.888556px;}
.ws67{word-spacing:27.976754px;}
.ws4d{word-spacing:28.111994px;}
.ws56{word-spacing:28.206073px;}
.ws74{word-spacing:28.288392px;}
.ws43{word-spacing:28.341311px;}
.ws53{word-spacing:28.394230px;}
.ws11a{word-spacing:28.423630px;}
.ws48{word-spacing:28.453029px;}
.ws30{word-spacing:28.458910px;}
.ws17e{word-spacing:28.541229px;}
.ws11b{word-spacing:28.647067px;}
.ws18c{word-spacing:28.664708px;}
.ws144{word-spacing:28.735268px;}
.ws172{word-spacing:28.964585px;}
.ws82{word-spacing:29.287982px;}
.wsa6{word-spacing:29.346781px;}
.ws19d{word-spacing:29.370300px;}
.ws77{word-spacing:29.558459px;}
.ws1bd{word-spacing:29.605498px;}
.ws19e{word-spacing:29.629017px;}
.ws84{word-spacing:29.681937px;}
.ws10c{word-spacing:29.687817px;}
.ws18b{word-spacing:29.905375px;}
.ws10f{word-spacing:29.917134px;}
.ws35{word-spacing:29.975934px;}
.ws190{word-spacing:29.981814px;}
.ws1af{word-spacing:30.181731px;}
.ws160{word-spacing:30.246413px;}
.ws8a{word-spacing:30.493368px;}
.ws12f{word-spacing:30.493370px;}
.ws193{word-spacing:30.522767px;}
.ws142{word-spacing:30.710926px;}
.ws134{word-spacing:30.805007px;}
.ws1c0{word-spacing:30.828525px;}
.wsc6{word-spacing:31.004923px;}
.ws195{word-spacing:31.110761px;}
.wsa0{word-spacing:31.140163px;}
.ws119{word-spacing:31.163682px;}
.ws83{word-spacing:31.457679px;}
.ws7c{word-spacing:31.481200px;}
.ws8f{word-spacing:31.510600px;}
.wsc1{word-spacing:31.692877px;}
.wsb5{word-spacing:31.810476px;}
.ws10e{word-spacing:31.945713px;}
.ws1bf{word-spacing:31.986874px;}
.ws1c1{word-spacing:32.033913px;}
.ws196{word-spacing:32.092712px;}
.ws174{word-spacing:32.363191px;}
.ws76{word-spacing:32.486669px;}
.ws12e{word-spacing:32.710108px;}
.ws72{word-spacing:32.715988px;}
.ws133{word-spacing:32.768905px;}
.ws185{word-spacing:33.033552px;}
.ws186{word-spacing:33.039384px;}
.wsc0{word-spacing:33.186383px;}
.ws147{word-spacing:33.239300px;}
.ws85{word-spacing:33.274582px;}
.ws117{word-spacing:33.527419px;}
.ws13a{word-spacing:33.539179px;}
.ws90{word-spacing:33.715578px;}
.ws14e{word-spacing:33.786134px;}
.ws145{word-spacing:33.868455px;}
.ws5d{word-spacing:34.227129px;}
.ws129{word-spacing:34.538766px;}
.ws1b1{word-spacing:34.956243px;}
.ws189{word-spacing:35.350200px;}
.ws9a{word-spacing:35.356081px;}
.ws95{word-spacing:35.373719px;}
.ws9b{word-spacing:35.555996px;}
.ws138{word-spacing:35.579516px;}
.ws47{word-spacing:35.697114px;}
.ws11d{word-spacing:35.808836px;}
.ws194{word-spacing:35.908794px;}
.ws2d{word-spacing:36.608505px;}
.ws1ae{word-spacing:36.637905px;}
.ws4a{word-spacing:36.749625px;}
.ws19b{word-spacing:37.149461px;}
.ws19a{word-spacing:37.172982px;}
.ws11f{word-spacing:37.531657px;}
.wsb9{word-spacing:37.808014px;}
.ws139{word-spacing:38.072612px;}
.ws123{word-spacing:38.131413px;}
.ws75{word-spacing:38.560646px;}
.ws10a{word-spacing:38.789965px;}
.ws191{word-spacing:38.837004px;}
.ws17f{word-spacing:38.872282px;}
.ws54{word-spacing:39.066323px;}
.ws109{word-spacing:39.501436px;}
.ws5b{word-spacing:39.718995px;}
.ws157{word-spacing:40.159990px;}
.ws127{word-spacing:40.254071px;}
.ws126{word-spacing:40.606865px;}
.ws92{word-spacing:40.912622px;}
.wsb8{word-spacing:41.288940px;}
.wsac{word-spacing:42.194448px;}
.ws192{word-spacing:42.611926px;}
.ws1{word-spacing:42.955376px;}
.ws2{word-spacing:43.156980px;}
.ws140{word-spacing:43.511556px;}
.ws68{word-spacing:43.552717px;}
.ws1b9{word-spacing:44.128950px;}
.ws46{word-spacing:44.581706px;}
.ws137{word-spacing:45.240259px;}
.ws1b8{word-spacing:45.792972px;}
.ws146{word-spacing:48.926980px;}
.ws16f{word-spacing:49.588178px;}
.ws6d{word-spacing:52.231507px;}
.ws16c{word-spacing:57.704897px;}
.wsfa{word-spacing:58.386443px;}
.ws16e{word-spacing:69.632726px;}
.wsfe{word-spacing:75.176657px;}
.ws169{word-spacing:80.931786px;}
.wsf7{word-spacing:83.653355px;}
.ws165{word-spacing:90.987660px;}
.wsfb{word-spacing:95.216406px;}
.wsfd{word-spacing:98.542766px;}
.ws167{word-spacing:102.627520px;}
.wsf3{word-spacing:103.333109px;}
.ws16b{word-spacing:116.758538px;}
.wsf5{word-spacing:117.593723px;}
.wsf9{word-spacing:118.260922px;}
.ws16a{word-spacing:254.310414px;}
.wsf8{word-spacing:255.332798px;}
.wse0{word-spacing:257.036834px;}
.wsdd{word-spacing:257.737506px;}
.wse6{word-spacing:259.902356px;}
.wse1{word-spacing:265.657479px;}
.wsd7{word-spacing:268.407835px;}
.wsd0{word-spacing:279.601305px;}
.wsde{word-spacing:282.884517px;}
.wsdc{word-spacing:282.894068px;}
.wsea{word-spacing:283.575646px;}
.wsda{word-spacing:289.124381px;}
.wsd5{word-spacing:290.828360px;}
.wse7{word-spacing:292.191559px;}
.wse4{word-spacing:294.461923px;}
.wscd{word-spacing:303.106596px;}
.wse8{word-spacing:306.101724px;}
.wsdf{word-spacing:311.328908px;}
.wsd2{word-spacing:317.117640px;}
.wsd8{word-spacing:337.071059px;}
.wsd9{word-spacing:339.375033px;}
.wse2{word-spacing:368.361953px;}
.wse3{word-spacing:384.955199px;}
.wscf{word-spacing:389.260806px;}
.wsd4{word-spacing:402.023681px;}
.wsce{word-spacing:406.122869px;}
.wsd3{word-spacing:409.785358px;}
.ws168{word-spacing:416.606004px;}
.wsf6{word-spacing:417.287597px;}
.ws166{word-spacing:425.663484px;}
.wsf4{word-spacing:426.340265px;}
.ws16d{word-spacing:433.636184px;}
.wsfc{word-spacing:434.312940px;}
.ws164{word-spacing:478.131636px;}
.wsf2{word-spacing:479.153997px;}
.wsd6{word-spacing:618.659484px;}
.wsdb{word-spacing:644.190373px;}
.wsd1{word-spacing:655.609437px;}
.wscc{word-spacing:676.445951px;}
._1f{margin-left:-34.274172px;}
._20{margin-left:-32.880618px;}
._34{margin-left:-31.075604px;}
._33{margin-left:-29.934652px;}
._32{margin-left:-17.216464px;}
._10{margin-left:-15.858199px;}
._11{margin-left:-14.735121px;}
._43{margin-left:-6.585242px;}
._1b{margin-left:-5.238777px;}
._f{margin-left:-4.186494px;}
._44{margin-left:-2.998769px;}
._8{margin-left:-1.667088px;}
._6{width:1.170011px;}
._19{width:2.257703px;}
._0{width:8.853000px;}
._2{width:9.945000px;}
._7{width:14.120806px;}
._9{width:15.211009px;}
._21{width:17.398817px;}
._5{width:19.320193px;}
._1e{width:20.391732px;}
._14{width:21.573598px;}
._b{width:23.055247px;}
._17{width:24.548749px;}
._c{width:25.677695px;}
._d{width:27.294682px;}
._12{width:28.317980px;}
._13{width:29.458695px;}
._e{width:31.240122px;}
._1{width:32.830199px;}
._1a{width:34.086013px;}
._16{width:35.744157px;}
._36{width:36.749727px;}
._a{width:37.978829px;}
._31{width:39.012998px;}
._15{width:40.271888px;}
._1d{width:43.388375px;}
._4{width:44.870586px;}
._35{width:46.622044px;}
._26{width:50.476167px;}
._37{width:51.834552px;}
._18{width:53.354769px;}
._41{width:59.548050px;}
._45{width:65.861120px;}
._42{width:70.962313px;}
._3e{width:76.928633px;}
._3f{width:88.822888px;}
._38{width:92.360443px;}
._3b{width:94.102817px;}
._2f{width:101.672341px;}
._30{width:102.944309px;}
._3c{width:105.857870px;}
._29{width:113.297750px;}
._3d{width:118.003239px;}
._2b{width:121.022399px;}
._2a{width:126.276822px;}
._39{width:128.935982px;}
._2c{width:135.531163px;}
._3a{width:139.937444px;}
._2d{width:148.927733px;}
._27{width:158.902049px;}
._28{width:171.919446px;}
._40{width:186.616868px;}
._2e{width:187.639320px;}
._23{width:327.245513px;}
._22{width:332.007039px;}
._24{width:397.175811px;}
._25{width:423.369115px;}
._1c{width:1542.767795px;}
._3{width:1845.682770px;}
.fc4{color:rgb(85,123,178);}
.fc3{color:rgb(38,56,114);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:29.995199px;}
.fs12{font-size:37.800001px;}
.fsd{font-size:39.194401px;}
.fs11{font-size:40.800001px;}
.fsa{font-size:41.999399px;}
.fsf{font-size:43.800599px;}
.fs3{font-size:43.996199px;}
.fs6{font-size:44.999399px;}
.fsb{font-size:47.999399px;}
.fs10{font-size:53.349003px;}
.fse{font-size:54.000000px;}
.fsc{font-size:58.799400px;}
.fs8{font-size:59.538603px;}
.fs5{font-size:60.000601px;}
.fs4{font-size:61.800001px;}
.fs2{font-size:66.000601px;}
.fs0{font-size:78.000000px;}
.fs9{font-size:92.615999px;}
.fs1{font-size:144.000595px;}
.y0{bottom:0.000000px;}
.y21f{bottom:84.166878px;}
.ye1{bottom:91.416510px;}
.y62{bottom:91.417802px;}
.y1b8{bottom:91.419642px;}
.y1ff{bottom:91.421090px;}
.y10c{bottom:91.432456px;}
.y9a{bottom:91.441095px;}
.y184{bottom:91.444836px;}
.y142{bottom:91.455977px;}
.y2b{bottom:91.501850px;}
.y21e{bottom:94.666769px;}
.ye5{bottom:100.772221px;}
.y2a{bottom:103.492672px;}
.ye0{bottom:104.172775px;}
.y1b7{bottom:104.940837px;}
.y1fe{bottom:104.942285px;}
.y61{bottom:109.445698px;}
.y10b{bottom:109.460352px;}
.y99{bottom:109.468991px;}
.y183{bottom:109.472732px;}
.y141{bottom:109.483873px;}
.y29{bottom:115.483505px;}
.ye4{bottom:115.823627px;}
.ydf{bottom:116.929047px;}
.y1b6{bottom:118.462031px;}
.y1fd{bottom:118.463479px;}
.y21d{bottom:127.200128px;}
.y60{bottom:127.389004px;}
.y10a{bottom:127.402989px;}
.y98{bottom:127.496887px;}
.y182{bottom:127.500629px;}
.y140{bottom:127.511769px;}
.ye3{bottom:130.791046px;}
.y1b5{bottom:131.897728px;}
.y1fc{bottom:131.899175px;}
.yde{bottom:136.659462px;}
.y26{bottom:140.910373px;}
.y1b4{bottom:145.418922px;}
.y1fb{bottom:145.420369px;}
.y109{bottom:145.430885px;}
.y97{bottom:145.439524px;}
.y181{bottom:145.443266px;}
.y13f{bottom:145.454406px;}
.y21c{bottom:145.814973px;}
.ye2{bottom:145.842453px;}
.y25{bottom:154.431567px;}
.ydd{bottom:157.664005px;}
.y1b3{bottom:158.940117px;}
.y1fa{bottom:158.941564px;}
.y108{bottom:163.458782px;}
.y96{bottom:163.467421px;}
.y5f{bottom:163.470562px;}
.y180{bottom:163.471162px;}
.y13e{bottom:163.482303px;}
.y21b{bottom:164.429521px;}
.y24{bottom:167.952762px;}
.y1b2{bottom:172.461311px;}
.y1f9{bottom:172.462758px;}
.y23{bottom:172.970115px;}
.ydc{bottom:178.668537px;}
.y107{bottom:181.401419px;}
.y22{bottom:181.474059px;}
.y95{bottom:181.495317px;}
.y5e{bottom:181.498458px;}
.y17f{bottom:181.499058px;}
.y13d{bottom:181.510199px;}
.y21a{bottom:183.044377px;}
.y1b1{bottom:185.898131px;}
.y1f8{bottom:185.899575px;}
.y1b0{bottom:199.419325px;}
.y1f7{bottom:199.420781px;}
.y106{bottom:199.429315px;}
.y94{bottom:199.437954px;}
.y5d{bottom:199.441095px;}
.y17e{bottom:199.441695px;}
.y13c{bottom:199.452836px;}
.ydb{bottom:199.673080px;}
.y219{bottom:201.659223px;}
.y1af{bottom:212.940520px;}
.y1f6{bottom:212.941976px;}
.y105{bottom:217.457211px;}
.y93{bottom:217.465850px;}
.y5c{bottom:217.468991px;}
.y17d{bottom:217.469591px;}
.y13b{bottom:217.480732px;}
.y218{bottom:220.274228px;}
.yda{bottom:220.677612px;}
.y1f5{bottom:226.463170px;}
.y104{bottom:235.399848px;}
.y92{bottom:235.493747px;}
.y5b{bottom:235.496887px;}
.y17c{bottom:235.497488px;}
.y13a{bottom:235.508629px;}
.y1f4{bottom:239.898854px;}
.yd9{bottom:241.682167px;}
.y1ae{bottom:248.061427px;}
.y217{bottom:251.663815px;}
.y1f3{bottom:253.420049px;}
.y103{bottom:253.427744px;}
.y91{bottom:253.436384px;}
.y5a{bottom:253.439524px;}
.y17b{bottom:253.440125px;}
.y139{bottom:253.451266px;}
.y1ad{bottom:261.497123px;}
.yd8{bottom:262.686699px;}
.y1f2{bottom:266.941243px;}
.y216{bottom:267.668515px;}
.y102{bottom:271.455641px;}
.y90{bottom:271.464280px;}
.y59{bottom:271.467421px;}
.y17a{bottom:271.468021px;}
.y138{bottom:271.479162px;}
.y1f1{bottom:280.462438px;}
.yd7{bottom:282.415649px;}
.y101{bottom:289.398278px;}
.y8f{bottom:289.492176px;}
.y58{bottom:289.495317px;}
.y179{bottom:289.495917px;}
.y137{bottom:289.507058px;}
.y1f0{bottom:293.898145px;}
.y1ac{bottom:296.618030px;}
.yd6{bottom:302.060394px;}
.y1ef{bottom:307.419339px;}
.y100{bottom:307.426174px;}
.y8e{bottom:307.434813px;}
.y57{bottom:307.437954px;}
.y178{bottom:307.438554px;}
.y136{bottom:307.449695px;}
.y1ab{bottom:310.139224px;}
.y21{bottom:313.789504px;}
.yd5{bottom:318.642448px;}
.y1ee{bottom:320.940534px;}
.y1aa{bottom:323.660419px;}
.yff{bottom:325.454070px;}
.y8d{bottom:325.462709px;}
.y56{bottom:325.465850px;}
.y177{bottom:325.466451px;}
.y135{bottom:325.477591px;}
.y1ed{bottom:334.461728px;}
.y1a9{bottom:337.096115px;}
.y20{bottom:339.301749px;}
.yfe{bottom:343.396707px;}
.y8c{bottom:343.405346px;}
.y55{bottom:343.408487px;}
.y176{bottom:343.409088px;}
.y134{bottom:343.420228px;}
.y1ec{bottom:347.897412px;}
.y1a8{bottom:350.617310px;}
.y1f{bottom:357.330428px;}
.y1eb{bottom:361.418607px;}
.yfd{bottom:361.424603px;}
.y8b{bottom:361.433243px;}
.y54{bottom:361.436384px;}
.y175{bottom:361.436984px;}
.y133{bottom:361.448125px;}
.yb6{bottom:362.280785px;}
.y1a7{bottom:364.138504px;}
.y1ea{bottom:374.939801px;}
.y1e{bottom:375.273620px;}
.yfc{bottom:379.452500px;}
.y8a{bottom:379.461139px;}
.y53{bottom:379.464280px;}
.y174{bottom:379.464880px;}
.y132{bottom:379.476021px;}
.yb5{bottom:380.308685px;}
.y1e9{bottom:388.461019px;}
.y1d{bottom:393.302276px;}
.yfb{bottom:397.395137px;}
.y89{bottom:397.403776px;}
.y52{bottom:397.406917px;}
.y173{bottom:397.407517px;}
.y131{bottom:397.418658px;}
.yb4{bottom:398.251328px;}
.y1a6{bottom:399.261351px;}
.y1e8{bottom:401.896703px;}
.y1c{bottom:411.330977px;}
.y1e7{bottom:415.417897px;}
.yfa{bottom:415.423033px;}
.y88{bottom:415.431672px;}
.y51{bottom:415.434813px;}
.y172{bottom:415.435413px;}
.y130{bottom:415.446554px;}
.yb3{bottom:416.279205px;}
.y1a5{bottom:417.203988px;}
.y1e6{bottom:428.939092px;}
.yf9{bottom:433.450929px;}
.y87{bottom:433.459569px;}
.y50{bottom:433.462709px;}
.y171{bottom:433.463310px;}
.y12f{bottom:433.474451px;}
.y1b{bottom:433.781722px;}
.yb2{bottom:434.307083px;}
.y1a4{bottom:435.231885px;}
.y1e5{bottom:442.460286px;}
.yf8{bottom:451.393566px;}
.y86{bottom:451.402206px;}
.y4f{bottom:451.405346px;}
.y170{bottom:451.405947px;}
.y12e{bottom:451.417088px;}
.y1a{bottom:451.810378px;}
.yb1{bottom:452.249725px;}
.y1a3{bottom:453.259781px;}
.y1e4{bottom:455.895970px;}
.y1e3{bottom:469.417165px;}
.yf7{bottom:469.421463px;}
.y85{bottom:469.430102px;}
.y4e{bottom:469.433243px;}
.y16f{bottom:469.433843px;}
.y12d{bottom:469.444984px;}
.y19{bottom:469.839080px;}
.yb0{bottom:470.277649px;}
.y1a2{bottom:471.203110px;}
.y1e2{bottom:482.939412px;}
.yf6{bottom:487.449359px;}
.y84{bottom:487.457998px;}
.y4d{bottom:487.461139px;}
.y16e{bottom:487.461739px;}
.y12c{bottom:487.472880px;}
.y18{bottom:487.782226px;}
.yaf{bottom:488.220291px;}
.yc9{bottom:488.232010px;}
.yf5{bottom:505.391996px;}
.y83{bottom:505.400635px;}
.y4c{bottom:505.403776px;}
.y16d{bottom:505.404376px;}
.y12b{bottom:505.415517px;}
.y17{bottom:505.810927px;}
.yae{bottom:506.248169px;}
.yc8{bottom:506.259933px;}
.y1a1{bottom:515.347286px;}
.y1e1{bottom:521.206899px;}
.yf4{bottom:523.419892px;}
.y82{bottom:523.428531px;}
.y4b{bottom:523.431672px;}
.y16c{bottom:523.432273px;}
.y12a{bottom:523.443413px;}
.y16{bottom:523.839583px;}
.yad{bottom:524.276093px;}
.yc7{bottom:524.287811px;}
.y1a0{bottom:533.375182px;}
.y1e0{bottom:534.642583px;}
.yf3{bottom:541.447788px;}
.y81{bottom:541.456428px;}
.y4a{bottom:541.459569px;}
.y16b{bottom:541.460169px;}
.y129{bottom:541.471310px;}
.y15{bottom:541.782775px;}
.yac{bottom:542.218689px;}
.yc6{bottom:542.230453px;}
.y19f{bottom:551.317819px;}
.yf2{bottom:559.390425px;}
.y80{bottom:559.399065px;}
.y49{bottom:559.402206px;}
.y16a{bottom:559.402806px;}
.y128{bottom:559.413947px;}
.y14{bottom:559.811477px;}
.yab{bottom:560.246613px;}
.yc5{bottom:560.258377px;}
.y1df{bottom:561.684972px;}
.y19e{bottom:569.345716px;}
.y1de{bottom:575.206166px;}
.y1dc{bottom:575.206716px;}
.yf1{bottom:577.418322px;}
.y7f{bottom:577.426961px;}
.y48{bottom:577.430102px;}
.y169{bottom:577.430702px;}
.y127{bottom:577.441843px;}
.y13{bottom:577.840133px;}
.yaa{bottom:578.274490px;}
.yc4{bottom:578.286255px;}
.y1dd{bottom:580.138478px;}
.y19d{bottom:587.373612px;}
.y1d9{bottom:588.642400px;}
.y1db{bottom:588.642446px;}
.y1da{bottom:593.659764px;}
.yf0{bottom:595.446218px;}
.y7e{bottom:595.454857px;}
.y47{bottom:595.457998px;}
.y168{bottom:595.458598px;}
.y126{bottom:595.469739px;}
.y12{bottom:595.783324px;}
.ya9{bottom:596.217133px;}
.yc3{bottom:596.228897px;}
.y1d8{bottom:602.163594px;}
.y19c{bottom:605.316249px;}
.y1d7{bottom:607.180913px;}
.yef{bottom:613.388855px;}
.y7d{bottom:613.397494px;}
.y46{bottom:613.400635px;}
.y167{bottom:613.401235px;}
.y125{bottom:613.412376px;}
.y11{bottom:613.811980px;}
.ya8{bottom:614.245056px;}
.yc2{bottom:614.256775px;}
.y1d6{bottom:615.689412px;}
.y19b{bottom:623.344145px;}
.yee{bottom:631.417191px;}
.y7c{bottom:631.425390px;}
.y45{bottom:631.428531px;}
.y166{bottom:631.429132px;}
.y124{bottom:631.440272px;}
.y10{bottom:631.840682px;}
.ya7{bottom:632.272934px;}
.yc1{bottom:632.284698px;}
.y19a{bottom:641.372041px;}
.y1d5{bottom:642.647435px;}
.y7b{bottom:649.453287px;}
.y44{bottom:649.456428px;}
.y165{bottom:649.457028px;}
.y123{bottom:649.468169px;}
.yf{bottom:649.783874px;}
.ya6{bottom:650.215576px;}
.yc0{bottom:650.227341px;}
.y1d4{bottom:656.168630px;}
.y199{bottom:659.314678px;}
.yed{bottom:667.391350px;}
.y7a{bottom:667.395924px;}
.y43{bottom:667.399065px;}
.y164{bottom:667.399665px;}
.y122{bottom:667.410806px;}
.ye{bottom:667.812530px;}
.ya5{bottom:668.243454px;}
.ybf{bottom:668.255218px;}
.y1d3{bottom:669.689824px;}
.y198{bottom:677.342575px;}
.y1d2{bottom:683.211019px;}
.yec{bottom:685.419246px;}
.y79{bottom:685.423820px;}
.y42{bottom:685.426961px;}
.y163{bottom:685.427561px;}
.y121{bottom:685.438702px;}
.yd{bottom:685.841231px;}
.ya4{bottom:686.271378px;}
.ybe{bottom:686.283142px;}
.y197{bottom:695.370471px;}
.y1d1{bottom:696.646703px;}
.yeb{bottom:703.447142px;}
.y78{bottom:703.451716px;}
.y41{bottom:703.454857px;}
.y162{bottom:703.455458px;}
.y120{bottom:703.466598px;}
.ya3{bottom:704.213974px;}
.ybd{bottom:704.225739px;}
.yc{bottom:708.291930px;}
.y1d0{bottom:710.167897px;}
.y196{bottom:713.313108px;}
.yea{bottom:721.389779px;}
.y77{bottom:721.394353px;}
.y40{bottom:721.397494px;}
.y161{bottom:721.398095px;}
.y11f{bottom:721.409235px;}
.ya2{bottom:722.241898px;}
.ybc{bottom:722.253662px;}
.y1cf{bottom:723.689092px;}
.yb{bottom:726.320632px;}
.y195{bottom:731.341004px;}
.y1ce{bottom:737.210286px;}
.ye9{bottom:739.417676px;}
.y76{bottom:739.422250px;}
.y3f{bottom:739.425390px;}
.y160{bottom:739.425991px;}
.y11e{bottom:739.437132px;}
.ya1{bottom:740.269775px;}
.ybb{bottom:740.281540px;}
.ya{bottom:744.263824px;}
.y215{bottom:748.686650px;}
.y194{bottom:749.368900px;}
.y1cd{bottom:750.645970px;}
.ye8{bottom:757.445572px;}
.y75{bottom:757.450146px;}
.y3e{bottom:757.453287px;}
.y15f{bottom:757.453887px;}
.y11d{bottom:757.465028px;}
.ya0{bottom:758.212418px;}
.yba{bottom:758.224182px;}
.y214{bottom:761.442464px;}
.y9{bottom:762.292480px;}
.y1cc{bottom:764.167165px;}
.y193{bottom:767.311537px;}
.y213{bottom:774.198277px;}
.y74{bottom:775.392783px;}
.y3d{bottom:775.395924px;}
.y15e{bottom:775.396524px;}
.y11c{bottom:775.407665px;}
.y9f{bottom:776.240295px;}
.yb9{bottom:776.252106px;}
.y8{bottom:780.321181px;}
.y192{bottom:785.339434px;}
.y212{bottom:786.954137px;}
.y73{bottom:793.420679px;}
.y3c{bottom:793.423820px;}
.y15d{bottom:793.424420px;}
.y11b{bottom:793.435561px;}
.y9e{bottom:794.268219px;}
.yb8{bottom:794.279938px;}
.y14f{bottom:802.090584px;}
.y1cb{bottom:802.434697px;}
.y191{bottom:803.367330px;}
.y7{bottom:807.278609px;}
.y72{bottom:811.448575px;}
.y3b{bottom:811.451716px;}
.y15c{bottom:811.452317px;}
.y11a{bottom:811.463457px;}
.y9d{bottom:812.210815px;}
.yb7{bottom:812.222626px;}
.y14e{bottom:814.846851px;}
.y211{bottom:815.955205px;}
.y1ca{bottom:815.955846px;}
.y190{bottom:821.309967px;}
.y14d{bottom:827.603119px;}
.y210{bottom:829.390935px;}
.y71{bottom:829.391212px;}
.y1c9{bottom:829.391576px;}
.y3a{bottom:829.394353px;}
.y15b{bottom:829.394954px;}
.y119{bottom:829.406094px;}
.y18f{bottom:839.338531px;}
.y20f{bottom:842.912175px;}
.y1c8{bottom:842.912724px;}
.y14c{bottom:847.333368px;}
.y70{bottom:847.419109px;}
.y39{bottom:847.422250px;}
.y15a{bottom:847.422850px;}
.y118{bottom:847.433991px;}
.yd4{bottom:847.842041px;}
.y20e{bottom:856.433324px;}
.y1c7{bottom:856.433965px;}
.yd3{bottom:860.598267px;}
.y5{bottom:865.020278px;}
.y6f{bottom:865.447005px;}
.y38{bottom:865.450146px;}
.y159{bottom:865.450746px;}
.y117{bottom:865.461887px;}
.y14b{bottom:868.337904px;}
.y20d{bottom:869.954564px;}
.y1c6{bottom:869.955113px;}
.y6{bottom:872.418654px;}
.yd2{bottom:880.328522px;}
.y6e{bottom:883.389642px;}
.y20c{bottom:883.390203px;}
.y1c5{bottom:883.390843px;}
.y37{bottom:883.392783px;}
.y158{bottom:883.393383px;}
.y116{bottom:883.404524px;}
.y18e{bottom:883.416904px;}
.y14a{bottom:889.342441px;}
.y20b{bottom:896.911443px;}
.y1c4{bottom:896.911992px;}
.y4{bottom:901.078048px;}
.yd1{bottom:901.333099px;}
.y6d{bottom:901.417538px;}
.y36{bottom:901.420679px;}
.y157{bottom:901.421279px;}
.y115{bottom:901.432420px;}
.y18d{bottom:901.444801px;}
.y149{bottom:910.346977px;}
.y20a{bottom:910.432591px;}
.y1c3{bottom:910.433232px;}
.y6c{bottom:919.445435px;}
.y6a{bottom:919.445662px;}
.y35{bottom:919.448575px;}
.y156{bottom:919.449176px;}
.y114{bottom:919.460317px;}
.y18c{bottom:919.472697px;}
.yd0{bottom:922.337677px;}
.y209{bottom:923.953832px;}
.y1c2{bottom:923.954381px;}
.y6b{bottom:925.993469px;}
.y148{bottom:931.351513px;}
.y69{bottom:937.388299px;}
.y208{bottom:937.389470px;}
.y1c1{bottom:937.390111px;}
.y34{bottom:937.391212px;}
.y155{bottom:937.391813px;}
.y113{bottom:937.402954px;}
.y18b{bottom:937.415334px;}
.y3{bottom:940.026595px;}
.ycf{bottom:943.342163px;}
.y207{bottom:950.910710px;}
.y1c0{bottom:950.911351px;}
.y147{bottom:952.356050px;}
.y68{bottom:955.416196px;}
.y33{bottom:955.419109px;}
.y154{bottom:955.419709px;}
.y112{bottom:955.430850px;}
.y18a{bottom:955.443230px;}
.yce{bottom:964.346741px;}
.y206{bottom:964.431859px;}
.y1bf{bottom:964.432500px;}
.y146{bottom:973.360586px;}
.y67{bottom:973.444092px;}
.y32{bottom:973.447005px;}
.y153{bottom:973.447605px;}
.y111{bottom:973.458746px;}
.y189{bottom:973.471127px;}
.y205{bottom:977.953099px;}
.y1be{bottom:977.953740px;}
.y2{bottom:979.057998px;}
.ycd{bottom:985.351227px;}
.y66{bottom:991.386729px;}
.y204{bottom:991.388738px;}
.y1bd{bottom:991.389379px;}
.y31{bottom:991.389642px;}
.y152{bottom:991.390242px;}
.y110{bottom:991.401383px;}
.y188{bottom:991.413764px;}
.y145{bottom:993.089539px;}
.y203{bottom:1004.909978px;}
.y1bc{bottom:1004.910619px;}
.ycc{bottom:1006.355804px;}
.y65{bottom:1009.414625px;}
.y30{bottom:1009.417538px;}
.y151{bottom:1009.418139px;}
.y10f{bottom:1009.429279px;}
.y187{bottom:1009.441660px;}
.y144{bottom:1012.819934px;}
.y1bb{bottom:1018.431767px;}
.y202{bottom:1018.434606px;}
.ycb{bottom:1026.084778px;}
.y64{bottom:1027.442522px;}
.y2f{bottom:1027.445435px;}
.y150{bottom:1027.446035px;}
.y10e{bottom:1027.457176px;}
.y186{bottom:1027.469556px;}
.y143{bottom:1029.316934px;}
.y1ba{bottom:1031.953008px;}
.y201{bottom:1031.955754px;}
.y1{bottom:1036.034377px;}
.y63{bottom:1045.385159px;}
.y1b9{bottom:1045.388646px;}
.y2e{bottom:1045.388672px;}
.y200{bottom:1045.391484px;}
.y10d{bottom:1045.399813px;}
.y185{bottom:1045.412193px;}
.yca{bottom:1045.813934px;}
.y28{bottom:1096.260049px;}
.y27{bottom:1114.452585px;}
.ye7{bottom:1114.946686px;}
.y221{bottom:1114.950411px;}
.y2d{bottom:1114.950447px;}
.y9c{bottom:1114.950525px;}
.ye6{bottom:1129.914185px;}
.y220{bottom:1129.917910px;}
.y9b{bottom:1129.917938px;}
.y2c{bottom:1129.917946px;}
.h9{height:21.626539px;}
.h16{height:28.350001px;}
.hf{height:28.376746px;}
.hc{height:30.281567px;}
.h15{height:31.089601px;}
.h13{height:31.580232px;}
.h5{height:31.721259px;}
.h8{height:32.444567px;}
.h12{height:33.221525px;}
.hd{height:34.607567px;}
.h11{height:37.967525px;}
.h10{height:38.934000px;}
.h14{height:40.651940px;}
.he{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:44.557801px;}
.ha{height:44.653952px;}
.h4{height:47.586433px;}
.h2{height:56.238000px;}
.hb{height:69.461999px;}
.h3{height:103.824429px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039367px;}
.xf{left:89.036262px;}
.x1{left:91.077167px;}
.xe{left:94.818915px;}
.x12{left:97.030020px;}
.x1e{left:107.574692px;}
.x3{left:185.555869px;}
.x4{left:195.760657px;}
.x1c{left:204.349503px;}
.x1d{left:208.431450px;}
.x1a{left:236.579544px;}
.x1b{left:240.661354px;}
.x18{left:248.144860px;}
.x11{left:270.680258px;}
.x17{left:275.782654px;}
.x5{left:327.231460px;}
.x6{left:332.844008px;}
.x7{left:426.217223px;}
.x8{left:431.829909px;}
.x13{left:457.085204px;}
.x19{left:466.100693px;}
.x16{left:469.078935px;}
.x1f{left:479.625916px;}
.x21{left:483.219131px;}
.x20{left:484.282654px;}
.x9{left:508.450347px;}
.xa{left:514.147948px;}
.xb{left:609.221847px;}
.xc{left:619.596786px;}
.x10{left:649.606519px;}
.xd{left:751.067565px;}
.x14{left:764.248672px;}
.x15{left:769.776123px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls48{letter-spacing:-1.303979pt;}
.ls49{letter-spacing:-1.143985pt;}
.ls44{letter-spacing:-1.111985pt;}
.ls46{letter-spacing:-1.095985pt;}
.ls18{letter-spacing:-1.076682pt;}
.ls45{letter-spacing:-1.075986pt;}
.ls43{letter-spacing:-1.059986pt;}
.ls28{letter-spacing:-1.029643pt;}
.ls1b{letter-spacing:-1.019190pt;}
.ls47{letter-spacing:-1.015986pt;}
.ls39{letter-spacing:-1.003510pt;}
.ls1a{letter-spacing:-0.998283pt;}
.lsb{letter-spacing:-0.993057pt;}
.ls6{letter-spacing:-0.987830pt;}
.ls26{letter-spacing:-0.982603pt;}
.ls19{letter-spacing:-0.977377pt;}
.lsa{letter-spacing:-0.972150pt;}
.ls1c{letter-spacing:-0.972145pt;}
.ls25{letter-spacing:-0.966923pt;}
.ls2f{letter-spacing:-0.961697pt;}
.ls5{letter-spacing:-0.956470pt;}
.ls2c{letter-spacing:-0.951244pt;}
.ls9{letter-spacing:-0.946017pt;}
.lse{letter-spacing:-0.940790pt;}
.ls3a{letter-spacing:-0.930337pt;}
.ls2b{letter-spacing:-0.919884pt;}
.ls24{letter-spacing:-0.914657pt;}
.ls8{letter-spacing:-0.909431pt;}
.ls2e{letter-spacing:-0.904204pt;}
.ls2a{letter-spacing:-0.898977pt;}
.ls27{letter-spacing:-0.893751pt;}
.ls7{letter-spacing:-0.872844pt;}
.ls29{letter-spacing:-0.836258pt;}
.ls30{letter-spacing:-0.799672pt;}
.ls38{letter-spacing:-0.580154pt;}
.ls37{letter-spacing:-0.574927pt;}
.ls1{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.000130pt;}
.ls40{letter-spacing:0.004000pt;}
.ls2{letter-spacing:0.005227pt;}
.ls33{letter-spacing:0.010453pt;}
.ls21{letter-spacing:0.021332pt;}
.ls11{letter-spacing:0.021367pt;}
.ls34{letter-spacing:0.026132pt;}
.lsd{letter-spacing:0.026133pt;}
.ls32{letter-spacing:0.036585pt;}
.ls3f{letter-spacing:0.051979pt;}
.ls3e{letter-spacing:0.052022pt;}
.ls3d{letter-spacing:0.052065pt;}
.ls15{letter-spacing:0.119460pt;}
.ls23{letter-spacing:0.119465pt;}
.ls17{letter-spacing:0.119541pt;}
.ls20{letter-spacing:0.123732pt;}
.ls13{letter-spacing:0.136497pt;}
.ls22{letter-spacing:0.136532pt;}
.ls12{letter-spacing:0.136579pt;}
.ls1e{letter-spacing:0.146345pt;}
.ls0{letter-spacing:0.218681pt;}
.ls3{letter-spacing:0.324050pt;}
.ls14{letter-spacing:0.399461pt;}
.ls3c{letter-spacing:0.727990pt;}
.ls41{letter-spacing:11.680045pt;}
.ls3b{letter-spacing:12.003819pt;}
.ls36{letter-spacing:12.003840pt;}
.lsc{letter-spacing:13.108347pt;}
.ls2d{letter-spacing:13.824392pt;}
.lsf{letter-spacing:14.097575pt;}
.ls4{letter-spacing:15.747787pt;}
.ls35{letter-spacing:23.002324pt;}
.ls31{letter-spacing:27.288147pt;}
.ls1d{letter-spacing:29.781243pt;}
.ls16{letter-spacing:120.694004pt;}
.ls1f{letter-spacing:121.598474pt;}
.ls10{letter-spacing:820.657464pt;}
.wsc5{word-spacing:-29.833510pt;}
.ws135{word-spacing:-27.340413pt;}
.ws128{word-spacing:-13.876658pt;}
.ws40{word-spacing:-13.160613pt;}
.ws221{word-spacing:-9.340800pt;}
.wsec{word-spacing:-0.436794pt;}
.ws2c{word-spacing:-0.054933pt;}
.ws93{word-spacing:-0.052266pt;}
.ws2a{word-spacing:-0.042666pt;}
.ws20{word-spacing:-0.039999pt;}
.ws218{word-spacing:-0.038934pt;}
.ws2b{word-spacing:0.000000pt;}
.ws122{word-spacing:0.846711pt;}
.ws125{word-spacing:0.904204pt;}
.ws204{word-spacing:0.975987pt;}
.ws203{word-spacing:1.103985pt;}
.ws202{word-spacing:1.263979pt;}
.ws1f{word-spacing:10.563859pt;}
.ws24{word-spacing:10.908644pt;}
.wsed{word-spacing:11.050509pt;}
.ws25{word-spacing:11.080374pt;}
.wseb{word-spacing:11.132641pt;}
.ws26{word-spacing:11.162507pt;}
.ws200{word-spacing:11.351851pt;}
.wsff{word-spacing:11.453702pt;}
.ws21d{word-spacing:11.539998pt;}
.ws21f{word-spacing:11.578931pt;}
.ws201{word-spacing:11.579819pt;}
.ws219{word-spacing:11.582825pt;}
.ws1fd{word-spacing:11.587846pt;}
.ws1ff{word-spacing:11.667844pt;}
.ws1f7{word-spacing:11.671844pt;}
.ws21c{word-spacing:11.684053pt;}
.ws210{word-spacing:11.695844pt;}
.ws1ee{word-spacing:11.711843pt;}
.ws1f1{word-spacing:11.723844pt;}
.ws21b{word-spacing:11.742454pt;}
.ws1f8{word-spacing:11.747844pt;}
.ws1e7{word-spacing:11.759843pt;}
.ws22{word-spacing:11.763843pt;}
.ws20f{word-spacing:11.775843pt;}
.ws1fc{word-spacing:11.775870pt;}
.ws1dd{word-spacing:11.783843pt;}
.ws208{word-spacing:11.787843pt;}
.ws1cf{word-spacing:11.791842pt;}
.ws206{word-spacing:11.795842pt;}
.ws215{word-spacing:11.799842pt;}
.ws1ea{word-spacing:11.803843pt;}
.ws1c4{word-spacing:11.807843pt;}
.ws20d{word-spacing:11.812022pt;}
.ws1ec{word-spacing:11.815842pt;}
.ws1e9{word-spacing:11.819860pt;}
.ws1d3{word-spacing:11.823842pt;}
.ws1d0{word-spacing:11.831842pt;}
.ws205{word-spacing:11.839842pt;}
.ws220{word-spacing:11.839854pt;}
.ws1f2{word-spacing:11.847795pt;}
.ws1f5{word-spacing:11.847838pt;}
.ws1fb{word-spacing:11.847842pt;}
.ws1eb{word-spacing:11.847880pt;}
.ws1d5{word-spacing:11.851841pt;}
.ws23{word-spacing:11.859842pt;}
.ws1c8{word-spacing:11.867842pt;}
.ws1e8{word-spacing:11.871841pt;}
.ws216{word-spacing:11.875841pt;}
.ws214{word-spacing:11.879802pt;}
.ws1cd{word-spacing:11.879841pt;}
.ws1ce{word-spacing:11.883842pt;}
.ws213{word-spacing:11.887842pt;}
.ws1dc{word-spacing:11.891841pt;}
.ws1f3{word-spacing:11.895841pt;}
.ws209{word-spacing:11.899841pt;}
.ws20b{word-spacing:11.903841pt;}
.ws1ef{word-spacing:11.907841pt;}
.ws1d7{word-spacing:11.911840pt;}
.ws1fe{word-spacing:11.919841pt;}
.ws1d9{word-spacing:11.923841pt;}
.ws217{word-spacing:11.927841pt;}
.ws1cb{word-spacing:11.939841pt;}
.ws1de{word-spacing:11.943841pt;}
.ws1c6{word-spacing:11.963841pt;}
.ws1e4{word-spacing:11.971840pt;}
.ws20c{word-spacing:11.987840pt;}
.ws211{word-spacing:11.991830pt;}
.ws1e1{word-spacing:11.991839pt;}
.ws1cc{word-spacing:11.995840pt;}
.ws1e5{word-spacing:12.003840pt;}
.ws21e{word-spacing:12.007135pt;}
.ws1d2{word-spacing:12.011839pt;}
.ws1f0{word-spacing:12.015839pt;}
.ws1fa{word-spacing:12.027839pt;}
.ws1ed{word-spacing:12.027881pt;}
.ws21a{word-spacing:12.030520pt;}
.ws1e0{word-spacing:12.035839pt;}
.ws212{word-spacing:12.035983pt;}
.ws1d6{word-spacing:12.039839pt;}
.ws1c7{word-spacing:12.047840pt;}
.ws1f6{word-spacing:12.051839pt;}
.ws1f4{word-spacing:12.051856pt;}
.ws21{word-spacing:12.067839pt;}
.ws1e2{word-spacing:12.071838pt;}
.ws20e{word-spacing:12.079839pt;}
.ws1e3{word-spacing:12.083839pt;}
.ws207{word-spacing:12.091838pt;}
.ws1d4{word-spacing:12.107839pt;}
.ws1da{word-spacing:12.131838pt;}
.ws1d8{word-spacing:12.147838pt;}
.ws1f9{word-spacing:12.163807pt;}
.ws1db{word-spacing:12.175837pt;}
.ws20a{word-spacing:12.199741pt;}
.ws1c9{word-spacing:12.203837pt;}
.ws102{word-spacing:12.223847pt;}
.ws103{word-spacing:12.270780pt;}
.ws101{word-spacing:12.275047pt;}
.ws1df{word-spacing:12.279836pt;}
.ws1d1{word-spacing:12.295836pt;}
.ws1c5{word-spacing:12.299836pt;}
.ws1ca{word-spacing:12.339835pt;}
.ws106{word-spacing:12.377429pt;}
.ws97{word-spacing:12.377441pt;}
.ws27{word-spacing:12.377470pt;}
.ws163{word-spacing:12.398778pt;}
.ws100{word-spacing:12.428644pt;}
.ws28{word-spacing:12.441445pt;}
.wse9{word-spacing:12.522510pt;}
.ws105{word-spacing:12.543843pt;}
.ws104{word-spacing:12.590776pt;}
.wscb{word-spacing:12.663181pt;}
.wsca{word-spacing:12.663297pt;}
.wsf0{word-spacing:12.663302pt;}
.ws162{word-spacing:12.663309pt;}
.ws99{word-spacing:12.667575pt;}
.wse5{word-spacing:12.684641pt;}
.wsf1{word-spacing:12.697441pt;}
.ws98{word-spacing:12.757171pt;}
.ws107{word-spacing:12.757173pt;}
.ws29{word-spacing:12.757254pt;}
.ws118{word-spacing:13.207652pt;}
.wsb4{word-spacing:13.218105pt;}
.wsbe{word-spacing:13.463756pt;}
.wsc2{word-spacing:13.489889pt;}
.ws8c{word-spacing:13.573516pt;}
.ws12b{word-spacing:13.610101pt;}
.wsba{word-spacing:13.651915pt;}
.wsef{word-spacing:14.083200pt;}
.ws87{word-spacing:14.143216pt;}
.wsc8{word-spacing:14.236800pt;}
.wsee{word-spacing:14.260800pt;}
.ws161{word-spacing:14.385601pt;}
.wsc9{word-spacing:14.500800pt;}
.ws131{word-spacing:14.608385pt;}
.wsa3{word-spacing:14.639745pt;}
.ws12d{word-spacing:14.665877pt;}
.ws88{word-spacing:14.681557pt;}
.wsa2{word-spacing:14.733823pt;}
.ws1e6{word-spacing:14.787802pt;}
.ws1a7{word-spacing:14.822675pt;}
.ws121{word-spacing:14.843582pt;}
.ws1a2{word-spacing:15.016061pt;}
.ws1a1{word-spacing:15.073553pt;}
.ws184{word-spacing:15.094459pt;}
.ws12c{word-spacing:15.172859pt;}
.ws1a0{word-spacing:15.225124pt;}
.ws154{word-spacing:15.303523pt;}
.ws177{word-spacing:15.376697pt;}
.ws183{word-spacing:15.397603pt;}
.ws4b{word-spacing:15.423722pt;}
.ws198{word-spacing:15.423736pt;}
.ws79{word-spacing:15.434189pt;}
.wsaa{word-spacing:15.502136pt;}
.ws182{word-spacing:15.611895pt;}
.ws11c{word-spacing:15.617121pt;}
.ws1c3{word-spacing:15.622347pt;}
.ws179{word-spacing:15.643253pt;}
.ws10d{word-spacing:15.674613pt;}
.ws1b7{word-spacing:15.679840pt;}
.ws9e{word-spacing:15.732106pt;}
.wse{word-spacing:15.749490pt;}
.ws32{word-spacing:15.763467pt;}
.wsa{word-spacing:15.770825pt;}
.ws13c{word-spacing:15.773918pt;}
.ws12a{word-spacing:15.773920pt;}
.ws55{word-spacing:15.779146pt;}
.ws149{word-spacing:15.805278pt;}
.ws19{word-spacing:15.808158pt;}
.ws16{word-spacing:15.813492pt;}
.ws143{word-spacing:15.820959pt;}
.ws17{word-spacing:15.824159pt;}
.ws5f{word-spacing:15.831412pt;}
.ws12{word-spacing:15.840159pt;}
.wsd{word-spacing:15.845492pt;}
.ws4c{word-spacing:15.862772pt;}
.ws1b{word-spacing:15.909492pt;}
.ws73{word-spacing:15.920265pt;}
.ws14{word-spacing:15.946826pt;}
.ws1e{word-spacing:15.952160pt;}
.ws11{word-spacing:15.973493pt;}
.ws1ac{word-spacing:15.988210pt;}
.ws9{word-spacing:15.989493pt;}
.ws15{word-spacing:15.994826pt;}
.ws1bc{word-spacing:15.998664pt;}
.ws6f{word-spacing:16.024797pt;}
.ws13{word-spacing:16.064161pt;}
.ws7{word-spacing:16.080161pt;}
.ws8{word-spacing:16.106828pt;}
.wsb{word-spacing:16.117495pt;}
.ws1a{word-spacing:16.149494pt;}
.ws1c2{word-spacing:16.160689pt;}
.wsc{word-spacing:16.165496pt;}
.ws7b{word-spacing:16.165914pt;}
.ws18{word-spacing:16.181504pt;}
.wsf{word-spacing:16.192162pt;}
.ws10{word-spacing:16.245496pt;}
.wsb6{word-spacing:16.286128pt;}
.ws17c{word-spacing:16.291354pt;}
.ws1c{word-spacing:16.293496pt;}
.ws14a{word-spacing:16.301807pt;}
.ws34{word-spacing:16.333167pt;}
.ws1d{word-spacing:16.384193pt;}
.ws89{word-spacing:16.411566pt;}
.ws17b{word-spacing:16.495192pt;}
.ws6{word-spacing:16.517493pt;}
.ws57{word-spacing:16.714709pt;}
.ws2f{word-spacing:16.772202pt;}
.ws15f{word-spacing:16.798335pt;}
.ws60{word-spacing:16.798613pt;}
.wsaf{word-spacing:16.814016pt;}
.ws3a{word-spacing:16.834922pt;}
.ws94{word-spacing:16.866282pt;}
.wsae{word-spacing:16.871507pt;}
.ws39{word-spacing:16.897641pt;}
.ws61{word-spacing:16.976040pt;}
.ws15d{word-spacing:17.017853pt;}
.wsbf{word-spacing:17.049213pt;}
.wsb2{word-spacing:17.153746pt;}
.ws86{word-spacing:17.279184pt;}
.ws7d{word-spacing:17.315769pt;}
.ws15c{word-spacing:17.373262pt;}
.ws1a4{word-spacing:17.399396pt;}
.wsa4{word-spacing:17.420302pt;}
.ws1b2{word-spacing:17.435982pt;}
.ws5{word-spacing:17.453492pt;}
.ws18a{word-spacing:17.472568pt;}
.ws1be{word-spacing:17.550967pt;}
.ws4{word-spacing:17.576694pt;}
.ws1a3{word-spacing:17.598007pt;}
.ws66{word-spacing:17.618914pt;}
.ws9f{word-spacing:17.629366pt;}
.ws113{word-spacing:17.723446pt;}
.ws1b6{word-spacing:17.754806pt;}
.ws3{word-spacing:17.758562pt;}
.ws124{word-spacing:17.796618pt;}
.ws173{word-spacing:17.817525pt;}
.ws178{word-spacing:17.827978pt;}
.wsb1{word-spacing:17.838431pt;}
.ws112{word-spacing:17.848885pt;}
.ws130{word-spacing:17.869791pt;}
.ws45{word-spacing:17.922057pt;}
.ws116{word-spacing:17.979550pt;}
.ws62{word-spacing:18.073628pt;}
.ws3b{word-spacing:18.115442pt;}
.ws17d{word-spacing:18.141575pt;}
.ws14f{word-spacing:18.225201pt;}
.ws19f{word-spacing:18.246108pt;}
.wsa1{word-spacing:18.282689pt;}
.ws71{word-spacing:18.308826pt;}
.ws3c{word-spacing:18.314053pt;}
.ws13b{word-spacing:18.329734pt;}
.ws41{word-spacing:18.392452pt;}
.ws58{word-spacing:18.408133pt;}
.ws52{word-spacing:18.429039pt;}
.ws170{word-spacing:18.444718pt;}
.wsa9{word-spacing:18.455172pt;}
.ws158{word-spacing:18.476078pt;}
.ws187{word-spacing:18.549250pt;}
.ws91{word-spacing:18.648556pt;}
.ws155{word-spacing:18.721730pt;}
.ws65{word-spacing:18.789675pt;}
.wsa5{word-spacing:18.852395pt;}
.ws1a6{word-spacing:18.873301pt;}
.ws1a5{word-spacing:18.878527pt;}
.ws2e{word-spacing:18.883753pt;}
.ws188{word-spacing:18.915113pt;}
.ws10b{word-spacing:18.930794pt;}
.ws8e{word-spacing:18.941246pt;}
.wsb3{word-spacing:19.003966pt;}
.ws13f{word-spacing:19.024873pt;}
.ws120{word-spacing:19.160764pt;}
.ws1b0{word-spacing:19.165992pt;}
.ws64{word-spacing:19.186898pt;}
.ws51{word-spacing:19.218258pt;}
.wsbd{word-spacing:19.280976pt;}
.ws18f{word-spacing:19.328016pt;}
.ws180{word-spacing:19.364602pt;}
.ws18d{word-spacing:19.432548pt;}
.ws115{word-spacing:19.458681pt;}
.ws151{word-spacing:19.469135pt;}
.ws199{word-spacing:19.552761pt;}
.ws1b4{word-spacing:19.667745pt;}
.ws1b3{word-spacing:19.735692pt;}
.ws3d{word-spacing:19.814091pt;}
.ws17a{word-spacing:19.824544pt;}
.ws156{word-spacing:19.876810pt;}
.ws153{word-spacing:19.918624pt;}
.ws1a8{word-spacing:19.929076pt;}
.ws36{word-spacing:19.960436pt;}
.ws152{word-spacing:20.054516pt;}
.ws19c{word-spacing:20.096328pt;}
.ws37{word-spacing:20.132915pt;}
.ws150{word-spacing:20.138141pt;}
.ws5c{word-spacing:20.148595pt;}
.wsad{word-spacing:20.258354pt;}
.ws6e{word-spacing:20.373338pt;}
.ws8d{word-spacing:20.446512pt;}
.ws1ba{word-spacing:20.456964pt;}
.ws13d{word-spacing:20.645123pt;}
.ws6c{word-spacing:20.702616pt;}
.ws9c{word-spacing:20.822828pt;}
.ws13e{word-spacing:20.906453pt;}
.ws9d{word-spacing:20.911680pt;}
.ws181{word-spacing:20.937813pt;}
.ws4e{word-spacing:20.948266pt;}
.ws14d{word-spacing:20.984853pt;}
.ws148{word-spacing:21.005759pt;}
.ws0{word-spacing:21.021868pt;}
.ws1b5{word-spacing:21.031892pt;}
.ws110{word-spacing:21.058025pt;}
.ws80{word-spacing:21.125972pt;}
.wsb0{word-spacing:21.167784pt;}
.wsa8{word-spacing:21.246183pt;}
.ws108{word-spacing:21.282770pt;}
.ws63{word-spacing:21.303676pt;}
.ws11e{word-spacing:21.517968pt;}
.ws15b{word-spacing:21.538874pt;}
.ws70{word-spacing:21.549326pt;}
.ws31{word-spacing:21.570234pt;}
.ws132{word-spacing:21.591140pt;}
.ws159{word-spacing:21.638179pt;}
.ws18e{word-spacing:21.815884pt;}
.wsbb{word-spacing:21.941322pt;}
.ws176{word-spacing:21.957003pt;}
.ws1a9{word-spacing:22.014496pt;}
.ws44{word-spacing:22.051081pt;}
.ws59{word-spacing:22.113801pt;}
.ws81{word-spacing:22.239240pt;}
.ws5a{word-spacing:22.296733pt;}
.ws15a{word-spacing:22.453531pt;}
.ws114{word-spacing:22.563291pt;}
.ws1ab{word-spacing:22.605103pt;}
.ws7e{word-spacing:22.652142pt;}
.ws111{word-spacing:22.688729pt;}
.ws136{word-spacing:22.720089pt;}
.ws1aa{word-spacing:22.782808pt;}
.ws141{word-spacing:22.845527pt;}
.ws3e{word-spacing:22.929153pt;}
.ws49{word-spacing:22.944833pt;}
.ws14b{word-spacing:23.174803pt;}
.wsc3{word-spacing:23.200936pt;}
.ws33{word-spacing:23.258429pt;}
.wsbc{word-spacing:23.274109pt;}
.ws1bb{word-spacing:23.289789pt;}
.ws6a{word-spacing:23.451815pt;}
.ws175{word-spacing:23.472721pt;}
.ws3f{word-spacing:23.498854pt;}
.ws50{word-spacing:23.660879pt;}
.wsc7{word-spacing:23.666105pt;}
.ws6b{word-spacing:23.728825pt;}
.ws8b{word-spacing:23.744504pt;}
.ws197{word-spacing:23.765412pt;}
.ws4f{word-spacing:23.849036pt;}
.wsb7{word-spacing:23.927435pt;}
.ws69{word-spacing:24.026742pt;}
.wsa7{word-spacing:24.052875pt;}
.wsab{word-spacing:24.120821pt;}
.ws42{word-spacing:24.183541pt;}
.ws5e{word-spacing:24.272392pt;}
.wsc4{word-spacing:24.335112pt;}
.ws15e{word-spacing:24.356018pt;}
.ws171{word-spacing:24.418738pt;}
.ws1ad{word-spacing:24.575537pt;}
.ws14c{word-spacing:24.591216pt;}
.ws38{word-spacing:24.622576pt;}
.ws7f{word-spacing:24.659161pt;}
.ws7a{word-spacing:24.758468pt;}
.ws78{word-spacing:24.768920pt;}
.ws96{word-spacing:24.789828pt;}
.ws67{word-spacing:24.868226pt;}
.ws4d{word-spacing:24.988439pt;}
.ws56{word-spacing:25.072065pt;}
.ws74{word-spacing:25.145237pt;}
.ws43{word-spacing:25.192276pt;}
.ws53{word-spacing:25.239316pt;}
.ws11a{word-spacing:25.265449pt;}
.ws48{word-spacing:25.291582pt;}
.ws30{word-spacing:25.296809pt;}
.ws17e{word-spacing:25.369981pt;}
.ws11b{word-spacing:25.464060pt;}
.ws18c{word-spacing:25.479740pt;}
.ws144{word-spacing:25.542460pt;}
.ws172{word-spacing:25.746298pt;}
.ws82{word-spacing:26.033761pt;}
.wsa6{word-spacing:26.086028pt;}
.ws19d{word-spacing:26.106934pt;}
.ws77{word-spacing:26.274186pt;}
.ws1bd{word-spacing:26.315998pt;}
.ws19e{word-spacing:26.336904pt;}
.ws84{word-spacing:26.383944pt;}
.ws10c{word-spacing:26.389171pt;}
.ws18b{word-spacing:26.582556pt;}
.ws10f{word-spacing:26.593008pt;}
.ws35{word-spacing:26.645274pt;}
.ws190{word-spacing:26.650501pt;}
.ws1af{word-spacing:26.828206pt;}
.ws160{word-spacing:26.885700pt;}
.ws8a{word-spacing:27.105216pt;}
.ws12f{word-spacing:27.105218pt;}
.ws193{word-spacing:27.131349pt;}
.ws142{word-spacing:27.298601pt;}
.ws134{word-spacing:27.382229pt;}
.ws1c0{word-spacing:27.403133pt;}
.wsc6{word-spacing:27.559932pt;}
.ws195{word-spacing:27.654010pt;}
.wsa0{word-spacing:27.680145pt;}
.ws119{word-spacing:27.701051pt;}
.ws83{word-spacing:27.962381pt;}
.ws7c{word-spacing:27.983289pt;}
.ws8f{word-spacing:28.009422pt;}
.wsc1{word-spacing:28.171446pt;}
.wsb5{word-spacing:28.275978pt;}
.ws10e{word-spacing:28.396190pt;}
.ws1bf{word-spacing:28.432777pt;}
.ws1c1{word-spacing:28.474589pt;}
.ws196{word-spacing:28.526855pt;}
.ws174{word-spacing:28.767281pt;}
.ws76{word-spacing:28.877039pt;}
.ws12e{word-spacing:29.075651pt;}
.ws72{word-spacing:29.080878pt;}
.ws133{word-spacing:29.127916pt;}
.ws185{word-spacing:29.363157pt;}
.ws186{word-spacing:29.368342pt;}
.wsc0{word-spacing:29.499007pt;}
.ws147{word-spacing:29.546045pt;}
.ws85{word-spacing:29.577406pt;}
.ws117{word-spacing:29.802150pt;}
.ws13a{word-spacing:29.812604pt;}
.ws90{word-spacing:29.969402pt;}
.ws14e{word-spacing:30.032119pt;}
.ws145{word-spacing:30.105293pt;}
.ws5d{word-spacing:30.424115pt;}
.ws129{word-spacing:30.701126pt;}
.ws1b1{word-spacing:31.072216pt;}
.ws189{word-spacing:31.422400pt;}
.ws9a{word-spacing:31.427627pt;}
.ws95{word-spacing:31.443306pt;}
.ws9b{word-spacing:31.605330pt;}
.ws138{word-spacing:31.626236pt;}
.ws47{word-spacing:31.730768pt;}
.ws11d{word-spacing:31.830077pt;}
.ws194{word-spacing:31.918928pt;}
.ws2d{word-spacing:32.540894pt;}
.ws1ae{word-spacing:32.567027pt;}
.ws4a{word-spacing:32.666333pt;}
.ws19b{word-spacing:33.021743pt;}
.ws19a{word-spacing:33.042650pt;}
.ws11f{word-spacing:33.361473pt;}
.wsb9{word-spacing:33.607124pt;}
.ws139{word-spacing:33.842322pt;}
.ws123{word-spacing:33.894589pt;}
.ws75{word-spacing:34.276130pt;}
.ws10a{word-spacing:34.479969pt;}
.ws191{word-spacing:34.521781pt;}
.ws17f{word-spacing:34.553140pt;}
.ws54{word-spacing:34.725620pt;}
.ws109{word-spacing:35.112388pt;}
.ws5b{word-spacing:35.305773pt;}
.ws157{word-spacing:35.697769pt;}
.ws127{word-spacing:35.781396pt;}
.ws126{word-spacing:36.094991pt;}
.ws92{word-spacing:36.366775pt;}
.wsb8{word-spacing:36.701280pt;}
.wsac{word-spacing:37.506176pt;}
.ws192{word-spacing:37.877268pt;}
.ws1{word-spacing:38.182556pt;}
.ws2{word-spacing:38.361760pt;}
.ws140{word-spacing:38.676939pt;}
.ws68{word-spacing:38.713526pt;}
.ws1b9{word-spacing:39.225733pt;}
.ws46{word-spacing:39.628183pt;}
.ws137{word-spacing:40.213563pt;}
.ws1b8{word-spacing:40.704864pt;}
.ws146{word-spacing:43.490648pt;}
.ws16f{word-spacing:44.078381pt;}
.ws6d{word-spacing:46.428006pt;}
.ws16c{word-spacing:51.293242pt;}
.wsfa{word-spacing:51.899061pt;}
.ws16e{word-spacing:61.895756pt;}
.wsfe{word-spacing:66.823695pt;}
.ws169{word-spacing:71.939365pt;}
.wsf7{word-spacing:74.358538pt;}
.ws165{word-spacing:80.877920pt;}
.wsfb{word-spacing:84.636805pt;}
.wsfd{word-spacing:87.593570pt;}
.ws167{word-spacing:91.224462pt;}
.wsf3{word-spacing:91.851652pt;}
.ws16b{word-spacing:103.785368pt;}
.wsf5{word-spacing:104.527754pt;}
.wsf9{word-spacing:105.120820pt;}
.ws16a{word-spacing:226.053702pt;}
.wsf8{word-spacing:226.962487pt;}
.wse0{word-spacing:228.477186pt;}
.wsdd{word-spacing:229.100006pt;}
.wse6{word-spacing:231.024316pt;}
.wse1{word-spacing:236.139982pt;}
.wsd7{word-spacing:238.584743pt;}
.wsd0{word-spacing:248.534493pt;}
.wsde{word-spacing:251.452904pt;}
.wsdc{word-spacing:251.461394pt;}
.wsea{word-spacing:252.067241pt;}
.wsda{word-spacing:256.999450pt;}
.wsd5{word-spacing:258.514097pt;}
.wse7{word-spacing:259.725830pt;}
.wse4{word-spacing:261.743932pt;}
.wscd{word-spacing:269.428086pt;}
.wse8{word-spacing:272.090421pt;}
.wsdf{word-spacing:276.736807pt;}
.wsd2{word-spacing:281.882346pt;}
.wsd8{word-spacing:299.618719pt;}
.wsd9{word-spacing:301.666696pt;}
.wse2{word-spacing:327.432847pt;}
.wse3{word-spacing:342.182399pt;}
.wscf{word-spacing:346.009605pt;}
.wsd4{word-spacing:357.354383pt;}
.wsce{word-spacing:360.998106pt;}
.wsd3{word-spacing:364.253651pt;}
.ws168{word-spacing:370.316448pt;}
.wsf6{word-spacing:370.922308pt;}
.ws166{word-spacing:378.367541pt;}
.wsf4{word-spacing:378.969124pt;}
.ws16d{word-spacing:385.454386pt;}
.wsfc{word-spacing:386.055946pt;}
.ws164{word-spacing:425.005899pt;}
.wsf2{word-spacing:425.914664pt;}
.wsd6{word-spacing:549.919541pt;}
.wsdb{word-spacing:572.613665pt;}
.wsd1{word-spacing:582.763944pt;}
.wscc{word-spacing:601.285290pt;}
._1f{margin-left:-30.465931pt;}
._20{margin-left:-29.227216pt;}
._34{margin-left:-27.622759pt;}
._33{margin-left:-26.608580pt;}
._32{margin-left:-15.303523pt;}
._10{margin-left:-14.096177pt;}
._11{margin-left:-13.097885pt;}
._43{margin-left:-5.853549pt;}
._1b{margin-left:-4.656690pt;}
._f{margin-left:-3.721328pt;}
._44{margin-left:-2.665573pt;}
._8{margin-left:-1.481856pt;}
._6{width:1.040010pt;}
._19{width:2.006847pt;}
._0{width:7.869333pt;}
._2{width:8.840000pt;}
._7{width:12.551827pt;}
._9{width:13.520897pt;}
._21{width:15.465616pt;}
._5{width:17.173505pt;}
._1e{width:18.125984pt;}
._14{width:19.176531pt;}
._b{width:20.493553pt;}
._17{width:21.821110pt;}
._c{width:22.824618pt;}
._d{width:24.261939pt;}
._12{width:25.171538pt;}
._13{width:26.185507pt;}
._e{width:27.768997pt;}
._1{width:29.182399pt;}
._1a{width:30.298678pt;}
._16{width:31.772584pt;}
._36{width:32.666424pt;}
._a{width:33.758959pt;}
._31{width:34.678220pt;}
._15{width:35.797234pt;}
._1d{width:38.567445pt;}
._4{width:39.884966pt;}
._35{width:41.441817pt;}
._26{width:44.867704pt;}
._37{width:46.075158pt;}
._18{width:47.426462pt;}
._41{width:52.931600pt;}
._45{width:58.543217pt;}
._42{width:63.077611pt;}
._3e{width:68.381007pt;}
._3f{width:78.953678pt;}
._38{width:82.098171pt;}
._3b{width:83.646949pt;}
._2f{width:90.375414pt;}
._30{width:91.506052pt;}
._3c{width:94.095885pt;}
._29{width:100.709111pt;}
._3d{width:104.891768pt;}
._2b{width:107.575465pt;}
._2a{width:112.246064pt;}
._39{width:114.609762pt;}
._2c{width:120.472145pt;}
._3a{width:124.388839pt;}
._2d{width:132.380207pt;}
._27{width:141.246266pt;}
._28{width:152.817285pt;}
._40{width:165.881661pt;}
._2e{width:166.790506pt;}
._23{width:290.884900pt;}
._22{width:295.117368pt;}
._24{width:353.045165pt;}
._25{width:376.328102pt;}
._1c{width:1371.349152pt;}
._3{width:1640.606906pt;}
.fs7{font-size:26.662399pt;}
.fs12{font-size:33.600001pt;}
.fsd{font-size:34.839467pt;}
.fs11{font-size:36.266668pt;}
.fsa{font-size:37.332799pt;}
.fsf{font-size:38.933866pt;}
.fs3{font-size:39.107732pt;}
.fs6{font-size:39.999466pt;}
.fsb{font-size:42.666133pt;}
.fs10{font-size:47.421336pt;}
.fse{font-size:48.000000pt;}
.fsc{font-size:52.266134pt;}
.fs8{font-size:52.923203pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933334pt;}
.fs2{font-size:58.667201pt;}
.fs0{font-size:69.333333pt;}
.fs9{font-size:82.325333pt;}
.fs1{font-size:128.000529pt;}
.y0{bottom:0.000000pt;}
.y21f{bottom:74.815002pt;}
.ye1{bottom:81.259120pt;}
.y62{bottom:81.260268pt;}
.y1b8{bottom:81.261904pt;}
.y1ff{bottom:81.263191pt;}
.y10c{bottom:81.273294pt;}
.y9a{bottom:81.280973pt;}
.y184{bottom:81.284299pt;}
.y142{bottom:81.294202pt;}
.y2b{bottom:81.334978pt;}
.y21e{bottom:84.148239pt;}
.ye5{bottom:89.575307pt;}
.y2a{bottom:91.993486pt;}
.ye0{bottom:92.598022pt;}
.y1b7{bottom:93.280744pt;}
.y1fe{bottom:93.282031pt;}
.y61{bottom:97.285065pt;}
.y10b{bottom:97.298091pt;}
.y99{bottom:97.305770pt;}
.y183{bottom:97.309095pt;}
.y141{bottom:97.318998pt;}
.y29{bottom:102.652005pt;}
.ye4{bottom:102.954336pt;}
.ydf{bottom:103.936930pt;}
.y1b6{bottom:105.299583pt;}
.y1fd{bottom:105.300870pt;}
.y21d{bottom:113.066780pt;}
.y60{bottom:113.234670pt;}
.y10a{bottom:113.247101pt;}
.y98{bottom:113.330567pt;}
.y182{bottom:113.333892pt;}
.y140{bottom:113.343795pt;}
.ye3{bottom:116.258708pt;}
.y1b5{bottom:117.242425pt;}
.y1fc{bottom:117.243711pt;}
.yde{bottom:121.475077pt;}
.y26{bottom:125.253665pt;}
.y1b4{bottom:129.261264pt;}
.y1fb{bottom:129.262550pt;}
.y109{bottom:129.271898pt;}
.y97{bottom:129.279577pt;}
.y181{bottom:129.282903pt;}
.y13f{bottom:129.292806pt;}
.y21c{bottom:129.613309pt;}
.ye2{bottom:129.637736pt;}
.y25{bottom:137.272504pt;}
.ydd{bottom:140.145782pt;}
.y1b3{bottom:141.280104pt;}
.y1fa{bottom:141.281390pt;}
.y108{bottom:145.296695pt;}
.y96{bottom:145.304374pt;}
.y5f{bottom:145.307166pt;}
.y180{bottom:145.307699pt;}
.y13e{bottom:145.317602pt;}
.y21b{bottom:146.159574pt;}
.y24{bottom:149.291344pt;}
.y1b2{bottom:153.298943pt;}
.y1f9{bottom:153.300229pt;}
.y23{bottom:153.751213pt;}
.ydc{bottom:158.816477pt;}
.y107{bottom:161.245705pt;}
.y22{bottom:161.310275pt;}
.y95{bottom:161.329171pt;}
.y5e{bottom:161.331963pt;}
.y17f{bottom:161.332496pt;}
.y13d{bottom:161.342399pt;}
.y21a{bottom:162.706113pt;}
.y1b1{bottom:165.242783pt;}
.y1f8{bottom:165.244067pt;}
.y1b0{bottom:177.261623pt;}
.y1f7{bottom:177.262917pt;}
.y106{bottom:177.270502pt;}
.y94{bottom:177.278181pt;}
.y5d{bottom:177.280973pt;}
.y17e{bottom:177.281507pt;}
.y13c{bottom:177.291410pt;}
.ydb{bottom:177.487183pt;}
.y219{bottom:179.252642pt;}
.y1af{bottom:189.280462pt;}
.y1f6{bottom:189.281756pt;}
.y105{bottom:193.295299pt;}
.y93{bottom:193.302978pt;}
.y5c{bottom:193.305770pt;}
.y17d{bottom:193.306304pt;}
.y13b{bottom:193.316206pt;}
.y218{bottom:195.799314pt;}
.yda{bottom:196.157878pt;}
.y1f5{bottom:201.300596pt;}
.y104{bottom:209.244309pt;}
.y92{bottom:209.327775pt;}
.y5b{bottom:209.330567pt;}
.y17c{bottom:209.331100pt;}
.y13a{bottom:209.341003pt;}
.y1f4{bottom:213.243426pt;}
.yd9{bottom:214.828593pt;}
.y1ae{bottom:220.499046pt;}
.y217{bottom:223.701169pt;}
.y1f3{bottom:225.262266pt;}
.y103{bottom:225.269106pt;}
.y91{bottom:225.276785pt;}
.y5a{bottom:225.279577pt;}
.y17b{bottom:225.280111pt;}
.y139{bottom:225.290014pt;}
.y1ad{bottom:232.441887pt;}
.yd8{bottom:233.499288pt;}
.y1f2{bottom:237.281105pt;}
.y216{bottom:237.927569pt;}
.y102{bottom:241.293903pt;}
.y90{bottom:241.301582pt;}
.y59{bottom:241.304374pt;}
.y17a{bottom:241.304908pt;}
.y138{bottom:241.314811pt;}
.y1f1{bottom:249.299945pt;}
.yd7{bottom:251.036133pt;}
.y101{bottom:257.242913pt;}
.y8f{bottom:257.326379pt;}
.y58{bottom:257.329171pt;}
.y179{bottom:257.329704pt;}
.y137{bottom:257.339607pt;}
.y1f0{bottom:261.242795pt;}
.y1ac{bottom:263.660471pt;}
.yd6{bottom:268.498128pt;}
.y1ef{bottom:273.261635pt;}
.y100{bottom:273.267710pt;}
.y8e{bottom:273.275389pt;}
.y57{bottom:273.278181pt;}
.y178{bottom:273.278715pt;}
.y136{bottom:273.288618pt;}
.y1ab{bottom:275.679311pt;}
.y21{bottom:278.924004pt;}
.yd5{bottom:283.237732pt;}
.y1ee{bottom:285.280474pt;}
.y1aa{bottom:287.698150pt;}
.yff{bottom:289.292507pt;}
.y8d{bottom:289.300186pt;}
.y56{bottom:289.302978pt;}
.y177{bottom:289.303512pt;}
.y135{bottom:289.313415pt;}
.y1ed{bottom:297.299314pt;}
.y1a9{bottom:299.640991pt;}
.y20{bottom:301.601555pt;}
.yfe{bottom:305.241517pt;}
.y8c{bottom:305.249197pt;}
.y55{bottom:305.251989pt;}
.y176{bottom:305.252522pt;}
.y134{bottom:305.262425pt;}
.y1ec{bottom:309.242144pt;}
.y1a8{bottom:311.659831pt;}
.y1f{bottom:317.627047pt;}
.y1eb{bottom:321.260984pt;}
.yfd{bottom:321.266314pt;}
.y8b{bottom:321.273993pt;}
.y54{bottom:321.276785pt;}
.y175{bottom:321.277319pt;}
.y133{bottom:321.287222pt;}
.yb6{bottom:322.027364pt;}
.y1a7{bottom:323.678670pt;}
.y1ea{bottom:333.279823pt;}
.y1e{bottom:333.576551pt;}
.yfc{bottom:337.291111pt;}
.y8a{bottom:337.298790pt;}
.y53{bottom:337.301582pt;}
.y174{bottom:337.302116pt;}
.y132{bottom:337.312019pt;}
.yb5{bottom:338.052165pt;}
.y1e9{bottom:345.298683pt;}
.y1d{bottom:349.602023pt;}
.yfb{bottom:353.240122pt;}
.y89{bottom:353.247801pt;}
.y52{bottom:353.250593pt;}
.y173{bottom:353.251126pt;}
.y131{bottom:353.261029pt;}
.yb4{bottom:354.001180pt;}
.y1a6{bottom:354.898979pt;}
.y1e8{bottom:357.241514pt;}
.y1c{bottom:365.627536pt;}
.y1e7{bottom:369.260353pt;}
.yfa{bottom:369.264918pt;}
.y88{bottom:369.272598pt;}
.y51{bottom:369.275389pt;}
.y172{bottom:369.275923pt;}
.y130{bottom:369.285826pt;}
.yb3{bottom:370.025960pt;}
.y1a5{bottom:370.847990pt;}
.y1e6{bottom:381.279193pt;}
.yf9{bottom:385.289715pt;}
.y87{bottom:385.297394pt;}
.y50{bottom:385.300186pt;}
.y171{bottom:385.300720pt;}
.y12f{bottom:385.310623pt;}
.y1b{bottom:385.583753pt;}
.yb2{bottom:386.050741pt;}
.y1a4{bottom:386.872786pt;}
.y1e5{bottom:393.298032pt;}
.yf8{bottom:401.238726pt;}
.y86{bottom:401.246405pt;}
.y4f{bottom:401.249197pt;}
.y170{bottom:401.249730pt;}
.y12e{bottom:401.259633pt;}
.y1a{bottom:401.609225pt;}
.yb1{bottom:401.999756pt;}
.y1a3{bottom:402.897583pt;}
.y1e4{bottom:405.240863pt;}
.y1e3{bottom:417.259702pt;}
.yf7{bottom:417.263522pt;}
.y85{bottom:417.271202pt;}
.y4e{bottom:417.273993pt;}
.y16f{bottom:417.274527pt;}
.y12d{bottom:417.284430pt;}
.y19{bottom:417.634738pt;}
.yb0{bottom:418.024577pt;}
.y1a2{bottom:418.847209pt;}
.y1e2{bottom:429.279477pt;}
.yf6{bottom:433.288319pt;}
.y84{bottom:433.295998pt;}
.y4d{bottom:433.298790pt;}
.y16e{bottom:433.299324pt;}
.y12c{bottom:433.309227pt;}
.y18{bottom:433.584201pt;}
.yaf{bottom:433.973592pt;}
.yc9{bottom:433.984009pt;}
.yf5{bottom:449.237330pt;}
.y83{bottom:449.245009pt;}
.y4c{bottom:449.247801pt;}
.y16d{bottom:449.248334pt;}
.y12b{bottom:449.258237pt;}
.y17{bottom:449.609713pt;}
.yae{bottom:449.998372pt;}
.yc8{bottom:450.008830pt;}
.y1a1{bottom:458.086476pt;}
.y1e1{bottom:463.295021pt;}
.yf4{bottom:465.262126pt;}
.y82{bottom:465.269806pt;}
.y4b{bottom:465.272598pt;}
.y16c{bottom:465.273131pt;}
.y12a{bottom:465.283034pt;}
.y16{bottom:465.635185pt;}
.yad{bottom:466.023193pt;}
.yc7{bottom:466.033610pt;}
.y1a0{bottom:474.111273pt;}
.y1e0{bottom:475.237851pt;}
.yf3{bottom:481.286923pt;}
.y81{bottom:481.294602pt;}
.y4a{bottom:481.297394pt;}
.y16b{bottom:481.297928pt;}
.y129{bottom:481.307831pt;}
.y15{bottom:481.584689pt;}
.yac{bottom:481.972168pt;}
.yc6{bottom:481.982625pt;}
.y19f{bottom:490.060284pt;}
.yf2{bottom:497.235934pt;}
.y80{bottom:497.243613pt;}
.y49{bottom:497.246405pt;}
.y16a{bottom:497.246939pt;}
.y128{bottom:497.256841pt;}
.y14{bottom:497.610202pt;}
.yab{bottom:497.996989pt;}
.yc5{bottom:498.007446pt;}
.y1df{bottom:499.275530pt;}
.y19e{bottom:506.085080pt;}
.y1de{bottom:511.294370pt;}
.y1dc{bottom:511.294858pt;}
.yf1{bottom:513.260730pt;}
.y7f{bottom:513.268410pt;}
.y48{bottom:513.271202pt;}
.y169{bottom:513.271735pt;}
.y127{bottom:513.281638pt;}
.y13{bottom:513.635674pt;}
.yaa{bottom:514.021769pt;}
.yc4{bottom:514.032227pt;}
.y1dd{bottom:515.678647pt;}
.y19d{bottom:522.109877pt;}
.y1d9{bottom:523.237689pt;}
.y1db{bottom:523.237729pt;}
.y1da{bottom:527.697568pt;}
.yf0{bottom:529.285527pt;}
.y7e{bottom:529.293206pt;}
.y47{bottom:529.295998pt;}
.y168{bottom:529.296532pt;}
.y126{bottom:529.306435pt;}
.y12{bottom:529.585177pt;}
.ya9{bottom:529.970784pt;}
.yc3{bottom:529.981242pt;}
.y1d8{bottom:535.256528pt;}
.y19c{bottom:538.058888pt;}
.y1d7{bottom:539.716367pt;}
.yef{bottom:545.234538pt;}
.y7d{bottom:545.242217pt;}
.y46{bottom:545.245009pt;}
.y167{bottom:545.245543pt;}
.y125{bottom:545.255446pt;}
.y11{bottom:545.610649pt;}
.ya8{bottom:545.995605pt;}
.yc2{bottom:546.006022pt;}
.y1d6{bottom:547.279477pt;}
.y19b{bottom:554.083685pt;}
.yee{bottom:561.259725pt;}
.y7c{bottom:561.267014pt;}
.y45{bottom:561.269806pt;}
.y166{bottom:561.270339pt;}
.y124{bottom:561.280242pt;}
.y10{bottom:561.636162pt;}
.ya7{bottom:562.020386pt;}
.yc1{bottom:562.030843pt;}
.y19a{bottom:570.108481pt;}
.y1d5{bottom:571.242165pt;}
.y7b{bottom:577.291810pt;}
.y44{bottom:577.294602pt;}
.y165{bottom:577.295136pt;}
.y123{bottom:577.305039pt;}
.yf{bottom:577.585665pt;}
.ya6{bottom:577.969401pt;}
.yc0{bottom:577.979858pt;}
.y1d4{bottom:583.261004pt;}
.y199{bottom:586.057492pt;}
.yed{bottom:593.236755pt;}
.y7a{bottom:593.240821pt;}
.y43{bottom:593.243613pt;}
.y164{bottom:593.244147pt;}
.y122{bottom:593.254050pt;}
.ye{bottom:593.611137pt;}
.ya5{bottom:593.994181pt;}
.ybf{bottom:594.004639pt;}
.y1d3{bottom:595.279844pt;}
.y198{bottom:602.082289pt;}
.y1d2{bottom:607.298683pt;}
.yec{bottom:609.261552pt;}
.y79{bottom:609.265618pt;}
.y42{bottom:609.268410pt;}
.y163{bottom:609.268943pt;}
.y121{bottom:609.278846pt;}
.yd{bottom:609.636650pt;}
.ya4{bottom:610.019002pt;}
.ybe{bottom:610.029460pt;}
.y197{bottom:618.107085pt;}
.y1d1{bottom:619.241514pt;}
.yeb{bottom:625.286349pt;}
.y78{bottom:625.290415pt;}
.y41{bottom:625.293206pt;}
.y162{bottom:625.293740pt;}
.y120{bottom:625.303643pt;}
.ya3{bottom:625.967977pt;}
.ybd{bottom:625.978434pt;}
.yc{bottom:629.592827pt;}
.y1d0{bottom:631.260353pt;}
.y196{bottom:634.056096pt;}
.yea{bottom:641.235359pt;}
.y77{bottom:641.239425pt;}
.y40{bottom:641.242217pt;}
.y161{bottom:641.242751pt;}
.y11f{bottom:641.252654pt;}
.ya2{bottom:641.992798pt;}
.ybc{bottom:642.003255pt;}
.y1cf{bottom:643.279193pt;}
.yb{bottom:645.618340pt;}
.y195{bottom:650.080893pt;}
.y1ce{bottom:655.298032pt;}
.ye9{bottom:657.260156pt;}
.y76{bottom:657.264222pt;}
.y3f{bottom:657.267014pt;}
.y160{bottom:657.267547pt;}
.y11e{bottom:657.277450pt;}
.ya1{bottom:658.017578pt;}
.ybb{bottom:658.028035pt;}
.ya{bottom:661.567843pt;}
.y215{bottom:665.499245pt;}
.y194{bottom:666.105689pt;}
.y1cd{bottom:667.240863pt;}
.ye8{bottom:673.284953pt;}
.y75{bottom:673.289019pt;}
.y3e{bottom:673.291810pt;}
.y15f{bottom:673.292344pt;}
.y11d{bottom:673.302247pt;}
.ya0{bottom:673.966593pt;}
.yba{bottom:673.977051pt;}
.y214{bottom:676.837746pt;}
.y9{bottom:677.593315pt;}
.y1cc{bottom:679.259702pt;}
.y193{bottom:682.054700pt;}
.y213{bottom:688.176247pt;}
.y74{bottom:689.238029pt;}
.y3d{bottom:689.240821pt;}
.y15e{bottom:689.241355pt;}
.y11c{bottom:689.251258pt;}
.y9f{bottom:689.991374pt;}
.yb9{bottom:690.001872pt;}
.y8{bottom:693.618828pt;}
.y192{bottom:698.079497pt;}
.y212{bottom:699.514788pt;}
.y73{bottom:705.262826pt;}
.y3c{bottom:705.265618pt;}
.y15d{bottom:705.266151pt;}
.y11b{bottom:705.276054pt;}
.y9e{bottom:706.016195pt;}
.yb8{bottom:706.026611pt;}
.y14f{bottom:712.969408pt;}
.y1cb{bottom:713.275286pt;}
.y191{bottom:714.104293pt;}
.y7{bottom:717.580986pt;}
.y72{bottom:721.287623pt;}
.y3b{bottom:721.290415pt;}
.y15c{bottom:721.290948pt;}
.y11a{bottom:721.300851pt;}
.y9d{bottom:721.965169pt;}
.yb7{bottom:721.975667pt;}
.y14e{bottom:724.308312pt;}
.y211{bottom:725.293516pt;}
.y1ca{bottom:725.294085pt;}
.y190{bottom:730.053304pt;}
.y14d{bottom:735.647217pt;}
.y210{bottom:737.236387pt;}
.y71{bottom:737.236633pt;}
.y1c9{bottom:737.236956pt;}
.y3a{bottom:737.239425pt;}
.y15b{bottom:737.239959pt;}
.y119{bottom:737.249862pt;}
.y18f{bottom:746.078695pt;}
.y20f{bottom:749.255267pt;}
.y1c8{bottom:749.255755pt;}
.y14c{bottom:753.185216pt;}
.y70{bottom:753.261430pt;}
.y39{bottom:753.264222pt;}
.y15a{bottom:753.264755pt;}
.y118{bottom:753.274658pt;}
.yd4{bottom:753.637370pt;}
.y20e{bottom:761.274066pt;}
.y1c7{bottom:761.274635pt;}
.yd3{bottom:764.976237pt;}
.y5{bottom:768.906914pt;}
.y6f{bottom:769.286227pt;}
.y38{bottom:769.289019pt;}
.y159{bottom:769.289552pt;}
.y117{bottom:769.299455pt;}
.y14b{bottom:771.855915pt;}
.y20d{bottom:773.292946pt;}
.y1c6{bottom:773.293434pt;}
.y6{bottom:775.483248pt;}
.yd2{bottom:782.514242pt;}
.y6e{bottom:785.235237pt;}
.y20c{bottom:785.235736pt;}
.y1c5{bottom:785.236305pt;}
.y37{bottom:785.238029pt;}
.y158{bottom:785.238563pt;}
.y116{bottom:785.248466pt;}
.y18e{bottom:785.259471pt;}
.y14a{bottom:790.526614pt;}
.y20b{bottom:797.254616pt;}
.y1c4{bottom:797.255104pt;}
.y4{bottom:800.958265pt;}
.yd1{bottom:801.184977pt;}
.y6d{bottom:801.260034pt;}
.y36{bottom:801.262826pt;}
.y157{bottom:801.263360pt;}
.y115{bottom:801.273262pt;}
.y18d{bottom:801.284267pt;}
.y149{bottom:809.197313pt;}
.y20a{bottom:809.273415pt;}
.y1c3{bottom:809.273984pt;}
.y6c{bottom:817.284831pt;}
.y6a{bottom:817.285033pt;}
.y35{bottom:817.287623pt;}
.y156{bottom:817.288156pt;}
.y114{bottom:817.298059pt;}
.y18c{bottom:817.309064pt;}
.yd0{bottom:819.855713pt;}
.y209{bottom:821.292295pt;}
.y1c2{bottom:821.292783pt;}
.y6b{bottom:823.105306pt;}
.y148{bottom:827.868012pt;}
.y69{bottom:833.234044pt;}
.y208{bottom:833.235085pt;}
.y1c1{bottom:833.235654pt;}
.y34{bottom:833.236633pt;}
.y155{bottom:833.237167pt;}
.y113{bottom:833.247070pt;}
.y18b{bottom:833.258075pt;}
.y3{bottom:835.579196pt;}
.ycf{bottom:838.526367pt;}
.y207{bottom:845.253965pt;}
.y1c0{bottom:845.254534pt;}
.y147{bottom:846.538711pt;}
.y68{bottom:849.258841pt;}
.y33{bottom:849.261430pt;}
.y154{bottom:849.261964pt;}
.y112{bottom:849.271867pt;}
.y18a{bottom:849.282871pt;}
.yce{bottom:857.197103pt;}
.y206{bottom:857.272764pt;}
.y1bf{bottom:857.273333pt;}
.y146{bottom:865.209410pt;}
.y67{bottom:865.283637pt;}
.y32{bottom:865.286227pt;}
.y153{bottom:865.286760pt;}
.y111{bottom:865.296663pt;}
.y189{bottom:865.307668pt;}
.y205{bottom:869.291644pt;}
.y1be{bottom:869.292213pt;}
.y2{bottom:870.273776pt;}
.ycd{bottom:875.867757pt;}
.y66{bottom:881.232648pt;}
.y204{bottom:881.234433pt;}
.y1bd{bottom:881.235003pt;}
.y31{bottom:881.235237pt;}
.y152{bottom:881.235771pt;}
.y110{bottom:881.245674pt;}
.y188{bottom:881.256679pt;}
.y145{bottom:882.746257pt;}
.y203{bottom:893.253314pt;}
.y1bc{bottom:893.253883pt;}
.ycc{bottom:894.538493pt;}
.y65{bottom:897.257445pt;}
.y30{bottom:897.260034pt;}
.y151{bottom:897.260568pt;}
.y10f{bottom:897.270471pt;}
.y187{bottom:897.281475pt;}
.y144{bottom:900.284386pt;}
.y1bb{bottom:905.272682pt;}
.y202{bottom:905.275205pt;}
.ycb{bottom:912.075358pt;}
.y64{bottom:913.282241pt;}
.y2f{bottom:913.284831pt;}
.y150{bottom:913.285364pt;}
.y10e{bottom:913.295267pt;}
.y186{bottom:913.306272pt;}
.y143{bottom:914.948386pt;}
.y1ba{bottom:917.291562pt;}
.y201{bottom:917.294004pt;}
.y1{bottom:920.919446pt;}
.y63{bottom:929.231252pt;}
.y1b9{bottom:929.234352pt;}
.y2e{bottom:929.234375pt;}
.y200{bottom:929.236875pt;}
.y10d{bottom:929.244278pt;}
.y185{bottom:929.255283pt;}
.yca{bottom:929.612386pt;}
.y28{bottom:974.453377pt;}
.y27{bottom:990.624520pt;}
.ye7{bottom:991.063721pt;}
.y221{bottom:991.067032pt;}
.y2d{bottom:991.067064pt;}
.y9c{bottom:991.067134pt;}
.ye6{bottom:1004.368164pt;}
.y220{bottom:1004.371475pt;}
.y9b{bottom:1004.371501pt;}
.y2c{bottom:1004.371507pt;}
.h9{height:19.223590pt;}
.h16{height:25.200001pt;}
.hf{height:25.223774pt;}
.hc{height:26.916948pt;}
.h15{height:27.635201pt;}
.h13{height:28.071317pt;}
.h5{height:28.196675pt;}
.h8{height:28.839615pt;}
.h12{height:29.530244pt;}
.hd{height:30.762282pt;}
.h11{height:33.748911pt;}
.h10{height:34.608000pt;}
.h14{height:36.135058pt;}
.he{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.606934pt;}
.ha{height:39.692402pt;}
.h4{height:42.299052pt;}
.h2{height:49.989333pt;}
.hb{height:61.743999pt;}
.h3{height:92.288381pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590548pt;}
.xf{left:79.143344pt;}
.x1{left:80.957481pt;}
.xe{left:84.283480pt;}
.x12{left:86.248907pt;}
.x1e{left:95.621948pt;}
.x3{left:164.938550pt;}
.x4{left:174.009473pt;}
.x1c{left:181.644002pt;}
.x1d{left:185.272400pt;}
.x1a{left:210.292928pt;}
.x1b{left:213.921204pt;}
.x18{left:220.573209pt;}
.x11{left:240.604674pt;}
.x17{left:245.140137pt;}
.x5{left:290.872409pt;}
.x6{left:295.861341pt;}
.x7{left:378.859754pt;}
.x8{left:383.848808pt;}
.x13{left:406.297959pt;}
.x19{left:414.311727pt;}
.x16{left:416.959054pt;}
.x1f{left:426.334147pt;}
.x21{left:429.528117pt;}
.x20{left:430.473470pt;}
.x9{left:451.955864pt;}
.xa{left:457.020398pt;}
.xb{left:541.530530pt;}
.xc{left:550.752698pt;}
.x10{left:577.428016pt;}
.xd{left:667.615613pt;}
.x14{left:679.332153pt;}
.x15{left:684.245443pt;}
}




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