
    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_ebf24b4fe24f53dc8e19fcfc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_0f9ab0762258d9e527d826cc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_f20930a068c1456e17d6afd2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.907000;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_6b014383407de98eee9bf181.woff')format("woff");}.ff4{font-family:ff4;line-height:0.653000;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_ccd4857ab206db3ba69a9564.woff')format("woff");}.ff5{font-family:ff5;line-height:0.665000;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_c0e708d53e2cc51d0f3c3df2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cbbb560aec5caaac6e872d97.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_d9a1fec321a116c619264e67.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_d73528d35a0ffc082ad9e231.woff')format("woff");}.ff9{font-family:ff9;line-height:0.431000;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_f575278beb37cbdf04efd645.woff')format("woff");}.ffa{font-family:ffa;line-height:0.909000;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_c87a8b06a8f1f439b6002f84.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_ca59bf2e3787fd0c06be9417.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_5155d5bf5cb73d93aceadb74.woff')format("woff");}.ffd{font-family:ffd;line-height:0.999000;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_b623497a86ad3063d7b7ebc1.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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_38b845740d7b07aa4a3275eb.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;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_8770a546cc6c82e6602ea081.woff')format("woff");}.ff10{font-family:ff10;line-height:0.704000;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_ee6a376d19a0d45450ee70c7.woff')format("woff");}.ff11{font-family:ff11;line-height:0.899000;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_c8ceae6501a3cb39361d2ab6.woff')format("woff");}.ff12{font-family:ff12;line-height:0.390000;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_471a9212a7d6828c0f467089.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_2973e6729d7d71d8743d97e8.woff')format("woff");}.ff14{font-family:ff14;line-height:0.705000;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_30fab6c6f5038664c12a1d7f.woff')format("woff");}.ff15{font-family:ff15;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-22.854000px;}
