
    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_824a82c8abb477f31a8ecb30.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752000;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_3c0198176f752b97665e0daa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_e17ba3f6bb953322613272b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a4fbf4d0702b9757e867f141.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;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_94f0837a47ae2cb957649ce6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.950000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d75a22852a00cbaca5f72894.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.981000;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_53e9ac571510a554a6d27445.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947000;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_be253dd23bae988bd039d1bc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7d76a187da2e2b795375ce11.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932000;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_0edb8e15145ac24f8a04fa7b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_d669513c0a7fe5ee192dc7ad.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.929286;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_af3d349b3c866592cdc262d9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.859000;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_f4717d80db510febdf8e08c8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.722111;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_c28c2b12f49e5e46cf844e7f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.723000;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;}
.m1{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);}
.m2{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);}
.v6{vertical-align:-25.650000px;}
.v1{vertical-align:-18.900000px;}
.v5{vertical-align:-16.200000px;}
.v8{vertical-align:-2.184000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.394000px;}
.v9{vertical-align:17.571600px;}
.v2{vertical-align:18.900000px;}
.v3{vertical-align:21.600000px;}
.v7{vertical-align:25.146600px;}
.ls13{letter-spacing:-5.880000px;}
.ls10{letter-spacing:-5.529000px;}
.ls2d{letter-spacing:-5.460000px;}
.ls12{letter-spacing:-3.150000px;}
.ls2b{letter-spacing:-2.925000px;}
.ls2c{letter-spacing:-2.145000px;}
.ls11{letter-spacing:-2.100000px;}
.ls29{letter-spacing:-1.950000px;}
.ls2a{letter-spacing:-1.365000px;}
.ls8{letter-spacing:-1.140000px;}
.ls18{letter-spacing:-1.083000px;}
.ls17{letter-spacing:-1.026000px;}
.ls6{letter-spacing:-0.855000px;}
.ls2f{letter-spacing:-0.840000px;}
.ls7{letter-spacing:-0.570000px;}
.ls4{letter-spacing:-0.420000px;}
.ls5{letter-spacing:-0.285000px;}
.ls31{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.057000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000120px;}
.ls15{letter-spacing:0.004800px;}
.ls30{letter-spacing:0.210000px;}
.ls0{letter-spacing:0.480000px;}
.ls2e{letter-spacing:0.570000px;}
.ls14{letter-spacing:1.054500px;}
.ls2{letter-spacing:14.400000px;}
.ls1b{letter-spacing:28.158000px;}
.lsf{letter-spacing:151.042200px;}
.lsd{letter-spacing:171.035400px;}
.lsc{letter-spacing:178.890000px;}
.ls9{letter-spacing:261.127680px;}
.lsa{letter-spacing:300.808200px;}
.lsb{letter-spacing:330.086400px;}
.ls26{letter-spacing:356.659200px;}
.ls28{letter-spacing:478.804560px;}
.ls25{letter-spacing:524.864160px;}
.ls24{letter-spacing:532.547760px;}
.ls1e{letter-spacing:538.827960px;}
.ls1f{letter-spacing:575.679000px;}
.ls20{letter-spacing:594.438000px;}
.ls27{letter-spacing:681.056760px;}
.ls1d{letter-spacing:682.267800px;}
.ls21{letter-spacing:684.291000px;}
.ls1a{letter-spacing:770.072400px;}
.ls19{letter-spacing:774.966600px;}
.ls1c{letter-spacing:775.240800px;}
.lse{letter-spacing:832.027080px;}
.ls22{letter-spacing:832.705200px;}
.ls23{letter-spacing:905.382000px;}
.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;}
}
.ws2{word-spacing:-28.602000px;}
.ws66{word-spacing:-16.983000px;}
.wse5{word-spacing:-15.984000px;}
.ws68{word-spacing:-14.107500px;}
.wsbb{word-spacing:-13.509000px;}
.ws24{word-spacing:-13.053000px;}
.ws67{word-spacing:-12.996000px;}
.ws23{word-spacing:-12.939000px;}
.ws6{word-spacing:-12.483000px;}
.ws4{word-spacing:-12.198000px;}
.ws27{word-spacing:-11.676000px;}
.ws5{word-spacing:-11.628000px;}
.ws7{word-spacing:-11.343000px;}
.ws0{word-spacing:-10.896000px;}
.wsa3{word-spacing:-10.842000px;}
.ws115{word-spacing:-10.752000px;}
.ws26{word-spacing:-9.576000px;}
.wsa8{word-spacing:-9.477000px;}
.wsa2{word-spacing:-8.892000px;}
.ws65{word-spacing:-8.539740px;}
.ws3{word-spacing:-7.032960px;}
.ws2a{word-spacing:-6.605280px;}
.ws1{word-spacing:-6.153840px;}
.ws8f{word-spacing:-4.731000px;}
.wseb{word-spacing:-3.876000px;}
.ws38{word-spacing:-3.825000px;}
.wsf5{word-spacing:-3.819000px;}
.wsd4{word-spacing:-3.648000px;}
.wse6{word-spacing:-3.534000px;}
.wse2{word-spacing:-3.150000px;}
.ws104{word-spacing:-3.078000px;}
.wsb6{word-spacing:-2.925000px;}
.ws69{word-spacing:-2.907000px;}
.ws40{word-spacing:-2.679000px;}
.ws4e{word-spacing:-2.508000px;}
.ws99{word-spacing:-2.394000px;}
.ws42{word-spacing:-2.337000px;}
.ws59{word-spacing:-2.280000px;}
.ws10d{word-spacing:-2.256000px;}
.wsc3{word-spacing:-2.223000px;}
.wsc2{word-spacing:-2.166000px;}
.wsf9{word-spacing:-2.109000px;}
.ws55{word-spacing:-2.052000px;}
.ws81{word-spacing:-1.995000px;}
.ws124{word-spacing:-1.968000px;}
.ws144{word-spacing:-1.890000px;}
.ws9b{word-spacing:-1.881000px;}
.wse7{word-spacing:-1.824000px;}
.ws13e{word-spacing:-1.806000px;}
.ws15{word-spacing:-1.767000px;}
.ws10f{word-spacing:-1.680000px;}
.ws19{word-spacing:-1.653000px;}
.ws10e{word-spacing:-1.632000px;}
.ws11d{word-spacing:-1.584000px;}
.ws77{word-spacing:-1.539000px;}
.ws41{word-spacing:-1.425000px;}
.ws106{word-spacing:-1.311000px;}
.ws12b{word-spacing:-1.302000px;}
.ws14{word-spacing:-1.197000px;}
.ws89{word-spacing:-1.140000px;}
.wscb{word-spacing:-1.083000px;}
.ws5f{word-spacing:-1.050000px;}
.ws13f{word-spacing:-1.008000px;}
.wsb8{word-spacing:-0.975000px;}
.ws8c{word-spacing:-0.969000px;}
.wsc{word-spacing:-0.966000px;}
.ws136{word-spacing:-0.924000px;}
.ws3e{word-spacing:-0.912000px;}
.ws2c{word-spacing:-0.855000px;}
.ws9c{word-spacing:-0.798000px;}
.ws8b{word-spacing:-0.741000px;}
.ws12e{word-spacing:-0.714000px;}
.ws11f{word-spacing:-0.672000px;}
.wsf1{word-spacing:-0.627000px;}
.wsda{word-spacing:-0.570000px;}
.wsd3{word-spacing:-0.513000px;}
.ws12a{word-spacing:-0.504000px;}
.ws148{word-spacing:-0.462000px;}
.ws14f{word-spacing:-0.378000px;}
.wsf{word-spacing:-0.336000px;}
.ws130{word-spacing:-0.294000px;}
.ws1a{word-spacing:-0.285000px;}
.ws13a{word-spacing:-0.210000px;}
.ws34{word-spacing:-0.171000px;}
.ws145{word-spacing:-0.168000px;}
.ws49{word-spacing:-0.114000px;}
.ws7f{word-spacing:-0.057000px;}
.ws10{word-spacing:-0.042000px;}
.wsab{word-spacing:-0.039000px;}
.ws8{word-spacing:0.000000px;}
.wsb3{word-spacing:0.078000px;}
.ws29{word-spacing:0.084000px;}
.wsfb{word-spacing:0.114000px;}
.ws57{word-spacing:0.171000px;}
.ws150{word-spacing:0.210000px;}
.ws122{word-spacing:0.240000px;}
.ws20{word-spacing:0.285000px;}
.ws10b{word-spacing:0.336000px;}
.ws16{word-spacing:0.342000px;}
.ws120{word-spacing:0.384000px;}
.ws101{word-spacing:0.399000px;}
.ws95{word-spacing:0.456000px;}
.wsfd{word-spacing:0.513000px;}
.wsc4{word-spacing:0.570000px;}
.ws10a{word-spacing:0.624000px;}
.ws31{word-spacing:0.627000px;}
.ws12f{word-spacing:0.630000px;}
.ws6b{word-spacing:0.684000px;}
.ws58{word-spacing:0.741000px;}
.wsca{word-spacing:0.798000px;}
.wse3{word-spacing:0.840000px;}
.ws5a{word-spacing:0.855000px;}
.ws129{word-spacing:0.882000px;}
.wse8{word-spacing:0.912000px;}
.ws4f{word-spacing:0.969000px;}
.ws117{word-spacing:1.008000px;}
.ws80{word-spacing:1.026000px;}
.ws36{word-spacing:1.083000px;}
.ws3f{word-spacing:1.254000px;}
.ws128{word-spacing:1.302000px;}
.ws76{word-spacing:1.311000px;}
.ws123{word-spacing:1.440000px;}
.ws14e{word-spacing:1.470000px;}
.ws6e{word-spacing:1.482000px;}
.ws11e{word-spacing:1.488000px;}
.ws45{word-spacing:1.596000px;}
.wsba{word-spacing:1.656000px;}
.ws33{word-spacing:1.710000px;}
.ws134{word-spacing:1.764000px;}
.wse1{word-spacing:1.767000px;}
.ws56{word-spacing:1.824000px;}
.ws142{word-spacing:1.848000px;}
.wsef{word-spacing:1.881000px;}
.ws12c{word-spacing:1.932000px;}
.wsf0{word-spacing:1.938000px;}
.ws118{word-spacing:1.968000px;}
.ws140{word-spacing:1.974000px;}
.wsc7{word-spacing:1.995000px;}
.ws87{word-spacing:2.052000px;}
.ws5d{word-spacing:2.100000px;}
.wsac{word-spacing:2.106000px;}
.ws21{word-spacing:2.109000px;}
.ws126{word-spacing:2.142000px;}
.ws18{word-spacing:2.166000px;}
.ws135{word-spacing:2.184000px;}
.ws11a{word-spacing:2.256000px;}
.ws11b{word-spacing:2.352000px;}
.ws100{word-spacing:2.394000px;}
.ws141{word-spacing:2.436000px;}
.ws10c{word-spacing:2.448000px;}
.ws52{word-spacing:2.451000px;}
.wsdf{word-spacing:2.565000px;}
.ws78{word-spacing:2.622000px;}
.ws107{word-spacing:2.736000px;}
.ws62{word-spacing:2.772000px;}
.wsed{word-spacing:2.793000px;}
.wsd2{word-spacing:2.850000px;}
.ws13c{word-spacing:2.856000px;}
.wsb9{word-spacing:2.880000px;}
.ws137{word-spacing:2.898000px;}
.ws17{word-spacing:2.907000px;}
.ws9a{word-spacing:2.964000px;}
.wsf3{word-spacing:3.021000px;}
.ws88{word-spacing:3.135000px;}
.ws5e{word-spacing:3.150000px;}
.ws8d{word-spacing:3.306000px;}
.ws90{word-spacing:3.363000px;}
.ws82{word-spacing:3.420000px;}
.ws51{word-spacing:3.477000px;}
.ws125{word-spacing:3.486000px;}
.ws13{word-spacing:3.591000px;}
.wsf4{word-spacing:3.705000px;}
.ws96{word-spacing:3.762000px;}
.ws63{word-spacing:3.780000px;}
.ws94{word-spacing:3.819000px;}
.ws116{word-spacing:3.840000px;}
.ws83{word-spacing:3.876000px;}
.ws110{word-spacing:3.888000px;}
.ws12d{word-spacing:3.906000px;}
.ws70{word-spacing:3.933000px;}
.wscd{word-spacing:3.990000px;}
.ws37{word-spacing:4.047000px;}
.ws35{word-spacing:4.104000px;}
.ws139{word-spacing:4.158000px;}
.ws75{word-spacing:4.218000px;}
.ws11c{word-spacing:4.272000px;}
.ws9f{word-spacing:4.275000px;}
.wse9{word-spacing:4.332000px;}
.ws85{word-spacing:4.389000px;}
.ws2b{word-spacing:4.446000px;}
.ws5b{word-spacing:4.503000px;}
.ws6c{word-spacing:4.560000px;}
.ws147{word-spacing:4.620000px;}
.wsf6{word-spacing:4.674000px;}
.ws7b{word-spacing:4.845000px;}
.wsce{word-spacing:4.902000px;}
.ws1d{word-spacing:4.959000px;}
.ws3a{word-spacing:5.073000px;}
.ws32{word-spacing:5.130000px;}
.ws7e{word-spacing:5.187000px;}
.wsd5{word-spacing:5.244000px;}
.ws12{word-spacing:5.301000px;}
.wscc{word-spacing:5.358000px;}
.ws71{word-spacing:5.415000px;}
.ws4c{word-spacing:5.472000px;}
.ws4b{word-spacing:5.529000px;}
.ws105{word-spacing:5.586000px;}
.ws14c{word-spacing:5.670000px;}
.wse0{word-spacing:5.700000px;}
.ws4d{word-spacing:5.757000px;}
.ws48{word-spacing:5.814000px;}
.wsf2{word-spacing:5.871000px;}
.ws50{word-spacing:5.985000px;}
.ws30{word-spacing:6.042000px;}
.ws121{word-spacing:6.048000px;}
.ws3b{word-spacing:6.099000px;}
.wsf8{word-spacing:6.156000px;}
.ws146{word-spacing:6.174000px;}
.ws8e{word-spacing:6.213000px;}
.ws64{word-spacing:6.228000px;}
.ws14b{word-spacing:6.258000px;}
.wsd7{word-spacing:6.270000px;}
.wsdb{word-spacing:6.327000px;}
.ws11{word-spacing:6.384000px;}
.ws44{word-spacing:6.441000px;}
.wsd6{word-spacing:6.498000px;}
.wsdc{word-spacing:6.555000px;}
.wsee{word-spacing:6.612000px;}
.ws14d{word-spacing:6.720000px;}
.wsd8{word-spacing:6.783000px;}
.wsea{word-spacing:6.840000px;}
.ws7c{word-spacing:6.897000px;}
.ws39{word-spacing:6.954000px;}
.wsc6{word-spacing:7.011000px;}
.wsfc{word-spacing:7.068000px;}
.wsff{word-spacing:7.125000px;}
.wsdd{word-spacing:7.296000px;}
.ws119{word-spacing:7.344000px;}
.ws149{word-spacing:7.392000px;}
.ws9e{word-spacing:7.467000px;}
.ws14a{word-spacing:7.602000px;}
.ws73{word-spacing:7.695000px;}
.wsec{word-spacing:7.752000px;}
.ws13b{word-spacing:7.770000px;}
.ws53{word-spacing:7.809000px;}
.wsd{word-spacing:7.812000px;}
.ws72{word-spacing:7.980000px;}
.ws47{word-spacing:8.037000px;}
.ws2e{word-spacing:8.094000px;}
.ws102{word-spacing:8.151000px;}
.wsb{word-spacing:8.274000px;}
.ws13d{word-spacing:8.358000px;}
.ws3c{word-spacing:8.436000px;}
.ws98{word-spacing:8.550000px;}
.wsf7{word-spacing:8.721000px;}
.ws143{word-spacing:8.736000px;}
.wsd9{word-spacing:8.949000px;}
.ws46{word-spacing:9.234000px;}
.ws1f{word-spacing:9.405000px;}
.ws132{word-spacing:9.450000px;}
.ws43{word-spacing:9.519000px;}
.wsfa{word-spacing:9.633000px;}
.ws138{word-spacing:9.660000px;}
.ws7a{word-spacing:9.690000px;}
.ws108{word-spacing:9.918000px;}
.ws2f{word-spacing:10.089000px;}
.ws4a{word-spacing:10.203000px;}
.ws1b{word-spacing:10.260000px;}
.ws111{word-spacing:10.320000px;}
.ws133{word-spacing:10.416000px;}
.ws93{word-spacing:10.659000px;}
.ws1e{word-spacing:11.001000px;}
.ws103{word-spacing:11.058000px;}
.ws91{word-spacing:11.400000px;}
.wsc8{word-spacing:11.628000px;}
.ws86{word-spacing:11.856000px;}
.ws127{word-spacing:11.970000px;}
.wsde{word-spacing:12.027000px;}
.ws8a{word-spacing:12.084000px;}
.wsc5{word-spacing:12.198000px;}
.wsd0{word-spacing:12.369000px;}
.ws54{word-spacing:12.483000px;}
.ws112{word-spacing:12.576000px;}
.wsfe{word-spacing:12.597000px;}
.ws84{word-spacing:12.654000px;}
.ws113{word-spacing:12.960000px;}
.ws1c{word-spacing:13.053000px;}
.ws9{word-spacing:13.104000px;}
.ws6f{word-spacing:13.110000px;}
.ws109{word-spacing:13.224000px;}
.ws97{word-spacing:13.281000px;}
.wsa{word-spacing:13.584000px;}
.wsc9{word-spacing:13.680000px;}
.ws22{word-spacing:13.737000px;}
.ws74{word-spacing:14.022000px;}
.wsd1{word-spacing:14.250000px;}
.wscf{word-spacing:14.535000px;}
.ws3d{word-spacing:14.592000px;}
.ws6d{word-spacing:14.820000px;}
.ws92{word-spacing:15.105000px;}
.wsa1{word-spacing:15.390000px;}
.ws2d{word-spacing:15.561000px;}
.ws131{word-spacing:16.968000px;}
.ws6a{word-spacing:17.499000px;}
.ws79{word-spacing:17.898000px;}
.wsa0{word-spacing:19.152000px;}
.ws114{word-spacing:20.736000px;}
.ws7d{word-spacing:21.318000px;}
.wsb7{word-spacing:23.478000px;}
.ws60{word-spacing:25.284000px;}
.wse4{word-spacing:27.174000px;}
.ws61{word-spacing:29.274000px;}
.ws5c{word-spacing:30.324000px;}
.ws9d{word-spacing:30.837000px;}
.wse{word-spacing:32.676000px;}
.wsbc{word-spacing:63.798000px;}
.wsc0{word-spacing:151.116000px;}
.wsc1{word-spacing:151.410000px;}
.wsbf{word-spacing:155.610000px;}
.wsbe{word-spacing:173.124000px;}
.wsbd{word-spacing:212.100000px;}
.ws28{word-spacing:261.794400px;}
.wsa7{word-spacing:422.214000px;}
.wsa6{word-spacing:489.879000px;}
.wsa4{word-spacing:494.832000px;}
.wsb1{word-spacing:513.240000px;}
.wsa5{word-spacing:520.962000px;}
.wsb5{word-spacing:531.609000px;}
.wsb4{word-spacing:536.991000px;}
.wsaa{word-spacing:539.253000px;}
.wsad{word-spacing:540.228000px;}
.wsaf{word-spacing:542.451000px;}
.wsae{word-spacing:550.095000px;}
.wsb2{word-spacing:568.542000px;}
.wsb0{word-spacing:635.193000px;}
.wsa9{word-spacing:637.416000px;}
.ws25{word-spacing:1036.392000px;}
._2{margin-left:-16.590000px;}
._0{margin-left:-13.584000px;}
._8{margin-left:-10.458000px;}
._e{margin-left:-8.928420px;}
._7{margin-left:-6.432360px;}
._f{margin-left:-4.845000px;}
._5{margin-left:-3.821520px;}
._3{margin-left:-2.226480px;}
._1{margin-left:-1.012800px;}
._6{width:1.709880px;}
._2f{width:3.013920px;}
._a{width:4.042740px;}
._11{width:5.730180px;}
._31{width:6.745920px;}
._4{width:7.824600px;}
._30{width:8.917560px;}
._10{width:10.411140px;}
._32{width:12.141120px;}
._c{width:13.168680px;}
._93{width:14.316180px;}
._d{width:16.415580px;}
._2e{width:17.558100px;}
._a8{width:19.862400px;}
._a9{width:21.105600px;}
._48{width:23.478000px;}
._9d{width:25.284000px;}
._39{width:27.183000px;}
._88{width:29.133000px;}
._1f{width:30.324000px;}
._21{width:31.374000px;}
._9{width:37.107240px;}
._b{width:45.928920px;}
._29{width:134.374440px;}
._96{width:151.410000px;}
._9c{width:168.924000px;}
._98{width:180.600000px;}
._2d{width:238.854000px;}
._97{width:245.430000px;}
._34{width:261.771240px;}
._81{width:272.550240px;}
._a6{width:285.517440px;}
._a7{width:290.557440px;}
._94{width:307.230000px;}
._35{width:320.973240px;}
._95{width:342.258000px;}
._82{width:353.631360px;}
._9b{width:370.272000px;}
._77{width:420.159480px;}
._27{width:424.803960px;}
._78{width:429.504360px;}
._63{width:437.011200px;}
._75{width:458.103000px;}
._70{width:464.930760px;}
._a5{width:472.080960px;}
._74{width:473.967000px;}
._57{width:480.918960px;}
._a1{width:486.108960px;}
._55{width:487.154640px;}
._a3{width:488.418960px;}
._a2{width:493.080960px;}
._a4{width:495.432960px;}
._53{width:496.977000px;}
._6f{width:499.075200px;}
._99{width:500.883960px;}
._66{width:503.346240px;}
._59{width:509.814960px;}
._87{width:512.067420px;}
._65{width:513.240000px;}
._41{width:520.497480px;}
._6b{width:521.744280px;}
._54{width:526.120680px;}
._5f{width:527.634480px;}
._56{width:529.107120px;}
._62{width:531.216420px;}
._3c{width:533.055480px;}
._7e{width:538.161000px;}
._52{width:544.837920px;}
._3f{width:546.198480px;}
._60{width:547.644480px;}
._69{width:551.554920px;}
._47{width:555.516000px;}
._4e{width:557.040480px;}
._51{width:561.524580px;}
._44{width:564.639360px;}
._4b{width:577.200000px;}
._58{width:581.420160px;}
._64{width:585.522480px;}
._5b{width:587.421480px;}
._a0{width:593.334480px;}
._80{width:595.314000px;}
._38{width:598.884000px;}
._5e{width:600.378480px;}
._72{width:601.458000px;}
._61{width:610.974000px;}
._5c{width:623.916360px;}
._3b{width:625.368480px;}
._8f{width:629.176080px;}
._6e{width:634.337280px;}
._3e{width:639.954480px;}
._91{width:642.486000px;}
._86{width:643.812000px;}
._28{width:651.132840px;}
._67{width:654.110280px;}
._5a{width:657.153480px;}
._6c{width:658.361280px;}
._68{width:660.585480px;}
._6d{width:662.226960px;}
._92{width:663.942000px;}
._9e{width:665.700480px;}
._5d{width:667.254480px;}
._8c{width:670.488000px;}
._6a{width:672.011280px;}
._46{width:675.399420px;}
._43{width:678.717000px;}
._4d{width:680.352360px;}
._7a{width:681.408000px;}
._7d{width:683.645520px;}
._9a{width:686.658480px;}
._7c{width:687.840360px;}
._9f{width:689.010480px;}
._1e{width:691.500120px;}
._4a{width:713.934000px;}
._8a{width:718.302000px;}
._37{width:746.460000px;}
._40{width:764.049000px;}
._8e{width:769.119000px;}
._76{width:779.963280px;}
._7b{width:781.450800px;}
._4c{width:794.042280px;}
._4f{width:798.996480px;}
._13{width:801.108480px;}
._8b{width:809.952000px;}
._20{width:823.620000px;}
._7f{width:830.934840px;}
._73{width:839.049480px;}
._79{width:843.374640px;}
._49{width:887.799000px;}
._89{width:894.669600px;}
._17{width:901.194480px;}
._50{width:902.887800px;}
._24{width:905.436480px;}
._22{width:908.632800px;}
._25{width:913.626000px;}
._71{width:922.387800px;}
._45{width:965.482800px;}
._1a{width:979.104000px;}
._1b{width:988.344000px;}
._23{width:992.475000px;}
._8d{width:995.319000px;}
._90{width:997.033800px;}
._19{width:1002.330480px;}
._1c{width:1023.498000px;}
._3d{width:1028.511480px;}
._26{width:1034.460000px;}
._42{width:1042.631640px;}
._1d{width:1046.682480px;}
._14{width:1066.464000px;}
._12{width:1078.224000px;}
._33{width:1090.287480px;}
._83{width:1096.059480px;}
._16{width:1101.534000px;}
._15{width:1112.118000px;}
._2c{width:1119.090000px;}
._18{width:1121.400000px;}
._2b{width:1128.330480px;}
._85{width:1134.236520px;}
._36{width:1143.717480px;}
._2a{width:1179.780000px;}
._84{width:1221.441000px;}
._3a{width:1258.296000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(102,102,102);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:0.600000px;}
.fsa{font-size:23.760000px;}
.fsd{font-size:25.740000px;}
.fs4{font-size:27.720000px;}
.fs6{font-size:31.680000px;}
.fs9{font-size:36.000000px;}
.fsb{font-size:37.620000px;}
.fsc{font-size:39.000000px;}
.fs3{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:66.286650px;}
.y43{bottom:66.297450px;}
.y156{bottom:103.689150px;}
.y118{bottom:106.492200px;}
.y1b1{bottom:106.500000px;}
.y20e{bottom:106.745400px;}
.y185{bottom:108.347250px;}
.ye{bottom:110.003100px;}
.y1d9{bottom:110.051400px;}
.y41{bottom:110.881800px;}
.y111{bottom:115.769400px;}
.ydf{bottom:115.871250px;}
.y155{bottom:118.689150px;}
.y7d{bottom:121.074150px;}
.y20d{bottom:121.745400px;}
.y74{bottom:121.886400px;}
.yd{bottom:123.506100px;}
.y1b0{bottom:124.876200px;}
.y184{bottom:127.841250px;}
.y1d8{bottom:129.545400px;}
.y154{bottom:129.642150px;}
.y40{bottom:130.375800px;}
.y110{bottom:135.263400px;}
.yde{bottom:135.365250px;}
.y20c{bottom:136.745400px;}
.yc{bottom:137.009100px;}
.y1af{bottom:138.379200px;}
.y7c{bottom:140.568150px;}
.y73{bottom:141.380400px;}
.y153{bottom:141.639150px;}
.y183{bottom:147.335250px;}
.y1d7{bottom:149.039400px;}
.y3f{bottom:149.869800px;}
.yb{bottom:150.512100px;}
.y20b{bottom:151.745400px;}
.y152{bottom:153.636150px;}
.y10f{bottom:154.757400px;}
.ydd{bottom:154.859250px;}
.y1ae{bottom:154.979700px;}
.y7b{bottom:160.062150px;}
.y72{bottom:160.874400px;}
.y20a{bottom:166.745400px;}
.y182{bottom:166.829250px;}
.y1ad{bottom:168.482700px;}
.ya{bottom:168.509100px;}
.y1d6{bottom:168.533400px;}
.y151{bottom:168.639150px;}
.y3e{bottom:169.363800px;}
.y10e{bottom:174.251400px;}
.ydc{bottom:174.353250px;}
.y7a{bottom:179.556150px;}
.y71{bottom:180.368400px;}
.y209{bottom:181.745400px;}
.y9{bottom:182.012100px;}
.y1ac{bottom:185.083200px;}
.y181{bottom:186.323250px;}
.y150{bottom:187.554900px;}
.y1d5{bottom:188.027400px;}
.y3d{bottom:188.857800px;}
.y10d{bottom:193.745400px;}
.ydb{bottom:193.847250px;}
.y208{bottom:196.745400px;}
.y1ab{bottom:198.586200px;}
.y79{bottom:199.050150px;}
.y70{bottom:199.862400px;}
.y8{bottom:200.009100px;}
.y14f{bottom:204.159150px;}
.y180{bottom:205.817250px;}
.y1d4{bottom:207.521400px;}
.y3c{bottom:208.351800px;}
.y10c{bottom:213.245400px;}
.yda{bottom:213.341250px;}
.y207{bottom:214.745400px;}
.y1aa{bottom:215.186700px;}
.y7{bottom:218.237100px;}
.y78{bottom:218.544150px;}
.y6f{bottom:219.356400px;}
.y14e{bottom:220.763400px;}
.y17f{bottom:225.311250px;}
.y6{bottom:227.009100px;}
.y1d3{bottom:227.015400px;}
.y3b{bottom:227.845800px;}
.y1a9{bottom:231.787200px;}
.yd9{bottom:232.835250px;}
.y14d{bottom:236.821650px;}
.y77{bottom:238.038150px;}
.y6e{bottom:238.850400px;}
.y5{bottom:240.512100px;}
.y17e{bottom:244.805250px;}
.y1d2{bottom:246.509400px;}
.y3a{bottom:247.339800px;}
.y206{bottom:247.745400px;}
.y1a8{bottom:248.387700px;}
.y10b{bottom:249.473400px;}
.yd8{bottom:252.329250px;}
.y14c{bottom:252.879900px;}
.y4{bottom:254.012100px;}
.y76{bottom:257.532150px;}
.y6d{bottom:258.350400px;}
.y205{bottom:262.745400px;}
.y17d{bottom:264.299250px;}
.y1a7{bottom:264.988200px;}
.y1d1{bottom:266.003400px;}
.y14b{bottom:268.938150px;}
.y10a{bottom:268.967400px;}
.yd7{bottom:271.823250px;}
.y75{bottom:277.026150px;}
.y204{bottom:277.745400px;}
.y1a6{bottom:281.588700px;}
.y17c{bottom:283.793250px;}
.y14a{bottom:284.996400px;}
.y1d0{bottom:285.497400px;}
.y109{bottom:288.461400px;}
.yd6{bottom:291.317250px;}
.y203{bottom:292.745400px;}
.y6c{bottom:294.488400px;}
.y39{bottom:297.585300px;}
.y1a5{bottom:298.189200px;}
.y149{bottom:301.054650px;}
.y17b{bottom:303.287250px;}
.y1cf{bottom:304.991400px;}
.y108{bottom:307.955400px;}
.y202{bottom:310.745400px;}
.yd5{bottom:310.811250px;}
.y6b{bottom:313.982400px;}
.y1a4{bottom:314.789700px;}
.y38{bottom:315.583050px;}
.y148{bottom:317.112900px;}
.y17a{bottom:322.781250px;}
.y1ce{bottom:324.485400px;}
.yad{bottom:327.401100px;}
.y107{bottom:327.449400px;}
.yd4{bottom:330.305250px;}
.y1a3{bottom:331.390200px;}
.y147{bottom:333.178650px;}
.y6a{bottom:333.476400px;}
.y37{bottom:333.580800px;}
.yac{bottom:338.354100px;}
.y179{bottom:342.275250px;}
.y1cd{bottom:343.979400px;}
.y201{bottom:344.278650px;}
.y106{bottom:346.943400px;}
.y1a2{bottom:347.990700px;}
.y146{bottom:349.771650px;}
.yd3{bottom:349.799250px;}
.y36{bottom:351.578550px;}
.y69{bottom:352.970400px;}
.yab{bottom:354.401100px;}
.y178{bottom:361.769250px;}
.y1cc{bottom:363.473400px;}
.y200{bottom:363.772650px;}
.y1a1{bottom:364.591200px;}
.y145{bottom:366.375900px;}
.y105{bottom:366.437400px;}
.yd2{bottom:369.293250px;}
.yaa{bottom:369.401100px;}
.y35{bottom:369.576300px;}
.y68{bottom:372.464400px;}
.ya9{bottom:380.354100px;}
.y1a0{bottom:381.191700px;}
.y177{bottom:381.263250px;}
.y144{bottom:382.441650px;}
.y1cb{bottom:382.967400px;}
.y1ff{bottom:383.266650px;}
.y104{bottom:385.931400px;}
.y34{bottom:387.574050px;}
.yd1{bottom:388.787250px;}
.y67{bottom:391.958400px;}
.ya8{bottom:392.351100px;}
.y19f{bottom:397.792200px;}
.y143{bottom:399.033900px;}
.y176{bottom:400.757250px;}
.y1ca{bottom:402.461400px;}
.y1fe{bottom:402.760650px;}
.ya7{bottom:404.348100px;}
.y103{bottom:405.425400px;}
.y33{bottom:405.571800px;}
.yd0{bottom:408.281250px;}
.y19e{bottom:411.295200px;}
.y66{bottom:411.452400px;}
.y142{bottom:415.629750px;}
.y272{bottom:418.231650px;}
.ya6{bottom:419.351100px;}
.y175{bottom:420.251250px;}
.y23e{bottom:421.791150px;}
.y1c9{bottom:421.955400px;}
.y1fd{bottom:422.254650px;}
.y32{bottom:423.569550px;}
.y102{bottom:424.919400px;}
.ycf{bottom:427.775250px;}
.y19d{bottom:427.895700px;}
.y65{bottom:430.946400px;}
.y271{bottom:431.734650px;}
.y141{bottom:432.780000px;}
.y23d{bottom:435.294150px;}
.ya5{bottom:437.726100px;}
.y174{bottom:439.745250px;}
.y1c8{bottom:441.449400px;}
.y31{bottom:441.567300px;}
.y1fc{bottom:441.748650px;}
.y101{bottom:444.413400px;}
.y19c{bottom:444.496200px;}
.y270{bottom:445.237650px;}
.yce{bottom:447.269250px;}
.y23c{bottom:448.797150px;}
.y140{bottom:449.384250px;}
.y64{bottom:450.440400px;}
.ya4{bottom:451.229100px;}
.y26f{bottom:458.740650px;}
.y30{bottom:459.565050px;}
.y1c7{bottom:460.943400px;}
.y19b{bottom:461.096700px;}
.y1fb{bottom:461.242650px;}
.y23b{bottom:462.300150px;}
.y100{bottom:463.907400px;}
.y13f{bottom:465.988500px;}
.y173{bottom:466.745250px;}
.ycd{bottom:466.763250px;}
.ya3{bottom:467.829600px;}
.y63{bottom:469.934400px;}
.y26e{bottom:472.243650px;}
.y23a{bottom:475.803150px;}
.y2f{bottom:477.562800px;}
.y19a{bottom:477.697200px;}
.y1c6{bottom:480.437400px;}
.y1fa{bottom:480.736650px;}
.y13e{bottom:482.592750px;}
.yff{bottom:483.401400px;}
.ya2{bottom:484.436100px;}
.y26d{bottom:485.746650px;}
.ycc{bottom:486.257250px;}
.y239{bottom:489.306150px;}
.y62{bottom:489.428400px;}
.y199{bottom:494.297700px;}
.y2e{bottom:495.560550px;}
.y13d{bottom:498.651000px;}
.y26c{bottom:499.249650px;}
.y1c5{bottom:499.931400px;}
.y1f9{bottom:500.230650px;}
.ya1{bottom:501.036600px;}
.y172{bottom:502.763250px;}
.y238{bottom:502.809150px;}
.yfe{bottom:502.895400px;}
.ycb{bottom:505.751250px;}
.y61{bottom:508.922400px;}
.y198{bottom:510.898200px;}
.y26b{bottom:512.752650px;}
.y2d{bottom:513.558300px;}
.y13c{bottom:514.709250px;}
.y237{bottom:516.312150px;}
.ya0{bottom:517.637100px;}
.y1c4{bottom:519.425400px;}
.y1f8{bottom:519.724650px;}
.y171{bottom:522.257250px;}
.yfd{bottom:522.389400px;}
.yca{bottom:525.245250px;}
.y26a{bottom:526.255650px;}
.y197{bottom:527.498700px;}
.y60{bottom:528.416400px;}
.y236{bottom:529.815150px;}
.y13b{bottom:530.767500px;}
.y2c{bottom:531.556050px;}
.y114{bottom:532.967400px;}
.y117{bottom:532.981650px;}
.y9f{bottom:534.237600px;}
.y1c3{bottom:538.919400px;}
.y1f7{bottom:539.218650px;}
.y269{bottom:539.758650px;}
.y170{bottom:541.751250px;}
.yfc{bottom:541.883400px;}
.y235{bottom:543.318150px;}
.y196{bottom:544.099200px;}
.yc9{bottom:544.745250px;}
.y13a{bottom:546.825750px;}
.y5f{bottom:547.910400px;}
.y9e{bottom:550.841100px;}
.y113{bottom:552.461400px;}
.y116{bottom:552.475650px;}
.y268{bottom:553.261650px;}
.y234{bottom:556.821150px;}
.y1c2{bottom:558.413400px;}
.y2b{bottom:558.559800px;}
.y1f6{bottom:558.712650px;}
.y195{bottom:560.699700px;}
.y16f{bottom:561.329400px;}
.yfb{bottom:561.377400px;}
.y139{bottom:562.886850px;}
.y267{bottom:566.764650px;}
.y5e{bottom:567.404400px;}
.y9d{bottom:567.441600px;}
.y233{bottom:570.324150px;}
.yc8{bottom:571.745250px;}
.y112{bottom:571.955400px;}
.y115{bottom:571.969650px;}
.y194{bottom:577.300200px;}
.y1c1{bottom:577.907400px;}
.y1f5{bottom:578.206650px;}
.y138{bottom:579.491100px;}
.y266{bottom:580.267650px;}
.y16e{bottom:580.823400px;}
.yfa{bottom:580.871400px;}
.y232{bottom:583.827150px;}
.y9c{bottom:584.043600px;}
.y5d{bottom:586.898400px;}
.y2a{bottom:589.306800px;}
.y265{bottom:593.770650px;}
.y193{bottom:593.900700px;}
.y137{bottom:595.549350px;}
.y231{bottom:597.330150px;}
.y1c0{bottom:597.401400px;}
.y1f4{bottom:597.700650px;}
.y16d{bottom:600.317400px;}
.yf9{bottom:600.365400px;}
.y9b{bottom:600.651450px;}
.y29{bottom:602.806800px;}
.y5c{bottom:606.392400px;}
.y264{bottom:607.273650px;}
.y230{bottom:610.833150px;}
.y136{bottom:611.607600px;}
.y192{bottom:615.005700px;}
.y18c{bottom:615.016200px;}
.y187{bottom:615.026700px;}
.y28{bottom:616.306800px;}
.y1bf{bottom:616.895400px;}
.y1f3{bottom:617.194650px;}
.y9a{bottom:617.251950px;}
.y119{bottom:619.440000px;}
.yc7{bottom:619.805400px;}
.y16c{bottom:619.811400px;}
.yf8{bottom:619.859400px;}
.y263{bottom:620.776650px;}
.y22f{bottom:624.336150px;}
.y5b{bottom:625.886400px;}
.y135{bottom:627.665850px;}
.y191{bottom:628.508700px;}
.y18b{bottom:628.519200px;}
.y27{bottom:629.806800px;}
.y262{bottom:634.279650px;}
.y99{bottom:634.450950px;}
.y1be{bottom:636.389400px;}
.y1f2{bottom:636.688650px;}
.y22e{bottom:637.839150px;}
.yc6{bottom:639.299400px;}
.y16b{bottom:639.305400px;}
.yf7{bottom:639.353400px;}
.y190{bottom:642.011700px;}
.y18a{bottom:642.022200px;}
.y26{bottom:643.306800px;}
.y134{bottom:643.724100px;}
.y5a{bottom:645.380400px;}
.y261{bottom:647.782650px;}
.y98{bottom:651.051450px;}
.y22d{bottom:651.342150px;}
.y18f{bottom:655.514700px;}
.y189{bottom:655.525200px;}
.y1bd{bottom:655.883400px;}
.y1f1{bottom:656.182650px;}
.y25{bottom:656.806800px;}
.yc5{bottom:658.793400px;}
.y16a{bottom:658.799400px;}
.yf6{bottom:658.847400px;}
.y133{bottom:659.782350px;}
.y260{bottom:661.285650px;}
.y22c{bottom:664.845150px;}
.y59{bottom:664.874400px;}
.y97{bottom:667.651950px;}
.y18e{bottom:669.017700px;}
.y188{bottom:669.028200px;}
.y24{bottom:670.306800px;}
.y25f{bottom:674.788650px;}
.y1bc{bottom:675.377400px;}
.y1f0{bottom:675.676650px;}
.y132{bottom:675.840600px;}
.yc4{bottom:678.287400px;}
.y169{bottom:678.293400px;}
.yf5{bottom:678.341400px;}
.y22b{bottom:678.348150px;}
.y18d{bottom:682.520700px;}
.y58{bottom:684.368400px;}
.y96{bottom:684.880500px;}
.y25e{bottom:688.291650px;}
.y23{bottom:688.534800px;}
.y22a{bottom:691.851150px;}
.y131{bottom:691.906350px;}
.y1bb{bottom:694.871400px;}
.y1ef{bottom:695.170650px;}
.y22{bottom:697.306800px;}
.yc3{bottom:697.781400px;}
.y168{bottom:697.787400px;}
.yf4{bottom:697.835400px;}
.y95{bottom:701.481000px;}
.y25d{bottom:701.794650px;}
.y57{bottom:703.862400px;}
.y229{bottom:705.354150px;}
.y130{bottom:708.502200px;}
.y21{bottom:710.806800px;}
.y1ba{bottom:714.365400px;}
.y1ee{bottom:714.664650px;}
.y25c{bottom:715.297650px;}
.y186{bottom:716.753700px;}
.yc2{bottom:717.275400px;}
.y167{bottom:717.281400px;}
.yf3{bottom:717.329400px;}
.y94{bottom:718.680000px;}
.y228{bottom:718.857150px;}
.y56{bottom:723.356400px;}
.y20{bottom:724.306800px;}
.y12f{bottom:725.106450px;}
.y25b{bottom:728.800650px;}
.y227{bottom:732.360150px;}
.y1b9{bottom:733.859400px;}
.y1ed{bottom:734.158650px;}
.y93{bottom:735.280500px;}
.yc1{bottom:736.769400px;}
.y166{bottom:736.775400px;}
.yf2{bottom:736.823400px;}
.y1f{bottom:737.806800px;}
.y12e{bottom:741.164700px;}
.y25a{bottom:742.303650px;}
.y55{bottom:742.850400px;}
.y226{bottom:745.863150px;}
.y1e{bottom:751.303800px;}
.y92{bottom:751.881000px;}
.y1b8{bottom:753.353400px;}
.y1ec{bottom:753.652650px;}
.y259{bottom:755.806650px;}
.yc0{bottom:756.263400px;}
.y165{bottom:756.269400px;}
.yf1{bottom:756.317400px;}
.y12d{bottom:757.778700px;}
.y225{bottom:759.366150px;}
.y1d{bottom:764.806800px;}
.y91{bottom:768.481500px;}
.y258{bottom:769.309650px;}
.y54{bottom:769.850400px;}
.y1b7{bottom:772.847400px;}
.y224{bottom:772.869150px;}
.y1eb{bottom:773.146650px;}
.y12c{bottom:773.836950px;}
.ybf{bottom:775.757400px;}
.y164{bottom:775.763400px;}
.yf0{bottom:775.811400px;}
.y1c{bottom:778.306800px;}
.y257{bottom:782.812650px;}
.y90{bottom:785.082000px;}
.y223{bottom:786.372150px;}
.y12b{bottom:790.450950px;}
.y1b{bottom:791.806800px;}
.y1b6{bottom:792.341400px;}
.y1ea{bottom:792.640650px;}
.ybe{bottom:795.251400px;}
.y163{bottom:795.257400px;}
.yef{bottom:795.305400px;}
.y256{bottom:796.315650px;}
.y222{bottom:799.875150px;}
.y8f{bottom:801.682500px;}
.y1a{bottom:805.306800px;}
.y12a{bottom:806.510400px;}
.y255{bottom:809.818650px;}
.y1b5{bottom:811.835400px;}
.y53{bottom:811.940400px;}
.y1e9{bottom:812.134650px;}
.y221{bottom:813.378150px;}
.ybc{bottom:814.751400px;}
.yee{bottom:814.799400px;}
.y8e{bottom:818.283000px;}
.y19{bottom:818.806800px;}
.ybd{bottom:821.157900px;}
.y129{bottom:823.114650px;}
.y254{bottom:823.321650px;}
.y220{bottom:826.881150px;}
.y1b4{bottom:831.329400px;}
.y52{bottom:831.434400px;}
.y1e8{bottom:831.628650px;}
.y18{bottom:832.306800px;}
.ybb{bottom:834.245400px;}
.yed{bottom:834.293400px;}
.y8d{bottom:834.883500px;}
.y253{bottom:836.824650px;}
.y128{bottom:839.729400px;}
.y21f{bottom:843.381150px;}
.y252{bottom:850.327650px;}
.y17{bottom:850.534950px;}
.y1b3{bottom:850.823400px;}
.y51{bottom:850.928400px;}
.y1e7{bottom:851.122650px;}
.y8c{bottom:851.484000px;}
.yba{bottom:853.745400px;}
.yec{bottom:853.787400px;}
.y127{bottom:856.341150px;}
.y251{bottom:863.830650px;}
.y16{bottom:865.309800px;}
.y8b{bottom:868.084500px;}
.y1b2{bottom:870.317400px;}
.y50{bottom:870.422400px;}
.y1e6{bottom:870.616650px;}
.y126{bottom:872.962650px;}
.yeb{bottom:873.281400px;}
.y250{bottom:877.333650px;}
.y15{bottom:880.309800px;}
.y21e{bottom:880.881150px;}
.y8a{bottom:884.685000px;}
.y125{bottom:889.554750px;}
.yb9{bottom:889.811400px;}
.y162{bottom:889.882650px;}
.y4f{bottom:889.916400px;}
.y1e5{bottom:890.110650px;}
.y24f{bottom:890.836650px;}
.yea{bottom:892.775400px;}
.y14{bottom:895.309800px;}
.y21d{bottom:895.881150px;}
.y89{bottom:901.285500px;}
.y24e{bottom:904.339650px;}
.y124{bottom:906.159000px;}
.yb8{bottom:909.305400px;}
.y161{bottom:909.376650px;}
.y4e{bottom:909.410400px;}
.y1e4{bottom:909.604650px;}
.y13{bottom:910.309800px;}
.y21c{bottom:910.881150px;}
.ye9{bottom:912.269400px;}
.y24d{bottom:917.842650px;}
.y88{bottom:917.886000px;}
.y123{bottom:922.217250px;}
.y12{bottom:925.309800px;}
.y21b{bottom:925.881150px;}
.yb7{bottom:928.799400px;}
.y160{bottom:928.870650px;}
.y4d{bottom:928.904400px;}
.y1e3{bottom:929.098650px;}
.y24c{bottom:931.345650px;}
.ye8{bottom:931.763400px;}
.y87{bottom:934.486500px;}
.y122{bottom:938.275500px;}
.y21a{bottom:940.881150px;}
.y24b{bottom:944.848650px;}
.yb6{bottom:948.293400px;}
.y15f{bottom:948.364650px;}
.y4c{bottom:948.398400px;}
.y1e2{bottom:948.592650px;}
.y86{bottom:951.087000px;}
.ye7{bottom:951.257400px;}
.y11{bottom:952.300800px;}
.y121{bottom:954.879750px;}
.y219{bottom:955.881150px;}
.y24a{bottom:958.351650px;}
.y85{bottom:967.687500px;}
.yb5{bottom:967.787400px;}
.y15e{bottom:967.858650px;}
.y4b{bottom:967.892400px;}
.y1e1{bottom:968.086650px;}
.ye6{bottom:970.751400px;}
.y218{bottom:970.881150px;}
.y120{bottom:970.938000px;}
.y249{bottom:971.854650px;}
.y84{bottom:984.288000px;}
.y248{bottom:985.357650px;}
.y217{bottom:985.881150px;}
.y11f{bottom:986.996250px;}
.yb4{bottom:987.281400px;}
.y15d{bottom:987.352650px;}
.y4a{bottom:987.386400px;}
.y1e0{bottom:987.580650px;}
.y10{bottom:988.305300px;}
.ye5{bottom:990.245400px;}
.y247{bottom:998.860650px;}
.y216{bottom:1000.881150px;}
.y83{bottom:1000.888500px;}
.y11e{bottom:1003.054500px;}
.yb3{bottom:1006.775400px;}
.y15c{bottom:1006.846650px;}
.y49{bottom:1006.880400px;}
.y1df{bottom:1007.074650px;}
.ye4{bottom:1009.745400px;}
.y246{bottom:1012.363650px;}
.y215{bottom:1015.881150px;}
.y82{bottom:1017.489000px;}
.y11d{bottom:1019.658750px;}
.yf{bottom:1024.309800px;}
.y245{bottom:1025.866650px;}
.yb2{bottom:1026.269400px;}
.y15b{bottom:1026.340650px;}
.y48{bottom:1026.374400px;}
.y1de{bottom:1026.568650px;}
.y214{bottom:1030.881150px;}
.y81{bottom:1034.089500px;}
.y11c{bottom:1035.717000px;}
.y244{bottom:1039.369650px;}
.y42{bottom:1040.595000px;}
.ye3{bottom:1045.751400px;}
.yb1{bottom:1045.763400px;}
.y15a{bottom:1045.834650px;}
.y47{bottom:1045.868400px;}
.y213{bottom:1045.881150px;}
.y1dd{bottom:1046.062650px;}
.y80{bottom:1050.690000px;}
.y11b{bottom:1051.775250px;}
.y243{bottom:1052.872650px;}
.y212{bottom:1060.881150px;}
.ye2{bottom:1065.251400px;}
.yb0{bottom:1065.257400px;}
.y159{bottom:1065.328650px;}
.y46{bottom:1065.362400px;}
.y1dc{bottom:1065.556650px;}
.y242{bottom:1066.375650px;}
.y7f{bottom:1071.795000px;}
.y11a{bottom:1072.338000px;}
.y211{bottom:1075.881150px;}
.y241{bottom:1079.878650px;}
.yaf{bottom:1084.751400px;}
.y158{bottom:1084.822650px;}
.y45{bottom:1084.856400px;}
.ye1{bottom:1084.871250px;}
.y1db{bottom:1085.050650px;}
.y210{bottom:1090.881150px;}
.y240{bottom:1093.381650px;}
.y1{bottom:1099.948050px;}
.yae{bottom:1104.245400px;}
.y157{bottom:1104.316650px;}
.y44{bottom:1104.350400px;}
.ye0{bottom:1104.365250px;}
.y1da{bottom:1104.544650px;}
.y20f{bottom:1105.881150px;}
.y7e{bottom:1106.022000px;}
.y23f{bottom:1106.884650px;}
.y3{bottom:1132.136100px;}
.h5{height:0.445800px;}
.h1a{height:17.511120px;}
.h7{height:20.595960px;}
.h19{height:26.532000px;}
.h1b{height:26.860680px;}
.h1e{height:28.743000px;}
.h2c{height:29.988000px;}
.h12{height:30.954000px;}
.h23{height:30.966000px;}
.h6{height:31.206000px;}
.h13{height:33.348000px;}
.h3{height:34.272000px;}
.hf{height:34.945312px;}
.h2b{height:35.616000px;}
.h11{height:36.240000px;}
.h20{height:36.502380px;}
.h22{height:36.517980px;}
.h26{height:36.520980px;}
.h25{height:36.526980px;}
.h24{height:36.527580px;}
.h21{height:36.529980px;}
.h29{height:36.538380px;}
.h28{height:36.540780px;}
.h1f{height:36.541980px;}
.h27{height:36.565380px;}
.h10{height:37.842000px;}
.h14{height:39.211440px;}
.h15{height:39.300240px;}
.h18{height:39.305640px;}
.h17{height:39.317640px;}
.h16{height:39.323640px;}
.hd{height:39.507960px;}
.hb{height:39.508560px;}
.hc{height:39.519960px;}
.h8{height:39.828600px;}
.he{height:40.698000px;}
.ha{height:45.518400px;}
.h1c{height:52.007280px;}
.h2a{height:52.174080px;}
.h1d{height:52.486680px;}
.h4{height:52.992000px;}
.h2{height:53.064000px;}
.h9{height:89.964000px;}
.h1{height:1173.750000px;}
.h0{height:1173.960000px;}
.w0{width:891.000000px;}
.x0{left:0.000000px;}
.x2{left:73.650000px;}
.x18{left:76.194000px;}
.x16{left:81.150000px;}
.x3{left:84.150000px;}
.x1{left:85.650000px;}
.x4{left:87.900000px;}
.x17{left:93.897000px;}
.xf{left:240.893850px;}
.xc{left:249.608850px;}
.xe{left:258.050850px;}
.xd{left:259.552350px;}
.x10{left:262.513350px;}
.x15{left:293.120850px;}
.x13{left:327.592350px;}
.x11{left:330.826350px;}
.x14{left:333.766350px;}
.x12{left:343.982850px;}
.xa{left:385.802700px;}
.x7{left:392.400300px;}
.x5{left:458.998500px;}
.x19{left:461.544000px;}
.x8{left:471.002100px;}
.xb{left:473.250000px;}
.x1a{left:479.247000px;}
.x9{left:753.063600px;}
.x6{left:857.745000px;}
@media print{
.v6{vertical-align:-22.800000pt;}
.v1{vertical-align:-16.800000pt;}
.v5{vertical-align:-14.400000pt;}
.v8{vertical-align:-1.941333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.128000pt;}
.v9{vertical-align:15.619200pt;}
.v2{vertical-align:16.800000pt;}
.v3{vertical-align:19.200000pt;}
.v7{vertical-align:22.352533pt;}
.ls13{letter-spacing:-5.226667pt;}
.ls10{letter-spacing:-4.914667pt;}
.ls2d{letter-spacing:-4.853333pt;}
.ls12{letter-spacing:-2.800000pt;}
.ls2b{letter-spacing:-2.600000pt;}
.ls2c{letter-spacing:-1.906667pt;}
.ls11{letter-spacing:-1.866667pt;}
.ls29{letter-spacing:-1.733333pt;}
.ls2a{letter-spacing:-1.213333pt;}
.ls8{letter-spacing:-1.013333pt;}
.ls18{letter-spacing:-0.962667pt;}
.ls17{letter-spacing:-0.912000pt;}
.ls6{letter-spacing:-0.760000pt;}
.ls2f{letter-spacing:-0.746667pt;}
.ls7{letter-spacing:-0.506667pt;}
.ls4{letter-spacing:-0.373333pt;}
.ls5{letter-spacing:-0.253333pt;}
.ls31{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.050667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000107pt;}
.ls15{letter-spacing:0.004267pt;}
.ls30{letter-spacing:0.186667pt;}
.ls0{letter-spacing:0.426667pt;}
.ls2e{letter-spacing:0.506667pt;}
.ls14{letter-spacing:0.937333pt;}
.ls2{letter-spacing:12.800000pt;}
.ls1b{letter-spacing:25.029333pt;}
.lsf{letter-spacing:134.259733pt;}
.lsd{letter-spacing:152.031467pt;}
.lsc{letter-spacing:159.013333pt;}
.ls9{letter-spacing:232.113493pt;}
.lsa{letter-spacing:267.385067pt;}
.lsb{letter-spacing:293.410133pt;}
.ls26{letter-spacing:317.030400pt;}
.ls28{letter-spacing:425.604053pt;}
.ls25{letter-spacing:466.545920pt;}
.ls24{letter-spacing:473.375787pt;}
.ls1e{letter-spacing:478.958187pt;}
.ls1f{letter-spacing:511.714667pt;}
.ls20{letter-spacing:528.389333pt;}
.ls27{letter-spacing:605.383787pt;}
.ls1d{letter-spacing:606.460267pt;}
.ls21{letter-spacing:608.258667pt;}
.ls1a{letter-spacing:684.508800pt;}
.ls19{letter-spacing:688.859200pt;}
.ls1c{letter-spacing:689.102933pt;}
.lse{letter-spacing:739.579627pt;}
.ls22{letter-spacing:740.182400pt;}
.ls23{letter-spacing:804.784000pt;}
.ws2{word-spacing:-25.424000pt;}
.ws66{word-spacing:-15.096000pt;}
.wse5{word-spacing:-14.208000pt;}
.ws68{word-spacing:-12.540000pt;}
.wsbb{word-spacing:-12.008000pt;}
.ws24{word-spacing:-11.602667pt;}
.ws67{word-spacing:-11.552000pt;}
.ws23{word-spacing:-11.501333pt;}
.ws6{word-spacing:-11.096000pt;}
.ws4{word-spacing:-10.842667pt;}
.ws27{word-spacing:-10.378667pt;}
.ws5{word-spacing:-10.336000pt;}
.ws7{word-spacing:-10.082667pt;}
.ws0{word-spacing:-9.685333pt;}
.wsa3{word-spacing:-9.637333pt;}
.ws115{word-spacing:-9.557333pt;}
.ws26{word-spacing:-8.512000pt;}
.wsa8{word-spacing:-8.424000pt;}
.wsa2{word-spacing:-7.904000pt;}
.ws65{word-spacing:-7.590880pt;}
.ws3{word-spacing:-6.251520pt;}
.ws2a{word-spacing:-5.871360pt;}
.ws1{word-spacing:-5.470080pt;}
.ws8f{word-spacing:-4.205333pt;}
.wseb{word-spacing:-3.445333pt;}
.ws38{word-spacing:-3.400000pt;}
.wsf5{word-spacing:-3.394667pt;}
.wsd4{word-spacing:-3.242667pt;}
.wse6{word-spacing:-3.141333pt;}
.wse2{word-spacing:-2.800000pt;}
.ws104{word-spacing:-2.736000pt;}
.wsb6{word-spacing:-2.600000pt;}
.ws69{word-spacing:-2.584000pt;}
.ws40{word-spacing:-2.381333pt;}
.ws4e{word-spacing:-2.229333pt;}
.ws99{word-spacing:-2.128000pt;}
.ws42{word-spacing:-2.077333pt;}
.ws59{word-spacing:-2.026667pt;}
.ws10d{word-spacing:-2.005333pt;}
.wsc3{word-spacing:-1.976000pt;}
.wsc2{word-spacing:-1.925333pt;}
.wsf9{word-spacing:-1.874667pt;}
.ws55{word-spacing:-1.824000pt;}
.ws81{word-spacing:-1.773333pt;}
.ws124{word-spacing:-1.749333pt;}
.ws144{word-spacing:-1.680000pt;}
.ws9b{word-spacing:-1.672000pt;}
.wse7{word-spacing:-1.621333pt;}
.ws13e{word-spacing:-1.605333pt;}
.ws15{word-spacing:-1.570667pt;}
.ws10f{word-spacing:-1.493333pt;}
.ws19{word-spacing:-1.469333pt;}
.ws10e{word-spacing:-1.450667pt;}
.ws11d{word-spacing:-1.408000pt;}
.ws77{word-spacing:-1.368000pt;}
.ws41{word-spacing:-1.266667pt;}
.ws106{word-spacing:-1.165333pt;}
.ws12b{word-spacing:-1.157333pt;}
.ws14{word-spacing:-1.064000pt;}
.ws89{word-spacing:-1.013333pt;}
.wscb{word-spacing:-0.962667pt;}
.ws5f{word-spacing:-0.933333pt;}
.ws13f{word-spacing:-0.896000pt;}
.wsb8{word-spacing:-0.866667pt;}
.ws8c{word-spacing:-0.861333pt;}
.wsc{word-spacing:-0.858667pt;}
.ws136{word-spacing:-0.821333pt;}
.ws3e{word-spacing:-0.810667pt;}
.ws2c{word-spacing:-0.760000pt;}
.ws9c{word-spacing:-0.709333pt;}
.ws8b{word-spacing:-0.658667pt;}
.ws12e{word-spacing:-0.634667pt;}
.ws11f{word-spacing:-0.597333pt;}
.wsf1{word-spacing:-0.557333pt;}
.wsda{word-spacing:-0.506667pt;}
.wsd3{word-spacing:-0.456000pt;}
.ws12a{word-spacing:-0.448000pt;}
.ws148{word-spacing:-0.410667pt;}
.ws14f{word-spacing:-0.336000pt;}
.wsf{word-spacing:-0.298667pt;}
.ws130{word-spacing:-0.261333pt;}
.ws1a{word-spacing:-0.253333pt;}
.ws13a{word-spacing:-0.186667pt;}
.ws34{word-spacing:-0.152000pt;}
.ws145{word-spacing:-0.149333pt;}
.ws49{word-spacing:-0.101333pt;}
.ws7f{word-spacing:-0.050667pt;}
.ws10{word-spacing:-0.037333pt;}
.wsab{word-spacing:-0.034667pt;}
.ws8{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.069333pt;}
.ws29{word-spacing:0.074667pt;}
.wsfb{word-spacing:0.101333pt;}
.ws57{word-spacing:0.152000pt;}
.ws150{word-spacing:0.186667pt;}
.ws122{word-spacing:0.213333pt;}
.ws20{word-spacing:0.253333pt;}
.ws10b{word-spacing:0.298667pt;}
.ws16{word-spacing:0.304000pt;}
.ws120{word-spacing:0.341333pt;}
.ws101{word-spacing:0.354667pt;}
.ws95{word-spacing:0.405333pt;}
.wsfd{word-spacing:0.456000pt;}
.wsc4{word-spacing:0.506667pt;}
.ws10a{word-spacing:0.554667pt;}
.ws31{word-spacing:0.557333pt;}
.ws12f{word-spacing:0.560000pt;}
.ws6b{word-spacing:0.608000pt;}
.ws58{word-spacing:0.658667pt;}
.wsca{word-spacing:0.709333pt;}
.wse3{word-spacing:0.746667pt;}
.ws5a{word-spacing:0.760000pt;}
.ws129{word-spacing:0.784000pt;}
.wse8{word-spacing:0.810667pt;}
.ws4f{word-spacing:0.861333pt;}
.ws117{word-spacing:0.896000pt;}
.ws80{word-spacing:0.912000pt;}
.ws36{word-spacing:0.962667pt;}
.ws3f{word-spacing:1.114667pt;}
.ws128{word-spacing:1.157333pt;}
.ws76{word-spacing:1.165333pt;}
.ws123{word-spacing:1.280000pt;}
.ws14e{word-spacing:1.306667pt;}
.ws6e{word-spacing:1.317333pt;}
.ws11e{word-spacing:1.322667pt;}
.ws45{word-spacing:1.418667pt;}
.wsba{word-spacing:1.472000pt;}
.ws33{word-spacing:1.520000pt;}
.ws134{word-spacing:1.568000pt;}
.wse1{word-spacing:1.570667pt;}
.ws56{word-spacing:1.621333pt;}
.ws142{word-spacing:1.642667pt;}
.wsef{word-spacing:1.672000pt;}
.ws12c{word-spacing:1.717333pt;}
.wsf0{word-spacing:1.722667pt;}
.ws118{word-spacing:1.749333pt;}
.ws140{word-spacing:1.754667pt;}
.wsc7{word-spacing:1.773333pt;}
.ws87{word-spacing:1.824000pt;}
.ws5d{word-spacing:1.866667pt;}
.wsac{word-spacing:1.872000pt;}
.ws21{word-spacing:1.874667pt;}
.ws126{word-spacing:1.904000pt;}
.ws18{word-spacing:1.925333pt;}
.ws135{word-spacing:1.941333pt;}
.ws11a{word-spacing:2.005333pt;}
.ws11b{word-spacing:2.090667pt;}
.ws100{word-spacing:2.128000pt;}
.ws141{word-spacing:2.165333pt;}
.ws10c{word-spacing:2.176000pt;}
.ws52{word-spacing:2.178667pt;}
.wsdf{word-spacing:2.280000pt;}
.ws78{word-spacing:2.330667pt;}
.ws107{word-spacing:2.432000pt;}
.ws62{word-spacing:2.464000pt;}
.wsed{word-spacing:2.482667pt;}
.wsd2{word-spacing:2.533333pt;}
.ws13c{word-spacing:2.538667pt;}
.wsb9{word-spacing:2.560000pt;}
.ws137{word-spacing:2.576000pt;}
.ws17{word-spacing:2.584000pt;}
.ws9a{word-spacing:2.634667pt;}
.wsf3{word-spacing:2.685333pt;}
.ws88{word-spacing:2.786667pt;}
.ws5e{word-spacing:2.800000pt;}
.ws8d{word-spacing:2.938667pt;}
.ws90{word-spacing:2.989333pt;}
.ws82{word-spacing:3.040000pt;}
.ws51{word-spacing:3.090667pt;}
.ws125{word-spacing:3.098667pt;}
.ws13{word-spacing:3.192000pt;}
.wsf4{word-spacing:3.293333pt;}
.ws96{word-spacing:3.344000pt;}
.ws63{word-spacing:3.360000pt;}
.ws94{word-spacing:3.394667pt;}
.ws116{word-spacing:3.413333pt;}
.ws83{word-spacing:3.445333pt;}
.ws110{word-spacing:3.456000pt;}
.ws12d{word-spacing:3.472000pt;}
.ws70{word-spacing:3.496000pt;}
.wscd{word-spacing:3.546667pt;}
.ws37{word-spacing:3.597333pt;}
.ws35{word-spacing:3.648000pt;}
.ws139{word-spacing:3.696000pt;}
.ws75{word-spacing:3.749333pt;}
.ws11c{word-spacing:3.797333pt;}
.ws9f{word-spacing:3.800000pt;}
.wse9{word-spacing:3.850667pt;}
.ws85{word-spacing:3.901333pt;}
.ws2b{word-spacing:3.952000pt;}
.ws5b{word-spacing:4.002667pt;}
.ws6c{word-spacing:4.053333pt;}
.ws147{word-spacing:4.106667pt;}
.wsf6{word-spacing:4.154667pt;}
.ws7b{word-spacing:4.306667pt;}
.wsce{word-spacing:4.357333pt;}
.ws1d{word-spacing:4.408000pt;}
.ws3a{word-spacing:4.509333pt;}
.ws32{word-spacing:4.560000pt;}
.ws7e{word-spacing:4.610667pt;}
.wsd5{word-spacing:4.661333pt;}
.ws12{word-spacing:4.712000pt;}
.wscc{word-spacing:4.762667pt;}
.ws71{word-spacing:4.813333pt;}
.ws4c{word-spacing:4.864000pt;}
.ws4b{word-spacing:4.914667pt;}
.ws105{word-spacing:4.965333pt;}
.ws14c{word-spacing:5.040000pt;}
.wse0{word-spacing:5.066667pt;}
.ws4d{word-spacing:5.117333pt;}
.ws48{word-spacing:5.168000pt;}
.wsf2{word-spacing:5.218667pt;}
.ws50{word-spacing:5.320000pt;}
.ws30{word-spacing:5.370667pt;}
.ws121{word-spacing:5.376000pt;}
.ws3b{word-spacing:5.421333pt;}
.wsf8{word-spacing:5.472000pt;}
.ws146{word-spacing:5.488000pt;}
.ws8e{word-spacing:5.522667pt;}
.ws64{word-spacing:5.536000pt;}
.ws14b{word-spacing:5.562667pt;}
.wsd7{word-spacing:5.573333pt;}
.wsdb{word-spacing:5.624000pt;}
.ws11{word-spacing:5.674667pt;}
.ws44{word-spacing:5.725333pt;}
.wsd6{word-spacing:5.776000pt;}
.wsdc{word-spacing:5.826667pt;}
.wsee{word-spacing:5.877333pt;}
.ws14d{word-spacing:5.973333pt;}
.wsd8{word-spacing:6.029333pt;}
.wsea{word-spacing:6.080000pt;}
.ws7c{word-spacing:6.130667pt;}
.ws39{word-spacing:6.181333pt;}
.wsc6{word-spacing:6.232000pt;}
.wsfc{word-spacing:6.282667pt;}
.wsff{word-spacing:6.333333pt;}
.wsdd{word-spacing:6.485333pt;}
.ws119{word-spacing:6.528000pt;}
.ws149{word-spacing:6.570667pt;}
.ws9e{word-spacing:6.637333pt;}
.ws14a{word-spacing:6.757333pt;}
.ws73{word-spacing:6.840000pt;}
.wsec{word-spacing:6.890667pt;}
.ws13b{word-spacing:6.906667pt;}
.ws53{word-spacing:6.941333pt;}
.wsd{word-spacing:6.944000pt;}
.ws72{word-spacing:7.093333pt;}
.ws47{word-spacing:7.144000pt;}
.ws2e{word-spacing:7.194667pt;}
.ws102{word-spacing:7.245333pt;}
.wsb{word-spacing:7.354667pt;}
.ws13d{word-spacing:7.429333pt;}
.ws3c{word-spacing:7.498667pt;}
.ws98{word-spacing:7.600000pt;}
.wsf7{word-spacing:7.752000pt;}
.ws143{word-spacing:7.765333pt;}
.wsd9{word-spacing:7.954667pt;}
.ws46{word-spacing:8.208000pt;}
.ws1f{word-spacing:8.360000pt;}
.ws132{word-spacing:8.400000pt;}
.ws43{word-spacing:8.461333pt;}
.wsfa{word-spacing:8.562667pt;}
.ws138{word-spacing:8.586667pt;}
.ws7a{word-spacing:8.613333pt;}
.ws108{word-spacing:8.816000pt;}
.ws2f{word-spacing:8.968000pt;}
.ws4a{word-spacing:9.069333pt;}
.ws1b{word-spacing:9.120000pt;}
.ws111{word-spacing:9.173333pt;}
.ws133{word-spacing:9.258667pt;}
.ws93{word-spacing:9.474667pt;}
.ws1e{word-spacing:9.778667pt;}
.ws103{word-spacing:9.829333pt;}
.ws91{word-spacing:10.133333pt;}
.wsc8{word-spacing:10.336000pt;}
.ws86{word-spacing:10.538667pt;}
.ws127{word-spacing:10.640000pt;}
.wsde{word-spacing:10.690667pt;}
.ws8a{word-spacing:10.741333pt;}
.wsc5{word-spacing:10.842667pt;}
.wsd0{word-spacing:10.994667pt;}
.ws54{word-spacing:11.096000pt;}
.ws112{word-spacing:11.178667pt;}
.wsfe{word-spacing:11.197333pt;}
.ws84{word-spacing:11.248000pt;}
.ws113{word-spacing:11.520000pt;}
.ws1c{word-spacing:11.602667pt;}
.ws9{word-spacing:11.648000pt;}
.ws6f{word-spacing:11.653333pt;}
.ws109{word-spacing:11.754667pt;}
.ws97{word-spacing:11.805333pt;}
.wsa{word-spacing:12.074667pt;}
.wsc9{word-spacing:12.160000pt;}
.ws22{word-spacing:12.210667pt;}
.ws74{word-spacing:12.464000pt;}
.wsd1{word-spacing:12.666667pt;}
.wscf{word-spacing:12.920000pt;}
.ws3d{word-spacing:12.970667pt;}
.ws6d{word-spacing:13.173333pt;}
.ws92{word-spacing:13.426667pt;}
.wsa1{word-spacing:13.680000pt;}
.ws2d{word-spacing:13.832000pt;}
.ws131{word-spacing:15.082667pt;}
.ws6a{word-spacing:15.554667pt;}
.ws79{word-spacing:15.909333pt;}
.wsa0{word-spacing:17.024000pt;}
.ws114{word-spacing:18.432000pt;}
.ws7d{word-spacing:18.949333pt;}
.wsb7{word-spacing:20.869333pt;}
.ws60{word-spacing:22.474667pt;}
.wse4{word-spacing:24.154667pt;}
.ws61{word-spacing:26.021333pt;}
.ws5c{word-spacing:26.954667pt;}
.ws9d{word-spacing:27.410667pt;}
.wse{word-spacing:29.045333pt;}
.wsbc{word-spacing:56.709333pt;}
.wsc0{word-spacing:134.325333pt;}
.wsc1{word-spacing:134.586667pt;}
.wsbf{word-spacing:138.320000pt;}
.wsbe{word-spacing:153.888000pt;}
.wsbd{word-spacing:188.533333pt;}
.ws28{word-spacing:232.706133pt;}
.wsa7{word-spacing:375.301333pt;}
.wsa6{word-spacing:435.448000pt;}
.wsa4{word-spacing:439.850667pt;}
.wsb1{word-spacing:456.213333pt;}
.wsa5{word-spacing:463.077333pt;}
.wsb5{word-spacing:472.541333pt;}
.wsb4{word-spacing:477.325333pt;}
.wsaa{word-spacing:479.336000pt;}
.wsad{word-spacing:480.202667pt;}
.wsaf{word-spacing:482.178667pt;}
.wsae{word-spacing:488.973333pt;}
.wsb2{word-spacing:505.370667pt;}
.wsb0{word-spacing:564.616000pt;}
.wsa9{word-spacing:566.592000pt;}
.ws25{word-spacing:921.237333pt;}
._2{margin-left:-14.746667pt;}
._0{margin-left:-12.074667pt;}
._8{margin-left:-9.296000pt;}
._e{margin-left:-7.936373pt;}
._7{margin-left:-5.717653pt;}
._f{margin-left:-4.306667pt;}
._5{margin-left:-3.396907pt;}
._3{margin-left:-1.979093pt;}
._1{margin-left:-0.900267pt;}
._6{width:1.519893pt;}
._2f{width:2.679040pt;}
._a{width:3.593547pt;}
._11{width:5.093493pt;}
._31{width:5.996373pt;}
._4{width:6.955200pt;}
._30{width:7.926720pt;}
._10{width:9.254347pt;}
._32{width:10.792107pt;}
._c{width:11.705493pt;}
._93{width:12.725493pt;}
._d{width:14.591627pt;}
._2e{width:15.607200pt;}
._a8{width:17.655467pt;}
._a9{width:18.760533pt;}
._48{width:20.869333pt;}
._9d{width:22.474667pt;}
._39{width:24.162667pt;}
._88{width:25.896000pt;}
._1f{width:26.954667pt;}
._21{width:27.888000pt;}
._9{width:32.984213pt;}
._b{width:40.825707pt;}
._29{width:119.443947pt;}
._96{width:134.586667pt;}
._9c{width:150.154667pt;}
._98{width:160.533333pt;}
._2d{width:212.314667pt;}
._97{width:218.160000pt;}
._34{width:232.685547pt;}
._81{width:242.266880pt;}
._a6{width:253.793280pt;}
._a7{width:258.273280pt;}
._94{width:273.093333pt;}
._35{width:285.309547pt;}
._95{width:304.229333pt;}
._82{width:314.338987pt;}
._9b{width:329.130667pt;}
._77{width:373.475093pt;}
._27{width:377.603520pt;}
._78{width:381.781653pt;}
._63{width:388.454400pt;}
._75{width:407.202667pt;}
._70{width:413.271787pt;}
._a5{width:419.627520pt;}
._74{width:421.304000pt;}
._57{width:427.483520pt;}
._a1{width:432.096853pt;}
._55{width:433.026347pt;}
._a3{width:434.150187pt;}
._a2{width:438.294187pt;}
._a4{width:440.384853pt;}
._53{width:441.757333pt;}
._6f{width:443.622400pt;}
._99{width:445.230187pt;}
._66{width:447.418880pt;}
._59{width:453.168853pt;}
._87{width:455.171040pt;}
._65{width:456.213333pt;}
._41{width:462.664427pt;}
._6b{width:463.772693pt;}
._54{width:467.662827pt;}
._5f{width:469.008427pt;}
._56{width:470.317440pt;}
._62{width:472.192373pt;}
._3c{width:473.827093pt;}
._7e{width:478.365333pt;}
._52{width:484.300373pt;}
._3f{width:485.509760pt;}
._60{width:486.795093pt;}
._69{width:490.271040pt;}
._47{width:493.792000pt;}
._4e{width:495.147093pt;}
._51{width:499.132960pt;}
._44{width:501.901653pt;}
._4b{width:513.066667pt;}
._58{width:516.817920pt;}
._64{width:520.464427pt;}
._5b{width:522.152427pt;}
._a0{width:527.408427pt;}
._80{width:529.168000pt;}
._38{width:532.341333pt;}
._5e{width:533.669760pt;}
._72{width:534.629333pt;}
._61{width:543.088000pt;}
._5c{width:554.592320pt;}
._3b{width:555.883093pt;}
._8f{width:559.267627pt;}
._6e{width:563.855360pt;}
._3e{width:568.848427pt;}
._91{width:571.098667pt;}
._86{width:572.277333pt;}
._28{width:578.784747pt;}
._67{width:581.431360pt;}
._5a{width:584.136427pt;}
._6c{width:585.210027pt;}
._68{width:587.187093pt;}
._6d{width:588.646187pt;}
._92{width:590.170667pt;}
._9e{width:591.733760pt;}
._5d{width:593.115093pt;}
._8c{width:595.989333pt;}
._6a{width:597.343360pt;}
._46{width:600.355040pt;}
._43{width:603.304000pt;}
._4d{width:604.757653pt;}
._7a{width:605.696000pt;}
._7d{width:607.684907pt;}
._9a{width:610.363093pt;}
._7c{width:611.413653pt;}
._9f{width:612.453760pt;}
._1e{width:614.666773pt;}
._4a{width:634.608000pt;}
._8a{width:638.490667pt;}
._37{width:663.520000pt;}
._40{width:679.154667pt;}
._8e{width:683.661333pt;}
._76{width:693.300693pt;}
._7b{width:694.622933pt;}
._4c{width:705.815360pt;}
._4f{width:710.219093pt;}
._13{width:712.096427pt;}
._8b{width:719.957333pt;}
._20{width:732.106667pt;}
._7f{width:738.608747pt;}
._73{width:745.821760pt;}
._79{width:749.666347pt;}
._49{width:789.154667pt;}
._89{width:795.261867pt;}
._17{width:801.061760pt;}
._50{width:802.566933pt;}
._24{width:804.832427pt;}
._22{width:807.673600pt;}
._25{width:812.112000pt;}
._71{width:819.900267pt;}
._45{width:858.206933pt;}
._1a{width:870.314667pt;}
._1b{width:878.528000pt;}
._23{width:882.200000pt;}
._8d{width:884.728000pt;}
._90{width:886.252267pt;}
._19{width:890.960427pt;}
._1c{width:909.776000pt;}
._3d{width:914.232427pt;}
._26{width:919.520000pt;}
._42{width:926.783680pt;}
._1d{width:930.384427pt;}
._14{width:947.968000pt;}
._12{width:958.421333pt;}
._33{width:969.144427pt;}
._83{width:974.275093pt;}
._16{width:979.141333pt;}
._15{width:988.549333pt;}
._2c{width:994.746667pt;}
._18{width:996.800000pt;}
._2b{width:1002.960427pt;}
._85{width:1008.210240pt;}
._36{width:1016.637760pt;}
._2a{width:1048.693333pt;}
._84{width:1085.725333pt;}
._3a{width:1118.485333pt;}
.fs2{font-size:0.533333pt;}
.fsa{font-size:21.120000pt;}
.fsd{font-size:22.880000pt;}
.fs4{font-size:24.640000pt;}
.fs6{font-size:28.160000pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:33.440000pt;}
.fsc{font-size:34.666667pt;}
.fs3{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:58.921467pt;}
.y43{bottom:58.931067pt;}
.y156{bottom:92.168133pt;}
.y118{bottom:94.659733pt;}
.y1b1{bottom:94.666667pt;}
.y20e{bottom:94.884800pt;}
.y185{bottom:96.308667pt;}
.ye{bottom:97.780533pt;}
.y1d9{bottom:97.823467pt;}
.y41{bottom:98.561600pt;}
.y111{bottom:102.906133pt;}
.ydf{bottom:102.996667pt;}
.y155{bottom:105.501467pt;}
.y7d{bottom:107.621467pt;}
.y20d{bottom:108.218133pt;}
.y74{bottom:108.343467pt;}
.yd{bottom:109.783200pt;}
.y1b0{bottom:111.001067pt;}
.y184{bottom:113.636667pt;}
.y1d8{bottom:115.151467pt;}
.y154{bottom:115.237467pt;}
.y40{bottom:115.889600pt;}
.y110{bottom:120.234133pt;}
.yde{bottom:120.324667pt;}
.y20c{bottom:121.551467pt;}
.yc{bottom:121.785867pt;}
.y1af{bottom:123.003733pt;}
.y7c{bottom:124.949467pt;}
.y73{bottom:125.671467pt;}
.y153{bottom:125.901467pt;}
.y183{bottom:130.964667pt;}
.y1d7{bottom:132.479467pt;}
.y3f{bottom:133.217600pt;}
.yb{bottom:133.788533pt;}
.y20b{bottom:134.884800pt;}
.y152{bottom:136.565467pt;}
.y10f{bottom:137.562133pt;}
.ydd{bottom:137.652667pt;}
.y1ae{bottom:137.759733pt;}
.y7b{bottom:142.277467pt;}
.y72{bottom:142.999467pt;}
.y20a{bottom:148.218133pt;}
.y182{bottom:148.292667pt;}
.y1ad{bottom:149.762400pt;}
.ya{bottom:149.785867pt;}
.y1d6{bottom:149.807467pt;}
.y151{bottom:149.901467pt;}
.y3e{bottom:150.545600pt;}
.y10e{bottom:154.890133pt;}
.ydc{bottom:154.980667pt;}
.y7a{bottom:159.605467pt;}
.y71{bottom:160.327467pt;}
.y209{bottom:161.551467pt;}
.y9{bottom:161.788533pt;}
.y1ac{bottom:164.518400pt;}
.y181{bottom:165.620667pt;}
.y150{bottom:166.715467pt;}
.y1d5{bottom:167.135467pt;}
.y3d{bottom:167.873600pt;}
.y10d{bottom:172.218133pt;}
.ydb{bottom:172.308667pt;}
.y208{bottom:174.884800pt;}
.y1ab{bottom:176.521067pt;}
.y79{bottom:176.933467pt;}
.y70{bottom:177.655467pt;}
.y8{bottom:177.785867pt;}
.y14f{bottom:181.474800pt;}
.y180{bottom:182.948667pt;}
.y1d4{bottom:184.463467pt;}
.y3c{bottom:185.201600pt;}
.y10c{bottom:189.551467pt;}
.yda{bottom:189.636667pt;}
.y207{bottom:190.884800pt;}
.y1aa{bottom:191.277067pt;}
.y7{bottom:193.988533pt;}
.y78{bottom:194.261467pt;}
.y6f{bottom:194.983467pt;}
.y14e{bottom:196.234133pt;}
.y17f{bottom:200.276667pt;}
.y6{bottom:201.785867pt;}
.y1d3{bottom:201.791467pt;}
.y3b{bottom:202.529600pt;}
.y1a9{bottom:206.033067pt;}
.yd9{bottom:206.964667pt;}
.y14d{bottom:210.508133pt;}
.y77{bottom:211.589467pt;}
.y6e{bottom:212.311467pt;}
.y5{bottom:213.788533pt;}
.y17e{bottom:217.604667pt;}
.y1d2{bottom:219.119467pt;}
.y3a{bottom:219.857600pt;}
.y206{bottom:220.218133pt;}
.y1a8{bottom:220.789067pt;}
.y10b{bottom:221.754133pt;}
.yd8{bottom:224.292667pt;}
.y14c{bottom:224.782133pt;}
.y4{bottom:225.788533pt;}
.y76{bottom:228.917467pt;}
.y6d{bottom:229.644800pt;}
.y205{bottom:233.551467pt;}
.y17d{bottom:234.932667pt;}
.y1a7{bottom:235.545067pt;}
.y1d1{bottom:236.447467pt;}
.y14b{bottom:239.056133pt;}
.y10a{bottom:239.082133pt;}
.yd7{bottom:241.620667pt;}
.y75{bottom:246.245467pt;}
.y204{bottom:246.884800pt;}
.y1a6{bottom:250.301067pt;}
.y17c{bottom:252.260667pt;}
.y14a{bottom:253.330133pt;}
.y1d0{bottom:253.775467pt;}
.y109{bottom:256.410133pt;}
.yd6{bottom:258.948667pt;}
.y203{bottom:260.218133pt;}
.y6c{bottom:261.767467pt;}
.y39{bottom:264.520267pt;}
.y1a5{bottom:265.057067pt;}
.y149{bottom:267.604133pt;}
.y17b{bottom:269.588667pt;}
.y1cf{bottom:271.103467pt;}
.y108{bottom:273.738133pt;}
.y202{bottom:276.218133pt;}
.yd5{bottom:276.276667pt;}
.y6b{bottom:279.095467pt;}
.y1a4{bottom:279.813067pt;}
.y38{bottom:280.518267pt;}
.y148{bottom:281.878133pt;}
.y17a{bottom:286.916667pt;}
.y1ce{bottom:288.431467pt;}
.yad{bottom:291.023200pt;}
.y107{bottom:291.066133pt;}
.yd4{bottom:293.604667pt;}
.y1a3{bottom:294.569067pt;}
.y147{bottom:296.158800pt;}
.y6a{bottom:296.423467pt;}
.y37{bottom:296.516267pt;}
.yac{bottom:300.759200pt;}
.y179{bottom:304.244667pt;}
.y1cd{bottom:305.759467pt;}
.y201{bottom:306.025467pt;}
.y106{bottom:308.394133pt;}
.y1a2{bottom:309.325067pt;}
.y146{bottom:310.908133pt;}
.yd3{bottom:310.932667pt;}
.y36{bottom:312.514267pt;}
.y69{bottom:313.751467pt;}
.yab{bottom:315.023200pt;}
.y178{bottom:321.572667pt;}
.y1cc{bottom:323.087467pt;}
.y200{bottom:323.353467pt;}
.y1a1{bottom:324.081067pt;}
.y145{bottom:325.667467pt;}
.y105{bottom:325.722133pt;}
.yd2{bottom:328.260667pt;}
.yaa{bottom:328.356533pt;}
.y35{bottom:328.512267pt;}
.y68{bottom:331.079467pt;}
.ya9{bottom:338.092533pt;}
.y1a0{bottom:338.837067pt;}
.y177{bottom:338.900667pt;}
.y144{bottom:339.948133pt;}
.y1cb{bottom:340.415467pt;}
.y1ff{bottom:340.681467pt;}
.y104{bottom:343.050133pt;}
.y34{bottom:344.510267pt;}
.yd1{bottom:345.588667pt;}
.y67{bottom:348.407467pt;}
.ya8{bottom:348.756533pt;}
.y19f{bottom:353.593067pt;}
.y143{bottom:354.696800pt;}
.y176{bottom:356.228667pt;}
.y1ca{bottom:357.743467pt;}
.y1fe{bottom:358.009467pt;}
.ya7{bottom:359.420533pt;}
.y103{bottom:360.378133pt;}
.y33{bottom:360.508267pt;}
.yd0{bottom:362.916667pt;}
.y19e{bottom:365.595733pt;}
.y66{bottom:365.735467pt;}
.y142{bottom:369.448667pt;}
.y272{bottom:371.761467pt;}
.ya6{bottom:372.756533pt;}
.y175{bottom:373.556667pt;}
.y23e{bottom:374.925467pt;}
.y1c9{bottom:375.071467pt;}
.y1fd{bottom:375.337467pt;}
.y32{bottom:376.506267pt;}
.y102{bottom:377.706133pt;}
.ycf{bottom:380.244667pt;}
.y19d{bottom:380.351733pt;}
.y65{bottom:383.063467pt;}
.y271{bottom:383.764133pt;}
.y141{bottom:384.693333pt;}
.y23d{bottom:386.928133pt;}
.ya5{bottom:389.089867pt;}
.y174{bottom:390.884667pt;}
.y1c8{bottom:392.399467pt;}
.y31{bottom:392.504267pt;}
.y1fc{bottom:392.665467pt;}
.y101{bottom:395.034133pt;}
.y19c{bottom:395.107733pt;}
.y270{bottom:395.766800pt;}
.yce{bottom:397.572667pt;}
.y23c{bottom:398.930800pt;}
.y140{bottom:399.452667pt;}
.y64{bottom:400.391467pt;}
.ya4{bottom:401.092533pt;}
.y26f{bottom:407.769467pt;}
.y30{bottom:408.502267pt;}
.y1c7{bottom:409.727467pt;}
.y19b{bottom:409.863733pt;}
.y1fb{bottom:409.993467pt;}
.y23b{bottom:410.933467pt;}
.y100{bottom:412.362133pt;}
.y13f{bottom:414.212000pt;}
.y173{bottom:414.884667pt;}
.ycd{bottom:414.900667pt;}
.ya3{bottom:415.848533pt;}
.y63{bottom:417.719467pt;}
.y26e{bottom:419.772133pt;}
.y23a{bottom:422.936133pt;}
.y2f{bottom:424.500267pt;}
.y19a{bottom:424.619733pt;}
.y1c6{bottom:427.055467pt;}
.y1fa{bottom:427.321467pt;}
.y13e{bottom:428.971333pt;}
.yff{bottom:429.690133pt;}
.ya2{bottom:430.609867pt;}
.y26d{bottom:431.774800pt;}
.ycc{bottom:432.228667pt;}
.y239{bottom:434.938800pt;}
.y62{bottom:435.047467pt;}
.y199{bottom:439.375733pt;}
.y2e{bottom:440.498267pt;}
.y13d{bottom:443.245333pt;}
.y26c{bottom:443.777467pt;}
.y1c5{bottom:444.383467pt;}
.y1f9{bottom:444.649467pt;}
.ya1{bottom:445.365867pt;}
.y172{bottom:446.900667pt;}
.y238{bottom:446.941467pt;}
.yfe{bottom:447.018133pt;}
.ycb{bottom:449.556667pt;}
.y61{bottom:452.375467pt;}
.y198{bottom:454.131733pt;}
.y26b{bottom:455.780133pt;}
.y2d{bottom:456.496267pt;}
.y13c{bottom:457.519333pt;}
.y237{bottom:458.944133pt;}
.ya0{bottom:460.121867pt;}
.y1c4{bottom:461.711467pt;}
.y1f8{bottom:461.977467pt;}
.y171{bottom:464.228667pt;}
.yfd{bottom:464.346133pt;}
.yca{bottom:466.884667pt;}
.y26a{bottom:467.782800pt;}
.y197{bottom:468.887733pt;}
.y60{bottom:469.703467pt;}
.y236{bottom:470.946800pt;}
.y13b{bottom:471.793333pt;}
.y2c{bottom:472.494267pt;}
.y114{bottom:473.748800pt;}
.y117{bottom:473.761467pt;}
.y9f{bottom:474.877867pt;}
.y1c3{bottom:479.039467pt;}
.y1f7{bottom:479.305467pt;}
.y269{bottom:479.785467pt;}
.y170{bottom:481.556667pt;}
.yfc{bottom:481.674133pt;}
.y235{bottom:482.949467pt;}
.y196{bottom:483.643733pt;}
.yc9{bottom:484.218000pt;}
.y13a{bottom:486.067333pt;}
.y5f{bottom:487.031467pt;}
.y9e{bottom:489.636533pt;}
.y113{bottom:491.076800pt;}
.y116{bottom:491.089467pt;}
.y268{bottom:491.788133pt;}
.y234{bottom:494.952133pt;}
.y1c2{bottom:496.367467pt;}
.y2b{bottom:496.497600pt;}
.y1f6{bottom:496.633467pt;}
.y195{bottom:498.399733pt;}
.y16f{bottom:498.959467pt;}
.yfb{bottom:499.002133pt;}
.y139{bottom:500.343867pt;}
.y267{bottom:503.790800pt;}
.y5e{bottom:504.359467pt;}
.y9d{bottom:504.392533pt;}
.y233{bottom:506.954800pt;}
.yc8{bottom:508.218000pt;}
.y112{bottom:508.404800pt;}
.y115{bottom:508.417467pt;}
.y194{bottom:513.155733pt;}
.y1c1{bottom:513.695467pt;}
.y1f5{bottom:513.961467pt;}
.y138{bottom:515.103200pt;}
.y266{bottom:515.793467pt;}
.y16e{bottom:516.287467pt;}
.yfa{bottom:516.330133pt;}
.y232{bottom:518.957467pt;}
.y9c{bottom:519.149867pt;}
.y5d{bottom:521.687467pt;}
.y2a{bottom:523.828267pt;}
.y265{bottom:527.796133pt;}
.y193{bottom:527.911733pt;}
.y137{bottom:529.377200pt;}
.y231{bottom:530.960133pt;}
.y1c0{bottom:531.023467pt;}
.y1f4{bottom:531.289467pt;}
.y16d{bottom:533.615467pt;}
.yf9{bottom:533.658133pt;}
.y9b{bottom:533.912400pt;}
.y29{bottom:535.828267pt;}
.y5c{bottom:539.015467pt;}
.y264{bottom:539.798800pt;}
.y230{bottom:542.962800pt;}
.y136{bottom:543.651200pt;}
.y192{bottom:546.671733pt;}
.y18c{bottom:546.681067pt;}
.y187{bottom:546.690400pt;}
.y28{bottom:547.828267pt;}
.y1bf{bottom:548.351467pt;}
.y1f3{bottom:548.617467pt;}
.y9a{bottom:548.668400pt;}
.y119{bottom:550.613333pt;}
.yc7{bottom:550.938133pt;}
.y16c{bottom:550.943467pt;}
.yf8{bottom:550.986133pt;}
.y263{bottom:551.801467pt;}
.y22f{bottom:554.965467pt;}
.y5b{bottom:556.343467pt;}
.y135{bottom:557.925200pt;}
.y191{bottom:558.674400pt;}
.y18b{bottom:558.683733pt;}
.y27{bottom:559.828267pt;}
.y262{bottom:563.804133pt;}
.y99{bottom:563.956400pt;}
.y1be{bottom:565.679467pt;}
.y1f2{bottom:565.945467pt;}
.y22e{bottom:566.968133pt;}
.yc6{bottom:568.266133pt;}
.y16b{bottom:568.271467pt;}
.yf7{bottom:568.314133pt;}
.y190{bottom:570.677067pt;}
.y18a{bottom:570.686400pt;}
.y26{bottom:571.828267pt;}
.y134{bottom:572.199200pt;}
.y5a{bottom:573.671467pt;}
.y261{bottom:575.806800pt;}
.y98{bottom:578.712400pt;}
.y22d{bottom:578.970800pt;}
.y18f{bottom:582.679733pt;}
.y189{bottom:582.689067pt;}
.y1bd{bottom:583.007467pt;}
.y1f1{bottom:583.273467pt;}
.y25{bottom:583.828267pt;}
.yc5{bottom:585.594133pt;}
.y16a{bottom:585.599467pt;}
.yf6{bottom:585.642133pt;}
.y133{bottom:586.473200pt;}
.y260{bottom:587.809467pt;}
.y22c{bottom:590.973467pt;}
.y59{bottom:590.999467pt;}
.y97{bottom:593.468400pt;}
.y18e{bottom:594.682400pt;}
.y188{bottom:594.691733pt;}
.y24{bottom:595.828267pt;}
.y25f{bottom:599.812133pt;}
.y1bc{bottom:600.335467pt;}
.y1f0{bottom:600.601467pt;}
.y132{bottom:600.747200pt;}
.yc4{bottom:602.922133pt;}
.y169{bottom:602.927467pt;}
.yf5{bottom:602.970133pt;}
.y22b{bottom:602.976133pt;}
.y18d{bottom:606.685067pt;}
.y58{bottom:608.327467pt;}
.y96{bottom:608.782667pt;}
.y25e{bottom:611.814800pt;}
.y23{bottom:612.030933pt;}
.y22a{bottom:614.978800pt;}
.y131{bottom:615.027867pt;}
.y1bb{bottom:617.663467pt;}
.y1ef{bottom:617.929467pt;}
.y22{bottom:619.828267pt;}
.yc3{bottom:620.250133pt;}
.y168{bottom:620.255467pt;}
.yf4{bottom:620.298133pt;}
.y95{bottom:623.538667pt;}
.y25d{bottom:623.817467pt;}
.y57{bottom:625.655467pt;}
.y229{bottom:626.981467pt;}
.y130{bottom:629.779733pt;}
.y21{bottom:631.828267pt;}
.y1ba{bottom:634.991467pt;}
.y1ee{bottom:635.257467pt;}
.y25c{bottom:635.820133pt;}
.y186{bottom:637.114400pt;}
.yc2{bottom:637.578133pt;}
.y167{bottom:637.583467pt;}
.yf3{bottom:637.626133pt;}
.y94{bottom:638.826667pt;}
.y228{bottom:638.984133pt;}
.y56{bottom:642.983467pt;}
.y20{bottom:643.828267pt;}
.y12f{bottom:644.539067pt;}
.y25b{bottom:647.822800pt;}
.y227{bottom:650.986800pt;}
.y1b9{bottom:652.319467pt;}
.y1ed{bottom:652.585467pt;}
.y93{bottom:653.582667pt;}
.yc1{bottom:654.906133pt;}
.y166{bottom:654.911467pt;}
.yf2{bottom:654.954133pt;}
.y1f{bottom:655.828267pt;}
.y12e{bottom:658.813067pt;}
.y25a{bottom:659.825467pt;}
.y55{bottom:660.311467pt;}
.y226{bottom:662.989467pt;}
.y1e{bottom:667.825600pt;}
.y92{bottom:668.338667pt;}
.y1b8{bottom:669.647467pt;}
.y1ec{bottom:669.913467pt;}
.y259{bottom:671.828133pt;}
.yc0{bottom:672.234133pt;}
.y165{bottom:672.239467pt;}
.yf1{bottom:672.282133pt;}
.y12d{bottom:673.581067pt;}
.y225{bottom:674.992133pt;}
.y1d{bottom:679.828267pt;}
.y91{bottom:683.094667pt;}
.y258{bottom:683.830800pt;}
.y54{bottom:684.311467pt;}
.y1b7{bottom:686.975467pt;}
.y224{bottom:686.994800pt;}
.y1eb{bottom:687.241467pt;}
.y12c{bottom:687.855067pt;}
.ybf{bottom:689.562133pt;}
.y164{bottom:689.567467pt;}
.yf0{bottom:689.610133pt;}
.y1c{bottom:691.828267pt;}
.y257{bottom:695.833467pt;}
.y90{bottom:697.850667pt;}
.y223{bottom:698.997467pt;}
.y12b{bottom:702.623067pt;}
.y1b{bottom:703.828267pt;}
.y1b6{bottom:704.303467pt;}
.y1ea{bottom:704.569467pt;}
.ybe{bottom:706.890133pt;}
.y163{bottom:706.895467pt;}
.yef{bottom:706.938133pt;}
.y256{bottom:707.836133pt;}
.y222{bottom:711.000133pt;}
.y8f{bottom:712.606667pt;}
.y1a{bottom:715.828267pt;}
.y12a{bottom:716.898133pt;}
.y255{bottom:719.838800pt;}
.y1b5{bottom:721.631467pt;}
.y53{bottom:721.724800pt;}
.y1e9{bottom:721.897467pt;}
.y221{bottom:723.002800pt;}
.ybc{bottom:724.223467pt;}
.yee{bottom:724.266133pt;}
.y8e{bottom:727.362667pt;}
.y19{bottom:727.828267pt;}
.ybd{bottom:729.918133pt;}
.y129{bottom:731.657467pt;}
.y254{bottom:731.841467pt;}
.y220{bottom:735.005467pt;}
.y1b4{bottom:738.959467pt;}
.y52{bottom:739.052800pt;}
.y1e8{bottom:739.225467pt;}
.y18{bottom:739.828267pt;}
.ybb{bottom:741.551467pt;}
.yed{bottom:741.594133pt;}
.y8d{bottom:742.118667pt;}
.y253{bottom:743.844133pt;}
.y128{bottom:746.426133pt;}
.y21f{bottom:749.672133pt;}
.y252{bottom:755.846800pt;}
.y17{bottom:756.031067pt;}
.y1b3{bottom:756.287467pt;}
.y51{bottom:756.380800pt;}
.y1e7{bottom:756.553467pt;}
.y8c{bottom:756.874667pt;}
.yba{bottom:758.884800pt;}
.yec{bottom:758.922133pt;}
.y127{bottom:761.192133pt;}
.y251{bottom:767.849467pt;}
.y16{bottom:769.164267pt;}
.y8b{bottom:771.630667pt;}
.y1b2{bottom:773.615467pt;}
.y50{bottom:773.708800pt;}
.y1e6{bottom:773.881467pt;}
.y126{bottom:775.966800pt;}
.yeb{bottom:776.250133pt;}
.y250{bottom:779.852133pt;}
.y15{bottom:782.497600pt;}
.y21e{bottom:783.005467pt;}
.y8a{bottom:786.386667pt;}
.y125{bottom:790.715333pt;}
.yb9{bottom:790.943467pt;}
.y162{bottom:791.006800pt;}
.y4f{bottom:791.036800pt;}
.y1e5{bottom:791.209467pt;}
.y24f{bottom:791.854800pt;}
.yea{bottom:793.578133pt;}
.y14{bottom:795.830933pt;}
.y21d{bottom:796.338800pt;}
.y89{bottom:801.142667pt;}
.y24e{bottom:803.857467pt;}
.y124{bottom:805.474667pt;}
.yb8{bottom:808.271467pt;}
.y161{bottom:808.334800pt;}
.y4e{bottom:808.364800pt;}
.y1e4{bottom:808.537467pt;}
.y13{bottom:809.164267pt;}
.y21c{bottom:809.672133pt;}
.ye9{bottom:810.906133pt;}
.y24d{bottom:815.860133pt;}
.y88{bottom:815.898667pt;}
.y123{bottom:819.748667pt;}
.y12{bottom:822.497600pt;}
.y21b{bottom:823.005467pt;}
.yb7{bottom:825.599467pt;}
.y160{bottom:825.662800pt;}
.y4d{bottom:825.692800pt;}
.y1e3{bottom:825.865467pt;}
.y24c{bottom:827.862800pt;}
.ye8{bottom:828.234133pt;}
.y87{bottom:830.654667pt;}
.y122{bottom:834.022667pt;}
.y21a{bottom:836.338800pt;}
.y24b{bottom:839.865467pt;}
.yb6{bottom:842.927467pt;}
.y15f{bottom:842.990800pt;}
.y4c{bottom:843.020800pt;}
.y1e2{bottom:843.193467pt;}
.y86{bottom:845.410667pt;}
.ye7{bottom:845.562133pt;}
.y11{bottom:846.489600pt;}
.y121{bottom:848.782000pt;}
.y219{bottom:849.672133pt;}
.y24a{bottom:851.868133pt;}
.y85{bottom:860.166667pt;}
.yb5{bottom:860.255467pt;}
.y15e{bottom:860.318800pt;}
.y4b{bottom:860.348800pt;}
.y1e1{bottom:860.521467pt;}
.ye6{bottom:862.890133pt;}
.y218{bottom:863.005467pt;}
.y120{bottom:863.056000pt;}
.y249{bottom:863.870800pt;}
.y84{bottom:874.922667pt;}
.y248{bottom:875.873467pt;}
.y217{bottom:876.338800pt;}
.y11f{bottom:877.330000pt;}
.yb4{bottom:877.583467pt;}
.y15d{bottom:877.646800pt;}
.y4a{bottom:877.676800pt;}
.y1e0{bottom:877.849467pt;}
.y10{bottom:878.493600pt;}
.ye5{bottom:880.218133pt;}
.y247{bottom:887.876133pt;}
.y216{bottom:889.672133pt;}
.y83{bottom:889.678667pt;}
.y11e{bottom:891.604000pt;}
.yb3{bottom:894.911467pt;}
.y15c{bottom:894.974800pt;}
.y49{bottom:895.004800pt;}
.y1df{bottom:895.177467pt;}
.ye4{bottom:897.551467pt;}
.y246{bottom:899.878800pt;}
.y215{bottom:903.005467pt;}
.y82{bottom:904.434667pt;}
.y11d{bottom:906.363333pt;}
.yf{bottom:910.497600pt;}
.y245{bottom:911.881467pt;}
.yb2{bottom:912.239467pt;}
.y15b{bottom:912.302800pt;}
.y48{bottom:912.332800pt;}
.y1de{bottom:912.505467pt;}
.y214{bottom:916.338800pt;}
.y81{bottom:919.190667pt;}
.y11c{bottom:920.637333pt;}
.y244{bottom:923.884133pt;}
.y42{bottom:924.973333pt;}
.ye3{bottom:929.556800pt;}
.yb1{bottom:929.567467pt;}
.y15a{bottom:929.630800pt;}
.y47{bottom:929.660800pt;}
.y213{bottom:929.672133pt;}
.y1dd{bottom:929.833467pt;}
.y80{bottom:933.946667pt;}
.y11b{bottom:934.911333pt;}
.y243{bottom:935.886800pt;}
.y212{bottom:943.005467pt;}
.ye2{bottom:946.890133pt;}
.yb0{bottom:946.895467pt;}
.y159{bottom:946.958800pt;}
.y46{bottom:946.988800pt;}
.y1dc{bottom:947.161467pt;}
.y242{bottom:947.889467pt;}
.y7f{bottom:952.706667pt;}
.y11a{bottom:953.189333pt;}
.y211{bottom:956.338800pt;}
.y241{bottom:959.892133pt;}
.yaf{bottom:964.223467pt;}
.y158{bottom:964.286800pt;}
.y45{bottom:964.316800pt;}
.ye1{bottom:964.330000pt;}
.y1db{bottom:964.489467pt;}
.y210{bottom:969.672133pt;}
.y240{bottom:971.894800pt;}
.y1{bottom:977.731600pt;}
.yae{bottom:981.551467pt;}
.y157{bottom:981.614800pt;}
.y44{bottom:981.644800pt;}
.ye0{bottom:981.658000pt;}
.y1da{bottom:981.817467pt;}
.y20f{bottom:983.005467pt;}
.y7e{bottom:983.130667pt;}
.y23f{bottom:983.897467pt;}
.y3{bottom:1006.343200pt;}
.h5{height:0.396267pt;}
.h1a{height:15.565440pt;}
.h7{height:18.307520pt;}
.h19{height:23.584000pt;}
.h1b{height:23.876160pt;}
.h1e{height:25.549333pt;}
.h2c{height:26.656000pt;}
.h12{height:27.514667pt;}
.h23{height:27.525333pt;}
.h6{height:27.738667pt;}
.h13{height:29.642667pt;}
.h3{height:30.464000pt;}
.hf{height:31.062500pt;}
.h2b{height:31.658667pt;}
.h11{height:32.213333pt;}
.h20{height:32.446560pt;}
.h22{height:32.460427pt;}
.h26{height:32.463093pt;}
.h25{height:32.468427pt;}
.h24{height:32.468960pt;}
.h21{height:32.471093pt;}
.h29{height:32.478560pt;}
.h28{height:32.480693pt;}
.h1f{height:32.481760pt;}
.h27{height:32.502560pt;}
.h10{height:33.637333pt;}
.h14{height:34.854613pt;}
.h15{height:34.933547pt;}
.h18{height:34.938347pt;}
.h17{height:34.949013pt;}
.h16{height:34.954347pt;}
.hd{height:35.118187pt;}
.hb{height:35.118720pt;}
.hc{height:35.128853pt;}
.h8{height:35.403200pt;}
.he{height:36.176000pt;}
.ha{height:40.460800pt;}
.h1c{height:46.228693pt;}
.h2a{height:46.376960pt;}
.h1d{height:46.654827pt;}
.h4{height:47.104000pt;}
.h2{height:47.168000pt;}
.h9{height:79.968000pt;}
.h1{height:1043.333333pt;}
.h0{height:1043.520000pt;}
.w0{width:792.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.466667pt;}
.x18{left:67.728000pt;}
.x16{left:72.133333pt;}
.x3{left:74.800000pt;}
.x1{left:76.133333pt;}
.x4{left:78.133333pt;}
.x17{left:83.464000pt;}
.xf{left:214.127867pt;}
.xc{left:221.874533pt;}
.xe{left:229.378533pt;}
.xd{left:230.713200pt;}
.x10{left:233.345200pt;}
.x15{left:260.551867pt;}
.x13{left:291.193200pt;}
.x11{left:294.067867pt;}
.x14{left:296.681200pt;}
.x12{left:305.762533pt;}
.xa{left:342.935733pt;}
.x7{left:348.800267pt;}
.x5{left:407.998667pt;}
.x19{left:410.261333pt;}
.x8{left:418.668533pt;}
.xb{left:420.666667pt;}
.x1a{left:425.997333pt;}
.x9{left:669.389867pt;}
.x6{left:762.440000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  