
    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_0be6b7c64b4d4dfb18776f0d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.115723;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_c5a8d9bc45769b59c2090b6b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.025879;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_2b02c9d953a6a300f962aeea.woff')format("woff");}.ff3{font-family:ff3;line-height:1.292969;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_140627a58e896f2f2473f4eb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.115723;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_a6d87f3a8aea784fc7614856.woff')format("woff");}.ff5{font-family:ff5;line-height:1.025879;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_ecaddeea62652f68076ff06d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.907715;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_a56765c87f31309c460ea4b3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.115723;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_838eec680e3650089a1a650d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.025879;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_1d57ac7c339e656cd290001d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.075195;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_2d04055b2f38d35bab53864f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.922852;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_c4ff85028e50dad24022d1d3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.880371;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_e0bff86a97efec3f74ef11c3.woff')format("woff");}.ffc{font-family:ffc;line-height:1.055664;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);}
.v3{vertical-align:-16.977000px;}
.v4{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.018000px;}
.v1{vertical-align:13.980000px;}
.v2{vertical-align:16.944000px;}
.ls78{letter-spacing:-8.487000px;}
.ls12{letter-spacing:-7.371000px;}
.ls49{letter-spacing:-6.555000px;}
.ls6b{letter-spacing:-6.003000px;}
.ls3a{letter-spacing:-5.382000px;}
.ls6c{letter-spacing:-5.244000px;}
.ls57{letter-spacing:-5.037000px;}
.ls4e{letter-spacing:-4.968000px;}
.ls7c{letter-spacing:-4.830000px;}
.ls5{letter-spacing:-4.473000px;}
.ls56{letter-spacing:-4.416000px;}
.ls5e{letter-spacing:-4.347000px;}
.ls28{letter-spacing:-4.278000px;}
.ls47{letter-spacing:-3.657000px;}
.ls95{letter-spacing:-3.213000px;}
.ls50{letter-spacing:-3.036000px;}
.lsa1{letter-spacing:-2.961000px;}
.ls63{letter-spacing:-2.898000px;}
.ls64{letter-spacing:-2.829000px;}
.ls71{letter-spacing:-2.760000px;}
.ls4f{letter-spacing:-2.691000px;}
.ls7b{letter-spacing:-2.622000px;}
.lsa2{letter-spacing:-2.520000px;}
.ls80{letter-spacing:-2.475000px;}
.ls48{letter-spacing:-2.415000px;}
.ls14{letter-spacing:-2.346000px;}
.ls4d{letter-spacing:-2.277000px;}
.ls6f{letter-spacing:-2.208000px;}
.ls9a{letter-spacing:-2.205000px;}
.ls9c{letter-spacing:-2.142000px;}
.ls3d{letter-spacing:-2.070000px;}
.lsa8{letter-spacing:-2.040000px;}
.ls33{letter-spacing:-2.001000px;}
.ls43{letter-spacing:-1.932000px;}
.ls31{letter-spacing:-1.863000px;}
.ls13{letter-spacing:-1.794000px;}
.ls5b{letter-spacing:-1.725000px;}
.ls9d{letter-spacing:-1.701000px;}
.ls4c{letter-spacing:-1.656000px;}
.ls24{letter-spacing:-1.587000px;}
.ls87{letter-spacing:-1.575000px;}
.ls51{letter-spacing:-1.518000px;}
.ls29{letter-spacing:-1.449000px;}
.ls88{letter-spacing:-1.386000px;}
.ls30{letter-spacing:-1.380000px;}
.ls93{letter-spacing:-1.323000px;}
.ls3f{letter-spacing:-1.311000px;}
.ls27{letter-spacing:-1.242000px;}
.ls92{letter-spacing:-1.197000px;}
.ls3c{letter-spacing:-1.173000px;}
.ls41{letter-spacing:-1.134000px;}
.ls1c{letter-spacing:-1.104000px;}
.ls85{letter-spacing:-1.071000px;}
.ls36{letter-spacing:-1.035000px;}
.ls8b{letter-spacing:-1.008000px;}
.ls37{letter-spacing:-0.966000px;}
.ls22{letter-spacing:-0.897000px;}
.ls89{letter-spacing:-0.882000px;}
.ls7d{letter-spacing:-0.864000px;}
.ls7{letter-spacing:-0.840000px;}
.ls59{letter-spacing:-0.828000px;}
.ls8d{letter-spacing:-0.819000px;}
.ls4b{letter-spacing:-0.759000px;}
.ls8a{letter-spacing:-0.756000px;}
.ls16{letter-spacing:-0.690000px;}
.ls8c{letter-spacing:-0.630000px;}
.ls32{letter-spacing:-0.621000px;}
.ls11{letter-spacing:-0.600000px;}
.ls99{letter-spacing:-0.567000px;}
.ls53{letter-spacing:-0.552000px;}
.ls66{letter-spacing:-0.540000px;}
.ls8f{letter-spacing:-0.504000px;}
.ls61{letter-spacing:-0.483000px;}
.ls98{letter-spacing:-0.441000px;}
.ls7e{letter-spacing:-0.432000px;}
.ls3b{letter-spacing:-0.414000px;}
.ls8e{letter-spacing:-0.378000px;}
.ls52{letter-spacing:-0.345000px;}
.ls2a{letter-spacing:-0.324000px;}
.ls9e{letter-spacing:-0.315000px;}
.lsa7{letter-spacing:-0.300000px;}
.ls40{letter-spacing:-0.276000px;}
.lsaa{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.225000px;}
.ls67{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.207000px;}
.ls2{letter-spacing:-0.189000px;}
.ls5a{letter-spacing:-0.138000px;}
.ls9b{letter-spacing:-0.126000px;}
.ls81{letter-spacing:-0.081000px;}
.ls5c{letter-spacing:-0.069000px;}
.ls86{letter-spacing:-0.063000px;}
.ls1{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000300px;}
.ls45{letter-spacing:0.002100px;}
.ls46{letter-spacing:0.003600px;}
.ls21{letter-spacing:0.006900px;}
.ls2c{letter-spacing:0.007500px;}
.ls2d{letter-spacing:0.010500px;}
.ls2e{letter-spacing:0.011100px;}
.ls74{letter-spacing:0.016800px;}
.ls73{letter-spacing:0.017400px;}
.ls26{letter-spacing:0.138000px;}
.ls2f{letter-spacing:0.150000px;}
.ls6d{letter-spacing:0.345000px;}
.ls39{letter-spacing:0.414000px;}
.ls58{letter-spacing:0.483000px;}
.ls18{letter-spacing:0.552000px;}
.ls42{letter-spacing:0.621000px;}
.ls20{letter-spacing:0.655500px;}
.ls6a{letter-spacing:0.675000px;}
.ls83{letter-spacing:0.819000px;}
.ls55{letter-spacing:0.825000px;}
.ls1d{letter-spacing:0.828000px;}
.lsa6{letter-spacing:0.900000px;}
.ls76{letter-spacing:0.972000px;}
.ls90{letter-spacing:1.008000px;}
.lse{letter-spacing:1.020000px;}
.ls62{letter-spacing:1.035000px;}
.ls15{letter-spacing:1.104000px;}
.ls91{letter-spacing:1.134000px;}
.ls4a{letter-spacing:1.173000px;}
.ls9f{letter-spacing:1.197000px;}
.ls75{letter-spacing:1.214100px;}
.ls6e{letter-spacing:1.242000px;}
.ls10{letter-spacing:1.259280px;}
.ls4{letter-spacing:1.260000px;}
.ls65{letter-spacing:1.311000px;}
.lsb{letter-spacing:1.344000px;}
.ls5d{letter-spacing:1.380000px;}
.ls19{letter-spacing:1.587000px;}
.ls60{letter-spacing:1.635300px;}
.lsa{letter-spacing:1.650000px;}
.ls77{letter-spacing:1.742346px;}
.ls25{letter-spacing:1.794000px;}
.ls72{letter-spacing:1.932000px;}
.ls69{letter-spacing:2.001000px;}
.lsc{letter-spacing:2.400000px;}
.ls70{letter-spacing:2.760000px;}
.ls34{letter-spacing:3.450000px;}
.lsf{letter-spacing:3.696000px;}
.ls7a{letter-spacing:4.002000px;}
.ls8{letter-spacing:4.200000px;}
.ls3e{letter-spacing:5.037000px;}
.lsa0{letter-spacing:5.292000px;}
.ls6{letter-spacing:5.760000px;}
.ls35{letter-spacing:5.865000px;}
.lsd{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.lsa3{letter-spacing:6.048000px;}
.ls97{letter-spacing:6.300000px;}
.ls79{letter-spacing:6.348000px;}
.ls38{letter-spacing:8.142000px;}
.ls84{letter-spacing:8.316000px;}
.lsa5{letter-spacing:8.640000px;}
.ls96{letter-spacing:8.820000px;}
.ls7f{letter-spacing:473.904000px;}
.lsa9{letter-spacing:475.081800px;}
.ls94{letter-spacing:476.506800px;}
.ls9{letter-spacing:501.175800px;}
.ls54{letter-spacing:501.970800px;}
.ls68{letter-spacing:502.158600px;}
.ls2b{letter-spacing:502.630800px;}
.ls1a{letter-spacing:503.043600px;}
.lsa4{letter-spacing:953.017800px;}
.ls82{letter-spacing:961.672800px;}
.ls0{letter-spacing:990.022800px;}
.ls1e{letter-spacing:990.517800px;}
.ls44{letter-spacing:993.142800px;}
.ls5f{letter-spacing:997.192800px;}
.ls17{letter-spacing:999.172800px;}
.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;}
}
.wsa3{word-spacing:-26.523000px;}
.wsb{word-spacing:-22.740000px;}
.ws9{word-spacing:-22.725000px;}
.ws8a{word-spacing:-22.680000px;}
.ws1{word-spacing:-22.620000px;}
.ws5c{word-spacing:-21.900000px;}
.ws75{word-spacing:-21.750000px;}
.ws24{word-spacing:-21.225000px;}
.ws18{word-spacing:-20.850000px;}
.ws49{word-spacing:-19.389000px;}
.ws89{word-spacing:-18.600000px;}
.ws2b{word-spacing:-18.492000px;}
.ws0{word-spacing:-18.120000px;}
.wsc{word-spacing:-17.880000px;}
.ws4e{word-spacing:-17.733000px;}
.ws8d{word-spacing:-17.703000px;}
.ws60{word-spacing:-17.526000px;}
.wsb4{word-spacing:-17.073000px;}
.ws30{word-spacing:-17.043000px;}
.ws6c{word-spacing:-16.905000px;}
.ws2f{word-spacing:-16.767000px;}
.ws4d{word-spacing:-16.698000px;}
.ws2c{word-spacing:-16.629000px;}
.ws76{word-spacing:-16.560000px;}
.ws4f{word-spacing:-16.422000px;}
.ws25{word-spacing:-16.353000px;}
.ws5d{word-spacing:-16.284000px;}
.ws29{word-spacing:-16.146000px;}
.ws28{word-spacing:-16.077000px;}
.ws27{word-spacing:-16.008000px;}
.ws2d{word-spacing:-15.870000px;}
.ws1b{word-spacing:-15.801000px;}
.ws4b{word-spacing:-15.732000px;}
.ws2e{word-spacing:-15.663000px;}
.ws1c{word-spacing:-15.594000px;}
.ws4c{word-spacing:-15.525000px;}
.ws8b{word-spacing:-15.498000px;}
.ws77{word-spacing:-15.456000px;}
.wse{word-spacing:-15.390000px;}
.ws5f{word-spacing:-15.387000px;}
.ws61{word-spacing:-15.318000px;}
.ws63{word-spacing:-15.249000px;}
.ws62{word-spacing:-15.180000px;}
.wsa5{word-spacing:-15.120000px;}
.ws31{word-spacing:-15.111000px;}
.ws26{word-spacing:-15.042000px;}
.ws5e{word-spacing:-14.973000px;}
.ws8e{word-spacing:-14.805000px;}
.ws4a{word-spacing:-14.766000px;}
.wsa4{word-spacing:-14.742000px;}
.wsf{word-spacing:-14.697000px;}
.ws48{word-spacing:-14.628000px;}
.wsba{word-spacing:-14.580000px;}
.ws80{word-spacing:-14.559000px;}
.ws8f{word-spacing:-14.553000px;}
.ws90{word-spacing:-14.364000px;}
.wsb9{word-spacing:-14.280000px;}
.ws91{word-spacing:-14.238000px;}
.ws8c{word-spacing:-13.986000px;}
.wsa7{word-spacing:-13.860000px;}
.ws2a{word-spacing:-13.572300px;}
.wsa6{word-spacing:-13.419000px;}
.wsa{word-spacing:-13.146000px;}
.ws6f{word-spacing:-13.122000px;}
.ws81{word-spacing:-12.906000px;}
.ws6e{word-spacing:-12.798000px;}
.ws6d{word-spacing:-11.303787px;}
.wsd{word-spacing:-11.088660px;}
.ws7f{word-spacing:-10.902000px;}
.wsb5{word-spacing:-8.640000px;}
.ws92{word-spacing:-8.316000px;}
.ws3b{word-spacing:-8.142000px;}
.ws84{word-spacing:-6.348000px;}
.wsaa{word-spacing:-6.300000px;}
.wsb3{word-spacing:-6.048000px;}
.ws4{word-spacing:-6.000000px;}
.ws3a{word-spacing:-5.865000px;}
.wsb0{word-spacing:-5.292000px;}
.ws41{word-spacing:-5.037000px;}
.ws8{word-spacing:-4.200000px;}
.ws85{word-spacing:-4.002000px;}
.ws11{word-spacing:-3.696000px;}
.ws37{word-spacing:-3.450000px;}
.ws7d{word-spacing:-2.760000px;}
.ws10{word-spacing:-2.400000px;}
.ws20{word-spacing:-1.794000px;}
.ws17{word-spacing:-1.587000px;}
.ws9e{word-spacing:-1.386000px;}
.ws6b{word-spacing:-1.380000px;}
.ws74{word-spacing:-1.311000px;}
.ws6{word-spacing:-1.260000px;}
.ws7b{word-spacing:-1.242000px;}
.wsaf{word-spacing:-1.197000px;}
.ws53{word-spacing:-1.173000px;}
.wsa0{word-spacing:-1.134000px;}
.ws14{word-spacing:-1.104000px;}
.ws93{word-spacing:-1.071000px;}
.ws71{word-spacing:-1.035000px;}
.ws9d{word-spacing:-1.008000px;}
.ws82{word-spacing:-0.966000px;}
.wsb6{word-spacing:-0.900000px;}
.ws1a{word-spacing:-0.828000px;}
.ws44{word-spacing:-0.621000px;}
.ws16{word-spacing:-0.552000px;}
.ws3d{word-spacing:-0.414000px;}
.ws99{word-spacing:-0.378000px;}
.ws7a{word-spacing:-0.345000px;}
.ws47{word-spacing:-0.276000px;}
.ws21{word-spacing:-0.138000px;}
.ws2{word-spacing:0.000000px;}
.ws9f{word-spacing:0.063000px;}
.ws69{word-spacing:0.069000px;}
.wsad{word-spacing:0.126000px;}
.ws68{word-spacing:0.138000px;}
.ws3{word-spacing:0.189000px;}
.ws1e{word-spacing:0.207000px;}
.ws6a{word-spacing:0.276000px;}
.wsb7{word-spacing:0.300000px;}
.wsae{word-spacing:0.315000px;}
.ws23{word-spacing:0.324000px;}
.ws5a{word-spacing:0.345000px;}
.ws9b{word-spacing:0.378000px;}
.ws3f{word-spacing:0.414000px;}
.ws70{word-spacing:0.483000px;}
.ws9c{word-spacing:0.504000px;}
.ws5b{word-spacing:0.552000px;}
.wsab{word-spacing:0.567000px;}
.ws12{word-spacing:0.600000px;}
.ws35{word-spacing:0.621000px;}
.ws95{word-spacing:0.630000px;}
.ws15{word-spacing:0.690000px;}
.wsa9{word-spacing:0.756000px;}
.ws54{word-spacing:0.759000px;}
.ws9a{word-spacing:0.819000px;}
.ws66{word-spacing:0.828000px;}
.ws7{word-spacing:0.840000px;}
.ws88{word-spacing:0.864000px;}
.ws98{word-spacing:0.882000px;}
.ws1d{word-spacing:0.897000px;}
.ws45{word-spacing:0.966000px;}
.wsa2{word-spacing:1.008000px;}
.ws46{word-spacing:1.035000px;}
.ws94{word-spacing:1.071000px;}
.ws19{word-spacing:1.104000px;}
.ws43{word-spacing:1.134000px;}
.ws51{word-spacing:1.173000px;}
.ws36{word-spacing:1.242000px;}
.ws42{word-spacing:1.311000px;}
.ws32{word-spacing:1.380000px;}
.ws96{word-spacing:1.386000px;}
.ws39{word-spacing:1.449000px;}
.ws64{word-spacing:1.518000px;}
.ws1f{word-spacing:1.587000px;}
.wsa1{word-spacing:1.638000px;}
.ws55{word-spacing:1.656000px;}
.ws34{word-spacing:1.725000px;}
.ws13{word-spacing:1.794000px;}
.ws33{word-spacing:1.863000px;}
.ws38{word-spacing:2.001000px;}
.wsb8{word-spacing:2.040000px;}
.ws40{word-spacing:2.070000px;}
.wsac{word-spacing:2.205000px;}
.ws7c{word-spacing:2.208000px;}
.wsb2{word-spacing:2.520000px;}
.ws86{word-spacing:2.622000px;}
.ws58{word-spacing:2.691000px;}
.ws7e{word-spacing:2.760000px;}
.ws73{word-spacing:2.829000px;}
.ws72{word-spacing:2.898000px;}
.wsb1{word-spacing:2.961000px;}
.ws59{word-spacing:3.036000px;}
.wsa8{word-spacing:3.213000px;}
.ws50{word-spacing:3.657000px;}
.ws22{word-spacing:4.278000px;}
.ws56{word-spacing:4.347000px;}
.ws67{word-spacing:4.416000px;}
.ws5{word-spacing:4.473000px;}
.ws83{word-spacing:4.830000px;}
.ws57{word-spacing:4.968000px;}
.ws65{word-spacing:5.037000px;}
.ws79{word-spacing:5.244000px;}
.ws3e{word-spacing:5.382000px;}
.ws78{word-spacing:6.003000px;}
.ws3c{word-spacing:6.486000px;}
.ws52{word-spacing:6.555000px;}
.ws97{word-spacing:7.686000px;}
.ws87{word-spacing:43.445160px;}
._1a{margin-left:-11.074800px;}
._16{margin-left:-9.763500px;}
._d{margin-left:-8.326500px;}
._c{margin-left:-6.573300px;}
._e{margin-left:-5.231700px;}
._b{margin-left:-4.190400px;}
._2{margin-left:-2.600100px;}
._8{margin-left:-1.002000px;}
._3{width:1.278900px;}
._1{width:2.400000px;}
._9{width:3.987900px;}
._7{width:5.313000px;}
._4{width:6.339300px;}
._5{width:7.534800px;}
._a{width:8.645100px;}
._6{width:9.663600px;}
._11{width:10.916100px;}
._12{width:12.913200px;}
._13{width:14.184000px;}
._15{width:16.348200px;}
._17{width:17.953800px;}
._19{width:26.398500px;}
._18{width:27.460200px;}
._1d{width:28.478700px;}
._1c{width:32.767200px;}
._1b{width:38.770200px;}
._14{width:43.445160px;}
._f{width:71.400000px;}
._10{width:253.008000px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:31.482000px;}
.fs8{font-size:34.980000px;}
.fsb{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:48.300000px;}
.fse{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y40{bottom:106.128750px;}
.y8f{bottom:106.165350px;}
.y153{bottom:106.253250px;}
.y115{bottom:106.268550px;}
.y68{bottom:106.268850px;}
.yf8{bottom:106.271700px;}
.yd4{bottom:106.276200px;}
.yb0{bottom:106.290300px;}
.y1b{bottom:106.292550px;}
.y17a{bottom:106.296300px;}
.y19b{bottom:106.299000px;}
.y1f7{bottom:106.349850px;}
.y1bc{bottom:106.355100px;}
.y1db{bottom:106.402350px;}
.y136{bottom:109.294800px;}
.y179{bottom:123.540300px;}
.yaf{bottom:123.543300px;}
.y8e{bottom:126.589350px;}
.y1f6{bottom:126.614850px;}
.y152{bottom:126.625500px;}
.y114{bottom:126.640800px;}
.yd3{bottom:126.648450px;}
.yf7{bottom:126.695700px;}
.y3f{bottom:126.846000px;}
.y1bb{bottom:126.908850px;}
.y67{bottom:127.227600px;}
.y135{bottom:127.792200px;}
.y19a{bottom:128.482500px;}
.y1a{bottom:130.382550px;}
.y178{bottom:140.793300px;}
.yae{bottom:140.796300px;}
.y134{bottom:145.045200px;}
.y1f5{bottom:146.879850px;}
.y151{bottom:146.997750px;}
.y113{bottom:147.013050px;}
.y8d{bottom:147.013350px;}
.yd2{bottom:147.020700px;}
.yf6{bottom:147.119700px;}
.y3e{bottom:147.563250px;}
.y66{bottom:148.186350px;}
.y199{bottom:150.666000px;}
.y19{bottom:154.417500px;}
.y1da{bottom:155.920350px;}
.y1ba{bottom:155.967600px;}
.y177{bottom:158.046300px;}
.yad{bottom:161.044800px;}
.y133{bottom:162.298200px;}
.y1f4{bottom:167.144850px;}
.y150{bottom:167.370000px;}
.y112{bottom:167.385300px;}
.yd1{bottom:167.392950px;}
.y8c{bottom:167.437350px;}
.yf5{bottom:167.543700px;}
.y3d{bottom:168.280500px;}
.y65{bottom:169.145100px;}
.y198{bottom:172.849500px;}
.y176{bottom:175.299300px;}
.y1d9{bottom:176.426850px;}
.y1b9{bottom:176.521350px;}
.y18{bottom:177.007500px;}
.y175{bottom:178.294800px;}
.yac{bottom:182.546700px;}
.y1f3{bottom:187.409850px;}
.y111{bottom:187.688400px;}
.y14f{bottom:187.742250px;}
.y8b{bottom:187.861350px;}
.yf4{bottom:187.967700px;}
.y3c{bottom:188.997750px;}
.y64{bottom:190.103850px;}
.y17{bottom:199.597500px;}
.y1d8{bottom:205.438350px;}
.y1b8{bottom:205.580100px;}
.y1f2{bottom:207.674850px;}
.y110{bottom:208.060650px;}
.y14e{bottom:208.114500px;}
.y8a{bottom:208.285350px;}
.yf3{bottom:208.391700px;}
.yd0{bottom:209.017350px;}
.y3b{bottom:209.715000px;}
.y63{bottom:211.062600px;}
.y197{bottom:216.292800px;}
.y16{bottom:222.187500px;}
.y174{bottom:222.349650px;}
.y1d7{bottom:225.944850px;}
.y1b7{bottom:226.133850px;}
.yab{bottom:226.573200px;}
.y132{bottom:226.586400px;}
.y1f1{bottom:227.939850px;}
.y10f{bottom:228.432900px;}
.y14d{bottom:228.448350px;}
.y89{bottom:228.709350px;}
.yf2{bottom:228.815700px;}
.y3a{bottom:230.432250px;}
.y62{bottom:232.021350px;}
.y173{bottom:242.963400px;}
.y15{bottom:244.777500px;}
.y1b6{bottom:246.687600px;}
.y131{bottom:247.458900px;}
.y1f0{bottom:248.204850px;}
.yaa{bottom:248.325450px;}
.y10e{bottom:248.805150px;}
.y14c{bottom:248.820600px;}
.y88{bottom:249.133350px;}
.yf1{bottom:249.239700px;}
.y39{bottom:251.149500px;}
.y61{bottom:252.980100px;}
.y1d6{bottom:254.956350px;}
.y172{bottom:263.577150px;}
.y1b5{bottom:267.241350px;}
.y14{bottom:267.367500px;}
.y130{bottom:268.331400px;}
.y1ef{bottom:268.469850px;}
.y10d{bottom:269.177400px;}
.y14b{bottom:269.192850px;}
.y87{bottom:269.557350px;}
.yf0{bottom:269.653500px;}
.ya9{bottom:270.077700px;}
.ycf{bottom:271.368900px;}
.y38{bottom:271.866750px;}
.y60{bottom:273.938850px;}
.y1d5{bottom:275.462850px;}
.y196{bottom:280.492050px;}
.y171{bottom:284.190900px;}
.y1b4{bottom:287.795100px;}
.y1ee{bottom:288.734850px;}
.y12f{bottom:289.203900px;}
.y10c{bottom:289.549650px;}
.y14a{bottom:289.565100px;}
.y13{bottom:289.957500px;}
.y86{bottom:289.981350px;}
.yef{bottom:290.077500px;}
.yce{bottom:291.741150px;}
.ya8{bottom:291.829950px;}
.y37{bottom:292.584000px;}
.y5f{bottom:294.897600px;}
.y195{bottom:302.675550px;}
.y1d4{bottom:304.474350px;}
.y170{bottom:304.804650px;}
.y1ed{bottom:308.999850px;}
.y10b{bottom:309.921900px;}
.y149{bottom:309.937350px;}
.y12e{bottom:310.076400px;}
.y85{bottom:310.405350px;}
.yee{bottom:310.501500px;}
.ycd{bottom:312.113400px;}
.y12{bottom:312.547500px;}
.y36{bottom:313.301250px;}
.ya7{bottom:313.582200px;}
.y5e{bottom:315.856350px;}
.y1b3{bottom:316.853850px;}
.y194{bottom:324.859050px;}
.y1d3{bottom:324.980850px;}
.y16f{bottom:325.418400px;}
.y1ec{bottom:329.264850px;}
.y148{bottom:330.271200px;}
.y10a{bottom:330.294150px;}
.y84{bottom:330.829350px;}
.yed{bottom:330.918600px;}
.y12d{bottom:330.948900px;}
.ycc{bottom:332.485650px;}
.y35{bottom:334.018500px;}
.ya6{bottom:335.334450px;}
.y5d{bottom:336.815100px;}
.y1b2{bottom:337.407600px;}
.y16e{bottom:346.032150px;}
.y193{bottom:347.042550px;}
.y11{bottom:347.887500px;}
.y1eb{bottom:349.529850px;}
.y147{bottom:350.643450px;}
.y109{bottom:350.666400px;}
.y83{bottom:351.253350px;}
.yec{bottom:351.342600px;}
.y12c{bottom:351.821400px;}
.ycb{bottom:352.781100px;}
.y1d2{bottom:353.992350px;}
.y34{bottom:354.735750px;}
.y5c{bottom:357.773850px;}
.y1b1{bottom:366.466350px;}
.y16d{bottom:366.645900px;}
.y192{bottom:369.226050px;}
.y1ea{bottom:369.794850px;}
.y108{bottom:370.977300px;}
.y146{bottom:371.015700px;}
.y82{bottom:371.677350px;}
.yeb{bottom:371.728800px;}
.y12b{bottom:372.693900px;}
.yca{bottom:373.153350px;}
.y1d1{bottom:374.498850px;}
.y33{bottom:375.453000px;}
.ya5{bottom:378.357300px;}
.y5b{bottom:378.732600px;}
.y1b0{bottom:387.020100px;}
.y16c{bottom:387.259650px;}
.y1e9{bottom:390.059850px;}
.y107{bottom:391.349550px;}
.y145{bottom:391.387950px;}
.y191{bottom:391.409550px;}
.y81{bottom:392.101350px;}
.yea{bottom:392.152800px;}
.yc9{bottom:393.525600px;}
.y12a{bottom:393.566400px;}
.y32{bottom:396.170250px;}
.y5a{bottom:399.691350px;}
.y1d0{bottom:403.510350px;}
.ya4{bottom:403.852050px;}
.y16b{bottom:407.955000px;}
.y10{bottom:408.718800px;}
.y1e8{bottom:410.324850px;}
.y106{bottom:411.721800px;}
.y144{bottom:411.760200px;}
.y80{bottom:412.525350px;}
.ye9{bottom:412.576800px;}
.y190{bottom:413.593050px;}
.yc8{bottom:413.897850px;}
.y129{bottom:414.438900px;}
.y1af{bottom:416.078850px;}
.y31{bottom:416.887500px;}
.y59{bottom:420.650100px;}
.y16a{bottom:428.568750px;}
.y1e7{bottom:430.589850px;}
.y105{bottom:432.094050px;}
.y143{bottom:432.132450px;}
.y1cf{bottom:432.521850px;}
.y7f{bottom:432.949350px;}
.ye8{bottom:433.000800px;}
.yc7{bottom:434.270100px;}
.y128{bottom:435.311400px;}
.y18f{bottom:435.776550px;}
.y1ae{bottom:436.632600px;}
.y30{bottom:437.604750px;}
.yf{bottom:438.811800px;}
.y58{bottom:441.608850px;}
.y169{bottom:449.182500px;}
.y1e6{bottom:450.854850px;}
.y104{bottom:452.466300px;}
.y1ce{bottom:453.028350px;}
.y7e{bottom:453.373350px;}
.ye7{bottom:453.424800px;}
.yc6{bottom:454.642350px;}
.y127{bottom:456.195450px;}
.y18e{bottom:457.960050px;}
.y2f{bottom:458.322000px;}
.y57{bottom:462.567600px;}
.y1ad{bottom:465.691350px;}
.ya3{bottom:467.656350px;}
.ye{bottom:468.904800px;}
.y168{bottom:469.796250px;}
.y103{bottom:472.838550px;}
.y142{bottom:473.756850px;}
.y7d{bottom:473.797350px;}
.ye6{bottom:473.848800px;}
.yc5{bottom:475.014600px;}
.y126{bottom:477.067950px;}
.y2e{bottom:479.039250px;}
.y18d{bottom:480.143550px;}
.y1cd{bottom:482.039850px;}
.y56{bottom:483.526350px;}
.y1e5{bottom:483.884850px;}
.y1ac{bottom:486.245100px;}
.ya2{bottom:489.408600px;}
.y167{bottom:490.410000px;}
.y102{bottom:493.210800px;}
.y7c{bottom:494.221350px;}
.ye5{bottom:494.272800px;}
.yc4{bottom:495.386850px;}
.y125{bottom:497.940450px;}
.y2d{bottom:499.756500px;}
.y18c{bottom:502.327050px;}
.y1cc{bottom:502.546350px;}
.y55{bottom:504.485100px;}
.y166{bottom:511.023750px;}
.ya1{bottom:511.160850px;}
.y101{bottom:513.583050px;}
.y7b{bottom:514.645350px;}
.ye4{bottom:514.696800px;}
.y1ab{bottom:515.303850px;}
.yc3{bottom:515.759100px;}
.y124{bottom:518.812950px;}
.yd{bottom:520.236600px;}
.y2c{bottom:520.473750px;}
.y18b{bottom:524.510550px;}
.y54{bottom:525.443850px;}
.y1cb{bottom:531.557850px;}
.y165{bottom:531.637500px;}
.ya0{bottom:532.913100px;}
.y100{bottom:533.947500px;}
.y7a{bottom:535.069350px;}
.ye3{bottom:535.120800px;}
.y1aa{bottom:535.857600px;}
.yc2{bottom:536.131350px;}
.y123{bottom:539.685450px;}
.y2b{bottom:541.191000px;}
.y1e4{bottom:542.433450px;}
.y53{bottom:546.402600px;}
.y18a{bottom:546.694050px;}
.y1ca{bottom:552.064350px;}
.y164{bottom:552.251250px;}
.yff{bottom:554.319750px;}
.y9f{bottom:554.665350px;}
.yc{bottom:554.823600px;}
.y79{bottom:555.493350px;}
.ye2{bottom:555.544800px;}
.y1a9{bottom:556.411350px;}
.y141{bottom:556.419300px;}
.yc1{bottom:556.457550px;}
.y122{bottom:560.557950px;}
.y2a{bottom:561.908250px;}
.y52{bottom:567.361350px;}
.y189{bottom:568.877550px;}
.y1e3{bottom:570.195450px;}
.y1c9{bottom:572.570850px;}
.y163{bottom:572.865000px;}
.y78{bottom:575.917350px;}
.ye1{bottom:575.968800px;}
.y9e{bottom:576.417600px;}
.y140{bottom:576.791550px;}
.yc0{bottom:576.829800px;}
.y1a8{bottom:576.965100px;}
.y121{bottom:581.438250px;}
.y29{bottom:582.625500px;}
.y51{bottom:588.320100px;}
.yb{bottom:589.410600px;}
.y188{bottom:591.061050px;}
.y1c8{bottom:593.077350px;}
.y162{bottom:593.478750px;}
.yfe{bottom:595.944150px;}
.y77{bottom:596.341350px;}
.ye0{bottom:596.351700px;}
.y13f{bottom:597.163800px;}
.ybf{bottom:597.202050px;}
.y1e2{bottom:597.957450px;}
.y9d{bottom:598.169850px;}
.y120{bottom:602.310750px;}
.y28{bottom:603.342750px;}
.y1a7{bottom:606.023850px;}
.y50{bottom:609.278850px;}
.y187{bottom:613.244550px;}
.y161{bottom:614.092500px;}
.y76{bottom:616.765350px;}
.ydf{bottom:616.775700px;}
.y13e{bottom:617.536050px;}
.ybe{bottom:617.574300px;}
.y9c{bottom:619.922100px;}
.y1c7{bottom:622.088850px;}
.y11f{bottom:623.183250px;}
.ya{bottom:623.997600px;}
.y27{bottom:624.060000px;}
.y1a6{bottom:626.577600px;}
.y4f{bottom:630.237600px;}
.y160{bottom:634.706250px;}
.y186{bottom:635.428050px;}
.y75{bottom:637.189350px;}
.yde{bottom:637.199700px;}
.y13d{bottom:637.908300px;}
.ybd{bottom:637.946550px;}
.y9b{bottom:641.674350px;}
.y1c6{bottom:642.595350px;}
.y11e{bottom:644.055750px;}
.y4e{bottom:651.196350px;}
.y15f{bottom:655.320000px;}
.y1a5{bottom:655.636350px;}
.y201{bottom:655.692750px;}
.y185{bottom:657.611550px;}
.y74{bottom:657.613350px;}
.ydd{bottom:657.623700px;}
.y13c{bottom:658.280550px;}
.yfd{bottom:658.288050px;}
.ybc{bottom:658.318800px;}
.y1c5{bottom:663.101850px;}
.y9a{bottom:663.426600px;}
.y11d{bottom:664.930200px;}
.y26{bottom:666.030150px;}
.y4d{bottom:672.155100px;}
.y15e{bottom:675.933750px;}
.y200{bottom:675.942750px;}
.y1a4{bottom:676.190100px;}
.y73{bottom:678.037350px;}
.ydc{bottom:678.047700px;}
.y13b{bottom:678.652800px;}
.yfc{bottom:678.660300px;}
.ybb{bottom:678.683400px;}
.y184{bottom:679.795050px;}
.y1c4{bottom:683.608350px;}
.y99{bottom:685.178850px;}
.y11c{bottom:685.804650px;}
.y9{bottom:688.345050px;}
.y4c{bottom:693.113850px;}
.y1ff{bottom:696.192750px;}
.y15d{bottom:696.547500px;}
.y72{bottom:698.461350px;}
.ydb{bottom:698.471700px;}
.y13a{bottom:699.025050px;}
.yfb{bottom:699.032550px;}
.yba{bottom:699.048000px;}
.y183{bottom:701.978550px;}
.y1a3{bottom:705.248850px;}
.y11b{bottom:706.679100px;}
.y98{bottom:706.931100px;}
.y8{bottom:712.435050px;}
.y1c3{bottom:712.619850px;}
.y4b{bottom:714.072600px;}
.y1fe{bottom:716.442750px;}
.y15c{bottom:717.161250px;}
.y71{bottom:718.885350px;}
.yda{bottom:718.895700px;}
.y139{bottom:719.397300px;}
.yfa{bottom:719.404800px;}
.yb9{bottom:719.412600px;}
.y182{bottom:724.162050px;}
.y1a2{bottom:725.802600px;}
.y11a{bottom:727.551600px;}
.y97{bottom:728.683350px;}
.y25{bottom:728.753850px;}
.y1e1{bottom:731.110350px;}
.y1c2{bottom:733.126350px;}
.y4a{bottom:735.031350px;}
.y15b{bottom:737.775000px;}
.y70{bottom:739.309350px;}
.yd9{bottom:739.319700px;}
.yb8{bottom:739.723350px;}
.y138{bottom:739.769550px;}
.yf9{bottom:739.777050px;}
.y7{bottom:745.015050px;}
.y181{bottom:746.345550px;}
.y1fd{bottom:749.442750px;}
.y24{bottom:750.218850px;}
.y96{bottom:750.435600px;}
.y1c1{bottom:753.632850px;}
.y1a1{bottom:754.861350px;}
.y49{bottom:755.990100px;}
.y15a{bottom:758.388750px;}
.y6f{bottom:759.733350px;}
.yd8{bottom:759.743700px;}
.yb7{bottom:760.095600px;}
.y137{bottom:760.141800px;}
.y1e0{bottom:760.625850px;}
.y180{bottom:768.529050px;}
.y6{bottom:769.098300px;}
.y119{bottom:769.686750px;}
.y1fc{bottom:769.692750px;}
.y23{bottom:771.657750px;}
.y95{bottom:772.187850px;}
.y48{bottom:776.948850px;}
.y159{bottom:779.002500px;}
.y6e{bottom:780.157350px;}
.yd7{bottom:780.167700px;}
.yb6{bottom:780.467850px;}
.y1df{bottom:781.636350px;}
.y1c0{bottom:782.644350px;}
.y1a0{bottom:783.920100px;}
.y1fb{bottom:789.942750px;}
.y17f{bottom:790.712550px;}
.y22{bottom:791.622750px;}
.y94{bottom:793.940100px;}
.y118{bottom:794.310750px;}
.y47{bottom:797.907600px;}
.y158{bottom:799.616250px;}
.y6d{bottom:800.581350px;}
.yd6{bottom:800.591700px;}
.yb5{bottom:800.840100px;}
.y1bf{bottom:803.150850px;}
.y19f{bottom:804.473850px;}
.y1fa{bottom:810.192750px;}
.y1de{bottom:811.151850px;}
.y21{bottom:811.587750px;}
.y17e{bottom:812.896050px;}
.y93{bottom:815.692350px;}
.y46{bottom:818.866350px;}
.y117{bottom:818.934750px;}
.y157{bottom:820.230000px;}
.y6c{bottom:821.005350px;}
.yd5{bottom:821.015700px;}
.yb4{bottom:821.212350px;}
.y5{bottom:822.945750px;}
.y19e{bottom:825.027600px;}
.y20{bottom:831.552750px;}
.y1be{bottom:832.162350px;}
.y17d{bottom:835.079550px;}
.y92{bottom:837.444600px;}
.y45{bottom:839.825100px;}
.y156{bottom:840.860100px;}
.y6b{bottom:841.429350px;}
.yb3{bottom:841.584600px;}
.y1f9{bottom:843.192750px;}
.y4{bottom:847.035750px;}
.y1f{bottom:851.517750px;}
.y19d{bottom:854.086350px;}
.y17c{bottom:857.263050px;}
.y91{bottom:859.196850px;}
.y44{bottom:860.783850px;}
.y155{bottom:861.473850px;}
.y1dd{bottom:861.677850px;}
.y6a{bottom:861.853350px;}
.yb2{bottom:861.956850px;}
.y1e{bottom:871.482750px;}
.y19c{bottom:874.640100px;}
.y3{bottom:879.615750px;}
.y90{bottom:880.949100px;}
.y43{bottom:881.742600px;}
.y116{bottom:881.828850px;}
.y154{bottom:882.087600px;}
.y69{bottom:882.277350px;}
.yb1{bottom:882.329100px;}
.y1dc{bottom:882.688350px;}
.y1bd{bottom:883.192350px;}
.y1f8{bottom:884.697750px;}
.y17b{bottom:900.706200px;}
.y42{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1d{bottom:904.197750px;}
.y1c{bottom:948.189000px;}
.y41{bottom:966.189000px;}
.h1b{height:24.964242px;}
.h7{height:40.757812px;}
.hc{height:43.942805px;}
.hd{height:45.852539px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h1c{height:55.924805px;}
.h1d{height:55.960805px;}
.ha{height:58.589355px;}
.h15{height:58.630155px;}
.h13{height:58.740555px;}
.h19{height:58.865955px;}
.h1f{height:62.138672px;}
.h2{height:63.684082px;}
.h1e{height:65.245605px;}
.h8{height:68.778809px;}
.h6{height:71.326172px;}
.hb{height:71.426473px;}
.h9{height:71.459473px;}
.h14{height:71.487073px;}
.he{height:71.490073px;}
.h17{height:71.490673px;}
.h11{height:71.500873px;}
.h10{height:71.551273px;}
.h12{height:71.623873px;}
.h16{height:71.674273px;}
.h18{height:71.704873px;}
.hf{height:71.766673px;}
.h1a{height:71.796673px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:80.920800px;}
.x8{left:82.551300px;}
.x6{left:83.619750px;}
.x1{left:85.039350px;}
.x9{left:103.751550px;}
.x5{left:105.030600px;}
.x4{left:106.365600px;}
.x2{left:232.076250px;}
.x3{left:233.523450px;}
@media print{
.v3{vertical-align:-15.090667pt;}
.v4{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.682667pt;}
.v1{vertical-align:12.426667pt;}
.v2{vertical-align:15.061333pt;}
.ls78{letter-spacing:-7.544000pt;}
.ls12{letter-spacing:-6.552000pt;}
.ls49{letter-spacing:-5.826667pt;}
.ls6b{letter-spacing:-5.336000pt;}
.ls3a{letter-spacing:-4.784000pt;}
.ls6c{letter-spacing:-4.661333pt;}
.ls57{letter-spacing:-4.477333pt;}
.ls4e{letter-spacing:-4.416000pt;}
.ls7c{letter-spacing:-4.293333pt;}
.ls5{letter-spacing:-3.976000pt;}
.ls56{letter-spacing:-3.925333pt;}
.ls5e{letter-spacing:-3.864000pt;}
.ls28{letter-spacing:-3.802667pt;}
.ls47{letter-spacing:-3.250667pt;}
.ls95{letter-spacing:-2.856000pt;}
.ls50{letter-spacing:-2.698667pt;}
.lsa1{letter-spacing:-2.632000pt;}
.ls63{letter-spacing:-2.576000pt;}
.ls64{letter-spacing:-2.514667pt;}
.ls71{letter-spacing:-2.453333pt;}
.ls4f{letter-spacing:-2.392000pt;}
.ls7b{letter-spacing:-2.330667pt;}
.lsa2{letter-spacing:-2.240000pt;}
.ls80{letter-spacing:-2.200000pt;}
.ls48{letter-spacing:-2.146667pt;}
.ls14{letter-spacing:-2.085333pt;}
.ls4d{letter-spacing:-2.024000pt;}
.ls6f{letter-spacing:-1.962667pt;}
.ls9a{letter-spacing:-1.960000pt;}
.ls9c{letter-spacing:-1.904000pt;}
.ls3d{letter-spacing:-1.840000pt;}
.lsa8{letter-spacing:-1.813333pt;}
.ls33{letter-spacing:-1.778667pt;}
.ls43{letter-spacing:-1.717333pt;}
.ls31{letter-spacing:-1.656000pt;}
.ls13{letter-spacing:-1.594667pt;}
.ls5b{letter-spacing:-1.533333pt;}
.ls9d{letter-spacing:-1.512000pt;}
.ls4c{letter-spacing:-1.472000pt;}
.ls24{letter-spacing:-1.410667pt;}
.ls87{letter-spacing:-1.400000pt;}
.ls51{letter-spacing:-1.349333pt;}
.ls29{letter-spacing:-1.288000pt;}
.ls88{letter-spacing:-1.232000pt;}
.ls30{letter-spacing:-1.226667pt;}
.ls93{letter-spacing:-1.176000pt;}
.ls3f{letter-spacing:-1.165333pt;}
.ls27{letter-spacing:-1.104000pt;}
.ls92{letter-spacing:-1.064000pt;}
.ls3c{letter-spacing:-1.042667pt;}
.ls41{letter-spacing:-1.008000pt;}
.ls1c{letter-spacing:-0.981333pt;}
.ls85{letter-spacing:-0.952000pt;}
.ls36{letter-spacing:-0.920000pt;}
.ls8b{letter-spacing:-0.896000pt;}
.ls37{letter-spacing:-0.858667pt;}
.ls22{letter-spacing:-0.797333pt;}
.ls89{letter-spacing:-0.784000pt;}
.ls7d{letter-spacing:-0.768000pt;}
.ls7{letter-spacing:-0.746667pt;}
.ls59{letter-spacing:-0.736000pt;}
.ls8d{letter-spacing:-0.728000pt;}
.ls4b{letter-spacing:-0.674667pt;}
.ls8a{letter-spacing:-0.672000pt;}
.ls16{letter-spacing:-0.613333pt;}
.ls8c{letter-spacing:-0.560000pt;}
.ls32{letter-spacing:-0.552000pt;}
.ls11{letter-spacing:-0.533333pt;}
.ls99{letter-spacing:-0.504000pt;}
.ls53{letter-spacing:-0.490667pt;}
.ls66{letter-spacing:-0.480000pt;}
.ls8f{letter-spacing:-0.448000pt;}
.ls61{letter-spacing:-0.429333pt;}
.ls98{letter-spacing:-0.392000pt;}
.ls7e{letter-spacing:-0.384000pt;}
.ls3b{letter-spacing:-0.368000pt;}
.ls8e{letter-spacing:-0.336000pt;}
.ls52{letter-spacing:-0.306667pt;}
.ls2a{letter-spacing:-0.288000pt;}
.ls9e{letter-spacing:-0.280000pt;}
.lsa7{letter-spacing:-0.266667pt;}
.ls40{letter-spacing:-0.245333pt;}
.lsaa{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.200000pt;}
.ls67{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.184000pt;}
.ls2{letter-spacing:-0.168000pt;}
.ls5a{letter-spacing:-0.122667pt;}
.ls9b{letter-spacing:-0.112000pt;}
.ls81{letter-spacing:-0.072000pt;}
.ls5c{letter-spacing:-0.061333pt;}
.ls86{letter-spacing:-0.056000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000267pt;}
.ls45{letter-spacing:0.001867pt;}
.ls46{letter-spacing:0.003200pt;}
.ls21{letter-spacing:0.006133pt;}
.ls2c{letter-spacing:0.006667pt;}
.ls2d{letter-spacing:0.009333pt;}
.ls2e{letter-spacing:0.009867pt;}
.ls74{letter-spacing:0.014933pt;}
.ls73{letter-spacing:0.015467pt;}
.ls26{letter-spacing:0.122667pt;}
.ls2f{letter-spacing:0.133333pt;}
.ls6d{letter-spacing:0.306667pt;}
.ls39{letter-spacing:0.368000pt;}
.ls58{letter-spacing:0.429333pt;}
.ls18{letter-spacing:0.490667pt;}
.ls42{letter-spacing:0.552000pt;}
.ls20{letter-spacing:0.582667pt;}
.ls6a{letter-spacing:0.600000pt;}
.ls83{letter-spacing:0.728000pt;}
.ls55{letter-spacing:0.733333pt;}
.ls1d{letter-spacing:0.736000pt;}
.lsa6{letter-spacing:0.800000pt;}
.ls76{letter-spacing:0.864000pt;}
.ls90{letter-spacing:0.896000pt;}
.lse{letter-spacing:0.906667pt;}
.ls62{letter-spacing:0.920000pt;}
.ls15{letter-spacing:0.981333pt;}
.ls91{letter-spacing:1.008000pt;}
.ls4a{letter-spacing:1.042667pt;}
.ls9f{letter-spacing:1.064000pt;}
.ls75{letter-spacing:1.079200pt;}
.ls6e{letter-spacing:1.104000pt;}
.ls10{letter-spacing:1.119360pt;}
.ls4{letter-spacing:1.120000pt;}
.ls65{letter-spacing:1.165333pt;}
.lsb{letter-spacing:1.194667pt;}
.ls5d{letter-spacing:1.226667pt;}
.ls19{letter-spacing:1.410667pt;}
.ls60{letter-spacing:1.453600pt;}
.lsa{letter-spacing:1.466667pt;}
.ls77{letter-spacing:1.548752pt;}
.ls25{letter-spacing:1.594667pt;}
.ls72{letter-spacing:1.717333pt;}
.ls69{letter-spacing:1.778667pt;}
.lsc{letter-spacing:2.133333pt;}
.ls70{letter-spacing:2.453333pt;}
.ls34{letter-spacing:3.066667pt;}
.lsf{letter-spacing:3.285333pt;}
.ls7a{letter-spacing:3.557333pt;}
.ls8{letter-spacing:3.733333pt;}
.ls3e{letter-spacing:4.477333pt;}
.lsa0{letter-spacing:4.704000pt;}
.ls6{letter-spacing:5.120000pt;}
.ls35{letter-spacing:5.213333pt;}
.lsd{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.lsa3{letter-spacing:5.376000pt;}
.ls97{letter-spacing:5.600000pt;}
.ls79{letter-spacing:5.642667pt;}
.ls38{letter-spacing:7.237333pt;}
.ls84{letter-spacing:7.392000pt;}
.lsa5{letter-spacing:7.680000pt;}
.ls96{letter-spacing:7.840000pt;}
.ls7f{letter-spacing:421.248000pt;}
.lsa9{letter-spacing:422.294933pt;}
.ls94{letter-spacing:423.561600pt;}
.ls9{letter-spacing:445.489600pt;}
.ls54{letter-spacing:446.196267pt;}
.ls68{letter-spacing:446.363200pt;}
.ls2b{letter-spacing:446.782933pt;}
.ls1a{letter-spacing:447.149867pt;}
.lsa4{letter-spacing:847.126933pt;}
.ls82{letter-spacing:854.820267pt;}
.ls0{letter-spacing:880.020267pt;}
.ls1e{letter-spacing:880.460267pt;}
.ls44{letter-spacing:882.793600pt;}
.ls5f{letter-spacing:886.393600pt;}
.ls17{letter-spacing:888.153600pt;}
.wsa3{word-spacing:-23.576000pt;}
.wsb{word-spacing:-20.213333pt;}
.ws9{word-spacing:-20.200000pt;}
.ws8a{word-spacing:-20.160000pt;}
.ws1{word-spacing:-20.106667pt;}
.ws5c{word-spacing:-19.466667pt;}
.ws75{word-spacing:-19.333333pt;}
.ws24{word-spacing:-18.866667pt;}
.ws18{word-spacing:-18.533333pt;}
.ws49{word-spacing:-17.234667pt;}
.ws89{word-spacing:-16.533333pt;}
.ws2b{word-spacing:-16.437333pt;}
.ws0{word-spacing:-16.106667pt;}
.wsc{word-spacing:-15.893333pt;}
.ws4e{word-spacing:-15.762667pt;}
.ws8d{word-spacing:-15.736000pt;}
.ws60{word-spacing:-15.578667pt;}
.wsb4{word-spacing:-15.176000pt;}
.ws30{word-spacing:-15.149333pt;}
.ws6c{word-spacing:-15.026667pt;}
.ws2f{word-spacing:-14.904000pt;}
.ws4d{word-spacing:-14.842667pt;}
.ws2c{word-spacing:-14.781333pt;}
.ws76{word-spacing:-14.720000pt;}
.ws4f{word-spacing:-14.597333pt;}
.ws25{word-spacing:-14.536000pt;}
.ws5d{word-spacing:-14.474667pt;}
.ws29{word-spacing:-14.352000pt;}
.ws28{word-spacing:-14.290667pt;}
.ws27{word-spacing:-14.229333pt;}
.ws2d{word-spacing:-14.106667pt;}
.ws1b{word-spacing:-14.045333pt;}
.ws4b{word-spacing:-13.984000pt;}
.ws2e{word-spacing:-13.922667pt;}
.ws1c{word-spacing:-13.861333pt;}
.ws4c{word-spacing:-13.800000pt;}
.ws8b{word-spacing:-13.776000pt;}
.ws77{word-spacing:-13.738667pt;}
.wse{word-spacing:-13.680000pt;}
.ws5f{word-spacing:-13.677333pt;}
.ws61{word-spacing:-13.616000pt;}
.ws63{word-spacing:-13.554667pt;}
.ws62{word-spacing:-13.493333pt;}
.wsa5{word-spacing:-13.440000pt;}
.ws31{word-spacing:-13.432000pt;}
.ws26{word-spacing:-13.370667pt;}
.ws5e{word-spacing:-13.309333pt;}
.ws8e{word-spacing:-13.160000pt;}
.ws4a{word-spacing:-13.125333pt;}
.wsa4{word-spacing:-13.104000pt;}
.wsf{word-spacing:-13.064000pt;}
.ws48{word-spacing:-13.002667pt;}
.wsba{word-spacing:-12.960000pt;}
.ws80{word-spacing:-12.941333pt;}
.ws8f{word-spacing:-12.936000pt;}
.ws90{word-spacing:-12.768000pt;}
.wsb9{word-spacing:-12.693333pt;}
.ws91{word-spacing:-12.656000pt;}
.ws8c{word-spacing:-12.432000pt;}
.wsa7{word-spacing:-12.320000pt;}
.ws2a{word-spacing:-12.064267pt;}
.wsa6{word-spacing:-11.928000pt;}
.wsa{word-spacing:-11.685333pt;}
.ws6f{word-spacing:-11.664000pt;}
.ws81{word-spacing:-11.472000pt;}
.ws6e{word-spacing:-11.376000pt;}
.ws6d{word-spacing:-10.047811pt;}
.wsd{word-spacing:-9.856587pt;}
.ws7f{word-spacing:-9.690667pt;}
.wsb5{word-spacing:-7.680000pt;}
.ws92{word-spacing:-7.392000pt;}
.ws3b{word-spacing:-7.237333pt;}
.ws84{word-spacing:-5.642667pt;}
.wsaa{word-spacing:-5.600000pt;}
.wsb3{word-spacing:-5.376000pt;}
.ws4{word-spacing:-5.333333pt;}
.ws3a{word-spacing:-5.213333pt;}
.wsb0{word-spacing:-4.704000pt;}
.ws41{word-spacing:-4.477333pt;}
.ws8{word-spacing:-3.733333pt;}
.ws85{word-spacing:-3.557333pt;}
.ws11{word-spacing:-3.285333pt;}
.ws37{word-spacing:-3.066667pt;}
.ws7d{word-spacing:-2.453333pt;}
.ws10{word-spacing:-2.133333pt;}
.ws20{word-spacing:-1.594667pt;}
.ws17{word-spacing:-1.410667pt;}
.ws9e{word-spacing:-1.232000pt;}
.ws6b{word-spacing:-1.226667pt;}
.ws74{word-spacing:-1.165333pt;}
.ws6{word-spacing:-1.120000pt;}
.ws7b{word-spacing:-1.104000pt;}
.wsaf{word-spacing:-1.064000pt;}
.ws53{word-spacing:-1.042667pt;}
.wsa0{word-spacing:-1.008000pt;}
.ws14{word-spacing:-0.981333pt;}
.ws93{word-spacing:-0.952000pt;}
.ws71{word-spacing:-0.920000pt;}
.ws9d{word-spacing:-0.896000pt;}
.ws82{word-spacing:-0.858667pt;}
.wsb6{word-spacing:-0.800000pt;}
.ws1a{word-spacing:-0.736000pt;}
.ws44{word-spacing:-0.552000pt;}
.ws16{word-spacing:-0.490667pt;}
.ws3d{word-spacing:-0.368000pt;}
.ws99{word-spacing:-0.336000pt;}
.ws7a{word-spacing:-0.306667pt;}
.ws47{word-spacing:-0.245333pt;}
.ws21{word-spacing:-0.122667pt;}
.ws2{word-spacing:0.000000pt;}
.ws9f{word-spacing:0.056000pt;}
.ws69{word-spacing:0.061333pt;}
.wsad{word-spacing:0.112000pt;}
.ws68{word-spacing:0.122667pt;}
.ws3{word-spacing:0.168000pt;}
.ws1e{word-spacing:0.184000pt;}
.ws6a{word-spacing:0.245333pt;}
.wsb7{word-spacing:0.266667pt;}
.wsae{word-spacing:0.280000pt;}
.ws23{word-spacing:0.288000pt;}
.ws5a{word-spacing:0.306667pt;}
.ws9b{word-spacing:0.336000pt;}
.ws3f{word-spacing:0.368000pt;}
.ws70{word-spacing:0.429333pt;}
.ws9c{word-spacing:0.448000pt;}
.ws5b{word-spacing:0.490667pt;}
.wsab{word-spacing:0.504000pt;}
.ws12{word-spacing:0.533333pt;}
.ws35{word-spacing:0.552000pt;}
.ws95{word-spacing:0.560000pt;}
.ws15{word-spacing:0.613333pt;}
.wsa9{word-spacing:0.672000pt;}
.ws54{word-spacing:0.674667pt;}
.ws9a{word-spacing:0.728000pt;}
.ws66{word-spacing:0.736000pt;}
.ws7{word-spacing:0.746667pt;}
.ws88{word-spacing:0.768000pt;}
.ws98{word-spacing:0.784000pt;}
.ws1d{word-spacing:0.797333pt;}
.ws45{word-spacing:0.858667pt;}
.wsa2{word-spacing:0.896000pt;}
.ws46{word-spacing:0.920000pt;}
.ws94{word-spacing:0.952000pt;}
.ws19{word-spacing:0.981333pt;}
.ws43{word-spacing:1.008000pt;}
.ws51{word-spacing:1.042667pt;}
.ws36{word-spacing:1.104000pt;}
.ws42{word-spacing:1.165333pt;}
.ws32{word-spacing:1.226667pt;}
.ws96{word-spacing:1.232000pt;}
.ws39{word-spacing:1.288000pt;}
.ws64{word-spacing:1.349333pt;}
.ws1f{word-spacing:1.410667pt;}
.wsa1{word-spacing:1.456000pt;}
.ws55{word-spacing:1.472000pt;}
.ws34{word-spacing:1.533333pt;}
.ws13{word-spacing:1.594667pt;}
.ws33{word-spacing:1.656000pt;}
.ws38{word-spacing:1.778667pt;}
.wsb8{word-spacing:1.813333pt;}
.ws40{word-spacing:1.840000pt;}
.wsac{word-spacing:1.960000pt;}
.ws7c{word-spacing:1.962667pt;}
.wsb2{word-spacing:2.240000pt;}
.ws86{word-spacing:2.330667pt;}
.ws58{word-spacing:2.392000pt;}
.ws7e{word-spacing:2.453333pt;}
.ws73{word-spacing:2.514667pt;}
.ws72{word-spacing:2.576000pt;}
.wsb1{word-spacing:2.632000pt;}
.ws59{word-spacing:2.698667pt;}
.wsa8{word-spacing:2.856000pt;}
.ws50{word-spacing:3.250667pt;}
.ws22{word-spacing:3.802667pt;}
.ws56{word-spacing:3.864000pt;}
.ws67{word-spacing:3.925333pt;}
.ws5{word-spacing:3.976000pt;}
.ws83{word-spacing:4.293333pt;}
.ws57{word-spacing:4.416000pt;}
.ws65{word-spacing:4.477333pt;}
.ws79{word-spacing:4.661333pt;}
.ws3e{word-spacing:4.784000pt;}
.ws78{word-spacing:5.336000pt;}
.ws3c{word-spacing:5.765333pt;}
.ws52{word-spacing:5.826667pt;}
.ws97{word-spacing:6.832000pt;}
.ws87{word-spacing:38.617920pt;}
._1a{margin-left:-9.844267pt;}
._16{margin-left:-8.678667pt;}
._d{margin-left:-7.401333pt;}
._c{margin-left:-5.842933pt;}
._e{margin-left:-4.650400pt;}
._b{margin-left:-3.724800pt;}
._2{margin-left:-2.311200pt;}
._8{margin-left:-0.890667pt;}
._3{width:1.136800pt;}
._1{width:2.133333pt;}
._9{width:3.544800pt;}
._7{width:4.722667pt;}
._4{width:5.634933pt;}
._5{width:6.697600pt;}
._a{width:7.684533pt;}
._6{width:8.589867pt;}
._11{width:9.703200pt;}
._12{width:11.478400pt;}
._13{width:12.608000pt;}
._15{width:14.531733pt;}
._17{width:15.958933pt;}
._19{width:23.465333pt;}
._18{width:24.409067pt;}
._1d{width:25.314400pt;}
._1c{width:29.126400pt;}
._1b{width:34.462400pt;}
._14{width:38.617920pt;}
._f{width:63.466667pt;}
._10{width:224.896000pt;}
._0{width:514.133333pt;}
.fsd{font-size:27.984000pt;}
.fs8{font-size:31.093333pt;}
.fsb{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:42.933333pt;}
.fse{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y40{bottom:94.336667pt;}
.y8f{bottom:94.369200pt;}
.y153{bottom:94.447333pt;}
.y115{bottom:94.460933pt;}
.y68{bottom:94.461200pt;}
.yf8{bottom:94.463733pt;}
.yd4{bottom:94.467733pt;}
.yb0{bottom:94.480267pt;}
.y1b{bottom:94.482267pt;}
.y17a{bottom:94.485600pt;}
.y19b{bottom:94.488000pt;}
.y1f7{bottom:94.533200pt;}
.y1bc{bottom:94.537867pt;}
.y1db{bottom:94.579867pt;}
.y136{bottom:97.150933pt;}
.y179{bottom:109.813600pt;}
.yaf{bottom:109.816267pt;}
.y8e{bottom:112.523867pt;}
.y1f6{bottom:112.546533pt;}
.y152{bottom:112.556000pt;}
.y114{bottom:112.569600pt;}
.yd3{bottom:112.576400pt;}
.yf7{bottom:112.618400pt;}
.y3f{bottom:112.752000pt;}
.y1bb{bottom:112.807867pt;}
.y67{bottom:113.091200pt;}
.y135{bottom:113.593067pt;}
.y19a{bottom:114.206667pt;}
.y1a{bottom:115.895600pt;}
.y178{bottom:125.149600pt;}
.yae{bottom:125.152267pt;}
.y134{bottom:128.929067pt;}
.y1f5{bottom:130.559867pt;}
.y151{bottom:130.664667pt;}
.y113{bottom:130.678267pt;}
.y8d{bottom:130.678533pt;}
.yd2{bottom:130.685067pt;}
.yf6{bottom:130.773067pt;}
.y3e{bottom:131.167333pt;}
.y66{bottom:131.721200pt;}
.y199{bottom:133.925333pt;}
.y19{bottom:137.260000pt;}
.y1da{bottom:138.595867pt;}
.y1ba{bottom:138.637867pt;}
.y177{bottom:140.485600pt;}
.yad{bottom:143.150933pt;}
.y133{bottom:144.265067pt;}
.y1f4{bottom:148.573200pt;}
.y150{bottom:148.773333pt;}
.y112{bottom:148.786933pt;}
.yd1{bottom:148.793733pt;}
.y8c{bottom:148.833200pt;}
.yf5{bottom:148.927733pt;}
.y3d{bottom:149.582667pt;}
.y65{bottom:150.351200pt;}
.y198{bottom:153.644000pt;}
.y176{bottom:155.821600pt;}
.y1d9{bottom:156.823867pt;}
.y1b9{bottom:156.907867pt;}
.y18{bottom:157.340000pt;}
.y175{bottom:158.484267pt;}
.yac{bottom:162.263733pt;}
.y1f3{bottom:166.586533pt;}
.y111{bottom:166.834133pt;}
.y14f{bottom:166.882000pt;}
.y8b{bottom:166.987867pt;}
.yf4{bottom:167.082400pt;}
.y3c{bottom:167.998000pt;}
.y64{bottom:168.981200pt;}
.y17{bottom:177.420000pt;}
.y1d8{bottom:182.611867pt;}
.y1b8{bottom:182.737867pt;}
.y1f2{bottom:184.599867pt;}
.y110{bottom:184.942800pt;}
.y14e{bottom:184.990667pt;}
.y8a{bottom:185.142533pt;}
.yf3{bottom:185.237067pt;}
.yd0{bottom:185.793200pt;}
.y3b{bottom:186.413333pt;}
.y63{bottom:187.611200pt;}
.y197{bottom:192.260267pt;}
.y16{bottom:197.500000pt;}
.y174{bottom:197.644133pt;}
.y1d7{bottom:200.839867pt;}
.y1b7{bottom:201.007867pt;}
.yab{bottom:201.398400pt;}
.y132{bottom:201.410133pt;}
.y1f1{bottom:202.613200pt;}
.y10f{bottom:203.051467pt;}
.y14d{bottom:203.065200pt;}
.y89{bottom:203.297200pt;}
.yf2{bottom:203.391733pt;}
.y3a{bottom:204.828667pt;}
.y62{bottom:206.241200pt;}
.y173{bottom:215.967467pt;}
.y15{bottom:217.580000pt;}
.y1b6{bottom:219.277867pt;}
.y131{bottom:219.963467pt;}
.y1f0{bottom:220.626533pt;}
.yaa{bottom:220.733733pt;}
.y10e{bottom:221.160133pt;}
.y14c{bottom:221.173867pt;}
.y88{bottom:221.451867pt;}
.yf1{bottom:221.546400pt;}
.y39{bottom:223.244000pt;}
.y61{bottom:224.871200pt;}
.y1d6{bottom:226.627867pt;}
.y172{bottom:234.290800pt;}
.y1b5{bottom:237.547867pt;}
.y14{bottom:237.660000pt;}
.y130{bottom:238.516800pt;}
.y1ef{bottom:238.639867pt;}
.y10d{bottom:239.268800pt;}
.y14b{bottom:239.282533pt;}
.y87{bottom:239.606533pt;}
.yf0{bottom:239.692000pt;}
.ya9{bottom:240.069067pt;}
.ycf{bottom:241.216800pt;}
.y38{bottom:241.659333pt;}
.y60{bottom:243.501200pt;}
.y1d5{bottom:244.855867pt;}
.y196{bottom:249.326267pt;}
.y171{bottom:252.614133pt;}
.y1b4{bottom:255.817867pt;}
.y1ee{bottom:256.653200pt;}
.y12f{bottom:257.070133pt;}
.y10c{bottom:257.377467pt;}
.y14a{bottom:257.391200pt;}
.y13{bottom:257.740000pt;}
.y86{bottom:257.761200pt;}
.yef{bottom:257.846667pt;}
.yce{bottom:259.325467pt;}
.ya8{bottom:259.404400pt;}
.y37{bottom:260.074667pt;}
.y5f{bottom:262.131200pt;}
.y195{bottom:269.044933pt;}
.y1d4{bottom:270.643867pt;}
.y170{bottom:270.937467pt;}
.y1ed{bottom:274.666533pt;}
.y10b{bottom:275.486133pt;}
.y149{bottom:275.499867pt;}
.y12e{bottom:275.623467pt;}
.y85{bottom:275.915867pt;}
.yee{bottom:276.001333pt;}
.ycd{bottom:277.434133pt;}
.y12{bottom:277.820000pt;}
.y36{bottom:278.490000pt;}
.ya7{bottom:278.739733pt;}
.y5e{bottom:280.761200pt;}
.y1b3{bottom:281.647867pt;}
.y194{bottom:288.763600pt;}
.y1d3{bottom:288.871867pt;}
.y16f{bottom:289.260800pt;}
.y1ec{bottom:292.679867pt;}
.y148{bottom:293.574400pt;}
.y10a{bottom:293.594800pt;}
.y84{bottom:294.070533pt;}
.yed{bottom:294.149867pt;}
.y12d{bottom:294.176800pt;}
.ycc{bottom:295.542800pt;}
.y35{bottom:296.905333pt;}
.ya6{bottom:298.075067pt;}
.y5d{bottom:299.391200pt;}
.y1b2{bottom:299.917867pt;}
.y16e{bottom:307.584133pt;}
.y193{bottom:308.482267pt;}
.y11{bottom:309.233333pt;}
.y1eb{bottom:310.693200pt;}
.y147{bottom:311.683067pt;}
.y109{bottom:311.703467pt;}
.y83{bottom:312.225200pt;}
.yec{bottom:312.304533pt;}
.y12c{bottom:312.730133pt;}
.ycb{bottom:313.583200pt;}
.y1d2{bottom:314.659867pt;}
.y34{bottom:315.320667pt;}
.y5c{bottom:318.021200pt;}
.y1b1{bottom:325.747867pt;}
.y16d{bottom:325.907467pt;}
.y192{bottom:328.200933pt;}
.y1ea{bottom:328.706533pt;}
.y108{bottom:329.757600pt;}
.y146{bottom:329.791733pt;}
.y82{bottom:330.379867pt;}
.yeb{bottom:330.425600pt;}
.y12b{bottom:331.283467pt;}
.yca{bottom:331.691867pt;}
.y1d1{bottom:332.887867pt;}
.y33{bottom:333.736000pt;}
.ya5{bottom:336.317600pt;}
.y5b{bottom:336.651200pt;}
.y1b0{bottom:344.017867pt;}
.y16c{bottom:344.230800pt;}
.y1e9{bottom:346.719867pt;}
.y107{bottom:347.866267pt;}
.y145{bottom:347.900400pt;}
.y191{bottom:347.919600pt;}
.y81{bottom:348.534533pt;}
.yea{bottom:348.580267pt;}
.yc9{bottom:349.800533pt;}
.y12a{bottom:349.836800pt;}
.y32{bottom:352.151333pt;}
.y5a{bottom:355.281200pt;}
.y1d0{bottom:358.675867pt;}
.ya4{bottom:358.979600pt;}
.y16b{bottom:362.626667pt;}
.y10{bottom:363.305600pt;}
.y1e8{bottom:364.733200pt;}
.y106{bottom:365.974933pt;}
.y144{bottom:366.009067pt;}
.y80{bottom:366.689200pt;}
.ye9{bottom:366.734933pt;}
.y190{bottom:367.638267pt;}
.yc8{bottom:367.909200pt;}
.y129{bottom:368.390133pt;}
.y1af{bottom:369.847867pt;}
.y31{bottom:370.566667pt;}
.y59{bottom:373.911200pt;}
.y16a{bottom:380.950000pt;}
.y1e7{bottom:382.746533pt;}
.y105{bottom:384.083600pt;}
.y143{bottom:384.117733pt;}
.y1cf{bottom:384.463867pt;}
.y7f{bottom:384.843867pt;}
.ye8{bottom:384.889600pt;}
.yc7{bottom:386.017867pt;}
.y128{bottom:386.943467pt;}
.y18f{bottom:387.356933pt;}
.y1ae{bottom:388.117867pt;}
.y30{bottom:388.982000pt;}
.yf{bottom:390.054933pt;}
.y58{bottom:392.541200pt;}
.y169{bottom:399.273333pt;}
.y1e6{bottom:400.759867pt;}
.y104{bottom:402.192267pt;}
.y1ce{bottom:402.691867pt;}
.y7e{bottom:402.998533pt;}
.ye7{bottom:403.044267pt;}
.yc6{bottom:404.126533pt;}
.y127{bottom:405.507067pt;}
.y18e{bottom:407.075600pt;}
.y2f{bottom:407.397333pt;}
.y57{bottom:411.171200pt;}
.y1ad{bottom:413.947867pt;}
.ya3{bottom:415.694533pt;}
.ye{bottom:416.804267pt;}
.y168{bottom:417.596667pt;}
.y103{bottom:420.300933pt;}
.y142{bottom:421.117200pt;}
.y7d{bottom:421.153200pt;}
.ye6{bottom:421.198933pt;}
.yc5{bottom:422.235200pt;}
.y126{bottom:424.060400pt;}
.y2e{bottom:425.812667pt;}
.y18d{bottom:426.794267pt;}
.y1cd{bottom:428.479867pt;}
.y56{bottom:429.801200pt;}
.y1e5{bottom:430.119867pt;}
.y1ac{bottom:432.217867pt;}
.ya2{bottom:435.029867pt;}
.y167{bottom:435.920000pt;}
.y102{bottom:438.409600pt;}
.y7c{bottom:439.307867pt;}
.ye5{bottom:439.353600pt;}
.yc4{bottom:440.343867pt;}
.y125{bottom:442.613733pt;}
.y2d{bottom:444.228000pt;}
.y18c{bottom:446.512933pt;}
.y1cc{bottom:446.707867pt;}
.y55{bottom:448.431200pt;}
.y166{bottom:454.243333pt;}
.ya1{bottom:454.365200pt;}
.y101{bottom:456.518267pt;}
.y7b{bottom:457.462533pt;}
.ye4{bottom:457.508267pt;}
.y1ab{bottom:458.047867pt;}
.yc3{bottom:458.452533pt;}
.y124{bottom:461.167067pt;}
.yd{bottom:462.432533pt;}
.y2c{bottom:462.643333pt;}
.y18b{bottom:466.231600pt;}
.y54{bottom:467.061200pt;}
.y1cb{bottom:472.495867pt;}
.y165{bottom:472.566667pt;}
.ya0{bottom:473.700533pt;}
.y100{bottom:474.620000pt;}
.y7a{bottom:475.617200pt;}
.ye3{bottom:475.662933pt;}
.y1aa{bottom:476.317867pt;}
.yc2{bottom:476.561200pt;}
.y123{bottom:479.720400pt;}
.y2b{bottom:481.058667pt;}
.y1e4{bottom:482.163067pt;}
.y53{bottom:485.691200pt;}
.y18a{bottom:485.950267pt;}
.y1ca{bottom:490.723867pt;}
.y164{bottom:490.890000pt;}
.yff{bottom:492.728667pt;}
.y9f{bottom:493.035867pt;}
.yc{bottom:493.176533pt;}
.y79{bottom:493.771867pt;}
.ye2{bottom:493.817600pt;}
.y1a9{bottom:494.587867pt;}
.y141{bottom:494.594933pt;}
.yc1{bottom:494.628933pt;}
.y122{bottom:498.273733pt;}
.y2a{bottom:499.474000pt;}
.y52{bottom:504.321200pt;}
.y189{bottom:505.668933pt;}
.y1e3{bottom:506.840400pt;}
.y1c9{bottom:508.951867pt;}
.y163{bottom:509.213333pt;}
.y78{bottom:511.926533pt;}
.ye1{bottom:511.972267pt;}
.y9e{bottom:512.371200pt;}
.y140{bottom:512.703600pt;}
.yc0{bottom:512.737600pt;}
.y1a8{bottom:512.857867pt;}
.y121{bottom:516.834000pt;}
.y29{bottom:517.889333pt;}
.y51{bottom:522.951200pt;}
.yb{bottom:523.920533pt;}
.y188{bottom:525.387600pt;}
.y1c8{bottom:527.179867pt;}
.y162{bottom:527.536667pt;}
.yfe{bottom:529.728133pt;}
.y77{bottom:530.081200pt;}
.ye0{bottom:530.090400pt;}
.y13f{bottom:530.812267pt;}
.ybf{bottom:530.846267pt;}
.y1e2{bottom:531.517733pt;}
.y9d{bottom:531.706533pt;}
.y120{bottom:535.387333pt;}
.y28{bottom:536.304667pt;}
.y1a7{bottom:538.687867pt;}
.y50{bottom:541.581200pt;}
.y187{bottom:545.106267pt;}
.y161{bottom:545.860000pt;}
.y76{bottom:548.235867pt;}
.ydf{bottom:548.245067pt;}
.y13e{bottom:548.920933pt;}
.ybe{bottom:548.954933pt;}
.y9c{bottom:551.041867pt;}
.y1c7{bottom:552.967867pt;}
.y11f{bottom:553.940667pt;}
.ya{bottom:554.664533pt;}
.y27{bottom:554.720000pt;}
.y1a6{bottom:556.957867pt;}
.y4f{bottom:560.211200pt;}
.y160{bottom:564.183333pt;}
.y186{bottom:564.824933pt;}
.y75{bottom:566.390533pt;}
.yde{bottom:566.399733pt;}
.y13d{bottom:567.029600pt;}
.ybd{bottom:567.063600pt;}
.y9b{bottom:570.377200pt;}
.y1c6{bottom:571.195867pt;}
.y11e{bottom:572.494000pt;}
.y4e{bottom:578.841200pt;}
.y15f{bottom:582.506667pt;}
.y1a5{bottom:582.787867pt;}
.y201{bottom:582.838000pt;}
.y185{bottom:584.543600pt;}
.y74{bottom:584.545200pt;}
.ydd{bottom:584.554400pt;}
.y13c{bottom:585.138267pt;}
.yfd{bottom:585.144933pt;}
.ybc{bottom:585.172267pt;}
.y1c5{bottom:589.423867pt;}
.y9a{bottom:589.712533pt;}
.y11d{bottom:591.049067pt;}
.y26{bottom:592.026800pt;}
.y4d{bottom:597.471200pt;}
.y15e{bottom:600.830000pt;}
.y200{bottom:600.838000pt;}
.y1a4{bottom:601.057867pt;}
.y73{bottom:602.699867pt;}
.ydc{bottom:602.709067pt;}
.y13b{bottom:603.246933pt;}
.yfc{bottom:603.253600pt;}
.ybb{bottom:603.274133pt;}
.y184{bottom:604.262267pt;}
.y1c4{bottom:607.651867pt;}
.y99{bottom:609.047867pt;}
.y11c{bottom:609.604133pt;}
.y9{bottom:611.862267pt;}
.y4c{bottom:616.101200pt;}
.y1ff{bottom:618.838000pt;}
.y15d{bottom:619.153333pt;}
.y72{bottom:620.854533pt;}
.ydb{bottom:620.863733pt;}
.y13a{bottom:621.355600pt;}
.yfb{bottom:621.362267pt;}
.yba{bottom:621.376000pt;}
.y183{bottom:623.980933pt;}
.y1a3{bottom:626.887867pt;}
.y11b{bottom:628.159200pt;}
.y98{bottom:628.383200pt;}
.y8{bottom:633.275600pt;}
.y1c3{bottom:633.439867pt;}
.y4b{bottom:634.731200pt;}
.y1fe{bottom:636.838000pt;}
.y15c{bottom:637.476667pt;}
.y71{bottom:639.009200pt;}
.yda{bottom:639.018400pt;}
.y139{bottom:639.464267pt;}
.yfa{bottom:639.470933pt;}
.yb9{bottom:639.477867pt;}
.y182{bottom:643.699600pt;}
.y1a2{bottom:645.157867pt;}
.y11a{bottom:646.712533pt;}
.y97{bottom:647.718533pt;}
.y25{bottom:647.781200pt;}
.y1e1{bottom:649.875867pt;}
.y1c2{bottom:651.667867pt;}
.y4a{bottom:653.361200pt;}
.y15b{bottom:655.800000pt;}
.y70{bottom:657.163867pt;}
.yd9{bottom:657.173067pt;}
.yb8{bottom:657.531867pt;}
.y138{bottom:657.572933pt;}
.yf9{bottom:657.579600pt;}
.y7{bottom:662.235600pt;}
.y181{bottom:663.418267pt;}
.y1fd{bottom:666.171333pt;}
.y24{bottom:666.861200pt;}
.y96{bottom:667.053867pt;}
.y1c1{bottom:669.895867pt;}
.y1a1{bottom:670.987867pt;}
.y49{bottom:671.991200pt;}
.y15a{bottom:674.123333pt;}
.y6f{bottom:675.318533pt;}
.yd8{bottom:675.327733pt;}
.yb7{bottom:675.640533pt;}
.y137{bottom:675.681600pt;}
.y1e0{bottom:676.111867pt;}
.y180{bottom:683.136933pt;}
.y6{bottom:683.642933pt;}
.y119{bottom:684.166000pt;}
.y1fc{bottom:684.171333pt;}
.y23{bottom:685.918000pt;}
.y95{bottom:686.389200pt;}
.y48{bottom:690.621200pt;}
.y159{bottom:692.446667pt;}
.y6e{bottom:693.473200pt;}
.yd7{bottom:693.482400pt;}
.yb6{bottom:693.749200pt;}
.y1df{bottom:694.787867pt;}
.y1c0{bottom:695.683867pt;}
.y1a0{bottom:696.817867pt;}
.y1fb{bottom:702.171333pt;}
.y17f{bottom:702.855600pt;}
.y22{bottom:703.664667pt;}
.y94{bottom:705.724533pt;}
.y118{bottom:706.054000pt;}
.y47{bottom:709.251200pt;}
.y158{bottom:710.770000pt;}
.y6d{bottom:711.627867pt;}
.yd6{bottom:711.637067pt;}
.yb5{bottom:711.857867pt;}
.y1bf{bottom:713.911867pt;}
.y19f{bottom:715.087867pt;}
.y1fa{bottom:720.171333pt;}
.y1de{bottom:721.023867pt;}
.y21{bottom:721.411333pt;}
.y17e{bottom:722.574267pt;}
.y93{bottom:725.059867pt;}
.y46{bottom:727.881200pt;}
.y117{bottom:727.942000pt;}
.y157{bottom:729.093333pt;}
.y6c{bottom:729.782533pt;}
.yd5{bottom:729.791733pt;}
.yb4{bottom:729.966533pt;}
.y5{bottom:731.507333pt;}
.y19e{bottom:733.357867pt;}
.y20{bottom:739.158000pt;}
.y1be{bottom:739.699867pt;}
.y17d{bottom:742.292933pt;}
.y92{bottom:744.395200pt;}
.y45{bottom:746.511200pt;}
.y156{bottom:747.431200pt;}
.y6b{bottom:747.937200pt;}
.yb3{bottom:748.075200pt;}
.y1f9{bottom:749.504667pt;}
.y4{bottom:752.920667pt;}
.y1f{bottom:756.904667pt;}
.y19d{bottom:759.187867pt;}
.y17c{bottom:762.011600pt;}
.y91{bottom:763.730533pt;}
.y44{bottom:765.141200pt;}
.y155{bottom:765.754533pt;}
.y1dd{bottom:765.935867pt;}
.y6a{bottom:766.091867pt;}
.yb2{bottom:766.183867pt;}
.y1e{bottom:774.651333pt;}
.y19c{bottom:777.457867pt;}
.y3{bottom:781.880667pt;}
.y90{bottom:783.065867pt;}
.y43{bottom:783.771200pt;}
.y116{bottom:783.847867pt;}
.y154{bottom:784.077867pt;}
.y69{bottom:784.246533pt;}
.yb1{bottom:784.292533pt;}
.y1dc{bottom:784.611867pt;}
.y1bd{bottom:785.059867pt;}
.y1f8{bottom:786.398000pt;}
.y17b{bottom:800.627733pt;}
.y42{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1d{bottom:803.731333pt;}
.y1c{bottom:842.834667pt;}
.y41{bottom:858.834667pt;}
.h1b{height:22.190437pt;}
.h7{height:36.229167pt;}
.hc{height:39.060271pt;}
.hd{height:40.757812pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h1c{height:49.710938pt;}
.h1d{height:49.742938pt;}
.ha{height:52.079427pt;}
.h15{height:52.115694pt;}
.h13{height:52.213827pt;}
.h19{height:52.325294pt;}
.h1f{height:55.234375pt;}
.h2{height:56.608073pt;}
.h1e{height:57.996094pt;}
.h8{height:61.136719pt;}
.h6{height:63.401042pt;}
.hb{height:63.490198pt;}
.h9{height:63.519531pt;}
.h14{height:63.544065pt;}
.he{height:63.546731pt;}
.h17{height:63.547265pt;}
.h11{height:63.556331pt;}
.h10{height:63.601131pt;}
.h12{height:63.665665pt;}
.h16{height:63.710465pt;}
.h18{height:63.737665pt;}
.hf{height:63.792598pt;}
.h1a{height:63.819265pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:71.929600pt;}
.x8{left:73.378933pt;}
.x6{left:74.328667pt;}
.x1{left:75.590533pt;}
.x9{left:92.223600pt;}
.x5{left:93.360533pt;}
.x4{left:94.547200pt;}
.x2{left:206.290000pt;}
.x3{left:207.576400pt;}
}




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