
    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_8d1319d4f0dbaa85c7ba2b14.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_ab6037b31195b31c516f7eb4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_caa0fc63fa4262bed6d3c304.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_d2f9c58fe977052f95dcd270.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_13c392913e61349c60a3116d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.692383;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_804ba3100835a553327e4e88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_caee426ccfab4da95b11d8d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.761719;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_018c87473ef87945bfad2676.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_394e3517d2f9e849e807a4dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;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_caba53059c2d98d1d1c13572.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_804ba3100835a553327e4e88.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_02e469587ff99587eb8beca2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_caee426ccfab4da95b11d8d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.761719;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_d744853cd29b2d8bf4badabe.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{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);}
.m5{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-13.200000px;}
.v3{vertical-align:-11.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:7.014430px;}
.vc{vertical-align:8.496000px;}
.v9{vertical-align:9.720000px;}
.v8{vertical-align:10.823400px;}
.v4{vertical-align:11.880000px;}
.v1{vertical-align:13.200000px;}
.vd{vertical-align:14.580000px;}
.va{vertical-align:16.416000px;}
.vb{vertical-align:17.496000px;}
.v5{vertical-align:56.087400px;}
.v7{vertical-align:72.000000px;}
.ls8{letter-spacing:-2.520000px;}
.ls9{letter-spacing:-0.962280px;}
.ls12{letter-spacing:-0.647400px;}
.ls10{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.498000px;}
.lsa{letter-spacing:-0.448200px;}
.lse{letter-spacing:-0.441000px;}
.lsc{letter-spacing:-0.315000px;}
.lsf{letter-spacing:-0.291060px;}
.lsd{letter-spacing:-0.207900px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.008400px;}
.lsb{letter-spacing:0.029065px;}
.ls11{letter-spacing:0.049800px;}
.ls3{letter-spacing:0.356400px;}
.ls5{letter-spacing:0.357000px;}
.ls4{letter-spacing:0.540000px;}
.ls2{letter-spacing:1.386000px;}
.ls1{letter-spacing:2.100000px;}
.ls0{letter-spacing:13.200000px;}
.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;}
}
.ws5{word-spacing:-22.413927px;}
.wsd5{word-spacing:-17.250000px;}
.ws8d{word-spacing:-15.750000px;}
.wsb7{word-spacing:-15.309000px;}
.ws28{word-spacing:-13.650000px;}
.ws1a{word-spacing:-13.200000px;}
.ws4{word-spacing:-12.450000px;}
.ws2a{word-spacing:-12.300000px;}
.ws11a{word-spacing:-12.000000px;}
.ws0{word-spacing:-11.286000px;}
.ws27{word-spacing:-10.395000px;}
.ws29{word-spacing:-10.237500px;}
.ws5c{word-spacing:-10.187100px;}
.ws3{word-spacing:-9.337500px;}
.ws1{word-spacing:-9.266400px;}
.wsab{word-spacing:-8.118000px;}
.ws2{word-spacing:-7.947720px;}
.ws77{word-spacing:-6.048000px;}
.wsc9{word-spacing:-5.040000px;}
.ws11{word-spacing:-4.806000px;}
.ws75{word-spacing:-4.284000px;}
.ws7c{word-spacing:-4.221000px;}
.ws7e{word-spacing:-4.095000px;}
.ws74{word-spacing:-3.843000px;}
.wse7{word-spacing:-3.635400px;}
.ws8{word-spacing:-3.630000px;}
.wsa{word-spacing:-3.300000px;}
.ws76{word-spacing:-3.213000px;}
.ws53{word-spacing:-3.087000px;}
.ws91{word-spacing:-2.898000px;}
.wsba{word-spacing:-2.772000px;}
.wsa3{word-spacing:-2.457000px;}
.ws11d{word-spacing:-2.400000px;}
.wsea{word-spacing:-2.340600px;}
.wsb9{word-spacing:-2.331000px;}
.ws6b{word-spacing:-2.142000px;}
.wsfc{word-spacing:-2.091600px;}
.wse2{word-spacing:-2.041800px;}
.ws54{word-spacing:-2.037420px;}
.wsc3{word-spacing:-2.016000px;}
.ws24{word-spacing:-1.992000px;}
.ws38{word-spacing:-1.953000px;}
.wse8{word-spacing:-1.792800px;}
.ws60{word-spacing:-1.764000px;}
.wsf0{word-spacing:-1.693200px;}
.ws7b{word-spacing:-1.575000px;}
.ws89{word-spacing:-1.512000px;}
.ws129{word-spacing:-1.440000px;}
.ws9{word-spacing:-1.386000px;}
.wsd0{word-spacing:-1.323000px;}
.ws19{word-spacing:-1.296000px;}
.ws20{word-spacing:-1.294800px;}
.ws78{word-spacing:-1.260000px;}
.ws12f{word-spacing:-1.248000px;}
.ws10c{word-spacing:-1.195200px;}
.wsb{word-spacing:-1.080000px;}
.ws88{word-spacing:-1.071000px;}
.ws23{word-spacing:-0.996000px;}
.wsd8{word-spacing:-0.946200px;}
.wscf{word-spacing:-0.945000px;}
.wse0{word-spacing:-0.896400px;}
.ws10e{word-spacing:-0.846600px;}
.ws87{word-spacing:-0.819000px;}
.ws125{word-spacing:-0.720000px;}
.wsf7{word-spacing:-0.597600px;}
.ws57{word-spacing:-0.546000px;}
.wsd{word-spacing:-0.540000px;}
.wsb6{word-spacing:-0.504000px;}
.wsd9{word-spacing:-0.448200px;}
.ws130{word-spacing:-0.432000px;}
.wse6{word-spacing:-0.398400px;}
.ws15{word-spacing:-0.356400px;}
.wsbb{word-spacing:-0.252000px;}
.ws72{word-spacing:-0.189000px;}
.ws22{word-spacing:-0.099600px;}
.wsf1{word-spacing:-0.049800px;}
.ws127{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.wsb3{word-spacing:0.041580px;}
.wseb{word-spacing:0.049800px;}
.wsb0{word-spacing:0.063000px;}
.ws93{word-spacing:0.124740px;}
.ws4d{word-spacing:0.126000px;}
.ws92{word-spacing:0.189000px;}
.ws11b{word-spacing:0.192000px;}
.ws12{word-spacing:0.216000px;}
.ws106{word-spacing:0.249000px;}
.ws73{word-spacing:0.315000px;}
.wsa9{word-spacing:0.327600px;}
.ws82{word-spacing:0.332640px;}
.ws97{word-spacing:0.378000px;}
.wsc7{word-spacing:0.441000px;}
.ws1e{word-spacing:0.448200px;}
.ws128{word-spacing:0.480000px;}
.wsf5{word-spacing:0.498000px;}
.ws81{word-spacing:0.504000px;}
.ws1b{word-spacing:0.547800px;}
.ws71{word-spacing:0.567000px;}
.ws123{word-spacing:0.624000px;}
.wsb5{word-spacing:0.630000px;}
.wse4{word-spacing:0.647400px;}
.wsfd{word-spacing:0.697200px;}
.ws86{word-spacing:0.756000px;}
.ws80{word-spacing:0.819000px;}
.ws126{word-spacing:0.912000px;}
.ws85{word-spacing:0.945000px;}
.wse3{word-spacing:0.946200px;}
.wse1{word-spacing:0.996000px;}
.wsa8{word-spacing:1.008000px;}
.ws10a{word-spacing:1.195200px;}
.ws5e{word-spacing:1.197000px;}
.ws12b{word-spacing:1.248000px;}
.ws4c{word-spacing:1.260000px;}
.ws11e{word-spacing:1.296000px;}
.ws62{word-spacing:1.323000px;}
.wsde{word-spacing:1.344600px;}
.ws1f{word-spacing:1.394400px;}
.ws63{word-spacing:1.512000px;}
.ws12e{word-spacing:1.536000px;}
.ws55{word-spacing:1.575000px;}
.ws9e{word-spacing:1.580040px;}
.wsfb{word-spacing:1.643400px;}
.ws6a{word-spacing:1.764000px;}
.ws12c{word-spacing:1.824000px;}
.ws1d{word-spacing:1.842600px;}
.ws79{word-spacing:1.890000px;}
.ws65{word-spacing:1.953000px;}
.ws6e{word-spacing:2.016000px;}
.ws56{word-spacing:2.079000px;}
.ws21{word-spacing:2.091600px;}
.ws26{word-spacing:2.112000px;}
.ws64{word-spacing:2.205000px;}
.ws12a{word-spacing:2.208000px;}
.ws1c{word-spacing:2.241000px;}
.ws11c{word-spacing:2.256000px;}
.ws42{word-spacing:2.268000px;}
.ws10d{word-spacing:2.340600px;}
.ws9f{word-spacing:2.394000px;}
.wsbe{word-spacing:2.457000px;}
.ws12d{word-spacing:2.640000px;}
.wsec{word-spacing:2.689200px;}
.wsca{word-spacing:2.709000px;}
.wsf9{word-spacing:2.739000px;}
.wsa6{word-spacing:2.772000px;}
.ws25{word-spacing:2.832000px;}
.wsc0{word-spacing:2.835000px;}
.ws118{word-spacing:2.838600px;}
.wsf8{word-spacing:2.888400px;}
.ws83{word-spacing:2.898000px;}
.ws16{word-spacing:2.916000px;}
.ws114{word-spacing:2.988000px;}
.wsdf{word-spacing:3.037800px;}
.ws104{word-spacing:3.087000px;}
.ws41{word-spacing:3.150000px;}
.wsd7{word-spacing:3.187200px;}
.wscc{word-spacing:3.213000px;}
.ws3b{word-spacing:3.276000px;}
.wsce{word-spacing:3.284820px;}
.wsf6{word-spacing:3.286800px;}
.ws101{word-spacing:3.402000px;}
.wsef{word-spacing:3.436200px;}
.ws14{word-spacing:3.510000px;}
.wsbf{word-spacing:3.528000px;}
.ws3a{word-spacing:3.575880px;}
.wsb1{word-spacing:3.591000px;}
.wsee{word-spacing:3.635400px;}
.ws99{word-spacing:3.654000px;}
.ws10b{word-spacing:3.735000px;}
.ws11f{word-spacing:3.840000px;}
.ws17{word-spacing:3.888000px;}
.wsa2{word-spacing:3.906000px;}
.ws116{word-spacing:3.934200px;}
.ws7f{word-spacing:3.969000px;}
.wsc{word-spacing:3.996000px;}
.ws84{word-spacing:4.032000px;}
.wsdc{word-spacing:4.282800px;}
.wsd1{word-spacing:4.284000px;}
.ws10{word-spacing:4.320000px;}
.wsa4{word-spacing:4.347000px;}
.wsf{word-spacing:4.428000px;}
.wsdb{word-spacing:4.531800px;}
.ws6f{word-spacing:4.599000px;}
.ws4a{word-spacing:4.662000px;}
.ws3c{word-spacing:4.788000px;}
.ws124{word-spacing:4.800000px;}
.ws43{word-spacing:4.851000px;}
.ws13{word-spacing:4.860000px;}
.wse5{word-spacing:4.880400px;}
.wsb4{word-spacing:4.977000px;}
.ws105{word-spacing:4.980000px;}
.wsa0{word-spacing:5.040000px;}
.ws9c{word-spacing:5.114340px;}
.ws67{word-spacing:5.292000px;}
.ws39{word-spacing:5.418000px;}
.wse9{word-spacing:5.428200px;}
.ws7d{word-spacing:5.481000px;}
.wsc8{word-spacing:5.544000px;}
.wsae{word-spacing:5.607000px;}
.ws111{word-spacing:5.677200px;}
.wsf4{word-spacing:5.776800px;}
.wsda{word-spacing:5.826600px;}
.ws7a{word-spacing:5.859000px;}
.ws112{word-spacing:5.926200px;}
.ws120{word-spacing:5.952000px;}
.ws5f{word-spacing:5.985000px;}
.ws96{word-spacing:6.048000px;}
.wsfa{word-spacing:6.075600px;}
.wsbc{word-spacing:6.174000px;}
.ws122{word-spacing:6.192000px;}
.wsed{word-spacing:6.225000px;}
.wsd2{word-spacing:6.237000px;}
.ws50{word-spacing:6.300000px;}
.ws115{word-spacing:6.324600px;}
.ws121{word-spacing:6.384000px;}
.wsb2{word-spacing:6.489000px;}
.wsf3{word-spacing:6.523800px;}
.wsc2{word-spacing:6.552000px;}
.ws9d{word-spacing:6.615000px;}
.wsf2{word-spacing:6.723000px;}
.ws6c{word-spacing:6.741000px;}
.ws70{word-spacing:6.804000px;}
.ws94{word-spacing:6.993000px;}
.ws108{word-spacing:7.171200px;}
.ws8a{word-spacing:7.245000px;}
.wscd{word-spacing:7.308000px;}
.ws107{word-spacing:7.320600px;}
.wsa7{word-spacing:7.371000px;}
.wsff{word-spacing:7.497000px;}
.ws109{word-spacing:7.519800px;}
.wsd4{word-spacing:7.560000px;}
.wsc4{word-spacing:7.623000px;}
.wsd6{word-spacing:7.719000px;}
.ws9b{word-spacing:7.749000px;}
.ws102{word-spacing:7.875000px;}
.wsc5{word-spacing:8.149680px;}
.ws66{word-spacing:8.190000px;}
.ws18{word-spacing:8.262000px;}
.ws44{word-spacing:8.568000px;}
.wsc1{word-spacing:8.631000px;}
.ws4e{word-spacing:8.694000px;}
.ws40{word-spacing:8.757000px;}
.ws98{word-spacing:8.820000px;}
.wsfe{word-spacing:8.946000px;}
.ws110{word-spacing:9.013800px;}
.wsd3{word-spacing:9.072000px;}
.ws103{word-spacing:9.135000px;}
.ws52{word-spacing:9.438660px;}
.ws61{word-spacing:9.450000px;}
.ws119{word-spacing:9.561600px;}
.ws3d{word-spacing:9.639000px;}
.ws9a{word-spacing:10.143000px;}
.wscb{word-spacing:10.647000px;}
.ws46{word-spacing:10.710000px;}
.ws6d{word-spacing:11.088000px;}
.ws45{word-spacing:11.718000px;}
.ws10f{word-spacing:11.952000px;}
.wsa1{word-spacing:11.970000px;}
.ws95{word-spacing:12.285000px;}
.wsc6{word-spacing:12.348000px;}
.ws100{word-spacing:12.537000px;}
.ws4f{word-spacing:12.978000px;}
.ws8c{word-spacing:13.209000px;}
.ws3f{word-spacing:13.230000px;}
.ws5b{word-spacing:13.362000px;}
.ws8b{word-spacing:13.734000px;}
.ws117{word-spacing:14.193000px;}
.ws51{word-spacing:14.301000px;}
.ws49{word-spacing:14.553000px;}
.ws69{word-spacing:15.057000px;}
.wsbd{word-spacing:15.498000px;}
.ws48{word-spacing:15.687000px;}
.wse{word-spacing:15.714000px;}
.wsa5{word-spacing:15.750000px;}
.wsaf{word-spacing:16.128000px;}
.ws47{word-spacing:16.317000px;}
.ws113{word-spacing:17.878200px;}
.ws3e{word-spacing:17.892000px;}
.ws4b{word-spacing:18.144000px;}
.ws68{word-spacing:18.522000px;}
.ws59{word-spacing:20.094000px;}
.wsdd{word-spacing:25.099200px;}
.ws2c{word-spacing:28.908000px;}
.ws32{word-spacing:29.412000px;}
.ws58{word-spacing:30.753000px;}
.ws2d{word-spacing:33.192000px;}
.ws2f{word-spacing:33.660000px;}
.ws37{word-spacing:35.100000px;}
.ws30{word-spacing:35.532000px;}
.ws33{word-spacing:38.340000px;}
.ws34{word-spacing:38.700000px;}
.ws36{word-spacing:44.028000px;}
.ws2e{word-spacing:46.872000px;}
.ws5a{word-spacing:49.113000px;}
.ws35{word-spacing:49.248000px;}
.ws31{word-spacing:62.532000px;}
.wsac{word-spacing:167.163000px;}
.wsad{word-spacing:197.242800px;}
.ws8f{word-spacing:460.665600px;}
.ws2b{word-spacing:483.798000px;}
.ws8e{word-spacing:551.700000px;}
.ws90{word-spacing:583.567200px;}
.ws7{word-spacing:738.380400px;}
.wsb8{word-spacing:1405.800000px;}
.wsaa{word-spacing:1459.935000px;}
.ws5d{word-spacing:1917.826800px;}
._20{margin-left:-18.963000px;}
._11{margin-left:-14.209650px;}
._1f{margin-left:-12.953850px;}
._c{margin-left:-8.882842px;}
._5{margin-left:-7.740000px;}
._0{margin-left:-5.650200px;}
._3{margin-left:-4.292400px;}
._9{margin-left:-2.683800px;}
._2{margin-left:-1.620600px;}
._8{width:1.176360px;}
._4{width:2.503200px;}
._6{width:3.625800px;}
._a{width:4.856891px;}
._b{width:6.109643px;}
._14{width:7.497000px;}
._13{width:8.568000px;}
._16{width:9.639000px;}
._1e{width:10.710000px;}
._10{width:11.781000px;}
._15{width:13.167000px;}
._7{width:16.189800px;}
._18{width:56.373000px;}
._1d{width:190.392000px;}
._19{width:227.064000px;}
._1c{width:292.500000px;}
._1b{width:388.194000px;}
._1a{width:422.338800px;}
._1{width:476.505600px;}
._12{width:566.538000px;}
._f{width:579.351600px;}
._e{width:670.364400px;}
._17{width:1057.480200px;}
._d{width:1906.898400px;}
.fc3{color:transparent;}
.fc2{color:rgb(79,76,77);}
.fc1{color:rgb(101,98,99);}
.fc0{color:rgb(35,31,32);}
.fs14{font-size:32.472000px;}
.fs6{font-size:35.640000px;}
.fs16{font-size:36.000000px;}
.fsa{font-size:37.350000px;}
.fs5{font-size:39.600000px;}
.fs12{font-size:40.950000px;}
.fsf{font-size:41.580000px;}
.fs1{font-size:42.000000px;}
.fsb{font-size:43.365096px;}
.fs0{font-size:43.800000px;}
.fs18{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs13{font-size:49.200000px;}
.fs9{font-size:49.800000px;}
.fs15{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs11{font-size:54.600000px;}
.fs4{font-size:60.000000px;}
.fse{font-size:63.000000px;}
.fsd{font-size:63.098325px;}
.fs2{font-size:66.000000px;}
.fs17{font-size:69.000000px;}
.fsc{font-size:80.625638px;}
.fs3{font-size:126.000000px;}
.fs10{font-size:171.743400px;}
.y0{bottom:0.000000px;}
.y36{bottom:2.815587px;}
.y35{bottom:4.568319px;}
.y84{bottom:31.934250px;}
.y6e{bottom:31.935150px;}
.y33{bottom:59.527588px;}
.y1{bottom:82.913400px;}
.yae{bottom:172.184400px;}
.y10a{bottom:172.202100px;}
.y1aa{bottom:172.204650px;}
.yca{bottom:172.204800px;}
.y1f9{bottom:184.730400px;}
.y230{bottom:184.832850px;}
.yad{bottom:190.249650px;}
.y18b{bottom:190.266600px;}
.y136{bottom:190.284600px;}
.y1a9{bottom:190.406550px;}
.y2e{bottom:190.495050px;}
.yc9{bottom:190.626300px;}
.yf8{bottom:190.643700px;}
.y109{bottom:191.178150px;}
.y13d{bottom:191.634150px;}
.y1f8{bottom:197.256000px;}
.y22f{bottom:197.460900px;}
.y82{bottom:202.351800px;}
.y73{bottom:202.564500px;}
.y7e{bottom:203.658150px;}
.y79{bottom:204.180150px;}
.y8c{bottom:204.630000px;}
.y2d{bottom:207.196950px;}
.yac{bottom:208.314900px;}
.y18a{bottom:208.324950px;}
.y135{bottom:208.364400px;}
.y1a8{bottom:208.608300px;}
.yc8{bottom:209.047650px;}
.yf7{bottom:209.071200px;}
.y1f7{bottom:209.781750px;}
.y108{bottom:210.156900px;}
.y13c{bottom:211.063650px;}
.y81{bottom:212.854800px;}
.y72{bottom:213.067500px;}
.y7d{bottom:213.405150px;}
.y22e{bottom:213.765900px;}
.y78{bottom:213.927150px;}
.y8b{bottom:214.377000px;}
.y8f{bottom:215.745600px;}
.y2c{bottom:219.196950px;}
.y80{bottom:223.357800px;}
.y71{bottom:223.570500px;}
.y8e{bottom:226.248600px;}
.yab{bottom:226.380150px;}
.y189{bottom:226.390200px;}
.y22d{bottom:226.393950px;}
.y134{bottom:226.443000px;}
.y1f6{bottom:226.807500px;}
.y1a7{bottom:226.810050px;}
.yf6{bottom:227.498700px;}
.y107{bottom:229.132800px;}
.y13b{bottom:230.493150px;}
.y2b{bottom:231.196950px;}
.yc7{bottom:235.163250px;}
.y8d{bottom:236.751600px;}
.y22c{bottom:239.022000px;}
.y1f5{bottom:239.335050px;}
.y7f{bottom:243.150150px;}
.y77{bottom:243.348150px;}
.y8a{bottom:244.023000px;}
.yaa{bottom:244.445400px;}
.y188{bottom:244.452000px;}
.y133{bottom:244.524000px;}
.y1a6{bottom:245.011800px;}
.yf5{bottom:245.930100px;}
.y106{bottom:248.106150px;}
.y2a{bottom:249.574950px;}
.y13a{bottom:249.922650px;}
.y1f4{bottom:251.859750px;}
.y22b{bottom:255.327000px;}
.y29{bottom:262.024950px;}
.y187{bottom:262.506750px;}
.ya9{bottom:262.510650px;}
.y132{bottom:262.603800px;}
.y1a5{bottom:263.213550px;}
.yf4{bottom:264.361350px;}
.y1f3{bottom:264.384450px;}
.y105{bottom:267.084900px;}
.y22a{bottom:267.955050px;}
.y139{bottom:269.346150px;}
.y7c{bottom:272.085150px;}
.y89{bottom:273.372000px;}
.y76{bottom:273.552150px;}
.y28{bottom:274.474950px;}
.yc6{bottom:277.584750px;}
.ya8{bottom:280.555650px;}
.y186{bottom:280.572000px;}
.y229{bottom:280.583100px;}
.y131{bottom:280.683600px;}
.y1f2{bottom:281.410200px;}
.y1a4{bottom:281.415300px;}
.y7b{bottom:281.832150px;}
.yf3{bottom:282.792750px;}
.y88{bottom:283.119000px;}
.y75{bottom:283.299150px;}
.y27{bottom:286.924950px;}
.y138{bottom:288.781650px;}
.y228{bottom:293.215050px;}
.y1f1{bottom:293.936850px;}
.yc5{bottom:296.006100px;}
.ya7{bottom:298.620900px;}
.y185{bottom:298.637250px;}
.y26{bottom:299.374950px;}
.y1a3{bottom:299.617200px;}
.yf2{bottom:301.224000px;}
.y104{bottom:301.225050px;}
.y227{bottom:305.839350px;}
.y1f0{bottom:306.461550px;}
.y130{bottom:307.449000px;}
.y137{bottom:308.211000px;}
.y25{bottom:311.824950px;}
.y7a{bottom:312.198150px;}
.y74{bottom:312.315150px;}
.y87{bottom:313.116000px;}
.yc4{bottom:314.403450px;}
.ya6{bottom:316.686150px;}
.y184{bottom:316.699050px;}
.y1a2{bottom:317.818950px;}
.y1ef{bottom:318.987300px;}
.yf1{bottom:319.655250px;}
.y103{bottom:320.200050px;}
.y226{bottom:322.144200px;}
.y24{bottom:324.274950px;}
.y6d{bottom:330.802500px;}
.yc3{bottom:332.830950px;}
.y83{bottom:332.929500px;}
.ya5{bottom:334.751400px;}
.y183{bottom:334.757400px;}
.y225{bottom:334.772250px;}
.y1ee{bottom:336.013050px;}
.y23{bottom:336.724950px;}
.yf0{bottom:338.086650px;}
.y70{bottom:338.737650px;}
.y86{bottom:340.863750px;}
.y224{bottom:347.400450px;}
.y1a1{bottom:348.020700px;}
.y1ed{bottom:348.538650px;}
.y22{bottom:349.174950px;}
.y6f{bottom:350.737650px;}
.yc2{bottom:351.258450px;}
.ya4{bottom:352.816650px;}
.y182{bottom:352.822650px;}
.y85{bottom:352.863750px;}
.yef{bottom:356.517900px;}
.y16b{bottom:358.177800px;}
.y1ec{bottom:361.064400px;}
.y21{bottom:361.624950px;}
.y223{bottom:363.705300px;}
.y102{bottom:369.496650px;}
.yc1{bottom:369.685950px;}
.ya3{bottom:370.877850px;}
.y181{bottom:370.884450px;}
.y16a{bottom:373.509300px;}
.y1eb{bottom:373.591050px;}
.y20{bottom:374.074950px;}
.yee{bottom:374.949300px;}
.y222{bottom:376.333350px;}
.y1a0{bottom:378.222450px;}
.y1ea{bottom:386.115750px;}
.y1f{bottom:386.524950px;}
.y169{bottom:387.759300px;}
.yc0{bottom:388.113450px;}
.y101{bottom:388.475400px;}
.ya2{bottom:388.926750px;}
.y180{bottom:388.942800px;}
.y221{bottom:388.961550px;}
.yed{bottom:393.399750px;}
.y19f{bottom:396.424200px;}
.y220{bottom:401.589600px;}
.y168{bottom:403.090650px;}
.y1e9{bottom:403.142550px;}
.y1e{bottom:405.352950px;}
.ybf{bottom:406.534950px;}
.ya1{bottom:406.992000px;}
.y17f{bottom:407.008050px;}
.y100{bottom:407.454150px;}
.yec{bottom:411.827250px;}
.y19e{bottom:414.615600px;}
.y1e8{bottom:415.667250px;}
.y21f{bottom:417.894450px;}
.y167{bottom:418.422150px;}
.y6a{bottom:420.519750px;}
.y6c{bottom:420.881700px;}
.ybe{bottom:424.956300px;}
.ya0{bottom:425.057250px;}
.y17e{bottom:425.062950px;}
.yff{bottom:426.430200px;}
.y1e7{bottom:428.192850px;}
.yeb{bottom:430.254750px;}
.y21e{bottom:430.526400px;}
.y19d{bottom:432.822600px;}
.y69{bottom:433.269750px;}
.y166{bottom:433.747950px;}
.y1e6{bottom:440.718600px;}
.y9f{bottom:443.122500px;}
.y17d{bottom:443.128200px;}
.y21d{bottom:443.150700px;}
.ybd{bottom:443.377800px;}
.y6b{bottom:444.800700px;}
.yfe{bottom:445.406250px;}
.y68{bottom:446.019750px;}
.y165{bottom:448.003650px;}
.yea{bottom:448.682250px;}
.y19c{bottom:451.029600px;}
.y1e5{bottom:457.744200px;}
.y67{bottom:458.769750px;}
.y21c{bottom:459.455550px;}
.y9e{bottom:461.183700px;}
.y17c{bottom:461.193450px;}
.ybc{bottom:461.799150px;}
.y164{bottom:463.335150px;}
.yfd{bottom:464.382300px;}
.ye9{bottom:467.109750px;}
.y1d{bottom:467.598450px;}
.y19b{bottom:469.226100px;}
.y1e4{bottom:470.269950px;}
.y66{bottom:471.519750px;}
.y21b{bottom:472.083750px;}
.y163{bottom:478.666650px;}
.y17b{bottom:479.234400px;}
.y9d{bottom:479.244900px;}
.ybb{bottom:480.220800px;}
.y1e3{bottom:482.795700px;}
.yfc{bottom:483.358350px;}
.y21a{bottom:484.711800px;}
.ye8{bottom:485.537250px;}
.y19a{bottom:487.433100px;}
.y1c{bottom:491.922750px;}
.y162{bottom:492.916650px;}
.y1e2{bottom:495.321300px;}
.y17a{bottom:497.299650px;}
.y9c{bottom:497.306100px;}
.yba{bottom:498.636150px;}
.y219{bottom:501.016800px;}
.yfb{bottom:502.334400px;}
.ye7{bottom:503.972400px;}
.y199{bottom:505.635000px;}
.y161{bottom:508.260150px;}
.y1e1{bottom:512.347050px;}
.y1b{bottom:512.456700px;}
.y218{bottom:513.644850px;}
.y179{bottom:515.364900px;}
.y9b{bottom:515.367300px;}
.yb9{bottom:517.063650px;}
.yfa{bottom:521.310450px;}
.ye6{bottom:522.399900px;}
.y160{bottom:523.591500px;}
.y198{bottom:523.836750px;}
.y1e0{bottom:524.872800px;}
.y217{bottom:526.272900px;}
.y1a{bottom:527.456700px;}
.y65{bottom:529.035900px;}
.y9a{bottom:533.424450px;}
.y178{bottom:533.430150px;}
.yb8{bottom:535.485150px;}
.y1df{bottom:537.399450px;}
.y216{bottom:538.900950px;}
.y15f{bottom:538.923000px;}
.yf9{bottom:540.283800px;}
.ye5{bottom:540.835050px;}
.y197{bottom:542.038500px;}
.y19{bottom:542.456700px;}
.y64{bottom:543.280200px;}
.y1de{bottom:549.924150px;}
.y99{bottom:551.489700px;}
.y177{bottom:551.495400px;}
.y215{bottom:551.529150px;}
.yb7{bottom:553.900500px;}
.y15e{bottom:554.254500px;}
.y18{bottom:557.456700px;}
.y63{bottom:557.535900px;}
.ye4{bottom:559.262550px;}
.y196{bottom:560.235150px;}
.y1dd{bottom:566.949750px;}
.y214{bottom:567.834000px;}
.y98{bottom:569.538600px;}
.y176{bottom:569.560650px;}
.y15d{bottom:569.586000px;}
.y62{bottom:571.785900px;}
.yb6{bottom:572.328000px;}
.y17{bottom:572.456700px;}
.y195{bottom:578.442150px;}
.y1dc{bottom:579.475500px;}
.y213{bottom:580.462200px;}
.y15c{bottom:583.836000px;}
.y61{bottom:586.266900px;}
.y16{bottom:587.456700px;}
.y97{bottom:587.603850px;}
.y175{bottom:587.625900px;}
.yb5{bottom:590.749500px;}
.y1db{bottom:592.001100px;}
.y212{bottom:593.090250px;}
.y194{bottom:596.643900px;}
.y15b{bottom:599.167350px;}
.y60{bottom:600.516900px;}
.y254{bottom:601.852500px;}
.y15{bottom:602.456700px;}
.y12f{bottom:603.298050px;}
.y96{bottom:605.669100px;}
.y174{bottom:605.687700px;}
.y211{bottom:605.718300px;}
.y1da{bottom:608.355300px;}
.yb4{bottom:609.152700px;}
.y15a{bottom:614.498850px;}
.y5f{bottom:614.766900px;}
.y193{bottom:614.840400px;}
.y14{bottom:617.456700px;}
.y253{bottom:618.100500px;}
.y210{bottom:618.346350px;}
.y12e{bottom:620.027400px;}
.y1d9{bottom:620.881050px;}
.y95{bottom:623.734350px;}
.y173{bottom:623.749500px;}
.yb3{bottom:627.580200px;}
.y159{bottom:628.748850px;}
.y5e{bottom:629.016900px;}
.y20f{bottom:630.974550px;}
.y13{bottom:632.456700px;}
.y192{bottom:633.047400px;}
.y1d8{bottom:633.406650px;}
.y252{bottom:634.352400px;}
.y12d{bottom:634.508550px;}
.y94{bottom:641.795550px;}
.y172{bottom:641.811300px;}
.y5d{bottom:643.266900px;}
.y158{bottom:644.080350px;}
.y1d7{bottom:645.932400px;}
.yb2{bottom:646.007700px;}
.y251{bottom:646.352400px;}
.y20e{bottom:647.279400px;}
.y12{bottom:647.456700px;}
.y12c{bottom:648.758550px;}
.y191{bottom:651.238800px;}
.y5c{bottom:657.748050px;}
.y157{bottom:658.330350px;}
.y250{bottom:658.352400px;}
.y93{bottom:659.844450px;}
.y171{bottom:659.866200px;}
.y20d{bottom:659.907600px;}
.y1d6{bottom:662.286600px;}
.y11{bottom:662.456700px;}
.yb1{bottom:664.435200px;}
.y12b{bottom:664.727850px;}
.y190{bottom:669.445800px;}
.y24f{bottom:670.352400px;}
.y5b{bottom:671.998050px;}
.y20c{bottom:672.535650px;}
.y156{bottom:673.667550px;}
.y1d5{bottom:674.812200px;}
.y92{bottom:677.909700px;}
.y170{bottom:677.931450px;}
.y12a{bottom:679.208850px;}
.y10{bottom:680.426700px;}
.y24e{bottom:682.352400px;}
.yb0{bottom:682.856700px;}
.y20b{bottom:685.163700px;}
.y5a{bottom:686.248050px;}
.y1d4{bottom:687.337950px;}
.y18f{bottom:687.652800px;}
.y155{bottom:688.993350px;}
.y129{bottom:693.690000px;}
.y24d{bottom:694.352400px;}
.y91{bottom:695.974950px;}
.y16f{bottom:695.996700px;}
.y20a{bottom:697.791750px;}
.y154{bottom:703.243350px;}
.y1d3{bottom:703.692000px;}
.y59{bottom:703.705500px;}
.y18e{bottom:705.854550px;}
.y24c{bottom:706.352400px;}
.y123{bottom:707.928600px;}
.y128{bottom:707.940000px;}
.yf{bottom:711.590550px;}
.yaf{bottom:713.278200px;}
.y90{bottom:714.040200px;}
.y16e{bottom:714.058350px;}
.y1d2{bottom:716.217750px;}
.y58{bottom:717.355500px;}
.y24b{bottom:718.352400px;}
.y153{bottom:718.586850px;}
.y122{bottom:722.184300px;}
.y127{bottom:722.190000px;}
.y18d{bottom:724.056300px;}
.y209{bottom:727.427700px;}
.ye{bottom:728.090550px;}
.y1d1{bottom:728.743350px;}
.y24a{bottom:730.352400px;}
.y16d{bottom:732.120150px;}
.y152{bottom:733.930350px;}
.y126{bottom:736.428600px;}
.y121{bottom:736.440000px;}
.y249{bottom:742.352400px;}
.yd{bottom:744.590550px;}
.y1d0{bottom:745.097550px;}
.y151{bottom:749.261700px;}
.y16c{bottom:750.181950px;}
.y125{bottom:750.684300px;}
.y120{bottom:750.690000px;}
.y18c{bottom:750.943650px;}
.y248{bottom:754.352400px;}
.y1cf{bottom:757.623300px;}
.yc{bottom:761.090550px;}
.ycc{bottom:763.882800px;}
.y150{bottom:764.593200px;}
.y11f{bottom:764.940000px;}
.y247{bottom:766.352400px;}
.y1ce{bottom:770.148900px;}
.y47{bottom:775.133850px;}
.y57{bottom:775.140000px;}
.ycb{bottom:776.632800px;}
.y246{bottom:778.352400px;}
.y11e{bottom:779.190000px;}
.y208{bottom:779.621550px;}
.y14f{bottom:779.919000px;}
.ye3{bottom:781.587300px;}
.y1cd{bottom:786.503100px;}
.y245{bottom:790.352400px;}
.y46{bottom:793.170150px;}
.y56{bottom:793.173750px;}
.y124{bottom:793.425900px;}
.y11d{bottom:793.440000px;}
.y14e{bottom:794.174700px;}
.ye2{bottom:795.087300px;}
.y207{bottom:797.802300px;}
.yb{bottom:798.850350px;}
.y1cc{bottom:799.028850px;}
.y1b9{bottom:800.708850px;}
.y244{bottom:802.352400px;}
.y11c{bottom:807.921000px;}
.y14d{bottom:808.430400px;}
.y45{bottom:811.209000px;}
.y55{bottom:811.213800px;}
.y243{bottom:814.352400px;}
.ye1{bottom:814.581300px;}
.y1cb{bottom:815.382900px;}
.y206{bottom:815.977800px;}
.y1b8{bottom:816.465600px;}
.y11b{bottom:822.402150px;}
.y14c{bottom:823.756200px;}
.ye0{bottom:825.084300px;}
.y242{bottom:826.352400px;}
.y1ca{bottom:827.909700px;}
.y44{bottom:829.242750px;}
.y54{bottom:829.253850px;}
.y1b7{bottom:832.222200px;}
.ya{bottom:833.350350px;}
.y205{bottom:834.155850px;}
.ydf{bottom:835.587300px;}
.y11a{bottom:836.883150px;}
.y14b{bottom:838.006200px;}
.y241{bottom:838.352400px;}
.y1c9{bottom:840.434400px;}
.y43{bottom:847.286700px;}
.y53{bottom:847.293750px;}
.yde{bottom:849.087300px;}
.y1b6{bottom:849.467100px;}
.y240{bottom:850.352400px;}
.y119{bottom:851.133150px;}
.y204{bottom:852.344400px;}
.y14a{bottom:853.337550px;}
.y1c8{bottom:856.788450px;}
.y23f{bottom:862.352400px;}
.y1b5{bottom:865.223850px;}
.y42{bottom:865.320450px;}
.y52{bottom:865.333800px;}
.y118{bottom:865.614300px;}
.y149{bottom:867.587550px;}
.y9{bottom:867.850350px;}
.y1c7{bottom:869.314050px;}
.y203{bottom:870.519900px;}
.y23e{bottom:874.352400px;}
.y117{bottom:879.864300px;}
.y1c6{bottom:881.839800px;}
.y1b4{bottom:882.468600px;}
.y41{bottom:883.354200px;}
.y51{bottom:883.373700px;}
.y148{bottom:884.407350px;}
.y23d{bottom:886.352400px;}
.y202{bottom:888.695400px;}
.ydd{bottom:889.622550px;}
.yd7{bottom:890.473050px;}
.y115{bottom:895.084950px;}
.y1c5{bottom:898.194000px;}
.y1b3{bottom:898.225350px;}
.y23c{bottom:898.352400px;}
.y147{bottom:899.733150px;}
.ydc{bottom:900.125550px;}
.yd6{bottom:900.976050px;}
.y40{bottom:901.387950px;}
.y50{bottom:901.413750px;}
.y8{bottom:902.350350px;}
.y201{bottom:906.870900px;}
.y114{bottom:909.334950px;}
.y23b{bottom:910.352400px;}
.ydb{bottom:910.628550px;}
.y1c4{bottom:910.719600px;}
.yd5{bottom:911.479050px;}
.y146{bottom:913.988850px;}
.y1b2{bottom:915.470550px;}
.y3f{bottom:919.424250px;}
.y4f{bottom:919.453800px;}
.yda{bottom:921.131550px;}
.yd4{bottom:921.982050px;}
.y23a{bottom:922.352400px;}
.y1c3{bottom:923.245350px;}
.y113{bottom:923.584950px;}
.y200{bottom:925.046400px;}
.y145{bottom:930.820350px;}
.y1b1{bottom:931.226850px;}
.yd9{bottom:931.634550px;}
.yd3{bottom:932.485050px;}
.y239{bottom:934.352400px;}
.y7{bottom:936.850350px;}
.y3e{bottom:937.460550px;}
.y4e{bottom:937.493700px;}
.y112{bottom:937.834950px;}
.y1c2{bottom:939.599400px;}
.y1ff{bottom:943.224450px;}
.yd8{bottom:945.134550px;}
.y1b0{bottom:945.476850px;}
.yd2{bottom:945.985050px;}
.y144{bottom:946.151850px;}
.y238{bottom:946.352400px;}
.y116{bottom:952.079250px;}
.y111{bottom:952.084950px;}
.y1c1{bottom:952.126050px;}
.y3d{bottom:955.499400px;}
.y4d{bottom:955.533750px;}
.y237{bottom:958.356450px;}
.y1fe{bottom:961.402650px;}
.y1af{bottom:962.721750px;}
.y143{bottom:962.971500px;}
.y1c0{bottom:964.650750px;}
.y110{bottom:966.334950px;}
.y3c{bottom:973.533150px;}
.y4c{bottom:973.573800px;}
.y236{bottom:974.604450px;}
.y142{bottom:978.303000px;}
.y1ae{bottom:978.478350px;}
.y1fd{bottom:979.580700px;}
.y10f{bottom:980.584950px;}
.y1bf{bottom:981.676500px;}
.yd1{bottom:982.678800px;}
.y235{bottom:986.604450px;}
.y3b{bottom:991.572000px;}
.y4b{bottom:991.613700px;}
.y141{bottom:992.553000px;}
.yd0{bottom:993.181800px;}
.y1be{bottom:994.202250px;}
.y1ad{bottom:994.235100px;}
.y10e{bottom:994.834950px;}
.y6{bottom:996.862200px;}
.y1fc{bottom:997.758750px;}
.y234{bottom:998.604450px;}
.ycf{bottom:1003.684800px;}
.y140{bottom:1007.884500px;}
.y1ac{bottom:1008.485100px;}
.y3a{bottom:1009.605750px;}
.y4a{bottom:1009.653750px;}
.y1bd{bottom:1010.404650px;}
.y233{bottom:1010.604450px;}
.y10d{bottom:1012.292400px;}
.yce{bottom:1014.187800px;}
.y1fb{bottom:1015.936800px;}
.y1bc{bottom:1022.930400px;}
.y13f{bottom:1025.492100px;}
.y1ab{bottom:1025.942400px;}
.y232{bottom:1026.856350px;}
.y39{bottom:1027.644750px;}
.ycd{bottom:1027.687800px;}
.y49{bottom:1027.691550px;}
.y48{bottom:1027.693800px;}
.y10c{bottom:1029.021900px;}
.y1bb{bottom:1035.456150px;}
.y32{bottom:1037.333850px;}
.y30{bottom:1037.334000px;}
.y231{bottom:1038.856350px;}
.y13e{bottom:1042.521900px;}
.y10b{bottom:1042.671900px;}
.y1fa{bottom:1044.931650px;}
.y38{bottom:1045.678500px;}
.y1ba{bottom:1047.981750px;}
.y31{bottom:1049.333850px;}
.y2f{bottom:1049.334000px;}
.y37{bottom:1106.423550px;}
.y34{bottom:1138.765228px;}
.y5{bottom:1226.074050px;}
.y4{bottom:1238.074050px;}
.y3{bottom:1250.074050px;}
.y2{bottom:1262.074050px;}
.h1c{height:27.544922px;}
.he{height:31.570976px;}
.h1a{height:32.135742px;}
.h7{height:33.155156px;}
.hf{height:34.778570px;}
.h3{height:35.027344px;}
.h28{height:35.140922px;}
.h24{height:36.040922px;}
.h29{height:36.256922px;}
.h2{height:36.528516px;}
.h1f{height:36.760922px;}
.h1d{height:37.264922px;}
.h2e{height:37.529297px;}
.h16{height:37.910742px;}
.h1e{height:38.056922px;}
.h20{height:38.128922px;}
.h26{height:38.632922px;}
.h2d{height:39.484863px;}
.h21{height:39.640922px;}
.h25{height:39.967500px;}
.h1b{height:39.969000px;}
.h34{height:40.015050px;}
.h9{height:40.031250px;}
.h30{height:40.664062px;}
.h17{height:41.032031px;}
.hb{height:41.532422px;}
.h33{height:42.117188px;}
.h27{height:42.124922px;}
.h19{height:42.533203px;}
.h18{height:43.170117px;}
.hc{height:43.696582px;}
.h22{height:43.960922px;}
.h4{height:44.730469px;}
.h8{height:45.035156px;}
.h23{height:45.040922px;}
.h15{height:45.535547px;}
.h2b{height:46.763672px;}
.h6{height:50.039062px;}
.h12{height:52.541016px;}
.h2c{height:52.551816px;}
.h2f{height:52.554816px;}
.h32{height:52.562016px;}
.h31{height:52.582416px;}
.h2a{height:52.589616px;}
.ha{height:55.042969px;}
.h13{height:55.278809px;}
.h11{height:66.814403px;}
.h10{height:102.887378px;}
.h5{height:105.082031px;}
.h14{height:143.231312px;}
.hd{height:1071.493702px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:53.459912px;}
.w4{width:160.725000px;}
.w3{width:457.089524px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x2{left:-8.503950px;}
.x0{left:0.000000px;}
.x17{left:1.429177px;}
.x12{left:11.161598px;}
.x11{left:17.007934px;}
.x13{left:24.171126px;}
.x14{left:37.180655px;}
.x15{left:50.190184px;}
.x23{left:56.485800px;}
.x1{left:82.204800px;}
.x1c{left:85.889700px;}
.x1d{left:94.393650px;}
.x49{left:97.112550px;}
.x53{left:99.070800px;}
.xd{left:100.671300px;}
.x4b{left:104.483550px;}
.x4a{left:106.200750px;}
.x4c{left:110.599050px;}
.x1b{left:113.584800px;}
.xa{left:126.890400px;}
.x18{left:130.661382px;}
.x42{left:143.709300px;}
.x54{left:149.297850px;}
.x55{left:150.988350px;}
.x5f{left:164.486700px;}
.x4{left:166.050600px;}
.x9{left:167.400900px;}
.x6{left:171.335100px;}
.x48{left:172.840350px;}
.x5a{left:176.156850px;}
.x5{left:181.178250px;}
.x7{left:182.832600px;}
.x56{left:184.660800px;}
.x5d{left:191.568300px;}
.x5e{left:200.072250px;}
.x1e{left:213.448800px;}
.x8{left:215.057400px;}
.x43{left:218.319000px;}
.x1f{left:221.952750px;}
.x60{left:225.680550px;}
.x16{left:228.543366px;}
.x10{left:229.606350px;}
.x46{left:265.813650px;}
.x47{left:272.747250px;}
.xb{left:275.482950px;}
.x26{left:276.934500px;}
.x2f{left:279.925500px;}
.x30{left:282.258300px;}
.x2e{left:288.803100px;}
.x2c{left:302.775600px;}
.x2d{left:305.108400px;}
.x2b{left:312.609000px;}
.x27{left:324.518400px;}
.x45{left:337.484700px;}
.x52{left:338.810400px;}
.x28{left:340.140300px;}
.x21{left:345.031200px;}
.x3{left:359.772900px;}
.x29{left:387.688950px;}
.x2a{left:392.836950px;}
.x57{left:395.516550px;}
.xc{left:402.594750px;}
.x5b{left:404.020500px;}
.x4f{left:433.346250px;}
.x4e{left:437.833650px;}
.x50{left:441.219450px;}
.x51{left:442.790850px;}
.xe{left:452.698350px;}
.x33{left:454.367100px;}
.x34{left:456.699900px;}
.x22{left:459.661500px;}
.x35{left:463.779300px;}
.x19{left:465.590550px;}
.x20{left:469.067700px;}
.x32{left:471.782100px;}
.x1a{left:481.747950px;}
.x31{left:484.183200px;}
.x24{left:507.244350px;}
.x4d{left:510.249150px;}
.x25{left:522.866250px;}
.x36{left:566.696850px;}
.x37{left:571.844850px;}
.x5c{left:609.600150px;}
.x58{left:614.876400px;}
.x59{left:623.375700px;}
.x3e{left:629.528250px;}
.x3f{left:631.861050px;}
.x38{left:634.068000px;}
.x3c{left:644.205450px;}
.x3d{left:646.538250px;}
.xf{left:653.914800px;}
.x3b{left:657.367950px;}
.x44{left:670.365450px;}
.x39{left:681.650700px;}
.x3a{left:697.272600px;}
.x40{left:749.531550px;}
.x41{left:754.679550px;}
@media print{
.v2{vertical-align:-11.733333pt;}
.v3{vertical-align:-10.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:6.235049pt;}
.vc{vertical-align:7.552000pt;}
.v9{vertical-align:8.640000pt;}
.v8{vertical-align:9.620800pt;}
.v4{vertical-align:10.560000pt;}
.v1{vertical-align:11.733333pt;}
.vd{vertical-align:12.960000pt;}
.va{vertical-align:14.592000pt;}
.vb{vertical-align:15.552000pt;}
.v5{vertical-align:49.855467pt;}
.v7{vertical-align:64.000000pt;}
.ls8{letter-spacing:-2.240000pt;}
.ls9{letter-spacing:-0.855360pt;}
.ls12{letter-spacing:-0.575467pt;}
.ls10{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.442667pt;}
.lsa{letter-spacing:-0.398400pt;}
.lse{letter-spacing:-0.392000pt;}
.lsc{letter-spacing:-0.280000pt;}
.lsf{letter-spacing:-0.258720pt;}
.lsd{letter-spacing:-0.184800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.007467pt;}
.lsb{letter-spacing:0.025836pt;}
.ls11{letter-spacing:0.044267pt;}
.ls3{letter-spacing:0.316800pt;}
.ls5{letter-spacing:0.317333pt;}
.ls4{letter-spacing:0.480000pt;}
.ls2{letter-spacing:1.232000pt;}
.ls1{letter-spacing:1.866667pt;}
.ls0{letter-spacing:11.733333pt;}
.ws5{word-spacing:-19.923491pt;}
.wsd5{word-spacing:-15.333333pt;}
.ws8d{word-spacing:-14.000000pt;}
.wsb7{word-spacing:-13.608000pt;}
.ws28{word-spacing:-12.133333pt;}
.ws1a{word-spacing:-11.733333pt;}
.ws4{word-spacing:-11.066667pt;}
.ws2a{word-spacing:-10.933333pt;}
.ws11a{word-spacing:-10.666667pt;}
.ws0{word-spacing:-10.032000pt;}
.ws27{word-spacing:-9.240000pt;}
.ws29{word-spacing:-9.100000pt;}
.ws5c{word-spacing:-9.055200pt;}
.ws3{word-spacing:-8.300000pt;}
.ws1{word-spacing:-8.236800pt;}
.wsab{word-spacing:-7.216000pt;}
.ws2{word-spacing:-7.064640pt;}
.ws77{word-spacing:-5.376000pt;}
.wsc9{word-spacing:-4.480000pt;}
.ws11{word-spacing:-4.272000pt;}
.ws75{word-spacing:-3.808000pt;}
.ws7c{word-spacing:-3.752000pt;}
.ws7e{word-spacing:-3.640000pt;}
.ws74{word-spacing:-3.416000pt;}
.wse7{word-spacing:-3.231467pt;}
.ws8{word-spacing:-3.226667pt;}
.wsa{word-spacing:-2.933333pt;}
.ws76{word-spacing:-2.856000pt;}
.ws53{word-spacing:-2.744000pt;}
.ws91{word-spacing:-2.576000pt;}
.wsba{word-spacing:-2.464000pt;}
.wsa3{word-spacing:-2.184000pt;}
.ws11d{word-spacing:-2.133333pt;}
.wsea{word-spacing:-2.080533pt;}
.wsb9{word-spacing:-2.072000pt;}
.ws6b{word-spacing:-1.904000pt;}
.wsfc{word-spacing:-1.859200pt;}
.wse2{word-spacing:-1.814933pt;}
.ws54{word-spacing:-1.811040pt;}
.wsc3{word-spacing:-1.792000pt;}
.ws24{word-spacing:-1.770667pt;}
.ws38{word-spacing:-1.736000pt;}
.wse8{word-spacing:-1.593600pt;}
.ws60{word-spacing:-1.568000pt;}
.wsf0{word-spacing:-1.505067pt;}
.ws7b{word-spacing:-1.400000pt;}
.ws89{word-spacing:-1.344000pt;}
.ws129{word-spacing:-1.280000pt;}
.ws9{word-spacing:-1.232000pt;}
.wsd0{word-spacing:-1.176000pt;}
.ws19{word-spacing:-1.152000pt;}
.ws20{word-spacing:-1.150933pt;}
.ws78{word-spacing:-1.120000pt;}
.ws12f{word-spacing:-1.109333pt;}
.ws10c{word-spacing:-1.062400pt;}
.wsb{word-spacing:-0.960000pt;}
.ws88{word-spacing:-0.952000pt;}
.ws23{word-spacing:-0.885333pt;}
.wsd8{word-spacing:-0.841067pt;}
.wscf{word-spacing:-0.840000pt;}
.wse0{word-spacing:-0.796800pt;}
.ws10e{word-spacing:-0.752533pt;}
.ws87{word-spacing:-0.728000pt;}
.ws125{word-spacing:-0.640000pt;}
.wsf7{word-spacing:-0.531200pt;}
.ws57{word-spacing:-0.485333pt;}
.wsd{word-spacing:-0.480000pt;}
.wsb6{word-spacing:-0.448000pt;}
.wsd9{word-spacing:-0.398400pt;}
.ws130{word-spacing:-0.384000pt;}
.wse6{word-spacing:-0.354133pt;}
.ws15{word-spacing:-0.316800pt;}
.wsbb{word-spacing:-0.224000pt;}
.ws72{word-spacing:-0.168000pt;}
.ws22{word-spacing:-0.088533pt;}
.wsf1{word-spacing:-0.044267pt;}
.ws127{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.036960pt;}
.wseb{word-spacing:0.044267pt;}
.wsb0{word-spacing:0.056000pt;}
.ws93{word-spacing:0.110880pt;}
.ws4d{word-spacing:0.112000pt;}
.ws92{word-spacing:0.168000pt;}
.ws11b{word-spacing:0.170667pt;}
.ws12{word-spacing:0.192000pt;}
.ws106{word-spacing:0.221333pt;}
.ws73{word-spacing:0.280000pt;}
.wsa9{word-spacing:0.291200pt;}
.ws82{word-spacing:0.295680pt;}
.ws97{word-spacing:0.336000pt;}
.wsc7{word-spacing:0.392000pt;}
.ws1e{word-spacing:0.398400pt;}
.ws128{word-spacing:0.426667pt;}
.wsf5{word-spacing:0.442667pt;}
.ws81{word-spacing:0.448000pt;}
.ws1b{word-spacing:0.486933pt;}
.ws71{word-spacing:0.504000pt;}
.ws123{word-spacing:0.554667pt;}
.wsb5{word-spacing:0.560000pt;}
.wse4{word-spacing:0.575467pt;}
.wsfd{word-spacing:0.619733pt;}
.ws86{word-spacing:0.672000pt;}
.ws80{word-spacing:0.728000pt;}
.ws126{word-spacing:0.810667pt;}
.ws85{word-spacing:0.840000pt;}
.wse3{word-spacing:0.841067pt;}
.wse1{word-spacing:0.885333pt;}
.wsa8{word-spacing:0.896000pt;}
.ws10a{word-spacing:1.062400pt;}
.ws5e{word-spacing:1.064000pt;}
.ws12b{word-spacing:1.109333pt;}
.ws4c{word-spacing:1.120000pt;}
.ws11e{word-spacing:1.152000pt;}
.ws62{word-spacing:1.176000pt;}
.wsde{word-spacing:1.195200pt;}
.ws1f{word-spacing:1.239467pt;}
.ws63{word-spacing:1.344000pt;}
.ws12e{word-spacing:1.365333pt;}
.ws55{word-spacing:1.400000pt;}
.ws9e{word-spacing:1.404480pt;}
.wsfb{word-spacing:1.460800pt;}
.ws6a{word-spacing:1.568000pt;}
.ws12c{word-spacing:1.621333pt;}
.ws1d{word-spacing:1.637867pt;}
.ws79{word-spacing:1.680000pt;}
.ws65{word-spacing:1.736000pt;}
.ws6e{word-spacing:1.792000pt;}
.ws56{word-spacing:1.848000pt;}
.ws21{word-spacing:1.859200pt;}
.ws26{word-spacing:1.877333pt;}
.ws64{word-spacing:1.960000pt;}
.ws12a{word-spacing:1.962667pt;}
.ws1c{word-spacing:1.992000pt;}
.ws11c{word-spacing:2.005333pt;}
.ws42{word-spacing:2.016000pt;}
.ws10d{word-spacing:2.080533pt;}
.ws9f{word-spacing:2.128000pt;}
.wsbe{word-spacing:2.184000pt;}
.ws12d{word-spacing:2.346667pt;}
.wsec{word-spacing:2.390400pt;}
.wsca{word-spacing:2.408000pt;}
.wsf9{word-spacing:2.434667pt;}
.wsa6{word-spacing:2.464000pt;}
.ws25{word-spacing:2.517333pt;}
.wsc0{word-spacing:2.520000pt;}
.ws118{word-spacing:2.523200pt;}
.wsf8{word-spacing:2.567467pt;}
.ws83{word-spacing:2.576000pt;}
.ws16{word-spacing:2.592000pt;}
.ws114{word-spacing:2.656000pt;}
.wsdf{word-spacing:2.700267pt;}
.ws104{word-spacing:2.744000pt;}
.ws41{word-spacing:2.800000pt;}
.wsd7{word-spacing:2.833067pt;}
.wscc{word-spacing:2.856000pt;}
.ws3b{word-spacing:2.912000pt;}
.wsce{word-spacing:2.919840pt;}
.wsf6{word-spacing:2.921600pt;}
.ws101{word-spacing:3.024000pt;}
.wsef{word-spacing:3.054400pt;}
.ws14{word-spacing:3.120000pt;}
.wsbf{word-spacing:3.136000pt;}
.ws3a{word-spacing:3.178560pt;}
.wsb1{word-spacing:3.192000pt;}
.wsee{word-spacing:3.231467pt;}
.ws99{word-spacing:3.248000pt;}
.ws10b{word-spacing:3.320000pt;}
.ws11f{word-spacing:3.413333pt;}
.ws17{word-spacing:3.456000pt;}
.wsa2{word-spacing:3.472000pt;}
.ws116{word-spacing:3.497067pt;}
.ws7f{word-spacing:3.528000pt;}
.wsc{word-spacing:3.552000pt;}
.ws84{word-spacing:3.584000pt;}
.wsdc{word-spacing:3.806933pt;}
.wsd1{word-spacing:3.808000pt;}
.ws10{word-spacing:3.840000pt;}
.wsa4{word-spacing:3.864000pt;}
.wsf{word-spacing:3.936000pt;}
.wsdb{word-spacing:4.028267pt;}
.ws6f{word-spacing:4.088000pt;}
.ws4a{word-spacing:4.144000pt;}
.ws3c{word-spacing:4.256000pt;}
.ws124{word-spacing:4.266667pt;}
.ws43{word-spacing:4.312000pt;}
.ws13{word-spacing:4.320000pt;}
.wse5{word-spacing:4.338133pt;}
.wsb4{word-spacing:4.424000pt;}
.ws105{word-spacing:4.426667pt;}
.wsa0{word-spacing:4.480000pt;}
.ws9c{word-spacing:4.546080pt;}
.ws67{word-spacing:4.704000pt;}
.ws39{word-spacing:4.816000pt;}
.wse9{word-spacing:4.825067pt;}
.ws7d{word-spacing:4.872000pt;}
.wsc8{word-spacing:4.928000pt;}
.wsae{word-spacing:4.984000pt;}
.ws111{word-spacing:5.046400pt;}
.wsf4{word-spacing:5.134933pt;}
.wsda{word-spacing:5.179200pt;}
.ws7a{word-spacing:5.208000pt;}
.ws112{word-spacing:5.267733pt;}
.ws120{word-spacing:5.290667pt;}
.ws5f{word-spacing:5.320000pt;}
.ws96{word-spacing:5.376000pt;}
.wsfa{word-spacing:5.400533pt;}
.wsbc{word-spacing:5.488000pt;}
.ws122{word-spacing:5.504000pt;}
.wsed{word-spacing:5.533333pt;}
.wsd2{word-spacing:5.544000pt;}
.ws50{word-spacing:5.600000pt;}
.ws115{word-spacing:5.621867pt;}
.ws121{word-spacing:5.674667pt;}
.wsb2{word-spacing:5.768000pt;}
.wsf3{word-spacing:5.798933pt;}
.wsc2{word-spacing:5.824000pt;}
.ws9d{word-spacing:5.880000pt;}
.wsf2{word-spacing:5.976000pt;}
.ws6c{word-spacing:5.992000pt;}
.ws70{word-spacing:6.048000pt;}
.ws94{word-spacing:6.216000pt;}
.ws108{word-spacing:6.374400pt;}
.ws8a{word-spacing:6.440000pt;}
.wscd{word-spacing:6.496000pt;}
.ws107{word-spacing:6.507200pt;}
.wsa7{word-spacing:6.552000pt;}
.wsff{word-spacing:6.664000pt;}
.ws109{word-spacing:6.684267pt;}
.wsd4{word-spacing:6.720000pt;}
.wsc4{word-spacing:6.776000pt;}
.wsd6{word-spacing:6.861333pt;}
.ws9b{word-spacing:6.888000pt;}
.ws102{word-spacing:7.000000pt;}
.wsc5{word-spacing:7.244160pt;}
.ws66{word-spacing:7.280000pt;}
.ws18{word-spacing:7.344000pt;}
.ws44{word-spacing:7.616000pt;}
.wsc1{word-spacing:7.672000pt;}
.ws4e{word-spacing:7.728000pt;}
.ws40{word-spacing:7.784000pt;}
.ws98{word-spacing:7.840000pt;}
.wsfe{word-spacing:7.952000pt;}
.ws110{word-spacing:8.012267pt;}
.wsd3{word-spacing:8.064000pt;}
.ws103{word-spacing:8.120000pt;}
.ws52{word-spacing:8.389920pt;}
.ws61{word-spacing:8.400000pt;}
.ws119{word-spacing:8.499200pt;}
.ws3d{word-spacing:8.568000pt;}
.ws9a{word-spacing:9.016000pt;}
.wscb{word-spacing:9.464000pt;}
.ws46{word-spacing:9.520000pt;}
.ws6d{word-spacing:9.856000pt;}
.ws45{word-spacing:10.416000pt;}
.ws10f{word-spacing:10.624000pt;}
.wsa1{word-spacing:10.640000pt;}
.ws95{word-spacing:10.920000pt;}
.wsc6{word-spacing:10.976000pt;}
.ws100{word-spacing:11.144000pt;}
.ws4f{word-spacing:11.536000pt;}
.ws8c{word-spacing:11.741333pt;}
.ws3f{word-spacing:11.760000pt;}
.ws5b{word-spacing:11.877333pt;}
.ws8b{word-spacing:12.208000pt;}
.ws117{word-spacing:12.616000pt;}
.ws51{word-spacing:12.712000pt;}
.ws49{word-spacing:12.936000pt;}
.ws69{word-spacing:13.384000pt;}
.wsbd{word-spacing:13.776000pt;}
.ws48{word-spacing:13.944000pt;}
.wse{word-spacing:13.968000pt;}
.wsa5{word-spacing:14.000000pt;}
.wsaf{word-spacing:14.336000pt;}
.ws47{word-spacing:14.504000pt;}
.ws113{word-spacing:15.891733pt;}
.ws3e{word-spacing:15.904000pt;}
.ws4b{word-spacing:16.128000pt;}
.ws68{word-spacing:16.464000pt;}
.ws59{word-spacing:17.861333pt;}
.wsdd{word-spacing:22.310400pt;}
.ws2c{word-spacing:25.696000pt;}
.ws32{word-spacing:26.144000pt;}
.ws58{word-spacing:27.336000pt;}
.ws2d{word-spacing:29.504000pt;}
.ws2f{word-spacing:29.920000pt;}
.ws37{word-spacing:31.200000pt;}
.ws30{word-spacing:31.584000pt;}
.ws33{word-spacing:34.080000pt;}
.ws34{word-spacing:34.400000pt;}
.ws36{word-spacing:39.136000pt;}
.ws2e{word-spacing:41.664000pt;}
.ws5a{word-spacing:43.656000pt;}
.ws35{word-spacing:43.776000pt;}
.ws31{word-spacing:55.584000pt;}
.wsac{word-spacing:148.589333pt;}
.wsad{word-spacing:175.326933pt;}
.ws8f{word-spacing:409.480533pt;}
.ws2b{word-spacing:430.042667pt;}
.ws8e{word-spacing:490.400000pt;}
.ws90{word-spacing:518.726400pt;}
.ws7{word-spacing:656.338133pt;}
.wsb8{word-spacing:1249.600000pt;}
.wsaa{word-spacing:1297.720000pt;}
.ws5d{word-spacing:1704.734933pt;}
._20{margin-left:-16.856000pt;}
._11{margin-left:-12.630800pt;}
._1f{margin-left:-11.514533pt;}
._c{margin-left:-7.895860pt;}
._5{margin-left:-6.880000pt;}
._0{margin-left:-5.022400pt;}
._3{margin-left:-3.815467pt;}
._9{margin-left:-2.385600pt;}
._2{margin-left:-1.440533pt;}
._8{width:1.045653pt;}
._4{width:2.225067pt;}
._6{width:3.222933pt;}
._a{width:4.317236pt;}
._b{width:5.430793pt;}
._14{width:6.664000pt;}
._13{width:7.616000pt;}
._16{width:8.568000pt;}
._1e{width:9.520000pt;}
._10{width:10.472000pt;}
._15{width:11.704000pt;}
._7{width:14.390933pt;}
._18{width:50.109333pt;}
._1d{width:169.237333pt;}
._19{width:201.834667pt;}
._1c{width:260.000000pt;}
._1b{width:345.061333pt;}
._1a{width:375.412267pt;}
._1{width:423.560533pt;}
._12{width:503.589333pt;}
._f{width:514.979200pt;}
._e{width:595.879467pt;}
._17{width:939.982400pt;}
._d{width:1695.020800pt;}
.fs14{font-size:28.864000pt;}
.fs6{font-size:31.680000pt;}
.fs16{font-size:32.000000pt;}
.fsa{font-size:33.200000pt;}
.fs5{font-size:35.200000pt;}
.fs12{font-size:36.400000pt;}
.fsf{font-size:36.960000pt;}
.fs1{font-size:37.333333pt;}
.fsb{font-size:38.546752pt;}
.fs0{font-size:38.933333pt;}
.fs18{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs13{font-size:43.733333pt;}
.fs9{font-size:44.266667pt;}
.fs15{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs11{font-size:48.533333pt;}
.fs4{font-size:53.333333pt;}
.fse{font-size:56.000000pt;}
.fsd{font-size:56.087400pt;}
.fs2{font-size:58.666667pt;}
.fs17{font-size:61.333333pt;}
.fsc{font-size:71.667233pt;}
.fs3{font-size:112.000000pt;}
.fs10{font-size:152.660800pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:2.502744pt;}
.y35{bottom:4.060728pt;}
.y84{bottom:28.386000pt;}
.y6e{bottom:28.386800pt;}
.y33{bottom:52.913411pt;}
.y1{bottom:73.700800pt;}
.yae{bottom:153.052800pt;}
.y10a{bottom:153.068533pt;}
.y1aa{bottom:153.070800pt;}
.yca{bottom:153.070933pt;}
.y1f9{bottom:164.204800pt;}
.y230{bottom:164.295867pt;}
.yad{bottom:169.110800pt;}
.y18b{bottom:169.125867pt;}
.y136{bottom:169.141867pt;}
.y1a9{bottom:169.250267pt;}
.y2e{bottom:169.328933pt;}
.yc9{bottom:169.445600pt;}
.yf8{bottom:169.461067pt;}
.y109{bottom:169.936133pt;}
.y13d{bottom:170.341467pt;}
.y1f8{bottom:175.338667pt;}
.y22f{bottom:175.520800pt;}
.y82{bottom:179.868267pt;}
.y73{bottom:180.057333pt;}
.y7e{bottom:181.029467pt;}
.y79{bottom:181.493467pt;}
.y8c{bottom:181.893333pt;}
.y2d{bottom:184.175067pt;}
.yac{bottom:185.168800pt;}
.y18a{bottom:185.177733pt;}
.y135{bottom:185.212800pt;}
.y1a8{bottom:185.429600pt;}
.yc8{bottom:185.820133pt;}
.yf7{bottom:185.841067pt;}
.y1f7{bottom:186.472667pt;}
.y108{bottom:186.806133pt;}
.y13c{bottom:187.612133pt;}
.y81{bottom:189.204267pt;}
.y72{bottom:189.393333pt;}
.y7d{bottom:189.693467pt;}
.y22e{bottom:190.014133pt;}
.y78{bottom:190.157467pt;}
.y8b{bottom:190.557333pt;}
.y8f{bottom:191.773867pt;}
.y2c{bottom:194.841733pt;}
.y80{bottom:198.540267pt;}
.y71{bottom:198.729333pt;}
.y8e{bottom:201.109867pt;}
.yab{bottom:201.226800pt;}
.y189{bottom:201.235733pt;}
.y22d{bottom:201.239067pt;}
.y134{bottom:201.282667pt;}
.y1f6{bottom:201.606667pt;}
.y1a7{bottom:201.608933pt;}
.yf6{bottom:202.221067pt;}
.y107{bottom:203.673600pt;}
.y13b{bottom:204.882800pt;}
.y2b{bottom:205.508400pt;}
.yc7{bottom:209.034000pt;}
.y8d{bottom:210.445867pt;}
.y22c{bottom:212.464000pt;}
.y1f5{bottom:212.742267pt;}
.y7f{bottom:216.133467pt;}
.y77{bottom:216.309467pt;}
.y8a{bottom:216.909333pt;}
.yaa{bottom:217.284800pt;}
.y188{bottom:217.290667pt;}
.y133{bottom:217.354667pt;}
.y1a6{bottom:217.788267pt;}
.yf5{bottom:218.604533pt;}
.y106{bottom:220.538800pt;}
.y2a{bottom:221.844400pt;}
.y13a{bottom:222.153467pt;}
.y1f4{bottom:223.875333pt;}
.y22b{bottom:226.957333pt;}
.y29{bottom:232.911067pt;}
.y187{bottom:233.339333pt;}
.ya9{bottom:233.342800pt;}
.y132{bottom:233.425600pt;}
.y1a5{bottom:233.967600pt;}
.yf4{bottom:234.987867pt;}
.y1f3{bottom:235.008400pt;}
.y105{bottom:237.408800pt;}
.y22a{bottom:238.182267pt;}
.y139{bottom:239.418800pt;}
.y7c{bottom:241.853467pt;}
.y89{bottom:242.997333pt;}
.y76{bottom:243.157467pt;}
.y28{bottom:243.977733pt;}
.yc6{bottom:246.742000pt;}
.ya8{bottom:249.382800pt;}
.y186{bottom:249.397333pt;}
.y229{bottom:249.407200pt;}
.y131{bottom:249.496533pt;}
.y1f2{bottom:250.142400pt;}
.y1a4{bottom:250.146933pt;}
.y7b{bottom:250.517467pt;}
.yf3{bottom:251.371333pt;}
.y88{bottom:251.661333pt;}
.y75{bottom:251.821467pt;}
.y27{bottom:255.044400pt;}
.y138{bottom:256.694800pt;}
.y228{bottom:260.635600pt;}
.y1f1{bottom:261.277200pt;}
.yc5{bottom:263.116533pt;}
.ya7{bottom:265.440800pt;}
.y185{bottom:265.455333pt;}
.y26{bottom:266.111067pt;}
.y1a3{bottom:266.326400pt;}
.yf2{bottom:267.754667pt;}
.y104{bottom:267.755600pt;}
.y227{bottom:271.857200pt;}
.y1f0{bottom:272.410267pt;}
.y130{bottom:273.288000pt;}
.y137{bottom:273.965333pt;}
.y25{bottom:277.177733pt;}
.y7a{bottom:277.509467pt;}
.y74{bottom:277.613467pt;}
.y87{bottom:278.325333pt;}
.yc4{bottom:279.469733pt;}
.ya6{bottom:281.498800pt;}
.y184{bottom:281.510267pt;}
.y1a2{bottom:282.505733pt;}
.y1ef{bottom:283.544267pt;}
.yf1{bottom:284.138000pt;}
.y103{bottom:284.622267pt;}
.y226{bottom:286.350400pt;}
.y24{bottom:288.244400pt;}
.y6d{bottom:294.046667pt;}
.yc3{bottom:295.849733pt;}
.y83{bottom:295.937333pt;}
.ya5{bottom:297.556800pt;}
.y183{bottom:297.562133pt;}
.y225{bottom:297.575333pt;}
.y1ee{bottom:298.678267pt;}
.y23{bottom:299.311067pt;}
.yf0{bottom:300.521467pt;}
.y70{bottom:301.100133pt;}
.y86{bottom:302.990000pt;}
.y224{bottom:308.800400pt;}
.y1a1{bottom:309.351733pt;}
.y1ed{bottom:309.812133pt;}
.y22{bottom:310.377733pt;}
.y6f{bottom:311.766800pt;}
.yc2{bottom:312.229733pt;}
.ya4{bottom:313.614800pt;}
.y182{bottom:313.620133pt;}
.y85{bottom:313.656667pt;}
.yef{bottom:316.904800pt;}
.y16b{bottom:318.380267pt;}
.y1ec{bottom:320.946133pt;}
.y21{bottom:321.444400pt;}
.y223{bottom:323.293600pt;}
.y102{bottom:328.441467pt;}
.yc1{bottom:328.609733pt;}
.ya3{bottom:329.669200pt;}
.y181{bottom:329.675067pt;}
.y16a{bottom:332.008267pt;}
.y1eb{bottom:332.080933pt;}
.y20{bottom:332.511067pt;}
.yee{bottom:333.288267pt;}
.y222{bottom:334.518533pt;}
.y1a0{bottom:336.197733pt;}
.y1ea{bottom:343.214000pt;}
.y1f{bottom:343.577733pt;}
.y169{bottom:344.674933pt;}
.yc0{bottom:344.989733pt;}
.y101{bottom:345.311467pt;}
.ya2{bottom:345.712667pt;}
.y180{bottom:345.726933pt;}
.y221{bottom:345.743600pt;}
.yed{bottom:349.688667pt;}
.y19f{bottom:352.377067pt;}
.y220{bottom:356.968533pt;}
.y168{bottom:358.302800pt;}
.y1e9{bottom:358.348933pt;}
.y1e{bottom:360.313733pt;}
.ybf{bottom:361.364400pt;}
.ya1{bottom:361.770667pt;}
.y17f{bottom:361.784933pt;}
.y100{bottom:362.181467pt;}
.yec{bottom:366.068667pt;}
.y19e{bottom:368.547200pt;}
.y1e8{bottom:369.482000pt;}
.y21f{bottom:371.461733pt;}
.y167{bottom:371.930800pt;}
.y6a{bottom:373.795333pt;}
.y6c{bottom:374.117067pt;}
.ybe{bottom:377.738933pt;}
.ya0{bottom:377.828667pt;}
.y17e{bottom:377.833733pt;}
.yff{bottom:379.049067pt;}
.y1e7{bottom:380.615867pt;}
.yeb{bottom:382.448667pt;}
.y21e{bottom:382.690133pt;}
.y19d{bottom:384.731200pt;}
.y69{bottom:385.128667pt;}
.y166{bottom:385.553733pt;}
.y1e6{bottom:391.749867pt;}
.y9f{bottom:393.886667pt;}
.y17d{bottom:393.891733pt;}
.y21d{bottom:393.911733pt;}
.ybd{bottom:394.113600pt;}
.y6b{bottom:395.378400pt;}
.yfe{bottom:395.916667pt;}
.y68{bottom:396.462000pt;}
.y165{bottom:398.225467pt;}
.yea{bottom:398.828667pt;}
.y19c{bottom:400.915200pt;}
.y1e5{bottom:406.883733pt;}
.y67{bottom:407.795333pt;}
.y21c{bottom:408.404933pt;}
.y9e{bottom:409.941067pt;}
.y17c{bottom:409.949733pt;}
.ybc{bottom:410.488133pt;}
.y164{bottom:411.853467pt;}
.yfd{bottom:412.784267pt;}
.ye9{bottom:415.208667pt;}
.y1d{bottom:415.643067pt;}
.y19b{bottom:417.089867pt;}
.y1e4{bottom:418.017733pt;}
.y66{bottom:419.128667pt;}
.y21b{bottom:419.630000pt;}
.y163{bottom:425.481467pt;}
.y17b{bottom:425.986133pt;}
.y9d{bottom:425.995467pt;}
.ybb{bottom:426.862933pt;}
.y1e3{bottom:429.151733pt;}
.yfc{bottom:429.651867pt;}
.y21a{bottom:430.854933pt;}
.ye8{bottom:431.588667pt;}
.y19a{bottom:433.273867pt;}
.y1c{bottom:437.264667pt;}
.y162{bottom:438.148133pt;}
.y1e2{bottom:440.285600pt;}
.y17a{bottom:442.044133pt;}
.y9c{bottom:442.049867pt;}
.yba{bottom:443.232133pt;}
.y219{bottom:445.348267pt;}
.yfb{bottom:446.519467pt;}
.ye7{bottom:447.975467pt;}
.y199{bottom:449.453333pt;}
.y161{bottom:451.786800pt;}
.y1e1{bottom:455.419600pt;}
.y1b{bottom:455.517067pt;}
.y218{bottom:456.573200pt;}
.y179{bottom:458.102133pt;}
.y9b{bottom:458.104267pt;}
.yb9{bottom:459.612133pt;}
.yfa{bottom:463.387067pt;}
.ye6{bottom:464.355467pt;}
.y160{bottom:465.414667pt;}
.y198{bottom:465.632667pt;}
.y1e0{bottom:466.553600pt;}
.y217{bottom:467.798133pt;}
.y1a{bottom:468.850400pt;}
.y65{bottom:470.254133pt;}
.y9a{bottom:474.155067pt;}
.y178{bottom:474.160133pt;}
.yb8{bottom:475.986800pt;}
.y1df{bottom:477.688400pt;}
.y216{bottom:479.023067pt;}
.y15f{bottom:479.042667pt;}
.yf9{bottom:480.252267pt;}
.ye5{bottom:480.742267pt;}
.y197{bottom:481.812000pt;}
.y19{bottom:482.183733pt;}
.y64{bottom:482.915733pt;}
.y1de{bottom:488.821467pt;}
.y99{bottom:490.213067pt;}
.y177{bottom:490.218133pt;}
.y215{bottom:490.248133pt;}
.yb7{bottom:492.356000pt;}
.y15e{bottom:492.670667pt;}
.y18{bottom:495.517067pt;}
.y63{bottom:495.587467pt;}
.ye4{bottom:497.122267pt;}
.y196{bottom:497.986800pt;}
.y1dd{bottom:503.955333pt;}
.y214{bottom:504.741333pt;}
.y98{bottom:506.256533pt;}
.y176{bottom:506.276133pt;}
.y15d{bottom:506.298667pt;}
.y62{bottom:508.254133pt;}
.yb6{bottom:508.736000pt;}
.y17{bottom:508.850400pt;}
.y195{bottom:514.170800pt;}
.y1dc{bottom:515.089333pt;}
.y213{bottom:515.966400pt;}
.y15c{bottom:518.965333pt;}
.y61{bottom:521.126133pt;}
.y16{bottom:522.183733pt;}
.y97{bottom:522.314533pt;}
.y175{bottom:522.334133pt;}
.yb5{bottom:525.110667pt;}
.y1db{bottom:526.223200pt;}
.y212{bottom:527.191333pt;}
.y194{bottom:530.350133pt;}
.y15b{bottom:532.593200pt;}
.y60{bottom:533.792800pt;}
.y254{bottom:534.980000pt;}
.y15{bottom:535.517067pt;}
.y12f{bottom:536.264933pt;}
.y96{bottom:538.372533pt;}
.y174{bottom:538.389067pt;}
.y211{bottom:538.416267pt;}
.y1da{bottom:540.760267pt;}
.yb4{bottom:541.469067pt;}
.y15a{bottom:546.221200pt;}
.y5f{bottom:546.459467pt;}
.y193{bottom:546.524800pt;}
.y14{bottom:548.850400pt;}
.y253{bottom:549.422667pt;}
.y210{bottom:549.641200pt;}
.y12e{bottom:551.135467pt;}
.y1d9{bottom:551.894267pt;}
.y95{bottom:554.430533pt;}
.y173{bottom:554.444000pt;}
.yb3{bottom:557.849067pt;}
.y159{bottom:558.887867pt;}
.y5e{bottom:559.126133pt;}
.y20f{bottom:560.866267pt;}
.y13{bottom:562.183733pt;}
.y192{bottom:562.708800pt;}
.y1d8{bottom:563.028133pt;}
.y252{bottom:563.868800pt;}
.y12d{bottom:564.007600pt;}
.y94{bottom:570.484933pt;}
.y172{bottom:570.498933pt;}
.y5d{bottom:571.792800pt;}
.y158{bottom:572.515867pt;}
.y1d7{bottom:574.162133pt;}
.yb2{bottom:574.229067pt;}
.y251{bottom:574.535467pt;}
.y20e{bottom:575.359467pt;}
.y12{bottom:575.517067pt;}
.y12c{bottom:576.674267pt;}
.y191{bottom:578.878933pt;}
.y5c{bottom:584.664933pt;}
.y157{bottom:585.182533pt;}
.y250{bottom:585.202133pt;}
.y93{bottom:586.528400pt;}
.y171{bottom:586.547733pt;}
.y20d{bottom:586.584533pt;}
.y1d6{bottom:588.699200pt;}
.y11{bottom:588.850400pt;}
.yb1{bottom:590.609067pt;}
.y12b{bottom:590.869200pt;}
.y190{bottom:595.062933pt;}
.y24f{bottom:595.868800pt;}
.y5b{bottom:597.331600pt;}
.y20c{bottom:597.809467pt;}
.y156{bottom:598.815600pt;}
.y1d5{bottom:599.833067pt;}
.y92{bottom:602.586400pt;}
.y170{bottom:602.605733pt;}
.y12a{bottom:603.741200pt;}
.y10{bottom:604.823733pt;}
.y24e{bottom:606.535467pt;}
.yb0{bottom:606.983733pt;}
.y20b{bottom:609.034400pt;}
.y5a{bottom:609.998267pt;}
.y1d4{bottom:610.967067pt;}
.y18f{bottom:611.246933pt;}
.y155{bottom:612.438533pt;}
.y129{bottom:616.613333pt;}
.y24d{bottom:617.202133pt;}
.y91{bottom:618.644400pt;}
.y16f{bottom:618.663733pt;}
.y20a{bottom:620.259333pt;}
.y154{bottom:625.105200pt;}
.y1d3{bottom:625.504000pt;}
.y59{bottom:625.516000pt;}
.y18e{bottom:627.426267pt;}
.y24c{bottom:627.868800pt;}
.y123{bottom:629.269867pt;}
.y128{bottom:629.280000pt;}
.yf{bottom:632.524933pt;}
.yaf{bottom:634.025067pt;}
.y90{bottom:634.702400pt;}
.y16e{bottom:634.718533pt;}
.y1d2{bottom:636.638000pt;}
.y58{bottom:637.649333pt;}
.y24b{bottom:638.535467pt;}
.y153{bottom:638.743867pt;}
.y122{bottom:641.941600pt;}
.y127{bottom:641.946667pt;}
.y18d{bottom:643.605600pt;}
.y209{bottom:646.602400pt;}
.ye{bottom:647.191600pt;}
.y1d1{bottom:647.771867pt;}
.y24a{bottom:649.202133pt;}
.y16d{bottom:650.773467pt;}
.y152{bottom:652.382533pt;}
.y126{bottom:654.603200pt;}
.y121{bottom:654.613333pt;}
.y249{bottom:659.868800pt;}
.yd{bottom:661.858267pt;}
.y1d0{bottom:662.308933pt;}
.y151{bottom:666.010400pt;}
.y16c{bottom:666.828400pt;}
.y125{bottom:667.274933pt;}
.y120{bottom:667.280000pt;}
.y18c{bottom:667.505467pt;}
.y248{bottom:670.535467pt;}
.y1cf{bottom:673.442933pt;}
.yc{bottom:676.524933pt;}
.ycc{bottom:679.006933pt;}
.y150{bottom:679.638400pt;}
.y11f{bottom:679.946667pt;}
.y247{bottom:681.202133pt;}
.y1ce{bottom:684.576800pt;}
.y47{bottom:689.007867pt;}
.y57{bottom:689.013333pt;}
.ycb{bottom:690.340267pt;}
.y246{bottom:691.868800pt;}
.y11e{bottom:692.613333pt;}
.y208{bottom:692.996933pt;}
.y14f{bottom:693.261333pt;}
.ye3{bottom:694.744267pt;}
.y1cd{bottom:699.113867pt;}
.y245{bottom:702.535467pt;}
.y46{bottom:705.040133pt;}
.y56{bottom:705.043333pt;}
.y124{bottom:705.267467pt;}
.y11d{bottom:705.280000pt;}
.y14e{bottom:705.933067pt;}
.ye2{bottom:706.744267pt;}
.y207{bottom:709.157600pt;}
.yb{bottom:710.089200pt;}
.y1cc{bottom:710.247867pt;}
.y1b9{bottom:711.741200pt;}
.y244{bottom:713.202133pt;}
.y11c{bottom:718.152000pt;}
.y14d{bottom:718.604800pt;}
.y45{bottom:721.074667pt;}
.y55{bottom:721.078933pt;}
.y243{bottom:723.868800pt;}
.ye1{bottom:724.072267pt;}
.y1cb{bottom:724.784800pt;}
.y206{bottom:725.313600pt;}
.y1b8{bottom:725.747200pt;}
.y11b{bottom:731.024133pt;}
.y14c{bottom:732.227733pt;}
.ye0{bottom:733.408267pt;}
.y242{bottom:734.535467pt;}
.y1ca{bottom:735.919733pt;}
.y44{bottom:737.104667pt;}
.y54{bottom:737.114533pt;}
.y1b7{bottom:739.753067pt;}
.ya{bottom:740.755867pt;}
.y205{bottom:741.471867pt;}
.ydf{bottom:742.744267pt;}
.y11a{bottom:743.896133pt;}
.y14b{bottom:744.894400pt;}
.y241{bottom:745.202133pt;}
.y1c9{bottom:747.052800pt;}
.y43{bottom:753.143733pt;}
.y53{bottom:753.150000pt;}
.yde{bottom:754.744267pt;}
.y1b6{bottom:755.081867pt;}
.y240{bottom:755.868800pt;}
.y119{bottom:756.562800pt;}
.y204{bottom:757.639467pt;}
.y14a{bottom:758.522267pt;}
.y1c8{bottom:761.589733pt;}
.y23f{bottom:766.535467pt;}
.y1b5{bottom:769.087867pt;}
.y42{bottom:769.173733pt;}
.y52{bottom:769.185600pt;}
.y118{bottom:769.434933pt;}
.y149{bottom:771.188933pt;}
.y9{bottom:771.422533pt;}
.y1c7{bottom:772.723600pt;}
.y203{bottom:773.795467pt;}
.y23e{bottom:777.202133pt;}
.y117{bottom:782.101600pt;}
.y1c6{bottom:783.857600pt;}
.y1b4{bottom:784.416533pt;}
.y41{bottom:785.203733pt;}
.y51{bottom:785.221067pt;}
.y148{bottom:786.139867pt;}
.y23d{bottom:787.868800pt;}
.y202{bottom:789.951467pt;}
.ydd{bottom:790.775600pt;}
.yd7{bottom:791.531600pt;}
.y115{bottom:795.631067pt;}
.y1c5{bottom:798.394667pt;}
.y1b3{bottom:798.422533pt;}
.y23c{bottom:798.535467pt;}
.y147{bottom:799.762800pt;}
.ydc{bottom:800.111600pt;}
.yd6{bottom:800.867600pt;}
.y40{bottom:801.233733pt;}
.y50{bottom:801.256667pt;}
.y8{bottom:802.089200pt;}
.y201{bottom:806.107467pt;}
.y114{bottom:808.297733pt;}
.y23b{bottom:809.202133pt;}
.ydb{bottom:809.447600pt;}
.y1c4{bottom:809.528533pt;}
.yd5{bottom:810.203600pt;}
.y146{bottom:812.434533pt;}
.y1b2{bottom:813.751600pt;}
.y3f{bottom:817.266000pt;}
.y4f{bottom:817.292267pt;}
.yda{bottom:818.783600pt;}
.yd4{bottom:819.539600pt;}
.y23a{bottom:819.868800pt;}
.y1c3{bottom:820.662533pt;}
.y113{bottom:820.964400pt;}
.y200{bottom:822.263467pt;}
.y145{bottom:827.395867pt;}
.y1b1{bottom:827.757200pt;}
.yd9{bottom:828.119600pt;}
.yd3{bottom:828.875600pt;}
.y239{bottom:830.535467pt;}
.y7{bottom:832.755867pt;}
.y3e{bottom:833.298267pt;}
.y4e{bottom:833.327733pt;}
.y112{bottom:833.631067pt;}
.y1c2{bottom:835.199467pt;}
.y1ff{bottom:838.421733pt;}
.yd8{bottom:840.119600pt;}
.y1b0{bottom:840.423867pt;}
.yd2{bottom:840.875600pt;}
.y144{bottom:841.023867pt;}
.y238{bottom:841.202133pt;}
.y116{bottom:846.292667pt;}
.y111{bottom:846.297733pt;}
.y1c1{bottom:846.334267pt;}
.y3d{bottom:849.332800pt;}
.y4d{bottom:849.363333pt;}
.y237{bottom:851.872400pt;}
.y1fe{bottom:854.580133pt;}
.y1af{bottom:855.752667pt;}
.y143{bottom:855.974667pt;}
.y1c0{bottom:857.467333pt;}
.y110{bottom:858.964400pt;}
.y3c{bottom:865.362800pt;}
.y4c{bottom:865.398933pt;}
.y236{bottom:866.315067pt;}
.y142{bottom:869.602667pt;}
.y1ae{bottom:869.758533pt;}
.y1fd{bottom:870.738400pt;}
.y10f{bottom:871.631067pt;}
.y1bf{bottom:872.601333pt;}
.yd1{bottom:873.492267pt;}
.y235{bottom:876.981733pt;}
.y3b{bottom:881.397333pt;}
.y4b{bottom:881.434400pt;}
.y141{bottom:882.269333pt;}
.yd0{bottom:882.828267pt;}
.y1be{bottom:883.735333pt;}
.y1ad{bottom:883.764533pt;}
.y10e{bottom:884.297733pt;}
.y6{bottom:886.099733pt;}
.y1fc{bottom:886.896667pt;}
.y234{bottom:887.648400pt;}
.ycf{bottom:892.164267pt;}
.y140{bottom:895.897333pt;}
.y1ac{bottom:896.431200pt;}
.y3a{bottom:897.427333pt;}
.y4a{bottom:897.470000pt;}
.y1bd{bottom:898.137467pt;}
.y233{bottom:898.315067pt;}
.y10d{bottom:899.815467pt;}
.yce{bottom:901.500267pt;}
.y1fb{bottom:903.054933pt;}
.y1bc{bottom:909.271467pt;}
.y13f{bottom:911.548533pt;}
.y1ab{bottom:911.948800pt;}
.y232{bottom:912.761200pt;}
.y39{bottom:913.462000pt;}
.ycd{bottom:913.500267pt;}
.y49{bottom:913.503600pt;}
.y48{bottom:913.505600pt;}
.y10c{bottom:914.686133pt;}
.y1bb{bottom:920.405467pt;}
.y32{bottom:922.074533pt;}
.y30{bottom:922.074667pt;}
.y231{bottom:923.427867pt;}
.y13e{bottom:926.686133pt;}
.y10b{bottom:926.819467pt;}
.y1fa{bottom:928.828133pt;}
.y38{bottom:929.492000pt;}
.y1ba{bottom:931.539333pt;}
.y31{bottom:932.741200pt;}
.y2f{bottom:932.741333pt;}
.y37{bottom:983.487600pt;}
.y34{bottom:1012.235758pt;}
.y5{bottom:1089.843600pt;}
.y4{bottom:1100.510267pt;}
.y3{bottom:1111.176933pt;}
.y2{bottom:1121.843600pt;}
.h1c{height:24.484375pt;}
.he{height:28.063089pt;}
.h1a{height:28.565104pt;}
.h7{height:29.471250pt;}
.hf{height:30.914284pt;}
.h3{height:31.135417pt;}
.h28{height:31.236375pt;}
.h24{height:32.036375pt;}
.h29{height:32.228375pt;}
.h2{height:32.469792pt;}
.h1f{height:32.676375pt;}
.h1d{height:33.124375pt;}
.h2e{height:33.359375pt;}
.h16{height:33.698437pt;}
.h1e{height:33.828375pt;}
.h20{height:33.892375pt;}
.h26{height:34.340375pt;}
.h2d{height:35.097656pt;}
.h21{height:35.236375pt;}
.h25{height:35.526667pt;}
.h1b{height:35.528000pt;}
.h34{height:35.568933pt;}
.h9{height:35.583333pt;}
.h30{height:36.145833pt;}
.h17{height:36.472917pt;}
.hb{height:36.917708pt;}
.h33{height:37.437500pt;}
.h27{height:37.444375pt;}
.h19{height:37.807292pt;}
.h18{height:38.373437pt;}
.hc{height:38.841406pt;}
.h22{height:39.076375pt;}
.h4{height:39.760417pt;}
.h8{height:40.031250pt;}
.h23{height:40.036375pt;}
.h15{height:40.476042pt;}
.h2b{height:41.567708pt;}
.h6{height:44.479167pt;}
.h12{height:46.703125pt;}
.h2c{height:46.712725pt;}
.h2f{height:46.715392pt;}
.h32{height:46.721792pt;}
.h31{height:46.739925pt;}
.h2a{height:46.746325pt;}
.ha{height:48.927083pt;}
.h13{height:49.136719pt;}
.h11{height:59.390580pt;}
.h10{height:91.455447pt;}
.h5{height:93.406250pt;}
.h14{height:127.316722pt;}
.hd{height:952.438846pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:47.519922pt;}
.w4{width:142.866667pt;}
.w3{width:406.301800pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x2{left:-7.559067pt;}
.x0{left:0.000000pt;}
.x17{left:1.270380pt;}
.x12{left:9.921420pt;}
.x11{left:15.118164pt;}
.x13{left:21.485446pt;}
.x14{left:33.049471pt;}
.x15{left:44.613497pt;}
.x23{left:50.209600pt;}
.x1{left:73.070933pt;}
.x1c{left:76.346400pt;}
.x1d{left:83.905467pt;}
.x49{left:86.322267pt;}
.x53{left:88.062933pt;}
.xd{left:89.485600pt;}
.x4b{left:92.874267pt;}
.x4a{left:94.400667pt;}
.x4c{left:98.310267pt;}
.x1b{left:100.964267pt;}
.xa{left:112.791467pt;}
.x18{left:116.143451pt;}
.x42{left:127.741600pt;}
.x54{left:132.709200pt;}
.x55{left:134.211867pt;}
.x5f{left:146.210400pt;}
.x4{left:147.600533pt;}
.x9{left:148.800800pt;}
.x6{left:152.297867pt;}
.x48{left:153.635867pt;}
.x5a{left:156.583867pt;}
.x5{left:161.047333pt;}
.x7{left:162.517867pt;}
.x56{left:164.142933pt;}
.x5d{left:170.282933pt;}
.x5e{left:177.842000pt;}
.x1e{left:189.732267pt;}
.x8{left:191.162133pt;}
.x43{left:194.061333pt;}
.x1f{left:197.291333pt;}
.x60{left:200.604933pt;}
.x16{left:203.149658pt;}
.x10{left:204.094533pt;}
.x46{left:236.278800pt;}
.x47{left:242.442000pt;}
.xb{left:244.873733pt;}
.x26{left:246.164000pt;}
.x2f{left:248.822667pt;}
.x30{left:250.896267pt;}
.x2e{left:256.713867pt;}
.x2c{left:269.133867pt;}
.x2d{left:271.207467pt;}
.x2b{left:277.874667pt;}
.x27{left:288.460800pt;}
.x45{left:299.986400pt;}
.x52{left:301.164800pt;}
.x28{left:302.346933pt;}
.x21{left:306.694400pt;}
.x3{left:319.798133pt;}
.x29{left:344.612400pt;}
.x2a{left:349.188400pt;}
.x57{left:351.570267pt;}
.xc{left:357.862000pt;}
.x5b{left:359.129333pt;}
.x4f{left:385.196667pt;}
.x4e{left:389.185467pt;}
.x50{left:392.195067pt;}
.x51{left:393.591867pt;}
.xe{left:402.398533pt;}
.x33{left:403.881867pt;}
.x34{left:405.955467pt;}
.x22{left:408.588000pt;}
.x35{left:412.248267pt;}
.x19{left:413.858267pt;}
.x20{left:416.949067pt;}
.x32{left:419.361867pt;}
.x1a{left:428.220400pt;}
.x31{left:430.385067pt;}
.x24{left:450.883867pt;}
.x4d{left:453.554800pt;}
.x25{left:464.770000pt;}
.x36{left:503.730533pt;}
.x37{left:508.306533pt;}
.x5c{left:541.866800pt;}
.x58{left:546.556800pt;}
.x59{left:554.111733pt;}
.x3e{left:559.580667pt;}
.x3f{left:561.654267pt;}
.x38{left:563.616000pt;}
.x3c{left:572.627067pt;}
.x3d{left:574.700667pt;}
.xf{left:581.257600pt;}
.x3b{left:584.327067pt;}
.x44{left:595.880400pt;}
.x39{left:605.911733pt;}
.x3a{left:619.797867pt;}
.x40{left:666.250267pt;}
.x41{left:670.826267pt;}
}




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