
    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_c4650c12f82594d9d37933da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_178d2e02565934b881affdd9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_14581c44eb7d8b90376f0353.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_d2a8a67e4bc780b57aaba36a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ea847a42fb66117c6e256916.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.902000;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_8be37d0a97825fa17c8ef361.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.968000;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_a0b2220a0e43b2f4f3e40567.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.998000;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_10590c7126088cc1aac7a935.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.033000;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_13aa7b8e853170dee31dbad6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_327c7d82fef386b654e14544.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.710000;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_ef222fb1e0beb743e84aab55.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.935000;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_ccdf17c35e05898186fce538.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.975000;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_e208a6a747f20ed64d13cc12.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e208a6a747f20ed64d13cc12.woff2')format("woff");}.fff{font-family:fff;line-height:0.992000;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:ff10;src:url('chunks/assets/font_ccdf17c35e05898186fce538.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.975000;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:ff11;src:url('chunks/assets/font_40759c08063289c06036c20b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.950000;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:ff12;src:url('chunks/assets/font_2c6313343b94c79fc326256c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.951000;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:ff13;src:url('chunks/assets/font_91af955b827807f17eea23d4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.717000;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:ff14;src:url('chunks/assets/font_5a3451f49c9885b1f9e2c5cf.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.975000;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:ff15;src:url('chunks/assets/font_e208a6a747f20ed64d13cc12.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.992000;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:ff16;src:url('chunks/assets/font_f0d121d3b897c5d1caea892e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.959000;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;}
.m4{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);}
.m7{transform:matrix(-0.177200,-0.176353,0.175500,-0.178044,0,0);-ms-transform:matrix(-0.177200,-0.176353,0.175500,-0.178044,0,0);-webkit-transform:matrix(-0.177200,-0.176353,0.175500,-0.178044,0,0);}
.m6{transform:matrix(-0.176778,-0.176778,0.175928,-0.177622,0,0);-ms-transform:matrix(-0.176778,-0.176778,0.175928,-0.177622,0,0);-webkit-transform:matrix(-0.176778,-0.176778,0.175928,-0.177622,0,0);}
.m5{transform:matrix(-0.176353,-0.177200,0.176353,-0.177200,0,0);-ms-transform:matrix(-0.176353,-0.177200,0.176353,-0.177200,0,0);-webkit-transform:matrix(-0.176353,-0.177200,0.176353,-0.177200,0,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.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);}
.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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.779200px;}
.v3{vertical-align:-16.983000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.982000px;}
.v1{vertical-align:20.779200px;}
.ls3a{letter-spacing:-19.692000px;}
.ls17{letter-spacing:-19.512000px;}
.ls33{letter-spacing:-19.476000px;}
.ls3{letter-spacing:-19.440000px;}
.ls44{letter-spacing:-19.404000px;}
.ls2b{letter-spacing:-19.296000px;}
.ls3e{letter-spacing:-19.260000px;}
.lsf{letter-spacing:-19.152000px;}
.ls22{letter-spacing:-19.044000px;}
.ls8{letter-spacing:-19.008000px;}
.ls1b{letter-spacing:-1.934400px;}
.ls37{letter-spacing:-1.497600px;}
.ls39{letter-spacing:-1.256112px;}
.ls3c{letter-spacing:-0.972000px;}
.ls2c{letter-spacing:-0.761280px;}
.ls15{letter-spacing:-0.685152px;}
.ls31{letter-spacing:-0.609024px;}
.ls43{letter-spacing:-0.594000px;}
.ls2e{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.532896px;}
.ls40{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.418704px;}
.ls2f{letter-spacing:-0.329400px;}
.ls23{letter-spacing:-0.304512px;}
.ls45{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.228384px;}
.ls1c{letter-spacing:-0.190320px;}
.ls30{letter-spacing:-0.187200px;}
.ls41{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.152256px;}
.ls14{letter-spacing:-0.114192px;}
.ls13{letter-spacing:-0.096000px;}
.ls1a{letter-spacing:-0.076128px;}
.lsb{letter-spacing:-0.062400px;}
.ls3f{letter-spacing:-0.054000px;}
.ls12{letter-spacing:-0.048000px;}
.ls10{letter-spacing:-0.038064px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000240px;}
.ls32{letter-spacing:0.000312px;}
.ls2d{letter-spacing:0.038064px;}
.ls42{letter-spacing:0.054000px;}
.ls36{letter-spacing:0.062400px;}
.ls24{letter-spacing:0.076128px;}
.ls1e{letter-spacing:0.114192px;}
.ls21{letter-spacing:0.189912px;}
.ls27{letter-spacing:0.190320px;}
.ls20{letter-spacing:0.190512px;}
.ls28{letter-spacing:0.228384px;}
.ls25{letter-spacing:0.249600px;}
.ls1f{letter-spacing:0.312000px;}
.ls35{letter-spacing:0.342576px;}
.ls29{letter-spacing:0.374400px;}
.ls18{letter-spacing:0.380640px;}
.ls34{letter-spacing:0.418704px;}
.ls3d{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.561600px;}
.ls38{letter-spacing:0.570960px;}
.ls1d{letter-spacing:0.624000px;}
.ls3b{letter-spacing:0.810000px;}
.ls7{letter-spacing:1.080000px;}
.ls6{letter-spacing:1.248000px;}
.ls9{letter-spacing:2.163000px;}
.lsa{letter-spacing:2.781000px;}
.ls26{letter-spacing:3.240000px;}
.lsd{letter-spacing:3.360000px;}
.ls2{letter-spacing:3.780000px;}
.ls5{letter-spacing:4.620000px;}
.ls1{letter-spacing:5.280000px;}
.ls4{letter-spacing:7.800000px;}
.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;}
}
.ws16a{word-spacing:-17.280000px;}
.ws38{word-spacing:-14.976000px;}
.wsd7{word-spacing:-14.352000px;}
.ws109{word-spacing:-14.289600px;}
.ws108{word-spacing:-14.102400px;}
.wsfa{word-spacing:-13.977600px;}
.wse6{word-spacing:-13.728000px;}
.ws51{word-spacing:-13.665600px;}
.ws14{word-spacing:-13.500000px;}
.ws156{word-spacing:-13.104000px;}
.ws170{word-spacing:-12.690000px;}
.ws157{word-spacing:-12.480000px;}
.ws159{word-spacing:-12.230400px;}
.ws16e{word-spacing:-11.880000px;}
.ws179{word-spacing:-11.826000px;}
.wsb3{word-spacing:-11.793600px;}
.ws175{word-spacing:-11.718000px;}
.ws65{word-spacing:-11.220000px;}
.ws176{word-spacing:-10.854000px;}
.ws16b{word-spacing:-10.800000px;}
.ws86{word-spacing:-10.560000px;}
.ws87{word-spacing:-10.512000px;}
.ws88{word-spacing:-10.464000px;}
.ws173{word-spacing:-10.368000px;}
.ws17a{word-spacing:-10.206000px;}
.ws16c{word-spacing:-9.828000px;}
.ws92{word-spacing:-9.702000px;}
.ws152{word-spacing:-8.792784px;}
.wsb0{word-spacing:-8.754720px;}
.wsfc{word-spacing:-8.602464px;}
.wsfb{word-spacing:-8.564400px;}
.wse7{word-spacing:-8.488272px;}
.wsf9{word-spacing:-8.450208px;}
.ws11a{word-spacing:-8.412144px;}
.ws2{word-spacing:-8.374080px;}
.ws84{word-spacing:-8.336016px;}
.wsb2{word-spacing:-8.297952px;}
.ws93{word-spacing:-8.259888px;}
.ws95{word-spacing:-8.221824px;}
.ws67{word-spacing:-8.145696px;}
.ws85{word-spacing:-7.955376px;}
.wsb1{word-spacing:-7.841184px;}
.ws4{word-spacing:-7.800000px;}
.ws94{word-spacing:-7.688928px;}
.ws158{word-spacing:-7.612800px;}
.ws10a{word-spacing:-7.246800px;}
.ws15a{word-spacing:-7.117968px;}
.ws64{word-spacing:-6.844200px;}
.ws15{word-spacing:-6.750000px;}
.ws4b{word-spacing:-6.676800px;}
.ws153{word-spacing:-5.678400px;}
.ws13a{word-spacing:-5.179200px;}
.ws135{word-spacing:-4.867200px;}
.ws136{word-spacing:-4.680000px;}
.wsf6{word-spacing:-4.555200px;}
.wsb5{word-spacing:-4.368000px;}
.ws140{word-spacing:-4.320000px;}
.wsc7{word-spacing:-4.056000px;}
.wsf5{word-spacing:-3.931200px;}
.ws41{word-spacing:-3.868800px;}
.ws7f{word-spacing:-3.806400px;}
.ws165{word-spacing:-3.780000px;}
.ws43{word-spacing:-3.744000px;}
.ws6e{word-spacing:-3.556800px;}
.ws15c{word-spacing:-3.432000px;}
.ws2b{word-spacing:-3.369600px;}
.ws14e{word-spacing:-3.182400px;}
.wsd5{word-spacing:-3.120000px;}
.ws164{word-spacing:-2.932800px;}
.wsc5{word-spacing:-2.745600px;}
.ws1e{word-spacing:-2.558400px;}
.ws6{word-spacing:-2.496000px;}
.ws55{word-spacing:-2.371200px;}
.ws114{word-spacing:-2.322000px;}
.wsda{word-spacing:-2.308800px;}
.ws73{word-spacing:-2.246400px;}
.wsf7{word-spacing:-2.184000px;}
.ws3{word-spacing:-2.160000px;}
.ws6a{word-spacing:-2.121600px;}
.wsea{word-spacing:-2.059200px;}
.ws8c{word-spacing:-1.996800px;}
.ws3a{word-spacing:-1.934400px;}
.ws17{word-spacing:-1.872000px;}
.ws150{word-spacing:-1.809600px;}
.ws47{word-spacing:-1.747200px;}
.ws4c{word-spacing:-1.684800px;}
.ws12b{word-spacing:-1.674000px;}
.ws71{word-spacing:-1.622400px;}
.ws1a{word-spacing:-1.560000px;}
.ws7d{word-spacing:-1.497600px;}
.ws69{word-spacing:-1.435200px;}
.ws177{word-spacing:-1.404000px;}
.ws1c{word-spacing:-1.372800px;}
.ws101{word-spacing:-1.350000px;}
.wsf2{word-spacing:-1.310400px;}
.ws106{word-spacing:-1.248000px;}
.wsbd{word-spacing:-1.185600px;}
.wse{word-spacing:-1.123200px;}
.ws2d{word-spacing:-1.060800px;}
.ws116{word-spacing:-1.026000px;}
.ws4f{word-spacing:-0.998400px;}
.ws115{word-spacing:-0.972000px;}
.ws11c{word-spacing:-0.936000px;}
.ws107{word-spacing:-0.873600px;}
.ws59{word-spacing:-0.811200px;}
.ws16f{word-spacing:-0.810000px;}
.ws79{word-spacing:-0.748800px;}
.ws113{word-spacing:-0.702000px;}
.ws8e{word-spacing:-0.686400px;}
.wsa2{word-spacing:-0.624000px;}
.ws15b{word-spacing:-0.570960px;}
.ws50{word-spacing:-0.561600px;}
.wsc0{word-spacing:-0.499200px;}
.wsdf{word-spacing:-0.380640px;}
.wsed{word-spacing:-0.374400px;}
.ws155{word-spacing:-0.342576px;}
.wsbf{word-spacing:-0.312000px;}
.ws52{word-spacing:-0.309000px;}
.ws5{word-spacing:-0.270000px;}
.ws62{word-spacing:-0.249600px;}
.ws10f{word-spacing:-0.190320px;}
.ws11f{word-spacing:-0.187200px;}
.wsb9{word-spacing:-0.124800px;}
.ws17c{word-spacing:-0.108000px;}
.ws58{word-spacing:-0.062400px;}
.ws17d{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.wsa3{word-spacing:0.038064px;}
.ws174{word-spacing:0.054000px;}
.ws9a{word-spacing:0.062400px;}
.ws130{word-spacing:0.076128px;}
.ws178{word-spacing:0.108000px;}
.ws15d{word-spacing:0.114192px;}
.wsb6{word-spacing:0.124800px;}
.ws7c{word-spacing:0.187200px;}
.wsce{word-spacing:0.190320px;}
.wsc{word-spacing:0.249600px;}
.wsfd{word-spacing:0.304512px;}
.ws141{word-spacing:0.324000px;}
.ws12c{word-spacing:0.329400px;}
.ws60{word-spacing:0.374400px;}
.ws129{word-spacing:0.378000px;}
.ws15f{word-spacing:0.418704px;}
.ws128{word-spacing:0.432000px;}
.wsc6{word-spacing:0.436800px;}
.ws56{word-spacing:0.499200px;}
.ws6f{word-spacing:0.561600px;}
.ws137{word-spacing:0.609024px;}
.ws57{word-spacing:0.624000px;}
.ws10e{word-spacing:0.686400px;}
.ws9{word-spacing:0.748800px;}
.ws11b{word-spacing:0.761280px;}
.ws8b{word-spacing:0.811200px;}
.wsc2{word-spacing:0.873600px;}
.wse1{word-spacing:0.936000px;}
.wsc1{word-spacing:0.998400px;}
.ws48{word-spacing:1.060800px;}
.ws11d{word-spacing:1.123200px;}
.ws6d{word-spacing:1.185600px;}
.ws11e{word-spacing:1.248000px;}
.ws3e{word-spacing:1.310400px;}
.ws126{word-spacing:1.350000px;}
.ws9f{word-spacing:1.435200px;}
.ws8{word-spacing:1.497600px;}
.ws4a{word-spacing:1.560000px;}
.ws12e{word-spacing:1.622400px;}
.wsbc{word-spacing:1.684800px;}
.ws131{word-spacing:1.747200px;}
.wsa6{word-spacing:1.809600px;}
.ws12d{word-spacing:1.872000px;}
.wsf3{word-spacing:1.934400px;}
.wscc{word-spacing:1.996800px;}
.ws66{word-spacing:2.040000px;}
.ws61{word-spacing:2.059200px;}
.wseb{word-spacing:2.121600px;}
.ws145{word-spacing:2.160000px;}
.ws9d{word-spacing:2.184000px;}
.ws14a{word-spacing:2.308800px;}
.ws1f{word-spacing:2.371200px;}
.ws127{word-spacing:2.430000px;}
.ws9e{word-spacing:2.433600px;}
.ws117{word-spacing:2.484000px;}
.ws100{word-spacing:2.496000px;}
.ws46{word-spacing:2.558400px;}
.ws18{word-spacing:2.620800px;}
.ws9b{word-spacing:2.683200px;}
.ws16{word-spacing:2.745600px;}
.ws42{word-spacing:2.808000px;}
.ws63{word-spacing:2.932800px;}
.wsd8{word-spacing:2.995200px;}
.wsbe{word-spacing:3.057600px;}
.ws12a{word-spacing:3.078000px;}
.ws80{word-spacing:3.120000px;}
.ws6b{word-spacing:3.182400px;}
.ws36{word-spacing:3.244800px;}
.ws7b{word-spacing:3.307200px;}
.ws171{word-spacing:3.348000px;}
.wsf{word-spacing:3.369600px;}
.ws3f{word-spacing:3.432000px;}
.wsd{word-spacing:3.556800px;}
.ws112{word-spacing:3.564000px;}
.ws13{word-spacing:3.619200px;}
.ws111{word-spacing:3.672000px;}
.ws89{word-spacing:3.681600px;}
.ws29{word-spacing:3.744000px;}
.wsfe{word-spacing:3.806400px;}
.ws7a{word-spacing:3.868800px;}
.ws144{word-spacing:3.888000px;}
.wsdd{word-spacing:3.931200px;}
.ws11{word-spacing:3.993600px;}
.ws13b{word-spacing:4.056000px;}
.wsf4{word-spacing:4.118400px;}
.ws70{word-spacing:4.180800px;}
.ws3c{word-spacing:4.243200px;}
.ws8f{word-spacing:4.305600px;}
.ws74{word-spacing:4.368000px;}
.ws143{word-spacing:4.428000px;}
.ws49{word-spacing:4.430400px;}
.ws125{word-spacing:4.482000px;}
.ws14f{word-spacing:4.492800px;}
.ws81{word-spacing:4.555200px;}
.wsb4{word-spacing:4.617600px;}
.ws91{word-spacing:4.630500px;}
.ws82{word-spacing:4.680000px;}
.ws5b{word-spacing:4.742400px;}
.ws28{word-spacing:4.804800px;}
.wsf0{word-spacing:4.867200px;}
.ws8d{word-spacing:4.929600px;}
.ws1d{word-spacing:4.992000px;}
.ws98{word-spacing:5.054400px;}
.ws53{word-spacing:5.116800px;}
.ws78{word-spacing:5.179200px;}
.ws25{word-spacing:5.241600px;}
.wsf1{word-spacing:5.366400px;}
.ws5c{word-spacing:5.428800px;}
.ws3b{word-spacing:5.491200px;}
.ws13c{word-spacing:5.553600px;}
.ws142{word-spacing:5.562000px;}
.wsdc{word-spacing:5.616000px;}
.wsab{word-spacing:5.678400px;}
.ws44{word-spacing:5.740800px;}
.ws2f{word-spacing:5.803200px;}
.ws40{word-spacing:5.865600px;}
.ws32{word-spacing:5.990400px;}
.ws45{word-spacing:6.052800px;}
.wsd0{word-spacing:6.115200px;}
.ws72{word-spacing:6.177600px;}
.ws75{word-spacing:6.240000px;}
.wsec{word-spacing:6.302400px;}
.wsd1{word-spacing:6.364800px;}
.ws1b{word-spacing:6.427200px;}
.ws8a{word-spacing:6.489600px;}
.ws76{word-spacing:6.552000px;}
.wsb8{word-spacing:6.614400px;}
.wscb{word-spacing:6.676800px;}
.ws9c{word-spacing:6.801600px;}
.ws13e{word-spacing:6.864000px;}
.ws133{word-spacing:6.926400px;}
.ws5a{word-spacing:6.988800px;}
.wsa1{word-spacing:7.051200px;}
.wsca{word-spacing:7.113600px;}
.ws97{word-spacing:7.176000px;}
.ws12{word-spacing:7.238400px;}
.ws35{word-spacing:7.300800px;}
.wsb7{word-spacing:7.363200px;}
.ws27{word-spacing:7.425600px;}
.ws22{word-spacing:7.488000px;}
.ws4d{word-spacing:7.550400px;}
.wse9{word-spacing:7.612800px;}
.wsc4{word-spacing:7.675200px;}
.wsef{word-spacing:7.800000px;}
.wsde{word-spacing:7.862400px;}
.ws14b{word-spacing:7.924800px;}
.ws134{word-spacing:7.987200px;}
.ws2e{word-spacing:8.049600px;}
.ws2c{word-spacing:8.112000px;}
.ws12f{word-spacing:8.174400px;}
.ws5d{word-spacing:8.236800px;}
.ws13d{word-spacing:8.299200px;}
.ws10{word-spacing:8.361600px;}
.wsd9{word-spacing:8.424000px;}
.ws6c{word-spacing:8.486400px;}
.wsc9{word-spacing:8.548800px;}
.ws5e{word-spacing:8.611200px;}
.wsa4{word-spacing:8.673600px;}
.wsac{word-spacing:8.736000px;}
.ws162{word-spacing:8.798400px;}
.wscf{word-spacing:8.860800px;}
.ws23{word-spacing:9.048000px;}
.ws20{word-spacing:9.110400px;}
.wse8{word-spacing:9.172800px;}
.wsdb{word-spacing:9.235200px;}
.ws123{word-spacing:9.297600px;}
.wsa{word-spacing:9.360000px;}
.wse5{word-spacing:9.537000px;}
.ws31{word-spacing:9.547200px;}
.ws2a{word-spacing:9.609600px;}
.wse4{word-spacing:9.639000px;}
.ws21{word-spacing:9.672000px;}
.wsd2{word-spacing:9.734400px;}
.wsd6{word-spacing:9.796800px;}
.wsee{word-spacing:9.859200px;}
.wsa5{word-spacing:9.921600px;}
.ws90{word-spacing:10.046400px;}
.ws10d{word-spacing:10.108800px;}
.wsa7{word-spacing:10.233600px;}
.wsbb{word-spacing:10.296000px;}
.ws16d{word-spacing:10.358400px;}
.ws104{word-spacing:10.420800px;}
.ws147{word-spacing:10.483200px;}
.ws96{word-spacing:10.545600px;}
.ws13f{word-spacing:10.670400px;}
.wsa9{word-spacing:10.795200px;}
.ws169{word-spacing:10.857600px;}
.ws149{word-spacing:10.982400px;}
.ws37{word-spacing:11.088000px;}
.wsaa{word-spacing:11.107200px;}
.wsf8{word-spacing:11.124000px;}
.ws83{word-spacing:11.232000px;}
.wsd3{word-spacing:11.294400px;}
.ws172{word-spacing:11.340000px;}
.ws163{word-spacing:11.356800px;}
.ws119{word-spacing:11.376000px;}
.ws17b{word-spacing:11.484000px;}
.ws1{word-spacing:11.520000px;}
.wsad{word-spacing:11.544000px;}
.ws151{word-spacing:11.556000px;}
.wsaf{word-spacing:11.592000px;}
.ws30{word-spacing:11.606400px;}
.ws26{word-spacing:11.668800px;}
.wsd4{word-spacing:11.731200px;}
.ws161{word-spacing:11.772000px;}
.wsa8{word-spacing:11.793600px;}
.ws5f{word-spacing:11.918400px;}
.ws33{word-spacing:11.980800px;}
.wse3{word-spacing:12.043200px;}
.ws99{word-spacing:12.168000px;}
.wsae{word-spacing:12.355200px;}
.ws15e{word-spacing:12.417600px;}
.ws4e{word-spacing:12.604800px;}
.ws10c{word-spacing:12.667200px;}
.wse2{word-spacing:12.729600px;}
.ws24{word-spacing:12.854400px;}
.ws54{word-spacing:13.104000px;}
.ws118{word-spacing:13.166400px;}
.ws7{word-spacing:13.353600px;}
.ws103{word-spacing:13.478400px;}
.wsba{word-spacing:13.540800px;}
.ws105{word-spacing:13.665600px;}
.ws121{word-spacing:13.790400px;}
.ws110{word-spacing:14.102400px;}
.ws124{word-spacing:14.164800px;}
.ws154{word-spacing:14.539200px;}
.ws139{word-spacing:14.601600px;}
.ws120{word-spacing:14.664000px;}
.ws34{word-spacing:15.100800px;}
.ws148{word-spacing:15.288000px;}
.ws19{word-spacing:15.662400px;}
.ws77{word-spacing:15.787200px;}
.wsc8{word-spacing:15.912000px;}
.ws122{word-spacing:16.036800px;}
.wsff{word-spacing:16.348800px;}
.wscd{word-spacing:16.723200px;}
.ws146{word-spacing:16.785600px;}
.wsa0{word-spacing:17.472000px;}
.wsb{word-spacing:18.158400px;}
.ws14c{word-spacing:18.220800px;}
.ws39{word-spacing:18.720000px;}
.ws3d{word-spacing:18.782400px;}
.wse0{word-spacing:18.907200px;}
.ws166{word-spacing:19.032000px;}
.ws102{word-spacing:19.344000px;}
.ws167{word-spacing:19.531200px;}
.ws68{word-spacing:20.529600px;}
.ws138{word-spacing:20.592000px;}
.ws168{word-spacing:22.214400px;}
.ws160{word-spacing:23.400000px;}
.ws7e{word-spacing:23.587200px;}
.ws10b{word-spacing:24.024000px;}
.wsc3{word-spacing:25.833600px;}
.ws14d{word-spacing:31.137600px;}
.ws132{word-spacing:33.571200px;}
._26{margin-left:-33.976800px;}
._24{margin-left:-32.443800px;}
._25{margin-left:-28.953600px;}
._f{margin-left:-25.287600px;}
._1d{margin-left:-23.536200px;}
._a{margin-left:-21.543600px;}
._8{margin-left:-19.656000px;}
._6{margin-left:-17.592600px;}
._e{margin-left:-15.571200px;}
._1e{margin-left:-14.472600px;}
._20{margin-left:-13.282800px;}
._23{margin-left:-12.054600px;}
._9{margin-left:-10.955400px;}
._16{margin-left:-9.792000px;}
._2{margin-left:-8.640000px;}
._1f{margin-left:-6.765240px;}
._5{margin-left:-5.141400px;}
._1{margin-left:-3.330000px;}
._0{margin-left:-1.665000px;}
._3{width:1.181400px;}
._4{width:2.574000px;}
._22{width:4.590000px;}
._1c{width:9.168390px;}
._28{width:10.416600px;}
._d{width:12.082800px;}
._2a{width:14.202000px;}
._c{width:15.447600px;}
._2c{width:16.578000px;}
._2b{width:26.406000px;}
._29{width:28.026000px;}
._27{width:29.352000px;}
._7{width:32.539800px;}
._12{width:42.860400px;}
._b{width:44.928000px;}
._14{width:46.032000px;}
._19{width:66.207000px;}
._10{width:89.262000px;}
._1a{width:125.538600px;}
._18{width:130.659600px;}
._13{width:249.707400px;}
._17{width:262.272000px;}
._11{width:279.456000px;}
._15{width:337.440000px;}
._1b{width:338.496000px;}
._21{width:833.664000px;}
.fc6{color:rgb(101,98,99);}
.fc5{color:rgb(112,109,110);}
.fc4{color:transparent;}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:29.280000px;}
.fs16{font-size:31.110000px;}
.fs19{font-size:32.940000px;}
.fs5{font-size:36.000000px;}
.fsd{font-size:38.064000px;}
.fs4{font-size:42.000000px;}
.fs18{font-size:44.100000px;}
.fs6{font-size:45.000000px;}
.fs11{font-size:45.600000px;}
.fs14{font-size:47.999934px;}
.fse{font-size:48.000000px;}
.fs13{font-size:48.000090px;}
.fs12{font-size:48.000102px;}
.fs15{font-size:51.000000px;}
.fs10{font-size:51.300000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:61.800000px;}
.fsc{font-size:62.400000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs9{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:2.917950px;}
.ybf{bottom:11.204850px;}
.y25{bottom:46.951800px;}
.y68{bottom:52.125000px;}
.y3e{bottom:52.162500px;}
.y24{bottom:61.201800px;}
.y5{bottom:66.525004px;}
.y23{bottom:75.451800px;}
.y128{bottom:80.508900px;}
.y4{bottom:97.125005px;}
.y67{bottom:111.000150px;}
.y123{bottom:111.272700px;}
.y145{bottom:112.350150px;}
.y18c{bottom:112.500150px;}
.y109{bottom:112.650300px;}
.y1bc{bottom:114.054150px;}
.y16a{bottom:114.204150px;}
.yf5{bottom:114.247800px;}
.ye0{bottom:121.145850px;}
.yb8{bottom:121.146000px;}
.y18b{bottom:129.000150px;}
.y3c{bottom:129.007650px;}
.y1bb{bottom:130.554150px;}
.y66{bottom:131.250150px;}
.y122{bottom:131.522700px;}
.y144{bottom:132.600150px;}
.y89{bottom:132.900300px;}
.y169{bottom:134.454150px;}
.yf4{bottom:134.497800px;}
.yb0{bottom:135.495750px;}
.yb6{bottom:138.553350px;}
.yb4{bottom:138.985350px;}
.y21{bottom:139.264499px;}
.yb5{bottom:139.849350px;}
.yb7{bottom:140.078850px;}
.yb3{bottom:140.389350px;}
.ybd{bottom:141.388350px;}
.ybb{bottom:142.913850px;}
.ybc{bottom:143.507850px;}
.ybe{bottom:144.803850px;}
.y18a{bottom:145.500150px;}
.y1ba{bottom:147.054150px;}
.y3b{bottom:149.257650px;}
.y65{bottom:151.500150px;}
.y121{bottom:151.772700px;}
.yb2{bottom:152.404350px;}
.y143{bottom:152.850150px;}
.y88{bottom:153.150300px;}
.y168{bottom:154.704150px;}
.yf3{bottom:154.747800px;}
.yaf{bottom:155.745750px;}
.y189{bottom:162.000150px;}
.y1b9{bottom:163.554150px;}
.y3a{bottom:169.507650px;}
.y64{bottom:171.750300px;}
.y120{bottom:172.022700px;}
.y142{bottom:173.100150px;}
.y87{bottom:173.400300px;}
.yf2{bottom:174.997800px;}
.y125{bottom:175.016100px;}
.y129{bottom:175.020900px;}
.yae{bottom:175.995750px;}
.yc0{bottom:177.817350px;}
.y188{bottom:178.500300px;}
.y1b8{bottom:180.054150px;}
.y90{bottom:185.424000px;}
.y39{bottom:189.757650px;}
.y63{bottom:192.000300px;}
.y11f{bottom:192.272700px;}
.y141{bottom:193.350150px;}
.y86{bottom:193.650300px;}
.y167{bottom:194.604150px;}
.y187{bottom:195.000300px;}
.yf1{bottom:195.247800px;}
.yad{bottom:196.245750px;}
.y1b7{bottom:196.554150px;}
.y18{bottom:196.933500px;}
.yc1{bottom:201.020627px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y38{bottom:210.007650px;}
.y186{bottom:211.500300px;}
.y62{bottom:212.250300px;}
.y11e{bottom:212.522700px;}
.y1b6{bottom:213.054150px;}
.y140{bottom:213.600150px;}
.y85{bottom:213.900300px;}
.yf0{bottom:215.497800px;}
.yac{bottom:216.495750px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yc2{bottom:223.118176px;}
.y8c{bottom:223.669050px;}
.y185{bottom:228.000300px;}
.y1b5{bottom:229.554150px;}
.y37{bottom:230.257650px;}
.y61{bottom:232.500300px;}
.y11d{bottom:232.772700px;}
.y13f{bottom:233.850150px;}
.y84{bottom:234.150300px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yef{bottom:235.747800px;}
.yab{bottom:236.745750px;}
.y184{bottom:244.500300px;}
.yc3{bottom:245.938700px;}
.y1b4{bottom:246.054150px;}
.y36{bottom:250.507650px;}
.y60{bottom:252.750300px;}
.y11c{bottom:253.022700px;}
.y13e{bottom:254.100150px;}
.y166{bottom:254.304150px;}
.y83{bottom:254.400300px;}
.yee{bottom:255.997800px;}
.yaa{bottom:256.995750px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y183{bottom:261.000300px;}
.y1b3{bottom:262.554150px;}
.yc4{bottom:268.078777px;}
.y35{bottom:270.757650px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y5f{bottom:273.000300px;}
.y11b{bottom:273.272700px;}
.y13d{bottom:274.350150px;}
.y165{bottom:274.554150px;}
.y82{bottom:274.650300px;}
.yed{bottom:276.247800px;}
.ya9{bottom:277.245750px;}
.y182{bottom:277.500300px;}
.y1b2{bottom:279.054150px;}
.yca{bottom:281.366850px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yb9{bottom:288.409350px;}
.y34{bottom:291.007650px;}
.yc5{bottom:291.103436px;}
.y5e{bottom:293.250300px;}
.y11a{bottom:293.522700px;}
.y181{bottom:294.000300px;}
.y13c{bottom:294.600150px;}
.y164{bottom:294.804150px;}
.y81{bottom:294.900300px;}
.y1b1{bottom:295.554150px;}
.yec{bottom:296.497800px;}
.ya8{bottom:297.495750px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y180{bottom:310.500300px;}
.y33{bottom:311.257650px;}
.y1b0{bottom:312.054150px;}
.yc6{bottom:313.090412px;}
.y5d{bottom:313.500300px;}
.y119{bottom:313.772700px;}
.y13b{bottom:314.850150px;}
.y163{bottom:315.054150px;}
.y80{bottom:315.150300px;}
.yeb{bottom:316.747800px;}
.ya7{bottom:317.745750px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y17f{bottom:327.000300px;}
.y1af{bottom:328.554150px;}
.y32{bottom:331.507650px;}
.y5c{bottom:333.750300px;}
.y118{bottom:334.022700px;}
.y13a{bottom:335.100150px;}
.y162{bottom:335.304150px;}
.y7f{bottom:335.400300px;}
.yc7{bottom:335.978982px;}
.yea{bottom:336.997800px;}
.ya6{bottom:337.995750px;}
.y17e{bottom:343.500300px;}
.y1ae{bottom:345.054150px;}
.yf{bottom:348.133500px;}
.y31{bottom:351.757650px;}
.y5b{bottom:354.000300px;}
.y117{bottom:354.272700px;}
.y139{bottom:355.350150px;}
.y161{bottom:355.554150px;}
.y7e{bottom:355.650300px;}
.ye9{bottom:357.247800px;}
.ya5{bottom:358.245750px;}
.yc8{bottom:358.382732px;}
.y17d{bottom:360.000300px;}
.y1ad{bottom:361.554150px;}
.y30{bottom:372.007650px;}
.y5a{bottom:374.250300px;}
.y116{bottom:374.522700px;}
.y138{bottom:375.600150px;}
.y160{bottom:375.804150px;}
.y7d{bottom:375.900300px;}
.y17c{bottom:376.500300px;}
.ye8{bottom:377.497800px;}
.y1ac{bottom:378.054150px;}
.ya4{bottom:378.495750px;}
.yc9{bottom:380.743955px;}
.ye{bottom:386.785499px;}
.y2f{bottom:392.257650px;}
.y17b{bottom:393.000300px;}
.y59{bottom:394.500300px;}
.y1ab{bottom:394.554150px;}
.y115{bottom:394.772700px;}
.y137{bottom:395.850150px;}
.y15f{bottom:396.054150px;}
.y7c{bottom:396.150300px;}
.ye7{bottom:397.747800px;}
.ya3{bottom:398.745750px;}
.yd{bottom:408.044999px;}
.y17a{bottom:409.500300px;}
.y1aa{bottom:411.054150px;}
.y2e{bottom:412.507650px;}
.y58{bottom:414.750300px;}
.y114{bottom:415.022700px;}
.y108{bottom:415.800150px;}
.y136{bottom:416.100150px;}
.y15e{bottom:416.304150px;}
.y7b{bottom:416.400300px;}
.ye6{bottom:417.997800px;}
.ya2{bottom:418.995750px;}
.ycb{bottom:425.827350px;}
.y179{bottom:426.000300px;}
.y1a9{bottom:427.554150px;}
.y57{bottom:435.000300px;}
.y113{bottom:435.272700px;}
.y135{bottom:436.350150px;}
.y15d{bottom:436.554150px;}
.y7a{bottom:436.650300px;}
.ye5{bottom:438.247800px;}
.ya1{bottom:439.245750px;}
.y178{bottom:442.500300px;}
.y1a8{bottom:444.054150px;}
.ycc{bottom:447.933404px;}
.y2d{bottom:452.257650px;}
.yb1{bottom:452.441850px;}
.y56{bottom:455.250300px;}
.y112{bottom:455.522700px;}
.y134{bottom:456.600150px;}
.y15c{bottom:456.804150px;}
.y79{bottom:456.900300px;}
.ye4{bottom:458.497800px;}
.y177{bottom:459.000300px;}
.ya0{bottom:459.495750px;}
.y1a7{bottom:460.554150px;}
.ycd{bottom:470.745424px;}
.y2c{bottom:472.507650px;}
.yba{bottom:472.867350px;}
.y55{bottom:475.500300px;}
.y111{bottom:475.772700px;}
.y133{bottom:476.850150px;}
.y15b{bottom:477.054150px;}
.y78{bottom:477.150300px;}
.ye3{bottom:478.747800px;}
.y9f{bottom:479.745750px;}
.yc{bottom:484.864502px;}
.y176{bottom:492.000300px;}
.yce{bottom:492.885500px;}
.y1a6{bottom:493.554150px;}
.y54{bottom:495.750300px;}
.y110{bottom:496.022700px;}
.y132{bottom:497.100150px;}
.y15a{bottom:497.304150px;}
.y77{bottom:497.400300px;}
.ye2{bottom:498.997800px;}
.y9e{bottom:499.995750px;}
.yb{bottom:502.864502px;}
.y175{bottom:508.500300px;}
.y1a5{bottom:510.054150px;}
.ycf{bottom:515.910160px;}
.y53{bottom:516.000300px;}
.y10f{bottom:516.272700px;}
.y131{bottom:517.350150px;}
.y159{bottom:517.554150px;}
.y76{bottom:517.650300px;}
.ye1{bottom:519.247800px;}
.y9d{bottom:520.245750px;}
.ya{bottom:520.864502px;}
.y174{bottom:525.000300px;}
.y1a4{bottom:526.554150px;}
.y52{bottom:536.250300px;}
.y10e{bottom:536.522700px;}
.y130{bottom:537.600150px;}
.y158{bottom:537.804150px;}
.yd0{bottom:537.897136px;}
.y75{bottom:537.900300px;}
.y9{bottom:538.864499px;}
.y9c{bottom:540.495750px;}
.y12e{bottom:540.750300px;}
.y173{bottom:541.500300px;}
.y1a3{bottom:543.054150px;}
.y51{bottom:556.500300px;}
.y10d{bottom:556.772700px;}
.y8{bottom:556.864499px;}
.y172{bottom:558.000300px;}
.y157{bottom:558.054150px;}
.y74{bottom:558.150300px;}
.y1a2{bottom:559.554150px;}
.y9b{bottom:560.745750px;}
.yd1{bottom:560.785705px;}
.y171{bottom:574.500300px;}
.y1a1{bottom:576.054150px;}
.y50{bottom:576.750300px;}
.y10c{bottom:577.022700px;}
.y107{bottom:577.291650px;}
.y12f{bottom:577.500300px;}
.y156{bottom:578.304150px;}
.y73{bottom:578.400300px;}
.yd2{bottom:583.189456px;}
.y106{bottom:589.291650px;}
.y170{bottom:591.000300px;}
.y1a0{bottom:592.554150px;}
.y2b{bottom:594.007650px;}
.y4f{bottom:597.000300px;}
.y10b{bottom:597.272700px;}
.y155{bottom:598.554150px;}
.y72{bottom:598.650300px;}
.yd3{bottom:605.550678px;}
.y16f{bottom:607.500300px;}
.y19f{bottom:609.054150px;}
.y2a{bottom:613.507650px;}
.y105{bottom:616.741650px;}
.y4e{bottom:617.250300px;}
.y10a{bottom:617.522700px;}
.y154{bottom:618.804150px;}
.y71{bottom:618.900300px;}
.y16e{bottom:624.000300px;}
.y19e{bottom:625.554150px;}
.yd4{bottom:628.753955px;}
.y8b{bottom:630.789000px;}
.y104{bottom:635.116650px;}
.y4d{bottom:637.500300px;}
.y16b{bottom:638.550150px;}
.y153{bottom:639.054150px;}
.y70{bottom:639.150300px;}
.y16d{bottom:640.500300px;}
.y19d{bottom:642.054150px;}
.y7{bottom:645.510000px;}
.y99{bottom:647.401800px;}
.yd5{bottom:652.059299px;}
.y103{bottom:653.491650px;}
.y29{bottom:654.007650px;}
.y4c{bottom:657.750300px;}
.y19c{bottom:658.554150px;}
.y152{bottom:659.304150px;}
.y6f{bottom:659.400300px;}
.y98{bottom:661.081800px;}
.y6{bottom:666.771000px;}
.y102{bottom:671.866650px;}
.yd6{bottom:674.197350px;}
.y97{bottom:674.761800px;}
.y19b{bottom:675.054150px;}
.y4b{bottom:678.000300px;}
.y151{bottom:679.554150px;}
.y6e{bottom:679.650300px;}
.y12d{bottom:680.066400px;}
.y16c{bottom:681.000300px;}
.y96{bottom:687.917400px;}
.y101{bottom:690.241650px;}
.y19a{bottom:691.554150px;}
.y12c{bottom:693.566400px;}
.yd7{bottom:697.016599px;}
.y4a{bottom:698.250300px;}
.y150{bottom:699.804150px;}
.y6d{bottom:699.900300px;}
.y28{bottom:702.007650px;}
.y12b{bottom:707.066400px;}
.y199{bottom:708.054150px;}
.y100{bottom:708.616650px;}
.y95{bottom:715.995600px;}
.y49{bottom:718.500300px;}
.yd8{bottom:719.158640px;}
.y14f{bottom:720.054150px;}
.y6c{bottom:720.150300px;}
.y12a{bottom:720.566400px;}
.y198{bottom:724.554150px;}
.yff{bottom:726.991650px;}
.y94{bottom:729.675600px;}
.y27{bottom:738.007650px;}
.y48{bottom:738.750300px;}
.y14e{bottom:740.304150px;}
.y6b{bottom:740.400300px;}
.y197{bottom:741.054150px;}
.yd9{bottom:742.207350px;}
.y93{bottom:743.355600px;}
.yfe{bottom:745.366650px;}
.y124{bottom:747.567000px;}
.y3{bottom:752.599495px;}
.y196{bottom:757.554150px;}
.y47{bottom:759.000300px;}
.y8e{bottom:759.746550px;}
.y14d{bottom:760.554150px;}
.yfd{bottom:763.741650px;}
.yda{bottom:764.207994px;}
.y195{bottom:774.054150px;}
.y26{bottom:778.507650px;}
.y46{bottom:779.250150px;}
.y6a{bottom:780.300150px;}
.y14c{bottom:780.804150px;}
.yfc{bottom:782.116650px;}
.ydb{bottom:787.084691px;}
.y92{bottom:788.853000px;}
.y194{bottom:790.554150px;}
.y45{bottom:799.500150px;}
.yfb{bottom:800.491650px;}
.y69{bottom:800.550150px;}
.y14b{bottom:801.054150px;}
.y91{bottom:802.533000px;}
.y193{bottom:807.054150px;}
.ydc{bottom:809.481158px;}
.y8f{bottom:816.222150px;}
.yfa{bottom:818.866650px;}
.y44{bottom:819.750150px;}
.y14a{bottom:821.304150px;}
.y192{bottom:823.554150px;}
.ydd{bottom:831.835545px;}
.y8d{bottom:833.310750px;}
.yf9{bottom:837.241650px;}
.y43{bottom:840.000150px;}
.y191{bottom:840.054150px;}
.y149{bottom:841.554150px;}
.y127{bottom:841.880550px;}
.yde{bottom:853.827642px;}
.y190{bottom:856.554150px;}
.y42{bottom:860.250150px;}
.y148{bottom:861.804150px;}
.yf8{bottom:865.554150px;}
.y18f{bottom:873.054150px;}
.ydf{bottom:877.134023px;}
.y2{bottom:879.369000px;}
.y41{bottom:880.500150px;}
.yf7{bottom:883.929150px;}
.y18e{bottom:889.554150px;}
.y8a{bottom:890.753850px;}
.y126{bottom:893.444550px;}
.y40{bottom:900.750150px;}
.y147{bottom:902.304150px;}
.y18d{bottom:906.054150px;}
.yf6{bottom:913.794000px;}
.y3d{bottom:917.160000px;}
.y3f{bottom:921.000150px;}
.y146{bottom:922.554150px;}
.y1{bottom:966.726000px;}
.y22{bottom:992.340150px;}
.h9{height:25.668000px;}
.h20{height:29.820000px;}
.h24{height:31.443300px;}
.h7{height:32.130000px;}
.ha{height:32.670000px;}
.h18{height:33.698400px;}
.h17{height:33.835200px;}
.h23{height:34.224000px;}
.h12{height:34.945312px;}
.h1e{height:35.471951px;}
.h27{height:35.472000px;}
.h1d{height:35.472067px;}
.h1c{height:35.472075px;}
.h26{height:35.616000px;}
.h1f{height:36.363000px;}
.h21{height:37.854000px;}
.h16{height:38.064600px;}
.h22{height:38.502000px;}
.h29{height:38.556000px;}
.h19{height:39.906000px;}
.h1b{height:40.068000px;}
.h2a{height:41.467620px;}
.h28{height:41.468220px;}
.hf{height:42.228000px;}
.h11{height:44.491200px;}
.h2b{height:44.553600px;}
.h6{height:45.900000px;}
.h14{height:45.917400px;}
.he{height:47.058000px;}
.h13{height:47.918232px;}
.h10{height:47.918832px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hb{height:56.862000px;}
.hd{height:62.412000px;}
.h5{height:78.030000px;}
.hc{height:83.106000px;}
.h4{height:119.055004px;}
.h25{height:184.977000px;}
.h15{height:234.315000px;}
.h1a{height:802.095000px;}
.h8{height:999.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:394.642500px;}
.w5{width:410.998500px;}
.w7{width:431.916000px;}
.w3{width:623.232000px;}
.w4{width:623.250000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:11.205450px;}
.x26{left:50.598300px;}
.x5{left:94.500000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x19{left:110.551950px;}
.x6{left:112.500000px;}
.x25{left:114.792000px;}
.x2a{left:121.500000px;}
.xa{left:124.500000px;}
.x15{left:135.394200px;}
.x14{left:150.757200px;}
.x20{left:163.732200px;}
.x16{left:166.687200px;}
.x17{left:197.980200px;}
.x4{left:203.484001px;}
.x27{left:211.019550px;}
.x18{left:229.273200px;}
.x21{left:270.000000px;}
.x22{left:282.000000px;}
.x29{left:298.199700px;}
.xc{left:300.957150px;}
.xd{left:318.048150px;}
.x28{left:342.035550px;}
.xe{left:349.368150px;}
.xf{left:380.688150px;}
.x9{left:392.062200px;}
.x8{left:393.331350px;}
.xb{left:404.853900px;}
.x10{left:412.008150px;}
.x23{left:418.500000px;}
.x24{left:430.500000px;}
.x11{left:443.328150px;}
.x3{left:454.959000px;}
.x12{left:474.648150px;}
.x1b{left:496.059459px;}
.x1a{left:497.583150px;}
.x1c{left:498.684252px;}
.x1d{left:528.071850px;}
.x1e{left:541.571850px;}
.x1f{left:555.071850px;}
.x7{left:628.245000px;}
@media print{
.v2{vertical-align:-18.470400pt;}
.v3{vertical-align:-15.096000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.984000pt;}
.v1{vertical-align:18.470400pt;}
.ls3a{letter-spacing:-17.504000pt;}
.ls17{letter-spacing:-17.344000pt;}
.ls33{letter-spacing:-17.312000pt;}
.ls3{letter-spacing:-17.280000pt;}
.ls44{letter-spacing:-17.248000pt;}
.ls2b{letter-spacing:-17.152000pt;}
.ls3e{letter-spacing:-17.120000pt;}
.lsf{letter-spacing:-17.024000pt;}
.ls22{letter-spacing:-16.928000pt;}
.ls8{letter-spacing:-16.896000pt;}
.ls1b{letter-spacing:-1.719467pt;}
.ls37{letter-spacing:-1.331200pt;}
.ls39{letter-spacing:-1.116544pt;}
.ls3c{letter-spacing:-0.864000pt;}
.ls2c{letter-spacing:-0.676693pt;}
.ls15{letter-spacing:-0.609024pt;}
.ls31{letter-spacing:-0.541355pt;}
.ls43{letter-spacing:-0.528000pt;}
.ls2e{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.473685pt;}
.ls40{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.372181pt;}
.ls2f{letter-spacing:-0.292800pt;}
.ls23{letter-spacing:-0.270677pt;}
.ls45{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.203008pt;}
.ls1c{letter-spacing:-0.169173pt;}
.ls30{letter-spacing:-0.166400pt;}
.ls41{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.135339pt;}
.ls14{letter-spacing:-0.101504pt;}
.ls13{letter-spacing:-0.085333pt;}
.ls1a{letter-spacing:-0.067669pt;}
.lsb{letter-spacing:-0.055467pt;}
.ls3f{letter-spacing:-0.048000pt;}
.ls12{letter-spacing:-0.042667pt;}
.ls10{letter-spacing:-0.033835pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000213pt;}
.ls32{letter-spacing:0.000277pt;}
.ls2d{letter-spacing:0.033835pt;}
.ls42{letter-spacing:0.048000pt;}
.ls36{letter-spacing:0.055467pt;}
.ls24{letter-spacing:0.067669pt;}
.ls1e{letter-spacing:0.101504pt;}
.ls21{letter-spacing:0.168811pt;}
.ls27{letter-spacing:0.169173pt;}
.ls20{letter-spacing:0.169344pt;}
.ls28{letter-spacing:0.203008pt;}
.ls25{letter-spacing:0.221867pt;}
.ls1f{letter-spacing:0.277333pt;}
.ls35{letter-spacing:0.304512pt;}
.ls29{letter-spacing:0.332800pt;}
.ls18{letter-spacing:0.338347pt;}
.ls34{letter-spacing:0.372181pt;}
.ls3d{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.499200pt;}
.ls38{letter-spacing:0.507520pt;}
.ls1d{letter-spacing:0.554667pt;}
.ls3b{letter-spacing:0.720000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls6{letter-spacing:1.109333pt;}
.ls9{letter-spacing:1.922667pt;}
.lsa{letter-spacing:2.472000pt;}
.ls26{letter-spacing:2.880000pt;}
.lsd{letter-spacing:2.986667pt;}
.ls2{letter-spacing:3.360000pt;}
.ls5{letter-spacing:4.106667pt;}
.ls1{letter-spacing:4.693333pt;}
.ls4{letter-spacing:6.933333pt;}
.ws16a{word-spacing:-15.360000pt;}
.ws38{word-spacing:-13.312000pt;}
.wsd7{word-spacing:-12.757333pt;}
.ws109{word-spacing:-12.701867pt;}
.ws108{word-spacing:-12.535467pt;}
.wsfa{word-spacing:-12.424533pt;}
.wse6{word-spacing:-12.202667pt;}
.ws51{word-spacing:-12.147200pt;}
.ws14{word-spacing:-12.000000pt;}
.ws156{word-spacing:-11.648000pt;}
.ws170{word-spacing:-11.280000pt;}
.ws157{word-spacing:-11.093333pt;}
.ws159{word-spacing:-10.871467pt;}
.ws16e{word-spacing:-10.560000pt;}
.ws179{word-spacing:-10.512000pt;}
.wsb3{word-spacing:-10.483200pt;}
.ws175{word-spacing:-10.416000pt;}
.ws65{word-spacing:-9.973333pt;}
.ws176{word-spacing:-9.648000pt;}
.ws16b{word-spacing:-9.600000pt;}
.ws86{word-spacing:-9.386667pt;}
.ws87{word-spacing:-9.344000pt;}
.ws88{word-spacing:-9.301333pt;}
.ws173{word-spacing:-9.216000pt;}
.ws17a{word-spacing:-9.072000pt;}
.ws16c{word-spacing:-8.736000pt;}
.ws92{word-spacing:-8.624000pt;}
.ws152{word-spacing:-7.815808pt;}
.wsb0{word-spacing:-7.781973pt;}
.wsfc{word-spacing:-7.646635pt;}
.wsfb{word-spacing:-7.612800pt;}
.wse7{word-spacing:-7.545131pt;}
.wsf9{word-spacing:-7.511296pt;}
.ws11a{word-spacing:-7.477461pt;}
.ws2{word-spacing:-7.443627pt;}
.ws84{word-spacing:-7.409792pt;}
.wsb2{word-spacing:-7.375957pt;}
.ws93{word-spacing:-7.342123pt;}
.ws95{word-spacing:-7.308288pt;}
.ws67{word-spacing:-7.240619pt;}
.ws85{word-spacing:-7.071445pt;}
.wsb1{word-spacing:-6.969941pt;}
.ws4{word-spacing:-6.933333pt;}
.ws94{word-spacing:-6.834603pt;}
.ws158{word-spacing:-6.766933pt;}
.ws10a{word-spacing:-6.441600pt;}
.ws15a{word-spacing:-6.327083pt;}
.ws64{word-spacing:-6.083733pt;}
.ws15{word-spacing:-6.000000pt;}
.ws4b{word-spacing:-5.934933pt;}
.ws153{word-spacing:-5.047467pt;}
.ws13a{word-spacing:-4.603733pt;}
.ws135{word-spacing:-4.326400pt;}
.ws136{word-spacing:-4.160000pt;}
.wsf6{word-spacing:-4.049067pt;}
.wsb5{word-spacing:-3.882667pt;}
.ws140{word-spacing:-3.840000pt;}
.wsc7{word-spacing:-3.605333pt;}
.wsf5{word-spacing:-3.494400pt;}
.ws41{word-spacing:-3.438933pt;}
.ws7f{word-spacing:-3.383467pt;}
.ws165{word-spacing:-3.360000pt;}
.ws43{word-spacing:-3.328000pt;}
.ws6e{word-spacing:-3.161600pt;}
.ws15c{word-spacing:-3.050667pt;}
.ws2b{word-spacing:-2.995200pt;}
.ws14e{word-spacing:-2.828800pt;}
.wsd5{word-spacing:-2.773333pt;}
.ws164{word-spacing:-2.606933pt;}
.wsc5{word-spacing:-2.440533pt;}
.ws1e{word-spacing:-2.274133pt;}
.ws6{word-spacing:-2.218667pt;}
.ws55{word-spacing:-2.107733pt;}
.ws114{word-spacing:-2.064000pt;}
.wsda{word-spacing:-2.052267pt;}
.ws73{word-spacing:-1.996800pt;}
.wsf7{word-spacing:-1.941333pt;}
.ws3{word-spacing:-1.920000pt;}
.ws6a{word-spacing:-1.885867pt;}
.wsea{word-spacing:-1.830400pt;}
.ws8c{word-spacing:-1.774933pt;}
.ws3a{word-spacing:-1.719467pt;}
.ws17{word-spacing:-1.664000pt;}
.ws150{word-spacing:-1.608533pt;}
.ws47{word-spacing:-1.553067pt;}
.ws4c{word-spacing:-1.497600pt;}
.ws12b{word-spacing:-1.488000pt;}
.ws71{word-spacing:-1.442133pt;}
.ws1a{word-spacing:-1.386667pt;}
.ws7d{word-spacing:-1.331200pt;}
.ws69{word-spacing:-1.275733pt;}
.ws177{word-spacing:-1.248000pt;}
.ws1c{word-spacing:-1.220267pt;}
.ws101{word-spacing:-1.200000pt;}
.wsf2{word-spacing:-1.164800pt;}
.ws106{word-spacing:-1.109333pt;}
.wsbd{word-spacing:-1.053867pt;}
.wse{word-spacing:-0.998400pt;}
.ws2d{word-spacing:-0.942933pt;}
.ws116{word-spacing:-0.912000pt;}
.ws4f{word-spacing:-0.887467pt;}
.ws115{word-spacing:-0.864000pt;}
.ws11c{word-spacing:-0.832000pt;}
.ws107{word-spacing:-0.776533pt;}
.ws59{word-spacing:-0.721067pt;}
.ws16f{word-spacing:-0.720000pt;}
.ws79{word-spacing:-0.665600pt;}
.ws113{word-spacing:-0.624000pt;}
.ws8e{word-spacing:-0.610133pt;}
.wsa2{word-spacing:-0.554667pt;}
.ws15b{word-spacing:-0.507520pt;}
.ws50{word-spacing:-0.499200pt;}
.wsc0{word-spacing:-0.443733pt;}
.wsdf{word-spacing:-0.338347pt;}
.wsed{word-spacing:-0.332800pt;}
.ws155{word-spacing:-0.304512pt;}
.wsbf{word-spacing:-0.277333pt;}
.ws52{word-spacing:-0.274667pt;}
.ws5{word-spacing:-0.240000pt;}
.ws62{word-spacing:-0.221867pt;}
.ws10f{word-spacing:-0.169173pt;}
.ws11f{word-spacing:-0.166400pt;}
.wsb9{word-spacing:-0.110933pt;}
.ws17c{word-spacing:-0.096000pt;}
.ws58{word-spacing:-0.055467pt;}
.ws17d{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.033835pt;}
.ws174{word-spacing:0.048000pt;}
.ws9a{word-spacing:0.055467pt;}
.ws130{word-spacing:0.067669pt;}
.ws178{word-spacing:0.096000pt;}
.ws15d{word-spacing:0.101504pt;}
.wsb6{word-spacing:0.110933pt;}
.ws7c{word-spacing:0.166400pt;}
.wsce{word-spacing:0.169173pt;}
.wsc{word-spacing:0.221867pt;}
.wsfd{word-spacing:0.270677pt;}
.ws141{word-spacing:0.288000pt;}
.ws12c{word-spacing:0.292800pt;}
.ws60{word-spacing:0.332800pt;}
.ws129{word-spacing:0.336000pt;}
.ws15f{word-spacing:0.372181pt;}
.ws128{word-spacing:0.384000pt;}
.wsc6{word-spacing:0.388267pt;}
.ws56{word-spacing:0.443733pt;}
.ws6f{word-spacing:0.499200pt;}
.ws137{word-spacing:0.541355pt;}
.ws57{word-spacing:0.554667pt;}
.ws10e{word-spacing:0.610133pt;}
.ws9{word-spacing:0.665600pt;}
.ws11b{word-spacing:0.676693pt;}
.ws8b{word-spacing:0.721067pt;}
.wsc2{word-spacing:0.776533pt;}
.wse1{word-spacing:0.832000pt;}
.wsc1{word-spacing:0.887467pt;}
.ws48{word-spacing:0.942933pt;}
.ws11d{word-spacing:0.998400pt;}
.ws6d{word-spacing:1.053867pt;}
.ws11e{word-spacing:1.109333pt;}
.ws3e{word-spacing:1.164800pt;}
.ws126{word-spacing:1.200000pt;}
.ws9f{word-spacing:1.275733pt;}
.ws8{word-spacing:1.331200pt;}
.ws4a{word-spacing:1.386667pt;}
.ws12e{word-spacing:1.442133pt;}
.wsbc{word-spacing:1.497600pt;}
.ws131{word-spacing:1.553067pt;}
.wsa6{word-spacing:1.608533pt;}
.ws12d{word-spacing:1.664000pt;}
.wsf3{word-spacing:1.719467pt;}
.wscc{word-spacing:1.774933pt;}
.ws66{word-spacing:1.813333pt;}
.ws61{word-spacing:1.830400pt;}
.wseb{word-spacing:1.885867pt;}
.ws145{word-spacing:1.920000pt;}
.ws9d{word-spacing:1.941333pt;}
.ws14a{word-spacing:2.052267pt;}
.ws1f{word-spacing:2.107733pt;}
.ws127{word-spacing:2.160000pt;}
.ws9e{word-spacing:2.163200pt;}
.ws117{word-spacing:2.208000pt;}
.ws100{word-spacing:2.218667pt;}
.ws46{word-spacing:2.274133pt;}
.ws18{word-spacing:2.329600pt;}
.ws9b{word-spacing:2.385067pt;}
.ws16{word-spacing:2.440533pt;}
.ws42{word-spacing:2.496000pt;}
.ws63{word-spacing:2.606933pt;}
.wsd8{word-spacing:2.662400pt;}
.wsbe{word-spacing:2.717867pt;}
.ws12a{word-spacing:2.736000pt;}
.ws80{word-spacing:2.773333pt;}
.ws6b{word-spacing:2.828800pt;}
.ws36{word-spacing:2.884267pt;}
.ws7b{word-spacing:2.939733pt;}
.ws171{word-spacing:2.976000pt;}
.wsf{word-spacing:2.995200pt;}
.ws3f{word-spacing:3.050667pt;}
.wsd{word-spacing:3.161600pt;}
.ws112{word-spacing:3.168000pt;}
.ws13{word-spacing:3.217067pt;}
.ws111{word-spacing:3.264000pt;}
.ws89{word-spacing:3.272533pt;}
.ws29{word-spacing:3.328000pt;}
.wsfe{word-spacing:3.383467pt;}
.ws7a{word-spacing:3.438933pt;}
.ws144{word-spacing:3.456000pt;}
.wsdd{word-spacing:3.494400pt;}
.ws11{word-spacing:3.549867pt;}
.ws13b{word-spacing:3.605333pt;}
.wsf4{word-spacing:3.660800pt;}
.ws70{word-spacing:3.716267pt;}
.ws3c{word-spacing:3.771733pt;}
.ws8f{word-spacing:3.827200pt;}
.ws74{word-spacing:3.882667pt;}
.ws143{word-spacing:3.936000pt;}
.ws49{word-spacing:3.938133pt;}
.ws125{word-spacing:3.984000pt;}
.ws14f{word-spacing:3.993600pt;}
.ws81{word-spacing:4.049067pt;}
.wsb4{word-spacing:4.104533pt;}
.ws91{word-spacing:4.116000pt;}
.ws82{word-spacing:4.160000pt;}
.ws5b{word-spacing:4.215467pt;}
.ws28{word-spacing:4.270933pt;}
.wsf0{word-spacing:4.326400pt;}
.ws8d{word-spacing:4.381867pt;}
.ws1d{word-spacing:4.437333pt;}
.ws98{word-spacing:4.492800pt;}
.ws53{word-spacing:4.548267pt;}
.ws78{word-spacing:4.603733pt;}
.ws25{word-spacing:4.659200pt;}
.wsf1{word-spacing:4.770133pt;}
.ws5c{word-spacing:4.825600pt;}
.ws3b{word-spacing:4.881067pt;}
.ws13c{word-spacing:4.936533pt;}
.ws142{word-spacing:4.944000pt;}
.wsdc{word-spacing:4.992000pt;}
.wsab{word-spacing:5.047467pt;}
.ws44{word-spacing:5.102933pt;}
.ws2f{word-spacing:5.158400pt;}
.ws40{word-spacing:5.213867pt;}
.ws32{word-spacing:5.324800pt;}
.ws45{word-spacing:5.380267pt;}
.wsd0{word-spacing:5.435733pt;}
.ws72{word-spacing:5.491200pt;}
.ws75{word-spacing:5.546667pt;}
.wsec{word-spacing:5.602133pt;}
.wsd1{word-spacing:5.657600pt;}
.ws1b{word-spacing:5.713067pt;}
.ws8a{word-spacing:5.768533pt;}
.ws76{word-spacing:5.824000pt;}
.wsb8{word-spacing:5.879467pt;}
.wscb{word-spacing:5.934933pt;}
.ws9c{word-spacing:6.045867pt;}
.ws13e{word-spacing:6.101333pt;}
.ws133{word-spacing:6.156800pt;}
.ws5a{word-spacing:6.212267pt;}
.wsa1{word-spacing:6.267733pt;}
.wsca{word-spacing:6.323200pt;}
.ws97{word-spacing:6.378667pt;}
.ws12{word-spacing:6.434133pt;}
.ws35{word-spacing:6.489600pt;}
.wsb7{word-spacing:6.545067pt;}
.ws27{word-spacing:6.600533pt;}
.ws22{word-spacing:6.656000pt;}
.ws4d{word-spacing:6.711467pt;}
.wse9{word-spacing:6.766933pt;}
.wsc4{word-spacing:6.822400pt;}
.wsef{word-spacing:6.933333pt;}
.wsde{word-spacing:6.988800pt;}
.ws14b{word-spacing:7.044267pt;}
.ws134{word-spacing:7.099733pt;}
.ws2e{word-spacing:7.155200pt;}
.ws2c{word-spacing:7.210667pt;}
.ws12f{word-spacing:7.266133pt;}
.ws5d{word-spacing:7.321600pt;}
.ws13d{word-spacing:7.377067pt;}
.ws10{word-spacing:7.432533pt;}
.wsd9{word-spacing:7.488000pt;}
.ws6c{word-spacing:7.543467pt;}
.wsc9{word-spacing:7.598933pt;}
.ws5e{word-spacing:7.654400pt;}
.wsa4{word-spacing:7.709867pt;}
.wsac{word-spacing:7.765333pt;}
.ws162{word-spacing:7.820800pt;}
.wscf{word-spacing:7.876267pt;}
.ws23{word-spacing:8.042667pt;}
.ws20{word-spacing:8.098133pt;}
.wse8{word-spacing:8.153600pt;}
.wsdb{word-spacing:8.209067pt;}
.ws123{word-spacing:8.264533pt;}
.wsa{word-spacing:8.320000pt;}
.wse5{word-spacing:8.477333pt;}
.ws31{word-spacing:8.486400pt;}
.ws2a{word-spacing:8.541867pt;}
.wse4{word-spacing:8.568000pt;}
.ws21{word-spacing:8.597333pt;}
.wsd2{word-spacing:8.652800pt;}
.wsd6{word-spacing:8.708267pt;}
.wsee{word-spacing:8.763733pt;}
.wsa5{word-spacing:8.819200pt;}
.ws90{word-spacing:8.930133pt;}
.ws10d{word-spacing:8.985600pt;}
.wsa7{word-spacing:9.096533pt;}
.wsbb{word-spacing:9.152000pt;}
.ws16d{word-spacing:9.207467pt;}
.ws104{word-spacing:9.262933pt;}
.ws147{word-spacing:9.318400pt;}
.ws96{word-spacing:9.373867pt;}
.ws13f{word-spacing:9.484800pt;}
.wsa9{word-spacing:9.595733pt;}
.ws169{word-spacing:9.651200pt;}
.ws149{word-spacing:9.762133pt;}
.ws37{word-spacing:9.856000pt;}
.wsaa{word-spacing:9.873067pt;}
.wsf8{word-spacing:9.888000pt;}
.ws83{word-spacing:9.984000pt;}
.wsd3{word-spacing:10.039467pt;}
.ws172{word-spacing:10.080000pt;}
.ws163{word-spacing:10.094933pt;}
.ws119{word-spacing:10.112000pt;}
.ws17b{word-spacing:10.208000pt;}
.ws1{word-spacing:10.240000pt;}
.wsad{word-spacing:10.261333pt;}
.ws151{word-spacing:10.272000pt;}
.wsaf{word-spacing:10.304000pt;}
.ws30{word-spacing:10.316800pt;}
.ws26{word-spacing:10.372267pt;}
.wsd4{word-spacing:10.427733pt;}
.ws161{word-spacing:10.464000pt;}
.wsa8{word-spacing:10.483200pt;}
.ws5f{word-spacing:10.594133pt;}
.ws33{word-spacing:10.649600pt;}
.wse3{word-spacing:10.705067pt;}
.ws99{word-spacing:10.816000pt;}
.wsae{word-spacing:10.982400pt;}
.ws15e{word-spacing:11.037867pt;}
.ws4e{word-spacing:11.204267pt;}
.ws10c{word-spacing:11.259733pt;}
.wse2{word-spacing:11.315200pt;}
.ws24{word-spacing:11.426133pt;}
.ws54{word-spacing:11.648000pt;}
.ws118{word-spacing:11.703467pt;}
.ws7{word-spacing:11.869867pt;}
.ws103{word-spacing:11.980800pt;}
.wsba{word-spacing:12.036267pt;}
.ws105{word-spacing:12.147200pt;}
.ws121{word-spacing:12.258133pt;}
.ws110{word-spacing:12.535467pt;}
.ws124{word-spacing:12.590933pt;}
.ws154{word-spacing:12.923733pt;}
.ws139{word-spacing:12.979200pt;}
.ws120{word-spacing:13.034667pt;}
.ws34{word-spacing:13.422933pt;}
.ws148{word-spacing:13.589333pt;}
.ws19{word-spacing:13.922133pt;}
.ws77{word-spacing:14.033067pt;}
.wsc8{word-spacing:14.144000pt;}
.ws122{word-spacing:14.254933pt;}
.wsff{word-spacing:14.532267pt;}
.wscd{word-spacing:14.865067pt;}
.ws146{word-spacing:14.920533pt;}
.wsa0{word-spacing:15.530667pt;}
.wsb{word-spacing:16.140800pt;}
.ws14c{word-spacing:16.196267pt;}
.ws39{word-spacing:16.640000pt;}
.ws3d{word-spacing:16.695467pt;}
.wse0{word-spacing:16.806400pt;}
.ws166{word-spacing:16.917333pt;}
.ws102{word-spacing:17.194667pt;}
.ws167{word-spacing:17.361067pt;}
.ws68{word-spacing:18.248533pt;}
.ws138{word-spacing:18.304000pt;}
.ws168{word-spacing:19.746133pt;}
.ws160{word-spacing:20.800000pt;}
.ws7e{word-spacing:20.966400pt;}
.ws10b{word-spacing:21.354667pt;}
.wsc3{word-spacing:22.963200pt;}
.ws14d{word-spacing:27.677867pt;}
.ws132{word-spacing:29.841067pt;}
._26{margin-left:-30.201600pt;}
._24{margin-left:-28.838933pt;}
._25{margin-left:-25.736533pt;}
._f{margin-left:-22.477867pt;}
._1d{margin-left:-20.921067pt;}
._a{margin-left:-19.149867pt;}
._8{margin-left:-17.472000pt;}
._6{margin-left:-15.637867pt;}
._e{margin-left:-13.841067pt;}
._1e{margin-left:-12.864533pt;}
._20{margin-left:-11.806933pt;}
._23{margin-left:-10.715200pt;}
._9{margin-left:-9.738133pt;}
._16{margin-left:-8.704000pt;}
._2{margin-left:-7.680000pt;}
._1f{margin-left:-6.013547pt;}
._5{margin-left:-4.570133pt;}
._1{margin-left:-2.960000pt;}
._0{margin-left:-1.480000pt;}
._3{width:1.050133pt;}
._4{width:2.288000pt;}
._22{width:4.080000pt;}
._1c{width:8.149680pt;}
._28{width:9.259200pt;}
._d{width:10.740267pt;}
._2a{width:12.624000pt;}
._c{width:13.731200pt;}
._2c{width:14.736000pt;}
._2b{width:23.472000pt;}
._29{width:24.912000pt;}
._27{width:26.090667pt;}
._7{width:28.924267pt;}
._12{width:38.098133pt;}
._b{width:39.936000pt;}
._14{width:40.917333pt;}
._19{width:58.850667pt;}
._10{width:79.344000pt;}
._1a{width:111.589867pt;}
._18{width:116.141867pt;}
._13{width:221.962133pt;}
._17{width:233.130667pt;}
._11{width:248.405333pt;}
._15{width:299.946667pt;}
._1b{width:300.885333pt;}
._21{width:741.034667pt;}
.fs17{font-size:26.026667pt;}
.fs16{font-size:27.653333pt;}
.fs19{font-size:29.280000pt;}
.fs5{font-size:32.000000pt;}
.fsd{font-size:33.834667pt;}
.fs4{font-size:37.333333pt;}
.fs18{font-size:39.200000pt;}
.fs6{font-size:40.000000pt;}
.fs11{font-size:40.533333pt;}
.fs14{font-size:42.666608pt;}
.fse{font-size:42.666667pt;}
.fs13{font-size:42.666747pt;}
.fs12{font-size:42.666757pt;}
.fs15{font-size:45.333333pt;}
.fs10{font-size:45.600000pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:54.933333pt;}
.fsc{font-size:55.466667pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs9{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:2.593733pt;}
.ybf{bottom:9.959867pt;}
.y25{bottom:41.734933pt;}
.y68{bottom:46.333333pt;}
.y3e{bottom:46.366667pt;}
.y24{bottom:54.401600pt;}
.y5{bottom:59.133337pt;}
.y23{bottom:67.068267pt;}
.y128{bottom:71.563467pt;}
.y4{bottom:86.333337pt;}
.y67{bottom:98.666800pt;}
.y123{bottom:98.909067pt;}
.y145{bottom:99.866800pt;}
.y18c{bottom:100.000133pt;}
.y109{bottom:100.133600pt;}
.y1bc{bottom:101.381467pt;}
.y16a{bottom:101.514800pt;}
.yf5{bottom:101.553600pt;}
.ye0{bottom:107.685200pt;}
.yb8{bottom:107.685333pt;}
.y18b{bottom:114.666800pt;}
.y3c{bottom:114.673467pt;}
.y1bb{bottom:116.048133pt;}
.y66{bottom:116.666800pt;}
.y122{bottom:116.909067pt;}
.y144{bottom:117.866800pt;}
.y89{bottom:118.133600pt;}
.y169{bottom:119.514800pt;}
.yf4{bottom:119.553600pt;}
.yb0{bottom:120.440667pt;}
.yb6{bottom:123.158533pt;}
.yb4{bottom:123.542533pt;}
.y21{bottom:123.790666pt;}
.yb5{bottom:124.310533pt;}
.yb7{bottom:124.514533pt;}
.yb3{bottom:124.790533pt;}
.ybd{bottom:125.678533pt;}
.ybb{bottom:127.034533pt;}
.ybc{bottom:127.562533pt;}
.ybe{bottom:128.714533pt;}
.y18a{bottom:129.333467pt;}
.y1ba{bottom:130.714800pt;}
.y3b{bottom:132.673467pt;}
.y65{bottom:134.666800pt;}
.y121{bottom:134.909067pt;}
.yb2{bottom:135.470533pt;}
.y143{bottom:135.866800pt;}
.y88{bottom:136.133600pt;}
.y168{bottom:137.514800pt;}
.yf3{bottom:137.553600pt;}
.yaf{bottom:138.440667pt;}
.y189{bottom:144.000133pt;}
.y1b9{bottom:145.381467pt;}
.y3a{bottom:150.673467pt;}
.y64{bottom:152.666933pt;}
.y120{bottom:152.909067pt;}
.y142{bottom:153.866800pt;}
.y87{bottom:154.133600pt;}
.yf2{bottom:155.553600pt;}
.y125{bottom:155.569867pt;}
.y129{bottom:155.574133pt;}
.yae{bottom:156.440667pt;}
.yc0{bottom:158.059867pt;}
.y188{bottom:158.666933pt;}
.y1b8{bottom:160.048133pt;}
.y90{bottom:164.821333pt;}
.y39{bottom:168.673467pt;}
.y63{bottom:170.666933pt;}
.y11f{bottom:170.909067pt;}
.y141{bottom:171.866800pt;}
.y86{bottom:172.133600pt;}
.y167{bottom:172.981467pt;}
.y187{bottom:173.333600pt;}
.yf1{bottom:173.553600pt;}
.yad{bottom:174.440667pt;}
.y1b7{bottom:174.714800pt;}
.y18{bottom:175.052000pt;}
.yc1{bottom:178.685002pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y38{bottom:186.673467pt;}
.y186{bottom:188.000267pt;}
.y62{bottom:188.666933pt;}
.y11e{bottom:188.909067pt;}
.y1b6{bottom:189.381467pt;}
.y140{bottom:189.866800pt;}
.y85{bottom:190.133600pt;}
.yf0{bottom:191.553600pt;}
.yac{bottom:192.440667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yc2{bottom:198.327267pt;}
.y8c{bottom:198.816933pt;}
.y185{bottom:202.666933pt;}
.y1b5{bottom:204.048133pt;}
.y37{bottom:204.673467pt;}
.y61{bottom:206.666933pt;}
.y11d{bottom:206.909067pt;}
.y13f{bottom:207.866800pt;}
.y84{bottom:208.133600pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yef{bottom:209.553600pt;}
.yab{bottom:210.440667pt;}
.y184{bottom:217.333600pt;}
.yc3{bottom:218.612178pt;}
.y1b4{bottom:218.714800pt;}
.y36{bottom:222.673467pt;}
.y60{bottom:224.666933pt;}
.y11c{bottom:224.909067pt;}
.y13e{bottom:225.866800pt;}
.y166{bottom:226.048133pt;}
.y83{bottom:226.133600pt;}
.yee{bottom:227.553600pt;}
.yaa{bottom:228.440667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y183{bottom:232.000267pt;}
.y1b3{bottom:233.381467pt;}
.yc4{bottom:238.292246pt;}
.y35{bottom:240.673467pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y5f{bottom:242.666933pt;}
.y11b{bottom:242.909067pt;}
.y13d{bottom:243.866800pt;}
.y165{bottom:244.048133pt;}
.y82{bottom:244.133600pt;}
.yed{bottom:245.553600pt;}
.ya9{bottom:246.440667pt;}
.y182{bottom:246.666933pt;}
.y1b2{bottom:248.048133pt;}
.yca{bottom:250.103867pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yb9{bottom:256.363867pt;}
.y34{bottom:258.673467pt;}
.yc5{bottom:258.758610pt;}
.y5e{bottom:260.666933pt;}
.y11a{bottom:260.909067pt;}
.y181{bottom:261.333600pt;}
.y13c{bottom:261.866800pt;}
.y164{bottom:262.048133pt;}
.y81{bottom:262.133600pt;}
.y1b1{bottom:262.714800pt;}
.yec{bottom:263.553600pt;}
.ya8{bottom:264.440667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y180{bottom:276.000267pt;}
.y33{bottom:276.673467pt;}
.y1b0{bottom:277.381467pt;}
.yc6{bottom:278.302589pt;}
.y5d{bottom:278.666933pt;}
.y119{bottom:278.909067pt;}
.y13b{bottom:279.866800pt;}
.y163{bottom:280.048133pt;}
.y80{bottom:280.133600pt;}
.yeb{bottom:281.553600pt;}
.ya7{bottom:282.440667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y17f{bottom:290.666933pt;}
.y1af{bottom:292.048133pt;}
.y32{bottom:294.673467pt;}
.y5c{bottom:296.666933pt;}
.y118{bottom:296.909067pt;}
.y13a{bottom:297.866800pt;}
.y162{bottom:298.048133pt;}
.y7f{bottom:298.133600pt;}
.yc7{bottom:298.647984pt;}
.yea{bottom:299.553600pt;}
.ya6{bottom:300.440667pt;}
.y17e{bottom:305.333600pt;}
.y1ae{bottom:306.714800pt;}
.yf{bottom:309.452000pt;}
.y31{bottom:312.673467pt;}
.y5b{bottom:314.666933pt;}
.y117{bottom:314.909067pt;}
.y139{bottom:315.866800pt;}
.y161{bottom:316.048133pt;}
.y7e{bottom:316.133600pt;}
.ye9{bottom:317.553600pt;}
.ya5{bottom:318.440667pt;}
.yc8{bottom:318.562429pt;}
.y17d{bottom:320.000267pt;}
.y1ad{bottom:321.381467pt;}
.y30{bottom:330.673467pt;}
.y5a{bottom:332.666933pt;}
.y116{bottom:332.909067pt;}
.y138{bottom:333.866800pt;}
.y160{bottom:334.048133pt;}
.y7d{bottom:334.133600pt;}
.y17c{bottom:334.666933pt;}
.ye8{bottom:335.553600pt;}
.y1ac{bottom:336.048133pt;}
.ya4{bottom:336.440667pt;}
.yc9{bottom:338.439071pt;}
.ye{bottom:343.809333pt;}
.y2f{bottom:348.673467pt;}
.y17b{bottom:349.333600pt;}
.y59{bottom:350.666933pt;}
.y1ab{bottom:350.714800pt;}
.y115{bottom:350.909067pt;}
.y137{bottom:351.866800pt;}
.y15f{bottom:352.048133pt;}
.y7c{bottom:352.133600pt;}
.ye7{bottom:353.553600pt;}
.ya3{bottom:354.440667pt;}
.yd{bottom:362.706666pt;}
.y17a{bottom:364.000267pt;}
.y1aa{bottom:365.381467pt;}
.y2e{bottom:366.673467pt;}
.y58{bottom:368.666933pt;}
.y114{bottom:368.909067pt;}
.y108{bottom:369.600133pt;}
.y136{bottom:369.866800pt;}
.y15e{bottom:370.048133pt;}
.y7b{bottom:370.133600pt;}
.ye6{bottom:371.553600pt;}
.ya2{bottom:372.440667pt;}
.ycb{bottom:378.513200pt;}
.y179{bottom:378.666933pt;}
.y1a9{bottom:380.048133pt;}
.y57{bottom:386.666933pt;}
.y113{bottom:386.909067pt;}
.y135{bottom:387.866800pt;}
.y15d{bottom:388.048133pt;}
.y7a{bottom:388.133600pt;}
.ye5{bottom:389.553600pt;}
.ya1{bottom:390.440667pt;}
.y178{bottom:393.333600pt;}
.y1a8{bottom:394.714800pt;}
.ycc{bottom:398.163026pt;}
.y2d{bottom:402.006800pt;}
.yb1{bottom:402.170533pt;}
.y56{bottom:404.666933pt;}
.y112{bottom:404.909067pt;}
.y134{bottom:405.866800pt;}
.y15c{bottom:406.048133pt;}
.y79{bottom:406.133600pt;}
.ye4{bottom:407.553600pt;}
.y177{bottom:408.000267pt;}
.ya0{bottom:408.440667pt;}
.y1a7{bottom:409.381467pt;}
.ycd{bottom:418.440377pt;}
.y2c{bottom:420.006800pt;}
.yba{bottom:420.326533pt;}
.y55{bottom:422.666933pt;}
.y111{bottom:422.909067pt;}
.y133{bottom:423.866800pt;}
.y15b{bottom:424.048133pt;}
.y78{bottom:424.133600pt;}
.ye3{bottom:425.553600pt;}
.y9f{bottom:426.440667pt;}
.yc{bottom:430.990669pt;}
.y176{bottom:437.333600pt;}
.yce{bottom:438.120445pt;}
.y1a6{bottom:438.714800pt;}
.y54{bottom:440.666933pt;}
.y110{bottom:440.909067pt;}
.y132{bottom:441.866800pt;}
.y15a{bottom:442.048133pt;}
.y77{bottom:442.133600pt;}
.ye2{bottom:443.553600pt;}
.y9e{bottom:444.440667pt;}
.yb{bottom:446.990669pt;}
.y175{bottom:452.000267pt;}
.y1a5{bottom:453.381467pt;}
.ycf{bottom:458.586809pt;}
.y53{bottom:458.666933pt;}
.y10f{bottom:458.909067pt;}
.y131{bottom:459.866800pt;}
.y159{bottom:460.048133pt;}
.y76{bottom:460.133600pt;}
.ye1{bottom:461.553600pt;}
.y9d{bottom:462.440667pt;}
.ya{bottom:462.990669pt;}
.y174{bottom:466.666933pt;}
.y1a4{bottom:468.048133pt;}
.y52{bottom:476.666933pt;}
.y10e{bottom:476.909067pt;}
.y130{bottom:477.866800pt;}
.y158{bottom:478.048133pt;}
.yd0{bottom:478.130787pt;}
.y75{bottom:478.133600pt;}
.y9{bottom:478.990666pt;}
.y9c{bottom:480.440667pt;}
.y12e{bottom:480.666933pt;}
.y173{bottom:481.333600pt;}
.y1a3{bottom:482.714800pt;}
.y51{bottom:494.666933pt;}
.y10d{bottom:494.909067pt;}
.y8{bottom:494.990666pt;}
.y172{bottom:496.000267pt;}
.y157{bottom:496.048133pt;}
.y74{bottom:496.133600pt;}
.y1a2{bottom:497.381467pt;}
.y9b{bottom:498.440667pt;}
.yd1{bottom:498.476182pt;}
.y171{bottom:510.666933pt;}
.y1a1{bottom:512.048133pt;}
.y50{bottom:512.666933pt;}
.y10c{bottom:512.909067pt;}
.y107{bottom:513.148133pt;}
.y12f{bottom:513.333600pt;}
.y156{bottom:514.048133pt;}
.y73{bottom:514.133600pt;}
.yd2{bottom:518.390627pt;}
.y106{bottom:523.814800pt;}
.y170{bottom:525.333600pt;}
.y1a0{bottom:526.714800pt;}
.y2b{bottom:528.006800pt;}
.y4f{bottom:530.666933pt;}
.y10b{bottom:530.909067pt;}
.y155{bottom:532.048133pt;}
.y72{bottom:532.133600pt;}
.yd3{bottom:538.267269pt;}
.y16f{bottom:540.000267pt;}
.y19f{bottom:541.381467pt;}
.y2a{bottom:545.340133pt;}
.y105{bottom:548.214800pt;}
.y4e{bottom:548.666933pt;}
.y10a{bottom:548.909067pt;}
.y154{bottom:550.048133pt;}
.y71{bottom:550.133600pt;}
.y16e{bottom:554.666933pt;}
.y19e{bottom:556.048133pt;}
.yd4{bottom:558.892404pt;}
.y8b{bottom:560.701333pt;}
.y104{bottom:564.548133pt;}
.y4d{bottom:566.666933pt;}
.y16b{bottom:567.600133pt;}
.y153{bottom:568.048133pt;}
.y70{bottom:568.133600pt;}
.y16d{bottom:569.333600pt;}
.y19d{bottom:570.714800pt;}
.y7{bottom:573.786667pt;}
.y99{bottom:575.468267pt;}
.yd5{bottom:579.608266pt;}
.y103{bottom:580.881467pt;}
.y29{bottom:581.340133pt;}
.y4c{bottom:584.666933pt;}
.y19c{bottom:585.381467pt;}
.y152{bottom:586.048133pt;}
.y6f{bottom:586.133600pt;}
.y98{bottom:587.628267pt;}
.y6{bottom:592.685334pt;}
.y102{bottom:597.214800pt;}
.yd6{bottom:599.286533pt;}
.y97{bottom:599.788267pt;}
.y19b{bottom:600.048133pt;}
.y4b{bottom:602.666933pt;}
.y151{bottom:604.048133pt;}
.y6e{bottom:604.133600pt;}
.y12d{bottom:604.503467pt;}
.y16c{bottom:605.333600pt;}
.y96{bottom:611.482133pt;}
.y101{bottom:613.548133pt;}
.y19a{bottom:614.714800pt;}
.y12c{bottom:616.503467pt;}
.yd7{bottom:619.570310pt;}
.y4a{bottom:620.666933pt;}
.y150{bottom:622.048133pt;}
.y6d{bottom:622.133600pt;}
.y28{bottom:624.006800pt;}
.y12b{bottom:628.503467pt;}
.y199{bottom:629.381467pt;}
.y100{bottom:629.881467pt;}
.y95{bottom:636.440533pt;}
.y49{bottom:638.666933pt;}
.yd8{bottom:639.252125pt;}
.y14f{bottom:640.048133pt;}
.y6c{bottom:640.133600pt;}
.y12a{bottom:640.503467pt;}
.y198{bottom:644.048133pt;}
.yff{bottom:646.214800pt;}
.y94{bottom:648.600533pt;}
.y27{bottom:656.006800pt;}
.y48{bottom:656.666933pt;}
.y14e{bottom:658.048133pt;}
.y6b{bottom:658.133600pt;}
.y197{bottom:658.714800pt;}
.yd9{bottom:659.739867pt;}
.y93{bottom:660.760533pt;}
.yfe{bottom:662.548133pt;}
.y124{bottom:664.504000pt;}
.y3{bottom:668.977329pt;}
.y196{bottom:673.381467pt;}
.y47{bottom:674.666933pt;}
.y8e{bottom:675.330267pt;}
.y14d{bottom:676.048133pt;}
.yfd{bottom:678.881467pt;}
.yda{bottom:679.295994pt;}
.y195{bottom:688.048133pt;}
.y26{bottom:692.006800pt;}
.y46{bottom:692.666800pt;}
.y6a{bottom:693.600133pt;}
.y14c{bottom:694.048133pt;}
.yfc{bottom:695.214800pt;}
.ydb{bottom:699.630836pt;}
.y92{bottom:701.202667pt;}
.y194{bottom:702.714800pt;}
.y45{bottom:710.666800pt;}
.yfb{bottom:711.548133pt;}
.y69{bottom:711.600133pt;}
.y14b{bottom:712.048133pt;}
.y91{bottom:713.362667pt;}
.y193{bottom:717.381467pt;}
.ydc{bottom:719.538807pt;}
.y8f{bottom:725.530800pt;}
.yfa{bottom:727.881467pt;}
.y44{bottom:728.666800pt;}
.y14a{bottom:730.048133pt;}
.y192{bottom:732.048133pt;}
.ydd{bottom:739.409373pt;}
.y8d{bottom:740.720667pt;}
.yf9{bottom:744.214800pt;}
.y43{bottom:746.666800pt;}
.y191{bottom:746.714800pt;}
.y149{bottom:748.048133pt;}
.y127{bottom:748.338267pt;}
.yde{bottom:758.957904pt;}
.y190{bottom:761.381467pt;}
.y42{bottom:764.666800pt;}
.y148{bottom:766.048133pt;}
.yf8{bottom:769.381467pt;}
.y18f{bottom:776.048133pt;}
.ydf{bottom:779.674687pt;}
.y2{bottom:781.661334pt;}
.y41{bottom:782.666800pt;}
.yf7{bottom:785.714800pt;}
.y18e{bottom:790.714800pt;}
.y8a{bottom:791.781200pt;}
.y126{bottom:794.172933pt;}
.y40{bottom:800.666800pt;}
.y147{bottom:802.048133pt;}
.y18d{bottom:805.381467pt;}
.yf6{bottom:812.261333pt;}
.y3d{bottom:815.253333pt;}
.y3f{bottom:818.666800pt;}
.y146{bottom:820.048133pt;}
.y1{bottom:859.312000pt;}
.y22{bottom:882.080133pt;}
.h9{height:22.816000pt;}
.h20{height:26.506667pt;}
.h24{height:27.949600pt;}
.h7{height:28.560000pt;}
.ha{height:29.040000pt;}
.h18{height:29.954133pt;}
.h17{height:30.075733pt;}
.h23{height:30.421333pt;}
.h12{height:31.062500pt;}
.h1e{height:31.530623pt;}
.h27{height:31.530667pt;}
.h1d{height:31.530726pt;}
.h1c{height:31.530733pt;}
.h26{height:31.658667pt;}
.h1f{height:32.322667pt;}
.h21{height:33.648000pt;}
.h16{height:33.835200pt;}
.h22{height:34.224000pt;}
.h29{height:34.272000pt;}
.h19{height:35.472000pt;}
.h1b{height:35.616000pt;}
.h2a{height:36.860107pt;}
.h28{height:36.860640pt;}
.hf{height:37.536000pt;}
.h11{height:39.547733pt;}
.h2b{height:39.603200pt;}
.h6{height:40.800000pt;}
.h14{height:40.815467pt;}
.he{height:41.829333pt;}
.h13{height:42.593984pt;}
.h10{height:42.594517pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hb{height:50.544000pt;}
.hd{height:55.477333pt;}
.h5{height:69.360000pt;}
.hc{height:73.872000pt;}
.h4{height:105.826671pt;}
.h25{height:164.424000pt;}
.h15{height:208.280000pt;}
.h1a{height:712.973333pt;}
.h8{height:888.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:350.793333pt;}
.w5{width:365.332000pt;}
.w7{width:383.925333pt;}
.w3{width:553.984000pt;}
.w4{width:554.000000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:9.960400pt;}
.x26{left:44.976267pt;}
.x5{left:84.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x19{left:98.268400pt;}
.x6{left:100.000000pt;}
.x25{left:102.037333pt;}
.x2a{left:108.000000pt;}
.xa{left:110.666667pt;}
.x15{left:120.350400pt;}
.x14{left:134.006400pt;}
.x20{left:145.539733pt;}
.x16{left:148.166400pt;}
.x17{left:175.982400pt;}
.x4{left:180.874667pt;}
.x27{left:187.572933pt;}
.x18{left:203.798400pt;}
.x21{left:240.000000pt;}
.x22{left:250.666667pt;}
.x29{left:265.066400pt;}
.xc{left:267.517467pt;}
.xd{left:282.709467pt;}
.x28{left:304.031600pt;}
.xe{left:310.549467pt;}
.xf{left:338.389467pt;}
.x9{left:348.499733pt;}
.x8{left:349.627867pt;}
.xb{left:359.870133pt;}
.x10{left:366.229467pt;}
.x23{left:372.000000pt;}
.x24{left:382.666667pt;}
.x11{left:394.069467pt;}
.x3{left:404.408000pt;}
.x12{left:421.909467pt;}
.x1b{left:440.941741pt;}
.x1a{left:442.296133pt;}
.x1c{left:443.274891pt;}
.x1d{left:469.397200pt;}
.x1e{left:481.397200pt;}
.x1f{left:493.397200pt;}
.x7{left:558.440000pt;}
}




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