
    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_54a34083192eab6173b4a6d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.042222;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_342519ad92d5b689b554e093.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.830667;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_be5575b55f97cad80b0a8991.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941778;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_968404e8092b33b7dcfd7009.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666667;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_ca6bd7189fd4eab822fe056a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.043556;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_12b4c468b50b1e53ebd27219.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666667;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_1c360a78ce731262313793c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_75c8cb0644a8a8d924a227aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914667;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_968404e8092b33b7dcfd7009.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666667;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_b10073f8022cfae1c629f0af.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_84cd2a4193e8a2749ab9f158.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_e1d52453688698632716204b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.701333;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_20937fc29a16b4da9097cfe1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_16d6f4b7f7b6409539206a1d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.707031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_31830ca5d544847dcb28ceb5.woff2')format("woff");}.fff{font-family:fff;line-height:0.698667;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e6cea4d17d7770557107c152.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.675293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.999993px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.879992px;}
.ls5a{letter-spacing:-6.719997px;}
.ls4d{letter-spacing:-5.982010px;}
.ls64{letter-spacing:-5.082010px;}
.ls65{letter-spacing:-5.010010px;}
.ls63{letter-spacing:-4.361998px;}
.ls60{letter-spacing:-3.209999px;}
.ls18{letter-spacing:-2.633999px;}
.ls29{letter-spacing:-2.585999px;}
.ls5c{letter-spacing:-2.489999px;}
.ls3d{letter-spacing:-1.068000px;}
.ls45{letter-spacing:-0.648000px;}
.ls58{letter-spacing:-0.612000px;}
.ls57{letter-spacing:-0.465000px;}
.ls4f{letter-spacing:-0.450000px;}
.ls59{letter-spacing:-0.408000px;}
.ls55{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.349200px;}
.ls37{letter-spacing:-0.306000px;}
.ls62{letter-spacing:-0.285600px;}
.ls4{letter-spacing:-0.265800px;}
.ls13{letter-spacing:-0.258000px;}
.ls3b{letter-spacing:-0.226200px;}
.ls24{letter-spacing:-0.223200px;}
.ls26{letter-spacing:-0.220200px;}
.ls36{letter-spacing:-0.215400px;}
.ls42{letter-spacing:-0.208800px;}
.ls21{letter-spacing:-0.175200px;}
.ls11{letter-spacing:-0.154800px;}
.ls44{letter-spacing:-0.104400px;}
.ls3a{letter-spacing:-0.078600px;}
.ls19{letter-spacing:-0.072000px;}
.ls22{letter-spacing:-0.069600px;}
.ls1{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.000003px;}
.ls56{letter-spacing:0.038880px;}
.ls33{letter-spacing:0.043200px;}
.ls4e{letter-spacing:0.055440px;}
.ls2b{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.078000px;}
.ls31{letter-spacing:0.100750px;}
.ls25{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.118200px;}
.ls15{letter-spacing:0.126000px;}
.ls3c{letter-spacing:0.129600px;}
.lsa{letter-spacing:0.135292px;}
.ls2a{letter-spacing:0.144000px;}
.ls54{letter-spacing:0.148800px;}
.ls10{letter-spacing:0.149766px;}
.ls5d{letter-spacing:0.151874px;}
.lsd{letter-spacing:0.154080px;}
.ls2d{letter-spacing:0.158400px;}
.ls4b{letter-spacing:0.162000px;}
.ls34{letter-spacing:0.169200px;}
.ls1b{letter-spacing:0.172200px;}
.ls49{letter-spacing:0.201000px;}
.ls20{letter-spacing:0.208800px;}
.ls5f{letter-spacing:0.209400px;}
.ls40{letter-spacing:0.229595px;}
.ls16{letter-spacing:0.237600px;}
.ls2e{letter-spacing:0.248366px;}
.ls2f{letter-spacing:0.259880px;}
.ls50{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.272084px;}
.ls7{letter-spacing:0.280800px;}
.ls1a{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.294600px;}
.ls5b{letter-spacing:0.303600px;}
.ls43{letter-spacing:0.312000px;}
.ls61{letter-spacing:0.314400px;}
.ls47{letter-spacing:0.315360px;}
.ls1c{letter-spacing:0.323400px;}
.ls30{letter-spacing:0.331154px;}
.ls14{letter-spacing:0.331200px;}
.ls12{letter-spacing:0.357600px;}
.ls5{letter-spacing:0.370800px;}
.ls51{letter-spacing:0.378000px;}
.ls32{letter-spacing:0.380809px;}
.ls35{letter-spacing:0.462000px;}
.ls5e{letter-spacing:0.490974px;}
.ls3e{letter-spacing:0.493800px;}
.ls41{letter-spacing:0.508201px;}
.ls23{letter-spacing:0.544801px;}
.lsf{letter-spacing:0.561600px;}
.ls4a{letter-spacing:0.828000px;}
.ls9{letter-spacing:0.870000px;}
.ls52{letter-spacing:0.882000px;}
.ls2c{letter-spacing:0.968365px;}
.ls4c{letter-spacing:0.990000px;}
.ls8{letter-spacing:1.002000px;}
.ls39{letter-spacing:2.215381px;}
.ls38{letter-spacing:2.349294px;}
.ls0{letter-spacing:3.848364px;}
.lsc{letter-spacing:4.971564px;}
.lse{letter-spacing:6.728363px;}
.ls46{letter-spacing:28.943988px;}
.ls27{letter-spacing:30.383988px;}
.ls3f{letter-spacing:31.103988px;}
.ls53{letter-spacing:32.543987px;}
.ls28{letter-spacing:33.983986px;}
.ls1f{letter-spacing:39.546671px;}
.ls17{letter-spacing:39.743984px;}
.ls1e{letter-spacing:46.026668px;}
.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;}
}
.wsf{word-spacing:-22.751991px;}
.ws18{word-spacing:-20.663992px;}
.ws19{word-spacing:-20.591992px;}
.ws25{word-spacing:-20.519995px;}
.ws1{word-spacing:-20.519992px;}
.wse{word-spacing:-20.447992px;}
.ws2b{word-spacing:-20.159992px;}
.ws7{word-spacing:-18.033627px;}
.ws1a{word-spacing:-17.999993px;}
.ws8{word-spacing:-17.901627px;}
.ws14{word-spacing:-17.576428px;}
.ws1b{word-spacing:-17.493628px;}
.ws35{word-spacing:-17.346027px;}
.ws21{word-spacing:-17.343627px;}
.ws31{word-spacing:-17.335227px;}
.ws5{word-spacing:-17.326227px;}
.ws6{word-spacing:-17.312427px;}
.wsc{word-spacing:-17.269227px;}
.ws33{word-spacing:-17.241027px;}
.ws11{word-spacing:-17.240427px;}
.ws26{word-spacing:-17.232627px;}
.ws1d{word-spacing:-17.203827px;}
.ws2a{word-spacing:-17.180427px;}
.ws1f{word-spacing:-17.161227px;}
.ws10{word-spacing:-17.109627px;}
.ws28{word-spacing:-17.087067px;}
.ws2c{word-spacing:-17.070507px;}
.ws2{word-spacing:-17.031627px;}
.ws13{word-spacing:-16.962027px;}
.ws22{word-spacing:-16.927227px;}
.ws9{word-spacing:-16.876827px;}
.ws12{word-spacing:-16.856427px;}
.ws20{word-spacing:-16.822827px;}
.ws16{word-spacing:-16.811427px;}
.ws15{word-spacing:-16.808427px;}
.ws1e{word-spacing:-16.805427px;}
.wsb{word-spacing:-16.773627px;}
.ws3{word-spacing:-16.765827px;}
.ws36{word-spacing:-16.746028px;}
.ws2f{word-spacing:-16.623628px;}
.ws2d{word-spacing:-16.566627px;}
.ws2e{word-spacing:-16.419628px;}
.ws0{word-spacing:-15.390028px;}
.ws29{word-spacing:-15.084028px;}
.ws1c{word-spacing:-14.940024px;}
.ws23{word-spacing:-14.742028px;}
.ws32{word-spacing:-14.541628px;}
.ws17{word-spacing:-14.445628px;}
.ws34{word-spacing:-13.821629px;}
.wsa{word-spacing:-13.748429px;}
.ws37{word-spacing:-12.669629px;}
.ws39{word-spacing:-12.021617px;}
.ws38{word-spacing:-11.949617px;}
.ws24{word-spacing:-11.080796px;}
.ws27{word-spacing:-11.049618px;}
.ws30{word-spacing:-10.311630px;}
.wsd{word-spacing:-8.618397px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-12.686180px;}
._1c{margin-left:-9.787578px;}
._29{margin-left:-6.430930px;}
._3{margin-left:-4.972416px;}
._2{margin-left:-3.453839px;}
._4{margin-left:-2.256562px;}
._0{margin-left:-1.027618px;}
._1{width:1.114275px;}
._9{width:2.137569px;}
._a{width:3.619378px;}
._22{width:4.642845px;}
._d{width:5.643536px;}
._8{width:7.111737px;}
._5{width:8.366963px;}
._14{width:9.658374px;}
._e{width:11.021947px;}
._6{width:12.307635px;}
._7{width:13.509851px;}
._17{width:14.740353px;}
._16{width:15.935017px;}
._11{width:18.301436px;}
._15{width:19.310547px;}
._c{width:20.711175px;}
._b{width:21.750736px;}
._27{width:22.901454px;}
._24{width:24.288259px;}
._1d{width:26.354113px;}
._f{width:27.510498px;}
._18{width:29.402069px;}
._19{width:30.624934px;}
._10{width:32.486523px;}
._20{width:34.969519px;}
._1f{width:36.029702px;}
._23{width:37.822388px;}
._25{width:44.360835px;}
._26{width:45.681844px;}
._1b{width:59.279833px;}
._12{width:193.544683px;}
._21{width:199.169962px;}
._1e{width:202.049961px;}
._13{width:203.489960px;}
._28{width:204.929959px;}
.fc3{color:rgb(32,33,34);}
.fc2{color:transparent;}
.fc1{color:rgb(23,23,23);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.239988px;}
.fs6{font-size:38.879984px;}
.fs5{font-size:48.240101px;}
.fs0{font-size:54.000098px;}
.fs2{font-size:59.760096px;}
.fs3{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y21{bottom:9.900375px;}
.y20{bottom:28.620368px;}
.y1f{bottom:47.340360px;}
.y3{bottom:56.374477px;}
.y22{bottom:57.635977px;}
.y1e{bottom:66.285353px;}
.y2{bottom:73.294471px;}
.y1d{bottom:85.005345px;}
.y1c{bottom:103.725338px;}
.y59{bottom:109.116556px;}
.y163{bottom:111.276105px;}
.y1b2{bottom:111.456855px;}
.y176{bottom:111.816105px;}
.y14d{bottom:113.796104px;}
.y195{bottom:113.797754px;}
.y109{bottom:113.976104px;}
.y86{bottom:116.316103px;}
.ya4{bottom:121.356101px;}
.yb1{bottom:121.897451px;}
.y1b{bottom:122.445330px;}
.yd2{bottom:124.236550px;}
.y58{bottom:128.736549px;}
.y162{bottom:129.456098px;}
.ycd{bottom:130.896098px;}
.y175{bottom:131.616097px;}
.y194{bottom:132.517747px;}
.y1b1{bottom:133.056847px;}
.y14c{bottom:133.956096px;}
.y108{bottom:134.136096px;}
.y184{bottom:134.137446px;}
.yda{bottom:134.856846px;}
.y85{bottom:136.476095px;}
.y57{bottom:140.976094px;}
.y121{bottom:140.977594px;}
.y12e{bottom:141.516093px;}
.y19{bottom:142.416093px;}
.ya3{bottom:142.956093px;}
.yb0{bottom:143.497443px;}
.ye9{bottom:143.497593px;}
.yd1{bottom:143.676543px;}
.y40{bottom:146.196842px;}
.yec{bottom:146.197592px;}
.y161{bottom:147.816091px;}
.y174{bottom:149.796090px;}
.y193{bottom:151.230690px;}
.ycc{bottom:152.489039px;}
.y14b{bottom:154.289038px;}
.y107{bottom:154.469038px;}
.y1b0{bottom:154.649788px;}
.y183{bottom:155.550388px;}
.yd0{bottom:155.910388px;}
.yd9{bottom:156.449037px;}
.y84{bottom:156.809037px;}
.y12d{bottom:159.689036px;}
.y18{bottom:164.009034px;}
.ya2{bottom:164.549034px;}
.ye8{bottom:164.910534px;}
.yaf{bottom:165.090384px;}
.y160{bottom:165.989034px;}
.y6b{bottom:166.889033px;}
.y3f{bottom:167.609783px;}
.yeb{bottom:167.610533px;}
.y173{bottom:167.969033px;}
.y192{bottom:169.950682px;}
.ycb{bottom:174.089030px;}
.y14a{bottom:174.449030px;}
.y106{bottom:174.629030px;}
.y1af{bottom:176.069780px;}
.y120{bottom:176.430529px;}
.y83{bottom:176.969029px;}
.y182{bottom:177.150379px;}
.y12c{bottom:177.869029px;}
.yd8{bottom:178.049029px;}
.y15f{bottom:184.169026px;}
.y17{bottom:185.609026px;}
.ya1{bottom:186.149026px;}
.ye7{bottom:186.510525px;}
.y6a{bottom:188.489025px;}
.y191{bottom:188.850674px;}
.ycf{bottom:189.209024px;}
.y3e{bottom:189.209774px;}
.yea{bottom:189.210524px;}
.y56{bottom:192.989773px;}
.y105{bottom:194.789022px;}
.yca{bottom:195.689022px;}
.y12b{bottom:196.229022px;}
.y82{bottom:197.309021px;}
.y1ae{bottom:197.669771px;}
.y11f{bottom:198.210521px;}
.y181{bottom:198.750370px;}
.yd7{bottom:199.649020px;}
.yae{bottom:201.630369px;}
.y15e{bottom:202.349019px;}
.y172{bottom:204.329018px;}
.y16{bottom:207.209017px;}
.y190{bottom:207.570667px;}
.ya0{bottom:207.749017px;}
.ye6{bottom:208.110517px;}
.y69{bottom:209.909016px;}
.yce{bottom:210.809016px;}
.y3d{bottom:210.809766px;}
.y12a{bottom:214.409014px;}
.y55{bottom:214.409764px;}
.y104{bottom:215.129014px;}
.yc9{bottom:217.109013px;}
.y81{bottom:217.469013px;}
.y11e{bottom:218.730513px;}
.y1ad{bottom:219.269762px;}
.y15d{bottom:220.529012px;}
.y180{bottom:221.610361px;}
.y171{bottom:222.689011px;}
.yad{bottom:223.230361px;}
.y18f{bottom:226.290659px;}
.y15{bottom:228.809008px;}
.y9f{bottom:229.349008px;}
.ye5{bottom:229.710508px;}
.y68{bottom:231.509007px;}
.y3c{bottom:232.409007px;}
.y149{bottom:232.589007px;}
.y103{bottom:235.334006px;}
.yd6{bottom:235.874006px;}
.y54{bottom:236.054756px;}
.y80{bottom:237.674005px;}
.yc8{bottom:238.754004px;}
.y11d{bottom:239.115504px;}
.y170{bottom:240.914004px;}
.y1ac{bottom:240.914754px;}
.yac{bottom:244.875352px;}
.y129{bottom:245.234002px;}
.y17f{bottom:246.314001px;}
.y18e{bottom:248.115651px;}
.y14{bottom:250.454000px;}
.y9e{bottom:250.814000px;}
.y15c{bottom:251.353999px;}
.ye4{bottom:251.355499px;}
.yd5{bottom:252.793999px;}
.y67{bottom:253.153999px;}
.y3b{bottom:254.053998px;}
.y102{bottom:255.673998px;}
.y53{bottom:256.213998px;}
.y7f{bottom:258.013997px;}
.y16f{bottom:259.093996px;}
.y11c{bottom:259.275496px;}
.yc7{bottom:260.353996px;}
.y1ab{bottom:262.513995px;}
.y128{bottom:265.393994px;}
.yab{bottom:266.475343px;}
.y17e{bottom:267.733993px;}
.y148{bottom:268.993992px;}
.yd4{bottom:269.713992px;}
.y18d{bottom:269.715642px;}
.ye3{bottom:270.614742px;}
.y15b{bottom:271.693991px;}
.y13{bottom:271.873991px;}
.y9d{bottom:272.413991px;}
.y66{bottom:274.753990px;}
.y3a{bottom:275.473990px;}
.y101{bottom:275.833990px;}
.y52{bottom:276.373989px;}
.y16e{bottom:277.273989px;}
.y7e{bottom:278.173989px;}
.y11b{bottom:279.614738px;}
.yc6{bottom:281.953987px;}
.y1aa{bottom:283.933986px;}
.y127{bottom:285.733986px;}
.yd3{bottom:286.633985px;}
.y147{bottom:287.353985px;}
.y17d{bottom:287.893985px;}
.yaa{bottom:288.074585px;}
.y18c{bottom:291.135634px;}
.y15a{bottom:291.853983px;}
.ye2{bottom:293.114733px;}
.y12{bottom:293.473983px;}
.y9c{bottom:294.013982px;}
.y16d{bottom:295.453982px;}
.y100{bottom:296.173982px;}
.y65{bottom:296.353981px;}
.y51{bottom:296.713981px;}
.y39{bottom:297.073981px;}
.y7d{bottom:298.513981px;}
.y11a{bottom:299.774730px;}
.yc5{bottom:303.553979px;}
.y146{bottom:305.533978px;}
.y126{bottom:305.893978px;}
.y17c{bottom:308.053977px;}
.ya9{bottom:309.494576px;}
.y159{bottom:312.193975px;}
.y18b{bottom:312.734875px;}
.y11{bottom:315.073974px;}
.yff{bottom:316.333973px;}
.y50{bottom:316.873973px;}
.y64{bottom:317.773973px;}
.ye1{bottom:318.134723px;}
.y38{bottom:318.673973px;}
.y119{bottom:320.114722px;}
.y145{bottom:323.713971px;}
.yc4{bottom:325.153970px;}
.y125{bottom:326.233970px;}
.y1a9{bottom:327.133969px;}
.y17b{bottom:328.393969px;}
.y158{bottom:332.353967px;}
.ya8{bottom:332.354567px;}
.y9b{bottom:333.613967px;}
.y18a{bottom:334.334866px;}
.yfe{bottom:336.493965px;}
.y10{bottom:336.673965px;}
.y4f{bottom:337.033965px;}
.y63{bottom:339.373964px;}
.ye0{bottom:339.914714px;}
.y37{bottom:340.273964px;}
.y7c{bottom:340.453964px;}
.y144{bottom:341.893963px;}
.y118{bottom:342.974713px;}
.y124{bottom:346.393961px;}
.yc3{bottom:346.573961px;}
.y17a{bottom:348.553961px;}
.y1a8{bottom:348.733961px;}
.y157{bottom:352.693959px;}
.y9a{bottom:355.213958px;}
.y189{bottom:355.934858px;}
.yfd{bottom:356.833957px;}
.y4e{bottom:357.373957px;}
.yf{bottom:358.273957px;}
.ya7{bottom:358.274557px;}
.y143{bottom:360.073956px;}
.y62{bottom:360.973956px;}
.ydf{bottom:361.513955px;}
.y36{bottom:361.873955px;}
.y7b{bottom:362.053955px;}
.y117{bottom:366.554703px;}
.y123{bottom:366.733953px;}
.yc2{bottom:368.173953px;}
.y179{bottom:368.893952px;}
.y1a7{bottom:370.333952px;}
.y156{bottom:372.853951px;}
.y99{bottom:376.633949px;}
.yfc{bottom:376.993949px;}
.y4d{bottom:377.533949px;}
.y188{bottom:377.536349px;}
.ye{bottom:379.693948px;}
.y61{bottom:382.573947px;}
.yde{bottom:383.113947px;}
.ya6{bottom:383.114547px;}
.y35{bottom:383.473947px;}
.y7a{bottom:383.653947px;}
.y122{bottom:386.893945px;}
.y16c{bottom:387.073945px;}
.y116{bottom:387.074695px;}
.y178{bottom:389.053944px;}
.yc1{bottom:389.773944px;}
.y142{bottom:390.853944px;}
.y1a6{bottom:391.753943px;}
.y155{bottom:392.473943px;}
.yfb{bottom:397.333941px;}
.y4c{bottom:397.873941px;}
.y98{bottom:398.233941px;}
.y187{bottom:400.036340px;}
.yd{bottom:401.293939px;}
.y60{bottom:404.173938px;}
.ydd{bottom:404.713938px;}
.y34{bottom:404.893938px;}
.ya5{bottom:404.894538px;}
.y79{bottom:405.073938px;}
.y115{bottom:407.053937px;}
.y16b{bottom:407.233937px;}
.y177{bottom:409.213936px;}
.y154{bottom:410.653936px;}
.y141{bottom:411.193936px;}
.yc0{bottom:411.373935px;}
.y1a5{bottom:413.353935px;}
.yfa{bottom:417.493933px;}
.y4b{bottom:418.033933px;}
.y97{bottom:419.833932px;}
.y186{bottom:422.176331px;}
.yc{bottom:422.893931px;}
.y5f{bottom:425.624830px;}
.ydc{bottom:426.164830px;}
.y33{bottom:426.524829px;}
.y78{bottom:426.704829px;}
.y114{bottom:427.424829px;}
.y16a{bottom:427.604829px;}
.y153{bottom:429.044828px;}
.y140{bottom:431.384827px;}
.ybf{bottom:433.004827px;}
.y1a4{bottom:434.984826px;}
.yf9{bottom:437.864825px;}
.y4a{bottom:438.404825px;}
.yb{bottom:444.524822px;}
.y185{bottom:445.064822px;}
.y5e{bottom:447.224821px;}
.y113{bottom:447.584821px;}
.ydb{bottom:447.764821px;}
.y32{bottom:448.124821px;}
.y77{bottom:448.304821px;}
.y13f{bottom:451.724819px;}
.y96{bottom:453.524819px;}
.ybe{bottom:454.424818px;}
.y1a3{bottom:456.584817px;}
.yf8{bottom:458.024817px;}
.y49{bottom:458.564817px;}
.y152{bottom:465.404814px;}
.ya{bottom:466.124814px;}
.y112{bottom:467.924813px;}
.y5d{bottom:468.824812px;}
.y31{bottom:469.724812px;}
.y76{bottom:469.904812px;}
.y13e{bottom:471.884811px;}
.y95{bottom:474.944810px;}
.ybd{bottom:476.024810px;}
.yf7{bottom:478.184809px;}
.y48{bottom:478.724809px;}
.y151{bottom:483.584807px;}
.y9{bottom:487.364805px;}
.y111{bottom:488.084805px;}
.y169{bottom:488.264805px;}
.y30{bottom:491.324803px;}
.y75{bottom:491.504803px;}
.y5c{bottom:491.684803px;}
.y13d{bottom:492.224803px;}
.y94{bottom:496.544801px;}
.ybc{bottom:497.624801px;}
.yf6{bottom:498.524801px;}
.y47{bottom:499.064800px;}
.y1a2{bottom:499.604800px;}
.y150{bottom:501.764799px;}
.y110{bottom:508.424797px;}
.y8{bottom:511.484795px;}
.y13c{bottom:512.384795px;}
.y2f{bottom:512.744795px;}
.y74{bottom:512.924795px;}
.y5b{bottom:515.804794px;}
.y93{bottom:518.144793px;}
.y46{bottom:519.224792px;}
.y14f{bottom:520.124792px;}
.y1a1{bottom:521.204792px;}
.y168{bottom:528.224789px;}
.y10f{bottom:528.584789px;}
.y13b{bottom:532.544787px;}
.y2e{bottom:534.344786px;}
.y73{bottom:534.524786px;}
.yf5{bottom:535.064786px;}
.y5a{bottom:535.604786px;}
.y7{bottom:535.784786px;}
.y14e{bottom:538.304785px;}
.y45{bottom:539.564784px;}
.y92{bottom:539.744784px;}
.ybb{bottom:540.824784px;}
.y1a0{bottom:542.804783px;}
.y167{bottom:546.404781px;}
.y10e{bottom:548.744781px;}
.yf4{bottom:551.804779px;}
.y1a{bottom:551.984400px;}
.y13a{bottom:552.884779px;}
.y2d{bottom:555.944778px;}
.y72{bottom:556.124778px;}
.y44{bottom:559.724776px;}
.y91{bottom:561.344775px;}
.y19f{bottom:564.404774px;}
.y166{bottom:564.584774px;}
.yf3{bottom:568.724773px;}
.y10d{bottom:569.084772px;}
.y139{bottom:573.044771px;}
.y2c{bottom:577.544769px;}
.y71{bottom:577.724769px;}
.yba{bottom:579.524768px;}
.y43{bottom:580.064768px;}
.y90{bottom:582.764767px;}
.yf2{bottom:585.644766px;}
.y19e{bottom:586.004766px;}
.y10c{bottom:589.244764px;}
.y138{bottom:593.384763px;}
.yb9{bottom:598.964760px;}
.y2b{bottom:599.144760px;}
.y70{bottom:599.324760px;}
.y42{bottom:600.224760px;}
.y165{bottom:600.944760px;}
.yf1{bottom:602.564759px;}
.y8f{bottom:604.364758px;}
.y19d{bottom:607.604757px;}
.y10b{bottom:609.584756px;}
.y137{bottom:613.544755px;}
.yb8{bottom:618.449753px;}
.y164{bottom:619.169752px;}
.yf0{bottom:619.349752px;}
.y41{bottom:620.429752px;}
.y2a{bottom:620.609752px;}
.y8e{bottom:626.009750px;}
.y19c{bottom:629.069748px;}
.y10a{bottom:629.789748px;}
.y136{bottom:633.929746px;}
.yb7{bottom:637.889745px;}
.y6f{bottom:638.249745px;}
.y29{bottom:642.209743px;}
.y8d{bottom:647.609741px;}
.yef{bottom:650.129740px;}
.y19b{bottom:650.669740px;}
.y135{bottom:654.089738px;}
.yb6{bottom:657.329737px;}
.y6e{bottom:657.509737px;}
.y28{bottom:663.809734px;}
.y8c{bottom:669.209732px;}
.yee{bottom:670.289732px;}
.y19a{bottom:672.269731px;}
.y134{bottom:674.249730px;}
.yb5{bottom:676.769729px;}
.y6d{bottom:676.949729px;}
.y27{bottom:685.409726px;}
.yed{bottom:690.449724px;}
.y8b{bottom:690.629724px;}
.y199{bottom:693.869722px;}
.y133{bottom:694.589722px;}
.y6c{bottom:696.389721px;}
.y6{bottom:702.329719px;}
.y26{bottom:707.009717px;}
.yb4{bottom:708.809716px;}
.y8a{bottom:710.789716px;}
.y132{bottom:714.749714px;}
.y198{bottom:715.469714px;}
.y5{bottom:722.849711px;}
.y25{bottom:728.609709px;}
.y89{bottom:730.949708px;}
.y197{bottom:734.009706px;}
.y131{bottom:735.089706px;}
.y4{bottom:747.509701px;}
.yb3{bottom:748.409701px;}
.y24{bottom:750.029700px;}
.y88{bottom:751.289699px;}
.y196{bottom:752.729699px;}
.y130{bottom:754.709698px;}
.yb2{bottom:769.829692px;}
.y87{bottom:771.449691px;}
.y23{bottom:771.629691px;}
.y12f{bottom:772.889691px;}
.y1{bottom:826.379669px;}
.hd{height:21.685530px;}
.h14{height:36.000066px;}
.h13{height:39.685523px;}
.he{height:39.749843px;}
.hf{height:39.830337px;}
.h8{height:39.840064px;}
.hb{height:41.539907px;}
.h5{height:44.149201px;}
.h2{height:44.424081px;}
.h12{height:44.496081px;}
.h6{height:47.999981px;}
.h9{height:49.162639px;}
.h4{height:49.242319px;}
.h11{height:49.921855px;}
.h7{height:51.999979px;}
.hc{height:54.493418px;}
.h10{height:59.231976px;}
.h3{height:60.839976px;}
.ha{height:137.555820px;}
.h0{height:892.979700px;}
.h1{height:893.250000px;}
.w2{width:413.564400px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x6{left:7.740014px;}
.x4{left:106.416557px;}
.x5{left:127.656549px;}
.x7{left:133.420447px;}
.x3{left:160.046936px;}
.x2{left:186.551925px;}
.x1{left:501.989799px;}
@media print{
.v2{vertical-align:-15.999994pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.559993pt;}
.ls5a{letter-spacing:-5.973331pt;}
.ls4d{letter-spacing:-5.317342pt;}
.ls64{letter-spacing:-4.517342pt;}
.ls65{letter-spacing:-4.453342pt;}
.ls63{letter-spacing:-3.877332pt;}
.ls60{letter-spacing:-2.853332pt;}
.ls18{letter-spacing:-2.341332pt;}
.ls29{letter-spacing:-2.298666pt;}
.ls5c{letter-spacing:-2.213332pt;}
.ls3d{letter-spacing:-0.949333pt;}
.ls45{letter-spacing:-0.576000pt;}
.ls58{letter-spacing:-0.544000pt;}
.ls57{letter-spacing:-0.413334pt;}
.ls4f{letter-spacing:-0.400000pt;}
.ls59{letter-spacing:-0.362667pt;}
.ls55{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.310400pt;}
.ls37{letter-spacing:-0.272000pt;}
.ls62{letter-spacing:-0.253867pt;}
.ls4{letter-spacing:-0.236267pt;}
.ls13{letter-spacing:-0.229333pt;}
.ls3b{letter-spacing:-0.201067pt;}
.ls24{letter-spacing:-0.198400pt;}
.ls26{letter-spacing:-0.195733pt;}
.ls36{letter-spacing:-0.191467pt;}
.ls42{letter-spacing:-0.185600pt;}
.ls21{letter-spacing:-0.155733pt;}
.ls11{letter-spacing:-0.137600pt;}
.ls44{letter-spacing:-0.092800pt;}
.ls3a{letter-spacing:-0.069867pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls22{letter-spacing:-0.061867pt;}
.ls1{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.000003pt;}
.ls56{letter-spacing:0.034560pt;}
.ls33{letter-spacing:0.038400pt;}
.ls4e{letter-spacing:0.049280pt;}
.ls2b{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.069333pt;}
.ls31{letter-spacing:0.089555pt;}
.ls25{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.105067pt;}
.ls15{letter-spacing:0.112000pt;}
.ls3c{letter-spacing:0.115200pt;}
.lsa{letter-spacing:0.120260pt;}
.ls2a{letter-spacing:0.128000pt;}
.ls54{letter-spacing:0.132267pt;}
.ls10{letter-spacing:0.133125pt;}
.ls5d{letter-spacing:0.134999pt;}
.lsd{letter-spacing:0.136960pt;}
.ls2d{letter-spacing:0.140800pt;}
.ls4b{letter-spacing:0.144000pt;}
.ls34{letter-spacing:0.150400pt;}
.ls1b{letter-spacing:0.153067pt;}
.ls49{letter-spacing:0.178667pt;}
.ls20{letter-spacing:0.185600pt;}
.ls5f{letter-spacing:0.186133pt;}
.ls40{letter-spacing:0.204085pt;}
.ls16{letter-spacing:0.211200pt;}
.ls2e{letter-spacing:0.220770pt;}
.ls2f{letter-spacing:0.231004pt;}
.ls50{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.241852pt;}
.ls7{letter-spacing:0.249600pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.261867pt;}
.ls5b{letter-spacing:0.269867pt;}
.ls43{letter-spacing:0.277333pt;}
.ls61{letter-spacing:0.279467pt;}
.ls47{letter-spacing:0.280320pt;}
.ls1c{letter-spacing:0.287467pt;}
.ls30{letter-spacing:0.294359pt;}
.ls14{letter-spacing:0.294400pt;}
.ls12{letter-spacing:0.317867pt;}
.ls5{letter-spacing:0.329600pt;}
.ls51{letter-spacing:0.336000pt;}
.ls32{letter-spacing:0.338497pt;}
.ls35{letter-spacing:0.410667pt;}
.ls5e{letter-spacing:0.436422pt;}
.ls3e{letter-spacing:0.438934pt;}
.ls41{letter-spacing:0.451734pt;}
.ls23{letter-spacing:0.484268pt;}
.lsf{letter-spacing:0.499200pt;}
.ls4a{letter-spacing:0.736000pt;}
.ls9{letter-spacing:0.773333pt;}
.ls52{letter-spacing:0.784000pt;}
.ls2c{letter-spacing:0.860769pt;}
.ls4c{letter-spacing:0.880000pt;}
.ls8{letter-spacing:0.890666pt;}
.ls39{letter-spacing:1.969228pt;}
.ls38{letter-spacing:2.088262pt;}
.ls0{letter-spacing:3.420768pt;}
.lsc{letter-spacing:4.419168pt;}
.lse{letter-spacing:5.980767pt;}
.ls46{letter-spacing:25.727990pt;}
.ls27{letter-spacing:27.007989pt;}
.ls3f{letter-spacing:27.647989pt;}
.ls53{letter-spacing:28.927988pt;}
.ls28{letter-spacing:30.207988pt;}
.ls1f{letter-spacing:35.152596pt;}
.ls17{letter-spacing:35.327986pt;}
.ls1e{letter-spacing:40.912594pt;}
.wsf{word-spacing:-20.223992pt;}
.ws18{word-spacing:-18.367993pt;}
.ws19{word-spacing:-18.303993pt;}
.ws25{word-spacing:-18.239995pt;}
.ws1{word-spacing:-18.239993pt;}
.wse{word-spacing:-18.175993pt;}
.ws2b{word-spacing:-17.919993pt;}
.ws7{word-spacing:-16.029891pt;}
.ws1a{word-spacing:-15.999994pt;}
.ws8{word-spacing:-15.912557pt;}
.ws14{word-spacing:-15.623492pt;}
.ws1b{word-spacing:-15.549891pt;}
.ws35{word-spacing:-15.418691pt;}
.ws21{word-spacing:-15.416558pt;}
.ws31{word-spacing:-15.409091pt;}
.ws5{word-spacing:-15.401091pt;}
.ws6{word-spacing:-15.388824pt;}
.wsc{word-spacing:-15.350424pt;}
.ws33{word-spacing:-15.325358pt;}
.ws11{word-spacing:-15.324824pt;}
.ws26{word-spacing:-15.317891pt;}
.ws1d{word-spacing:-15.292291pt;}
.ws2a{word-spacing:-15.271491pt;}
.ws1f{word-spacing:-15.254424pt;}
.ws10{word-spacing:-15.208558pt;}
.ws28{word-spacing:-15.188504pt;}
.ws2c{word-spacing:-15.173784pt;}
.ws2{word-spacing:-15.139224pt;}
.ws13{word-spacing:-15.077358pt;}
.ws22{word-spacing:-15.046424pt;}
.ws9{word-spacing:-15.001624pt;}
.ws12{word-spacing:-14.983491pt;}
.ws20{word-spacing:-14.953624pt;}
.ws16{word-spacing:-14.943491pt;}
.ws15{word-spacing:-14.940824pt;}
.ws1e{word-spacing:-14.938158pt;}
.wsb{word-spacing:-14.909891pt;}
.ws3{word-spacing:-14.902958pt;}
.ws36{word-spacing:-14.885358pt;}
.ws2f{word-spacing:-14.776558pt;}
.ws2d{word-spacing:-14.725891pt;}
.ws2e{word-spacing:-14.595225pt;}
.ws0{word-spacing:-13.680025pt;}
.ws29{word-spacing:-13.408025pt;}
.ws1c{word-spacing:-13.280021pt;}
.ws23{word-spacing:-13.104025pt;}
.ws32{word-spacing:-12.925892pt;}
.ws17{word-spacing:-12.840559pt;}
.ws34{word-spacing:-12.285892pt;}
.wsa{word-spacing:-12.220826pt;}
.ws37{word-spacing:-11.261893pt;}
.ws39{word-spacing:-10.685882pt;}
.ws38{word-spacing:-10.621882pt;}
.ws24{word-spacing:-9.849596pt;}
.ws27{word-spacing:-9.821882pt;}
.ws30{word-spacing:-9.165893pt;}
.wsd{word-spacing:-7.660797pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-11.276605pt;}
._1c{margin-left:-8.700070pt;}
._29{margin-left:-5.716382pt;}
._3{margin-left:-4.419925pt;}
._2{margin-left:-3.070079pt;}
._4{margin-left:-2.005833pt;}
._0{margin-left:-0.913438pt;}
._1{width:0.990466pt;}
._9{width:1.900061pt;}
._a{width:3.217225pt;}
._22{width:4.126974pt;}
._d{width:5.016477pt;}
._8{width:6.321544pt;}
._5{width:7.437300pt;}
._14{width:8.585221pt;}
._e{width:9.797286pt;}
._6{width:10.940120pt;}
._7{width:12.008757pt;}
._17{width:13.102536pt;}
._16{width:14.164459pt;}
._11{width:16.267943pt;}
._15{width:17.164930pt;}
._c{width:18.409934pt;}
._b{width:19.333987pt;}
._27{width:20.356848pt;}
._24{width:21.589563pt;}
._1d{width:23.425878pt;}
._f{width:24.453776pt;}
._18{width:26.135173pt;}
._19{width:27.222163pt;}
._10{width:28.876909pt;}
._20{width:31.084017pt;}
._1f{width:32.026402pt;}
._23{width:33.619901pt;}
._25{width:39.431853pt;}
._26{width:40.606084pt;}
._1b{width:52.693185pt;}
._12{width:172.039718pt;}
._21{width:177.039966pt;}
._1e{width:179.599965pt;}
._13{width:180.879964pt;}
._28{width:182.159964pt;}
.fs7{font-size:26.879989pt;}
.fs6{font-size:34.559986pt;}
.fs5{font-size:42.880090pt;}
.fs0{font-size:48.000087pt;}
.fs2{font-size:53.120085pt;}
.fs3{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:8.800334pt;}
.y20{bottom:25.440327pt;}
.y1f{bottom:42.080320pt;}
.y3{bottom:50.110647pt;}
.y22{bottom:51.231980pt;}
.y1e{bottom:58.920314pt;}
.y2{bottom:65.150641pt;}
.y1d{bottom:75.560307pt;}
.y1c{bottom:92.200300pt;}
.y59{bottom:96.992495pt;}
.y163{bottom:98.912094pt;}
.y1b2{bottom:99.072760pt;}
.y176{bottom:99.392094pt;}
.y14d{bottom:101.152093pt;}
.y195{bottom:101.153560pt;}
.y109{bottom:101.312093pt;}
.y86{bottom:103.392092pt;}
.ya4{bottom:107.872090pt;}
.yb1{bottom:108.353290pt;}
.y1b{bottom:108.840294pt;}
.yd2{bottom:110.432489pt;}
.y58{bottom:114.432488pt;}
.y162{bottom:115.072087pt;}
.ycd{bottom:116.352087pt;}
.y175{bottom:116.992087pt;}
.y194{bottom:117.793553pt;}
.y1b1{bottom:118.272753pt;}
.y14c{bottom:119.072086pt;}
.y108{bottom:119.232086pt;}
.y184{bottom:119.233286pt;}
.yda{bottom:119.872752pt;}
.y85{bottom:121.312085pt;}
.y57{bottom:125.312083pt;}
.y121{bottom:125.313417pt;}
.y12e{bottom:125.792083pt;}
.y19{bottom:126.592083pt;}
.ya3{bottom:127.072083pt;}
.yb0{bottom:127.553282pt;}
.ye9{bottom:127.553416pt;}
.yd1{bottom:127.712482pt;}
.y40{bottom:129.952748pt;}
.yec{bottom:129.953415pt;}
.y161{bottom:131.392081pt;}
.y174{bottom:133.152080pt;}
.y193{bottom:134.427280pt;}
.ycc{bottom:135.545812pt;}
.y14b{bottom:137.145812pt;}
.y107{bottom:137.305812pt;}
.y1b0{bottom:137.466478pt;}
.y183{bottom:138.267011pt;}
.yd0{bottom:138.587011pt;}
.yd9{bottom:139.065811pt;}
.y84{bottom:139.385811pt;}
.y12d{bottom:141.945810pt;}
.y18{bottom:145.785808pt;}
.ya2{bottom:146.265808pt;}
.ye8{bottom:146.587141pt;}
.yaf{bottom:146.747008pt;}
.y160{bottom:147.545808pt;}
.y6b{bottom:148.345807pt;}
.y3f{bottom:148.986474pt;}
.yeb{bottom:148.987140pt;}
.y173{bottom:149.305807pt;}
.y192{bottom:151.067273pt;}
.ycb{bottom:154.745805pt;}
.y14a{bottom:155.065805pt;}
.y106{bottom:155.225805pt;}
.y1af{bottom:156.506471pt;}
.y120{bottom:156.827137pt;}
.y83{bottom:157.305804pt;}
.y182{bottom:157.467004pt;}
.y12c{bottom:158.105803pt;}
.yd8{bottom:158.265803pt;}
.y15f{bottom:163.705801pt;}
.y17{bottom:164.985801pt;}
.ya1{bottom:165.465800pt;}
.ye7{bottom:165.787134pt;}
.y6a{bottom:167.545800pt;}
.y191{bottom:167.867266pt;}
.ycf{bottom:168.185799pt;}
.y3e{bottom:168.186466pt;}
.yea{bottom:168.187133pt;}
.y56{bottom:171.546465pt;}
.y105{bottom:173.145797pt;}
.yca{bottom:173.945797pt;}
.y12b{bottom:174.425797pt;}
.y82{bottom:175.385797pt;}
.y1ae{bottom:175.706463pt;}
.y11f{bottom:176.187130pt;}
.y181{bottom:176.666996pt;}
.yd7{bottom:177.465796pt;}
.yae{bottom:179.226995pt;}
.y15e{bottom:179.865795pt;}
.y172{bottom:181.625794pt;}
.y16{bottom:184.185793pt;}
.y190{bottom:184.507260pt;}
.ya0{bottom:184.665793pt;}
.ye6{bottom:184.987126pt;}
.y69{bottom:186.585792pt;}
.yce{bottom:187.385792pt;}
.y3d{bottom:187.386458pt;}
.y12a{bottom:190.585790pt;}
.y55{bottom:190.586457pt;}
.y104{bottom:191.225790pt;}
.yc9{bottom:192.985789pt;}
.y81{bottom:193.305789pt;}
.y11e{bottom:194.427122pt;}
.y1ad{bottom:194.906455pt;}
.y15d{bottom:196.025788pt;}
.y180{bottom:196.986988pt;}
.y171{bottom:197.945787pt;}
.yad{bottom:198.426987pt;}
.y18f{bottom:201.147253pt;}
.y15{bottom:203.385785pt;}
.y9f{bottom:203.865785pt;}
.ye5{bottom:204.187118pt;}
.y68{bottom:205.785784pt;}
.y3c{bottom:206.585784pt;}
.y149{bottom:206.745784pt;}
.y103{bottom:209.185783pt;}
.yd6{bottom:209.665783pt;}
.y54{bottom:209.826449pt;}
.y80{bottom:211.265782pt;}
.yc8{bottom:212.225782pt;}
.y11d{bottom:212.547115pt;}
.y170{bottom:214.145781pt;}
.y1ac{bottom:214.146448pt;}
.yac{bottom:217.666980pt;}
.y129{bottom:217.985779pt;}
.y17f{bottom:218.945779pt;}
.y18e{bottom:220.547245pt;}
.y14{bottom:222.625778pt;}
.y9e{bottom:222.945777pt;}
.y15c{bottom:223.425777pt;}
.ye4{bottom:223.427111pt;}
.yd5{bottom:224.705777pt;}
.y67{bottom:225.025777pt;}
.y3b{bottom:225.825776pt;}
.y102{bottom:227.265776pt;}
.y53{bottom:227.745776pt;}
.y7f{bottom:229.345775pt;}
.y16f{bottom:230.305775pt;}
.y11c{bottom:230.467108pt;}
.yc7{bottom:231.425774pt;}
.y1ab{bottom:233.345773pt;}
.y128{bottom:235.905772pt;}
.yab{bottom:236.866972pt;}
.y17e{bottom:237.985771pt;}
.y148{bottom:239.105771pt;}
.yd4{bottom:239.745771pt;}
.y18d{bottom:239.747237pt;}
.ye3{bottom:240.546437pt;}
.y15b{bottom:241.505770pt;}
.y13{bottom:241.665770pt;}
.y9d{bottom:242.145770pt;}
.y66{bottom:244.225769pt;}
.y3a{bottom:244.865769pt;}
.y101{bottom:245.185769pt;}
.y52{bottom:245.665768pt;}
.y16e{bottom:246.465768pt;}
.y7e{bottom:247.265768pt;}
.y11b{bottom:248.546434pt;}
.yc6{bottom:250.625766pt;}
.y1aa{bottom:252.385766pt;}
.y127{bottom:253.985765pt;}
.yd3{bottom:254.785765pt;}
.y147{bottom:255.425764pt;}
.y17d{bottom:255.905764pt;}
.yaa{bottom:256.066298pt;}
.y18c{bottom:258.787230pt;}
.y15a{bottom:259.425763pt;}
.ye2{bottom:260.546429pt;}
.y12{bottom:260.865762pt;}
.y9c{bottom:261.345762pt;}
.y16d{bottom:262.625762pt;}
.y100{bottom:263.265761pt;}
.y65{bottom:263.425761pt;}
.y51{bottom:263.745761pt;}
.y39{bottom:264.065761pt;}
.y7d{bottom:265.345761pt;}
.y11a{bottom:266.466427pt;}
.yc5{bottom:269.825759pt;}
.y146{bottom:271.585758pt;}
.y126{bottom:271.905758pt;}
.y17c{bottom:273.825757pt;}
.ya9{bottom:275.106290pt;}
.y159{bottom:277.505756pt;}
.y18b{bottom:277.986555pt;}
.y11{bottom:280.065755pt;}
.yff{bottom:281.185754pt;}
.y50{bottom:281.665754pt;}
.y64{bottom:282.465754pt;}
.ye1{bottom:282.786420pt;}
.y38{bottom:283.265753pt;}
.y119{bottom:284.546420pt;}
.y145{bottom:287.745752pt;}
.yc4{bottom:289.025751pt;}
.y125{bottom:289.985751pt;}
.y1a9{bottom:290.785750pt;}
.y17b{bottom:291.905750pt;}
.y158{bottom:295.425748pt;}
.ya8{bottom:295.426282pt;}
.y9b{bottom:296.545748pt;}
.y18a{bottom:297.186548pt;}
.yfe{bottom:299.105747pt;}
.y10{bottom:299.265747pt;}
.y4f{bottom:299.585747pt;}
.y63{bottom:301.665746pt;}
.ye0{bottom:302.146412pt;}
.y37{bottom:302.465746pt;}
.y7c{bottom:302.625746pt;}
.y144{bottom:303.905745pt;}
.y118{bottom:304.866411pt;}
.y124{bottom:307.905744pt;}
.yc3{bottom:308.065743pt;}
.y17a{bottom:309.825743pt;}
.y1a8{bottom:309.985743pt;}
.y157{bottom:313.505741pt;}
.y9a{bottom:315.745740pt;}
.y189{bottom:316.386540pt;}
.yfd{bottom:317.185740pt;}
.y4e{bottom:317.665740pt;}
.yf{bottom:318.465739pt;}
.ya7{bottom:318.466273pt;}
.y143{bottom:320.065739pt;}
.y62{bottom:320.865738pt;}
.ydf{bottom:321.345738pt;}
.y36{bottom:321.665738pt;}
.y7b{bottom:321.825738pt;}
.y117{bottom:325.826403pt;}
.y123{bottom:325.985736pt;}
.yc2{bottom:327.265736pt;}
.y179{bottom:327.905736pt;}
.y1a7{bottom:329.185735pt;}
.y156{bottom:331.425734pt;}
.y99{bottom:334.785733pt;}
.yfc{bottom:335.105733pt;}
.y4d{bottom:335.585732pt;}
.y188{bottom:335.587866pt;}
.ye{bottom:337.505732pt;}
.y61{bottom:340.065731pt;}
.yde{bottom:340.545730pt;}
.ya6{bottom:340.546264pt;}
.y35{bottom:340.865730pt;}
.y7a{bottom:341.025730pt;}
.y122{bottom:343.905729pt;}
.y16c{bottom:344.065729pt;}
.y116{bottom:344.066396pt;}
.y178{bottom:345.825728pt;}
.yc1{bottom:346.465728pt;}
.y142{bottom:347.425728pt;}
.y1a6{bottom:348.225727pt;}
.y155{bottom:348.865727pt;}
.yfb{bottom:353.185725pt;}
.y4c{bottom:353.665725pt;}
.y98{bottom:353.985725pt;}
.y187{bottom:355.587858pt;}
.yd{bottom:356.705724pt;}
.y60{bottom:359.265723pt;}
.ydd{bottom:359.745723pt;}
.y34{bottom:359.905723pt;}
.ya5{bottom:359.906256pt;}
.y79{bottom:360.065723pt;}
.y115{bottom:361.825722pt;}
.y16b{bottom:361.985722pt;}
.y177{bottom:363.745721pt;}
.y154{bottom:365.025721pt;}
.y141{bottom:365.505720pt;}
.yc0{bottom:365.665720pt;}
.y1a5{bottom:367.425720pt;}
.yfa{bottom:371.105718pt;}
.y4b{bottom:371.585718pt;}
.y97{bottom:373.185717pt;}
.y186{bottom:375.267850pt;}
.yc{bottom:375.905716pt;}
.y5f{bottom:378.333182pt;}
.ydc{bottom:378.813182pt;}
.y33{bottom:379.133182pt;}
.y78{bottom:379.293182pt;}
.y114{bottom:379.933181pt;}
.y16a{bottom:380.093181pt;}
.y153{bottom:381.373181pt;}
.y140{bottom:383.453180pt;}
.ybf{bottom:384.893179pt;}
.y1a4{bottom:386.653179pt;}
.yf9{bottom:389.213178pt;}
.y4a{bottom:389.693177pt;}
.yb{bottom:395.133175pt;}
.y185{bottom:395.613175pt;}
.y5e{bottom:397.533174pt;}
.y113{bottom:397.853174pt;}
.ydb{bottom:398.013174pt;}
.y32{bottom:398.333174pt;}
.y77{bottom:398.493174pt;}
.y13f{bottom:401.533173pt;}
.y96{bottom:403.133172pt;}
.ybe{bottom:403.933172pt;}
.y1a3{bottom:405.853171pt;}
.yf8{bottom:407.133170pt;}
.y49{bottom:407.613170pt;}
.y152{bottom:413.693168pt;}
.ya{bottom:414.333168pt;}
.y112{bottom:415.933167pt;}
.y5d{bottom:416.733167pt;}
.y31{bottom:417.533166pt;}
.y76{bottom:417.693166pt;}
.y13e{bottom:419.453166pt;}
.y95{bottom:422.173164pt;}
.ybd{bottom:423.133164pt;}
.yf7{bottom:425.053163pt;}
.y48{bottom:425.533163pt;}
.y151{bottom:429.853161pt;}
.y9{bottom:433.213160pt;}
.y111{bottom:433.853160pt;}
.y169{bottom:434.013160pt;}
.y30{bottom:436.733159pt;}
.y75{bottom:436.893159pt;}
.y5c{bottom:437.053159pt;}
.y13d{bottom:437.533158pt;}
.y94{bottom:441.373157pt;}
.ybc{bottom:442.333156pt;}
.yf6{bottom:443.133156pt;}
.y47{bottom:443.613156pt;}
.y1a2{bottom:444.093156pt;}
.y150{bottom:446.013155pt;}
.y110{bottom:451.933153pt;}
.y8{bottom:454.653151pt;}
.y13c{bottom:455.453151pt;}
.y2f{bottom:455.773151pt;}
.y74{bottom:455.933151pt;}
.y5b{bottom:458.493150pt;}
.y93{bottom:460.573149pt;}
.y46{bottom:461.533149pt;}
.y14f{bottom:462.333148pt;}
.y1a1{bottom:463.293148pt;}
.y168{bottom:469.533146pt;}
.y10f{bottom:469.853145pt;}
.y13b{bottom:473.373144pt;}
.y2e{bottom:474.973143pt;}
.y73{bottom:475.133143pt;}
.yf5{bottom:475.613143pt;}
.y5a{bottom:476.093143pt;}
.y7{bottom:476.253143pt;}
.y14e{bottom:478.493142pt;}
.y45{bottom:479.613141pt;}
.y92{bottom:479.773141pt;}
.ybb{bottom:480.733141pt;}
.y1a0{bottom:482.493140pt;}
.y167{bottom:485.693139pt;}
.y10e{bottom:487.773138pt;}
.yf4{bottom:490.493137pt;}
.y1a{bottom:490.652800pt;}
.y13a{bottom:491.453137pt;}
.y2d{bottom:494.173136pt;}
.y72{bottom:494.333136pt;}
.y44{bottom:497.533134pt;}
.y91{bottom:498.973134pt;}
.y19f{bottom:501.693133pt;}
.y166{bottom:501.853133pt;}
.yf3{bottom:505.533131pt;}
.y10d{bottom:505.853131pt;}
.y139{bottom:509.373130pt;}
.y2c{bottom:513.373128pt;}
.y71{bottom:513.533128pt;}
.yba{bottom:515.133127pt;}
.y43{bottom:515.613127pt;}
.y90{bottom:518.013126pt;}
.yf2{bottom:520.573125pt;}
.y19e{bottom:520.893125pt;}
.y10c{bottom:523.773124pt;}
.y138{bottom:527.453122pt;}
.yb9{bottom:532.413120pt;}
.y2b{bottom:532.573120pt;}
.y70{bottom:532.733120pt;}
.y42{bottom:533.533120pt;}
.y165{bottom:534.173120pt;}
.yf1{bottom:535.613119pt;}
.y8f{bottom:537.213118pt;}
.y19d{bottom:540.093117pt;}
.y10b{bottom:541.853117pt;}
.y137{bottom:545.373115pt;}
.yb8{bottom:549.733113pt;}
.y164{bottom:550.373113pt;}
.yf0{bottom:550.533113pt;}
.y41{bottom:551.493113pt;}
.y2a{bottom:551.653113pt;}
.y8e{bottom:556.453111pt;}
.y19c{bottom:559.173110pt;}
.y10a{bottom:559.813109pt;}
.y136{bottom:563.493108pt;}
.yb7{bottom:567.013107pt;}
.y6f{bottom:567.333106pt;}
.y29{bottom:570.853105pt;}
.y8d{bottom:575.653103pt;}
.yef{bottom:577.893102pt;}
.y19b{bottom:578.373102pt;}
.y135{bottom:581.413101pt;}
.yb6{bottom:584.293100pt;}
.y6e{bottom:584.453100pt;}
.y28{bottom:590.053097pt;}
.y8c{bottom:594.853095pt;}
.yee{bottom:595.813095pt;}
.y19a{bottom:597.573094pt;}
.y134{bottom:599.333094pt;}
.yb5{bottom:601.573093pt;}
.y6d{bottom:601.733093pt;}
.y27{bottom:609.253090pt;}
.yed{bottom:613.733088pt;}
.y8b{bottom:613.893088pt;}
.y199{bottom:616.773087pt;}
.y133{bottom:617.413086pt;}
.y6c{bottom:619.013086pt;}
.y6{bottom:624.293084pt;}
.y26{bottom:628.453082pt;}
.yb4{bottom:630.053081pt;}
.y8a{bottom:631.813081pt;}
.y132{bottom:635.333079pt;}
.y198{bottom:635.973079pt;}
.y5{bottom:642.533076pt;}
.y25{bottom:647.653074pt;}
.y89{bottom:649.733073pt;}
.y197{bottom:652.453072pt;}
.y131{bottom:653.413072pt;}
.y4{bottom:664.453068pt;}
.yb3{bottom:665.253067pt;}
.y24{bottom:666.693067pt;}
.y88{bottom:667.813066pt;}
.y196{bottom:669.093066pt;}
.y130{bottom:670.853065pt;}
.yb2{bottom:684.293060pt;}
.y87{bottom:685.733059pt;}
.y23{bottom:685.893059pt;}
.y12f{bottom:687.013059pt;}
.y1{bottom:734.559706pt;}
.hd{height:19.276027pt;}
.h14{height:32.000058pt;}
.h13{height:35.276020pt;}
.he{height:35.333194pt;}
.hf{height:35.404744pt;}
.h8{height:35.413390pt;}
.hb{height:36.924362pt;}
.h5{height:39.243734pt;}
.h2{height:39.488072pt;}
.h12{height:39.552072pt;}
.h6{height:42.666650pt;}
.h9{height:43.700124pt;}
.h4{height:43.770950pt;}
.h11{height:44.374982pt;}
.h7{height:46.222204pt;}
.hc{height:48.438594pt;}
.h10{height:52.650646pt;}
.h3{height:54.079978pt;}
.ha{height:122.271840pt;}
.h0{height:793.759733pt;}
.h1{height:794.000000pt;}
.w2{width:367.612800pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880012pt;}
.x4{left:94.592495pt;}
.x5{left:113.472488pt;}
.x7{left:118.595953pt;}
.x3{left:142.263943pt;}
.x2{left:165.823934pt;}
.x1{left:446.213155pt;}
}




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