
    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_8aa58d687934fd7f672efbba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_dd264e2ac41de5f713be5ff9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949000;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_d04d700bd52d13fc5b11c988.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_15e54c0d6a998968bd7e4ec1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.678000;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_798a34edf0d39a69e903c27a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fc76e32715a45ed47a7d39f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.917000;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_f89b1aac35292c73c3c8b9a4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.533000;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_f5b6907e4686253c53914b5f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918000;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_858369ce01b426e3eba31c3f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.263000;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_69d0ec2061d7f47135cddfb4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.922000;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_2a8df56d238e3ff8a33eeb32.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.478000;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_486af0586ef3546f509d9ae5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.674438;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_c29ba0e1612ee3b45d00f42d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.574000;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_f15ad06dd23e621400074a41.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.590000;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_c174923b43f16bc0ce50576c.woff2')format("woff");}.fff{font-family:fff;line-height:0.680000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-2.719790px;}
.v2{vertical-align:-1.018592px;}
.v0{vertical-align:0.000000px;}
.ls28{letter-spacing:-0.952221px;}
.ls2e{letter-spacing:-0.919942px;}
.ls2f{letter-spacing:-0.790828px;}
.ls2c{letter-spacing:-0.785448px;}
.ls25{letter-spacing:-0.774688px;}
.ls29{letter-spacing:-0.763929px;}
.ls2d{letter-spacing:-0.753169px;}
.ls2a{letter-spacing:-0.747789px;}
.ls2b{letter-spacing:-0.737030px;}
.ls26{letter-spacing:-0.726270px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004184px;}
.lsa{letter-spacing:0.037658px;}
.ls14{letter-spacing:0.086076px;}
.lsd{letter-spacing:0.086078px;}
.lsc{letter-spacing:0.133899px;}
.ls17{letter-spacing:0.150634px;}
.ls22{letter-spacing:0.179924px;}
.ls6{letter-spacing:0.236710px;}
.ls30{letter-spacing:0.506298px;}
.ls3{letter-spacing:3.351608px;}
.ls31{letter-spacing:4.435337px;}
.ls1{letter-spacing:7.163487px;}
.ls0{letter-spacing:7.459995px;}
.ls27{letter-spacing:8.053531px;}
.ls21{letter-spacing:8.392457px;}
.ls1a{letter-spacing:9.070309px;}
.lse{letter-spacing:11.362317px;}
.ls1b{letter-spacing:13.164322px;}
.ls1c{letter-spacing:13.503248px;}
.lsf{letter-spacing:14.083343px;}
.ls7{letter-spacing:14.525406px;}
.ls4{letter-spacing:15.268438px;}
.ls11{letter-spacing:15.780996px;}
.ls18{letter-spacing:15.953152px;}
.ls10{letter-spacing:16.120527px;}
.lsb{letter-spacing:16.966962px;}
.ls12{letter-spacing:17.247575px;}
.ls19{letter-spacing:17.505804px;}
.ls15{letter-spacing:17.925427px;}
.ls16{letter-spacing:18.264353px;}
.ls13{letter-spacing:21.669754px;}
.ls1f{letter-spacing:22.008680px;}
.ls20{letter-spacing:22.347606px;}
.ls1d{letter-spacing:25.408701px;}
.ls8{letter-spacing:26.769785px;}
.ls1e{letter-spacing:27.791943px;}
.ls9{letter-spacing:37.314154px;}
.ls24{letter-spacing:208.402250px;}
.ls23{letter-spacing:237.654551px;}
.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;}
}
.ws100{word-spacing:-17.559602px;}
.ws17b{word-spacing:-8.446255px;}
.ws176{word-spacing:-8.107328px;}
.ws1{word-spacing:-0.119552px;}
.ws3{word-spacing:-0.059776px;}
.wsca{word-spacing:-0.053798px;}
.wsbb{word-spacing:-0.047821px;}
.ws1d{word-spacing:-0.041843px;}
.ws61{word-spacing:0.000000px;}
.ws17f{word-spacing:0.683232px;}
.ws1f6{word-spacing:4.247044px;}
.ws17a{word-spacing:5.083892px;}
.ws1c9{word-spacing:7.121645px;}
.wsf0{word-spacing:7.651392px;}
.wsec{word-spacing:7.680085px;}
.wse3{word-spacing:7.737470px;}
.ws145{word-spacing:8.677585px;}
.ws140{word-spacing:9.016511px;}
.ws179{word-spacing:9.834238px;}
.ws1ab{word-spacing:10.006391px;}
.wsa0{word-spacing:10.017150px;}
.ws177{word-spacing:10.173164px;}
.ws22a{word-spacing:10.209643px;}
.ws1ea{word-spacing:10.377014px;}
.ws219{word-spacing:10.381199px;}
.ws10a{word-spacing:10.409874px;}
.ws10b{word-spacing:10.555128px;}
.ws229{word-spacing:10.573676px;}
.ws1f8{word-spacing:10.594597px;}
.ws1ae{word-spacing:10.824117px;}
.wsed{word-spacing:10.946273px;}
.ws186{word-spacing:10.963992px;}
.ws223{word-spacing:11.071605px;}
.wsee{word-spacing:11.075390px;}
.ws181{word-spacing:11.200702px;}
.ws221{word-spacing:11.259897px;}
.ws218{word-spacing:11.268266px;}
.wsef{word-spacing:11.347971px;}
.ws1e7{word-spacing:11.548613px;}
.ws21c{word-spacing:11.573718px;}
.ws21d{word-spacing:11.607193px;}
.ws178{word-spacing:11.641844px;}
.ws1a7{word-spacing:11.711781px;}
.ws220{word-spacing:11.724353px;}
.ws20f{word-spacing:11.762011px;}
.ws15e{word-spacing:11.768797px;}
.ws175{word-spacing:11.937732px;}
.ws22e{word-spacing:11.958672px;}
.ws1a6{word-spacing:12.120644px;}
.ws180{word-spacing:12.152923px;}
.ws15d{word-spacing:12.227881px;}
.ws228{word-spacing:12.276678px;}
.wsd5{word-spacing:12.481090px;}
.ws146{word-spacing:12.491849px;}
.wsa8{word-spacing:12.497229px;}
.wsa5{word-spacing:12.561786px;}
.ws1c1{word-spacing:12.583305px;}
.ws86{word-spacing:12.604825px;}
.ws1c3{word-spacing:12.615584px;}
.ws135{word-spacing:12.696281px;}
.ws1c0{word-spacing:12.712420px;}
.ws1c2{word-spacing:12.739319px;}
.wsb1{word-spacing:12.744699px;}
.ws1d7{word-spacing:12.801735px;}
.ws39{word-spacing:12.830775px;}
.ws8e{word-spacing:12.836155px;}
.ws201{word-spacing:12.875030px;}
.wsa9{word-spacing:12.895333px;}
.ws1f7{word-spacing:12.921057px;}
.ws1f5{word-spacing:12.954531px;}
.ws1e4{word-spacing:12.958715px;}
.ws1a5{word-spacing:13.008308px;}
.ws1fb{word-spacing:13.029848px;}
.ws14d{word-spacing:13.035207px;}
.ws1dd{word-spacing:13.059138px;}
.ws36{word-spacing:13.062106px;}
.wsc2{word-spacing:13.105144px;}
.ws1df{word-spacing:13.117718px;}
.ws127{word-spacing:13.169701px;}
.ws163{word-spacing:13.207360px;}
.ws113{word-spacing:13.218119px;}
.ws13{word-spacing:13.223499px;}
.ws161{word-spacing:13.288057px;}
.ws18a{word-spacing:13.433311px;}
.ws162{word-spacing:13.470969px;}
.wsb{word-spacing:13.514007px;}
.wsf1{word-spacing:13.576439px;}
.ws5e{word-spacing:13.626983px;}
.wsf4{word-spacing:13.657735px;}
.ws112{word-spacing:13.713059px;}
.ws1e3{word-spacing:13.724438px;}
.ws1f{word-spacing:13.736991px;}
.ws25{word-spacing:13.741176px;}
.ws20a{word-spacing:13.770465px;}
.ws1ed{word-spacing:13.778834px;}
.ws103{word-spacing:13.799136px;}
.ws1f9{word-spacing:13.803940px;}
.ws1e5{word-spacing:13.808124px;}
.ws2d{word-spacing:13.812308px;}
.ws227{word-spacing:13.824861px;}
.ws1f4{word-spacing:13.837414px;}
.ws2e{word-spacing:13.845783px;}
.ws209{word-spacing:13.849967px;}
.ws23{word-spacing:13.879257px;}
.ws22c{word-spacing:13.883441px;}
.wsf3{word-spacing:13.892059px;}
.ws1b9{word-spacing:13.908547px;}
.wsf2{word-spacing:13.911187px;}
.ws168{word-spacing:13.912111px;}
.ws202{word-spacing:13.912731px;}
.ws28{word-spacing:13.916915px;}
.ws20b{word-spacing:13.929468px;}
.ws2c{word-spacing:13.946205px;}
.ws2b{word-spacing:13.950390px;}
.ws1e1{word-spacing:13.958758px;}
.ws1de{word-spacing:13.979679px;}
.ws1f0{word-spacing:13.992232px;}
.ws96{word-spacing:13.992808px;}
.ws1bd{word-spacing:14.017338px;}
.ws1fc{word-spacing:14.021522px;}
.ws21{word-spacing:14.029891px;}
.ws200{word-spacing:14.046628px;}
.ws1dc{word-spacing:14.063365px;}
.ws217{word-spacing:14.067549px;}
.ws22b{word-spacing:14.088471px;}
.ws1c5{word-spacing:14.092655px;}
.ws1bb{word-spacing:14.096839px;}
.ws139{word-spacing:14.111163px;}
.ws20d{word-spacing:14.134498px;}
.ws22f{word-spacing:14.147051px;}
.ws1a2{word-spacing:14.148821px;}
.ws20{word-spacing:14.155419px;}
.ws1e{word-spacing:14.159604px;}
.wsc3{word-spacing:14.170341px;}
.ws138{word-spacing:14.181100px;}
.ws1a4{word-spacing:14.186480px;}
.ws70{word-spacing:14.191860px;}
.ws9{word-spacing:14.209815px;}
.ws22{word-spacing:14.230736px;}
.ws1ba{word-spacing:14.234921px;}
.ws9d{word-spacing:14.261797px;}
.ws21a{word-spacing:14.276763px;}
.ws1a1{word-spacing:14.304835px;}
.ws15{word-spacing:14.315595px;}
.ws21e{word-spacing:14.318606px;}
.ws24{word-spacing:14.331159px;}
.wsda{word-spacing:14.389399px;}
.ws1f3{word-spacing:14.477609px;}
.ws6f{word-spacing:14.530786px;}
.ws76{word-spacing:14.546925px;}
.ws1f1{word-spacing:14.586400px;}
.ws1e8{word-spacing:14.615690px;}
.ws5b{word-spacing:14.649141px;}
.wsb0{word-spacing:14.681420px;}
.ws6{word-spacing:14.695191px;}
.wsaf{word-spacing:14.848193px;}
.ws8{word-spacing:14.862563px;}
.wsfb{word-spacing:14.869712px;}
.ws9f{word-spacing:14.885851px;}
.ws73{word-spacing:14.891231px;}
.ws7{word-spacing:14.896037px;}
.ws184{word-spacing:14.918130px;}
.ws9e{word-spacing:14.982687px;}
.ws149{word-spacing:15.020346px;}
.wsdd{word-spacing:15.087589px;}
.ws4d{word-spacing:15.106422px;}
.wsa6{word-spacing:15.181739px;}
.ws147{word-spacing:15.192499px;}
.ws6b{word-spacing:15.214018px;}
.ws1e0{word-spacing:15.214042px;}
.ws1b2{word-spacing:15.246297px;}
.wsdc{word-spacing:15.254963px;}
.ws10{word-spacing:15.273195px;}
.ws11{word-spacing:15.283955px;}
.ws1da{word-spacing:15.285175px;}
.ws1a3{word-spacing:15.289335px;}
.ws160{word-spacing:15.307566px;}
.ws1d4{word-spacing:15.336259px;}
.wsbe{word-spacing:15.350605px;}
.ws1a8{word-spacing:15.370031px;}
.ws1d8{word-spacing:15.384080px;}
.ws150{word-spacing:15.386171px;}
.wsf{word-spacing:15.418449px;}
.wsde{word-spacing:15.427119px;}
.wsdb{word-spacing:15.431901px;}
.ws27{word-spacing:15.477652px;}
.ws109{word-spacing:15.552696px;}
.wsd{word-spacing:15.606742px;}
.wsbd{word-spacing:15.613622px;}
.ws22d{word-spacing:15.674313px;}
.ws14c{word-spacing:15.676679px;}
.wse4{word-spacing:15.723611px;}
.ws192{word-spacing:15.757376px;}
.ws26{word-spacing:15.778920px;}
.wsf5{word-spacing:15.804907px;}
.ws13a{word-spacing:15.821933px;}
.ws29{word-spacing:15.829131px;}
.ws105{word-spacing:15.854212px;}
.ws129{word-spacing:15.870351px;}
.ws104{word-spacing:15.881111px;}
.ws2a{word-spacing:15.887711px;}
.ws43{word-spacing:15.891870px;}
.ws128{word-spacing:15.897250px;}
.ws17{word-spacing:15.918769px;}
.ws194{word-spacing:15.956427px;}
.ws18{word-spacing:15.961807px;}
.ws1f2{word-spacing:15.971397px;}
.wsd4{word-spacing:16.004845px;}
.ws53{word-spacing:16.031744px;}
.ws1ff{word-spacing:16.188979px;}
.ws6d{word-spacing:16.193138px;}
.ws136{word-spacing:16.230796px;}
.ws1e6{word-spacing:16.230822px;}
.ws6c{word-spacing:16.241556px;}
.ws14{word-spacing:16.257695px;}
.wsf6{word-spacing:16.349151px;}
.wsea{word-spacing:16.378761px;}
.ws6e{word-spacing:16.386810px;}
.ws1b3{word-spacing:16.424468px;}
.ws77{word-spacing:16.435228px;}
.ws111{word-spacing:16.483646px;}
.ws54{word-spacing:16.537444px;}
.wseb{word-spacing:16.598739px;}
.ws226{word-spacing:16.599039px;}
.ws191{word-spacing:16.612761px;}
.wse9{word-spacing:16.627431px;}
.ws1d9{word-spacing:16.636697px;}
.ws3f{word-spacing:16.688078px;}
.ws10d{word-spacing:16.720356px;}
.ws11f{word-spacing:16.731470px;}
.ws224{word-spacing:16.766410px;}
.ws8f{word-spacing:16.774154px;}
.ws10c{word-spacing:16.833332px;}
.ws72{word-spacing:16.914028px;}
.ws65{word-spacing:16.994725px;}
.ws225{word-spacing:17.122074px;}
.ws1af{word-spacing:17.145359px;}
.ws1d6{word-spacing:17.148682px;}
.ws56{word-spacing:17.215296px;}
.wsfa{word-spacing:17.252954px;}
.ws130{word-spacing:17.274474px;}
.wsb5{word-spacing:17.306492px;}
.ws107{word-spacing:17.306752px;}
.ws120{word-spacing:17.328271px;}
.ws215{word-spacing:17.385683px;}
.ws1eb{word-spacing:17.440079px;}
.ws101{word-spacing:17.452006px;}
.ws81{word-spacing:17.457386px;}
.wsb6{word-spacing:17.478649px;}
.wsb7{word-spacing:17.507341px;}
.ws19c{word-spacing:17.511184px;}
.ws13b{word-spacing:17.591881px;}
.ws5f{word-spacing:17.597260px;}
.ws1b{word-spacing:17.599082px;}
.ws68{word-spacing:17.629539px;}
.ws1d0{word-spacing:17.710236px;}
.ws108{word-spacing:17.715616px;}
.wsff{word-spacing:17.726375px;}
.ws134{word-spacing:17.731755px;}
.wsbc{word-spacing:17.746447px;}
.ws11e{word-spacing:17.753274px;}
.ws1c{word-spacing:17.762269px;}
.ws9b{word-spacing:17.769413px;}
.ws1b6{word-spacing:17.774793px;}
.ws19{word-spacing:17.780173px;}
.ws110{word-spacing:17.796312px;}
.ws15c{word-spacing:17.818179px;}
.ws21f{word-spacing:17.833401px;}
.ws154{word-spacing:17.844730px;}
.wsf8{word-spacing:17.850110px;}
.ws1b5{word-spacing:17.860870px;}
.ws1b7{word-spacing:17.871629px;}
.ws14b{word-spacing:17.893148px;}
.ws3a{word-spacing:17.898528px;}
.wsc8{word-spacing:17.903908px;}
.ws4f{word-spacing:17.930807px;}
.ws1d1{word-spacing:17.957706px;}
.ws142{word-spacing:18.000744px;}
.wsc6{word-spacing:18.049162px;}
.wsba{word-spacing:18.052503px;}
.ws21b{word-spacing:18.080274px;}
.ws4a{word-spacing:18.102960px;}
.wsc7{word-spacing:18.124479px;}
.ws1b8{word-spacing:18.129859px;}
.ws97{word-spacing:18.135238px;}
.ws1db{word-spacing:18.147222px;}
.ws125{word-spacing:18.156758px;}
.ws1a{word-spacing:18.168144px;}
.ws16d{word-spacing:18.194416px;}
.ws4b{word-spacing:18.199796px;}
.wsa7{word-spacing:18.201670px;}
.wscf{word-spacing:18.275113px;}
.ws12a{word-spacing:18.291252px;}
.ws30{word-spacing:18.307391px;}
.ws1b4{word-spacing:18.350430px;}
.ws79{word-spacing:18.388088px;}
.ws40{word-spacing:18.420367px;}
.ws17e{word-spacing:18.436506px;}
.wse{word-spacing:18.463405px;}
.wsc9{word-spacing:18.479544px;}
.ws1ef{word-spacing:18.548913px;}
.wsad{word-spacing:18.592520px;}
.ws106{word-spacing:18.603279px;}
.ws90{word-spacing:18.614039px;}
.ws1ee{word-spacing:18.615862px;}
.wsac{word-spacing:18.619419px;}
.ws13e{word-spacing:18.630178px;}
.wsc{word-spacing:18.737774px;}
.ws35{word-spacing:18.796951px;}
.ws11c{word-spacing:18.856129px;}
.ws41{word-spacing:18.872268px;}
.wscc{word-spacing:18.904547px;}
.ws174{word-spacing:18.958345px;}
.ws18e{word-spacing:18.990623px;}
.ws3e{word-spacing:19.028282px;}
.ws83{word-spacing:19.071320px;}
.ws16{word-spacing:19.157397px;}
.ws203{word-spacing:19.243504px;}
.ws50{word-spacing:19.254233px;}
.ws51{word-spacing:19.264992px;}
.ws204{word-spacing:19.302084px;}
.ws64{word-spacing:19.302651px;}
.wscb{word-spacing:19.345689px;}
.wsa2{word-spacing:19.437145px;}
.ws199{word-spacing:19.464044px;}
.ws57{word-spacing:19.609298px;}
.ws172{word-spacing:19.630817px;}
.ws45{word-spacing:19.652336px;}
.ws18c{word-spacing:19.716894px;}
.ws9c{word-spacing:19.923207px;}
.ws1d5{word-spacing:20.006893px;}
.ws7b{word-spacing:20.030804px;}
.ws33{word-spacing:20.034301px;}
.ws7f{word-spacing:20.088099px;}
.ws5{word-spacing:20.096557px;}
.ws14f{word-spacing:20.147276px;}
.ws4{word-spacing:20.156332px;}
.ws1cc{word-spacing:20.184935px;}
.wsf9{word-spacing:20.216108px;}
.wsa3{word-spacing:20.244112px;}
.ws2{word-spacing:20.251973px;}
.ws214{word-spacing:20.260284px;}
.ws71{word-spacing:20.314049px;}
.ws19a{word-spacing:20.410885px;}
.ws143{word-spacing:20.427025px;}
.ws80{word-spacing:20.448544px;}
.wse6{word-spacing:20.500948px;}
.ws8c{word-spacing:20.518481px;}
.wse5{word-spacing:20.520077px;}
.ws7c{word-spacing:20.532919px;}
.ws144{word-spacing:20.545380px;}
.ws8b{word-spacing:20.604557px;}
.ws1ec{word-spacing:20.737292px;}
.ws1fe{word-spacing:20.749845px;}
.wse7{word-spacing:20.759183px;}
.wse8{word-spacing:20.811786px;}
.ws193{word-spacing:20.916585px;}
.ws18f{word-spacing:20.954243px;}
.ws208{word-spacing:20.984164px;}
.wsfc{word-spacing:21.013421px;}
.wsb3{word-spacing:21.031764px;}
.wsa{word-spacing:21.051079px;}
.ws206{word-spacing:21.101324px;}
.ws216{word-spacing:21.143167px;}
.wsb2{word-spacing:21.266088px;}
.ws1fa{word-spacing:21.373302px;}
.ws207{word-spacing:21.465356px;}
.ws141{word-spacing:21.502981px;}
.ws148{word-spacing:21.519120px;}
.ws102{word-spacing:21.589057px;}
.ws205{word-spacing:21.590885px;}
.ws1d2{word-spacing:21.632095px;}
.wsd3{word-spacing:21.675134px;}
.ws10f{word-spacing:21.691273px;}
.ws155{word-spacing:21.734311px;}
.ws15f{word-spacing:21.792121px;}
.ws4e{word-spacing:21.922603px;}
.wsd7{word-spacing:21.938743px;}
.ws10e{word-spacing:21.976401px;}
.ws14e{word-spacing:21.987161px;}
.ws74{word-spacing:22.014060px;}
.ws18d{word-spacing:22.073237px;}
.ws170{word-spacing:22.105516px;}
.ws1cf{word-spacing:22.240011px;}
.wsb9{word-spacing:22.246422px;}
.ws198{word-spacing:22.293808px;}
.ws213{word-spacing:22.302212px;}
.ws16f{word-spacing:22.315327px;}
.ws95{word-spacing:22.352986px;}
.ws38{word-spacing:22.471341px;}
.wsa1{word-spacing:22.498240px;}
.ws133{word-spacing:22.595076px;}
.ws34{word-spacing:22.654254px;}
.ws8d{word-spacing:22.702672px;}
.wsb8{word-spacing:22.738981px;}
.ws15a{word-spacing:22.748545px;}
.ws159{word-spacing:23.088075px;}
.ws1e2{word-spacing:23.147437px;}
.ws16c{word-spacing:23.229890px;}
.ws137{word-spacing:23.305207px;}
.wsf7{word-spacing:23.348245px;}
.ws20c{word-spacing:23.486364px;}
.ws15b{word-spacing:23.508902px;}
.ws12f{word-spacing:23.509639px;}
.ws62{word-spacing:23.525778px;}
.ws60{word-spacing:23.561505px;}
.ws114{word-spacing:23.568816px;}
.wsd9{word-spacing:23.703311px;}
.ws12c{word-spacing:23.730210px;}
.ws12d{word-spacing:23.800147px;}
.ws3d{word-spacing:23.864704px;}
.ws84{word-spacing:23.907742px;}
.ws5c{word-spacing:23.913122px;}
.wsd0{word-spacing:23.918502px;}
.ws3c{word-spacing:24.316606px;}
.ws1b1{word-spacing:24.499518px;}
.ws19b{word-spacing:24.510278px;}
.wsfe{word-spacing:24.596354px;}
.ws66{word-spacing:24.730849px;}
.ws88{word-spacing:24.800786px;}
.wse1{word-spacing:24.843113px;}
.wse2{word-spacing:24.852678px;}
.ws171{word-spacing:24.865343px;}
.wse0{word-spacing:24.953102px;}
.wsdf{word-spacing:25.192208px;}
.ws69{word-spacing:25.451739px;}
.ws166{word-spacing:25.462499px;}
.ws19d{word-spacing:25.543195px;}
.ws185{word-spacing:25.591613px;}
.ws5a{word-spacing:25.677690px;}
.ws164{word-spacing:25.683070px;}
.ws158{word-spacing:25.699113px;}
.ws165{word-spacing:25.715348px;}
.ws157{word-spacing:25.904744px;}
.ws132{word-spacing:26.178009px;}
.ws1ca{word-spacing:26.247947px;}
.ws82{word-spacing:26.484657px;}
.wsc1{word-spacing:26.516936px;}
.wsd6{word-spacing:26.549214px;}
.ws46{word-spacing:26.554594px;}
.ws151{word-spacing:26.640671px;}
.wsc0{word-spacing:26.699848px;}
.ws189{word-spacing:26.780545px;}
.ws1cd{word-spacing:26.785925px;}
.ws12{word-spacing:26.818203px;}
.ws211{word-spacing:26.842156px;}
.ws16e{word-spacing:27.017255px;}
.ws115{word-spacing:27.065673px;}
.ws116{word-spacing:27.071053px;}
.ws153{word-spacing:27.237826px;}
.ws85{word-spacing:27.270105px;}
.ws13d{word-spacing:27.420739px;}
.ws13c{word-spacing:27.458397px;}
.ws1fd{word-spacing:27.478167px;}
.ws126{word-spacing:27.625170px;}
.ws16b{word-spacing:27.657449px;}
.ws16a{word-spacing:27.662829px;}
.ws1e9{word-spacing:27.679012px;}
.wsfd{word-spacing:27.797323px;}
.ws6a{word-spacing:27.802703px;}
.ws44{word-spacing:28.082452px;}
.ws187{word-spacing:28.136249px;}
.ws14a{word-spacing:28.147009px;}
.wsb4{word-spacing:28.171469px;}
.ws210{word-spacing:28.202047px;}
.ws17d{word-spacing:28.254605px;}
.ws212{word-spacing:28.273180px;}
.wscd{word-spacing:28.475176px;}
.wsce{word-spacing:28.588151px;}
.ws222{word-spacing:28.624659px;}
.ws55{word-spacing:28.819481px;}
.ws67{word-spacing:28.824861px;}
.ws1cb{word-spacing:28.921697px;}
.ws122{word-spacing:29.126129px;}
.ws173{word-spacing:29.201446px;}
.ws3b{word-spacing:29.303662px;}
.wsd1{word-spacing:29.497334px;}
.ws1ce{word-spacing:29.777082px;}
.ws91{word-spacing:29.836260px;}
.wsd8{word-spacing:29.847019px;}
.ws20e{word-spacing:29.959445px;}
.ws1ad{word-spacing:29.992274px;}
.wsae{word-spacing:30.105249px;}
.ws75{word-spacing:30.148287px;}
.ws4c{word-spacing:30.320440px;}
.ws195{word-spacing:30.331200px;}
.ws7a{word-spacing:30.519492px;}
.ws63{word-spacing:30.777721px;}
.ws117{word-spacing:31.062850px;}
.ws13f{word-spacing:31.127407px;}
.ws18b{word-spacing:31.224243px;}
.ws19e{word-spacing:31.235003px;}
.ws5d{word-spacing:31.251142px;}
.ws188{word-spacing:31.353358px;}
.ws1a0{word-spacing:31.385637px;}
.ws1aa{word-spacing:31.541650px;}
.ws1ac{word-spacing:31.692284px;}
.wsa4{word-spacing:31.816019px;}
.ws169{word-spacing:32.165705px;}
.ws58{word-spacing:32.224882px;}
.ws98{word-spacing:32.337858px;}
.ws1a9{word-spacing:32.386276px;}
.ws167{word-spacing:32.397035px;}
.ws9a{word-spacing:32.423934px;}
.ws99{word-spacing:32.547669px;}
.ws1d3{word-spacing:32.724047px;}
.ws118{word-spacing:32.768240px;}
.ws183{word-spacing:33.198622px;}
.ws59{word-spacing:33.241661px;}
.wsd2{word-spacing:33.360016px;}
.ws31{word-spacing:33.919513px;}
.ws152{word-spacing:34.091666px;}
.ws12e{word-spacing:34.339136px;}
.ws17c{word-spacing:34.430592px;}
.ws11d{word-spacing:34.462871px;}
.ws87{word-spacing:35.748638px;}
.ws8a{word-spacing:35.963829px;}
.ws94{word-spacing:36.302755px;}
.ws7e{word-spacing:36.620162px;}
.ws42{word-spacing:36.754657px;}
.wsc5{word-spacing:37.314154px;}
.wsc4{word-spacing:37.319534px;}
.ws197{word-spacing:37.330293px;}
.ws52{word-spacing:37.491687px;}
.ws182{word-spacing:37.631561px;}
.ws12b{word-spacing:38.002766px;}
.ws196{word-spacing:38.180299px;}
.ws2f{word-spacing:38.642960px;}
.wsbf{word-spacing:38.798973px;}
.ws7d{word-spacing:38.954987px;}
.ws190{word-spacing:39.261634px;}
.ws0{word-spacing:39.715108px;}
.ws156{word-spacing:39.987905px;}
.ws1b0{word-spacing:40.203096px;}
.ws78{word-spacing:41.063861px;}
.ws32{word-spacing:41.101519px;}
.ws37{word-spacing:41.650257px;}
.ws131{word-spacing:41.704055px;}
.ws48{word-spacing:41.897727px;}
.ws123{word-spacing:42.231273px;}
.ws124{word-spacing:42.726213px;}
.ws121{word-spacing:43.102797px;}
.ws93{word-spacing:43.371786px;}
.ws49{word-spacing:43.468622px;}
.ws47{word-spacing:43.630016px;}
.wsab{word-spacing:43.893625px;}
.wsaa{word-spacing:43.931283px;}
.ws19f{word-spacing:45.071797px;}
.ws92{word-spacing:45.997119px;}
.ws89{word-spacing:46.126234px;}
.ws119{word-spacing:49.874311px;}
.ws11a{word-spacing:54.101590px;}
.ws11b{word-spacing:56.826616px;}
.ws1c6{word-spacing:133.026630px;}
.ws1c7{word-spacing:133.378109px;}
.ws1c8{word-spacing:154.366458px;}
.ws1be{word-spacing:167.145249px;}
.ws1bf{word-spacing:185.489132px;}
.ws1bc{word-spacing:188.489261px;}
.ws1c4{word-spacing:371.128899px;}
._3d{margin-left:-22.651919px;}
._3c{margin-left:-18.983458px;}
._1b{margin-left:-17.543463px;}
._11{margin-left:-16.058643px;}
._3f{margin-left:-12.678382px;}
._1f{margin-left:-9.576008px;}
._22{margin-left:-8.284861px;}
._1e{margin-left:-4.352242px;}
._1d{margin-left:-2.098114px;}
._17{margin-left:-1.070576px;}
._0{width:1.530263px;}
._3b{width:4.231521px;}
._3e{width:5.359442px;}
._23{width:7.553211px;}
._21{width:9.782182px;}
._18{width:11.270639px;}
._1a{width:12.324341px;}
._3{width:14.105783px;}
._6{width:15.117228px;}
._1{width:16.168058px;}
._5{width:17.229616px;}
._e{width:18.262611px;}
._2{width:19.641577px;}
._a{width:21.271650px;}
._d{width:22.912483px;}
._b{width:23.956160px;}
._15{width:25.935919px;}
._4{width:28.168528px;}
._10{width:29.325181px;}
._c{width:30.433415px;}
._12{width:32.456213px;}
._24{width:33.548308px;}
._8{width:35.070786px;}
._f{width:37.889791px;}
._7{width:39.831891px;}
._9{width:42.166716px;}
._20{width:44.157234px;}
._19{width:45.286988px;}
._16{width:47.412001px;}
._1c{width:54.845665px;}
._32{width:75.116195px;}
._33{width:95.669378px;}
._34{width:133.424136px;}
._35{width:135.721306px;}
._37{width:141.319873px;}
._36{width:154.412485px;}
._26{width:167.618073px;}
._38{width:170.572174px;}
._29{width:185.564449px;}
._28{width:188.539473px;}
._25{width:195.510483px;}
._2c{width:206.879172px;}
._2a{width:247.357896px;}
._31{width:259.860525px;}
._39{width:292.919946px;}
._30{width:342.261551px;}
._3a{width:375.865504px;}
._27{width:421.168703px;}
._2d{width:470.559945px;}
._2f{width:511.687233px;}
._2b{width:550.019422px;}
._2e{width:556.546899px;}
._14{width:596.062565px;}
._13{width:718.569968px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.891000px;}
.fs7{font-size:31.876200px;}
.fs5{font-size:35.860800px;}
.fs2{font-size:39.846000px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.821200px;}
.fs8{font-size:50.809200px;}
.fs4{font-size:53.797800px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:119.551800px;}
.y0{bottom:0.000000px;}
.y55{bottom:46.091400px;}
.y122{bottom:87.165300px;}
.y3b{bottom:89.384957px;}
.y54{bottom:89.394372px;}
.y121{bottom:89.459706px;}
.y1c5{bottom:89.460557px;}
.y123{bottom:89.461350px;}
.y94{bottom:89.461828px;}
.y155{bottom:90.310765px;}
.yad{bottom:90.650047px;}
.ydd{bottom:90.821377px;}
.y1c4{bottom:102.131603px;}
.y154{bottom:103.747327px;}
.yac{bottom:104.086609px;}
.ydc{bottom:104.257938px;}
.y3a{bottom:105.116779px;}
.y93{bottom:105.193650px;}
.y53{bottom:105.212270px;}
.y120{bottom:105.277604px;}
.yda{bottom:115.738650px;}
.y153{bottom:117.183888px;}
.yab{bottom:117.523171px;}
.yd9{bottom:117.694044px;}
.ydb{bottom:117.694500px;}
.y39{bottom:120.848601px;}
.y52{bottom:120.944092px;}
.y11f{bottom:121.095502px;}
.y92{bottom:121.436250px;}
.y1c3{bottom:128.324149px;}
.y151{bottom:128.664450px;}
.y150{bottom:130.619532px;}
.y152{bottom:130.620450px;}
.yaa{bottom:131.044615px;}
.yd8{bottom:131.215488px;}
.y38{bottom:136.580422px;}
.y51{bottom:136.675913px;}
.y11e{bottom:136.913400px;}
.yd6{bottom:142.611000px;}
.y14f{bottom:144.056094px;}
.ya8{bottom:144.481177px;}
.yd5{bottom:144.651277px;}
.yd7{bottom:144.652050px;}
.ya9{bottom:144.735825px;}
.y1c2{bottom:147.033111px;}
.y37{bottom:152.312244px;}
.y50{bottom:152.407735px;}
.y91{bottom:155.711632px;}
.y14e{bottom:157.577538px;}
.ya7{bottom:157.917738px;}
.yd4{bottom:158.087838px;}
.y11d{bottom:162.170100px;}
.y1c1{bottom:165.656296px;}
.y36{bottom:168.044066px;}
.y4f{bottom:168.139557px;}
.yd3{bottom:169.568400px;}
.y14d{bottom:171.014100px;}
.ya6{bottom:171.354300px;}
.y90{bottom:171.443453px;}
.yd2{bottom:171.524400px;}
.yd1{bottom:183.004650px;}
.y35{bottom:183.775887px;}
.y4e{bottom:183.871378px;}
.yd0{bottom:184.960500px;}
.y8f{bottom:187.175275px;}
.y1c0{bottom:188.107050px;}
.y1be{bottom:188.107373px;}
.y1bf{bottom:192.699150px;}
.y11c{bottom:196.349520px;}
.y34{bottom:199.422977px;}
.y4d{bottom:199.603200px;}
.y8e{bottom:202.993173px;}
.y1bd{bottom:210.472350px;}
.y11b{bottom:212.167419px;}
.y33{bottom:215.154799px;}
.y4c{bottom:215.335022px;}
.y8d{bottom:218.724995px;}
.y11a{bottom:227.985317px;}
.y32{bottom:230.886621px;}
.y4b{bottom:231.152920px;}
.y8c{bottom:234.456816px;}
.y119{bottom:243.803215px;}
.y31{bottom:246.618442px;}
.y4a{bottom:246.884742px;}
.y8b{bottom:250.274714px;}
.y1bc{bottom:256.053928px;}
.y118{bottom:259.621113px;}
.y49{bottom:262.616563px;}
.y30{bottom:262.861343px;}
.y8a{bottom:266.006536px;}
.y1bb{bottom:271.785750px;}
.y117{bottom:275.439011px;}
.y48{bottom:278.348385px;}
.y2f{bottom:278.593165px;}
.y89{bottom:281.738358px;}
.y116{bottom:291.256909px;}
.y47{bottom:294.080207px;}
.y2e{bottom:294.324987px;}
.y88{bottom:297.470179px;}
.y1ae{bottom:305.364992px;}
.y17c{bottom:305.375752px;}
.y115{bottom:307.074807px;}
.y2d{bottom:310.056808px;}
.y46{bottom:310.407839px;}
.y87{bottom:313.288078px;}
.y17b{bottom:321.193650px;}
.y1ad{bottom:321.267622px;}
.y114{bottom:322.892706px;}
.y2c{bottom:325.788630px;}
.y45{bottom:326.139661px;}
.y86{bottom:329.019899px;}
.y1ac{bottom:337.595254px;}
.y113{bottom:338.710604px;}
.y2b{bottom:341.520452px;}
.y44{bottom:341.871482px;}
.y85{bottom:344.751721px;}
.y17a{bottom:346.450350px;}
.y233{bottom:347.980654px;}
.y206{bottom:347.988492px;}
.y1ab{bottom:353.413152px;}
.y112{bottom:354.528502px;}
.y2a{bottom:357.252273px;}
.y43{bottom:357.603304px;}
.y232{bottom:359.885976px;}
.y205{bottom:359.893815px;}
.y84{bottom:360.569619px;}
.y1aa{bottom:369.315782px;}
.y10f{bottom:370.342741px;}
.y111{bottom:370.346400px;}
.y231{bottom:371.877077px;}
.y204{bottom:371.884915px;}
.y29{bottom:372.899363px;}
.y42{bottom:373.335126px;}
.y110{bottom:376.299150px;}
.y83{bottom:376.301441px;}
.y179{bottom:380.632329px;}
.y230{bottom:383.782399px;}
.y203{bottom:383.790238px;}
.y1a9{bottom:385.218412px;}
.y10e{bottom:386.160639px;}
.y28{bottom:388.631185px;}
.y41{bottom:389.066947px;}
.y82{bottom:392.033262px;}
.y22f{bottom:395.773500px;}
.y202{bottom:395.781338px;}
.y178{bottom:396.450227px;}
.y1a8{bottom:401.121041px;}
.y10d{bottom:401.978538px;}
.y27{bottom:404.363007px;}
.y40{bottom:404.798769px;}
.y22e{bottom:407.678823px;}
.y201{bottom:407.686661px;}
.y81{bottom:407.851161px;}
.y177{bottom:412.182049px;}
.y1a7{bottom:417.023671px;}
.y10c{bottom:417.710359px;}
.y22d{bottom:419.669923px;}
.y200{bottom:419.677761px;}
.y26{bottom:420.094828px;}
.y3f{bottom:420.616667px;}
.y80{bottom:423.582982px;}
.y176{bottom:427.999947px;}
.y22c{bottom:431.659977px;}
.y1ff{bottom:431.667816px;}
.y1a6{bottom:432.926301px;}
.y10b{bottom:433.528257px;}
.y25{bottom:435.826650px;}
.y3e{bottom:436.348489px;}
.y7f{bottom:439.314804px;}
.y22b{bottom:443.565300px;}
.y1fe{bottom:443.573138px;}
.y175{bottom:443.817845px;}
.y1a5{bottom:448.828930px;}
.y10a{bottom:449.346156px;}
.y3d{bottom:452.080310px;}
.y7e{bottom:455.046626px;}
.y1fd{bottom:455.563193px;}
.y22a{bottom:455.572607px;}
.y174{bottom:459.549667px;}
.y1a4{bottom:464.731560px;}
.y109{bottom:465.164054px;}
.y24{bottom:465.590400px;}
.y1fc{bottom:467.468515px;}
.y229{bottom:467.477930px;}
.y3c{bottom:467.812132px;}
.y7d{bottom:470.864524px;}
.y173{bottom:475.367565px;}
.y1fb{bottom:479.459616px;}
.y228{bottom:479.469031px;}
.y1a3{bottom:480.634190px;}
.y108{bottom:480.981952px;}
.y7c{bottom:486.596345px;}
.y172{bottom:491.099387px;}
.y1fa{bottom:491.449670px;}
.y227{bottom:491.459085px;}
.y1a2{bottom:496.536820px;}
.y106{bottom:496.799850px;}
.y7b{bottom:502.328167px;}
.y107{bottom:502.837650px;}
.y1f9{bottom:503.354993px;}
.y226{bottom:503.364408px;}
.y171{bottom:506.917285px;}
.y1a1{bottom:512.439449px;}
.y105{bottom:512.701482px;}
.y1f8{bottom:515.345047px;}
.y225{bottom:515.354462px;}
.y7a{bottom:518.146065px;}
.y170{bottom:522.735183px;}
.y1f7{bottom:527.250370px;}
.y224{bottom:527.259785px;}
.y1a0{bottom:528.342079px;}
.y104{bottom:528.519380px;}
.y23{bottom:528.605402px;}
.y79{bottom:533.877887px;}
.y16f{bottom:538.978084px;}
.y1f6{bottom:539.241470px;}
.y223{bottom:539.250885px;}
.y19f{bottom:544.244709px;}
.y103{bottom:544.251202px;}
.y22{bottom:547.314364px;}
.y78{bottom:549.609709px;}
.y1f5{bottom:551.146793px;}
.y222{bottom:551.156208px;}
.y16e{bottom:554.795982px;}
.y102{bottom:560.068703px;}
.y19e{bottom:560.147338px;}
.y1f4{bottom:563.137893px;}
.y221{bottom:563.146262px;}
.y77{bottom:565.341530px;}
.y21{bottom:565.937549px;}
.y16d{bottom:570.527804px;}
.y1f3{bottom:575.127948px;}
.y220{bottom:575.136316px;}
.y101{bottom:575.461350px;}
.y19d{bottom:576.049968px;}
.y20{bottom:577.927603px;}
.y76{bottom:581.159428px;}
.y16c{bottom:586.345702px;}
.y1f2{bottom:587.033270px;}
.y21f{bottom:587.041639px;}
.y100{bottom:591.276906px;}
.y19c{bottom:591.952598px;}
.y1f{bottom:596.636565px;}
.y75{bottom:596.891250px;}
.y1f1{bottom:599.023325px;}
.y21e{bottom:599.031693px;}
.y16b{bottom:602.163600px;}
.y169{bottom:602.164078px;}
.yff{bottom:607.094804px;}
.y19b{bottom:607.855227px;}
.y14a{bottom:607.940400px;}
.y14c{bottom:607.946250px;}
.y16a{bottom:608.116350px;}
.y1e{bottom:608.541888px;}
.y1f0{bottom:610.928647px;}
.y21d{bottom:610.937016px;}
.y74{bottom:613.218067px;}
.y14b{bottom:613.984200px;}
.y166{bottom:617.892897px;}
.y168{bottom:617.895900px;}
.yfe{bottom:622.912702px;}
.y1ef{bottom:622.918702px;}
.y21c{bottom:622.927070px;}
.y19a{bottom:623.673125px;}
.y149{bottom:623.843030px;}
.y167{bottom:623.848650px;}
.y1d{bottom:627.250849px;}
.y165{bottom:633.710795px;}
.y1ee{bottom:634.908756px;}
.y21b{bottom:634.917125px;}
.yfc{bottom:636.519600px;}
.yfb{bottom:638.725234px;}
.yfd{bottom:638.730600px;}
.y199{bottom:639.575755px;}
.y148{bottom:639.745660px;}
.y73{bottom:640.686450px;}
.y1c{bottom:645.959811px;}
.y1ed{bottom:646.814079px;}
.y21a{bottom:646.822447px;}
.y164{bottom:649.953696px;}
.yfa{bottom:654.543133px;}
.y198{bottom:655.478385px;}
.y147{bottom:655.563558px;}
.y1ec{bottom:658.804133px;}
.y219{bottom:658.812502px;}
.y1b{bottom:664.582996px;}
.y163{bottom:665.771594px;}
.y1eb{bottom:670.709456px;}
.y218{bottom:670.717824px;}
.yf9{bottom:670.870765px;}
.y197{bottom:671.381014px;}
.y146{bottom:671.466188px;}
.y72{bottom:674.873943px;}
.y19{bottom:676.573050px;}
.y1a{bottom:676.743559px;}
.y162{bottom:681.589492px;}
.y1ea{bottom:682.700556px;}
.y217{bottom:682.708925px;}
.yf8{bottom:686.688663px;}
.yc7{bottom:687.196087px;}
.y196{bottom:687.283644px;}
.y145{bottom:687.368817px;}
.y71{bottom:690.691841px;}
.y1e9{bottom:694.605879px;}
.y216{bottom:694.614247px;}
.y161{bottom:697.321314px;}
.yf7{bottom:702.506561px;}
.yc6{bottom:703.098717px;}
.y144{bottom:703.271447px;}
.y195{bottom:703.611276px;}
.y70{bottom:706.423662px;}
.y1e8{bottom:706.595933px;}
.y215{bottom:706.604302px;}
.y18{bottom:712.121829px;}
.y160{bottom:713.139212px;}
.yf6{bottom:718.324459px;}
.y1e7{bottom:718.585988px;}
.y214{bottom:718.594356px;}
.yc5{bottom:719.001346px;}
.y143{bottom:719.089345px;}
.y194{bottom:719.513906px;}
.y6f{bottom:722.155484px;}
.y17{bottom:727.088377px;}
.y15f{bottom:728.871034px;}
.y1e6{bottom:730.491310px;}
.y213{bottom:730.499679px;}
.ycf{bottom:733.293577px;}
.yf5{bottom:734.142357px;}
.yc4{bottom:734.903976px;}
.y142{bottom:734.991975px;}
.y193{bottom:735.416536px;}
.y6e{bottom:737.973382px;}
.y16{bottom:742.054925px;}
.y1e5{bottom:742.481365px;}
.y212{bottom:742.489733px;}
.y15e{bottom:744.688932px;}
.yce{bottom:746.730138px;}
.yf4{bottom:749.960256px;}
.yc3{bottom:750.806606px;}
.y141{bottom:750.894605px;}
.y192{bottom:751.319166px;}
.y6d{bottom:753.705204px;}
.y1e4{bottom:754.386687px;}
.y211{bottom:754.395056px;}
.y15{bottom:756.936742px;}
.ycd{bottom:760.166700px;}
.y15d{bottom:760.506830px;}
.yf3{bottom:765.778154px;}
.y1e3{bottom:766.377788px;}
.y210{bottom:766.386156px;}
.yc2{bottom:766.709235px;}
.y140{bottom:766.712503px;}
.y191{bottom:767.221795px;}
.y6c{bottom:769.437026px;}
.ycc{bottom:771.647100px;}
.y14{bottom:771.903290px;}
.ycb{bottom:773.602494px;}
.y15c{bottom:776.238652px;}
.y1e2{bottom:778.367842px;}
.y20f{bottom:778.376211px;}
.yf2{bottom:781.596052px;}
.yc1{bottom:782.611865px;}
.y13f{bottom:782.615132px;}
.y190{bottom:783.039693px;}
.y6b{bottom:785.168847px;}
.y13{bottom:786.869838px;}
.yc9{bottom:787.039056px;}
.yca{bottom:787.293704px;}
.y1e1{bottom:790.273165px;}
.y20e{bottom:790.281533px;}
.y159{bottom:792.056330px;}
.y15b{bottom:792.056550px;}
.yf0{bottom:795.117900px;}
.yef{bottom:797.413402px;}
.yf1{bottom:797.413950px;}
.y15a{bottom:798.009300px;}
.yc0{bottom:798.514495px;}
.y18f{bottom:798.942323px;}
.y13e{bottom:798.942765px;}
.yc8{bottom:800.560500px;}
.y6a{bottom:800.986745px;}
.y12{bottom:801.751654px;}
.y1e0{bottom:802.263219px;}
.y20d{bottom:802.271588px;}
.y158{bottom:807.788152px;}
.yee{bottom:813.231300px;}
.y1df{bottom:814.168542px;}
.y20c{bottom:814.176910px;}
.ybf{bottom:814.417124px;}
.y13d{bottom:814.760663px;}
.y18e{bottom:814.844953px;}
.y11{bottom:816.718202px;}
.y69{bottom:816.718567px;}
.y157{bottom:823.606050px;}
.y1de{bottom:826.158596px;}
.y20b{bottom:826.166965px;}
.ya5{bottom:826.752860px;}
.yed{bottom:829.043197px;}
.yf{bottom:829.473750px;}
.ybe{bottom:830.319754px;}
.y13c{bottom:830.663292px;}
.y18d{bottom:830.747582px;}
.y10{bottom:831.684750px;}
.ye{bottom:831.686392px;}
.y68{bottom:832.450389px;}
.y1dd{bottom:838.148650px;}
.y20a{bottom:838.157019px;}
.ya4{bottom:842.740221px;}
.yec{bottom:844.861095px;}
.ybd{bottom:846.222384px;}
.y13b{bottom:846.565922px;}
.y18c{bottom:846.650212px;}
.yd{bottom:846.652940px;}
.y67{bottom:848.268287px;}
.y1dc{bottom:850.053973px;}
.y209{bottom:850.062342px;}
.y1ba{bottom:857.536410px;}
.ya3{bottom:858.727583px;}
.yeb{bottom:860.678993px;}
.yc{bottom:861.534756px;}
.y1db{bottom:862.044027px;}
.y208{bottom:862.052396px;}
.ybc{bottom:862.125013px;}
.y13a{bottom:862.468552px;}
.y18b{bottom:862.552842px;}
.y66{bottom:864.000109px;}
.y1da{bottom:873.949350px;}
.y207{bottom:873.957719px;}
.ya2{bottom:874.714944px;}
.yea{bottom:876.496891px;}
.yb{bottom:876.501304px;}
.ybb{bottom:878.027643px;}
.y137{bottom:878.285292px;}
.y139{bottom:878.286450px;}
.y18a{bottom:878.455471px;}
.y65{bottom:879.731930px;}
.y1b9{bottom:883.728957px;}
.y138{bottom:884.324100px;}
.ya1{bottom:890.702305px;}
.ya{bottom:891.467852px;}
.ye9{bottom:892.314789px;}
.yba{bottom:893.930273px;}
.y136{bottom:894.187922px;}
.y189{bottom:894.358101px;}
.y1d9{bottom:894.868950px;}
.y64{bottom:895.549828px;}
.y1b8{bottom:902.352141px;}
.y9{bottom:906.434400px;}
.ya0{bottom:906.689666px;}
.ye8{bottom:908.132688px;}
.y62{bottom:908.985600px;}
.yb9{bottom:909.832902px;}
.y135{bottom:910.090552px;}
.y188{bottom:910.260731px;}
.y63{bottom:911.281650px;}
.y61{bottom:911.284098px;}
.y1b7{bottom:921.061103px;}
.y9f{bottom:922.677028px;}
.ye7{bottom:923.950586px;}
.yb8{bottom:925.735532px;}
.y132{bottom:925.907063px;}
.y134{bottom:925.908450px;}
.y187{bottom:926.163360px;}
.y60{bottom:927.015920px;}
.y1d1{bottom:928.547741px;}
.y8{bottom:928.799700px;}
.y133{bottom:931.946250px;}
.y9e{bottom:938.664389px;}
.ye6{bottom:939.768484px;}
.y1b6{bottom:939.770065px;}
.yb7{bottom:941.638162px;}
.y131{bottom:941.809692px;}
.y186{bottom:942.065990px;}
.y5f{bottom:942.747741px;}
.y1d0{bottom:944.194831px;}
.y9d{bottom:952.440600px;}
.y9c{bottom:954.651750px;}
.ye5{bottom:955.586382px;}
.yb6{bottom:957.540791px;}
.y130{bottom:957.712322px;}
.y185{bottom:957.968620px;}
.y1b5{bottom:958.393250px;}
.y5e{bottom:958.565640px;}
.y1cf{bottom:959.926653px;}
.y1d8{bottom:961.879631px;}
.y9b{bottom:970.979250px;}
.ye4{bottom:971.318204px;}
.yb5{bottom:973.443421px;}
.y12f{bottom:973.614952px;}
.y184{bottom:973.871249px;}
.y7{bottom:974.126208px;}
.y5d{bottom:974.297461px;}
.y1ce{bottom:975.573743px;}
.y1d7{bottom:975.996449px;}
.y1b4{bottom:977.102211px;}
.ye3{bottom:987.136102px;}
.y6{bottom:989.007600px;}
.yb4{bottom:989.346051px;}
.y12c{bottom:989.432391px;}
.y12e{bottom:989.432850px;}
.y183{bottom:989.773879px;}
.y1d6{bottom:990.198150px;}
.y5c{bottom:990.625094px;}
.y1cd{bottom:991.305565px;}
.y12d{bottom:995.385600px;}
.y1b3{bottom:995.811173px;}
.ye2{bottom:1002.954000px;}
.y9a{bottom:1005.168977px;}
.yb3{bottom:1005.248681px;}
.y12b{bottom:1005.335020px;}
.y182{bottom:1005.676509px;}
.y5b{bottom:1006.356915px;}
.y1cc{bottom:1006.952655px;}
.y3{bottom:1009.927350px;}
.y5{bottom:1010.607297px;}
.y1d5{bottom:1011.117900px;}
.y4{bottom:1016.560350px;}
.y1b1{bottom:1018.176150px;}
.y129{bottom:1018.941450px;}
.ye1{bottom:1019.281650px;}
.yb2{bottom:1021.151310px;}
.y99{bottom:1021.156338px;}
.y12a{bottom:1021.237650px;}
.y128{bottom:1021.239246px;}
.y181{bottom:1021.579139px;}
.y5a{bottom:1022.088737px;}
.y1cb{bottom:1022.684476px;}
.y1b2{bottom:1022.853300px;}
.yb1{bottom:1037.053940px;}
.y127{bottom:1037.057144px;}
.y98{bottom:1037.143699px;}
.y180{bottom:1037.397037px;}
.y59{bottom:1037.820559px;}
.y1ca{bottom:1038.331567px;}
.y1d4{bottom:1045.388532px;}
.y2{bottom:1045.814478px;}
.yb0{bottom:1052.956570px;}
.y126{bottom:1052.959774px;}
.y97{bottom:1053.131060px;}
.y17f{bottom:1053.299666px;}
.ye0{bottom:1053.466304px;}
.y58{bottom:1053.638457px;}
.y1c9{bottom:1054.063388px;}
.y1d3{bottom:1059.505350px;}
.y1b0{bottom:1063.757728px;}
.y96{bottom:1069.118421px;}
.yaf{bottom:1069.199470px;}
.y17e{bottom:1069.202296px;}
.ydf{bottom:1069.284202px;}
.y125{bottom:1069.287406px;}
.y57{bottom:1069.370278px;}
.y1c8{bottom:1069.710478px;}
.y1{bottom:1078.724100px;}
.y1af{bottom:1079.489550px;}
.y1d2{bottom:1082.891100px;}
.y56{bottom:1085.102100px;}
.y17d{bottom:1085.104926px;}
.y124{bottom:1085.105304px;}
.y95{bottom:1085.105783px;}
.y1c7{bottom:1085.442300px;}
.y1c6{bottom:1132.469100px;}
.yae{bottom:1132.470755px;}
.y156{bottom:1132.472199px;}
.yde{bottom:1132.472319px;}
.h14{height:20.304648px;}
.hf{height:23.907150px;}
.hb{height:24.170179px;}
.h12{height:25.010597px;}
.h8{height:26.895600px;}
.h16{height:28.202047px;}
.h4{height:29.007888px;}
.h13{height:30.461558px;}
.h6{height:31.382100px;}
.h15{height:32.231489px;}
.h10{height:34.245401px;}
.hc{height:34.479085px;}
.he{height:34.847308px;}
.ha{height:35.865900px;}
.h9{height:36.259717px;}
.h11{height:36.261306px;}
.hd{height:37.658460px;}
.h7{height:40.348350px;}
.h3{height:43.516637px;}
.h5{height:44.831700px;}
.h2{height:84.881778px;}
.h0{height:1186.299042px;}
.h1{height:1186.500000px;}
.w0{width:918.424530px;}
.w1{width:918.750000px;}
.x0{left:0.000000px;}
.x1{left:87.080250px;}
.x46{left:92.352750px;}
.x3b{left:96.094500px;}
.x37{left:97.370100px;}
.xd{left:99.836250px;}
.x38{left:104.428350px;}
.x47{left:107.659892px;}
.x8{left:110.721300px;}
.x11{left:123.051900px;}
.x26{left:129.770100px;}
.x36{left:136.658250px;}
.x27{left:138.784200px;}
.x34{left:144.481950px;}
.x35{left:151.795200px;}
.x1a{left:156.473593px;}
.x2{left:196.611000px;}
.x3{left:203.244000px;}
.x28{left:204.264600px;}
.x29{left:212.853450px;}
.xe{left:218.805791px;}
.x23{left:225.864600px;}
.x3d{left:235.729050px;}
.x24{left:237.685050px;}
.x3e{left:241.596750px;}
.x12{left:270.340050px;}
.x13{left:279.524400px;}
.x3f{left:287.262900px;}
.x4{left:304.270742px;}
.x3c{left:308.182650px;}
.x14{left:311.414100px;}
.x5{left:319.407750px;}
.x15{left:320.598300px;}
.x6{left:326.040900px;}
.x22{left:327.486600px;}
.x1e{left:347.215650px;}
.x1f{left:354.699150px;}
.x40{left:359.206200px;}
.x39{left:364.563750px;}
.x3a{left:371.707050px;}
.x41{left:404.872350px;}
.x25{left:408.188850px;}
.x1c{left:416.947950px;}
.x1d{left:425.792100px;}
.x1b{left:441.184200px;}
.x7{left:448.327500px;}
.x42{left:469.502250px;}
.xf{left:472.650677px;}
.x30{left:480.047100px;}
.x10{left:486.086678px;}
.x31{left:487.360500px;}
.x48{left:493.229788px;}
.x2f{left:500.881800px;}
.x20{left:502.582650px;}
.x21{left:510.661350px;}
.x32{left:515.508600px;}
.x33{left:523.162050px;}
.x2c{left:542.721150px;}
.x2a{left:549.694350px;}
.x2b{left:561.599850px;}
.x43{left:587.111700px;}
.x9{left:614.579400px;}
.xa{left:623.593500px;}
.x44{left:632.777850px;}
.xb{left:655.398300px;}
.xc{left:664.412400px;}
.x19{left:666.029364px;}
.x16{left:704.380950px;}
.x17{left:712.544700px;}
.x45{left:750.472200px;}
.x2d{left:779.215650px;}
.x2e{left:786.529050px;}
.x18{left:826.328418px;}
@media print{
.v1{vertical-align:-2.417591pt;}
.v2{vertical-align:-0.905415pt;}
.v0{vertical-align:0.000000pt;}
.ls28{letter-spacing:-0.846419pt;}
.ls2e{letter-spacing:-0.817727pt;}
.ls2f{letter-spacing:-0.702958pt;}
.ls2c{letter-spacing:-0.698176pt;}
.ls25{letter-spacing:-0.688612pt;}
.ls29{letter-spacing:-0.679048pt;}
.ls2d{letter-spacing:-0.669484pt;}
.ls2a{letter-spacing:-0.664702pt;}
.ls2b{letter-spacing:-0.655138pt;}
.ls26{letter-spacing:-0.645574pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003719pt;}
.lsa{letter-spacing:0.033474pt;}
.ls14{letter-spacing:0.076512pt;}
.lsd{letter-spacing:0.076514pt;}
.lsc{letter-spacing:0.119022pt;}
.ls17{letter-spacing:0.133897pt;}
.ls22{letter-spacing:0.159932pt;}
.ls6{letter-spacing:0.210409pt;}
.ls30{letter-spacing:0.450043pt;}
.ls3{letter-spacing:2.979207pt;}
.ls31{letter-spacing:3.942522pt;}
.ls1{letter-spacing:6.367544pt;}
.ls0{letter-spacing:6.631107pt;}
.ls27{letter-spacing:7.158694pt;}
.ls21{letter-spacing:7.459962pt;}
.ls1a{letter-spacing:8.062497pt;}
.lse{letter-spacing:10.099837pt;}
.ls1b{letter-spacing:11.701619pt;}
.ls1c{letter-spacing:12.002887pt;}
.lsf{letter-spacing:12.518527pt;}
.ls7{letter-spacing:12.911472pt;}
.ls4{letter-spacing:13.571945pt;}
.ls11{letter-spacing:14.027552pt;}
.ls18{letter-spacing:14.180580pt;}
.ls10{letter-spacing:14.329357pt;}
.lsb{letter-spacing:15.081744pt;}
.ls12{letter-spacing:15.331177pt;}
.ls19{letter-spacing:15.560715pt;}
.ls15{letter-spacing:15.933713pt;}
.ls16{letter-spacing:16.234981pt;}
.ls13{letter-spacing:19.262003pt;}
.ls1f{letter-spacing:19.563271pt;}
.ls20{letter-spacing:19.864539pt;}
.ls1d{letter-spacing:22.585512pt;}
.ls8{letter-spacing:23.795365pt;}
.ls1e{letter-spacing:24.703950pt;}
.ls9{letter-spacing:33.168137pt;}
.ls24{letter-spacing:185.246444pt;}
.ls23{letter-spacing:211.248490pt;}
.ws100{word-spacing:-15.608535pt;}
.ws17b{word-spacing:-7.507782pt;}
.ws176{word-spacing:-7.206514pt;}
.ws1{word-spacing:-0.106268pt;}
.ws3{word-spacing:-0.053134pt;}
.wsca{word-spacing:-0.047820pt;}
.wsbb{word-spacing:-0.042508pt;}
.ws1d{word-spacing:-0.037194pt;}
.ws61{word-spacing:0.000000pt;}
.ws17f{word-spacing:0.607317pt;}
.ws1f6{word-spacing:3.775150pt;}
.ws17a{word-spacing:4.519015pt;}
.ws1c9{word-spacing:6.330351pt;}
.wsf0{word-spacing:6.801237pt;}
.wsec{word-spacing:6.826742pt;}
.wse3{word-spacing:6.877751pt;}
.ws145{word-spacing:7.713409pt;}
.ws140{word-spacing:8.014677pt;}
.ws179{word-spacing:8.741545pt;}
.ws1ab{word-spacing:8.894570pt;}
.wsa0{word-spacing:8.904134pt;}
.ws177{word-spacing:9.042812pt;}
.ws22a{word-spacing:9.075238pt;}
.ws1ea{word-spacing:9.224013pt;}
.ws219{word-spacing:9.227732pt;}
.ws10a{word-spacing:9.253222pt;}
.ws10b{word-spacing:9.382336pt;}
.ws229{word-spacing:9.398823pt;}
.ws1f8{word-spacing:9.417420pt;}
.ws1ae{word-spacing:9.621438pt;}
.wsed{word-spacing:9.730020pt;}
.ws186{word-spacing:9.745770pt;}
.ws223{word-spacing:9.841427pt;}
.wsee{word-spacing:9.844791pt;}
.ws181{word-spacing:9.956180pt;}
.ws221{word-spacing:10.008798pt;}
.ws218{word-spacing:10.016236pt;}
.wsef{word-spacing:10.087085pt;}
.ws1e7{word-spacing:10.265434pt;}
.ws21c{word-spacing:10.287750pt;}
.ws21d{word-spacing:10.317505pt;}
.ws178{word-spacing:10.348306pt;}
.ws1a7{word-spacing:10.410472pt;}
.ws220{word-spacing:10.421647pt;}
.ws20f{word-spacing:10.455121pt;}
.ws15e{word-spacing:10.461153pt;}
.ws175{word-spacing:10.611317pt;}
.ws22e{word-spacing:10.629931pt;}
.ws1a6{word-spacing:10.773906pt;}
.ws180{word-spacing:10.802598pt;}
.ws15d{word-spacing:10.869227pt;}
.ws228{word-spacing:10.912602pt;}
.wsd5{word-spacing:11.094302pt;}
.ws146{word-spacing:11.103866pt;}
.wsa8{word-spacing:11.108648pt;}
.wsa5{word-spacing:11.166032pt;}
.ws1c1{word-spacing:11.185160pt;}
.ws86{word-spacing:11.204288pt;}
.ws1c3{word-spacing:11.213853pt;}
.ws135{word-spacing:11.285583pt;}
.ws1c0{word-spacing:11.299929pt;}
.ws1c2{word-spacing:11.323839pt;}
.wsb1{word-spacing:11.328621pt;}
.ws1d7{word-spacing:11.379320pt;}
.ws39{word-spacing:11.405134pt;}
.ws8e{word-spacing:11.409916pt;}
.ws201{word-spacing:11.444471pt;}
.wsa9{word-spacing:11.462518pt;}
.ws1f7{word-spacing:11.485384pt;}
.ws1f5{word-spacing:11.515139pt;}
.ws1e4{word-spacing:11.518858pt;}
.ws1a5{word-spacing:11.562940pt;}
.ws1fb{word-spacing:11.582087pt;}
.ws14d{word-spacing:11.586851pt;}
.ws1dd{word-spacing:11.608123pt;}
.ws36{word-spacing:11.610761pt;}
.wsc2{word-spacing:11.649017pt;}
.ws1df{word-spacing:11.660194pt;}
.ws127{word-spacing:11.706401pt;}
.ws163{word-spacing:11.739875pt;}
.ws113{word-spacing:11.749440pt;}
.ws13{word-spacing:11.754222pt;}
.ws161{word-spacing:11.811606pt;}
.ws18a{word-spacing:11.940721pt;}
.ws162{word-spacing:11.974195pt;}
.wsb{word-spacing:12.012451pt;}
.wsf1{word-spacing:12.067945pt;}
.ws5e{word-spacing:12.112874pt;}
.wsf4{word-spacing:12.140209pt;}
.ws112{word-spacing:12.189386pt;}
.ws1e3{word-spacing:12.199501pt;}
.ws1f{word-spacing:12.210659pt;}
.ws25{word-spacing:12.214378pt;}
.ws20a{word-spacing:12.240414pt;}
.ws1ed{word-spacing:12.247852pt;}
.ws103{word-spacing:12.265898pt;}
.ws1f9{word-spacing:12.270169pt;}
.ws1e5{word-spacing:12.273888pt;}
.ws2d{word-spacing:12.277607pt;}
.ws227{word-spacing:12.288765pt;}
.ws1f4{word-spacing:12.299924pt;}
.ws2e{word-spacing:12.307362pt;}
.ws209{word-spacing:12.311082pt;}
.ws23{word-spacing:12.337117pt;}
.ws22c{word-spacing:12.340836pt;}
.wsf3{word-spacing:12.348497pt;}
.ws1b9{word-spacing:12.363153pt;}
.wsf2{word-spacing:12.365500pt;}
.ws168{word-spacing:12.366321pt;}
.ws202{word-spacing:12.366872pt;}
.ws28{word-spacing:12.370591pt;}
.ws20b{word-spacing:12.381749pt;}
.ws2c{word-spacing:12.396627pt;}
.ws2b{word-spacing:12.400346pt;}
.ws1e1{word-spacing:12.407785pt;}
.ws1de{word-spacing:12.426382pt;}
.ws1f0{word-spacing:12.437540pt;}
.ws96{word-spacing:12.438051pt;}
.ws1bd{word-spacing:12.459856pt;}
.ws1fc{word-spacing:12.463575pt;}
.ws21{word-spacing:12.471014pt;}
.ws200{word-spacing:12.485892pt;}
.ws1dc{word-spacing:12.500769pt;}
.ws217{word-spacing:12.504488pt;}
.ws22b{word-spacing:12.523085pt;}
.ws1c5{word-spacing:12.526804pt;}
.ws1bb{word-spacing:12.530524pt;}
.ws139{word-spacing:12.543256pt;}
.ws20d{word-spacing:12.563998pt;}
.ws22f{word-spacing:12.575156pt;}
.ws1a2{word-spacing:12.576730pt;}
.ws20{word-spacing:12.582595pt;}
.ws1e{word-spacing:12.586314pt;}
.wsc3{word-spacing:12.595858pt;}
.ws138{word-spacing:12.605422pt;}
.ws1a4{word-spacing:12.610204pt;}
.ws70{word-spacing:12.614986pt;}
.ws9{word-spacing:12.630947pt;}
.ws22{word-spacing:12.649543pt;}
.ws1ba{word-spacing:12.653263pt;}
.ws9d{word-spacing:12.677153pt;}
.ws21a{word-spacing:12.690456pt;}
.ws1a1{word-spacing:12.715409pt;}
.ws15{word-spacing:12.724973pt;}
.ws21e{word-spacing:12.727650pt;}
.ws24{word-spacing:12.738808pt;}
.wsda{word-spacing:12.790577pt;}
.ws1f3{word-spacing:12.868986pt;}
.ws6f{word-spacing:12.916254pt;}
.ws76{word-spacing:12.930600pt;}
.ws1f1{word-spacing:12.965689pt;}
.ws1e8{word-spacing:12.991724pt;}
.ws5b{word-spacing:13.021459pt;}
.wsb0{word-spacing:13.050151pt;}
.ws6{word-spacing:13.062392pt;}
.wsaf{word-spacing:13.198394pt;}
.ws8{word-spacing:13.211167pt;}
.wsfb{word-spacing:13.217522pt;}
.ws9f{word-spacing:13.231868pt;}
.ws73{word-spacing:13.236650pt;}
.ws7{word-spacing:13.240922pt;}
.ws184{word-spacing:13.260560pt;}
.ws9e{word-spacing:13.317944pt;}
.ws149{word-spacing:13.351418pt;}
.wsdd{word-spacing:13.411190pt;}
.ws4d{word-spacing:13.427931pt;}
.wsa6{word-spacing:13.494879pt;}
.ws147{word-spacing:13.504443pt;}
.ws6b{word-spacing:13.523571pt;}
.ws1e0{word-spacing:13.523593pt;}
.ws1b2{word-spacing:13.552264pt;}
.wsdc{word-spacing:13.559967pt;}
.ws10{word-spacing:13.576174pt;}
.ws11{word-spacing:13.585738pt;}
.ws1da{word-spacing:13.586822pt;}
.ws1a3{word-spacing:13.590520pt;}
.ws160{word-spacing:13.606725pt;}
.ws1d4{word-spacing:13.632230pt;}
.wsbe{word-spacing:13.644982pt;}
.ws1a8{word-spacing:13.662250pt;}
.ws1d8{word-spacing:13.674738pt;}
.ws150{word-spacing:13.676596pt;}
.wsf{word-spacing:13.705288pt;}
.wsde{word-spacing:13.712995pt;}
.wsdb{word-spacing:13.717246pt;}
.ws27{word-spacing:13.757913pt;}
.ws109{word-spacing:13.824619pt;}
.wsd{word-spacing:13.872659pt;}
.wsbd{word-spacing:13.878775pt;}
.ws22d{word-spacing:13.932723pt;}
.ws14c{word-spacing:13.934826pt;}
.wse4{word-spacing:13.976543pt;}
.ws192{word-spacing:14.006556pt;}
.ws26{word-spacing:14.025707pt;}
.wsf5{word-spacing:14.048806pt;}
.ws13a{word-spacing:14.063940pt;}
.ws29{word-spacing:14.070339pt;}
.ws105{word-spacing:14.092633pt;}
.ws129{word-spacing:14.106979pt;}
.ws104{word-spacing:14.116543pt;}
.ws2a{word-spacing:14.122410pt;}
.ws43{word-spacing:14.126107pt;}
.ws128{word-spacing:14.130889pt;}
.ws17{word-spacing:14.150017pt;}
.ws194{word-spacing:14.183491pt;}
.ws18{word-spacing:14.188273pt;}
.ws1f2{word-spacing:14.196797pt;}
.wsd4{word-spacing:14.226529pt;}
.ws53{word-spacing:14.250439pt;}
.ws1ff{word-spacing:14.390204pt;}
.ws6d{word-spacing:14.393900pt;}
.ws136{word-spacing:14.427374pt;}
.ws1e6{word-spacing:14.427397pt;}
.ws6c{word-spacing:14.436939pt;}
.ws14{word-spacing:14.451285pt;}
.wsf6{word-spacing:14.532579pt;}
.wsea{word-spacing:14.558899pt;}
.ws6e{word-spacing:14.566053pt;}
.ws1b3{word-spacing:14.599527pt;}
.ws77{word-spacing:14.609091pt;}
.ws111{word-spacing:14.652130pt;}
.ws54{word-spacing:14.699950pt;}
.wseb{word-spacing:14.754434pt;}
.ws226{word-spacing:14.754701pt;}
.ws191{word-spacing:14.766898pt;}
.wse9{word-spacing:14.779939pt;}
.ws1d9{word-spacing:14.788175pt;}
.ws3f{word-spacing:14.833847pt;}
.ws10d{word-spacing:14.862539pt;}
.ws11f{word-spacing:14.872417pt;}
.ws224{word-spacing:14.903476pt;}
.ws8f{word-spacing:14.910359pt;}
.ws10c{word-spacing:14.962961pt;}
.ws72{word-spacing:15.034692pt;}
.ws65{word-spacing:15.106422pt;}
.ws225{word-spacing:15.219621pt;}
.ws1af{word-spacing:15.240319pt;}
.ws1d6{word-spacing:15.243273pt;}
.ws56{word-spacing:15.302485pt;}
.wsfa{word-spacing:15.335960pt;}
.ws130{word-spacing:15.355088pt;}
.wsb5{word-spacing:15.383549pt;}
.ws107{word-spacing:15.383780pt;}
.ws120{word-spacing:15.402908pt;}
.ws215{word-spacing:15.453941pt;}
.ws1eb{word-spacing:15.502292pt;}
.ws101{word-spacing:15.512895pt;}
.ws81{word-spacing:15.517677pt;}
.wsb6{word-spacing:15.536577pt;}
.wsb7{word-spacing:15.562081pt;}
.ws19c{word-spacing:15.565497pt;}
.ws13b{word-spacing:15.637227pt;}
.ws5f{word-spacing:15.642009pt;}
.ws1b{word-spacing:15.643628pt;}
.ws68{word-spacing:15.670701pt;}
.ws1d0{word-spacing:15.742432pt;}
.ws108{word-spacing:15.747214pt;}
.wsff{word-spacing:15.756778pt;}
.ws134{word-spacing:15.761560pt;}
.wsbc{word-spacing:15.774620pt;}
.ws11e{word-spacing:15.780688pt;}
.ws1c{word-spacing:15.788683pt;}
.ws9b{word-spacing:15.795034pt;}
.ws1b6{word-spacing:15.799816pt;}
.ws19{word-spacing:15.804598pt;}
.ws110{word-spacing:15.818944pt;}
.ws15c{word-spacing:15.838381pt;}
.ws21f{word-spacing:15.851912pt;}
.ws154{word-spacing:15.861982pt;}
.wsf8{word-spacing:15.866764pt;}
.ws1b5{word-spacing:15.876329pt;}
.ws1b7{word-spacing:15.885893pt;}
.ws14b{word-spacing:15.905021pt;}
.ws3a{word-spacing:15.909803pt;}
.wsc8{word-spacing:15.914585pt;}
.ws4f{word-spacing:15.938495pt;}
.ws1d1{word-spacing:15.962405pt;}
.ws142{word-spacing:16.000661pt;}
.wsc6{word-spacing:16.043699pt;}
.wsba{word-spacing:16.046669pt;}
.ws21b{word-spacing:16.071355pt;}
.ws4a{word-spacing:16.091520pt;}
.wsc7{word-spacing:16.110648pt;}
.ws1b8{word-spacing:16.115430pt;}
.ws97{word-spacing:16.120212pt;}
.ws1db{word-spacing:16.130864pt;}
.ws125{word-spacing:16.139340pt;}
.ws1a{word-spacing:16.149461pt;}
.ws16d{word-spacing:16.172814pt;}
.ws4b{word-spacing:16.177596pt;}
.wsa7{word-spacing:16.179262pt;}
.wscf{word-spacing:16.244545pt;}
.ws12a{word-spacing:16.258891pt;}
.ws30{word-spacing:16.273237pt;}
.ws1b4{word-spacing:16.311493pt;}
.ws79{word-spacing:16.344967pt;}
.ws40{word-spacing:16.373659pt;}
.ws17e{word-spacing:16.388005pt;}
.wse{word-spacing:16.411916pt;}
.wsc9{word-spacing:16.426262pt;}
.ws1ef{word-spacing:16.487923pt;}
.wsad{word-spacing:16.526684pt;}
.ws106{word-spacing:16.536248pt;}
.ws90{word-spacing:16.545812pt;}
.ws1ee{word-spacing:16.547433pt;}
.wsac{word-spacing:16.550594pt;}
.ws13e{word-spacing:16.560158pt;}
.wsc{word-spacing:16.655799pt;}
.ws35{word-spacing:16.708401pt;}
.ws11c{word-spacing:16.761003pt;}
.ws41{word-spacing:16.775350pt;}
.wscc{word-spacing:16.804042pt;}
.ws174{word-spacing:16.851862pt;}
.ws18e{word-spacing:16.880554pt;}
.ws3e{word-spacing:16.914028pt;}
.ws83{word-spacing:16.952285pt;}
.ws16{word-spacing:17.028797pt;}
.ws203{word-spacing:17.105337pt;}
.ws50{word-spacing:17.114873pt;}
.ws51{word-spacing:17.124437pt;}
.ws204{word-spacing:17.157408pt;}
.ws64{word-spacing:17.157912pt;}
.wscb{word-spacing:17.196168pt;}
.wsa2{word-spacing:17.277462pt;}
.ws199{word-spacing:17.301372pt;}
.ws57{word-spacing:17.430487pt;}
.ws172{word-spacing:17.449615pt;}
.ws45{word-spacing:17.468743pt;}
.ws18c{word-spacing:17.526128pt;}
.ws9c{word-spacing:17.709518pt;}
.ws1d5{word-spacing:17.783905pt;}
.ws7b{word-spacing:17.805159pt;}
.ws33{word-spacing:17.808267pt;}
.ws7f{word-spacing:17.856088pt;}
.ws5{word-spacing:17.863606pt;}
.ws14f{word-spacing:17.908690pt;}
.ws4{word-spacing:17.916740pt;}
.ws1cc{word-spacing:17.942164pt;}
.wsf9{word-spacing:17.969874pt;}
.wsa3{word-spacing:17.994766pt;}
.ws2{word-spacing:18.001754pt;}
.ws214{word-spacing:18.009141pt;}
.ws71{word-spacing:18.056933pt;}
.ws19a{word-spacing:18.143009pt;}
.ws143{word-spacing:18.157355pt;}
.ws80{word-spacing:18.176483pt;}
.wse6{word-spacing:18.223065pt;}
.ws8c{word-spacing:18.238650pt;}
.wse5{word-spacing:18.240068pt;}
.ws7c{word-spacing:18.251483pt;}
.ws144{word-spacing:18.262560pt;}
.ws8b{word-spacing:18.315162pt;}
.ws1ec{word-spacing:18.433148pt;}
.ws1fe{word-spacing:18.444306pt;}
.wse7{word-spacing:18.452607pt;}
.wse8{word-spacing:18.499366pt;}
.ws193{word-spacing:18.592520pt;}
.ws18f{word-spacing:18.625994pt;}
.ws208{word-spacing:18.652590pt;}
.wsfc{word-spacing:18.678596pt;}
.wsb3{word-spacing:18.694901pt;}
.wsa{word-spacing:18.712070pt;}
.ws206{word-spacing:18.756732pt;}
.ws216{word-spacing:18.793926pt;}
.wsb2{word-spacing:18.903189pt;}
.ws1fa{word-spacing:18.998491pt;}
.ws207{word-spacing:19.080317pt;}
.ws141{word-spacing:19.113761pt;}
.ws148{word-spacing:19.128107pt;}
.ws102{word-spacing:19.190273pt;}
.ws205{word-spacing:19.191898pt;}
.ws1d2{word-spacing:19.228529pt;}
.wsd3{word-spacing:19.266785pt;}
.ws10f{word-spacing:19.281132pt;}
.ws155{word-spacing:19.319388pt;}
.ws15f{word-spacing:19.370774pt;}
.ws4e{word-spacing:19.486759pt;}
.wsd7{word-spacing:19.501105pt;}
.ws10e{word-spacing:19.534579pt;}
.ws14e{word-spacing:19.544143pt;}
.ws74{word-spacing:19.568053pt;}
.ws18d{word-spacing:19.620655pt;}
.ws170{word-spacing:19.649348pt;}
.ws1cf{word-spacing:19.768898pt;}
.wsb9{word-spacing:19.774598pt;}
.ws198{word-spacing:19.816719pt;}
.ws213{word-spacing:19.824189pt;}
.ws16f{word-spacing:19.835847pt;}
.ws95{word-spacing:19.869321pt;}
.ws38{word-spacing:19.974525pt;}
.wsa1{word-spacing:19.998436pt;}
.ws133{word-spacing:20.084512pt;}
.ws34{word-spacing:20.137114pt;}
.ws8d{word-spacing:20.180153pt;}
.wsb8{word-spacing:20.212427pt;}
.ws15a{word-spacing:20.220929pt;}
.ws159{word-spacing:20.522734pt;}
.ws1e2{word-spacing:20.575500pt;}
.ws16c{word-spacing:20.648791pt;}
.ws137{word-spacing:20.715740pt;}
.wsf7{word-spacing:20.753996pt;}
.ws20c{word-spacing:20.876768pt;}
.ws15b{word-spacing:20.896802pt;}
.ws12f{word-spacing:20.897457pt;}
.ws62{word-spacing:20.911803pt;}
.ws60{word-spacing:20.943560pt;}
.ws114{word-spacing:20.950059pt;}
.wsd9{word-spacing:21.069609pt;}
.ws12c{word-spacing:21.093520pt;}
.ws12d{word-spacing:21.155686pt;}
.ws3d{word-spacing:21.213070pt;}
.ws84{word-spacing:21.251327pt;}
.ws5c{word-spacing:21.256109pt;}
.wsd0{word-spacing:21.260891pt;}
.ws3c{word-spacing:21.614761pt;}
.ws1b1{word-spacing:21.777349pt;}
.ws19b{word-spacing:21.786913pt;}
.wsfe{word-spacing:21.863426pt;}
.ws66{word-spacing:21.982977pt;}
.ws88{word-spacing:22.045143pt;}
.wse1{word-spacing:22.082767pt;}
.wse2{word-spacing:22.091269pt;}
.ws171{word-spacing:22.102527pt;}
.wse0{word-spacing:22.180535pt;}
.wsdf{word-spacing:22.393074pt;}
.ws69{word-spacing:22.623768pt;}
.ws166{word-spacing:22.633332pt;}
.ws19d{word-spacing:22.705063pt;}
.ws185{word-spacing:22.748101pt;}
.ws5a{word-spacing:22.824613pt;}
.ws164{word-spacing:22.829395pt;}
.ws158{word-spacing:22.843656pt;}
.ws165{word-spacing:22.858087pt;}
.ws157{word-spacing:23.026439pt;}
.ws132{word-spacing:23.269342pt;}
.ws1ca{word-spacing:23.331508pt;}
.ws82{word-spacing:23.541917pt;}
.wsc1{word-spacing:23.570609pt;}
.wsd6{word-spacing:23.599302pt;}
.ws46{word-spacing:23.604084pt;}
.ws151{word-spacing:23.680596pt;}
.wsc0{word-spacing:23.733198pt;}
.ws189{word-spacing:23.804929pt;}
.ws1cd{word-spacing:23.809711pt;}
.ws12{word-spacing:23.838403pt;}
.ws211{word-spacing:23.859694pt;}
.ws16e{word-spacing:24.015338pt;}
.ws115{word-spacing:24.058376pt;}
.ws116{word-spacing:24.063158pt;}
.ws153{word-spacing:24.211401pt;}
.ws85{word-spacing:24.240093pt;}
.ws13d{word-spacing:24.373990pt;}
.ws13c{word-spacing:24.407464pt;}
.ws1fd{word-spacing:24.425037pt;}
.ws126{word-spacing:24.555707pt;}
.ws16b{word-spacing:24.584399pt;}
.ws16a{word-spacing:24.589181pt;}
.ws1e9{word-spacing:24.603566pt;}
.wsfd{word-spacing:24.708732pt;}
.ws6a{word-spacing:24.713514pt;}
.ws44{word-spacing:24.962179pt;}
.ws187{word-spacing:25.009999pt;}
.ws14a{word-spacing:25.019564pt;}
.wsb4{word-spacing:25.041306pt;}
.ws210{word-spacing:25.068486pt;}
.ws17d{word-spacing:25.115204pt;}
.ws212{word-spacing:25.131716pt;}
.wscd{word-spacing:25.311267pt;}
.wsce{word-spacing:25.411690pt;}
.ws222{word-spacing:25.444142pt;}
.ws55{word-spacing:25.617317pt;}
.ws67{word-spacing:25.622099pt;}
.ws1cb{word-spacing:25.708175pt;}
.ws122{word-spacing:25.889892pt;}
.ws173{word-spacing:25.956841pt;}
.ws3b{word-spacing:26.047699pt;}
.wsd1{word-spacing:26.219852pt;}
.ws1ce{word-spacing:26.468518pt;}
.ws91{word-spacing:26.521120pt;}
.wsd8{word-spacing:26.530684pt;}
.ws20e{word-spacing:26.630618pt;}
.ws1ad{word-spacing:26.659799pt;}
.wsae{word-spacing:26.760221pt;}
.ws75{word-spacing:26.798477pt;}
.ws4c{word-spacing:26.951502pt;}
.ws195{word-spacing:26.961066pt;}
.ws7a{word-spacing:27.128437pt;}
.ws63{word-spacing:27.357975pt;}
.ws117{word-spacing:27.611422pt;}
.ws13f{word-spacing:27.668806pt;}
.ws18b{word-spacing:27.754883pt;}
.ws19e{word-spacing:27.764447pt;}
.ws5d{word-spacing:27.778793pt;}
.ws188{word-spacing:27.869651pt;}
.ws1a0{word-spacing:27.898344pt;}
.ws1aa{word-spacing:28.037022pt;}
.ws1ac{word-spacing:28.170919pt;}
.wsa4{word-spacing:28.280906pt;}
.ws169{word-spacing:28.591737pt;}
.ws58{word-spacing:28.644340pt;}
.ws98{word-spacing:28.744762pt;}
.ws1a9{word-spacing:28.787801pt;}
.ws167{word-spacing:28.797365pt;}
.ws9a{word-spacing:28.821275pt;}
.ws99{word-spacing:28.931261pt;}
.ws1d3{word-spacing:29.088042pt;}
.ws118{word-spacing:29.127324pt;}
.ws183{word-spacing:29.509887pt;}
.ws59{word-spacing:29.548143pt;}
.wsd2{word-spacing:29.653347pt;}
.ws31{word-spacing:30.150678pt;}
.ws152{word-spacing:30.303703pt;}
.ws12e{word-spacing:30.523676pt;}
.ws17c{word-spacing:30.604971pt;}
.ws11d{word-spacing:30.633663pt;}
.ws87{word-spacing:31.776567pt;}
.ws8a{word-spacing:31.967848pt;}
.ws94{word-spacing:32.269116pt;}
.ws7e{word-spacing:32.551256pt;}
.ws42{word-spacing:32.670806pt;}
.wsc5{word-spacing:33.168137pt;}
.wsc4{word-spacing:33.172919pt;}
.ws197{word-spacing:33.182483pt;}
.ws52{word-spacing:33.325944pt;}
.ws182{word-spacing:33.450277pt;}
.ws12b{word-spacing:33.780236pt;}
.ws196{word-spacing:33.938043pt;}
.ws2f{word-spacing:34.349298pt;}
.wsbf{word-spacing:34.487976pt;}
.ws7d{word-spacing:34.626655pt;}
.ws190{word-spacing:34.899231pt;}
.ws0{word-spacing:35.302318pt;}
.ws156{word-spacing:35.544804pt;}
.ws1b0{word-spacing:35.736085pt;}
.ws78{word-spacing:36.501210pt;}
.ws32{word-spacing:36.534684pt;}
.ws37{word-spacing:37.022450pt;}
.ws131{word-spacing:37.070271pt;}
.ws48{word-spacing:37.242424pt;}
.ws123{word-spacing:37.538909pt;}
.ws124{word-spacing:37.978856pt;}
.ws121{word-spacing:38.313598pt;}
.ws93{word-spacing:38.552699pt;}
.ws49{word-spacing:38.638775pt;}
.ws47{word-spacing:38.782236pt;}
.wsab{word-spacing:39.016556pt;}
.wsaa{word-spacing:39.050030pt;}
.ws19f{word-spacing:40.063819pt;}
.ws92{word-spacing:40.886328pt;}
.ws89{word-spacing:41.001097pt;}
.ws119{word-spacing:44.332721pt;}
.ws11a{word-spacing:48.090302pt;}
.ws11b{word-spacing:50.512548pt;}
.ws1c6{word-spacing:118.245893pt;}
.ws1c7{word-spacing:118.558319pt;}
.ws1c8{word-spacing:137.214629pt;}
.ws1be{word-spacing:148.573555pt;}
.ws1bf{word-spacing:164.879229pt;}
.ws1bc{word-spacing:167.546010pt;}
.ws1c4{word-spacing:329.892355pt;}
._3d{margin-left:-20.135040pt;}
._3c{margin-left:-16.874185pt;}
._1b{margin-left:-15.594189pt;}
._11{margin-left:-14.274350pt;}
._3f{margin-left:-11.269673pt;}
._1f{margin-left:-8.512007pt;}
._22{margin-left:-7.364321pt;}
._1e{margin-left:-3.868660pt;}
._1d{margin-left:-1.864990pt;}
._17{margin-left:-0.951623pt;}
._0{width:1.360234pt;}
._3b{width:3.761352pt;}
._3e{width:4.763949pt;}
._23{width:6.713965pt;}
._21{width:8.695273pt;}
._18{width:10.018346pt;}
._1a{width:10.954970pt;}
._3{width:12.538474pt;}
._6{width:13.437536pt;}
._1{width:14.371607pt;}
._5{width:15.315215pt;}
._e{width:16.233432pt;}
._2{width:17.459179pt;}
._a{width:18.908133pt;}
._d{width:20.366652pt;}
._b{width:21.294365pt;}
._15{width:23.054151pt;}
._4{width:25.038692pt;}
._10{width:26.066827pt;}
._c{width:27.051925pt;}
._12{width:28.849967pt;}
._24{width:29.820718pt;}
._8{width:31.174032pt;}
._f{width:33.679814pt;}
._7{width:35.406125pt;}
._9{width:37.481525pt;}
._20{width:39.250875pt;}
._19{width:40.255100pt;}
._16{width:42.144001pt;}
._1c{width:48.751702pt;}
._32{width:66.769951pt;}
._33{width:85.039447pt;}
._34{width:118.599232pt;}
._35{width:120.641161pt;}
._37{width:125.617665pt;}
._36{width:137.255542pt;}
._26{width:148.993842pt;}
._38{width:151.619710pt;}
._29{width:164.946177pt;}
._28{width:167.590642pt;}
._25{width:173.787096pt;}
._2c{width:183.892597pt;}
._2a{width:219.873686pt;}
._31{width:230.987133pt;}
._39{width:260.373285pt;}
._30{width:304.232490pt;}
._3a{width:334.102670pt;}
._27{width:374.372181pt;}
._2d{width:418.275506pt;}
._2f{width:454.833096pt;}
._2b{width:488.906153pt;}
._2e{width:494.708354pt;}
._14{width:529.833391pt;}
._13{width:638.728861pt;}
.fs9{font-size:24.792000pt;}
.fs7{font-size:28.334400pt;}
.fs5{font-size:31.876267pt;}
.fs2{font-size:35.418667pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507733pt;}
.fs8{font-size:45.163733pt;}
.fs4{font-size:47.820267pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:106.268267pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:40.970133pt;}
.y122{bottom:77.480267pt;}
.y3b{bottom:79.453295pt;}
.y54{bottom:79.461664pt;}
.y121{bottom:79.519738pt;}
.y1c5{bottom:79.520495pt;}
.y123{bottom:79.521200pt;}
.y94{bottom:79.521625pt;}
.y155{bottom:80.276236pt;}
.yad{bottom:80.577820pt;}
.ydd{bottom:80.730113pt;}
.y1c4{bottom:90.783647pt;}
.y154{bottom:92.219846pt;}
.yac{bottom:92.521430pt;}
.ydc{bottom:92.673723pt;}
.y3a{bottom:93.437137pt;}
.y93{bottom:93.505467pt;}
.y53{bottom:93.522018pt;}
.y120{bottom:93.580092pt;}
.yda{bottom:102.878800pt;}
.y153{bottom:104.163456pt;}
.yab{bottom:104.465041pt;}
.yd9{bottom:104.616928pt;}
.ydb{bottom:104.617333pt;}
.y39{bottom:107.420978pt;}
.y52{bottom:107.505859pt;}
.y11f{bottom:107.640446pt;}
.y92{bottom:107.943333pt;}
.y1c3{bottom:114.065911pt;}
.y151{bottom:114.368400pt;}
.y150{bottom:116.106251pt;}
.y152{bottom:116.107067pt;}
.yaa{bottom:116.484102pt;}
.yd8{bottom:116.635990pt;}
.y38{bottom:121.404820pt;}
.y51{bottom:121.489701pt;}
.y11e{bottom:121.700800pt;}
.yd6{bottom:126.765333pt;}
.y14f{bottom:128.049861pt;}
.ya8{bottom:128.427713pt;}
.yd5{bottom:128.578913pt;}
.yd7{bottom:128.579600pt;}
.ya9{bottom:128.654066pt;}
.y1c2{bottom:130.696099pt;}
.y37{bottom:135.388661pt;}
.y50{bottom:135.473542pt;}
.y91{bottom:138.410339pt;}
.y14e{bottom:140.068923pt;}
.ya7{bottom:140.371323pt;}
.yd4{bottom:140.522523pt;}
.y11d{bottom:144.151200pt;}
.y1c1{bottom:147.250041pt;}
.y36{bottom:149.372503pt;}
.y4f{bottom:149.457384pt;}
.yd3{bottom:150.727467pt;}
.y14d{bottom:152.012533pt;}
.ya6{bottom:152.314933pt;}
.y90{bottom:152.394181pt;}
.yd2{bottom:152.466133pt;}
.yd1{bottom:162.670800pt;}
.y35{bottom:163.356344pt;}
.y4e{bottom:163.441225pt;}
.yd0{bottom:164.409333pt;}
.y8f{bottom:166.378022pt;}
.y1c0{bottom:167.206267pt;}
.y1be{bottom:167.206554pt;}
.y1bf{bottom:171.288133pt;}
.y11c{bottom:174.532907pt;}
.y34{bottom:177.264869pt;}
.y4d{bottom:177.425067pt;}
.y8e{bottom:180.438376pt;}
.y1bd{bottom:187.086533pt;}
.y11b{bottom:188.593261pt;}
.y33{bottom:191.248710pt;}
.y4c{bottom:191.408908pt;}
.y8d{bottom:194.422217pt;}
.y11a{bottom:202.653615pt;}
.y32{bottom:205.232552pt;}
.y4b{bottom:205.469262pt;}
.y8c{bottom:208.406059pt;}
.y119{bottom:216.713969pt;}
.y31{bottom:219.216393pt;}
.y4a{bottom:219.453104pt;}
.y8b{bottom:222.466413pt;}
.y1bc{bottom:227.603492pt;}
.y118{bottom:230.774323pt;}
.y49{bottom:233.436945pt;}
.y30{bottom:233.654527pt;}
.y8a{bottom:236.450254pt;}
.y1bb{bottom:241.587333pt;}
.y117{bottom:244.834677pt;}
.y48{bottom:247.420787pt;}
.y2f{bottom:247.638369pt;}
.y89{bottom:250.434096pt;}
.y116{bottom:258.895030pt;}
.y47{bottom:261.404628pt;}
.y2e{bottom:261.622210pt;}
.y88{bottom:264.417937pt;}
.y1ae{bottom:271.435549pt;}
.y17c{bottom:271.445113pt;}
.y115{bottom:272.955384pt;}
.y2d{bottom:275.606052pt;}
.y46{bottom:275.918079pt;}
.y87{bottom:278.478291pt;}
.y17b{bottom:285.505467pt;}
.y1ad{bottom:285.571220pt;}
.y114{bottom:287.015738pt;}
.y2c{bottom:289.589893pt;}
.y45{bottom:289.901920pt;}
.y86{bottom:292.462133pt;}
.y1ac{bottom:300.084670pt;}
.y113{bottom:301.076092pt;}
.y2b{bottom:303.573735pt;}
.y44{bottom:303.885762pt;}
.y85{bottom:306.445974pt;}
.y17a{bottom:307.955867pt;}
.y233{bottom:309.316137pt;}
.y206{bottom:309.323104pt;}
.y1ab{bottom:314.145024pt;}
.y112{bottom:315.136446pt;}
.y2a{bottom:317.557576pt;}
.y43{bottom:317.869603pt;}
.y232{bottom:319.898646pt;}
.y205{bottom:319.905613pt;}
.y84{bottom:320.506328pt;}
.y1aa{bottom:328.280695pt;}
.y10f{bottom:329.193548pt;}
.y111{bottom:329.196800pt;}
.y231{bottom:330.557402pt;}
.y204{bottom:330.564369pt;}
.y29{bottom:331.466101pt;}
.y42{bottom:331.853445pt;}
.y110{bottom:334.488133pt;}
.y83{bottom:334.490170pt;}
.y179{bottom:338.339848pt;}
.y230{bottom:341.139911pt;}
.y203{bottom:341.146878pt;}
.y1a9{bottom:342.416366pt;}
.y10e{bottom:343.253902pt;}
.y28{bottom:345.449942pt;}
.y41{bottom:345.837286pt;}
.y82{bottom:348.474011pt;}
.y22f{bottom:351.798667pt;}
.y202{bottom:351.805634pt;}
.y178{bottom:352.400202pt;}
.y1a8{bottom:356.552037pt;}
.y10d{bottom:357.314256pt;}
.y27{bottom:359.433784pt;}
.y40{bottom:359.821128pt;}
.y22e{bottom:362.381176pt;}
.y201{bottom:362.388143pt;}
.y81{bottom:362.534365pt;}
.y177{bottom:366.384044pt;}
.y1a7{bottom:370.687708pt;}
.y10c{bottom:371.298097pt;}
.y22d{bottom:373.039932pt;}
.y200{bottom:373.046899pt;}
.y26{bottom:373.417625pt;}
.y3f{bottom:373.881482pt;}
.y80{bottom:376.518206pt;}
.y176{bottom:380.444398pt;}
.y22c{bottom:383.697758pt;}
.y1ff{bottom:383.704725pt;}
.y1a6{bottom:384.823379pt;}
.y10b{bottom:385.358451pt;}
.y25{bottom:387.401467pt;}
.y3e{bottom:387.865323pt;}
.y7f{bottom:390.502048pt;}
.y22b{bottom:394.280267pt;}
.y1fe{bottom:394.287234pt;}
.y175{bottom:394.504751pt;}
.y1a5{bottom:398.959049pt;}
.y10a{bottom:399.418805pt;}
.y3d{bottom:401.849165pt;}
.y7e{bottom:404.485889pt;}
.y1fd{bottom:404.945060pt;}
.y22a{bottom:404.953429pt;}
.y174{bottom:408.488593pt;}
.y1a4{bottom:413.094720pt;}
.y109{bottom:413.479159pt;}
.y24{bottom:413.858133pt;}
.y1fc{bottom:415.527569pt;}
.y229{bottom:415.535938pt;}
.y3c{bottom:415.833006pt;}
.y7d{bottom:418.546243pt;}
.y173{bottom:422.548947pt;}
.y1fb{bottom:426.186325pt;}
.y228{bottom:426.194694pt;}
.y1a3{bottom:427.230391pt;}
.y108{bottom:427.539513pt;}
.y7c{bottom:432.530085pt;}
.y172{bottom:436.532788pt;}
.y1fa{bottom:436.844151pt;}
.y227{bottom:436.852520pt;}
.y1a2{bottom:441.366062pt;}
.y106{bottom:441.599867pt;}
.y7b{bottom:446.513926pt;}
.y107{bottom:446.966800pt;}
.y1f9{bottom:447.426660pt;}
.y226{bottom:447.435029pt;}
.y171{bottom:450.593142pt;}
.y1a1{bottom:455.501733pt;}
.y105{bottom:455.734651pt;}
.y1f8{bottom:458.084486pt;}
.y225{bottom:458.092855pt;}
.y7a{bottom:460.574280pt;}
.y170{bottom:464.653496pt;}
.y1f7{bottom:468.666995pt;}
.y224{bottom:468.675364pt;}
.y1a0{bottom:469.637403pt;}
.y104{bottom:469.795005pt;}
.y23{bottom:469.871469pt;}
.y79{bottom:474.558122pt;}
.y16f{bottom:479.091630pt;}
.y1f6{bottom:479.325751pt;}
.y223{bottom:479.334120pt;}
.y19f{bottom:483.773074pt;}
.y103{bottom:483.778846pt;}
.y22{bottom:486.501657pt;}
.y78{bottom:488.541963pt;}
.y1f5{bottom:489.908260pt;}
.y222{bottom:489.916629pt;}
.y16e{bottom:493.151984pt;}
.y102{bottom:497.838847pt;}
.y19e{bottom:497.908745pt;}
.y1f4{bottom:500.567016pt;}
.y221{bottom:500.574455pt;}
.y77{bottom:502.525805pt;}
.y21{bottom:503.055599pt;}
.y16d{bottom:507.135826pt;}
.y1f3{bottom:511.224842pt;}
.y220{bottom:511.232281pt;}
.y101{bottom:511.521200pt;}
.y19d{bottom:512.044416pt;}
.y20{bottom:513.713425pt;}
.y76{bottom:516.586159pt;}
.y16c{bottom:521.196179pt;}
.y1f2{bottom:521.807351pt;}
.y21f{bottom:521.814790pt;}
.y100{bottom:525.579472pt;}
.y19c{bottom:526.180087pt;}
.y1f{bottom:530.343613pt;}
.y75{bottom:530.570000pt;}
.y1f1{bottom:532.465178pt;}
.y21e{bottom:532.472616pt;}
.y16b{bottom:535.256533pt;}
.y169{bottom:535.256959pt;}
.yff{bottom:539.639826pt;}
.y19b{bottom:540.315758pt;}
.y14a{bottom:540.391467pt;}
.y14c{bottom:540.396667pt;}
.y16a{bottom:540.547867pt;}
.y1e{bottom:540.926122pt;}
.y1f0{bottom:543.047687pt;}
.y21d{bottom:543.055125pt;}
.y74{bottom:545.082727pt;}
.y14b{bottom:545.763733pt;}
.y166{bottom:549.238131pt;}
.y168{bottom:549.240800pt;}
.yfe{bottom:553.700179pt;}
.y1ef{bottom:553.705513pt;}
.y21c{bottom:553.712951pt;}
.y19a{bottom:554.376112pt;}
.y149{bottom:554.527138pt;}
.y167{bottom:554.532133pt;}
.y1d{bottom:557.556311pt;}
.y165{bottom:563.298485pt;}
.y1ee{bottom:564.363339pt;}
.y21b{bottom:564.370777pt;}
.yfc{bottom:565.795200pt;}
.yfb{bottom:567.755764pt;}
.yfd{bottom:567.760533pt;}
.y199{bottom:568.511782pt;}
.y148{bottom:568.662809pt;}
.y73{bottom:569.499067pt;}
.y1c{bottom:574.186499pt;}
.y1ed{bottom:574.945848pt;}
.y21a{bottom:574.953287pt;}
.y164{bottom:577.736619pt;}
.yfa{bottom:581.816118pt;}
.y198{bottom:582.647453pt;}
.y147{bottom:582.723163pt;}
.y1ec{bottom:585.603674pt;}
.y219{bottom:585.611113pt;}
.y1b{bottom:590.740441pt;}
.y163{bottom:591.796973pt;}
.y1eb{bottom:596.186183pt;}
.y218{bottom:596.193622pt;}
.yf9{bottom:596.329569pt;}
.y197{bottom:596.783124pt;}
.y146{bottom:596.858833pt;}
.y72{bottom:599.887949pt;}
.y19{bottom:601.398267pt;}
.y1a{bottom:601.549831pt;}
.y162{bottom:605.857327pt;}
.y1ea{bottom:606.844939pt;}
.y217{bottom:606.852378pt;}
.yf8{bottom:610.389923pt;}
.yc7{bottom:610.840966pt;}
.y196{bottom:610.918795pt;}
.y145{bottom:610.994504pt;}
.y71{bottom:613.948303pt;}
.y1e9{bottom:617.427448pt;}
.y216{bottom:617.434887pt;}
.y161{bottom:619.841168pt;}
.yf7{bottom:624.450277pt;}
.yc6{bottom:624.976637pt;}
.y144{bottom:625.130175pt;}
.y195{bottom:625.432246pt;}
.y70{bottom:627.932144pt;}
.y1e8{bottom:628.085274pt;}
.y215{bottom:628.092713pt;}
.y18{bottom:632.997182pt;}
.y160{bottom:633.901522pt;}
.yf6{bottom:638.510630pt;}
.y1e7{bottom:638.743100pt;}
.y214{bottom:638.750539pt;}
.yc5{bottom:639.112308pt;}
.y143{bottom:639.190529pt;}
.y194{bottom:639.567917pt;}
.y6f{bottom:641.915986pt;}
.y17{bottom:646.300780pt;}
.y15f{bottom:647.885363pt;}
.y1e6{bottom:649.325609pt;}
.y213{bottom:649.333048pt;}
.ycf{bottom:651.816513pt;}
.yf5{bottom:652.570984pt;}
.yc4{bottom:653.247979pt;}
.y142{bottom:653.326200pt;}
.y193{bottom:653.703587pt;}
.y6e{bottom:655.976340pt;}
.y16{bottom:659.604378pt;}
.y1e5{bottom:659.983435pt;}
.y212{bottom:659.990874pt;}
.y15e{bottom:661.945717pt;}
.yce{bottom:663.760123pt;}
.yf4{bottom:666.631338pt;}
.yc3{bottom:667.383649pt;}
.y141{bottom:667.461871pt;}
.y192{bottom:667.839258pt;}
.y6d{bottom:669.960181pt;}
.y1e4{bottom:670.565944pt;}
.y211{bottom:670.573383pt;}
.y15{bottom:672.832659pt;}
.ycd{bottom:675.703733pt;}
.y15d{bottom:676.006071pt;}
.yf3{bottom:680.691692pt;}
.y1e3{bottom:681.224700pt;}
.y210{bottom:681.232139pt;}
.yc2{bottom:681.519320pt;}
.y140{bottom:681.522225pt;}
.y191{bottom:681.974929pt;}
.y6c{bottom:683.944023pt;}
.ycc{bottom:685.908533pt;}
.y14{bottom:686.136258pt;}
.ycb{bottom:687.646661pt;}
.y15c{bottom:689.989913pt;}
.y1e2{bottom:691.882526pt;}
.y20f{bottom:691.889965pt;}
.yf2{bottom:694.752046pt;}
.yc1{bottom:695.654991pt;}
.y13f{bottom:695.657895pt;}
.y190{bottom:696.035283pt;}
.y6b{bottom:697.927864pt;}
.y13{bottom:699.439856pt;}
.yc9{bottom:699.590272pt;}
.yca{bottom:699.816625pt;}
.y1e1{bottom:702.465035pt;}
.y20e{bottom:702.472474pt;}
.y159{bottom:704.050071pt;}
.y15b{bottom:704.050267pt;}
.yf0{bottom:706.771467pt;}
.yef{bottom:708.811913pt;}
.yf1{bottom:708.812400pt;}
.y15a{bottom:709.341600pt;}
.yc0{bottom:709.790662pt;}
.y18f{bottom:710.170954pt;}
.y13e{bottom:710.171346pt;}
.yc8{bottom:711.609333pt;}
.y6a{bottom:711.988218pt;}
.y12{bottom:712.668137pt;}
.y1e0{bottom:713.122861pt;}
.y20d{bottom:713.130300pt;}
.y158{bottom:718.033913pt;}
.yee{bottom:722.872267pt;}
.y1df{bottom:723.705370pt;}
.y20c{bottom:723.712809pt;}
.ybf{bottom:723.926333pt;}
.y13d{bottom:724.231700pt;}
.y18e{bottom:724.306625pt;}
.y11{bottom:725.971735pt;}
.y69{bottom:725.972060pt;}
.y157{bottom:732.094267pt;}
.y1de{bottom:734.363196pt;}
.y20b{bottom:734.370635pt;}
.ya5{bottom:734.891431pt;}
.yed{bottom:736.927286pt;}
.yf{bottom:737.310000pt;}
.ybe{bottom:738.062004pt;}
.y13c{bottom:738.367371pt;}
.y18d{bottom:738.442295pt;}
.y10{bottom:739.275333pt;}
.ye{bottom:739.276793pt;}
.y68{bottom:739.955901pt;}
.y1dd{bottom:745.021023pt;}
.y20a{bottom:745.028461pt;}
.ya4{bottom:749.102419pt;}
.yec{bottom:750.987640pt;}
.ybd{bottom:752.197674pt;}
.y13b{bottom:752.503042pt;}
.y18c{bottom:752.577966pt;}
.yd{bottom:752.580391pt;}
.y67{bottom:754.016255pt;}
.y1dc{bottom:755.603532pt;}
.y209{bottom:755.610970pt;}
.y1ba{bottom:762.254587pt;}
.ya3{bottom:763.313407pt;}
.yeb{bottom:765.047994pt;}
.yc{bottom:765.808672pt;}
.y1db{bottom:766.261358pt;}
.y208{bottom:766.268796pt;}
.ybc{bottom:766.333345pt;}
.y13a{bottom:766.638713pt;}
.y18b{bottom:766.713637pt;}
.y66{bottom:768.000096pt;}
.y1da{bottom:776.843867pt;}
.y207{bottom:776.851305pt;}
.ya2{bottom:777.524395pt;}
.yea{bottom:779.108348pt;}
.yb{bottom:779.112270pt;}
.ybb{bottom:780.469016pt;}
.y137{bottom:780.698038pt;}
.y139{bottom:780.699067pt;}
.y18a{bottom:780.849308pt;}
.y65{bottom:781.983938pt;}
.y1b9{bottom:785.536851pt;}
.y138{bottom:786.065867pt;}
.ya1{bottom:791.735382pt;}
.ya{bottom:792.415868pt;}
.ye9{bottom:793.168702pt;}
.yba{bottom:794.604687pt;}
.y136{bottom:794.833709pt;}
.y189{bottom:794.984979pt;}
.y1d9{bottom:795.439067pt;}
.y64{bottom:796.044292pt;}
.y1b8{bottom:802.090792pt;}
.y9{bottom:805.719467pt;}
.ya0{bottom:805.946370pt;}
.ye8{bottom:807.229056pt;}
.y62{bottom:807.987200pt;}
.yb9{bottom:808.740358pt;}
.y135{bottom:808.969379pt;}
.y188{bottom:809.120650pt;}
.y63{bottom:810.028133pt;}
.y61{bottom:810.030309pt;}
.y1b7{bottom:818.720981pt;}
.y9f{bottom:820.157358pt;}
.ye7{bottom:821.289410pt;}
.yb8{bottom:822.876029pt;}
.y132{bottom:823.028500pt;}
.y134{bottom:823.029733pt;}
.y187{bottom:823.256320pt;}
.y60{bottom:824.014151pt;}
.y1d1{bottom:825.375770pt;}
.y8{bottom:825.599733pt;}
.y133{bottom:828.396667pt;}
.y9e{bottom:834.368346pt;}
.ye6{bottom:835.349763pt;}
.y1b6{bottom:835.351169pt;}
.yb7{bottom:837.011699pt;}
.y131{bottom:837.164171pt;}
.y186{bottom:837.391991pt;}
.y5f{bottom:837.997992pt;}
.y1d0{bottom:839.284294pt;}
.y9d{bottom:846.613867pt;}
.y9c{bottom:848.579333pt;}
.ye5{bottom:849.410117pt;}
.yb6{bottom:851.147370pt;}
.y130{bottom:851.299842pt;}
.y185{bottom:851.527662pt;}
.y1b5{bottom:851.905111pt;}
.y5e{bottom:852.058346pt;}
.y1cf{bottom:853.268136pt;}
.y1d8{bottom:855.004116pt;}
.y9b{bottom:863.092667pt;}
.ye4{bottom:863.393959pt;}
.yb5{bottom:865.283041pt;}
.y12f{bottom:865.435513pt;}
.y184{bottom:865.663333pt;}
.y7{bottom:865.889963pt;}
.y5d{bottom:866.042188pt;}
.y1ce{bottom:867.176660pt;}
.y1d7{bottom:867.552399pt;}
.y1b4{bottom:868.535299pt;}
.ye3{bottom:877.454313pt;}
.y6{bottom:879.117867pt;}
.yb4{bottom:879.418712pt;}
.y12c{bottom:879.495458pt;}
.y12e{bottom:879.495867pt;}
.y183{bottom:879.799004pt;}
.y1d6{bottom:880.176133pt;}
.y5c{bottom:880.555639pt;}
.y1cd{bottom:881.160502pt;}
.y12d{bottom:884.787200pt;}
.y1b3{bottom:885.165487pt;}
.ye2{bottom:891.514667pt;}
.y9a{bottom:893.483535pt;}
.yb3{bottom:893.554383pt;}
.y12b{bottom:893.631129pt;}
.y182{bottom:893.934675pt;}
.y5b{bottom:894.539480pt;}
.y1cc{bottom:895.069026pt;}
.y3{bottom:897.713200pt;}
.y5{bottom:898.317598pt;}
.y1d5{bottom:898.771467pt;}
.y4{bottom:903.609200pt;}
.y1b1{bottom:905.045467pt;}
.y129{bottom:905.725733pt;}
.ye1{bottom:906.028133pt;}
.yb2{bottom:907.690054pt;}
.y99{bottom:907.694522pt;}
.y12a{bottom:907.766800pt;}
.y128{bottom:907.768219pt;}
.y181{bottom:908.070345pt;}
.y5a{bottom:908.523322pt;}
.y1cb{bottom:909.052868pt;}
.y1b2{bottom:909.202933pt;}
.yb1{bottom:921.825724pt;}
.y127{bottom:921.828573pt;}
.y98{bottom:921.905510pt;}
.y180{bottom:922.130699pt;}
.y59{bottom:922.507163pt;}
.y1ca{bottom:922.961392pt;}
.y1d4{bottom:929.234250pt;}
.y2{bottom:929.612870pt;}
.yb0{bottom:935.961395pt;}
.y126{bottom:935.964243pt;}
.y97{bottom:936.116498pt;}
.y17f{bottom:936.266370pt;}
.ye0{bottom:936.414492pt;}
.y58{bottom:936.567517pt;}
.y1c9{bottom:936.945234pt;}
.y1d3{bottom:941.782533pt;}
.y1b0{bottom:945.562425pt;}
.y96{bottom:950.327486pt;}
.yaf{bottom:950.399529pt;}
.y17e{bottom:950.402041pt;}
.ydf{bottom:950.474846pt;}
.y125{bottom:950.477694pt;}
.y57{bottom:950.551359pt;}
.y1c8{bottom:950.853759pt;}
.y1{bottom:958.865867pt;}
.y1af{bottom:959.546267pt;}
.y1d2{bottom:962.569867pt;}
.y56{bottom:964.535200pt;}
.y17d{bottom:964.537712pt;}
.y124{bottom:964.538048pt;}
.y95{bottom:964.538473pt;}
.y1c7{bottom:964.837600pt;}
.y1c6{bottom:1006.639200pt;}
.yae{bottom:1006.640671pt;}
.y156{bottom:1006.641955pt;}
.yde{bottom:1006.642062pt;}
.h14{height:18.048576pt;}
.hf{height:21.250800pt;}
.hb{height:21.484604pt;}
.h12{height:22.231642pt;}
.h8{height:23.907200pt;}
.h16{height:25.068486pt;}
.h4{height:25.784789pt;}
.h13{height:27.076941pt;}
.h6{height:27.895200pt;}
.h15{height:28.650212pt;}
.h10{height:30.440356pt;}
.hc{height:30.648076pt;}
.he{height:30.975385pt;}
.ha{height:31.880800pt;}
.h9{height:32.230860pt;}
.h11{height:32.232272pt;}
.hd{height:33.474187pt;}
.h7{height:35.865200pt;}
.h3{height:38.681455pt;}
.h5{height:39.850400pt;}
.h2{height:75.450469pt;}
.h0{height:1054.488037pt;}
.h1{height:1054.666667pt;}
.w0{width:816.377360pt;}
.w1{width:816.666667pt;}
.x0{left:0.000000pt;}
.x1{left:77.404667pt;}
.x46{left:82.091333pt;}
.x3b{left:85.417333pt;}
.x37{left:86.551200pt;}
.xd{left:88.743333pt;}
.x38{left:92.825200pt;}
.x47{left:95.697682pt;}
.x8{left:98.418933pt;}
.x11{left:109.379467pt;}
.x26{left:115.351200pt;}
.x36{left:121.474000pt;}
.x27{left:123.363733pt;}
.x34{left:128.428400pt;}
.x35{left:134.929067pt;}
.x1a{left:139.087639pt;}
.x2{left:174.765333pt;}
.x3{left:180.661333pt;}
.x28{left:181.568533pt;}
.x29{left:189.203067pt;}
.xe{left:194.494037pt;}
.x23{left:200.768533pt;}
.x3d{left:209.536933pt;}
.x24{left:211.275600pt;}
.x3e{left:214.752667pt;}
.x12{left:240.302267pt;}
.x13{left:248.466133pt;}
.x3f{left:255.344800pt;}
.x4{left:270.462881pt;}
.x3c{left:273.940133pt;}
.x14{left:276.812533pt;}
.x5{left:283.918000pt;}
.x15{left:284.976267pt;}
.x6{left:289.814133pt;}
.x22{left:291.099200pt;}
.x1e{left:308.636133pt;}
.x1f{left:315.288133pt;}
.x40{left:319.294400pt;}
.x39{left:324.056667pt;}
.x3a{left:330.406267pt;}
.x41{left:359.886533pt;}
.x25{left:362.834533pt;}
.x1c{left:370.620400pt;}
.x1d{left:378.481867pt;}
.x1b{left:392.163733pt;}
.x7{left:398.513333pt;}
.x42{left:417.335333pt;}
.xf{left:420.133935pt;}
.x30{left:426.708533pt;}
.x10{left:432.077047pt;}
.x31{left:433.209333pt;}
.x48{left:438.426478pt;}
.x2f{left:445.228267pt;}
.x20{left:446.740133pt;}
.x21{left:453.921200pt;}
.x32{left:458.229867pt;}
.x33{left:465.032933pt;}
.x2c{left:482.418800pt;}
.x2a{left:488.617200pt;}
.x2b{left:499.199867pt;}
.x43{left:521.877067pt;}
.x9{left:546.292800pt;}
.xa{left:554.305333pt;}
.x44{left:562.469200pt;}
.xb{left:582.576267pt;}
.xc{left:590.588800pt;}
.x19{left:592.026101pt;}
.x16{left:626.116400pt;}
.x17{left:633.373067pt;}
.x45{left:667.086400pt;}
.x2d{left:692.636133pt;}
.x2e{left:699.136933pt;}
.x18{left:734.514149pt;}
}




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