
    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_fe86c68e3803b02712177df1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.099000;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_fceacdb19b46648bb8bed800.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.204000;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_61fc7ad4c91faa6841fda289.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.217000;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_3f1f9be0ffdc33f5a5af494f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.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:ff5;src:url('chunks/assets/font_b5a73eada889ee3bb02eab55.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.221000;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_e04908ef01d8e77f25c62e64.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106000;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_fab3a31de69399bf43f97f80.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dac88b30fcff93b6d4cd69e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8c01396aacbe562d40fd9e53.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097000;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_6f3937cb806df7364f1c072f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.043000;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_9fbab1fa22e667bf072fb7f4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.113000;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_5e0a9d834e0ea23ae4b2247c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.026000;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_443038877d87351bc449a96a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.483000;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_f2ac2eff8b430a474a30d207.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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;}
.m5{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m0{transform:matrix(0.251542,0.000000,-0.053468,0.244215,0,0);-ms-transform:matrix(0.251542,0.000000,-0.053468,0.244215,0,0);-webkit-transform:matrix(0.251542,0.000000,-0.053468,0.244215,0,0);}
.m4{transform:matrix(0.251542,0.000000,-0.053467,0.244216,0,0);-ms-transform:matrix(0.251542,0.000000,-0.053467,0.244216,0,0);-webkit-transform:matrix(0.251542,0.000000,-0.053467,0.244216,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.565400px;}
.ls1b{letter-spacing:-0.854400px;}
.ls1a{letter-spacing:-0.039310px;}
.ls17{letter-spacing:-0.019200px;}
.lse{letter-spacing:-0.014400px;}
.lsc{letter-spacing:-0.011056px;}
.ls23{letter-spacing:-0.010200px;}
.ls15{letter-spacing:-0.009827px;}
.ls3{letter-spacing:-0.009600px;}
.ls11{letter-spacing:-0.009000px;}
.ls5{letter-spacing:-0.008400px;}
.ls4{letter-spacing:-0.006000px;}
.ls8{letter-spacing:-0.005700px;}
.lsb{letter-spacing:-0.005528px;}
.ls22{letter-spacing:-0.005100px;}
.ls7{letter-spacing:-0.004914px;}
.ls9{letter-spacing:-0.004800px;}
.lsd{letter-spacing:-0.004500px;}
.ls6{letter-spacing:-0.004200px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004800px;}
.ls12{letter-spacing:0.009600px;}
.ls1f{letter-spacing:0.010200px;}
.lsf{letter-spacing:0.014400px;}
.ls21{letter-spacing:0.030600px;}
.lsa{letter-spacing:0.086400px;}
.ls19{letter-spacing:0.168000px;}
.ls18{letter-spacing:0.230400px;}
.ls13{letter-spacing:0.235200px;}
.ls1d{letter-spacing:0.326400px;}
.ls10{letter-spacing:0.340800px;}
.ls1c{letter-spacing:0.379200px;}
.ls14{letter-spacing:0.840000px;}
.ls16{letter-spacing:0.938516px;}
.ls20{letter-spacing:1.014900px;}
.ls1{letter-spacing:2.664000px;}
.ls1e{letter-spacing:44.813700px;}
.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;}
}
.ws0{word-spacing:-13.344000px;}
.ws42{word-spacing:-13.334400px;}
.ws20f{word-spacing:-12.780600px;}
.ws1{word-spacing:-12.475200px;}
.ws17b{word-spacing:-12.470400px;}
.ws1c3{word-spacing:-11.625600px;}
.ws2a{word-spacing:-1.996800px;}
.ws1c4{word-spacing:-1.920000px;}
.ws23e{word-spacing:-1.881900px;}
.wsac{word-spacing:-1.876800px;}
.wsba{word-spacing:-1.862400px;}
.wsa3{word-spacing:-1.776000px;}
.ws150{word-spacing:-1.756800px;}
.ws1d6{word-spacing:-1.747200px;}
.ws127{word-spacing:-1.728000px;}
.ws185{word-spacing:-1.718400px;}
.ws5a{word-spacing:-1.713600px;}
.ws1df{word-spacing:-1.704000px;}
.ws48{word-spacing:-1.665600px;}
.wsa8{word-spacing:-1.646400px;}
.ws1d5{word-spacing:-1.641600px;}
.ws157{word-spacing:-1.631346px;}
.ws5d{word-spacing:-1.579200px;}
.ws67{word-spacing:-1.574400px;}
.ws109{word-spacing:-1.564800px;}
.ws1c{word-spacing:-1.547814px;}
.wsb1{word-spacing:-1.540800px;}
.wse0{word-spacing:-1.528159px;}
.wsae{word-spacing:-1.435200px;}
.ws1e0{word-spacing:-1.411200px;}
.wsc2{word-spacing:-1.310400px;}
.ws236{word-spacing:-1.295400px;}
.ws14d{word-spacing:-1.281600px;}
.ws99{word-spacing:-1.276800px;}
.ws165{word-spacing:-1.272647px;}
.ws203{word-spacing:-1.267733px;}
.ws235{word-spacing:-1.259700px;}
.wse4{word-spacing:-1.252992px;}
.ws11d{word-spacing:-1.194028px;}
.ws181{word-spacing:-1.184200px;}
.ws11c{word-spacing:-1.174373px;}
.ws10f{word-spacing:-1.164546px;}
.wsc5{word-spacing:-1.149804px;}
.ws86{word-spacing:-1.137600px;}
.ws66{word-spacing:-1.128000px;}
.ws1dc{word-spacing:-1.113600px;}
.ws164{word-spacing:-1.104000px;}
.wsb4{word-spacing:-1.084800px;}
.ws14a{word-spacing:-1.075200px;}
.ws202{word-spacing:-1.070400px;}
.wsf3{word-spacing:-1.056444px;}
.wsb5{word-spacing:-1.027200px;}
.wsa4{word-spacing:-0.998400px;}
.ws213{word-spacing:-0.994500px;}
.ws34{word-spacing:-0.988800px;}
.ws33{word-spacing:-0.984000px;}
.ws52{word-spacing:-0.931200px;}
.wsbc{word-spacing:-0.916800px;}
.ws137{word-spacing:-0.894292px;}
.ws1ff{word-spacing:-0.888000px;}
.ws69{word-spacing:-0.883200px;}
.ws220{word-spacing:-0.846600px;}
.ws53{word-spacing:-0.815673px;}
.ws1ef{word-spacing:-0.796800px;}
.ws160{word-spacing:-0.792000px;}
.ws238{word-spacing:-0.785400px;}
.ws182{word-spacing:-0.776364px;}
.ws186{word-spacing:-0.753600px;}
.ws19f{word-spacing:-0.737054px;}
.ws130{word-spacing:-0.720000px;}
.ws1e4{word-spacing:-0.710400px;}
.ws30{word-spacing:-0.652800px;}
.wsda{word-spacing:-0.648000px;}
.ws21{word-spacing:-0.638780px;}
.ws131{word-spacing:-0.633867px;}
.ws91{word-spacing:-0.633600px;}
.ws2f{word-spacing:-0.619200px;}
.ws1e{word-spacing:-0.535593px;}
.ws216{word-spacing:-0.499800px;}
.ws94{word-spacing:-0.494400px;}
.ws71{word-spacing:-0.489600px;}
.ws23{word-spacing:-0.398009px;}
.wsa7{word-spacing:-0.379200px;}
.ws1ed{word-spacing:-0.355200px;}
.ws211{word-spacing:-0.346800px;}
.ws9b{word-spacing:-0.345600px;}
.ws87{word-spacing:-0.340800px;}
.ws88{word-spacing:-0.336000px;}
.ws116{word-spacing:-0.329218px;}
.ws6e{word-spacing:-0.326400px;}
.ws43{word-spacing:-0.307200px;}
.wsff{word-spacing:-0.304649px;}
.ws1b3{word-spacing:-0.270253px;}
.ws23a{word-spacing:-0.260100px;}
.ws1a8{word-spacing:-0.152325px;}
.wse5{word-spacing:-0.147411px;}
.ws8b{word-spacing:-0.096000px;}
.ws46{word-spacing:-0.091200px;}
.wsbe{word-spacing:-0.081600px;}
.ws57{word-spacing:-0.076800px;}
.ws15b{word-spacing:-0.073705px;}
.ws195{word-spacing:-0.072000px;}
.ws16b{word-spacing:-0.034396px;}
.ws16a{word-spacing:-0.033600px;}
.ws1af{word-spacing:-0.019655px;}
.ws1b0{word-spacing:-0.019200px;}
.ws2{word-spacing:0.000000px;}
.ws11e{word-spacing:0.004914px;}
.ws22c{word-spacing:0.005100px;}
.ws10d{word-spacing:0.019200px;}
.ws10e{word-spacing:0.024568px;}
.ws11{word-spacing:0.028800px;}
.ws12{word-spacing:0.038400px;}
.ws26{word-spacing:0.068792px;}
.ws1ca{word-spacing:0.083533px;}
.ws161{word-spacing:0.093360px;}
.wsed{word-spacing:0.115200px;}
.wsb6{word-spacing:0.153600px;}
.ws61{word-spacing:0.158400px;}
.ws1b7{word-spacing:0.163200px;}
.ws163{word-spacing:0.168000px;}
.wsa{word-spacing:0.172800px;}
.ws21c{word-spacing:0.204000px;}
.ws5c{word-spacing:0.216000px;}
.ws13b{word-spacing:0.309563px;}
.ws9f{word-spacing:0.316800px;}
.wse3{word-spacing:0.329218px;}
.ws138{word-spacing:0.334131px;}
.wscb{word-spacing:0.343959px;}
.ws245{word-spacing:0.428400px;}
.ws89{word-spacing:0.432000px;}
.ws49{word-spacing:0.446400px;}
.ws1d1{word-spacing:0.484800px;}
.ws12a{word-spacing:0.530679px;}
.ws1a2{word-spacing:0.540506px;}
.ws1ab{word-spacing:0.576000px;}
.ws12b{word-spacing:0.595200px;}
.wsde{word-spacing:0.604384px;}
.ws1a9{word-spacing:0.619125px;}
.ws221{word-spacing:0.622200px;}
.wsf4{word-spacing:0.633867px;}
.ws152{word-spacing:0.648000px;}
.ws199{word-spacing:0.681600px;}
.ws13e{word-spacing:0.710400px;}
.wsb2{word-spacing:0.715200px;}
.wsdf{word-spacing:0.761623px;}
.ws78{word-spacing:0.792000px;}
.ws189{word-spacing:0.805846px;}
.ws1d{word-spacing:0.825501px;}
.ws17a{word-spacing:0.878400px;}
.ws120{word-spacing:0.889379px;}
.ws101{word-spacing:0.892800px;}
.ws106{word-spacing:0.897600px;}
.ws32{word-spacing:0.907200px;}
.ws7d{word-spacing:0.912000px;}
.ws11f{word-spacing:0.918861px;}
.ws205{word-spacing:0.923775px;}
.ws237{word-spacing:0.933300px;}
.ws1a6{word-spacing:0.938516px;}
.ws13a{word-spacing:0.943429px;}
.ws176{word-spacing:0.974400px;}
.wsbf{word-spacing:0.988800px;}
.ws1a7{word-spacing:1.002394px;}
.wsad{word-spacing:1.032000px;}
.wsb9{word-spacing:1.036800px;}
.ws167{word-spacing:1.071185px;}
.ws14e{word-spacing:1.084800px;}
.ws23d{word-spacing:1.086300px;}
.ws173{word-spacing:1.095754px;}
.ws128{word-spacing:1.099200px;}
.wsd6{word-spacing:1.104000px;}
.ws68{word-spacing:1.123200px;}
.ws1c9{word-spacing:1.125236px;}
.ws5{word-spacing:1.167600px;}
.ws25{word-spacing:1.184200px;}
.ws162{word-spacing:1.208769px;}
.ws20b{word-spacing:1.214400px;}
.ws172{word-spacing:1.233600px;}
.ws56{word-spacing:1.238400px;}
.ws246{word-spacing:1.244400px;}
.ws41{word-spacing:1.246500px;}
.ws8c{word-spacing:1.251000px;}
.ws218{word-spacing:1.275000px;}
.ws212{word-spacing:1.280100px;}
.ws1e8{word-spacing:1.287388px;}
.ws226{word-spacing:1.305600px;}
.ws29{word-spacing:1.316870px;}
.ws159{word-spacing:1.321784px;}
.ws18{word-spacing:1.329600px;}
.ws4b{word-spacing:1.334400px;}
.ws55{word-spacing:1.363200px;}
.ws6d{word-spacing:1.377600px;}
.ws191{word-spacing:1.410230px;}
.ws12c{word-spacing:1.416000px;}
.ws3f{word-spacing:1.426199px;}
.ws40{word-spacing:1.468800px;}
.ws180{word-spacing:1.469195px;}
.ws6{word-spacing:1.470600px;}
.ws20e{word-spacing:1.473600px;}
.ws10c{word-spacing:1.483200px;}
.ws100{word-spacing:1.488000px;}
.ws204{word-spacing:1.498677px;}
.wsb7{word-spacing:1.502400px;}
.ws9a{word-spacing:1.516800px;}
.ws18f{word-spacing:1.560000px;}
.wsca{word-spacing:1.567468px;}
.ws10{word-spacing:1.588800px;}
.ws22a{word-spacing:1.621800px;}
.ws194{word-spacing:1.627200px;}
.ws93{word-spacing:1.636800px;}
.wsbd{word-spacing:1.651200px;}
.ws222{word-spacing:1.657500px;}
.ws17f{word-spacing:1.660800px;}
.ws4{word-spacing:1.662000px;}
.ws206{word-spacing:1.690311px;}
.ws1da{word-spacing:1.694400px;}
.ws174{word-spacing:1.700138px;}
.ws15c{word-spacing:1.705052px;}
.wsf{word-spacing:1.708800px;}
.ws15d{word-spacing:1.749275px;}
.ws98{word-spacing:1.785600px;}
.ws73{word-spacing:1.790400px;}
.ws1db{word-spacing:1.814400px;}
.ws58{word-spacing:1.824000px;}
.ws1a1{word-spacing:1.832808px;}
.ws24{word-spacing:1.842635px;}
.ws20{word-spacing:1.847549px;}
.ws7a{word-spacing:1.852800px;}
.ws1c5{word-spacing:1.881945px;}
.ws118{word-spacing:1.896686px;}
.ws175{word-spacing:1.915200px;}
.wsfc{word-spacing:1.916341px;}
.ws107{word-spacing:1.920000px;}
.ws1f9{word-spacing:1.934400px;}
.ws146{word-spacing:1.939200px;}
.ws35{word-spacing:1.972800px;}
.wsf2{word-spacing:1.999874px;}
.ws231{word-spacing:2.009400px;}
.wsc6{word-spacing:2.024442px;}
.ws1e9{word-spacing:2.063752px;}
.wsfd{word-spacing:2.073579px;}
.wsdc{word-spacing:2.103061px;}
.ws1eb{word-spacing:2.142371px;}
.wse{word-spacing:2.145600px;}
.wsce{word-spacing:2.147284px;}
.ws244{word-spacing:2.152200px;}
.ws17d{word-spacing:2.174400px;}
.ws1a4{word-spacing:2.191508px;}
.ws110{word-spacing:2.196421px;}
.wscc{word-spacing:2.216076px;}
.wscd{word-spacing:2.220990px;}
.ws121{word-spacing:2.222400px;}
.ws1f2{word-spacing:2.275200px;}
.wsa2{word-spacing:2.289600px;}
.wsd{word-spacing:2.304000px;}
.ws77{word-spacing:2.308800px;}
.ws169{word-spacing:2.318400px;}
.ws17e{word-spacing:2.323200px;}
.ws17c{word-spacing:2.328000px;}
.ws54{word-spacing:2.353660px;}
.ws154{word-spacing:2.373314px;}
.ws190{word-spacing:2.380800px;}
.ws1ec{word-spacing:2.388055px;}
.wsd5{word-spacing:2.395200px;}
.ws27{word-spacing:2.402796px;}
.ws5f{word-spacing:2.414400px;}
.ws135{word-spacing:2.457600px;}
.ws1bb{word-spacing:2.462400px;}
.ws113{word-spacing:2.466674px;}
.ws105{word-spacing:2.496000px;}
.ws4f{word-spacing:2.520725px;}
.wsf8{word-spacing:2.529600px;}
.ws1b4{word-spacing:2.548800px;}
.ws1d0{word-spacing:2.553600px;}
.wsc4{word-spacing:2.555121px;}
.wse8{word-spacing:2.577600px;}
.ws156{word-spacing:2.584603px;}
.ws170{word-spacing:2.587200px;}
.ws5e{word-spacing:2.592000px;}
.ws16c{word-spacing:2.618999px;}
.ws1bc{word-spacing:2.635200px;}
.ws1ba{word-spacing:2.640000px;}
.ws3{word-spacing:2.659200px;}
.wsf0{word-spacing:2.722187px;}
.wsdd{word-spacing:2.732014px;}
.wsab{word-spacing:2.760000px;}
.ws1ce{word-spacing:2.795892px;}
.ws223{word-spacing:2.799900px;}
.ws47{word-spacing:2.812800px;}
.ws9d{word-spacing:2.827200px;}
.wsd1{word-spacing:2.832000px;}
.ws133{word-spacing:2.836800px;}
.ws1fc{word-spacing:2.841600px;}
.ws31{word-spacing:2.846400px;}
.ws1a5{word-spacing:2.874511px;}
.wsbb{word-spacing:2.875200px;}
.ws144{word-spacing:2.884339px;}
.ws10b{word-spacing:2.899200px;}
.ws63{word-spacing:2.904000px;}
.wsc3{word-spacing:2.908907px;}
.ws16d{word-spacing:2.952000px;}
.ws11b{word-spacing:2.987526px;}
.ws18c{word-spacing:3.002267px;}
.ws22d{word-spacing:3.014100px;}
.wsa0{word-spacing:3.019200px;}
.wsb{word-spacing:3.033600px;}
.ws247{word-spacing:3.060000px;}
.ws79{word-spacing:3.067200px;}
.ws50{word-spacing:3.091200px;}
.ws1f3{word-spacing:3.096000px;}
.ws15{word-spacing:3.105600px;}
.ws18a{word-spacing:3.115282px;}
.ws1f7{word-spacing:3.129600px;}
.ws192{word-spacing:3.149678px;}
.ws1cd{word-spacing:3.153600px;}
.ws70{word-spacing:3.168000px;}
.wsaf{word-spacing:3.192000px;}
.wsc7{word-spacing:3.233211px;}
.ws102{word-spacing:3.235200px;}
.ws1ac{word-spacing:3.240000px;}
.ws1e1{word-spacing:3.244800px;}
.wsc{word-spacing:3.249600px;}
.ws183{word-spacing:3.254400px;}
.wsdb{word-spacing:3.262693px;}
.ws139{word-spacing:3.272520px;}
.ws90{word-spacing:3.288000px;}
.ws92{word-spacing:3.312000px;}
.ws14{word-spacing:3.316800px;}
.ws114{word-spacing:3.326571px;}
.ws7f{word-spacing:3.340800px;}
.ws1f6{word-spacing:3.355200px;}
.ws232{word-spacing:3.355800px;}
.ws207{word-spacing:3.370794px;}
.ws143{word-spacing:3.385535px;}
.ws148{word-spacing:3.388800px;}
.ws1b6{word-spacing:3.408000px;}
.ws51{word-spacing:3.417600px;}
.ws1fb{word-spacing:3.422400px;}
.ws155{word-spacing:3.444500px;}
.ws59{word-spacing:3.465600px;}
.ws1a0{word-spacing:3.508378px;}
.ws13c{word-spacing:3.513600px;}
.ws13{word-spacing:3.552000px;}
.ws193{word-spacing:3.556800px;}
.wsd9{word-spacing:3.576000px;}
.ws15f{word-spacing:3.633600px;}
.ws7{word-spacing:3.657600px;}
.ws1c6{word-spacing:3.739321px;}
.ws3b{word-spacing:3.763200px;}
.wseb{word-spacing:3.768000px;}
.ws23f{word-spacing:3.768900px;}
.ws115{word-spacing:3.783545px;}
.ws208{word-spacing:3.801600px;}
.wsd3{word-spacing:3.864000px;}
.ws1f8{word-spacing:3.868800px;}
.wse1{word-spacing:3.881818px;}
.wscf{word-spacing:3.883200px;}
.ws1b{word-spacing:3.901473px;}
.wsd0{word-spacing:3.902400px;}
.ws1a3{word-spacing:3.906387px;}
.ws17{word-spacing:3.907200px;}
.wsfe{word-spacing:3.940783px;}
.ws224{word-spacing:3.993300px;}
.wsf7{word-spacing:4.004661px;}
.ws15e{word-spacing:4.022400px;}
.ws39{word-spacing:4.036800px;}
.ws20d{word-spacing:4.051200px;}
.ws1e2{word-spacing:4.060800px;}
.ws19e{word-spacing:4.107848px;}
.ws1d2{word-spacing:4.180800px;}
.ws184{word-spacing:4.190400px;}
.ws1aa{word-spacing:4.200000px;}
.ws1e6{word-spacing:4.224000px;}
.ws201{word-spacing:4.228800px;}
.ws16e{word-spacing:4.238400px;}
.ws129{word-spacing:4.248000px;}
.ws124{word-spacing:4.267200px;}
.ws4a{word-spacing:4.296000px;}
.wsef{word-spacing:4.314224px;}
.ws20a{word-spacing:4.324800px;}
.ws233{word-spacing:4.329900px;}
.ws16{word-spacing:4.344000px;}
.ws12f{word-spacing:4.348800px;}
.ws1e7{word-spacing:4.363200px;}
.ws200{word-spacing:4.406400px;}
.ws1ea{word-spacing:4.441980px;}
.wsc1{word-spacing:4.449600px;}
.ws16f{word-spacing:4.521600px;}
.ws7b{word-spacing:4.584000px;}
.ws8f{word-spacing:4.641600px;}
.ws9e{word-spacing:4.646400px;}
.ws239{word-spacing:4.661400px;}
.ws151{word-spacing:4.723200px;}
.ws188{word-spacing:4.732800px;}
.wsa1{word-spacing:4.761600px;}
.ws1f5{word-spacing:4.780800px;}
.ws117{word-spacing:4.800679px;}
.ws60{word-spacing:4.804800px;}
.ws1c8{word-spacing:4.805593px;}
.ws4e{word-spacing:4.809600px;}
.ws7e{word-spacing:4.828800px;}
.ws1cf{word-spacing:4.839989px;}
.ws1fd{word-spacing:4.910400px;}
.ws6a{word-spacing:4.953600px;}
.wsf1{word-spacing:5.041450px;}
.ws214{word-spacing:5.115300px;}
.ws1f4{word-spacing:5.121600px;}
.wsfa{word-spacing:5.198400px;}
.ws2c{word-spacing:5.212800px;}
.ws76{word-spacing:5.232000px;}
.ws95{word-spacing:5.251200px;}
.ws4c{word-spacing:5.289600px;}
.ws3c{word-spacing:5.448000px;}
.ws3d{word-spacing:5.452800px;}
.ws97{word-spacing:5.467200px;}
.ws9{word-spacing:5.500800px;}
.ws13d{word-spacing:5.524800px;}
.ws4d{word-spacing:5.544000px;}
.ws22{word-spacing:5.557388px;}
.wse2{word-spacing:5.586870px;}
.ws19b{word-spacing:5.606400px;}
.ws198{word-spacing:5.621266px;}
.ws38{word-spacing:5.625600px;}
.ws1f{word-spacing:5.655662px;}
.ws234{word-spacing:5.666100px;}
.ws8e{word-spacing:5.712000px;}
.wsc8{word-spacing:5.744109px;}
.ws141{word-spacing:5.798159px;}
.ws217{word-spacing:5.814000px;}
.ws14f{word-spacing:5.836800px;}
.ws140{word-spacing:5.889600px;}
.ws8{word-spacing:5.894400px;}
.ws196{word-spacing:5.908800px;}
.ws142{word-spacing:5.921002px;}
.ws1fe{word-spacing:5.952000px;}
.wse9{word-spacing:5.976000px;}
.ws19c{word-spacing:6.000000px;}
.ws19a{word-spacing:6.004800px;}
.ws225{word-spacing:6.084300px;}
.wsee{word-spacing:6.102808px;}
.wsaa{word-spacing:6.110400px;}
.ws112{word-spacing:6.156859px;}
.wsa5{word-spacing:6.192000px;}
.wsd4{word-spacing:6.240000px;}
.ws1cb{word-spacing:6.264000px;}
.ws11a{word-spacing:6.289529px;}
.ws179{word-spacing:6.312000px;}
.ws197{word-spacing:6.350400px;}
.ws19d{word-spacing:6.384000px;}
.ws82{word-spacing:6.422400px;}
.ws177{word-spacing:6.460800px;}
.ws28{word-spacing:6.461508px;}
.ws119{word-spacing:6.481163px;}
.ws23c{word-spacing:6.487200px;}
.ws18d{word-spacing:6.554868px;}
.ws243{word-spacing:6.701400px;}
.wsb3{word-spacing:6.715200px;}
.ws1b5{word-spacing:6.720000px;}
.ws44{word-spacing:6.744000px;}
.ws168{word-spacing:6.780898px;}
.ws166{word-spacing:6.854603px;}
.wsb8{word-spacing:6.878400px;}
.wsf5{word-spacing:7.016755px;}
.ws96{word-spacing:7.108800px;}
.ws13f{word-spacing:7.123200px;}
.ws21e{word-spacing:7.211400px;}
.ws126{word-spacing:7.228800px;}
.wsec{word-spacing:7.334400px;}
.ws1f0{word-spacing:7.353600px;}
.wsa9{word-spacing:7.392000px;}
.ws1bf{word-spacing:7.396800px;}
.ws18e{word-spacing:7.401600px;}
.ws187{word-spacing:7.507200px;}
.ws19{word-spacing:7.516800px;}
.ws158{word-spacing:7.562175px;}
.ws7c{word-spacing:7.651200px;}
.ws2e{word-spacing:7.660800px;}
.ws15a{word-spacing:7.685018px;}
.ws125{word-spacing:7.732800px;}
.ws1ae{word-spacing:7.743982px;}
.ws229{word-spacing:7.772400px;}
.ws209{word-spacing:7.848000px;}
.ws75{word-spacing:7.886400px;}
.ws14c{word-spacing:7.896000px;}
.wsb0{word-spacing:7.900800px;}
.ws1be{word-spacing:7.915200px;}
.ws153{word-spacing:7.924800px;}
.ws147{word-spacing:7.929600px;}
.ws21f{word-spacing:8.012100px;}
.ws228{word-spacing:8.139600px;}
.ws1c7{word-spacing:8.181301px;}
.ws5b{word-spacing:8.184000px;}
.ws2d{word-spacing:8.198400px;}
.ws240{word-spacing:8.221200px;}
.ws84{word-spacing:8.222400px;}
.wsea{word-spacing:8.275200px;}
.ws1d8{word-spacing:8.284800px;}
.ws241{word-spacing:8.358900px;}
.ws108{word-spacing:8.404800px;}
.ws8d{word-spacing:8.448000px;}
.ws227{word-spacing:8.481300px;}
.ws1b2{word-spacing:8.530173px;}
.ws23b{word-spacing:8.634300px;}
.ws1c2{word-spacing:8.640000px;}
.wsfb{word-spacing:8.662843px;}
.ws215{word-spacing:8.664900px;}
.ws1b8{word-spacing:8.702400px;}
.ws85{word-spacing:8.712000px;}
.ws1ad{word-spacing:8.755200px;}
.ws1d9{word-spacing:8.860800px;}
.ws1d7{word-spacing:8.865600px;}
.ws1c1{word-spacing:8.894400px;}
.wsc0{word-spacing:8.904000px;}
.wsc9{word-spacing:8.918355px;}
.ws1bd{word-spacing:8.980800px;}
.ws10a{word-spacing:9.235200px;}
.wsd8{word-spacing:9.244800px;}
.wsf6{word-spacing:9.286882px;}
.ws83{word-spacing:9.369600px;}
.ws80{word-spacing:9.384000px;}
.ws3a{word-spacing:9.518400px;}
.ws36{word-spacing:9.523200px;}
.ws122{word-spacing:9.552000px;}
.ws45{word-spacing:9.576000px;}
.ws1b1{word-spacing:9.643200px;}
.ws9c{word-spacing:9.777600px;}
.ws1c0{word-spacing:9.782400px;}
.ws1de{word-spacing:10.176000px;}
.ws72{word-spacing:10.276800px;}
.ws81{word-spacing:10.512000px;}
.ws1e5{word-spacing:10.521600px;}
.ws123{word-spacing:10.564800px;}
.ws1d3{word-spacing:10.670400px;}
.ws111{word-spacing:10.800000px;}
.ws1ee{word-spacing:10.848000px;}
.ws6c{word-spacing:10.862400px;}
.ws6b{word-spacing:10.867200px;}
.ws242{word-spacing:10.868100px;}
.wsd2{word-spacing:11.112000px;}
.ws21d{word-spacing:11.158800px;}
.ws18b{word-spacing:11.212800px;}
.wse7{word-spacing:11.217600px;}
.ws6f{word-spacing:11.222400px;}
.ws1d4{word-spacing:11.414400px;}
.ws145{word-spacing:11.512786px;}
.ws149{word-spacing:11.640000px;}
.ws103{word-spacing:11.740800px;}
.ws1fa{word-spacing:11.880000px;}
.wsa6{word-spacing:11.904000px;}
.ws178{word-spacing:12.105600px;}
.ws134{word-spacing:12.163200px;}
.ws21a{word-spacing:12.224700px;}
.ws1a{word-spacing:12.544661px;}
.ws210{word-spacing:12.857100px;}
.ws3e{word-spacing:12.936000px;}
.wsf9{word-spacing:12.940800px;}
.ws1dd{word-spacing:12.950400px;}
.ws8a{word-spacing:12.969600px;}
.ws21b{word-spacing:13.091700px;}
.ws171{word-spacing:13.200000px;}
.ws1cc{word-spacing:13.574400px;}
.ws132{word-spacing:13.615847px;}
.ws12e{word-spacing:14.043338px;}
.ws20c{word-spacing:14.184000px;}
.ws37{word-spacing:14.558400px;}
.ws22b{word-spacing:15.172500px;}
.ws230{word-spacing:15.315300px;}
.ws64{word-spacing:15.384000px;}
.ws12d{word-spacing:15.883200px;}
.ws65{word-spacing:16.214400px;}
.ws62{word-spacing:17.673600px;}
.ws219{word-spacing:18.186600px;}
.ws22f{word-spacing:18.895500px;}
.wsd7{word-spacing:19.156800px;}
.ws1e3{word-spacing:19.617600px;}
.ws74{word-spacing:19.656000px;}
.ws1f1{word-spacing:19.670400px;}
.ws104{word-spacing:19.761600px;}
.ws136{word-spacing:19.766400px;}
.ws14b{word-spacing:19.828800px;}
.ws2b{word-spacing:19.910400px;}
.ws1b9{word-spacing:19.924800px;}
.wse6{word-spacing:22.214812px;}
.ws22e{word-spacing:37.581900px;}
._0{margin-left:-7.094400px;}
._7{margin-left:-5.894400px;}
._3{margin-left:-4.401600px;}
._1{margin-left:-3.294000px;}
._2{margin-left:-1.541400px;}
._6{width:1.662000px;}
._4{width:13.739400px;}
._8{width:56.242800px;}
._5{width:568.294200px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:49.136942px;}
.fs9{font-size:51.000000px;}
.fs7{font-size:55.279012px;}
.fs5{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.090000px;}
.y2{bottom:61.563750px;}
.y4f{bottom:62.824500px;}
.yaa{bottom:63.063750px;}
.ydc{bottom:65.977500px;}
.y50{bottom:66.540000px;}
.yab{bottom:66.925350px;}
.y17d{bottom:99.134550px;}
.y1bc{bottom:102.997950px;}
.ya3{bottom:103.268100px;}
.y46{bottom:107.574300px;}
.y37{bottom:107.591250px;}
.y155{bottom:107.756400px;}
.ybd{bottom:109.646100px;}
.y191{bottom:109.646250px;}
.y125{bottom:109.690350px;}
.y124{bottom:110.770950px;}
.y7d{bottom:112.103250px;}
.y17c{bottom:114.134550px;}
.y1bb{bottom:117.997950px;}
.ya2{bottom:118.268100px;}
.yda{bottom:118.268250px;}
.y44{bottom:122.574150px;}
.y45{bottom:122.574300px;}
.y36{bottom:122.591250px;}
.y154{bottom:122.756400px;}
.ybc{bottom:124.646100px;}
.y190{bottom:124.646250px;}
.y123{bottom:125.770950px;}
.y7c{bottom:127.103250px;}
.y17b{bottom:129.134550px;}
.y1ba{bottom:132.997950px;}
.ya1{bottom:133.268100px;}
.yd9{bottom:133.268250px;}
.y35{bottom:137.591250px;}
.y153{bottom:137.756400px;}
.y18f{bottom:139.646250px;}
.y122{bottom:140.770950px;}
.y43{bottom:143.952150px;}
.y17a{bottom:144.134550px;}
.ybb{bottom:146.024100px;}
.y1ee{bottom:146.378550px;}
.y1b9{bottom:147.997950px;}
.ya0{bottom:148.268100px;}
.yd8{bottom:148.268250px;}
.y7b{bottom:148.481250px;}
.y34{bottom:152.591250px;}
.y152{bottom:152.756400px;}
.y18e{bottom:154.646250px;}
.y11f{bottom:155.770650px;}
.y120{bottom:155.770950px;}
.y42{bottom:158.952150px;}
.y121{bottom:160.570650px;}
.yba{bottom:161.024100px;}
.y1ed{bottom:161.378550px;}
.y1b8{bottom:162.997950px;}
.y9f{bottom:163.268100px;}
.yd7{bottom:163.268250px;}
.y7a{bottom:163.481250px;}
.y179{bottom:165.512550px;}
.y33{bottom:167.591250px;}
.y151{bottom:167.756400px;}
.y18d{bottom:169.646250px;}
.y11e{bottom:170.770650px;}
.y41{bottom:173.952150px;}
.yb9{bottom:176.024100px;}
.y1ec{bottom:176.378550px;}
.y1b7{bottom:177.997950px;}
.y9e{bottom:178.268100px;}
.yd6{bottom:178.268250px;}
.y79{bottom:178.481250px;}
.y178{bottom:180.512550px;}
.y32{bottom:182.591250px;}
.y150{bottom:182.756400px;}
.y11d{bottom:185.770650px;}
.y40{bottom:188.952150px;}
.yb8{bottom:191.024100px;}
.y18c{bottom:191.024250px;}
.y1b6{bottom:192.997950px;}
.y9d{bottom:193.268100px;}
.yd5{bottom:193.268250px;}
.y78{bottom:193.481250px;}
.y176{bottom:195.512400px;}
.y177{bottom:195.512550px;}
.y1eb{bottom:197.756550px;}
.y11c{bottom:200.770650px;}
.y3f{bottom:203.952150px;}
.y31{bottom:203.969100px;}
.y2f{bottom:203.969550px;}
.y14f{bottom:204.134700px;}
.yb7{bottom:206.024100px;}
.y18b{bottom:206.024250px;}
.y1b5{bottom:207.997950px;}
.y9c{bottom:208.268100px;}
.yd4{bottom:208.268250px;}
.y77{bottom:208.481250px;}
.y30{bottom:208.769100px;}
.y175{bottom:210.512400px;}
.y174{bottom:210.512550px;}
.y1ea{bottom:212.756550px;}
.y3e{bottom:218.952150px;}
.y2e{bottom:218.969550px;}
.y14e{bottom:219.134700px;}
.yb6{bottom:221.024100px;}
.y18a{bottom:221.024250px;}
.y11b{bottom:222.148650px;}
.y9b{bottom:223.268100px;}
.yd3{bottom:223.268250px;}
.y76{bottom:223.481250px;}
.y173{bottom:225.512550px;}
.y1e9{bottom:227.756550px;}
.y1b4{bottom:229.375950px;}
.y3d{bottom:233.952150px;}
.y2d{bottom:233.969550px;}
.y14d{bottom:234.134700px;}
.yb5{bottom:236.024100px;}
.y189{bottom:236.024250px;}
.y11a{bottom:237.148650px;}
.y9a{bottom:238.268100px;}
.yd2{bottom:238.268250px;}
.y75{bottom:238.481250px;}
.y172{bottom:240.512550px;}
.y1e8{bottom:242.756550px;}
.y1b3{bottom:244.375950px;}
.y3c{bottom:248.952150px;}
.y2c{bottom:248.969550px;}
.y14c{bottom:249.134700px;}
.yb4{bottom:251.024100px;}
.y188{bottom:251.024250px;}
.y119{bottom:252.148650px;}
.yd1{bottom:253.268250px;}
.y1ce{bottom:253.268400px;}
.y74{bottom:253.481250px;}
.y171{bottom:255.512550px;}
.y1e7{bottom:257.756550px;}
.y1b2{bottom:259.375950px;}
.y99{bottom:259.646100px;}
.y3b{bottom:263.952150px;}
.y2b{bottom:263.969550px;}
.y14b{bottom:264.134700px;}
.yb3{bottom:266.024100px;}
.y187{bottom:266.024250px;}
.y118{bottom:267.148650px;}
.y1cc{bottom:268.268250px;}
.y1cd{bottom:268.268400px;}
.y73{bottom:268.481250px;}
.y170{bottom:270.512550px;}
.y1e6{bottom:272.756550px;}
.y1b1{bottom:274.375950px;}
.y98{bottom:274.646100px;}
.y3a{bottom:278.952150px;}
.y39{bottom:278.952450px;}
.y14a{bottom:279.134700px;}
.yb2{bottom:281.024100px;}
.y186{bottom:281.024250px;}
.y117{bottom:282.148650px;}
.y2a{bottom:283.221150px;}
.y16d{bottom:285.512400px;}
.y16e{bottom:285.512550px;}
.y1b0{bottom:289.375950px;}
.y97{bottom:289.646100px;}
.y72{bottom:289.859250px;}
.y16f{bottom:290.312550px;}
.y38{bottom:293.952450px;}
.y1e5{bottom:294.134550px;}
.y149{bottom:294.134700px;}
.yb1{bottom:296.024100px;}
.y185{bottom:296.024250px;}
.y116{bottom:297.148650px;}
.y29{bottom:298.221150px;}
.y16c{bottom:300.512400px;}
.y16b{bottom:300.512550px;}
.y1af{bottom:304.375950px;}
.yd0{bottom:304.646100px;}
.y71{bottom:304.859250px;}
.y1e4{bottom:309.134550px;}
.y96{bottom:311.024100px;}
.y184{bottom:311.024250px;}
.y115{bottom:312.148650px;}
.y28{bottom:313.221150px;}
.y147{bottom:315.512400px;}
.y16a{bottom:315.512550px;}
.y1ef{bottom:317.463150px;}
.y1ae{bottom:319.375950px;}
.ycf{bottom:319.646100px;}
.y70{bottom:319.859250px;}
.y148{bottom:320.312400px;}
.y1e3{bottom:324.134550px;}
.y95{bottom:326.024100px;}
.y183{bottom:326.024250px;}
.y114{bottom:327.148650px;}
.y27{bottom:328.221150px;}
.y146{bottom:330.512400px;}
.yce{bottom:334.646100px;}
.y6f{bottom:334.859250px;}
.y169{bottom:336.890550px;}
.y1e2{bottom:339.134550px;}
.y94{bottom:341.024100px;}
.y182{bottom:341.024250px;}
.y1ad{bottom:342.879900px;}
.y26{bottom:343.221150px;}
.yfa{bottom:345.512400px;}
.y113{bottom:348.526650px;}
.ycd{bottom:349.646100px;}
.y6e{bottom:349.859250px;}
.y168{bottom:351.890550px;}
.y1e1{bottom:354.134550px;}
.y93{bottom:356.024100px;}
.y181{bottom:356.024250px;}
.y1ac{bottom:357.880050px;}
.y25{bottom:358.221150px;}
.yf9{bottom:360.512400px;}
.ycc{bottom:364.646100px;}
.y167{bottom:366.890550px;}
.y1e0{bottom:369.134550px;}
.y112{bottom:369.904650px;}
.y92{bottom:371.024100px;}
.y180{bottom:371.024250px;}
.y6d{bottom:371.237250px;}
.y24{bottom:373.221150px;}
.yf8{bottom:375.512400px;}
.y166{bottom:381.890550px;}
.y111{bottom:384.904650px;}
.y91{bottom:386.024100px;}
.y17f{bottom:386.024250px;}
.y6a{bottom:386.237100px;}
.y6c{bottom:386.237250px;}
.y23{bottom:388.221150px;}
.y1a9{bottom:389.887800px;}
.y1aa{bottom:389.887950px;}
.y1df{bottom:390.512250px;}
.yf7{bottom:390.512400px;}
.y6b{bottom:391.037100px;}
.y1ab{bottom:394.687800px;}
.y21d{bottom:395.441550px;}
.y165{bottom:396.890550px;}
.y110{bottom:399.904650px;}
.y90{bottom:401.024100px;}
.y17e{bottom:401.024250px;}
.y69{bottom:401.237100px;}
.y22{bottom:403.221150px;}
.y1a8{bottom:404.887800px;}
.y1de{bottom:405.512250px;}
.yf6{bottom:405.512400px;}
.y21c{bottom:408.941250px;}
.y145{bottom:411.890400px;}
.y10f{bottom:414.904650px;}
.y8f{bottom:416.024100px;}
.y68{bottom:416.237100px;}
.y21{bottom:418.221150px;}
.y163{bottom:418.268250px;}
.y1a7{bottom:419.887800px;}
.y1a6{bottom:419.887950px;}
.y1dd{bottom:420.512250px;}
.y21b{bottom:422.440950px;}
.y164{bottom:423.068400px;}
.yf5{bottom:426.890250px;}
.y144{bottom:426.890400px;}
.y10e{bottom:429.904650px;}
.yb0{bottom:431.024100px;}
.y20{bottom:433.221150px;}
.y162{bottom:433.268250px;}
.y1a5{bottom:434.887950px;}
.y1dc{bottom:435.512250px;}
.y67{bottom:437.615100px;}
.y21a{bottom:438.067350px;}
.yf4{bottom:441.890250px;}
.y143{bottom:441.890400px;}
.yaf{bottom:446.024100px;}
.y1f{bottom:448.221150px;}
.y161{bottom:448.268250px;}
.y1a3{bottom:449.887800px;}
.y1a4{bottom:449.887950px;}
.y10d{bottom:451.282500px;}
.y219{bottom:451.567050px;}
.y66{bottom:452.615100px;}
.y242{bottom:454.306425px;}
.yf3{bottom:456.890250px;}
.y142{bottom:456.890400px;}
.yae{bottom:461.024100px;}
.y160{bottom:463.268250px;}
.y1a2{bottom:464.887800px;}
.y10c{bottom:466.282500px;}
.y218{bottom:467.193450px;}
.y65{bottom:467.615100px;}
.y1e{bottom:469.599150px;}
.yf2{bottom:471.890250px;}
.y241{bottom:473.558925px;}
.y15f{bottom:478.268250px;}
.y1a1{bottom:479.887800px;}
.y217{bottom:480.693150px;}
.y10b{bottom:481.282500px;}
.y64{bottom:482.615100px;}
.y1d{bottom:484.599150px;}
.yf1{bottom:486.890250px;}
.y240{bottom:488.559300px;}
.y141{bottom:493.268250px;}
.y1a0{bottom:494.887800px;}
.y10a{bottom:496.282500px;}
.y216{bottom:496.319550px;}
.yf0{bottom:501.890250px;}
.y63{bottom:503.993100px;}
.y1c{bottom:505.977150px;}
.ydb{bottom:506.072700px;}
.y23f{bottom:507.811800px;}
.y140{bottom:508.268250px;}
.y215{bottom:509.819250px;}
.y109{bottom:511.282500px;}
.y19f{bottom:516.265800px;}
.yef{bottom:516.890250px;}
.y1b{bottom:520.977150px;}
.y13f{bottom:523.268250px;}
.y214{bottom:525.445650px;}
.y108{bottom:526.282500px;}
.y23e{bottom:527.064300px;}
.y19e{bottom:531.265800px;}
.yee{bottom:531.890250px;}
.y1a{bottom:535.977150px;}
.y62{bottom:536.001000px;}
.y13e{bottom:538.268250px;}
.y213{bottom:538.945350px;}
.y107{bottom:541.282500px;}
.y19d{bottom:546.265800px;}
.y23d{bottom:546.316800px;}
.yed{bottom:546.890250px;}
.y19{bottom:550.977150px;}
.y61{bottom:551.001000px;}
.y13d{bottom:553.268250px;}
.y212{bottom:554.571750px;}
.y19c{bottom:561.265800px;}
.y106{bottom:562.660500px;}
.y23c{bottom:565.569300px;}
.y18{bottom:565.977150px;}
.y60{bottom:566.001000px;}
.y211{bottom:568.071450px;}
.yec{bottom:568.268250px;}
.y105{bottom:577.660500px;}
.y23b{bottom:580.569675px;}
.y17{bottom:580.977150px;}
.y5f{bottom:581.001000px;}
.y210{bottom:581.571150px;}
.y19b{bottom:582.643650px;}
.yeb{bottom:583.268250px;}
.y15e{bottom:589.646250px;}
.y104{bottom:592.660500px;}
.y4c{bottom:593.539050px;}
.y16{bottom:595.977150px;}
.y5e{bottom:596.001000px;}
.y20f{bottom:597.197550px;}
.yea{bottom:598.268250px;}
.y23a{bottom:599.822175px;}
.y19a{bottom:604.021650px;}
.y15d{bottom:604.646250px;}
.y4b{bottom:607.039050px;}
.y103{bottom:607.660500px;}
.y20e{bottom:610.697250px;}
.y15{bottom:610.977150px;}
.y5c{bottom:611.000850px;}
.y5d{bottom:611.001000px;}
.ye9{bottom:613.268250px;}
.y239{bottom:614.822550px;}
.y199{bottom:619.021650px;}
.y15c{bottom:619.646250px;}
.y4a{bottom:620.876550px;}
.y14{bottom:625.977150px;}
.y5b{bottom:626.000850px;}
.y20d{bottom:626.323650px;}
.ye8{bottom:628.268250px;}
.y102{bottom:629.038500px;}
.y198{bottom:634.021650px;}
.y238{bottom:634.075050px;}
.y15b{bottom:634.646250px;}
.y20c{bottom:639.823350px;}
.y1c4{bottom:639.978750px;}
.y13{bottom:640.977150px;}
.y5a{bottom:641.000850px;}
.ye7{bottom:643.268250px;}
.y101{bottom:644.038500px;}
.y197{bottom:649.021650px;}
.y237{bottom:649.075425px;}
.y15a{bottom:649.646250px;}
.y1c3{bottom:653.478750px;}
.y20b{bottom:655.449750px;}
.y12{bottom:655.977150px;}
.y59{bottom:656.000850px;}
.ye6{bottom:658.268250px;}
.y100{bottom:659.038500px;}
.y196{bottom:664.021650px;}
.y236{bottom:664.075800px;}
.y159{bottom:664.646250px;}
.y1c2{bottom:666.978750px;}
.y20a{bottom:668.949450px;}
.y11{bottom:670.977150px;}
.ya7{bottom:672.957750px;}
.ye5{bottom:673.268250px;}
.yff{bottom:674.038500px;}
.y58{bottom:677.378850px;}
.y195{bottom:679.021650px;}
.y235{bottom:679.076175px;}
.y158{bottom:679.646250px;}
.y1c1{bottom:680.478750px;}
.y209{bottom:682.449150px;}
.ya6{bottom:686.457750px;}
.ye4{bottom:688.268250px;}
.yfe{bottom:689.038500px;}
.y10{bottom:692.355000px;}
.y57{bottom:692.378850px;}
.y194{bottom:694.021650px;}
.y234{bottom:694.076550px;}
.y1c0{bottom:694.316250px;}
.y157{bottom:694.646250px;}
.y208{bottom:698.075550px;}
.ya5{bottom:700.295250px;}
.ye3{bottom:703.268250px;}
.yfd{bottom:704.038500px;}
.yfb{bottom:704.038800px;}
.y56{bottom:707.378850px;}
.yfc{bottom:708.838350px;}
.y193{bottom:709.021650px;}
.y233{bottom:709.076925px;}
.y156{bottom:709.646250px;}
.y207{bottom:711.575250px;}
.ye2{bottom:718.268250px;}
.y55{bottom:722.378850px;}
.y192{bottom:724.021650px;}
.y232{bottom:724.077300px;}
.y13c{bottom:724.646250px;}
.y206{bottom:727.201650px;}
.ye1{bottom:733.268250px;}
.y54{bottom:737.378850px;}
.y231{bottom:739.077675px;}
.y13b{bottom:739.646250px;}
.y205{bottom:740.701350px;}
.ye0{bottom:748.268250px;}
.y53{bottom:752.378850px;}
.y230{bottom:754.078050px;}
.y13a{bottom:754.646250px;}
.y204{bottom:756.327750px;}
.y52{bottom:767.378850px;}
.y22f{bottom:769.078425px;}
.ydf{bottom:769.646100px;}
.y139{bottom:769.646250px;}
.y203{bottom:769.827450px;}
.ycb{bottom:776.024100px;}
.yd{bottom:782.102850px;}
.y51{bottom:782.378850px;}
.y22e{bottom:784.078800px;}
.yde{bottom:784.646100px;}
.y138{bottom:784.646250px;}
.y202{bottom:785.453850px;}
.yca{bottom:791.024100px;}
.y1db{bottom:791.024250px;}
.yc{bottom:794.702850px;}
.y201{bottom:798.953550px;}
.y22d{bottom:799.079175px;}
.yc9{bottom:806.024100px;}
.y137{bottom:806.024250px;}
.yb{bottom:807.302850px;}
.y200{bottom:812.453250px;}
.y22c{bottom:814.079550px;}
.y1cb{bottom:814.646250px;}
.ya4{bottom:817.487250px;}
.ya{bottom:819.902850px;}
.yc8{bottom:821.024100px;}
.y136{bottom:821.024250px;}
.y8e{bottom:827.402100px;}
.y1ff{bottom:828.079650px;}
.y22b{bottom:829.079925px;}
.y1ca{bottom:829.646250px;}
.y9{bottom:832.502850px;}
.yc7{bottom:836.024100px;}
.y135{bottom:836.024250px;}
.y1fe{bottom:841.579350px;}
.y8d{bottom:842.402100px;}
.y22a{bottom:844.080300px;}
.y1c9{bottom:844.646250px;}
.y8{bottom:845.102850px;}
.y128{bottom:848.864250px;}
.y1bf{bottom:850.252650px;}
.yc6{bottom:851.024100px;}
.y134{bottom:851.024250px;}
.y1fd{bottom:857.205750px;}
.y8c{bottom:857.402100px;}
.y229{bottom:859.080675px;}
.y1c8{bottom:859.646250px;}
.y127{bottom:862.364250px;}
.y1be{bottom:863.752650px;}
.yc5{bottom:866.024100px;}
.y133{bottom:866.024250px;}
.y8b{bottom:872.402100px;}
.y1fc{bottom:872.832150px;}
.y228{bottom:874.081050px;}
.y1c7{bottom:874.646250px;}
.y126{bottom:876.201900px;}
.y1bd{bottom:877.590150px;}
.yc4{bottom:881.024100px;}
.y132{bottom:881.024250px;}
.y1fb{bottom:886.331850px;}
.y8a{bottom:887.402100px;}
.y1da{bottom:887.402250px;}
.y1c6{bottom:889.646250px;}
.y227{bottom:893.332275px;}
.yc3{bottom:896.024100px;}
.y131{bottom:896.024250px;}
.y1fa{bottom:901.958250px;}
.y89{bottom:902.402100px;}
.y1d9{bottom:902.402250px;}
.y1c5{bottom:904.646250px;}
.y226{bottom:908.332650px;}
.yc2{bottom:911.024100px;}
.y130{bottom:911.024250px;}
.y1f9{bottom:915.457950px;}
.y88{bottom:917.402100px;}
.y1d8{bottom:917.402250px;}
.y225{bottom:923.333025px;}
.yc1{bottom:926.024100px;}
.y12f{bottom:926.024250px;}
.y1f8{bottom:931.084350px;}
.y87{bottom:932.402100px;}
.y1d7{bottom:932.402250px;}
.y224{bottom:938.333400px;}
.yc0{bottom:941.024100px;}
.y12e{bottom:941.024250px;}
.y7{bottom:942.924150px;}
.y1f7{bottom:944.584050px;}
.y86{bottom:947.402100px;}
.y1d6{bottom:947.402250px;}
.y223{bottom:953.333775px;}
.ybf{bottom:956.024100px;}
.y12d{bottom:956.024250px;}
.y1f6{bottom:960.210450px;}
.y85{bottom:962.402100px;}
.y1d5{bottom:962.402250px;}
.y222{bottom:968.334150px;}
.ybe{bottom:971.024100px;}
.y12c{bottom:971.024250px;}
.y5{bottom:971.637750px;}
.y1f5{bottom:973.710150px;}
.y6{bottom:976.437450px;}
.y84{bottom:977.402100px;}
.y1d4{bottom:977.402250px;}
.y221{bottom:983.334525px;}
.ydd{bottom:986.024100px;}
.y12b{bottom:986.024250px;}
.y1f4{bottom:987.209850px;}
.y83{bottom:992.402100px;}
.y1d3{bottom:992.402250px;}
.y220{bottom:998.334900px;}
.y12a{bottom:1001.024250px;}
.y1f3{bottom:1002.836250px;}
.y4{bottom:1007.143950px;}
.y82{bottom:1007.402100px;}
.y1d2{bottom:1007.402250px;}
.y21f{bottom:1013.335275px;}
.y129{bottom:1016.024250px;}
.y1f2{bottom:1016.335950px;}
.y80{bottom:1022.401650px;}
.y81{bottom:1022.402100px;}
.y1d1{bottom:1022.402250px;}
.y21e{bottom:1028.335650px;}
.y1f1{bottom:1029.835650px;}
.y3{bottom:1034.143950px;}
.y7f{bottom:1037.401650px;}
.yad{bottom:1037.402100px;}
.y1d0{bottom:1037.402250px;}
.y1f0{bottom:1051.839600px;}
.y7e{bottom:1052.401650px;}
.yac{bottom:1052.402100px;}
.y1cf{bottom:1052.402250px;}
.y49{bottom:1074.371100px;}
.yf{bottom:1084.676100px;}
.y4e{bottom:1096.676550px;}
.ya9{bottom:1096.995150px;}
.y48{bottom:1098.672000px;}
.ye{bottom:1103.426100px;}
.y4d{bottom:1112.876550px;}
.ya8{bottom:1113.195150px;}
.y47{bottom:1114.872000px;}
.h6{height:31.896000px;}
.h9{height:32.004000px;}
.hc{height:36.576000px;}
.h8{height:37.128000px;}
.h12{height:39.870000px;}
.h13{height:40.140000px;}
.hd{height:42.000000px;}
.h15{height:42.096000px;}
.he{height:42.528000px;}
.h11{height:42.768000px;}
.h3{height:43.093098px;}
.ha{height:43.437057px;}
.hf{height:43.615140px;}
.h10{height:44.976000px;}
.h16{height:45.441000px;}
.h17{height:50.028809px;}
.hb{height:50.901000px;}
.h14{height:53.333400px;}
.h5{height:56.220000px;}
.h7{height:56.460000px;}
.h4{height:90.144000px;}
.h1{height:1190.250000px;}
.h2{height:1190.461500px;}
.h0{height:1190.551500px;}
.w2{width:892.822503px;}
.w3{width:892.824003px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:36.148803px;}
.x37{left:63.758253px;}
.x2a{left:65.189403px;}
.x42{left:66.235953px;}
.x5d{left:71.861703px;}
.x2b{left:77.945403px;}
.x2d{left:81.674553px;}
.x7c{left:86.455736px;}
.x31{left:92.507103px;}
.x3b{left:94.954503px;}
.x32{left:97.659153px;}
.x30{left:99.205053px;}
.xd{left:107.710803px;}
.x38{left:110.450853px;}
.x45{left:114.381753px;}
.xf{left:120.464403px;}
.x4b{left:123.206253px;}
.x3a{left:128.847753px;}
.x18{left:137.474703px;}
.x46{left:139.679703px;}
.xe{left:141.724203px;}
.x59{left:153.513003px;}
.x6e{left:157.352403px;}
.x48{left:162.198303px;}
.x6{left:163.787553px;}
.x2c{left:168.651003px;}
.x60{left:180.160953px;}
.x2e{left:182.740803px;}
.x2{left:187.856253px;}
.x73{left:190.976703px;}
.x2f{left:194.463003px;}
.x61{left:197.352903px;}
.x12{left:205.503903px;}
.x5b{left:210.432153px;}
.x5f{left:213.063753px;}
.x16{left:215.037753px;}
.x72{left:228.850803px;}
.x15{left:260.119203px;}
.x6f{left:270.694353px;}
.x3{left:276.860253px;}
.x62{left:289.131003px;}
.x5e{left:298.336353px;}
.x75{left:299.860353px;}
.x11{left:305.943453px;}
.x74{left:318.541503px;}
.x7b{left:320.891103px;}
.x44{left:323.361153px;}
.x13{left:326.541903px;}
.x17{left:331.485603px;}
.x71{left:342.005853px;}
.x6d{left:349.849653px;}
.x14{left:353.994453px;}
.x1c{left:367.982703px;}
.x1b{left:369.318903px;}
.x5a{left:385.055553px;}
.x70{left:397.399203px;}
.x23{left:398.655603px;}
.x5c{left:402.972153px;}
.x10{left:408.743403px;}
.x19{left:424.066503px;}
.x4{left:425.730903px;}
.x4c{left:427.372953px;}
.x1a{left:429.219903px;}
.x4d{left:432.526353px;}
.x33{left:437.236353px;}
.x27{left:438.254853px;}
.x7d{left:440.104803px;}
.x49{left:445.491003px;}
.x47{left:448.824903px;}
.x36{left:449.993103px;}
.x4a{left:452.161953px;}
.x7e{left:461.364535px;}
.x3c{left:467.781453px;}
.x69{left:471.252453px;}
.x3d{left:475.634103px;}
.x1d{left:479.755503px;}
.x26{left:482.878203px;}
.x20{left:492.511503px;}
.x6c{left:493.918803px;}
.x53{left:495.159603px;}
.x5{left:505.844103px;}
.x39{left:509.522403px;}
.x63{left:511.212003px;}
.x34{left:512.704353px;}
.x3e{left:527.264553px;}
.x24{left:531.665716px;}
.x56{left:534.403953px;}
.x57{left:545.151003px;}
.x41{left:550.229703px;}
.x6a{left:551.868003px;}
.x35{left:562.694703px;}
.x25{left:570.904203px;}
.x55{left:572.397003px;}
.x58{left:575.654403px;}
.x77{left:611.633553px;}
.x6b{left:614.396703px;}
.x4e{left:616.122003px;}
.x51{left:646.772703px;}
.x52{left:651.922953px;}
.x76{left:655.495503px;}
.x9{left:656.546853px;}
.x64{left:659.561553px;}
.x7a{left:663.913503px;}
.x43{left:666.489153px;}
.x65{left:680.359203px;}
.x78{left:684.447003px;}
.x8{left:700.101903px;}
.xc{left:705.159753px;}
.x66{left:706.616253px;}
.xb{left:709.605453px;}
.x67{left:710.637603px;}
.x29{left:713.848803px;}
.x68{left:715.788903px;}
.xa{left:722.188653px;}
.x3f{left:740.371353px;}
.x7{left:741.446703px;}
.x1e{left:744.864003px;}
.x40{left:748.864353px;}
.x54{left:767.463753px;}
.x21{left:769.441503px;}
.x50{left:777.872553px;}
.x1f{left:784.455903px;}
.x22{left:808.174503px;}
.x4f{left:810.159303px;}
.x79{left:813.542103px;}
.x1{left:841.790403px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.391467pt;}
.ls1b{letter-spacing:-0.759467pt;}
.ls1a{letter-spacing:-0.034942pt;}
.ls17{letter-spacing:-0.017067pt;}
.lse{letter-spacing:-0.012800pt;}
.lsc{letter-spacing:-0.009827pt;}
.ls23{letter-spacing:-0.009067pt;}
.ls15{letter-spacing:-0.008735pt;}
.ls3{letter-spacing:-0.008533pt;}
.ls11{letter-spacing:-0.008000pt;}
.ls5{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:-0.005333pt;}
.ls8{letter-spacing:-0.005067pt;}
.lsb{letter-spacing:-0.004914pt;}
.ls22{letter-spacing:-0.004533pt;}
.ls7{letter-spacing:-0.004368pt;}
.ls9{letter-spacing:-0.004267pt;}
.lsd{letter-spacing:-0.004000pt;}
.ls6{letter-spacing:-0.003733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004267pt;}
.ls12{letter-spacing:0.008533pt;}
.ls1f{letter-spacing:0.009067pt;}
.lsf{letter-spacing:0.012800pt;}
.ls21{letter-spacing:0.027200pt;}
.lsa{letter-spacing:0.076800pt;}
.ls19{letter-spacing:0.149333pt;}
.ls18{letter-spacing:0.204800pt;}
.ls13{letter-spacing:0.209067pt;}
.ls1d{letter-spacing:0.290133pt;}
.ls10{letter-spacing:0.302933pt;}
.ls1c{letter-spacing:0.337067pt;}
.ls14{letter-spacing:0.746667pt;}
.ls16{letter-spacing:0.834236pt;}
.ls20{letter-spacing:0.902133pt;}
.ls1{letter-spacing:2.368000pt;}
.ls1e{letter-spacing:39.834400pt;}
.ws0{word-spacing:-11.861333pt;}
.ws42{word-spacing:-11.852800pt;}
.ws20f{word-spacing:-11.360533pt;}
.ws1{word-spacing:-11.089067pt;}
.ws17b{word-spacing:-11.084800pt;}
.ws1c3{word-spacing:-10.333867pt;}
.ws2a{word-spacing:-1.774933pt;}
.ws1c4{word-spacing:-1.706667pt;}
.ws23e{word-spacing:-1.672800pt;}
.wsac{word-spacing:-1.668267pt;}
.wsba{word-spacing:-1.655467pt;}
.wsa3{word-spacing:-1.578667pt;}
.ws150{word-spacing:-1.561600pt;}
.ws1d6{word-spacing:-1.553067pt;}
.ws127{word-spacing:-1.536000pt;}
.ws185{word-spacing:-1.527467pt;}
.ws5a{word-spacing:-1.523200pt;}
.ws1df{word-spacing:-1.514667pt;}
.ws48{word-spacing:-1.480533pt;}
.wsa8{word-spacing:-1.463467pt;}
.ws1d5{word-spacing:-1.459200pt;}
.ws157{word-spacing:-1.450086pt;}
.ws5d{word-spacing:-1.403733pt;}
.ws67{word-spacing:-1.399467pt;}
.ws109{word-spacing:-1.390933pt;}
.ws1c{word-spacing:-1.375834pt;}
.wsb1{word-spacing:-1.369600pt;}
.wse0{word-spacing:-1.358363pt;}
.wsae{word-spacing:-1.275733pt;}
.ws1e0{word-spacing:-1.254400pt;}
.wsc2{word-spacing:-1.164800pt;}
.ws236{word-spacing:-1.151467pt;}
.ws14d{word-spacing:-1.139200pt;}
.ws99{word-spacing:-1.134933pt;}
.ws165{word-spacing:-1.131242pt;}
.ws203{word-spacing:-1.126874pt;}
.ws235{word-spacing:-1.119733pt;}
.wse4{word-spacing:-1.113771pt;}
.ws11d{word-spacing:-1.061358pt;}
.ws181{word-spacing:-1.052622pt;}
.ws11c{word-spacing:-1.043887pt;}
.ws10f{word-spacing:-1.035152pt;}
.wsc5{word-spacing:-1.022048pt;}
.ws86{word-spacing:-1.011200pt;}
.ws66{word-spacing:-1.002667pt;}
.ws1dc{word-spacing:-0.989867pt;}
.ws164{word-spacing:-0.981333pt;}
.wsb4{word-spacing:-0.964267pt;}
.ws14a{word-spacing:-0.955733pt;}
.ws202{word-spacing:-0.951467pt;}
.wsf3{word-spacing:-0.939062pt;}
.wsb5{word-spacing:-0.913067pt;}
.wsa4{word-spacing:-0.887467pt;}
.ws213{word-spacing:-0.884000pt;}
.ws34{word-spacing:-0.878933pt;}
.ws33{word-spacing:-0.874667pt;}
.ws52{word-spacing:-0.827733pt;}
.wsbc{word-spacing:-0.814933pt;}
.ws137{word-spacing:-0.794927pt;}
.ws1ff{word-spacing:-0.789333pt;}
.ws69{word-spacing:-0.785067pt;}
.ws220{word-spacing:-0.752533pt;}
.ws53{word-spacing:-0.725043pt;}
.ws1ef{word-spacing:-0.708267pt;}
.ws160{word-spacing:-0.704000pt;}
.ws238{word-spacing:-0.698133pt;}
.ws182{word-spacing:-0.690101pt;}
.ws186{word-spacing:-0.669867pt;}
.ws19f{word-spacing:-0.655159pt;}
.ws130{word-spacing:-0.640000pt;}
.ws1e4{word-spacing:-0.631467pt;}
.ws30{word-spacing:-0.580267pt;}
.wsda{word-spacing:-0.576000pt;}
.ws21{word-spacing:-0.567805pt;}
.ws131{word-spacing:-0.563437pt;}
.ws91{word-spacing:-0.563200pt;}
.ws2f{word-spacing:-0.550400pt;}
.ws1e{word-spacing:-0.476082pt;}
.ws216{word-spacing:-0.444267pt;}
.ws94{word-spacing:-0.439467pt;}
.ws71{word-spacing:-0.435200pt;}
.ws23{word-spacing:-0.353786pt;}
.wsa7{word-spacing:-0.337067pt;}
.ws1ed{word-spacing:-0.315733pt;}
.ws211{word-spacing:-0.308267pt;}
.ws9b{word-spacing:-0.307200pt;}
.ws87{word-spacing:-0.302933pt;}
.ws88{word-spacing:-0.298667pt;}
.ws116{word-spacing:-0.292638pt;}
.ws6e{word-spacing:-0.290133pt;}
.ws43{word-spacing:-0.273067pt;}
.wsff{word-spacing:-0.270799pt;}
.ws1b3{word-spacing:-0.240225pt;}
.ws23a{word-spacing:-0.231200pt;}
.ws1a8{word-spacing:-0.135400pt;}
.wse5{word-spacing:-0.131032pt;}
.ws8b{word-spacing:-0.085333pt;}
.ws46{word-spacing:-0.081067pt;}
.wsbe{word-spacing:-0.072533pt;}
.ws57{word-spacing:-0.068267pt;}
.ws15b{word-spacing:-0.065516pt;}
.ws195{word-spacing:-0.064000pt;}
.ws16b{word-spacing:-0.030574pt;}
.ws16a{word-spacing:-0.029867pt;}
.ws1af{word-spacing:-0.017471pt;}
.ws1b0{word-spacing:-0.017067pt;}
.ws2{word-spacing:0.000000pt;}
.ws11e{word-spacing:0.004368pt;}
.ws22c{word-spacing:0.004533pt;}
.ws10d{word-spacing:0.017067pt;}
.ws10e{word-spacing:0.021839pt;}
.ws11{word-spacing:0.025600pt;}
.ws12{word-spacing:0.034133pt;}
.ws26{word-spacing:0.061148pt;}
.ws1ca{word-spacing:0.074251pt;}
.ws161{word-spacing:0.082987pt;}
.wsed{word-spacing:0.102400pt;}
.wsb6{word-spacing:0.136533pt;}
.ws61{word-spacing:0.140800pt;}
.ws1b7{word-spacing:0.145067pt;}
.ws163{word-spacing:0.149333pt;}
.wsa{word-spacing:0.153600pt;}
.ws21c{word-spacing:0.181333pt;}
.ws5c{word-spacing:0.192000pt;}
.ws13b{word-spacing:0.275167pt;}
.ws9f{word-spacing:0.281600pt;}
.wse3{word-spacing:0.292638pt;}
.ws138{word-spacing:0.297006pt;}
.wscb{word-spacing:0.305741pt;}
.ws245{word-spacing:0.380800pt;}
.ws89{word-spacing:0.384000pt;}
.ws49{word-spacing:0.396800pt;}
.ws1d1{word-spacing:0.430933pt;}
.ws12a{word-spacing:0.471715pt;}
.ws1a2{word-spacing:0.480450pt;}
.ws1ab{word-spacing:0.512000pt;}
.ws12b{word-spacing:0.529067pt;}
.wsde{word-spacing:0.537231pt;}
.ws1a9{word-spacing:0.550334pt;}
.ws221{word-spacing:0.553067pt;}
.wsf4{word-spacing:0.563437pt;}
.ws152{word-spacing:0.576000pt;}
.ws199{word-spacing:0.605867pt;}
.ws13e{word-spacing:0.631467pt;}
.wsb2{word-spacing:0.635733pt;}
.wsdf{word-spacing:0.676998pt;}
.ws78{word-spacing:0.704000pt;}
.ws189{word-spacing:0.716307pt;}
.ws1d{word-spacing:0.733778pt;}
.ws17a{word-spacing:0.780800pt;}
.ws120{word-spacing:0.790559pt;}
.ws101{word-spacing:0.793600pt;}
.ws106{word-spacing:0.797867pt;}
.ws32{word-spacing:0.806400pt;}
.ws7d{word-spacing:0.810667pt;}
.ws11f{word-spacing:0.816765pt;}
.ws205{word-spacing:0.821133pt;}
.ws237{word-spacing:0.829600pt;}
.ws1a6{word-spacing:0.834236pt;}
.ws13a{word-spacing:0.838604pt;}
.ws176{word-spacing:0.866133pt;}
.wsbf{word-spacing:0.878933pt;}
.ws1a7{word-spacing:0.891017pt;}
.wsad{word-spacing:0.917333pt;}
.wsb9{word-spacing:0.921600pt;}
.ws167{word-spacing:0.952165pt;}
.ws14e{word-spacing:0.964267pt;}
.ws23d{word-spacing:0.965600pt;}
.ws173{word-spacing:0.974003pt;}
.ws128{word-spacing:0.977067pt;}
.wsd6{word-spacing:0.981333pt;}
.ws68{word-spacing:0.998400pt;}
.ws1c9{word-spacing:1.000210pt;}
.ws5{word-spacing:1.037867pt;}
.ws25{word-spacing:1.052622pt;}
.ws162{word-spacing:1.074461pt;}
.ws20b{word-spacing:1.079467pt;}
.ws172{word-spacing:1.096533pt;}
.ws56{word-spacing:1.100800pt;}
.ws246{word-spacing:1.106133pt;}
.ws41{word-spacing:1.108000pt;}
.ws8c{word-spacing:1.112000pt;}
.ws218{word-spacing:1.133333pt;}
.ws212{word-spacing:1.137867pt;}
.ws1e8{word-spacing:1.144345pt;}
.ws226{word-spacing:1.160533pt;}
.ws29{word-spacing:1.170551pt;}
.ws159{word-spacing:1.174919pt;}
.ws18{word-spacing:1.181867pt;}
.ws4b{word-spacing:1.186133pt;}
.ws55{word-spacing:1.211733pt;}
.ws6d{word-spacing:1.224533pt;}
.ws191{word-spacing:1.253538pt;}
.ws12c{word-spacing:1.258667pt;}
.ws3f{word-spacing:1.267732pt;}
.ws40{word-spacing:1.305600pt;}
.ws180{word-spacing:1.305951pt;}
.ws6{word-spacing:1.307200pt;}
.ws20e{word-spacing:1.309867pt;}
.ws10c{word-spacing:1.318400pt;}
.ws100{word-spacing:1.322667pt;}
.ws204{word-spacing:1.332157pt;}
.wsb7{word-spacing:1.335467pt;}
.ws9a{word-spacing:1.348267pt;}
.ws18f{word-spacing:1.386667pt;}
.wsca{word-spacing:1.393305pt;}
.ws10{word-spacing:1.412267pt;}
.ws22a{word-spacing:1.441600pt;}
.ws194{word-spacing:1.446400pt;}
.ws93{word-spacing:1.454933pt;}
.wsbd{word-spacing:1.467733pt;}
.ws222{word-spacing:1.473333pt;}
.ws17f{word-spacing:1.476267pt;}
.ws4{word-spacing:1.477333pt;}
.ws206{word-spacing:1.502498pt;}
.ws1da{word-spacing:1.506133pt;}
.ws174{word-spacing:1.511234pt;}
.ws15c{word-spacing:1.515602pt;}
.wsf{word-spacing:1.518933pt;}
.ws15d{word-spacing:1.554911pt;}
.ws98{word-spacing:1.587200pt;}
.ws73{word-spacing:1.591467pt;}
.ws1db{word-spacing:1.612800pt;}
.ws58{word-spacing:1.621333pt;}
.ws1a1{word-spacing:1.629163pt;}
.ws24{word-spacing:1.637898pt;}
.ws20{word-spacing:1.642266pt;}
.ws7a{word-spacing:1.646933pt;}
.ws1c5{word-spacing:1.672840pt;}
.ws118{word-spacing:1.685943pt;}
.ws175{word-spacing:1.702400pt;}
.wsfc{word-spacing:1.703414pt;}
.ws107{word-spacing:1.706667pt;}
.ws1f9{word-spacing:1.719467pt;}
.ws146{word-spacing:1.723733pt;}
.ws35{word-spacing:1.753600pt;}
.wsf2{word-spacing:1.777665pt;}
.ws231{word-spacing:1.786133pt;}
.wsc6{word-spacing:1.799504pt;}
.ws1e9{word-spacing:1.834446pt;}
.wsfd{word-spacing:1.843181pt;}
.wsdc{word-spacing:1.869388pt;}
.ws1eb{word-spacing:1.904329pt;}
.wse{word-spacing:1.907200pt;}
.wsce{word-spacing:1.908697pt;}
.ws244{word-spacing:1.913067pt;}
.ws17d{word-spacing:1.932800pt;}
.ws1a4{word-spacing:1.948007pt;}
.ws110{word-spacing:1.952375pt;}
.wscc{word-spacing:1.969845pt;}
.wscd{word-spacing:1.974213pt;}
.ws121{word-spacing:1.975467pt;}
.ws1f2{word-spacing:2.022400pt;}
.wsa2{word-spacing:2.035200pt;}
.wsd{word-spacing:2.048000pt;}
.ws77{word-spacing:2.052267pt;}
.ws169{word-spacing:2.060800pt;}
.ws17e{word-spacing:2.065067pt;}
.ws17c{word-spacing:2.069333pt;}
.ws54{word-spacing:2.092142pt;}
.ws154{word-spacing:2.109613pt;}
.ws190{word-spacing:2.116267pt;}
.ws1ec{word-spacing:2.122716pt;}
.wsd5{word-spacing:2.129067pt;}
.ws27{word-spacing:2.135819pt;}
.ws5f{word-spacing:2.146133pt;}
.ws135{word-spacing:2.184533pt;}
.ws1bb{word-spacing:2.188800pt;}
.ws113{word-spacing:2.192600pt;}
.ws105{word-spacing:2.218667pt;}
.ws4f{word-spacing:2.240645pt;}
.wsf8{word-spacing:2.248533pt;}
.ws1b4{word-spacing:2.265600pt;}
.ws1d0{word-spacing:2.269867pt;}
.wsc4{word-spacing:2.271219pt;}
.wse8{word-spacing:2.291200pt;}
.ws156{word-spacing:2.297425pt;}
.ws170{word-spacing:2.299733pt;}
.ws5e{word-spacing:2.304000pt;}
.ws16c{word-spacing:2.327999pt;}
.ws1bc{word-spacing:2.342400pt;}
.ws1ba{word-spacing:2.346667pt;}
.ws3{word-spacing:2.363733pt;}
.wsf0{word-spacing:2.419721pt;}
.wsdd{word-spacing:2.428457pt;}
.wsab{word-spacing:2.453333pt;}
.ws1ce{word-spacing:2.485237pt;}
.ws223{word-spacing:2.488800pt;}
.ws47{word-spacing:2.500267pt;}
.ws9d{word-spacing:2.513067pt;}
.wsd1{word-spacing:2.517333pt;}
.ws133{word-spacing:2.521600pt;}
.ws1fc{word-spacing:2.525867pt;}
.ws31{word-spacing:2.530133pt;}
.ws1a5{word-spacing:2.555121pt;}
.wsbb{word-spacing:2.555733pt;}
.ws144{word-spacing:2.563856pt;}
.ws10b{word-spacing:2.577067pt;}
.ws63{word-spacing:2.581333pt;}
.wsc3{word-spacing:2.585695pt;}
.ws16d{word-spacing:2.624000pt;}
.ws11b{word-spacing:2.655579pt;}
.ws18c{word-spacing:2.668682pt;}
.ws22d{word-spacing:2.679200pt;}
.wsa0{word-spacing:2.683733pt;}
.wsb{word-spacing:2.696533pt;}
.ws247{word-spacing:2.720000pt;}
.ws79{word-spacing:2.726400pt;}
.ws50{word-spacing:2.747733pt;}
.ws1f3{word-spacing:2.752000pt;}
.ws15{word-spacing:2.760533pt;}
.ws18a{word-spacing:2.769140pt;}
.ws1f7{word-spacing:2.781867pt;}
.ws192{word-spacing:2.799714pt;}
.ws1cd{word-spacing:2.803200pt;}
.ws70{word-spacing:2.816000pt;}
.wsaf{word-spacing:2.837333pt;}
.wsc7{word-spacing:2.873965pt;}
.ws102{word-spacing:2.875733pt;}
.ws1ac{word-spacing:2.880000pt;}
.ws1e1{word-spacing:2.884267pt;}
.wsc{word-spacing:2.888533pt;}
.ws183{word-spacing:2.892800pt;}
.wsdb{word-spacing:2.900172pt;}
.ws139{word-spacing:2.908907pt;}
.ws90{word-spacing:2.922667pt;}
.ws92{word-spacing:2.944000pt;}
.ws14{word-spacing:2.948267pt;}
.ws114{word-spacing:2.956952pt;}
.ws7f{word-spacing:2.969600pt;}
.ws1f6{word-spacing:2.982400pt;}
.ws232{word-spacing:2.982933pt;}
.ws207{word-spacing:2.996262pt;}
.ws143{word-spacing:3.009365pt;}
.ws148{word-spacing:3.012267pt;}
.ws1b6{word-spacing:3.029333pt;}
.ws51{word-spacing:3.037867pt;}
.ws1fb{word-spacing:3.042133pt;}
.ws155{word-spacing:3.061777pt;}
.ws59{word-spacing:3.080533pt;}
.ws1a0{word-spacing:3.118558pt;}
.ws13c{word-spacing:3.123200pt;}
.ws13{word-spacing:3.157333pt;}
.ws193{word-spacing:3.161600pt;}
.wsd9{word-spacing:3.178667pt;}
.ws15f{word-spacing:3.229867pt;}
.ws7{word-spacing:3.251200pt;}
.ws1c6{word-spacing:3.323841pt;}
.ws3b{word-spacing:3.345067pt;}
.wseb{word-spacing:3.349333pt;}
.ws23f{word-spacing:3.350133pt;}
.ws115{word-spacing:3.363151pt;}
.ws208{word-spacing:3.379200pt;}
.wsd3{word-spacing:3.434667pt;}
.ws1f8{word-spacing:3.438933pt;}
.wse1{word-spacing:3.450505pt;}
.wscf{word-spacing:3.451733pt;}
.ws1b{word-spacing:3.467976pt;}
.wsd0{word-spacing:3.468800pt;}
.ws1a3{word-spacing:3.472344pt;}
.ws17{word-spacing:3.473067pt;}
.wsfe{word-spacing:3.502918pt;}
.ws224{word-spacing:3.549600pt;}
.wsf7{word-spacing:3.559698pt;}
.ws15e{word-spacing:3.575467pt;}
.ws39{word-spacing:3.588267pt;}
.ws20d{word-spacing:3.601067pt;}
.ws1e2{word-spacing:3.609600pt;}
.ws19e{word-spacing:3.651421pt;}
.ws1d2{word-spacing:3.716267pt;}
.ws184{word-spacing:3.724800pt;}
.ws1aa{word-spacing:3.733333pt;}
.ws1e6{word-spacing:3.754667pt;}
.ws201{word-spacing:3.758933pt;}
.ws16e{word-spacing:3.767467pt;}
.ws129{word-spacing:3.776000pt;}
.ws124{word-spacing:3.793067pt;}
.ws4a{word-spacing:3.818667pt;}
.wsef{word-spacing:3.834865pt;}
.ws20a{word-spacing:3.844267pt;}
.ws233{word-spacing:3.848800pt;}
.ws16{word-spacing:3.861333pt;}
.ws12f{word-spacing:3.865600pt;}
.ws1e7{word-spacing:3.878400pt;}
.ws200{word-spacing:3.916800pt;}
.ws1ea{word-spacing:3.948426pt;}
.wsc1{word-spacing:3.955200pt;}
.ws16f{word-spacing:4.019200pt;}
.ws7b{word-spacing:4.074667pt;}
.ws8f{word-spacing:4.125867pt;}
.ws9e{word-spacing:4.130133pt;}
.ws239{word-spacing:4.143467pt;}
.ws151{word-spacing:4.198400pt;}
.ws188{word-spacing:4.206933pt;}
.wsa1{word-spacing:4.232533pt;}
.ws1f5{word-spacing:4.249600pt;}
.ws117{word-spacing:4.267270pt;}
.ws60{word-spacing:4.270933pt;}
.ws1c8{word-spacing:4.271638pt;}
.ws4e{word-spacing:4.275200pt;}
.ws7e{word-spacing:4.292267pt;}
.ws1cf{word-spacing:4.302212pt;}
.ws1fd{word-spacing:4.364800pt;}
.ws6a{word-spacing:4.403200pt;}
.wsf1{word-spacing:4.481289pt;}
.ws214{word-spacing:4.546933pt;}
.ws1f4{word-spacing:4.552533pt;}
.wsfa{word-spacing:4.620800pt;}
.ws2c{word-spacing:4.633600pt;}
.ws76{word-spacing:4.650667pt;}
.ws95{word-spacing:4.667733pt;}
.ws4c{word-spacing:4.701867pt;}
.ws3c{word-spacing:4.842667pt;}
.ws3d{word-spacing:4.846933pt;}
.ws97{word-spacing:4.859733pt;}
.ws9{word-spacing:4.889600pt;}
.ws13d{word-spacing:4.910933pt;}
.ws4d{word-spacing:4.928000pt;}
.ws22{word-spacing:4.939901pt;}
.wse2{word-spacing:4.966107pt;}
.ws19b{word-spacing:4.983467pt;}
.ws198{word-spacing:4.996681pt;}
.ws38{word-spacing:5.000533pt;}
.ws1f{word-spacing:5.027255pt;}
.ws234{word-spacing:5.036533pt;}
.ws8e{word-spacing:5.077333pt;}
.wsc8{word-spacing:5.105874pt;}
.ws141{word-spacing:5.153919pt;}
.ws217{word-spacing:5.168000pt;}
.ws14f{word-spacing:5.188267pt;}
.ws140{word-spacing:5.235200pt;}
.ws8{word-spacing:5.239467pt;}
.ws196{word-spacing:5.252267pt;}
.ws142{word-spacing:5.263112pt;}
.ws1fe{word-spacing:5.290667pt;}
.wse9{word-spacing:5.312000pt;}
.ws19c{word-spacing:5.333333pt;}
.ws19a{word-spacing:5.337600pt;}
.ws225{word-spacing:5.408267pt;}
.wsee{word-spacing:5.424718pt;}
.wsaa{word-spacing:5.431467pt;}
.ws112{word-spacing:5.472763pt;}
.wsa5{word-spacing:5.504000pt;}
.wsd4{word-spacing:5.546667pt;}
.ws1cb{word-spacing:5.568000pt;}
.ws11a{word-spacing:5.590692pt;}
.ws179{word-spacing:5.610667pt;}
.ws197{word-spacing:5.644800pt;}
.ws19d{word-spacing:5.674667pt;}
.ws82{word-spacing:5.708800pt;}
.ws177{word-spacing:5.742933pt;}
.ws28{word-spacing:5.743563pt;}
.ws119{word-spacing:5.761033pt;}
.ws23c{word-spacing:5.766400pt;}
.ws18d{word-spacing:5.826549pt;}
.ws243{word-spacing:5.956800pt;}
.wsb3{word-spacing:5.969067pt;}
.ws1b5{word-spacing:5.973333pt;}
.ws44{word-spacing:5.994667pt;}
.ws168{word-spacing:6.027465pt;}
.ws166{word-spacing:6.092981pt;}
.wsb8{word-spacing:6.114133pt;}
.wsf5{word-spacing:6.237116pt;}
.ws96{word-spacing:6.318933pt;}
.ws13f{word-spacing:6.331733pt;}
.ws21e{word-spacing:6.410133pt;}
.ws126{word-spacing:6.425600pt;}
.wsec{word-spacing:6.519467pt;}
.ws1f0{word-spacing:6.536533pt;}
.wsa9{word-spacing:6.570667pt;}
.ws1bf{word-spacing:6.574933pt;}
.ws18e{word-spacing:6.579200pt;}
.ws187{word-spacing:6.673067pt;}
.ws19{word-spacing:6.681600pt;}
.ws158{word-spacing:6.721934pt;}
.ws7c{word-spacing:6.801067pt;}
.ws2e{word-spacing:6.809600pt;}
.ws15a{word-spacing:6.831127pt;}
.ws125{word-spacing:6.873600pt;}
.ws1ae{word-spacing:6.883540pt;}
.ws229{word-spacing:6.908800pt;}
.ws209{word-spacing:6.976000pt;}
.ws75{word-spacing:7.010133pt;}
.ws14c{word-spacing:7.018667pt;}
.wsb0{word-spacing:7.022933pt;}
.ws1be{word-spacing:7.035733pt;}
.ws153{word-spacing:7.044267pt;}
.ws147{word-spacing:7.048533pt;}
.ws21f{word-spacing:7.121867pt;}
.ws228{word-spacing:7.235200pt;}
.ws1c7{word-spacing:7.272267pt;}
.ws5b{word-spacing:7.274667pt;}
.ws2d{word-spacing:7.287467pt;}
.ws240{word-spacing:7.307733pt;}
.ws84{word-spacing:7.308800pt;}
.wsea{word-spacing:7.355733pt;}
.ws1d8{word-spacing:7.364267pt;}
.ws241{word-spacing:7.430133pt;}
.ws108{word-spacing:7.470933pt;}
.ws8d{word-spacing:7.509333pt;}
.ws227{word-spacing:7.538933pt;}
.ws1b2{word-spacing:7.582376pt;}
.ws23b{word-spacing:7.674933pt;}
.ws1c2{word-spacing:7.680000pt;}
.wsfb{word-spacing:7.700305pt;}
.ws215{word-spacing:7.702133pt;}
.ws1b8{word-spacing:7.735467pt;}
.ws85{word-spacing:7.744000pt;}
.ws1ad{word-spacing:7.782400pt;}
.ws1d9{word-spacing:7.876267pt;}
.ws1d7{word-spacing:7.880533pt;}
.ws1c1{word-spacing:7.906133pt;}
.wsc0{word-spacing:7.914667pt;}
.wsc9{word-spacing:7.927427pt;}
.ws1bd{word-spacing:7.982933pt;}
.ws10a{word-spacing:8.209067pt;}
.wsd8{word-spacing:8.217600pt;}
.wsf6{word-spacing:8.255006pt;}
.ws83{word-spacing:8.328533pt;}
.ws80{word-spacing:8.341333pt;}
.ws3a{word-spacing:8.460800pt;}
.ws36{word-spacing:8.465067pt;}
.ws122{word-spacing:8.490667pt;}
.ws45{word-spacing:8.512000pt;}
.ws1b1{word-spacing:8.571733pt;}
.ws9c{word-spacing:8.691200pt;}
.ws1c0{word-spacing:8.695467pt;}
.ws1de{word-spacing:9.045333pt;}
.ws72{word-spacing:9.134933pt;}
.ws81{word-spacing:9.344000pt;}
.ws1e5{word-spacing:9.352533pt;}
.ws123{word-spacing:9.390933pt;}
.ws1d3{word-spacing:9.484800pt;}
.ws111{word-spacing:9.600000pt;}
.ws1ee{word-spacing:9.642667pt;}
.ws6c{word-spacing:9.655467pt;}
.ws6b{word-spacing:9.659733pt;}
.ws242{word-spacing:9.660533pt;}
.wsd2{word-spacing:9.877333pt;}
.ws21d{word-spacing:9.918933pt;}
.ws18b{word-spacing:9.966933pt;}
.wse7{word-spacing:9.971200pt;}
.ws6f{word-spacing:9.975467pt;}
.ws1d4{word-spacing:10.146133pt;}
.ws145{word-spacing:10.233587pt;}
.ws149{word-spacing:10.346667pt;}
.ws103{word-spacing:10.436267pt;}
.ws1fa{word-spacing:10.560000pt;}
.wsa6{word-spacing:10.581333pt;}
.ws178{word-spacing:10.760533pt;}
.ws134{word-spacing:10.811733pt;}
.ws21a{word-spacing:10.866400pt;}
.ws1a{word-spacing:11.150810pt;}
.ws210{word-spacing:11.428533pt;}
.ws3e{word-spacing:11.498667pt;}
.wsf9{word-spacing:11.502933pt;}
.ws1dd{word-spacing:11.511467pt;}
.ws8a{word-spacing:11.528533pt;}
.ws21b{word-spacing:11.637067pt;}
.ws171{word-spacing:11.733333pt;}
.ws1cc{word-spacing:12.066133pt;}
.ws132{word-spacing:12.102975pt;}
.ws12e{word-spacing:12.482967pt;}
.ws20c{word-spacing:12.608000pt;}
.ws37{word-spacing:12.940800pt;}
.ws22b{word-spacing:13.486667pt;}
.ws230{word-spacing:13.613600pt;}
.ws64{word-spacing:13.674667pt;}
.ws12d{word-spacing:14.118400pt;}
.ws65{word-spacing:14.412800pt;}
.ws62{word-spacing:15.709867pt;}
.ws219{word-spacing:16.165867pt;}
.ws22f{word-spacing:16.796000pt;}
.wsd7{word-spacing:17.028267pt;}
.ws1e3{word-spacing:17.437867pt;}
.ws74{word-spacing:17.472000pt;}
.ws1f1{word-spacing:17.484800pt;}
.ws104{word-spacing:17.565867pt;}
.ws136{word-spacing:17.570133pt;}
.ws14b{word-spacing:17.625600pt;}
.ws2b{word-spacing:17.698133pt;}
.ws1b9{word-spacing:17.710933pt;}
.wse6{word-spacing:19.746499pt;}
.ws22e{word-spacing:33.406133pt;}
._0{margin-left:-6.306133pt;}
._7{margin-left:-5.239467pt;}
._3{margin-left:-3.912533pt;}
._1{margin-left:-2.928000pt;}
._2{margin-left:-1.370133pt;}
._6{width:1.477333pt;}
._4{width:12.212800pt;}
._8{width:49.993600pt;}
._5{width:505.150400pt;}
.fs3{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:43.677282pt;}
.fs9{font-size:45.333333pt;}
.fs7{font-size:49.136899pt;}
.fs5{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.080000pt;}
.y2{bottom:54.723333pt;}
.y4f{bottom:55.844000pt;}
.yaa{bottom:56.056667pt;}
.ydc{bottom:58.646667pt;}
.y50{bottom:59.146667pt;}
.yab{bottom:59.489200pt;}
.y17d{bottom:88.119600pt;}
.y1bc{bottom:91.553733pt;}
.ya3{bottom:91.793867pt;}
.y46{bottom:95.621600pt;}
.y37{bottom:95.636667pt;}
.y155{bottom:95.783467pt;}
.ybd{bottom:97.463200pt;}
.y191{bottom:97.463333pt;}
.y125{bottom:97.502533pt;}
.y124{bottom:98.463067pt;}
.y7d{bottom:99.647333pt;}
.y17c{bottom:101.452933pt;}
.y1bb{bottom:104.887067pt;}
.ya2{bottom:105.127200pt;}
.yda{bottom:105.127333pt;}
.y44{bottom:108.954800pt;}
.y45{bottom:108.954933pt;}
.y36{bottom:108.970000pt;}
.y154{bottom:109.116800pt;}
.ybc{bottom:110.796533pt;}
.y190{bottom:110.796667pt;}
.y123{bottom:111.796400pt;}
.y7c{bottom:112.980667pt;}
.y17b{bottom:114.786267pt;}
.y1ba{bottom:118.220400pt;}
.ya1{bottom:118.460533pt;}
.yd9{bottom:118.460667pt;}
.y35{bottom:122.303333pt;}
.y153{bottom:122.450133pt;}
.y18f{bottom:124.130000pt;}
.y122{bottom:125.129733pt;}
.y43{bottom:127.957467pt;}
.y17a{bottom:128.119600pt;}
.ybb{bottom:129.799200pt;}
.y1ee{bottom:130.114267pt;}
.y1b9{bottom:131.553733pt;}
.ya0{bottom:131.793867pt;}
.yd8{bottom:131.794000pt;}
.y7b{bottom:131.983333pt;}
.y34{bottom:135.636667pt;}
.y152{bottom:135.783467pt;}
.y18e{bottom:137.463333pt;}
.y11f{bottom:138.462800pt;}
.y120{bottom:138.463067pt;}
.y42{bottom:141.290800pt;}
.y121{bottom:142.729467pt;}
.yba{bottom:143.132533pt;}
.y1ed{bottom:143.447600pt;}
.y1b8{bottom:144.887067pt;}
.y9f{bottom:145.127200pt;}
.yd7{bottom:145.127333pt;}
.y7a{bottom:145.316667pt;}
.y179{bottom:147.122267pt;}
.y33{bottom:148.970000pt;}
.y151{bottom:149.116800pt;}
.y18d{bottom:150.796667pt;}
.y11e{bottom:151.796133pt;}
.y41{bottom:154.624133pt;}
.yb9{bottom:156.465867pt;}
.y1ec{bottom:156.780933pt;}
.y1b7{bottom:158.220400pt;}
.y9e{bottom:158.460533pt;}
.yd6{bottom:158.460667pt;}
.y79{bottom:158.650000pt;}
.y178{bottom:160.455600pt;}
.y32{bottom:162.303333pt;}
.y150{bottom:162.450133pt;}
.y11d{bottom:165.129467pt;}
.y40{bottom:167.957467pt;}
.yb8{bottom:169.799200pt;}
.y18c{bottom:169.799333pt;}
.y1b6{bottom:171.553733pt;}
.y9d{bottom:171.793867pt;}
.yd5{bottom:171.794000pt;}
.y78{bottom:171.983333pt;}
.y176{bottom:173.788800pt;}
.y177{bottom:173.788933pt;}
.y1eb{bottom:175.783600pt;}
.y11c{bottom:178.462800pt;}
.y3f{bottom:181.290800pt;}
.y31{bottom:181.305867pt;}
.y2f{bottom:181.306267pt;}
.y14f{bottom:181.453067pt;}
.yb7{bottom:183.132533pt;}
.y18b{bottom:183.132667pt;}
.y1b5{bottom:184.887067pt;}
.y9c{bottom:185.127200pt;}
.yd4{bottom:185.127333pt;}
.y77{bottom:185.316667pt;}
.y30{bottom:185.572533pt;}
.y175{bottom:187.122133pt;}
.y174{bottom:187.122267pt;}
.y1ea{bottom:189.116933pt;}
.y3e{bottom:194.624133pt;}
.y2e{bottom:194.639600pt;}
.y14e{bottom:194.786400pt;}
.yb6{bottom:196.465867pt;}
.y18a{bottom:196.466000pt;}
.y11b{bottom:197.465467pt;}
.y9b{bottom:198.460533pt;}
.yd3{bottom:198.460667pt;}
.y76{bottom:198.650000pt;}
.y173{bottom:200.455600pt;}
.y1e9{bottom:202.450267pt;}
.y1b4{bottom:203.889733pt;}
.y3d{bottom:207.957467pt;}
.y2d{bottom:207.972933pt;}
.y14d{bottom:208.119733pt;}
.yb5{bottom:209.799200pt;}
.y189{bottom:209.799333pt;}
.y11a{bottom:210.798800pt;}
.y9a{bottom:211.793867pt;}
.yd2{bottom:211.794000pt;}
.y75{bottom:211.983333pt;}
.y172{bottom:213.788933pt;}
.y1e8{bottom:215.783600pt;}
.y1b3{bottom:217.223067pt;}
.y3c{bottom:221.290800pt;}
.y2c{bottom:221.306267pt;}
.y14c{bottom:221.453067pt;}
.yb4{bottom:223.132533pt;}
.y188{bottom:223.132667pt;}
.y119{bottom:224.132133pt;}
.yd1{bottom:225.127333pt;}
.y1ce{bottom:225.127467pt;}
.y74{bottom:225.316667pt;}
.y171{bottom:227.122267pt;}
.y1e7{bottom:229.116933pt;}
.y1b2{bottom:230.556400pt;}
.y99{bottom:230.796533pt;}
.y3b{bottom:234.624133pt;}
.y2b{bottom:234.639600pt;}
.y14b{bottom:234.786400pt;}
.yb3{bottom:236.465867pt;}
.y187{bottom:236.466000pt;}
.y118{bottom:237.465467pt;}
.y1cc{bottom:238.460667pt;}
.y1cd{bottom:238.460800pt;}
.y73{bottom:238.650000pt;}
.y170{bottom:240.455600pt;}
.y1e6{bottom:242.450267pt;}
.y1b1{bottom:243.889733pt;}
.y98{bottom:244.129867pt;}
.y3a{bottom:247.957467pt;}
.y39{bottom:247.957733pt;}
.y14a{bottom:248.119733pt;}
.yb2{bottom:249.799200pt;}
.y186{bottom:249.799333pt;}
.y117{bottom:250.798800pt;}
.y2a{bottom:251.752133pt;}
.y16d{bottom:253.788800pt;}
.y16e{bottom:253.788933pt;}
.y1b0{bottom:257.223067pt;}
.y97{bottom:257.463200pt;}
.y72{bottom:257.652667pt;}
.y16f{bottom:258.055600pt;}
.y38{bottom:261.291067pt;}
.y1e5{bottom:261.452933pt;}
.y149{bottom:261.453067pt;}
.yb1{bottom:263.132533pt;}
.y185{bottom:263.132667pt;}
.y116{bottom:264.132133pt;}
.y29{bottom:265.085467pt;}
.y16c{bottom:267.122133pt;}
.y16b{bottom:267.122267pt;}
.y1af{bottom:270.556400pt;}
.yd0{bottom:270.796533pt;}
.y71{bottom:270.986000pt;}
.y1e4{bottom:274.786267pt;}
.y96{bottom:276.465867pt;}
.y184{bottom:276.466000pt;}
.y115{bottom:277.465467pt;}
.y28{bottom:278.418800pt;}
.y147{bottom:280.455467pt;}
.y16a{bottom:280.455600pt;}
.y1ef{bottom:282.189467pt;}
.y1ae{bottom:283.889733pt;}
.ycf{bottom:284.129867pt;}
.y70{bottom:284.319333pt;}
.y148{bottom:284.722133pt;}
.y1e3{bottom:288.119600pt;}
.y95{bottom:289.799200pt;}
.y183{bottom:289.799333pt;}
.y114{bottom:290.798800pt;}
.y27{bottom:291.752133pt;}
.y146{bottom:293.788800pt;}
.yce{bottom:297.463200pt;}
.y6f{bottom:297.652667pt;}
.y169{bottom:299.458267pt;}
.y1e2{bottom:301.452933pt;}
.y94{bottom:303.132533pt;}
.y182{bottom:303.132667pt;}
.y1ad{bottom:304.782133pt;}
.y26{bottom:305.085467pt;}
.yfa{bottom:307.122133pt;}
.y113{bottom:309.801467pt;}
.ycd{bottom:310.796533pt;}
.y6e{bottom:310.986000pt;}
.y168{bottom:312.791600pt;}
.y1e1{bottom:314.786267pt;}
.y93{bottom:316.465867pt;}
.y181{bottom:316.466000pt;}
.y1ac{bottom:318.115600pt;}
.y25{bottom:318.418800pt;}
.yf9{bottom:320.455467pt;}
.ycc{bottom:324.129867pt;}
.y167{bottom:326.124933pt;}
.y1e0{bottom:328.119600pt;}
.y112{bottom:328.804133pt;}
.y92{bottom:329.799200pt;}
.y180{bottom:329.799333pt;}
.y6d{bottom:329.988667pt;}
.y24{bottom:331.752133pt;}
.yf8{bottom:333.788800pt;}
.y166{bottom:339.458267pt;}
.y111{bottom:342.137467pt;}
.y91{bottom:343.132533pt;}
.y17f{bottom:343.132667pt;}
.y6a{bottom:343.321867pt;}
.y6c{bottom:343.322000pt;}
.y23{bottom:345.085467pt;}
.y1a9{bottom:346.566933pt;}
.y1aa{bottom:346.567067pt;}
.y1df{bottom:347.122000pt;}
.yf7{bottom:347.122133pt;}
.y6b{bottom:347.588533pt;}
.y1ab{bottom:350.833600pt;}
.y21d{bottom:351.503600pt;}
.y165{bottom:352.791600pt;}
.y110{bottom:355.470800pt;}
.y90{bottom:356.465867pt;}
.y17e{bottom:356.466000pt;}
.y69{bottom:356.655200pt;}
.y22{bottom:358.418800pt;}
.y1a8{bottom:359.900267pt;}
.y1de{bottom:360.455333pt;}
.yf6{bottom:360.455467pt;}
.y21c{bottom:363.503333pt;}
.y145{bottom:366.124800pt;}
.y10f{bottom:368.804133pt;}
.y8f{bottom:369.799200pt;}
.y68{bottom:369.988533pt;}
.y21{bottom:371.752133pt;}
.y163{bottom:371.794000pt;}
.y1a7{bottom:373.233600pt;}
.y1a6{bottom:373.233733pt;}
.y1dd{bottom:373.788667pt;}
.y21b{bottom:375.503067pt;}
.y164{bottom:376.060800pt;}
.yf5{bottom:379.458000pt;}
.y144{bottom:379.458133pt;}
.y10e{bottom:382.137467pt;}
.yb0{bottom:383.132533pt;}
.y20{bottom:385.085467pt;}
.y162{bottom:385.127333pt;}
.y1a5{bottom:386.567067pt;}
.y1dc{bottom:387.122000pt;}
.y67{bottom:388.991200pt;}
.y21a{bottom:389.393200pt;}
.yf4{bottom:392.791333pt;}
.y143{bottom:392.791467pt;}
.yaf{bottom:396.465867pt;}
.y1f{bottom:398.418800pt;}
.y161{bottom:398.460667pt;}
.y1a3{bottom:399.900267pt;}
.y1a4{bottom:399.900400pt;}
.y10d{bottom:401.140000pt;}
.y219{bottom:401.392933pt;}
.y66{bottom:402.324533pt;}
.y242{bottom:403.827933pt;}
.yf3{bottom:406.124667pt;}
.y142{bottom:406.124800pt;}
.yae{bottom:409.799200pt;}
.y160{bottom:411.794000pt;}
.y1a2{bottom:413.233600pt;}
.y10c{bottom:414.473333pt;}
.y218{bottom:415.283067pt;}
.y65{bottom:415.657867pt;}
.y1e{bottom:417.421467pt;}
.yf2{bottom:419.458000pt;}
.y241{bottom:420.941267pt;}
.y15f{bottom:425.127333pt;}
.y1a1{bottom:426.566933pt;}
.y217{bottom:427.282800pt;}
.y10b{bottom:427.806667pt;}
.y64{bottom:428.991200pt;}
.y1d{bottom:430.754800pt;}
.yf1{bottom:432.791333pt;}
.y240{bottom:434.274933pt;}
.y141{bottom:438.460667pt;}
.y1a0{bottom:439.900267pt;}
.y10a{bottom:441.140000pt;}
.y216{bottom:441.172933pt;}
.yf0{bottom:446.124667pt;}
.y63{bottom:447.993867pt;}
.y1c{bottom:449.757467pt;}
.ydb{bottom:449.842400pt;}
.y23f{bottom:451.388267pt;}
.y140{bottom:451.794000pt;}
.y215{bottom:453.172667pt;}
.y109{bottom:454.473333pt;}
.y19f{bottom:458.902933pt;}
.yef{bottom:459.458000pt;}
.y1b{bottom:463.090800pt;}
.y13f{bottom:465.127333pt;}
.y214{bottom:467.062800pt;}
.y108{bottom:467.806667pt;}
.y23e{bottom:468.501600pt;}
.y19e{bottom:472.236267pt;}
.yee{bottom:472.791333pt;}
.y1a{bottom:476.424133pt;}
.y62{bottom:476.445333pt;}
.y13e{bottom:478.460667pt;}
.y213{bottom:479.062533pt;}
.y107{bottom:481.140000pt;}
.y19d{bottom:485.569600pt;}
.y23d{bottom:485.614933pt;}
.yed{bottom:486.124667pt;}
.y19{bottom:489.757467pt;}
.y61{bottom:489.778667pt;}
.y13d{bottom:491.794000pt;}
.y212{bottom:492.952667pt;}
.y19c{bottom:498.902933pt;}
.y106{bottom:500.142667pt;}
.y23c{bottom:502.728267pt;}
.y18{bottom:503.090800pt;}
.y60{bottom:503.112000pt;}
.y211{bottom:504.952400pt;}
.yec{bottom:505.127333pt;}
.y105{bottom:513.476000pt;}
.y23b{bottom:516.061933pt;}
.y17{bottom:516.424133pt;}
.y5f{bottom:516.445333pt;}
.y210{bottom:516.952133pt;}
.y19b{bottom:517.905467pt;}
.yeb{bottom:518.460667pt;}
.y15e{bottom:524.130000pt;}
.y104{bottom:526.809333pt;}
.y4c{bottom:527.590267pt;}
.y16{bottom:529.757467pt;}
.y5e{bottom:529.778667pt;}
.y20f{bottom:530.842267pt;}
.yea{bottom:531.794000pt;}
.y23a{bottom:533.175267pt;}
.y19a{bottom:536.908133pt;}
.y15d{bottom:537.463333pt;}
.y4b{bottom:539.590267pt;}
.y103{bottom:540.142667pt;}
.y20e{bottom:542.842000pt;}
.y15{bottom:543.090800pt;}
.y5c{bottom:543.111867pt;}
.y5d{bottom:543.112000pt;}
.ye9{bottom:545.127333pt;}
.y239{bottom:546.508933pt;}
.y199{bottom:550.241467pt;}
.y15c{bottom:550.796667pt;}
.y4a{bottom:551.890267pt;}
.y14{bottom:556.424133pt;}
.y5b{bottom:556.445200pt;}
.y20d{bottom:556.732133pt;}
.ye8{bottom:558.460667pt;}
.y102{bottom:559.145333pt;}
.y198{bottom:563.574800pt;}
.y238{bottom:563.622267pt;}
.y15b{bottom:564.130000pt;}
.y20c{bottom:568.731867pt;}
.y1c4{bottom:568.870000pt;}
.y13{bottom:569.757467pt;}
.y5a{bottom:569.778533pt;}
.ye7{bottom:571.794000pt;}
.y101{bottom:572.478667pt;}
.y197{bottom:576.908133pt;}
.y237{bottom:576.955933pt;}
.y15a{bottom:577.463333pt;}
.y1c3{bottom:580.870000pt;}
.y20b{bottom:582.622000pt;}
.y12{bottom:583.090800pt;}
.y59{bottom:583.111867pt;}
.ye6{bottom:585.127333pt;}
.y100{bottom:585.812000pt;}
.y196{bottom:590.241467pt;}
.y236{bottom:590.289600pt;}
.y159{bottom:590.796667pt;}
.y1c2{bottom:592.870000pt;}
.y20a{bottom:594.621733pt;}
.y11{bottom:596.424133pt;}
.ya7{bottom:598.184667pt;}
.ye5{bottom:598.460667pt;}
.yff{bottom:599.145333pt;}
.y58{bottom:602.114533pt;}
.y195{bottom:603.574800pt;}
.y235{bottom:603.623267pt;}
.y158{bottom:604.130000pt;}
.y1c1{bottom:604.870000pt;}
.y209{bottom:606.621467pt;}
.ya6{bottom:610.184667pt;}
.ye4{bottom:611.794000pt;}
.yfe{bottom:612.478667pt;}
.y10{bottom:615.426667pt;}
.y57{bottom:615.447867pt;}
.y194{bottom:616.908133pt;}
.y234{bottom:616.956933pt;}
.y1c0{bottom:617.170000pt;}
.y157{bottom:617.463333pt;}
.y208{bottom:620.511600pt;}
.ya5{bottom:622.484667pt;}
.ye3{bottom:625.127333pt;}
.yfd{bottom:625.812000pt;}
.yfb{bottom:625.812267pt;}
.y56{bottom:628.781200pt;}
.yfc{bottom:630.078533pt;}
.y193{bottom:630.241467pt;}
.y233{bottom:630.290600pt;}
.y156{bottom:630.796667pt;}
.y207{bottom:632.511333pt;}
.ye2{bottom:638.460667pt;}
.y55{bottom:642.114533pt;}
.y192{bottom:643.574800pt;}
.y232{bottom:643.624267pt;}
.y13c{bottom:644.130000pt;}
.y206{bottom:646.401467pt;}
.ye1{bottom:651.794000pt;}
.y54{bottom:655.447867pt;}
.y231{bottom:656.957933pt;}
.y13b{bottom:657.463333pt;}
.y205{bottom:658.401200pt;}
.ye0{bottom:665.127333pt;}
.y53{bottom:668.781200pt;}
.y230{bottom:670.291600pt;}
.y13a{bottom:670.796667pt;}
.y204{bottom:672.291333pt;}
.y52{bottom:682.114533pt;}
.y22f{bottom:683.625267pt;}
.ydf{bottom:684.129867pt;}
.y139{bottom:684.130000pt;}
.y203{bottom:684.291067pt;}
.ycb{bottom:689.799200pt;}
.yd{bottom:695.202533pt;}
.y51{bottom:695.447867pt;}
.y22e{bottom:696.958933pt;}
.yde{bottom:697.463200pt;}
.y138{bottom:697.463333pt;}
.y202{bottom:698.181200pt;}
.yca{bottom:703.132533pt;}
.y1db{bottom:703.132667pt;}
.yc{bottom:706.402533pt;}
.y201{bottom:710.180933pt;}
.y22d{bottom:710.292600pt;}
.yc9{bottom:716.465867pt;}
.y137{bottom:716.466000pt;}
.yb{bottom:717.602533pt;}
.y200{bottom:722.180667pt;}
.y22c{bottom:723.626267pt;}
.y1cb{bottom:724.130000pt;}
.ya4{bottom:726.655333pt;}
.ya{bottom:728.802533pt;}
.yc8{bottom:729.799200pt;}
.y136{bottom:729.799333pt;}
.y8e{bottom:735.468533pt;}
.y1ff{bottom:736.070800pt;}
.y22b{bottom:736.959933pt;}
.y1ca{bottom:737.463333pt;}
.y9{bottom:740.002533pt;}
.yc7{bottom:743.132533pt;}
.y135{bottom:743.132667pt;}
.y1fe{bottom:748.070533pt;}
.y8d{bottom:748.801867pt;}
.y22a{bottom:750.293600pt;}
.y1c9{bottom:750.796667pt;}
.y8{bottom:751.202533pt;}
.y128{bottom:754.546000pt;}
.y1bf{bottom:755.780133pt;}
.yc6{bottom:756.465867pt;}
.y134{bottom:756.466000pt;}
.y1fd{bottom:761.960667pt;}
.y8c{bottom:762.135200pt;}
.y229{bottom:763.627267pt;}
.y1c8{bottom:764.130000pt;}
.y127{bottom:766.546000pt;}
.y1be{bottom:767.780133pt;}
.yc5{bottom:769.799200pt;}
.y133{bottom:769.799333pt;}
.y8b{bottom:775.468533pt;}
.y1fc{bottom:775.850800pt;}
.y228{bottom:776.960933pt;}
.y1c7{bottom:777.463333pt;}
.y126{bottom:778.846133pt;}
.y1bd{bottom:780.080133pt;}
.yc4{bottom:783.132533pt;}
.y132{bottom:783.132667pt;}
.y1fb{bottom:787.850533pt;}
.y8a{bottom:788.801867pt;}
.y1da{bottom:788.802000pt;}
.y1c6{bottom:790.796667pt;}
.y227{bottom:794.073133pt;}
.yc3{bottom:796.465867pt;}
.y131{bottom:796.466000pt;}
.y1fa{bottom:801.740667pt;}
.y89{bottom:802.135200pt;}
.y1d9{bottom:802.135333pt;}
.y1c5{bottom:804.130000pt;}
.y226{bottom:807.406800pt;}
.yc2{bottom:809.799200pt;}
.y130{bottom:809.799333pt;}
.y1f9{bottom:813.740400pt;}
.y88{bottom:815.468533pt;}
.y1d8{bottom:815.468667pt;}
.y225{bottom:820.740467pt;}
.yc1{bottom:823.132533pt;}
.y12f{bottom:823.132667pt;}
.y1f8{bottom:827.630533pt;}
.y87{bottom:828.801867pt;}
.y1d7{bottom:828.802000pt;}
.y224{bottom:834.074133pt;}
.yc0{bottom:836.465867pt;}
.y12e{bottom:836.466000pt;}
.y7{bottom:838.154800pt;}
.y1f7{bottom:839.630267pt;}
.y86{bottom:842.135200pt;}
.y1d6{bottom:842.135333pt;}
.y223{bottom:847.407800pt;}
.ybf{bottom:849.799200pt;}
.y12d{bottom:849.799333pt;}
.y1f6{bottom:853.520400pt;}
.y85{bottom:855.468533pt;}
.y1d5{bottom:855.468667pt;}
.y222{bottom:860.741467pt;}
.ybe{bottom:863.132533pt;}
.y12c{bottom:863.132667pt;}
.y5{bottom:863.678000pt;}
.y1f5{bottom:865.520133pt;}
.y6{bottom:867.944400pt;}
.y84{bottom:868.801867pt;}
.y1d4{bottom:868.802000pt;}
.y221{bottom:874.075133pt;}
.ydd{bottom:876.465867pt;}
.y12b{bottom:876.466000pt;}
.y1f4{bottom:877.519867pt;}
.y83{bottom:882.135200pt;}
.y1d3{bottom:882.135333pt;}
.y220{bottom:887.408800pt;}
.y12a{bottom:889.799333pt;}
.y1f3{bottom:891.410000pt;}
.y4{bottom:895.239067pt;}
.y82{bottom:895.468533pt;}
.y1d2{bottom:895.468667pt;}
.y21f{bottom:900.742467pt;}
.y129{bottom:903.132667pt;}
.y1f2{bottom:903.409733pt;}
.y80{bottom:908.801467pt;}
.y81{bottom:908.801867pt;}
.y1d1{bottom:908.802000pt;}
.y21e{bottom:914.076133pt;}
.y1f1{bottom:915.409467pt;}
.y3{bottom:919.239067pt;}
.y7f{bottom:922.134800pt;}
.yad{bottom:922.135200pt;}
.y1d0{bottom:922.135333pt;}
.y1f0{bottom:934.968533pt;}
.y7e{bottom:935.468133pt;}
.yac{bottom:935.468533pt;}
.y1cf{bottom:935.468667pt;}
.y49{bottom:954.996533pt;}
.yf{bottom:964.156533pt;}
.y4e{bottom:974.823600pt;}
.ya9{bottom:975.106800pt;}
.y48{bottom:976.597333pt;}
.ye{bottom:980.823200pt;}
.y4d{bottom:989.223600pt;}
.ya8{bottom:989.506800pt;}
.y47{bottom:990.997333pt;}
.h6{height:28.352000pt;}
.h9{height:28.448000pt;}
.hc{height:32.512000pt;}
.h8{height:33.002667pt;}
.h12{height:35.440000pt;}
.h13{height:35.680000pt;}
.hd{height:37.333333pt;}
.h15{height:37.418667pt;}
.he{height:37.802667pt;}
.h11{height:38.016000pt;}
.h3{height:38.304976pt;}
.ha{height:38.610717pt;}
.hf{height:38.769014pt;}
.h10{height:39.978667pt;}
.h16{height:40.392000pt;}
.h17{height:44.470052pt;}
.hb{height:45.245333pt;}
.h14{height:47.407467pt;}
.h5{height:49.973333pt;}
.h7{height:50.186667pt;}
.h4{height:80.128000pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.188000pt;}
.h0{height:1058.268000pt;}
.w2{width:793.620003pt;}
.w3{width:793.621336pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:32.132269pt;}
.x37{left:56.674003pt;}
.x2a{left:57.946136pt;}
.x42{left:58.876403pt;}
.x5d{left:63.877069pt;}
.x2b{left:69.284803pt;}
.x2d{left:72.599603pt;}
.x7c{left:76.849543pt;}
.x31{left:82.228536pt;}
.x3b{left:84.404003pt;}
.x32{left:86.808136pt;}
.x30{left:88.182269pt;}
.xd{left:95.742936pt;}
.x38{left:98.178536pt;}
.x45{left:101.672669pt;}
.xf{left:107.079469pt;}
.x4b{left:109.516669pt;}
.x3a{left:114.531336pt;}
.x18{left:122.199736pt;}
.x46{left:124.159736pt;}
.xe{left:125.977069pt;}
.x59{left:136.456003pt;}
.x6e{left:139.868803pt;}
.x48{left:144.176269pt;}
.x6{left:145.588936pt;}
.x2c{left:149.912003pt;}
.x60{left:160.143069pt;}
.x2e{left:162.436269pt;}
.x2{left:166.983336pt;}
.x73{left:169.757069pt;}
.x2f{left:172.856003pt;}
.x61{left:175.424803pt;}
.x12{left:182.670136pt;}
.x5b{left:187.050803pt;}
.x5f{left:189.390003pt;}
.x16{left:191.144669pt;}
.x72{left:203.422936pt;}
.x15{left:231.217069pt;}
.x6f{left:240.617203pt;}
.x3{left:246.098003pt;}
.x62{left:257.005336pt;}
.x5e{left:265.187869pt;}
.x75{left:266.542536pt;}
.x11{left:271.949736pt;}
.x74{left:283.148003pt;}
.x7b{left:285.236536pt;}
.x44{left:287.432136pt;}
.x13{left:290.259469pt;}
.x17{left:294.653869pt;}
.x71{left:304.005203pt;}
.x6d{left:310.977469pt;}
.x14{left:314.661736pt;}
.x1c{left:327.095736pt;}
.x1b{left:328.283469pt;}
.x5a{left:342.271603pt;}
.x70{left:353.243736pt;}
.x23{left:354.360536pt;}
.x5c{left:358.197469pt;}
.x10{left:363.327469pt;}
.x19{left:376.948003pt;}
.x4{left:378.427469pt;}
.x4c{left:379.887069pt;}
.x1a{left:381.528803pt;}
.x4d{left:384.467869pt;}
.x33{left:388.654536pt;}
.x27{left:389.559869pt;}
.x7d{left:391.204269pt;}
.x49{left:395.992003pt;}
.x47{left:398.955469pt;}
.x36{left:399.993869pt;}
.x4a{left:401.921736pt;}
.x7e{left:410.101809pt;}
.x3c{left:415.805736pt;}
.x69{left:418.891069pt;}
.x3d{left:422.785869pt;}
.x1d{left:426.449336pt;}
.x26{left:429.225069pt;}
.x20{left:437.788003pt;}
.x6c{left:439.038936pt;}
.x53{left:440.141869pt;}
.x5{left:449.639203pt;}
.x39{left:452.908803pt;}
.x63{left:454.410669pt;}
.x34{left:455.737203pt;}
.x3e{left:468.679603pt;}
.x24{left:472.591748pt;}
.x56{left:475.025736pt;}
.x57{left:484.578669pt;}
.x41{left:489.093069pt;}
.x6a{left:490.549336pt;}
.x35{left:500.173069pt;}
.x25{left:507.470403pt;}
.x55{left:508.797336pt;}
.x58{left:511.692803pt;}
.x77{left:543.674269pt;}
.x6b{left:546.130403pt;}
.x4e{left:547.664003pt;}
.x51{left:574.909069pt;}
.x52{left:579.487069pt;}
.x76{left:582.662669pt;}
.x9{left:583.597203pt;}
.x64{left:586.276936pt;}
.x7a{left:590.145336pt;}
.x43{left:592.434803pt;}
.x65{left:604.763736pt;}
.x78{left:608.397336pt;}
.x8{left:622.312803pt;}
.xc{left:626.808669pt;}
.x66{left:628.103336pt;}
.xb{left:630.760403pt;}
.x67{left:631.677869pt;}
.x29{left:634.532269pt;}
.x68{left:636.256803pt;}
.xa{left:641.945469pt;}
.x3f{left:658.107869pt;}
.x7{left:659.063736pt;}
.x1e{left:662.101336pt;}
.x40{left:665.657203pt;}
.x54{left:682.190003pt;}
.x21{left:683.948003pt;}
.x50{left:691.442269pt;}
.x1f{left:697.294136pt;}
.x22{left:718.377336pt;}
.x4f{left:720.141603pt;}
.x79{left:723.148536pt;}
.x1{left:748.258136pt;}
}




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