
    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_a0829c8e606100c0fdf7d3f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_31c82a8cb8f87e30222b3d80.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984000;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_31c82a8cb8f87e30222b3d80.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;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_31c82a8cb8f87e30222b3d80.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;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_3f1cdbc99fdaea4da3f81988.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984000;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_fa90c5364bdf6ea31a372e06.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.081000;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_bb0877126d3d40face07b341.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.885000;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_dd7e3497ad8743cf5826a09f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000048;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_8c75017bb67ca3f010c28898.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.049000;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_6f425c519a922a83cd673183.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.984000;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_f5a02e683af14eb0f8dcadcf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.957000;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_fb76fbf5d3ecef40beb4b18c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000048;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_31c82a8cb8f87e30222b3d80.woff2')format("woff");}.fff{font-family:fff;line-height:0.984000;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_31c82a8cb8f87e30222b3d80.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.984000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls8{letter-spacing:-1.260000px;}
.ls7{letter-spacing:-0.420000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.059776px;}
.lsc{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.537980px;}
.ls2{letter-spacing:0.624664px;}
.ls1{letter-spacing:0.681451px;}
.ls9{letter-spacing:0.738239px;}
.ls3{letter-spacing:1.703628px;}
.ls6{letter-spacing:1.864996px;}
.lsb{letter-spacing:3.514800px;}
.lsa{letter-spacing:14.073000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws47{word-spacing:-15.000000px;}
.wsc2{word-spacing:-13.500000px;}
.wsd4{word-spacing:-7.870500px;}
.wsf7{word-spacing:-7.776000px;}
.ws59{word-spacing:-5.580000px;}
.wsf6{word-spacing:-4.536000px;}
.wsf0{word-spacing:-3.564000px;}
.wsaa{word-spacing:-3.360000px;}
.ws38{word-spacing:-3.294000px;}
.ws91{word-spacing:-2.940000px;}
.ws3b{word-spacing:-2.916000px;}
.ws58{word-spacing:-2.880000px;}
.wsc8{word-spacing:-2.700000px;}
.wsce{word-spacing:-2.646000px;}
.ws98{word-spacing:-2.640000px;}
.wscf{word-spacing:-2.592000px;}
.ws3c{word-spacing:-2.484000px;}
.ws57{word-spacing:-2.460000px;}
.ws56{word-spacing:-2.340000px;}
.wscb{word-spacing:-2.280000px;}
.ws55{word-spacing:-2.220000px;}
.ws40{word-spacing:-2.160000px;}
.ws8c{word-spacing:-2.100000px;}
.wsa2{word-spacing:-2.040000px;}
.wse0{word-spacing:-1.944000px;}
.ws5d{word-spacing:-1.920000px;}
.ws7f{word-spacing:-1.800000px;}
.ws4a{word-spacing:-1.740000px;}
.ws79{word-spacing:-1.680000px;}
.wsdd{word-spacing:-1.674000px;}
.wsc3{word-spacing:-1.620000px;}
.ws90{word-spacing:-1.560000px;}
.wsa1{word-spacing:-1.500000px;}
.ws9c{word-spacing:-1.440000px;}
.ws6f{word-spacing:-1.380000px;}
.ws92{word-spacing:-1.320000px;}
.ws8d{word-spacing:-1.260000px;}
.ws70{word-spacing:-1.200000px;}
.wsdc{word-spacing:-1.134000px;}
.ws34{word-spacing:-1.080000px;}
.wsca{word-spacing:-1.020000px;}
.ws5a{word-spacing:-0.960000px;}
.ws7a{word-spacing:-0.900000px;}
.wsbd{word-spacing:-0.840000px;}
.ws7c{word-spacing:-0.780000px;}
.ws39{word-spacing:-0.756000px;}
.ws8e{word-spacing:-0.720000px;}
.ws46{word-spacing:-0.660000px;}
.wsba{word-spacing:-0.600000px;}
.wsee{word-spacing:-0.594000px;}
.wsa5{word-spacing:-0.540000px;}
.ws62{word-spacing:-0.480000px;}
.ws93{word-spacing:-0.420000px;}
.ws65{word-spacing:-0.360000px;}
.wsb4{word-spacing:-0.300000px;}
.ws33{word-spacing:-0.270000px;}
.ws53{word-spacing:-0.180000px;}
.wsed{word-spacing:-0.162000px;}
.ws95{word-spacing:-0.120000px;}
.wsf8{word-spacing:-0.108000px;}
.ws7b{word-spacing:-0.060000px;}
.ws9{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.ws87{word-spacing:0.060000px;}
.ws71{word-spacing:0.120000px;}
.ws4d{word-spacing:0.180000px;}
.ws96{word-spacing:0.240000px;}
.wsde{word-spacing:0.270000px;}
.ws89{word-spacing:0.300000px;}
.wsf5{word-spacing:0.324000px;}
.ws49{word-spacing:0.420000px;}
.ws97{word-spacing:0.480000px;}
.wsc4{word-spacing:0.600000px;}
.wsc0{word-spacing:0.660000px;}
.ws4c{word-spacing:0.720000px;}
.ws78{word-spacing:0.780000px;}
.ws8b{word-spacing:0.840000px;}
.ws73{word-spacing:0.900000px;}
.ws7d{word-spacing:1.020000px;}
.wse1{word-spacing:1.026000px;}
.wsc9{word-spacing:1.080000px;}
.ws9f{word-spacing:1.140000px;}
.ws66{word-spacing:1.200000px;}
.ws9a{word-spacing:1.260000px;}
.ws4e{word-spacing:1.320000px;}
.wsef{word-spacing:1.350000px;}
.wsa7{word-spacing:1.380000px;}
.ws68{word-spacing:1.440000px;}
.wsb0{word-spacing:1.500000px;}
.ws3e{word-spacing:1.620000px;}
.wsd2{word-spacing:1.674000px;}
.ws61{word-spacing:1.680000px;}
.ws3a{word-spacing:1.782000px;}
.wsb2{word-spacing:1.800000px;}
.wse6{word-spacing:1.836000px;}
.ws6d{word-spacing:1.860000px;}
.ws63{word-spacing:1.980000px;}
.ws48{word-spacing:2.100000px;}
.ws9d{word-spacing:2.160000px;}
.ws5f{word-spacing:2.220000px;}
.ws94{word-spacing:2.280000px;}
.ws69{word-spacing:2.340000px;}
.ws8f{word-spacing:2.400000px;}
.ws80{word-spacing:2.460000px;}
.wsa9{word-spacing:2.520000px;}
.ws81{word-spacing:2.580000px;}
.ws84{word-spacing:2.640000px;}
.wse3{word-spacing:2.646000px;}
.ws5b{word-spacing:2.700000px;}
.wsd5{word-spacing:2.808000px;}
.ws7e{word-spacing:2.880000px;}
.wsd6{word-spacing:2.916000px;}
.wsa4{word-spacing:2.940000px;}
.wsaf{word-spacing:3.000000px;}
.ws99{word-spacing:3.120000px;}
.ws30{word-spacing:3.150000px;}
.ws3d{word-spacing:3.180000px;}
.ws4b{word-spacing:3.240000px;}
.ws54{word-spacing:3.300000px;}
.ws4f{word-spacing:3.360000px;}
.ws6b{word-spacing:3.420000px;}
.ws83{word-spacing:3.540000px;}
.wsb1{word-spacing:3.660000px;}
.wsdf{word-spacing:3.672000px;}
.ws8a{word-spacing:3.720000px;}
.wsd7{word-spacing:3.726000px;}
.ws75{word-spacing:3.780000px;}
.wsb5{word-spacing:3.840000px;}
.ws3f{word-spacing:3.960000px;}
.ws52{word-spacing:4.020000px;}
.ws36{word-spacing:4.050000px;}
.ws9e{word-spacing:4.080000px;}
.ws6a{word-spacing:4.140000px;}
.ws37{word-spacing:4.158000px;}
.ws72{word-spacing:4.200000px;}
.ws51{word-spacing:4.260000px;}
.wsd3{word-spacing:4.374000px;}
.wsab{word-spacing:4.380000px;}
.ws5e{word-spacing:4.440000px;}
.wse2{word-spacing:4.590000px;}
.wsa8{word-spacing:4.620000px;}
.wsb3{word-spacing:4.680000px;}
.wsbb{word-spacing:4.800000px;}
.ws76{word-spacing:4.860000px;}
.ws60{word-spacing:4.980000px;}
.ws74{word-spacing:5.100000px;}
.wsa0{word-spacing:5.160000px;}
.wsdb{word-spacing:5.238000px;}
.wsf3{word-spacing:5.292000px;}
.ws88{word-spacing:5.340000px;}
.wsb8{word-spacing:5.400000px;}
.ws64{word-spacing:5.460000px;}
.ws85{word-spacing:5.580000px;}
.ws42{word-spacing:5.640000px;}
.ws9b{word-spacing:5.760000px;}
.wsa3{word-spacing:6.000000px;}
.ws67{word-spacing:6.060000px;}
.wse5{word-spacing:6.156000px;}
.wsae{word-spacing:6.180000px;}
.wsf1{word-spacing:6.264000px;}
.ws50{word-spacing:6.300000px;}
.wsbe{word-spacing:6.360000px;}
.ws5c{word-spacing:6.480000px;}
.wseb{word-spacing:6.588000px;}
.wsac{word-spacing:6.600000px;}
.wsc1{word-spacing:6.660000px;}
.wsb7{word-spacing:6.720000px;}
.wsf4{word-spacing:6.750000px;}
.ws44{word-spacing:6.780000px;}
.wsc6{word-spacing:6.900000px;}
.ws86{word-spacing:6.960000px;}
.ws35{word-spacing:6.966000px;}
.ws6e{word-spacing:7.020000px;}
.wscc{word-spacing:7.236000px;}
.ws2a{word-spacing:7.238804px;}
.wsb6{word-spacing:7.260000px;}
.ws6c{word-spacing:7.320000px;}
.wsc7{word-spacing:7.380000px;}
.wsec{word-spacing:7.398000px;}
.wsb9{word-spacing:7.440000px;}
.ws45{word-spacing:7.560000px;}
.ws32{word-spacing:7.938000px;}
.wsa6{word-spacing:8.040000px;}
.ws43{word-spacing:8.340000px;}
.wsbc{word-spacing:8.400000px;}
.wse7{word-spacing:8.424000px;}
.wsc5{word-spacing:8.580000px;}
.wsbf{word-spacing:8.640000px;}
.wsad{word-spacing:8.880000px;}
.wsd8{word-spacing:9.450000px;}
.wscd{word-spacing:10.152000px;}
.wsd9{word-spacing:10.692000px;}
.ws41{word-spacing:10.860000px;}
.ws31{word-spacing:11.340000px;}
.ws2f{word-spacing:12.510997px;}
.wsd0{word-spacing:12.528000px;}
.wsd1{word-spacing:12.582000px;}
.ws2e{word-spacing:12.636526px;}
.ws2d{word-spacing:12.863903px;}
.ws2c{word-spacing:12.959545px;}
.ws77{word-spacing:12.960000px;}
.wse8{word-spacing:13.068000px;}
.wsea{word-spacing:13.662000px;}
.ws21{word-spacing:13.748388px;}
.ws10{word-spacing:14.083325px;}
.ws82{word-spacing:14.100000px;}
.wsf2{word-spacing:14.580000px;}
.ws26{word-spacing:14.585246px;}
.wse4{word-spacing:14.688000px;}
.ws20{word-spacing:15.183002px;}
.wsda{word-spacing:15.282000px;}
.ws6{word-spacing:15.355387px;}
.ws1c{word-spacing:15.481880px;}
.wsa{word-spacing:15.503015px;}
.ws8{word-spacing:15.637532px;}
.ws1d{word-spacing:15.960085px;}
.ws16{word-spacing:16.184466px;}
.ws1e{word-spacing:16.438290px;}
.ws28{word-spacing:17.155597px;}
.ws2b{word-spacing:17.538083px;}
.ws15{word-spacing:17.888094px;}
.wsb{word-spacing:18.001669px;}
.ws1a{word-spacing:18.455970px;}
.ws18{word-spacing:18.569545px;}
.ws11{word-spacing:18.649048px;}
.ws14{word-spacing:18.683120px;}
.wsd{word-spacing:18.711514px;}
.ws12{word-spacing:18.717193px;}
.ws19{word-spacing:18.739908px;}
.ws1f{word-spacing:18.769538px;}
.wse{word-spacing:18.802374px;}
.ws27{word-spacing:18.829314px;}
.ws17{word-spacing:18.910271px;}
.ws13{word-spacing:18.915950px;}
.wsf{word-spacing:19.080634px;}
.wsc{word-spacing:19.307784px;}
.ws4{word-spacing:19.725948px;}
.ws25{word-spacing:19.803656px;}
.ws22{word-spacing:19.809634px;}
.ws24{word-spacing:19.845499px;}
.ws5{word-spacing:19.905275px;}
.ws7{word-spacing:19.965050px;}
.wse9{word-spacing:20.304000px;}
.ws23{word-spacing:20.323704px;}
.ws29{word-spacing:23.233541px;}
.ws2{word-spacing:35.506944px;}
.ws3{word-spacing:35.614541px;}
.ws1b{word-spacing:59.835376px;}
._10{margin-left:-2058.546000px;}
._19{margin-left:-27.969600px;}
._16{margin-left:-24.706964px;}
._11{margin-left:-19.856400px;}
._15{margin-left:-14.460000px;}
._18{margin-left:-12.874800px;}
._b{margin-left:-10.458000px;}
._17{margin-left:-8.949600px;}
._e{margin-left:-7.560000px;}
._2{margin-left:-5.524800px;}
._12{margin-left:-4.508400px;}
._1{margin-left:-3.470400px;}
._c{margin-left:-2.199600px;}
._0{margin-left:-1.152000px;}
._5{width:1.078964px;}
._d{width:2.213236px;}
._14{width:4.675800px;}
._a{width:6.276420px;}
._13{width:8.295000px;}
._3{width:14.367263px;}
._9{width:15.664181px;}
._8{width:17.263430px;}
._4{width:19.307784px;}
._6{width:20.386748px;}
._7{width:21.772366px;}
._f{width:42.590400px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:31.482000px;}
.fsc{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:47.821200px;}
.fs5{font-size:48.000000px;}
.fsd{font-size:53.797800px;}
.fs6{font-size:54.000000px;}
.fsa{font-size:56.787600px;}
.fs8{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:71.730600px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs7{font-size:107.596800px;}
.fse{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y51{bottom:4.003500px;}
.y56{bottom:17.608800px;}
.y55{bottom:28.069500px;}
.y2c{bottom:47.850000px;}
.y6{bottom:50.595005px;}
.y2b{bottom:51.787650px;}
.y28{bottom:65.487600px;}
.y52{bottom:65.656950px;}
.y5{bottom:75.795004px;}
.y77{bottom:75.937650px;}
.y27{bottom:75.987600px;}
.y78{bottom:76.087500px;}
.y4{bottom:100.995005px;}
.y4f{bottom:112.804868px;}
.y2a{bottom:113.512650px;}
.ya8{bottom:113.535150px;}
.yd6{bottom:113.625000px;}
.y105{bottom:113.625150px;}
.y147{bottom:114.622500px;}
.y114{bottom:128.625150px;}
.y4e{bottom:129.213270px;}
.y146{bottom:129.622500px;}
.ya7{bottom:130.035150px;}
.yd5{bottom:130.125000px;}
.y104{bottom:130.125150px;}
.y24{bottom:139.264499px;}
.y113{bottom:143.625150px;}
.y145{bottom:144.622500px;}
.y4d{bottom:145.711336px;}
.ya6{bottom:146.535150px;}
.yd4{bottom:146.625000px;}
.y103{bottom:146.625150px;}
.y76{bottom:149.625150px;}
.y112{bottom:158.625150px;}
.y144{bottom:159.622500px;}
.y4c{bottom:162.119738px;}
.ya5{bottom:163.035150px;}
.yd3{bottom:163.125000px;}
.y102{bottom:163.125150px;}
.y75{bottom:166.125150px;}
.y111{bottom:173.625150px;}
.y143{bottom:174.622500px;}
.y4b{bottom:178.528140px;}
.ya4{bottom:179.535000px;}
.yd2{bottom:179.625000px;}
.y101{bottom:179.625150px;}
.y74{bottom:182.625150px;}
.y110{bottom:188.625150px;}
.y142{bottom:189.622500px;}
.y4a{bottom:195.026206px;}
.ya3{bottom:196.035000px;}
.yd1{bottom:196.125000px;}
.y100{bottom:196.125150px;}
.y1b{bottom:196.933500px;}
.y73{bottom:199.125150px;}
.y10f{bottom:203.625150px;}
.y141{bottom:204.622500px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y49{bottom:211.434608px;}
.ya2{bottom:212.535000px;}
.yd0{bottom:212.625000px;}
.yff{bottom:212.625150px;}
.y72{bottom:215.625150px;}
.y10e{bottom:218.625150px;}
.y140{bottom:219.622500px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.y48{bottom:227.843010px;}
.ya1{bottom:229.035000px;}
.ycf{bottom:229.125000px;}
.yfe{bottom:229.125150px;}
.y71{bottom:232.125150px;}
.y10d{bottom:233.625150px;}
.y13f{bottom:234.622500px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y47{bottom:244.251412px;}
.ya0{bottom:245.535000px;}
.yce{bottom:245.625000px;}
.y70{bottom:248.625150px;}
.y13e{bottom:249.622500px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y46{bottom:260.749478px;}
.y9f{bottom:262.035000px;}
.ycd{bottom:262.125000px;}
.yfd{bottom:262.125150px;}
.y10c{bottom:263.625150px;}
.y13d{bottom:264.622500px;}
.y6f{bottom:265.125150px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.y45{bottom:277.157880px;}
.y9e{bottom:278.535000px;}
.ycc{bottom:278.625000px;}
.y10b{bottom:278.625150px;}
.y13c{bottom:279.622500px;}
.y6e{bottom:281.625150px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.y44{bottom:293.566282px;}
.y10a{bottom:293.625150px;}
.y9d{bottom:295.035000px;}
.ycb{bottom:295.125000px;}
.yfc{bottom:295.125150px;}
.y6d{bottom:298.125150px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.y13b{bottom:311.122500px;}
.y9c{bottom:311.535000px;}
.yca{bottom:311.625000px;}
.yfb{bottom:311.625150px;}
.y6c{bottom:314.625150px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.y109{bottom:325.125150px;}
.y43{bottom:326.472750px;}
.y9b{bottom:328.035000px;}
.yc9{bottom:328.125000px;}
.yfa{bottom:328.125150px;}
.y9a{bottom:344.535000px;}
.yc8{bottom:344.625000px;}
.yf9{bottom:344.625150px;}
.y6b{bottom:347.625150px;}
.y12{bottom:348.133500px;}
.y99{bottom:361.035000px;}
.yc7{bottom:361.125000px;}
.yf8{bottom:361.125150px;}
.y6a{bottom:364.125150px;}
.y13a{bottom:368.122500px;}
.y42{bottom:375.809678px;}
.y98{bottom:377.535000px;}
.yc6{bottom:377.625000px;}
.yf7{bottom:377.625150px;}
.y139{bottom:383.122500px;}
.y11{bottom:386.785499px;}
.yd8{bottom:394.035000px;}
.yc5{bottom:394.125000px;}
.yf6{bottom:394.125150px;}
.y69{bottom:397.125150px;}
.y138{bottom:398.122500px;}
.y10{bottom:408.044999px;}
.y41{bottom:408.718093px;}
.y97{bottom:410.535000px;}
.yc4{bottom:410.625000px;}
.yf5{bottom:410.625150px;}
.y137{bottom:413.122500px;}
.y68{bottom:413.625150px;}
.y96{bottom:427.035000px;}
.yc3{bottom:427.125000px;}
.yf4{bottom:427.125150px;}
.y136{bottom:428.122500px;}
.y67{bottom:430.125150px;}
.y40{bottom:441.541325px;}
.y135{bottom:443.122500px;}
.yd7{bottom:443.535000px;}
.yc2{bottom:443.625000px;}
.yf3{bottom:443.625150px;}
.y66{bottom:446.625150px;}
.y3f{bottom:457.952942px;}
.y134{bottom:458.122500px;}
.y95{bottom:460.035000px;}
.yc1{bottom:460.125000px;}
.yf2{bottom:460.125150px;}
.y65{bottom:463.125150px;}
.yf{bottom:466.864502px;}
.y133{bottom:473.122500px;}
.y3e{bottom:474.449740px;}
.y94{bottom:476.535000px;}
.yc0{bottom:476.625000px;}
.yf1{bottom:476.625150px;}
.y64{bottom:479.625150px;}
.ye{bottom:484.864502px;}
.y132{bottom:488.122500px;}
.y3d{bottom:490.861356px;}
.y93{bottom:493.035000px;}
.ybf{bottom:493.125000px;}
.y108{bottom:493.125150px;}
.y63{bottom:496.125150px;}
.yd{bottom:502.864502px;}
.y131{bottom:503.122500px;}
.y3c{bottom:507.272972px;}
.y92{bottom:509.535000px;}
.ybe{bottom:509.625000px;}
.yf0{bottom:509.625150px;}
.y62{bottom:512.625150px;}
.y130{bottom:518.122500px;}
.yc{bottom:520.864502px;}
.y3b{bottom:523.769770px;}
.y91{bottom:526.035000px;}
.yef{bottom:526.125150px;}
.y61{bottom:529.125150px;}
.y12f{bottom:533.122500px;}
.yb{bottom:538.864499px;}
.y3a{bottom:540.181387px;}
.y90{bottom:542.535000px;}
.ybd{bottom:542.625000px;}
.y107{bottom:542.625150px;}
.y60{bottom:545.625150px;}
.y12e{bottom:548.122500px;}
.y39{bottom:556.593003px;}
.ya{bottom:556.864499px;}
.y8f{bottom:559.035000px;}
.ybc{bottom:559.125000px;}
.yee{bottom:559.125150px;}
.y5f{bottom:562.125150px;}
.y12d{bottom:563.122500px;}
.y38{bottom:573.089801px;}
.y8e{bottom:575.535000px;}
.ybb{bottom:575.625000px;}
.yed{bottom:575.625150px;}
.y12c{bottom:578.122500px;}
.y5e{bottom:578.625150px;}
.y37{bottom:589.501417px;}
.y8d{bottom:592.035000px;}
.yba{bottom:592.125000px;}
.yec{bottom:592.125150px;}
.y12b{bottom:593.122500px;}
.y5d{bottom:595.125150px;}
.y36{bottom:605.913034px;}
.y12a{bottom:608.122500px;}
.y8c{bottom:608.535000px;}
.yeb{bottom:608.625150px;}
.y35{bottom:622.324650px;}
.y129{bottom:623.122500px;}
.y8b{bottom:625.035000px;}
.yb9{bottom:625.125000px;}
.yea{bottom:625.125150px;}
.y128{bottom:638.122500px;}
.y8a{bottom:641.535000px;}
.yb8{bottom:641.625000px;}
.ye9{bottom:641.625150px;}
.y9{bottom:645.510000px;}
.y127{bottom:653.122500px;}
.y89{bottom:658.035000px;}
.yb7{bottom:658.125000px;}
.ye8{bottom:658.125150px;}
.y34{bottom:658.295114px;}
.y8{bottom:666.771000px;}
.y126{bottom:668.122500px;}
.y33{bottom:673.263150px;}
.y88{bottom:674.535000px;}
.yb6{bottom:674.625000px;}
.ye7{bottom:674.625150px;}
.y125{bottom:683.122500px;}
.y32{bottom:686.019000px;}
.y87{bottom:691.035000px;}
.yb5{bottom:691.125000px;}
.ye6{bottom:691.125150px;}
.y124{bottom:698.122500px;}
.y157{bottom:698.212500px;}
.y5c{bottom:705.375150px;}
.y86{bottom:707.535000px;}
.yb4{bottom:707.625000px;}
.ye5{bottom:707.625150px;}
.y123{bottom:713.122500px;}
.y156{bottom:713.212500px;}
.y31{bottom:718.844250px;}
.y85{bottom:724.035000px;}
.yb3{bottom:724.125000px;}
.ye4{bottom:724.125150px;}
.y7{bottom:726.298500px;}
.y122{bottom:728.122500px;}
.y155{bottom:728.212500px;}
.y30{bottom:731.600100px;}
.y84{bottom:740.535000px;}
.yb2{bottom:740.625000px;}
.ye3{bottom:740.625150px;}
.y121{bottom:743.122500px;}
.y154{bottom:743.212500px;}
.y3{bottom:752.599495px;}
.y83{bottom:757.035000px;}
.yb1{bottom:757.125000px;}
.ye2{bottom:757.125150px;}
.y120{bottom:758.122500px;}
.y153{bottom:758.212500px;}
.y5b{bottom:767.025150px;}
.y11f{bottom:773.122500px;}
.y152{bottom:773.212500px;}
.y82{bottom:773.535150px;}
.yb0{bottom:773.625000px;}
.ye1{bottom:773.625150px;}
.y2f{bottom:785.535704px;}
.y11e{bottom:788.122500px;}
.y151{bottom:788.212500px;}
.y81{bottom:790.035150px;}
.yaf{bottom:790.125000px;}
.ye0{bottom:790.125150px;}
.y5a{bottom:800.025150px;}
.y11d{bottom:803.122500px;}
.y150{bottom:803.212500px;}
.y80{bottom:806.535150px;}
.yae{bottom:806.625000px;}
.ydf{bottom:806.625150px;}
.y11c{bottom:818.122500px;}
.y14f{bottom:818.212500px;}
.y2e{bottom:818.352728px;}
.y7f{bottom:823.035150px;}
.yad{bottom:823.125000px;}
.yde{bottom:823.125150px;}
.y59{bottom:833.025150px;}
.y11b{bottom:833.122500px;}
.y14e{bottom:833.212500px;}
.y7e{bottom:839.535150px;}
.ydd{bottom:839.625150px;}
.y11a{bottom:848.122500px;}
.y14d{bottom:848.212500px;}
.y2d{bottom:851.250450px;}
.y7d{bottom:856.035150px;}
.yac{bottom:856.125000px;}
.ydc{bottom:856.125150px;}
.y119{bottom:863.122500px;}
.y14c{bottom:863.212500px;}
.y58{bottom:866.025150px;}
.y7c{bottom:872.535150px;}
.yab{bottom:872.625000px;}
.ydb{bottom:872.625150px;}
.y118{bottom:878.122500px;}
.y14b{bottom:878.212500px;}
.y2{bottom:879.369000px;}
.y7b{bottom:889.035150px;}
.yda{bottom:889.125150px;}
.y117{bottom:893.122500px;}
.y14a{bottom:893.212500px;}
.y57{bottom:899.025150px;}
.y54{bottom:899.636393px;}
.y7a{bottom:905.535150px;}
.yaa{bottom:905.625000px;}
.y106{bottom:905.625150px;}
.y116{bottom:908.122500px;}
.y149{bottom:908.212500px;}
.y53{bottom:913.074150px;}
.y79{bottom:922.035150px;}
.ya9{bottom:922.125000px;}
.yd9{bottom:922.125150px;}
.y115{bottom:923.122500px;}
.y148{bottom:923.212500px;}
.y26{bottom:947.400000px;}
.y50{bottom:947.940150px;}
.y25{bottom:960.900000px;}
.y1{bottom:966.726000px;}
.y29{bottom:995.400150px;}
.he{height:13.801500px;}
.hb{height:30.030000px;}
.h7{height:32.130000px;}
.h14{height:33.976354px;}
.ha{height:34.320000px;}
.h1a{height:34.620600px;}
.hd{height:38.610000px;}
.h1b{height:38.612571px;}
.h11{height:38.830814px;}
.h17{height:39.798000px;}
.h1c{height:40.491630px;}
.h12{height:40.605838px;}
.h19{height:42.900000px;}
.h18{height:42.902857px;}
.h15{height:43.683814px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h10{height:48.537787px;}
.hc{height:51.480000px;}
.h2{height:55.080000px;}
.h13{height:58.245247px;}
.h5{height:64.260000px;}
.hf{height:76.931712px;}
.h16{height:77.220000px;}
.h4{height:119.055004px;}
.h9{height:1058.250000px;}
.h8{height:1058.400000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:38.101500px;}
.w2{width:637.794021px;}
.w4{width:739.500000px;}
.w3{width:739.800000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:39.845100px;}
.x9{left:93.150000px;}
.xb{left:96.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:111.150000px;}
.xc{left:124.612500px;}
.x10{left:131.880000px;}
.x5{left:133.440000px;}
.x11{left:149.880000px;}
.x8{left:151.440000px;}
.x6{left:173.265000px;}
.x4{left:203.484001px;}
.xa{left:368.701800px;}
.xf{left:408.856800px;}
.x3{left:454.959000px;}
.xe{left:460.478400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls8{letter-spacing:-1.120000pt;}
.ls7{letter-spacing:-0.373333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.053134pt;}
.lsc{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.478205pt;}
.ls2{letter-spacing:0.555257pt;}
.ls1{letter-spacing:0.605734pt;}
.ls9{letter-spacing:0.656212pt;}
.ls3{letter-spacing:1.514336pt;}
.ls6{letter-spacing:1.657774pt;}
.lsb{letter-spacing:3.124267pt;}
.lsa{letter-spacing:12.509333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws47{word-spacing:-13.333333pt;}
.wsc2{word-spacing:-12.000000pt;}
.wsd4{word-spacing:-6.996000pt;}
.wsf7{word-spacing:-6.912000pt;}
.ws59{word-spacing:-4.960000pt;}
.wsf6{word-spacing:-4.032000pt;}
.wsf0{word-spacing:-3.168000pt;}
.wsaa{word-spacing:-2.986667pt;}
.ws38{word-spacing:-2.928000pt;}
.ws91{word-spacing:-2.613333pt;}
.ws3b{word-spacing:-2.592000pt;}
.ws58{word-spacing:-2.560000pt;}
.wsc8{word-spacing:-2.400000pt;}
.wsce{word-spacing:-2.352000pt;}
.ws98{word-spacing:-2.346667pt;}
.wscf{word-spacing:-2.304000pt;}
.ws3c{word-spacing:-2.208000pt;}
.ws57{word-spacing:-2.186667pt;}
.ws56{word-spacing:-2.080000pt;}
.wscb{word-spacing:-2.026667pt;}
.ws55{word-spacing:-1.973333pt;}
.ws40{word-spacing:-1.920000pt;}
.ws8c{word-spacing:-1.866667pt;}
.wsa2{word-spacing:-1.813333pt;}
.wse0{word-spacing:-1.728000pt;}
.ws5d{word-spacing:-1.706667pt;}
.ws7f{word-spacing:-1.600000pt;}
.ws4a{word-spacing:-1.546667pt;}
.ws79{word-spacing:-1.493333pt;}
.wsdd{word-spacing:-1.488000pt;}
.wsc3{word-spacing:-1.440000pt;}
.ws90{word-spacing:-1.386667pt;}
.wsa1{word-spacing:-1.333333pt;}
.ws9c{word-spacing:-1.280000pt;}
.ws6f{word-spacing:-1.226667pt;}
.ws92{word-spacing:-1.173333pt;}
.ws8d{word-spacing:-1.120000pt;}
.ws70{word-spacing:-1.066667pt;}
.wsdc{word-spacing:-1.008000pt;}
.ws34{word-spacing:-0.960000pt;}
.wsca{word-spacing:-0.906667pt;}
.ws5a{word-spacing:-0.853333pt;}
.ws7a{word-spacing:-0.800000pt;}
.wsbd{word-spacing:-0.746667pt;}
.ws7c{word-spacing:-0.693333pt;}
.ws39{word-spacing:-0.672000pt;}
.ws8e{word-spacing:-0.640000pt;}
.ws46{word-spacing:-0.586667pt;}
.wsba{word-spacing:-0.533333pt;}
.wsee{word-spacing:-0.528000pt;}
.wsa5{word-spacing:-0.480000pt;}
.ws62{word-spacing:-0.426667pt;}
.ws93{word-spacing:-0.373333pt;}
.ws65{word-spacing:-0.320000pt;}
.wsb4{word-spacing:-0.266667pt;}
.ws33{word-spacing:-0.240000pt;}
.ws53{word-spacing:-0.160000pt;}
.wsed{word-spacing:-0.144000pt;}
.ws95{word-spacing:-0.106667pt;}
.wsf8{word-spacing:-0.096000pt;}
.ws7b{word-spacing:-0.053333pt;}
.ws9{word-spacing:-0.042508pt;}
.ws0{word-spacing:0.000000pt;}
.ws87{word-spacing:0.053333pt;}
.ws71{word-spacing:0.106667pt;}
.ws4d{word-spacing:0.160000pt;}
.ws96{word-spacing:0.213333pt;}
.wsde{word-spacing:0.240000pt;}
.ws89{word-spacing:0.266667pt;}
.wsf5{word-spacing:0.288000pt;}
.ws49{word-spacing:0.373333pt;}
.ws97{word-spacing:0.426667pt;}
.wsc4{word-spacing:0.533333pt;}
.wsc0{word-spacing:0.586667pt;}
.ws4c{word-spacing:0.640000pt;}
.ws78{word-spacing:0.693333pt;}
.ws8b{word-spacing:0.746667pt;}
.ws73{word-spacing:0.800000pt;}
.ws7d{word-spacing:0.906667pt;}
.wse1{word-spacing:0.912000pt;}
.wsc9{word-spacing:0.960000pt;}
.ws9f{word-spacing:1.013333pt;}
.ws66{word-spacing:1.066667pt;}
.ws9a{word-spacing:1.120000pt;}
.ws4e{word-spacing:1.173333pt;}
.wsef{word-spacing:1.200000pt;}
.wsa7{word-spacing:1.226667pt;}
.ws68{word-spacing:1.280000pt;}
.wsb0{word-spacing:1.333333pt;}
.ws3e{word-spacing:1.440000pt;}
.wsd2{word-spacing:1.488000pt;}
.ws61{word-spacing:1.493333pt;}
.ws3a{word-spacing:1.584000pt;}
.wsb2{word-spacing:1.600000pt;}
.wse6{word-spacing:1.632000pt;}
.ws6d{word-spacing:1.653333pt;}
.ws63{word-spacing:1.760000pt;}
.ws48{word-spacing:1.866667pt;}
.ws9d{word-spacing:1.920000pt;}
.ws5f{word-spacing:1.973333pt;}
.ws94{word-spacing:2.026667pt;}
.ws69{word-spacing:2.080000pt;}
.ws8f{word-spacing:2.133333pt;}
.ws80{word-spacing:2.186667pt;}
.wsa9{word-spacing:2.240000pt;}
.ws81{word-spacing:2.293333pt;}
.ws84{word-spacing:2.346667pt;}
.wse3{word-spacing:2.352000pt;}
.ws5b{word-spacing:2.400000pt;}
.wsd5{word-spacing:2.496000pt;}
.ws7e{word-spacing:2.560000pt;}
.wsd6{word-spacing:2.592000pt;}
.wsa4{word-spacing:2.613333pt;}
.wsaf{word-spacing:2.666667pt;}
.ws99{word-spacing:2.773333pt;}
.ws30{word-spacing:2.800000pt;}
.ws3d{word-spacing:2.826667pt;}
.ws4b{word-spacing:2.880000pt;}
.ws54{word-spacing:2.933333pt;}
.ws4f{word-spacing:2.986667pt;}
.ws6b{word-spacing:3.040000pt;}
.ws83{word-spacing:3.146667pt;}
.wsb1{word-spacing:3.253333pt;}
.wsdf{word-spacing:3.264000pt;}
.ws8a{word-spacing:3.306667pt;}
.wsd7{word-spacing:3.312000pt;}
.ws75{word-spacing:3.360000pt;}
.wsb5{word-spacing:3.413333pt;}
.ws3f{word-spacing:3.520000pt;}
.ws52{word-spacing:3.573333pt;}
.ws36{word-spacing:3.600000pt;}
.ws9e{word-spacing:3.626667pt;}
.ws6a{word-spacing:3.680000pt;}
.ws37{word-spacing:3.696000pt;}
.ws72{word-spacing:3.733333pt;}
.ws51{word-spacing:3.786667pt;}
.wsd3{word-spacing:3.888000pt;}
.wsab{word-spacing:3.893333pt;}
.ws5e{word-spacing:3.946667pt;}
.wse2{word-spacing:4.080000pt;}
.wsa8{word-spacing:4.106667pt;}
.wsb3{word-spacing:4.160000pt;}
.wsbb{word-spacing:4.266667pt;}
.ws76{word-spacing:4.320000pt;}
.ws60{word-spacing:4.426667pt;}
.ws74{word-spacing:4.533333pt;}
.wsa0{word-spacing:4.586667pt;}
.wsdb{word-spacing:4.656000pt;}
.wsf3{word-spacing:4.704000pt;}
.ws88{word-spacing:4.746667pt;}
.wsb8{word-spacing:4.800000pt;}
.ws64{word-spacing:4.853333pt;}
.ws85{word-spacing:4.960000pt;}
.ws42{word-spacing:5.013333pt;}
.ws9b{word-spacing:5.120000pt;}
.wsa3{word-spacing:5.333333pt;}
.ws67{word-spacing:5.386667pt;}
.wse5{word-spacing:5.472000pt;}
.wsae{word-spacing:5.493333pt;}
.wsf1{word-spacing:5.568000pt;}
.ws50{word-spacing:5.600000pt;}
.wsbe{word-spacing:5.653333pt;}
.ws5c{word-spacing:5.760000pt;}
.wseb{word-spacing:5.856000pt;}
.wsac{word-spacing:5.866667pt;}
.wsc1{word-spacing:5.920000pt;}
.wsb7{word-spacing:5.973333pt;}
.wsf4{word-spacing:6.000000pt;}
.ws44{word-spacing:6.026667pt;}
.wsc6{word-spacing:6.133333pt;}
.ws86{word-spacing:6.186667pt;}
.ws35{word-spacing:6.192000pt;}
.ws6e{word-spacing:6.240000pt;}
.wscc{word-spacing:6.432000pt;}
.ws2a{word-spacing:6.434493pt;}
.wsb6{word-spacing:6.453333pt;}
.ws6c{word-spacing:6.506667pt;}
.wsc7{word-spacing:6.560000pt;}
.wsec{word-spacing:6.576000pt;}
.wsb9{word-spacing:6.613333pt;}
.ws45{word-spacing:6.720000pt;}
.ws32{word-spacing:7.056000pt;}
.wsa6{word-spacing:7.146667pt;}
.ws43{word-spacing:7.413333pt;}
.wsbc{word-spacing:7.466667pt;}
.wse7{word-spacing:7.488000pt;}
.wsc5{word-spacing:7.626667pt;}
.wsbf{word-spacing:7.680000pt;}
.wsad{word-spacing:7.893333pt;}
.wsd8{word-spacing:8.400000pt;}
.wscd{word-spacing:9.024000pt;}
.wsd9{word-spacing:9.504000pt;}
.ws41{word-spacing:9.653333pt;}
.ws31{word-spacing:10.080000pt;}
.ws2f{word-spacing:11.120886pt;}
.wsd0{word-spacing:11.136000pt;}
.wsd1{word-spacing:11.184000pt;}
.ws2e{word-spacing:11.232467pt;}
.ws2d{word-spacing:11.434580pt;}
.ws2c{word-spacing:11.519596pt;}
.ws77{word-spacing:11.520000pt;}
.wse8{word-spacing:11.616000pt;}
.wsea{word-spacing:12.144000pt;}
.ws21{word-spacing:12.220789pt;}
.ws10{word-spacing:12.518511pt;}
.ws82{word-spacing:12.533333pt;}
.wsf2{word-spacing:12.960000pt;}
.ws26{word-spacing:12.964663pt;}
.wse4{word-spacing:13.056000pt;}
.ws20{word-spacing:13.496002pt;}
.wsda{word-spacing:13.584000pt;}
.ws6{word-spacing:13.649233pt;}
.ws1c{word-spacing:13.761671pt;}
.wsa{word-spacing:13.780458pt;}
.ws8{word-spacing:13.900029pt;}
.ws1d{word-spacing:14.186742pt;}
.ws16{word-spacing:14.386192pt;}
.ws1e{word-spacing:14.611813pt;}
.ws28{word-spacing:15.249420pt;}
.ws2b{word-spacing:15.589407pt;}
.ws15{word-spacing:15.900528pt;}
.wsb{word-spacing:16.001484pt;}
.ws1a{word-spacing:16.405307pt;}
.ws18{word-spacing:16.506262pt;}
.ws11{word-spacing:16.576931pt;}
.ws14{word-spacing:16.607218pt;}
.wsd{word-spacing:16.632457pt;}
.ws12{word-spacing:16.637505pt;}
.ws19{word-spacing:16.657696pt;}
.ws1f{word-spacing:16.684034pt;}
.wse{word-spacing:16.713222pt;}
.ws27{word-spacing:16.737168pt;}
.ws17{word-spacing:16.809130pt;}
.ws13{word-spacing:16.814177pt;}
.wsf{word-spacing:16.960563pt;}
.wsc{word-spacing:17.162475pt;}
.ws4{word-spacing:17.534176pt;}
.ws25{word-spacing:17.603250pt;}
.ws22{word-spacing:17.608563pt;}
.ws24{word-spacing:17.640444pt;}
.ws5{word-spacing:17.693578pt;}
.ws7{word-spacing:17.746711pt;}
.wse9{word-spacing:18.048000pt;}
.ws23{word-spacing:18.065515pt;}
.ws29{word-spacing:20.652037pt;}
.ws2{word-spacing:31.561728pt;}
.ws3{word-spacing:31.657370pt;}
.ws1b{word-spacing:53.187001pt;}
._10{margin-left:-1829.818667pt;}
._19{margin-left:-24.861867pt;}
._16{margin-left:-21.961746pt;}
._11{margin-left:-17.650133pt;}
._15{margin-left:-12.853333pt;}
._18{margin-left:-11.444267pt;}
._b{margin-left:-9.296000pt;}
._17{margin-left:-7.955200pt;}
._e{margin-left:-6.720000pt;}
._2{margin-left:-4.910933pt;}
._12{margin-left:-4.007467pt;}
._1{margin-left:-3.084800pt;}
._c{margin-left:-1.955200pt;}
._0{margin-left:-1.024000pt;}
._5{width:0.959079pt;}
._d{width:1.967321pt;}
._14{width:4.156267pt;}
._a{width:5.579040pt;}
._13{width:7.373333pt;}
._3{width:12.770900pt;}
._9{width:13.923717pt;}
._8{width:15.345271pt;}
._4{width:17.162475pt;}
._6{width:18.121554pt;}
._7{width:19.353214pt;}
._f{width:37.858133pt;}
.fsf{font-size:27.984000pt;}
.fsc{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.507733pt;}
.fs5{font-size:42.666667pt;}
.fsd{font-size:47.820267pt;}
.fs6{font-size:48.000000pt;}
.fsa{font-size:50.477867pt;}
.fs8{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:63.760533pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs7{font-size:95.641600pt;}
.fse{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:3.558667pt;}
.y56{bottom:15.652267pt;}
.y55{bottom:24.950667pt;}
.y2c{bottom:42.533333pt;}
.y6{bottom:44.973338pt;}
.y2b{bottom:46.033467pt;}
.y28{bottom:58.211200pt;}
.y52{bottom:58.361733pt;}
.y5{bottom:67.373337pt;}
.y77{bottom:67.500133pt;}
.y27{bottom:67.544533pt;}
.y78{bottom:67.633333pt;}
.y4{bottom:89.773337pt;}
.y4f{bottom:100.270994pt;}
.y2a{bottom:100.900133pt;}
.ya8{bottom:100.920133pt;}
.yd6{bottom:101.000000pt;}
.y105{bottom:101.000133pt;}
.y147{bottom:101.886667pt;}
.y114{bottom:114.333467pt;}
.y4e{bottom:114.856240pt;}
.y146{bottom:115.220000pt;}
.ya7{bottom:115.586800pt;}
.yd5{bottom:115.666667pt;}
.y104{bottom:115.666800pt;}
.y24{bottom:123.790666pt;}
.y113{bottom:127.666800pt;}
.y145{bottom:128.553333pt;}
.y4d{bottom:129.521187pt;}
.ya6{bottom:130.253467pt;}
.yd4{bottom:130.333333pt;}
.y103{bottom:130.333467pt;}
.y76{bottom:133.000133pt;}
.y112{bottom:141.000133pt;}
.y144{bottom:141.886667pt;}
.y4c{bottom:144.106434pt;}
.ya5{bottom:144.920133pt;}
.yd3{bottom:145.000000pt;}
.y102{bottom:145.000133pt;}
.y75{bottom:147.666800pt;}
.y111{bottom:154.333467pt;}
.y143{bottom:155.220000pt;}
.y4b{bottom:158.691680pt;}
.ya4{bottom:159.586667pt;}
.yd2{bottom:159.666667pt;}
.y101{bottom:159.666800pt;}
.y74{bottom:162.333467pt;}
.y110{bottom:167.666800pt;}
.y142{bottom:168.553333pt;}
.y4a{bottom:173.356627pt;}
.ya3{bottom:174.253333pt;}
.yd1{bottom:174.333333pt;}
.y100{bottom:174.333467pt;}
.y1b{bottom:175.052000pt;}
.y73{bottom:177.000133pt;}
.y10f{bottom:181.000133pt;}
.y141{bottom:181.886667pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y49{bottom:187.941874pt;}
.ya2{bottom:188.920000pt;}
.yd0{bottom:189.000000pt;}
.yff{bottom:189.000133pt;}
.y72{bottom:191.666800pt;}
.y10e{bottom:194.333467pt;}
.y140{bottom:195.220000pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.y48{bottom:202.527120pt;}
.ya1{bottom:203.586667pt;}
.ycf{bottom:203.666667pt;}
.yfe{bottom:203.666800pt;}
.y71{bottom:206.333467pt;}
.y10d{bottom:207.666800pt;}
.y13f{bottom:208.553333pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y47{bottom:217.112366pt;}
.ya0{bottom:218.253333pt;}
.yce{bottom:218.333333pt;}
.y70{bottom:221.000133pt;}
.y13e{bottom:221.886667pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y46{bottom:231.777314pt;}
.y9f{bottom:232.920000pt;}
.ycd{bottom:233.000000pt;}
.yfd{bottom:233.000133pt;}
.y10c{bottom:234.333467pt;}
.y13d{bottom:235.220000pt;}
.y6f{bottom:235.666800pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.y45{bottom:246.362560pt;}
.y9e{bottom:247.586667pt;}
.ycc{bottom:247.666667pt;}
.y10b{bottom:247.666800pt;}
.y13c{bottom:248.553333pt;}
.y6e{bottom:250.333467pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.y44{bottom:260.947806pt;}
.y10a{bottom:261.000133pt;}
.y9d{bottom:262.253333pt;}
.ycb{bottom:262.333333pt;}
.yfc{bottom:262.333467pt;}
.y6d{bottom:265.000133pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.y13b{bottom:276.553333pt;}
.y9c{bottom:276.920000pt;}
.yca{bottom:277.000000pt;}
.yfb{bottom:277.000133pt;}
.y6c{bottom:279.666800pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.y109{bottom:289.000133pt;}
.y43{bottom:290.198000pt;}
.y9b{bottom:291.586667pt;}
.yc9{bottom:291.666667pt;}
.yfa{bottom:291.666800pt;}
.y9a{bottom:306.253333pt;}
.yc8{bottom:306.333333pt;}
.yf9{bottom:306.333467pt;}
.y6b{bottom:309.000133pt;}
.y12{bottom:309.452000pt;}
.y99{bottom:320.920000pt;}
.yc7{bottom:321.000000pt;}
.yf8{bottom:321.000133pt;}
.y6a{bottom:323.666800pt;}
.y13a{bottom:327.220000pt;}
.y42{bottom:334.053047pt;}
.y98{bottom:335.586667pt;}
.yc6{bottom:335.666667pt;}
.yf7{bottom:335.666800pt;}
.y139{bottom:340.553333pt;}
.y11{bottom:343.809333pt;}
.yd8{bottom:350.253333pt;}
.yc5{bottom:350.333333pt;}
.yf6{bottom:350.333467pt;}
.y69{bottom:353.000133pt;}
.y138{bottom:353.886667pt;}
.y10{bottom:362.706666pt;}
.y41{bottom:363.304971pt;}
.y97{bottom:364.920000pt;}
.yc4{bottom:365.000000pt;}
.yf5{bottom:365.000133pt;}
.y137{bottom:367.220000pt;}
.y68{bottom:367.666800pt;}
.y96{bottom:379.586667pt;}
.yc3{bottom:379.666667pt;}
.yf4{bottom:379.666800pt;}
.y136{bottom:380.553333pt;}
.y67{bottom:382.333467pt;}
.y40{bottom:392.481178pt;}
.y135{bottom:393.886667pt;}
.yd7{bottom:394.253333pt;}
.yc2{bottom:394.333333pt;}
.yf3{bottom:394.333467pt;}
.y66{bottom:397.000133pt;}
.y3f{bottom:407.069282pt;}
.y134{bottom:407.220000pt;}
.y95{bottom:408.920000pt;}
.yc1{bottom:409.000000pt;}
.yf2{bottom:409.000133pt;}
.y65{bottom:411.666800pt;}
.yf{bottom:414.990669pt;}
.y133{bottom:420.553333pt;}
.y3e{bottom:421.733102pt;}
.y94{bottom:423.586667pt;}
.yc0{bottom:423.666667pt;}
.yf1{bottom:423.666800pt;}
.y64{bottom:426.333467pt;}
.ye{bottom:430.990669pt;}
.y132{bottom:433.886667pt;}
.y3d{bottom:436.321205pt;}
.y93{bottom:438.253333pt;}
.ybf{bottom:438.333333pt;}
.y108{bottom:438.333467pt;}
.y63{bottom:441.000133pt;}
.yd{bottom:446.990669pt;}
.y131{bottom:447.220000pt;}
.y3c{bottom:450.909309pt;}
.y92{bottom:452.920000pt;}
.ybe{bottom:453.000000pt;}
.yf0{bottom:453.000133pt;}
.y62{bottom:455.666800pt;}
.y130{bottom:460.553333pt;}
.yc{bottom:462.990669pt;}
.y3b{bottom:465.573129pt;}
.y91{bottom:467.586667pt;}
.yef{bottom:467.666800pt;}
.y61{bottom:470.333467pt;}
.y12f{bottom:473.886667pt;}
.yb{bottom:478.990666pt;}
.y3a{bottom:480.161233pt;}
.y90{bottom:482.253333pt;}
.ybd{bottom:482.333333pt;}
.y107{bottom:482.333467pt;}
.y60{bottom:485.000133pt;}
.y12e{bottom:487.220000pt;}
.y39{bottom:494.749336pt;}
.ya{bottom:494.990666pt;}
.y8f{bottom:496.920000pt;}
.ybc{bottom:497.000000pt;}
.yee{bottom:497.000133pt;}
.y5f{bottom:499.666800pt;}
.y12d{bottom:500.553333pt;}
.y38{bottom:509.413156pt;}
.y8e{bottom:511.586667pt;}
.ybb{bottom:511.666667pt;}
.yed{bottom:511.666800pt;}
.y12c{bottom:513.886667pt;}
.y5e{bottom:514.333467pt;}
.y37{bottom:524.001260pt;}
.y8d{bottom:526.253333pt;}
.yba{bottom:526.333333pt;}
.yec{bottom:526.333467pt;}
.y12b{bottom:527.220000pt;}
.y5d{bottom:529.000133pt;}
.y36{bottom:538.589363pt;}
.y12a{bottom:540.553333pt;}
.y8c{bottom:540.920000pt;}
.yeb{bottom:541.000133pt;}
.y35{bottom:553.177467pt;}
.y129{bottom:553.886667pt;}
.y8b{bottom:555.586667pt;}
.yb9{bottom:555.666667pt;}
.yea{bottom:555.666800pt;}
.y128{bottom:567.220000pt;}
.y8a{bottom:570.253333pt;}
.yb8{bottom:570.333333pt;}
.ye9{bottom:570.333467pt;}
.y9{bottom:573.786667pt;}
.y127{bottom:580.553333pt;}
.y89{bottom:584.920000pt;}
.yb7{bottom:585.000000pt;}
.ye8{bottom:585.000133pt;}
.y34{bottom:585.151213pt;}
.y8{bottom:592.685334pt;}
.y126{bottom:593.886667pt;}
.y33{bottom:598.456133pt;}
.y88{bottom:599.586667pt;}
.yb6{bottom:599.666667pt;}
.ye7{bottom:599.666800pt;}
.y125{bottom:607.220000pt;}
.y32{bottom:609.794667pt;}
.y87{bottom:614.253333pt;}
.yb5{bottom:614.333333pt;}
.ye6{bottom:614.333467pt;}
.y124{bottom:620.553333pt;}
.y157{bottom:620.633333pt;}
.y5c{bottom:627.000133pt;}
.y86{bottom:628.920000pt;}
.yb4{bottom:629.000000pt;}
.ye5{bottom:629.000133pt;}
.y123{bottom:633.886667pt;}
.y156{bottom:633.966667pt;}
.y31{bottom:638.972667pt;}
.y85{bottom:643.586667pt;}
.yb3{bottom:643.666667pt;}
.ye4{bottom:643.666800pt;}
.y7{bottom:645.598667pt;}
.y122{bottom:647.220000pt;}
.y155{bottom:647.300000pt;}
.y30{bottom:650.311200pt;}
.y84{bottom:658.253333pt;}
.yb2{bottom:658.333333pt;}
.ye3{bottom:658.333467pt;}
.y121{bottom:660.553333pt;}
.y154{bottom:660.633333pt;}
.y3{bottom:668.977329pt;}
.y83{bottom:672.920000pt;}
.yb1{bottom:673.000000pt;}
.ye2{bottom:673.000133pt;}
.y120{bottom:673.886667pt;}
.y153{bottom:673.966667pt;}
.y5b{bottom:681.800133pt;}
.y11f{bottom:687.220000pt;}
.y152{bottom:687.300000pt;}
.y82{bottom:687.586800pt;}
.yb0{bottom:687.666667pt;}
.ye1{bottom:687.666800pt;}
.y2f{bottom:698.253959pt;}
.y11e{bottom:700.553333pt;}
.y151{bottom:700.633333pt;}
.y81{bottom:702.253467pt;}
.yaf{bottom:702.333333pt;}
.ye0{bottom:702.333467pt;}
.y5a{bottom:711.133467pt;}
.y11d{bottom:713.886667pt;}
.y150{bottom:713.966667pt;}
.y80{bottom:716.920133pt;}
.yae{bottom:717.000000pt;}
.ydf{bottom:717.000133pt;}
.y11c{bottom:727.220000pt;}
.y14f{bottom:727.300000pt;}
.y2e{bottom:727.424647pt;}
.y7f{bottom:731.586800pt;}
.yad{bottom:731.666667pt;}
.yde{bottom:731.666800pt;}
.y59{bottom:740.466800pt;}
.y11b{bottom:740.553333pt;}
.y14e{bottom:740.633333pt;}
.y7e{bottom:746.253467pt;}
.ydd{bottom:746.333467pt;}
.y11a{bottom:753.886667pt;}
.y14d{bottom:753.966667pt;}
.y2d{bottom:756.667067pt;}
.y7d{bottom:760.920133pt;}
.yac{bottom:761.000000pt;}
.ydc{bottom:761.000133pt;}
.y119{bottom:767.220000pt;}
.y14c{bottom:767.300000pt;}
.y58{bottom:769.800133pt;}
.y7c{bottom:775.586800pt;}
.yab{bottom:775.666667pt;}
.ydb{bottom:775.666800pt;}
.y118{bottom:780.553333pt;}
.y14b{bottom:780.633333pt;}
.y2{bottom:781.661334pt;}
.y7b{bottom:790.253467pt;}
.yda{bottom:790.333467pt;}
.y117{bottom:793.886667pt;}
.y14a{bottom:793.966667pt;}
.y57{bottom:799.133467pt;}
.y54{bottom:799.676794pt;}
.y7a{bottom:804.920133pt;}
.yaa{bottom:805.000000pt;}
.y106{bottom:805.000133pt;}
.y116{bottom:807.220000pt;}
.y149{bottom:807.300000pt;}
.y53{bottom:811.621467pt;}
.y79{bottom:819.586800pt;}
.ya9{bottom:819.666667pt;}
.yd9{bottom:819.666800pt;}
.y115{bottom:820.553333pt;}
.y148{bottom:820.633333pt;}
.y26{bottom:842.133333pt;}
.y50{bottom:842.613467pt;}
.y25{bottom:854.133333pt;}
.y1{bottom:859.312000pt;}
.y29{bottom:884.800133pt;}
.he{height:12.268000pt;}
.hb{height:26.693333pt;}
.h7{height:28.560000pt;}
.h14{height:30.201203pt;}
.ha{height:30.506667pt;}
.h1a{height:30.773867pt;}
.hd{height:34.320000pt;}
.h1b{height:34.322286pt;}
.h11{height:34.516279pt;}
.h17{height:35.376000pt;}
.h1c{height:35.992560pt;}
.h12{height:36.094078pt;}
.h19{height:38.133333pt;}
.h18{height:38.135873pt;}
.h15{height:38.830057pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h10{height:43.144700pt;}
.hc{height:45.760000pt;}
.h2{height:48.960000pt;}
.h13{height:51.773553pt;}
.h5{height:57.120000pt;}
.hf{height:68.383744pt;}
.h16{height:68.640000pt;}
.h4{height:105.826671pt;}
.h9{height:940.666667pt;}
.h8{height:940.800000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:33.868000pt;}
.w2{width:566.928019pt;}
.w4{width:657.333333pt;}
.w3{width:657.600000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:35.417867pt;}
.x9{left:82.800000pt;}
.xb{left:85.333333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:98.800000pt;}
.xc{left:110.766667pt;}
.x10{left:117.226667pt;}
.x5{left:118.613333pt;}
.x11{left:133.226667pt;}
.x8{left:134.613333pt;}
.x6{left:154.013333pt;}
.x4{left:180.874667pt;}
.xa{left:327.734933pt;}
.xf{left:363.428267pt;}
.x3{left:404.408000pt;}
.xe{left:409.314133pt;}
}




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