
    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_6cc6639b085776fc1e66a566.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_ede9c5421bb82089f397b214.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_fef80bfdaae420a9b585c9a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_bcefeaab7e02ff1ac1eebbf4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_2e0ddba125d28a9ff392942b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_8e729ebe19d934b24de4eb11.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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_7d9b96c343d3370dce8f3af6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_68af8658c6ebd4bec740844a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_55ff288b813f820527f460b1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.851074;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_ff02e173ed9dbdfa97120c5f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916992;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_08b666fd61d2d1f7bd028f00.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.102051;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_5ccf0f6b93441f1f94b0a2fc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.100098;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_da7926dbab24e43286a00ccd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100098;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_229968148c0f0e39dfabda85.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.100098;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_1768518c06d6cbe1a6775242.woff2')format("woff");}.fff{font-family:fff;line-height:1.088379;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_9f35e40594440e4a60c364df.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5ff6c65177604e56573317e1.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8cefe8381d764264a770c670.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3bf2b7ae4047a6bf30a3b484.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_78f72ac715b3cdd230e7afbb.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_fcc27ba6f0fe60d9995cd542.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.100098;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:ff16;src:url('chunks/assets/font_32c4a1f21510e3f458f0887d.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.102051;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:ff17;src:url('chunks/assets/font_4aa4fcc4b7558d3d3324e641.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.088379;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:ff18;src:url('chunks/assets/font_3bedde6d10d533a3b8570040.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.100098;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:ff19;src:url('chunks/assets/font_4dbf769f209a46380cfd90cb.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.088379;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:ff1a;src:url('chunks/assets/font_2ce95163b8b9e6ddc505c4ec.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.916992;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:ff1b;src:url('chunks/assets/font_a3e29f59e9bd39658addc262.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.100098;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;}
.ls2{letter-spacing:-0.855000px;}
.ls1{letter-spacing:-0.570000px;}
.ls3{letter-spacing:-0.285000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.019800px;}
.ls5{letter-spacing:0.060000px;}
.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;}
}
.ws8{word-spacing:-19.500000px;}
.ws77{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws9{word-spacing:-13.650000px;}
.ws4e{word-spacing:-3.000000px;}
.ws73{word-spacing:-2.940000px;}
.ws6{word-spacing:-2.907000px;}
.ws48{word-spacing:-2.880000px;}
.ws4a{word-spacing:-2.820000px;}
.ws12{word-spacing:-2.760000px;}
.ws60{word-spacing:-2.640000px;}
.ws3a{word-spacing:-2.520000px;}
.ws61{word-spacing:-2.340000px;}
.ws78{word-spacing:-2.220000px;}
.ws5b{word-spacing:-2.160000px;}
.ws71{word-spacing:-2.100000px;}
.ws7d{word-spacing:-2.040000px;}
.ws6a{word-spacing:-1.980000px;}
.ws2d{word-spacing:-1.920000px;}
.ws57{word-spacing:-1.860000px;}
.ws2a{word-spacing:-1.800000px;}
.ws2{word-spacing:-1.767000px;}
.ws55{word-spacing:-1.740000px;}
.ws1a{word-spacing:-1.680000px;}
.ws4f{word-spacing:-1.620000px;}
.ws72{word-spacing:-1.500000px;}
.ws7{word-spacing:-1.482000px;}
.ws3f{word-spacing:-1.440000px;}
.ws6c{word-spacing:-1.380000px;}
.ws6e{word-spacing:-1.320000px;}
.ws5a{word-spacing:-1.260000px;}
.ws3{word-spacing:-1.254000px;}
.ws3e{word-spacing:-1.140000px;}
.ws19{word-spacing:-1.080000px;}
.ws52{word-spacing:-1.020000px;}
.ws51{word-spacing:-0.900000px;}
.ws30{word-spacing:-0.840000px;}
.ws28{word-spacing:-0.780000px;}
.ws79{word-spacing:-0.720000px;}
.ws50{word-spacing:-0.660000px;}
.ws1b{word-spacing:-0.600000px;}
.ws41{word-spacing:-0.540000px;}
.ws2e{word-spacing:-0.480000px;}
.ws45{word-spacing:-0.420000px;}
.ws3c{word-spacing:-0.360000px;}
.ws3d{word-spacing:-0.300000px;}
.ws63{word-spacing:-0.240000px;}
.ws7e{word-spacing:-0.120000px;}
.ws13{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:0.060000px;}
.ws40{word-spacing:0.120000px;}
.ws29{word-spacing:0.180000px;}
.ws17{word-spacing:0.240000px;}
.ws23{word-spacing:0.300000px;}
.ws6b{word-spacing:0.420000px;}
.ws66{word-spacing:0.480000px;}
.ws11{word-spacing:0.540000px;}
.ws22{word-spacing:0.600000px;}
.ws16{word-spacing:0.780000px;}
.ws75{word-spacing:0.840000px;}
.ws4{word-spacing:0.855000px;}
.ws5e{word-spacing:0.900000px;}
.ws34{word-spacing:0.960000px;}
.ws43{word-spacing:1.020000px;}
.ws56{word-spacing:1.080000px;}
.ws38{word-spacing:1.200000px;}
.ws6d{word-spacing:1.260000px;}
.ws67{word-spacing:1.320000px;}
.ws1f{word-spacing:1.440000px;}
.ws54{word-spacing:1.500000px;}
.ws14{word-spacing:1.560000px;}
.ws7b{word-spacing:1.620000px;}
.ws15{word-spacing:1.680000px;}
.ws68{word-spacing:1.740000px;}
.wsc{word-spacing:1.800000px;}
.ws69{word-spacing:1.860000px;}
.ws5c{word-spacing:1.920000px;}
.wsa{word-spacing:1.980000px;}
.ws31{word-spacing:2.040000px;}
.ws3b{word-spacing:2.100000px;}
.ws18{word-spacing:2.160000px;}
.ws27{word-spacing:2.220000px;}
.ws70{word-spacing:2.340000px;}
.ws20{word-spacing:2.400000px;}
.ws5{word-spacing:2.508000px;}
.ws5f{word-spacing:2.520000px;}
.ws49{word-spacing:2.580000px;}
.ws53{word-spacing:2.640000px;}
.ws36{word-spacing:2.700000px;}
.ws33{word-spacing:2.820000px;}
.ws64{word-spacing:2.880000px;}
.ws59{word-spacing:2.940000px;}
.ws2b{word-spacing:3.060000px;}
.ws24{word-spacing:3.180000px;}
.ws7a{word-spacing:3.240000px;}
.ws74{word-spacing:3.300000px;}
.ws7c{word-spacing:3.360000px;}
.ws39{word-spacing:3.420000px;}
.ws5d{word-spacing:3.480000px;}
.ws1e{word-spacing:3.540000px;}
.ws10{word-spacing:3.600000px;}
.wsd{word-spacing:3.660000px;}
.ws58{word-spacing:3.720000px;}
.ws4b{word-spacing:3.780000px;}
.wse{word-spacing:3.900000px;}
.ws37{word-spacing:3.960000px;}
.ws1c{word-spacing:4.020000px;}
.ws62{word-spacing:4.080000px;}
.ws32{word-spacing:4.140000px;}
.ws6f{word-spacing:4.200000px;}
.ws4c{word-spacing:4.380000px;}
.wsb{word-spacing:4.560000px;}
.ws65{word-spacing:4.680000px;}
.ws26{word-spacing:4.860000px;}
.ws2c{word-spacing:4.980000px;}
.ws7f{word-spacing:5.280000px;}
.ws2f{word-spacing:5.400000px;}
.ws46{word-spacing:5.580000px;}
.ws42{word-spacing:5.700000px;}
.ws47{word-spacing:6.300000px;}
.wsf{word-spacing:6.420000px;}
.ws25{word-spacing:6.660000px;}
.ws4d{word-spacing:6.720000px;}
.ws35{word-spacing:8.100000px;}
.ws76{word-spacing:3462.294000px;}
.ws44{word-spacing:3493.248000px;}
.ws21{word-spacing:3524.202000px;}
._f{margin-left:-16.473000px;}
._d{margin-left:-14.193000px;}
._8{margin-left:-11.914200px;}
._13{margin-left:-10.431000px;}
._1a{margin-left:-7.284000px;}
._2{margin-left:-6.144000px;}
._17{margin-left:-4.932000px;}
._a{margin-left:-3.855000px;}
._0{margin-left:-2.280000px;}
._3{margin-left:-1.008000px;}
._1{width:1.152000px;}
._6{width:2.280000px;}
._18{width:3.480000px;}
._19{width:5.400000px;}
._1c{width:6.420000px;}
._1b{width:7.872000px;}
._10{width:77.805000px;}
._b{width:79.674000px;}
._12{width:85.443000px;}
._4{width:90.288000px;}
._16{width:94.335000px;}
._5{width:97.983000px;}
._9{width:105.735000px;}
._7{width:110.296200px;}
._14{width:112.415400px;}
._c{width:116.565000px;}
._11{width:119.301000px;}
._15{width:122.322000px;}
._e{width:138.567000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:54.600000px;}
.fs5{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:120.000000px;}
.fs9{font-size:180.000000px;}
.fs8{font-size:198.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:63.780450px;}
.y199{bottom:115.123050px;}
.y198{bottom:134.008050px;}
.y164{bottom:135.987150px;}
.yb0{bottom:136.063050px;}
.y93{bottom:136.255650px;}
.yf4{bottom:136.323900px;}
.y126{bottom:136.578900px;}
.y63{bottom:146.908200px;}
.y197{bottom:152.218050px;}
.yaf{bottom:154.738050px;}
.y163{bottom:154.887150px;}
.y92{bottom:155.080650px;}
.yf3{bottom:155.208900px;}
.y125{bottom:155.463900px;}
.yae{bottom:173.413050px;}
.y162{bottom:173.787150px;}
.y91{bottom:173.905650px;}
.yf2{bottom:174.093900px;}
.y124{bottom:174.348900px;}
.y196{bottom:188.653050px;}
.y4{bottom:191.346600px;}
.yad{bottom:192.088050px;}
.y161{bottom:192.687150px;}
.y90{bottom:192.730650px;}
.yf1{bottom:192.978900px;}
.y123{bottom:193.233900px;}
.y62{bottom:200.908200px;}
.yac{bottom:210.763050px;}
.y8f{bottom:211.555650px;}
.y160{bottom:211.587150px;}
.yf0{bottom:211.863900px;}
.y122{bottom:212.118900px;}
.y3{bottom:217.734600px;}
.y61{bottom:218.908200px;}
.y195{bottom:225.088050px;}
.yab{bottom:229.438050px;}
.y15f{bottom:230.487150px;}
.yef{bottom:230.748900px;}
.y121{bottom:231.003900px;}
.y60{bottom:236.908200px;}
.y40{bottom:238.588200px;}
.y194{bottom:243.298050px;}
.y166{bottom:243.838500px;}
.yaa{bottom:248.113050px;}
.y8e{bottom:249.220650px;}
.y15e{bottom:249.387150px;}
.yee{bottom:249.633900px;}
.y120{bottom:249.888900px;}
.y5f{bottom:254.908200px;}
.y3f{bottom:256.588200px;}
.y193{bottom:261.508050px;}
.ya9{bottom:266.788050px;}
.y15d{bottom:268.287150px;}
.yed{bottom:268.518900px;}
.y11f{bottom:268.773900px;}
.y5e{bottom:272.908200px;}
.y3e{bottom:274.588200px;}
.y192{bottom:279.718050px;}
.ya8{bottom:285.463050px;}
.y8d{bottom:286.885650px;}
.y15c{bottom:287.187150px;}
.yec{bottom:287.403900px;}
.y11e{bottom:287.658900px;}
.y5d{bottom:290.908200px;}
.y3d{bottom:292.588200px;}
.y191{bottom:297.928050px;}
.ya7{bottom:304.138050px;}
.y8c{bottom:305.710650px;}
.y15b{bottom:306.087150px;}
.yeb{bottom:306.288900px;}
.y11d{bottom:306.543900px;}
.y5c{bottom:308.908200px;}
.y3c{bottom:310.588200px;}
.y190{bottom:316.138050px;}
.y165{bottom:317.598450px;}
.ya6{bottom:322.813050px;}
.y8b{bottom:324.535650px;}
.y15a{bottom:324.987150px;}
.yea{bottom:325.173900px;}
.y11c{bottom:325.428900px;}
.y5b{bottom:326.908200px;}
.y18f{bottom:334.348050px;}
.y3b{bottom:341.338200px;}
.ya5{bottom:341.488050px;}
.y8a{bottom:343.360650px;}
.y159{bottom:343.887150px;}
.ye9{bottom:344.058900px;}
.y11b{bottom:344.313900px;}
.y5a{bottom:344.908200px;}
.y18e{bottom:352.558050px;}
.y3a{bottom:359.338200px;}
.ya4{bottom:360.163050px;}
.y89{bottom:362.185650px;}
.y158{bottom:362.787150px;}
.y59{bottom:362.908200px;}
.ye8{bottom:362.943900px;}
.y11a{bottom:363.198900px;}
.y18d{bottom:370.768050px;}
.yc0{bottom:378.838050px;}
.y58{bottom:380.908200px;}
.y88{bottom:381.010650px;}
.y157{bottom:381.687150px;}
.ye7{bottom:381.828900px;}
.y119{bottom:382.083900px;}
.ya3{bottom:388.192350px;}
.y18c{bottom:388.978050px;}
.y39{bottom:390.088200px;}
.ybf{bottom:397.513050px;}
.y57{bottom:398.908200px;}
.y87{bottom:399.835650px;}
.y156{bottom:400.587150px;}
.ye6{bottom:400.713900px;}
.y118{bottom:400.968900px;}
.y18b{bottom:407.188050px;}
.y38{bottom:408.088200px;}
.ybe{bottom:416.188050px;}
.y56{bottom:416.908200px;}
.y86{bottom:418.660650px;}
.y155{bottom:419.487150px;}
.ye5{bottom:419.598900px;}
.y117{bottom:419.853900px;}
.y1f{bottom:420.667950px;}
.y18a{bottom:425.398050px;}
.y55{bottom:434.908200px;}
.ya2{bottom:434.930400px;}
.y85{bottom:437.485650px;}
.y154{bottom:438.387150px;}
.ye4{bottom:438.483900px;}
.y116{bottom:438.738900px;}
.y37{bottom:438.838200px;}
.y189{bottom:443.608050px;}
.ybd{bottom:444.217350px;}
.y1e{bottom:447.172050px;}
.ya1{bottom:453.605400px;}
.y84{bottom:456.310650px;}
.y36{bottom:456.838200px;}
.y153{bottom:457.287150px;}
.ye3{bottom:457.368900px;}
.y115{bottom:457.623900px;}
.y188{bottom:461.818050px;}
.y54{bottom:470.908200px;}
.ya0{bottom:472.280400px;}
.y1d{bottom:473.675850px;}
.y83{bottom:475.135650px;}
.y152{bottom:476.187150px;}
.ye2{bottom:476.253900px;}
.y114{bottom:476.508900px;}
.y187{bottom:480.028050px;}
.y35{bottom:487.588200px;}
.y53{bottom:488.908200px;}
.ybc{bottom:490.948050px;}
.y9f{bottom:490.955400px;}
.y82{bottom:493.960650px;}
.y151{bottom:495.087150px;}
.ye1{bottom:495.138900px;}
.y113{bottom:495.393900px;}
.y186{bottom:498.238050px;}
.y1c{bottom:500.179800px;}
.y34{bottom:505.588200px;}
.ybb{bottom:509.623050px;}
.y9e{bottom:509.630400px;}
.y81{bottom:512.785650px;}
.y150{bottom:513.987150px;}
.ye0{bottom:514.023900px;}
.y112{bottom:514.278900px;}
.y185{bottom:516.448050px;}
.y52{bottom:524.908200px;}
.y1b{bottom:526.683750px;}
.yba{bottom:528.298050px;}
.y9d{bottom:528.305400px;}
.y80{bottom:531.610650px;}
.y14f{bottom:532.887150px;}
.ydf{bottom:532.908900px;}
.y111{bottom:533.163900px;}
.y184{bottom:534.658050px;}
.y33{bottom:536.338200px;}
.y51{bottom:542.908200px;}
.yb9{bottom:546.973050px;}
.y9c{bottom:546.980400px;}
.y7f{bottom:550.435650px;}
.y14e{bottom:551.787150px;}
.yde{bottom:551.793900px;}
.y110{bottom:552.048900px;}
.y183{bottom:552.868050px;}
.y1a{bottom:553.187700px;}
.y32{bottom:554.338200px;}
.yb8{bottom:565.648050px;}
.y9b{bottom:565.655400px;}
.y7e{bottom:569.260650px;}
.ydd{bottom:570.678900px;}
.y14d{bottom:570.687150px;}
.y10f{bottom:570.933900px;}
.y182{bottom:571.078050px;}
.y31{bottom:572.338200px;}
.y50{bottom:578.908200px;}
.y19{bottom:579.691650px;}
.yb7{bottom:584.323050px;}
.y9a{bottom:584.330400px;}
.y7d{bottom:588.085650px;}
.y181{bottom:589.288050px;}
.ydc{bottom:589.563900px;}
.y14c{bottom:589.587150px;}
.y10e{bottom:589.818900px;}
.y4f{bottom:596.908200px;}
.y18{bottom:597.691650px;}
.yb6{bottom:602.998050px;}
.y99{bottom:603.005400px;}
.y30{bottom:603.088200px;}
.y7c{bottom:606.910650px;}
.y180{bottom:607.498050px;}
.ydb{bottom:608.448900px;}
.y14b{bottom:608.487150px;}
.y10d{bottom:608.703900px;}
.y2f{bottom:621.088200px;}
.yb5{bottom:621.673050px;}
.y98{bottom:621.680400px;}
.y17{bottom:624.195600px;}
.y17f{bottom:625.708050px;}
.y7b{bottom:625.735650px;}
.yda{bottom:627.333900px;}
.y14a{bottom:627.387150px;}
.y10c{bottom:627.588900px;}
.y4e{bottom:632.908200px;}
.y2e{bottom:639.088200px;}
.yb4{bottom:640.348050px;}
.y97{bottom:640.355400px;}
.y17e{bottom:643.918050px;}
.y7a{bottom:644.560650px;}
.yd9{bottom:646.218900px;}
.y149{bottom:646.287150px;}
.y10b{bottom:646.473900px;}
.y16{bottom:650.699550px;}
.y2d{bottom:657.088200px;}
.yb3{bottom:659.023050px;}
.y96{bottom:659.030400px;}
.y17d{bottom:662.128050px;}
.y79{bottom:663.385650px;}
.yd8{bottom:665.103900px;}
.y148{bottom:665.187150px;}
.y10a{bottom:665.358900px;}
.y2c{bottom:675.088200px;}
.y15{bottom:677.203500px;}
.yb2{bottom:677.698050px;}
.y95{bottom:677.705400px;}
.y17c{bottom:680.338050px;}
.y78{bottom:682.210650px;}
.yd7{bottom:683.988900px;}
.y147{bottom:684.087150px;}
.y109{bottom:684.243900px;}
.y4d{bottom:691.408200px;}
.yb1{bottom:696.373050px;}
.y94{bottom:696.380400px;}
.y17b{bottom:698.548050px;}
.y77{bottom:701.035650px;}
.yd6{bottom:702.873900px;}
.y146{bottom:702.987150px;}
.y108{bottom:703.128900px;}
.y14{bottom:703.707300px;}
.y2b{bottom:705.838200px;}
.y17a{bottom:716.758050px;}
.y76{bottom:719.860650px;}
.yd5{bottom:721.758900px;}
.y145{bottom:721.887150px;}
.y107{bottom:722.013900px;}
.y2a{bottom:723.838200px;}
.y13{bottom:730.211400px;}
.y179{bottom:734.968050px;}
.yc2{bottom:736.408050px;}
.y75{bottom:738.685650px;}
.yd4{bottom:740.643900px;}
.y144{bottom:740.787150px;}
.y106{bottom:740.898900px;}
.y4c{bottom:740.908200px;}
.y135{bottom:744.213900px;}
.y12{bottom:748.211400px;}
.y178{bottom:753.178050px;}
.yc1{bottom:755.083050px;}
.y74{bottom:757.510650px;}
.y4b{bottom:758.908200px;}
.yd3{bottom:759.528900px;}
.y143{bottom:759.687150px;}
.y105{bottom:759.783900px;}
.y134{bottom:762.888900px;}
.y177{bottom:771.388050px;}
.y29{bottom:772.588200px;}
.y11{bottom:774.715350px;}
.y73{bottom:776.335650px;}
.y4a{bottom:776.908200px;}
.yd2{bottom:778.413900px;}
.y142{bottom:778.587150px;}
.y104{bottom:778.668900px;}
.y133{bottom:781.563900px;}
.y176{bottom:789.598050px;}
.y28{bottom:790.588200px;}
.y49{bottom:794.908200px;}
.y72{bottom:795.160650px;}
.yd1{bottom:797.298900px;}
.y141{bottom:797.487150px;}
.y103{bottom:797.553900px;}
.y132{bottom:800.238900px;}
.y10{bottom:801.219150px;}
.y175{bottom:807.808050px;}
.y27{bottom:808.588200px;}
.y48{bottom:812.908200px;}
.y71{bottom:813.985650px;}
.yd0{bottom:816.183900px;}
.y140{bottom:816.387150px;}
.y102{bottom:816.438900px;}
.y131{bottom:818.913900px;}
.y174{bottom:826.018050px;}
.y26{bottom:826.588200px;}
.yf{bottom:827.723100px;}
.y47{bottom:830.908200px;}
.y70{bottom:832.810650px;}
.ycf{bottom:835.068900px;}
.y13f{bottom:835.287150px;}
.y101{bottom:835.323900px;}
.y130{bottom:837.588900px;}
.y173{bottom:844.228050px;}
.y25{bottom:844.588200px;}
.y46{bottom:848.908200px;}
.y6{bottom:850.812900px;}
.y2{bottom:850.829700px;}
.y6f{bottom:851.635650px;}
.yce{bottom:853.953900px;}
.y13e{bottom:854.187150px;}
.y100{bottom:854.208900px;}
.ye{bottom:854.227050px;}
.y12f{bottom:856.263900px;}
.y172{bottom:862.438050px;}
.y45{bottom:866.908200px;}
.y6e{bottom:870.460650px;}
.ycd{bottom:872.838900px;}
.y13d{bottom:873.087150px;}
.yff{bottom:873.093900px;}
.y12e{bottom:874.938900px;}
.y24{bottom:875.338200px;}
.y5{bottom:876.318900px;}
.y171{bottom:880.648050px;}
.yd{bottom:880.731000px;}
.y1{bottom:881.725650px;}
.y44{bottom:884.908200px;}
.y6d{bottom:889.285650px;}
.ycc{bottom:891.723900px;}
.yfe{bottom:891.978900px;}
.y23{bottom:893.338200px;}
.y12d{bottom:893.613900px;}
.y170{bottom:898.858050px;}
.y13c{bottom:901.339500px;}
.y43{bottom:902.908200px;}
.yc{bottom:907.234950px;}
.y6c{bottom:908.110650px;}
.ycb{bottom:910.608900px;}
.yfd{bottom:910.863900px;}
.y22{bottom:911.338200px;}
.y16f{bottom:917.068050px;}
.y42{bottom:925.153200px;}
.y21{bottom:929.338200px;}
.yca{bottom:929.493900px;}
.yfc{bottom:929.748900px;}
.y12c{bottom:930.963900px;}
.yb{bottom:933.738900px;}
.y16e{bottom:935.278050px;}
.y20{bottom:947.338200px;}
.y41{bottom:947.398200px;}
.y13b{bottom:948.288900px;}
.yc9{bottom:948.378900px;}
.yfb{bottom:948.633900px;}
.y16d{bottom:953.488050px;}
.ya{bottom:960.242850px;}
.y6b{bottom:964.600650px;}
.y13a{bottom:967.188900px;}
.yc8{bottom:967.263900px;}
.yfa{bottom:967.518900px;}
.y12b{bottom:968.313900px;}
.y6a{bottom:983.425650px;}
.y139{bottom:986.088900px;}
.yc7{bottom:986.148900px;}
.yf9{bottom:986.403900px;}
.y9{bottom:986.746800px;}
.y12a{bottom:986.988900px;}
.y16c{bottom:989.923050px;}
.y138{bottom:1004.988900px;}
.yc6{bottom:1005.033900px;}
.yf8{bottom:1005.288900px;}
.y129{bottom:1005.663900px;}
.y67{bottom:1007.758200px;}
.y16b{bottom:1008.133050px;}
.y69{bottom:1021.079400px;}
.y137{bottom:1023.888900px;}
.yc5{bottom:1023.918900px;}
.yf7{bottom:1024.173900px;}
.y128{bottom:1024.338900px;}
.y66{bottom:1025.758200px;}
.y16a{bottom:1026.343050px;}
.y68{bottom:1039.909800px;}
.y136{bottom:1042.788900px;}
.yc4{bottom:1042.803900px;}
.y127{bottom:1043.013900px;}
.yf6{bottom:1043.058900px;}
.y65{bottom:1043.758200px;}
.y169{bottom:1044.553050px;}
.y8{bottom:1058.746800px;}
.yc3{bottom:1061.688900px;}
.y64{bottom:1061.758200px;}
.yf5{bottom:1061.943900px;}
.y168{bottom:1062.771300px;}
.y167{bottom:1080.987300px;}
.hc{height:39.990234px;}
.h9{height:47.704102px;}
.hb{height:50.214844px;}
.ha{height:50.273438px;}
.he{height:50.742188px;}
.h7{height:55.236328px;}
.hf{height:55.300781px;}
.h5{height:60.257812px;}
.h12{height:60.328125px;}
.h6{height:60.890625px;}
.h8{height:65.355469px;}
.hd{height:65.381869px;}
.h4{height:81.187500px;}
.h3{height:100.429688px;}
.h11{height:150.820312px;}
.h10{height:165.902344px;}
.h1{height:1190.250000px;}
.h0{height:1190.520000px;}
.h2{height:1190.551500px;}
.w2{width:892.914000px;}
.w3{width:893.250000px;}
.w5{width:1785.750000px;}
.w4{width:1785.825000px;}
.w0{width:1818.720000px;}
.w1{width:1818.750000px;}
.x0{left:0.000000px;}
.xa{left:74.409450px;}
.xb{left:91.419450px;}
.x19{left:138.182250px;}
.x1a{left:163.697250px;}
.x11{left:229.824450px;}
.x1e{left:256.151550px;}
.x12{left:347.874450px;}
.x6{left:371.936550px;}
.x13{left:374.559450px;}
.x10{left:398.304450px;}
.x5{left:406.334550px;}
.x1d{left:417.054000px;}
.x1c{left:434.855100px;}
.x1b{left:438.722250px;}
.x18{left:442.589550px;}
.xc{left:467.709450px;}
.xd{left:484.719450px;}
.xf{left:526.299450px;}
.xe{left:629.739450px;}
.x1f{left:1020.472350px;}
.x8{left:1031.102250px;}
.x20{left:1045.987350px;}
.x16{left:1056.618750px;}
.x9{left:1090.629750px;}
.x2{left:1166.254800px;}
.x1{left:1181.723550px;}
.x3{left:1221.108750px;}
.x15{left:1299.258750px;}
.x4{left:1322.502750px;}
.x17{left:1326.003750px;}
.x7{left:1335.502800px;}
.x14{left:1486.548750px;}
.x21{left:1623.097350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.760000pt;}
.ls1{letter-spacing:-0.506667pt;}
.ls3{letter-spacing:-0.253333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.017600pt;}
.ls5{letter-spacing:0.053333pt;}
.ws8{word-spacing:-17.333333pt;}
.ws77{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws9{word-spacing:-12.133333pt;}
.ws4e{word-spacing:-2.666667pt;}
.ws73{word-spacing:-2.613333pt;}
.ws6{word-spacing:-2.584000pt;}
.ws48{word-spacing:-2.560000pt;}
.ws4a{word-spacing:-2.506667pt;}
.ws12{word-spacing:-2.453333pt;}
.ws60{word-spacing:-2.346667pt;}
.ws3a{word-spacing:-2.240000pt;}
.ws61{word-spacing:-2.080000pt;}
.ws78{word-spacing:-1.973333pt;}
.ws5b{word-spacing:-1.920000pt;}
.ws71{word-spacing:-1.866667pt;}
.ws7d{word-spacing:-1.813333pt;}
.ws6a{word-spacing:-1.760000pt;}
.ws2d{word-spacing:-1.706667pt;}
.ws57{word-spacing:-1.653333pt;}
.ws2a{word-spacing:-1.600000pt;}
.ws2{word-spacing:-1.570667pt;}
.ws55{word-spacing:-1.546667pt;}
.ws1a{word-spacing:-1.493333pt;}
.ws4f{word-spacing:-1.440000pt;}
.ws72{word-spacing:-1.333333pt;}
.ws7{word-spacing:-1.317333pt;}
.ws3f{word-spacing:-1.280000pt;}
.ws6c{word-spacing:-1.226667pt;}
.ws6e{word-spacing:-1.173333pt;}
.ws5a{word-spacing:-1.120000pt;}
.ws3{word-spacing:-1.114667pt;}
.ws3e{word-spacing:-1.013333pt;}
.ws19{word-spacing:-0.960000pt;}
.ws52{word-spacing:-0.906667pt;}
.ws51{word-spacing:-0.800000pt;}
.ws30{word-spacing:-0.746667pt;}
.ws28{word-spacing:-0.693333pt;}
.ws79{word-spacing:-0.640000pt;}
.ws50{word-spacing:-0.586667pt;}
.ws1b{word-spacing:-0.533333pt;}
.ws41{word-spacing:-0.480000pt;}
.ws2e{word-spacing:-0.426667pt;}
.ws45{word-spacing:-0.373333pt;}
.ws3c{word-spacing:-0.320000pt;}
.ws3d{word-spacing:-0.266667pt;}
.ws63{word-spacing:-0.213333pt;}
.ws7e{word-spacing:-0.106667pt;}
.ws13{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.053333pt;}
.ws40{word-spacing:0.106667pt;}
.ws29{word-spacing:0.160000pt;}
.ws17{word-spacing:0.213333pt;}
.ws23{word-spacing:0.266667pt;}
.ws6b{word-spacing:0.373333pt;}
.ws66{word-spacing:0.426667pt;}
.ws11{word-spacing:0.480000pt;}
.ws22{word-spacing:0.533333pt;}
.ws16{word-spacing:0.693333pt;}
.ws75{word-spacing:0.746667pt;}
.ws4{word-spacing:0.760000pt;}
.ws5e{word-spacing:0.800000pt;}
.ws34{word-spacing:0.853333pt;}
.ws43{word-spacing:0.906667pt;}
.ws56{word-spacing:0.960000pt;}
.ws38{word-spacing:1.066667pt;}
.ws6d{word-spacing:1.120000pt;}
.ws67{word-spacing:1.173333pt;}
.ws1f{word-spacing:1.280000pt;}
.ws54{word-spacing:1.333333pt;}
.ws14{word-spacing:1.386667pt;}
.ws7b{word-spacing:1.440000pt;}
.ws15{word-spacing:1.493333pt;}
.ws68{word-spacing:1.546667pt;}
.wsc{word-spacing:1.600000pt;}
.ws69{word-spacing:1.653333pt;}
.ws5c{word-spacing:1.706667pt;}
.wsa{word-spacing:1.760000pt;}
.ws31{word-spacing:1.813333pt;}
.ws3b{word-spacing:1.866667pt;}
.ws18{word-spacing:1.920000pt;}
.ws27{word-spacing:1.973333pt;}
.ws70{word-spacing:2.080000pt;}
.ws20{word-spacing:2.133333pt;}
.ws5{word-spacing:2.229333pt;}
.ws5f{word-spacing:2.240000pt;}
.ws49{word-spacing:2.293333pt;}
.ws53{word-spacing:2.346667pt;}
.ws36{word-spacing:2.400000pt;}
.ws33{word-spacing:2.506667pt;}
.ws64{word-spacing:2.560000pt;}
.ws59{word-spacing:2.613333pt;}
.ws2b{word-spacing:2.720000pt;}
.ws24{word-spacing:2.826667pt;}
.ws7a{word-spacing:2.880000pt;}
.ws74{word-spacing:2.933333pt;}
.ws7c{word-spacing:2.986667pt;}
.ws39{word-spacing:3.040000pt;}
.ws5d{word-spacing:3.093333pt;}
.ws1e{word-spacing:3.146667pt;}
.ws10{word-spacing:3.200000pt;}
.wsd{word-spacing:3.253333pt;}
.ws58{word-spacing:3.306667pt;}
.ws4b{word-spacing:3.360000pt;}
.wse{word-spacing:3.466667pt;}
.ws37{word-spacing:3.520000pt;}
.ws1c{word-spacing:3.573333pt;}
.ws62{word-spacing:3.626667pt;}
.ws32{word-spacing:3.680000pt;}
.ws6f{word-spacing:3.733333pt;}
.ws4c{word-spacing:3.893333pt;}
.wsb{word-spacing:4.053333pt;}
.ws65{word-spacing:4.160000pt;}
.ws26{word-spacing:4.320000pt;}
.ws2c{word-spacing:4.426667pt;}
.ws7f{word-spacing:4.693333pt;}
.ws2f{word-spacing:4.800000pt;}
.ws46{word-spacing:4.960000pt;}
.ws42{word-spacing:5.066667pt;}
.ws47{word-spacing:5.600000pt;}
.wsf{word-spacing:5.706667pt;}
.ws25{word-spacing:5.920000pt;}
.ws4d{word-spacing:5.973333pt;}
.ws35{word-spacing:7.200000pt;}
.ws76{word-spacing:3077.594667pt;}
.ws44{word-spacing:3105.109333pt;}
.ws21{word-spacing:3132.624000pt;}
._f{margin-left:-14.642667pt;}
._d{margin-left:-12.616000pt;}
._8{margin-left:-10.590400pt;}
._13{margin-left:-9.272000pt;}
._1a{margin-left:-6.474667pt;}
._2{margin-left:-5.461333pt;}
._17{margin-left:-4.384000pt;}
._a{margin-left:-3.426667pt;}
._0{margin-left:-2.026667pt;}
._3{margin-left:-0.896000pt;}
._1{width:1.024000pt;}
._6{width:2.026667pt;}
._18{width:3.093333pt;}
._19{width:4.800000pt;}
._1c{width:5.706667pt;}
._1b{width:6.997333pt;}
._10{width:69.160000pt;}
._b{width:70.821333pt;}
._12{width:75.949333pt;}
._4{width:80.256000pt;}
._16{width:83.853333pt;}
._5{width:87.096000pt;}
._9{width:93.986667pt;}
._7{width:98.041067pt;}
._14{width:99.924800pt;}
._c{width:103.613333pt;}
._11{width:106.045333pt;}
._15{width:108.730667pt;}
._e{width:123.170667pt;}
.fs7{font-size:48.533333pt;}
.fs5{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:106.666667pt;}
.fs9{font-size:160.000000pt;}
.fs8{font-size:176.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:56.693733pt;}
.y199{bottom:102.331600pt;}
.y198{bottom:119.118267pt;}
.y164{bottom:120.877467pt;}
.yb0{bottom:120.944933pt;}
.y93{bottom:121.116133pt;}
.yf4{bottom:121.176800pt;}
.y126{bottom:121.403467pt;}
.y63{bottom:130.585067pt;}
.y197{bottom:135.304933pt;}
.yaf{bottom:137.544933pt;}
.y163{bottom:137.677467pt;}
.y92{bottom:137.849467pt;}
.yf3{bottom:137.963467pt;}
.y125{bottom:138.190133pt;}
.yae{bottom:154.144933pt;}
.y162{bottom:154.477467pt;}
.y91{bottom:154.582800pt;}
.yf2{bottom:154.750133pt;}
.y124{bottom:154.976800pt;}
.y196{bottom:167.691600pt;}
.y4{bottom:170.085867pt;}
.yad{bottom:170.744933pt;}
.y161{bottom:171.277467pt;}
.y90{bottom:171.316133pt;}
.yf1{bottom:171.536800pt;}
.y123{bottom:171.763467pt;}
.y62{bottom:178.585067pt;}
.yac{bottom:187.344933pt;}
.y8f{bottom:188.049467pt;}
.y160{bottom:188.077467pt;}
.yf0{bottom:188.323467pt;}
.y122{bottom:188.550133pt;}
.y3{bottom:193.541867pt;}
.y61{bottom:194.585067pt;}
.y195{bottom:200.078267pt;}
.yab{bottom:203.944933pt;}
.y15f{bottom:204.877467pt;}
.yef{bottom:205.110133pt;}
.y121{bottom:205.336800pt;}
.y60{bottom:210.585067pt;}
.y40{bottom:212.078400pt;}
.y194{bottom:216.264933pt;}
.y166{bottom:216.745333pt;}
.yaa{bottom:220.544933pt;}
.y8e{bottom:221.529467pt;}
.y15e{bottom:221.677467pt;}
.yee{bottom:221.896800pt;}
.y120{bottom:222.123467pt;}
.y5f{bottom:226.585067pt;}
.y3f{bottom:228.078400pt;}
.y193{bottom:232.451600pt;}
.ya9{bottom:237.144933pt;}
.y15d{bottom:238.477467pt;}
.yed{bottom:238.683467pt;}
.y11f{bottom:238.910133pt;}
.y5e{bottom:242.585067pt;}
.y3e{bottom:244.078400pt;}
.y192{bottom:248.638267pt;}
.ya8{bottom:253.744933pt;}
.y8d{bottom:255.009467pt;}
.y15c{bottom:255.277467pt;}
.yec{bottom:255.470133pt;}
.y11e{bottom:255.696800pt;}
.y5d{bottom:258.585067pt;}
.y3d{bottom:260.078400pt;}
.y191{bottom:264.824933pt;}
.ya7{bottom:270.344933pt;}
.y8c{bottom:271.742800pt;}
.y15b{bottom:272.077467pt;}
.yeb{bottom:272.256800pt;}
.y11d{bottom:272.483467pt;}
.y5c{bottom:274.585067pt;}
.y3c{bottom:276.078400pt;}
.y190{bottom:281.011600pt;}
.y165{bottom:282.309733pt;}
.ya6{bottom:286.944933pt;}
.y8b{bottom:288.476133pt;}
.y15a{bottom:288.877467pt;}
.yea{bottom:289.043467pt;}
.y11c{bottom:289.270133pt;}
.y5b{bottom:290.585067pt;}
.y18f{bottom:297.198267pt;}
.y3b{bottom:303.411733pt;}
.ya5{bottom:303.544933pt;}
.y8a{bottom:305.209467pt;}
.y159{bottom:305.677467pt;}
.ye9{bottom:305.830133pt;}
.y11b{bottom:306.056800pt;}
.y5a{bottom:306.585067pt;}
.y18e{bottom:313.384933pt;}
.y3a{bottom:319.411733pt;}
.ya4{bottom:320.144933pt;}
.y89{bottom:321.942800pt;}
.y158{bottom:322.477467pt;}
.y59{bottom:322.585067pt;}
.ye8{bottom:322.616800pt;}
.y11a{bottom:322.843467pt;}
.y18d{bottom:329.571600pt;}
.yc0{bottom:336.744933pt;}
.y58{bottom:338.585067pt;}
.y88{bottom:338.676133pt;}
.y157{bottom:339.277467pt;}
.ye7{bottom:339.403467pt;}
.y119{bottom:339.630133pt;}
.ya3{bottom:345.059867pt;}
.y18c{bottom:345.758267pt;}
.y39{bottom:346.745067pt;}
.ybf{bottom:353.344933pt;}
.y57{bottom:354.585067pt;}
.y87{bottom:355.409467pt;}
.y156{bottom:356.077467pt;}
.ye6{bottom:356.190133pt;}
.y118{bottom:356.416800pt;}
.y18b{bottom:361.944933pt;}
.y38{bottom:362.745067pt;}
.ybe{bottom:369.944933pt;}
.y56{bottom:370.585067pt;}
.y86{bottom:372.142800pt;}
.y155{bottom:372.877467pt;}
.ye5{bottom:372.976800pt;}
.y117{bottom:373.203467pt;}
.y1f{bottom:373.927067pt;}
.y18a{bottom:378.131600pt;}
.y55{bottom:386.585067pt;}
.ya2{bottom:386.604800pt;}
.y85{bottom:388.876133pt;}
.y154{bottom:389.677467pt;}
.ye4{bottom:389.763467pt;}
.y116{bottom:389.990133pt;}
.y37{bottom:390.078400pt;}
.y189{bottom:394.318267pt;}
.ybd{bottom:394.859867pt;}
.y1e{bottom:397.486267pt;}
.ya1{bottom:403.204800pt;}
.y84{bottom:405.609467pt;}
.y36{bottom:406.078400pt;}
.y153{bottom:406.477467pt;}
.ye3{bottom:406.550133pt;}
.y115{bottom:406.776800pt;}
.y188{bottom:410.504933pt;}
.y54{bottom:418.585067pt;}
.ya0{bottom:419.804800pt;}
.y1d{bottom:421.045200pt;}
.y83{bottom:422.342800pt;}
.y152{bottom:423.277467pt;}
.ye2{bottom:423.336800pt;}
.y114{bottom:423.563467pt;}
.y187{bottom:426.691600pt;}
.y35{bottom:433.411733pt;}
.y53{bottom:434.585067pt;}
.ybc{bottom:436.398267pt;}
.y9f{bottom:436.404800pt;}
.y82{bottom:439.076133pt;}
.y151{bottom:440.077467pt;}
.ye1{bottom:440.123467pt;}
.y113{bottom:440.350133pt;}
.y186{bottom:442.878267pt;}
.y1c{bottom:444.604267pt;}
.y34{bottom:449.411733pt;}
.ybb{bottom:452.998267pt;}
.y9e{bottom:453.004800pt;}
.y81{bottom:455.809467pt;}
.y150{bottom:456.877467pt;}
.ye0{bottom:456.910133pt;}
.y112{bottom:457.136800pt;}
.y185{bottom:459.064933pt;}
.y52{bottom:466.585067pt;}
.y1b{bottom:468.163333pt;}
.yba{bottom:469.598267pt;}
.y9d{bottom:469.604800pt;}
.y80{bottom:472.542800pt;}
.y14f{bottom:473.677467pt;}
.ydf{bottom:473.696800pt;}
.y111{bottom:473.923467pt;}
.y184{bottom:475.251600pt;}
.y33{bottom:476.745067pt;}
.y51{bottom:482.585067pt;}
.yb9{bottom:486.198267pt;}
.y9c{bottom:486.204800pt;}
.y7f{bottom:489.276133pt;}
.y14e{bottom:490.477467pt;}
.yde{bottom:490.483467pt;}
.y110{bottom:490.710133pt;}
.y183{bottom:491.438267pt;}
.y1a{bottom:491.722400pt;}
.y32{bottom:492.745067pt;}
.yb8{bottom:502.798267pt;}
.y9b{bottom:502.804800pt;}
.y7e{bottom:506.009467pt;}
.ydd{bottom:507.270133pt;}
.y14d{bottom:507.277467pt;}
.y10f{bottom:507.496800pt;}
.y182{bottom:507.624933pt;}
.y31{bottom:508.745067pt;}
.y50{bottom:514.585067pt;}
.y19{bottom:515.281467pt;}
.yb7{bottom:519.398267pt;}
.y9a{bottom:519.404800pt;}
.y7d{bottom:522.742800pt;}
.y181{bottom:523.811600pt;}
.ydc{bottom:524.056800pt;}
.y14c{bottom:524.077467pt;}
.y10e{bottom:524.283467pt;}
.y4f{bottom:530.585067pt;}
.y18{bottom:531.281467pt;}
.yb6{bottom:535.998267pt;}
.y99{bottom:536.004800pt;}
.y30{bottom:536.078400pt;}
.y7c{bottom:539.476133pt;}
.y180{bottom:539.998267pt;}
.ydb{bottom:540.843467pt;}
.y14b{bottom:540.877467pt;}
.y10d{bottom:541.070133pt;}
.y2f{bottom:552.078400pt;}
.yb5{bottom:552.598267pt;}
.y98{bottom:552.604800pt;}
.y17{bottom:554.840533pt;}
.y17f{bottom:556.184933pt;}
.y7b{bottom:556.209467pt;}
.yda{bottom:557.630133pt;}
.y14a{bottom:557.677467pt;}
.y10c{bottom:557.856800pt;}
.y4e{bottom:562.585067pt;}
.y2e{bottom:568.078400pt;}
.yb4{bottom:569.198267pt;}
.y97{bottom:569.204800pt;}
.y17e{bottom:572.371600pt;}
.y7a{bottom:572.942800pt;}
.yd9{bottom:574.416800pt;}
.y149{bottom:574.477467pt;}
.y10b{bottom:574.643467pt;}
.y16{bottom:578.399600pt;}
.y2d{bottom:584.078400pt;}
.yb3{bottom:585.798267pt;}
.y96{bottom:585.804800pt;}
.y17d{bottom:588.558267pt;}
.y79{bottom:589.676133pt;}
.yd8{bottom:591.203467pt;}
.y148{bottom:591.277467pt;}
.y10a{bottom:591.430133pt;}
.y2c{bottom:600.078400pt;}
.y15{bottom:601.958667pt;}
.yb2{bottom:602.398267pt;}
.y95{bottom:602.404800pt;}
.y17c{bottom:604.744933pt;}
.y78{bottom:606.409467pt;}
.yd7{bottom:607.990133pt;}
.y147{bottom:608.077467pt;}
.y109{bottom:608.216800pt;}
.y4d{bottom:614.585067pt;}
.yb1{bottom:618.998267pt;}
.y94{bottom:619.004800pt;}
.y17b{bottom:620.931600pt;}
.y77{bottom:623.142800pt;}
.yd6{bottom:624.776800pt;}
.y146{bottom:624.877467pt;}
.y108{bottom:625.003467pt;}
.y14{bottom:625.517600pt;}
.y2b{bottom:627.411733pt;}
.y17a{bottom:637.118267pt;}
.y76{bottom:639.876133pt;}
.yd5{bottom:641.563467pt;}
.y145{bottom:641.677467pt;}
.y107{bottom:641.790133pt;}
.y2a{bottom:643.411733pt;}
.y13{bottom:649.076800pt;}
.y179{bottom:653.304933pt;}
.yc2{bottom:654.584933pt;}
.y75{bottom:656.609467pt;}
.yd4{bottom:658.350133pt;}
.y144{bottom:658.477467pt;}
.y106{bottom:658.576800pt;}
.y4c{bottom:658.585067pt;}
.y135{bottom:661.523467pt;}
.y12{bottom:665.076800pt;}
.y178{bottom:669.491600pt;}
.yc1{bottom:671.184933pt;}
.y74{bottom:673.342800pt;}
.y4b{bottom:674.585067pt;}
.yd3{bottom:675.136800pt;}
.y143{bottom:675.277467pt;}
.y105{bottom:675.363467pt;}
.y134{bottom:678.123467pt;}
.y177{bottom:685.678267pt;}
.y29{bottom:686.745067pt;}
.y11{bottom:688.635867pt;}
.y73{bottom:690.076133pt;}
.y4a{bottom:690.585067pt;}
.yd2{bottom:691.923467pt;}
.y142{bottom:692.077467pt;}
.y104{bottom:692.150133pt;}
.y133{bottom:694.723467pt;}
.y176{bottom:701.864933pt;}
.y28{bottom:702.745067pt;}
.y49{bottom:706.585067pt;}
.y72{bottom:706.809467pt;}
.yd1{bottom:708.710133pt;}
.y141{bottom:708.877467pt;}
.y103{bottom:708.936800pt;}
.y132{bottom:711.323467pt;}
.y10{bottom:712.194800pt;}
.y175{bottom:718.051600pt;}
.y27{bottom:718.745067pt;}
.y48{bottom:722.585067pt;}
.y71{bottom:723.542800pt;}
.yd0{bottom:725.496800pt;}
.y140{bottom:725.677467pt;}
.y102{bottom:725.723467pt;}
.y131{bottom:727.923467pt;}
.y174{bottom:734.238267pt;}
.y26{bottom:734.745067pt;}
.yf{bottom:735.753867pt;}
.y47{bottom:738.585067pt;}
.y70{bottom:740.276133pt;}
.ycf{bottom:742.283467pt;}
.y13f{bottom:742.477467pt;}
.y101{bottom:742.510133pt;}
.y130{bottom:744.523467pt;}
.y173{bottom:750.424933pt;}
.y25{bottom:750.745067pt;}
.y46{bottom:754.585067pt;}
.y6{bottom:756.278133pt;}
.y2{bottom:756.293067pt;}
.y6f{bottom:757.009467pt;}
.yce{bottom:759.070133pt;}
.y13e{bottom:759.277467pt;}
.y100{bottom:759.296800pt;}
.ye{bottom:759.312933pt;}
.y12f{bottom:761.123467pt;}
.y172{bottom:766.611600pt;}
.y45{bottom:770.585067pt;}
.y6e{bottom:773.742800pt;}
.ycd{bottom:775.856800pt;}
.y13d{bottom:776.077467pt;}
.yff{bottom:776.083467pt;}
.y12e{bottom:777.723467pt;}
.y24{bottom:778.078400pt;}
.y5{bottom:778.950133pt;}
.y171{bottom:782.798267pt;}
.yd{bottom:782.872000pt;}
.y1{bottom:783.756133pt;}
.y44{bottom:786.585067pt;}
.y6d{bottom:790.476133pt;}
.ycc{bottom:792.643467pt;}
.yfe{bottom:792.870133pt;}
.y23{bottom:794.078400pt;}
.y12d{bottom:794.323467pt;}
.y170{bottom:798.984933pt;}
.y13c{bottom:801.190667pt;}
.y43{bottom:802.585067pt;}
.yc{bottom:806.431067pt;}
.y6c{bottom:807.209467pt;}
.ycb{bottom:809.430133pt;}
.yfd{bottom:809.656800pt;}
.y22{bottom:810.078400pt;}
.y16f{bottom:815.171600pt;}
.y42{bottom:822.358400pt;}
.y21{bottom:826.078400pt;}
.yca{bottom:826.216800pt;}
.yfc{bottom:826.443467pt;}
.y12c{bottom:827.523467pt;}
.yb{bottom:829.990133pt;}
.y16e{bottom:831.358267pt;}
.y20{bottom:842.078400pt;}
.y41{bottom:842.131733pt;}
.y13b{bottom:842.923467pt;}
.yc9{bottom:843.003467pt;}
.yfb{bottom:843.230133pt;}
.y16d{bottom:847.544933pt;}
.ya{bottom:853.549200pt;}
.y6b{bottom:857.422800pt;}
.y13a{bottom:859.723467pt;}
.yc8{bottom:859.790133pt;}
.yfa{bottom:860.016800pt;}
.y12b{bottom:860.723467pt;}
.y6a{bottom:874.156133pt;}
.y139{bottom:876.523467pt;}
.yc7{bottom:876.576800pt;}
.yf9{bottom:876.803467pt;}
.y9{bottom:877.108267pt;}
.y12a{bottom:877.323467pt;}
.y16c{bottom:879.931600pt;}
.y138{bottom:893.323467pt;}
.yc6{bottom:893.363467pt;}
.yf8{bottom:893.590133pt;}
.y129{bottom:893.923467pt;}
.y67{bottom:895.785067pt;}
.y16b{bottom:896.118267pt;}
.y69{bottom:907.626133pt;}
.y137{bottom:910.123467pt;}
.yc5{bottom:910.150133pt;}
.yf7{bottom:910.376800pt;}
.y128{bottom:910.523467pt;}
.y66{bottom:911.785067pt;}
.y16a{bottom:912.304933pt;}
.y68{bottom:924.364267pt;}
.y136{bottom:926.923467pt;}
.yc4{bottom:926.936800pt;}
.y127{bottom:927.123467pt;}
.yf6{bottom:927.163467pt;}
.y65{bottom:927.785067pt;}
.y169{bottom:928.491600pt;}
.y8{bottom:941.108267pt;}
.yc3{bottom:943.723467pt;}
.y64{bottom:943.785067pt;}
.yf5{bottom:943.950133pt;}
.y168{bottom:944.685600pt;}
.y167{bottom:960.877600pt;}
.hc{height:35.546875pt;}
.h9{height:42.403646pt;}
.hb{height:44.635417pt;}
.ha{height:44.687500pt;}
.he{height:45.104167pt;}
.h7{height:49.098958pt;}
.hf{height:49.156250pt;}
.h5{height:53.562500pt;}
.h12{height:53.625000pt;}
.h6{height:54.125000pt;}
.h8{height:58.093750pt;}
.hd{height:58.117217pt;}
.h4{height:72.166667pt;}
.h3{height:89.270833pt;}
.h11{height:134.062500pt;}
.h10{height:147.468750pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.240000pt;}
.h2{height:1058.268000pt;}
.w2{width:793.701333pt;}
.w3{width:794.000000pt;}
.w5{width:1587.333333pt;}
.w4{width:1587.400000pt;}
.w0{width:1616.640000pt;}
.w1{width:1616.666667pt;}
.x0{left:0.000000pt;}
.xa{left:66.141733pt;}
.xb{left:81.261733pt;}
.x19{left:122.828667pt;}
.x1a{left:145.508667pt;}
.x11{left:204.288400pt;}
.x1e{left:227.690267pt;}
.x12{left:309.221733pt;}
.x6{left:330.610267pt;}
.x13{left:332.941733pt;}
.x10{left:354.048400pt;}
.x5{left:361.186267pt;}
.x1d{left:370.714667pt;}
.x1c{left:386.537867pt;}
.x1b{left:389.975333pt;}
.x18{left:393.412933pt;}
.xc{left:415.741733pt;}
.xd{left:430.861733pt;}
.xf{left:467.821733pt;}
.xe{left:559.768400pt;}
.x1f{left:907.086533pt;}
.x8{left:916.535333pt;}
.x20{left:929.766533pt;}
.x16{left:939.216667pt;}
.x9{left:969.448667pt;}
.x2{left:1036.670933pt;}
.x1{left:1050.420933pt;}
.x3{left:1085.430000pt;}
.x15{left:1154.896667pt;}
.x4{left:1175.558000pt;}
.x17{left:1178.670000pt;}
.x7{left:1187.113600pt;}
.x14{left:1321.376667pt;}
.x21{left:1442.753200pt;}
}




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