
    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_505f8ce3b40bd5b2301ce667.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_99a028ad7b8fff492fb1084a.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_5b4d6ca235d24824fe8fb51e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_24004569aec4a85a2e543d8f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_ad0c00c3c0255184e0029b18.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;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_3c904b5d4488ea77d10286be.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;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_48bc8891e7622a848126e0b5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;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_f5eaeba5eb0192beff01b579.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090000;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_48433a404b6bacdea056973b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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_5f9cfd2a04e6f151526293f5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.126000;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_959ede98d8e4cdba3a71e9d4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.328000;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_aa65e24871af0d118e48110c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.144000;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_bb0152913a60c778a4df159c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.202000;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_81c635468cd112dd64fbec98.woff2')format("woff");}.fff{font-family:fff;line-height:0.957000;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_8a6af6401875a690feb75b03.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.202000;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_9d49f734d52062ddeed473c8.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.940000;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_f8a5118e358a3bb1b75dc01e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.690000;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_bb2064672ca80598fe286c82.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.202000;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_44ada3ad8f5e4bbadec9f649.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.957000;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);}
.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);}
.v5{vertical-align:-65.742612px;}
.v6{vertical-align:-62.124916px;}
.v8{vertical-align:-40.574011px;}
.v7{vertical-align:-39.212467px;}
.v2{vertical-align:-19.199982px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.200000px;}
.v3{vertical-align:19.151982px;}
.v1{vertical-align:24.000000px;}
.ls5{letter-spacing:-3.168000px;}
.ls11{letter-spacing:-2.552895px;}
.lsa{letter-spacing:-1.820056px;}
.ls6{letter-spacing:-1.536000px;}
.ls4{letter-spacing:-0.624000px;}
.lsc{letter-spacing:-0.110306px;}
.ls9{letter-spacing:-0.055153px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000018px;}
.ls7{letter-spacing:0.110306px;}
.ls2{letter-spacing:0.840000px;}
.lsb{letter-spacing:1.378830px;}
.ls1{letter-spacing:3.360000px;}
.ls14{letter-spacing:26.958571px;}
.lsf{letter-spacing:63.073526px;}
.ls10{letter-spacing:71.447021px;}
.ls13{letter-spacing:112.225264px;}
.ls8{letter-spacing:115.766563px;}
.ls12{letter-spacing:127.134167px;}
.lse{letter-spacing:182.554231px;}
.lsd{letter-spacing:206.806197px;}
.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;}
}
.wse1{word-spacing:-218.544595px;}
.wse2{word-spacing:-194.292628px;}
.wse8{word-spacing:-134.350351px;}
.wse9{word-spacing:-119.441447px;}
.wseb{word-spacing:-26.958571px;}
.ws77{word-spacing:-15.000000px;}
.ws1a{word-spacing:-13.332000px;}
.wsd8{word-spacing:-13.071308px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.120000px;}
.ws100{word-spacing:-12.000000px;}
.wsd7{word-spacing:-11.802784px;}
.wse4{word-spacing:-11.738398px;}
.wsd9{word-spacing:-11.692478px;}
.ws6{word-spacing:-11.520000px;}
.ws78{word-spacing:-10.500000px;}
.wsd6{word-spacing:-9.872422px;}
.ws2{word-spacing:-9.408000px;}
.wsf7{word-spacing:-9.216000px;}
.ws4{word-spacing:-8.694000px;}
.ws7{word-spacing:-8.400000px;}
.wsbe{word-spacing:-6.000000px;}
.wse7{word-spacing:-4.663288px;}
.wsac{word-spacing:-1.440000px;}
.ws20{word-spacing:-1.320000px;}
.ws87{word-spacing:-1.080000px;}
.wsba{word-spacing:-1.020000px;}
.ws14{word-spacing:-0.960000px;}
.ws57{word-spacing:-0.840000px;}
.ws2c{word-spacing:-0.780000px;}
.ws11c{word-spacing:-0.768000px;}
.ws3a{word-spacing:-0.720000px;}
.ws70{word-spacing:-0.660000px;}
.ws42{word-spacing:-0.600000px;}
.wsa1{word-spacing:-0.540000px;}
.ws8{word-spacing:-0.480000px;}
.ws9d{word-spacing:-0.420000px;}
.ws121{word-spacing:-0.384000px;}
.ws5b{word-spacing:-0.360000px;}
.ws63{word-spacing:-0.300000px;}
.ws41{word-spacing:-0.240000px;}
.ws15{word-spacing:-0.180000px;}
.wsf{word-spacing:-0.120000px;}
.ws5f{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws95{word-spacing:0.048000px;}
.ws9c{word-spacing:0.060000px;}
.ws62{word-spacing:0.120000px;}
.ws113{word-spacing:0.144000px;}
.wscc{word-spacing:0.180000px;}
.ws67{word-spacing:0.240000px;}
.ws68{word-spacing:0.300000px;}
.ws129{word-spacing:0.336000px;}
.ws27{word-spacing:0.360000px;}
.wse6{word-spacing:0.384000px;}
.ws85{word-spacing:0.420000px;}
.ws86{word-spacing:0.432000px;}
.ws71{word-spacing:0.480000px;}
.ws74{word-spacing:0.540000px;}
.wsaf{word-spacing:0.576000px;}
.ws9f{word-spacing:0.600000px;}
.ws22{word-spacing:0.660000px;}
.ws108{word-spacing:0.672000px;}
.ws82{word-spacing:0.720000px;}
.ws10d{word-spacing:0.768000px;}
.ws55{word-spacing:0.780000px;}
.ws66{word-spacing:0.840000px;}
.ws102{word-spacing:0.864000px;}
.ws37{word-spacing:0.900000px;}
.wsf9{word-spacing:0.912000px;}
.ws7d{word-spacing:0.960000px;}
.ws7b{word-spacing:1.020000px;}
.ws111{word-spacing:1.056000px;}
.ws2b{word-spacing:1.080000px;}
.ws3c{word-spacing:1.140000px;}
.ws47{word-spacing:1.200000px;}
.ws11{word-spacing:1.260000px;}
.ws89{word-spacing:1.320000px;}
.wsc0{word-spacing:1.344000px;}
.ws7a{word-spacing:1.380000px;}
.ws124{word-spacing:1.392000px;}
.ws69{word-spacing:1.440000px;}
.wsb0{word-spacing:1.488000px;}
.ws1b{word-spacing:1.500000px;}
.ws109{word-spacing:1.536000px;}
.ws43{word-spacing:1.560000px;}
.wsff{word-spacing:1.584000px;}
.ws50{word-spacing:1.620000px;}
.ws39{word-spacing:1.680000px;}
.ws12d{word-spacing:1.683000px;}
.ws25{word-spacing:1.740000px;}
.wsfd{word-spacing:1.776000px;}
.ws4d{word-spacing:1.800000px;}
.wsa{word-spacing:1.860000px;}
.ws120{word-spacing:1.872000px;}
.ws33{word-spacing:1.920000px;}
.ws112{word-spacing:1.968000px;}
.ws29{word-spacing:1.980000px;}
.wsf8{word-spacing:2.016000px;}
.wsb7{word-spacing:2.040000px;}
.wsfe{word-spacing:2.064000px;}
.ws8d{word-spacing:2.100000px;}
.ws12e{word-spacing:2.142000px;}
.wsf6{word-spacing:2.160000px;}
.ws8f{word-spacing:2.220000px;}
.ws4e{word-spacing:2.280000px;}
.ws107{word-spacing:2.304000px;}
.wsd1{word-spacing:2.340000px;}
.ws10e{word-spacing:2.352000px;}
.ws53{word-spacing:2.400000px;}
.ws84{word-spacing:2.460000px;}
.ws106{word-spacing:2.496000px;}
.ws6e{word-spacing:2.520000px;}
.ws128{word-spacing:2.544000px;}
.wsce{word-spacing:2.580000px;}
.ws11a{word-spacing:2.592000px;}
.ws6f{word-spacing:2.640000px;}
.wsb8{word-spacing:2.700000px;}
.wsfa{word-spacing:2.736000px;}
.wsa6{word-spacing:2.760000px;}
.ws105{word-spacing:2.784000px;}
.ws8e{word-spacing:2.820000px;}
.wsa8{word-spacing:2.880000px;}
.ws98{word-spacing:2.940000px;}
.ws10c{word-spacing:2.976000px;}
.ws1d{word-spacing:3.000000px;}
.wsb1{word-spacing:3.024000px;}
.ws3d{word-spacing:3.060000px;}
.ws36{word-spacing:3.120000px;}
.ws96{word-spacing:3.168000px;}
.ws83{word-spacing:3.180000px;}
.ws61{word-spacing:3.240000px;}
.wsbd{word-spacing:3.264000px;}
.ws34{word-spacing:3.300000px;}
.ws118{word-spacing:3.312000px;}
.ws75{word-spacing:3.360000px;}
.wsc2{word-spacing:3.420000px;}
.wsec{word-spacing:3.480000px;}
.wsae{word-spacing:3.540000px;}
.ws104{word-spacing:3.552000px;}
.ws4f{word-spacing:3.600000px;}
.ws3e{word-spacing:3.660000px;}
.ws10{word-spacing:3.720000px;}
.ws123{word-spacing:3.744000px;}
.ws48{word-spacing:3.780000px;}
.ws46{word-spacing:3.840000px;}
.ws7e{word-spacing:3.900000px;}
.ws17{word-spacing:3.960000px;}
.ws117{word-spacing:3.984000px;}
.ws60{word-spacing:4.020000px;}
.wsfc{word-spacing:4.032000px;}
.ws1e{word-spacing:4.080000px;}
.ws10a{word-spacing:4.128000px;}
.wsbb{word-spacing:4.140000px;}
.ws54{word-spacing:4.200000px;}
.ws79{word-spacing:4.260000px;}
.ws91{word-spacing:4.320000px;}
.ws12c{word-spacing:4.368000px;}
.ws16{word-spacing:4.380000px;}
.wsb{word-spacing:4.440000px;}
.ws13{word-spacing:4.500000px;}
.wsc8{word-spacing:4.560000px;}
.wsd3{word-spacing:4.620000px;}
.ws12a{word-spacing:4.656000px;}
.ws30{word-spacing:4.680000px;}
.ws31{word-spacing:4.740000px;}
.ws58{word-spacing:4.800000px;}
.ws11d{word-spacing:4.848000px;}
.wsbc{word-spacing:4.860000px;}
.ws5d{word-spacing:4.920000px;}
.wscf{word-spacing:4.980000px;}
.ws119{word-spacing:4.992000px;}
.ws12{word-spacing:5.040000px;}
.ws10b{word-spacing:5.088000px;}
.ws9e{word-spacing:5.100000px;}
.ws3f{word-spacing:5.160000px;}
.ws4a{word-spacing:5.220000px;}
.ws64{word-spacing:5.280000px;}
.wsa4{word-spacing:5.340000px;}
.ws103{word-spacing:5.376000px;}
.ws6a{word-spacing:5.400000px;}
.ws115{word-spacing:5.424000px;}
.wsc5{word-spacing:5.460000px;}
.wsc7{word-spacing:5.520000px;}
.ws97{word-spacing:5.568000px;}
.ws2f{word-spacing:5.580000px;}
.ws21{word-spacing:5.640000px;}
.ws11b{word-spacing:5.664000px;}
.ws99{word-spacing:5.700000px;}
.wsee{word-spacing:5.760000px;}
.wsbf{word-spacing:5.808000px;}
.ws6c{word-spacing:5.820000px;}
.ws116{word-spacing:5.856000px;}
.ws18{word-spacing:5.880000px;}
.ws11f{word-spacing:5.904000px;}
.ws7c{word-spacing:5.940000px;}
.ws127{word-spacing:5.952000px;}
.ws90{word-spacing:6.000000px;}
.ws122{word-spacing:6.048000px;}
.ws8c{word-spacing:6.060000px;}
.wsc4{word-spacing:6.120000px;}
.wsdd{word-spacing:6.180000px;}
.wsfb{word-spacing:6.192000px;}
.ws52{word-spacing:6.240000px;}
.ws44{word-spacing:6.300000px;}
.ws3b{word-spacing:6.360000px;}
.ws2d{word-spacing:6.420000px;}
.ws23{word-spacing:6.480000px;}
.ws9a{word-spacing:6.540000px;}
.wsdf{word-spacing:6.576000px;}
.ws45{word-spacing:6.600000px;}
.ws4b{word-spacing:6.660000px;}
.wse0{word-spacing:6.672000px;}
.ws49{word-spacing:6.720000px;}
.wsc{word-spacing:6.780000px;}
.ws5c{word-spacing:6.840000px;}
.ws8b{word-spacing:6.900000px;}
.wsa0{word-spacing:6.960000px;}
.ws88{word-spacing:7.020000px;}
.wsc3{word-spacing:7.080000px;}
.ws2a{word-spacing:7.140000px;}
.ws65{word-spacing:7.260000px;}
.ws101{word-spacing:7.296000px;}
.ws51{word-spacing:7.320000px;}
.wsc6{word-spacing:7.380000px;}
.ws80{word-spacing:7.440000px;}
.wse{word-spacing:7.500000px;}
.ws9b{word-spacing:7.680000px;}
.wsb9{word-spacing:7.740000px;}
.ws24{word-spacing:7.800000px;}
.ws1c{word-spacing:7.860000px;}
.ws92{word-spacing:7.920000px;}
.ws26{word-spacing:7.980000px;}
.wsab{word-spacing:8.040000px;}
.wsf5{word-spacing:8.100000px;}
.wsdb{word-spacing:8.160000px;}
.wsa3{word-spacing:8.220000px;}
.ws4c{word-spacing:8.280000px;}
.ws7f{word-spacing:8.340000px;}
.ws2e{word-spacing:8.400000px;}
.ws9{word-spacing:8.460000px;}
.wsd{word-spacing:8.520000px;}
.wsf0{word-spacing:8.640000px;}
.wsa7{word-spacing:8.700000px;}
.ws110{word-spacing:8.736000px;}
.wsf1{word-spacing:8.760000px;}
.ws1f{word-spacing:8.820000px;}
.ws5a{word-spacing:8.880000px;}
.ws11e{word-spacing:8.928000px;}
.ws8a{word-spacing:8.940000px;}
.ws72{word-spacing:9.000000px;}
.ws114{word-spacing:9.024000px;}
.wsf3{word-spacing:9.060000px;}
.ws5e{word-spacing:9.180000px;}
.ws12b{word-spacing:9.264000px;}
.wscd{word-spacing:9.300000px;}
.ws6d{word-spacing:9.360000px;}
.wsd5{word-spacing:9.420000px;}
.wsed{word-spacing:9.480000px;}
.wsdc{word-spacing:9.600000px;}
.wsa2{word-spacing:9.720000px;}
.ws76{word-spacing:9.780000px;}
.wsa5{word-spacing:9.840000px;}
.ws93{word-spacing:9.900000px;}
.wsf2{word-spacing:10.080000px;}
.ws6b{word-spacing:10.200000px;}
.ws35{word-spacing:10.260000px;}
.wsad{word-spacing:10.320000px;}
.ws73{word-spacing:10.440000px;}
.ws10f{word-spacing:10.512000px;}
.ws32{word-spacing:10.560000px;}
.wsd2{word-spacing:10.740000px;}
.wsea{word-spacing:10.860000px;}
.ws40{word-spacing:11.040000px;}
.ws94{word-spacing:11.160000px;}
.ws38{word-spacing:11.460000px;}
.wsda{word-spacing:11.580000px;}
.ws126{word-spacing:11.712000px;}
.wsa9{word-spacing:11.880000px;}
.wsde{word-spacing:11.940000px;}
.wsca{word-spacing:12.180000px;}
.ws125{word-spacing:12.192000px;}
.wsf4{word-spacing:12.300000px;}
.ws28{word-spacing:13.200000px;}
.ws81{word-spacing:13.260000px;}
.ws56{word-spacing:13.440000px;}
.wsaa{word-spacing:13.500000px;}
.wsd0{word-spacing:13.860000px;}
.ws59{word-spacing:15.120000px;}
.wsd4{word-spacing:15.240000px;}
.wscb{word-spacing:15.720000px;}
.wsc9{word-spacing:18.000000px;}
.wsef{word-spacing:20.340000px;}
.ws19{word-spacing:73.056000px;}
.wsc1{word-spacing:119.184000px;}
.wsb4{word-spacing:153.791991px;}
.wsb2{word-spacing:194.832000px;}
.wsb5{word-spacing:304.031991px;}
.wsb3{word-spacing:375.120000px;}
.wsb6{word-spacing:535.871988px;}
.wse5{word-spacing:676.304987px;}
.wse3{word-spacing:2150.341553px;}
._73{margin-left:-1959.537222px;}
._70{margin-left:-1692.167754px;}
._82{margin-left:-1044.352348px;}
._7e{margin-left:-1035.093773px;}
._71{margin-left:-206.806201px;}
._72{margin-left:-182.554231px;}
._7c{margin-left:-127.134170px;}
._7d{margin-left:-112.225264px;}
._14{margin-left:-20.988000px;}
._19{margin-left:-18.168028px;}
._18{margin-left:-16.944000px;}
._5{margin-left:-15.600000px;}
._3b{margin-left:-10.860000px;}
._1b{margin-left:-6.000000px;}
._d{margin-left:-4.890000px;}
._4{margin-left:-3.810000px;}
._3{margin-left:-2.694000px;}
._0{margin-left:-1.632000px;}
._2{width:1.572000px;}
._b{width:3.162000px;}
._15{width:4.380000px;}
._e{width:5.814000px;}
._9{width:7.770000px;}
._17{width:9.510000px;}
._1a{width:11.423991px;}
._c{width:13.392000px;}
._16{width:14.784000px;}
._6{width:22.320000px;}
._f{width:23.880000px;}
._11{width:25.800000px;}
._12{width:27.660000px;}
._13{width:32.520000px;}
._10{width:34.080000px;}
._1{width:39.542391px;}
._8{width:56.255991px;}
._7{width:73.056000px;}
._78{width:96.159045px;}
._7f{width:97.753548px;}
._4e{width:99.942641px;}
._7a{width:101.605221px;}
._77{width:103.409267px;}
._80{width:105.281390px;}
._79{width:106.813127px;}
._58{width:117.840000px;}
._53{width:119.664000px;}
._5b{width:142.548012px;}
._6b{width:148.031184px;}
._6a{width:150.127006px;}
._6d{width:152.939819px;}
._44{width:155.423988px;}
._3d{width:156.425412px;}
._6c{width:158.896364px;}
._69{width:160.164888px;}
._7b{width:163.963936px;}
._81{width:165.325480px;}
._6f{width:170.147617px;}
._23{width:173.593864px;}
._42{width:180.191991px;}
._74{width:182.554231px;}
._3c{width:190.079988px;}
._6e{width:194.487801px;}
._33{width:203.616000px;}
._1f{width:204.960000px;}
._28{width:215.616000px;}
._4b{width:234.815992px;}
._37{width:236.015979px;}
._49{width:237.408003px;}
._39{width:239.616000px;}
._25{width:242.591979px;}
._57{width:244.793351px;}
._54{width:250.511993px;}
._5c{width:251.712000px;}
._43{width:256.703988px;}
._75{width:258.078638px;}
._40{width:260.406579px;}
._46{width:261.408003px;}
._4a{width:265.200000px;}
._52{width:267.696000px;}
._3e{width:268.811988px;}
._61{width:274.427982px;}
._51{width:278.544000px;}
._1c{width:284.207979px;}
._60{width:291.696000px;}
._45{width:292.751988px;}
._5a{width:301.343994px;}
._64{width:302.544000px;}
._47{width:306.095988px;}
._32{width:307.248000px;}
._1e{width:308.592000px;}
._2d{width:309.840000px;}
._34{width:312.288000px;}
._20{width:313.632000px;}
._2e{width:314.880000px;}
._27{width:319.248000px;}
._4d{width:322.464000px;}
._29{width:324.288000px;}
._26{width:328.320000px;}
._56{width:330.480000px;}
._66{width:331.679993px;}
._48{width:335.892000px;}
._1d{width:338.976000px;}
._31{width:340.320000px;}
._38{width:342.288021px;}
._3a{width:348.288000px;}
._4c{width:352.079993px;}
._67{width:353.759971px;}
._3f{width:359.904000px;}
._55{width:362.496000px;}
._62{width:363.695984px;}
._41{width:366.047988px;}
._30{width:377.279979px;}
._65{width:385.524019px;}
._68{width:386.640012px;}
._36{width:392.256000px;}
._22{width:396.240000px;}
._2b{width:404.256000px;}
._35{width:424.271988px;}
._21{width:425.615988px;}
._2f{width:426.863988px;}
._2a{width:436.271988px;}
._5e{width:502.848000px;}
._2c{width:573.599986px;}
._5f{width:614.832000px;}
._76{width:679.508537px;}
._4f{width:687.179981px;}
._59{width:739.152000px;}
._50{width:873.648000px;}
._63{width:896.255971px;}
._5d{width:905.424000px;}
._24{width:966.203977px;}
._a{width:1737.792073px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fsd{font-size:34.038600px;}
.fse{font-size:38.901600px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:43.764000px;}
.fs5{font-size:48.000000px;}
.fs10{font-size:51.000000px;}
.fs9{font-size:55.153198px;}
.fsb{font-size:55.369800px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:63.032398px;}
.fs8{font-size:66.000000px;}
.fsc{font-size:71.189999px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.y187{bottom:-1.785461px;}
.y0{bottom:0.000000px;}
.y159{bottom:0.001053px;}
.y175{bottom:0.002563px;}
.y15d{bottom:0.050537px;}
.y17a{bottom:0.052048px;}
.y168{bottom:0.092102px;}
.y17c{bottom:0.092422px;}
.y15b{bottom:0.092560px;}
.y163{bottom:0.092743px;}
.y165{bottom:0.092834px;}
.y16b{bottom:0.093109px;}
.y161{bottom:0.093934px;}
.y16d{bottom:0.094025px;}
.y182{bottom:0.095535px;}
.y177{bottom:0.095581px;}
.y171{bottom:0.146439px;}
.y16f{bottom:0.952881px;}
.y184{bottom:0.953568px;}
.y173{bottom:2.138397px;}
.y157{bottom:2.188065px;}
.y103{bottom:32.039703px;}
.y23{bottom:53.554802px;}
.y120{bottom:66.462902px;}
.y5{bottom:66.525004px;}
.yf4{bottom:89.977161px;}
.yf3{bottom:89.977173px;}
.yf2{bottom:89.977179px;}
.yf1{bottom:89.977181px;}
.yf0{bottom:89.977182px;}
.yef{bottom:89.977184px;}
.yee{bottom:89.989187px;}
.yed{bottom:89.989189px;}
.ybb{bottom:90.000000px;}
.yae{bottom:90.006000px;}
.ybe{bottom:90.006452px;}
.ye9{bottom:90.012000px;}
.yba{bottom:90.018000px;}
.ybf{bottom:90.018465px;}
.yc0{bottom:90.030480px;}
.yc1{bottom:90.042493px;}
.y9f{bottom:90.797516px;}
.y74{bottom:90.797562px;}
.y20d{bottom:91.139516px;}
.y135{bottom:94.687042px;}
.y48{bottom:94.800000px;}
.ya8{bottom:95.700005px;}
.y4{bottom:97.125005px;}
.y20f{bottom:103.454553px;}
.ye8{bottom:104.256000px;}
.yad{bottom:104.262000px;}
.y20c{bottom:105.383516px;}
.y9e{bottom:108.797516px;}
.y1a8{bottom:108.797539px;}
.y73{bottom:108.797562px;}
.y116{bottom:109.049995px;}
.y1a0{bottom:109.202516px;}
.y134{bottom:112.687042px;}
.ya7{bottom:113.700005px;}
.y47{bottom:116.597248px;}
.y20e{bottom:117.709053px;}
.y100{bottom:118.346855px;}
.y117{bottom:118.347599px;}
.yac{bottom:118.506000px;}
.y20b{bottom:119.627516px;}
.y115{bottom:119.771995px;}
.y11b{bottom:122.058002px;}
.yfd{bottom:122.297516px;}
.ye7{bottom:123.299995px;}
.y101{bottom:125.420253px;}
.y118{bottom:125.448776px;}
.y9d{bottom:126.797516px;}
.y1a7{bottom:126.797539px;}
.y72{bottom:126.797562px;}
.y19f{bottom:127.202516px;}
.y133{bottom:130.687042px;}
.ya6{bottom:131.700005px;}
.y1d5{bottom:132.218982px;}
.y102{bottom:132.493651px;}
.y119{bottom:132.549953px;}
.y20a{bottom:133.871516px;}
.y114{bottom:134.015995px;}
.yab{bottom:137.549995px;}
.y22{bottom:139.264499px;}
.yfc{bottom:140.297516px;}
.y46{bottom:140.475756px;}
.y9c{bottom:144.797516px;}
.y1a6{bottom:144.797539px;}
.y71{bottom:144.797562px;}
.y19e{bottom:145.202516px;}
.y1d4{bottom:146.462982px;}
.y209{bottom:148.115516px;}
.yb9{bottom:148.277995px;}
.y132{bottom:148.687042px;}
.ya5{bottom:149.700005px;}
.y113{bottom:153.060000px;}
.y45{bottom:154.719756px;}
.yfb{bottom:158.297516px;}
.y1d3{bottom:160.706982px;}
.y208{bottom:162.359516px;}
.yb8{bottom:162.521995px;}
.y9b{bottom:162.797516px;}
.y1a5{bottom:162.797539px;}
.y70{bottom:162.797562px;}
.y19d{bottom:163.202516px;}
.y131{bottom:166.687042px;}
.ya4{bottom:167.700005px;}
.y1d2{bottom:174.950982px;}
.yfa{bottom:176.297516px;}
.y44{bottom:176.511756px;}
.y207{bottom:176.603516px;}
.yb7{bottom:176.765995px;}
.y9a{bottom:180.797516px;}
.y1a4{bottom:180.797539px;}
.y6f{bottom:180.797562px;}
.y19c{bottom:181.202516px;}
.y130{bottom:184.687042px;}
.ya3{bottom:185.700005px;}
.yda{bottom:187.687042px;}
.y1d1{bottom:189.194982px;}
.y43{bottom:190.755756px;}
.y206{bottom:190.847516px;}
.yf9{bottom:194.297516px;}
.yb6{bottom:195.809990px;}
.y19{bottom:196.933500px;}
.y99{bottom:198.797516px;}
.y1a3{bottom:198.797539px;}
.y6e{bottom:198.797562px;}
.y19b{bottom:199.202516px;}
.y12f{bottom:202.687042px;}
.y1d0{bottom:203.438982px;}
.ya2{bottom:203.700005px;}
.y205{bottom:205.091516px;}
.yd9{bottom:205.687042px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.yf8{bottom:212.297516px;}
.y112{bottom:212.297562px;}
.y42{bottom:212.547756px;}
.y98{bottom:216.797516px;}
.y1a2{bottom:216.797539px;}
.y6d{bottom:216.797562px;}
.y19a{bottom:217.202516px;}
.y1cf{bottom:217.682982px;}
.y204{bottom:219.335516px;}
.y12e{bottom:220.687042px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.yd8{bottom:223.687042px;}
.y41{bottom:226.791756px;}
.yf7{bottom:230.297516px;}
.y111{bottom:230.297562px;}
.y1ce{bottom:231.926982px;}
.y203{bottom:233.579516px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y97{bottom:234.797516px;}
.y1a1{bottom:234.797539px;}
.y6c{bottom:234.797562px;}
.y199{bottom:235.202516px;}
.y12d{bottom:238.687042px;}
.yd7{bottom:241.687042px;}
.y1cd{bottom:246.170982px;}
.y202{bottom:247.823516px;}
.yf6{bottom:248.297516px;}
.y110{bottom:248.297562px;}
.y96{bottom:252.797516px;}
.yb5{bottom:252.797539px;}
.y6b{bottom:252.797562px;}
.y198{bottom:253.202516px;}
.y12c{bottom:256.687042px;}
.yd6{bottom:259.687042px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.ybc{bottom:259.979992px;}
.y1cc{bottom:260.414982px;}
.y201{bottom:262.067516px;}
.y10f{bottom:266.297562px;}
.yaa{bottom:269.515048px;}
.y95{bottom:270.797516px;}
.yb4{bottom:270.797539px;}
.y6a{bottom:270.797562px;}
.y197{bottom:271.202516px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y1cb{bottom:274.658982px;}
.y12b{bottom:274.687042px;}
.y200{bottom:276.311516px;}
.yd5{bottom:277.687042px;}
.y40{bottom:283.067093px;}
.ya9{bottom:283.759048px;}
.yf5{bottom:284.297516px;}
.y10e{bottom:284.297562px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y94{bottom:288.797516px;}
.yb3{bottom:288.797539px;}
.y69{bottom:288.797562px;}
.y1ca{bottom:288.902982px;}
.y196{bottom:289.202516px;}
.y1ff{bottom:290.555516px;}
.y12a{bottom:292.687042px;}
.yd4{bottom:295.687042px;}
.y3f{bottom:301.067093px;}
.y10d{bottom:302.297562px;}
.y1c9{bottom:303.146982px;}
.y1fe{bottom:304.799516px;}
.y93{bottom:306.797516px;}
.yb2{bottom:306.797539px;}
.y68{bottom:306.797562px;}
.y195{bottom:307.202516px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y129{bottom:310.687042px;}
.yd3{bottom:313.687042px;}
.y1c8{bottom:317.390982px;}
.y1fd{bottom:319.043516px;}
.y3e{bottom:319.067093px;}
.y10c{bottom:320.297562px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y92{bottom:324.797516px;}
.yb1{bottom:324.797539px;}
.y67{bottom:324.797562px;}
.y194{bottom:325.202516px;}
.y128{bottom:328.687042px;}
.y1c7{bottom:331.634982px;}
.yd2{bottom:331.687042px;}
.y1fc{bottom:333.287516px;}
.y3d{bottom:337.067093px;}
.y10b{bottom:338.297562px;}
.y91{bottom:342.797516px;}
.yb0{bottom:342.797539px;}
.y66{bottom:342.797562px;}
.y193{bottom:343.202516px;}
.y1c6{bottom:345.878982px;}
.y127{bottom:346.687042px;}
.y1fb{bottom:347.531516px;}
.y10{bottom:348.133500px;}
.yd1{bottom:349.687042px;}
.y3c{bottom:355.067093px;}
.y10a{bottom:356.297562px;}
.ybd{bottom:360.042452px;}
.y1c5{bottom:360.122982px;}
.y90{bottom:360.797516px;}
.yaf{bottom:360.797539px;}
.y65{bottom:360.797562px;}
.y192{bottom:361.202516px;}
.y1fa{bottom:361.775516px;}
.y148{bottom:364.443008px;}
.y126{bottom:364.687042px;}
.yeb{bottom:364.967558px;}
.yea{bottom:364.979553px;}
.yd0{bottom:367.687042px;}
.y3b{bottom:373.067093px;}
.y109{bottom:374.297562px;}
.y1c4{bottom:374.366982px;}
.y1f9{bottom:376.019516px;}
.y8f{bottom:378.797516px;}
.y64{bottom:378.797562px;}
.y191{bottom:379.202516px;}
.y125{bottom:382.687042px;}
.ycf{bottom:385.687042px;}
.yf{bottom:386.785499px;}
.y1c3{bottom:388.610982px;}
.y1f8{bottom:390.263516px;}
.y3a{bottom:391.067093px;}
.y108{bottom:392.297562px;}
.y8e{bottom:396.797516px;}
.y63{bottom:396.797562px;}
.y190{bottom:397.202516px;}
.y124{bottom:400.687042px;}
.y1c2{bottom:402.854982px;}
.yce{bottom:403.687042px;}
.y1f7{bottom:404.507516px;}
.ye{bottom:408.044999px;}
.y8d{bottom:414.797516px;}
.y62{bottom:414.797562px;}
.y18f{bottom:415.202516px;}
.y1c1{bottom:417.098982px;}
.y123{bottom:418.687042px;}
.y1f6{bottom:418.751516px;}
.ycd{bottom:421.687042px;}
.y39{bottom:427.817093px;}
.y107{bottom:428.297562px;}
.y1c0{bottom:431.342982px;}
.y8c{bottom:432.797516px;}
.y61{bottom:432.797562px;}
.y1f5{bottom:432.995516px;}
.y18e{bottom:433.202516px;}
.y122{bottom:436.687042px;}
.ycc{bottom:439.687042px;}
.y106{bottom:445.541840px;}
.y1bf{bottom:445.586982px;}
.y38{bottom:445.817093px;}
.yec{bottom:446.617192px;}
.y1f4{bottom:447.239516px;}
.y11a{bottom:450.303452px;}
.y8b{bottom:450.797516px;}
.y60{bottom:450.797562px;}
.y18d{bottom:451.202516px;}
.y121{bottom:454.687042px;}
.ycb{bottom:457.687042px;}
.y1be{bottom:459.830982px;}
.y1f3{bottom:461.483516px;}
.y8a{bottom:468.797516px;}
.y5f{bottom:468.797562px;}
.y18c{bottom:469.202516px;}
.y1bd{bottom:474.074982px;}
.yca{bottom:475.687042px;}
.y1f2{bottom:475.727516px;}
.y37{bottom:482.567093px;}
.yd{bottom:484.864502px;}
.y89{bottom:486.797516px;}
.y5e{bottom:486.797562px;}
.y1f1{bottom:489.971516px;}
.yc9{bottom:493.687042px;}
.y18a{bottom:497.952899px;}
.y36{bottom:500.567093px;}
.yc{bottom:502.864502px;}
.y1f0{bottom:504.215516px;}
.y88{bottom:504.797516px;}
.y5d{bottom:504.797562px;}
.y18b{bottom:505.202516px;}
.y1bc{bottom:506.625000px;}
.yc8{bottom:511.687180px;}
.y189{bottom:512.196899px;}
.y1ef{bottom:518.459516px;}
.y35{bottom:518.567093px;}
.yb{bottom:520.864502px;}
.y87{bottom:522.797516px;}
.y5c{bottom:522.797562px;}
.yc7{bottom:529.687180px;}
.y1ee{bottom:532.703516px;}
.y34{bottom:536.567093px;}
.y147{bottom:538.205978px;}
.ya{bottom:538.864499px;}
.y86{bottom:540.797516px;}
.y5b{bottom:540.797562px;}
.y186{bottom:542.179504px;}
.y1ed{bottom:546.947516px;}
.yc6{bottom:547.687180px;}
.y33{bottom:554.567093px;}
.y176{bottom:556.264481px;}
.y179{bottom:556.308014px;}
.y174{bottom:556.357498px;}
.y178{bottom:556.360062px;}
.y9{bottom:556.864499px;}
.y85{bottom:558.797516px;}
.y5a{bottom:558.797562px;}
.y1ec{bottom:561.191516px;}
.yc5{bottom:565.687180px;}
.y181{bottom:566.425507px;}
.y14e{bottom:566.502354px;}
.y155{bottom:566.519370px;}
.y32{bottom:572.567093px;}
.y1bb{bottom:573.494516px;}
.y1eb{bottom:575.435516px;}
.y84{bottom:576.797516px;}
.y59{bottom:576.797562px;}
.yc4{bottom:583.687180px;}
.y1ba{bottom:587.738516px;}
.y1ea{bottom:589.679516px;}
.y31{bottom:590.567093px;}
.y105{bottom:591.224991px;}
.y14d{bottom:592.635489px;}
.y154{bottom:592.652505px;}
.y180{bottom:592.652573px;}
.y83{bottom:594.797516px;}
.y58{bottom:594.797562px;}
.yc3{bottom:601.687180px;}
.y1b9{bottom:601.982516px;}
.y1e9{bottom:603.923516px;}
.y30{bottom:608.567093px;}
.y82{bottom:612.797516px;}
.y57{bottom:612.797562px;}
.y1b8{bottom:616.226516px;}
.y1e8{bottom:618.167516px;}
.y14c{bottom:618.768624px;}
.y153{bottom:618.785640px;}
.y17f{bottom:618.787033px;}
.yc2{bottom:619.687180px;}
.y2f{bottom:626.567093px;}
.y1b7{bottom:630.470516px;}
.y81{bottom:630.797516px;}
.y56{bottom:630.797562px;}
.y1e7{bottom:632.411516px;}
.y2e{bottom:644.567093px;}
.y1b6{bottom:644.714516px;}
.y14b{bottom:644.901759px;}
.y152{bottom:644.918775px;}
.y17e{bottom:644.920029px;}
.y8{bottom:645.510000px;}
.y1e6{bottom:646.655516px;}
.y80{bottom:648.797516px;}
.y55{bottom:648.797562px;}
.y1b5{bottom:658.958516px;}
.y1e5{bottom:660.899516px;}
.y2d{bottom:662.567093px;}
.y7{bottom:666.771000px;}
.y7f{bottom:666.797516px;}
.y54{bottom:666.797562px;}
.y17d{bottom:670.957489px;}
.y14a{bottom:671.034895px;}
.y151{bottom:671.051910px;}
.y1b4{bottom:673.202516px;}
.y1e4{bottom:675.143516px;}
.y104{bottom:678.110870px;}
.y2c{bottom:680.567093px;}
.y11c{bottom:681.403722px;}
.ye6{bottom:681.708734px;}
.y11d{bottom:682.165057px;}
.y7e{bottom:684.797516px;}
.y53{bottom:684.797562px;}
.y1b3{bottom:687.446516px;}
.y1e3{bottom:689.387516px;}
.y17b{bottom:697.091995px;}
.y149{bottom:697.168030px;}
.y150{bottom:697.185046px;}
.ye5{bottom:699.936734px;}
.y7d{bottom:702.797516px;}
.y79{bottom:702.797562px;}
.y1e2{bottom:703.631516px;}
.y188{bottom:708.569550px;}
.y183{bottom:713.125488px;}
.y14f{bottom:714.059682px;}
.y156{bottom:714.076701px;}
.y185{bottom:714.079056px;}
.y1b2{bottom:716.702516px;}
.y1e1{bottom:717.875516px;}
.ye4{bottom:718.080734px;}
.y7c{bottom:720.797516px;}
.y52{bottom:720.797562px;}
.y6{bottom:726.298500px;}
.y2b{bottom:729.059696px;}
.y1e0{bottom:732.119516px;}
.y172{bottom:733.063522px;}
.y170{bottom:735.055481px;}
.y146{bottom:735.201920px;}
.ye3{bottom:736.224734px;}
.y7b{bottom:738.797516px;}
.y78{bottom:738.797562px;}
.y2a{bottom:743.303696px;}
.y1b1{bottom:745.958516px;}
.y1df{bottom:746.363516px;}
.y15a{bottom:750.287979px;}
.y15c{bottom:750.330002px;}
.y158{bottom:750.379486px;}
.y15e{bottom:750.380539px;}
.y3{bottom:752.599495px;}
.ye2{bottom:754.368734px;}
.y7a{bottom:756.797516px;}
.y77{bottom:756.797562px;}
.y16c{bottom:759.978012px;}
.y144{bottom:760.075558px;}
.y13d{bottom:760.186183px;}
.y1b0{bottom:760.202516px;}
.y1de{bottom:760.607516px;}
.y137{bottom:767.138567px;}
.ye1{bottom:772.512734px;}
.y1af{bottom:774.446516px;}
.y51{bottom:774.797516px;}
.y1dd{bottom:774.851516px;}
.yfe{bottom:778.843323px;}
.yff{bottom:778.843324px;}
.y29{bottom:781.152191px;}
.y136{bottom:784.157867px;}
.y16a{bottom:786.112518px;}
.y169{bottom:786.205627px;}
.y143{bottom:786.208693px;}
.y13c{bottom:786.319319px;}
.y1ae{bottom:788.690516px;}
.y11e{bottom:788.862661px;}
.y11f{bottom:788.867065px;}
.y1dc{bottom:789.095516px;}
.ye0{bottom:790.656734px;}
.y50{bottom:792.797516px;}
.y1ad{bottom:802.934516px;}
.y1db{bottom:803.339516px;}
.y4f{bottom:810.797516px;}
.y167{bottom:812.246979px;}
.y166{bottom:812.339081px;}
.y142{bottom:812.341828px;}
.y13b{bottom:812.452454px;}
.y1ac{bottom:817.178516px;}
.y1da{bottom:817.583516px;}
.ydf{bottom:818.664734px;}
.y28{bottom:823.895529px;}
.y4e{bottom:828.797516px;}
.y1ab{bottom:831.422516px;}
.y1d9{bottom:831.827516px;}
.y164{bottom:838.379974px;}
.y141{bottom:838.474963px;}
.y13a{bottom:838.585589px;}
.yde{bottom:842.508734px;}
.y1d8{bottom:846.071516px;}
.y27{bottom:846.398529px;}
.y4d{bottom:846.797516px;}
.y1d7{bottom:860.315516px;}
.y1aa{bottom:863.672516px;}
.y162{bottom:864.512970px;}
.y140{bottom:864.608099px;}
.y139{bottom:864.718724px;}
.y4c{bottom:864.797516px;}
.ydd{bottom:866.664734px;}
.y1d6{bottom:874.559516px;}
.y2{bottom:879.369000px;}
.y4b{bottom:882.797516px;}
.ydc{bottom:888.803516px;}
.y160{bottom:890.644500px;}
.y15f{bottom:890.738434px;}
.y13f{bottom:890.741234px;}
.y138{bottom:890.851859px;}
.y1a9{bottom:899.672516px;}
.y16e{bottom:899.716461px;}
.y26{bottom:899.785217px;}
.y145{bottom:900.671990px;}
.y4a{bottom:900.797516px;}
.y13e{bottom:902.986620px;}
.ydb{bottom:903.047516px;}
.y25{bottom:925.867084px;}
.y49{bottom:939.670349px;}
.ya1{bottom:940.110892px;}
.y76{bottom:940.111075px;}
.y24{bottom:940.111084px;}
.ya0{bottom:940.626892px;}
.y75{bottom:940.627075px;}
.y1{bottom:966.726000px;}
.h2a{height:0.483000px;}
.h32{height:3.867000px;}
.h31{height:5.196000px;}
.h33{height:5.380500px;}
.h29{height:5.718000px;}
.h2f{height:5.719500px;}
.h26{height:5.734500px;}
.h2d{height:5.736000px;}
.h27{height:5.826000px;}
.h28{height:5.827500px;}
.h2e{height:5.829000px;}
.h30{height:6.792000px;}
.h2b{height:7.128000px;}
.h2c{height:9.307500px;}
.h23{height:28.670479px;}
.h13{height:29.299200px;}
.h7{height:32.130000px;}
.h25{height:32.254068px;}
.h22{height:32.404747px;}
.ha{height:33.840000px;}
.h12{height:41.856000px;}
.hb{height:42.048000px;}
.h16{height:42.528000px;}
.h1b{height:43.056000px;}
.h36{height:44.472000px;}
.h35{height:45.186000px;}
.h6{height:45.900000px;}
.h1f{height:46.454877px;}
.hc{height:46.704000px;}
.h3{height:48.195000px;}
.h18{height:48.451182px;}
.h34{height:49.104000px;}
.h21{height:52.182269px;}
.h10{height:52.320000px;}
.h1d{height:52.505845px;}
.h20{height:52.712050px;}
.h11{height:53.160000px;}
.h1a{height:53.640000px;}
.h2{height:55.080000px;}
.hf{height:59.340000px;}
.h1c{height:60.623451px;}
.h15{height:60.624000px;}
.h17{height:60.624183px;}
.h19{height:61.380000px;}
.he{height:64.866000px;}
.h14{height:65.274000px;}
.hd{height:69.108000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h24{height:373.841995px;}
.h1e{height:822.047974px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.we{width:0.748500px;}
.wf{width:2.782500px;}
.w16{width:3.760500px;}
.w1d{width:5.053500px;}
.w10{width:5.464500px;}
.wc{width:6.697500px;}
.w8{width:7.726500px;}
.w15{width:8.052000px;}
.w12{width:8.119500px;}
.w13{width:8.142000px;}
.w14{width:8.305500px;}
.wd{width:8.331000px;}
.w1a{width:8.332500px;}
.wa{width:8.808000px;}
.w9{width:8.907000px;}
.wb{width:9.172500px;}
.w17{width:10.194000px;}
.w11{width:11.913000px;}
.w1b{width:11.914500px;}
.w18{width:71.820002px;}
.w1c{width:71.821500px;}
.w19{width:100.783504px;}
.w6{width:263.164490px;}
.w5{width:290.607010px;}
.w7{width:505.984497px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:4.251600px;}
.x28{left:11.582554px;}
.x36{left:15.774158px;}
.x4c{left:26.772606px;}
.x4e{left:39.746109px;}
.x50{left:71.403591px;}
.x6{left:76.535402px;}
.xa{left:77.598450px;}
.x7{left:80.907303px;}
.x5{left:88.228352px;}
.x9{left:93.545402px;}
.xb{left:96.305402px;}
.x39{left:98.001679px;}
.x3a{left:100.282251px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5b{left:114.893400px;}
.x41{left:127.074005px;}
.x52{left:128.924995px;}
.x42{left:162.500999px;}
.x53{left:165.015003px;}
.x4f{left:167.185500px;}
.x27{left:170.667000px;}
.x30{left:184.607998px;}
.x43{left:196.113007px;}
.x31{left:200.260643px;}
.x4{left:203.484001px;}
.x2a{left:215.818657px;}
.x15{left:219.850204px;}
.x44{left:231.495003px;}
.x54{left:233.772011px;}
.x55{left:238.766396px;}
.x16{left:241.233009px;}
.x51{left:244.472855px;}
.x24{left:246.047626px;}
.xc{left:247.988846px;}
.x2b{left:258.328821px;}
.x17{left:259.833009px;}
.x45{left:268.249489px;}
.xe{left:269.371811px;}
.x46{left:272.214294px;}
.x56{left:274.063797px;}
.x32{left:276.670964px;}
.x40{left:278.697607px;}
.x1f{left:281.941795px;}
.x18{left:283.689000px;}
.xf{left:287.971811px;}
.x2c{left:300.838985px;}
.x47{left:302.626511px;}
.x33{left:304.355864px;}
.x48{left:306.593399px;}
.x57{left:308.442902px;}
.x20{left:309.518394px;}
.x10{left:311.827802px;}
.x19{left:329.841000px;}
.x21{left:337.094994px;}
.x11{left:339.835802px;}
.x2d{left:343.349149px;}
.x1a{left:347.985000px;}
.x3c{left:352.998596px;}
.x49{left:354.392990px;}
.x58{left:356.581490px;}
.x12{left:357.979802px;}
.x34{left:359.715752px;}
.x22{left:364.671593px;}
.x1b{left:366.129000px;}
.x25{left:373.079230px;}
.x13{left:376.123802px;}
.x1c{left:384.273000px;}
.x2e{left:385.859313px;}
.x35{left:387.400652px;}
.x4d{left:390.829650px;}
.x23{left:392.248192px;}
.x14{left:394.351802px;}
.x1d{left:402.417000px;}
.x26{left:415.423098px;}
.xd{left:419.852840px;}
.x59{left:422.523010px;}
.x4a{left:425.797211px;}
.x2f{left:428.369477px;}
.x1e{left:438.789000px;}
.x4b{left:439.847992px;}
.x3b{left:441.476661px;}
.x3e{left:443.219597px;}
.x3f{left:445.142778px;}
.x5a{left:447.560257px;}
.x3{left:454.959000px;}
.x37{left:473.781921px;}
.x29{left:487.281921px;}
.x38{left:502.686584px;}
.x8{left:559.720184px;}
@media print{
.v5{vertical-align:-58.437878pt;}
.v6{vertical-align:-55.222147pt;}
.v8{vertical-align:-36.065788pt;}
.v7{vertical-align:-34.855526pt;}
.v2{vertical-align:-17.066650pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.066667pt;}
.v3{vertical-align:17.023984pt;}
.v1{vertical-align:21.333333pt;}
.ls5{letter-spacing:-2.816000pt;}
.ls11{letter-spacing:-2.269240pt;}
.lsa{letter-spacing:-1.617827pt;}
.ls6{letter-spacing:-1.365333pt;}
.ls4{letter-spacing:-0.554667pt;}
.lsc{letter-spacing:-0.098050pt;}
.ls9{letter-spacing:-0.049025pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000016pt;}
.ls7{letter-spacing:0.098050pt;}
.ls2{letter-spacing:0.746667pt;}
.lsb{letter-spacing:1.225627pt;}
.ls1{letter-spacing:2.986667pt;}
.ls14{letter-spacing:23.963174pt;}
.lsf{letter-spacing:56.065356pt;}
.ls10{letter-spacing:63.508463pt;}
.ls13{letter-spacing:99.755790pt;}
.ls8{letter-spacing:102.903612pt;}
.ls12{letter-spacing:113.008149pt;}
.lse{letter-spacing:162.270427pt;}
.lsd{letter-spacing:183.827731pt;}
.wse1{word-spacing:-194.261862pt;}
.wse2{word-spacing:-172.704558pt;}
.wse8{word-spacing:-119.422534pt;}
.wse9{word-spacing:-106.170175pt;}
.wseb{word-spacing:-23.963174pt;}
.ws77{word-spacing:-13.333333pt;}
.ws1a{word-spacing:-11.850667pt;}
.wsd8{word-spacing:-11.618940pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.773333pt;}
.ws100{word-spacing:-10.666667pt;}
.wsd7{word-spacing:-10.491364pt;}
.wse4{word-spacing:-10.434131pt;}
.wsd9{word-spacing:-10.393314pt;}
.ws6{word-spacing:-10.240000pt;}
.ws78{word-spacing:-9.333333pt;}
.wsd6{word-spacing:-8.775487pt;}
.ws2{word-spacing:-8.362667pt;}
.wsf7{word-spacing:-8.192000pt;}
.ws4{word-spacing:-7.728000pt;}
.ws7{word-spacing:-7.466667pt;}
.wsbe{word-spacing:-5.333333pt;}
.wse7{word-spacing:-4.145145pt;}
.wsac{word-spacing:-1.280000pt;}
.ws20{word-spacing:-1.173333pt;}
.ws87{word-spacing:-0.960000pt;}
.wsba{word-spacing:-0.906667pt;}
.ws14{word-spacing:-0.853333pt;}
.ws57{word-spacing:-0.746667pt;}
.ws2c{word-spacing:-0.693333pt;}
.ws11c{word-spacing:-0.682667pt;}
.ws3a{word-spacing:-0.640000pt;}
.ws70{word-spacing:-0.586667pt;}
.ws42{word-spacing:-0.533333pt;}
.wsa1{word-spacing:-0.480000pt;}
.ws8{word-spacing:-0.426667pt;}
.ws9d{word-spacing:-0.373333pt;}
.ws121{word-spacing:-0.341333pt;}
.ws5b{word-spacing:-0.320000pt;}
.ws63{word-spacing:-0.266667pt;}
.ws41{word-spacing:-0.213333pt;}
.ws15{word-spacing:-0.160000pt;}
.wsf{word-spacing:-0.106667pt;}
.ws5f{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws95{word-spacing:0.042667pt;}
.ws9c{word-spacing:0.053333pt;}
.ws62{word-spacing:0.106667pt;}
.ws113{word-spacing:0.128000pt;}
.wscc{word-spacing:0.160000pt;}
.ws67{word-spacing:0.213333pt;}
.ws68{word-spacing:0.266667pt;}
.ws129{word-spacing:0.298667pt;}
.ws27{word-spacing:0.320000pt;}
.wse6{word-spacing:0.341333pt;}
.ws85{word-spacing:0.373333pt;}
.ws86{word-spacing:0.384000pt;}
.ws71{word-spacing:0.426667pt;}
.ws74{word-spacing:0.480000pt;}
.wsaf{word-spacing:0.512000pt;}
.ws9f{word-spacing:0.533333pt;}
.ws22{word-spacing:0.586667pt;}
.ws108{word-spacing:0.597333pt;}
.ws82{word-spacing:0.640000pt;}
.ws10d{word-spacing:0.682667pt;}
.ws55{word-spacing:0.693333pt;}
.ws66{word-spacing:0.746667pt;}
.ws102{word-spacing:0.768000pt;}
.ws37{word-spacing:0.800000pt;}
.wsf9{word-spacing:0.810667pt;}
.ws7d{word-spacing:0.853333pt;}
.ws7b{word-spacing:0.906667pt;}
.ws111{word-spacing:0.938667pt;}
.ws2b{word-spacing:0.960000pt;}
.ws3c{word-spacing:1.013333pt;}
.ws47{word-spacing:1.066667pt;}
.ws11{word-spacing:1.120000pt;}
.ws89{word-spacing:1.173333pt;}
.wsc0{word-spacing:1.194667pt;}
.ws7a{word-spacing:1.226667pt;}
.ws124{word-spacing:1.237333pt;}
.ws69{word-spacing:1.280000pt;}
.wsb0{word-spacing:1.322667pt;}
.ws1b{word-spacing:1.333333pt;}
.ws109{word-spacing:1.365333pt;}
.ws43{word-spacing:1.386667pt;}
.wsff{word-spacing:1.408000pt;}
.ws50{word-spacing:1.440000pt;}
.ws39{word-spacing:1.493333pt;}
.ws12d{word-spacing:1.496000pt;}
.ws25{word-spacing:1.546667pt;}
.wsfd{word-spacing:1.578667pt;}
.ws4d{word-spacing:1.600000pt;}
.wsa{word-spacing:1.653333pt;}
.ws120{word-spacing:1.664000pt;}
.ws33{word-spacing:1.706667pt;}
.ws112{word-spacing:1.749333pt;}
.ws29{word-spacing:1.760000pt;}
.wsf8{word-spacing:1.792000pt;}
.wsb7{word-spacing:1.813333pt;}
.wsfe{word-spacing:1.834667pt;}
.ws8d{word-spacing:1.866667pt;}
.ws12e{word-spacing:1.904000pt;}
.wsf6{word-spacing:1.920000pt;}
.ws8f{word-spacing:1.973333pt;}
.ws4e{word-spacing:2.026667pt;}
.ws107{word-spacing:2.048000pt;}
.wsd1{word-spacing:2.080000pt;}
.ws10e{word-spacing:2.090667pt;}
.ws53{word-spacing:2.133333pt;}
.ws84{word-spacing:2.186667pt;}
.ws106{word-spacing:2.218667pt;}
.ws6e{word-spacing:2.240000pt;}
.ws128{word-spacing:2.261333pt;}
.wsce{word-spacing:2.293333pt;}
.ws11a{word-spacing:2.304000pt;}
.ws6f{word-spacing:2.346667pt;}
.wsb8{word-spacing:2.400000pt;}
.wsfa{word-spacing:2.432000pt;}
.wsa6{word-spacing:2.453333pt;}
.ws105{word-spacing:2.474667pt;}
.ws8e{word-spacing:2.506667pt;}
.wsa8{word-spacing:2.560000pt;}
.ws98{word-spacing:2.613333pt;}
.ws10c{word-spacing:2.645333pt;}
.ws1d{word-spacing:2.666667pt;}
.wsb1{word-spacing:2.688000pt;}
.ws3d{word-spacing:2.720000pt;}
.ws36{word-spacing:2.773333pt;}
.ws96{word-spacing:2.816000pt;}
.ws83{word-spacing:2.826667pt;}
.ws61{word-spacing:2.880000pt;}
.wsbd{word-spacing:2.901333pt;}
.ws34{word-spacing:2.933333pt;}
.ws118{word-spacing:2.944000pt;}
.ws75{word-spacing:2.986667pt;}
.wsc2{word-spacing:3.040000pt;}
.wsec{word-spacing:3.093333pt;}
.wsae{word-spacing:3.146667pt;}
.ws104{word-spacing:3.157333pt;}
.ws4f{word-spacing:3.200000pt;}
.ws3e{word-spacing:3.253333pt;}
.ws10{word-spacing:3.306667pt;}
.ws123{word-spacing:3.328000pt;}
.ws48{word-spacing:3.360000pt;}
.ws46{word-spacing:3.413333pt;}
.ws7e{word-spacing:3.466667pt;}
.ws17{word-spacing:3.520000pt;}
.ws117{word-spacing:3.541333pt;}
.ws60{word-spacing:3.573333pt;}
.wsfc{word-spacing:3.584000pt;}
.ws1e{word-spacing:3.626667pt;}
.ws10a{word-spacing:3.669333pt;}
.wsbb{word-spacing:3.680000pt;}
.ws54{word-spacing:3.733333pt;}
.ws79{word-spacing:3.786667pt;}
.ws91{word-spacing:3.840000pt;}
.ws12c{word-spacing:3.882667pt;}
.ws16{word-spacing:3.893333pt;}
.wsb{word-spacing:3.946667pt;}
.ws13{word-spacing:4.000000pt;}
.wsc8{word-spacing:4.053333pt;}
.wsd3{word-spacing:4.106667pt;}
.ws12a{word-spacing:4.138667pt;}
.ws30{word-spacing:4.160000pt;}
.ws31{word-spacing:4.213333pt;}
.ws58{word-spacing:4.266667pt;}
.ws11d{word-spacing:4.309333pt;}
.wsbc{word-spacing:4.320000pt;}
.ws5d{word-spacing:4.373333pt;}
.wscf{word-spacing:4.426667pt;}
.ws119{word-spacing:4.437333pt;}
.ws12{word-spacing:4.480000pt;}
.ws10b{word-spacing:4.522667pt;}
.ws9e{word-spacing:4.533333pt;}
.ws3f{word-spacing:4.586667pt;}
.ws4a{word-spacing:4.640000pt;}
.ws64{word-spacing:4.693333pt;}
.wsa4{word-spacing:4.746667pt;}
.ws103{word-spacing:4.778667pt;}
.ws6a{word-spacing:4.800000pt;}
.ws115{word-spacing:4.821333pt;}
.wsc5{word-spacing:4.853333pt;}
.wsc7{word-spacing:4.906667pt;}
.ws97{word-spacing:4.949333pt;}
.ws2f{word-spacing:4.960000pt;}
.ws21{word-spacing:5.013333pt;}
.ws11b{word-spacing:5.034667pt;}
.ws99{word-spacing:5.066667pt;}
.wsee{word-spacing:5.120000pt;}
.wsbf{word-spacing:5.162667pt;}
.ws6c{word-spacing:5.173333pt;}
.ws116{word-spacing:5.205333pt;}
.ws18{word-spacing:5.226667pt;}
.ws11f{word-spacing:5.248000pt;}
.ws7c{word-spacing:5.280000pt;}
.ws127{word-spacing:5.290667pt;}
.ws90{word-spacing:5.333333pt;}
.ws122{word-spacing:5.376000pt;}
.ws8c{word-spacing:5.386667pt;}
.wsc4{word-spacing:5.440000pt;}
.wsdd{word-spacing:5.493333pt;}
.wsfb{word-spacing:5.504000pt;}
.ws52{word-spacing:5.546667pt;}
.ws44{word-spacing:5.600000pt;}
.ws3b{word-spacing:5.653333pt;}
.ws2d{word-spacing:5.706667pt;}
.ws23{word-spacing:5.760000pt;}
.ws9a{word-spacing:5.813333pt;}
.wsdf{word-spacing:5.845333pt;}
.ws45{word-spacing:5.866667pt;}
.ws4b{word-spacing:5.920000pt;}
.wse0{word-spacing:5.930667pt;}
.ws49{word-spacing:5.973333pt;}
.wsc{word-spacing:6.026667pt;}
.ws5c{word-spacing:6.080000pt;}
.ws8b{word-spacing:6.133333pt;}
.wsa0{word-spacing:6.186667pt;}
.ws88{word-spacing:6.240000pt;}
.wsc3{word-spacing:6.293333pt;}
.ws2a{word-spacing:6.346667pt;}
.ws65{word-spacing:6.453333pt;}
.ws101{word-spacing:6.485333pt;}
.ws51{word-spacing:6.506667pt;}
.wsc6{word-spacing:6.560000pt;}
.ws80{word-spacing:6.613333pt;}
.wse{word-spacing:6.666667pt;}
.ws9b{word-spacing:6.826667pt;}
.wsb9{word-spacing:6.880000pt;}
.ws24{word-spacing:6.933333pt;}
.ws1c{word-spacing:6.986667pt;}
.ws92{word-spacing:7.040000pt;}
.ws26{word-spacing:7.093333pt;}
.wsab{word-spacing:7.146667pt;}
.wsf5{word-spacing:7.200000pt;}
.wsdb{word-spacing:7.253333pt;}
.wsa3{word-spacing:7.306667pt;}
.ws4c{word-spacing:7.360000pt;}
.ws7f{word-spacing:7.413333pt;}
.ws2e{word-spacing:7.466667pt;}
.ws9{word-spacing:7.520000pt;}
.wsd{word-spacing:7.573333pt;}
.wsf0{word-spacing:7.680000pt;}
.wsa7{word-spacing:7.733333pt;}
.ws110{word-spacing:7.765333pt;}
.wsf1{word-spacing:7.786667pt;}
.ws1f{word-spacing:7.840000pt;}
.ws5a{word-spacing:7.893333pt;}
.ws11e{word-spacing:7.936000pt;}
.ws8a{word-spacing:7.946667pt;}
.ws72{word-spacing:8.000000pt;}
.ws114{word-spacing:8.021333pt;}
.wsf3{word-spacing:8.053333pt;}
.ws5e{word-spacing:8.160000pt;}
.ws12b{word-spacing:8.234667pt;}
.wscd{word-spacing:8.266667pt;}
.ws6d{word-spacing:8.320000pt;}
.wsd5{word-spacing:8.373333pt;}
.wsed{word-spacing:8.426667pt;}
.wsdc{word-spacing:8.533333pt;}
.wsa2{word-spacing:8.640000pt;}
.ws76{word-spacing:8.693333pt;}
.wsa5{word-spacing:8.746667pt;}
.ws93{word-spacing:8.800000pt;}
.wsf2{word-spacing:8.960000pt;}
.ws6b{word-spacing:9.066667pt;}
.ws35{word-spacing:9.120000pt;}
.wsad{word-spacing:9.173333pt;}
.ws73{word-spacing:9.280000pt;}
.ws10f{word-spacing:9.344000pt;}
.ws32{word-spacing:9.386667pt;}
.wsd2{word-spacing:9.546667pt;}
.wsea{word-spacing:9.653333pt;}
.ws40{word-spacing:9.813333pt;}
.ws94{word-spacing:9.920000pt;}
.ws38{word-spacing:10.186667pt;}
.wsda{word-spacing:10.293333pt;}
.ws126{word-spacing:10.410667pt;}
.wsa9{word-spacing:10.560000pt;}
.wsde{word-spacing:10.613333pt;}
.wsca{word-spacing:10.826667pt;}
.ws125{word-spacing:10.837333pt;}
.wsf4{word-spacing:10.933333pt;}
.ws28{word-spacing:11.733333pt;}
.ws81{word-spacing:11.786667pt;}
.ws56{word-spacing:11.946667pt;}
.wsaa{word-spacing:12.000000pt;}
.wsd0{word-spacing:12.320000pt;}
.ws59{word-spacing:13.440000pt;}
.wsd4{word-spacing:13.546667pt;}
.wscb{word-spacing:13.973333pt;}
.wsc9{word-spacing:16.000000pt;}
.wsef{word-spacing:18.080000pt;}
.ws19{word-spacing:64.938667pt;}
.wsc1{word-spacing:105.941333pt;}
.wsb4{word-spacing:136.703992pt;}
.wsb2{word-spacing:173.184000pt;}
.wsb5{word-spacing:270.250659pt;}
.wsb3{word-spacing:333.440000pt;}
.wsb6{word-spacing:476.330656pt;}
.wse5{word-spacing:601.159988pt;}
.wse3{word-spacing:1911.414714pt;}
._73{margin-left:-1741.810864pt;}
._70{margin-left:-1504.149115pt;}
._82{margin-left:-928.313198pt;}
._7e{margin-left:-920.083354pt;}
._71{margin-left:-183.827735pt;}
._72{margin-left:-162.270427pt;}
._7c{margin-left:-113.008151pt;}
._7d{margin-left:-99.755790pt;}
._14{margin-left:-18.656000pt;}
._19{margin-left:-16.149358pt;}
._18{margin-left:-15.061333pt;}
._5{margin-left:-13.866667pt;}
._3b{margin-left:-9.653333pt;}
._1b{margin-left:-5.333333pt;}
._d{margin-left:-4.346667pt;}
._4{margin-left:-3.386667pt;}
._3{margin-left:-2.394667pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.397333pt;}
._b{width:2.810667pt;}
._15{width:3.893333pt;}
._e{width:5.168000pt;}
._9{width:6.906667pt;}
._17{width:8.453333pt;}
._1a{width:10.154659pt;}
._c{width:11.904000pt;}
._16{width:13.141333pt;}
._6{width:19.840000pt;}
._f{width:21.226667pt;}
._11{width:22.933333pt;}
._12{width:24.586667pt;}
._13{width:28.906667pt;}
._10{width:30.293333pt;}
._1{width:35.148792pt;}
._8{width:50.005325pt;}
._7{width:64.938667pt;}
._78{width:85.474707pt;}
._7f{width:86.892042pt;}
._4e{width:88.837903pt;}
._7a{width:90.315752pt;}
._77{width:91.919348pt;}
._80{width:93.583458pt;}
._79{width:94.945002pt;}
._58{width:104.746667pt;}
._53{width:106.368000pt;}
._5b{width:126.709344pt;}
._6b{width:131.583275pt;}
._6a{width:133.446227pt;}
._6d{width:135.946506pt;}
._44{width:138.154656pt;}
._3d{width:139.044810pt;}
._6c{width:141.241213pt;}
._69{width:142.368789pt;}
._7b{width:145.745721pt;}
._81{width:146.955982pt;}
._6f{width:151.242326pt;}
._23{width:154.305657pt;}
._42{width:160.170659pt;}
._74{width:162.270427pt;}
._3c{width:168.959990pt;}
._6e{width:172.878046pt;}
._33{width:180.992000pt;}
._1f{width:182.186667pt;}
._28{width:191.658667pt;}
._4b{width:208.725327pt;}
._37{width:209.791981pt;}
._49{width:211.029336pt;}
._39{width:212.992000pt;}
._25{width:215.637314pt;}
._57{width:217.594090pt;}
._54{width:222.677327pt;}
._5c{width:223.744000pt;}
._43{width:228.181323pt;}
._75{width:229.403234pt;}
._40{width:231.472515pt;}
._46{width:232.362669pt;}
._4a{width:235.733333pt;}
._52{width:237.952000pt;}
._3e{width:238.943990pt;}
._61{width:243.935984pt;}
._51{width:247.594667pt;}
._1c{width:252.629314pt;}
._60{width:259.285333pt;}
._45{width:260.223990pt;}
._5a{width:267.861328pt;}
._64{width:268.928000pt;}
._47{width:272.085323pt;}
._32{width:273.109333pt;}
._1e{width:274.304000pt;}
._2d{width:275.413333pt;}
._34{width:277.589333pt;}
._20{width:278.784000pt;}
._2e{width:279.893333pt;}
._27{width:283.776000pt;}
._4d{width:286.634667pt;}
._29{width:288.256000pt;}
._26{width:291.840000pt;}
._56{width:293.760000pt;}
._66{width:294.826660pt;}
._48{width:298.570667pt;}
._1d{width:301.312000pt;}
._31{width:302.506667pt;}
._38{width:304.256019pt;}
._3a{width:309.589333pt;}
._4c{width:312.959994pt;}
._67{width:314.453307pt;}
._3f{width:319.914667pt;}
._55{width:322.218667pt;}
._62{width:323.285319pt;}
._41{width:325.375990pt;}
._30{width:335.359981pt;}
._65{width:342.688017pt;}
._68{width:343.680010pt;}
._36{width:348.672000pt;}
._22{width:352.213333pt;}
._2b{width:359.338667pt;}
._35{width:377.130656pt;}
._21{width:378.325323pt;}
._2f{width:379.434656pt;}
._2a{width:387.797323pt;}
._5e{width:446.976000pt;}
._2c{width:509.866654pt;}
._5f{width:546.517333pt;}
._76{width:604.007588pt;}
._4f{width:610.826650pt;}
._59{width:657.024000pt;}
._50{width:776.576000pt;}
._63{width:796.671974pt;}
._5d{width:804.821333pt;}
._24{width:858.847979pt;}
._a{width:1544.704065pt;}
.fs7{font-size:29.866667pt;}
.fsd{font-size:30.256533pt;}
.fse{font-size:34.579200pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:38.901333pt;}
.fs5{font-size:42.666667pt;}
.fs10{font-size:45.333333pt;}
.fs9{font-size:49.025065pt;}
.fsb{font-size:49.217600pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:56.028798pt;}
.fs8{font-size:58.666667pt;}
.fsc{font-size:63.279999pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.y187{bottom:-1.587077pt;}
.y0{bottom:0.000000pt;}
.y159{bottom:0.000936pt;}
.y175{bottom:0.002279pt;}
.y15d{bottom:0.044922pt;}
.y17a{bottom:0.046265pt;}
.y168{bottom:0.081868pt;}
.y17c{bottom:0.082153pt;}
.y15b{bottom:0.082275pt;}
.y163{bottom:0.082438pt;}
.y165{bottom:0.082520pt;}
.y16b{bottom:0.082764pt;}
.y161{bottom:0.083497pt;}
.y16d{bottom:0.083577pt;}
.y182{bottom:0.084920pt;}
.y177{bottom:0.084961pt;}
.y171{bottom:0.130168pt;}
.y16f{bottom:0.847005pt;}
.y184{bottom:0.847616pt;}
.y173{bottom:1.900798pt;}
.y157{bottom:1.944946pt;}
.y103{bottom:28.479736pt;}
.y23{bottom:47.604268pt;}
.y120{bottom:59.078135pt;}
.y5{bottom:59.133337pt;}
.yf4{bottom:79.979699pt;}
.yf3{bottom:79.979710pt;}
.yf2{bottom:79.979715pt;}
.yf1{bottom:79.979716pt;}
.yf0{bottom:79.979717pt;}
.yef{bottom:79.979719pt;}
.yee{bottom:79.990389pt;}
.yed{bottom:79.990390pt;}
.ybb{bottom:80.000000pt;}
.yae{bottom:80.005333pt;}
.ybe{bottom:80.005735pt;}
.ye9{bottom:80.010667pt;}
.yba{bottom:80.016000pt;}
.ybf{bottom:80.016413pt;}
.yc0{bottom:80.027093pt;}
.yc1{bottom:80.037772pt;}
.y9f{bottom:80.708903pt;}
.y74{bottom:80.708944pt;}
.y20d{bottom:81.012903pt;}
.y135{bottom:84.166260pt;}
.y48{bottom:84.266667pt;}
.ya8{bottom:85.066671pt;}
.y4{bottom:86.333337pt;}
.y20f{bottom:91.959603pt;}
.ye8{bottom:92.672000pt;}
.yad{bottom:92.677333pt;}
.y20c{bottom:93.674236pt;}
.y9e{bottom:96.708903pt;}
.y1a8{bottom:96.708923pt;}
.y73{bottom:96.708944pt;}
.y116{bottom:96.933329pt;}
.y1a0{bottom:97.068903pt;}
.y134{bottom:100.166260pt;}
.ya7{bottom:101.066671pt;}
.y47{bottom:103.641998pt;}
.y20e{bottom:104.630269pt;}
.y100{bottom:105.197205pt;}
.y117{bottom:105.197866pt;}
.yac{bottom:105.338667pt;}
.y20b{bottom:106.335570pt;}
.y115{bottom:106.463995pt;}
.y11b{bottom:108.496002pt;}
.yfd{bottom:108.708903pt;}
.ye7{bottom:109.599996pt;}
.y101{bottom:111.484669pt;}
.y118{bottom:111.510023pt;}
.y9d{bottom:112.708903pt;}
.y1a7{bottom:112.708923pt;}
.y72{bottom:112.708944pt;}
.y19f{bottom:113.068903pt;}
.y133{bottom:116.166260pt;}
.ya6{bottom:117.066671pt;}
.y1d5{bottom:117.527984pt;}
.y102{bottom:117.772134pt;}
.y119{bottom:117.822180pt;}
.y20a{bottom:118.996903pt;}
.y114{bottom:119.125328pt;}
.yab{bottom:122.266663pt;}
.y22{bottom:123.790666pt;}
.yfc{bottom:124.708903pt;}
.y46{bottom:124.867338pt;}
.y9c{bottom:128.708903pt;}
.y1a6{bottom:128.708923pt;}
.y71{bottom:128.708944pt;}
.y19e{bottom:129.068903pt;}
.y1d4{bottom:130.189317pt;}
.y209{bottom:131.658236pt;}
.yb9{bottom:131.802662pt;}
.y132{bottom:132.166260pt;}
.ya5{bottom:133.066671pt;}
.y113{bottom:136.053333pt;}
.y45{bottom:137.528672pt;}
.yfb{bottom:140.708903pt;}
.y1d3{bottom:142.850650pt;}
.y208{bottom:144.319570pt;}
.yb8{bottom:144.463995pt;}
.y9b{bottom:144.708903pt;}
.y1a5{bottom:144.708923pt;}
.y70{bottom:144.708944pt;}
.y19d{bottom:145.068903pt;}
.y131{bottom:148.166260pt;}
.ya4{bottom:149.066671pt;}
.y1d2{bottom:155.511984pt;}
.yfa{bottom:156.708903pt;}
.y44{bottom:156.899338pt;}
.y207{bottom:156.980903pt;}
.yb7{bottom:157.125328pt;}
.y9a{bottom:160.708903pt;}
.y1a4{bottom:160.708923pt;}
.y6f{bottom:160.708944pt;}
.y19c{bottom:161.068903pt;}
.y130{bottom:164.166260pt;}
.ya3{bottom:165.066671pt;}
.yda{bottom:166.832926pt;}
.y1d1{bottom:168.173317pt;}
.y43{bottom:169.560672pt;}
.y206{bottom:169.642236pt;}
.yf9{bottom:172.708903pt;}
.yb6{bottom:174.053324pt;}
.y19{bottom:175.052000pt;}
.y99{bottom:176.708903pt;}
.y1a3{bottom:176.708923pt;}
.y6e{bottom:176.708944pt;}
.y19b{bottom:177.068903pt;}
.y12f{bottom:180.166260pt;}
.y1d0{bottom:180.834650pt;}
.ya2{bottom:181.066671pt;}
.y205{bottom:182.303570pt;}
.yd9{bottom:182.832926pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.yf8{bottom:188.708903pt;}
.y112{bottom:188.708944pt;}
.y42{bottom:188.931338pt;}
.y98{bottom:192.708903pt;}
.y1a2{bottom:192.708923pt;}
.y6d{bottom:192.708944pt;}
.y19a{bottom:193.068903pt;}
.y1cf{bottom:193.495984pt;}
.y204{bottom:194.964903pt;}
.y12e{bottom:196.166260pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.yd8{bottom:198.832926pt;}
.y41{bottom:201.592672pt;}
.yf7{bottom:204.708903pt;}
.y111{bottom:204.708944pt;}
.y1ce{bottom:206.157317pt;}
.y203{bottom:207.626236pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y97{bottom:208.708903pt;}
.y1a1{bottom:208.708923pt;}
.y6c{bottom:208.708944pt;}
.y199{bottom:209.068903pt;}
.y12d{bottom:212.166260pt;}
.yd7{bottom:214.832926pt;}
.y1cd{bottom:218.818650pt;}
.y202{bottom:220.287570pt;}
.yf6{bottom:220.708903pt;}
.y110{bottom:220.708944pt;}
.y96{bottom:224.708903pt;}
.yb5{bottom:224.708923pt;}
.y6b{bottom:224.708944pt;}
.y198{bottom:225.068903pt;}
.y12c{bottom:228.166260pt;}
.yd6{bottom:230.832926pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.ybc{bottom:231.093326pt;}
.y1cc{bottom:231.479984pt;}
.y201{bottom:232.948903pt;}
.y10f{bottom:236.708944pt;}
.yaa{bottom:239.568932pt;}
.y95{bottom:240.708903pt;}
.yb4{bottom:240.708923pt;}
.y6a{bottom:240.708944pt;}
.y197{bottom:241.068903pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y1cb{bottom:244.141317pt;}
.y12b{bottom:244.166260pt;}
.y200{bottom:245.610236pt;}
.yd5{bottom:246.832926pt;}
.y40{bottom:251.615194pt;}
.ya9{bottom:252.230265pt;}
.yf5{bottom:252.708903pt;}
.y10e{bottom:252.708944pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y94{bottom:256.708903pt;}
.yb3{bottom:256.708923pt;}
.y69{bottom:256.708944pt;}
.y1ca{bottom:256.802650pt;}
.y196{bottom:257.068903pt;}
.y1ff{bottom:258.271570pt;}
.y12a{bottom:260.166260pt;}
.yd4{bottom:262.832926pt;}
.y3f{bottom:267.615194pt;}
.y10d{bottom:268.708944pt;}
.y1c9{bottom:269.463984pt;}
.y1fe{bottom:270.932903pt;}
.y93{bottom:272.708903pt;}
.yb2{bottom:272.708923pt;}
.y68{bottom:272.708944pt;}
.y195{bottom:273.068903pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y129{bottom:276.166260pt;}
.yd3{bottom:278.832926pt;}
.y1c8{bottom:282.125317pt;}
.y1fd{bottom:283.594236pt;}
.y3e{bottom:283.615194pt;}
.y10c{bottom:284.708944pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y92{bottom:288.708903pt;}
.yb1{bottom:288.708923pt;}
.y67{bottom:288.708944pt;}
.y194{bottom:289.068903pt;}
.y128{bottom:292.166260pt;}
.y1c7{bottom:294.786650pt;}
.yd2{bottom:294.832926pt;}
.y1fc{bottom:296.255570pt;}
.y3d{bottom:299.615194pt;}
.y10b{bottom:300.708944pt;}
.y91{bottom:304.708903pt;}
.yb0{bottom:304.708923pt;}
.y66{bottom:304.708944pt;}
.y193{bottom:305.068903pt;}
.y1c6{bottom:307.447984pt;}
.y127{bottom:308.166260pt;}
.y1fb{bottom:308.916903pt;}
.y10{bottom:309.452000pt;}
.yd1{bottom:310.832926pt;}
.y3c{bottom:315.615194pt;}
.y10a{bottom:316.708944pt;}
.ybd{bottom:320.037735pt;}
.y1c5{bottom:320.109317pt;}
.y90{bottom:320.708903pt;}
.yaf{bottom:320.708923pt;}
.y65{bottom:320.708944pt;}
.y192{bottom:321.068903pt;}
.y1fa{bottom:321.578236pt;}
.y148{bottom:323.949341pt;}
.y126{bottom:324.166260pt;}
.yeb{bottom:324.415607pt;}
.yea{bottom:324.426270pt;}
.yd0{bottom:326.832926pt;}
.y3b{bottom:331.615194pt;}
.y109{bottom:332.708944pt;}
.y1c4{bottom:332.770650pt;}
.y1f9{bottom:334.239570pt;}
.y8f{bottom:336.708903pt;}
.y64{bottom:336.708944pt;}
.y191{bottom:337.068903pt;}
.y125{bottom:340.166260pt;}
.ycf{bottom:342.832926pt;}
.yf{bottom:343.809333pt;}
.y1c3{bottom:345.431984pt;}
.y1f8{bottom:346.900903pt;}
.y3a{bottom:347.615194pt;}
.y108{bottom:348.708944pt;}
.y8e{bottom:352.708903pt;}
.y63{bottom:352.708944pt;}
.y190{bottom:353.068903pt;}
.y124{bottom:356.166260pt;}
.y1c2{bottom:358.093317pt;}
.yce{bottom:358.832926pt;}
.y1f7{bottom:359.562236pt;}
.ye{bottom:362.706666pt;}
.y8d{bottom:368.708903pt;}
.y62{bottom:368.708944pt;}
.y18f{bottom:369.068903pt;}
.y1c1{bottom:370.754650pt;}
.y123{bottom:372.166260pt;}
.y1f6{bottom:372.223570pt;}
.ycd{bottom:374.832926pt;}
.y39{bottom:380.281860pt;}
.y107{bottom:380.708944pt;}
.y1c0{bottom:383.415984pt;}
.y8c{bottom:384.708903pt;}
.y61{bottom:384.708944pt;}
.y1f5{bottom:384.884903pt;}
.y18e{bottom:385.068903pt;}
.y122{bottom:388.166260pt;}
.ycc{bottom:390.832926pt;}
.y106{bottom:396.037191pt;}
.y1bf{bottom:396.077317pt;}
.y38{bottom:396.281860pt;}
.yec{bottom:396.993060pt;}
.y1f4{bottom:397.546236pt;}
.y11a{bottom:400.269735pt;}
.y8b{bottom:400.708903pt;}
.y60{bottom:400.708944pt;}
.y18d{bottom:401.068903pt;}
.y121{bottom:404.166260pt;}
.ycb{bottom:406.832926pt;}
.y1be{bottom:408.738650pt;}
.y1f3{bottom:410.207570pt;}
.y8a{bottom:416.708903pt;}
.y5f{bottom:416.708944pt;}
.y18c{bottom:417.068903pt;}
.y1bd{bottom:421.399984pt;}
.yca{bottom:422.832926pt;}
.y1f2{bottom:422.868903pt;}
.y37{bottom:428.948527pt;}
.yd{bottom:430.990669pt;}
.y89{bottom:432.708903pt;}
.y5e{bottom:432.708944pt;}
.y1f1{bottom:435.530236pt;}
.yc9{bottom:438.832926pt;}
.y18a{bottom:442.624799pt;}
.y36{bottom:444.948527pt;}
.yc{bottom:446.990669pt;}
.y1f0{bottom:448.191570pt;}
.y88{bottom:448.708903pt;}
.y5d{bottom:448.708944pt;}
.y18b{bottom:449.068903pt;}
.y1bc{bottom:450.333333pt;}
.yc8{bottom:454.833049pt;}
.y189{bottom:455.286133pt;}
.y1ef{bottom:460.852903pt;}
.y35{bottom:460.948527pt;}
.yb{bottom:462.990669pt;}
.y87{bottom:464.708903pt;}
.y5c{bottom:464.708944pt;}
.yc7{bottom:470.833049pt;}
.y1ee{bottom:473.514236pt;}
.y34{bottom:476.948527pt;}
.y147{bottom:478.405314pt;}
.ya{bottom:478.990666pt;}
.y86{bottom:480.708903pt;}
.y5b{bottom:480.708944pt;}
.y186{bottom:481.937337pt;}
.y1ed{bottom:486.175570pt;}
.yc6{bottom:486.833049pt;}
.y33{bottom:492.948527pt;}
.y176{bottom:494.457316pt;}
.y179{bottom:494.496012pt;}
.y174{bottom:494.539998pt;}
.y178{bottom:494.542277pt;}
.y9{bottom:494.990666pt;}
.y85{bottom:496.708903pt;}
.y5a{bottom:496.708944pt;}
.y1ec{bottom:498.836903pt;}
.yc5{bottom:502.833049pt;}
.y181{bottom:503.489339pt;}
.y14e{bottom:503.557648pt;}
.y155{bottom:503.572773pt;}
.y32{bottom:508.948527pt;}
.y1bb{bottom:509.772903pt;}
.y1eb{bottom:511.498236pt;}
.y84{bottom:512.708903pt;}
.y59{bottom:512.708944pt;}
.yc4{bottom:518.833049pt;}
.y1ba{bottom:522.434236pt;}
.y1ea{bottom:524.159570pt;}
.y31{bottom:524.948527pt;}
.y105{bottom:525.533325pt;}
.y14d{bottom:526.787101pt;}
.y154{bottom:526.802227pt;}
.y180{bottom:526.802287pt;}
.y83{bottom:528.708903pt;}
.y58{bottom:528.708944pt;}
.yc3{bottom:534.833049pt;}
.y1b9{bottom:535.095570pt;}
.y1e9{bottom:536.820903pt;}
.y30{bottom:540.948527pt;}
.y82{bottom:544.708903pt;}
.y57{bottom:544.708944pt;}
.y1b8{bottom:547.756903pt;}
.y1e8{bottom:549.482236pt;}
.y14c{bottom:550.016555pt;}
.y153{bottom:550.031680pt;}
.y17f{bottom:550.032918pt;}
.yc2{bottom:550.833049pt;}
.y2f{bottom:556.948527pt;}
.y1b7{bottom:560.418236pt;}
.y81{bottom:560.708903pt;}
.y56{bottom:560.708944pt;}
.y1e7{bottom:562.143570pt;}
.y2e{bottom:572.948527pt;}
.y1b6{bottom:573.079570pt;}
.y14b{bottom:573.246008pt;}
.y152{bottom:573.261134pt;}
.y17e{bottom:573.262248pt;}
.y8{bottom:573.786667pt;}
.y1e6{bottom:574.804903pt;}
.y80{bottom:576.708903pt;}
.y55{bottom:576.708944pt;}
.y1b5{bottom:585.740903pt;}
.y1e5{bottom:587.466236pt;}
.y2d{bottom:588.948527pt;}
.y7{bottom:592.685334pt;}
.y7f{bottom:592.708903pt;}
.y54{bottom:592.708944pt;}
.y17d{bottom:596.406657pt;}
.y14a{bottom:596.475462pt;}
.y151{bottom:596.490587pt;}
.y1b4{bottom:598.402236pt;}
.y1e4{bottom:600.127570pt;}
.y104{bottom:602.765218pt;}
.y2c{bottom:604.948527pt;}
.y11c{bottom:605.692197pt;}
.ye6{bottom:605.963319pt;}
.y11d{bottom:606.368939pt;}
.y7e{bottom:608.708903pt;}
.y53{bottom:608.708944pt;}
.y1b3{bottom:611.063570pt;}
.y1e3{bottom:612.788903pt;}
.y17b{bottom:619.637329pt;}
.y149{bottom:619.704915pt;}
.y150{bottom:619.720041pt;}
.ye5{bottom:622.165986pt;}
.y7d{bottom:624.708903pt;}
.y79{bottom:624.708944pt;}
.y1e2{bottom:625.450236pt;}
.y188{bottom:629.839600pt;}
.y183{bottom:633.889323pt;}
.y14f{bottom:634.719717pt;}
.y156{bottom:634.734845pt;}
.y185{bottom:634.736938pt;}
.y1b2{bottom:637.068903pt;}
.y1e1{bottom:638.111570pt;}
.ye4{bottom:638.293986pt;}
.y7c{bottom:640.708903pt;}
.y52{bottom:640.708944pt;}
.y6{bottom:645.598667pt;}
.y2b{bottom:648.053063pt;}
.y1e0{bottom:650.772903pt;}
.y172{bottom:651.612020pt;}
.y170{bottom:653.382650pt;}
.y146{bottom:653.512817pt;}
.ye3{bottom:654.421986pt;}
.y7b{bottom:656.708903pt;}
.y78{bottom:656.708944pt;}
.y2a{bottom:660.714396pt;}
.y1b1{bottom:663.074236pt;}
.y1df{bottom:663.434236pt;}
.y15a{bottom:666.922648pt;}
.y15c{bottom:666.960002pt;}
.y158{bottom:667.003988pt;}
.y15e{bottom:667.004924pt;}
.y3{bottom:668.977329pt;}
.ye2{bottom:670.549986pt;}
.y7a{bottom:672.708903pt;}
.y77{bottom:672.708944pt;}
.y16c{bottom:675.536011pt;}
.y144{bottom:675.622718pt;}
.y13d{bottom:675.721052pt;}
.y1b0{bottom:675.735570pt;}
.y1de{bottom:676.095570pt;}
.y137{bottom:681.900949pt;}
.ye1{bottom:686.677986pt;}
.y1af{bottom:688.396903pt;}
.y51{bottom:688.708903pt;}
.y1dd{bottom:688.756903pt;}
.yfe{bottom:692.305176pt;}
.yff{bottom:692.305177pt;}
.y29{bottom:694.357503pt;}
.y136{bottom:697.029215pt;}
.y16a{bottom:698.766683pt;}
.y169{bottom:698.849447pt;}
.y143{bottom:698.852172pt;}
.y13c{bottom:698.950505pt;}
.y1ae{bottom:701.058236pt;}
.y11e{bottom:701.211255pt;}
.y11f{bottom:701.215169pt;}
.y1dc{bottom:701.418236pt;}
.ye0{bottom:702.805986pt;}
.y50{bottom:704.708903pt;}
.y1ad{bottom:713.719570pt;}
.y1db{bottom:714.079570pt;}
.y4f{bottom:720.708903pt;}
.y167{bottom:721.997314pt;}
.y166{bottom:722.079183pt;}
.y142{bottom:722.081625pt;}
.y13b{bottom:722.179959pt;}
.y1ac{bottom:726.380903pt;}
.y1da{bottom:726.740903pt;}
.ydf{bottom:727.701986pt;}
.y28{bottom:732.351581pt;}
.y4e{bottom:736.708903pt;}
.y1ab{bottom:739.042236pt;}
.y1d9{bottom:739.402236pt;}
.y164{bottom:745.226644pt;}
.y141{bottom:745.311079pt;}
.y13a{bottom:745.409412pt;}
.yde{bottom:748.896652pt;}
.y1d8{bottom:752.063570pt;}
.y27{bottom:752.354248pt;}
.y4d{bottom:752.708903pt;}
.y1d7{bottom:764.724903pt;}
.y1aa{bottom:767.708903pt;}
.y162{bottom:768.455973pt;}
.y140{bottom:768.540532pt;}
.y139{bottom:768.638866pt;}
.y4c{bottom:768.708903pt;}
.ydd{bottom:770.368652pt;}
.y1d6{bottom:777.386236pt;}
.y2{bottom:781.661334pt;}
.y4b{bottom:784.708903pt;}
.ydc{bottom:790.047570pt;}
.y160{bottom:791.684000pt;}
.y15f{bottom:791.767497pt;}
.y13f{bottom:791.769985pt;}
.y138{bottom:791.868319pt;}
.y1a9{bottom:799.708903pt;}
.y16e{bottom:799.747965pt;}
.y26{bottom:799.809082pt;}
.y145{bottom:800.597324pt;}
.y4a{bottom:800.708903pt;}
.y13e{bottom:802.654773pt;}
.ydb{bottom:802.708903pt;}
.y25{bottom:822.992964pt;}
.y49{bottom:835.262533pt;}
.ya1{bottom:835.654126pt;}
.y76{bottom:835.654289pt;}
.y24{bottom:835.654297pt;}
.ya0{bottom:836.112793pt;}
.y75{bottom:836.112956pt;}
.y1{bottom:859.312000pt;}
.h2a{height:0.429333pt;}
.h32{height:3.437333pt;}
.h31{height:4.618667pt;}
.h33{height:4.782667pt;}
.h29{height:5.082667pt;}
.h2f{height:5.084000pt;}
.h26{height:5.097333pt;}
.h2d{height:5.098667pt;}
.h27{height:5.178667pt;}
.h28{height:5.180000pt;}
.h2e{height:5.181333pt;}
.h30{height:6.037333pt;}
.h2b{height:6.336000pt;}
.h2c{height:8.273333pt;}
.h23{height:25.484870pt;}
.h13{height:26.043733pt;}
.h7{height:28.560000pt;}
.h25{height:28.670283pt;}
.h22{height:28.804220pt;}
.ha{height:30.080000pt;}
.h12{height:37.205333pt;}
.hb{height:37.376000pt;}
.h16{height:37.802667pt;}
.h1b{height:38.272000pt;}
.h36{height:39.530667pt;}
.h35{height:40.165333pt;}
.h6{height:40.800000pt;}
.h1f{height:41.293224pt;}
.hc{height:41.514667pt;}
.h3{height:42.840000pt;}
.h18{height:43.067717pt;}
.h34{height:43.648000pt;}
.h21{height:46.384239pt;}
.h10{height:46.506667pt;}
.h1d{height:46.671862pt;}
.h20{height:46.855155pt;}
.h11{height:47.253333pt;}
.h1a{height:47.680000pt;}
.h2{height:48.960000pt;}
.hf{height:52.746667pt;}
.h1c{height:53.887512pt;}
.h15{height:53.888000pt;}
.h17{height:53.888163pt;}
.h19{height:54.560000pt;}
.he{height:57.658667pt;}
.h14{height:58.021333pt;}
.hd{height:61.429333pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h24{height:332.303996pt;}
.h1e{height:730.709310pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.we{width:0.665333pt;}
.wf{width:2.473333pt;}
.w16{width:3.342667pt;}
.w1d{width:4.492000pt;}
.w10{width:4.857333pt;}
.wc{width:5.953333pt;}
.w8{width:6.868000pt;}
.w15{width:7.157333pt;}
.w12{width:7.217333pt;}
.w13{width:7.237333pt;}
.w14{width:7.382667pt;}
.wd{width:7.405333pt;}
.w1a{width:7.406666pt;}
.wa{width:7.829333pt;}
.w9{width:7.917333pt;}
.wb{width:8.153333pt;}
.w17{width:9.061333pt;}
.w11{width:10.589333pt;}
.w1b{width:10.590666pt;}
.w18{width:63.840001pt;}
.w1c{width:63.841333pt;}
.w19{width:89.585337pt;}
.w6{width:233.923991pt;}
.w5{width:258.317342pt;}
.w7{width:449.763997pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:3.779200pt;}
.x28{left:10.295603pt;}
.x36{left:14.021474pt;}
.x4c{left:23.797872pt;}
.x4e{left:35.329875pt;}
.x50{left:63.469859pt;}
.x6{left:68.031469pt;}
.xa{left:68.976400pt;}
.x7{left:71.917603pt;}
.x5{left:78.425201pt;}
.x9{left:83.151469pt;}
.xb{left:85.604802pt;}
.x39{left:87.112604pt;}
.x3a{left:89.139779pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5b{left:102.127467pt;}
.x41{left:112.954671pt;}
.x52{left:114.599996pt;}
.x42{left:144.445333pt;}
.x53{left:146.680003pt;}
.x4f{left:148.609333pt;}
.x27{left:151.704000pt;}
.x30{left:164.095998pt;}
.x43{left:174.322673pt;}
.x31{left:178.009460pt;}
.x4{left:180.874667pt;}
.x2a{left:191.838806pt;}
.x15{left:195.422404pt;}
.x44{left:205.773336pt;}
.x54{left:207.797343pt;}
.x55{left:212.236796pt;}
.x16{left:214.429342pt;}
.x51{left:217.309204pt;}
.x24{left:218.709001pt;}
.xc{left:220.434530pt;}
.x2b{left:229.625619pt;}
.x17{left:230.962675pt;}
.x45{left:238.443990pt;}
.xe{left:239.441610pt;}
.x46{left:241.968262pt;}
.x56{left:243.612264pt;}
.x32{left:245.929746pt;}
.x40{left:247.731206pt;}
.x1f{left:250.614929pt;}
.x18{left:252.168000pt;}
.xf{left:255.974943pt;}
.x2c{left:267.412431pt;}
.x47{left:269.001343pt;}
.x33{left:270.538546pt;}
.x48{left:272.527466pt;}
.x57{left:274.171468pt;}
.x20{left:275.127462pt;}
.x10{left:277.180268pt;}
.x19{left:293.192000pt;}
.x21{left:299.639994pt;}
.x11{left:302.076268pt;}
.x2d{left:305.199243pt;}
.x1a{left:309.320000pt;}
.x3c{left:313.776530pt;}
.x49{left:315.015991pt;}
.x58{left:316.961324pt;}
.x12{left:318.204268pt;}
.x34{left:319.747335pt;}
.x22{left:324.152527pt;}
.x1b{left:325.448000pt;}
.x25{left:331.625982pt;}
.x13{left:334.332268pt;}
.x1c{left:341.576000pt;}
.x2e{left:342.986056pt;}
.x35{left:344.356135pt;}
.x4d{left:347.404133pt;}
.x23{left:348.665059pt;}
.x14{left:350.534935pt;}
.x1d{left:357.704000pt;}
.x26{left:369.264976pt;}
.xd{left:373.202525pt;}
.x59{left:375.576009pt;}
.x4a{left:378.486410pt;}
.x2f{left:380.772868pt;}
.x1e{left:390.034667pt;}
.x4b{left:390.975993pt;}
.x3b{left:392.423699pt;}
.x3e{left:393.972975pt;}
.x3f{left:395.682469pt;}
.x5a{left:397.831340pt;}
.x3{left:404.408000pt;}
.x37{left:421.139486pt;}
.x29{left:433.139486pt;}
.x38{left:446.832520pt;}
.x8{left:497.529053pt;}
}




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