
    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_1c90b2b957cee5fd5835b042.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.953000;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_b7cce9322f4b2187c3490c9c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.738000;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_e185a0e3a13bb74b1ec6ebc9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.956000;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_f1197aa119478c11b91517c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.956000;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_382222f15303e4877aa04d73.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_8d66ff8008e931e3507b3a0a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.894000;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_b13e64bdac87132338ad3b38.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_a4ad2fc224bb872cb24857ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.061000;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_81f7aa4066b3b52e2f79a97a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;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_faa54b5ed7efc14482b6c479.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.749077;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_aa46790535d4c46ccac8c11d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.630750;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_a8b67f70b50d47a917193a2e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.108000;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_0ebd65422d52a94f978137f0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.694000;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);}
.m2{transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281267,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281280,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.676664px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.050808px;}
.ls8{letter-spacing:0.079692px;}
.ls1e{letter-spacing:0.152424px;}
.ls11{letter-spacing:0.179334px;}
.ls1b{letter-spacing:0.203232px;}
.ls7{letter-spacing:0.239112px;}
.ls1{letter-spacing:0.358668px;}
.ls25{letter-spacing:1.778280px;}
.ls3{letter-spacing:1.853118px;}
.ls24{letter-spacing:3.150096px;}
.ls20{letter-spacing:5.929680px;}
.ls14{letter-spacing:5.977500px;}
.ls0{letter-spacing:6.037578px;}
.ls21{letter-spacing:6.097356px;}
.ls17{letter-spacing:13.308564px;}
.ls15{letter-spacing:15.589320px;}
.ls16{letter-spacing:15.828420px;}
.ls4{letter-spacing:15.924060px;}
.ls22{letter-spacing:17.020680px;}
.ls9{letter-spacing:17.096508px;}
.ls12{letter-spacing:18.710514px;}
.lsf{letter-spacing:19.965852px;}
.ls23{letter-spacing:20.085408px;}
.lsa{letter-spacing:22.177638px;}
.ls2{letter-spacing:22.536306px;}
.ls6{letter-spacing:22.835196px;}
.ls10{letter-spacing:24.090534px;}
.lsb{letter-spacing:24.568758px;}
.lsc{letter-spacing:25.226316px;}
.lsd{letter-spacing:26.959878px;}
.ls18{letter-spacing:27.976104px;}
.lse{letter-spacing:45.610614px;}
.ls19{letter-spacing:47.822400px;}
.ls13{letter-spacing:48.001734px;}
.ls1d{letter-spacing:264.709680px;}
.ls1f{letter-spacing:450.412920px;}
.ls1c{letter-spacing:485.419632px;}
.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;}
}
.wsf5{word-spacing:-281.628744px;}
.wscc{word-spacing:-62.109342px;}
.ws9b{word-spacing:-47.882178px;}
.ws9a{word-spacing:-42.263046px;}
.ws97{word-spacing:-34.252794px;}
.wsc8{word-spacing:-31.383450px;}
.wsbe{word-spacing:-26.577282px;}
.ws18{word-spacing:-22.835196px;}
.ws39{word-spacing:-19.906074px;}
.ws13b{word-spacing:-16.919064px;}
.ws7f{word-spacing:-14.944500px;}
.ws12{word-spacing:-14.595390px;}
.ws3e{word-spacing:-14.286942px;}
.wsd6{word-spacing:-13.437420px;}
.wsb5{word-spacing:-13.268718px;}
.ws139{word-spacing:-12.702000px;}
.ws74{word-spacing:-12.597792px;}
.ws155{word-spacing:-12.143112px;}
.wsf2{word-spacing:-11.278710px;}
.ws106{word-spacing:-3.586500px;}
.wsd2{word-spacing:-3.490860px;}
.ws76{word-spacing:-3.108456px;}
.ws114{word-spacing:-2.809566px;}
.ws119{word-spacing:-2.152008px;}
.ws77{word-spacing:-1.076004px;}
.ws93{word-spacing:-0.777114px;}
.ws111{word-spacing:-0.717336px;}
.ws189{word-spacing:-0.457272px;}
.ws11b{word-spacing:-0.418446px;}
.ws15b{word-spacing:-0.406464px;}
.ws174{word-spacing:-0.355656px;}
.ws12f{word-spacing:-0.239112px;}
.ws176{word-spacing:-0.203232px;}
.ws175{word-spacing:-0.152424px;}
.ws113{word-spacing:-0.119556px;}
.ws15c{word-spacing:-0.101616px;}
.wse5{word-spacing:-0.059778px;}
.ws15d{word-spacing:-0.050808px;}
.ws75{word-spacing:0.000000px;}
.ws188{word-spacing:0.050808px;}
.ws130{word-spacing:0.059778px;}
.ws6f{word-spacing:0.095640px;}
.wsfc{word-spacing:0.152424px;}
.wsdd{word-spacing:0.239112px;}
.wsfb{word-spacing:0.254040px;}
.wsfa{word-spacing:0.355656px;}
.ws138{word-spacing:0.406464px;}
.ws12e{word-spacing:0.418446px;}
.wsf9{word-spacing:0.457272px;}
.wsf{word-spacing:0.460278px;}
.ws32{word-spacing:0.478224px;}
.ws10{word-spacing:0.526032px;}
.ws185{word-spacing:0.558888px;}
.ws33{word-spacing:0.597780px;}
.ws15e{word-spacing:0.609696px;}
.wsd{word-spacing:0.657540px;}
.wsa5{word-spacing:0.657558px;}
.wse{word-spacing:0.723294px;}
.wsb0{word-spacing:0.777114px;}
.wsaf{word-spacing:0.836892px;}
.ws15f{word-spacing:0.863736px;}
.ws9f{word-spacing:0.896670px;}
.ws160{word-spacing:0.914544px;}
.wsa6{word-spacing:0.956448px;}
.ws161{word-spacing:0.965352px;}
.wsd9{word-spacing:1.016226px;}
.wsa0{word-spacing:1.135782px;}
.ws83{word-spacing:1.255338px;}
.ws84{word-spacing:1.315116px;}
.ws120{word-spacing:1.374894px;}
.ws121{word-spacing:1.494450px;}
.ws164{word-spacing:1.524240px;}
.ws60{word-spacing:1.554228px;}
.ws157{word-spacing:1.625856px;}
.ws13d{word-spacing:1.673784px;}
.ws162{word-spacing:1.676664px;}
.ws2b{word-spacing:1.733562px;}
.ws163{word-spacing:1.879896px;}
.ws108{word-spacing:1.912800px;}
.wseb{word-spacing:1.930704px;}
.ws71{word-spacing:2.056260px;}
.wsec{word-spacing:2.083128px;}
.wsd5{word-spacing:2.104080px;}
.ws66{word-spacing:2.152008px;}
.ws72{word-spacing:2.196768px;}
.ws129{word-spacing:2.211786px;}
.ws107{word-spacing:2.247540px;}
.ws13c{word-spacing:2.271564px;}
.wsc2{word-spacing:2.331342px;}
.ws73{word-spacing:2.376096px;}
.wsed{word-spacing:2.387976px;}
.wsd4{word-spacing:2.391000px;}
.wse8{word-spacing:2.391120px;}
.ws5{word-spacing:2.555424px;}
.ws57{word-spacing:2.570454px;}
.ws4{word-spacing:2.591208px;}
.wsc3{word-spacing:2.630232px;}
.wsea{word-spacing:2.642016px;}
.wsc7{word-spacing:2.690010px;}
.ws16f{word-spacing:2.692824px;}
.wsd1{word-spacing:2.749788px;}
.wse7{word-spacing:2.809566px;}
.ws16b{word-spacing:2.845248px;}
.ws123{word-spacing:2.869344px;}
.wsdc{word-spacing:2.929122px;}
.wsf7{word-spacing:2.946864px;}
.ws89{word-spacing:2.988900px;}
.ws17b{word-spacing:2.997672px;}
.ws8e{word-spacing:3.048678px;}
.ws6d{word-spacing:3.108456px;}
.ws6e{word-spacing:3.168234px;}
.ws184{word-spacing:3.200904px;}
.ws110{word-spacing:3.228012px;}
.ws3{word-spacing:3.287700px;}
.wsdb{word-spacing:3.287790px;}
.wsad{word-spacing:3.347568px;}
.wsf8{word-spacing:3.353328px;}
.ws8b{word-spacing:3.407346px;}
.ws178{word-spacing:3.607368px;}
.ws165{word-spacing:3.658176px;}
.wsc6{word-spacing:3.706236px;}
.ws100{word-spacing:3.708984px;}
.ws137{word-spacing:3.766014px;}
.ws102{word-spacing:3.810600px;}
.ws20{word-spacing:3.825792px;}
.ws2c{word-spacing:3.885570px;}
.ws34{word-spacing:3.945348px;}
.ws5c{word-spacing:4.005126px;}
.ws101{word-spacing:4.013832px;}
.ws70{word-spacing:4.064700px;}
.ws35{word-spacing:4.064904px;}
.ws131{word-spacing:4.124682px;}
.ws18a{word-spacing:4.166256px;}
.ws11d{word-spacing:4.184460px;}
.ws44{word-spacing:4.304016px;}
.ws183{word-spacing:4.318680px;}
.ws43{word-spacing:4.363794px;}
.ws182{word-spacing:4.369488px;}
.ws1d{word-spacing:4.423572px;}
.ws11e{word-spacing:4.483350px;}
.ws1f{word-spacing:4.543128px;}
.wsf1{word-spacing:4.572720px;}
.ws125{word-spacing:4.602906px;}
.wsf0{word-spacing:4.623528px;}
.wsc5{word-spacing:4.662684px;}
.wsfe{word-spacing:4.674336px;}
.wsc4{word-spacing:4.722462px;}
.ws103{word-spacing:4.725144px;}
.wsff{word-spacing:4.775952px;}
.wsfd{word-spacing:4.826760px;}
.ws124{word-spacing:4.842018px;}
.wsee{word-spacing:4.877568px;}
.ws117{word-spacing:4.901796px;}
.ws13a{word-spacing:4.928376px;}
.ws118{word-spacing:4.961574px;}
.ws104{word-spacing:4.979184px;}
.ws85{word-spacing:5.021352px;}
.wsf4{word-spacing:5.029992px;}
.wsef{word-spacing:5.080800px;}
.ws25{word-spacing:5.081130px;}
.wsf3{word-spacing:5.131608px;}
.ws154{word-spacing:5.182416px;}
.ws6b{word-spacing:5.200686px;}
.ws159{word-spacing:5.233224px;}
.ws2e{word-spacing:5.320242px;}
.ws1{word-spacing:5.385648px;}
.ws16{word-spacing:5.391828px;}
.ws6a{word-spacing:5.439798px;}
.ws15{word-spacing:5.457582px;}
.ws0{word-spacing:5.487264px;}
.ws91{word-spacing:5.499576px;}
.ws31{word-spacing:5.559354px;}
.ws50{word-spacing:5.619132px;}
.ws63{word-spacing:5.678910px;}
.ws2{word-spacing:5.690496px;}
.ws1e{word-spacing:5.738688px;}
.ws17{word-spacing:5.786352px;}
.ws7d{word-spacing:5.798466px;}
.ws86{word-spacing:5.858244px;}
.wsa{word-spacing:5.917860px;}
.ws30{word-spacing:5.918022px;}
.wsa1{word-spacing:5.977800px;}
.ws14{word-spacing:5.983614px;}
.ws4f{word-spacing:6.037578px;}
.ws181{word-spacing:6.046152px;}
.ws7{word-spacing:6.049368px;}
.ws2f{word-spacing:6.097356px;}
.ws8{word-spacing:6.115122px;}
.ws3f{word-spacing:6.157134px;}
.ws9{word-spacing:6.180876px;}
.ws5e{word-spacing:6.216912px;}
.wsc{word-spacing:6.246630px;}
.ws4e{word-spacing:6.276690px;}
.ws169{word-spacing:6.300192px;}
.ws11{word-spacing:6.312384px;}
.ws8c{word-spacing:6.336468px;}
.ws11f{word-spacing:6.396246px;}
.wsb{word-spacing:6.443892px;}
.ws5f{word-spacing:6.456024px;}
.ws170{word-spacing:6.503424px;}
.ws13{word-spacing:6.509646px;}
.ws127{word-spacing:6.515802px;}
.ws27{word-spacing:6.575580px;}
.ws1c{word-spacing:6.635358px;}
.ws172{word-spacing:6.706656px;}
.wsa8{word-spacing:6.754914px;}
.ws26{word-spacing:6.874470px;}
.wscf{word-spacing:6.934248px;}
.ws173{word-spacing:6.960696px;}
.wsce{word-spacing:7.113582px;}
.wsbf{word-spacing:7.352694px;}
.ws99{word-spacing:7.472250px;}
.ws126{word-spacing:7.532028px;}
.wse6{word-spacing:7.591806px;}
.ws166{word-spacing:7.621200px;}
.ws144{word-spacing:7.651584px;}
.ws19{word-spacing:7.771140px;}
.ws17c{word-spacing:7.773624px;}
.ws143{word-spacing:7.830918px;}
.wse9{word-spacing:7.890696px;}
.ws17d{word-spacing:7.926048px;}
.ws1a{word-spacing:7.950474px;}
.ws177{word-spacing:7.976856px;}
.wsae{word-spacing:8.010252px;}
.ws153{word-spacing:8.027664px;}
.ws82{word-spacing:8.070030px;}
.ws152{word-spacing:8.129280px;}
.wsde{word-spacing:8.129808px;}
.wsb3{word-spacing:8.189586px;}
.wsa2{word-spacing:8.309142px;}
.ws16d{word-spacing:8.332512px;}
.ws6{word-spacing:8.338680px;}
.ws80{word-spacing:8.368920px;}
.ws16c{word-spacing:8.434128px;}
.ws8a{word-spacing:8.488476px;}
.wse0{word-spacing:8.548254px;}
.ws81{word-spacing:8.608032px;}
.ws49{word-spacing:8.667810px;}
.ws48{word-spacing:8.727588px;}
.ws95{word-spacing:8.847144px;}
.wsbc{word-spacing:8.966700px;}
.ws7e{word-spacing:9.146034px;}
.ws87{word-spacing:9.325368px;}
.ws10f{word-spacing:9.385146px;}
.ws92{word-spacing:9.444924px;}
.ws61{word-spacing:9.743814px;}
.wsb9{word-spacing:9.863370px;}
.ws112{word-spacing:9.982926px;}
.wsdf{word-spacing:10.042704px;}
.ws28{word-spacing:10.102482px;}
.ws187{word-spacing:10.110792px;}
.ws90{word-spacing:10.162260px;}
.ws9c{word-spacing:10.222038px;}
.ws1b{word-spacing:10.281816px;}
.ws186{word-spacing:10.314024px;}
.ws29{word-spacing:10.341594px;}
.wsab{word-spacing:10.401372px;}
.ws2a{word-spacing:10.520928px;}
.wsac{word-spacing:10.640484px;}
.ws46{word-spacing:10.700262px;}
.ws45{word-spacing:10.760040px;}
.ws47{word-spacing:10.939374px;}
.wse2{word-spacing:11.118708px;}
.ws16e{word-spacing:11.126952px;}
.ws40{word-spacing:11.178486px;}
.wsc9{word-spacing:11.238264px;}
.ws171{word-spacing:11.330184px;}
.ws41{word-spacing:11.357820px;}
.wse1{word-spacing:11.417598px;}
.ws14b{word-spacing:11.477376px;}
.ws10a{word-spacing:11.537154px;}
.ws42{word-spacing:11.596932px;}
.ws10e{word-spacing:11.716488px;}
.ws10d{word-spacing:11.776266px;}
.ws17a{word-spacing:11.787456px;}
.ws12b{word-spacing:11.895822px;}
.ws179{word-spacing:11.990688px;}
.ws12d{word-spacing:12.015378px;}
.ws122{word-spacing:12.134934px;}
.ws16a{word-spacing:12.143112px;}
.ws115{word-spacing:12.194712px;}
.ws116{word-spacing:12.374046px;}
.ws13f{word-spacing:12.493602px;}
.wsbd{word-spacing:12.553380px;}
.wsd7{word-spacing:12.792492px;}
.ws79{word-spacing:13.091382px;}
.wsb8{word-spacing:13.151160px;}
.ws17f{word-spacing:13.159272px;}
.ws17e{word-spacing:13.210080px;}
.wsa7{word-spacing:13.330494px;}
.ws180{word-spacing:13.362504px;}
.ws78{word-spacing:13.390272px;}
.ws10b{word-spacing:13.509828px;}
.ws8d{word-spacing:13.569606px;}
.wsa9{word-spacing:13.629384px;}
.ws14a{word-spacing:13.748940px;}
.ws147{word-spacing:13.868496px;}
.wsa4{word-spacing:13.928274px;}
.ws146{word-spacing:14.167386px;}
.wscd{word-spacing:14.227164px;}
.ws6c{word-spacing:14.526054px;}
.ws14d{word-spacing:14.585832px;}
.ws67{word-spacing:14.824944px;}
.wse3{word-spacing:15.183612px;}
.ws51{word-spacing:15.243390px;}
.ws3d{word-spacing:15.303168px;}
.wse4{word-spacing:15.661836px;}
.ws156{word-spacing:15.953712px;}
.ws36{word-spacing:15.960726px;}
.ws37{word-spacing:16.080282px;}
.ws14f{word-spacing:16.199838px;}
.ws24{word-spacing:16.319394px;}
.ws3a{word-spacing:16.379172px;}
.ws23{word-spacing:16.438950px;}
.ws38{word-spacing:16.498728px;}
.ws22{word-spacing:16.678062px;}
.ws62{word-spacing:16.797618px;}
.ws55{word-spacing:16.857396px;}
.ws14c{word-spacing:17.036730px;}
.ws56{word-spacing:17.096508px;}
.ws11c{word-spacing:17.335620px;}
.ws10c{word-spacing:17.455176px;}
.ws9d{word-spacing:17.754066px;}
.ws13e{word-spacing:17.933400px;}
.ws158{word-spacing:18.240072px;}
.ws133{word-spacing:18.292068px;}
.ws132{word-spacing:18.531180px;}
.ws134{word-spacing:19.069182px;}
.ws94{word-spacing:19.188738px;}
.ws11a{word-spacing:19.308294px;}
.wsc0{word-spacing:19.368072px;}
.ws150{word-spacing:19.846296px;}
.ws149{word-spacing:19.906074px;}
.ws135{word-spacing:20.264742px;}
.ws136{word-spacing:20.623410px;}
.ws140{word-spacing:20.742966px;}
.ws141{word-spacing:20.862522px;}
.ws142{word-spacing:20.982078px;}
.ws167{word-spacing:21.034512px;}
.ws58{word-spacing:21.161412px;}
.ws12a{word-spacing:21.280968px;}
.ws151{word-spacing:21.288552px;}
.ws168{word-spacing:21.339360px;}
.ws3c{word-spacing:21.579858px;}
.ws88{word-spacing:21.639636px;}
.ws3b{word-spacing:21.759192px;}
.wsbb{word-spacing:21.878748px;}
.ws68{word-spacing:21.938526px;}
.ws128{word-spacing:22.058082px;}
.ws15a{word-spacing:22.152288px;}
.ws69{word-spacing:22.177638px;}
.wsba{word-spacing:22.356972px;}
.wsd0{word-spacing:22.715640px;}
.ws9e{word-spacing:22.775418px;}
.ws148{word-spacing:23.134086px;}
.ws109{word-spacing:23.492754px;}
.ws12c{word-spacing:23.791644px;}
.ws2d{word-spacing:23.851422px;}
.ws64{word-spacing:23.911200px;}
.ws4a{word-spacing:24.090534px;}
.ws4c{word-spacing:24.210090px;}
.ws65{word-spacing:24.269868px;}
.ws4d{word-spacing:24.329646px;}
.ws4b{word-spacing:24.508980px;}
.wsb6{word-spacing:24.867648px;}
.wsb7{word-spacing:25.106760px;}
.ws8f{word-spacing:25.405650px;}
.ws5d{word-spacing:25.465428px;}
.wsd8{word-spacing:25.584984px;}
.wsda{word-spacing:25.764318px;}
.ws21{word-spacing:26.063208px;}
.wscb{word-spacing:26.302320px;}
.wsca{word-spacing:26.481654px;}
.ws96{word-spacing:27.019656px;}
.wsaa{word-spacing:27.258768px;}
.ws98{word-spacing:27.557658px;}
.wsc1{word-spacing:28.573884px;}
.ws5a{word-spacing:28.872774px;}
.ws59{word-spacing:28.932552px;}
.ws5b{word-spacing:28.992330px;}
.ws7a{word-spacing:29.052108px;}
.ws7b{word-spacing:29.111886px;}
.ws7c{word-spacing:29.171664px;}
.ws14e{word-spacing:31.084560px;}
.wsd3{word-spacing:31.101300px;}
.wsb1{word-spacing:31.742118px;}
.wsa3{word-spacing:32.579010px;}
.ws105{word-spacing:35.945148px;}
.wsb4{word-spacing:36.464580px;}
.ws52{word-spacing:38.018808px;}
.ws53{word-spacing:38.198142px;}
.ws54{word-spacing:38.257920px;}
.ws145{word-spacing:45.192168px;}
.wsb2{word-spacing:74.423610px;}
.wsf6{word-spacing:176.100528px;}
._19{margin-left:-47.045286px;}
._21{margin-left:-42.221448px;}
._15{margin-left:-27.258768px;}
._14{margin-left:-19.368072px;}
._18{margin-left:-16.868190px;}
._17{margin-left:-13.507794px;}
._4{width:1.195560px;}
._2{width:5.188512px;}
._1{width:6.207684px;}
._2e{width:11.025336px;}
._29{width:12.672936px;}
._1a{width:14.489460px;}
._b{width:15.781392px;}
._2a{width:16.797618px;}
._0{width:17.884416px;}
._6{width:19.607184px;}
._9{width:20.862522px;}
._3{width:22.560762px;}
._11{width:24.449202px;}
._5{width:25.943652px;}
._12{width:27.438102px;}
._10{width:28.454328px;}
._2d{width:29.517600px;}
._c{width:30.606336px;}
._8{width:31.921452px;}
._28{width:32.937678px;}
._13{width:34.850574px;}
._e{width:36.524358px;}
._f{width:37.719918px;}
._a{width:39.333924px;}
._7{width:41.784822px;}
._16{width:44.534610px;}
._2b{width:48.505920px;}
._d{width:53.441532px;}
._2c{width:60.495336px;}
._1e{width:116.960016px;}
._1f{width:121.227888px;}
._20{width:127.832928px;}
._27{width:163.195296px;}
._25{width:180.165168px;}
._1d{width:205.467552px;}
._24{width:222.285000px;}
._23{width:263.134632px;}
._26{width:420.537684px;}
._22{width:461.641488px;}
._1b{width:548.624784px;}
._1c{width:645.159984px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:33.870000px;}
.fs8{font-size:39.846000px;}
.fs5{font-size:43.830000px;}
.fs3{font-size:44.832000px;}
.fs4{font-size:46.326000px;}
.fs7{font-size:47.820000px;}
.fs2{font-size:50.808000px;}
.fs9{font-size:53.796000px;}
.fs6{font-size:59.778000px;}
.fs1{font-size:65.754000px;}
.fs0{font-size:101.616000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:69.729000px;}
.ycb{bottom:69.732000px;}
.y103{bottom:69.757950px;}
.y4b{bottom:96.603840px;}
.y157{bottom:96.606516px;}
.y49{bottom:96.834277px;}
.yc9{bottom:96.839944px;}
.y89{bottom:96.854155px;}
.y101{bottom:97.198236px;}
.y179{bottom:102.473634px;}
.y155{bottom:110.892000px;}
.y4a{bottom:111.571500px;}
.y156{bottom:113.017500px;}
.y154{bottom:113.020284px;}
.y100{bottom:113.698134px;}
.y86{bottom:114.776833px;}
.y48{bottom:114.782622px;}
.yc8{bottom:114.788289px;}
.y88{bottom:114.802500px;}
.y178{bottom:118.884618px;}
.y87{bottom:121.435500px;}
.y1b2{bottom:126.709050px;}
.y153{bottom:129.520182px;}
.yff{bottom:130.109118px;}
.y85{bottom:132.635511px;}
.yc7{bottom:132.646966px;}
.y47{bottom:132.730967px;}
.y177{bottom:135.295602px;}
.y1b1{bottom:143.208948px;}
.y152{bottom:145.931166px;}
.yfe{bottom:146.520102px;}
.y84{bottom:150.583855px;}
.yc6{bottom:150.595311px;}
.y46{bottom:150.679311px;}
.y176{bottom:151.376334px;}
.y175{bottom:151.795500px;}
.y1b0{bottom:159.619932px;}
.y151{bottom:162.342150px;}
.yfd{bottom:163.020000px;}
.y83{bottom:168.532200px;}
.yc5{bottom:168.543655px;}
.y2a{bottom:168.617289px;}
.y45{bottom:168.627656px;}
.y2b{bottom:168.633000px;}
.y1af{bottom:176.030916px;}
.y174{bottom:177.421344px;}
.y150{bottom:178.842048px;}
.yc3{bottom:184.024500px;}
.y82{bottom:186.480544px;}
.yc2{bottom:186.486655px;}
.y43{bottom:186.489111px;}
.yc4{bottom:186.492000px;}
.y29{bottom:186.565633px;}
.y44{bottom:186.576000px;}
.y1ae{bottom:192.530814px;}
.y14f{bottom:195.253032px;}
.y42{bottom:204.347788px;}
.ybf{bottom:204.418966px;}
.y28{bottom:204.424311px;}
.y81{bottom:204.428889px;}
.yc1{bottom:204.435000px;}
.y1ad{bottom:208.941798px;}
.yc0{bottom:211.068000px;}
.y14e{bottom:211.664016px;}
.y173{bottom:222.239899px;}
.y41{bottom:222.296133px;}
.ybe{bottom:222.367311px;}
.y27{bottom:222.372655px;}
.y1ac{bottom:225.352782px;}
.y14d{bottom:228.073602px;}
.y172{bottom:240.188244px;}
.y40{bottom:240.244477px;}
.y80{bottom:240.310633px;}
.y25{bottom:240.315655px;}
.y26{bottom:240.321000px;}
.y1ab{bottom:241.852680px;}
.y14c{bottom:244.573500px;}
.y3f{bottom:258.192822px;}
.y23{bottom:258.200455px;}
.ybc{bottom:258.239100px;}
.y7f{bottom:258.258978px;}
.y1aa{bottom:258.263664px;}
.y24{bottom:258.264000px;}
.ybd{bottom:264.897000px;}
.y171{bottom:267.058455px;}
.y1a9{bottom:274.674648px;}
.ybb{bottom:276.097778px;}
.y7e{bottom:276.117655px;}
.y3e{bottom:276.141166px;}
.y22{bottom:276.148800px;}
.y1a8{bottom:291.085632px;}
.yba{bottom:294.046122px;}
.y7c{bottom:294.066000px;}
.y3d{bottom:294.089511px;}
.y21{bottom:294.097144px;}
.y7d{bottom:300.699000px;}
.y1a7{bottom:307.585530px;}
.y170{bottom:311.877010px;}
.yb9{bottom:311.994466px;}
.y7a{bottom:311.999811px;}
.y3c{bottom:312.037855px;}
.y20{bottom:312.045489px;}
.y7b{bottom:318.642000px;}
.y1a6{bottom:323.996514px;}
.y16f{bottom:329.825355px;}
.yb8{bottom:329.942811px;}
.y79{bottom:329.948155px;}
.y3b{bottom:329.986200px;}
.y1f{bottom:329.993833px;}
.y1a5{bottom:340.407498px;}
.y16e{bottom:347.773699px;}
.y3a{bottom:347.844877px;}
.y1e{bottom:347.852511px;}
.y76{bottom:347.880467px;}
.yb7{bottom:347.891155px;}
.y78{bottom:347.896500px;}
.y77{bottom:354.529500px;}
.y1a4{bottom:356.907396px;}
.y16d{bottom:365.722044px;}
.y38{bottom:365.793222px;}
.y1d{bottom:365.800855px;}
.yb4{bottom:365.813511px;}
.y75{bottom:365.828811px;}
.yb6{bottom:365.839500px;}
.y39{bottom:365.957611px;}
.yb5{bottom:372.472500px;}
.y1a3{bottom:373.318380px;}
.y16c{bottom:383.670388px;}
.y37{bottom:383.741566px;}
.y1c{bottom:383.749200px;}
.yb3{bottom:383.761855px;}
.y74{bottom:383.777155px;}
.y1a2{bottom:389.729364px;}
.y16b{bottom:401.618733px;}
.y36{bottom:401.689911px;}
.y1b{bottom:401.697544px;}
.yb2{bottom:401.710200px;}
.y73{bottom:401.725500px;}
.y71{bottom:401.725822px;}
.y1a1{bottom:406.229262px;}
.y72{bottom:408.358500px;}
.y16a{bottom:419.477410px;}
.y6e{bottom:419.542477px;}
.y14b{bottom:419.548911px;}
.y11f{bottom:419.574222px;}
.y70{bottom:419.584500px;}
.y35{bottom:419.638255px;}
.y1a{bottom:419.645889px;}
.y1a0{bottom:422.640246px;}
.y6f{bottom:426.303000px;}
.yb1{bottom:428.580411px;}
.y169{bottom:437.425755px;}
.y6d{bottom:437.490822px;}
.y14a{bottom:437.497256px;}
.y11e{bottom:437.522567px;}
.y34{bottom:437.586600px;}
.y19{bottom:437.594233px;}
.y19f{bottom:439.051230px;}
.y168{bottom:455.374099px;}
.y6c{bottom:455.439166px;}
.y149{bottom:455.445600px;}
.y19e{bottom:455.462214px;}
.y33{bottom:455.534944px;}
.y18{bottom:455.542578px;}
.y11d{bottom:464.482445px;}
.yfc{bottom:470.182182px;}
.y19d{bottom:471.962112px;}
.y167{bottom:473.322444px;}
.y6b{bottom:473.387511px;}
.y148{bottom:473.393945px;}
.yb0{bottom:473.398966px;}
.y32{bottom:473.483289px;}
.y17{bottom:473.490922px;}
.yfb{bottom:486.682080px;}
.y19c{bottom:488.373096px;}
.y166{bottom:491.270788px;}
.y31{bottom:491.341967px;}
.y147{bottom:491.342289px;}
.yaf{bottom:491.347311px;}
.y16{bottom:491.349600px;}
.yfa{bottom:503.093064px;}
.y19b{bottom:504.784080px;}
.y165{bottom:509.219133px;}
.y11a{bottom:509.229056px;}
.y6a{bottom:509.269255px;}
.y30{bottom:509.290311px;}
.y146{bottom:509.290634px;}
.yae{bottom:509.295655px;}
.y15{bottom:509.297944px;}
.y11c{bottom:509.301000px;}
.y11b{bottom:515.934000px;}
.yf9{bottom:519.504048px;}
.y19a{bottom:521.283978px;}
.y164{bottom:527.167477px;}
.y119{bottom:527.177400px;}
.yab{bottom:527.208411px;}
.y69{bottom:527.217600px;}
.y2f{bottom:527.238656px;}
.y145{bottom:527.238978px;}
.yad{bottom:527.244000px;}
.y14{bottom:527.246289px;}
.yac{bottom:533.877000px;}
.yf8{bottom:535.915032px;}
.y199{bottom:537.694962px;}
.y163{bottom:545.115822px;}
.y118{bottom:545.125744px;}
.yaa{bottom:545.156756px;}
.y68{bottom:545.165945px;}
.y2e{bottom:545.187000px;}
.y144{bottom:545.187323px;}
.y2d{bottom:545.189567px;}
.y198{bottom:554.105946px;}
.y13{bottom:554.116500px;}
.yf7{bottom:562.957590px;}
.y162{bottom:562.974499px;}
.y117{bottom:562.984422px;}
.y141{bottom:562.999722px;}
.ya9{bottom:563.015433px;}
.y67{bottom:563.024622px;}
.y143{bottom:563.046000px;}
.y2c{bottom:563.137911px;}
.y142{bottom:569.763000px;}
.y197{bottom:570.605844px;}
.yf4{bottom:579.380244px;}
.y161{bottom:580.922844px;}
.y116{bottom:580.932766px;}
.y140{bottom:580.948066px;}
.ya8{bottom:580.963777px;}
.y66{bottom:580.972966px;}
.yf5{bottom:584.985000px;}
.y196{bottom:587.016828px;}
.yf6{bottom:597.316500px;}
.y160{bottom:598.871189px;}
.y115{bottom:598.881111px;}
.y13f{bottom:598.896411px;}
.ya7{bottom:598.912122px;}
.y65{bottom:598.921311px;}
.y195{bottom:603.427812px;}
.y15f{bottom:616.819533px;}
.y114{bottom:616.829455px;}
.y13e{bottom:616.844756px;}
.ya6{bottom:616.860467px;}
.y64{bottom:616.869656px;}
.y194{bottom:619.927710px;}
.yf3{bottom:624.446940px;}
.y61{bottom:634.751811px;}
.y15e{bottom:634.767877px;}
.y113{bottom:634.777800px;}
.y13c{bottom:634.793100px;}
.ya5{bottom:634.808811px;}
.y63{bottom:634.818000px;}
.y13d{bottom:634.957489px;}
.y193{bottom:636.338694px;}
.y62{bottom:641.452500px;}
.yf2{bottom:652.340532px;}
.y15d{bottom:652.716222px;}
.y112{bottom:652.726145px;}
.y13b{bottom:652.741444px;}
.y192{bottom:652.749678px;}
.ya4{bottom:652.757156px;}
.y12{bottom:658.779869px;}
.y60{bottom:661.622022px;}
.yf1{bottom:668.751516px;}
.y191{bottom:669.160662px;}
.y15c{bottom:670.664566px;}
.y111{bottom:670.674489px;}
.y13a{bottom:670.689789px;}
.ya1{bottom:670.700156px;}
.ya3{bottom:670.705500px;}
.ya2{bottom:677.338500px;}
.y11{bottom:679.706079px;}
.yf0{bottom:685.162500px;}
.y190{bottom:685.660560px;}
.y15b{bottom:688.612911px;}
.y110{bottom:688.622834px;}
.y139{bottom:688.638133px;}
.ya0{bottom:688.648500px;}
.y9e{bottom:688.648823px;}
.y9f{bottom:695.281500px;}
.y10{bottom:700.632289px;}
.y18f{bottom:702.071544px;}
.y9d{bottom:704.041500px;}
.y5f{bottom:706.440578px;}
.y15a{bottom:706.471589px;}
.y10f{bottom:706.481511px;}
.y138{bottom:706.496811px;}
.y9b{bottom:706.507500px;}
.y9c{bottom:713.224500px;}
.y18e{bottom:718.482528px;}
.yd{bottom:721.512526px;}
.yf{bottom:721.558500px;}
.y5e{bottom:724.388922px;}
.y98{bottom:724.418544px;}
.y159{bottom:724.419933px;}
.y10e{bottom:724.429856px;}
.y137{bottom:724.445156px;}
.y9a{bottom:724.450500px;}
.ye{bottom:728.872500px;}
.y99{bottom:731.083500px;}
.ydd{bottom:733.458655px;}
.y18d{bottom:734.982426px;}
.y5d{bottom:742.337266px;}
.y97{bottom:742.366888px;}
.y134{bottom:742.368277px;}
.y10d{bottom:742.378200px;}
.yef{bottom:742.388156px;}
.y136{bottom:742.393500px;}
.yc{bottom:742.438737px;}
.y135{bottom:749.026500px;}
.yda{bottom:751.379455px;}
.y18c{bottom:751.393410px;}
.ydc{bottom:751.407000px;}
.ydb{bottom:758.041500px;}
.y5c{bottom:760.285611px;}
.y96{bottom:760.315233px;}
.yec{bottom:760.316622px;}
.yee{bottom:760.336500px;}
.yb{bottom:763.364947px;}
.yed{bottom:766.969500px;}
.y18b{bottom:767.804394px;}
.yd9{bottom:769.327800px;}
.y10c{bottom:769.338078px;}
.y5b{bottom:778.233955px;}
.y95{bottom:778.263577px;}
.yeb{bottom:778.264966px;}
.ya{bottom:784.291158px;}
.y18a{bottom:784.304292px;}
.yd8{bottom:787.186477px;}
.y5a{bottom:796.182300px;}
.y94{bottom:796.211922px;}
.yea{bottom:796.213311px;}
.y189{bottom:800.715276px;}
.yd7{bottom:805.134822px;}
.y9{bottom:805.217368px;}
.y59{bottom:814.130644px;}
.y10b{bottom:814.156634px;}
.y93{bottom:814.160267px;}
.ye9{bottom:814.161656px;}
.y188{bottom:817.126260px;}
.y8{bottom:826.143579px;}
.ye6{bottom:832.064044px;}
.y58{bottom:832.078989px;}
.yd6{bottom:832.094700px;}
.y158{bottom:832.099634px;}
.y10a{bottom:832.104978px;}
.y92{bottom:832.108611px;}
.ye8{bottom:832.110000px;}
.y133{bottom:832.110322px;}
.y187{bottom:833.537244px;}
.ye7{bottom:838.743000px;}
.y7{bottom:847.069789px;}
.ye5{bottom:849.922722px;}
.y57{bottom:849.937666px;}
.yd5{bottom:849.953377px;}
.y130{bottom:849.958311px;}
.y109{bottom:849.963656px;}
.y91{bottom:849.967288px;}
.y132{bottom:849.969000px;}
.y186{bottom:850.037142px;}
.y131{bottom:856.686000px;}
.y184{bottom:866.448126px;}
.y185{bottom:866.613252px;}
.ye4{bottom:867.871067px;}
.y56{bottom:867.886011px;}
.y106{bottom:867.886777px;}
.y12f{bottom:867.906656px;}
.y108{bottom:867.912000px;}
.y90{bottom:867.915633px;}
.y6{bottom:867.996000px;}
.y107{bottom:874.545000px;}
.yd4{bottom:876.913255px;}
.y183{bottom:882.859110px;}
.ye3{bottom:885.819411px;}
.y55{bottom:885.834356px;}
.y105{bottom:885.835122px;}
.y12c{bottom:885.849655px;}
.y12e{bottom:885.855000px;}
.y5{bottom:888.831000px;}
.y12d{bottom:892.488000px;}
.y8f{bottom:894.875511px;}
.y182{bottom:899.359008px;}
.ye2{bottom:903.767756px;}
.y54{bottom:903.782700px;}
.y104{bottom:903.783466px;}
.y129{bottom:903.792656px;}
.y12b{bottom:903.798000px;}
.y12a{bottom:910.431000px;}
.y181{bottom:915.769992px;}
.y4{bottom:918.850500px;}
.ye1{bottom:921.716100px;}
.y126{bottom:921.724366px;}
.y53{bottom:921.731044px;}
.yd3{bottom:921.731811px;}
.y128{bottom:921.741000px;}
.y127{bottom:928.374000px;}
.y180{bottom:932.180976px;}
.ye0{bottom:939.664444px;}
.y125{bottom:939.672711px;}
.y52{bottom:939.679389px;}
.yd2{bottom:939.680155px;}
.y8e{bottom:939.694066px;}
.y3{bottom:945.552000px;}
.y17f{bottom:948.680874px;}
.ycf{bottom:957.612789px;}
.y124{bottom:957.621056px;}
.y51{bottom:957.627733px;}
.yd1{bottom:957.628500px;}
.y8d{bottom:957.642411px;}
.y2{bottom:963.411000px;}
.yd0{bottom:964.261500px;}
.y17e{bottom:965.091858px;}
.yce{bottom:975.561134px;}
.y123{bottom:975.569400px;}
.y50{bottom:975.576078px;}
.y8c{bottom:975.590755px;}
.y17d{bottom:981.502842px;}
.ycd{bottom:993.419811px;}
.y122{bottom:993.428077px;}
.y17c{bottom:998.002740px;}
.y4f{bottom:1002.446289px;}
.ycc{bottom:1011.368156px;}
.y121{bottom:1011.376422px;}
.y8b{bottom:1011.397777px;}
.y17b{bottom:1014.413724px;}
.y1{bottom:1026.000000px;}
.yde{bottom:1029.314922px;}
.y4e{bottom:1029.316500px;}
.y120{bottom:1029.324766px;}
.y8a{bottom:1029.346122px;}
.y17a{bottom:1030.824708px;}
.ydf{bottom:1035.949500px;}
.y102{bottom:1102.789500px;}
.yca{bottom:1102.875000px;}
.y4d{bottom:1102.960500px;}
.h16{height:23.133210px;}
.h12{height:27.214818px;}
.h8{height:29.935890px;}
.hd{height:30.620256px;}
.h4{height:33.041184px;}
.hf{height:33.234900px;}
.h5{height:34.142262px;}
.h14{height:34.701864px;}
.h10{height:35.243340px;}
.h18{height:35.266344px;}
.h17{height:35.311560px;}
.h15{height:36.226104px;}
.h19{height:36.378528px;}
.h3{height:37.445496px;}
.h13{height:39.647652px;}
.hb{height:40.828374px;}
.he{height:40.888152px;}
.ha{height:41.545710px;}
.hc{height:42.621714px;}
.h11{height:43.941428px;}
.h9{height:44.056386px;}
.h6{height:44.909982px;}
.h7{height:45.699030px;}
.h2{height:48.460698px;}
.h1{height:74.890992px;}
.h0{height:1165.500000px;}
.w0{width:888.000000px;}
.x0{left:0.000000px;}
.x1{left:62.758500px;}
.x11{left:71.773500px;}
.x5{left:76.193606px;}
.x8{left:85.635000px;}
.x2{left:125.518500px;}
.x17{left:132.576000px;}
.x46{left:143.376000px;}
.x67{left:147.366522px;}
.x18{left:150.945000px;}
.x4c{left:164.806500px;}
.x3{left:168.633000px;}
.x64{left:170.929500px;}
.x4d{left:173.820000px;}
.x4{left:187.681500px;}
.x19{left:189.468000px;}
.x1c{left:197.035500px;}
.x4e{left:202.989000px;}
.x1a{left:208.857000px;}
.x4f{left:213.193500px;}
.x68{left:217.697496px;}
.x1d{left:218.721000px;}
.x65{left:221.187000px;}
.x39{left:224.079000px;}
.x4a{left:227.736000px;}
.x37{left:230.457000px;}
.x3a{left:236.494500px;}
.x66{left:237.940500px;}
.x4b{left:240.066000px;}
.x38{left:247.804500px;}
.x50{left:252.567000px;}
.x48{left:259.285500px;}
.x51{left:264.897000px;}
.x49{left:271.701000px;}
.x6{left:280.885500px;}
.x7{left:290.068500px;}
.x1e{left:308.608500px;}
.x16{left:312.435000px;}
.x47{left:331.993950px;}
.x12{left:363.798000px;}
.x13{left:374.002500px;}
.x14{left:413.290500px;}
.x1b{left:417.969000px;}
.x15{left:425.707500px;}
.x9{left:457.274826px;}
.x1f{left:466.287919px;}
.xc{left:470.717268px;}
.x52{left:479.739132px;}
.x69{left:485.531868px;}
.x5f{left:490.507500px;}
.x62{left:493.738500px;}
.x3b{left:505.899000px;}
.x3c{left:516.784500px;}
.xe{left:522.226500px;}
.x35{left:530.305500px;}
.xf{left:531.411000px;}
.x31{left:535.492500px;}
.x60{left:546.292500px;}
.x3d{left:548.248500px;}
.x27{left:551.055000px;}
.x3e{left:558.453000px;}
.x10{left:576.811545px;}
.xd{left:584.579413px;}
.x63{left:588.813000px;}
.x3f{left:597.741000px;}
.x2e{left:604.119000px;}
.x2a{left:610.327500px;}
.x2f{left:616.450500px;}
.x20{left:620.701500px;}
.x2b{left:629.547000px;}
.x21{left:637.965000px;}
.x40{left:641.452500px;}
.x43{left:647.319000px;}
.x41{left:652.167000px;}
.x36{left:657.523500px;}
.x32{left:668.580000px;}
.x33{left:684.567000px;}
.x44{left:686.607000px;}
.x42{left:691.455000px;}
.x45{left:699.024000px;}
.xa{left:703.275000px;}
.xb{left:712.459500px;}
.x53{left:717.391500px;}
.x30{left:719.943000px;}
.x58{left:726.066000px;}
.x54{left:727.681500px;}
.x61{left:733.636752px;}
.x5a{left:738.481500px;}
.x59{left:743.158500px;}
.x2c{left:754.213500px;}
.x23{left:757.275000px;}
.x28{left:763.483500px;}
.x55{left:766.969500px;}
.x2d{left:771.136500px;}
.x5d{left:775.134000px;}
.x5b{left:777.855000px;}
.x24{left:780.661500px;}
.x29{left:782.446500px;}
.x56{left:783.637500px;}
.x5e{left:787.464000px;}
.x5c{left:790.185000px;}
.x57{left:802.345500px;}
.x34{left:808.639500px;}
.x22{left:812.551500px;}
.x25{left:815.782500px;}
.x26{left:820.969500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.490368pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.045163pt;}
.ls8{letter-spacing:0.070837pt;}
.ls1e{letter-spacing:0.135488pt;}
.ls11{letter-spacing:0.159408pt;}
.ls1b{letter-spacing:0.180651pt;}
.ls7{letter-spacing:0.212544pt;}
.ls1{letter-spacing:0.318816pt;}
.ls25{letter-spacing:1.580693pt;}
.ls3{letter-spacing:1.647216pt;}
.ls24{letter-spacing:2.800085pt;}
.ls20{letter-spacing:5.270827pt;}
.ls14{letter-spacing:5.313333pt;}
.ls0{letter-spacing:5.366736pt;}
.ls21{letter-spacing:5.419872pt;}
.ls17{letter-spacing:11.829835pt;}
.ls15{letter-spacing:13.857173pt;}
.ls16{letter-spacing:14.069707pt;}
.ls4{letter-spacing:14.154720pt;}
.ls22{letter-spacing:15.129493pt;}
.ls9{letter-spacing:15.196896pt;}
.ls12{letter-spacing:16.631568pt;}
.lsf{letter-spacing:17.747424pt;}
.ls23{letter-spacing:17.853696pt;}
.lsa{letter-spacing:19.713456pt;}
.ls2{letter-spacing:20.032272pt;}
.ls6{letter-spacing:20.297952pt;}
.ls10{letter-spacing:21.413808pt;}
.lsb{letter-spacing:21.838896pt;}
.lsc{letter-spacing:22.423392pt;}
.lsd{letter-spacing:23.964336pt;}
.ls18{letter-spacing:24.867648pt;}
.lse{letter-spacing:40.542768pt;}
.ls19{letter-spacing:42.508800pt;}
.ls13{letter-spacing:42.668208pt;}
.ls1d{letter-spacing:235.297493pt;}
.ls1f{letter-spacing:400.367040pt;}
.ls1c{letter-spacing:431.484117pt;}
.wsf5{word-spacing:-250.336661pt;}
.wscc{word-spacing:-55.208304pt;}
.ws9b{word-spacing:-42.561936pt;}
.ws9a{word-spacing:-37.567152pt;}
.ws97{word-spacing:-30.446928pt;}
.wsc8{word-spacing:-27.896400pt;}
.wsbe{word-spacing:-23.624251pt;}
.ws18{word-spacing:-20.297952pt;}
.ws39{word-spacing:-17.694288pt;}
.ws13b{word-spacing:-15.039168pt;}
.ws7f{word-spacing:-13.284000pt;}
.ws12{word-spacing:-12.973680pt;}
.ws3e{word-spacing:-12.699504pt;}
.wsd6{word-spacing:-11.944373pt;}
.wsb5{word-spacing:-11.794416pt;}
.ws139{word-spacing:-11.290667pt;}
.ws74{word-spacing:-11.198037pt;}
.ws155{word-spacing:-10.793877pt;}
.wsf2{word-spacing:-10.025520pt;}
.ws106{word-spacing:-3.188000pt;}
.wsd2{word-spacing:-3.102987pt;}
.ws76{word-spacing:-2.763072pt;}
.ws114{word-spacing:-2.497392pt;}
.ws119{word-spacing:-1.912896pt;}
.ws77{word-spacing:-0.956448pt;}
.ws93{word-spacing:-0.690768pt;}
.ws111{word-spacing:-0.637632pt;}
.ws189{word-spacing:-0.406464pt;}
.ws11b{word-spacing:-0.371952pt;}
.ws15b{word-spacing:-0.361301pt;}
.ws174{word-spacing:-0.316139pt;}
.ws12f{word-spacing:-0.212544pt;}
.ws176{word-spacing:-0.180651pt;}
.ws175{word-spacing:-0.135488pt;}
.ws113{word-spacing:-0.106272pt;}
.ws15c{word-spacing:-0.090325pt;}
.wse5{word-spacing:-0.053136pt;}
.ws15d{word-spacing:-0.045163pt;}
.ws75{word-spacing:0.000000pt;}
.ws188{word-spacing:0.045163pt;}
.ws130{word-spacing:0.053136pt;}
.ws6f{word-spacing:0.085013pt;}
.wsfc{word-spacing:0.135488pt;}
.wsdd{word-spacing:0.212544pt;}
.wsfb{word-spacing:0.225813pt;}
.wsfa{word-spacing:0.316139pt;}
.ws138{word-spacing:0.361301pt;}
.ws12e{word-spacing:0.371952pt;}
.wsf9{word-spacing:0.406464pt;}
.wsf{word-spacing:0.409136pt;}
.ws32{word-spacing:0.425088pt;}
.ws10{word-spacing:0.467584pt;}
.ws185{word-spacing:0.496789pt;}
.ws33{word-spacing:0.531360pt;}
.ws15e{word-spacing:0.541952pt;}
.wsd{word-spacing:0.584480pt;}
.wsa5{word-spacing:0.584496pt;}
.wse{word-spacing:0.642928pt;}
.wsb0{word-spacing:0.690768pt;}
.wsaf{word-spacing:0.743904pt;}
.ws15f{word-spacing:0.767765pt;}
.ws9f{word-spacing:0.797040pt;}
.ws160{word-spacing:0.812928pt;}
.wsa6{word-spacing:0.850176pt;}
.ws161{word-spacing:0.858091pt;}
.wsd9{word-spacing:0.903312pt;}
.wsa0{word-spacing:1.009584pt;}
.ws83{word-spacing:1.115856pt;}
.ws84{word-spacing:1.168992pt;}
.ws120{word-spacing:1.222128pt;}
.ws121{word-spacing:1.328400pt;}
.ws164{word-spacing:1.354880pt;}
.ws60{word-spacing:1.381536pt;}
.ws157{word-spacing:1.445205pt;}
.ws13d{word-spacing:1.487808pt;}
.ws162{word-spacing:1.490368pt;}
.ws2b{word-spacing:1.540944pt;}
.ws163{word-spacing:1.671019pt;}
.ws108{word-spacing:1.700267pt;}
.wseb{word-spacing:1.716181pt;}
.ws71{word-spacing:1.827787pt;}
.wsec{word-spacing:1.851669pt;}
.wsd5{word-spacing:1.870293pt;}
.ws66{word-spacing:1.912896pt;}
.ws72{word-spacing:1.952683pt;}
.ws129{word-spacing:1.966032pt;}
.ws107{word-spacing:1.997813pt;}
.ws13c{word-spacing:2.019168pt;}
.wsc2{word-spacing:2.072304pt;}
.ws73{word-spacing:2.112085pt;}
.wsed{word-spacing:2.122645pt;}
.wsd4{word-spacing:2.125333pt;}
.wse8{word-spacing:2.125440pt;}
.ws5{word-spacing:2.271488pt;}
.ws57{word-spacing:2.284848pt;}
.ws4{word-spacing:2.303296pt;}
.wsc3{word-spacing:2.337984pt;}
.wsea{word-spacing:2.348459pt;}
.wsc7{word-spacing:2.391120pt;}
.ws16f{word-spacing:2.393621pt;}
.wsd1{word-spacing:2.444256pt;}
.wse7{word-spacing:2.497392pt;}
.ws16b{word-spacing:2.529109pt;}
.ws123{word-spacing:2.550528pt;}
.wsdc{word-spacing:2.603664pt;}
.wsf7{word-spacing:2.619435pt;}
.ws89{word-spacing:2.656800pt;}
.ws17b{word-spacing:2.664597pt;}
.ws8e{word-spacing:2.709936pt;}
.ws6d{word-spacing:2.763072pt;}
.ws6e{word-spacing:2.816208pt;}
.ws184{word-spacing:2.845248pt;}
.ws110{word-spacing:2.869344pt;}
.ws3{word-spacing:2.922400pt;}
.wsdb{word-spacing:2.922480pt;}
.wsad{word-spacing:2.975616pt;}
.wsf8{word-spacing:2.980736pt;}
.ws8b{word-spacing:3.028752pt;}
.ws178{word-spacing:3.206549pt;}
.ws165{word-spacing:3.251712pt;}
.wsc6{word-spacing:3.294432pt;}
.ws100{word-spacing:3.296875pt;}
.ws137{word-spacing:3.347568pt;}
.ws102{word-spacing:3.387200pt;}
.ws20{word-spacing:3.400704pt;}
.ws2c{word-spacing:3.453840pt;}
.ws34{word-spacing:3.506976pt;}
.ws5c{word-spacing:3.560112pt;}
.ws101{word-spacing:3.567851pt;}
.ws70{word-spacing:3.613067pt;}
.ws35{word-spacing:3.613248pt;}
.ws131{word-spacing:3.666384pt;}
.ws18a{word-spacing:3.703339pt;}
.ws11d{word-spacing:3.719520pt;}
.ws44{word-spacing:3.825792pt;}
.ws183{word-spacing:3.838827pt;}
.ws43{word-spacing:3.878928pt;}
.ws182{word-spacing:3.883989pt;}
.ws1d{word-spacing:3.932064pt;}
.ws11e{word-spacing:3.985200pt;}
.ws1f{word-spacing:4.038336pt;}
.wsf1{word-spacing:4.064640pt;}
.ws125{word-spacing:4.091472pt;}
.wsf0{word-spacing:4.109803pt;}
.wsc5{word-spacing:4.144608pt;}
.wsfe{word-spacing:4.154965pt;}
.wsc4{word-spacing:4.197744pt;}
.ws103{word-spacing:4.200128pt;}
.wsff{word-spacing:4.245291pt;}
.wsfd{word-spacing:4.290453pt;}
.ws124{word-spacing:4.304016pt;}
.wsee{word-spacing:4.335616pt;}
.ws117{word-spacing:4.357152pt;}
.ws13a{word-spacing:4.380779pt;}
.ws118{word-spacing:4.410288pt;}
.ws104{word-spacing:4.425941pt;}
.ws85{word-spacing:4.463424pt;}
.wsf4{word-spacing:4.471104pt;}
.wsef{word-spacing:4.516267pt;}
.ws25{word-spacing:4.516560pt;}
.wsf3{word-spacing:4.561429pt;}
.ws154{word-spacing:4.606592pt;}
.ws6b{word-spacing:4.622832pt;}
.ws159{word-spacing:4.651755pt;}
.ws2e{word-spacing:4.729104pt;}
.ws1{word-spacing:4.787243pt;}
.ws16{word-spacing:4.792736pt;}
.ws6a{word-spacing:4.835376pt;}
.ws15{word-spacing:4.851184pt;}
.ws0{word-spacing:4.877568pt;}
.ws91{word-spacing:4.888512pt;}
.ws31{word-spacing:4.941648pt;}
.ws50{word-spacing:4.994784pt;}
.ws63{word-spacing:5.047920pt;}
.ws2{word-spacing:5.058219pt;}
.ws1e{word-spacing:5.101056pt;}
.ws17{word-spacing:5.143424pt;}
.ws7d{word-spacing:5.154192pt;}
.ws86{word-spacing:5.207328pt;}
.wsa{word-spacing:5.260320pt;}
.ws30{word-spacing:5.260464pt;}
.wsa1{word-spacing:5.313600pt;}
.ws14{word-spacing:5.318768pt;}
.ws4f{word-spacing:5.366736pt;}
.ws181{word-spacing:5.374357pt;}
.ws7{word-spacing:5.377216pt;}
.ws2f{word-spacing:5.419872pt;}
.ws8{word-spacing:5.435664pt;}
.ws3f{word-spacing:5.473008pt;}
.ws9{word-spacing:5.494112pt;}
.ws5e{word-spacing:5.526144pt;}
.wsc{word-spacing:5.552560pt;}
.ws4e{word-spacing:5.579280pt;}
.ws169{word-spacing:5.600171pt;}
.ws11{word-spacing:5.611008pt;}
.ws8c{word-spacing:5.632416pt;}
.ws11f{word-spacing:5.685552pt;}
.wsb{word-spacing:5.727904pt;}
.ws5f{word-spacing:5.738688pt;}
.ws170{word-spacing:5.780821pt;}
.ws13{word-spacing:5.786352pt;}
.ws127{word-spacing:5.791824pt;}
.ws27{word-spacing:5.844960pt;}
.ws1c{word-spacing:5.898096pt;}
.ws172{word-spacing:5.961472pt;}
.wsa8{word-spacing:6.004368pt;}
.ws26{word-spacing:6.110640pt;}
.wscf{word-spacing:6.163776pt;}
.ws173{word-spacing:6.187285pt;}
.wsce{word-spacing:6.323184pt;}
.wsbf{word-spacing:6.535728pt;}
.ws99{word-spacing:6.642000pt;}
.ws126{word-spacing:6.695136pt;}
.wse6{word-spacing:6.748272pt;}
.ws166{word-spacing:6.774400pt;}
.ws144{word-spacing:6.801408pt;}
.ws19{word-spacing:6.907680pt;}
.ws17c{word-spacing:6.909888pt;}
.ws143{word-spacing:6.960816pt;}
.wse9{word-spacing:7.013952pt;}
.ws17d{word-spacing:7.045376pt;}
.ws1a{word-spacing:7.067088pt;}
.ws177{word-spacing:7.090539pt;}
.wsae{word-spacing:7.120224pt;}
.ws153{word-spacing:7.135701pt;}
.ws82{word-spacing:7.173360pt;}
.ws152{word-spacing:7.226027pt;}
.wsde{word-spacing:7.226496pt;}
.wsb3{word-spacing:7.279632pt;}
.wsa2{word-spacing:7.385904pt;}
.ws16d{word-spacing:7.406677pt;}
.ws6{word-spacing:7.412160pt;}
.ws80{word-spacing:7.439040pt;}
.ws16c{word-spacing:7.497003pt;}
.ws8a{word-spacing:7.545312pt;}
.wse0{word-spacing:7.598448pt;}
.ws81{word-spacing:7.651584pt;}
.ws49{word-spacing:7.704720pt;}
.ws48{word-spacing:7.757856pt;}
.ws95{word-spacing:7.864128pt;}
.wsbc{word-spacing:7.970400pt;}
.ws7e{word-spacing:8.129808pt;}
.ws87{word-spacing:8.289216pt;}
.ws10f{word-spacing:8.342352pt;}
.ws92{word-spacing:8.395488pt;}
.ws61{word-spacing:8.661168pt;}
.wsb9{word-spacing:8.767440pt;}
.ws112{word-spacing:8.873712pt;}
.wsdf{word-spacing:8.926848pt;}
.ws28{word-spacing:8.979984pt;}
.ws187{word-spacing:8.987371pt;}
.ws90{word-spacing:9.033120pt;}
.ws9c{word-spacing:9.086256pt;}
.ws1b{word-spacing:9.139392pt;}
.ws186{word-spacing:9.168021pt;}
.ws29{word-spacing:9.192528pt;}
.wsab{word-spacing:9.245664pt;}
.ws2a{word-spacing:9.351936pt;}
.wsac{word-spacing:9.458208pt;}
.ws46{word-spacing:9.511344pt;}
.ws45{word-spacing:9.564480pt;}
.ws47{word-spacing:9.723888pt;}
.wse2{word-spacing:9.883296pt;}
.ws16e{word-spacing:9.890624pt;}
.ws40{word-spacing:9.936432pt;}
.wsc9{word-spacing:9.989568pt;}
.ws171{word-spacing:10.071275pt;}
.ws41{word-spacing:10.095840pt;}
.wse1{word-spacing:10.148976pt;}
.ws14b{word-spacing:10.202112pt;}
.ws10a{word-spacing:10.255248pt;}
.ws42{word-spacing:10.308384pt;}
.ws10e{word-spacing:10.414656pt;}
.ws10d{word-spacing:10.467792pt;}
.ws17a{word-spacing:10.477739pt;}
.ws12b{word-spacing:10.574064pt;}
.ws179{word-spacing:10.658389pt;}
.ws12d{word-spacing:10.680336pt;}
.ws122{word-spacing:10.786608pt;}
.ws16a{word-spacing:10.793877pt;}
.ws115{word-spacing:10.839744pt;}
.ws116{word-spacing:10.999152pt;}
.ws13f{word-spacing:11.105424pt;}
.wsbd{word-spacing:11.158560pt;}
.wsd7{word-spacing:11.371104pt;}
.ws79{word-spacing:11.636784pt;}
.wsb8{word-spacing:11.689920pt;}
.ws17f{word-spacing:11.697131pt;}
.ws17e{word-spacing:11.742293pt;}
.wsa7{word-spacing:11.849328pt;}
.ws180{word-spacing:11.877781pt;}
.ws78{word-spacing:11.902464pt;}
.ws10b{word-spacing:12.008736pt;}
.ws8d{word-spacing:12.061872pt;}
.wsa9{word-spacing:12.115008pt;}
.ws14a{word-spacing:12.221280pt;}
.ws147{word-spacing:12.327552pt;}
.wsa4{word-spacing:12.380688pt;}
.ws146{word-spacing:12.593232pt;}
.wscd{word-spacing:12.646368pt;}
.ws6c{word-spacing:12.912048pt;}
.ws14d{word-spacing:12.965184pt;}
.ws67{word-spacing:13.177728pt;}
.wse3{word-spacing:13.496544pt;}
.ws51{word-spacing:13.549680pt;}
.ws3d{word-spacing:13.602816pt;}
.wse4{word-spacing:13.921632pt;}
.ws156{word-spacing:14.181077pt;}
.ws36{word-spacing:14.187312pt;}
.ws37{word-spacing:14.293584pt;}
.ws14f{word-spacing:14.399856pt;}
.ws24{word-spacing:14.506128pt;}
.ws3a{word-spacing:14.559264pt;}
.ws23{word-spacing:14.612400pt;}
.ws38{word-spacing:14.665536pt;}
.ws22{word-spacing:14.824944pt;}
.ws62{word-spacing:14.931216pt;}
.ws55{word-spacing:14.984352pt;}
.ws14c{word-spacing:15.143760pt;}
.ws56{word-spacing:15.196896pt;}
.ws11c{word-spacing:15.409440pt;}
.ws10c{word-spacing:15.515712pt;}
.ws9d{word-spacing:15.781392pt;}
.ws13e{word-spacing:15.940800pt;}
.ws158{word-spacing:16.213397pt;}
.ws133{word-spacing:16.259616pt;}
.ws132{word-spacing:16.472160pt;}
.ws134{word-spacing:16.950384pt;}
.ws94{word-spacing:17.056656pt;}
.ws11a{word-spacing:17.162928pt;}
.wsc0{word-spacing:17.216064pt;}
.ws150{word-spacing:17.641152pt;}
.ws149{word-spacing:17.694288pt;}
.ws135{word-spacing:18.013104pt;}
.ws136{word-spacing:18.331920pt;}
.ws140{word-spacing:18.438192pt;}
.ws141{word-spacing:18.544464pt;}
.ws142{word-spacing:18.650736pt;}
.ws167{word-spacing:18.697344pt;}
.ws58{word-spacing:18.810144pt;}
.ws12a{word-spacing:18.916416pt;}
.ws151{word-spacing:18.923157pt;}
.ws168{word-spacing:18.968320pt;}
.ws3c{word-spacing:19.182096pt;}
.ws88{word-spacing:19.235232pt;}
.ws3b{word-spacing:19.341504pt;}
.wsbb{word-spacing:19.447776pt;}
.ws68{word-spacing:19.500912pt;}
.ws128{word-spacing:19.607184pt;}
.ws15a{word-spacing:19.690923pt;}
.ws69{word-spacing:19.713456pt;}
.wsba{word-spacing:19.872864pt;}
.wsd0{word-spacing:20.191680pt;}
.ws9e{word-spacing:20.244816pt;}
.ws148{word-spacing:20.563632pt;}
.ws109{word-spacing:20.882448pt;}
.ws12c{word-spacing:21.148128pt;}
.ws2d{word-spacing:21.201264pt;}
.ws64{word-spacing:21.254400pt;}
.ws4a{word-spacing:21.413808pt;}
.ws4c{word-spacing:21.520080pt;}
.ws65{word-spacing:21.573216pt;}
.ws4d{word-spacing:21.626352pt;}
.ws4b{word-spacing:21.785760pt;}
.wsb6{word-spacing:22.104576pt;}
.wsb7{word-spacing:22.317120pt;}
.ws8f{word-spacing:22.582800pt;}
.ws5d{word-spacing:22.635936pt;}
.wsd8{word-spacing:22.742208pt;}
.wsda{word-spacing:22.901616pt;}
.ws21{word-spacing:23.167296pt;}
.wscb{word-spacing:23.379840pt;}
.wsca{word-spacing:23.539248pt;}
.ws96{word-spacing:24.017472pt;}
.wsaa{word-spacing:24.230016pt;}
.ws98{word-spacing:24.495696pt;}
.wsc1{word-spacing:25.399008pt;}
.ws5a{word-spacing:25.664688pt;}
.ws59{word-spacing:25.717824pt;}
.ws5b{word-spacing:25.770960pt;}
.ws7a{word-spacing:25.824096pt;}
.ws7b{word-spacing:25.877232pt;}
.ws7c{word-spacing:25.930368pt;}
.ws14e{word-spacing:27.630720pt;}
.wsd3{word-spacing:27.645600pt;}
.wsb1{word-spacing:28.215216pt;}
.wsa3{word-spacing:28.959120pt;}
.ws105{word-spacing:31.951243pt;}
.wsb4{word-spacing:32.412960pt;}
.ws52{word-spacing:33.794496pt;}
.ws53{word-spacing:33.953904pt;}
.ws54{word-spacing:34.007040pt;}
.ws145{word-spacing:40.170816pt;}
.wsb2{word-spacing:66.154320pt;}
.wsf6{word-spacing:156.533803pt;}
._19{margin-left:-41.818032pt;}
._21{margin-left:-37.530176pt;}
._15{margin-left:-24.230016pt;}
._14{margin-left:-17.216064pt;}
._18{margin-left:-14.993947pt;}
._17{margin-left:-12.006928pt;}
._4{width:1.062720pt;}
._2{width:4.612011pt;}
._1{width:5.517941pt;}
._2e{width:9.800299pt;}
._29{width:11.264832pt;}
._1a{width:12.879520pt;}
._b{width:14.027904pt;}
._2a{width:14.931216pt;}
._0{width:15.897259pt;}
._6{width:17.428608pt;}
._9{width:18.544464pt;}
._3{width:20.054011pt;}
._11{width:21.732624pt;}
._5{width:23.061024pt;}
._12{width:24.389424pt;}
._10{width:25.292736pt;}
._2d{width:26.237867pt;}
._c{width:27.205632pt;}
._8{width:28.374624pt;}
._28{width:29.277936pt;}
._13{width:30.978288pt;}
._e{width:32.466096pt;}
._f{width:33.528816pt;}
._a{width:34.963488pt;}
._7{width:37.142064pt;}
._16{width:39.586320pt;}
._2b{width:43.116373pt;}
._d{width:47.503584pt;}
._2c{width:53.773632pt;}
._1e{width:103.964459pt;}
._1f{width:107.758123pt;}
._20{width:113.629269pt;}
._27{width:145.062485pt;}
._25{width:160.146816pt;}
._1d{width:182.637824pt;}
._24{width:197.586667pt;}
._23{width:233.897451pt;}
._26{width:373.811275pt;}
._22{width:410.347989pt;}
._1b{width:487.666475pt;}
._1c{width:573.475541pt;}
.fsa{font-size:30.106667pt;}
.fs8{font-size:35.418667pt;}
.fs5{font-size:38.960000pt;}
.fs3{font-size:39.850667pt;}
.fs4{font-size:41.178667pt;}
.fs7{font-size:42.506667pt;}
.fs2{font-size:45.162667pt;}
.fs9{font-size:47.818667pt;}
.fs6{font-size:53.136000pt;}
.fs1{font-size:58.448000pt;}
.fs0{font-size:90.325333pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:61.981333pt;}
.ycb{bottom:61.984000pt;}
.y103{bottom:62.007067pt;}
.y4b{bottom:85.870080pt;}
.y157{bottom:85.872459pt;}
.y49{bottom:86.074913pt;}
.yc9{bottom:86.079951pt;}
.y89{bottom:86.092583pt;}
.y101{bottom:86.398432pt;}
.y179{bottom:91.087675pt;}
.y155{bottom:98.570667pt;}
.y4a{bottom:99.174667pt;}
.y156{bottom:100.460000pt;}
.y154{bottom:100.462475pt;}
.y100{bottom:101.065008pt;}
.y86{bottom:102.023852pt;}
.y48{bottom:102.028997pt;}
.yc8{bottom:102.034035pt;}
.y88{bottom:102.046667pt;}
.y178{bottom:105.675216pt;}
.y87{bottom:107.942667pt;}
.y1b2{bottom:112.630267pt;}
.y153{bottom:115.129051pt;}
.yff{bottom:115.652549pt;}
.y85{bottom:117.898232pt;}
.yc7{bottom:117.908415pt;}
.y47{bottom:117.983081pt;}
.y177{bottom:120.262757pt;}
.y1b1{bottom:127.296843pt;}
.y152{bottom:129.716592pt;}
.yfe{bottom:130.240091pt;}
.y84{bottom:133.852316pt;}
.yc6{bottom:133.862499pt;}
.y46{bottom:133.937165pt;}
.y176{bottom:134.556741pt;}
.y175{bottom:134.929333pt;}
.y1b0{bottom:141.884384pt;}
.y151{bottom:144.304133pt;}
.yfd{bottom:144.906667pt;}
.y83{bottom:149.806400pt;}
.yc5{bottom:149.816583pt;}
.y2a{bottom:149.882035pt;}
.y45{bottom:149.891249pt;}
.y2b{bottom:149.896000pt;}
.y1af{bottom:156.471925pt;}
.y174{bottom:157.707861pt;}
.y150{bottom:158.970709pt;}
.yc3{bottom:163.577333pt;}
.y82{bottom:165.760484pt;}
.yc2{bottom:165.765916pt;}
.y43{bottom:165.768099pt;}
.yc4{bottom:165.770667pt;}
.y29{bottom:165.836119pt;}
.y44{bottom:165.845333pt;}
.y1ae{bottom:171.138501pt;}
.y14f{bottom:173.558251pt;}
.y42{bottom:181.642479pt;}
.ybf{bottom:181.705748pt;}
.y28{bottom:181.710499pt;}
.y81{bottom:181.714568pt;}
.yc1{bottom:181.720000pt;}
.y1ad{bottom:185.726043pt;}
.yc0{bottom:187.616000pt;}
.y14e{bottom:188.145792pt;}
.y173{bottom:197.546577pt;}
.y41{bottom:197.596563pt;}
.ybe{bottom:197.659832pt;}
.y27{bottom:197.664583pt;}
.y1ac{bottom:200.313584pt;}
.y14d{bottom:202.732091pt;}
.y172{bottom:213.500661pt;}
.y40{bottom:213.550647pt;}
.y80{bottom:213.609452pt;}
.y25{bottom:213.613916pt;}
.y26{bottom:213.618667pt;}
.y1ab{bottom:214.980160pt;}
.y14c{bottom:217.398667pt;}
.y3f{bottom:229.504731pt;}
.y23{bottom:229.511516pt;}
.ybc{bottom:229.545867pt;}
.y7f{bottom:229.563536pt;}
.y1aa{bottom:229.567701pt;}
.y24{bottom:229.568000pt;}
.ybd{bottom:235.464000pt;}
.y171{bottom:237.385293pt;}
.y1a9{bottom:244.155243pt;}
.ybb{bottom:245.420247pt;}
.y7e{bottom:245.437916pt;}
.y3e{bottom:245.458815pt;}
.y22{bottom:245.465600pt;}
.y1a8{bottom:258.742784pt;}
.yba{bottom:261.374331pt;}
.y7c{bottom:261.392000pt;}
.y3d{bottom:261.412899pt;}
.y21{bottom:261.419684pt;}
.y7d{bottom:267.288000pt;}
.y1a7{bottom:273.409360pt;}
.y170{bottom:277.224009pt;}
.yb9{bottom:277.328415pt;}
.y7a{bottom:277.333165pt;}
.y3c{bottom:277.366983pt;}
.y20{bottom:277.373768pt;}
.y7b{bottom:283.237333pt;}
.y1a6{bottom:287.996901pt;}
.y16f{bottom:293.178093pt;}
.yb8{bottom:293.282499pt;}
.y79{bottom:293.287249pt;}
.y3b{bottom:293.321067pt;}
.y1f{bottom:293.327852pt;}
.y1a5{bottom:302.584443pt;}
.y16e{bottom:309.132177pt;}
.y3a{bottom:309.195447pt;}
.y1e{bottom:309.202232pt;}
.y76{bottom:309.227081pt;}
.yb7{bottom:309.236583pt;}
.y78{bottom:309.241333pt;}
.y77{bottom:315.137333pt;}
.y1a4{bottom:317.251019pt;}
.y16d{bottom:325.086261pt;}
.y38{bottom:325.149531pt;}
.y1d{bottom:325.156316pt;}
.yb4{bottom:325.167565pt;}
.y75{bottom:325.181165pt;}
.yb6{bottom:325.190667pt;}
.y39{bottom:325.295655pt;}
.yb5{bottom:331.086667pt;}
.y1a3{bottom:331.838560pt;}
.y16c{bottom:341.040345pt;}
.y37{bottom:341.103615pt;}
.y1c{bottom:341.110400pt;}
.yb3{bottom:341.121649pt;}
.y74{bottom:341.135249pt;}
.y1a2{bottom:346.426101pt;}
.y16b{bottom:356.994429pt;}
.y36{bottom:357.057699pt;}
.y1b{bottom:357.064484pt;}
.yb2{bottom:357.075733pt;}
.y73{bottom:357.089333pt;}
.y71{bottom:357.089620pt;}
.y1a1{bottom:361.092677pt;}
.y72{bottom:362.985333pt;}
.y16a{bottom:372.868809pt;}
.y6e{bottom:372.926647pt;}
.y14b{bottom:372.932365pt;}
.y11f{bottom:372.954864pt;}
.y70{bottom:372.964000pt;}
.y35{bottom:373.011783pt;}
.y1a{bottom:373.018568pt;}
.y1a0{bottom:375.680219pt;}
.y6f{bottom:378.936000pt;}
.yb1{bottom:380.960365pt;}
.y169{bottom:388.822893pt;}
.y6d{bottom:388.880731pt;}
.y14a{bottom:388.886449pt;}
.y11e{bottom:388.908948pt;}
.y34{bottom:388.965867pt;}
.y19{bottom:388.972652pt;}
.y19f{bottom:390.267760pt;}
.y168{bottom:404.776977pt;}
.y6c{bottom:404.834815pt;}
.y149{bottom:404.840533pt;}
.y19e{bottom:404.855301pt;}
.y33{bottom:404.919951pt;}
.y18{bottom:404.926736pt;}
.y11d{bottom:412.873284pt;}
.yfc{bottom:417.939717pt;}
.y19d{bottom:419.521877pt;}
.y167{bottom:420.731061pt;}
.y6b{bottom:420.788899pt;}
.y148{bottom:420.794617pt;}
.yb0{bottom:420.799081pt;}
.y32{bottom:420.874035pt;}
.y17{bottom:420.880820pt;}
.yfb{bottom:432.606293pt;}
.y19c{bottom:434.109419pt;}
.y166{bottom:436.685145pt;}
.y31{bottom:436.748415pt;}
.y147{bottom:436.748701pt;}
.yaf{bottom:436.753165pt;}
.y16{bottom:436.755200pt;}
.yfa{bottom:447.193835pt;}
.y19b{bottom:448.696960pt;}
.y165{bottom:452.639229pt;}
.y11a{bottom:452.648049pt;}
.y6a{bottom:452.683783pt;}
.y30{bottom:452.702499pt;}
.y146{bottom:452.702785pt;}
.yae{bottom:452.707249pt;}
.y15{bottom:452.709284pt;}
.y11c{bottom:452.712000pt;}
.y11b{bottom:458.608000pt;}
.yf9{bottom:461.781376pt;}
.y19a{bottom:463.363536pt;}
.y164{bottom:468.593313pt;}
.y119{bottom:468.602133pt;}
.yab{bottom:468.629699pt;}
.y69{bottom:468.637867pt;}
.y2f{bottom:468.656583pt;}
.y145{bottom:468.656869pt;}
.yad{bottom:468.661333pt;}
.y14{bottom:468.663368pt;}
.yac{bottom:474.557333pt;}
.yf8{bottom:476.368917pt;}
.y199{bottom:477.951077pt;}
.y163{bottom:484.547397pt;}
.y118{bottom:484.556217pt;}
.yaa{bottom:484.583783pt;}
.y68{bottom:484.591951pt;}
.y2e{bottom:484.610667pt;}
.y144{bottom:484.610953pt;}
.y2d{bottom:484.612948pt;}
.y198{bottom:492.538619pt;}
.y13{bottom:492.548000pt;}
.yf7{bottom:500.406747pt;}
.y162{bottom:500.421777pt;}
.y117{bottom:500.430597pt;}
.y141{bottom:500.444197pt;}
.ya9{bottom:500.458163pt;}
.y67{bottom:500.466331pt;}
.y143{bottom:500.485333pt;}
.y2c{bottom:500.567032pt;}
.y142{bottom:506.456000pt;}
.y197{bottom:507.205195pt;}
.yf4{bottom:515.004661pt;}
.y161{bottom:516.375861pt;}
.y116{bottom:516.384681pt;}
.y140{bottom:516.398281pt;}
.ya8{bottom:516.412247pt;}
.y66{bottom:516.420415pt;}
.yf5{bottom:519.986667pt;}
.y196{bottom:521.792736pt;}
.yf6{bottom:530.948000pt;}
.y160{bottom:532.329945pt;}
.y115{bottom:532.338765pt;}
.y13f{bottom:532.352365pt;}
.ya7{bottom:532.366331pt;}
.y65{bottom:532.374499pt;}
.y195{bottom:536.380277pt;}
.y15f{bottom:548.284029pt;}
.y114{bottom:548.292849pt;}
.y13e{bottom:548.306449pt;}
.ya6{bottom:548.320415pt;}
.y64{bottom:548.328583pt;}
.y194{bottom:551.046853pt;}
.yf3{bottom:555.063947pt;}
.y61{bottom:564.223832pt;}
.y15e{bottom:564.238113pt;}
.y113{bottom:564.246933pt;}
.y13c{bottom:564.260533pt;}
.ya5{bottom:564.274499pt;}
.y63{bottom:564.282667pt;}
.y13d{bottom:564.406657pt;}
.y193{bottom:565.634395pt;}
.y62{bottom:570.180000pt;}
.yf2{bottom:579.858251pt;}
.y15d{bottom:580.192197pt;}
.y112{bottom:580.201017pt;}
.y13b{bottom:580.214617pt;}
.y192{bottom:580.221936pt;}
.ya4{bottom:580.228583pt;}
.y12{bottom:585.582105pt;}
.y60{bottom:588.108464pt;}
.yf1{bottom:594.445792pt;}
.y191{bottom:594.809477pt;}
.y15c{bottom:596.146281pt;}
.y111{bottom:596.155101pt;}
.y13a{bottom:596.168701pt;}
.ya1{bottom:596.177916pt;}
.ya3{bottom:596.182667pt;}
.ya2{bottom:602.078667pt;}
.y11{bottom:604.183181pt;}
.yf0{bottom:609.033333pt;}
.y190{bottom:609.476053pt;}
.y15b{bottom:612.100365pt;}
.y110{bottom:612.109185pt;}
.y139{bottom:612.122785pt;}
.ya0{bottom:612.132000pt;}
.y9e{bottom:612.132287pt;}
.y9f{bottom:618.028000pt;}
.y10{bottom:622.784257pt;}
.y18f{bottom:624.063595pt;}
.y9d{bottom:625.814667pt;}
.y5f{bottom:627.947180pt;}
.y15a{bottom:627.974745pt;}
.y10f{bottom:627.983565pt;}
.y138{bottom:627.997165pt;}
.y9b{bottom:628.006667pt;}
.y9c{bottom:633.977333pt;}
.y18e{bottom:638.651136pt;}
.yd{bottom:641.344468pt;}
.yf{bottom:641.385333pt;}
.y5e{bottom:643.901264pt;}
.y98{bottom:643.927595pt;}
.y159{bottom:643.928829pt;}
.y10e{bottom:643.937649pt;}
.y137{bottom:643.951249pt;}
.y9a{bottom:643.956000pt;}
.ye{bottom:647.886667pt;}
.y99{bottom:649.852000pt;}
.ydd{bottom:651.963249pt;}
.y18d{bottom:653.317712pt;}
.y5d{bottom:659.855348pt;}
.y97{bottom:659.881679pt;}
.y134{bottom:659.882913pt;}
.y10d{bottom:659.891733pt;}
.yef{bottom:659.900583pt;}
.y136{bottom:659.905333pt;}
.yc{bottom:659.945544pt;}
.y135{bottom:665.801333pt;}
.yda{bottom:667.892849pt;}
.y18c{bottom:667.905253pt;}
.ydc{bottom:667.917333pt;}
.ydb{bottom:673.814667pt;}
.y5c{bottom:675.809432pt;}
.y96{bottom:675.835763pt;}
.yec{bottom:675.836997pt;}
.yee{bottom:675.854667pt;}
.yb{bottom:678.546620pt;}
.yed{bottom:681.750667pt;}
.y18b{bottom:682.492795pt;}
.yd9{bottom:683.846933pt;}
.y10c{bottom:683.856069pt;}
.y5b{bottom:691.763516pt;}
.y95{bottom:691.789847pt;}
.yeb{bottom:691.791081pt;}
.ya{bottom:697.147696pt;}
.y18a{bottom:697.159371pt;}
.yd8{bottom:699.721313pt;}
.y5a{bottom:707.717600pt;}
.y94{bottom:707.743931pt;}
.yea{bottom:707.745165pt;}
.y189{bottom:711.746912pt;}
.yd7{bottom:715.675397pt;}
.y9{bottom:715.748772pt;}
.y59{bottom:723.671684pt;}
.y10b{bottom:723.694785pt;}
.y93{bottom:723.698015pt;}
.ye9{bottom:723.699249pt;}
.y188{bottom:726.334453pt;}
.y8{bottom:734.349848pt;}
.ye6{bottom:739.612484pt;}
.y58{bottom:739.625768pt;}
.yd6{bottom:739.639733pt;}
.y158{bottom:739.644119pt;}
.y10a{bottom:739.648869pt;}
.y92{bottom:739.652099pt;}
.ye8{bottom:739.653333pt;}
.y133{bottom:739.653620pt;}
.y187{bottom:740.921995pt;}
.ye7{bottom:745.549333pt;}
.y7{bottom:752.950924pt;}
.ye5{bottom:755.486864pt;}
.y57{bottom:755.500148pt;}
.yd5{bottom:755.514113pt;}
.y130{bottom:755.518499pt;}
.y109{bottom:755.523249pt;}
.y91{bottom:755.526479pt;}
.y132{bottom:755.528000pt;}
.y186{bottom:755.588571pt;}
.y131{bottom:761.498667pt;}
.y184{bottom:770.176112pt;}
.y185{bottom:770.322891pt;}
.ye4{bottom:771.440948pt;}
.y56{bottom:771.454232pt;}
.y106{bottom:771.454913pt;}
.y12f{bottom:771.472583pt;}
.y108{bottom:771.477333pt;}
.y90{bottom:771.480563pt;}
.y6{bottom:771.552000pt;}
.y107{bottom:777.373333pt;}
.yd4{bottom:779.478449pt;}
.y183{bottom:784.763653pt;}
.ye3{bottom:787.395032pt;}
.y55{bottom:787.408316pt;}
.y105{bottom:787.408997pt;}
.y12c{bottom:787.421916pt;}
.y12e{bottom:787.426667pt;}
.y5{bottom:790.072000pt;}
.y12d{bottom:793.322667pt;}
.y8f{bottom:795.444899pt;}
.y182{bottom:799.430229pt;}
.ye2{bottom:803.349116pt;}
.y54{bottom:803.362400pt;}
.y104{bottom:803.363081pt;}
.y129{bottom:803.371249pt;}
.y12b{bottom:803.376000pt;}
.y12a{bottom:809.272000pt;}
.y181{bottom:814.017771pt;}
.y4{bottom:816.756000pt;}
.ye1{bottom:819.303200pt;}
.y126{bottom:819.310548pt;}
.y53{bottom:819.316484pt;}
.yd3{bottom:819.317165pt;}
.y128{bottom:819.325333pt;}
.y127{bottom:825.221333pt;}
.y180{bottom:828.605312pt;}
.ye0{bottom:835.257284pt;}
.y125{bottom:835.264632pt;}
.y52{bottom:835.270568pt;}
.yd2{bottom:835.271249pt;}
.y8e{bottom:835.283615pt;}
.y3{bottom:840.490667pt;}
.y17f{bottom:843.271888pt;}
.ycf{bottom:851.211368pt;}
.y124{bottom:851.218716pt;}
.y51{bottom:851.224652pt;}
.yd1{bottom:851.225333pt;}
.y8d{bottom:851.237699pt;}
.y2{bottom:856.365333pt;}
.yd0{bottom:857.121333pt;}
.y17e{bottom:857.859429pt;}
.yce{bottom:867.165452pt;}
.y123{bottom:867.172800pt;}
.y50{bottom:867.178736pt;}
.y8c{bottom:867.191783pt;}
.y17d{bottom:872.446971pt;}
.ycd{bottom:883.039832pt;}
.y122{bottom:883.047180pt;}
.y17c{bottom:887.113547pt;}
.y4f{bottom:891.063368pt;}
.ycc{bottom:898.993916pt;}
.y121{bottom:899.001264pt;}
.y8b{bottom:899.020247pt;}
.y17b{bottom:901.701088pt;}
.y1{bottom:912.000000pt;}
.yde{bottom:914.946597pt;}
.y4e{bottom:914.948000pt;}
.y120{bottom:914.955348pt;}
.y8a{bottom:914.974331pt;}
.y17a{bottom:916.288629pt;}
.ydf{bottom:920.844000pt;}
.y102{bottom:980.257333pt;}
.yca{bottom:980.333333pt;}
.y4d{bottom:980.409333pt;}
.h16{height:20.562853pt;}
.h12{height:24.190949pt;}
.h8{height:26.609680pt;}
.hd{height:27.218005pt;}
.h4{height:29.369941pt;}
.hf{height:29.542133pt;}
.h5{height:30.348677pt;}
.h14{height:30.846101pt;}
.h10{height:31.327413pt;}
.h18{height:31.347861pt;}
.h17{height:31.388053pt;}
.h15{height:32.200981pt;}
.h19{height:32.336469pt;}
.h3{height:33.284885pt;}
.h13{height:35.242357pt;}
.hb{height:36.291888pt;}
.he{height:36.345024pt;}
.ha{height:36.929520pt;}
.hc{height:37.885968pt;}
.h11{height:39.059047pt;}
.h9{height:39.161232pt;}
.h6{height:39.919984pt;}
.h7{height:40.621360pt;}
.h2{height:43.076176pt;}
.h1{height:66.569771pt;}
.h0{height:1036.000000pt;}
.w0{width:789.333333pt;}
.x0{left:0.000000pt;}
.x1{left:55.785333pt;}
.x11{left:63.798667pt;}
.x5{left:67.727649pt;}
.x8{left:76.120000pt;}
.x2{left:111.572000pt;}
.x17{left:117.845333pt;}
.x46{left:127.445333pt;}
.x67{left:130.992464pt;}
.x18{left:134.173333pt;}
.x4c{left:146.494667pt;}
.x3{left:149.896000pt;}
.x64{left:151.937333pt;}
.x4d{left:154.506667pt;}
.x4{left:166.828000pt;}
.x19{left:168.416000pt;}
.x1c{left:175.142667pt;}
.x4e{left:180.434667pt;}
.x1a{left:185.650667pt;}
.x4f{left:189.505333pt;}
.x68{left:193.508885pt;}
.x1d{left:194.418667pt;}
.x65{left:196.610667pt;}
.x39{left:199.181333pt;}
.x4a{left:202.432000pt;}
.x37{left:204.850667pt;}
.x3a{left:210.217333pt;}
.x66{left:211.502667pt;}
.x4b{left:213.392000pt;}
.x38{left:220.270667pt;}
.x50{left:224.504000pt;}
.x48{left:230.476000pt;}
.x51{left:235.464000pt;}
.x49{left:241.512000pt;}
.x6{left:249.676000pt;}
.x7{left:257.838667pt;}
.x1e{left:274.318667pt;}
.x16{left:277.720000pt;}
.x47{left:295.105733pt;}
.x12{left:323.376000pt;}
.x13{left:332.446667pt;}
.x14{left:367.369333pt;}
.x1b{left:371.528000pt;}
.x15{left:378.406667pt;}
.x9{left:406.466512pt;}
.x1f{left:414.478151pt;}
.xc{left:418.415349pt;}
.x52{left:426.434784pt;}
.x69{left:431.583883pt;}
.x5f{left:436.006667pt;}
.x62{left:438.878667pt;}
.x3b{left:449.688000pt;}
.x3c{left:459.364000pt;}
.xe{left:464.201333pt;}
.x35{left:471.382667pt;}
.xf{left:472.365333pt;}
.x31{left:475.993333pt;}
.x60{left:485.593333pt;}
.x3d{left:487.332000pt;}
.x27{left:489.826667pt;}
.x3e{left:496.402667pt;}
.x10{left:512.721373pt;}
.xd{left:519.626145pt;}
.x63{left:523.389333pt;}
.x3f{left:531.325333pt;}
.x2e{left:536.994667pt;}
.x2a{left:542.513333pt;}
.x2f{left:547.956000pt;}
.x20{left:551.734667pt;}
.x2b{left:559.597333pt;}
.x21{left:567.080000pt;}
.x40{left:570.180000pt;}
.x43{left:575.394667pt;}
.x41{left:579.704000pt;}
.x36{left:584.465333pt;}
.x32{left:594.293333pt;}
.x33{left:608.504000pt;}
.x44{left:610.317333pt;}
.x42{left:614.626667pt;}
.x45{left:621.354667pt;}
.xa{left:625.133333pt;}
.xb{left:633.297333pt;}
.x53{left:637.681333pt;}
.x30{left:639.949333pt;}
.x58{left:645.392000pt;}
.x54{left:646.828000pt;}
.x61{left:652.121557pt;}
.x5a{left:656.428000pt;}
.x59{left:660.585333pt;}
.x2c{left:670.412000pt;}
.x23{left:673.133333pt;}
.x28{left:678.652000pt;}
.x55{left:681.750667pt;}
.x2d{left:685.454667pt;}
.x5d{left:689.008000pt;}
.x5b{left:691.426667pt;}
.x24{left:693.921333pt;}
.x29{left:695.508000pt;}
.x56{left:696.566667pt;}
.x5e{left:699.968000pt;}
.x5c{left:702.386667pt;}
.x57{left:713.196000pt;}
.x34{left:718.790667pt;}
.x22{left:722.268000pt;}
.x25{left:725.140000pt;}
.x26{left:729.750667pt;}
}




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