.v3{vertical-align:-16.878000px;}
.v4{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:8.970000px;}
.vc{vertical-align:16.464000px;}
.v9{vertical-align:17.934000px;}
.v1{vertical-align:21.690000px;}
.vd{vertical-align:24.684000px;}
.v8{vertical-align:30.054000px;}
.vb{vertical-align:32.040000px;}
.v5{vertical-align:40.434000px;}
.v7{vertical-align:44.832000px;}
.v6{vertical-align:62.130000px;}
.ls2{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.000069px;}
.ls2d{letter-spacing:0.002304px;}
.ls38{letter-spacing:0.002737px;}
.ls8{letter-spacing:0.004648px;}
.ls1a{letter-spacing:0.004756px;}
.ls1b{letter-spacing:0.004893px;}
.ls47{letter-spacing:0.010384px;}
.ls55{letter-spacing:0.015851px;}
.ls42{letter-spacing:0.017645px;}
.ls27{letter-spacing:0.019043px;}
.ls4d{letter-spacing:0.020788px;}
.ls6{letter-spacing:0.022035px;}
.ls4b{letter-spacing:0.022421px;}
.ls31{letter-spacing:0.026146px;}
.ls3c{letter-spacing:0.028683px;}
.ls13{letter-spacing:0.030405px;}
.ls7{letter-spacing:1.506341px;}
.ls57{letter-spacing:1.673717px;}
.lsa{letter-spacing:2.151922px;}
.ls34{letter-spacing:2.211697px;}
.ls32{letter-spacing:2.271473px;}
.ls14{letter-spacing:2.984525px;}
.ls35{letter-spacing:2.986851px;}
.ls1f{letter-spacing:2.986982px;}
.ls0{letter-spacing:2.988532px;}
.ls5{letter-spacing:2.989140px;}
.ls10{letter-spacing:2.990525px;}
.ls4{letter-spacing:2.993251px;}
.lsb{letter-spacing:2.996417px;}
.ls17{letter-spacing:3.407209px;}
.ls4c{letter-spacing:3.443511px;}
.ls1e{letter-spacing:3.449602px;}
.ls24{letter-spacing:3.464839px;}
.ls20{letter-spacing:3.466985px;}
.ls48{letter-spacing:3.475356px;}
.ls33{letter-spacing:4.303843px;}
.ls9{letter-spacing:4.490066px;}
.ls3e{letter-spacing:4.841824px;}
.ls44{letter-spacing:4.901599px;}
.ls36{letter-spacing:5.023295px;}
.ls4a{letter-spacing:5.914010px;}
.ls3d{letter-spacing:5.920010px;}
.ls50{letter-spacing:6.515540px;}
.ls18{letter-spacing:6.754643px;}
.lsf{letter-spacing:6.814418px;}
.ls1d{letter-spacing:7.149846px;}
.ls49{letter-spacing:8.300462px;}
.ls46{letter-spacing:9.564096px;}
.ls37{letter-spacing:10.879159px;}
.ls51{letter-spacing:11.835569px;}
.ls2b{letter-spacing:13.270183px;}
.ls22{letter-spacing:13.329959px;}
.ls43{letter-spacing:15.123227px;}
.ls12{letter-spacing:16.557841px;}
.ls1c{letter-spacing:16.617617px;}
.ls16{letter-spacing:18.829314px;}
.ls3{letter-spacing:19.068416px;}
.ls23{letter-spacing:19.128192px;}
.lsc{letter-spacing:19.845499px;}
.ls1{letter-spacing:19.925468px;}
.lse{letter-spacing:20.726525px;}
.ls41{letter-spacing:20.742133px;}
.ls15{letter-spacing:21.026525px;}
.ls2e{letter-spacing:21.107661px;}
.ls19{letter-spacing:22.415850px;}
.ls11{letter-spacing:23.372260px;}
.ls2c{letter-spacing:23.778538px;}
.ls2a{letter-spacing:23.790689px;}
.ls25{letter-spacing:23.910240px;}
.ls28{letter-spacing:24.024538px;}
.ls3a{letter-spacing:24.328669px;}
.ls56{letter-spacing:24.541295px;}
.lsd{letter-spacing:25.105752px;}
.ls39{letter-spacing:26.659918px;}
.ls59{letter-spacing:27.197898px;}
.ls40{letter-spacing:27.496776px;}
.ls26{letter-spacing:28.214083px;}
.ls52{letter-spacing:28.481864px;}
.ls4f{letter-spacing:28.931390px;}
.ls29{letter-spacing:29.050942px;}
.ls45{letter-spacing:31.501741px;}
.ls3f{letter-spacing:31.592525px;}
.ls54{letter-spacing:32.159273px;}
.ls58{letter-spacing:32.257295px;}
.ls30{letter-spacing:35.387155px;}
.ls53{letter-spacing:37.213295px;}
.ls3b{letter-spacing:39.870325px;}
.ls2f{letter-spacing:423.651544px;}
.ls21{letter-spacing:448.078620px;}
.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;}
}
.wsd2{word-spacing:-70.654759px;}
.ws4d{word-spacing:-38.937826px;}
.ws83{word-spacing:-38.136833px;}
.ws7d{word-spacing:-31.633157px;}
.wsf0{word-spacing:-17.683534px;}
.wsc8{word-spacing:-16.605662px;}
.wsa2{word-spacing:-15.744893px;}
.ws134{word-spacing:-15.359443px;}
.ws74{word-spacing:-13.531962px;}
.wsb2{word-spacing:-13.413645px;}
.wse9{word-spacing:-7.854514px;}
.wsfb{word-spacing:-6.623136px;}
.ws84{word-spacing:-5.699340px;}
.ws3e{word-spacing:-3.156152px;}
.ws10c{word-spacing:-2.797498px;}
.ws3d{word-spacing:-2.677947px;}
.ws2{word-spacing:-2.569148px;}
.wse6{word-spacing:-2.558396px;}
.ws130{word-spacing:-2.555424px;}
.ws62{word-spacing:-2.498620px;}
.ws10a{word-spacing:-2.379069px;}
.ws38{word-spacing:-2.319293px;}
.ws138{word-spacing:-2.286432px;}
.ws25{word-spacing:-2.259518px;}
.wsfa{word-spacing:-2.199742px;}
.ws10b{word-spacing:-1.960640px;}
.ws132{word-spacing:-1.802246px;}
.ws101{word-spacing:-1.781313px;}
.wsfc{word-spacing:-1.661762px;}
.ws124{word-spacing:-1.542210px;}
.ws37{word-spacing:-1.482435px;}
.wse5{word-spacing:-1.422659px;}
.ws49{word-spacing:-1.303108px;}
.wsb6{word-spacing:-1.243332px;}
.ws100{word-spacing:-1.123781px;}
.ws8b{word-spacing:-1.064006px;}
.ws12b{word-spacing:-1.049069px;}
.ws119{word-spacing:-1.004230px;}
.wsb{word-spacing:-0.995270px;}
.wsa7{word-spacing:-0.884679px;}
.ws139{word-spacing:-0.833875px;}
.ws68{word-spacing:-0.824903px;}
.wsc2{word-spacing:-0.765128px;}
.wsbd{word-spacing:-0.586431px;}
.ws120{word-spacing:-0.526025px;}
.ws137{word-spacing:-0.511085px;}
.wsac{word-spacing:-0.406474px;}
.ws71{word-spacing:-0.346698px;}
.ws11a{word-spacing:-0.227147px;}
.ws6c{word-spacing:-0.167372px;}
.ws5f{word-spacing:-0.107596px;}
.wsbc{word-spacing:-0.059776px;}
.ws75{word-spacing:-0.047820px;}
.ws47{word-spacing:0.000000px;}
.wsf1{word-spacing:0.011955px;}
.ws94{word-spacing:0.071731px;}
.wsf9{word-spacing:0.131506px;}
.ws17{word-spacing:0.191282px;}
.ws81{word-spacing:0.310833px;}
.ws45{word-spacing:0.370609px;}
.ws36{word-spacing:0.430384px;}
.wsc6{word-spacing:0.490160px;}
.ws29{word-spacing:0.549936px;}
.wsbe{word-spacing:0.609711px;}
.ws4f{word-spacing:0.669487px;}
.wsbf{word-spacing:0.729262px;}
.wse7{word-spacing:0.789038px;}
.ws39{word-spacing:0.908589px;}
.wsb0{word-spacing:0.968365px;}
.wsc7{word-spacing:1.028140px;}
.ws64{word-spacing:1.087916px;}
.ws53{word-spacing:1.147692px;}
.ws10{word-spacing:1.207467px;}
.ws6{word-spacing:1.210464px;}
.ws11b{word-spacing:1.267243px;}
.wsda{word-spacing:1.327018px;}
.ws6d{word-spacing:1.386794px;}
.wsab{word-spacing:1.446570px;}
.ws32{word-spacing:1.506345px;}
.ws9f{word-spacing:1.566121px;}
.ws5e{word-spacing:1.625896px;}
.ws103{word-spacing:1.685672px;}
.ws89{word-spacing:1.745448px;}
.wsd1{word-spacing:1.805223px;}
.wsb4{word-spacing:1.864999px;}
.wsae{word-spacing:1.924774px;}
.ws76{word-spacing:1.984550px;}
.ws112{word-spacing:2.044326px;}
.wsd3{word-spacing:2.104101px;}
.wse3{word-spacing:2.163877px;}
.ws91{word-spacing:2.223652px;}
.ws43{word-spacing:2.283428px;}
.ws16{word-spacing:2.343204px;}
.ws4c{word-spacing:2.402979px;}
.ws3f{word-spacing:2.462755px;}
.ws5b{word-spacing:2.522530px;}
.ws88{word-spacing:2.642082px;}
.ws11{word-spacing:2.701857px;}
.ws63{word-spacing:2.761633px;}
.wse{word-spacing:2.770618px;}
.wsb3{word-spacing:2.821408px;}
.wsce{word-spacing:2.881184px;}
.wsf7{word-spacing:3.000735px;}
.ws12a{word-spacing:3.039610px;}
.ws8a{word-spacing:3.060511px;}
.ws128{word-spacing:3.093408px;}
.ws27{word-spacing:3.120286px;}
.ws4b{word-spacing:3.180062px;}
.ws44{word-spacing:3.239838px;}
.ws19{word-spacing:3.299613px;}
.ws51{word-spacing:3.359389px;}
.ws5{word-spacing:3.416198px;}
.ws116{word-spacing:3.459237px;}
.ws2e{word-spacing:3.478940px;}
.wsf{word-spacing:3.513036px;}
.ws12c{word-spacing:3.523795px;}
.ws67{word-spacing:3.566834px;}
.ws9b{word-spacing:3.598491px;}
.ws95{word-spacing:3.658267px;}
.ws93{word-spacing:3.718042px;}
.ws30{word-spacing:3.777818px;}
.ws7{word-spacing:3.792787px;}
.wsaa{word-spacing:3.837594px;}
.ws61{word-spacing:3.897369px;}
.wsad{word-spacing:3.957145px;}
.ws5d{word-spacing:4.016920px;}
.wsc{word-spacing:4.061779px;}
.wsf8{word-spacing:4.076696px;}
.ws59{word-spacing:4.196247px;}
.ws104{word-spacing:4.256023px;}
.ws3b{word-spacing:4.315798px;}
.ws9c{word-spacing:4.375574px;}
.ws3a{word-spacing:4.435350px;}
.ws0{word-spacing:4.483200px;}
.ws34{word-spacing:4.554901px;}
.ws5c{word-spacing:4.674452px;}
.wsc3{word-spacing:4.734228px;}
.ws2b{word-spacing:4.794003px;}
.ws6e{word-spacing:4.853779px;}
.ws1e{word-spacing:4.913554px;}
.ws8{word-spacing:4.922554px;}
.wsd5{word-spacing:4.973330px;}
.ws8c{word-spacing:5.033106px;}
.ws48{word-spacing:5.092881px;}
.ws80{word-spacing:5.152657px;}
.ws115{word-spacing:5.212432px;}
.ws7e{word-spacing:5.272208px;}
.ws9d{word-spacing:5.331984px;}
.ws42{word-spacing:5.391759px;}
.ws1a{word-spacing:5.451535px;}
.ws26{word-spacing:5.511310px;}
.ws1b{word-spacing:5.571086px;}
.ws1f{word-spacing:5.630862px;}
.ws123{word-spacing:5.690637px;}
.ws6b{word-spacing:5.750413px;}
.wseb{word-spacing:5.810188px;}
.ws4a{word-spacing:5.869964px;}
.ws3c{word-spacing:5.989515px;}
.ws5a{word-spacing:6.049291px;}
.ws6f{word-spacing:6.109066px;}
.ws131{word-spacing:6.159917px;}
.ws113{word-spacing:6.168842px;}
.wsc4{word-spacing:6.228618px;}
.ws35{word-spacing:6.288393px;}
.ws82{word-spacing:6.348169px;}
.ws66{word-spacing:6.527496px;}
.ws52{word-spacing:6.587271px;}
.ws108{word-spacing:6.647047px;}
.ws109{word-spacing:6.706822px;}
.ws111{word-spacing:6.766598px;}
.ws20{word-spacing:6.826374px;}
.wse2{word-spacing:6.886149px;}
.wscd{word-spacing:6.945925px;}
.ws8d{word-spacing:7.065476px;}
.ws10f{word-spacing:7.125252px;}
.ws129{word-spacing:7.128288px;}
.ws60{word-spacing:7.185027px;}
.wsa4{word-spacing:7.244803px;}
.ws72{word-spacing:7.304578px;}
.ws79{word-spacing:7.364354px;}
.ws18{word-spacing:7.424130px;}
.ws24{word-spacing:7.483905px;}
.ws33{word-spacing:7.663232px;}
.ws12{word-spacing:7.723008px;}
.ws15{word-spacing:7.782783px;}
.wsb8{word-spacing:7.902334px;}
.ws73{word-spacing:7.962110px;}
.ws7a{word-spacing:8.021886px;}
.ws77{word-spacing:8.041043px;}
.ws135{word-spacing:8.042861px;}
.ws57{word-spacing:8.081661px;}
.ws58{word-spacing:8.141437px;}
.ws41{word-spacing:8.201212px;}
.ws65{word-spacing:8.260988px;}
.ws70{word-spacing:8.320764px;}
.ws107{word-spacing:8.380539px;}
.ws121{word-spacing:8.440315px;}
.ws85{word-spacing:8.500090px;}
.wsfd{word-spacing:8.512644px;}
.ws125{word-spacing:8.527046px;}
.wsa{word-spacing:8.580845px;}
.ws96{word-spacing:8.619642px;}
.ws78{word-spacing:8.679417px;}
.ws92{word-spacing:8.739193px;}
.ws9{word-spacing:8.742240px;}
.wsc5{word-spacing:8.798968px;}
.ws102{word-spacing:8.858744px;}
.ws8e{word-spacing:8.918520px;}
.wsa0{word-spacing:9.038071px;}
.ws87{word-spacing:9.097846px;}
.wsd4{word-spacing:9.157622px;}
.ws4{word-spacing:9.226426px;}
.ws2a{word-spacing:9.277173px;}
.wsfe{word-spacing:9.396724px;}
.wsde{word-spacing:9.456500px;}
.ws46{word-spacing:9.576051px;}
.ws10d{word-spacing:9.635827px;}
.ws4e{word-spacing:9.695602px;}
.ws122{word-spacing:9.755378px;}
.wsd{word-spacing:9.818208px;}
.ws50{word-spacing:9.874929px;}
.ws28{word-spacing:9.934705px;}
.ws23{word-spacing:9.994480px;}
.ws21{word-spacing:10.114032px;}
.ws117{word-spacing:10.173807px;}
.ws22{word-spacing:10.293358px;}
.ws69{word-spacing:10.353134px;}
.ws8f{word-spacing:10.472685px;}
.ws12d{word-spacing:10.517587px;}
.ws2c{word-spacing:10.532461px;}
.ws7c{word-spacing:10.592236px;}
.ws110{word-spacing:10.652012px;}
.ws31{word-spacing:10.711788px;}
.ws97{word-spacing:10.771563px;}
.wsff{word-spacing:10.891114px;}
.ws11e{word-spacing:10.950890px;}
.wsca{word-spacing:11.010666px;}
.ws40{word-spacing:11.070441px;}
.wsf4{word-spacing:11.130217px;}
.ws1c{word-spacing:11.189992px;}
.wsc9{word-spacing:11.309544px;}
.wsb5{word-spacing:11.369319px;}
.ws136{word-spacing:11.432160px;}
.ws90{word-spacing:11.548646px;}
.wsb9{word-spacing:11.608422px;}
.wsd7{word-spacing:11.668197px;}
.wsdd{word-spacing:11.727973px;}
.ws6a{word-spacing:11.847524px;}
.ws7f{word-spacing:11.907300px;}
.wscf{word-spacing:11.967075px;}
.wse8{word-spacing:12.026851px;}
.ws2f{word-spacing:12.086626px;}
.ws11c{word-spacing:12.206178px;}
.wsd8{word-spacing:12.265953px;}
.ws1d{word-spacing:12.445280px;}
.wsdb{word-spacing:12.564831px;}
.ws106{word-spacing:12.624607px;}
.wsdc{word-spacing:12.684382px;}
.ws10e{word-spacing:12.863709px;}
.ws7b{word-spacing:12.983260px;}
.wsee{word-spacing:13.043036px;}
.wscc{word-spacing:13.162587px;}
.wsa8{word-spacing:13.341914px;}
.ws98{word-spacing:13.461465px;}
.wsbb{word-spacing:13.473485px;}
.ws9e{word-spacing:13.820119px;}
.wsa9{word-spacing:13.939670px;}
.ws133{word-spacing:13.960685px;}
.ws86{word-spacing:14.059221px;}
.wsea{word-spacing:14.178772px;}
.ws13{word-spacing:14.358099px;}
.wsd9{word-spacing:14.955855px;}
.ws105{word-spacing:15.015631px;}
.ws2d{word-spacing:15.374284px;}
.ws1{word-spacing:15.434060px;}
.wse4{word-spacing:15.613387px;}
.ws118{word-spacing:15.972040px;}
.ws12f{word-spacing:16.973395px;}
.wsa5{word-spacing:17.992456px;}
.wsd0{word-spacing:18.649987px;}
.wsf3{word-spacing:19.259698px;}
.ws55{word-spacing:19.546621px;}
.ws127{word-spacing:19.690214px;}
.wsf6{word-spacing:20.096557px;}
.ws54{word-spacing:20.383480px;}
.wsaf{word-spacing:21.220338px;}
.wse0{word-spacing:21.459440px;}
.ws14{word-spacing:22.786459px;}
.wsd6{word-spacing:23.252708px;}
.ws11d{word-spacing:23.432035px;}
.wsec{word-spacing:23.485082px;}
.wsa6{word-spacing:24.388445px;}
.wscb{word-spacing:24.627547px;}
.wsc0{word-spacing:24.806874px;}
.wsb1{word-spacing:25.105752px;}
.wsa1{word-spacing:27.377225px;}
.wse1{word-spacing:28.034756px;}
.wsb7{word-spacing:28.094532px;}
.ws56{word-spacing:28.333634px;}
.ws3{word-spacing:28.351757px;}
.wsba{word-spacing:28.931390px;}
.ws9a{word-spacing:29.887800px;}
.ws114{word-spacing:31.083312px;}
.wsdf{word-spacing:31.322414px;}
.ws99{word-spacing:31.740844px;}
.wsef{word-spacing:32.039722px;}
.ws11f{word-spacing:32.458151px;}
.wsa3{word-spacing:34.370970px;}
.wsc1{word-spacing:35.207828px;}
.ws126{word-spacing:41.532365px;}
.ws12e{word-spacing:54.793670px;}
.wsed{word-spacing:180.474492px;}
.wsf5{word-spacing:244.972364px;}
.wsf2{word-spacing:367.811222px;}
._f{margin-left:-29.337850px;}
._25{margin-left:-10.880593px;}
._29{margin-left:-7.549709px;}
._18{margin-left:-6.431831px;}
._b{margin-left:-4.770125px;}
._2{margin-left:-3.425165px;}
._0{margin-left:-2.223667px;}
._5{margin-left:-1.129766px;}
._4{width:1.219430px;}
._1{width:2.223667px;}
._12{width:3.897384px;}
._28{width:5.236139px;}
._17{width:15.673177px;}
._1d{width:17.454522px;}
._20{width:19.552028px;}
._1a{width:20.754103px;}
._6{width:23.097446px;}
._16{width:24.615599px;}
._8{width:25.679770px;}
._1c{width:26.713433px;}
._e{width:28.656614px;}
._7{width:30.073306px;}
._3{width:31.238938px;}
._19{width:32.613559px;}
._c{width:34.323164px;}
._21{width:36.333608px;}
._26{width:37.359750px;}
._1b{width:38.686783px;}
._24{width:39.930101px;}
._9{width:41.048179px;}
._22{width:42.763447px;}
._13{width:44.748006px;}
._11{width:46.505417px;}
._14{width:48.238909px;}
._10{width:50.271280px;}
._2b{width:51.574733px;}
._15{width:52.728079px;}
._2c{width:54.169022px;}
._1f{width:56.141258px;}
._2a{width:57.276995px;}
._23{width:58.400761px;}
._27{width:59.775600px;}
._a{width:63.643507px;}
._d{width:84.827576px;}
._1e{width:402.930708px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y55{bottom:103.413000px;}
.y89{bottom:105.654000px;}
.y31{bottom:111.891000px;}
.y54{bottom:120.598500px;}
.y88{bottom:122.839500px;}
.y53{bottom:137.784000px;}
.y159{bottom:139.528500px;}
.y87{bottom:140.025000px;}
.yd8{bottom:153.075000px;}
.y52{bottom:154.969500px;}
.y158{bottom:156.714000px;}
.y86{bottom:157.210500px;}
.y30{bottom:169.561500px;}
.yd7{bottom:170.260500px;}
.y51{bottom:172.155000px;}
.y157{bottom:173.899500px;}
.y85{bottom:174.396000px;}
.y2f{bottom:186.747000px;}
.y102{bottom:187.362000px;}
.yd6{bottom:187.446000px;}
.y50{bottom:189.340500px;}
.yb5{bottom:191.581500px;}
.y2e{bottom:203.932500px;}
.y101{bottom:204.547500px;}
.yd5{bottom:204.631500px;}
.y4f{bottom:206.526000px;}
.y1ae{bottom:207.430500px;}
.y156{bottom:207.772500px;}
.yb4{bottom:208.767000px;}
.y178{bottom:213.318000px;}
.y84{bottom:213.613500px;}
.y2d{bottom:221.118000px;}
.y100{bottom:221.733000px;}
.yd4{bottom:221.817000px;}
.y4e{bottom:223.711500px;}
.y1ad{bottom:224.616000px;}
.yb3{bottom:225.952500px;}
.y177{bottom:229.009500px;}
.y83{bottom:229.305000px;}
.yff{bottom:234.435000px;}
.y12c{bottom:237.928500px;}
.y2c{bottom:238.303500px;}
.yfe{bottom:238.918500px;}
.y4d{bottom:240.897000px;}
.y155{bottom:241.647000px;}
.y1ac{bottom:241.801500px;}
.y188{bottom:243.138000px;}
.y82{bottom:244.996500px;}
.yd3{bottom:252.418500px;}
.y154{bottom:254.716500px;}
.y12b{bottom:255.114000px;}
.y2b{bottom:255.489000px;}
.yfd{bottom:256.104000px;}
.y4c{bottom:258.082500px;}
.y153{bottom:258.832500px;}
.y1ab{bottom:258.987000px;}
.y187{bottom:260.323500px;}
.yb2{bottom:264.397500px;}
.yd2{bottom:269.604000px;}
.y12a{bottom:272.299500px;}
.y2a{bottom:272.674500px;}
.yfc{bottom:273.289500px;}
.y4b{bottom:275.268000px;}
.y152{bottom:276.018000px;}
.y1aa{bottom:276.172500px;}
.y186{bottom:277.509000px;}
.yb1{bottom:280.089000px;}
.y176{bottom:281.245500px;}
.yd1{bottom:286.789500px;}
.y129{bottom:289.485000px;}
.y29{bottom:289.860000px;}
.yfb{bottom:290.475000px;}
.y4a{bottom:292.453500px;}
.y151{bottom:293.203500px;}
.y1a9{bottom:293.358000px;}
.y185{bottom:294.694500px;}
.y175{bottom:298.431000px;}
.y81{bottom:298.804500px;}
.yd0{bottom:303.975000px;}
.y128{bottom:306.672000px;}
.y28{bottom:307.045500px;}
.yfa{bottom:307.660500px;}
.y49{bottom:309.639000px;}
.y150{bottom:310.389000px;}
.y1a8{bottom:310.543500px;}
.y184{bottom:311.880000px;}
.y174{bottom:315.616500px;}
.y80{bottom:315.990000px;}
.y127{bottom:323.857500px;}
.y27{bottom:324.231000px;}
.y48{bottom:326.824500px;}
.y14f{bottom:327.576000px;}
.y1a7{bottom:327.729000px;}
.y183{bottom:329.065500px;}
.yb0{bottom:329.319000px;}
.y173{bottom:332.802000px;}
.y7f{bottom:333.175500px;}
.ycf{bottom:334.210500px;}
.yf9{bottom:337.558500px;}
.y126{bottom:341.043000px;}
.y26{bottom:341.416500px;}
.y47{bottom:344.010000px;}
.y1a6{bottom:344.914500px;}
.y182{bottom:346.251000px;}
.yaf{bottom:346.504500px;}
.y172{bottom:349.987500px;}
.y7e{bottom:350.361000px;}
.yce{bottom:351.396000px;}
.yf8{bottom:354.745500px;}
.y125{bottom:358.228500px;}
.y25{bottom:358.602000px;}
.y46{bottom:361.195500px;}
.y181{bottom:363.436500px;}
.yae{bottom:363.690000px;}
.y14e{bottom:366.892500px;}
.y171{bottom:367.173000px;}
.y7d{bottom:367.546500px;}
.ycd{bottom:368.581500px;}
.yf7{bottom:371.931000px;}
.y124{bottom:375.414000px;}
.y24{bottom:375.787500px;}
.y45{bottom:378.381000px;}
.y180{bottom:380.622000px;}
.yad{bottom:380.875500px;}
.y14d{bottom:382.584000px;}
.y170{bottom:384.358500px;}
.y1a5{bottom:384.658500px;}
.y7c{bottom:384.732000px;}
.ycc{bottom:385.767000px;}
.yf6{bottom:389.116500px;}
.y123{bottom:392.599500px;}
.y23{bottom:392.973000px;}
.y44{bottom:395.566500px;}
.y17f{bottom:397.807500px;}
.yac{bottom:398.061000px;}
.y1a4{bottom:400.348500px;}
.y16f{bottom:401.544000px;}
.y7b{bottom:401.917500px;}
.ycb{bottom:402.952500px;}
.yf5{bottom:406.302000px;}
.y122{bottom:409.785000px;}
.y22{bottom:410.158500px;}
.y43{bottom:412.752000px;}
.y17e{bottom:414.994500px;}
.yab{bottom:415.246500px;}
.y16e{bottom:418.729500px;}
.y7a{bottom:419.103000px;}
.yca{bottom:420.138000px;}
.yf4{bottom:423.487500px;}
.y121{bottom:426.970500px;}
.y21{bottom:427.344000px;}
.y42{bottom:429.937500px;}
.y17d{bottom:432.180000px;}
.yaa{bottom:432.432000px;}
.y16d{bottom:435.915000px;}
.y79{bottom:436.288500px;}
.y14c{bottom:436.920000px;}
.yc9{bottom:437.323500px;}
.y20{bottom:444.529500px;}
.y41{bottom:447.123000px;}
.y17c{bottom:449.365500px;}
.ya9{bottom:449.617500px;}
.y78{bottom:453.474000px;}
.y14b{bottom:454.105500px;}
.y120{bottom:456.132000px;}
.y1a3{bottom:456.942000px;}
.yf3{bottom:462.184500px;}
.y40{bottom:464.308500px;}
.ya8{bottom:466.803000px;}
.y77{bottom:470.659500px;}
.y14a{bottom:471.291000px;}
.y11f{bottom:473.317500px;}
.y1a2{bottom:474.127500px;}
.y16c{bottom:474.837000px;}
.yc8{bottom:476.134500px;}
.yf2{bottom:477.876000px;}
.y3f{bottom:481.494000px;}
.y1f{bottom:482.976000px;}
.ya7{bottom:483.988500px;}
.y76{bottom:487.845000px;}
.y17b{bottom:488.346000px;}
.y149{bottom:488.476500px;}
.y11e{bottom:490.503000px;}
.y16b{bottom:490.528500px;}
.y1a1{bottom:491.313000px;}
.yc7{bottom:491.826000px;}
.y1e{bottom:498.666000px;}
.y3e{bottom:498.679500px;}
.ya6{bottom:501.174000px;}
.y17a{bottom:504.037500px;}
.y75{bottom:505.030500px;}
.y16a{bottom:506.220000px;}
.y1a0{bottom:508.498500px;}
.y3d{bottom:515.865000px;}
.y148{bottom:517.036500px;}
.ya5{bottom:518.361000px;}
.y11c{bottom:519.571500px;}
.y74{bottom:522.216000px;}
.y19f{bottom:525.684000px;}
.yf1{bottom:528.924000px;}
.y11d{bottom:529.822500px;}
.y3c{bottom:533.050500px;}
.ya4{bottom:535.546500px;}
.y147{bottom:537.397500px;}
.y73{bottom:539.403000px;}
.y11b{bottom:539.931000px;}
.y19e{bottom:542.869500px;}
.yc6{bottom:543.469500px;}
.yf0{bottom:546.109500px;}
.y1d{bottom:548.031000px;}
.y3b{bottom:550.236000px;}
.ya3{bottom:552.732000px;}
.y72{bottom:556.588500px;}
.y169{bottom:558.456000px;}
.y19d{bottom:560.055000px;}
.yc5{bottom:560.655000px;}
.yef{bottom:563.295000px;}
.y1c{bottom:565.216500px;}
.y3a{bottom:567.423000px;}
.y146{bottom:569.694000px;}
.ya2{bottom:569.917500px;}
.y11a{bottom:571.857000px;}
.y71{bottom:573.774000px;}
.y168{bottom:575.641500px;}
.y19c{bottom:577.240500px;}
.yc4{bottom:577.840500px;}
.yee{bottom:580.480500px;}
.y1b{bottom:582.402000px;}
.y39{bottom:584.608500px;}
.y145{bottom:586.879500px;}
.ya1{bottom:587.103000px;}
.y119{bottom:589.042500px;}
.y70{bottom:590.959500px;}
.y167{bottom:592.827000px;}
.y19b{bottom:594.426000px;}
.yc3{bottom:595.026000px;}
.yed{bottom:597.666000px;}
.y1a{bottom:599.587500px;}
.y38{bottom:601.794000px;}
.y144{bottom:604.065000px;}
.ya0{bottom:604.288500px;}
.y118{bottom:606.228000px;}
.y6f{bottom:608.145000px;}
.y166{bottom:610.012500px;}
.y19a{bottom:611.611500px;}
.yc2{bottom:612.211500px;}
.yec{bottom:614.851500px;}
.y19{bottom:616.773000px;}
.y37{bottom:618.979500px;}
.y143{bottom:621.250500px;}
.y9f{bottom:621.474000px;}
.y117{bottom:623.415000px;}
.y6e{bottom:625.330500px;}
.y165{bottom:627.198000px;}
.y199{bottom:628.797000px;}
.yc1{bottom:629.397000px;}
.yeb{bottom:632.037000px;}
.y18{bottom:633.958500px;}
.y36{bottom:636.165000px;}
.y142{bottom:638.436000px;}
.y9e{bottom:638.659500px;}
.y116{bottom:640.600500px;}
.y6d{bottom:642.516000px;}
.y164{bottom:644.383500px;}
.y198{bottom:645.982500px;}
.yc0{bottom:646.582500px;}
.yea{bottom:649.222500px;}
.y17{bottom:651.144000px;}
.y35{bottom:653.350500px;}
.y141{bottom:655.621500px;}
.y9d{bottom:655.845000px;}
.y6c{bottom:659.701500px;}
.y163{bottom:661.569000px;}
.y197{bottom:663.168000px;}
.ye9{bottom:666.408000px;}
.y1bf{bottom:668.311500px;}
.y16{bottom:668.329500px;}
.y115{bottom:669.756000px;}
.y34{bottom:670.536000px;}
.y140{bottom:672.807000px;}
.y9c{bottom:673.030500px;}
.y6b{bottom:676.887000px;}
.y162{bottom:678.754500px;}
.y196{bottom:680.353500px;}
.ye8{bottom:683.593500px;}
.ybf{bottom:685.392000px;}
.y1be{bottom:685.497000px;}
.y15{bottom:685.515000px;}
.y114{bottom:686.941500px;}
.y33{bottom:687.721500px;}
.y13f{bottom:689.994000px;}
.y9b{bottom:690.216000px;}
.y6a{bottom:694.072500px;}
.y161{bottom:695.940000px;}
.y195{bottom:697.539000px;}
.ybe{bottom:701.083500px;}
.y1bd{bottom:702.682500px;}
.y14{bottom:702.700500px;}
.y113{bottom:704.127000px;}
.y32{bottom:704.907000px;}
.y13e{bottom:707.179500px;}
.y69{bottom:711.258000px;}
.y160{bottom:713.125500px;}
.ye7{bottom:714.651000px;}
.y194{bottom:714.724500px;}
.y99{bottom:716.547000px;}
.ybd{bottom:716.775000px;}
.y1bc{bottom:719.868000px;}
.y112{bottom:721.312500px;}
.y13d{bottom:724.365000px;}
.ye6{bottom:724.902000px;}
.y68{bottom:728.443500px;}
.y15f{bottom:730.311000px;}
.y193{bottom:731.911500px;}
.y9a{bottom:734.406000px;}
.y1bb{bottom:737.053500px;}
.y13{bottom:741.145500px;}
.y13c{bottom:741.550500px;}
.y67{bottom:745.629000px;}
.y15e{bottom:747.496500px;}
.y98{bottom:748.602000px;}
.y1ba{bottom:754.239000px;}
.y12{bottom:756.837000px;}
.y13b{bottom:758.736000px;}
.y111{bottom:759.763500px;}
.y66{bottom:762.814500px;}
.y15d{bottom:764.682000px;}
.ye5{bottom:766.095000px;}
.y97{bottom:766.671000px;}
.ybc{bottom:768.418500px;}
.y1b9{bottom:771.424500px;}
.y192{bottom:771.654000px;}
.y11{bottom:772.528500px;}
.y110{bottom:775.455000px;}
.y13a{bottom:775.921500px;}
.y65{bottom:780.000000px;}
.y15c{bottom:781.867500px;}
.ye4{bottom:783.280500px;}
.y96{bottom:783.856500px;}
.y179{bottom:784.609500px;}
.ybb{bottom:785.604000px;}
.y191{bottom:787.345500px;}
.y1b8{bottom:788.610000px;}
.y1d2{bottom:798.867000px;}
.ye3{bottom:800.466000px;}
.y95{bottom:801.042000px;}
.yba{bottom:802.789500px;}
.y1b7{bottom:805.795500px;}
.y1d1{bottom:814.557000px;}
.y1cf{bottom:814.558500px;}
.y139{bottom:815.238000px;}
.ye2{bottom:817.651500px;}
.y94{bottom:818.227500px;}
.y64{bottom:819.217500px;}
.y10{bottom:819.228000px;}
.yb9{bottom:819.975000px;}
.y15b{bottom:820.789500px;}
.y1b6{bottom:822.981000px;}
.y10f{bottom:825.190500px;}
.y1ce{bottom:830.248500px;}
.y138{bottom:830.929500px;}
.ye1{bottom:834.837000px;}
.y63{bottom:834.909000px;}
.yf{bottom:834.919500px;}
.y93{bottom:835.413000px;}
.y15a{bottom:836.481000px;}
.yb8{bottom:837.160500px;}
.y1b5{bottom:840.166500px;}
.y10e{bottom:842.376000px;}
.y190{bottom:843.937500px;}
.y1cd{bottom:845.940000px;}
.ye{bottom:850.609500px;}
.ye0{bottom:852.022500px;}
.y92{bottom:852.598500px;}
.yb7{bottom:854.346000px;}
.y1b4{bottom:857.352000px;}
.y10d{bottom:859.561500px;}
.y18f{bottom:861.123000px;}
.y1cc{bottom:861.631500px;}
.yd{bottom:866.301000px;}
.ydf{bottom:869.208000px;}
.y91{bottom:869.784000px;}
.yb6{bottom:871.531500px;}
.y10c{bottom:876.747000px;}
.y1cb{bottom:877.323000px;}
.y18e{bottom:878.308500px;}
.yc{bottom:881.992500px;}
.y137{bottom:885.265500px;}
.yde{bottom:886.393500px;}
.y90{bottom:886.969500px;}
.y62{bottom:888.717000px;}
.y1ca{bottom:893.013000px;}
.y10b{bottom:893.932500px;}
.y18d{bottom:895.494000px;}
.y1b3{bottom:895.797000px;}
.yb{bottom:897.684000px;}
.y136{bottom:902.451000px;}
.ydd{bottom:903.579000px;}
.y8f{bottom:904.155000px;}
.y61{bottom:905.902500px;}
.y1c9{bottom:908.704500px;}
.y10a{bottom:911.118000px;}
.y18c{bottom:912.679500px;}
.ya{bottom:913.375500px;}
.y135{bottom:919.636500px;}
.ydc{bottom:920.764500px;}
.y8e{bottom:921.340500px;}
.y60{bottom:923.088000px;}
.y1c8{bottom:924.396000px;}
.y109{bottom:928.303500px;}
.y9{bottom:929.065500px;}
.y18b{bottom:929.866500px;}
.y134{bottom:936.822000px;}
.ydb{bottom:937.951500px;}
.y8d{bottom:938.526000px;}
.y1c7{bottom:940.087500px;}
.y5f{bottom:940.273500px;}
.y8{bottom:944.757000px;}
.y108{bottom:945.489000px;}
.y1b2{bottom:945.504000px;}
.y18a{bottom:947.052000px;}
.y133{bottom:954.007500px;}
.y8c{bottom:955.711500px;}
.y1d0{bottom:955.777500px;}
.y1c6{bottom:955.779000px;}
.y5e{bottom:957.459000px;}
.y7{bottom:960.448500px;}
.y107{bottom:962.674500px;}
.y1b1{bottom:962.689500px;}
.y132{bottom:971.193000px;}
.y1c5{bottom:971.469000px;}
.y8b{bottom:972.897000px;}
.y5d{bottom:974.644500px;}
.y6{bottom:976.140000px;}
.yda{bottom:976.648500px;}
.y106{bottom:979.860000px;}
.y1b0{bottom:979.875000px;}
.y189{bottom:986.794500px;}
.y1c4{bottom:987.160500px;}
.y131{bottom:988.378500px;}
.y5c{bottom:991.830000px;}
.yd9{bottom:992.340000px;}
.y105{bottom:997.045500px;}
.y1af{bottom:997.060500px;}
.y5{bottom:1001.544000px;}
.y1c3{bottom:1002.852000px;}
.y130{bottom:1005.564000px;}
.y5b{bottom:1009.015500px;}
.y8a{bottom:1011.343500px;}
.y104{bottom:1014.231000px;}
.y1c2{bottom:1018.543500px;}
.y12f{bottom:1022.749500px;}
.y4{bottom:1022.949000px;}
.y5a{bottom:1026.202500px;}
.y103{bottom:1031.416500px;}
.y1c1{bottom:1034.233500px;}
.y3{bottom:1038.157500px;}
.y12e{bottom:1039.935000px;}
.y59{bottom:1043.388000px;}
.y1c0{bottom:1049.925000px;}
.y58{bottom:1060.573500px;}
.y2{bottom:1074.022500px;}
.y57{bottom:1077.759000px;}
.y12d{bottom:1079.253000px;}
.y1{bottom:1094.944500px;}
.y56{bottom:1133.799000px;}
.h7{height:0.000000px;}
.h6{height:16.787702px;}
.h3{height:23.850624px;}
.h8{height:31.382100px;}
.h4{height:40.348800px;}
.h5{height:44.831700px;}
.hc{height:45.833296px;}
.h10{height:45.839296px;}
.h12{height:48.827296px;}
.h1{height:50.211840px;}
.h2{height:51.523916px;}
.h9{height:53.072100px;}
.h11{height:61.295700px;}
.hd{height:61.436100px;}
.he{height:62.765700px;}
.hb{height:85.835700px;}
.ha{height:86.273296px;}
.hf{height:93.512100px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:81.000000px;}
.xe{left:82.992000px;}
.x1c{left:84.211500px;}
.x38{left:86.535000px;}
.x40{left:87.912000px;}
.x29{left:89.280000px;}
.x1{left:92.275500px;}
.xb{left:95.944500px;}
.x8{left:96.994500px;}
.x15{left:99.609000px;}
.x20{left:100.759500px;}
.x14{left:103.491000px;}
.x2b{left:104.911500px;}
.x41{left:108.480000px;}
.x1e{left:113.014500px;}
.x21{left:118.360500px;}
.x16{left:123.456000px;}
.x9{left:128.728500px;}
.x3a{left:136.393500px;}
.xd{left:145.513500px;}
.x7{left:163.192500px;}
.x2c{left:164.388000px;}
.x2a{left:167.481000px;}
.x1f{left:172.863000px;}
.x6{left:177.015000px;}
.x2d{left:184.659000px;}
.x3d{left:187.005000px;}
.x3e{left:191.236500px;}
.xa{left:211.606500px;}
.x2e{left:226.294500px;}
.x1d{left:229.326000px;}
.x2{left:238.206000px;}
.x39{left:239.742000px;}
.x2f{left:285.418500px;}
.x4{left:315.063000px;}
.x3{left:359.911500px;}
.x5{left:376.131000px;}
.x12{left:475.521000px;}
.x17{left:481.929000px;}
.x34{left:484.267500px;}
.x11{left:490.464000px;}
.x30{left:491.962500px;}
.x3f{left:495.280500px;}
.x25{left:498.321000px;}
.x27{left:499.432500px;}
.x10{left:500.700000px;}
.x42{left:503.001000px;}
.x3b{left:506.434500px;}
.xf{left:512.302500px;}
.x1b{left:542.395500px;}
.x32{left:545.685000px;}
.x33{left:553.654500px;}
.x37{left:560.005500px;}
.x3c{left:571.683000px;}
.x26{left:579.838500px;}
.x22{left:585.727500px;}
.x36{left:590.721000px;}
.x31{left:592.065000px;}
.x19{left:595.129500px;}
.x18{left:598.272000px;}
.x23{left:602.748000px;}
.x1a{left:625.491000px;}
.x35{left:631.153500px;}
.x28{left:661.065000px;}
.x24{left:682.152000px;}
.x13{left:835.669500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-15.002667pt;}
.v4{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:7.973333pt;}
.vc{vertical-align:14.634667pt;}
.v9{vertical-align:15.941333pt;}
.v1{vertical-align:19.280000pt;}
.vd{vertical-align:21.941333pt;}
.v8{vertical-align:26.714667pt;}
.vb{vertical-align:28.480000pt;}
.v5{vertical-align:35.941333pt;}
.v7{vertical-align:39.850667pt;}
.v6{vertical-align:55.226667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.000061pt;}
.ls2d{letter-spacing:0.002048pt;}
.ls38{letter-spacing:0.002433pt;}
.ls8{letter-spacing:0.004132pt;}
.ls1a{letter-spacing:0.004227pt;}
.ls1b{letter-spacing:0.004349pt;}
.ls47{letter-spacing:0.009230pt;}
.ls55{letter-spacing:0.014090pt;}
.ls42{letter-spacing:0.015684pt;}
.ls27{letter-spacing:0.016927pt;}
.ls4d{letter-spacing:0.018478pt;}
.ls6{letter-spacing:0.019587pt;}
.ls4b{letter-spacing:0.019929pt;}
.ls31{letter-spacing:0.023241pt;}
.ls3c{letter-spacing:0.025496pt;}
.ls13{letter-spacing:0.027027pt;}
.ls7{letter-spacing:1.338970pt;}
.ls57{letter-spacing:1.487748pt;}
.lsa{letter-spacing:1.912819pt;}
.ls34{letter-spacing:1.965953pt;}
.ls32{letter-spacing:2.019087pt;}
.ls14{letter-spacing:2.652911pt;}
.ls35{letter-spacing:2.654978pt;}
.ls1f{letter-spacing:2.655095pt;}
.ls0{letter-spacing:2.656473pt;}
.ls5{letter-spacing:2.657014pt;}
.ls10{letter-spacing:2.658245pt;}
.ls4{letter-spacing:2.660667pt;}
.lsb{letter-spacing:2.663481pt;}
.ls17{letter-spacing:3.028630pt;}
.ls4c{letter-spacing:3.060899pt;}
.ls1e{letter-spacing:3.066313pt;}
.ls24{letter-spacing:3.079857pt;}
.ls20{letter-spacing:3.081764pt;}
.ls48{letter-spacing:3.089205pt;}
.ls33{letter-spacing:3.825638pt;}
.ls9{letter-spacing:3.991170pt;}
.ls3e{letter-spacing:4.303843pt;}
.ls44{letter-spacing:4.356977pt;}
.ls36{letter-spacing:4.465151pt;}
.ls4a{letter-spacing:5.256897pt;}
.ls3d{letter-spacing:5.262231pt;}
.ls50{letter-spacing:5.791591pt;}
.ls18{letter-spacing:6.004127pt;}
.lsf{letter-spacing:6.057261pt;}
.ls1d{letter-spacing:6.355419pt;}
.ls49{letter-spacing:7.378188pt;}
.ls46{letter-spacing:8.501419pt;}
.ls37{letter-spacing:9.670364pt;}
.ls51{letter-spacing:10.520506pt;}
.ls2b{letter-spacing:11.795718pt;}
.ls22{letter-spacing:11.848852pt;}
.ls43{letter-spacing:13.442868pt;}
.ls12{letter-spacing:14.718081pt;}
.ls1c{letter-spacing:14.771215pt;}
.ls16{letter-spacing:16.737168pt;}
.ls3{letter-spacing:16.949703pt;}
.ls23{letter-spacing:17.002837pt;}
.lsc{letter-spacing:17.640444pt;}
.ls1{letter-spacing:17.711527pt;}
.lse{letter-spacing:18.423578pt;}
.ls41{letter-spacing:18.437452pt;}
.ls15{letter-spacing:18.690245pt;}
.ls2e{letter-spacing:18.762366pt;}
.ls19{letter-spacing:19.925200pt;}
.ls11{letter-spacing:20.775342pt;}
.ls2c{letter-spacing:21.136479pt;}
.ls2a{letter-spacing:21.147279pt;}
.ls25{letter-spacing:21.253547pt;}
.ls28{letter-spacing:21.355145pt;}
.ls3a{letter-spacing:21.625484pt;}
.ls56{letter-spacing:21.814484pt;}
.lsd{letter-spacing:22.316224pt;}
.ls39{letter-spacing:23.697705pt;}
.ls59{letter-spacing:24.175909pt;}
.ls40{letter-spacing:24.441579pt;}
.ls26{letter-spacing:25.079185pt;}
.ls52{letter-spacing:25.317213pt;}
.ls4f{letter-spacing:25.716791pt;}
.ls29{letter-spacing:25.823059pt;}
.ls45{letter-spacing:28.001548pt;}
.ls3f{letter-spacing:28.082245pt;}
.ls54{letter-spacing:28.586020pt;}
.ls58{letter-spacing:28.673151pt;}
.ls30{letter-spacing:31.455249pt;}
.ls53{letter-spacing:33.078484pt;}
.ls3b{letter-spacing:35.440289pt;}
.ls2f{letter-spacing:376.579150pt;}
.ls21{letter-spacing:398.292107pt;}
.wsd2{word-spacing:-62.804230pt;}
.ws4d{word-spacing:-34.611401pt;}
.ws83{word-spacing:-33.899407pt;}
.ws7d{word-spacing:-28.118362pt;}
.wsf0{word-spacing:-15.718697pt;}
.wsc8{word-spacing:-14.760588pt;}
.wsa2{word-spacing:-13.995460pt;}
.ws134{word-spacing:-13.652838pt;}
.ws74{word-spacing:-12.028410pt;}
.wsb2{word-spacing:-11.923240pt;}
.wse9{word-spacing:-6.981790pt;}
.wsfb{word-spacing:-5.887232pt;}
.ws84{word-spacing:-5.066080pt;}
.ws3e{word-spacing:-2.805468pt;}
.ws10c{word-spacing:-2.486665pt;}
.ws3d{word-spacing:-2.380397pt;}
.ws2{word-spacing:-2.283687pt;}
.wse6{word-spacing:-2.274129pt;}
.ws130{word-spacing:-2.271488pt;}
.ws62{word-spacing:-2.220996pt;}
.ws10a{word-spacing:-2.114728pt;}
.ws38{word-spacing:-2.061594pt;}
.ws138{word-spacing:-2.032384pt;}
.ws25{word-spacing:-2.008460pt;}
.wsfa{word-spacing:-1.955326pt;}
.ws10b{word-spacing:-1.742791pt;}
.ws132{word-spacing:-1.601997pt;}
.ws101{word-spacing:-1.583389pt;}
.wsfc{word-spacing:-1.477121pt;}
.ws124{word-spacing:-1.370854pt;}
.ws37{word-spacing:-1.317720pt;}
.wse5{word-spacing:-1.264586pt;}
.ws49{word-spacing:-1.158318pt;}
.wsb6{word-spacing:-1.105184pt;}
.ws100{word-spacing:-0.998917pt;}
.ws8b{word-spacing:-0.945783pt;}
.ws12b{word-spacing:-0.932506pt;}
.ws119{word-spacing:-0.892649pt;}
.wsb{word-spacing:-0.884685pt;}
.wsa7{word-spacing:-0.786381pt;}
.ws139{word-spacing:-0.741222pt;}
.ws68{word-spacing:-0.733247pt;}
.wsc2{word-spacing:-0.680113pt;}
.wsbd{word-spacing:-0.521272pt;}
.ws120{word-spacing:-0.467578pt;}
.ws137{word-spacing:-0.454298pt;}
.wsac{word-spacing:-0.361310pt;}
.ws71{word-spacing:-0.308176pt;}
.ws11a{word-spacing:-0.201909pt;}
.ws6c{word-spacing:-0.148775pt;}
.ws5f{word-spacing:-0.095641pt;}
.wsbc{word-spacing:-0.053134pt;}
.ws75{word-spacing:-0.042507pt;}
.ws47{word-spacing:0.000000pt;}
.wsf1{word-spacing:0.010627pt;}
.ws94{word-spacing:0.063761pt;}
.wsf9{word-spacing:0.116895pt;}
.ws17{word-spacing:0.170028pt;}
.ws81{word-spacing:0.276296pt;}
.ws45{word-spacing:0.329430pt;}
.ws36{word-spacing:0.382564pt;}
.wsc6{word-spacing:0.435698pt;}
.ws29{word-spacing:0.488832pt;}
.wsbe{word-spacing:0.541965pt;}
.ws4f{word-spacing:0.595099pt;}
.wsbf{word-spacing:0.648233pt;}
.wse7{word-spacing:0.701367pt;}
.ws39{word-spacing:0.807635pt;}
.wsb0{word-spacing:0.860769pt;}
.wsc7{word-spacing:0.913903pt;}
.ws64{word-spacing:0.967036pt;}
.ws53{word-spacing:1.020170pt;}
.ws10{word-spacing:1.073304pt;}
.ws6{word-spacing:1.075968pt;}
.ws11b{word-spacing:1.126438pt;}
.wsda{word-spacing:1.179572pt;}
.ws6d{word-spacing:1.232706pt;}
.wsab{word-spacing:1.285840pt;}
.ws32{word-spacing:1.338973pt;}
.ws9f{word-spacing:1.392107pt;}
.ws5e{word-spacing:1.445241pt;}
.ws103{word-spacing:1.498375pt;}
.ws89{word-spacing:1.551509pt;}
.wsd1{word-spacing:1.604643pt;}
.wsb4{word-spacing:1.657777pt;}
.wsae{word-spacing:1.710911pt;}
.ws76{word-spacing:1.764044pt;}
.ws112{word-spacing:1.817178pt;}
.wsd3{word-spacing:1.870312pt;}
.wse3{word-spacing:1.923446pt;}
.ws91{word-spacing:1.976580pt;}
.ws43{word-spacing:2.029714pt;}
.ws16{word-spacing:2.082848pt;}
.ws4c{word-spacing:2.135981pt;}
.ws3f{word-spacing:2.189115pt;}
.ws5b{word-spacing:2.242249pt;}
.ws88{word-spacing:2.348517pt;}
.ws11{word-spacing:2.401651pt;}
.ws63{word-spacing:2.454785pt;}
.wse{word-spacing:2.462771pt;}
.wsb3{word-spacing:2.507919pt;}
.wsce{word-spacing:2.561052pt;}
.wsf7{word-spacing:2.667320pt;}
.ws12a{word-spacing:2.701875pt;}
.ws8a{word-spacing:2.720454pt;}
.ws128{word-spacing:2.749696pt;}
.ws27{word-spacing:2.773588pt;}
.ws4b{word-spacing:2.826722pt;}
.ws44{word-spacing:2.879856pt;}
.ws19{word-spacing:2.932989pt;}
.ws51{word-spacing:2.986123pt;}
.ws5{word-spacing:3.036621pt;}
.ws116{word-spacing:3.074877pt;}
.ws2e{word-spacing:3.092391pt;}
.wsf{word-spacing:3.122698pt;}
.ws12c{word-spacing:3.132262pt;}
.ws67{word-spacing:3.170519pt;}
.ws9b{word-spacing:3.198659pt;}
.ws95{word-spacing:3.251793pt;}
.ws93{word-spacing:3.304927pt;}
.ws30{word-spacing:3.358060pt;}
.ws7{word-spacing:3.371366pt;}
.wsaa{word-spacing:3.411194pt;}
.ws61{word-spacing:3.464328pt;}
.wsad{word-spacing:3.517462pt;}
.ws5d{word-spacing:3.570596pt;}
.wsc{word-spacing:3.610470pt;}
.wsf8{word-spacing:3.623730pt;}
.ws59{word-spacing:3.729997pt;}
.ws104{word-spacing:3.783131pt;}
.ws3b{word-spacing:3.836265pt;}
.ws9c{word-spacing:3.889399pt;}
.ws3a{word-spacing:3.942533pt;}
.ws0{word-spacing:3.985067pt;}
.ws34{word-spacing:4.048801pt;}
.ws5c{word-spacing:4.155068pt;}
.wsc3{word-spacing:4.208202pt;}
.ws2b{word-spacing:4.261336pt;}
.ws6e{word-spacing:4.314470pt;}
.ws1e{word-spacing:4.367604pt;}
.ws8{word-spacing:4.375603pt;}
.wsd5{word-spacing:4.420738pt;}
.ws8c{word-spacing:4.473872pt;}
.ws48{word-spacing:4.527005pt;}
.ws80{word-spacing:4.580139pt;}
.ws115{word-spacing:4.633273pt;}
.ws7e{word-spacing:4.686407pt;}
.ws9d{word-spacing:4.739541pt;}
.ws42{word-spacing:4.792675pt;}
.ws1a{word-spacing:4.845809pt;}
.ws26{word-spacing:4.898943pt;}
.ws1b{word-spacing:4.952076pt;}
.ws1f{word-spacing:5.005210pt;}
.ws123{word-spacing:5.058344pt;}
.ws6b{word-spacing:5.111478pt;}
.wseb{word-spacing:5.164612pt;}
.ws4a{word-spacing:5.217746pt;}
.ws3c{word-spacing:5.324013pt;}
.ws5a{word-spacing:5.377147pt;}
.ws6f{word-spacing:5.430281pt;}
.ws131{word-spacing:5.475482pt;}
.ws113{word-spacing:5.483415pt;}
.wsc4{word-spacing:5.536549pt;}
.ws35{word-spacing:5.589683pt;}
.ws82{word-spacing:5.642817pt;}
.ws66{word-spacing:5.802218pt;}
.ws52{word-spacing:5.855352pt;}
.ws108{word-spacing:5.908486pt;}
.ws109{word-spacing:5.961620pt;}
.ws111{word-spacing:6.014754pt;}
.ws20{word-spacing:6.067888pt;}
.wse2{word-spacing:6.121021pt;}
.wscd{word-spacing:6.174155pt;}
.ws8d{word-spacing:6.280423pt;}
.ws10f{word-spacing:6.333557pt;}
.ws129{word-spacing:6.336256pt;}
.ws60{word-spacing:6.386691pt;}
.wsa4{word-spacing:6.439825pt;}
.ws72{word-spacing:6.492959pt;}
.ws79{word-spacing:6.546092pt;}
.ws18{word-spacing:6.599226pt;}
.ws24{word-spacing:6.652360pt;}
.ws33{word-spacing:6.811762pt;}
.ws12{word-spacing:6.864896pt;}
.ws15{word-spacing:6.918029pt;}
.wsb8{word-spacing:7.024297pt;}
.ws73{word-spacing:7.077431pt;}
.ws7a{word-spacing:7.130565pt;}
.ws77{word-spacing:7.147594pt;}
.ws135{word-spacing:7.149210pt;}
.ws57{word-spacing:7.183699pt;}
.ws58{word-spacing:7.236833pt;}
.ws41{word-spacing:7.289967pt;}
.ws65{word-spacing:7.343100pt;}
.ws70{word-spacing:7.396234pt;}
.ws107{word-spacing:7.449368pt;}
.ws121{word-spacing:7.502502pt;}
.ws85{word-spacing:7.555636pt;}
.wsfd{word-spacing:7.566795pt;}
.ws125{word-spacing:7.579597pt;}
.wsa{word-spacing:7.627418pt;}
.ws96{word-spacing:7.661904pt;}
.ws78{word-spacing:7.715037pt;}
.ws92{word-spacing:7.768171pt;}
.ws9{word-spacing:7.770880pt;}
.wsc5{word-spacing:7.821305pt;}
.ws102{word-spacing:7.874439pt;}
.ws8e{word-spacing:7.927573pt;}
.wsa0{word-spacing:8.033841pt;}
.ws87{word-spacing:8.086975pt;}
.wsd4{word-spacing:8.140108pt;}
.ws4{word-spacing:8.201267pt;}
.ws2a{word-spacing:8.246376pt;}
.wsfe{word-spacing:8.352644pt;}
.wsde{word-spacing:8.405778pt;}
.ws46{word-spacing:8.512045pt;}
.ws10d{word-spacing:8.565179pt;}
.ws4e{word-spacing:8.618313pt;}
.ws122{word-spacing:8.671447pt;}
.wsd{word-spacing:8.727296pt;}
.ws50{word-spacing:8.777715pt;}
.ws28{word-spacing:8.830849pt;}
.ws23{word-spacing:8.883983pt;}
.ws21{word-spacing:8.990250pt;}
.ws117{word-spacing:9.043384pt;}
.ws22{word-spacing:9.149652pt;}
.ws69{word-spacing:9.202786pt;}
.ws8f{word-spacing:9.309053pt;}
.ws12d{word-spacing:9.348966pt;}
.ws2c{word-spacing:9.362187pt;}
.ws7c{word-spacing:9.415321pt;}
.ws110{word-spacing:9.468455pt;}
.ws31{word-spacing:9.521589pt;}
.ws97{word-spacing:9.574723pt;}
.wsff{word-spacing:9.680991pt;}
.ws11e{word-spacing:9.734124pt;}
.wsca{word-spacing:9.787258pt;}
.ws40{word-spacing:9.840392pt;}
.wsf4{word-spacing:9.893526pt;}
.ws1c{word-spacing:9.946660pt;}
.wsc9{word-spacing:10.052928pt;}
.wsb5{word-spacing:10.106061pt;}
.ws136{word-spacing:10.161920pt;}
.ws90{word-spacing:10.265463pt;}
.wsb9{word-spacing:10.318597pt;}
.wsd7{word-spacing:10.371731pt;}
.wsdd{word-spacing:10.424865pt;}
.ws6a{word-spacing:10.531132pt;}
.ws7f{word-spacing:10.584266pt;}
.wscf{word-spacing:10.637400pt;}
.wse8{word-spacing:10.690534pt;}
.ws2f{word-spacing:10.743668pt;}
.ws11c{word-spacing:10.849936pt;}
.wsd8{word-spacing:10.903069pt;}
.ws1d{word-spacing:11.062471pt;}
.wsdb{word-spacing:11.168739pt;}
.ws106{word-spacing:11.221873pt;}
.wsdc{word-spacing:11.275007pt;}
.ws10e{word-spacing:11.434408pt;}
.ws7b{word-spacing:11.540676pt;}
.wsee{word-spacing:11.593810pt;}
.wscc{word-spacing:11.700077pt;}
.wsa8{word-spacing:11.859479pt;}
.ws98{word-spacing:11.965747pt;}
.wsbb{word-spacing:11.976431pt;}
.ws9e{word-spacing:12.284550pt;}
.wsa9{word-spacing:12.390818pt;}
.ws133{word-spacing:12.409498pt;}
.ws86{word-spacing:12.497085pt;}
.wsea{word-spacing:12.603353pt;}
.ws13{word-spacing:12.762755pt;}
.wsd9{word-spacing:13.294093pt;}
.ws105{word-spacing:13.347227pt;}
.ws2d{word-spacing:13.666031pt;}
.ws1{word-spacing:13.719164pt;}
.wse4{word-spacing:13.878566pt;}
.ws118{word-spacing:14.197369pt;}
.ws12f{word-spacing:15.087462pt;}
.wsa5{word-spacing:15.993294pt;}
.wsd0{word-spacing:16.577766pt;}
.wsf3{word-spacing:17.119732pt;}
.ws55{word-spacing:17.374774pt;}
.ws127{word-spacing:17.502413pt;}
.wsf6{word-spacing:17.863606pt;}
.ws54{word-spacing:18.118649pt;}
.wsaf{word-spacing:18.862523pt;}
.wse0{word-spacing:19.075058pt;}
.ws14{word-spacing:20.254630pt;}
.wsd6{word-spacing:20.669074pt;}
.ws11d{word-spacing:20.828476pt;}
.wsec{word-spacing:20.875628pt;}
.wsa6{word-spacing:21.678618pt;}
.wscb{word-spacing:21.891153pt;}
.wsc0{word-spacing:22.050555pt;}
.wsb1{word-spacing:22.316224pt;}
.wsa1{word-spacing:24.335311pt;}
.wse1{word-spacing:24.919783pt;}
.wsb7{word-spacing:24.972917pt;}
.ws56{word-spacing:25.185453pt;}
.ws3{word-spacing:25.201562pt;}
.wsba{word-spacing:25.716791pt;}
.ws9a{word-spacing:26.566933pt;}
.ws114{word-spacing:27.629611pt;}
.wsdf{word-spacing:27.842146pt;}
.ws99{word-spacing:28.214083pt;}
.wsef{word-spacing:28.479753pt;}
.ws11f{word-spacing:28.851690pt;}
.wsa3{word-spacing:30.551973pt;}
.wsc1{word-spacing:31.295847pt;}
.ws126{word-spacing:36.917658pt;}
.ws12e{word-spacing:48.705485pt;}
.wsed{word-spacing:160.421770pt;}
.wsf5{word-spacing:217.753212pt;}
.wsf2{word-spacing:326.943308pt;}
._f{margin-left:-26.078089pt;}
._25{margin-left:-9.671638pt;}
._29{margin-left:-6.710852pt;}
._18{margin-left:-5.717183pt;}
._b{margin-left:-4.240111pt;}
._2{margin-left:-3.044591pt;}
._0{margin-left:-1.976593pt;}
._5{margin-left:-1.004237pt;}
._4{width:1.083938pt;}
._1{width:1.976593pt;}
._12{width:3.464341pt;}
._28{width:4.654345pt;}
._17{width:13.931713pt;}
._1d{width:15.515131pt;}
._20{width:17.379581pt;}
._1a{width:18.448092pt;}
._6{width:20.531063pt;}
._16{width:21.880532pt;}
._8{width:22.826462pt;}
._1c{width:23.745274pt;}
._e{width:25.472546pt;}
._7{width:26.731827pt;}
._3{width:27.767945pt;}
._19{width:28.989830pt;}
._c{width:30.509479pt;}
._21{width:32.296540pt;}
._26{width:33.208667pt;}
._1b{width:34.388252pt;}
._24{width:35.493423pt;}
._9{width:36.487270pt;}
._22{width:38.011953pt;}
._13{width:39.776005pt;}
._11{width:41.338148pt;}
._14{width:42.879030pt;}
._10{width:44.685582pt;}
._2b{width:45.844207pt;}
._15{width:46.869404pt;}
._2c{width:48.150242pt;}
._1f{width:49.903341pt;}
._2a{width:50.912884pt;}
._23{width:51.911788pt;}
._27{width:53.133867pt;}
._a{width:56.572006pt;}
._d{width:75.402290pt;}
._1e{width:358.160629pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:91.922667pt;}
.y89{bottom:93.914667pt;}
.y31{bottom:99.458667pt;}
.y54{bottom:107.198667pt;}
.y88{bottom:109.190667pt;}
.y53{bottom:122.474667pt;}
.y159{bottom:124.025333pt;}
.y87{bottom:124.466667pt;}
.yd8{bottom:136.066667pt;}
.y52{bottom:137.750667pt;}
.y158{bottom:139.301333pt;}
.y86{bottom:139.742667pt;}
.y30{bottom:150.721333pt;}
.yd7{bottom:151.342667pt;}
.y51{bottom:153.026667pt;}
.y157{bottom:154.577333pt;}
.y85{bottom:155.018667pt;}
.y2f{bottom:165.997333pt;}
.y102{bottom:166.544000pt;}
.yd6{bottom:166.618667pt;}
.y50{bottom:168.302667pt;}
.yb5{bottom:170.294667pt;}
.y2e{bottom:181.273333pt;}
.y101{bottom:181.820000pt;}
.yd5{bottom:181.894667pt;}
.y4f{bottom:183.578667pt;}
.y1ae{bottom:184.382667pt;}
.y156{bottom:184.686667pt;}
.yb4{bottom:185.570667pt;}
.y178{bottom:189.616000pt;}
.y84{bottom:189.878667pt;}
.y2d{bottom:196.549333pt;}
.y100{bottom:197.096000pt;}
.yd4{bottom:197.170667pt;}
.y4e{bottom:198.854667pt;}
.y1ad{bottom:199.658667pt;}
.yb3{bottom:200.846667pt;}
.y177{bottom:203.564000pt;}
.y83{bottom:203.826667pt;}
.yff{bottom:208.386667pt;}
.y12c{bottom:211.492000pt;}
.y2c{bottom:211.825333pt;}
.yfe{bottom:212.372000pt;}
.y4d{bottom:214.130667pt;}
.y155{bottom:214.797333pt;}
.y1ac{bottom:214.934667pt;}
.y188{bottom:216.122667pt;}
.y82{bottom:217.774667pt;}
.yd3{bottom:224.372000pt;}
.y154{bottom:226.414667pt;}
.y12b{bottom:226.768000pt;}
.y2b{bottom:227.101333pt;}
.yfd{bottom:227.648000pt;}
.y4c{bottom:229.406667pt;}
.y153{bottom:230.073333pt;}
.y1ab{bottom:230.210667pt;}
.y187{bottom:231.398667pt;}
.yb2{bottom:235.020000pt;}
.yd2{bottom:239.648000pt;}
.y12a{bottom:242.044000pt;}
.y2a{bottom:242.377333pt;}
.yfc{bottom:242.924000pt;}
.y4b{bottom:244.682667pt;}
.y152{bottom:245.349333pt;}
.y1aa{bottom:245.486667pt;}
.y186{bottom:246.674667pt;}
.yb1{bottom:248.968000pt;}
.y176{bottom:249.996000pt;}
.yd1{bottom:254.924000pt;}
.y129{bottom:257.320000pt;}
.y29{bottom:257.653333pt;}
.yfb{bottom:258.200000pt;}
.y4a{bottom:259.958667pt;}
.y151{bottom:260.625333pt;}
.y1a9{bottom:260.762667pt;}
.y185{bottom:261.950667pt;}
.y175{bottom:265.272000pt;}
.y81{bottom:265.604000pt;}
.yd0{bottom:270.200000pt;}
.y128{bottom:272.597333pt;}
.y28{bottom:272.929333pt;}
.yfa{bottom:273.476000pt;}
.y49{bottom:275.234667pt;}
.y150{bottom:275.901333pt;}
.y1a8{bottom:276.038667pt;}
.y184{bottom:277.226667pt;}
.y174{bottom:280.548000pt;}
.y80{bottom:280.880000pt;}
.y127{bottom:287.873333pt;}
.y27{bottom:288.205333pt;}
.y48{bottom:290.510667pt;}
.y14f{bottom:291.178667pt;}
.y1a7{bottom:291.314667pt;}
.y183{bottom:292.502667pt;}
.yb0{bottom:292.728000pt;}
.y173{bottom:295.824000pt;}
.y7f{bottom:296.156000pt;}
.ycf{bottom:297.076000pt;}
.yf9{bottom:300.052000pt;}
.y126{bottom:303.149333pt;}
.y26{bottom:303.481333pt;}
.y47{bottom:305.786667pt;}
.y1a6{bottom:306.590667pt;}
.y182{bottom:307.778667pt;}
.yaf{bottom:308.004000pt;}
.y172{bottom:311.100000pt;}
.y7e{bottom:311.432000pt;}
.yce{bottom:312.352000pt;}
.yf8{bottom:315.329333pt;}
.y125{bottom:318.425333pt;}
.y25{bottom:318.757333pt;}
.y46{bottom:321.062667pt;}
.y181{bottom:323.054667pt;}
.yae{bottom:323.280000pt;}
.y14e{bottom:326.126667pt;}
.y171{bottom:326.376000pt;}
.y7d{bottom:326.708000pt;}
.ycd{bottom:327.628000pt;}
.yf7{bottom:330.605333pt;}
.y124{bottom:333.701333pt;}
.y24{bottom:334.033333pt;}
.y45{bottom:336.338667pt;}
.y180{bottom:338.330667pt;}
.yad{bottom:338.556000pt;}
.y14d{bottom:340.074667pt;}
.y170{bottom:341.652000pt;}
.y1a5{bottom:341.918667pt;}
.y7c{bottom:341.984000pt;}
.ycc{bottom:342.904000pt;}
.yf6{bottom:345.881333pt;}
.y123{bottom:348.977333pt;}
.y23{bottom:349.309333pt;}
.y44{bottom:351.614667pt;}
.y17f{bottom:353.606667pt;}
.yac{bottom:353.832000pt;}
.y1a4{bottom:355.865333pt;}
.y16f{bottom:356.928000pt;}
.y7b{bottom:357.260000pt;}
.ycb{bottom:358.180000pt;}
.yf5{bottom:361.157333pt;}
.y122{bottom:364.253333pt;}
.y22{bottom:364.585333pt;}
.y43{bottom:366.890667pt;}
.y17e{bottom:368.884000pt;}
.yab{bottom:369.108000pt;}
.y16e{bottom:372.204000pt;}
.y7a{bottom:372.536000pt;}
.yca{bottom:373.456000pt;}
.yf4{bottom:376.433333pt;}
.y121{bottom:379.529333pt;}
.y21{bottom:379.861333pt;}
.y42{bottom:382.166667pt;}
.y17d{bottom:384.160000pt;}
.yaa{bottom:384.384000pt;}
.y16d{bottom:387.480000pt;}
.y79{bottom:387.812000pt;}
.y14c{bottom:388.373333pt;}
.yc9{bottom:388.732000pt;}
.y20{bottom:395.137333pt;}
.y41{bottom:397.442667pt;}
.y17c{bottom:399.436000pt;}
.ya9{bottom:399.660000pt;}
.y78{bottom:403.088000pt;}
.y14b{bottom:403.649333pt;}
.y120{bottom:405.450667pt;}
.y1a3{bottom:406.170667pt;}
.yf3{bottom:410.830667pt;}
.y40{bottom:412.718667pt;}
.ya8{bottom:414.936000pt;}
.y77{bottom:418.364000pt;}
.y14a{bottom:418.925333pt;}
.y11f{bottom:420.726667pt;}
.y1a2{bottom:421.446667pt;}
.y16c{bottom:422.077333pt;}
.yc8{bottom:423.230667pt;}
.yf2{bottom:424.778667pt;}
.y3f{bottom:427.994667pt;}
.y1f{bottom:429.312000pt;}
.ya7{bottom:430.212000pt;}
.y76{bottom:433.640000pt;}
.y17b{bottom:434.085333pt;}
.y149{bottom:434.201333pt;}
.y11e{bottom:436.002667pt;}
.y16b{bottom:436.025333pt;}
.y1a1{bottom:436.722667pt;}
.yc7{bottom:437.178667pt;}
.y1e{bottom:443.258667pt;}
.y3e{bottom:443.270667pt;}
.ya6{bottom:445.488000pt;}
.y17a{bottom:448.033333pt;}
.y75{bottom:448.916000pt;}
.y16a{bottom:449.973333pt;}
.y1a0{bottom:451.998667pt;}
.y3d{bottom:458.546667pt;}
.y148{bottom:459.588000pt;}
.ya5{bottom:460.765333pt;}
.y11c{bottom:461.841333pt;}
.y74{bottom:464.192000pt;}
.y19f{bottom:467.274667pt;}
.yf1{bottom:470.154667pt;}
.y11d{bottom:470.953333pt;}
.y3c{bottom:473.822667pt;}
.ya4{bottom:476.041333pt;}
.y147{bottom:477.686667pt;}
.y73{bottom:479.469333pt;}
.y11b{bottom:479.938667pt;}
.y19e{bottom:482.550667pt;}
.yc6{bottom:483.084000pt;}
.yf0{bottom:485.430667pt;}
.y1d{bottom:487.138667pt;}
.y3b{bottom:489.098667pt;}
.ya3{bottom:491.317333pt;}
.y72{bottom:494.745333pt;}
.y169{bottom:496.405333pt;}
.y19d{bottom:497.826667pt;}
.yc5{bottom:498.360000pt;}
.yef{bottom:500.706667pt;}
.y1c{bottom:502.414667pt;}
.y3a{bottom:504.376000pt;}
.y146{bottom:506.394667pt;}
.ya2{bottom:506.593333pt;}
.y11a{bottom:508.317333pt;}
.y71{bottom:510.021333pt;}
.y168{bottom:511.681333pt;}
.y19c{bottom:513.102667pt;}
.yc4{bottom:513.636000pt;}
.yee{bottom:515.982667pt;}
.y1b{bottom:517.690667pt;}
.y39{bottom:519.652000pt;}
.y145{bottom:521.670667pt;}
.ya1{bottom:521.869333pt;}
.y119{bottom:523.593333pt;}
.y70{bottom:525.297333pt;}
.y167{bottom:526.957333pt;}
.y19b{bottom:528.378667pt;}
.yc3{bottom:528.912000pt;}
.yed{bottom:531.258667pt;}
.y1a{bottom:532.966667pt;}
.y38{bottom:534.928000pt;}
.y144{bottom:536.946667pt;}
.ya0{bottom:537.145333pt;}
.y118{bottom:538.869333pt;}
.y6f{bottom:540.573333pt;}
.y166{bottom:542.233333pt;}
.y19a{bottom:543.654667pt;}
.yc2{bottom:544.188000pt;}
.yec{bottom:546.534667pt;}
.y19{bottom:548.242667pt;}
.y37{bottom:550.204000pt;}
.y143{bottom:552.222667pt;}
.y9f{bottom:552.421333pt;}
.y117{bottom:554.146667pt;}
.y6e{bottom:555.849333pt;}
.y165{bottom:557.509333pt;}
.y199{bottom:558.930667pt;}
.yc1{bottom:559.464000pt;}
.yeb{bottom:561.810667pt;}
.y18{bottom:563.518667pt;}
.y36{bottom:565.480000pt;}
.y142{bottom:567.498667pt;}
.y9e{bottom:567.697333pt;}
.y116{bottom:569.422667pt;}
.y6d{bottom:571.125333pt;}
.y164{bottom:572.785333pt;}
.y198{bottom:574.206667pt;}
.yc0{bottom:574.740000pt;}
.yea{bottom:577.086667pt;}
.y17{bottom:578.794667pt;}
.y35{bottom:580.756000pt;}
.y141{bottom:582.774667pt;}
.y9d{bottom:582.973333pt;}
.y6c{bottom:586.401333pt;}
.y163{bottom:588.061333pt;}
.y197{bottom:589.482667pt;}
.ye9{bottom:592.362667pt;}
.y1bf{bottom:594.054667pt;}
.y16{bottom:594.070667pt;}
.y115{bottom:595.338667pt;}
.y34{bottom:596.032000pt;}
.y140{bottom:598.050667pt;}
.y9c{bottom:598.249333pt;}
.y6b{bottom:601.677333pt;}
.y162{bottom:603.337333pt;}
.y196{bottom:604.758667pt;}
.ye8{bottom:607.638667pt;}
.ybf{bottom:609.237333pt;}
.y1be{bottom:609.330667pt;}
.y15{bottom:609.346667pt;}
.y114{bottom:610.614667pt;}
.y33{bottom:611.308000pt;}
.y13f{bottom:613.328000pt;}
.y9b{bottom:613.525333pt;}
.y6a{bottom:616.953333pt;}
.y161{bottom:618.613333pt;}
.y195{bottom:620.034667pt;}
.ybe{bottom:623.185333pt;}
.y1bd{bottom:624.606667pt;}
.y14{bottom:624.622667pt;}
.y113{bottom:625.890667pt;}
.y32{bottom:626.584000pt;}
.y13e{bottom:628.604000pt;}
.y69{bottom:632.229333pt;}
.y160{bottom:633.889333pt;}
.ye7{bottom:635.245333pt;}
.y194{bottom:635.310667pt;}
.y99{bottom:636.930667pt;}
.ybd{bottom:637.133333pt;}
.y1bc{bottom:639.882667pt;}
.y112{bottom:641.166667pt;}
.y13d{bottom:643.880000pt;}
.ye6{bottom:644.357333pt;}
.y68{bottom:647.505333pt;}
.y15f{bottom:649.165333pt;}
.y193{bottom:650.588000pt;}
.y9a{bottom:652.805333pt;}
.y1bb{bottom:655.158667pt;}
.y13{bottom:658.796000pt;}
.y13c{bottom:659.156000pt;}
.y67{bottom:662.781333pt;}
.y15e{bottom:664.441333pt;}
.y98{bottom:665.424000pt;}
.y1ba{bottom:670.434667pt;}
.y12{bottom:672.744000pt;}
.y13b{bottom:674.432000pt;}
.y111{bottom:675.345333pt;}
.y66{bottom:678.057333pt;}
.y15d{bottom:679.717333pt;}
.ye5{bottom:680.973333pt;}
.y97{bottom:681.485333pt;}
.ybc{bottom:683.038667pt;}
.y1b9{bottom:685.710667pt;}
.y192{bottom:685.914667pt;}
.y11{bottom:686.692000pt;}
.y110{bottom:689.293333pt;}
.y13a{bottom:689.708000pt;}
.y65{bottom:693.333333pt;}
.y15c{bottom:694.993333pt;}
.ye4{bottom:696.249333pt;}
.y96{bottom:696.761333pt;}
.y179{bottom:697.430667pt;}
.ybb{bottom:698.314667pt;}
.y191{bottom:699.862667pt;}
.y1b8{bottom:700.986667pt;}
.y1d2{bottom:710.104000pt;}
.ye3{bottom:711.525333pt;}
.y95{bottom:712.037333pt;}
.yba{bottom:713.590667pt;}
.y1b7{bottom:716.262667pt;}
.y1d1{bottom:724.050667pt;}
.y1cf{bottom:724.052000pt;}
.y139{bottom:724.656000pt;}
.ye2{bottom:726.801333pt;}
.y94{bottom:727.313333pt;}
.y64{bottom:728.193333pt;}
.y10{bottom:728.202667pt;}
.yb9{bottom:728.866667pt;}
.y15b{bottom:729.590667pt;}
.y1b6{bottom:731.538667pt;}
.y10f{bottom:733.502667pt;}
.y1ce{bottom:737.998667pt;}
.y138{bottom:738.604000pt;}
.ye1{bottom:742.077333pt;}
.y63{bottom:742.141333pt;}
.yf{bottom:742.150667pt;}
.y93{bottom:742.589333pt;}
.y15a{bottom:743.538667pt;}
.yb8{bottom:744.142667pt;}
.y1b5{bottom:746.814667pt;}
.y10e{bottom:748.778667pt;}
.y190{bottom:750.166667pt;}
.y1cd{bottom:751.946667pt;}
.ye{bottom:756.097333pt;}
.ye0{bottom:757.353333pt;}
.y92{bottom:757.865333pt;}
.yb7{bottom:759.418667pt;}
.y1b4{bottom:762.090667pt;}
.y10d{bottom:764.054667pt;}
.y18f{bottom:765.442667pt;}
.y1cc{bottom:765.894667pt;}
.yd{bottom:770.045333pt;}
.ydf{bottom:772.629333pt;}
.y91{bottom:773.141333pt;}
.yb6{bottom:774.694667pt;}
.y10c{bottom:779.330667pt;}
.y1cb{bottom:779.842667pt;}
.y18e{bottom:780.718667pt;}
.yc{bottom:783.993333pt;}
.y137{bottom:786.902667pt;}
.yde{bottom:787.905333pt;}
.y90{bottom:788.417333pt;}
.y62{bottom:789.970667pt;}
.y1ca{bottom:793.789333pt;}
.y10b{bottom:794.606667pt;}
.y18d{bottom:795.994667pt;}
.y1b3{bottom:796.264000pt;}
.yb{bottom:797.941333pt;}
.y136{bottom:802.178667pt;}
.ydd{bottom:803.181333pt;}
.y8f{bottom:803.693333pt;}
.y61{bottom:805.246667pt;}
.y1c9{bottom:807.737333pt;}
.y10a{bottom:809.882667pt;}
.y18c{bottom:811.270667pt;}
.ya{bottom:811.889333pt;}
.y135{bottom:817.454667pt;}
.ydc{bottom:818.457333pt;}
.y8e{bottom:818.969333pt;}
.y60{bottom:820.522667pt;}
.y1c8{bottom:821.685333pt;}
.y109{bottom:825.158667pt;}
.y9{bottom:825.836000pt;}
.y18b{bottom:826.548000pt;}
.y134{bottom:832.730667pt;}
.ydb{bottom:833.734667pt;}
.y8d{bottom:834.245333pt;}
.y1c7{bottom:835.633333pt;}
.y5f{bottom:835.798667pt;}
.y8{bottom:839.784000pt;}
.y108{bottom:840.434667pt;}
.y1b2{bottom:840.448000pt;}
.y18a{bottom:841.824000pt;}
.y133{bottom:848.006667pt;}
.y8c{bottom:849.521333pt;}
.y1d0{bottom:849.580000pt;}
.y1c6{bottom:849.581333pt;}
.y5e{bottom:851.074667pt;}
.y7{bottom:853.732000pt;}
.y107{bottom:855.710667pt;}
.y1b1{bottom:855.724000pt;}
.y132{bottom:863.282667pt;}
.y1c5{bottom:863.528000pt;}
.y8b{bottom:864.797333pt;}
.y5d{bottom:866.350667pt;}
.y6{bottom:867.680000pt;}
.yda{bottom:868.132000pt;}
.y106{bottom:870.986667pt;}
.y1b0{bottom:871.000000pt;}
.y189{bottom:877.150667pt;}
.y1c4{bottom:877.476000pt;}
.y131{bottom:878.558667pt;}
.y5c{bottom:881.626667pt;}
.yd9{bottom:882.080000pt;}
.y105{bottom:886.262667pt;}
.y1af{bottom:886.276000pt;}
.y5{bottom:890.261333pt;}
.y1c3{bottom:891.424000pt;}
.y130{bottom:893.834667pt;}
.y5b{bottom:896.902667pt;}
.y8a{bottom:898.972000pt;}
.y104{bottom:901.538667pt;}
.y1c2{bottom:905.372000pt;}
.y12f{bottom:909.110667pt;}
.y4{bottom:909.288000pt;}
.y5a{bottom:912.180000pt;}
.y103{bottom:916.814667pt;}
.y1c1{bottom:919.318667pt;}
.y3{bottom:922.806667pt;}
.y12e{bottom:924.386667pt;}
.y59{bottom:927.456000pt;}
.y1c0{bottom:933.266667pt;}
.y58{bottom:942.732000pt;}
.y2{bottom:954.686667pt;}
.y57{bottom:958.008000pt;}
.y12d{bottom:959.336000pt;}
.y1{bottom:973.284000pt;}
.y56{bottom:1007.821333pt;}
.h7{height:0.000000pt;}
.h6{height:14.922402pt;}
.h3{height:21.200555pt;}
.h8{height:27.895200pt;}
.h4{height:35.865600pt;}
.h5{height:39.850400pt;}
.hc{height:40.740707pt;}
.h10{height:40.746041pt;}
.h12{height:43.402041pt;}
.h1{height:44.632747pt;}
.h2{height:45.799037pt;}
.h9{height:47.175200pt;}
.h11{height:54.485067pt;}
.hd{height:54.609867pt;}
.he{height:55.791733pt;}
.hb{height:76.298400pt;}
.ha{height:76.687374pt;}
.hf{height:83.121867pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:72.000000pt;}
.xe{left:73.770667pt;}
.x1c{left:74.854667pt;}
.x38{left:76.920000pt;}
.x40{left:78.144000pt;}
.x29{left:79.360000pt;}
.x1{left:82.022667pt;}
.xb{left:85.284000pt;}
.x8{left:86.217333pt;}
.x15{left:88.541333pt;}
.x20{left:89.564000pt;}
.x14{left:91.992000pt;}
.x2b{left:93.254667pt;}
.x41{left:96.426667pt;}
.x1e{left:100.457333pt;}
.x21{left:105.209333pt;}
.x16{left:109.738667pt;}
.x9{left:114.425333pt;}
.x3a{left:121.238667pt;}
.xd{left:129.345333pt;}
.x7{left:145.060000pt;}
.x2c{left:146.122667pt;}
.x2a{left:148.872000pt;}
.x1f{left:153.656000pt;}
.x6{left:157.346667pt;}
.x2d{left:164.141333pt;}
.x3d{left:166.226667pt;}
.x3e{left:169.988000pt;}
.xa{left:188.094667pt;}
.x2e{left:201.150667pt;}
.x1d{left:203.845333pt;}
.x2{left:211.738667pt;}
.x39{left:213.104000pt;}
.x2f{left:253.705333pt;}
.x4{left:280.056000pt;}
.x3{left:319.921333pt;}
.x5{left:334.338667pt;}
.x12{left:422.685333pt;}
.x17{left:428.381333pt;}
.x34{left:430.460000pt;}
.x11{left:435.968000pt;}
.x30{left:437.300000pt;}
.x3f{left:440.249333pt;}
.x25{left:442.952000pt;}
.x27{left:443.940000pt;}
.x10{left:445.066667pt;}
.x42{left:447.112000pt;}
.x3b{left:450.164000pt;}
.xf{left:455.380000pt;}
.x1b{left:482.129333pt;}
.x32{left:485.053333pt;}
.x33{left:492.137333pt;}
.x37{left:497.782667pt;}
.x3c{left:508.162667pt;}
.x26{left:515.412000pt;}
.x22{left:520.646667pt;}
.x36{left:525.085333pt;}
.x31{left:526.280000pt;}
.x19{left:529.004000pt;}
.x18{left:531.797333pt;}
.x23{left:535.776000pt;}
.x1a{left:555.992000pt;}
.x35{left:561.025333pt;}
.x28{left:587.613333pt;}
.x24{left:606.357333pt;}
.x13{left:742.817333pt;}
}




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