
    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_184e0dcb6a02b641d11b78ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_780e16373297c05ff017825d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_98cf7dba17c978e8f669887b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913000;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_e579e23c2074b1644bf949c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935000;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_94b2e24d871e68452b2d5678.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_a689ebed58258590c6acfaed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.829000;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_562673682c5bd7f5267c9825.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971000;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_3e813517fa6b4f672bc1476b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971000;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_4f051d5291c7275360ec3d34.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747000;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_2ff10c3683937fd22982d85b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_c0410f923721faa50e0042b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2ff10c3683937fd22982d85b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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:-13.986000px;}
.v4{vertical-align:-5.400000px;}
.v6{vertical-align:-3.839400px;}
.v5{vertical-align:-1.512000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.986000px;}
.v1{vertical-align:17.982000px;}
.v7{vertical-align:19.170000px;}
.ls10{letter-spacing:-5.130000px;}
.lsd{letter-spacing:-3.864000px;}
.ls1c{letter-spacing:-0.855000px;}
.lse{letter-spacing:-0.684000px;}
.ls2{letter-spacing:-0.588000px;}
.lsf{letter-spacing:-0.513000px;}
.ls1d{letter-spacing:-0.315000px;}
.ls1e{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000120px;}
.ls3{letter-spacing:0.000384px;}
.ls5{letter-spacing:0.019200px;}
.lsb{letter-spacing:0.404700px;}
.ls1b{letter-spacing:0.473100px;}
.ls18{letter-spacing:0.513000px;}
.ls1a{letter-spacing:0.530100px;}
.ls19{letter-spacing:0.575700px;}
.ls14{letter-spacing:0.638400px;}
.ls12{letter-spacing:1.596000px;}
.ls11{letter-spacing:1.601700px;}
.lsa{letter-spacing:1.881000px;}
.lsc{letter-spacing:2.622000px;}
.ls0{letter-spacing:3.720000px;}
.ls13{letter-spacing:5.586000px;}
.ls17{letter-spacing:5.643000px;}
.ls16{letter-spacing:5.802600px;}
.ls6{letter-spacing:6.059100px;}
.ls15{letter-spacing:6.190200px;}
.ls7{letter-spacing:6.612000px;}
.ls9{letter-spacing:8.037000px;}
.ls8{letter-spacing:14.478000px;}
.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;}
}
.ws3{word-spacing:-20.016000px;}
.ws5{word-spacing:-13.053000px;}
.ws4{word-spacing:-12.939000px;}
.ws37{word-spacing:-12.369000px;}
.ws25{word-spacing:-11.676000px;}
.ws2{word-spacing:-9.724440px;}
.ws81{word-spacing:-9.450000px;}
.ws0{word-spacing:-8.751996px;}
.ws35{word-spacing:-7.543437px;}
.ws36{word-spacing:-7.239000px;}
.ws1{word-spacing:-6.807108px;}
.ws8b{word-spacing:-6.498000px;}
.ws9{word-spacing:-6.426000px;}
.ws2c{word-spacing:-6.320886px;}
.ws14{word-spacing:-5.520000px;}
.ws5a{word-spacing:-5.244000px;}
.wsc6{word-spacing:-4.815000px;}
.ws6a{word-spacing:-4.788000px;}
.wsd4{word-spacing:-4.680000px;}
.wsa8{word-spacing:-4.674000px;}
.ws17{word-spacing:-4.140000px;}
.ws97{word-spacing:-3.648000px;}
.ws89{word-spacing:-3.591000px;}
.ws5b{word-spacing:-3.477000px;}
.wsa2{word-spacing:-3.420000px;}
.ws47{word-spacing:-3.192000px;}
.wsa1{word-spacing:-3.078000px;}
.wsbc{word-spacing:-2.880000px;}
.ws99{word-spacing:-2.850000px;}
.ws93{word-spacing:-2.793000px;}
.ws7c{word-spacing:-2.679000px;}
.wsbb{word-spacing:-2.655000px;}
.ws9c{word-spacing:-2.622000px;}
.ws3d{word-spacing:-2.508000px;}
.wsa3{word-spacing:-2.337000px;}
.ws8d{word-spacing:-2.052000px;}
.ws46{word-spacing:-1.995000px;}
.wsd5{word-spacing:-1.575000px;}
.ws59{word-spacing:-1.254000px;}
.ws8{word-spacing:-1.176000px;}
.ws8c{word-spacing:-1.140000px;}
.ws10{word-spacing:-1.020000px;}
.ws9e{word-spacing:-0.969000px;}
.ws38{word-spacing:-0.756000px;}
.ws19{word-spacing:-0.741000px;}
.ws70{word-spacing:-0.684000px;}
.wsd6{word-spacing:-0.630000px;}
.ws84{word-spacing:-0.570000px;}
.ws74{word-spacing:-0.513000px;}
.ws3e{word-spacing:-0.228000px;}
.wscf{word-spacing:-0.180000px;}
.ws76{word-spacing:-0.171000px;}
.ws88{word-spacing:-0.114000px;}
.ws7{word-spacing:0.000000px;}
.ws68{word-spacing:0.114000px;}
.ws4c{word-spacing:0.171000px;}
.wsac{word-spacing:0.180000px;}
.wsb{word-spacing:0.240000px;}
.wsc0{word-spacing:0.315000px;}
.ws95{word-spacing:0.342000px;}
.ws90{word-spacing:0.399000px;}
.ws55{word-spacing:0.513000px;}
.ws67{word-spacing:0.570000px;}
.ws43{word-spacing:0.627000px;}
.wsa{word-spacing:0.660000px;}
.ws1c{word-spacing:0.684000px;}
.ws3c{word-spacing:0.741000px;}
.ws63{word-spacing:0.798000px;}
.ws92{word-spacing:1.026000px;}
.ws86{word-spacing:1.083000px;}
.ws65{word-spacing:1.140000px;}
.ws9f{word-spacing:1.197000px;}
.ws66{word-spacing:1.254000px;}
.ws12{word-spacing:1.320000px;}
.ws77{word-spacing:1.368000px;}
.ws87{word-spacing:1.482000px;}
.ws6b{word-spacing:1.596000px;}
.ws9b{word-spacing:1.653000px;}
.ws1b{word-spacing:1.767000px;}
.ws78{word-spacing:1.881000px;}
.ws64{word-spacing:1.938000px;}
.ws11{word-spacing:1.980000px;}
.wsc2{word-spacing:2.025000px;}
.ws13{word-spacing:2.040000px;}
.ws45{word-spacing:2.052000px;}
.ws79{word-spacing:2.223000px;}
.ws18{word-spacing:2.451000px;}
.ws69{word-spacing:2.622000px;}
.wsd3{word-spacing:2.745000px;}
.wsc7{word-spacing:2.790000px;}
.wsa5{word-spacing:2.793000px;}
.wsc8{word-spacing:2.835000px;}
.ws94{word-spacing:2.850000px;}
.ws4e{word-spacing:2.907000px;}
.ws51{word-spacing:2.964000px;}
.wsae{word-spacing:3.015000px;}
.ws52{word-spacing:3.021000px;}
.ws53{word-spacing:3.363000px;}
.wsc3{word-spacing:3.510000px;}
.wsb6{word-spacing:3.555000px;}
.ws83{word-spacing:3.591000px;}
.ws1a{word-spacing:3.648000px;}
.ws15{word-spacing:3.660000px;}
.ws7b{word-spacing:3.762000px;}
.ws4b{word-spacing:3.819000px;}
.wsc{word-spacing:3.840000px;}
.ws7d{word-spacing:3.876000px;}
.wsd0{word-spacing:3.960000px;}
.ws40{word-spacing:4.047000px;}
.wsd7{word-spacing:4.095000px;}
.wsb5{word-spacing:4.230000px;}
.ws9d{word-spacing:4.275000px;}
.ws42{word-spacing:4.332000px;}
.wsc1{word-spacing:4.455000px;}
.ws41{word-spacing:4.560000px;}
.ws91{word-spacing:4.731000px;}
.ws3a{word-spacing:4.788000px;}
.ws8e{word-spacing:4.902000px;}
.wsd1{word-spacing:4.950000px;}
.ws7a{word-spacing:4.959000px;}
.wse{word-spacing:4.980000px;}
.wsaa{word-spacing:5.085000px;}
.wsd2{word-spacing:5.175000px;}
.wsaf{word-spacing:5.265000px;}
.ws9a{word-spacing:5.301000px;}
.wsb2{word-spacing:5.355000px;}
.ws6c{word-spacing:5.586000px;}
.ws3f{word-spacing:5.643000px;}
.ws80{word-spacing:5.757000px;}
.ws5c{word-spacing:6.099000px;}
.ws6d{word-spacing:6.213000px;}
.ws7f{word-spacing:6.441000px;}
.ws5d{word-spacing:6.669000px;}
.wsb7{word-spacing:6.705000px;}
.ws49{word-spacing:6.726000px;}
.ws8f{word-spacing:6.897000px;}
.ws39{word-spacing:7.011000px;}
.ws98{word-spacing:7.182000px;}
.wsc4{word-spacing:7.290000px;}
.ws58{word-spacing:7.353000px;}
.ws7e{word-spacing:7.410000px;}
.ws62{word-spacing:7.524000px;}
.wsbf{word-spacing:7.560000px;}
.ws73{word-spacing:7.638000px;}
.wsa6{word-spacing:7.980000px;}
.ws61{word-spacing:8.037000px;}
.ws4d{word-spacing:8.208000px;}
.ws8a{word-spacing:8.265000px;}
.ws6f{word-spacing:8.436000px;}
.ws6e{word-spacing:8.493000px;}
.wsd{word-spacing:8.700000px;}
.wsab{word-spacing:8.775000px;}
.wsb0{word-spacing:9.045000px;}
.wsad{word-spacing:9.180000px;}
.ws6{word-spacing:9.324000px;}
.ws5e{word-spacing:9.405000px;}
.wsa9{word-spacing:9.450000px;}
.wsf{word-spacing:9.600000px;}
.ws96{word-spacing:10.545000px;}
.ws16{word-spacing:11.520000px;}
.wsa0{word-spacing:11.571000px;}
.wsa7{word-spacing:11.742000px;}
.wsce{word-spacing:11.790000px;}
.ws50{word-spacing:11.799000px;}
.wsbd{word-spacing:11.925000px;}
.wsbe{word-spacing:12.060000px;}
.ws85{word-spacing:12.198000px;}
.ws3b{word-spacing:12.312000px;}
.ws75{word-spacing:12.369000px;}
.wsca{word-spacing:12.420000px;}
.wsc9{word-spacing:12.735000px;}
.ws56{word-spacing:13.110000px;}
.wscc{word-spacing:14.040000px;}
.ws60{word-spacing:14.478000px;}
.ws5f{word-spacing:14.763000px;}
.ws57{word-spacing:15.447000px;}
.ws82{word-spacing:16.074000px;}
.ws72{word-spacing:16.188000px;}
.ws4f{word-spacing:16.587000px;}
.wsa4{word-spacing:16.701000px;}
.wsb9{word-spacing:17.010000px;}
.ws71{word-spacing:17.043000px;}
.wsba{word-spacing:17.145000px;}
.wsb1{word-spacing:18.585000px;}
.wsb8{word-spacing:18.855000px;}
.ws48{word-spacing:19.209000px;}
.ws44{word-spacing:20.007000px;}
.ws54{word-spacing:20.577000px;}
.wsb3{word-spacing:22.410000px;}
.wsb4{word-spacing:22.590000px;}
.wscd{word-spacing:24.930000px;}
.ws4a{word-spacing:27.930000px;}
.wsc5{word-spacing:28.980000px;}
.wscb{word-spacing:32.130000px;}
.ws34{word-spacing:103.152000px;}
.ws2a{word-spacing:141.624000px;}
.ws31{word-spacing:149.856000px;}
.ws32{word-spacing:154.140000px;}
.ws24{word-spacing:155.568000px;}
.ws23{word-spacing:157.836000px;}
.ws28{word-spacing:161.574000px;}
.ws2f{word-spacing:162.708000px;}
.ws2b{word-spacing:164.136000px;}
.ws22{word-spacing:178.920000px;}
.ws21{word-spacing:184.926000px;}
.ws33{word-spacing:187.194000px;}
.ws1f{word-spacing:191.772000px;}
.ws20{word-spacing:199.164000px;}
.ws27{word-spacing:202.272000px;}
.ws26{word-spacing:208.278000px;}
.ws30{word-spacing:236.166000px;}
.ws2e{word-spacing:239.316000px;}
.ws2d{word-spacing:259.560000px;}
.ws1e{word-spacing:275.772000px;}
.ws1d{word-spacing:310.548000px;}
.ws29{word-spacing:333.942000px;}
._3{margin-left:-1533.882000px;}
._30{margin-left:-17.175000px;}
._2d{margin-left:-13.224000px;}
._0{margin-left:-11.256000px;}
._2{margin-left:-9.744000px;}
._6{margin-left:-7.770000px;}
._7{margin-left:-5.838000px;}
._4{margin-left:-3.864000px;}
._1{margin-left:-2.310000px;}
._a{margin-left:-1.080000px;}
._9{width:1.512000px;}
._d{width:3.072000px;}
._b{width:4.308000px;}
._8{width:6.416784px;}
._2c{width:8.436900px;}
._c{width:9.600000px;}
._5{width:11.424000px;}
._31{width:12.663000px;}
._2b{width:14.283000px;}
._2e{width:18.126000px;}
._2f{width:20.385000px;}
._32{width:24.903000px;}
._26{width:126.084000px;}
._28{width:141.666000px;}
._27{width:160.734000px;}
._1b{width:181.734000px;}
._17{width:193.410000px;}
._1f{width:194.964000px;}
._18{width:205.086000px;}
._21{width:215.250000px;}
._22{width:216.762000px;}
._23{width:228.438000px;}
._f{width:234.570000px;}
._11{width:241.752000px;}
._1c{width:268.968000px;}
._10{width:292.278000px;}
._19{width:306.264000px;}
._14{width:325.248000px;}
._24{width:330.372000px;}
._25{width:334.278000px;}
._1a{width:335.790000px;}
._e{width:340.116000px;}
._16{width:341.964000px;}
._15{width:343.980000px;}
._1d{width:348.306000px;}
._12{width:368.310000px;}
._20{width:428.358000px;}
._1e{width:430.584000px;}
._13{width:435.498000px;}
._2a{width:1582.056000px;}
._29{width:2154.415200px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(101,98,99);}
.fsa{font-size:22.737000px;}
.fs4{font-size:24.486000px;}
.fs3{font-size:31.482000px;}
.fsb{font-size:33.231000px;}
.fs6{font-size:34.980000px;}
.fs9{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:48.041400px;}
.y5{bottom:48.044700px;}
.y121{bottom:86.862000px;}
.yd3{bottom:99.641250px;}
.yae{bottom:99.690900px;}
.y21{bottom:99.691350px;}
.yc2{bottom:99.755250px;}
.y45{bottom:99.762000px;}
.ya3{bottom:99.762150px;}
.y120{bottom:101.115750px;}
.y20{bottom:114.695850px;}
.y11f{bottom:115.369500px;}
.yd2{bottom:116.898000px;}
.yad{bottom:116.947650px;}
.yc1{bottom:117.012000px;}
.y44{bottom:117.018750px;}
.ya2{bottom:117.018900px;}
.y11e{bottom:129.623250px;}
.y1f{bottom:129.700350px;}
.yd1{bottom:134.154750px;}
.yac{bottom:134.204400px;}
.yc0{bottom:134.268750px;}
.y43{bottom:134.275500px;}
.ya1{bottom:134.275650px;}
.y11d{bottom:143.877000px;}
.y1e{bottom:144.704850px;}
.yd0{bottom:151.411500px;}
.yab{bottom:151.461150px;}
.ybf{bottom:151.525500px;}
.y42{bottom:151.532250px;}
.ya0{bottom:151.532400px;}
.y11c{bottom:158.130750px;}
.y1d{bottom:159.709350px;}
.ycf{bottom:168.668250px;}
.yaa{bottom:168.717900px;}
.ybe{bottom:168.782250px;}
.y41{bottom:168.789000px;}
.y9f{bottom:168.789150px;}
.y11b{bottom:172.384500px;}
.y1c{bottom:174.713850px;}
.yce{bottom:185.925000px;}
.ya9{bottom:185.974650px;}
.ybd{bottom:186.039000px;}
.y11a{bottom:186.638250px;}
.y1b{bottom:189.718350px;}
.y40{bottom:198.789000px;}
.y9e{bottom:198.789150px;}
.y119{bottom:200.892000px;}
.ycd{bottom:203.181750px;}
.ya8{bottom:203.231400px;}
.y1a{bottom:204.722850px;}
.y118{bottom:215.145750px;}
.ybc{bottom:216.039000px;}
.ycc{bottom:220.438500px;}
.ya7{bottom:220.488150px;}
.y19{bottom:226.100850px;}
.y117{bottom:229.399500px;}
.ycb{bottom:237.695250px;}
.ya6{bottom:237.744900px;}
.y18{bottom:241.105350px;}
.y9d{bottom:241.131150px;}
.y116{bottom:243.653250px;}
.yca{bottom:254.952000px;}
.ya5{bottom:255.001650px;}
.y3f{bottom:255.039000px;}
.ybb{bottom:255.072750px;}
.y17{bottom:256.109850px;}
.y115{bottom:257.907000px;}
.y9c{bottom:258.387900px;}
.y114{bottom:272.160750px;}
.yc9{bottom:272.208750px;}
.ya4{bottom:272.258400px;}
.yba{bottom:272.329500px;}
.y9b{bottom:275.644650px;}
.y16{bottom:277.487850px;}
.y3e{bottom:283.539000px;}
.y113{bottom:286.414500px;}
.yc8{bottom:289.465500px;}
.yb9{bottom:289.586250px;}
.y15{bottom:292.492350px;}
.y9a{bottom:292.901400px;}
.y112{bottom:300.668250px;}
.y3d{bottom:304.539000px;}
.yc7{bottom:306.722250px;}
.yb8{bottom:306.843000px;}
.y14{bottom:307.496850px;}
.y99{bottom:310.158150px;}
.y111{bottom:314.922000px;}
.y13{bottom:322.501350px;}
.yc6{bottom:323.979000px;}
.yb7{bottom:324.099750px;}
.y5c{bottom:324.259050px;}
.y98{bottom:327.367650px;}
.y110{bottom:329.175750px;}
.y3c{bottom:334.164000px;}
.y5b{bottom:337.759050px;}
.yc5{bottom:341.235750px;}
.yb6{bottom:341.356500px;}
.y10f{bottom:343.429500px;}
.y97{bottom:344.624400px;}
.y5a{bottom:351.262800px;}
.y3b{bottom:355.164000px;}
.y10e{bottom:357.683250px;}
.y12{bottom:358.127850px;}
.yc4{bottom:358.492500px;}
.yb5{bottom:358.613250px;}
.y96{bottom:361.881150px;}
.y10d{bottom:371.937000px;}
.y11{bottom:373.132350px;}
.y59{bottom:374.329800px;}
.yc3{bottom:375.749250px;}
.yb4{bottom:375.870000px;}
.y3a{bottom:376.164000px;}
.y95{bottom:379.137900px;}
.y10c{bottom:386.190750px;}
.y10{bottom:388.136850px;}
.y58{bottom:388.578300px;}
.y94{bottom:396.394650px;}
.y39{bottom:397.164000px;}
.y123{bottom:400.444500px;}
.y57{bottom:402.826800px;}
.yf{bottom:409.514850px;}
.y10b{bottom:413.190750px;}
.y93{bottom:413.651400px;}
.y122{bottom:414.698250px;}
.y56{bottom:417.075300px;}
.ye{bottom:424.519350px;}
.y38{bottom:426.789000px;}
.y92{bottom:430.908150px;}
.y55{bottom:431.323800px;}
.yb3{bottom:435.739200px;}
.yd{bottom:439.523850px;}
.y37{bottom:447.789000px;}
.y91{bottom:448.164900px;}
.yb2{bottom:449.987700px;}
.y54{bottom:451.578300px;}
.yc{bottom:454.528350px;}
.yed{bottom:461.806350px;}
.y10a{bottom:462.022350px;}
.yb1{bottom:464.236200px;}
.y90{bottom:465.414900px;}
.y53{bottom:465.826800px;}
.y36{bottom:468.789000px;}
.yb{bottom:469.532850px;}
.yb0{bottom:478.484700px;}
.yec{bottom:479.063100px;}
.y109{bottom:479.279100px;}
.y52{bottom:480.075300px;}
.ya{bottom:484.537350px;}
.y35{bottom:489.789000px;}
.yaf{bottom:492.733200px;}
.y51{bottom:494.323800px;}
.yeb{bottom:496.319850px;}
.y108{bottom:496.535850px;}
.y9{bottom:499.541850px;}
.y8f{bottom:503.250300px;}
.y50{bottom:508.572300px;}
.y34{bottom:510.789000px;}
.yea{bottom:513.576600px;}
.y107{bottom:513.792600px;}
.y8e{bottom:520.507050px;}
.y8{bottom:520.919850px;}
.y4f{bottom:522.820800px;}
.ye9{bottom:530.833350px;}
.y33{bottom:531.789000px;}
.y7{bottom:535.924350px;}
.y8d{bottom:537.763800px;}
.y4e{bottom:543.090150px;}
.y106{bottom:543.792600px;}
.ye8{bottom:548.090100px;}
.y6{bottom:550.928850px;}
.y32{bottom:552.789000px;}
.y8c{bottom:555.020550px;}
.y4d{bottom:557.338650px;}
.ye7{bottom:565.346850px;}
.y4c{bottom:571.587150px;}
.y8b{bottom:572.277300px;}
.y31{bottom:582.414000px;}
.ye6{bottom:582.603600px;}
.y105{bottom:582.758850px;}
.y4b{bottom:585.835650px;}
.y8a{bottom:589.534050px;}
.ye5{bottom:599.860350px;}
.y104{bottom:600.015600px;}
.y4a{bottom:600.462150px;}
.y30{bottom:603.414000px;}
.y89{bottom:606.770550px;}
.ye4{bottom:617.117100px;}
.y103{bottom:617.272350px;}
.y88{bottom:624.027300px;}
.y2f{bottom:624.414000px;}
.y49{bottom:625.956150px;}
.ye3{bottom:634.373850px;}
.y102{bottom:634.529100px;}
.y87{bottom:641.284050px;}
.y2e{bottom:645.414000px;}
.ye2{bottom:651.630600px;}
.y101{bottom:651.785850px;}
.y48{bottom:651.828150px;}
.y86{bottom:658.540800px;}
.y2d{bottom:666.414000px;}
.ye1{bottom:668.887350px;}
.y100{bottom:669.042600px;}
.y85{bottom:675.790800px;}
.y47{bottom:677.322150px;}
.ye0{bottom:686.144100px;}
.yff{bottom:699.042600px;}
.y46{bottom:702.256500px;}
.ydf{bottom:703.400850px;}
.y2c{bottom:708.669300px;}
.y84{bottom:713.626200px;}
.yde{bottom:720.657600px;}
.y2b{bottom:723.669300px;}
.y83{bottom:730.882950px;}
.ydd{bottom:737.914350px;}
.yfe{bottom:738.008850px;}
.y2a{bottom:742.170300px;}
.y70{bottom:745.035900px;}
.y82{bottom:748.139700px;}
.y29{bottom:753.669300px;}
.ydc{bottom:755.171100px;}
.yfd{bottom:755.265600px;}
.y6f{bottom:758.539650px;}
.y81{bottom:765.396450px;}
.y28{bottom:768.669300px;}
.ydb{bottom:772.427850px;}
.yfc{bottom:772.522350px;}
.y6e{bottom:781.618650px;}
.y80{bottom:782.653200px;}
.y27{bottom:787.170300px;}
.yda{bottom:789.684600px;}
.yfb{bottom:789.779100px;}
.y6d{bottom:795.867150px;}
.y7f{bottom:799.909950px;}
.yd9{bottom:806.941350px;}
.yfa{bottom:807.035850px;}
.y6c{bottom:810.115650px;}
.y26{bottom:811.426650px;}
.y7e{bottom:817.166700px;}
.yd8{bottom:824.198100px;}
.yf9{bottom:824.292600px;}
.y6b{bottom:824.364150px;}
.y25{bottom:828.679650px;}
.y7d{bottom:834.416700px;}
.y6a{bottom:838.612650px;}
.yd7{bottom:841.454850px;}
.y69{bottom:852.861150px;}
.yf8{bottom:854.292600px;}
.yd6{bottom:858.711600px;}
.y68{bottom:867.109650px;}
.y24{bottom:867.204600px;}
.y7c{bottom:868.166700px;}
.yd5{bottom:875.968350px;}
.y67{bottom:881.358150px;}
.yf7{bottom:892.997100px;}
.yd4{bottom:893.225100px;}
.y66{bottom:895.606650px;}
.y23{bottom:901.697100px;}
.y65{bottom:909.855150px;}
.yf6{bottom:910.253850px;}
.y7b{bottom:910.481850px;}
.y64{bottom:924.103650px;}
.yf5{bottom:927.510600px;}
.y7a{bottom:927.738600px;}
.y22{bottom:936.189600px;}
.y63{bottom:938.364000px;}
.yf4{bottom:944.767350px;}
.y79{bottom:944.995350px;}
.y62{bottom:952.612500px;}
.yf3{bottom:962.024100px;}
.y78{bottom:962.252100px;}
.y61{bottom:966.861000px;}
.y77{bottom:979.508850px;}
.y60{bottom:992.355000px;}
.yf2{bottom:996.523350px;}
.y12e{bottom:996.693600px;}
.y128{bottom:996.716100px;}
.y76{bottom:996.765600px;}
.y12d{bottom:1010.947350px;}
.y127{bottom:1010.969850px;}
.yf1{bottom:1013.780100px;}
.y75{bottom:1014.022350px;}
.y5f{bottom:1018.227000px;}
.y12c{bottom:1025.201100px;}
.y126{bottom:1025.223600px;}
.yf0{bottom:1031.036850px;}
.y74{bottom:1031.279100px;}
.y12b{bottom:1039.454850px;}
.y5e{bottom:1043.721000px;}
.yef{bottom:1048.293600px;}
.y73{bottom:1048.535850px;}
.y12a{bottom:1053.708600px;}
.y125{bottom:1053.719850px;}
.yee{bottom:1065.550350px;}
.y72{bottom:1065.792600px;}
.y129{bottom:1067.962350px;}
.y124{bottom:1067.973600px;}
.y5d{bottom:1068.655350px;}
.y4{bottom:1083.040200px;}
.y3{bottom:1095.041700px;}
.y2{bottom:1107.211200px;}
.y71{bottom:1117.919550px;}
.h8{height:17.850294px;}
.hd{height:28.431000px;}
.he{height:28.446000px;}
.h4{height:30.618000px;}
.h3{height:30.702000px;}
.h9{height:31.854294px;}
.h12{height:32.130000px;}
.h2{height:33.012000px;}
.hf{height:33.184596px;}
.hc{height:40.698000px;}
.h10{height:40.779000px;}
.h6{height:40.995342px;}
.h7{height:41.007342px;}
.h11{height:42.896934px;}
.ha{height:47.160000px;}
.hb{height:56.592000px;}
.h5{height:99.036000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:68.036100px;}
.x1b{left:70.457400px;}
.x19{left:72.000900px;}
.x12{left:73.974900px;}
.xb{left:76.295400px;}
.x27{left:85.287750px;}
.x2a{left:89.031000px;}
.x18{left:94.722900px;}
.x1d{left:96.854400px;}
.x14{left:98.250900px;}
.xe{left:100.214400px;}
.x1a{left:101.579400px;}
.x8{left:107.018400px;}
.x16{left:113.034900px;}
.x15{left:114.977400px;}
.xc{left:131.336400px;}
.x13{left:135.998400px;}
.xf{left:138.308400px;}
.x1c{left:144.146400px;}
.x10{left:147.485400px;}
.x11{left:149.826900px;}
.x7{left:169.461900px;}
.x9{left:171.603900px;}
.xd{left:176.643900px;}
.xa{left:178.407900px;}
.x6{left:187.941900px;}
.x17{left:195.533400px;}
.x1e{left:263.610300px;}
.x26{left:441.411750px;}
.x1f{left:459.206700px;}
.x2b{left:464.589750px;}
.x28{left:476.443500px;}
.x29{left:477.939750px;}
.x2c{left:480.204750px;}
.x22{left:615.443400px;}
.x20{left:619.968900px;}
.x25{left:630.724050px;}
.x23{left:635.270550px;}
.x1{left:655.154550px;}
.x4{left:683.630100px;}
.x3{left:706.037100px;}
.x21{left:707.202900px;}
.x2{left:712.379100px;}
.x24{left:715.228050px;}
@media print{
.v2{vertical-align:-12.432000pt;}
.v4{vertical-align:-4.800000pt;}
.v6{vertical-align:-3.412800pt;}
.v5{vertical-align:-1.344000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.432000pt;}
.v1{vertical-align:15.984000pt;}
.v7{vertical-align:17.040000pt;}
.ls10{letter-spacing:-4.560000pt;}
.lsd{letter-spacing:-3.434667pt;}
.ls1c{letter-spacing:-0.760000pt;}
.lse{letter-spacing:-0.608000pt;}
.ls2{letter-spacing:-0.522667pt;}
.lsf{letter-spacing:-0.456000pt;}
.ls1d{letter-spacing:-0.280000pt;}
.ls1e{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000107pt;}
.ls3{letter-spacing:0.000341pt;}
.ls5{letter-spacing:0.017067pt;}
.lsb{letter-spacing:0.359733pt;}
.ls1b{letter-spacing:0.420533pt;}
.ls18{letter-spacing:0.456000pt;}
.ls1a{letter-spacing:0.471200pt;}
.ls19{letter-spacing:0.511733pt;}
.ls14{letter-spacing:0.567467pt;}
.ls12{letter-spacing:1.418667pt;}
.ls11{letter-spacing:1.423733pt;}
.lsa{letter-spacing:1.672000pt;}
.lsc{letter-spacing:2.330667pt;}
.ls0{letter-spacing:3.306667pt;}
.ls13{letter-spacing:4.965333pt;}
.ls17{letter-spacing:5.016000pt;}
.ls16{letter-spacing:5.157867pt;}
.ls6{letter-spacing:5.385867pt;}
.ls15{letter-spacing:5.502400pt;}
.ls7{letter-spacing:5.877333pt;}
.ls9{letter-spacing:7.144000pt;}
.ls8{letter-spacing:12.869333pt;}
.ws3{word-spacing:-17.792000pt;}
.ws5{word-spacing:-11.602667pt;}
.ws4{word-spacing:-11.501333pt;}
.ws37{word-spacing:-10.994667pt;}
.ws25{word-spacing:-10.378667pt;}
.ws2{word-spacing:-8.643947pt;}
.ws81{word-spacing:-8.400000pt;}
.ws0{word-spacing:-7.779552pt;}
.ws35{word-spacing:-6.705277pt;}
.ws36{word-spacing:-6.434667pt;}
.ws1{word-spacing:-6.050763pt;}
.ws8b{word-spacing:-5.776000pt;}
.ws9{word-spacing:-5.712000pt;}
.ws2c{word-spacing:-5.618565pt;}
.ws14{word-spacing:-4.906667pt;}
.ws5a{word-spacing:-4.661333pt;}
.wsc6{word-spacing:-4.280000pt;}
.ws6a{word-spacing:-4.256000pt;}
.wsd4{word-spacing:-4.160000pt;}
.wsa8{word-spacing:-4.154667pt;}
.ws17{word-spacing:-3.680000pt;}
.ws97{word-spacing:-3.242667pt;}
.ws89{word-spacing:-3.192000pt;}
.ws5b{word-spacing:-3.090667pt;}
.wsa2{word-spacing:-3.040000pt;}
.ws47{word-spacing:-2.837333pt;}
.wsa1{word-spacing:-2.736000pt;}
.wsbc{word-spacing:-2.560000pt;}
.ws99{word-spacing:-2.533333pt;}
.ws93{word-spacing:-2.482667pt;}
.ws7c{word-spacing:-2.381333pt;}
.wsbb{word-spacing:-2.360000pt;}
.ws9c{word-spacing:-2.330667pt;}
.ws3d{word-spacing:-2.229333pt;}
.wsa3{word-spacing:-2.077333pt;}
.ws8d{word-spacing:-1.824000pt;}
.ws46{word-spacing:-1.773333pt;}
.wsd5{word-spacing:-1.400000pt;}
.ws59{word-spacing:-1.114667pt;}
.ws8{word-spacing:-1.045333pt;}
.ws8c{word-spacing:-1.013333pt;}
.ws10{word-spacing:-0.906667pt;}
.ws9e{word-spacing:-0.861333pt;}
.ws38{word-spacing:-0.672000pt;}
.ws19{word-spacing:-0.658667pt;}
.ws70{word-spacing:-0.608000pt;}
.wsd6{word-spacing:-0.560000pt;}
.ws84{word-spacing:-0.506667pt;}
.ws74{word-spacing:-0.456000pt;}
.ws3e{word-spacing:-0.202667pt;}
.wscf{word-spacing:-0.160000pt;}
.ws76{word-spacing:-0.152000pt;}
.ws88{word-spacing:-0.101333pt;}
.ws7{word-spacing:0.000000pt;}
.ws68{word-spacing:0.101333pt;}
.ws4c{word-spacing:0.152000pt;}
.wsac{word-spacing:0.160000pt;}
.wsb{word-spacing:0.213333pt;}
.wsc0{word-spacing:0.280000pt;}
.ws95{word-spacing:0.304000pt;}
.ws90{word-spacing:0.354667pt;}
.ws55{word-spacing:0.456000pt;}
.ws67{word-spacing:0.506667pt;}
.ws43{word-spacing:0.557333pt;}
.wsa{word-spacing:0.586667pt;}
.ws1c{word-spacing:0.608000pt;}
.ws3c{word-spacing:0.658667pt;}
.ws63{word-spacing:0.709333pt;}
.ws92{word-spacing:0.912000pt;}
.ws86{word-spacing:0.962667pt;}
.ws65{word-spacing:1.013333pt;}
.ws9f{word-spacing:1.064000pt;}
.ws66{word-spacing:1.114667pt;}
.ws12{word-spacing:1.173333pt;}
.ws77{word-spacing:1.216000pt;}
.ws87{word-spacing:1.317333pt;}
.ws6b{word-spacing:1.418667pt;}
.ws9b{word-spacing:1.469333pt;}
.ws1b{word-spacing:1.570667pt;}
.ws78{word-spacing:1.672000pt;}
.ws64{word-spacing:1.722667pt;}
.ws11{word-spacing:1.760000pt;}
.wsc2{word-spacing:1.800000pt;}
.ws13{word-spacing:1.813333pt;}
.ws45{word-spacing:1.824000pt;}
.ws79{word-spacing:1.976000pt;}
.ws18{word-spacing:2.178667pt;}
.ws69{word-spacing:2.330667pt;}
.wsd3{word-spacing:2.440000pt;}
.wsc7{word-spacing:2.480000pt;}
.wsa5{word-spacing:2.482667pt;}
.wsc8{word-spacing:2.520000pt;}
.ws94{word-spacing:2.533333pt;}
.ws4e{word-spacing:2.584000pt;}
.ws51{word-spacing:2.634667pt;}
.wsae{word-spacing:2.680000pt;}
.ws52{word-spacing:2.685333pt;}
.ws53{word-spacing:2.989333pt;}
.wsc3{word-spacing:3.120000pt;}
.wsb6{word-spacing:3.160000pt;}
.ws83{word-spacing:3.192000pt;}
.ws1a{word-spacing:3.242667pt;}
.ws15{word-spacing:3.253333pt;}
.ws7b{word-spacing:3.344000pt;}
.ws4b{word-spacing:3.394667pt;}
.wsc{word-spacing:3.413333pt;}
.ws7d{word-spacing:3.445333pt;}
.wsd0{word-spacing:3.520000pt;}
.ws40{word-spacing:3.597333pt;}
.wsd7{word-spacing:3.640000pt;}
.wsb5{word-spacing:3.760000pt;}
.ws9d{word-spacing:3.800000pt;}
.ws42{word-spacing:3.850667pt;}
.wsc1{word-spacing:3.960000pt;}
.ws41{word-spacing:4.053333pt;}
.ws91{word-spacing:4.205333pt;}
.ws3a{word-spacing:4.256000pt;}
.ws8e{word-spacing:4.357333pt;}
.wsd1{word-spacing:4.400000pt;}
.ws7a{word-spacing:4.408000pt;}
.wse{word-spacing:4.426667pt;}
.wsaa{word-spacing:4.520000pt;}
.wsd2{word-spacing:4.600000pt;}
.wsaf{word-spacing:4.680000pt;}
.ws9a{word-spacing:4.712000pt;}
.wsb2{word-spacing:4.760000pt;}
.ws6c{word-spacing:4.965333pt;}
.ws3f{word-spacing:5.016000pt;}
.ws80{word-spacing:5.117333pt;}
.ws5c{word-spacing:5.421333pt;}
.ws6d{word-spacing:5.522667pt;}
.ws7f{word-spacing:5.725333pt;}
.ws5d{word-spacing:5.928000pt;}
.wsb7{word-spacing:5.960000pt;}
.ws49{word-spacing:5.978667pt;}
.ws8f{word-spacing:6.130667pt;}
.ws39{word-spacing:6.232000pt;}
.ws98{word-spacing:6.384000pt;}
.wsc4{word-spacing:6.480000pt;}
.ws58{word-spacing:6.536000pt;}
.ws7e{word-spacing:6.586667pt;}
.ws62{word-spacing:6.688000pt;}
.wsbf{word-spacing:6.720000pt;}
.ws73{word-spacing:6.789333pt;}
.wsa6{word-spacing:7.093333pt;}
.ws61{word-spacing:7.144000pt;}
.ws4d{word-spacing:7.296000pt;}
.ws8a{word-spacing:7.346667pt;}
.ws6f{word-spacing:7.498667pt;}
.ws6e{word-spacing:7.549333pt;}
.wsd{word-spacing:7.733333pt;}
.wsab{word-spacing:7.800000pt;}
.wsb0{word-spacing:8.040000pt;}
.wsad{word-spacing:8.160000pt;}
.ws6{word-spacing:8.288000pt;}
.ws5e{word-spacing:8.360000pt;}
.wsa9{word-spacing:8.400000pt;}
.wsf{word-spacing:8.533333pt;}
.ws96{word-spacing:9.373333pt;}
.ws16{word-spacing:10.240000pt;}
.wsa0{word-spacing:10.285333pt;}
.wsa7{word-spacing:10.437333pt;}
.wsce{word-spacing:10.480000pt;}
.ws50{word-spacing:10.488000pt;}
.wsbd{word-spacing:10.600000pt;}
.wsbe{word-spacing:10.720000pt;}
.ws85{word-spacing:10.842667pt;}
.ws3b{word-spacing:10.944000pt;}
.ws75{word-spacing:10.994667pt;}
.wsca{word-spacing:11.040000pt;}
.wsc9{word-spacing:11.320000pt;}
.ws56{word-spacing:11.653333pt;}
.wscc{word-spacing:12.480000pt;}
.ws60{word-spacing:12.869333pt;}
.ws5f{word-spacing:13.122667pt;}
.ws57{word-spacing:13.730667pt;}
.ws82{word-spacing:14.288000pt;}
.ws72{word-spacing:14.389333pt;}
.ws4f{word-spacing:14.744000pt;}
.wsa4{word-spacing:14.845333pt;}
.wsb9{word-spacing:15.120000pt;}
.ws71{word-spacing:15.149333pt;}
.wsba{word-spacing:15.240000pt;}
.wsb1{word-spacing:16.520000pt;}
.wsb8{word-spacing:16.760000pt;}
.ws48{word-spacing:17.074667pt;}
.ws44{word-spacing:17.784000pt;}
.ws54{word-spacing:18.290667pt;}
.wsb3{word-spacing:19.920000pt;}
.wsb4{word-spacing:20.080000pt;}
.wscd{word-spacing:22.160000pt;}
.ws4a{word-spacing:24.826667pt;}
.wsc5{word-spacing:25.760000pt;}
.wscb{word-spacing:28.560000pt;}
.ws34{word-spacing:91.690667pt;}
.ws2a{word-spacing:125.888000pt;}
.ws31{word-spacing:133.205333pt;}
.ws32{word-spacing:137.013333pt;}
.ws24{word-spacing:138.282667pt;}
.ws23{word-spacing:140.298667pt;}
.ws28{word-spacing:143.621333pt;}
.ws2f{word-spacing:144.629333pt;}
.ws2b{word-spacing:145.898667pt;}
.ws22{word-spacing:159.040000pt;}
.ws21{word-spacing:164.378667pt;}
.ws33{word-spacing:166.394667pt;}
.ws1f{word-spacing:170.464000pt;}
.ws20{word-spacing:177.034667pt;}
.ws27{word-spacing:179.797333pt;}
.ws26{word-spacing:185.136000pt;}
.ws30{word-spacing:209.925333pt;}
.ws2e{word-spacing:212.725333pt;}
.ws2d{word-spacing:230.720000pt;}
.ws1e{word-spacing:245.130667pt;}
.ws1d{word-spacing:276.042667pt;}
.ws29{word-spacing:296.837333pt;}
._3{margin-left:-1363.450667pt;}
._30{margin-left:-15.266667pt;}
._2d{margin-left:-11.754667pt;}
._0{margin-left:-10.005333pt;}
._2{margin-left:-8.661333pt;}
._6{margin-left:-6.906667pt;}
._7{margin-left:-5.189333pt;}
._4{margin-left:-3.434667pt;}
._1{margin-left:-2.053333pt;}
._a{margin-left:-0.960000pt;}
._9{width:1.344000pt;}
._d{width:2.730667pt;}
._b{width:3.829333pt;}
._8{width:5.703808pt;}
._2c{width:7.499467pt;}
._c{width:8.533333pt;}
._5{width:10.154667pt;}
._31{width:11.256000pt;}
._2b{width:12.696000pt;}
._2e{width:16.112000pt;}
._2f{width:18.120000pt;}
._32{width:22.136000pt;}
._26{width:112.074667pt;}
._28{width:125.925333pt;}
._27{width:142.874667pt;}
._1b{width:161.541333pt;}
._17{width:171.920000pt;}
._1f{width:173.301333pt;}
._18{width:182.298667pt;}
._21{width:191.333333pt;}
._22{width:192.677333pt;}
._23{width:203.056000pt;}
._f{width:208.506667pt;}
._11{width:214.890667pt;}
._1c{width:239.082667pt;}
._10{width:259.802667pt;}
._19{width:272.234667pt;}
._14{width:289.109333pt;}
._24{width:293.664000pt;}
._25{width:297.136000pt;}
._1a{width:298.480000pt;}
._e{width:302.325333pt;}
._16{width:303.968000pt;}
._15{width:305.760000pt;}
._1d{width:309.605333pt;}
._12{width:327.386667pt;}
._20{width:380.762667pt;}
._1e{width:382.741333pt;}
._13{width:387.109333pt;}
._2a{width:1406.272000pt;}
._29{width:1915.035733pt;}
.fsa{font-size:20.210667pt;}
.fs4{font-size:21.765333pt;}
.fs3{font-size:27.984000pt;}
.fsb{font-size:29.538667pt;}
.fs6{font-size:31.093333pt;}
.fs9{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:42.703467pt;}
.y5{bottom:42.706400pt;}
.y121{bottom:77.210667pt;}
.yd3{bottom:88.570000pt;}
.yae{bottom:88.614133pt;}
.y21{bottom:88.614533pt;}
.yc2{bottom:88.671333pt;}
.y45{bottom:88.677333pt;}
.ya3{bottom:88.677467pt;}
.y120{bottom:89.880667pt;}
.y20{bottom:101.951867pt;}
.y11f{bottom:102.550667pt;}
.yd2{bottom:103.909333pt;}
.yad{bottom:103.953467pt;}
.yc1{bottom:104.010667pt;}
.y44{bottom:104.016667pt;}
.ya2{bottom:104.016800pt;}
.y11e{bottom:115.220667pt;}
.y1f{bottom:115.289200pt;}
.yd1{bottom:119.248667pt;}
.yac{bottom:119.292800pt;}
.yc0{bottom:119.350000pt;}
.y43{bottom:119.356000pt;}
.ya1{bottom:119.356133pt;}
.y11d{bottom:127.890667pt;}
.y1e{bottom:128.626533pt;}
.yd0{bottom:134.588000pt;}
.yab{bottom:134.632133pt;}
.ybf{bottom:134.689333pt;}
.y42{bottom:134.695333pt;}
.ya0{bottom:134.695467pt;}
.y11c{bottom:140.560667pt;}
.y1d{bottom:141.963867pt;}
.ycf{bottom:149.927333pt;}
.yaa{bottom:149.971467pt;}
.ybe{bottom:150.028667pt;}
.y41{bottom:150.034667pt;}
.y9f{bottom:150.034800pt;}
.y11b{bottom:153.230667pt;}
.y1c{bottom:155.301200pt;}
.yce{bottom:165.266667pt;}
.ya9{bottom:165.310800pt;}
.ybd{bottom:165.368000pt;}
.y11a{bottom:165.900667pt;}
.y1b{bottom:168.638533pt;}
.y40{bottom:176.701333pt;}
.y9e{bottom:176.701467pt;}
.y119{bottom:178.570667pt;}
.ycd{bottom:180.606000pt;}
.ya8{bottom:180.650133pt;}
.y1a{bottom:181.975867pt;}
.y118{bottom:191.240667pt;}
.ybc{bottom:192.034667pt;}
.ycc{bottom:195.945333pt;}
.ya7{bottom:195.989467pt;}
.y19{bottom:200.978533pt;}
.y117{bottom:203.910667pt;}
.ycb{bottom:211.284667pt;}
.ya6{bottom:211.328800pt;}
.y18{bottom:214.315867pt;}
.y9d{bottom:214.338800pt;}
.y116{bottom:216.580667pt;}
.yca{bottom:226.624000pt;}
.ya5{bottom:226.668133pt;}
.y3f{bottom:226.701333pt;}
.ybb{bottom:226.731333pt;}
.y17{bottom:227.653200pt;}
.y115{bottom:229.250667pt;}
.y9c{bottom:229.678133pt;}
.y114{bottom:241.920667pt;}
.yc9{bottom:241.963333pt;}
.ya4{bottom:242.007467pt;}
.yba{bottom:242.070667pt;}
.y9b{bottom:245.017467pt;}
.y16{bottom:246.655867pt;}
.y3e{bottom:252.034667pt;}
.y113{bottom:254.590667pt;}
.yc8{bottom:257.302667pt;}
.yb9{bottom:257.410000pt;}
.y15{bottom:259.993200pt;}
.y9a{bottom:260.356800pt;}
.y112{bottom:267.260667pt;}
.y3d{bottom:270.701333pt;}
.yc7{bottom:272.642000pt;}
.yb8{bottom:272.749333pt;}
.y14{bottom:273.330533pt;}
.y99{bottom:275.696133pt;}
.y111{bottom:279.930667pt;}
.y13{bottom:286.667867pt;}
.yc6{bottom:287.981333pt;}
.yb7{bottom:288.088667pt;}
.y5c{bottom:288.230267pt;}
.y98{bottom:290.993467pt;}
.y110{bottom:292.600667pt;}
.y3c{bottom:297.034667pt;}
.y5b{bottom:300.230267pt;}
.yc5{bottom:303.320667pt;}
.yb6{bottom:303.428000pt;}
.y10f{bottom:305.270667pt;}
.y97{bottom:306.332800pt;}
.y5a{bottom:312.233600pt;}
.y3b{bottom:315.701333pt;}
.y10e{bottom:317.940667pt;}
.y12{bottom:318.335867pt;}
.yc4{bottom:318.660000pt;}
.yb5{bottom:318.767333pt;}
.y96{bottom:321.672133pt;}
.y10d{bottom:330.610667pt;}
.y11{bottom:331.673200pt;}
.y59{bottom:332.737600pt;}
.yc3{bottom:333.999333pt;}
.yb4{bottom:334.106667pt;}
.y3a{bottom:334.368000pt;}
.y95{bottom:337.011467pt;}
.y10c{bottom:343.280667pt;}
.y10{bottom:345.010533pt;}
.y58{bottom:345.402933pt;}
.y94{bottom:352.350800pt;}
.y39{bottom:353.034667pt;}
.y123{bottom:355.950667pt;}
.y57{bottom:358.068267pt;}
.yf{bottom:364.013200pt;}
.y10b{bottom:367.280667pt;}
.y93{bottom:367.690133pt;}
.y122{bottom:368.620667pt;}
.y56{bottom:370.733600pt;}
.ye{bottom:377.350533pt;}
.y38{bottom:379.368000pt;}
.y92{bottom:383.029467pt;}
.y55{bottom:383.398933pt;}
.yb3{bottom:387.323733pt;}
.yd{bottom:390.687867pt;}
.y37{bottom:398.034667pt;}
.y91{bottom:398.368800pt;}
.yb2{bottom:399.989067pt;}
.y54{bottom:401.402933pt;}
.yc{bottom:404.025200pt;}
.yed{bottom:410.494533pt;}
.y10a{bottom:410.686533pt;}
.yb1{bottom:412.654400pt;}
.y90{bottom:413.702133pt;}
.y53{bottom:414.068267pt;}
.y36{bottom:416.701333pt;}
.yb{bottom:417.362533pt;}
.yb0{bottom:425.319733pt;}
.yec{bottom:425.833867pt;}
.y109{bottom:426.025867pt;}
.y52{bottom:426.733600pt;}
.ya{bottom:430.699867pt;}
.y35{bottom:435.368000pt;}
.yaf{bottom:437.985067pt;}
.y51{bottom:439.398933pt;}
.yeb{bottom:441.173200pt;}
.y108{bottom:441.365200pt;}
.y9{bottom:444.037200pt;}
.y8f{bottom:447.333600pt;}
.y50{bottom:452.064267pt;}
.y34{bottom:454.034667pt;}
.yea{bottom:456.512533pt;}
.y107{bottom:456.704533pt;}
.y8e{bottom:462.672933pt;}
.y8{bottom:463.039867pt;}
.y4f{bottom:464.729600pt;}
.ye9{bottom:471.851867pt;}
.y33{bottom:472.701333pt;}
.y7{bottom:476.377200pt;}
.y8d{bottom:478.012267pt;}
.y4e{bottom:482.746800pt;}
.y106{bottom:483.371200pt;}
.ye8{bottom:487.191200pt;}
.y6{bottom:489.714533pt;}
.y32{bottom:491.368000pt;}
.y8c{bottom:493.351600pt;}
.y4d{bottom:495.412133pt;}
.ye7{bottom:502.530533pt;}
.y4c{bottom:508.077467pt;}
.y8b{bottom:508.690933pt;}
.y31{bottom:517.701333pt;}
.ye6{bottom:517.869867pt;}
.y105{bottom:518.007867pt;}
.y4b{bottom:520.742800pt;}
.y8a{bottom:524.030267pt;}
.ye5{bottom:533.209200pt;}
.y104{bottom:533.347200pt;}
.y4a{bottom:533.744133pt;}
.y30{bottom:536.368000pt;}
.y89{bottom:539.351600pt;}
.ye4{bottom:548.548533pt;}
.y103{bottom:548.686533pt;}
.y88{bottom:554.690933pt;}
.y2f{bottom:555.034667pt;}
.y49{bottom:556.405467pt;}
.ye3{bottom:563.887867pt;}
.y102{bottom:564.025867pt;}
.y87{bottom:570.030267pt;}
.y2e{bottom:573.701333pt;}
.ye2{bottom:579.227200pt;}
.y101{bottom:579.365200pt;}
.y48{bottom:579.402800pt;}
.y86{bottom:585.369600pt;}
.y2d{bottom:592.368000pt;}
.ye1{bottom:594.566533pt;}
.y100{bottom:594.704533pt;}
.y85{bottom:600.702933pt;}
.y47{bottom:602.064133pt;}
.ye0{bottom:609.905867pt;}
.yff{bottom:621.371200pt;}
.y46{bottom:624.228000pt;}
.ydf{bottom:625.245200pt;}
.y2c{bottom:629.928267pt;}
.y84{bottom:634.334400pt;}
.yde{bottom:640.584533pt;}
.y2b{bottom:643.261600pt;}
.y83{bottom:649.673733pt;}
.ydd{bottom:655.923867pt;}
.yfe{bottom:656.007867pt;}
.y2a{bottom:659.706933pt;}
.y70{bottom:662.254133pt;}
.y82{bottom:665.013067pt;}
.y29{bottom:669.928267pt;}
.ydc{bottom:671.263200pt;}
.yfd{bottom:671.347200pt;}
.y6f{bottom:674.257467pt;}
.y81{bottom:680.352400pt;}
.y28{bottom:683.261600pt;}
.ydb{bottom:686.602533pt;}
.yfc{bottom:686.686533pt;}
.y6e{bottom:694.772133pt;}
.y80{bottom:695.691733pt;}
.y27{bottom:699.706933pt;}
.yda{bottom:701.941867pt;}
.yfb{bottom:702.025867pt;}
.y6d{bottom:707.437467pt;}
.y7f{bottom:711.031067pt;}
.yd9{bottom:717.281200pt;}
.yfa{bottom:717.365200pt;}
.y6c{bottom:720.102800pt;}
.y26{bottom:721.268133pt;}
.y7e{bottom:726.370400pt;}
.yd8{bottom:732.620533pt;}
.yf9{bottom:732.704533pt;}
.y6b{bottom:732.768133pt;}
.y25{bottom:736.604133pt;}
.y7d{bottom:741.703733pt;}
.y6a{bottom:745.433467pt;}
.yd7{bottom:747.959867pt;}
.y69{bottom:758.098800pt;}
.yf8{bottom:759.371200pt;}
.yd6{bottom:763.299200pt;}
.y68{bottom:770.764133pt;}
.y24{bottom:770.848533pt;}
.y7c{bottom:771.703733pt;}
.yd5{bottom:778.638533pt;}
.y67{bottom:783.429467pt;}
.yf7{bottom:793.775200pt;}
.yd4{bottom:793.977867pt;}
.y66{bottom:796.094800pt;}
.y23{bottom:801.508533pt;}
.y65{bottom:808.760133pt;}
.yf6{bottom:809.114533pt;}
.y7b{bottom:809.317200pt;}
.y64{bottom:821.425467pt;}
.yf5{bottom:824.453867pt;}
.y7a{bottom:824.656533pt;}
.y22{bottom:832.168533pt;}
.y63{bottom:834.101333pt;}
.yf4{bottom:839.793200pt;}
.y79{bottom:839.995867pt;}
.y62{bottom:846.766667pt;}
.yf3{bottom:855.132533pt;}
.y78{bottom:855.335200pt;}
.y61{bottom:859.432000pt;}
.y77{bottom:870.674533pt;}
.y60{bottom:882.093333pt;}
.yf2{bottom:885.798533pt;}
.y12e{bottom:885.949867pt;}
.y128{bottom:885.969867pt;}
.y76{bottom:886.013867pt;}
.y12d{bottom:898.619867pt;}
.y127{bottom:898.639867pt;}
.yf1{bottom:901.137867pt;}
.y75{bottom:901.353200pt;}
.y5f{bottom:905.090667pt;}
.y12c{bottom:911.289867pt;}
.y126{bottom:911.309867pt;}
.yf0{bottom:916.477200pt;}
.y74{bottom:916.692533pt;}
.y12b{bottom:923.959867pt;}
.y5e{bottom:927.752000pt;}
.yef{bottom:931.816533pt;}
.y73{bottom:932.031867pt;}
.y12a{bottom:936.629867pt;}
.y125{bottom:936.639867pt;}
.yee{bottom:947.155867pt;}
.y72{bottom:947.371200pt;}
.y129{bottom:949.299867pt;}
.y124{bottom:949.309867pt;}
.y5d{bottom:949.915867pt;}
.y4{bottom:962.702400pt;}
.y3{bottom:973.370400pt;}
.y2{bottom:984.187733pt;}
.y71{bottom:993.706267pt;}
.h8{height:15.866928pt;}
.hd{height:25.272000pt;}
.he{height:25.285333pt;}
.h4{height:27.216000pt;}
.h3{height:27.290667pt;}
.h9{height:28.314928pt;}
.h12{height:28.560000pt;}
.h2{height:29.344000pt;}
.hf{height:29.497419pt;}
.hc{height:36.176000pt;}
.h10{height:36.248000pt;}
.h6{height:36.440304pt;}
.h7{height:36.450971pt;}
.h11{height:38.130608pt;}
.ha{height:41.920000pt;}
.hb{height:50.304000pt;}
.h5{height:88.032000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.476533pt;}
.x1b{left:62.628800pt;}
.x19{left:64.000800pt;}
.x12{left:65.755467pt;}
.xb{left:67.818133pt;}
.x27{left:75.811333pt;}
.x2a{left:79.138667pt;}
.x18{left:84.198133pt;}
.x1d{left:86.092800pt;}
.x14{left:87.334133pt;}
.xe{left:89.079467pt;}
.x1a{left:90.292800pt;}
.x8{left:95.127467pt;}
.x16{left:100.475467pt;}
.x15{left:102.202133pt;}
.xc{left:116.743467pt;}
.x13{left:120.887467pt;}
.xf{left:122.940800pt;}
.x1c{left:128.130133pt;}
.x10{left:131.098133pt;}
.x11{left:133.179467pt;}
.x7{left:150.632800pt;}
.x9{left:152.536800pt;}
.xd{left:157.016800pt;}
.xa{left:158.584800pt;}
.x6{left:167.059467pt;}
.x17{left:173.807467pt;}
.x1e{left:234.320267pt;}
.x26{left:392.366000pt;}
.x1f{left:408.183733pt;}
.x2b{left:412.968667pt;}
.x28{left:423.505333pt;}
.x29{left:424.835333pt;}
.x2c{left:426.848667pt;}
.x22{left:547.060800pt;}
.x20{left:551.083467pt;}
.x25{left:560.643600pt;}
.x23{left:564.684933pt;}
.x1{left:582.359600pt;}
.x4{left:607.671200pt;}
.x3{left:627.588533pt;}
.x21{left:628.624800pt;}
.x2{left:633.225867pt;}
.x24{left:635.758267pt;}
}




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