
    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_f36a484b0e5f24f14beacb06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_a0c8590661b6e7b5b8ab6d3f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_12ecde5d3041777383835b7e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_e23ab7935e66e75d64139158.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_05941f5e595cd3c9767dd0a1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_64fe89971a44cd973b9453a2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_101912e4aaa89a86cb6075b8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_21444a1dc30f3d47cc003135.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_8788aafcbfa955b178b74f16.woff')format("woff");}.ffa{font-family:ffa;line-height:0.965820;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_c5d712999286e55c2b68779e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.940430;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_4f17cdf433d75e79d35eae2f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_746ff56c0c21535e1d1603ef.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_776536873da45d9345e63469.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_bd74eb213c419bf73f90cf3c.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;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;}
.m3{transform:matrix(0.000000,-0.249308,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249308,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249308,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249264,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249264,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249264,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.172187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172187,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.172187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172187,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.172788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172788,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.232972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232972,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.235757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235757,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.244956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244956,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(0.250694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.276636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276636,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:27.360000px;}
.ls2d{letter-spacing:-2.403300px;}
.ls30{letter-spacing:-2.012793px;}
.ls1a{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-0.936000px;}
.ls19{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.252000px;}
.ls1d{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.504000px;}
.ls28{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.792000px;}
.ls1c{letter-spacing:0.864000px;}
.ls20{letter-spacing:0.972000px;}
.ls26{letter-spacing:1.008000px;}
.ls13{letter-spacing:1.044000px;}
.ls15{letter-spacing:1.152000px;}
.ls1f{letter-spacing:1.584000px;}
.ls16{letter-spacing:2.160000px;}
.ls33{letter-spacing:2.880000px;}
.ls0{letter-spacing:3.600000px;}
.ls25{letter-spacing:4.320000px;}
.ls27{letter-spacing:7.920000px;}
.ls22{letter-spacing:9.360000px;}
.ls23{letter-spacing:13.680000px;}
.ls21{letter-spacing:14.400000px;}
.ls14{letter-spacing:15.120000px;}
.ls1e{letter-spacing:16.560000px;}
.ls34{letter-spacing:17.424000px;}
.ls17{letter-spacing:18.000000px;}
.ls6{letter-spacing:24.480000px;}
.ls2{letter-spacing:27.360000px;}
.ls2b{letter-spacing:53.424000px;}
.ls2e{letter-spacing:143.386480px;}
.ls2c{letter-spacing:151.081524px;}
.ls31{letter-spacing:152.459684px;}
.ls2f{letter-spacing:189.267656px;}
.ls32{letter-spacing:209.217943px;}
.ls2a{letter-spacing:216.000000px;}
.ls29{letter-spacing:226.800000px;}
.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;}
}
.ws13{word-spacing:-19.584000px;}
.wse{word-spacing:-19.152000px;}
.ws12{word-spacing:-18.864000px;}
.ws4{word-spacing:-18.792000px;}
.wsd{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.504000px;}
.wsa{word-spacing:-18.432000px;}
.ws10{word-spacing:-18.360000px;}
.ws11{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.496000px;}
.wsf{word-spacing:-17.280000px;}
.ws17{word-spacing:-17.220964px;}
.ws8{word-spacing:-17.064000px;}
.ws15{word-spacing:-16.910126px;}
.ws14{word-spacing:-16.863344px;}
.ws0{word-spacing:-16.560000px;}
.ws18{word-spacing:-0.058602px;}
.ws16{word-spacing:-0.057554px;}
.ws1a{word-spacing:-0.045620px;}
.ws1b{word-spacing:-0.045530px;}
.ws2{word-spacing:0.000000px;}
.ws19{word-spacing:139.832609px;}
._2e{margin-left:-579.348721px;}
._2d{margin-left:-574.987817px;}
._2b{margin-left:-515.249919px;}
._2c{margin-left:-511.260320px;}
._30{margin-left:-216.227401px;}
._2f{margin-left:-202.690554px;}
._28{margin-left:-5.797152px;}
._2a{margin-left:-4.792797px;}
._29{margin-left:-3.591563px;}
._15{margin-left:-2.088000px;}
._1{margin-left:-1.008000px;}
._0{width:1.224000px;}
._5{width:2.328000px;}
._11{width:3.432000px;}
._20{width:4.608000px;}
._8{width:5.808000px;}
._10{width:6.864000px;}
._b{width:8.712000px;}
._4{width:10.368000px;}
._6{width:11.880000px;}
._7{width:13.104000px;}
._a{width:14.256000px;}
._9{width:15.264000px;}
._1a{width:16.416000px;}
._1e{width:19.800000px;}
._1f{width:20.880000px;}
._24{width:22.248000px;}
._25{width:23.760000px;}
._3{width:24.948000px;}
._2{width:26.208000px;}
._1b{width:27.360000px;}
._1d{width:29.364000px;}
._12{width:30.816000px;}
._21{width:32.256000px;}
._16{width:33.336000px;}
._17{width:34.680000px;}
._27{width:35.688000px;}
._22{width:37.296000px;}
._23{width:38.664000px;}
._14{width:42.840000px;}
._13{width:43.848000px;}
._d{width:45.936000px;}
._c{width:47.160000px;}
._18{width:51.552000px;}
._19{width:52.920000px;}
._f{width:53.928000px;}
._e{width:54.936000px;}
._1c{width:58.968000px;}
._26{width:2326.800000px;}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(112,48,160);}
.fc7{color:rgb(32,33,36);}
.fc6{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs10{font-size:33.066907px;}
.fsd{font-size:33.111669px;}
.fs13{font-size:33.112318px;}
.fsb{font-size:39.766297px;}
.fs14{font-size:45.529750px;}
.fs11{font-size:45.620247px;}
.fse{font-size:45.682002px;}
.fs2{font-size:48.240000px;}
.fs9{font-size:49.310973px;}
.fs3{font-size:57.554075px;}
.fs4{font-size:57.713739px;}
.fs6{font-size:58.601578px;}
.fs7{font-size:58.774621px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:66.473763px;}
.fs8{font-size:67.683607px;}
.fsc{font-size:68.794996px;}
.fs1{font-size:72.000000px;}
.fs15{font-size:78.792715px;}
.fs12{font-size:78.840716px;}
.fsf{font-size:78.947441px;}
.fsa{font-size:85.349836px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y130{bottom:2.676097px;}
.y127{bottom:2.679722px;}
.y139{bottom:2.718058px;}
.y110{bottom:2.813649px;}
.y5e{bottom:4.500000px;}
.y106{bottom:5.769550px;}
.y103{bottom:5.769557px;}
.yf2{bottom:5.769564px;}
.y55{bottom:5.940000px;}
.y4f{bottom:7.020000px;}
.y48{bottom:7.200000px;}
.y4c{bottom:7.380000px;}
.y6f{bottom:7.410000px;}
.y71{bottom:7.560000px;}
.ye3{bottom:7.605000px;}
.y10f{bottom:10.526291px;}
.y12b{bottom:10.933625px;}
.y122{bottom:10.948438px;}
.y134{bottom:10.986927px;}
.y107{bottom:11.237670px;}
.y104{bottom:11.237687px;}
.yf3{bottom:11.237704px;}
.y58{bottom:11.340000px;}
.yea{bottom:11.520000px;}
.yf0{bottom:12.060000px;}
.yf6{bottom:12.240000px;}
.y4a{bottom:13.320000px;}
.y12d{bottom:13.915583px;}
.y124{bottom:13.934446px;}
.y136{bottom:13.934693px;}
.y53{bottom:16.200000px;}
.y131{bottom:18.961112px;}
.y12f{bottom:18.961118px;}
.y128{bottom:18.986790px;}
.y126{bottom:18.986805px;}
.y13a{bottom:19.026219px;}
.y138{bottom:19.026226px;}
.yf4{bottom:19.260000px;}
.yf8{bottom:19.440000px;}
.yb1{bottom:20.445229px;}
.yc3{bottom:20.817339px;}
.y57{bottom:24.120000px;}
.y12c{bottom:26.339546px;}
.y135{bottom:26.414786px;}
.y123{bottom:26.528345px;}
.y54{bottom:26.640000px;}
.y5b{bottom:27.000000px;}
.y9a{bottom:31.140000px;}
.yde{bottom:31.320000px;}
.y12e{bottom:31.423931px;}
.y137{bottom:31.506154px;}
.y125{bottom:31.619617px;}
.y51{bottom:34.560000px;}
.y98{bottom:34.920000px;}
.y5c{bottom:37.440000px;}
.yb3{bottom:39.272617px;}
.yc5{bottom:39.987392px;}
.y56{bottom:44.820000px;}
.y5a{bottom:47.700000px;}
.yed{bottom:52.380000px;}
.ydd{bottom:55.080000px;}
.y5{bottom:57.636000px;}
.ybd{bottom:59.178077px;}
.ycf{bottom:60.255137px;}
.y1{bottom:68.976000px;}
.y4{bottom:77.796000px;}
.ybc{bottom:92.379756px;}
.yce{bottom:92.926068px;}
.y46{bottom:99.396000px;}
.ybf{bottom:104.616000px;}
.yb0{bottom:104.640000px;}
.y9f{bottom:105.156000px;}
.ydb{bottom:105.696000px;}
.y32{bottom:113.976000px;}
.y141{bottom:120.816000px;}
.ybb{bottom:124.465227px;}
.y6c{bottom:124.776000px;}
.ycd{bottom:125.596999px;}
.y89{bottom:126.756000px;}
.y9e{bottom:128.916000px;}
.yda{bottom:129.636000px;}
.y31{bottom:137.736000px;}
.y140{bottom:144.756000px;}
.y6b{bottom:148.536000px;}
.y88{bottom:150.510000px;}
.y10c{bottom:151.140000px;}
.y9d{bottom:152.670000px;}
.yd9{bottom:153.390000px;}
.yba{bottom:157.633170px;}
.ycc{bottom:158.261956px;}
.y10d{bottom:160.050000px;}
.y30{bottom:161.490000px;}
.y13f{bottom:168.150000px;}
.y6a{bottom:172.650000px;}
.y87{bottom:173.910000px;}
.y9c{bottom:176.070000px;}
.yd8{bottom:177.150000px;}
.y2f{bottom:185.430000px;}
.y10a{bottom:186.765000px;}
.yb9{bottom:189.711308px;}
.ycb{bottom:190.938861px;}
.y13e{bottom:191.910000px;}
.y10b{bottom:195.690000px;}
.y69{bottom:196.410000px;}
.yb2{bottom:197.485159px;}
.y86{bottom:198.030000px;}
.yd7{bottom:200.550000px;}
.yc4{bottom:201.079454px;}
.y2e{bottom:209.190000px;}
.y13d{bottom:216.030000px;}
.y68{bottom:220.350000px;}
.y85{bottom:221.970000px;}
.yb8{bottom:222.918854px;}
.yca{bottom:223.615766px;}
.yd6{bottom:224.850000px;}
.y9b{bottom:226.470000px;}
.y109{bottom:226.650000px;}
.y2d{bottom:232.950000px;}
.y13c{bottom:239.970000px;}
.y67{bottom:243.750000px;}
.y84{bottom:245.730000px;}
.yd5{bottom:248.610000px;}
.y108{bottom:250.590000px;}
.yb7{bottom:256.111732px;}
.yc9{bottom:256.277736px;}
.y2c{bottom:256.710000px;}
.y133{bottom:259.439980px;}
.y66{bottom:267.870000px;}
.y83{bottom:269.490000px;}
.y102{bottom:270.089980px;}
.y105{bottom:270.090000px;}
.yd4{bottom:272.370000px;}
.y13b{bottom:277.455000px;}
.y101{bottom:279.075000px;}
.y3c{bottom:280.335000px;}
.y2b{bottom:280.695000px;}
.y97{bottom:281.595000px;}
.yb6{bottom:288.204537px;}
.yc8{bottom:288.954641px;}
.y82{bottom:292.935000px;}
.yd3{bottom:296.175000px;}
.y3b{bottom:304.095000px;}
.y2a{bottom:304.455000px;}
.y100{bottom:310.215000px;}
.y99{bottom:312.915000px;}
.y81{bottom:316.875000px;}
.y12a{bottom:317.639980px;}
.yd2{bottom:319.575000px;}
.yb5{bottom:321.368081px;}
.yc7{bottom:321.616611px;}
.y29{bottom:328.215000px;}
.yff{bottom:333.975000px;}
.y132{bottom:335.595000px;}
.y80{bottom:336.675000px;}
.yc2{bottom:339.540000px;}
.yd1{bottom:339.555000px;}
.y28{bottom:351.615000px;}
.y3a{bottom:351.975000px;}
.yb4{bottom:353.460886px;}
.yc6{bottom:354.248712px;}
.yfe{bottom:357.735000px;}
.y96{bottom:367.995000px;}
.yfd{bottom:374.835000px;}
.y121{bottom:375.914959px;}
.y27{bottom:375.915000px;}
.ybe{bottom:387.768505px;}
.y129{bottom:393.915000px;}
.yd0{bottom:394.826020px;}
.y95{bottom:396.975000px;}
.yfc{bottom:399.495000px;}
.y26{bottom:399.675000px;}
.y39{bottom:423.075000px;}
.y25{bottom:423.435000px;}
.yfb{bottom:423.975000px;}
.y94{bottom:428.295000px;}
.y120{bottom:438.375000px;}
.y24{bottom:447.195000px;}
.yfa{bottom:448.455000px;}
.y11f{bottom:458.039959px;}
.y93{bottom:459.615000px;}
.y11e{bottom:466.995000px;}
.y14a{bottom:470.775000px;}
.y23{bottom:471.135000px;}
.yf9{bottom:480.135000px;}
.y92{bottom:492.735000px;}
.y149{bottom:494.535000px;}
.y22{bottom:494.895000px;}
.yf5{bottom:497.595000px;}
.y11d{bottom:497.955000px;}
.yf7{bottom:500.864959px;}
.y91{bottom:516.855000px;}
.y148{bottom:518.295000px;}
.y21{bottom:518.655000px;}
.y11c{bottom:521.715000px;}
.yef{bottom:534.135000px;}
.yaf{bottom:536.475000px;}
.yf1{bottom:537.239959px;}
.y90{bottom:540.795000px;}
.y147{bottom:542.055000px;}
.y20{bottom:542.415000px;}
.y11b{bottom:545.475000px;}
.yae{bottom:561.525000px;}
.y8f{bottom:564.585000px;}
.y146{bottom:566.025000px;}
.y1f{bottom:566.385000px;}
.y11a{bottom:569.445000px;}
.yee{bottom:570.705000px;}
.yad{bottom:585.645000px;}
.y8e{bottom:588.345000px;}
.y145{bottom:589.785000px;}
.y1e{bottom:590.145000px;}
.y119{bottom:593.205000px;}
.yec{bottom:595.185000px;}
.yac{bottom:609.405000px;}
.y8d{bottom:612.105000px;}
.y144{bottom:613.545000px;}
.y1d{bottom:613.905000px;}
.y118{bottom:616.965000px;}
.yab{bottom:633.165000px;}
.y8c{bottom:635.865000px;}
.y143{bottom:637.305000px;}
.y1c{bottom:637.665000px;}
.y117{bottom:640.365000px;}
.y45{bottom:647.925000px;}
.yaa{bottom:656.925000px;}
.y8b{bottom:659.805000px;}
.y116{bottom:660.345000px;}
.y142{bottom:661.065000px;}
.y1b{bottom:661.425000px;}
.y44{bottom:671.685000px;}
.yeb{bottom:671.865000px;}
.y8a{bottom:679.245000px;}
.ya9{bottom:680.865000px;}
.y1a{bottom:685.365000px;}
.y65{bottom:686.265000px;}
.ye9{bottom:689.325000px;}
.y43{bottom:695.445000px;}
.ya8{bottom:704.625000px;}
.y19{bottom:709.125000px;}
.y64{bottom:710.205000px;}
.ye8{bottom:717.945000px;}
.y42{bottom:719.205000px;}
.ya7{bottom:728.385000px;}
.y18{bottom:732.885000px;}
.y63{bottom:733.965000px;}
.ye7{bottom:742.605000px;}
.y41{bottom:742.965000px;}
.ya6{bottom:752.145000px;}
.y17{bottom:756.645000px;}
.y62{bottom:757.725000px;}
.y40{bottom:766.905000px;}
.ye6{bottom:767.085000px;}
.y7f{bottom:776.085000px;}
.yc1{bottom:779.145000px;}
.y16{bottom:780.585000px;}
.y61{bottom:781.485000px;}
.y3f{bottom:790.305000px;}
.ye5{bottom:791.745000px;}
.y7e{bottom:799.845000px;}
.yc0{bottom:803.985000px;}
.y15{bottom:804.345000px;}
.y60{bottom:805.425000px;}
.y3e{bottom:814.065000px;}
.ye4{bottom:816.225000px;}
.y7d{bottom:823.605000px;}
.y14{bottom:828.105000px;}
.y5f{bottom:829.185000px;}
.y3d{bottom:834.045000px;}
.ye2{bottom:840.705000px;}
.y7c{bottom:847.410000px;}
.y5d{bottom:847.770000px;}
.y13{bottom:851.910000px;}
.y59{bottom:868.470000px;}
.y7b{bottom:871.350000px;}
.ye1{bottom:872.430000px;}
.y12{bottom:875.850000px;}
.ye0{bottom:889.890000px;}
.ya5{bottom:894.750000px;}
.y7a{bottom:895.110000px;}
.y11{bottom:899.610000px;}
.y79{bottom:918.870000px;}
.y10{bottom:923.370000px;}
.ydf{bottom:938.310000px;}
.y78{bottom:942.630000px;}
.yf{bottom:947.130000px;}
.y50{bottom:957.210000px;}
.y77{bottom:966.570000px;}
.ye{bottom:971.070000px;}
.ya4{bottom:983.670000px;}
.ydc{bottom:986.550000px;}
.y76{bottom:990.330000px;}
.y115{bottom:993.210000px;}
.y52{bottom:993.930000px;}
.yd{bottom:994.830000px;}
.ya3{bottom:1008.150000px;}
.y75{bottom:1014.090000px;}
.y114{bottom:1016.970000px;}
.yc{bottom:1018.590000px;}
.ya2{bottom:1032.810000px;}
.y74{bottom:1037.850000px;}
.y4e{bottom:1040.370000px;}
.y113{bottom:1040.910000px;}
.y38{bottom:1041.990000px;}
.yb{bottom:1042.350000px;}
.y73{bottom:1054.950000px;}
.ya1{bottom:1057.290000px;}
.y112{bottom:1064.670000px;}
.ya{bottom:1065.930000px;}
.y37{bottom:1066.290000px;}
.y4d{bottom:1071.150000px;}
.y72{bottom:1079.610000px;}
.ya0{bottom:1081.770000px;}
.y10e{bottom:1085.489919px;}
.y111{bottom:1088.610000px;}
.y9{bottom:1089.690000px;}
.y36{bottom:1090.050000px;}
.y4b{bottom:1090.230000px;}
.y70{bottom:1104.090000px;}
.y8{bottom:1113.450000px;}
.y35{bottom:1113.810000px;}
.y49{bottom:1116.150000px;}
.y6e{bottom:1128.750000px;}
.y7{bottom:1137.240000px;}
.y34{bottom:1137.600000px;}
.y6d{bottom:1153.260000px;}
.y47{bottom:1153.980000px;}
.y6{bottom:1161.180000px;}
.y33{bottom:1161.540000px;}
.y3{bottom:1193.580000px;}
.h2{height:16.920000px;}
.h13{height:20.700000px;}
.h2c{height:21.449873px;}
.he{height:23.760000px;}
.h14{height:23.796000px;}
.hc{height:23.940000px;}
.h23{height:23.976000px;}
.h24{height:27.900000px;}
.h30{height:32.481125px;}
.h2b{height:32.551049px;}
.h2a{height:32.551070px;}
.h26{height:32.551090px;}
.h36{height:33.987570px;}
.h3c{height:34.034245px;}
.h11{height:34.560000px;}
.hd{height:35.676000px;}
.h29{height:35.820000px;}
.h2d{height:40.873487px;}
.h1a{height:43.727608px;}
.h18{height:44.008634px;}
.h10{height:44.100000px;}
.h19{height:44.130721px;}
.h1f{height:44.523465px;}
.h1d{height:44.809605px;}
.h31{height:44.812081px;}
.h1e{height:44.941922px;}
.h3d{height:46.797408px;}
.h37{height:46.890425px;}
.h16{height:47.520000px;}
.h22{height:47.700000px;}
.h9{height:50.273438px;}
.h27{height:50.683910px;}
.h6{height:50.800781px;}
.h1b{height:50.829059px;}
.h20{height:51.754164px;}
.h40{height:54.708614px;}
.h3a{height:54.741942px;}
.h34{height:54.816046px;}
.h8{height:54.878906px;}
.h35{height:55.051190px;}
.h2f{height:55.125732px;}
.h3b{height:55.126792px;}
.h3f{height:60.056362px;}
.h39{height:60.092948px;}
.h33{height:60.174295px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h2e{height:67.484935px;}
.h25{height:68.760000px;}
.h7{height:70.628906px;}
.ha{height:70.664062px;}
.h21{height:71.460000px;}
.h4{height:72.562500px;}
.h41{height:74.004654px;}
.hb{height:74.704922px;}
.h3e{height:77.292268px;}
.h38{height:77.339354px;}
.h32{height:77.444047px;}
.h15{height:78.840000px;}
.hf{height:80.820000px;}
.h28{height:83.724522px;}
.h12{height:86.400000px;}
.h17{height:424.276271px;}
.h1c{height:431.998240px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w39{width:21.374841px;}
.w38{width:21.374861px;}
.w2f{width:21.375872px;}
.w37{width:21.375892px;}
.w30{width:21.449359px;}
.w3b{width:32.549299px;}
.w3a{width:32.625390px;}
.w2{width:43.020000px;}
.w5{width:61.920000px;}
.w1c{width:62.280000px;}
.wd{width:73.296000px;}
.w32{width:73.620000px;}
.w11{width:73.656000px;}
.we{width:73.800000px;}
.w12{width:74.160000px;}
.w2e{width:81.540000px;}
.w3c{width:86.547934px;}
.w34{width:95.220000px;}
.wf{width:95.256000px;}
.w1f{width:97.740000px;}
.w36{width:102.780000px;}
.w35{width:105.336000px;}
.w2d{width:105.696000px;}
.w6{width:106.380000px;}
.w3e{width:107.999943px;}
.w3d{width:108.000353px;}
.w1e{width:112.536000px;}
.w1d{width:114.876000px;}
.w2a{width:116.136000px;}
.w2c{width:116.280000px;}
.w19{width:124.560000px;}
.w1b{width:135.576000px;}
.w2b{width:137.376000px;}
.w10{width:137.916000px;}
.wa{width:146.700000px;}
.w33{width:148.176000px;}
.w29{width:156.240000px;}
.w18{width:157.350000px;}
.w16{width:158.070000px;}
.wc{width:169.380000px;}
.w25{width:183.630000px;}
.w24{width:187.050000px;}
.w7{width:188.490000px;}
.w17{width:189.930000px;}
.w31{width:190.650000px;}
.w1a{width:211.710000px;}
.w13{width:230.610000px;}
.wb{width:233.535000px;}
.w27{width:318.270000px;}
.w8{width:339.195000px;}
.w26{width:341.670000px;}
.w20{width:358.050000px;}
.w21{width:358.095000px;}
.w28{width:403.275000px;}
.w14{width:424.695000px;}
.w22{width:636.297267px;}
.w23{width:647.993551px;}
.w15{width:659.265000px;}
.w4{width:699.225000px;}
.w9{width:701.745000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:2.160000px;}
.x67{left:3.656271px;}
.x41{left:5.400000px;}
.xf{left:8.100000px;}
.x1c{left:9.180000px;}
.x17{left:10.440000px;}
.x15{left:12.105000px;}
.x2{left:13.320000px;}
.x13{left:17.280000px;}
.x25{left:19.620000px;}
.x35{left:21.600000px;}
.x55{left:22.680000px;}
.x11{left:24.660000px;}
.x64{left:26.280000px;}
.x1e{left:27.360000px;}
.x3f{left:28.620000px;}
.x43{left:29.694000px;}
.x6e{left:30.960000px;}
.x18{left:33.120000px;}
.x6d{left:34.200000px;}
.x27{left:35.280000px;}
.x3b{left:37.125000px;}
.x32{left:40.725000px;}
.x22{left:41.805000px;}
.x50{left:42.834000px;}
.x70{left:44.280000px;}
.x1f{left:46.260000px;}
.x69{left:48.240000px;}
.x16{left:49.350000px;}
.x3c{left:50.445000px;}
.x44{left:52.050000px;}
.x2e{left:55.254000px;}
.x36{left:57.054000px;}
.x7e{left:58.250159px;}
.x54{left:59.394000px;}
.x56{left:61.380000px;}
.x37{left:63.225000px;}
.x26{left:64.620000px;}
.x30{left:66.774000px;}
.x24{left:68.400000px;}
.x6f{left:70.194000px;}
.x65{left:71.634000px;}
.x7f{left:73.000924px;}
.x19{left:74.205000px;}
.x5c{left:76.854000px;}
.x38{left:79.050000px;}
.x7c{left:81.637130px;}
.x7d{left:83.215334px;}
.x28{left:84.780000px;}
.x4d{left:86.582886px;}
.x51{left:93.414000px;}
.x29{left:99.174000px;}
.x5d{left:101.874000px;}
.x5f{left:104.574000px;}
.x58{left:107.094000px;}
.x57{left:117.396000px;}
.xe{left:119.556000px;}
.x10{left:120.636000px;}
.x5b{left:123.114000px;}
.x2b{left:125.460000px;}
.xc{left:127.655987px;}
.x2f{left:129.096000px;}
.x47{left:131.790000px;}
.x6{left:134.315987px;}
.x81{left:138.275987px;}
.x46{left:148.494000px;}
.x1a{left:149.790000px;}
.x5a{left:152.994000px;}
.x4e{left:155.164354px;}
.x3{left:159.689987px;}
.x45{left:163.974000px;}
.x59{left:165.270000px;}
.x80{left:170.129987px;}
.x7{left:172.109987px;}
.xb{left:180.749987px;}
.x12{left:182.910000px;}
.x5e{left:192.630000px;}
.x75{left:202.169987px;}
.x77{left:219.315000px;}
.x66{left:221.339980px;}
.x68{left:229.589980px;}
.x78{left:251.849987px;}
.x3a{left:256.710000px;}
.x79{left:260.940000px;}
.x7b{left:267.329987px;}
.x1b{left:268.410000px;}
.x31{left:277.230000px;}
.x14{left:289.650000px;}
.x7a{left:293.474987px;}
.x4b{left:297.911374px;}
.x52{left:307.695000px;}
.x6a{left:308.775000px;}
.x48{left:319.053201px;}
.xa{left:327.674987px;}
.x2a{left:351.255000px;}
.x8{left:354.314987px;}
.x23{left:364.035000px;}
.x42{left:370.695000px;}
.x9{left:371.774987px;}
.x6b{left:383.115000px;}
.x60{left:393.915000px;}
.x71{left:413.564959px;}
.x72{left:434.954987px;}
.x33{left:436.755000px;}
.x1{left:439.815000px;}
.x3d{left:469.875000px;}
.x5{left:478.514987px;}
.x53{left:492.045000px;}
.x1d{left:502.305000px;}
.x73{left:503.564959px;}
.x74{left:524.984987px;}
.x61{left:532.005000px;}
.x4c{left:548.654812px;}
.x49{left:559.710969px;}
.x3e{left:606.885000px;}
.x34{left:628.125000px;}
.x62{left:649.005000px;}
.x40{left:670.605000px;}
.x20{left:672.405000px;}
.x76{left:722.309987px;}
.x6c{left:734.190000px;}
.x21{left:746.430000px;}
.x63{left:755.430000px;}
.x4a{left:764.069987px;}
.x4f{left:775.769987px;}
.x2d{left:777.209987px;}
.xd{left:812.669987px;}
.x2c{left:820.409987px;}
.x4{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls2d{letter-spacing:-2.136266pt;}
.ls30{letter-spacing:-1.789149pt;}
.ls1a{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-0.832000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.224000pt;}
.ls1d{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls28{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.704000pt;}
.ls1c{letter-spacing:0.768000pt;}
.ls20{letter-spacing:0.864000pt;}
.ls26{letter-spacing:0.896000pt;}
.ls13{letter-spacing:0.928000pt;}
.ls15{letter-spacing:1.024000pt;}
.ls1f{letter-spacing:1.408000pt;}
.ls16{letter-spacing:1.920000pt;}
.ls33{letter-spacing:2.560000pt;}
.ls0{letter-spacing:3.200000pt;}
.ls25{letter-spacing:3.840000pt;}
.ls27{letter-spacing:7.040000pt;}
.ls22{letter-spacing:8.320000pt;}
.ls23{letter-spacing:12.160000pt;}
.ls21{letter-spacing:12.800000pt;}
.ls14{letter-spacing:13.440000pt;}
.ls1e{letter-spacing:14.720000pt;}
.ls34{letter-spacing:15.488000pt;}
.ls17{letter-spacing:16.000000pt;}
.ls6{letter-spacing:21.760000pt;}
.ls2{letter-spacing:24.320000pt;}
.ls2b{letter-spacing:47.488000pt;}
.ls2e{letter-spacing:127.454649pt;}
.ls2c{letter-spacing:134.294688pt;}
.ls31{letter-spacing:135.519720pt;}
.ls2f{letter-spacing:168.237917pt;}
.ls32{letter-spacing:185.971505pt;}
.ls2a{letter-spacing:192.000000pt;}
.ls29{letter-spacing:201.600000pt;}
.ws13{word-spacing:-17.408000pt;}
.wse{word-spacing:-17.024000pt;}
.ws12{word-spacing:-16.768000pt;}
.ws4{word-spacing:-16.704000pt;}
.wsd{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.448000pt;}
.wsa{word-spacing:-16.384000pt;}
.ws10{word-spacing:-16.320000pt;}
.ws11{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.552000pt;}
.wsf{word-spacing:-15.360000pt;}
.ws17{word-spacing:-15.307524pt;}
.ws8{word-spacing:-15.168000pt;}
.ws15{word-spacing:-15.031223pt;}
.ws14{word-spacing:-14.989639pt;}
.ws0{word-spacing:-14.720000pt;}
.ws18{word-spacing:-0.052090pt;}
.ws16{word-spacing:-0.051159pt;}
.ws1a{word-spacing:-0.040551pt;}
.ws1b{word-spacing:-0.040471pt;}
.ws2{word-spacing:0.000000pt;}
.ws19{word-spacing:124.295653pt;}
._2e{margin-left:-514.976641pt;}
._2d{margin-left:-511.100282pt;}
._2b{margin-left:-457.999928pt;}
._2c{margin-left:-454.453618pt;}
._30{margin-left:-192.202134pt;}
._2f{margin-left:-180.169381pt;}
._28{margin-left:-5.153024pt;}
._2a{margin-left:-4.260264pt;}
._29{margin-left:-3.192500pt;}
._15{margin-left:-1.856000pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.088000pt;}
._5{width:2.069333pt;}
._11{width:3.050667pt;}
._20{width:4.096000pt;}
._8{width:5.162667pt;}
._10{width:6.101333pt;}
._b{width:7.744000pt;}
._4{width:9.216000pt;}
._6{width:10.560000pt;}
._7{width:11.648000pt;}
._a{width:12.672000pt;}
._9{width:13.568000pt;}
._1a{width:14.592000pt;}
._1e{width:17.600000pt;}
._1f{width:18.560000pt;}
._24{width:19.776000pt;}
._25{width:21.120000pt;}
._3{width:22.176000pt;}
._2{width:23.296000pt;}
._1b{width:24.320000pt;}
._1d{width:26.101333pt;}
._12{width:27.392000pt;}
._21{width:28.672000pt;}
._16{width:29.632000pt;}
._17{width:30.826667pt;}
._27{width:31.722667pt;}
._22{width:33.152000pt;}
._23{width:34.368000pt;}
._14{width:38.080000pt;}
._13{width:38.976000pt;}
._d{width:40.832000pt;}
._c{width:41.920000pt;}
._18{width:45.824000pt;}
._19{width:47.040000pt;}
._f{width:47.936000pt;}
._e{width:48.832000pt;}
._1c{width:52.416000pt;}
._26{width:2068.266667pt;}
.fs10{font-size:29.392806pt;}
.fsd{font-size:29.432595pt;}
.fs13{font-size:29.433172pt;}
.fsb{font-size:35.347819pt;}
.fs14{font-size:40.470889pt;}
.fs11{font-size:40.551331pt;}
.fse{font-size:40.606224pt;}
.fs2{font-size:42.880000pt;}
.fs9{font-size:43.831976pt;}
.fs3{font-size:51.159178pt;}
.fs4{font-size:51.301102pt;}
.fs6{font-size:52.090292pt;}
.fs7{font-size:52.244108pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:59.087789pt;}
.fs8{font-size:60.163206pt;}
.fsc{font-size:61.151108pt;}
.fs1{font-size:64.000000pt;}
.fs15{font-size:70.037969pt;}
.fs12{font-size:70.080636pt;}
.fsf{font-size:70.175503pt;}
.fsa{font-size:75.866521pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y130{bottom:2.378753pt;}
.y127{bottom:2.381975pt;}
.y139{bottom:2.416052pt;}
.y110{bottom:2.501022pt;}
.y5e{bottom:4.000000pt;}
.y106{bottom:5.128489pt;}
.y103{bottom:5.128495pt;}
.yf2{bottom:5.128502pt;}
.y55{bottom:5.280000pt;}
.y4f{bottom:6.240000pt;}
.y48{bottom:6.400000pt;}
.y4c{bottom:6.560000pt;}
.y6f{bottom:6.586667pt;}
.y71{bottom:6.720000pt;}
.ye3{bottom:6.760000pt;}
.y10f{bottom:9.356703pt;}
.y12b{bottom:9.718777pt;}
.y122{bottom:9.731945pt;}
.y134{bottom:9.766157pt;}
.y107{bottom:9.989040pt;}
.y104{bottom:9.989055pt;}
.yf3{bottom:9.989070pt;}
.y58{bottom:10.080000pt;}
.yea{bottom:10.240000pt;}
.yf0{bottom:10.720000pt;}
.yf6{bottom:10.880000pt;}
.y4a{bottom:11.840000pt;}
.y12d{bottom:12.369407pt;}
.y124{bottom:12.386174pt;}
.y136{bottom:12.386394pt;}
.y53{bottom:14.400000pt;}
.y131{bottom:16.854322pt;}
.y12f{bottom:16.854327pt;}
.y128{bottom:16.877147pt;}
.y126{bottom:16.877160pt;}
.y13a{bottom:16.912195pt;}
.y138{bottom:16.912201pt;}
.yf4{bottom:17.120000pt;}
.yf8{bottom:17.280000pt;}
.yb1{bottom:18.173537pt;}
.yc3{bottom:18.504301pt;}
.y57{bottom:21.440000pt;}
.y12c{bottom:23.412930pt;}
.y135{bottom:23.479810pt;}
.y123{bottom:23.580751pt;}
.y54{bottom:23.680000pt;}
.y5b{bottom:24.000000pt;}
.y9a{bottom:27.680000pt;}
.yde{bottom:27.840000pt;}
.y12e{bottom:27.932384pt;}
.y137{bottom:28.005470pt;}
.y125{bottom:28.106326pt;}
.y51{bottom:30.720000pt;}
.y98{bottom:31.040000pt;}
.y5c{bottom:33.280000pt;}
.yb3{bottom:34.908993pt;}
.yc5{bottom:35.544348pt;}
.y56{bottom:39.840000pt;}
.y5a{bottom:42.400000pt;}
.yed{bottom:46.560000pt;}
.ydd{bottom:48.960000pt;}
.y5{bottom:51.232000pt;}
.ybd{bottom:52.602735pt;}
.ycf{bottom:53.560122pt;}
.y1{bottom:61.312000pt;}
.y4{bottom:69.152000pt;}
.ybc{bottom:82.115338pt;}
.yce{bottom:82.600949pt;}
.y46{bottom:88.352000pt;}
.ybf{bottom:92.992000pt;}
.yb0{bottom:93.013333pt;}
.y9f{bottom:93.472000pt;}
.ydb{bottom:93.952000pt;}
.y32{bottom:101.312000pt;}
.y141{bottom:107.392000pt;}
.ybb{bottom:110.635757pt;}
.y6c{bottom:110.912000pt;}
.ycd{bottom:111.641777pt;}
.y89{bottom:112.672000pt;}
.y9e{bottom:114.592000pt;}
.yda{bottom:115.232000pt;}
.y31{bottom:122.432000pt;}
.y140{bottom:128.672000pt;}
.y6b{bottom:132.032000pt;}
.y88{bottom:133.786667pt;}
.y10c{bottom:134.346667pt;}
.y9d{bottom:135.706667pt;}
.yd9{bottom:136.346667pt;}
.yba{bottom:140.118374pt;}
.ycc{bottom:140.677294pt;}
.y10d{bottom:142.266667pt;}
.y30{bottom:143.546667pt;}
.y13f{bottom:149.466667pt;}
.y6a{bottom:153.466667pt;}
.y87{bottom:154.586667pt;}
.y9c{bottom:156.506667pt;}
.yd8{bottom:157.466667pt;}
.y2f{bottom:164.826667pt;}
.y10a{bottom:166.013333pt;}
.yb9{bottom:168.632274pt;}
.ycb{bottom:169.723432pt;}
.y13e{bottom:170.586667pt;}
.y10b{bottom:173.946667pt;}
.y69{bottom:174.586667pt;}
.yb2{bottom:175.542364pt;}
.y86{bottom:176.026667pt;}
.yd7{bottom:178.266667pt;}
.yc4{bottom:178.737293pt;}
.y2e{bottom:185.946667pt;}
.y13d{bottom:192.026667pt;}
.y68{bottom:195.866667pt;}
.y85{bottom:197.306667pt;}
.yb8{bottom:198.150092pt;}
.yca{bottom:198.769570pt;}
.yd6{bottom:199.866667pt;}
.y9b{bottom:201.306667pt;}
.y109{bottom:201.466667pt;}
.y2d{bottom:207.066667pt;}
.y13c{bottom:213.306667pt;}
.y67{bottom:216.666667pt;}
.y84{bottom:218.426667pt;}
.yd5{bottom:220.986667pt;}
.y108{bottom:222.746667pt;}
.yb7{bottom:227.654873pt;}
.yc9{bottom:227.802432pt;}
.y2c{bottom:228.186667pt;}
.y133{bottom:230.613315pt;}
.y66{bottom:238.106667pt;}
.y83{bottom:239.546667pt;}
.y102{bottom:240.079982pt;}
.y105{bottom:240.080000pt;}
.yd4{bottom:242.106667pt;}
.y13b{bottom:246.626667pt;}
.y101{bottom:248.066667pt;}
.y3c{bottom:249.186667pt;}
.y2b{bottom:249.506667pt;}
.y97{bottom:250.306667pt;}
.yb6{bottom:256.181811pt;}
.yc8{bottom:256.848570pt;}
.y82{bottom:260.386667pt;}
.yd3{bottom:263.266667pt;}
.y3b{bottom:270.306667pt;}
.y2a{bottom:270.626667pt;}
.y100{bottom:275.746667pt;}
.y99{bottom:278.146667pt;}
.y81{bottom:281.666667pt;}
.y12a{bottom:282.346649pt;}
.yd2{bottom:284.066667pt;}
.yb5{bottom:285.660516pt;}
.yc7{bottom:285.881432pt;}
.y29{bottom:291.746667pt;}
.yff{bottom:296.866667pt;}
.y132{bottom:298.306667pt;}
.y80{bottom:299.266667pt;}
.yc2{bottom:301.813333pt;}
.yd1{bottom:301.826667pt;}
.y28{bottom:312.546667pt;}
.y3a{bottom:312.866667pt;}
.yb4{bottom:314.187454pt;}
.yc6{bottom:314.887744pt;}
.yfe{bottom:317.986667pt;}
.y96{bottom:327.106667pt;}
.yfd{bottom:333.186667pt;}
.y121{bottom:334.146630pt;}
.y27{bottom:334.146667pt;}
.ybe{bottom:344.683116pt;}
.y129{bottom:350.146667pt;}
.yd0{bottom:350.956462pt;}
.y95{bottom:352.866667pt;}
.yfc{bottom:355.106667pt;}
.y26{bottom:355.266667pt;}
.y39{bottom:376.066667pt;}
.y25{bottom:376.386667pt;}
.yfb{bottom:376.866667pt;}
.y94{bottom:380.706667pt;}
.y120{bottom:389.666667pt;}
.y24{bottom:397.506667pt;}
.yfa{bottom:398.626667pt;}
.y11f{bottom:407.146630pt;}
.y93{bottom:408.546667pt;}
.y11e{bottom:415.106667pt;}
.y14a{bottom:418.466667pt;}
.y23{bottom:418.786667pt;}
.yf9{bottom:426.786667pt;}
.y92{bottom:437.986667pt;}
.y149{bottom:439.586667pt;}
.y22{bottom:439.906667pt;}
.yf5{bottom:442.306667pt;}
.y11d{bottom:442.626667pt;}
.yf7{bottom:445.213297pt;}
.y91{bottom:459.426667pt;}
.y148{bottom:460.706667pt;}
.y21{bottom:461.026667pt;}
.y11c{bottom:463.746667pt;}
.yef{bottom:474.786667pt;}
.yaf{bottom:476.866667pt;}
.yf1{bottom:477.546630pt;}
.y90{bottom:480.706667pt;}
.y147{bottom:481.826667pt;}
.y20{bottom:482.146667pt;}
.y11b{bottom:484.866667pt;}
.yae{bottom:499.133333pt;}
.y8f{bottom:501.853333pt;}
.y146{bottom:503.133333pt;}
.y1f{bottom:503.453333pt;}
.y11a{bottom:506.173333pt;}
.yee{bottom:507.293333pt;}
.yad{bottom:520.573333pt;}
.y8e{bottom:522.973333pt;}
.y145{bottom:524.253333pt;}
.y1e{bottom:524.573333pt;}
.y119{bottom:527.293333pt;}
.yec{bottom:529.053333pt;}
.yac{bottom:541.693333pt;}
.y8d{bottom:544.093333pt;}
.y144{bottom:545.373333pt;}
.y1d{bottom:545.693333pt;}
.y118{bottom:548.413333pt;}
.yab{bottom:562.813333pt;}
.y8c{bottom:565.213333pt;}
.y143{bottom:566.493333pt;}
.y1c{bottom:566.813333pt;}
.y117{bottom:569.213333pt;}
.y45{bottom:575.933333pt;}
.yaa{bottom:583.933333pt;}
.y8b{bottom:586.493333pt;}
.y116{bottom:586.973333pt;}
.y142{bottom:587.613333pt;}
.y1b{bottom:587.933333pt;}
.y44{bottom:597.053333pt;}
.yeb{bottom:597.213333pt;}
.y8a{bottom:603.773333pt;}
.ya9{bottom:605.213333pt;}
.y1a{bottom:609.213333pt;}
.y65{bottom:610.013333pt;}
.ye9{bottom:612.733333pt;}
.y43{bottom:618.173333pt;}
.ya8{bottom:626.333333pt;}
.y19{bottom:630.333333pt;}
.y64{bottom:631.293333pt;}
.ye8{bottom:638.173333pt;}
.y42{bottom:639.293333pt;}
.ya7{bottom:647.453333pt;}
.y18{bottom:651.453333pt;}
.y63{bottom:652.413333pt;}
.ye7{bottom:660.093333pt;}
.y41{bottom:660.413333pt;}
.ya6{bottom:668.573333pt;}
.y17{bottom:672.573333pt;}
.y62{bottom:673.533333pt;}
.y40{bottom:681.693333pt;}
.ye6{bottom:681.853333pt;}
.y7f{bottom:689.853333pt;}
.yc1{bottom:692.573333pt;}
.y16{bottom:693.853333pt;}
.y61{bottom:694.653333pt;}
.y3f{bottom:702.493333pt;}
.ye5{bottom:703.773333pt;}
.y7e{bottom:710.973333pt;}
.yc0{bottom:714.653333pt;}
.y15{bottom:714.973333pt;}
.y60{bottom:715.933333pt;}
.y3e{bottom:723.613333pt;}
.ye4{bottom:725.533333pt;}
.y7d{bottom:732.093333pt;}
.y14{bottom:736.093333pt;}
.y5f{bottom:737.053333pt;}
.y3d{bottom:741.373333pt;}
.ye2{bottom:747.293333pt;}
.y7c{bottom:753.253333pt;}
.y5d{bottom:753.573333pt;}
.y13{bottom:757.253333pt;}
.y59{bottom:771.973333pt;}
.y7b{bottom:774.533333pt;}
.ye1{bottom:775.493333pt;}
.y12{bottom:778.533333pt;}
.ye0{bottom:791.013333pt;}
.ya5{bottom:795.333333pt;}
.y7a{bottom:795.653333pt;}
.y11{bottom:799.653333pt;}
.y79{bottom:816.773333pt;}
.y10{bottom:820.773333pt;}
.ydf{bottom:834.053333pt;}
.y78{bottom:837.893333pt;}
.yf{bottom:841.893333pt;}
.y50{bottom:850.853333pt;}
.y77{bottom:859.173333pt;}
.ye{bottom:863.173333pt;}
.ya4{bottom:874.373333pt;}
.ydc{bottom:876.933333pt;}
.y76{bottom:880.293333pt;}
.y115{bottom:882.853333pt;}
.y52{bottom:883.493333pt;}
.yd{bottom:884.293333pt;}
.ya3{bottom:896.133333pt;}
.y75{bottom:901.413333pt;}
.y114{bottom:903.973333pt;}
.yc{bottom:905.413333pt;}
.ya2{bottom:918.053333pt;}
.y74{bottom:922.533333pt;}
.y4e{bottom:924.773333pt;}
.y113{bottom:925.253333pt;}
.y38{bottom:926.213333pt;}
.yb{bottom:926.533333pt;}
.y73{bottom:937.733333pt;}
.ya1{bottom:939.813333pt;}
.y112{bottom:946.373333pt;}
.ya{bottom:947.493333pt;}
.y37{bottom:947.813333pt;}
.y4d{bottom:952.133333pt;}
.y72{bottom:959.653333pt;}
.ya0{bottom:961.573333pt;}
.y10e{bottom:964.879928pt;}
.y111{bottom:967.653333pt;}
.y9{bottom:968.613333pt;}
.y36{bottom:968.933333pt;}
.y4b{bottom:969.093333pt;}
.y70{bottom:981.413333pt;}
.y8{bottom:989.733333pt;}
.y35{bottom:990.053333pt;}
.y49{bottom:992.133333pt;}
.y6e{bottom:1003.333333pt;}
.y7{bottom:1010.880000pt;}
.y34{bottom:1011.200000pt;}
.y6d{bottom:1025.120000pt;}
.y47{bottom:1025.760000pt;}
.y6{bottom:1032.160000pt;}
.y33{bottom:1032.480000pt;}
.y3{bottom:1060.960000pt;}
.h2{height:15.040000pt;}
.h13{height:18.400000pt;}
.h2c{height:19.066553pt;}
.he{height:21.120000pt;}
.h14{height:21.152000pt;}
.hc{height:21.280000pt;}
.h23{height:21.312000pt;}
.h24{height:24.800000pt;}
.h30{height:28.872111pt;}
.h2b{height:28.934266pt;}
.h2a{height:28.934284pt;}
.h26{height:28.934302pt;}
.h36{height:30.211173pt;}
.h3c{height:30.252662pt;}
.h11{height:30.720000pt;}
.hd{height:31.712000pt;}
.h29{height:31.840000pt;}
.h2d{height:36.331988pt;}
.h1a{height:38.868985pt;}
.h18{height:39.118785pt;}
.h10{height:39.200000pt;}
.h19{height:39.227307pt;}
.h1f{height:39.576413pt;}
.h1d{height:39.830760pt;}
.h31{height:39.832961pt;}
.h1e{height:39.948375pt;}
.h3d{height:41.597696pt;}
.h37{height:41.680378pt;}
.h16{height:42.240000pt;}
.h22{height:42.400000pt;}
.h9{height:44.687500pt;}
.h27{height:45.052364pt;}
.h6{height:45.156250pt;}
.h1b{height:45.181386pt;}
.h20{height:46.003702pt;}
.h40{height:48.629879pt;}
.h3a{height:48.659504pt;}
.h34{height:48.725374pt;}
.h8{height:48.781250pt;}
.h35{height:48.934391pt;}
.h2f{height:49.000651pt;}
.h3b{height:49.001593pt;}
.h3f{height:53.383432pt;}
.h39{height:53.415954pt;}
.h33{height:53.488262pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h2e{height:59.986609pt;}
.h25{height:61.120000pt;}
.h7{height:62.781250pt;}
.ha{height:62.812500pt;}
.h21{height:63.520000pt;}
.h4{height:64.500000pt;}
.h41{height:65.781915pt;}
.hb{height:66.404375pt;}
.h3e{height:68.704238pt;}
.h38{height:68.746093pt;}
.h32{height:68.839153pt;}
.h15{height:70.080000pt;}
.hf{height:71.840000pt;}
.h28{height:74.421797pt;}
.h12{height:76.800000pt;}
.h17{height:377.134463pt;}
.h1c{height:383.998435pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w39{width:18.999859pt;}
.w38{width:18.999877pt;}
.w2f{width:19.000775pt;}
.w37{width:19.000793pt;}
.w30{width:19.066097pt;}
.w3b{width:28.932710pt;}
.w3a{width:29.000347pt;}
.w2{width:38.240000pt;}
.w5{width:55.040000pt;}
.w1c{width:55.360000pt;}
.wd{width:65.152000pt;}
.w32{width:65.440000pt;}
.w11{width:65.472000pt;}
.we{width:65.600000pt;}
.w12{width:65.920000pt;}
.w2e{width:72.480000pt;}
.w3c{width:76.931497pt;}
.w34{width:84.640000pt;}
.wf{width:84.672000pt;}
.w1f{width:86.880000pt;}
.w36{width:91.360000pt;}
.w35{width:93.632000pt;}
.w2d{width:93.952000pt;}
.w6{width:94.560000pt;}
.w3e{width:95.999949pt;}
.w3d{width:96.000314pt;}
.w1e{width:100.032000pt;}
.w1d{width:102.112000pt;}
.w2a{width:103.232000pt;}
.w2c{width:103.360000pt;}
.w19{width:110.720000pt;}
.w1b{width:120.512000pt;}
.w2b{width:122.112000pt;}
.w10{width:122.592000pt;}
.wa{width:130.400000pt;}
.w33{width:131.712000pt;}
.w29{width:138.880000pt;}
.w18{width:139.866667pt;}
.w16{width:140.506667pt;}
.wc{width:150.560000pt;}
.w25{width:163.226667pt;}
.w24{width:166.266667pt;}
.w7{width:167.546667pt;}
.w17{width:168.826667pt;}
.w31{width:169.466667pt;}
.w1a{width:188.186667pt;}
.w13{width:204.986667pt;}
.wb{width:207.586667pt;}
.w27{width:282.906667pt;}
.w8{width:301.506667pt;}
.w26{width:303.706667pt;}
.w20{width:318.266667pt;}
.w21{width:318.306667pt;}
.w28{width:358.466667pt;}
.w14{width:377.506667pt;}
.w22{width:565.597571pt;}
.w23{width:575.994267pt;}
.w15{width:586.013333pt;}
.w4{width:621.533333pt;}
.w9{width:623.773333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:1.920000pt;}
.x67{left:3.250019pt;}
.x41{left:4.800000pt;}
.xf{left:7.200000pt;}
.x1c{left:8.160000pt;}
.x17{left:9.280000pt;}
.x15{left:10.760000pt;}
.x2{left:11.840000pt;}
.x13{left:15.360000pt;}
.x25{left:17.440000pt;}
.x35{left:19.200000pt;}
.x55{left:20.160000pt;}
.x11{left:21.920000pt;}
.x64{left:23.360000pt;}
.x1e{left:24.320000pt;}
.x3f{left:25.440000pt;}
.x43{left:26.394667pt;}
.x6e{left:27.520000pt;}
.x18{left:29.440000pt;}
.x6d{left:30.400000pt;}
.x27{left:31.360000pt;}
.x3b{left:33.000000pt;}
.x32{left:36.200000pt;}
.x22{left:37.160000pt;}
.x50{left:38.074667pt;}
.x70{left:39.360000pt;}
.x1f{left:41.120000pt;}
.x69{left:42.880000pt;}
.x16{left:43.866667pt;}
.x3c{left:44.840000pt;}
.x44{left:46.266667pt;}
.x2e{left:49.114667pt;}
.x36{left:50.714667pt;}
.x7e{left:51.777919pt;}
.x54{left:52.794667pt;}
.x56{left:54.560000pt;}
.x37{left:56.200000pt;}
.x26{left:57.440000pt;}
.x30{left:59.354667pt;}
.x24{left:60.800000pt;}
.x6f{left:62.394667pt;}
.x65{left:63.674667pt;}
.x7f{left:64.889711pt;}
.x19{left:65.960000pt;}
.x5c{left:68.314667pt;}
.x38{left:70.266667pt;}
.x7c{left:72.566338pt;}
.x7d{left:73.969186pt;}
.x28{left:75.360000pt;}
.x4d{left:76.962566pt;}
.x51{left:83.034667pt;}
.x29{left:88.154667pt;}
.x5d{left:90.554667pt;}
.x5f{left:92.954667pt;}
.x58{left:95.194667pt;}
.x57{left:104.352000pt;}
.xe{left:106.272000pt;}
.x10{left:107.232000pt;}
.x5b{left:109.434667pt;}
.x2b{left:111.520000pt;}
.xc{left:113.471988pt;}
.x2f{left:114.752000pt;}
.x47{left:117.146667pt;}
.x6{left:119.391988pt;}
.x81{left:122.911988pt;}
.x46{left:131.994667pt;}
.x1a{left:133.146667pt;}
.x5a{left:135.994667pt;}
.x4e{left:137.923870pt;}
.x3{left:141.946655pt;}
.x45{left:145.754667pt;}
.x59{left:146.906667pt;}
.x80{left:151.226655pt;}
.x7{left:152.986655pt;}
.xb{left:160.666655pt;}
.x12{left:162.586667pt;}
.x5e{left:171.226667pt;}
.x75{left:179.706655pt;}
.x77{left:194.946667pt;}
.x66{left:196.746649pt;}
.x68{left:204.079982pt;}
.x78{left:223.866655pt;}
.x3a{left:228.186667pt;}
.x79{left:231.946667pt;}
.x7b{left:237.626655pt;}
.x1b{left:238.586667pt;}
.x31{left:246.426667pt;}
.x14{left:257.466667pt;}
.x7a{left:260.866655pt;}
.x4b{left:264.810110pt;}
.x52{left:273.506667pt;}
.x6a{left:274.466667pt;}
.x48{left:283.602845pt;}
.xa{left:291.266655pt;}
.x2a{left:312.226667pt;}
.x8{left:314.946655pt;}
.x23{left:323.586667pt;}
.x42{left:329.506667pt;}
.x9{left:330.466655pt;}
.x6b{left:340.546667pt;}
.x60{left:350.146667pt;}
.x71{left:367.613297pt;}
.x72{left:386.626655pt;}
.x33{left:388.226667pt;}
.x1{left:390.946667pt;}
.x3d{left:417.666667pt;}
.x5{left:425.346655pt;}
.x53{left:437.373333pt;}
.x1d{left:446.493333pt;}
.x73{left:447.613297pt;}
.x74{left:466.653322pt;}
.x61{left:472.893333pt;}
.x4c{left:487.693166pt;}
.x49{left:497.520861pt;}
.x3e{left:539.453333pt;}
.x34{left:558.333333pt;}
.x62{left:576.893333pt;}
.x40{left:596.093333pt;}
.x20{left:597.693333pt;}
.x76{left:642.053322pt;}
.x6c{left:652.613333pt;}
.x21{left:663.493333pt;}
.x63{left:671.493333pt;}
.x4a{left:679.173322pt;}
.x4f{left:689.573322pt;}
.x2d{left:690.853322pt;}
.xd{left:722.373322pt;}
.x2c{left:729.253322pt;}
.x4{left:737.253322pt;}
}




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