
    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_56442f3e364396a238d95ce4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_249b0e603420b99aa4193a50.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_31b8bd8c52bdb47ba2d217f3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.261230;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_cf88121f4e3969c21f332a2b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.133301;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_6754b9697e69f375df4b4846.woff')format("woff");}.ff5{font-family:ff5;line-height:1.025391;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_83c1d847d57186898c62ebf2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.133301;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);}
.v0{vertical-align:0.000000px;}
.ls52{letter-spacing:-6.555000px;}
.ls4b{letter-spacing:-5.520000px;}
.ls67{letter-spacing:-4.899000px;}
.ls77{letter-spacing:-4.221000px;}
.ls84{letter-spacing:-4.200000px;}
.ls76{letter-spacing:-4.158000px;}
.ls51{letter-spacing:-3.381000px;}
.ls31{letter-spacing:-3.243000px;}
.ls1d{letter-spacing:-3.174000px;}
.ls4e{letter-spacing:-3.036000px;}
.ls1f{letter-spacing:-2.898000px;}
.ls48{letter-spacing:-2.829000px;}
.ls53{letter-spacing:-2.691000px;}
.ls64{letter-spacing:-2.484000px;}
.ls83{letter-spacing:-2.460000px;}
.ls54{letter-spacing:-2.415000px;}
.ls5a{letter-spacing:-2.346000px;}
.ls50{letter-spacing:-2.277000px;}
.ls3a{letter-spacing:-2.208000px;}
.ls75{letter-spacing:-2.205000px;}
.ls41{letter-spacing:-2.070000px;}
.ls55{letter-spacing:-2.001000px;}
.ls1{letter-spacing:-1.950000px;}
.ls44{letter-spacing:-1.932000px;}
.ls62{letter-spacing:-1.863000px;}
.ls74{letter-spacing:-1.827000px;}
.ls26{letter-spacing:-1.794000px;}
.ls18{letter-spacing:-1.725000px;}
.ls39{letter-spacing:-1.656000px;}
.ls38{letter-spacing:-1.587000px;}
.ls4a{letter-spacing:-1.518000px;}
.ls13{letter-spacing:-1.449000px;}
.ls19{letter-spacing:-1.380000px;}
.ls2f{letter-spacing:-1.311000px;}
.ls5{letter-spacing:-1.296000px;}
.ls49{letter-spacing:-1.242000px;}
.ls34{letter-spacing:-1.173000px;}
.ls81{letter-spacing:-1.140000px;}
.ls37{letter-spacing:-1.104000px;}
.ls10{letter-spacing:-1.080000px;}
.ls1a{letter-spacing:-1.035000px;}
.ls82{letter-spacing:-1.020000px;}
.ls72{letter-spacing:-1.008000px;}
.ls28{letter-spacing:-0.966000px;}
.ls61{letter-spacing:-0.960000px;}
.ls6f{letter-spacing:-0.945000px;}
.ls33{letter-spacing:-0.897000px;}
.ls80{letter-spacing:-0.840000px;}
.ls2e{letter-spacing:-0.828000px;}
.ls70{letter-spacing:-0.819000px;}
.ls3b{letter-spacing:-0.759000px;}
.ls29{letter-spacing:-0.690000px;}
.lsa{letter-spacing:-0.660000px;}
.ls17{letter-spacing:-0.621000px;}
.ls73{letter-spacing:-0.567000px;}
.ls7a{letter-spacing:-0.504000px;}
.ls1b{letter-spacing:-0.483000px;}
.ls78{letter-spacing:-0.441000px;}
.ls3f{letter-spacing:-0.420000px;}
.ls20{letter-spacing:-0.414000px;}
.ls6e{letter-spacing:-0.378000px;}
.ls47{letter-spacing:-0.345000px;}
.lsc{letter-spacing:-0.300000px;}
.ls25{letter-spacing:-0.276000px;}
.ls5c{letter-spacing:-0.240000px;}
.ls59{letter-spacing:-0.225000px;}
.ls2d{letter-spacing:-0.207000px;}
.ls40{letter-spacing:-0.180000px;}
.ls4d{letter-spacing:-0.138000px;}
.ls7c{letter-spacing:-0.126000px;}
.ls32{letter-spacing:-0.069000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.120000px;}
.ls22{letter-spacing:0.138000px;}
.ls66{letter-spacing:0.276000px;}
.ls42{letter-spacing:0.345000px;}
.ls7e{letter-spacing:0.360000px;}
.ls3d{letter-spacing:0.483000px;}
.ls8{letter-spacing:0.540000px;}
.ls14{letter-spacing:0.552000px;}
.ls11{letter-spacing:0.600000px;}
.ls46{letter-spacing:0.675000px;}
.ls1e{letter-spacing:0.759000px;}
.ls23{letter-spacing:0.966000px;}
.ls24{letter-spacing:1.035000px;}
.ls1c{letter-spacing:1.104000px;}
.ls6a{letter-spacing:1.134000px;}
.ls6{letter-spacing:1.176000px;}
.ls5e{letter-spacing:1.242000px;}
.ls27{letter-spacing:1.458000px;}
.ls3{letter-spacing:1.512000px;}
.ls5f{letter-spacing:1.518000px;}
.ls68{letter-spacing:1.575000px;}
.ls65{letter-spacing:1.587000px;}
.ls79{letter-spacing:1.638000px;}
.ls43{letter-spacing:1.656000px;}
.ls30{letter-spacing:1.794000px;}
.ls7f{letter-spacing:1.920000px;}
.ls16{letter-spacing:2.400000px;}
.lsb{letter-spacing:2.760000px;}
.ls35{letter-spacing:3.174000px;}
.ls36{letter-spacing:3.588000px;}
.ls12{letter-spacing:3.696000px;}
.ls7d{letter-spacing:3.720000px;}
.ls56{letter-spacing:3.933000px;}
.ls3e{letter-spacing:4.116000px;}
.ls60{letter-spacing:4.284000px;}
.ls4c{letter-spacing:4.416000px;}
.ls57{letter-spacing:4.485000px;}
.ls2c{letter-spacing:4.692000px;}
.lsd{letter-spacing:4.788000px;}
.ls2a{letter-spacing:4.899000px;}
.ls5b{letter-spacing:5.754000px;}
.ls7{letter-spacing:5.760000px;}
.lse{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls71{letter-spacing:6.300000px;}
.ls7b{letter-spacing:8.568000px;}
.ls6d{letter-spacing:8.820000px;}
.ls6b{letter-spacing:13.532400px;}
.ls6c{letter-spacing:15.466500px;}
.ls45{letter-spacing:464.876400px;}
.ls69{letter-spacing:465.611400px;}
.ls63{letter-spacing:466.054200px;}
.ls58{letter-spacing:467.479200px;}
.ls15{letter-spacing:474.966000px;}
.ls2b{letter-spacing:475.153800px;}
.ls0{letter-spacing:475.626000px;}
.ls3c{letter-spacing:952.524000px;}
.ls5d{letter-spacing:953.022000px;}
.lsf{letter-spacing:955.644000px;}
.ls21{letter-spacing:959.694000px;}
.ls4f{letter-spacing:961.674000px;}
.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:-29.052000px;}
.ws76{word-spacing:-26.523000px;}
.ws6d{word-spacing:-24.219000px;}
.ws6{word-spacing:-22.740000px;}
.ws3{word-spacing:-22.620000px;}
.ws44{word-spacing:-21.750000px;}
.ws3e{word-spacing:-21.045000px;}
.ws61{word-spacing:-20.850000px;}
.ws89{word-spacing:-20.580000px;}
.ws72{word-spacing:-19.278000px;}
.ws0{word-spacing:-19.125000px;}
.ws6a{word-spacing:-18.906000px;}
.ws8a{word-spacing:-18.780000px;}
.ws46{word-spacing:-18.561000px;}
.ws63{word-spacing:-17.556000px;}
.ws7b{word-spacing:-17.199000px;}
.ws55{word-spacing:-17.043000px;}
.ws67{word-spacing:-16.905000px;}
.ws20{word-spacing:-16.767000px;}
.ws77{word-spacing:-16.758000px;}
.ws45{word-spacing:-16.698000px;}
.ws13{word-spacing:-16.422000px;}
.ws66{word-spacing:-16.353000px;}
.ws3f{word-spacing:-16.215000px;}
.ws49{word-spacing:-16.146000px;}
.ws68{word-spacing:-16.086000px;}
.ws29{word-spacing:-16.077000px;}
.ws16{word-spacing:-16.008000px;}
.ws3d{word-spacing:-15.939000px;}
.ws3b{word-spacing:-15.918000px;}
.ws28{word-spacing:-15.870000px;}
.ws8b{word-spacing:-15.840000px;}
.ws57{word-spacing:-15.801000px;}
.ws27{word-spacing:-15.732000px;}
.ws71{word-spacing:-15.663000px;}
.ws15{word-spacing:-15.594000px;}
.ws73{word-spacing:-15.561000px;}
.ws65{word-spacing:-15.525000px;}
.ws2a{word-spacing:-15.456000px;}
.ws7c{word-spacing:-15.435000px;}
.ws2b{word-spacing:-15.387000px;}
.ws14{word-spacing:-15.318000px;}
.ws47{word-spacing:-15.249000px;}
.ws40{word-spacing:-15.111000px;}
.ws78{word-spacing:-14.994000px;}
.ws4{word-spacing:-14.940000px;}
.ws2c{word-spacing:-14.835000px;}
.ws79{word-spacing:-14.805000px;}
.ws54{word-spacing:-14.766000px;}
.ws62{word-spacing:-14.697000px;}
.ws3c{word-spacing:-14.400000px;}
.ws58{word-spacing:-14.352000px;}
.ws5{word-spacing:-14.160000px;}
.ws69{word-spacing:-13.860000px;}
.wse{word-spacing:-13.740000px;}
.ws7a{word-spacing:-13.482000px;}
.ws1{word-spacing:-13.314000px;}
.ws8c{word-spacing:-12.660000px;}
.ws48{word-spacing:-11.523000px;}
.ws56{word-spacing:-10.488000px;}
.ws88{word-spacing:-8.568000px;}
.ws80{word-spacing:-6.300000px;}
.ws8{word-spacing:-6.000000px;}
.ws26{word-spacing:-4.899000px;}
.wsd{word-spacing:-4.788000px;}
.ws60{word-spacing:-4.485000px;}
.ws4f{word-spacing:-4.416000px;}
.ws5f{word-spacing:-3.933000px;}
.ws10{word-spacing:-3.696000px;}
.ws36{word-spacing:-3.588000px;}
.ws35{word-spacing:-3.174000px;}
.wsb{word-spacing:-2.760000px;}
.ws17{word-spacing:-2.400000px;}
.ws8f{word-spacing:-1.920000px;}
.ws2f{word-spacing:-1.794000px;}
.ws6f{word-spacing:-1.587000px;}
.ws23{word-spacing:-1.458000px;}
.ws6b{word-spacing:-1.242000px;}
.ws9{word-spacing:-1.176000px;}
.ws1a{word-spacing:-1.104000px;}
.ws21{word-spacing:-1.035000px;}
.ws4d{word-spacing:-0.966000px;}
.ws1c{word-spacing:-0.759000px;}
.wsf{word-spacing:-0.600000px;}
.ws12{word-spacing:-0.552000px;}
.wsa{word-spacing:-0.540000px;}
.ws8e{word-spacing:-0.360000px;}
.ws43{word-spacing:-0.345000px;}
.ws70{word-spacing:-0.276000px;}
.ws31{word-spacing:-0.138000px;}
.ws7{word-spacing:0.000000px;}
.ws33{word-spacing:0.069000px;}
.ws8d{word-spacing:0.126000px;}
.ws50{word-spacing:0.138000px;}
.ws41{word-spacing:0.180000px;}
.ws2d{word-spacing:0.207000px;}
.ws64{word-spacing:0.240000px;}
.ws4e{word-spacing:0.276000px;}
.wsc{word-spacing:0.300000px;}
.ws7d{word-spacing:0.378000px;}
.ws1e{word-spacing:0.414000px;}
.ws86{word-spacing:0.441000px;}
.ws19{word-spacing:0.483000px;}
.ws87{word-spacing:0.504000px;}
.ws85{word-spacing:0.567000px;}
.ws1f{word-spacing:0.621000px;}
.ws92{word-spacing:0.660000px;}
.ws25{word-spacing:0.690000px;}
.ws3a{word-spacing:0.759000px;}
.ws7f{word-spacing:0.819000px;}
.ws2e{word-spacing:0.828000px;}
.ws90{word-spacing:0.840000px;}
.ws34{word-spacing:0.897000px;}
.ws7e{word-spacing:0.945000px;}
.ws24{word-spacing:0.966000px;}
.ws81{word-spacing:1.008000px;}
.ws5a{word-spacing:1.035000px;}
.ws37{word-spacing:1.104000px;}
.ws91{word-spacing:1.140000px;}
.ws75{word-spacing:1.173000px;}
.ws4b{word-spacing:1.242000px;}
.ws30{word-spacing:1.311000px;}
.ws18{word-spacing:1.380000px;}
.ws11{word-spacing:1.449000px;}
.ws4c{word-spacing:1.518000px;}
.ws39{word-spacing:1.587000px;}
.ws53{word-spacing:1.656000px;}
.ws38{word-spacing:1.725000px;}
.ws22{word-spacing:1.794000px;}
.ws82{word-spacing:1.827000px;}
.ws6c{word-spacing:1.863000px;}
.ws51{word-spacing:1.932000px;}
.ws5e{word-spacing:2.001000px;}
.ws42{word-spacing:2.070000px;}
.ws83{word-spacing:2.205000px;}
.ws59{word-spacing:2.277000px;}
.ws5d{word-spacing:2.415000px;}
.ws93{word-spacing:2.460000px;}
.ws6e{word-spacing:2.484000px;}
.ws4a{word-spacing:2.829000px;}
.ws1d{word-spacing:2.898000px;}
.ws52{word-spacing:3.036000px;}
.ws1b{word-spacing:3.174000px;}
.ws32{word-spacing:3.243000px;}
.ws5b{word-spacing:3.381000px;}
.ws84{word-spacing:4.158000px;}
.ws74{word-spacing:4.899000px;}
.ws5c{word-spacing:6.555000px;}
._6{margin-left:-9.406800px;}
._14{margin-left:-8.372400px;}
._12{margin-left:-6.884400px;}
._5{margin-left:-5.528400px;}
._8{margin-left:-4.268400px;}
._9{margin-left:-2.732400px;}
._2{margin-left:-1.569000px;}
._3{width:1.008000px;}
._0{width:2.130000px;}
._d{width:3.131400px;}
._7{width:4.136400px;}
._1{width:6.099000px;}
._4{width:7.302000px;}
._11{width:8.523000px;}
._a{width:9.804000px;}
._f{width:11.427900px;}
._10{width:12.525900px;}
._13{width:14.439600px;}
._16{width:15.882300px;}
._17{width:19.224000px;}
._15{width:20.258700px;}
._19{width:22.576500px;}
._1a{width:26.901600px;}
._18{width:28.644000px;}
._1b{width:33.120900px;}
._b{width:190.680000px;}
._e{width:253.008000px;}
._c{width:578.400000px;}
.fc0{color:rgb(36,31,31);}
.fs3{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y6e{bottom:106.165500px;}
.y91{bottom:106.263000px;}
.yce{bottom:106.269000px;}
.y46{bottom:106.281000px;}
.y136{bottom:106.291500px;}
.y1f{bottom:106.297500px;}
.y118{bottom:106.316550px;}
.ya8{bottom:112.920000px;}
.yf6{bottom:112.926000px;}
.y1e{bottom:125.812500px;}
.y6d{bottom:126.589500px;}
.y45{bottom:126.877500px;}
.y90{bottom:126.894000px;}
.y117{bottom:127.137300px;}
.ycd{bottom:127.227750px;}
.ya7{bottom:133.171500px;}
.yf5{bottom:133.177500px;}
.ye3{bottom:133.198500px;}
.y156{bottom:136.485000px;}
.y135{bottom:136.673250px;}
.y6c{bottom:147.013500px;}
.y44{bottom:147.474000px;}
.y8f{bottom:147.525000px;}
.y116{bottom:147.958050px;}
.ycc{bottom:148.186500px;}
.ya6{bottom:153.423000px;}
.yf4{bottom:153.429000px;}
.ye2{bottom:153.450000px;}
.y155{bottom:156.739500px;}
.y1d{bottom:158.092500px;}
.y134{bottom:167.055000px;}
.y6b{bottom:167.437500px;}
.y43{bottom:168.070500px;}
.y8e{bottom:168.156000px;}
.ycb{bottom:169.145250px;}
.ya5{bottom:173.674500px;}
.yf3{bottom:173.680500px;}
.ye1{bottom:173.701500px;}
.y154{bottom:185.499000px;}
.y6a{bottom:187.861500px;}
.y42{bottom:188.667000px;}
.y8d{bottom:188.787000px;}
.y115{bottom:190.035000px;}
.yca{bottom:190.104000px;}
.ya4{bottom:193.926000px;}
.yf2{bottom:193.932000px;}
.y16f{bottom:200.163000px;}
.y153{bottom:205.753500px;}
.y1c{bottom:207.382500px;}
.y69{bottom:208.285500px;}
.y41{bottom:209.263500px;}
.y8c{bottom:209.418000px;}
.yc9{bottom:211.062750px;}
.ya3{bottom:214.177500px;}
.yf1{bottom:214.183500px;}
.ye0{bottom:214.201500px;}
.y114{bottom:214.618500px;}
.y16e{bottom:220.413000px;}
.y1b{bottom:228.397500px;}
.y68{bottom:228.709500px;}
.y40{bottom:229.860000px;}
.y8b{bottom:230.049000px;}
.yc8{bottom:232.021500px;}
.ya2{bottom:234.429000px;}
.yf0{bottom:234.435000px;}
.y152{bottom:234.513000px;}
.y113{bottom:239.202000px;}
.y16d{bottom:240.663000px;}
.y133{bottom:241.342500px;}
.y67{bottom:249.133500px;}
.y3f{bottom:250.456500px;}
.yc7{bottom:252.980250px;}
.ya1{bottom:254.680500px;}
.yef{bottom:254.686500px;}
.y151{bottom:254.767500px;}
.y16c{bottom:260.913000px;}
.y132{bottom:263.215500px;}
.y112{bottom:263.785500px;}
.y66{bottom:269.557500px;}
.y1a{bottom:270.742500px;}
.y3e{bottom:271.053000px;}
.y8a{bottom:271.915500px;}
.yc6{bottom:273.939000px;}
.ya0{bottom:274.932000px;}
.yee{bottom:274.938000px;}
.y150{bottom:275.022000px;}
.y131{bottom:285.088500px;}
.y65{bottom:289.981500px;}
.y19{bottom:290.257500px;}
.y3d{bottom:291.649500px;}
.y16b{bottom:293.913000px;}
.yc5{bottom:294.897750px;}
.y9f{bottom:295.183500px;}
.yed{bottom:295.189500px;}
.y89{bottom:296.296500px;}
.y14f{bottom:303.781500px;}
.y130{bottom:306.961500px;}
.y18{bottom:309.772500px;}
.y64{bottom:310.405500px;}
.y3c{bottom:312.246000px;}
.y9e{bottom:315.435000px;}
.yec{bottom:315.441000px;}
.yc4{bottom:315.856500px;}
.y88{bottom:320.677500px;}
.y111{bottom:326.788500px;}
.y12f{bottom:328.834500px;}
.y17{bottom:329.287500px;}
.y63{bottom:330.829500px;}
.y14e{bottom:332.541000px;}
.y3b{bottom:332.842500px;}
.y16a{bottom:335.418000px;}
.y9d{bottom:335.686500px;}
.yeb{bottom:335.692500px;}
.yc3{bottom:336.815250px;}
.y87{bottom:345.058500px;}
.y110{bottom:347.609250px;}
.y16{bottom:348.802500px;}
.y12e{bottom:350.707500px;}
.y62{bottom:351.253500px;}
.y14d{bottom:352.795500px;}
.y3a{bottom:353.439000px;}
.y169{bottom:354.918000px;}
.y9c{bottom:355.938000px;}
.yea{bottom:355.944000px;}
.yc2{bottom:357.774000px;}
.y15{bottom:368.317500px;}
.y10f{bottom:368.430000px;}
.y61{bottom:371.677500px;}
.y12d{bottom:372.580500px;}
.y39{bottom:374.035500px;}
.y168{bottom:374.418000px;}
.y9b{bottom:376.189500px;}
.ye9{bottom:376.195500px;}
.yc1{bottom:378.732750px;}
.y14c{bottom:381.555000px;}
.y14{bottom:387.832500px;}
.y10e{bottom:389.268000px;}
.y60{bottom:392.101500px;}
.y167{bottom:393.918000px;}
.y12c{bottom:394.453500px;}
.y38{bottom:394.632000px;}
.y9a{bottom:396.441000px;}
.ye8{bottom:396.447000px;}
.yc0{bottom:399.691500px;}
.y14b{bottom:401.809500px;}
.y13{bottom:407.347500px;}
.y86{bottom:407.557500px;}
.y10d{bottom:410.088750px;}
.y5f{bottom:412.525500px;}
.y166{bottom:413.418000px;}
.y37{bottom:415.228500px;}
.y12b{bottom:416.326500px;}
.y99{bottom:416.692500px;}
.ye7{bottom:416.698500px;}
.ybf{bottom:420.650250px;}
.y14a{bottom:422.064000px;}
.y12{bottom:426.862500px;}
.y85{bottom:428.188500px;}
.y10c{bottom:430.909500px;}
.y165{bottom:432.918000px;}
.y5e{bottom:432.949500px;}
.y36{bottom:435.825000px;}
.y98{bottom:436.944000px;}
.ye6{bottom:436.950000px;}
.y12a{bottom:438.199500px;}
.ybe{bottom:441.609000px;}
.y11{bottom:446.377500px;}
.y84{bottom:448.819500px;}
.y149{bottom:450.823500px;}
.y10b{bottom:451.747500px;}
.y164{bottom:452.418000px;}
.y5d{bottom:453.373500px;}
.y35{bottom:456.421500px;}
.y97{bottom:457.195500px;}
.ye5{bottom:457.201500px;}
.y129{bottom:460.072500px;}
.ybd{bottom:462.567750px;}
.y10{bottom:465.892500px;}
.y83{bottom:469.450500px;}
.y148{bottom:471.078000px;}
.y163{bottom:471.918000px;}
.y10a{bottom:472.568250px;}
.y5c{bottom:473.797500px;}
.y34{bottom:477.018000px;}
.y96{bottom:477.447000px;}
.y128{bottom:481.945500px;}
.ybc{bottom:483.526500px;}
.yf{bottom:485.407500px;}
.y82{bottom:490.081500px;}
.y147{bottom:491.332500px;}
.y162{bottom:491.418000px;}
.y109{bottom:493.389000px;}
.y5b{bottom:494.221500px;}
.y33{bottom:497.614500px;}
.y95{bottom:497.698500px;}
.ye4{bottom:497.701500px;}
.y127{bottom:503.818500px;}
.ybb{bottom:504.485250px;}
.ye{bottom:504.922500px;}
.y81{bottom:510.712500px;}
.y161{bottom:510.918000px;}
.y108{bottom:514.209750px;}
.y5a{bottom:514.645500px;}
.y94{bottom:517.950000px;}
.y32{bottom:518.211000px;}
.y146{bottom:520.092000px;}
.yd{bottom:524.437500px;}
.yba{bottom:525.444000px;}
.y126{bottom:525.691500px;}
.y160{bottom:530.418000px;}
.y80{bottom:531.343500px;}
.y107{bottom:535.030500px;}
.y59{bottom:535.069500px;}
.y93{bottom:538.201500px;}
.y31{bottom:538.807500px;}
.y145{bottom:540.346500px;}
.yc{bottom:543.952500px;}
.yb9{bottom:546.402750px;}
.y125{bottom:547.564500px;}
.y15f{bottom:549.918000px;}
.y7f{bottom:551.974500px;}
.y58{bottom:555.493500px;}
.y106{bottom:555.851250px;}
.ydf{bottom:558.426000px;}
.y30{bottom:559.404000px;}
.yb{bottom:563.467500px;}
.yb8{bottom:567.361500px;}
.y144{bottom:569.106000px;}
.y15e{bottom:569.418000px;}
.y124{bottom:569.437500px;}
.y7e{bottom:572.605500px;}
.y57{bottom:575.917500px;}
.y105{bottom:576.672000px;}
.yde{bottom:578.677500px;}
.y92{bottom:578.701500px;}
.y2f{bottom:580.000500px;}
.yb7{bottom:588.320250px;}
.y15d{bottom:588.918000px;}
.y143{bottom:589.360500px;}
.y123{bottom:591.310500px;}
.y7d{bottom:593.236500px;}
.ya{bottom:595.747500px;}
.y56{bottom:596.341500px;}
.y104{bottom:597.492750px;}
.ydd{bottom:598.929000px;}
.y2e{bottom:600.597000px;}
.y15c{bottom:608.418000px;}
.yb6{bottom:609.279000px;}
.y122{bottom:613.183500px;}
.y7c{bottom:613.867500px;}
.y55{bottom:616.765500px;}
.y142{bottom:618.120000px;}
.y103{bottom:618.313500px;}
.ydc{bottom:619.180500px;}
.yb5{bottom:630.237750px;}
.y7b{bottom:634.498500px;}
.y121{bottom:635.056500px;}
.y54{bottom:637.189500px;}
.y141{bottom:638.374500px;}
.y102{bottom:639.134250px;}
.ydb{bottom:639.432000px;}
.y15b{bottom:640.668000px;}
.y2d{bottom:641.790000px;}
.yb4{bottom:651.196500px;}
.y9{bottom:653.526000px;}
.y7a{bottom:655.129500px;}
.y120{bottom:656.929500px;}
.y53{bottom:657.613500px;}
.yda{bottom:659.683500px;}
.y101{bottom:659.955000px;}
.y2c{bottom:663.135000px;}
.y140{bottom:667.134000px;}
.yb3{bottom:672.155250px;}
.y79{bottom:675.760500px;}
.y52{bottom:678.037500px;}
.yd9{bottom:679.935000px;}
.y8{bottom:680.553000px;}
.y100{bottom:680.775750px;}
.y13f{bottom:687.388500px;}
.yb2{bottom:693.114000px;}
.y78{bottom:696.391500px;}
.y15a{bottom:698.428500px;}
.y51{bottom:698.461500px;}
.y11f{bottom:700.080000px;}
.yd8{bottom:700.186500px;}
.yff{bottom:701.596500px;}
.y2b{bottom:705.748500px;}
.y13e{bottom:707.643000px;}
.yb1{bottom:714.072750px;}
.y77{bottom:717.022500px;}
.y50{bottom:718.885500px;}
.yd7{bottom:720.438000px;}
.yfe{bottom:722.417250px;}
.y159{bottom:725.434500px;}
.y2a{bottom:725.593500px;}
.y11e{bottom:725.696250px;}
.y7{bottom:728.854500px;}
.yb0{bottom:735.031500px;}
.y13d{bottom:736.402500px;}
.y76{bottom:737.653500px;}
.y4f{bottom:739.309500px;}
.yd6{bottom:740.689500px;}
.yfd{bottom:743.238000px;}
.y29{bottom:745.438500px;}
.y11d{bottom:751.312500px;}
.yaf{bottom:755.990250px;}
.y13c{bottom:756.657000px;}
.y75{bottom:758.284500px;}
.y4e{bottom:759.733500px;}
.y6{bottom:760.363500px;}
.yd5{bottom:760.941000px;}
.yfc{bottom:764.058750px;}
.y28{bottom:765.283500px;}
.y13b{bottom:776.911500px;}
.yae{bottom:776.949000px;}
.y74{bottom:778.915500px;}
.y4d{bottom:780.157500px;}
.yd4{bottom:781.192500px;}
.yfb{bottom:784.879500px;}
.y27{bottom:785.128500px;}
.y5{bottom:791.872500px;}
.yad{bottom:797.907750px;}
.y73{bottom:799.546500px;}
.y4c{bottom:800.581500px;}
.yd3{bottom:801.444000px;}
.y26{bottom:804.973500px;}
.y13a{bottom:805.671000px;}
.y158{bottom:814.176000px;}
.y11c{bottom:815.209500px;}
.yac{bottom:818.866500px;}
.y72{bottom:820.177500px;}
.y4b{bottom:821.005500px;}
.yd2{bottom:821.695500px;}
.y25{bottom:824.818500px;}
.yfa{bottom:826.956000px;}
.y139{bottom:834.430500px;}
.y11b{bottom:837.082500px;}
.yab{bottom:839.825250px;}
.y71{bottom:840.808500px;}
.y4a{bottom:841.429500px;}
.yd1{bottom:841.947000px;}
.y24{bottom:844.663500px;}
.yf9{bottom:851.539500px;}
.y4{bottom:853.159500px;}
.y138{bottom:854.685000px;}
.y11a{bottom:858.955500px;}
.yaa{bottom:860.784000px;}
.y70{bottom:861.439500px;}
.y49{bottom:861.853500px;}
.yd0{bottom:862.198500px;}
.y23{bottom:864.508500px;}
.y137{bottom:874.939500px;}
.yf8{bottom:876.123000px;}
.y119{bottom:880.828500px;}
.ya9{bottom:881.742750px;}
.y6f{bottom:882.070500px;}
.y48{bottom:882.277500px;}
.ycf{bottom:882.450000px;}
.y3{bottom:882.679500px;}
.y157{bottom:883.444500px;}
.y22{bottom:884.353500px;}
.yf7{bottom:900.706500px;}
.y47{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y21{bottom:904.198500px;}
.y20{bottom:948.189000px;}
.h9{height:42.070312px;}
.h4{height:52.587891px;}
.hc{height:53.494629px;}
.h3{height:55.217285px;}
.h7{height:60.234375px;}
.h8{height:60.476074px;}
.hd{height:63.246094px;}
.h2{height:65.734863px;}
.ha{height:69.269531px;}
.hb{height:70.993652px;}
.h6{height:73.623047px;}
.h5{height:94.658203px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:80.889300px;}
.x1{left:82.214250px;}
.x6{left:83.990700px;}
.x5{left:85.080000px;}
.x7{left:104.224950px;}
.x4{left:105.960000px;}
.x2{left:232.602000px;}
.x3{left:234.091500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls52{letter-spacing:-5.826667pt;}
.ls4b{letter-spacing:-4.906667pt;}
.ls67{letter-spacing:-4.354667pt;}
.ls77{letter-spacing:-3.752000pt;}
.ls84{letter-spacing:-3.733333pt;}
.ls76{letter-spacing:-3.696000pt;}
.ls51{letter-spacing:-3.005333pt;}
.ls31{letter-spacing:-2.882667pt;}
.ls1d{letter-spacing:-2.821333pt;}
.ls4e{letter-spacing:-2.698667pt;}
.ls1f{letter-spacing:-2.576000pt;}
.ls48{letter-spacing:-2.514667pt;}
.ls53{letter-spacing:-2.392000pt;}
.ls64{letter-spacing:-2.208000pt;}
.ls83{letter-spacing:-2.186667pt;}
.ls54{letter-spacing:-2.146667pt;}
.ls5a{letter-spacing:-2.085333pt;}
.ls50{letter-spacing:-2.024000pt;}
.ls3a{letter-spacing:-1.962667pt;}
.ls75{letter-spacing:-1.960000pt;}
.ls41{letter-spacing:-1.840000pt;}
.ls55{letter-spacing:-1.778667pt;}
.ls1{letter-spacing:-1.733333pt;}
.ls44{letter-spacing:-1.717333pt;}
.ls62{letter-spacing:-1.656000pt;}
.ls74{letter-spacing:-1.624000pt;}
.ls26{letter-spacing:-1.594667pt;}
.ls18{letter-spacing:-1.533333pt;}
.ls39{letter-spacing:-1.472000pt;}
.ls38{letter-spacing:-1.410667pt;}
.ls4a{letter-spacing:-1.349333pt;}
.ls13{letter-spacing:-1.288000pt;}
.ls19{letter-spacing:-1.226667pt;}
.ls2f{letter-spacing:-1.165333pt;}
.ls5{letter-spacing:-1.152000pt;}
.ls49{letter-spacing:-1.104000pt;}
.ls34{letter-spacing:-1.042667pt;}
.ls81{letter-spacing:-1.013333pt;}
.ls37{letter-spacing:-0.981333pt;}
.ls10{letter-spacing:-0.960000pt;}
.ls1a{letter-spacing:-0.920000pt;}
.ls82{letter-spacing:-0.906667pt;}
.ls72{letter-spacing:-0.896000pt;}
.ls28{letter-spacing:-0.858667pt;}
.ls61{letter-spacing:-0.853333pt;}
.ls6f{letter-spacing:-0.840000pt;}
.ls33{letter-spacing:-0.797333pt;}
.ls80{letter-spacing:-0.746667pt;}
.ls2e{letter-spacing:-0.736000pt;}
.ls70{letter-spacing:-0.728000pt;}
.ls3b{letter-spacing:-0.674667pt;}
.ls29{letter-spacing:-0.613333pt;}
.lsa{letter-spacing:-0.586667pt;}
.ls17{letter-spacing:-0.552000pt;}
.ls73{letter-spacing:-0.504000pt;}
.ls7a{letter-spacing:-0.448000pt;}
.ls1b{letter-spacing:-0.429333pt;}
.ls78{letter-spacing:-0.392000pt;}
.ls3f{letter-spacing:-0.373333pt;}
.ls20{letter-spacing:-0.368000pt;}
.ls6e{letter-spacing:-0.336000pt;}
.ls47{letter-spacing:-0.306667pt;}
.lsc{letter-spacing:-0.266667pt;}
.ls25{letter-spacing:-0.245333pt;}
.ls5c{letter-spacing:-0.213333pt;}
.ls59{letter-spacing:-0.200000pt;}
.ls2d{letter-spacing:-0.184000pt;}
.ls40{letter-spacing:-0.160000pt;}
.ls4d{letter-spacing:-0.122667pt;}
.ls7c{letter-spacing:-0.112000pt;}
.ls32{letter-spacing:-0.061333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.106667pt;}
.ls22{letter-spacing:0.122667pt;}
.ls66{letter-spacing:0.245333pt;}
.ls42{letter-spacing:0.306667pt;}
.ls7e{letter-spacing:0.320000pt;}
.ls3d{letter-spacing:0.429333pt;}
.ls8{letter-spacing:0.480000pt;}
.ls14{letter-spacing:0.490667pt;}
.ls11{letter-spacing:0.533333pt;}
.ls46{letter-spacing:0.600000pt;}
.ls1e{letter-spacing:0.674667pt;}
.ls23{letter-spacing:0.858667pt;}
.ls24{letter-spacing:0.920000pt;}
.ls1c{letter-spacing:0.981333pt;}
.ls6a{letter-spacing:1.008000pt;}
.ls6{letter-spacing:1.045333pt;}
.ls5e{letter-spacing:1.104000pt;}
.ls27{letter-spacing:1.296000pt;}
.ls3{letter-spacing:1.344000pt;}
.ls5f{letter-spacing:1.349333pt;}
.ls68{letter-spacing:1.400000pt;}
.ls65{letter-spacing:1.410667pt;}
.ls79{letter-spacing:1.456000pt;}
.ls43{letter-spacing:1.472000pt;}
.ls30{letter-spacing:1.594667pt;}
.ls7f{letter-spacing:1.706667pt;}
.ls16{letter-spacing:2.133333pt;}
.lsb{letter-spacing:2.453333pt;}
.ls35{letter-spacing:2.821333pt;}
.ls36{letter-spacing:3.189333pt;}
.ls12{letter-spacing:3.285333pt;}
.ls7d{letter-spacing:3.306667pt;}
.ls56{letter-spacing:3.496000pt;}
.ls3e{letter-spacing:3.658667pt;}
.ls60{letter-spacing:3.808000pt;}
.ls4c{letter-spacing:3.925333pt;}
.ls57{letter-spacing:3.986667pt;}
.ls2c{letter-spacing:4.170667pt;}
.lsd{letter-spacing:4.256000pt;}
.ls2a{letter-spacing:4.354667pt;}
.ls5b{letter-spacing:5.114667pt;}
.ls7{letter-spacing:5.120000pt;}
.lse{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls71{letter-spacing:5.600000pt;}
.ls7b{letter-spacing:7.616000pt;}
.ls6d{letter-spacing:7.840000pt;}
.ls6b{letter-spacing:12.028800pt;}
.ls6c{letter-spacing:13.748000pt;}
.ls45{letter-spacing:413.223467pt;}
.ls69{letter-spacing:413.876800pt;}
.ls63{letter-spacing:414.270400pt;}
.ls58{letter-spacing:415.537067pt;}
.ls15{letter-spacing:422.192000pt;}
.ls2b{letter-spacing:422.358933pt;}
.ls0{letter-spacing:422.778667pt;}
.ls3c{letter-spacing:846.688000pt;}
.ls5d{letter-spacing:847.130667pt;}
.lsf{letter-spacing:849.461333pt;}
.ls21{letter-spacing:853.061333pt;}
.ls4f{letter-spacing:854.821333pt;}
.ws2{word-spacing:-25.824000pt;}
.ws76{word-spacing:-23.576000pt;}
.ws6d{word-spacing:-21.528000pt;}
.ws6{word-spacing:-20.213333pt;}
.ws3{word-spacing:-20.106667pt;}
.ws44{word-spacing:-19.333333pt;}
.ws3e{word-spacing:-18.706667pt;}
.ws61{word-spacing:-18.533333pt;}
.ws89{word-spacing:-18.293333pt;}
.ws72{word-spacing:-17.136000pt;}
.ws0{word-spacing:-17.000000pt;}
.ws6a{word-spacing:-16.805333pt;}
.ws8a{word-spacing:-16.693333pt;}
.ws46{word-spacing:-16.498667pt;}
.ws63{word-spacing:-15.605333pt;}
.ws7b{word-spacing:-15.288000pt;}
.ws55{word-spacing:-15.149333pt;}
.ws67{word-spacing:-15.026667pt;}
.ws20{word-spacing:-14.904000pt;}
.ws77{word-spacing:-14.896000pt;}
.ws45{word-spacing:-14.842667pt;}
.ws13{word-spacing:-14.597333pt;}
.ws66{word-spacing:-14.536000pt;}
.ws3f{word-spacing:-14.413333pt;}
.ws49{word-spacing:-14.352000pt;}
.ws68{word-spacing:-14.298667pt;}
.ws29{word-spacing:-14.290667pt;}
.ws16{word-spacing:-14.229333pt;}
.ws3d{word-spacing:-14.168000pt;}
.ws3b{word-spacing:-14.149333pt;}
.ws28{word-spacing:-14.106667pt;}
.ws8b{word-spacing:-14.080000pt;}
.ws57{word-spacing:-14.045333pt;}
.ws27{word-spacing:-13.984000pt;}
.ws71{word-spacing:-13.922667pt;}
.ws15{word-spacing:-13.861333pt;}
.ws73{word-spacing:-13.832000pt;}
.ws65{word-spacing:-13.800000pt;}
.ws2a{word-spacing:-13.738667pt;}
.ws7c{word-spacing:-13.720000pt;}
.ws2b{word-spacing:-13.677333pt;}
.ws14{word-spacing:-13.616000pt;}
.ws47{word-spacing:-13.554667pt;}
.ws40{word-spacing:-13.432000pt;}
.ws78{word-spacing:-13.328000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2c{word-spacing:-13.186667pt;}
.ws79{word-spacing:-13.160000pt;}
.ws54{word-spacing:-13.125333pt;}
.ws62{word-spacing:-13.064000pt;}
.ws3c{word-spacing:-12.800000pt;}
.ws58{word-spacing:-12.757333pt;}
.ws5{word-spacing:-12.586667pt;}
.ws69{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.213333pt;}
.ws7a{word-spacing:-11.984000pt;}
.ws1{word-spacing:-11.834667pt;}
.ws8c{word-spacing:-11.253333pt;}
.ws48{word-spacing:-10.242667pt;}
.ws56{word-spacing:-9.322667pt;}
.ws88{word-spacing:-7.616000pt;}
.ws80{word-spacing:-5.600000pt;}
.ws8{word-spacing:-5.333333pt;}
.ws26{word-spacing:-4.354667pt;}
.wsd{word-spacing:-4.256000pt;}
.ws60{word-spacing:-3.986667pt;}
.ws4f{word-spacing:-3.925333pt;}
.ws5f{word-spacing:-3.496000pt;}
.ws10{word-spacing:-3.285333pt;}
.ws36{word-spacing:-3.189333pt;}
.ws35{word-spacing:-2.821333pt;}
.wsb{word-spacing:-2.453333pt;}
.ws17{word-spacing:-2.133333pt;}
.ws8f{word-spacing:-1.706667pt;}
.ws2f{word-spacing:-1.594667pt;}
.ws6f{word-spacing:-1.410667pt;}
.ws23{word-spacing:-1.296000pt;}
.ws6b{word-spacing:-1.104000pt;}
.ws9{word-spacing:-1.045333pt;}
.ws1a{word-spacing:-0.981333pt;}
.ws21{word-spacing:-0.920000pt;}
.ws4d{word-spacing:-0.858667pt;}
.ws1c{word-spacing:-0.674667pt;}
.wsf{word-spacing:-0.533333pt;}
.ws12{word-spacing:-0.490667pt;}
.wsa{word-spacing:-0.480000pt;}
.ws8e{word-spacing:-0.320000pt;}
.ws43{word-spacing:-0.306667pt;}
.ws70{word-spacing:-0.245333pt;}
.ws31{word-spacing:-0.122667pt;}
.ws7{word-spacing:0.000000pt;}
.ws33{word-spacing:0.061333pt;}
.ws8d{word-spacing:0.112000pt;}
.ws50{word-spacing:0.122667pt;}
.ws41{word-spacing:0.160000pt;}
.ws2d{word-spacing:0.184000pt;}
.ws64{word-spacing:0.213333pt;}
.ws4e{word-spacing:0.245333pt;}
.wsc{word-spacing:0.266667pt;}
.ws7d{word-spacing:0.336000pt;}
.ws1e{word-spacing:0.368000pt;}
.ws86{word-spacing:0.392000pt;}
.ws19{word-spacing:0.429333pt;}
.ws87{word-spacing:0.448000pt;}
.ws85{word-spacing:0.504000pt;}
.ws1f{word-spacing:0.552000pt;}
.ws92{word-spacing:0.586667pt;}
.ws25{word-spacing:0.613333pt;}
.ws3a{word-spacing:0.674667pt;}
.ws7f{word-spacing:0.728000pt;}
.ws2e{word-spacing:0.736000pt;}
.ws90{word-spacing:0.746667pt;}
.ws34{word-spacing:0.797333pt;}
.ws7e{word-spacing:0.840000pt;}
.ws24{word-spacing:0.858667pt;}
.ws81{word-spacing:0.896000pt;}
.ws5a{word-spacing:0.920000pt;}
.ws37{word-spacing:0.981333pt;}
.ws91{word-spacing:1.013333pt;}
.ws75{word-spacing:1.042667pt;}
.ws4b{word-spacing:1.104000pt;}
.ws30{word-spacing:1.165333pt;}
.ws18{word-spacing:1.226667pt;}
.ws11{word-spacing:1.288000pt;}
.ws4c{word-spacing:1.349333pt;}
.ws39{word-spacing:1.410667pt;}
.ws53{word-spacing:1.472000pt;}
.ws38{word-spacing:1.533333pt;}
.ws22{word-spacing:1.594667pt;}
.ws82{word-spacing:1.624000pt;}
.ws6c{word-spacing:1.656000pt;}
.ws51{word-spacing:1.717333pt;}
.ws5e{word-spacing:1.778667pt;}
.ws42{word-spacing:1.840000pt;}
.ws83{word-spacing:1.960000pt;}
.ws59{word-spacing:2.024000pt;}
.ws5d{word-spacing:2.146667pt;}
.ws93{word-spacing:2.186667pt;}
.ws6e{word-spacing:2.208000pt;}
.ws4a{word-spacing:2.514667pt;}
.ws1d{word-spacing:2.576000pt;}
.ws52{word-spacing:2.698667pt;}
.ws1b{word-spacing:2.821333pt;}
.ws32{word-spacing:2.882667pt;}
.ws5b{word-spacing:3.005333pt;}
.ws84{word-spacing:3.696000pt;}
.ws74{word-spacing:4.354667pt;}
.ws5c{word-spacing:5.826667pt;}
._6{margin-left:-8.361600pt;}
._14{margin-left:-7.442133pt;}
._12{margin-left:-6.119467pt;}
._5{margin-left:-4.914133pt;}
._8{margin-left:-3.794133pt;}
._9{margin-left:-2.428800pt;}
._2{margin-left:-1.394667pt;}
._3{width:0.896000pt;}
._0{width:1.893333pt;}
._d{width:2.783467pt;}
._7{width:3.676800pt;}
._1{width:5.421333pt;}
._4{width:6.490667pt;}
._11{width:7.576000pt;}
._a{width:8.714667pt;}
._f{width:10.158133pt;}
._10{width:11.134133pt;}
._13{width:12.835200pt;}
._16{width:14.117600pt;}
._17{width:17.088000pt;}
._15{width:18.007733pt;}
._19{width:20.068000pt;}
._1a{width:23.912533pt;}
._18{width:25.461333pt;}
._1b{width:29.440800pt;}
._b{width:169.493333pt;}
._e{width:224.896000pt;}
._c{width:514.133333pt;}
.fs3{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y6e{bottom:94.369333pt;}
.y91{bottom:94.456000pt;}
.yce{bottom:94.461333pt;}
.y46{bottom:94.472000pt;}
.y136{bottom:94.481333pt;}
.y1f{bottom:94.486667pt;}
.y118{bottom:94.503600pt;}
.ya8{bottom:100.373333pt;}
.yf6{bottom:100.378667pt;}
.y1e{bottom:111.833333pt;}
.y6d{bottom:112.524000pt;}
.y45{bottom:112.780000pt;}
.y90{bottom:112.794667pt;}
.y117{bottom:113.010933pt;}
.ycd{bottom:113.091333pt;}
.ya7{bottom:118.374667pt;}
.yf5{bottom:118.380000pt;}
.ye3{bottom:118.398667pt;}
.y156{bottom:121.320000pt;}
.y135{bottom:121.487333pt;}
.y6c{bottom:130.678667pt;}
.y44{bottom:131.088000pt;}
.y8f{bottom:131.133333pt;}
.y116{bottom:131.518267pt;}
.ycc{bottom:131.721333pt;}
.ya6{bottom:136.376000pt;}
.yf4{bottom:136.381333pt;}
.ye2{bottom:136.400000pt;}
.y155{bottom:139.324000pt;}
.y1d{bottom:140.526667pt;}
.y134{bottom:148.493333pt;}
.y6b{bottom:148.833333pt;}
.y43{bottom:149.396000pt;}
.y8e{bottom:149.472000pt;}
.ycb{bottom:150.351333pt;}
.ya5{bottom:154.377333pt;}
.yf3{bottom:154.382667pt;}
.ye1{bottom:154.401333pt;}
.y154{bottom:164.888000pt;}
.y6a{bottom:166.988000pt;}
.y42{bottom:167.704000pt;}
.y8d{bottom:167.810667pt;}
.y115{bottom:168.920000pt;}
.yca{bottom:168.981333pt;}
.ya4{bottom:172.378667pt;}
.yf2{bottom:172.384000pt;}
.y16f{bottom:177.922667pt;}
.y153{bottom:182.892000pt;}
.y1c{bottom:184.340000pt;}
.y69{bottom:185.142667pt;}
.y41{bottom:186.012000pt;}
.y8c{bottom:186.149333pt;}
.yc9{bottom:187.611333pt;}
.ya3{bottom:190.380000pt;}
.yf1{bottom:190.385333pt;}
.ye0{bottom:190.401333pt;}
.y114{bottom:190.772000pt;}
.y16e{bottom:195.922667pt;}
.y1b{bottom:203.020000pt;}
.y68{bottom:203.297333pt;}
.y40{bottom:204.320000pt;}
.y8b{bottom:204.488000pt;}
.yc8{bottom:206.241333pt;}
.ya2{bottom:208.381333pt;}
.yf0{bottom:208.386667pt;}
.y152{bottom:208.456000pt;}
.y113{bottom:212.624000pt;}
.y16d{bottom:213.922667pt;}
.y133{bottom:214.526667pt;}
.y67{bottom:221.452000pt;}
.y3f{bottom:222.628000pt;}
.yc7{bottom:224.871333pt;}
.ya1{bottom:226.382667pt;}
.yef{bottom:226.388000pt;}
.y151{bottom:226.460000pt;}
.y16c{bottom:231.922667pt;}
.y132{bottom:233.969333pt;}
.y112{bottom:234.476000pt;}
.y66{bottom:239.606667pt;}
.y1a{bottom:240.660000pt;}
.y3e{bottom:240.936000pt;}
.y8a{bottom:241.702667pt;}
.yc6{bottom:243.501333pt;}
.ya0{bottom:244.384000pt;}
.yee{bottom:244.389333pt;}
.y150{bottom:244.464000pt;}
.y131{bottom:253.412000pt;}
.y65{bottom:257.761333pt;}
.y19{bottom:258.006667pt;}
.y3d{bottom:259.244000pt;}
.y16b{bottom:261.256000pt;}
.yc5{bottom:262.131333pt;}
.y9f{bottom:262.385333pt;}
.yed{bottom:262.390667pt;}
.y89{bottom:263.374667pt;}
.y14f{bottom:270.028000pt;}
.y130{bottom:272.854667pt;}
.y18{bottom:275.353333pt;}
.y64{bottom:275.916000pt;}
.y3c{bottom:277.552000pt;}
.y9e{bottom:280.386667pt;}
.yec{bottom:280.392000pt;}
.yc4{bottom:280.761333pt;}
.y88{bottom:285.046667pt;}
.y111{bottom:290.478667pt;}
.y12f{bottom:292.297333pt;}
.y17{bottom:292.700000pt;}
.y63{bottom:294.070667pt;}
.y14e{bottom:295.592000pt;}
.y3b{bottom:295.860000pt;}
.y16a{bottom:298.149333pt;}
.y9d{bottom:298.388000pt;}
.yeb{bottom:298.393333pt;}
.yc3{bottom:299.391333pt;}
.y87{bottom:306.718667pt;}
.y110{bottom:308.986000pt;}
.y16{bottom:310.046667pt;}
.y12e{bottom:311.740000pt;}
.y62{bottom:312.225333pt;}
.y14d{bottom:313.596000pt;}
.y3a{bottom:314.168000pt;}
.y169{bottom:315.482667pt;}
.y9c{bottom:316.389333pt;}
.yea{bottom:316.394667pt;}
.yc2{bottom:318.021333pt;}
.y15{bottom:327.393333pt;}
.y10f{bottom:327.493333pt;}
.y61{bottom:330.380000pt;}
.y12d{bottom:331.182667pt;}
.y39{bottom:332.476000pt;}
.y168{bottom:332.816000pt;}
.y9b{bottom:334.390667pt;}
.ye9{bottom:334.396000pt;}
.yc1{bottom:336.651333pt;}
.y14c{bottom:339.160000pt;}
.y14{bottom:344.740000pt;}
.y10e{bottom:346.016000pt;}
.y60{bottom:348.534667pt;}
.y167{bottom:350.149333pt;}
.y12c{bottom:350.625333pt;}
.y38{bottom:350.784000pt;}
.y9a{bottom:352.392000pt;}
.ye8{bottom:352.397333pt;}
.yc0{bottom:355.281333pt;}
.y14b{bottom:357.164000pt;}
.y13{bottom:362.086667pt;}
.y86{bottom:362.273333pt;}
.y10d{bottom:364.523333pt;}
.y5f{bottom:366.689333pt;}
.y166{bottom:367.482667pt;}
.y37{bottom:369.092000pt;}
.y12b{bottom:370.068000pt;}
.y99{bottom:370.393333pt;}
.ye7{bottom:370.398667pt;}
.ybf{bottom:373.911333pt;}
.y14a{bottom:375.168000pt;}
.y12{bottom:379.433333pt;}
.y85{bottom:380.612000pt;}
.y10c{bottom:383.030667pt;}
.y165{bottom:384.816000pt;}
.y5e{bottom:384.844000pt;}
.y36{bottom:387.400000pt;}
.y98{bottom:388.394667pt;}
.ye6{bottom:388.400000pt;}
.y12a{bottom:389.510667pt;}
.ybe{bottom:392.541333pt;}
.y11{bottom:396.780000pt;}
.y84{bottom:398.950667pt;}
.y149{bottom:400.732000pt;}
.y10b{bottom:401.553333pt;}
.y164{bottom:402.149333pt;}
.y5d{bottom:402.998667pt;}
.y35{bottom:405.708000pt;}
.y97{bottom:406.396000pt;}
.ye5{bottom:406.401333pt;}
.y129{bottom:408.953333pt;}
.ybd{bottom:411.171333pt;}
.y10{bottom:414.126667pt;}
.y83{bottom:417.289333pt;}
.y148{bottom:418.736000pt;}
.y163{bottom:419.482667pt;}
.y10a{bottom:420.060667pt;}
.y5c{bottom:421.153333pt;}
.y34{bottom:424.016000pt;}
.y96{bottom:424.397333pt;}
.y128{bottom:428.396000pt;}
.ybc{bottom:429.801333pt;}
.yf{bottom:431.473333pt;}
.y82{bottom:435.628000pt;}
.y147{bottom:436.740000pt;}
.y162{bottom:436.816000pt;}
.y109{bottom:438.568000pt;}
.y5b{bottom:439.308000pt;}
.y33{bottom:442.324000pt;}
.y95{bottom:442.398667pt;}
.ye4{bottom:442.401333pt;}
.y127{bottom:447.838667pt;}
.ybb{bottom:448.431333pt;}
.ye{bottom:448.820000pt;}
.y81{bottom:453.966667pt;}
.y161{bottom:454.149333pt;}
.y108{bottom:457.075333pt;}
.y5a{bottom:457.462667pt;}
.y94{bottom:460.400000pt;}
.y32{bottom:460.632000pt;}
.y146{bottom:462.304000pt;}
.yd{bottom:466.166667pt;}
.yba{bottom:467.061333pt;}
.y126{bottom:467.281333pt;}
.y160{bottom:471.482667pt;}
.y80{bottom:472.305333pt;}
.y107{bottom:475.582667pt;}
.y59{bottom:475.617333pt;}
.y93{bottom:478.401333pt;}
.y31{bottom:478.940000pt;}
.y145{bottom:480.308000pt;}
.yc{bottom:483.513333pt;}
.yb9{bottom:485.691333pt;}
.y125{bottom:486.724000pt;}
.y15f{bottom:488.816000pt;}
.y7f{bottom:490.644000pt;}
.y58{bottom:493.772000pt;}
.y106{bottom:494.090000pt;}
.ydf{bottom:496.378667pt;}
.y30{bottom:497.248000pt;}
.yb{bottom:500.860000pt;}
.yb8{bottom:504.321333pt;}
.y144{bottom:505.872000pt;}
.y15e{bottom:506.149333pt;}
.y124{bottom:506.166667pt;}
.y7e{bottom:508.982667pt;}
.y57{bottom:511.926667pt;}
.y105{bottom:512.597333pt;}
.yde{bottom:514.380000pt;}
.y92{bottom:514.401333pt;}
.y2f{bottom:515.556000pt;}
.yb7{bottom:522.951333pt;}
.y15d{bottom:523.482667pt;}
.y143{bottom:523.876000pt;}
.y123{bottom:525.609333pt;}
.y7d{bottom:527.321333pt;}
.ya{bottom:529.553333pt;}
.y56{bottom:530.081333pt;}
.y104{bottom:531.104667pt;}
.ydd{bottom:532.381333pt;}
.y2e{bottom:533.864000pt;}
.y15c{bottom:540.816000pt;}
.yb6{bottom:541.581333pt;}
.y122{bottom:545.052000pt;}
.y7c{bottom:545.660000pt;}
.y55{bottom:548.236000pt;}
.y142{bottom:549.440000pt;}
.y103{bottom:549.612000pt;}
.ydc{bottom:550.382667pt;}
.yb5{bottom:560.211333pt;}
.y7b{bottom:563.998667pt;}
.y121{bottom:564.494667pt;}
.y54{bottom:566.390667pt;}
.y141{bottom:567.444000pt;}
.y102{bottom:568.119333pt;}
.ydb{bottom:568.384000pt;}
.y15b{bottom:569.482667pt;}
.y2d{bottom:570.480000pt;}
.yb4{bottom:578.841333pt;}
.y9{bottom:580.912000pt;}
.y7a{bottom:582.337333pt;}
.y120{bottom:583.937333pt;}
.y53{bottom:584.545333pt;}
.yda{bottom:586.385333pt;}
.y101{bottom:586.626667pt;}
.y2c{bottom:589.453333pt;}
.y140{bottom:593.008000pt;}
.yb3{bottom:597.471333pt;}
.y79{bottom:600.676000pt;}
.y52{bottom:602.700000pt;}
.yd9{bottom:604.386667pt;}
.y8{bottom:604.936000pt;}
.y100{bottom:605.134000pt;}
.y13f{bottom:611.012000pt;}
.yb2{bottom:616.101333pt;}
.y78{bottom:619.014667pt;}
.y15a{bottom:620.825333pt;}
.y51{bottom:620.854667pt;}
.y11f{bottom:622.293333pt;}
.yd8{bottom:622.388000pt;}
.yff{bottom:623.641333pt;}
.y2b{bottom:627.332000pt;}
.y13e{bottom:629.016000pt;}
.yb1{bottom:634.731333pt;}
.y77{bottom:637.353333pt;}
.y50{bottom:639.009333pt;}
.yd7{bottom:640.389333pt;}
.yfe{bottom:642.148667pt;}
.y159{bottom:644.830667pt;}
.y2a{bottom:644.972000pt;}
.y11e{bottom:645.063333pt;}
.y7{bottom:647.870667pt;}
.yb0{bottom:653.361333pt;}
.y13d{bottom:654.580000pt;}
.y76{bottom:655.692000pt;}
.y4f{bottom:657.164000pt;}
.yd6{bottom:658.390667pt;}
.yfd{bottom:660.656000pt;}
.y29{bottom:662.612000pt;}
.y11d{bottom:667.833333pt;}
.yaf{bottom:671.991333pt;}
.y13c{bottom:672.584000pt;}
.y75{bottom:674.030667pt;}
.y4e{bottom:675.318667pt;}
.y6{bottom:675.878667pt;}
.yd5{bottom:676.392000pt;}
.yfc{bottom:679.163333pt;}
.y28{bottom:680.252000pt;}
.y13b{bottom:690.588000pt;}
.yae{bottom:690.621333pt;}
.y74{bottom:692.369333pt;}
.y4d{bottom:693.473333pt;}
.yd4{bottom:694.393333pt;}
.yfb{bottom:697.670667pt;}
.y27{bottom:697.892000pt;}
.y5{bottom:703.886667pt;}
.yad{bottom:709.251333pt;}
.y73{bottom:710.708000pt;}
.y4c{bottom:711.628000pt;}
.yd3{bottom:712.394667pt;}
.y26{bottom:715.532000pt;}
.y13a{bottom:716.152000pt;}
.y158{bottom:723.712000pt;}
.y11c{bottom:724.630667pt;}
.yac{bottom:727.881333pt;}
.y72{bottom:729.046667pt;}
.y4b{bottom:729.782667pt;}
.yd2{bottom:730.396000pt;}
.y25{bottom:733.172000pt;}
.yfa{bottom:735.072000pt;}
.y139{bottom:741.716000pt;}
.y11b{bottom:744.073333pt;}
.yab{bottom:746.511333pt;}
.y71{bottom:747.385333pt;}
.y4a{bottom:747.937333pt;}
.yd1{bottom:748.397333pt;}
.y24{bottom:750.812000pt;}
.yf9{bottom:756.924000pt;}
.y4{bottom:758.364000pt;}
.y138{bottom:759.720000pt;}
.y11a{bottom:763.516000pt;}
.yaa{bottom:765.141333pt;}
.y70{bottom:765.724000pt;}
.y49{bottom:766.092000pt;}
.yd0{bottom:766.398667pt;}
.y23{bottom:768.452000pt;}
.y137{bottom:777.724000pt;}
.yf8{bottom:778.776000pt;}
.y119{bottom:782.958667pt;}
.ya9{bottom:783.771333pt;}
.y6f{bottom:784.062667pt;}
.y48{bottom:784.246667pt;}
.ycf{bottom:784.400000pt;}
.y3{bottom:784.604000pt;}
.y157{bottom:785.284000pt;}
.y22{bottom:786.092000pt;}
.yf7{bottom:800.628000pt;}
.y47{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y21{bottom:803.732000pt;}
.y20{bottom:842.834667pt;}
.h9{height:37.395833pt;}
.h4{height:46.744792pt;}
.hc{height:47.550781pt;}
.h3{height:49.082031pt;}
.h7{height:53.541667pt;}
.h8{height:53.756510pt;}
.hd{height:56.218750pt;}
.h2{height:58.430990pt;}
.ha{height:61.572917pt;}
.hb{height:63.105469pt;}
.h6{height:65.442708pt;}
.h5{height:84.140625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:71.901600pt;}
.x1{left:73.079333pt;}
.x6{left:74.658400pt;}
.x5{left:75.626667pt;}
.x7{left:92.644400pt;}
.x4{left:94.186667pt;}
.x2{left:206.757333pt;}
.x3{left:208.081333pt;}
}




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