
    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_d9f0293532c50bf7db52d122.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_870b26578d2171c04d803a34.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_593875c3382fbc64fbaa5ab3.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_f65eb46b41001ba36b84b533.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_38d79f22bd7eb998bc62aafc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666000;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_168e0de5f32a98ee27bc47f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.039000;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_deea5c8b3ffe0c0e5aa97aa9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5259dda05115d5c6befef894.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.510000;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_3b9e56bdaabcc9efd0f49a95.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.829000;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_976e7f6c64a777d89ad5ed23.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.131000;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_470b339189ad2db444db9915.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.545000;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_06d38666965d9b12a6929a58.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.715000;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_c4b75fe70b884033b2873965.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.812000;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_44ea0c06e53be361e6ba1c78.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.060000;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_42fea7f6cebffc993fc83f20.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.m9{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);}
.m8{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,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;}
.ls51{letter-spacing:-1.394981px;}
.ls2f{letter-spacing:-1.258307px;}
.ls30{letter-spacing:-1.252427px;}
.ls3e{letter-spacing:-1.205388px;}
.ls33{letter-spacing:-1.199508px;}
.ls39{letter-spacing:-1.146588px;}
.ls50{letter-spacing:-1.142985px;}
.ls4b{letter-spacing:-1.138485px;}
.ls3f{letter-spacing:-1.134828px;}
.ls26{letter-spacing:-1.128943px;}
.ls34{letter-spacing:-1.123069px;}
.ls27{letter-spacing:-1.117189px;}
.ls53{letter-spacing:-1.111485px;}
.ls3a{letter-spacing:-1.111309px;}
.ls3b{letter-spacing:-1.105429px;}
.ls2d{letter-spacing:-1.099549px;}
.ls52{letter-spacing:-1.097985px;}
.ls3c{letter-spacing:-1.087789px;}
.ls28{letter-spacing:-1.081909px;}
.ls4a{letter-spacing:-1.079986px;}
.ls25{letter-spacing:-1.076029px;}
.ls41{letter-spacing:-1.070149px;}
.ls2a{letter-spacing:-1.064269px;}
.ls40{letter-spacing:-1.058389px;}
.ls31{letter-spacing:-1.052509px;}
.ls29{letter-spacing:-1.046629px;}
.ls38{letter-spacing:-1.040749px;}
.ls32{letter-spacing:-1.034869px;}
.ls3d{letter-spacing:-1.028990px;}
.ls2b{letter-spacing:-1.023110px;}
.ls23{letter-spacing:-1.011350px;}
.ls2c{letter-spacing:-1.005470px;}
.ls24{letter-spacing:-0.952550px;}
.ls35{letter-spacing:-0.907187px;}
.ls2e{letter-spacing:-0.905511px;}
.ls4c{letter-spacing:-0.787490px;}
.ls22{letter-spacing:-0.752632px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.029378px;}
.ls44{letter-spacing:0.058484px;}
.ls45{letter-spacing:0.058547px;}
.ls2{letter-spacing:0.060018px;}
.ls12{letter-spacing:0.199891px;}
.ls1a{letter-spacing:0.199951px;}
.ls1{letter-spacing:0.276000px;}
.ls0{letter-spacing:0.402018px;}
.lsa{letter-spacing:0.535051px;}
.lse{letter-spacing:0.535111px;}
.ls37{letter-spacing:0.557993px;}
.lsb{letter-spacing:0.593874px;}
.ls36{letter-spacing:0.598492px;}
.ls10{letter-spacing:0.617394px;}
.ls6{letter-spacing:0.623274px;}
.ls9{letter-spacing:0.629154px;}
.lsc{letter-spacing:0.658553px;}
.ls7{letter-spacing:0.676193px;}
.lsd{letter-spacing:0.693833px;}
.ls8{letter-spacing:0.705593px;}
.ls17{letter-spacing:0.793792px;}
.ls18{letter-spacing:0.817312px;}
.ls42{letter-spacing:0.868488px;}
.ls49{letter-spacing:1.003487px;}
.ls4f{letter-spacing:1.061986px;}
.ls48{letter-spacing:1.134001px;}
.ls47{letter-spacing:1.183484px;}
.ls46{letter-spacing:1.196984px;}
.ls16{letter-spacing:1.270067px;}
.ls4d{letter-spacing:1.327482px;}
.ls4e{letter-spacing:1.372482px;}
.ls1b{letter-spacing:11.077807px;}
.lsf{letter-spacing:12.441991px;}
.ls43{letter-spacing:13.504277px;}
.ls1f{letter-spacing:14.279847px;}
.ls1d{letter-spacing:14.308621px;}
.ls1c{letter-spacing:15.158485px;}
.ls19{letter-spacing:16.569671px;}
.ls3{letter-spacing:17.551622px;}
.ls15{letter-spacing:19.856557px;}
.ls13{letter-spacing:20.961986px;}
.ls21{letter-spacing:21.961576px;}
.ls11{letter-spacing:22.314362px;}
.ls20{letter-spacing:25.742377px;}
.ls14{letter-spacing:34.791605px;}
.ls1e{letter-spacing:434.696935px;}
.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;}
}
.ws74{word-spacing:-34.850404px;}
.wsfa{word-spacing:-25.801177px;}
.ws10d{word-spacing:-22.020375px;}
.ws71{word-spacing:-21.020786px;}
.ws76{word-spacing:-19.915357px;}
.ws7d{word-spacing:-16.628470px;}
.wsc6{word-spacing:-15.217285px;}
.wse6{word-spacing:-14.356621px;}
.ws1d2{word-spacing:-1.106985px;}
.ws1d3{word-spacing:-1.048486px;}
.ws7c{word-spacing:-0.876111px;}
.ws73{word-spacing:-0.764392px;}
.ws1c{word-spacing:-0.061800px;}
.ws26{word-spacing:-0.058799px;}
.wsdb{word-spacing:-0.054000px;}
.wscc{word-spacing:-0.047999px;}
.ws3a{word-spacing:-0.044999px;}
.ws12e{word-spacing:-0.041999px;}
.ws48{word-spacing:0.000000px;}
.ws1be{word-spacing:0.742490px;}
.wsea{word-spacing:9.067086px;}
.wscf{word-spacing:9.244685px;}
.wsbf{word-spacing:9.449064px;}
.wsd9{word-spacing:9.606599px;}
.wsc8{word-spacing:9.612000px;}
.wse2{word-spacing:9.974857px;}
.ws12d{word-spacing:9.983257px;}
.ws130{word-spacing:10.016857px;}
.ws12a{word-spacing:10.121855px;}
.ws12c{word-spacing:10.315053px;}
.wse3{word-spacing:10.627200px;}
.ws1cf{word-spacing:10.642358px;}
.ws1b5{word-spacing:10.655858px;}
.ws197{word-spacing:10.727857px;}
.ws12f{word-spacing:10.735047px;}
.ws1a1{word-spacing:10.763856px;}
.ws1c8{word-spacing:10.772856px;}
.ws1cb{word-spacing:10.795356px;}
.ws1b2{word-spacing:10.804356px;}
.ws1bd{word-spacing:10.808856px;}
.ws1d1{word-spacing:10.840356px;}
.ws1ce{word-spacing:10.858355px;}
.ws1b6{word-spacing:10.867355px;}
.ws1d0{word-spacing:10.903354px;}
.wse1{word-spacing:10.919844px;}
.wsa1{word-spacing:10.989607px;}
.ws84{word-spacing:11.019007px;}
.ws18e{word-spacing:11.020354px;}
.ws198{word-spacing:11.051853px;}
.ws1b3{word-spacing:11.339849px;}
.wsad{word-spacing:11.360044px;}
.ws199{word-spacing:11.393848px;}
.ws190{word-spacing:11.425347px;}
.ws1b4{word-spacing:11.461347px;}
.ws18f{word-spacing:11.488347px;}
.ws1a0{word-spacing:11.506347px;}
.ws65{word-spacing:11.583482px;}
.wse{word-spacing:11.640116px;}
.ws39{word-spacing:11.884342px;}
.wsf{word-spacing:11.928119px;}
.ws11{word-spacing:11.982120px;}
.ws14{word-spacing:12.018120px;}
.ws41{word-spacing:12.465422px;}
.ws42{word-spacing:12.503222px;}
.ws40{word-spacing:12.528421px;}
.ws44{word-spacing:12.557821px;}
.ws43{word-spacing:12.562021px;}
.ws124{word-spacing:12.688911px;}
.ws12b{word-spacing:12.772018px;}
.ws194{word-spacing:12.946328px;}
.ws1de{word-spacing:12.968827px;}
.ws1dd{word-spacing:12.986827px;}
.wsda{word-spacing:13.019460px;}
.ws1db{word-spacing:13.031827px;}
.wsc9{word-spacing:13.095000px;}
.ws195{word-spacing:13.130825px;}
.ws1c3{word-spacing:13.157824px;}
.ws1b1{word-spacing:13.166825px;}
.ws196{word-spacing:13.175824px;}
.wsca{word-spacing:13.176000px;}
.ws1a4{word-spacing:13.193825px;}
.ws1c1{word-spacing:13.202824px;}
.ws1af{word-spacing:13.207324px;}
.ws1ca{word-spacing:13.216324px;}
.ws1c0{word-spacing:13.220823px;}
.ws1ac{word-spacing:13.225323px;}
.ws1cd{word-spacing:13.229824px;}
.ws1d6{word-spacing:13.234324px;}
.ws1b8{word-spacing:13.238824px;}
.ws1a3{word-spacing:13.243323px;}
.ws1da{word-spacing:13.247823px;}
.ws1d7{word-spacing:13.252323px;}
.ws1a7{word-spacing:13.256824px;}
.ws19f{word-spacing:13.265823px;}
.ws3d{word-spacing:13.270323px;}
.ws1d5{word-spacing:13.279323px;}
.ws1d9{word-spacing:13.283823px;}
.ws18a{word-spacing:13.292822px;}
.ws1aa{word-spacing:13.301823px;}
.ws1ae{word-spacing:13.310822px;}
.ws1bb{word-spacing:13.315322px;}
.ws1a2{word-spacing:13.319822px;}
.ws1ad{word-spacing:13.328823px;}
.ws1c4{word-spacing:13.333322px;}
.ws1a9{word-spacing:13.337822px;}
.ws3f{word-spacing:13.342322px;}
.ws1c5{word-spacing:13.360321px;}
.ws18b{word-spacing:13.369322px;}
.ws1b0{word-spacing:13.373822px;}
.ws1a6{word-spacing:13.382821px;}
.ws1c9{word-spacing:13.387321px;}
.ws3e{word-spacing:13.391822px;}
.ws19b{word-spacing:13.409821px;}
.ws19d{word-spacing:13.414322px;}
.ws1d8{word-spacing:13.418822px;}
.ws1ab{word-spacing:13.423321px;}
.ws1cc{word-spacing:13.427821px;}
.ws192{word-spacing:13.432321px;}
.ws3b{word-spacing:13.441321px;}
.ws1c7{word-spacing:13.445820px;}
.ws1b9{word-spacing:13.490820px;}
.ws1b7{word-spacing:13.495320px;}
.ws1d4{word-spacing:13.504320px;}
.ws193{word-spacing:13.508820px;}
.ws1bf{word-spacing:13.513319px;}
.ws1bc{word-spacing:13.522320px;}
.ws1dc{word-spacing:13.535819px;}
.ws1a8{word-spacing:13.549320px;}
.ws19c{word-spacing:13.576319px;}
.ws19e{word-spacing:13.580818px;}
.ws1a5{word-spacing:13.585318px;}
.ws1c2{word-spacing:13.594319px;}
.ws1ba{word-spacing:13.630318px;}
.ws18c{word-spacing:13.634818px;}
.ws1c6{word-spacing:13.679818px;}
.ws18d{word-spacing:13.684318px;}
.wsd8{word-spacing:13.785428px;}
.ws19a{word-spacing:13.814816px;}
.ws3c{word-spacing:13.841816px;}
.wse0{word-spacing:13.843026px;}
.ws191{word-spacing:13.882315px;}
.wsec{word-spacing:13.905427px;}
.wsdd{word-spacing:13.915026px;}
.wsf1{word-spacing:13.939025px;}
.wsd2{word-spacing:13.943826px;}
.ws131{word-spacing:13.982225px;}
.wsd6{word-spacing:13.987025px;}
.wse5{word-spacing:13.996642px;}
.wsf0{word-spacing:14.035024px;}
.wscb{word-spacing:14.039824px;}
.ws132{word-spacing:14.044625px;}
.ws46{word-spacing:14.059024px;}
.wsdf{word-spacing:14.073425px;}
.wsd4{word-spacing:14.078224px;}
.wsdc{word-spacing:14.083023px;}
.ws45{word-spacing:14.111826px;}
.ws133{word-spacing:14.131023px;}
.wse7{word-spacing:14.155023px;}
.wse8{word-spacing:14.169423px;}
.wsd7{word-spacing:14.174222px;}
.wseb{word-spacing:14.217423px;}
.wsb2{word-spacing:14.251021px;}
.wscd{word-spacing:14.260622px;}
.ws47{word-spacing:14.299021px;}
.wsd0{word-spacing:14.366220px;}
.ws13c{word-spacing:14.388213px;}
.wsf4{word-spacing:14.433420px;}
.ws50{word-spacing:14.617531px;}
.wsc0{word-spacing:14.629291px;}
.ws8f{word-spacing:14.746890px;}
.wsc4{word-spacing:14.782169px;}
.ws151{word-spacing:14.799809px;}
.ws140{word-spacing:14.805689px;}
.wsc5{word-spacing:14.817461px;}
.ws171{word-spacing:14.835089px;}
.ws4f{word-spacing:14.888008px;}
.ws2c{word-spacing:14.970328px;}
.ws16e{word-spacing:15.017366px;}
.ws162{word-spacing:15.064407px;}
.ws70{word-spacing:15.093805px;}
.ws20{word-spacing:15.123206px;}
.ws34{word-spacing:15.158485px;}
.ws13d{word-spacing:15.176126px;}
.wsbc{word-spacing:15.223164px;}
.ws7e{word-spacing:15.229045px;}
.ws104{word-spacing:15.270205px;}
.ws87{word-spacing:15.364283px;}
.ws101{word-spacing:15.605360px;}
.wsc2{word-spacing:15.617121px;}
.ws169{word-spacing:15.858199px;}
.ws23{word-spacing:15.869957px;}
.ws128{word-spacing:16.028716px;}
.ws9e{word-spacing:16.034597px;}
.ws16b{word-spacing:16.116916px;}
.wse4{word-spacing:16.135199px;}
.ws126{word-spacing:16.181594px;}
.ws11e{word-spacing:16.281554px;}
.ws156{word-spacing:16.372499px;}
.ws8a{word-spacing:16.416658px;}
.wsaa{word-spacing:16.488420px;}
.wsa0{word-spacing:16.493232px;}
.wsa2{word-spacing:16.516020px;}
.wsb9{word-spacing:16.516751px;}
.ws11c{word-spacing:16.516752px;}
.ws6a{word-spacing:16.538100px;}
.ws8c{word-spacing:16.546151px;}
.wsb7{word-spacing:16.575550px;}
.ws127{word-spacing:16.687269px;}
.ws184{word-spacing:16.728429px;}
.ws16f{word-spacing:16.747861px;}
.ws58{word-spacing:16.775462px;}
.ws49{word-spacing:16.836183px;}
.ws183{word-spacing:16.934227px;}
.ws129{word-spacing:16.969507px;}
.ws64{word-spacing:16.998907px;}
.ws168{word-spacing:17.022426px;}
.ws15d{word-spacing:17.163544px;}
.ws4b{word-spacing:17.216464px;}
.ws86{word-spacing:17.228224px;}
.ws98{word-spacing:17.257624px;}
.ws31{word-spacing:17.316423px;}
.wsfb{word-spacing:17.357583px;}
.wsaf{word-spacing:17.386983px;}
.ws4d{word-spacing:17.398742px;}
.ws28{word-spacing:17.404622px;}
.ws57{word-spacing:17.439903px;}
.ws53{word-spacing:17.469302px;}
.ws29{word-spacing:17.539860px;}
.ws188{word-spacing:17.569260px;}
.ws105{word-spacing:17.663339px;}
.ws60{word-spacing:17.728019px;}
.ws69{word-spacing:17.733900px;}
.ws38{word-spacing:17.739780px;}
.wsfc{word-spacing:17.792699px;}
.wsc{word-spacing:17.802179px;}
.ws110{word-spacing:17.822099px;}
.ws1b{word-spacing:17.844178px;}
.wsa9{word-spacing:17.845618px;}
.ws7{word-spacing:17.850178px;}
.ws15{word-spacing:17.874178px;}
.ws67{word-spacing:17.880898px;}
.ws157{word-spacing:17.904417px;}
.ws8{word-spacing:17.910179px;}
.ws16{word-spacing:17.940179px;}
.wsb{word-spacing:17.952180px;}
.ws19{word-spacing:17.958179px;}
.ws13{word-spacing:17.970180px;}
.ws22{word-spacing:17.986736px;}
.ws10{word-spacing:17.988179px;}
.ws12{word-spacing:17.994179px;}
.wsb6{word-spacing:18.039655px;}
.ws37{word-spacing:18.121976px;}
.ws9{word-spacing:18.180170px;}
.ws170{word-spacing:18.233695px;}
.wsa{word-spacing:18.270183px;}
.wsd{word-spacing:18.318187px;}
.ws18{word-spacing:18.324183px;}
.ws1d{word-spacing:18.333652px;}
.ws145{word-spacing:18.386573px;}
.ws149{word-spacing:18.392452px;}
.ws17{word-spacing:18.414179px;}
.wsac{word-spacing:18.421851px;}
.ws78{word-spacing:18.427733px;}
.ws1a{word-spacing:18.432147px;}
.ws189{word-spacing:18.490561px;}
.ws2b{word-spacing:18.545330px;}
.ws89{word-spacing:18.586491px;}
.ws6{word-spacing:18.600220px;}
.ws75{word-spacing:18.604131px;}
.ws77{word-spacing:18.674690px;}
.ws185{word-spacing:18.827568px;}
.ws2e{word-spacing:18.845208px;}
.ws14a{word-spacing:18.868727px;}
.ws16c{word-spacing:18.886368px;}
.wsfd{word-spacing:18.898127px;}
.ws33{word-spacing:18.915768px;}
.ws4c{word-spacing:18.927526px;}
.ws159{word-spacing:18.945167px;}
.ws93{word-spacing:19.051006px;}
.ws116{word-spacing:19.109805px;}
.ws10f{word-spacing:19.198005px;}
.ws9b{word-spacing:19.239164px;}
.ws182{word-spacing:19.292084px;}
.ws181{word-spacing:19.356762px;}
.ws148{word-spacing:19.580200px;}
.ws115{word-spacing:19.662514px;}
.ws90{word-spacing:19.668399px;}
.ws108{word-spacing:19.680160px;}
.wsb5{word-spacing:19.691918px;}
.ws117{word-spacing:19.703680px;}
.ws5{word-spacing:19.740780px;}
.ws1e{word-spacing:19.744838px;}
.ws4{word-spacing:19.773780px;}
.ws3{word-spacing:19.786979px;}
.ws118{word-spacing:19.791877px;}
.wsb3{word-spacing:19.821278px;}
.ws80{word-spacing:19.856558px;}
.ws9a{word-spacing:19.897716px;}
.ws1f{word-spacing:19.938877px;}
.ws4e{word-spacing:20.056476px;}
.ws139{word-spacing:20.162314px;}
.ws164{word-spacing:20.262274px;}
.ws141{word-spacing:20.456311px;}
.ws138{word-spacing:20.597429px;}
.ws17b{word-spacing:20.603309px;}
.ws27{word-spacing:20.626829px;}
.ws25{word-spacing:20.662109px;}
.ws179{word-spacing:20.685630px;}
.ws10b{word-spacing:20.709149px;}
.wsb1{word-spacing:20.738549px;}
.wsbd{word-spacing:20.762069px;}
.ws17a{word-spacing:20.767947px;}
.ws8d{word-spacing:20.844387px;}
.ws158{word-spacing:20.867906px;}
.ws14f{word-spacing:20.885547px;}
.ws21{word-spacing:20.926706px;}
.ws17f{word-spacing:20.944346px;}
.ws167{word-spacing:21.138384px;}
.wsa4{word-spacing:21.185423px;}
.wsc7{word-spacing:21.220703px;}
.ws137{word-spacing:21.255983px;}
.ws14e{word-spacing:21.279502px;}
.ws152{word-spacing:21.308902px;}
.ws160{word-spacing:21.338302px;}
.ws62{word-spacing:21.385342px;}
.ws13a{word-spacing:21.444142px;}
.ws122{word-spacing:21.520580px;}
.ws174{word-spacing:21.549980px;}
.wsb4{word-spacing:21.585260px;}
.ws106{word-spacing:21.591140px;}
.ws11b{word-spacing:21.597019px;}
.ws8e{word-spacing:21.679339px;}
.ws10c{word-spacing:21.785178px;}
.ws125{word-spacing:21.849857px;}
.ws173{word-spacing:21.861618px;}
.ws121{word-spacing:21.879245px;}
.ws56{word-spacing:21.891016px;}
.ws146{word-spacing:21.908657px;}
.ws111{word-spacing:21.961575px;}
.ws10e{word-spacing:21.979215px;}
.ws175{word-spacing:22.120334px;}
.ws9c{word-spacing:22.120348px;}
.ws59{word-spacing:22.202654px;}
.ws15f{word-spacing:22.284973px;}
.ws109{word-spacing:22.302612px;}
.ws97{word-spacing:22.320253px;}
.ws100{word-spacing:22.332012px;}
.ws112{word-spacing:22.373171px;}
.wsa5{word-spacing:22.414332px;}
.ws9f{word-spacing:22.637769px;}
.ws9d{word-spacing:22.661288px;}
.ws119{word-spacing:22.749487px;}
.ws153{word-spacing:22.837686px;}
.ws16a{word-spacing:22.884727px;}
.wsf6{word-spacing:22.920006px;}
.wsae{word-spacing:22.949405px;}
.ws180{word-spacing:23.002325px;}
.wsab{word-spacing:23.055245px;}
.ws143{word-spacing:23.090525px;}
.ws11d{word-spacing:23.114044px;}
.wsa3{word-spacing:23.143444px;}
.ws5c{word-spacing:23.184603px;}
.ws16d{word-spacing:23.249282px;}
.ws15a{word-spacing:23.425680px;}
.ws15b{word-spacing:23.566799px;}
.wsf7{word-spacing:23.607959px;}
.ws0{word-spacing:23.649601px;}
.ws55{word-spacing:23.860796px;}
.ws66{word-spacing:23.901956px;}
.ws114{word-spacing:24.019555px;}
.wsb8{word-spacing:24.307671px;}
.ws36{word-spacing:24.542869px;}
.ws4a{word-spacing:24.683988px;}
.ws154{word-spacing:24.795708px;}
.ws6f{word-spacing:24.878027px;}
.ws24{word-spacing:24.889785px;}
.ws5f{word-spacing:24.954465px;}
.ws172{word-spacing:25.019145px;}
.ws91{word-spacing:25.077944px;}
.wsbb{word-spacing:25.136743px;}
.ws92{word-spacing:25.266103px;}
.ws107{word-spacing:25.401341px;}
.ws96{word-spacing:25.436621px;}
.wsf9{word-spacing:25.565979px;}
.ws17e{word-spacing:25.589498px;}
.ws54{word-spacing:25.607139px;}
.ws186{word-spacing:25.865855px;}
.wsff{word-spacing:25.907016px;}
.wsc1{word-spacing:25.971696px;}
.ws81{word-spacing:26.283332px;}
.ws10a{word-spacing:26.330371px;}
.ws13f{word-spacing:26.371531px;}
.ws79{word-spacing:26.806646px;}
.wsa8{word-spacing:27.030085px;}
.ws82{word-spacing:27.088884px;}
.ws15e{word-spacing:27.194723px;}
.ws30{word-spacing:27.259402px;}
.ws2f{word-spacing:27.365240px;}
.ws7a{word-spacing:27.459320px;}
.ws7b{word-spacing:27.576918px;}
.ws7f{word-spacing:27.647478px;}
.ws11f{word-spacing:27.718037px;}
.ws17c{word-spacing:27.912076px;}
.ws6c{word-spacing:27.988514px;}
.ws95{word-spacing:28.100233px;}
.ws17d{word-spacing:28.111994px;}
.ws99{word-spacing:28.235472px;}
.ws35{word-spacing:28.329550px;}
.ws178{word-spacing:28.658828px;}
.ws144{word-spacing:28.688227px;}
.ws6e{word-spacing:28.782306px;}
.ws177{word-spacing:28.805826px;}
.ws150{word-spacing:28.829345px;}
.ws113{word-spacing:29.211542px;}
.ws68{word-spacing:29.952414px;}
.ws136{word-spacing:30.087654px;}
.wsa6{word-spacing:30.134693px;}
.ws102{word-spacing:30.140571px;}
.ws14d{word-spacing:30.328730px;}
.ws163{word-spacing:30.481610px;}
.ws155{word-spacing:30.805007px;}
.ws187{word-spacing:31.675237px;}
.ws6d{word-spacing:31.728155px;}
.ws32{word-spacing:31.810475px;}
.wsbe{word-spacing:31.822236px;}
.ws123{word-spacing:31.910434px;}
.wsf8{word-spacing:32.069194px;}
.ws13b{word-spacing:32.104472px;}
.ws85{word-spacing:32.180911px;}
.ws11a{word-spacing:32.274989px;}
.ws13e{word-spacing:32.316149px;}
.wsfe{word-spacing:32.721866px;}
.ws63{word-spacing:33.127583px;}
.ws14c{word-spacing:33.192261px;}
.ws5b{word-spacing:33.333381px;}
.ws161{word-spacing:33.427459px;}
.ws94{word-spacing:33.586218px;}
.ws5a{word-spacing:34.050731px;}
.ws165{word-spacing:34.315329px;}
.ws2a{word-spacing:34.450570px;}
.ws72{word-spacing:34.715167px;}
.ws14b{word-spacing:35.532477px;}
.ws135{word-spacing:35.832356px;}
.ws52{word-spacing:35.932312px;}
.ws83{word-spacing:36.102832px;}
.ws147{word-spacing:36.502667px;}
.ws51{word-spacing:37.284698px;}
.ws176{word-spacing:37.331739px;}
.ws166{word-spacing:37.572817px;}
.ws103{word-spacing:37.937373px;}
.ws5d{word-spacing:38.102011px;}
.wsa7{word-spacing:38.560646px;}
.ws5e{word-spacing:38.737044px;}
.ws2d{word-spacing:39.066323px;}
.ws88{word-spacing:39.078080px;}
.wsb0{word-spacing:39.336799px;}
.ws120{word-spacing:39.442639px;}
.ws142{word-spacing:39.589635px;}
.ws134{word-spacing:39.766034px;}
.wsc3{word-spacing:39.854233px;}
.ws8b{word-spacing:41.159580px;}
.ws2{word-spacing:42.926580px;}
.ws1{word-spacing:42.955378px;}
.ws15c{word-spacing:43.929031px;}
.ws61{word-spacing:45.399016px;}
.ws6b{word-spacing:46.357448px;}
.wsba{word-spacing:48.180230px;}
.wse9{word-spacing:135.948703px;}
.wsd1{word-spacing:190.279219px;}
.wsed{word-spacing:208.648587px;}
.wsd5{word-spacing:213.270944px;}
.wsde{word-spacing:218.742875px;}
.wsf3{word-spacing:231.640300px;}
.wsf2{word-spacing:237.112231px;}
.wsd3{word-spacing:241.734588px;}
.wsee{word-spacing:260.103944px;}
.wsf5{word-spacing:323.079157px;}
.wsef{word-spacing:371.673744px;}
.wsce{word-spacing:443.864842px;}
._20{margin-left:-34.238890px;}
._21{margin-left:-32.645429px;}
._68{margin-left:-25.799682px;}
._6a{margin-left:-24.025420px;}
._1f{margin-left:-21.479420px;}
._1e{margin-left:-20.168194px;}
._22{margin-left:-19.139205px;}
._23{margin-left:-17.945579px;}
._24{margin-left:-16.175768px;}
._25{margin-left:-14.993687px;}
._2a{margin-left:-11.542308px;}
._f{margin-left:-5.427123px;}
._69{margin-left:-4.292356px;}
._1c{margin-left:-3.279554px;}
._a{margin-left:-2.122658px;}
._b{margin-left:-1.111309px;}
._8{width:1.139980px;}
._17{width:2.423992px;}
._46{width:7.312957px;}
._0{width:8.954400px;}
._4b{width:9.954852px;}
._9{width:11.142143px;}
._7{width:12.888098px;}
._13{width:14.120822px;}
._26{width:15.290648px;}
._29{width:16.322715px;}
._5{width:17.328172px;}
._6{width:18.474189px;}
._4{width:19.620197px;}
._c{width:21.161905px;}
._d{width:22.179133px;}
._12{width:23.854916px;}
._16{width:24.989745px;}
._e{width:26.265694px;}
._1a{width:27.541637px;}
._11{width:28.770547px;}
._1d{width:29.953872px;}
._1b{width:31.016684px;}
._1{width:32.876999px;}
._70{width:34.393225px;}
._18{width:35.403849px;}
._15{width:37.037741px;}
._14{width:38.661337px;}
._10{width:40.148231px;}
._6f{width:41.247779px;}
._72{width:42.838115px;}
._3{width:44.121782px;}
._73{width:45.455403px;}
._19{width:46.522816px;}
._28{width:49.315054px;}
._71{width:65.861121px;}
._30{width:89.131288px;}
._2e{width:111.843401px;}
._31{width:117.790532px;}
._3f{width:119.505314px;}
._33{width:126.243829px;}
._55{width:135.173208px;}
._4d{width:136.515097px;}
._41{width:138.195073px;}
._4e{width:143.258894px;}
._5a{width:144.285514px;}
._39{width:149.235541px;}
._48{width:167.042717px;}
._3e{width:194.057378px;}
._50{width:198.885523px;}
._44{width:204.141448px;}
._2d{width:206.690813px;}
._3b{width:210.621372px;}
._6d{width:232.357883px;}
._60{width:236.825439px;}
._42{width:241.100981px;}
._66{width:259.817151px;}
._2c{width:268.461246px;}
._34{width:276.001355px;}
._49{width:278.271722px;}
._3c{width:280.076499px;}
._40{width:284.588443px;}
._32{width:286.988422px;}
._43{width:290.540368px;}
._2f{width:297.020287px;}
._45{width:306.524168px;}
._3a{width:315.068062px;}
._3d{width:319.004012px;}
._56{width:322.792364px;}
._54{width:323.806236px;}
._38{width:326.539918px;}
._4c{width:329.362874px;}
._64{width:333.101441px;}
._35{width:342.475719px;}
._5e{width:348.054463px;}
._61{width:349.651629px;}
._37{width:363.451457px;}
._36{width:371.947351px;}
._5f{width:388.963734px;}
._6b{width:399.052621px;}
._5b{width:405.532521px;}
._58{width:434.770029px;}
._65{width:436.012131px;}
._51{width:470.907723px;}
._5c{width:474.987672px;}
._62{width:479.499616px;}
._4f{width:481.899571px;}
._67{width:485.451541px;}
._4a{width:491.931460px;}
._6c{width:501.435342px;}
._59{width:509.979235px;}
._5d{width:513.915186px;}
._2b{width:517.025537px;}
._57{width:521.451091px;}
._52{width:537.386892px;}
._47{width:559.072978px;}
._53{width:566.858524px;}
._6e{width:768.595174px;}
._63{width:811.021639px;}
._2{width:1602.252539px;}
._27{width:1764.529902px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:27.996600px;}
.fs8{font-size:29.995200px;}
.fse{font-size:31.995000px;}
.fsc{font-size:39.194400px;}
.fs9{font-size:41.999400px;}
.fs3{font-size:43.996200px;}
.fs7{font-size:44.999400px;}
.fsa{font-size:47.999400px;}
.fsd{font-size:54.000000px;}
.fsb{font-size:55.200600px;}
.fs6{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y41{bottom:67.520220px;}
.y40{bottom:79.511040px;}
.y1e6{bottom:91.418490px;}
.y7d{bottom:91.420035px;}
.ya4{bottom:91.420335px;}
.y1b5{bottom:91.423170px;}
.y229{bottom:91.423905px;}
.ybc{bottom:91.428675px;}
.y157{bottom:91.429320px;}
.y3f{bottom:91.501875px;}
.y180{bottom:100.771725px;}
.y3e{bottom:103.492695px;}
.y1e5{bottom:104.939685px;}
.y228{bottom:104.945100px;}
.y7c{bottom:109.447935px;}
.ya3{bottom:109.448235px;}
.y1b4{bottom:109.451070px;}
.ybb{bottom:109.456560px;}
.y156{bottom:109.457205px;}
.yed{bottom:110.642205px;}
.y3d{bottom:115.483530px;}
.y17f{bottom:115.823145px;}
.y227{bottom:118.466295px;}
.yec{bottom:124.163640px;}
.y7b{bottom:127.390575px;}
.ya2{bottom:127.390860px;}
.y1b3{bottom:127.393710px;}
.y155{bottom:127.399845px;}
.yba{bottom:127.484460px;}
.y138{bottom:130.110150px;}
.y136{bottom:130.110900px;}
.y17e{bottom:130.790550px;}
.y226{bottom:131.901990px;}
.y137{bottom:135.467700px;}
.y3c{bottom:140.910375px;}
.y1e4{bottom:143.887785px;}
.yeb{bottom:145.168185px;}
.y7a{bottom:145.418475px;}
.ya1{bottom:145.418760px;}
.y1b2{bottom:145.421595px;}
.y225{bottom:145.423185px;}
.yb9{bottom:145.427100px;}
.y154{bottom:145.427745px;}
.y135{bottom:151.115445px;}
.y3b{bottom:154.431570px;}
.y1e3{bottom:157.408980px;}
.y224{bottom:158.944380px;}
.y79{bottom:163.446360px;}
.ya0{bottom:163.446660px;}
.y1b1{bottom:163.449495px;}
.yb8{bottom:163.455000px;}
.y153{bottom:163.455645px;}
.yea{bottom:166.087515px;}
.y3a{bottom:167.952765px;}
.y1e2{bottom:170.930175px;}
.y134{bottom:172.119975px;}
.y223{bottom:172.465575px;}
.y39{bottom:172.970115px;}
.y34{bottom:176.638485px;}
.y78{bottom:181.389000px;}
.y76{bottom:181.389300px;}
.y1b0{bottom:181.392135px;}
.y152{bottom:181.398285px;}
.y38{bottom:181.474620px;}
.yb7{bottom:181.482885px;}
.y222{bottom:185.902395px;}
.ye9{bottom:187.092045px;}
.y77{bottom:187.936950px;}
.y1e1{bottom:188.958060px;}
.y133{bottom:193.124520px;}
.y33{bottom:194.666370px;}
.y37{bottom:194.910315px;}
.y75{bottom:199.417185px;}
.y73{bottom:199.417815px;}
.y1af{bottom:199.420035px;}
.y221{bottom:199.423590px;}
.yb6{bottom:199.425525px;}
.y151{bottom:199.426170px;}
.y36{bottom:199.927515px;}
.y1e0{bottom:202.393755px;}
.y74{bottom:205.965300px;}
.ye8{bottom:208.096590px;}
.y35{bottom:208.431465px;}
.y32{bottom:212.609010px;}
.y220{bottom:212.944770px;}
.y132{bottom:214.129050px;}
.y1df{bottom:215.914950px;}
.y72{bottom:217.445715px;}
.y1ae{bottom:217.447920px;}
.y70{bottom:217.449795px;}
.yb5{bottom:217.453425px;}
.y150{bottom:217.454070px;}
.y71{bottom:223.993650px;}
.y21f{bottom:226.465965px;}
.ye7{bottom:229.101120px;}
.y31{bottom:230.636910px;}
.y130{bottom:235.138905px;}
.y1ad{bottom:235.390560px;}
.y6f{bottom:235.392435px;}
.y14f{bottom:235.396710px;}
.yb4{bottom:235.481325px;}
.y21e{bottom:239.901675px;}
.y131{bottom:240.491250px;}
.y24{bottom:248.660400px;}
.y30{bottom:248.664810px;}
.y1de{bottom:249.335400px;}
.ye6{bottom:250.105665px;}
.y1ac{bottom:253.418460px;}
.y6e{bottom:253.420335px;}
.y21d{bottom:253.422870px;}
.yb3{bottom:253.423950px;}
.y14e{bottom:253.424610px;}
.y12f{bottom:256.143450px;}
.y264{bottom:262.435935px;}
.ye5{bottom:263.627085px;}
.y23{bottom:266.603040px;}
.y2f{bottom:266.607450px;}
.y21c{bottom:266.944050px;}
.y1ab{bottom:271.446360px;}
.y6d{bottom:271.448235px;}
.yb2{bottom:271.451850px;}
.y14d{bottom:271.452495px;}
.y263{bottom:275.957130px;}
.y12e{bottom:277.147980px;}
.y21b{bottom:280.465245px;}
.y22{bottom:284.630940px;}
.ye4{bottom:284.631630px;}
.y2e{bottom:284.635335px;}
.y1aa{bottom:289.388985px;}
.y6c{bottom:289.390860px;}
.y262{bottom:289.393950px;}
.y14c{bottom:289.395135px;}
.y1dd{bottom:289.475685px;}
.yb1{bottom:289.479750px;}
.y21a{bottom:293.900955px;}
.y12d{bottom:298.152525px;}
.y21{bottom:302.658825px;}
.y2d{bottom:302.663235px;}
.y261{bottom:302.915145px;}
.ye3{bottom:305.636160px;}
.y1a9{bottom:307.417185px;}
.y1dc{bottom:307.418325px;}
.y6b{bottom:307.418760px;}
.y219{bottom:307.422135px;}
.yb0{bottom:307.422390px;}
.y14b{bottom:307.423035px;}
.y260{bottom:316.436340px;}
.y12c{bottom:319.157055px;}
.y20{bottom:320.601465px;}
.y2c{bottom:320.605875px;}
.y218{bottom:320.943330px;}
.y1db{bottom:325.446225px;}
.y6a{bottom:325.446660px;}
.yaf{bottom:325.450290px;}
.y14a{bottom:325.450935px;}
.ye2{bottom:326.640705px;}
.y25f{bottom:329.957520px;}
.y217{bottom:334.464525px;}
.y1f{bottom:338.629365px;}
.y2b{bottom:338.633775px;}
.y12b{bottom:340.161585px;}
.y1da{bottom:343.388850px;}
.y69{bottom:343.389300px;}
.yae{bottom:343.392915px;}
.y25e{bottom:343.393230px;}
.y149{bottom:343.393560px;}
.y1a8{bottom:343.409085px;}
.ye1{bottom:347.645235px;}
.y216{bottom:347.900220px;}
.y1e{bottom:356.657265px;}
.y2a{bottom:356.661660px;}
.y25d{bottom:356.914425px;}
.y12a{bottom:361.166130px;}
.ye0{bottom:361.166670px;}
.y68{bottom:361.417185px;}
.yad{bottom:361.420815px;}
.y215{bottom:361.421415px;}
.y148{bottom:361.421460px;}
.y1a7{bottom:361.436985px;}
.y25c{bottom:370.435605px;}
.y1d{bottom:374.599905px;}
.y29{bottom:374.604300px;}
.y214{bottom:374.942610px;}
.y67{bottom:379.445550px;}
.yac{bottom:379.448715px;}
.y147{bottom:379.449360px;}
.y1a6{bottom:379.464885px;}
.y129{bottom:382.170660px;}
.ydf{bottom:382.171200px;}
.y25b{bottom:383.956800px;}
.y213{bottom:388.463805px;}
.y1c{bottom:392.627790px;}
.y28{bottom:392.632200px;}
.y9f{bottom:397.388850px;}
.yab{bottom:397.391355px;}
.y146{bottom:397.392000px;}
.y25a{bottom:397.392510px;}
.y1d9{bottom:397.397625px;}
.y166{bottom:397.406685px;}
.y1a5{bottom:397.407510px;}
.y212{bottom:401.899500px;}
.y128{bottom:403.090005px;}
.yde{bottom:403.090545px;}
.y1b{bottom:410.655690px;}
.y27{bottom:410.660100px;}
.y259{bottom:410.913690px;}
.yaa{bottom:415.419240px;}
.y145{bottom:415.419885px;}
.y211{bottom:415.420695px;}
.y1d8{bottom:415.425525px;}
.y66{bottom:415.426620px;}
.y165{bottom:415.434570px;}
.y1a4{bottom:415.435410px;}
.y127{bottom:424.094535px;}
.ydd{bottom:424.095075px;}
.y258{bottom:424.434885px;}
.y1a{bottom:428.598330px;}
.y26{bottom:428.602725px;}
.y210{bottom:428.941890px;}
.ya9{bottom:433.447140px;}
.y144{bottom:433.447785px;}
.y1d7{bottom:433.453425px;}
.y65{bottom:433.454505px;}
.y9e{bottom:433.457025px;}
.y164{bottom:433.462470px;}
.y1a3{bottom:433.463310px;}
.y257{bottom:437.956080px;}
.y20f{bottom:442.463085px;}
.y126{bottom:445.099080px;}
.ydc{bottom:445.099620px;}
.y19{bottom:446.626665px;}
.y25{bottom:446.630625px;}
.ya8{bottom:451.389780px;}
.y143{bottom:451.390425px;}
.y256{bottom:451.391790px;}
.y1d6{bottom:451.396065px;}
.y64{bottom:451.397145px;}
.y9d{bottom:451.399665px;}
.y163{bottom:451.405110px;}
.y1a2{bottom:451.405950px;}
.y20e{bottom:455.898780px;}
.ydb{bottom:458.621040px;}
.y255{bottom:464.912970px;}
.y125{bottom:466.103610px;}
.ya7{bottom:469.417680px;}
.y142{bottom:469.418325px;}
.y20d{bottom:469.419975px;}
.y1d5{bottom:469.423950px;}
.y63{bottom:469.425045px;}
.y9c{bottom:469.427565px;}
.y162{bottom:469.433010px;}
.y1a1{bottom:469.433850px;}
.y254{bottom:478.434165px;}
.yda{bottom:479.625585px;}
.y20c{bottom:482.941170px;}
.y124{bottom:487.108140px;}
.ya6{bottom:487.445565px;}
.y141{bottom:487.446225px;}
.y1d4{bottom:487.451850px;}
.y62{bottom:487.452945px;}
.y9b{bottom:487.455465px;}
.y161{bottom:487.460895px;}
.y1a0{bottom:487.461735px;}
.y253{bottom:491.955360px;}
.y18{bottom:492.288315px;}
.y20b{bottom:496.462365px;}
.yd9{bottom:500.630115px;}
.y140{bottom:505.388850px;}
.y252{bottom:505.391055px;}
.y1d3{bottom:505.394490px;}
.y61{bottom:505.395570px;}
.y9a{bottom:505.398090px;}
.y160{bottom:505.403535px;}
.y19f{bottom:505.404375px;}
.y123{bottom:508.112685px;}
.y20a{bottom:509.898060px;}
.y17{bottom:517.800570px;}
.y251{bottom:518.912250px;}
.yd8{bottom:521.634645px;}
.y13f{bottom:523.417185px;}
.y209{bottom:523.419255px;}
.y1d2{bottom:523.422390px;}
.y60{bottom:523.423470px;}
.y99{bottom:523.425990px;}
.y15f{bottom:523.431435px;}
.y19e{bottom:523.432275px;}
.y122{bottom:529.117215px;}
.y106{bottom:531.835695px;}
.y250{bottom:532.433445px;}
.y16{bottom:535.829250px;}
.y208{bottom:536.940450px;}
.y1d1{bottom:541.450290px;}
.y5f{bottom:541.451370px;}
.y98{bottom:541.453890px;}
.y15e{bottom:541.459335px;}
.y19d{bottom:541.460175px;}
.yd7{bottom:542.639190px;}
.y105{bottom:544.591965px;}
.y24f{bottom:545.954640px;}
.y121{bottom:550.121760px;}
.y207{bottom:550.461645px;}
.y15{bottom:553.772430px;}
.y24e{bottom:559.390335px;}
.y13e{bottom:559.391355px;}
.y1d0{bottom:559.392915px;}
.y5e{bottom:559.394010px;}
.y97{bottom:559.396530px;}
.y15d{bottom:559.401975px;}
.y19c{bottom:559.402800px;}
.yd6{bottom:563.643720px;}
.y206{bottom:563.897340px;}
.y104{bottom:564.323595px;}
.y120{bottom:571.126290px;}
.y24d{bottom:572.911530px;}
.y14{bottom:576.308655px;}
.y205{bottom:577.418535px;}
.y13d{bottom:577.419240px;}
.y1cf{bottom:577.420815px;}
.y5d{bottom:577.421895px;}
.y96{bottom:577.424415px;}
.y15c{bottom:577.429860px;}
.y19b{bottom:577.430700px;}
.y103{bottom:577.759830px;}
.yd5{bottom:584.648265px;}
.y24c{bottom:586.432725px;}
.y204{bottom:590.939730px;}
.y11f{bottom:592.130835px;}
.y13{bottom:594.337335px;}
.y13c{bottom:595.447140px;}
.y1ce{bottom:595.448715px;}
.y5c{bottom:595.449795px;}
.y95{bottom:595.452315px;}
.y15b{bottom:595.457760px;}
.y19a{bottom:595.458600px;}
.y102{bottom:598.764360px;}
.y24b{bottom:599.953920px;}
.y203{bottom:604.460925px;}
.yd4{bottom:605.652795px;}
.y12{bottom:612.280515px;}
.y11e{bottom:613.135365px;}
.y24a{bottom:613.389615px;}
.y13b{bottom:613.389780px;}
.y1cd{bottom:613.391355px;}
.y5b{bottom:613.392435px;}
.y94{bottom:613.394955px;}
.y15a{bottom:613.400400px;}
.y199{bottom:613.401240px;}
.y202{bottom:617.896620px;}
.y101{bottom:619.768890px;}
.yd3{bottom:626.657340px;}
.y249{bottom:626.910810px;}
.y11{bottom:630.309195px;}
.y13a{bottom:631.417680px;}
.y201{bottom:631.417815px;}
.y1cc{bottom:631.419240px;}
.y5a{bottom:631.420335px;}
.y93{bottom:631.422855px;}
.y159{bottom:631.428300px;}
.y198{bottom:631.429125px;}
.y11d{bottom:634.139895px;}
.yd2{bottom:640.093560px;}
.y248{bottom:640.432005px;}
.y100{bottom:640.773435px;}
.y200{bottom:644.939010px;}
.y10{bottom:648.337875px;}
.y139{bottom:649.445565px;}
.y1cb{bottom:649.447140px;}
.y59{bottom:649.448235px;}
.y92{bottom:649.450740px;}
.y158{bottom:649.456185px;}
.y197{bottom:649.457025px;}
.y247{bottom:653.953200px;}
.y11c{bottom:655.144440px;}
.y1ff{bottom:658.460205px;}
.yd1{bottom:661.098105px;}
.yff{bottom:661.777965px;}
.yf{bottom:666.281055px;}
.y246{bottom:667.388895px;}
.y1ca{bottom:667.389780px;}
.y58{bottom:667.390860px;}
.y91{bottom:667.393380px;}
.y196{bottom:667.399665px;}
.y1fe{bottom:671.895900px;}
.yfe{bottom:675.299400px;}
.y11b{bottom:676.148970px;}
.y245{bottom:680.910090px;}
.yd0{bottom:682.102635px;}
.ye{bottom:684.309735px;}
.y1fd{bottom:685.417185px;}
.y1c9{bottom:685.417680px;}
.y57{bottom:685.418760px;}
.y90{bottom:685.421280px;}
.y195{bottom:685.427565px;}
.y244{bottom:694.431285px;}
.y17d{bottom:695.366415px;}
.yfd{bottom:696.303930px;}
.y11a{bottom:697.153515px;}
.yd{bottom:702.338415px;}
.ycf{bottom:703.107180px;}
.y1c8{bottom:703.445565px;}
.y56{bottom:703.446660px;}
.y8f{bottom:703.449180px;}
.y194{bottom:703.455465px;}
.y243{bottom:707.961795px;}
.y17a{bottom:708.037410px;}
.y17c{bottom:708.037635px;}
.y17b{bottom:712.714785px;}
.yfc{bottom:717.308475px;}
.y119{bottom:718.158045px;}
.yc{bottom:720.281595px;}
.y177{bottom:720.793215px;}
.y179{bottom:720.793665px;}
.y1c7{bottom:721.388850px;}
.y55{bottom:721.389300px;}
.y8e{bottom:721.391820px;}
.y242{bottom:721.397490px;}
.y193{bottom:721.398090px;}
.yce{bottom:724.111710px;}
.y178{bottom:725.470785px;}
.y176{bottom:733.549485px;}
.y241{bottom:734.918685px;}
.y1fc{bottom:737.206635px;}
.ycd{bottom:737.633145px;}
.yb{bottom:738.310275px;}
.yfb{bottom:738.313005px;}
.y118{bottom:739.162575px;}
.y54{bottom:739.417185px;}
.y8d{bottom:739.419705px;}
.y192{bottom:739.425990px;}
.y240{bottom:748.439880px;}
.y175{bottom:753.279180px;}
.y53{bottom:757.445565px;}
.y8c{bottom:757.447605px;}
.y191{bottom:757.453890px;}
.y1c6{bottom:757.455750px;}
.ycc{bottom:758.637675px;}
.yfa{bottom:759.317550px;}
.y117{bottom:760.167120px;}
.ya{bottom:760.761000px;}
.y23f{bottom:761.961075px;}
.y1fb{bottom:764.163525px;}
.yf9{bottom:772.838970px;}
.y174{bottom:774.283710px;}
.y8b{bottom:775.390245px;}
.y190{bottom:775.396530px;}
.y23e{bottom:775.397895px;}
.y1c5{bottom:775.398375px;}
.y1fa{bottom:777.684720px;}
.y1f8{bottom:777.685440px;}
.y9{bottom:778.789680px;}
.ycb{bottom:779.642220px;}
.y116{bottom:781.086450px;}
.y114{bottom:781.087125px;}
.y1f9{bottom:782.702265px;}
.y115{bottom:786.444030px;}
.y23d{bottom:788.919090px;}
.y1f7{bottom:791.206635px;}
.y8a{bottom:793.418145px;}
.y52{bottom:793.423335px;}
.y18f{bottom:793.424415px;}
.y1c4{bottom:793.426275px;}
.yf8{bottom:793.758315px;}
.y173{bottom:795.288255px;}
.yca{bottom:800.646750px;}
.y8{bottom:801.325905px;}
.y113{bottom:802.091670px;}
.y23c{bottom:802.440285px;}
.y1f6{bottom:804.642330px;}
.yf7{bottom:807.279750px;}
.y1f5{bottom:809.659605px;}
.y89{bottom:811.446030px;}
.y51{bottom:811.451235px;}
.y18e{bottom:811.452315px;}
.y1c3{bottom:811.454175px;}
.y23b{bottom:815.961480px;}
.y172{bottom:816.292785px;}
.y1f4{bottom:818.165325px;}
.y7{bottom:819.269085px;}
.yc9{bottom:821.651295px;}
.y112{bottom:823.096200px;}
.yf6{bottom:828.284280px;}
.y88{bottom:829.388670px;}
.y50{bottom:829.393875px;}
.y18d{bottom:829.394955px;}
.y1c2{bottom:829.396815px;}
.y23a{bottom:829.397175px;}
.yc8{bottom:835.087515px;}
.y171{bottom:837.297450px;}
.y16f{bottom:837.298980px;}
.y170{bottom:842.655030px;}
.y239{bottom:842.918370px;}
.y111{bottom:844.100745px;}
.y1f3{bottom:845.207715px;}
.y6{bottom:846.311745px;}
.y87{bottom:847.417230px;}
.y4f{bottom:847.421760px;}
.y18c{bottom:847.422855px;}
.y1c1{bottom:847.424700px;}
.yf5{bottom:849.288810px;}
.yc7{bottom:856.092060px;}
.y238{bottom:856.439565px;}
.y16e{bottom:858.303510px;}
.y1f2{bottom:858.644535px;}
.y110{bottom:865.105320px;}
.y10e{bottom:865.106565px;}
.y4e{bottom:865.449660px;}
.y18b{bottom:865.450740px;}
.y1c0{bottom:865.452600px;}
.y237{bottom:869.960760px;}
.yf4{bottom:870.293355px;}
.y10f{bottom:870.462705px;}
.y1f1{bottom:872.165730px;}
.yc6{bottom:877.096590px;}
.y16d{bottom:879.308055px;}
.y86{bottom:883.389645px;}
.y4d{bottom:883.392300px;}
.y18a{bottom:883.393380px;}
.y1bf{bottom:883.395240px;}
.y236{bottom:883.396455px;}
.y1f0{bottom:885.686925px;}
.y10d{bottom:886.111110px;}
.yf3{bottom:891.297885px;}
.y235{bottom:896.917650px;}
.yc5{bottom:898.101135px;}
.y1ef{bottom:899.208120px;}
.y16c{bottom:900.312585px;}
.y85{bottom:901.417545px;}
.y4c{bottom:901.420200px;}
.y189{bottom:901.421280px;}
.y1be{bottom:901.423140px;}
.y4{bottom:904.053330px;}
.yf2{bottom:904.819320px;}
.y10c{bottom:907.115640px;}
.y234{bottom:910.438845px;}
.y5{bottom:911.366745px;}
.y1ee{bottom:912.643815px;}
.yc4{bottom:919.105665px;}
.y84{bottom:919.445430px;}
.y4b{bottom:919.448085px;}
.y188{bottom:919.449180px;}
.y1bd{bottom:919.451025px;}
.y16b{bottom:921.317115px;}
.y233{bottom:923.960040px;}
.yf1{bottom:925.823850px;}
.y1ed{bottom:926.165010px;}
.y10b{bottom:928.120185px;}
.y83{bottom:937.388670px;}
.y4a{bottom:937.390725px;}
.y187{bottom:937.391820px;}
.y1bc{bottom:937.393665px;}
.y232{bottom:937.395735px;}
.y3{bottom:940.026630px;}
.yc3{bottom:940.110195px;}
.y16a{bottom:942.321660px;}
.yf0{bottom:946.828395px;}
.y10a{bottom:949.124715px;}
.y231{bottom:950.916930px;}
.y49{bottom:955.418625px;}
.y186{bottom:955.419705px;}
.y1bb{bottom:955.421565px;}
.yc2{bottom:959.839155px;}
.y169{bottom:963.326190px;}
.y1ec{bottom:964.432500px;}
.y230{bottom:964.438125px;}
.yef{bottom:967.832925px;}
.y109{bottom:970.129260px;}
.y82{bottom:973.446330px;}
.y48{bottom:973.446525px;}
.y185{bottom:973.447605px;}
.y1ba{bottom:973.449465px;}
.y1eb{bottom:977.953695px;}
.y22f{bottom:977.959305px;}
.y2{bottom:979.057995px;}
.yc1{bottom:979.568115px;}
.y168{bottom:984.330735px;}
.yee{bottom:988.837470px;}
.y108{bottom:989.858205px;}
.y81{bottom:991.388970px;}
.y47{bottom:991.389150px;}
.y1ea{bottom:991.389390px;}
.y184{bottom:991.390245px;}
.y1b9{bottom:991.392105px;}
.y22e{bottom:991.395015px;}
.yc0{bottom:993.089535px;}
.y1e9{bottom:1004.910585px;}
.y22d{bottom:1004.916210px;}
.y167{bottom:1005.335265px;}
.y80{bottom:1009.416870px;}
.y46{bottom:1009.417050px;}
.y183{bottom:1009.418145px;}
.y1b8{bottom:1009.419990px;}
.y107{bottom:1009.587165px;}
.ybf{bottom:1012.819935px;}
.y1e8{bottom:1018.431780px;}
.y22c{bottom:1018.437390px;}
.y7f{bottom:1027.444755px;}
.y45{bottom:1027.445430px;}
.y182{bottom:1027.446030px;}
.y1b7{bottom:1027.447890px;}
.ybe{bottom:1029.316935px;}
.y1e7{bottom:1031.952975px;}
.y22b{bottom:1031.958585px;}
.y1{bottom:1036.034385px;}
.y7e{bottom:1045.387395px;}
.y44{bottom:1045.388670px;}
.y1b6{bottom:1045.390530px;}
.y22a{bottom:1045.394295px;}
.ybd{bottom:1045.813935px;}
.y43{bottom:1114.950555px;}
.y181{bottom:1129.913670px;}
.ya5{bottom:1129.917945px;}
.y42{bottom:1129.917975px;}
.h12{height:20.185549px;}
.ha{height:21.626539px;}
.h11{height:23.068395px;}
.hf{height:28.376746px;}
.hb{height:30.281567px;}
.h5{height:31.721260px;}
.h9{height:32.444567px;}
.hd{height:34.607567px;}
.h10{height:38.934000px;}
.he{height:39.799633px;}
.hc{height:42.287471px;}
.h8{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:44.557800px;}
.h4{height:47.586433px;}
.h2{height:56.238000px;}
.h3{height:103.824433px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.xf{left:89.036250px;}
.x1{left:91.077150px;}
.xc{left:94.818900px;}
.x11{left:97.030020px;}
.x33{left:107.574690px;}
.x14{left:137.508600px;}
.x31{left:141.930750px;}
.x15{left:143.206350px;}
.x32{left:145.927500px;}
.x3{left:163.700700px;}
.x4{left:169.313400px;}
.x12{left:176.371650px;}
.x13{left:182.069250px;}
.x18{left:195.760650px;}
.x19{left:201.458250px;}
.x1a{left:204.009450px;}
.x1e{left:252.736950px;}
.x10{left:270.680265px;}
.x5{left:272.125950px;}
.x6{left:277.738500px;}
.x1b{left:281.820075px;}
.x1f{left:284.796750px;}
.x20{left:337.011000px;}
.x16{left:353.848800px;}
.x2f{left:354.869250px;}
.x30{left:358.951050px;}
.x1c{left:361.501485px;}
.x17{left:364.308615px;}
.x2b{left:378.595200px;}
.x2c{left:382.932150px;}
.x7{left:403.086450px;}
.x8{left:408.699135px;}
.xd{left:457.086675px;}
.x2e{left:464.995200px;}
.x2d{left:466.100700px;}
.xe{left:469.077345px;}
.x34{left:479.620590px;}
.x9{left:510.406215px;}
.xa{left:520.695930px;}
.x26{left:524.692800px;}
.x21{left:537.533700px;}
.x27{left:555.647100px;}
.x28{left:559.303800px;}
.x22{left:617.640885px;}
.x23{left:649.700685px;}
.x1d{left:653.865990px;}
.x29{left:669.769965px;}
.x2a{left:674.021850px;}
.xb{left:678.699000px;}
.x24{left:729.807765px;}
.x25{left:761.782515px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls51{letter-spacing:-1.239983pt;}
.ls2f{letter-spacing:-1.118495pt;}
.ls30{letter-spacing:-1.113269pt;}
.ls3e{letter-spacing:-1.071456pt;}
.ls33{letter-spacing:-1.066229pt;}
.ls39{letter-spacing:-1.019190pt;}
.ls50{letter-spacing:-1.015986pt;}
.ls4b{letter-spacing:-1.011987pt;}
.ls3f{letter-spacing:-1.008736pt;}
.ls26{letter-spacing:-1.003505pt;}
.ls34{letter-spacing:-0.998283pt;}
.ls27{letter-spacing:-0.993057pt;}
.ls53{letter-spacing:-0.987987pt;}
.ls3a{letter-spacing:-0.987830pt;}
.ls3b{letter-spacing:-0.982603pt;}
.ls2d{letter-spacing:-0.977377pt;}
.ls52{letter-spacing:-0.975987pt;}
.ls3c{letter-spacing:-0.966923pt;}
.ls28{letter-spacing:-0.961697pt;}
.ls4a{letter-spacing:-0.959987pt;}
.ls25{letter-spacing:-0.956470pt;}
.ls41{letter-spacing:-0.951244pt;}
.ls2a{letter-spacing:-0.946017pt;}
.ls40{letter-spacing:-0.940790pt;}
.ls31{letter-spacing:-0.935564pt;}
.ls29{letter-spacing:-0.930337pt;}
.ls38{letter-spacing:-0.925111pt;}
.ls32{letter-spacing:-0.919884pt;}
.ls3d{letter-spacing:-0.914657pt;}
.ls2b{letter-spacing:-0.909431pt;}
.ls23{letter-spacing:-0.898977pt;}
.ls2c{letter-spacing:-0.893751pt;}
.ls24{letter-spacing:-0.846711pt;}
.ls35{letter-spacing:-0.806388pt;}
.ls2e{letter-spacing:-0.804898pt;}
.ls4c{letter-spacing:-0.699991pt;}
.ls22{letter-spacing:-0.669007pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.026114pt;}
.ls44{letter-spacing:0.051986pt;}
.ls45{letter-spacing:0.052042pt;}
.ls2{letter-spacing:0.053349pt;}
.ls12{letter-spacing:0.177681pt;}
.ls1a{letter-spacing:0.177734pt;}
.ls1{letter-spacing:0.245333pt;}
.ls0{letter-spacing:0.357349pt;}
.lsa{letter-spacing:0.475601pt;}
.lse{letter-spacing:0.475654pt;}
.ls37{letter-spacing:0.495993pt;}
.lsb{letter-spacing:0.527888pt;}
.ls36{letter-spacing:0.531993pt;}
.ls10{letter-spacing:0.548794pt;}
.ls6{letter-spacing:0.554021pt;}
.ls9{letter-spacing:0.559248pt;}
.lsc{letter-spacing:0.585381pt;}
.ls7{letter-spacing:0.601061pt;}
.lsd{letter-spacing:0.616740pt;}
.ls8{letter-spacing:0.627194pt;}
.ls17{letter-spacing:0.705593pt;}
.ls18{letter-spacing:0.726499pt;}
.ls42{letter-spacing:0.771990pt;}
.ls49{letter-spacing:0.891988pt;}
.ls4f{letter-spacing:0.943987pt;}
.ls48{letter-spacing:1.008001pt;}
.ls47{letter-spacing:1.051986pt;}
.ls46{letter-spacing:1.063986pt;}
.ls16{letter-spacing:1.128948pt;}
.ls4d{letter-spacing:1.179984pt;}
.ls4e{letter-spacing:1.219984pt;}
.ls1b{letter-spacing:9.846940pt;}
.lsf{letter-spacing:11.059548pt;}
.ls43{letter-spacing:12.003802pt;}
.ls1f{letter-spacing:12.693197pt;}
.ls1d{letter-spacing:12.718774pt;}
.ls1c{letter-spacing:13.474209pt;}
.ls19{letter-spacing:14.728596pt;}
.ls3{letter-spacing:15.601442pt;}
.ls15{letter-spacing:17.650273pt;}
.ls13{letter-spacing:18.632877pt;}
.ls21{letter-spacing:19.521401pt;}
.ls11{letter-spacing:19.834989pt;}
.ls20{letter-spacing:22.882113pt;}
.ls14{letter-spacing:30.925871pt;}
.ls1e{letter-spacing:386.397275pt;}
.ws74{word-spacing:-30.978137pt;}
.wsfa{word-spacing:-22.934379pt;}
.ws10d{word-spacing:-19.573667pt;}
.ws71{word-spacing:-18.685143pt;}
.ws76{word-spacing:-17.702539pt;}
.ws7d{word-spacing:-14.780863pt;}
.wsc6{word-spacing:-13.526475pt;}
.wse6{word-spacing:-12.761440pt;}
.ws1d2{word-spacing:-0.983987pt;}
.ws1d3{word-spacing:-0.931988pt;}
.ws7c{word-spacing:-0.778765pt;}
.ws73{word-spacing:-0.679460pt;}
.ws1c{word-spacing:-0.054933pt;}
.ws26{word-spacing:-0.052266pt;}
.wsdb{word-spacing:-0.048000pt;}
.wscc{word-spacing:-0.042666pt;}
.ws3a{word-spacing:-0.039999pt;}
.ws12e{word-spacing:-0.037333pt;}
.ws48{word-spacing:0.000000pt;}
.ws1be{word-spacing:0.659991pt;}
.wsea{word-spacing:8.059632pt;}
.wscf{word-spacing:8.217498pt;}
.wsbf{word-spacing:8.399168pt;}
.wsd9{word-spacing:8.539200pt;}
.wsc8{word-spacing:8.544000pt;}
.wse2{word-spacing:8.866540pt;}
.ws12d{word-spacing:8.874007pt;}
.ws130{word-spacing:8.903873pt;}
.ws12a{word-spacing:8.997205pt;}
.ws12c{word-spacing:9.168936pt;}
.wse3{word-spacing:9.446400pt;}
.ws1cf{word-spacing:9.459874pt;}
.ws1b5{word-spacing:9.471874pt;}
.ws197{word-spacing:9.535872pt;}
.ws12f{word-spacing:9.542264pt;}
.ws1a1{word-spacing:9.567872pt;}
.ws1c8{word-spacing:9.575872pt;}
.ws1cb{word-spacing:9.595872pt;}
.ws1b2{word-spacing:9.603872pt;}
.ws1bd{word-spacing:9.607872pt;}
.ws1d1{word-spacing:9.635872pt;}
.ws1ce{word-spacing:9.651871pt;}
.ws1b6{word-spacing:9.659871pt;}
.ws1d0{word-spacing:9.691870pt;}
.wse1{word-spacing:9.706528pt;}
.wsa1{word-spacing:9.768540pt;}
.ws84{word-spacing:9.794673pt;}
.ws18e{word-spacing:9.795870pt;}
.ws198{word-spacing:9.823869pt;}
.ws1b3{word-spacing:10.079866pt;}
.wsad{word-spacing:10.097817pt;}
.ws199{word-spacing:10.127865pt;}
.ws190{word-spacing:10.155864pt;}
.ws1b4{word-spacing:10.187864pt;}
.ws18f{word-spacing:10.211864pt;}
.ws1a0{word-spacing:10.227864pt;}
.ws65{word-spacing:10.296428pt;}
.wse{word-spacing:10.346770pt;}
.ws39{word-spacing:10.563860pt;}
.wsf{word-spacing:10.602773pt;}
.ws11{word-spacing:10.650773pt;}
.ws14{word-spacing:10.682773pt;}
.ws41{word-spacing:11.080375pt;}
.ws42{word-spacing:11.113975pt;}
.ws40{word-spacing:11.136374pt;}
.ws44{word-spacing:11.162507pt;}
.ws43{word-spacing:11.166241pt;}
.ws124{word-spacing:11.279032pt;}
.ws12b{word-spacing:11.352904pt;}
.ws194{word-spacing:11.507847pt;}
.ws1de{word-spacing:11.527846pt;}
.ws1dd{word-spacing:11.543846pt;}
.wsda{word-spacing:11.572853pt;}
.ws1db{word-spacing:11.583846pt;}
.wsc9{word-spacing:11.640000pt;}
.ws195{word-spacing:11.671844pt;}
.ws1c3{word-spacing:11.695844pt;}
.ws1b1{word-spacing:11.703844pt;}
.ws196{word-spacing:11.711844pt;}
.wsca{word-spacing:11.712000pt;}
.ws1a4{word-spacing:11.727844pt;}
.ws1c1{word-spacing:11.735843pt;}
.ws1af{word-spacing:11.739843pt;}
.ws1ca{word-spacing:11.747844pt;}
.ws1c0{word-spacing:11.751843pt;}
.ws1ac{word-spacing:11.755843pt;}
.ws1cd{word-spacing:11.759843pt;}
.ws1d6{word-spacing:11.763844pt;}
.ws1b8{word-spacing:11.767843pt;}
.ws1a3{word-spacing:11.771843pt;}
.ws1da{word-spacing:11.775843pt;}
.ws1d7{word-spacing:11.779843pt;}
.ws1a7{word-spacing:11.783843pt;}
.ws19f{word-spacing:11.791842pt;}
.ws3d{word-spacing:11.795842pt;}
.ws1d5{word-spacing:11.803843pt;}
.ws1d9{word-spacing:11.807843pt;}
.ws18a{word-spacing:11.815842pt;}
.ws1aa{word-spacing:11.823843pt;}
.ws1ae{word-spacing:11.831842pt;}
.ws1bb{word-spacing:11.835842pt;}
.ws1a2{word-spacing:11.839842pt;}
.ws1ad{word-spacing:11.847842pt;}
.ws1c4{word-spacing:11.851842pt;}
.ws1a9{word-spacing:11.855842pt;}
.ws3f{word-spacing:11.859842pt;}
.ws1c5{word-spacing:11.875841pt;}
.ws18b{word-spacing:11.883842pt;}
.ws1b0{word-spacing:11.887842pt;}
.ws1a6{word-spacing:11.895841pt;}
.ws1c9{word-spacing:11.899841pt;}
.ws3e{word-spacing:11.903842pt;}
.ws19b{word-spacing:11.919841pt;}
.ws19d{word-spacing:11.923841pt;}
.ws1d8{word-spacing:11.927841pt;}
.ws1ab{word-spacing:11.931841pt;}
.ws1cc{word-spacing:11.935840pt;}
.ws192{word-spacing:11.939841pt;}
.ws3b{word-spacing:11.947841pt;}
.ws1c7{word-spacing:11.951840pt;}
.ws1b9{word-spacing:11.991840pt;}
.ws1b7{word-spacing:11.995840pt;}
.ws1d4{word-spacing:12.003840pt;}
.ws193{word-spacing:12.007840pt;}
.ws1bf{word-spacing:12.011839pt;}
.ws1bc{word-spacing:12.019840pt;}
.ws1dc{word-spacing:12.031839pt;}
.ws1a8{word-spacing:12.043840pt;}
.ws19c{word-spacing:12.067839pt;}
.ws19e{word-spacing:12.071839pt;}
.ws1a5{word-spacing:12.075839pt;}
.ws1c2{word-spacing:12.083839pt;}
.ws1ba{word-spacing:12.115838pt;}
.ws18c{word-spacing:12.119838pt;}
.ws1c6{word-spacing:12.159838pt;}
.ws18d{word-spacing:12.163838pt;}
.wsd8{word-spacing:12.253714pt;}
.ws19a{word-spacing:12.279836pt;}
.ws3c{word-spacing:12.303836pt;}
.wse0{word-spacing:12.304912pt;}
.ws191{word-spacing:12.339835pt;}
.wsec{word-spacing:12.360379pt;}
.wsdd{word-spacing:12.368912pt;}
.wsf1{word-spacing:12.390245pt;}
.wsd2{word-spacing:12.394512pt;}
.ws131{word-spacing:12.428644pt;}
.wsd6{word-spacing:12.432911pt;}
.wse5{word-spacing:12.441460pt;}
.wsf0{word-spacing:12.475577pt;}
.wscb{word-spacing:12.479844pt;}
.ws132{word-spacing:12.484111pt;}
.ws46{word-spacing:12.496910pt;}
.wsdf{word-spacing:12.509711pt;}
.wsd4{word-spacing:12.513976pt;}
.wsdc{word-spacing:12.518243pt;}
.ws45{word-spacing:12.543845pt;}
.ws133{word-spacing:12.560909pt;}
.wse7{word-spacing:12.582242pt;}
.wse8{word-spacing:12.595043pt;}
.wsd7{word-spacing:12.599309pt;}
.wseb{word-spacing:12.637709pt;}
.wsb2{word-spacing:12.667575pt;}
.wscd{word-spacing:12.676109pt;}
.ws47{word-spacing:12.710241pt;}
.wsd0{word-spacing:12.769973pt;}
.ws13c{word-spacing:12.789523pt;}
.wsf4{word-spacing:12.829707pt;}
.ws50{word-spacing:12.993361pt;}
.wsc0{word-spacing:13.003814pt;}
.ws8f{word-spacing:13.108346pt;}
.wsc4{word-spacing:13.139705pt;}
.ws151{word-spacing:13.155386pt;}
.ws140{word-spacing:13.160612pt;}
.wsc5{word-spacing:13.171077pt;}
.ws171{word-spacing:13.186745pt;}
.ws4f{word-spacing:13.233785pt;}
.ws2c{word-spacing:13.306958pt;}
.ws16e{word-spacing:13.348770pt;}
.ws162{word-spacing:13.390584pt;}
.ws70{word-spacing:13.416716pt;}
.ws20{word-spacing:13.442850pt;}
.ws34{word-spacing:13.474209pt;}
.ws13d{word-spacing:13.489890pt;}
.wsbc{word-spacing:13.531701pt;}
.ws7e{word-spacing:13.536929pt;}
.ws104{word-spacing:13.573515pt;}
.ws87{word-spacing:13.657140pt;}
.ws101{word-spacing:13.871431pt;}
.wsc2{word-spacing:13.881886pt;}
.ws169{word-spacing:14.096177pt;}
.ws23{word-spacing:14.106629pt;}
.ws128{word-spacing:14.247748pt;}
.ws9e{word-spacing:14.252975pt;}
.ws16b{word-spacing:14.326148pt;}
.wse4{word-spacing:14.342400pt;}
.ws126{word-spacing:14.383639pt;}
.ws11e{word-spacing:14.472493pt;}
.ws156{word-spacing:14.553332pt;}
.ws8a{word-spacing:14.592585pt;}
.wsaa{word-spacing:14.656373pt;}
.wsa0{word-spacing:14.660650pt;}
.wsa2{word-spacing:14.680907pt;}
.wsb9{word-spacing:14.681556pt;}
.ws11c{word-spacing:14.681557pt;}
.ws6a{word-spacing:14.700534pt;}
.ws8c{word-spacing:14.707689pt;}
.wsb7{word-spacing:14.733822pt;}
.ws127{word-spacing:14.833128pt;}
.ws184{word-spacing:14.869714pt;}
.ws16f{word-spacing:14.886988pt;}
.ws58{word-spacing:14.911522pt;}
.ws49{word-spacing:14.965496pt;}
.ws183{word-spacing:15.052646pt;}
.ws129{word-spacing:15.084006pt;}
.ws64{word-spacing:15.110140pt;}
.ws168{word-spacing:15.131046pt;}
.ws15d{word-spacing:15.256484pt;}
.ws4b{word-spacing:15.303523pt;}
.ws86{word-spacing:15.313977pt;}
.ws98{word-spacing:15.340110pt;}
.ws31{word-spacing:15.392376pt;}
.wsfb{word-spacing:15.428963pt;}
.wsaf{word-spacing:15.455096pt;}
.ws4d{word-spacing:15.465548pt;}
.ws28{word-spacing:15.470775pt;}
.ws57{word-spacing:15.502136pt;}
.ws53{word-spacing:15.528269pt;}
.ws29{word-spacing:15.590987pt;}
.ws188{word-spacing:15.617120pt;}
.ws105{word-spacing:15.700746pt;}
.ws60{word-spacing:15.758239pt;}
.ws69{word-spacing:15.763466pt;}
.ws38{word-spacing:15.768693pt;}
.wsfc{word-spacing:15.815732pt;}
.wsc{word-spacing:15.824159pt;}
.ws110{word-spacing:15.841866pt;}
.ws1b{word-spacing:15.861491pt;}
.wsa9{word-spacing:15.862771pt;}
.ws7{word-spacing:15.866825pt;}
.ws15{word-spacing:15.888158pt;}
.ws67{word-spacing:15.894132pt;}
.ws157{word-spacing:15.915038pt;}
.ws8{word-spacing:15.920159pt;}
.ws16{word-spacing:15.946826pt;}
.wsb{word-spacing:15.957493pt;}
.ws19{word-spacing:15.962826pt;}
.ws13{word-spacing:15.973493pt;}
.ws22{word-spacing:15.988210pt;}
.ws10{word-spacing:15.989493pt;}
.ws12{word-spacing:15.994826pt;}
.wsb6{word-spacing:16.035249pt;}
.ws37{word-spacing:16.108423pt;}
.ws9{word-spacing:16.160151pt;}
.ws170{word-spacing:16.207728pt;}
.wsa{word-spacing:16.240162pt;}
.wsd{word-spacing:16.282833pt;}
.ws18{word-spacing:16.288162pt;}
.ws1d{word-spacing:16.296580pt;}
.ws145{word-spacing:16.343620pt;}
.ws149{word-spacing:16.348846pt;}
.ws17{word-spacing:16.368159pt;}
.wsac{word-spacing:16.374979pt;}
.ws78{word-spacing:16.380207pt;}
.ws1a{word-spacing:16.384131pt;}
.ws189{word-spacing:16.436054pt;}
.ws2b{word-spacing:16.484738pt;}
.ws89{word-spacing:16.521325pt;}
.ws6{word-spacing:16.533529pt;}
.ws75{word-spacing:16.537005pt;}
.ws77{word-spacing:16.599724pt;}
.ws185{word-spacing:16.735616pt;}
.ws2e{word-spacing:16.751296pt;}
.ws14a{word-spacing:16.772202pt;}
.ws16c{word-spacing:16.787883pt;}
.wsfd{word-spacing:16.798335pt;}
.ws33{word-spacing:16.814016pt;}
.ws4c{word-spacing:16.824468pt;}
.ws159{word-spacing:16.840149pt;}
.ws93{word-spacing:16.934227pt;}
.ws116{word-spacing:16.986493pt;}
.ws10f{word-spacing:17.064893pt;}
.ws9b{word-spacing:17.101479pt;}
.ws182{word-spacing:17.148519pt;}
.ws181{word-spacing:17.206011pt;}
.ws148{word-spacing:17.404622pt;}
.ws115{word-spacing:17.477790pt;}
.ws90{word-spacing:17.483022pt;}
.ws108{word-spacing:17.493475pt;}
.wsb5{word-spacing:17.503928pt;}
.ws117{word-spacing:17.514382pt;}
.ws5{word-spacing:17.547360pt;}
.ws1e{word-spacing:17.550967pt;}
.ws4{word-spacing:17.576694pt;}
.ws3{word-spacing:17.588426pt;}
.ws118{word-spacing:17.592780pt;}
.wsb3{word-spacing:17.618914pt;}
.ws80{word-spacing:17.650274pt;}
.ws9a{word-spacing:17.686859pt;}
.ws1f{word-spacing:17.723446pt;}
.ws4e{word-spacing:17.827979pt;}
.ws139{word-spacing:17.922057pt;}
.ws164{word-spacing:18.010910pt;}
.ws141{word-spacing:18.183387pt;}
.ws138{word-spacing:18.308826pt;}
.ws17b{word-spacing:18.314053pt;}
.ws27{word-spacing:18.334959pt;}
.ws25{word-spacing:18.366319pt;}
.ws179{word-spacing:18.387226pt;}
.ws10b{word-spacing:18.408133pt;}
.wsb1{word-spacing:18.434266pt;}
.wsbd{word-spacing:18.455172pt;}
.ws17a{word-spacing:18.460398pt;}
.ws8d{word-spacing:18.528344pt;}
.ws158{word-spacing:18.549250pt;}
.ws14f{word-spacing:18.564931pt;}
.ws21{word-spacing:18.601516pt;}
.ws17f{word-spacing:18.617196pt;}
.ws167{word-spacing:18.789675pt;}
.wsa4{word-spacing:18.831487pt;}
.wsc7{word-spacing:18.862847pt;}
.ws137{word-spacing:18.894207pt;}
.ws14e{word-spacing:18.915113pt;}
.ws152{word-spacing:18.941246pt;}
.ws160{word-spacing:18.967379pt;}
.ws62{word-spacing:19.009193pt;}
.ws13a{word-spacing:19.061459pt;}
.ws122{word-spacing:19.129404pt;}
.ws174{word-spacing:19.155538pt;}
.wsb4{word-spacing:19.186898pt;}
.ws106{word-spacing:19.192125pt;}
.ws11b{word-spacing:19.197350pt;}
.ws8e{word-spacing:19.270524pt;}
.ws10c{word-spacing:19.364602pt;}
.ws125{word-spacing:19.422095pt;}
.ws173{word-spacing:19.432549pt;}
.ws121{word-spacing:19.448218pt;}
.ws56{word-spacing:19.458681pt;}
.ws146{word-spacing:19.474362pt;}
.ws111{word-spacing:19.521400pt;}
.ws10e{word-spacing:19.537080pt;}
.ws175{word-spacing:19.662519pt;}
.ws9c{word-spacing:19.662531pt;}
.ws59{word-spacing:19.735692pt;}
.ws15f{word-spacing:19.808865pt;}
.ws109{word-spacing:19.824544pt;}
.ws97{word-spacing:19.840225pt;}
.ws100{word-spacing:19.850677pt;}
.ws112{word-spacing:19.887263pt;}
.wsa5{word-spacing:19.923851pt;}
.ws9f{word-spacing:20.122461pt;}
.ws9d{word-spacing:20.143367pt;}
.ws119{word-spacing:20.221766pt;}
.ws153{word-spacing:20.300166pt;}
.ws16a{word-spacing:20.341980pt;}
.wsf6{word-spacing:20.373338pt;}
.wsae{word-spacing:20.399471pt;}
.ws180{word-spacing:20.446511pt;}
.wsab{word-spacing:20.493551pt;}
.ws143{word-spacing:20.524911pt;}
.ws11d{word-spacing:20.545817pt;}
.wsa3{word-spacing:20.571951pt;}
.ws5c{word-spacing:20.608536pt;}
.ws16d{word-spacing:20.666029pt;}
.ws15a{word-spacing:20.822827pt;}
.ws15b{word-spacing:20.948266pt;}
.wsf7{word-spacing:20.984853pt;}
.ws0{word-spacing:21.021867pt;}
.ws55{word-spacing:21.209596pt;}
.ws66{word-spacing:21.246183pt;}
.ws114{word-spacing:21.350715pt;}
.wsb8{word-spacing:21.606819pt;}
.ws36{word-spacing:21.815884pt;}
.ws4a{word-spacing:21.941322pt;}
.ws154{word-spacing:22.040629pt;}
.ws6f{word-spacing:22.113802pt;}
.ws24{word-spacing:22.124254pt;}
.ws5f{word-spacing:22.181746pt;}
.ws172{word-spacing:22.239240pt;}
.ws91{word-spacing:22.291506pt;}
.wsbb{word-spacing:22.343772pt;}
.ws92{word-spacing:22.458758pt;}
.ws107{word-spacing:22.578970pt;}
.ws96{word-spacing:22.610330pt;}
.wsf9{word-spacing:22.725314pt;}
.ws17e{word-spacing:22.746221pt;}
.ws54{word-spacing:22.761901pt;}
.ws186{word-spacing:22.991872pt;}
.wsff{word-spacing:23.028459pt;}
.wsc1{word-spacing:23.085952pt;}
.ws81{word-spacing:23.362962pt;}
.ws10a{word-spacing:23.404774pt;}
.ws13f{word-spacing:23.441361pt;}
.ws79{word-spacing:23.828130pt;}
.wsa8{word-spacing:24.026742pt;}
.ws82{word-spacing:24.079008pt;}
.ws15e{word-spacing:24.173087pt;}
.ws30{word-spacing:24.230580pt;}
.ws2f{word-spacing:24.324658pt;}
.ws7a{word-spacing:24.408284pt;}
.ws7b{word-spacing:24.512816pt;}
.ws7f{word-spacing:24.575536pt;}
.ws11f{word-spacing:24.638255pt;}
.ws17c{word-spacing:24.810734pt;}
.ws6c{word-spacing:24.878679pt;}
.ws95{word-spacing:24.977985pt;}
.ws17d{word-spacing:24.988439pt;}
.ws99{word-spacing:25.098198pt;}
.ws35{word-spacing:25.181823pt;}
.ws178{word-spacing:25.474513pt;}
.ws144{word-spacing:25.500646pt;}
.ws6e{word-spacing:25.584272pt;}
.ws177{word-spacing:25.605179pt;}
.ws150{word-spacing:25.626085pt;}
.ws113{word-spacing:25.965815pt;}
.ws68{word-spacing:26.624368pt;}
.ws136{word-spacing:26.744581pt;}
.wsa6{word-spacing:26.786393pt;}
.ws102{word-spacing:26.791619pt;}
.ws14d{word-spacing:26.958871pt;}
.ws163{word-spacing:27.094765pt;}
.ws155{word-spacing:27.382228pt;}
.ws187{word-spacing:28.155767pt;}
.ws6d{word-spacing:28.202805pt;}
.ws32{word-spacing:28.275978pt;}
.wsbe{word-spacing:28.286432pt;}
.ws123{word-spacing:28.364830pt;}
.wsf8{word-spacing:28.505950pt;}
.ws13b{word-spacing:28.537309pt;}
.ws85{word-spacing:28.605254pt;}
.ws11a{word-spacing:28.688880pt;}
.ws13e{word-spacing:28.725466pt;}
.wsfe{word-spacing:29.086103pt;}
.ws63{word-spacing:29.446741pt;}
.ws14c{word-spacing:29.504232pt;}
.ws5b{word-spacing:29.629672pt;}
.ws161{word-spacing:29.713297pt;}
.ws94{word-spacing:29.854416pt;}
.ws5a{word-spacing:30.267317pt;}
.ws165{word-spacing:30.502514pt;}
.ws2a{word-spacing:30.622729pt;}
.ws72{word-spacing:30.857926pt;}
.ws14b{word-spacing:31.584424pt;}
.ws135{word-spacing:31.850983pt;}
.ws52{word-spacing:31.939833pt;}
.ws83{word-spacing:32.091406pt;}
.ws147{word-spacing:32.446815pt;}
.ws51{word-spacing:33.141954pt;}
.ws176{word-spacing:33.183768pt;}
.ws166{word-spacing:33.398059pt;}
.ws103{word-spacing:33.722110pt;}
.ws5d{word-spacing:33.868454pt;}
.wsa7{word-spacing:34.276130pt;}
.ws5e{word-spacing:34.432928pt;}
.ws2d{word-spacing:34.725620pt;}
.ws88{word-spacing:34.736071pt;}
.wsb0{word-spacing:34.966043pt;}
.ws120{word-spacing:35.060123pt;}
.ws142{word-spacing:35.190787pt;}
.ws134{word-spacing:35.347585pt;}
.wsc3{word-spacing:35.425985pt;}
.ws8b{word-spacing:36.586293pt;}
.ws2{word-spacing:38.156960pt;}
.ws1{word-spacing:38.182558pt;}
.ws15c{word-spacing:39.048027pt;}
.ws61{word-spacing:40.354681pt;}
.ws6b{word-spacing:41.206621pt;}
.wsba{word-spacing:42.826871pt;}
.wse9{word-spacing:120.843292pt;}
.wsd1{word-spacing:169.137084pt;}
.wsed{word-spacing:185.465411pt;}
.wsd5{word-spacing:189.574172pt;}
.wsde{word-spacing:194.438111pt;}
.wsf3{word-spacing:205.902489pt;}
.wsf2{word-spacing:210.766428pt;}
.wsd3{word-spacing:214.875189pt;}
.wsee{word-spacing:231.203506pt;}
.wsf5{word-spacing:287.181473pt;}
.wsef{word-spacing:330.376662pt;}
.wsce{word-spacing:394.546526pt;}
._20{margin-left:-30.434569pt;}
._21{margin-left:-29.018159pt;}
._68{margin-left:-22.933051pt;}
._6a{margin-left:-21.355929pt;}
._1f{margin-left:-19.092817pt;}
._1e{margin-left:-17.927284pt;}
._22{margin-left:-17.012626pt;}
._23{margin-left:-15.951625pt;}
._24{margin-left:-14.378461pt;}
._25{margin-left:-13.327722pt;}
._2a{margin-left:-10.259830pt;}
._f{margin-left:-4.824109pt;}
._69{margin-left:-3.815428pt;}
._1c{margin-left:-2.915159pt;}
._a{margin-left:-1.886807pt;}
._b{margin-left:-0.987830pt;}
._8{width:1.013316pt;}
._17{width:2.154659pt;}
._46{width:6.500406pt;}
._0{width:7.959467pt;}
._4b{width:8.848757pt;}
._9{width:9.904127pt;}
._7{width:11.456087pt;}
._13{width:12.551842pt;}
._26{width:13.591687pt;}
._29{width:14.509080pt;}
._5{width:15.402820pt;}
._6{width:16.421501pt;}
._4{width:17.440175pt;}
._c{width:18.810582pt;}
._d{width:19.714784pt;}
._12{width:21.204370pt;}
._16{width:22.213107pt;}
._e{width:23.347283pt;}
._1a{width:24.481455pt;}
._11{width:25.573820pt;}
._1d{width:26.625664pt;}
._1b{width:27.570386pt;}
._1{width:29.223999pt;}
._70{width:30.571755pt;}
._18{width:31.470088pt;}
._15{width:32.922436pt;}
._14{width:34.365633pt;}
._10{width:35.687317pt;}
._6f{width:36.664692pt;}
._72{width:38.078325pt;}
._3{width:39.219362pt;}
._73{width:40.404803pt;}
._19{width:41.353614pt;}
._28{width:43.835603pt;}
._71{width:58.543219pt;}
._30{width:79.227812pt;}
._2e{width:99.416357pt;}
._31{width:104.702695pt;}
._3f{width:106.226946pt;}
._33{width:112.216737pt;}
._55{width:120.153963pt;}
._4d{width:121.346753pt;}
._41{width:122.840064pt;}
._4e{width:127.341239pt;}
._5a{width:128.253790pt;}
._39{width:132.653814pt;}
._48{width:148.482415pt;}
._3e{width:172.495447pt;}
._50{width:176.787132pt;}
._44{width:181.459065pt;}
._2d{width:183.725167pt;}
._3b{width:187.218997pt;}
._6d{width:206.540340pt;}
._60{width:210.511501pt;}
._42{width:214.311983pt;}
._66{width:230.948579pt;}
._2c{width:238.632219pt;}
._34{width:245.334538pt;}
._49{width:247.352641pt;}
._3c{width:248.956888pt;}
._40{width:252.967505pt;}
._32{width:255.100820pt;}
._43{width:258.258105pt;}
._2f{width:264.018033pt;}
._45{width:272.465927pt;}
._3a{width:280.060499pt;}
._3d{width:283.559122pt;}
._56{width:286.926546pt;}
._54{width:287.827765pt;}
._38{width:290.257705pt;}
._4c{width:292.766999pt;}
._64{width:296.090170pt;}
._35{width:304.422861pt;}
._5e{width:309.381745pt;}
._61{width:310.801448pt;}
._37{width:323.067962pt;}
._36{width:330.619867pt;}
._5f{width:345.745541pt;}
._6b{width:354.713441pt;}
._5b{width:360.473352pt;}
._58{width:386.462248pt;}
._65{width:387.566339pt;}
._51{width:418.584643pt;}
._5c{width:422.211264pt;}
._62{width:426.221881pt;}
._4f{width:428.355175pt;}
._67{width:431.512481pt;}
._4a{width:437.272409pt;}
._6c{width:445.720304pt;}
._59{width:453.314875pt;}
._5d{width:456.813498pt;}
._2b{width:459.578255pt;}
._57{width:463.512081pt;}
._52{width:477.677237pt;}
._47{width:496.953758pt;}
._53{width:503.874243pt;}
._6e{width:683.195710pt;}
._63{width:720.908123pt;}
._2{width:1424.224479pt;}
._27{width:1568.471024pt;}
.fsf{font-size:24.885867pt;}
.fs8{font-size:26.662400pt;}
.fse{font-size:28.440000pt;}
.fsc{font-size:34.839467pt;}
.fs9{font-size:37.332800pt;}
.fs3{font-size:39.107733pt;}
.fs7{font-size:39.999467pt;}
.fsa{font-size:42.666133pt;}
.fsd{font-size:48.000000pt;}
.fsb{font-size:49.067200pt;}
.fs6{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:60.017973pt;}
.y40{bottom:70.676480pt;}
.y1e6{bottom:81.260880pt;}
.y7d{bottom:81.262253pt;}
.ya4{bottom:81.262520pt;}
.y1b5{bottom:81.265040pt;}
.y229{bottom:81.265693pt;}
.ybc{bottom:81.269933pt;}
.y157{bottom:81.270507pt;}
.y3f{bottom:81.335000pt;}
.y180{bottom:89.574867pt;}
.y3e{bottom:91.993507pt;}
.y1e5{bottom:93.279720pt;}
.y228{bottom:93.284533pt;}
.y7c{bottom:97.287053pt;}
.ya3{bottom:97.287320pt;}
.y1b4{bottom:97.289840pt;}
.ybb{bottom:97.294720pt;}
.y156{bottom:97.295293pt;}
.yed{bottom:98.348627pt;}
.y3d{bottom:102.652027pt;}
.y17f{bottom:102.953907pt;}
.y227{bottom:105.303373pt;}
.yec{bottom:110.367680pt;}
.y7b{bottom:113.236067pt;}
.ya2{bottom:113.236320pt;}
.y1b3{bottom:113.238853pt;}
.y155{bottom:113.244307pt;}
.yba{bottom:113.319520pt;}
.y138{bottom:115.653467pt;}
.y136{bottom:115.654133pt;}
.y17e{bottom:116.258267pt;}
.y226{bottom:117.246213pt;}
.y137{bottom:120.415733pt;}
.y3c{bottom:125.253667pt;}
.y1e4{bottom:127.900253pt;}
.yeb{bottom:129.038387pt;}
.y7a{bottom:129.260867pt;}
.ya1{bottom:129.261120pt;}
.y1b2{bottom:129.263640pt;}
.y225{bottom:129.265053pt;}
.yb9{bottom:129.268533pt;}
.y154{bottom:129.269107pt;}
.y135{bottom:134.324840pt;}
.y3b{bottom:137.272507pt;}
.y1e3{bottom:139.919093pt;}
.y224{bottom:141.283893pt;}
.y79{bottom:145.285653pt;}
.ya0{bottom:145.285920pt;}
.y1b1{bottom:145.288440pt;}
.yb8{bottom:145.293333pt;}
.y153{bottom:145.293907pt;}
.yea{bottom:147.633347pt;}
.y3a{bottom:149.291347pt;}
.y1e2{bottom:151.937933pt;}
.y134{bottom:152.995533pt;}
.y223{bottom:153.302733pt;}
.y39{bottom:153.751213pt;}
.y34{bottom:157.011987pt;}
.y78{bottom:161.234667pt;}
.y76{bottom:161.234933pt;}
.y1b0{bottom:161.237453pt;}
.y152{bottom:161.242920pt;}
.y38{bottom:161.310773pt;}
.yb7{bottom:161.318120pt;}
.y222{bottom:165.246573pt;}
.ye9{bottom:166.304040pt;}
.y77{bottom:167.055067pt;}
.y1e1{bottom:167.962720pt;}
.y133{bottom:171.666240pt;}
.y33{bottom:173.036773pt;}
.y37{bottom:173.253613pt;}
.y75{bottom:177.259720pt;}
.y73{bottom:177.260280pt;}
.y1af{bottom:177.262253pt;}
.y221{bottom:177.265413pt;}
.yb6{bottom:177.267133pt;}
.y151{bottom:177.267707pt;}
.y36{bottom:177.713347pt;}
.y1e0{bottom:179.905560pt;}
.y74{bottom:183.080267pt;}
.ye8{bottom:184.974747pt;}
.y35{bottom:185.272413pt;}
.y32{bottom:188.985787pt;}
.y220{bottom:189.284240pt;}
.y132{bottom:190.336933pt;}
.y1df{bottom:191.924400pt;}
.y72{bottom:193.285080pt;}
.y1ae{bottom:193.287040pt;}
.y70{bottom:193.288707pt;}
.yb5{bottom:193.291933pt;}
.y150{bottom:193.292507pt;}
.y71{bottom:199.105467pt;}
.y21f{bottom:201.303080pt;}
.ye7{bottom:203.645440pt;}
.y31{bottom:205.010587pt;}
.y130{bottom:209.012360pt;}
.y1ad{bottom:209.236053pt;}
.y6f{bottom:209.237720pt;}
.y14f{bottom:209.241520pt;}
.yb4{bottom:209.316733pt;}
.y21e{bottom:213.245933pt;}
.y131{bottom:213.770000pt;}
.y24{bottom:221.031467pt;}
.y30{bottom:221.035387pt;}
.y1de{bottom:221.631467pt;}
.ye6{bottom:222.316147pt;}
.y1ac{bottom:225.260853pt;}
.y6e{bottom:225.262520pt;}
.y21d{bottom:225.264773pt;}
.yb3{bottom:225.265733pt;}
.y14e{bottom:225.266320pt;}
.y12f{bottom:227.683067pt;}
.y264{bottom:233.276387pt;}
.ye5{bottom:234.335187pt;}
.y23{bottom:236.980480pt;}
.y2f{bottom:236.984400pt;}
.y21c{bottom:237.283600pt;}
.y1ab{bottom:241.285653pt;}
.y6d{bottom:241.287320pt;}
.yb2{bottom:241.290533pt;}
.y14d{bottom:241.291107pt;}
.y263{bottom:245.295227pt;}
.y12e{bottom:246.353760pt;}
.y21b{bottom:249.302440pt;}
.y22{bottom:253.005280pt;}
.ye4{bottom:253.005893pt;}
.y2e{bottom:253.009187pt;}
.y1aa{bottom:257.234653pt;}
.y6c{bottom:257.236320pt;}
.y262{bottom:257.239067pt;}
.y14c{bottom:257.240120pt;}
.y1dd{bottom:257.311720pt;}
.yb1{bottom:257.315333pt;}
.y21a{bottom:261.245293pt;}
.y12d{bottom:265.024467pt;}
.y21{bottom:269.030067pt;}
.y2d{bottom:269.033987pt;}
.y261{bottom:269.257907pt;}
.ye3{bottom:271.676587pt;}
.y1a9{bottom:273.259720pt;}
.y1dc{bottom:273.260733pt;}
.y6b{bottom:273.261120pt;}
.y219{bottom:273.264120pt;}
.yb0{bottom:273.264347pt;}
.y14b{bottom:273.264920pt;}
.y260{bottom:281.276747pt;}
.y12c{bottom:283.695160pt;}
.y20{bottom:284.979080pt;}
.y2c{bottom:284.983000pt;}
.y218{bottom:285.282960pt;}
.y1db{bottom:289.285533pt;}
.y6a{bottom:289.285920pt;}
.yaf{bottom:289.289147pt;}
.y14a{bottom:289.289720pt;}
.ye2{bottom:290.347293pt;}
.y25f{bottom:293.295573pt;}
.y217{bottom:297.301800pt;}
.y1f{bottom:301.003880pt;}
.y2b{bottom:301.007800pt;}
.y12b{bottom:302.365853pt;}
.y1da{bottom:305.234533pt;}
.y69{bottom:305.234933pt;}
.yae{bottom:305.238147pt;}
.y25e{bottom:305.238427pt;}
.y149{bottom:305.238720pt;}
.y1a8{bottom:305.252520pt;}
.ye1{bottom:309.017987pt;}
.y216{bottom:309.244640pt;}
.y1e{bottom:317.028680pt;}
.y2a{bottom:317.032587pt;}
.y25d{bottom:317.257267pt;}
.y12a{bottom:321.036560pt;}
.ye0{bottom:321.037040pt;}
.y68{bottom:321.259720pt;}
.yad{bottom:321.262947pt;}
.y215{bottom:321.263480pt;}
.y148{bottom:321.263520pt;}
.y1a7{bottom:321.277320pt;}
.y25c{bottom:329.276093pt;}
.y1d{bottom:332.977693pt;}
.y29{bottom:332.981600pt;}
.y214{bottom:333.282320pt;}
.y67{bottom:337.284933pt;}
.yac{bottom:337.287747pt;}
.y147{bottom:337.288320pt;}
.y1a6{bottom:337.302120pt;}
.y129{bottom:339.707253pt;}
.ydf{bottom:339.707733pt;}
.y25b{bottom:341.294933pt;}
.y213{bottom:345.301160pt;}
.y1c{bottom:349.002480pt;}
.y28{bottom:349.006400pt;}
.y9f{bottom:353.234533pt;}
.yab{bottom:353.236760pt;}
.y146{bottom:353.237333pt;}
.y25a{bottom:353.237787pt;}
.y1d9{bottom:353.242333pt;}
.y166{bottom:353.250387pt;}
.y1a5{bottom:353.251120pt;}
.y212{bottom:357.244000pt;}
.y128{bottom:358.302227pt;}
.yde{bottom:358.302707pt;}
.y1b{bottom:365.027280pt;}
.y27{bottom:365.031200pt;}
.y259{bottom:365.256613pt;}
.yaa{bottom:369.261547pt;}
.y145{bottom:369.262120pt;}
.y211{bottom:369.262840pt;}
.y1d8{bottom:369.267133pt;}
.y66{bottom:369.268107pt;}
.y165{bottom:369.275173pt;}
.y1a4{bottom:369.275920pt;}
.y127{bottom:376.972920pt;}
.ydd{bottom:376.973400pt;}
.y258{bottom:377.275453pt;}
.y1a{bottom:380.976293pt;}
.y26{bottom:380.980200pt;}
.y210{bottom:381.281680pt;}
.ya9{bottom:385.286347pt;}
.y144{bottom:385.286920pt;}
.y1d7{bottom:385.291933pt;}
.y65{bottom:385.292893pt;}
.y9e{bottom:385.295133pt;}
.y164{bottom:385.299973pt;}
.y1a3{bottom:385.300720pt;}
.y257{bottom:389.294293pt;}
.y20f{bottom:393.300520pt;}
.y126{bottom:395.643627pt;}
.ydc{bottom:395.644107pt;}
.y19{bottom:397.001480pt;}
.y25{bottom:397.005000pt;}
.ya8{bottom:401.235360pt;}
.y143{bottom:401.235933pt;}
.y256{bottom:401.237147pt;}
.y1d6{bottom:401.240947pt;}
.y64{bottom:401.241907pt;}
.y9d{bottom:401.244147pt;}
.y163{bottom:401.248987pt;}
.y1a2{bottom:401.249733pt;}
.y20e{bottom:405.243360pt;}
.ydb{bottom:407.663147pt;}
.y255{bottom:413.255973pt;}
.y125{bottom:414.314320pt;}
.ya7{bottom:417.260160pt;}
.y142{bottom:417.260733pt;}
.y20d{bottom:417.262200pt;}
.y1d5{bottom:417.265733pt;}
.y63{bottom:417.266707pt;}
.y9c{bottom:417.268947pt;}
.y162{bottom:417.273787pt;}
.y1a1{bottom:417.274533pt;}
.y254{bottom:425.274813pt;}
.yda{bottom:426.333853pt;}
.y20c{bottom:429.281040pt;}
.y124{bottom:432.985013pt;}
.ya6{bottom:433.284947pt;}
.y141{bottom:433.285533pt;}
.y1d4{bottom:433.290533pt;}
.y62{bottom:433.291507pt;}
.y9b{bottom:433.293747pt;}
.y161{bottom:433.298573pt;}
.y1a0{bottom:433.299320pt;}
.y253{bottom:437.293653pt;}
.y18{bottom:437.589613pt;}
.y20b{bottom:441.299880pt;}
.yd9{bottom:445.004547pt;}
.y140{bottom:449.234533pt;}
.y252{bottom:449.236493pt;}
.y1d3{bottom:449.239547pt;}
.y61{bottom:449.240507pt;}
.y9a{bottom:449.242747pt;}
.y160{bottom:449.247587pt;}
.y19f{bottom:449.248333pt;}
.y123{bottom:451.655720pt;}
.y20a{bottom:453.242720pt;}
.y17{bottom:460.267173pt;}
.y251{bottom:461.255333pt;}
.yd8{bottom:463.675240pt;}
.y13f{bottom:465.259720pt;}
.y209{bottom:465.261560pt;}
.y1d2{bottom:465.264347pt;}
.y60{bottom:465.265307pt;}
.y99{bottom:465.267547pt;}
.y15f{bottom:465.272387pt;}
.y19e{bottom:465.273133pt;}
.y122{bottom:470.326413pt;}
.y106{bottom:472.742840pt;}
.y250{bottom:473.274173pt;}
.y16{bottom:476.292667pt;}
.y208{bottom:477.280400pt;}
.y1d1{bottom:481.289147pt;}
.y5f{bottom:481.290107pt;}
.y98{bottom:481.292347pt;}
.y15e{bottom:481.297187pt;}
.y19d{bottom:481.297933pt;}
.yd7{bottom:482.345947pt;}
.y105{bottom:484.081747pt;}
.y24f{bottom:485.293013pt;}
.y121{bottom:488.997120pt;}
.y207{bottom:489.299240pt;}
.y15{bottom:492.242160pt;}
.y24e{bottom:497.235853pt;}
.y13e{bottom:497.236760pt;}
.y1d0{bottom:497.238147pt;}
.y5e{bottom:497.239120pt;}
.y97{bottom:497.241360pt;}
.y15d{bottom:497.246200pt;}
.y19c{bottom:497.246933pt;}
.yd6{bottom:501.016640pt;}
.y206{bottom:501.242080pt;}
.y104{bottom:501.620973pt;}
.y120{bottom:507.667813pt;}
.y24d{bottom:509.254693pt;}
.y14{bottom:512.274360pt;}
.y205{bottom:513.260920pt;}
.y13d{bottom:513.261547pt;}
.y1cf{bottom:513.262947pt;}
.y5d{bottom:513.263907pt;}
.y96{bottom:513.266147pt;}
.y15c{bottom:513.270987pt;}
.y19b{bottom:513.271733pt;}
.y103{bottom:513.564293pt;}
.yd5{bottom:519.687347pt;}
.y24c{bottom:521.273533pt;}
.y204{bottom:525.279760pt;}
.y11f{bottom:526.338520pt;}
.y13{bottom:528.299853pt;}
.y13c{bottom:529.286347pt;}
.y1ce{bottom:529.287747pt;}
.y5c{bottom:529.288707pt;}
.y95{bottom:529.290947pt;}
.y15b{bottom:529.295787pt;}
.y19a{bottom:529.296533pt;}
.y102{bottom:532.234987pt;}
.y24b{bottom:533.292373pt;}
.y203{bottom:537.298600pt;}
.yd4{bottom:538.358040pt;}
.y12{bottom:544.249347pt;}
.y11e{bottom:545.009213pt;}
.y24a{bottom:545.235213pt;}
.y13b{bottom:545.235360pt;}
.y1cd{bottom:545.236760pt;}
.y5b{bottom:545.237720pt;}
.y94{bottom:545.239960pt;}
.y15a{bottom:545.244800pt;}
.y199{bottom:545.245547pt;}
.y202{bottom:549.241440pt;}
.y101{bottom:550.905680pt;}
.yd3{bottom:557.028747pt;}
.y249{bottom:557.254053pt;}
.y11{bottom:560.274840pt;}
.y13a{bottom:561.260160pt;}
.y201{bottom:561.260280pt;}
.y1cc{bottom:561.261547pt;}
.y5a{bottom:561.262520pt;}
.y93{bottom:561.264760pt;}
.y159{bottom:561.269600pt;}
.y198{bottom:561.270333pt;}
.y11d{bottom:563.679907pt;}
.yd2{bottom:568.972053pt;}
.y248{bottom:569.272893pt;}
.y100{bottom:569.576387pt;}
.y200{bottom:573.279120pt;}
.y10{bottom:576.300333pt;}
.y139{bottom:577.284947pt;}
.y1cb{bottom:577.286347pt;}
.y59{bottom:577.287320pt;}
.y92{bottom:577.289547pt;}
.y158{bottom:577.294387pt;}
.y197{bottom:577.295133pt;}
.y247{bottom:581.291733pt;}
.y11c{bottom:582.350613pt;}
.y1ff{bottom:585.297960pt;}
.yd1{bottom:587.642760pt;}
.yff{bottom:588.247080pt;}
.yf{bottom:592.249827pt;}
.y246{bottom:593.234573pt;}
.y1ca{bottom:593.235360pt;}
.y58{bottom:593.236320pt;}
.y91{bottom:593.238560pt;}
.y196{bottom:593.244147pt;}
.y1fe{bottom:597.240800pt;}
.yfe{bottom:600.266133pt;}
.y11b{bottom:601.021307pt;}
.y245{bottom:605.253413pt;}
.yd0{bottom:606.313453pt;}
.ye{bottom:608.275320pt;}
.y1fd{bottom:609.259720pt;}
.y1c9{bottom:609.260160pt;}
.y57{bottom:609.261120pt;}
.y90{bottom:609.263360pt;}
.y195{bottom:609.268947pt;}
.y244{bottom:617.272253pt;}
.y17d{bottom:618.103480pt;}
.yfd{bottom:618.936827pt;}
.y11a{bottom:619.692013pt;}
.yd{bottom:624.300813pt;}
.ycf{bottom:624.984160pt;}
.y1c8{bottom:625.284947pt;}
.y56{bottom:625.285920pt;}
.y8f{bottom:625.288160pt;}
.y194{bottom:625.293747pt;}
.y243{bottom:629.299373pt;}
.y17a{bottom:629.366587pt;}
.y17c{bottom:629.366787pt;}
.y17b{bottom:633.524253pt;}
.yfc{bottom:637.607533pt;}
.y119{bottom:638.362707pt;}
.yc{bottom:640.250307pt;}
.y177{bottom:640.705080pt;}
.y179{bottom:640.705480pt;}
.y1c7{bottom:641.234533pt;}
.y55{bottom:641.234933pt;}
.y8e{bottom:641.237173pt;}
.y242{bottom:641.242213pt;}
.y193{bottom:641.242747pt;}
.yce{bottom:643.654853pt;}
.y178{bottom:644.862920pt;}
.y176{bottom:652.043987pt;}
.y241{bottom:653.261053pt;}
.y1fc{bottom:655.294787pt;}
.ycd{bottom:655.673907pt;}
.yb{bottom:656.275800pt;}
.yfb{bottom:656.278227pt;}
.y118{bottom:657.033400pt;}
.y54{bottom:657.259720pt;}
.y8d{bottom:657.261960pt;}
.y192{bottom:657.267547pt;}
.y240{bottom:665.279893pt;}
.y175{bottom:669.581493pt;}
.y53{bottom:673.284947pt;}
.y8c{bottom:673.286760pt;}
.y191{bottom:673.292347pt;}
.y1c6{bottom:673.294000pt;}
.ycc{bottom:674.344600pt;}
.yfa{bottom:674.948933pt;}
.y117{bottom:675.704107pt;}
.ya{bottom:676.232000pt;}
.y23f{bottom:677.298733pt;}
.y1fb{bottom:679.256467pt;}
.yf9{bottom:686.967973pt;}
.y174{bottom:688.252187pt;}
.y8b{bottom:689.235773pt;}
.y190{bottom:689.241360pt;}
.y23e{bottom:689.242573pt;}
.y1c5{bottom:689.243000pt;}
.y1fa{bottom:691.275307pt;}
.y1f8{bottom:691.275947pt;}
.y9{bottom:692.257493pt;}
.ycb{bottom:693.015307pt;}
.y116{bottom:694.299067pt;}
.y114{bottom:694.299667pt;}
.y1f9{bottom:695.735347pt;}
.y115{bottom:699.061360pt;}
.y23d{bottom:701.261413pt;}
.y1f7{bottom:703.294787pt;}
.y8a{bottom:705.260573pt;}
.y52{bottom:705.265187pt;}
.y18f{bottom:705.266147pt;}
.y1c4{bottom:705.267800pt;}
.yf8{bottom:705.562947pt;}
.y173{bottom:706.922893pt;}
.yca{bottom:711.686000pt;}
.y8{bottom:712.289693pt;}
.y113{bottom:712.970373pt;}
.y23c{bottom:713.280253pt;}
.y1f6{bottom:715.237627pt;}
.yf7{bottom:717.582000pt;}
.y1f5{bottom:719.697427pt;}
.y89{bottom:721.285360pt;}
.y51{bottom:721.289987pt;}
.y18e{bottom:721.290947pt;}
.y1c3{bottom:721.292600pt;}
.y23b{bottom:725.299093pt;}
.y172{bottom:725.593587pt;}
.y1f4{bottom:727.258067pt;}
.y7{bottom:728.239187pt;}
.yc9{bottom:730.356707pt;}
.y112{bottom:731.641067pt;}
.yf6{bottom:736.252693pt;}
.y88{bottom:737.234373pt;}
.y50{bottom:737.239000pt;}
.y18d{bottom:737.239960pt;}
.y1c2{bottom:737.241613pt;}
.y23a{bottom:737.241933pt;}
.yc8{bottom:742.300013pt;}
.y171{bottom:744.264400pt;}
.y16f{bottom:744.265760pt;}
.y170{bottom:749.026693pt;}
.y239{bottom:749.260773pt;}
.y111{bottom:750.311773pt;}
.y1f3{bottom:751.295747pt;}
.y6{bottom:752.277107pt;}
.y87{bottom:753.259760pt;}
.y4f{bottom:753.263787pt;}
.y18c{bottom:753.264760pt;}
.y1c1{bottom:753.266400pt;}
.yf5{bottom:754.923387pt;}
.yc7{bottom:760.970720pt;}
.y238{bottom:761.279613pt;}
.y16e{bottom:762.936453pt;}
.y1f2{bottom:763.239587pt;}
.y110{bottom:768.982507pt;}
.y10e{bottom:768.983613pt;}
.y4e{bottom:769.288587pt;}
.y18b{bottom:769.289547pt;}
.y1c0{bottom:769.291200pt;}
.y237{bottom:773.298453pt;}
.yf4{bottom:773.594093pt;}
.y10f{bottom:773.744627pt;}
.y1f1{bottom:775.258427pt;}
.yc6{bottom:779.641413pt;}
.y16d{bottom:781.607160pt;}
.y86{bottom:785.235240pt;}
.y4d{bottom:785.237600pt;}
.y18a{bottom:785.238560pt;}
.y1bf{bottom:785.240213pt;}
.y236{bottom:785.241293pt;}
.y1f0{bottom:787.277267pt;}
.y10d{bottom:787.654320pt;}
.yf3{bottom:792.264787pt;}
.y235{bottom:797.260133pt;}
.yc5{bottom:798.312120pt;}
.y1ef{bottom:799.296107pt;}
.y16c{bottom:800.277853pt;}
.y85{bottom:801.260040pt;}
.y4c{bottom:801.262400pt;}
.y189{bottom:801.263360pt;}
.y1be{bottom:801.265013pt;}
.y4{bottom:803.602960pt;}
.yf2{bottom:804.283840pt;}
.y10c{bottom:806.325013pt;}
.y234{bottom:809.278973pt;}
.y5{bottom:810.103773pt;}
.y1ee{bottom:811.238947pt;}
.yc4{bottom:816.982813pt;}
.y84{bottom:817.284827pt;}
.y4b{bottom:817.287187pt;}
.y188{bottom:817.288160pt;}
.y1bd{bottom:817.289800pt;}
.y16b{bottom:818.948547pt;}
.y233{bottom:821.297813pt;}
.yf1{bottom:822.954533pt;}
.y1ed{bottom:823.257787pt;}
.y10b{bottom:824.995720pt;}
.y83{bottom:833.234373pt;}
.y4a{bottom:833.236200pt;}
.y187{bottom:833.237173pt;}
.y1bc{bottom:833.238813pt;}
.y232{bottom:833.240653pt;}
.y3{bottom:835.579227pt;}
.yc3{bottom:835.653507pt;}
.y16a{bottom:837.619253pt;}
.yf0{bottom:841.625240pt;}
.y10a{bottom:843.666413pt;}
.y231{bottom:845.259493pt;}
.y49{bottom:849.261000pt;}
.y186{bottom:849.261960pt;}
.y1bb{bottom:849.263613pt;}
.yc2{bottom:853.190360pt;}
.y169{bottom:856.289947pt;}
.y1ec{bottom:857.273333pt;}
.y230{bottom:857.278333pt;}
.yef{bottom:860.295933pt;}
.y109{bottom:862.337120pt;}
.y82{bottom:865.285627pt;}
.y48{bottom:865.285800pt;}
.y185{bottom:865.286760pt;}
.y1ba{bottom:865.288413pt;}
.y1eb{bottom:869.292173pt;}
.y22f{bottom:869.297160pt;}
.y2{bottom:870.273773pt;}
.yc1{bottom:870.727213pt;}
.y168{bottom:874.960653pt;}
.yee{bottom:878.966640pt;}
.y108{bottom:879.873960pt;}
.y81{bottom:881.234640pt;}
.y47{bottom:881.234800pt;}
.y1ea{bottom:881.235013pt;}
.y184{bottom:881.235773pt;}
.y1b9{bottom:881.237427pt;}
.y22e{bottom:881.240013pt;}
.yc0{bottom:882.746253pt;}
.y1e9{bottom:893.253853pt;}
.y22d{bottom:893.258853pt;}
.y167{bottom:893.631347pt;}
.y80{bottom:897.259440pt;}
.y46{bottom:897.259600pt;}
.y183{bottom:897.260573pt;}
.y1b8{bottom:897.262213pt;}
.y107{bottom:897.410813pt;}
.ybf{bottom:900.284387pt;}
.y1e8{bottom:905.272693pt;}
.y22c{bottom:905.277680pt;}
.y7f{bottom:913.284227pt;}
.y45{bottom:913.284827pt;}
.y182{bottom:913.285360pt;}
.y1b7{bottom:913.287013pt;}
.ybe{bottom:914.948387pt;}
.y1e7{bottom:917.291533pt;}
.y22b{bottom:917.296520pt;}
.y1{bottom:920.919453pt;}
.y7e{bottom:929.233240pt;}
.y44{bottom:929.234373pt;}
.y1b6{bottom:929.236027pt;}
.y22a{bottom:929.239373pt;}
.ybd{bottom:929.612387pt;}
.y43{bottom:991.067160pt;}
.y181{bottom:1004.367707pt;}
.ya5{bottom:1004.371507pt;}
.y42{bottom:1004.371533pt;}
.h12{height:17.942710pt;}
.ha{height:19.223590pt;}
.h11{height:20.505240pt;}
.hf{height:25.223774pt;}
.hb{height:26.916949pt;}
.h5{height:28.196676pt;}
.h9{height:28.839615pt;}
.hd{height:30.762282pt;}
.h10{height:34.608000pt;}
.he{height:35.377451pt;}
.hc{height:37.588863pt;}
.h8{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.606933pt;}
.h4{height:42.299051pt;}
.h2{height:49.989333pt;}
.h3{height:92.288385pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.xf{left:79.143333pt;}
.x1{left:80.957467pt;}
.xc{left:84.283467pt;}
.x11{left:86.248907pt;}
.x33{left:95.621947pt;}
.x14{left:122.229867pt;}
.x31{left:126.160667pt;}
.x15{left:127.294533pt;}
.x32{left:129.713333pt;}
.x3{left:145.511733pt;}
.x4{left:150.500800pt;}
.x12{left:156.774800pt;}
.x13{left:161.839333pt;}
.x18{left:174.009467pt;}
.x19{left:179.074000pt;}
.x1a{left:181.341733pt;}
.x1e{left:224.655067pt;}
.x10{left:240.604680pt;}
.x5{left:241.889733pt;}
.x6{left:246.878667pt;}
.x1b{left:250.506733pt;}
.x1f{left:253.152667pt;}
.x20{left:299.565333pt;}
.x16{left:314.532267pt;}
.x2f{left:315.439333pt;}
.x30{left:319.067600pt;}
.x1c{left:321.334653pt;}
.x17{left:323.829880pt;}
.x2b{left:336.529067pt;}
.x2c{left:340.384133pt;}
.x7{left:358.299067pt;}
.x8{left:363.288120pt;}
.xd{left:406.299267pt;}
.x2e{left:413.329067pt;}
.x2d{left:414.311733pt;}
.xe{left:416.957640pt;}
.x34{left:426.329413pt;}
.x9{left:453.694413pt;}
.xa{left:462.840827pt;}
.x26{left:466.393600pt;}
.x21{left:477.807733pt;}
.x27{left:493.908533pt;}
.x28{left:497.158933pt;}
.x22{left:549.014120pt;}
.x23{left:577.511720pt;}
.x1d{left:581.214213pt;}
.x29{left:595.351080pt;}
.x2a{left:599.130533pt;}
.xb{left:603.288000pt;}
.x24{left:648.718013pt;}
.x25{left:677.140013pt;}
}




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