
    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_b432463ebabeb108ffddd4b4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_39e019757c7a214cf16bb952.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_e1854080e85c1dc0370711aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964863;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_fa1874f53657a6e1adbeb45e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.135742;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_901e25ec171925e829643b31.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_d81508db0a85b32d4553e849.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_b4454c790867e0e026bc9a7e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_50750054c66ae7ecd9253ac4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.031738;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_5f76b20baf8f9c988a07a9ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.887207;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_d43b453fcd7f00a05d15334c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976111;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_87861123beee3f3acb7e8fcc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.715820;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_aae5dae00e5ab543c4cd2ce8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.710938;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_57362e4797850ec0a6e281aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964865;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_c9361cd841784b3724dfb62b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.976094;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_8f5c818880527b6de9ab6b79.woff2')format("woff");}.fff{font-family:fff;line-height:1.005371;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_fcc245f67de0444ae7975077.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.770020;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.m2{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);}
.v6{vertical-align:-15.966600px;}
.v3{vertical-align:-14.370600px;}
.v4{vertical-align:-5.484600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.370600px;}
.v5{vertical-align:15.966600px;}
.v7{vertical-align:17.982000px;}
.v1{vertical-align:21.978000px;}
.ls11{letter-spacing:-5.160000px;}
.lsa{letter-spacing:-4.644000px;}
.lsb{letter-spacing:-0.918000px;}
.ls22{letter-spacing:-0.702000px;}
.ls9{letter-spacing:-0.691200px;}
.ls8{letter-spacing:-0.408000px;}
.ls17{letter-spacing:-0.300000px;}
.ls7{letter-spacing:-0.102000px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000600px;}
.ls10{letter-spacing:0.001800px;}
.lsf{letter-spacing:0.002400px;}
.ls2{letter-spacing:0.012000px;}
.ls1d{letter-spacing:0.013800px;}
.ls12{letter-spacing:0.015000px;}
.ls1f{letter-spacing:0.019200px;}
.ls5{letter-spacing:0.025800px;}
.ls27{letter-spacing:0.054000px;}
.ls21{letter-spacing:0.120000px;}
.ls26{letter-spacing:0.162000px;}
.ls13{letter-spacing:0.169800px;}
.ls18{letter-spacing:0.300000px;}
.ls19{letter-spacing:0.313800px;}
.ls28{letter-spacing:0.540000px;}
.ls25{letter-spacing:0.660000px;}
.ls15{letter-spacing:2.919600px;}
.ls1c{letter-spacing:3.803400px;}
.ls1a{letter-spacing:4.866000px;}
.ls1b{letter-spacing:5.937600px;}
.ls3{letter-spacing:6.196200px;}
.ls24{letter-spacing:6.884400px;}
.lsd{letter-spacing:6.885000px;}
.ls20{letter-spacing:8.417400px;}
.ls16{letter-spacing:9.276000px;}
.ls4{letter-spacing:15.003000px;}
.ls1e{letter-spacing:16.669800px;}
.lse{letter-spacing:16.670400px;}
.ls23{letter-spacing:24.492000px;}
.ls14{letter-spacing:27.586200px;}
.ls0{letter-spacing:43.181364px;}
.ls1{letter-spacing:43.181964px;}
.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;}
}
.ws9{word-spacing:-60.000000px;}
.ws4{word-spacing:-54.000000px;}
.ws2e{word-spacing:-44.526000px;}
.ws6{word-spacing:-40.073400px;}
.ws8{word-spacing:-17.928000px;}
.wsd7{word-spacing:-16.434000px;}
.ws77{word-spacing:-15.240000px;}
.ws78{word-spacing:-15.120000px;}
.wsaa{word-spacing:-15.060000px;}
.wscf{word-spacing:-15.000000px;}
.ws3{word-spacing:-14.940000px;}
.ws2d{word-spacing:-14.880000px;}
.ws52{word-spacing:-14.820000px;}
.ws2c{word-spacing:-14.700000px;}
.ws63{word-spacing:-14.580000px;}
.ws62{word-spacing:-14.520000px;}
.wsd8{word-spacing:-13.554000px;}
.ws79{word-spacing:-13.446000px;}
.ws5{word-spacing:-13.392000px;}
.wsac{word-spacing:-13.230000px;}
.wsab{word-spacing:-12.528000px;}
.wsd{word-spacing:-12.150000px;}
.wsa{word-spacing:-11.772000px;}
.wsc{word-spacing:-11.232000px;}
.ws1{word-spacing:-10.896000px;}
.wsb{word-spacing:-10.854000px;}
.ws2b{word-spacing:-10.800000px;}
.wse{word-spacing:-10.464000px;}
.ws0{word-spacing:-9.542544px;}
.ws2{word-spacing:-9.417600px;}
.wse7{word-spacing:-7.807536px;}
.ws12{word-spacing:-3.894000px;}
.ws22{word-spacing:-3.360000px;}
.wsb8{word-spacing:-3.024000px;}
.ws97{word-spacing:-2.940000px;}
.ws3d{word-spacing:-2.880000px;}
.wse4{word-spacing:-2.862000px;}
.ws21{word-spacing:-2.820000px;}
.ws4a{word-spacing:-2.700000px;}
.wsda{word-spacing:-2.646000px;}
.ws42{word-spacing:-2.580000px;}
.wsb2{word-spacing:-2.520000px;}
.wse5{word-spacing:-2.430000px;}
.wsbf{word-spacing:-2.340000px;}
.ws6d{word-spacing:-2.280000px;}
.ws83{word-spacing:-2.220000px;}
.ws112{word-spacing:-2.214000px;}
.wsc0{word-spacing:-2.100000px;}
.ws56{word-spacing:-2.040000px;}
.ws6c{word-spacing:-1.980000px;}
.ws10b{word-spacing:-1.944000px;}
.ws3c{word-spacing:-1.860000px;}
.ws88{word-spacing:-1.836000px;}
.ws89{word-spacing:-1.782000px;}
.ws29{word-spacing:-1.680000px;}
.ws108{word-spacing:-1.620000px;}
.wsfc{word-spacing:-1.512000px;}
.ws70{word-spacing:-1.500000px;}
.ws37{word-spacing:-1.440000px;}
.ws1a{word-spacing:-1.404000px;}
.ws59{word-spacing:-1.380000px;}
.wscc{word-spacing:-1.260000px;}
.ws20{word-spacing:-1.188000px;}
.ws15{word-spacing:-1.134000px;}
.wsae{word-spacing:-1.080000px;}
.wsdf{word-spacing:-1.026000px;}
.wsbe{word-spacing:-1.020000px;}
.wsf5{word-spacing:-0.972000px;}
.wsc6{word-spacing:-0.960000px;}
.ws4c{word-spacing:-0.840000px;}
.wsc5{word-spacing:-0.780000px;}
.ws111{word-spacing:-0.756000px;}
.ws5a{word-spacing:-0.720000px;}
.wsb9{word-spacing:-0.660000px;}
.ws8d{word-spacing:-0.648000px;}
.ws5f{word-spacing:-0.540000px;}
.ws43{word-spacing:-0.420000px;}
.wsd1{word-spacing:-0.300000px;}
.ws13{word-spacing:-0.216000px;}
.ws9e{word-spacing:-0.180000px;}
.wsaf{word-spacing:-0.120000px;}
.wsf7{word-spacing:-0.108000px;}
.ws2f{word-spacing:-0.060000px;}
.ws7{word-spacing:-0.054000px;}
.wsf{word-spacing:0.000000px;}
.wse0{word-spacing:0.054000px;}
.ws6f{word-spacing:0.060000px;}
.ws10{word-spacing:0.102000px;}
.wsdb{word-spacing:0.162000px;}
.wsf9{word-spacing:0.270000px;}
.ws6a{word-spacing:0.300000px;}
.wsdd{word-spacing:0.324000px;}
.ws6e{word-spacing:0.360000px;}
.ws1c{word-spacing:0.378000px;}
.ws11{word-spacing:0.408000px;}
.wsfe{word-spacing:0.432000px;}
.ws69{word-spacing:0.480000px;}
.ws10a{word-spacing:0.486000px;}
.ws93{word-spacing:0.540000px;}
.ws117{word-spacing:0.594000px;}
.wsd2{word-spacing:0.600000px;}
.ws10f{word-spacing:0.648000px;}
.ws14{word-spacing:0.691200px;}
.wsb5{word-spacing:0.702000px;}
.ws3b{word-spacing:0.780000px;}
.ws105{word-spacing:0.810000px;}
.ws39{word-spacing:0.840000px;}
.wse6{word-spacing:0.864000px;}
.ws94{word-spacing:0.900000px;}
.ws2a{word-spacing:0.918000px;}
.wsd9{word-spacing:0.972000px;}
.ws67{word-spacing:1.020000px;}
.ws110{word-spacing:1.026000px;}
.wse9{word-spacing:1.134000px;}
.wsf3{word-spacing:1.188000px;}
.ws99{word-spacing:1.200000px;}
.ws1b{word-spacing:1.296000px;}
.wscd{word-spacing:1.320000px;}
.wsf6{word-spacing:1.404000px;}
.wsca{word-spacing:1.440000px;}
.ws19{word-spacing:1.458000px;}
.ws4e{word-spacing:1.500000px;}
.wsf8{word-spacing:1.512000px;}
.ws107{word-spacing:1.674000px;}
.ws68{word-spacing:1.680000px;}
.wsf0{word-spacing:1.728000px;}
.ws49{word-spacing:1.740000px;}
.wsc7{word-spacing:1.800000px;}
.wsf4{word-spacing:1.836000px;}
.ws1d{word-spacing:1.890000px;}
.wsbc{word-spacing:1.980000px;}
.ws51{word-spacing:2.040000px;}
.ws30{word-spacing:2.100000px;}
.wsc8{word-spacing:2.160000px;}
.ws9a{word-spacing:2.220000px;}
.wse3{word-spacing:2.268000px;}
.ws48{word-spacing:2.280000px;}
.ws44{word-spacing:2.340000px;}
.wse8{word-spacing:2.376000px;}
.ws54{word-spacing:2.400000px;}
.wsfa{word-spacing:2.430000px;}
.ws36{word-spacing:2.460000px;}
.ws23{word-spacing:2.520000px;}
.ws87{word-spacing:2.592000px;}
.ws60{word-spacing:2.646000px;}
.ws61{word-spacing:2.700000px;}
.ws25{word-spacing:2.760000px;}
.wsb3{word-spacing:2.820000px;}
.wsb6{word-spacing:2.916000px;}
.ws57{word-spacing:2.940000px;}
.ws7e{word-spacing:3.060000px;}
.wsf1{word-spacing:3.078000px;}
.ws95{word-spacing:3.180000px;}
.ws4d{word-spacing:3.240000px;}
.wsec{word-spacing:3.294000px;}
.ws81{word-spacing:3.300000px;}
.wse1{word-spacing:3.348000px;}
.wsc1{word-spacing:3.360000px;}
.ws45{word-spacing:3.420000px;}
.wsde{word-spacing:3.456000px;}
.ws3e{word-spacing:3.540000px;}
.ws55{word-spacing:3.600000px;}
.wsee{word-spacing:3.672000px;}
.ws41{word-spacing:3.780000px;}
.ws8c{word-spacing:3.834000px;}
.ws66{word-spacing:4.080000px;}
.ws96{word-spacing:4.140000px;}
.wse2{word-spacing:4.158000px;}
.ws1f{word-spacing:4.212000px;}
.ws9c{word-spacing:4.260000px;}
.ws102{word-spacing:4.266000px;}
.ws8f{word-spacing:4.482000px;}
.wsbb{word-spacing:4.500000px;}
.ws8e{word-spacing:4.536000px;}
.ws98{word-spacing:4.560000px;}
.ws7d{word-spacing:4.620000px;}
.ws7c{word-spacing:4.680000px;}
.wsb7{word-spacing:4.698000px;}
.ws46{word-spacing:4.740000px;}
.ws86{word-spacing:4.860000px;}
.ws85{word-spacing:4.914000px;}
.ws28{word-spacing:4.980000px;}
.wsb4{word-spacing:5.022000px;}
.wsce{word-spacing:5.040000px;}
.ws90{word-spacing:5.100000px;}
.ws47{word-spacing:5.160000px;}
.wsed{word-spacing:5.238000px;}
.wsc9{word-spacing:5.280000px;}
.ws113{word-spacing:5.292000px;}
.ws32{word-spacing:5.340000px;}
.wsea{word-spacing:5.346000px;}
.wsbd{word-spacing:5.460000px;}
.wsef{word-spacing:5.508000px;}
.wscb{word-spacing:5.520000px;}
.wsad{word-spacing:5.580000px;}
.ws3f{word-spacing:5.700000px;}
.wsa6{word-spacing:5.760000px;}
.wseb{word-spacing:5.778000px;}
.ws40{word-spacing:5.880000px;}
.ws16{word-spacing:5.886000px;}
.ws8b{word-spacing:5.940000px;}
.ws8a{word-spacing:5.994000px;}
.wsd5{word-spacing:6.000000px;}
.ws10e{word-spacing:6.048000px;}
.ws58{word-spacing:6.060000px;}
.ws5e{word-spacing:6.102000px;}
.ws72{word-spacing:6.120000px;}
.ws5d{word-spacing:6.156000px;}
.ws50{word-spacing:6.180000px;}
.ws5c{word-spacing:6.210000px;}
.ws80{word-spacing:6.240000px;}
.wsf2{word-spacing:6.264000px;}
.ws34{word-spacing:6.300000px;}
.ws35{word-spacing:6.420000px;}
.ws1e{word-spacing:6.534000px;}
.ws3a{word-spacing:6.540000px;}
.ws24{word-spacing:6.600000px;}
.ws18{word-spacing:6.642000px;}
.ws17{word-spacing:6.696000px;}
.wsc3{word-spacing:6.720000px;}
.ws104{word-spacing:6.750000px;}
.ws4f{word-spacing:6.780000px;}
.ws91{word-spacing:6.900000px;}
.wsba{word-spacing:6.960000px;}
.wsc2{word-spacing:7.080000px;}
.wsfd{word-spacing:7.128000px;}
.ws84{word-spacing:7.260000px;}
.wsc4{word-spacing:7.320000px;}
.wsd4{word-spacing:7.620000px;}
.ws106{word-spacing:7.668000px;}
.wsb1{word-spacing:7.680000px;}
.wsb0{word-spacing:7.740000px;}
.wsfb{word-spacing:7.992000px;}
.ws31{word-spacing:8.040000px;}
.ws109{word-spacing:8.154000px;}
.wsd0{word-spacing:8.160000px;}
.wsd6{word-spacing:8.340000px;}
.wsa8{word-spacing:8.370000px;}
.wsa9{word-spacing:8.424000px;}
.wsd3{word-spacing:8.460000px;}
.wsa7{word-spacing:8.478000px;}
.ws92{word-spacing:8.520000px;}
.ws38{word-spacing:8.580000px;}
.ws82{word-spacing:8.640000px;}
.ws7f{word-spacing:8.700000px;}
.ws9b{word-spacing:8.760000px;}
.ws27{word-spacing:8.880000px;}
.ws75{word-spacing:9.234000px;}
.ws26{word-spacing:9.240000px;}
.ws76{word-spacing:9.288000px;}
.ws74{word-spacing:9.342000px;}
.ws33{word-spacing:9.540000px;}
.wsff{word-spacing:9.558000px;}
.ws53{word-spacing:9.660000px;}
.ws4b{word-spacing:10.140000px;}
.ws115{word-spacing:10.260000px;}
.wsdc{word-spacing:10.476000px;}
.ws9d{word-spacing:10.620000px;}
.ws114{word-spacing:10.746000px;}
.ws71{word-spacing:10.920000px;}
.wsa4{word-spacing:11.040000px;}
.ws100{word-spacing:11.286000px;}
.ws64{word-spacing:11.340000px;}
.ws65{word-spacing:11.460000px;}
.ws103{word-spacing:11.502000px;}
.wsa2{word-spacing:11.580000px;}
.ws10c{word-spacing:12.690000px;}
.ws7b{word-spacing:12.720000px;}
.ws9f{word-spacing:12.840000px;}
.ws10d{word-spacing:14.256000px;}
.ws101{word-spacing:19.602000px;}
.wsa3{word-spacing:19.800000px;}
.ws73{word-spacing:20.100000px;}
.wsa5{word-spacing:21.780000px;}
.ws116{word-spacing:24.786000px;}
.wsa1{word-spacing:27.120000px;}
.wsa0{word-spacing:27.300000px;}
.ws6b{word-spacing:27.900000px;}
.ws5b{word-spacing:36.540000px;}
.ws7a{word-spacing:49.020000px;}
._b{margin-left:-10.236600px;}
._16{margin-left:-9.066600px;}
._5{margin-left:-8.037600px;}
._1{margin-left:-6.983400px;}
._a{margin-left:-5.859000px;}
._9{margin-left:-4.491000px;}
._4{margin-left:-2.682600px;}
._0{margin-left:-1.489200px;}
._2{width:1.234200px;}
._3{width:2.494200px;}
._c{width:3.502800px;}
._8{width:4.526400px;}
._7{width:6.241200px;}
._f{width:7.319400px;}
._11{width:8.686800px;}
._e{width:10.932000px;}
._d{width:12.948000px;}
._12{width:21.793800px;}
._13{width:25.649400px;}
._10{width:27.364200px;}
._6{width:36.624000px;}
._14{width:42.639000px;}
._15{width:44.466000px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3f{bottom:71.212050px;}
.y40{bottom:75.036150px;}
.y71{bottom:113.078550px;}
.y87{bottom:113.078700px;}
.yc7{bottom:113.078850px;}
.y2b{bottom:117.212700px;}
.ye{bottom:117.875550px;}
.ya3{bottom:120.500700px;}
.yd{bottom:132.275550px;}
.y70{bottom:134.078550px;}
.y86{bottom:134.078700px;}
.yc6{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.ya2{bottom:140.300850px;}
.yc{bottom:146.675550px;}
.y6f{bottom:155.078550px;}
.y85{bottom:155.078700px;}
.yc5{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.ye1{bottom:160.529400px;}
.yb{bottom:161.075550px;}
.y6e{bottom:176.078550px;}
.y84{bottom:176.078700px;}
.yc4{bottom:176.078850px;}
.y28{bottom:180.212700px;}
.y6d{bottom:197.078550px;}
.y83{bottom:197.078700px;}
.yc3{bottom:197.078850px;}
.y3c{bottom:199.392600px;}
.y27{bottom:201.212700px;}
.y3b{bottom:217.392600px;}
.y6c{bottom:218.078550px;}
.y82{bottom:218.078700px;}
.yc2{bottom:218.078850px;}
.y26{bottom:222.212700px;}
.ye0{bottom:223.937100px;}
.y3a{bottom:235.392600px;}
.y6b{bottom:239.078550px;}
.y81{bottom:239.078700px;}
.yc1{bottom:239.078850px;}
.y25{bottom:243.212700px;}
.y39{bottom:253.392600px;}
.ydf{bottom:253.441050px;}
.y6a{bottom:260.078550px;}
.ya8{bottom:260.078700px;}
.yc0{bottom:260.078850px;}
.y24{bottom:264.212700px;}
.y38{bottom:271.392600px;}
.y69{bottom:281.078550px;}
.y80{bottom:281.078700px;}
.ybf{bottom:281.078850px;}
.y23{bottom:285.212700px;}
.y37{bottom:289.392600px;}
.y68{bottom:302.078550px;}
.ya7{bottom:302.078700px;}
.ybe{bottom:302.078850px;}
.y36{bottom:307.392600px;}
.y22{bottom:319.996500px;}
.y67{bottom:323.078550px;}
.y7f{bottom:323.078700px;}
.ybd{bottom:323.078850px;}
.y35{bottom:325.392600px;}
.y34{bottom:343.392600px;}
.y66{bottom:344.078550px;}
.y7e{bottom:344.078700px;}
.ybc{bottom:344.078850px;}
.y33{bottom:361.392600px;}
.y65{bottom:365.078550px;}
.ya6{bottom:365.078700px;}
.ybb{bottom:365.078850px;}
.y7d{bottom:377.314950px;}
.y64{bottom:386.078550px;}
.ya5{bottom:386.078700px;}
.yba{bottom:386.078850px;}
.y32{bottom:396.400500px;}
.y63{bottom:407.078550px;}
.ya4{bottom:407.078700px;}
.yb9{bottom:407.078850px;}
.y21{bottom:409.027950px;}
.y31{bottom:414.400500px;}
.y62{bottom:428.078550px;}
.y7c{bottom:428.078700px;}
.ydb{bottom:428.078850px;}
.y20{bottom:428.827950px;}
.yb2{bottom:429.019650px;}
.y30{bottom:432.400500px;}
.yb1{bottom:448.819650px;}
.y61{bottom:449.078550px;}
.y7b{bottom:449.078700px;}
.yda{bottom:449.078850px;}
.yac{bottom:453.038100px;}
.yce{bottom:460.337700px;}
.y2f{bottom:467.408400px;}
.yb0{bottom:468.619650px;}
.y1f{bottom:469.887750px;}
.y60{bottom:470.078550px;}
.y7a{bottom:470.078700px;}
.yd9{bottom:470.078850px;}
.yab{bottom:472.838100px;}
.ycd{bottom:480.137850px;}
.y2e{bottom:485.408400px;}
.yaf{bottom:488.419650px;}
.y1e{bottom:489.687900px;}
.y5f{bottom:491.078550px;}
.y79{bottom:491.078700px;}
.yd8{bottom:491.078850px;}
.yb6{bottom:492.602100px;}
.yaa{bottom:492.638100px;}
.ycc{bottom:499.937850px;}
.y2d{bottom:503.408400px;}
.y1d{bottom:509.487900px;}
.y5e{bottom:512.078550px;}
.y78{bottom:512.078700px;}
.yd6{bottom:512.078850px;}
.ya9{bottom:512.438100px;}
.yd7{bottom:513.602250px;}
.ycb{bottom:519.737850px;}
.y2c{bottom:521.408400px;}
.yec{bottom:526.440900px;}
.y1c{bottom:529.287900px;}
.y5d{bottom:533.078550px;}
.y77{bottom:533.078700px;}
.yd5{bottom:533.078850px;}
.yca{bottom:539.537850px;}
.y1b{bottom:549.087900px;}
.y5c{bottom:554.078550px;}
.y76{bottom:554.078700px;}
.yd4{bottom:554.078850px;}
.yc9{bottom:559.337700px;}
.y19{bottom:568.887750px;}
.y1a{bottom:570.258900px;}
.y5b{bottom:575.078550px;}
.y75{bottom:575.078700px;}
.yd2{bottom:575.078850px;}
.yd3{bottom:576.602250px;}
.yc8{bottom:579.137850px;}
.y18{bottom:588.687900px;}
.yde{bottom:589.441050px;}
.y5a{bottom:596.078550px;}
.y74{bottom:596.078700px;}
.yd1{bottom:596.078850px;}
.y17{bottom:608.487900px;}
.y59{bottom:617.078550px;}
.y73{bottom:617.078700px;}
.ya1{bottom:617.078850px;}
.yeb{bottom:622.529250px;}
.y16{bottom:628.287900px;}
.y58{bottom:638.078550px;}
.y72{bottom:638.078700px;}
.ya0{bottom:638.078850px;}
.y15{bottom:648.087900px;}
.y57{bottom:659.078550px;}
.yb5{bottom:659.078700px;}
.y9f{bottom:659.078850px;}
.y14{bottom:667.887750px;}
.y56{bottom:680.078550px;}
.yb4{bottom:680.078700px;}
.y9e{bottom:680.078850px;}
.y13{bottom:687.687900px;}
.y8b{bottom:690.713400px;}
.y55{bottom:701.078550px;}
.yb3{bottom:701.078700px;}
.y9d{bottom:701.078850px;}
.y12{bottom:707.487900px;}
.y8a{bottom:710.513400px;}
.y54{bottom:722.078550px;}
.yea{bottom:722.078700px;}
.y9c{bottom:722.078850px;}
.y11{bottom:727.287900px;}
.y89{bottom:730.313250px;}
.y53{bottom:743.078550px;}
.y9b{bottom:743.078850px;}
.ye9{bottom:748.529250px;}
.y88{bottom:750.113400px;}
.yf0{bottom:756.513450px;}
.yb8{bottom:757.291050px;}
.y10{bottom:758.385300px;}
.y52{bottom:764.078550px;}
.y9a{bottom:764.078850px;}
.yb7{bottom:777.091050px;}
.yae{bottom:777.502950px;}
.y51{bottom:785.078550px;}
.ye8{bottom:785.078700px;}
.y99{bottom:785.078850px;}
.yef{bottom:788.811000px;}
.yad{bottom:797.302950px;}
.ye7{bottom:806.078700px;}
.y98{bottom:806.078850px;}
.y50{bottom:820.440900px;}
.ye6{bottom:827.078700px;}
.y97{bottom:827.078850px;}
.ya{bottom:837.666900px;}
.ye5{bottom:848.078700px;}
.y96{bottom:848.078850px;}
.y9{bottom:855.666900px;}
.y4f{bottom:869.078700px;}
.yd0{bottom:869.078850px;}
.y8{bottom:873.666900px;}
.y4e{bottom:890.078700px;}
.y95{bottom:890.078850px;}
.y7{bottom:891.666900px;}
.y4d{bottom:911.078700px;}
.y94{bottom:911.078850px;}
.ye4{bottom:916.529250px;}
.y6{bottom:926.674650px;}
.y4c{bottom:932.078700px;}
.y93{bottom:932.078850px;}
.y5{bottom:946.474800px;}
.y4a{bottom:953.078700px;}
.y92{bottom:953.078850px;}
.y4b{bottom:954.602100px;}
.y49{bottom:974.078700px;}
.ydd{bottom:974.078850px;}
.y4{bottom:983.282550px;}
.ycf{bottom:988.441050px;}
.y48{bottom:995.078700px;}
.ydc{bottom:995.078850px;}
.y47{bottom:1016.078700px;}
.y91{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y46{bottom:1037.078700px;}
.y90{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.y45{bottom:1058.078700px;}
.y8f{bottom:1058.078850px;}
.ye3{bottom:1063.529250px;}
.y44{bottom:1079.078700px;}
.y8e{bottom:1079.078850px;}
.yee{bottom:1089.903300px;}
.y43{bottom:1100.078700px;}
.y8d{bottom:1100.078850px;}
.yf{bottom:1109.815500px;}
.y42{bottom:1121.078700px;}
.y8c{bottom:1121.078850px;}
.yed{bottom:1122.200850px;}
.ye2{bottom:1125.451800px;}
.y3e{bottom:1155.615300px;}
.y3d{bottom:1175.115300px;}
.y41{bottom:1178.691750px;}
.h6{height:34.446094px;}
.h2{height:38.039062px;}
.h11{height:38.273438px;}
.h5{height:38.531250px;}
.h10{height:42.793945px;}
.h7{height:43.004883px;}
.hf{height:43.057617px;}
.ha{height:43.321289px;}
.hc{height:43.452900px;}
.h8{height:45.615234px;}
.h15{height:45.674994px;}
.h14{height:48.134766px;}
.h13{height:48.281400px;}
.h9{height:48.937500px;}
.h16{height:50.176758px;}
.hb{height:53.710444px;}
.he{height:54.375000px;}
.hd{height:54.738281px;}
.h12{height:59.677537px;}
.h4{height:59.812500px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xe{left:108.286950px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x4{left:300.189000px;}
.xc{left:317.196900px;}
.x3{left:396.050700px;}
.x10{left:429.026250px;}
.x11{left:510.304500px;}
.xd{left:592.802250px;}
.xf{left:603.024300px;}
.xa{left:652.471650px;}
.x9{left:683.848650px;}
.x12{left:703.169100px;}
.x5{left:779.420400px;}
.x1{left:807.210300px;}
@media print{
.v6{vertical-align:-14.192533pt;}
.v3{vertical-align:-12.773867pt;}
.v4{vertical-align:-4.875200pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.773867pt;}
.v5{vertical-align:14.192533pt;}
.v7{vertical-align:15.984000pt;}
.v1{vertical-align:19.536000pt;}
.ls11{letter-spacing:-4.586667pt;}
.lsa{letter-spacing:-4.128000pt;}
.lsb{letter-spacing:-0.816000pt;}
.ls22{letter-spacing:-0.624000pt;}
.ls9{letter-spacing:-0.614400pt;}
.ls8{letter-spacing:-0.362667pt;}
.ls17{letter-spacing:-0.266667pt;}
.ls7{letter-spacing:-0.090667pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000533pt;}
.ls10{letter-spacing:0.001600pt;}
.lsf{letter-spacing:0.002133pt;}
.ls2{letter-spacing:0.010667pt;}
.ls1d{letter-spacing:0.012267pt;}
.ls12{letter-spacing:0.013333pt;}
.ls1f{letter-spacing:0.017067pt;}
.ls5{letter-spacing:0.022933pt;}
.ls27{letter-spacing:0.048000pt;}
.ls21{letter-spacing:0.106667pt;}
.ls26{letter-spacing:0.144000pt;}
.ls13{letter-spacing:0.150933pt;}
.ls18{letter-spacing:0.266667pt;}
.ls19{letter-spacing:0.278933pt;}
.ls28{letter-spacing:0.480000pt;}
.ls25{letter-spacing:0.586667pt;}
.ls15{letter-spacing:2.595200pt;}
.ls1c{letter-spacing:3.380800pt;}
.ls1a{letter-spacing:4.325333pt;}
.ls1b{letter-spacing:5.277867pt;}
.ls3{letter-spacing:5.507733pt;}
.ls24{letter-spacing:6.119467pt;}
.lsd{letter-spacing:6.120000pt;}
.ls20{letter-spacing:7.482133pt;}
.ls16{letter-spacing:8.245333pt;}
.ls4{letter-spacing:13.336000pt;}
.ls1e{letter-spacing:14.817600pt;}
.lse{letter-spacing:14.818133pt;}
.ls23{letter-spacing:21.770667pt;}
.ls14{letter-spacing:24.521067pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1{letter-spacing:38.383968pt;}
.ws9{word-spacing:-53.333333pt;}
.ws4{word-spacing:-48.000000pt;}
.ws2e{word-spacing:-39.578667pt;}
.ws6{word-spacing:-35.620800pt;}
.ws8{word-spacing:-15.936000pt;}
.wsd7{word-spacing:-14.608000pt;}
.ws77{word-spacing:-13.546667pt;}
.ws78{word-spacing:-13.440000pt;}
.wsaa{word-spacing:-13.386667pt;}
.wscf{word-spacing:-13.333333pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2d{word-spacing:-13.226667pt;}
.ws52{word-spacing:-13.173333pt;}
.ws2c{word-spacing:-13.066667pt;}
.ws63{word-spacing:-12.960000pt;}
.ws62{word-spacing:-12.906667pt;}
.wsd8{word-spacing:-12.048000pt;}
.ws79{word-spacing:-11.952000pt;}
.ws5{word-spacing:-11.904000pt;}
.wsac{word-spacing:-11.760000pt;}
.wsab{word-spacing:-11.136000pt;}
.wsd{word-spacing:-10.800000pt;}
.wsa{word-spacing:-10.464000pt;}
.wsc{word-spacing:-9.984000pt;}
.ws1{word-spacing:-9.685333pt;}
.wsb{word-spacing:-9.648000pt;}
.ws2b{word-spacing:-9.600000pt;}
.wse{word-spacing:-9.301333pt;}
.ws0{word-spacing:-8.482261pt;}
.ws2{word-spacing:-8.371200pt;}
.wse7{word-spacing:-6.940032pt;}
.ws12{word-spacing:-3.461333pt;}
.ws22{word-spacing:-2.986667pt;}
.wsb8{word-spacing:-2.688000pt;}
.ws97{word-spacing:-2.613333pt;}
.ws3d{word-spacing:-2.560000pt;}
.wse4{word-spacing:-2.544000pt;}
.ws21{word-spacing:-2.506667pt;}
.ws4a{word-spacing:-2.400000pt;}
.wsda{word-spacing:-2.352000pt;}
.ws42{word-spacing:-2.293333pt;}
.wsb2{word-spacing:-2.240000pt;}
.wse5{word-spacing:-2.160000pt;}
.wsbf{word-spacing:-2.080000pt;}
.ws6d{word-spacing:-2.026667pt;}
.ws83{word-spacing:-1.973333pt;}
.ws112{word-spacing:-1.968000pt;}
.wsc0{word-spacing:-1.866667pt;}
.ws56{word-spacing:-1.813333pt;}
.ws6c{word-spacing:-1.760000pt;}
.ws10b{word-spacing:-1.728000pt;}
.ws3c{word-spacing:-1.653333pt;}
.ws88{word-spacing:-1.632000pt;}
.ws89{word-spacing:-1.584000pt;}
.ws29{word-spacing:-1.493333pt;}
.ws108{word-spacing:-1.440000pt;}
.wsfc{word-spacing:-1.344000pt;}
.ws70{word-spacing:-1.333333pt;}
.ws37{word-spacing:-1.280000pt;}
.ws1a{word-spacing:-1.248000pt;}
.ws59{word-spacing:-1.226667pt;}
.wscc{word-spacing:-1.120000pt;}
.ws20{word-spacing:-1.056000pt;}
.ws15{word-spacing:-1.008000pt;}
.wsae{word-spacing:-0.960000pt;}
.wsdf{word-spacing:-0.912000pt;}
.wsbe{word-spacing:-0.906667pt;}
.wsf5{word-spacing:-0.864000pt;}
.wsc6{word-spacing:-0.853333pt;}
.ws4c{word-spacing:-0.746667pt;}
.wsc5{word-spacing:-0.693333pt;}
.ws111{word-spacing:-0.672000pt;}
.ws5a{word-spacing:-0.640000pt;}
.wsb9{word-spacing:-0.586667pt;}
.ws8d{word-spacing:-0.576000pt;}
.ws5f{word-spacing:-0.480000pt;}
.ws43{word-spacing:-0.373333pt;}
.wsd1{word-spacing:-0.266667pt;}
.ws13{word-spacing:-0.192000pt;}
.ws9e{word-spacing:-0.160000pt;}
.wsaf{word-spacing:-0.106667pt;}
.wsf7{word-spacing:-0.096000pt;}
.ws2f{word-spacing:-0.053333pt;}
.ws7{word-spacing:-0.048000pt;}
.wsf{word-spacing:0.000000pt;}
.wse0{word-spacing:0.048000pt;}
.ws6f{word-spacing:0.053333pt;}
.ws10{word-spacing:0.090667pt;}
.wsdb{word-spacing:0.144000pt;}
.wsf9{word-spacing:0.240000pt;}
.ws6a{word-spacing:0.266667pt;}
.wsdd{word-spacing:0.288000pt;}
.ws6e{word-spacing:0.320000pt;}
.ws1c{word-spacing:0.336000pt;}
.ws11{word-spacing:0.362667pt;}
.wsfe{word-spacing:0.384000pt;}
.ws69{word-spacing:0.426667pt;}
.ws10a{word-spacing:0.432000pt;}
.ws93{word-spacing:0.480000pt;}
.ws117{word-spacing:0.528000pt;}
.wsd2{word-spacing:0.533333pt;}
.ws10f{word-spacing:0.576000pt;}
.ws14{word-spacing:0.614400pt;}
.wsb5{word-spacing:0.624000pt;}
.ws3b{word-spacing:0.693333pt;}
.ws105{word-spacing:0.720000pt;}
.ws39{word-spacing:0.746667pt;}
.wse6{word-spacing:0.768000pt;}
.ws94{word-spacing:0.800000pt;}
.ws2a{word-spacing:0.816000pt;}
.wsd9{word-spacing:0.864000pt;}
.ws67{word-spacing:0.906667pt;}
.ws110{word-spacing:0.912000pt;}
.wse9{word-spacing:1.008000pt;}
.wsf3{word-spacing:1.056000pt;}
.ws99{word-spacing:1.066667pt;}
.ws1b{word-spacing:1.152000pt;}
.wscd{word-spacing:1.173333pt;}
.wsf6{word-spacing:1.248000pt;}
.wsca{word-spacing:1.280000pt;}
.ws19{word-spacing:1.296000pt;}
.ws4e{word-spacing:1.333333pt;}
.wsf8{word-spacing:1.344000pt;}
.ws107{word-spacing:1.488000pt;}
.ws68{word-spacing:1.493333pt;}
.wsf0{word-spacing:1.536000pt;}
.ws49{word-spacing:1.546667pt;}
.wsc7{word-spacing:1.600000pt;}
.wsf4{word-spacing:1.632000pt;}
.ws1d{word-spacing:1.680000pt;}
.wsbc{word-spacing:1.760000pt;}
.ws51{word-spacing:1.813333pt;}
.ws30{word-spacing:1.866667pt;}
.wsc8{word-spacing:1.920000pt;}
.ws9a{word-spacing:1.973333pt;}
.wse3{word-spacing:2.016000pt;}
.ws48{word-spacing:2.026667pt;}
.ws44{word-spacing:2.080000pt;}
.wse8{word-spacing:2.112000pt;}
.ws54{word-spacing:2.133333pt;}
.wsfa{word-spacing:2.160000pt;}
.ws36{word-spacing:2.186667pt;}
.ws23{word-spacing:2.240000pt;}
.ws87{word-spacing:2.304000pt;}
.ws60{word-spacing:2.352000pt;}
.ws61{word-spacing:2.400000pt;}
.ws25{word-spacing:2.453333pt;}
.wsb3{word-spacing:2.506667pt;}
.wsb6{word-spacing:2.592000pt;}
.ws57{word-spacing:2.613333pt;}
.ws7e{word-spacing:2.720000pt;}
.wsf1{word-spacing:2.736000pt;}
.ws95{word-spacing:2.826667pt;}
.ws4d{word-spacing:2.880000pt;}
.wsec{word-spacing:2.928000pt;}
.ws81{word-spacing:2.933333pt;}
.wse1{word-spacing:2.976000pt;}
.wsc1{word-spacing:2.986667pt;}
.ws45{word-spacing:3.040000pt;}
.wsde{word-spacing:3.072000pt;}
.ws3e{word-spacing:3.146667pt;}
.ws55{word-spacing:3.200000pt;}
.wsee{word-spacing:3.264000pt;}
.ws41{word-spacing:3.360000pt;}
.ws8c{word-spacing:3.408000pt;}
.ws66{word-spacing:3.626667pt;}
.ws96{word-spacing:3.680000pt;}
.wse2{word-spacing:3.696000pt;}
.ws1f{word-spacing:3.744000pt;}
.ws9c{word-spacing:3.786667pt;}
.ws102{word-spacing:3.792000pt;}
.ws8f{word-spacing:3.984000pt;}
.wsbb{word-spacing:4.000000pt;}
.ws8e{word-spacing:4.032000pt;}
.ws98{word-spacing:4.053333pt;}
.ws7d{word-spacing:4.106667pt;}
.ws7c{word-spacing:4.160000pt;}
.wsb7{word-spacing:4.176000pt;}
.ws46{word-spacing:4.213333pt;}
.ws86{word-spacing:4.320000pt;}
.ws85{word-spacing:4.368000pt;}
.ws28{word-spacing:4.426667pt;}
.wsb4{word-spacing:4.464000pt;}
.wsce{word-spacing:4.480000pt;}
.ws90{word-spacing:4.533333pt;}
.ws47{word-spacing:4.586667pt;}
.wsed{word-spacing:4.656000pt;}
.wsc9{word-spacing:4.693333pt;}
.ws113{word-spacing:4.704000pt;}
.ws32{word-spacing:4.746667pt;}
.wsea{word-spacing:4.752000pt;}
.wsbd{word-spacing:4.853333pt;}
.wsef{word-spacing:4.896000pt;}
.wscb{word-spacing:4.906667pt;}
.wsad{word-spacing:4.960000pt;}
.ws3f{word-spacing:5.066667pt;}
.wsa6{word-spacing:5.120000pt;}
.wseb{word-spacing:5.136000pt;}
.ws40{word-spacing:5.226667pt;}
.ws16{word-spacing:5.232000pt;}
.ws8b{word-spacing:5.280000pt;}
.ws8a{word-spacing:5.328000pt;}
.wsd5{word-spacing:5.333333pt;}
.ws10e{word-spacing:5.376000pt;}
.ws58{word-spacing:5.386667pt;}
.ws5e{word-spacing:5.424000pt;}
.ws72{word-spacing:5.440000pt;}
.ws5d{word-spacing:5.472000pt;}
.ws50{word-spacing:5.493333pt;}
.ws5c{word-spacing:5.520000pt;}
.ws80{word-spacing:5.546667pt;}
.wsf2{word-spacing:5.568000pt;}
.ws34{word-spacing:5.600000pt;}
.ws35{word-spacing:5.706667pt;}
.ws1e{word-spacing:5.808000pt;}
.ws3a{word-spacing:5.813333pt;}
.ws24{word-spacing:5.866667pt;}
.ws18{word-spacing:5.904000pt;}
.ws17{word-spacing:5.952000pt;}
.wsc3{word-spacing:5.973333pt;}
.ws104{word-spacing:6.000000pt;}
.ws4f{word-spacing:6.026667pt;}
.ws91{word-spacing:6.133333pt;}
.wsba{word-spacing:6.186667pt;}
.wsc2{word-spacing:6.293333pt;}
.wsfd{word-spacing:6.336000pt;}
.ws84{word-spacing:6.453333pt;}
.wsc4{word-spacing:6.506667pt;}
.wsd4{word-spacing:6.773333pt;}
.ws106{word-spacing:6.816000pt;}
.wsb1{word-spacing:6.826667pt;}
.wsb0{word-spacing:6.880000pt;}
.wsfb{word-spacing:7.104000pt;}
.ws31{word-spacing:7.146667pt;}
.ws109{word-spacing:7.248000pt;}
.wsd0{word-spacing:7.253333pt;}
.wsd6{word-spacing:7.413333pt;}
.wsa8{word-spacing:7.440000pt;}
.wsa9{word-spacing:7.488000pt;}
.wsd3{word-spacing:7.520000pt;}
.wsa7{word-spacing:7.536000pt;}
.ws92{word-spacing:7.573333pt;}
.ws38{word-spacing:7.626667pt;}
.ws82{word-spacing:7.680000pt;}
.ws7f{word-spacing:7.733333pt;}
.ws9b{word-spacing:7.786667pt;}
.ws27{word-spacing:7.893333pt;}
.ws75{word-spacing:8.208000pt;}
.ws26{word-spacing:8.213333pt;}
.ws76{word-spacing:8.256000pt;}
.ws74{word-spacing:8.304000pt;}
.ws33{word-spacing:8.480000pt;}
.wsff{word-spacing:8.496000pt;}
.ws53{word-spacing:8.586667pt;}
.ws4b{word-spacing:9.013333pt;}
.ws115{word-spacing:9.120000pt;}
.wsdc{word-spacing:9.312000pt;}
.ws9d{word-spacing:9.440000pt;}
.ws114{word-spacing:9.552000pt;}
.ws71{word-spacing:9.706667pt;}
.wsa4{word-spacing:9.813333pt;}
.ws100{word-spacing:10.032000pt;}
.ws64{word-spacing:10.080000pt;}
.ws65{word-spacing:10.186667pt;}
.ws103{word-spacing:10.224000pt;}
.wsa2{word-spacing:10.293333pt;}
.ws10c{word-spacing:11.280000pt;}
.ws7b{word-spacing:11.306667pt;}
.ws9f{word-spacing:11.413333pt;}
.ws10d{word-spacing:12.672000pt;}
.ws101{word-spacing:17.424000pt;}
.wsa3{word-spacing:17.600000pt;}
.ws73{word-spacing:17.866667pt;}
.wsa5{word-spacing:19.360000pt;}
.ws116{word-spacing:22.032000pt;}
.wsa1{word-spacing:24.106667pt;}
.wsa0{word-spacing:24.266667pt;}
.ws6b{word-spacing:24.800000pt;}
.ws5b{word-spacing:32.480000pt;}
.ws7a{word-spacing:43.573333pt;}
._b{margin-left:-9.099200pt;}
._16{margin-left:-8.059200pt;}
._5{margin-left:-7.144533pt;}
._1{margin-left:-6.207467pt;}
._a{margin-left:-5.208000pt;}
._9{margin-left:-3.992000pt;}
._4{margin-left:-2.384533pt;}
._0{margin-left:-1.323733pt;}
._2{width:1.097067pt;}
._3{width:2.217067pt;}
._c{width:3.113600pt;}
._8{width:4.023467pt;}
._7{width:5.547733pt;}
._f{width:6.506133pt;}
._11{width:7.721600pt;}
._e{width:9.717333pt;}
._d{width:11.509333pt;}
._12{width:19.372267pt;}
._13{width:22.799467pt;}
._10{width:24.323733pt;}
._6{width:32.554667pt;}
._14{width:37.901333pt;}
._15{width:39.525333pt;}
.fs9{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3f{bottom:63.299600pt;}
.y40{bottom:66.698800pt;}
.y71{bottom:100.514267pt;}
.y87{bottom:100.514400pt;}
.yc7{bottom:100.514533pt;}
.y2b{bottom:104.189067pt;}
.ye{bottom:104.778267pt;}
.ya3{bottom:107.111733pt;}
.yd{bottom:117.578267pt;}
.y70{bottom:119.180933pt;}
.y86{bottom:119.181067pt;}
.yc6{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.ya2{bottom:124.711867pt;}
.yc{bottom:130.378267pt;}
.y6f{bottom:137.847600pt;}
.y85{bottom:137.847733pt;}
.yc5{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.ye1{bottom:142.692800pt;}
.yb{bottom:143.178267pt;}
.y6e{bottom:156.514267pt;}
.y84{bottom:156.514400pt;}
.yc4{bottom:156.514533pt;}
.y28{bottom:160.189067pt;}
.y6d{bottom:175.180933pt;}
.y83{bottom:175.181067pt;}
.yc3{bottom:175.181200pt;}
.y3c{bottom:177.237867pt;}
.y27{bottom:178.855733pt;}
.y3b{bottom:193.237867pt;}
.y6c{bottom:193.847600pt;}
.y82{bottom:193.847733pt;}
.yc2{bottom:193.847867pt;}
.y26{bottom:197.522400pt;}
.ye0{bottom:199.055200pt;}
.y3a{bottom:209.237867pt;}
.y6b{bottom:212.514267pt;}
.y81{bottom:212.514400pt;}
.yc1{bottom:212.514533pt;}
.y25{bottom:216.189067pt;}
.y39{bottom:225.237867pt;}
.ydf{bottom:225.280933pt;}
.y6a{bottom:231.180933pt;}
.ya8{bottom:231.181067pt;}
.yc0{bottom:231.181200pt;}
.y24{bottom:234.855733pt;}
.y38{bottom:241.237867pt;}
.y69{bottom:249.847600pt;}
.y80{bottom:249.847733pt;}
.ybf{bottom:249.847867pt;}
.y23{bottom:253.522400pt;}
.y37{bottom:257.237867pt;}
.y68{bottom:268.514267pt;}
.ya7{bottom:268.514400pt;}
.ybe{bottom:268.514533pt;}
.y36{bottom:273.237867pt;}
.y22{bottom:284.441333pt;}
.y67{bottom:287.180933pt;}
.y7f{bottom:287.181067pt;}
.ybd{bottom:287.181200pt;}
.y35{bottom:289.237867pt;}
.y34{bottom:305.237867pt;}
.y66{bottom:305.847600pt;}
.y7e{bottom:305.847733pt;}
.ybc{bottom:305.847867pt;}
.y33{bottom:321.237867pt;}
.y65{bottom:324.514267pt;}
.ya6{bottom:324.514400pt;}
.ybb{bottom:324.514533pt;}
.y7d{bottom:335.391067pt;}
.y64{bottom:343.180933pt;}
.ya5{bottom:343.181067pt;}
.yba{bottom:343.181200pt;}
.y32{bottom:352.356000pt;}
.y63{bottom:361.847600pt;}
.ya4{bottom:361.847733pt;}
.yb9{bottom:361.847867pt;}
.y21{bottom:363.580400pt;}
.y31{bottom:368.356000pt;}
.y62{bottom:380.514267pt;}
.y7c{bottom:380.514400pt;}
.ydb{bottom:380.514533pt;}
.y20{bottom:381.180400pt;}
.yb2{bottom:381.350800pt;}
.y30{bottom:384.356000pt;}
.yb1{bottom:398.950800pt;}
.y61{bottom:399.180933pt;}
.y7b{bottom:399.181067pt;}
.yda{bottom:399.181200pt;}
.yac{bottom:402.700533pt;}
.yce{bottom:409.189067pt;}
.y2f{bottom:415.474133pt;}
.yb0{bottom:416.550800pt;}
.y1f{bottom:417.678000pt;}
.y60{bottom:417.847600pt;}
.y7a{bottom:417.847733pt;}
.yd9{bottom:417.847867pt;}
.yab{bottom:420.300533pt;}
.ycd{bottom:426.789200pt;}
.y2e{bottom:431.474133pt;}
.yaf{bottom:434.150800pt;}
.y1e{bottom:435.278133pt;}
.y5f{bottom:436.514267pt;}
.y79{bottom:436.514400pt;}
.yd8{bottom:436.514533pt;}
.yb6{bottom:437.868533pt;}
.yaa{bottom:437.900533pt;}
.ycc{bottom:444.389200pt;}
.y2d{bottom:447.474133pt;}
.y1d{bottom:452.878133pt;}
.y5e{bottom:455.180933pt;}
.y78{bottom:455.181067pt;}
.yd6{bottom:455.181200pt;}
.ya9{bottom:455.500533pt;}
.yd7{bottom:456.535333pt;}
.ycb{bottom:461.989200pt;}
.y2c{bottom:463.474133pt;}
.yec{bottom:467.947467pt;}
.y1c{bottom:470.478133pt;}
.y5d{bottom:473.847600pt;}
.y77{bottom:473.847733pt;}
.yd5{bottom:473.847867pt;}
.yca{bottom:479.589200pt;}
.y1b{bottom:488.078133pt;}
.y5c{bottom:492.514267pt;}
.y76{bottom:492.514400pt;}
.yd4{bottom:492.514533pt;}
.yc9{bottom:497.189067pt;}
.y19{bottom:505.678000pt;}
.y1a{bottom:506.896800pt;}
.y5b{bottom:511.180933pt;}
.y75{bottom:511.181067pt;}
.yd2{bottom:511.181200pt;}
.yd3{bottom:512.535333pt;}
.yc8{bottom:514.789200pt;}
.y18{bottom:523.278133pt;}
.yde{bottom:523.947600pt;}
.y5a{bottom:529.847600pt;}
.y74{bottom:529.847733pt;}
.yd1{bottom:529.847867pt;}
.y17{bottom:540.878133pt;}
.y59{bottom:548.514267pt;}
.y73{bottom:548.514400pt;}
.ya1{bottom:548.514533pt;}
.yeb{bottom:553.359333pt;}
.y16{bottom:558.478133pt;}
.y58{bottom:567.180933pt;}
.y72{bottom:567.181067pt;}
.ya0{bottom:567.181200pt;}
.y15{bottom:576.078133pt;}
.y57{bottom:585.847600pt;}
.yb5{bottom:585.847733pt;}
.y9f{bottom:585.847867pt;}
.y14{bottom:593.678000pt;}
.y56{bottom:604.514267pt;}
.yb4{bottom:604.514400pt;}
.y9e{bottom:604.514533pt;}
.y13{bottom:611.278133pt;}
.y8b{bottom:613.967467pt;}
.y55{bottom:623.180933pt;}
.yb3{bottom:623.181067pt;}
.y9d{bottom:623.181200pt;}
.y12{bottom:628.878133pt;}
.y8a{bottom:631.567467pt;}
.y54{bottom:641.847600pt;}
.yea{bottom:641.847733pt;}
.y9c{bottom:641.847867pt;}
.y11{bottom:646.478133pt;}
.y89{bottom:649.167333pt;}
.y53{bottom:660.514267pt;}
.y9b{bottom:660.514533pt;}
.ye9{bottom:665.359333pt;}
.y88{bottom:666.767467pt;}
.yf0{bottom:672.456400pt;}
.yb8{bottom:673.147600pt;}
.y10{bottom:674.120267pt;}
.y52{bottom:679.180933pt;}
.y9a{bottom:679.181200pt;}
.yb7{bottom:690.747600pt;}
.yae{bottom:691.113733pt;}
.y51{bottom:697.847600pt;}
.ye8{bottom:697.847733pt;}
.y99{bottom:697.847867pt;}
.yef{bottom:701.165333pt;}
.yad{bottom:708.713733pt;}
.ye7{bottom:716.514400pt;}
.y98{bottom:716.514533pt;}
.y50{bottom:729.280800pt;}
.ye6{bottom:735.181067pt;}
.y97{bottom:735.181200pt;}
.ya{bottom:744.592800pt;}
.ye5{bottom:753.847733pt;}
.y96{bottom:753.847867pt;}
.y9{bottom:760.592800pt;}
.y4f{bottom:772.514400pt;}
.yd0{bottom:772.514533pt;}
.y8{bottom:776.592800pt;}
.y4e{bottom:791.181067pt;}
.y95{bottom:791.181200pt;}
.y7{bottom:792.592800pt;}
.y4d{bottom:809.847733pt;}
.y94{bottom:809.847867pt;}
.ye4{bottom:814.692667pt;}
.y6{bottom:823.710800pt;}
.y4c{bottom:828.514400pt;}
.y93{bottom:828.514533pt;}
.y5{bottom:841.310933pt;}
.y4a{bottom:847.181067pt;}
.y92{bottom:847.181200pt;}
.y4b{bottom:848.535200pt;}
.y49{bottom:865.847733pt;}
.ydd{bottom:865.847867pt;}
.y4{bottom:874.028933pt;}
.ycf{bottom:878.614267pt;}
.y48{bottom:884.514400pt;}
.ydc{bottom:884.514533pt;}
.y47{bottom:903.181067pt;}
.y91{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y46{bottom:921.847733pt;}
.y90{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.y45{bottom:940.514400pt;}
.y8f{bottom:940.514533pt;}
.ye3{bottom:945.359333pt;}
.y44{bottom:959.181067pt;}
.y8e{bottom:959.181200pt;}
.yee{bottom:968.802933pt;}
.y43{bottom:977.847733pt;}
.y8d{bottom:977.847867pt;}
.yf{bottom:986.502667pt;}
.y42{bottom:996.514400pt;}
.y8c{bottom:996.514533pt;}
.yed{bottom:997.511867pt;}
.ye2{bottom:1000.401600pt;}
.y3e{bottom:1027.213600pt;}
.y3d{bottom:1044.546933pt;}
.y41{bottom:1047.726000pt;}
.h6{height:30.618750pt;}
.h2{height:33.812500pt;}
.h11{height:34.020833pt;}
.h5{height:34.250000pt;}
.h10{height:38.039062pt;}
.h7{height:38.226562pt;}
.hf{height:38.273438pt;}
.ha{height:38.507812pt;}
.hc{height:38.624800pt;}
.h8{height:40.546875pt;}
.h15{height:40.599995pt;}
.h14{height:42.786458pt;}
.h13{height:42.916800pt;}
.h9{height:43.500000pt;}
.h16{height:44.601562pt;}
.hb{height:47.742617pt;}
.he{height:48.333333pt;}
.hd{height:48.656250pt;}
.h12{height:53.046700pt;}
.h4{height:53.166667pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xe{left:96.255067pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x4{left:266.834667pt;}
.xc{left:281.952800pt;}
.x3{left:352.045067pt;}
.x10{left:381.356667pt;}
.x11{left:453.604000pt;}
.xd{left:526.935333pt;}
.xf{left:536.021600pt;}
.xa{left:579.974800pt;}
.x9{left:607.865467pt;}
.x12{left:625.039200pt;}
.x5{left:692.818133pt;}
.x1{left:717.520267pt;}
}




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