
    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_fef2fcd55085b5392f6a9ac3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f5ed6268389048b8433bd287.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5c83e23ca2e097b6c42bf7f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_af01b14e046016a8b68e4ec3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.032715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f8e1e0eb0151f6542a1eb091.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.026855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3d08e121946f98b375b23a52.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_019f4102617ea920c49cff8b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0d645eb46840d0e5356ff9e9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_85e2feb501814c1a398b0917.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d7236fef450582104e5da8f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.963379;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_e95a9bb0039c87255c4fac9e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964860;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_9e24b0ac460ca30e57e16d07.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_db779996272a5cb16c8bf866.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;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_b696401ec2cecdb5c07a8b70.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_4bf9127a32caeed8f722e674.woff2')format("woff");}.fff{font-family:fff;line-height:0.968262;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;}
.m6{transform:matrix(-0.000906,-0.249998,0.249998,-0.000906,0,0);-ms-transform:matrix(-0.000906,-0.249998,0.249998,-0.000906,0,0);-webkit-transform:matrix(-0.000906,-0.249998,0.249998,-0.000906,0,0);}
.m7{transform:matrix(-0.000238,-0.250000,0.250000,-0.000238,0,0);-ms-transform:matrix(-0.000238,-0.250000,0.250000,-0.000238,0,0);-webkit-transform:matrix(-0.000238,-0.250000,0.250000,-0.000238,0,0);}
.m5{transform:matrix(-0.000003,-0.250000,0.250000,-0.000003,0,0);-ms-transform:matrix(-0.000003,-0.250000,0.250000,-0.000003,0,0);-webkit-transform:matrix(-0.000003,-0.250000,0.250000,-0.000003,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000213,-0.250000,0.250000,0.000213,0,0);-ms-transform:matrix(0.000213,-0.250000,0.250000,0.000213,0,0);-webkit-transform:matrix(0.000213,-0.250000,0.250000,0.000213,0,0);}
.m4{transform:matrix(0.002729,-0.249985,0.249985,0.002729,0,0);-ms-transform:matrix(0.002729,-0.249985,0.249985,0.002729,0,0);-webkit-transform:matrix(0.002729,-0.249985,0.249985,0.002729,0,0);}
.m8{transform:matrix(0.003611,-0.249974,0.249974,0.003611,0,0);-ms-transform:matrix(0.003611,-0.249974,0.249974,0.003611,0,0);-webkit-transform:matrix(0.003611,-0.249974,0.249974,0.003611,0,0);}
.ma{transform:matrix(0.004612,-0.249957,0.249957,0.004612,0,0);-ms-transform:matrix(0.004612,-0.249957,0.249957,0.004612,0,0);-webkit-transform:matrix(0.004612,-0.249957,0.249957,0.004612,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.md{transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);}
.mc{transform:matrix(0.245279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245279,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.982000px;}
.v1{vertical-align:21.978000px;}
.ls15{letter-spacing:-5.803864px;}
.ls13{letter-spacing:-4.352847px;}
.ls14{letter-spacing:-4.265790px;}
.ls16{letter-spacing:-3.869190px;}
.ls17{letter-spacing:-3.791806px;}
.ls12{letter-spacing:-3.554842px;}
.lsd{letter-spacing:-3.385560px;}
.lse{letter-spacing:-3.317849px;}
.ls19{letter-spacing:-3.143730px;}
.ls18{letter-spacing:-3.080855px;}
.lsc{letter-spacing:-2.901900px;}
.lsb{letter-spacing:-2.843862px;}
.ls10{letter-spacing:-2.660070px;}
.lsf{letter-spacing:-2.606869px;}
.ls11{letter-spacing:-2.418270px;}
.ls1b{letter-spacing:-2.176440px;}
.ls1a{letter-spacing:-2.132911px;}
.ls6{letter-spacing:-0.918000px;}
.ls9{letter-spacing:-0.789975px;}
.lsa{letter-spacing:-0.718164px;}
.ls4{letter-spacing:-0.691200px;}
.ls5{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.060000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.025800px;}
.ls1c{letter-spacing:0.420000px;}
.ls7{letter-spacing:1.200000px;}
.ls0{letter-spacing:43.181364px;}
.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;}
}
.ws44{word-spacing:-32.269486px;}
.ws43{word-spacing:-24.201830px;}
.ws45{word-spacing:-21.512696px;}
.ws41{word-spacing:-20.168288px;}
.ws3e{word-spacing:-18.823714px;}
.ws3{word-spacing:-17.928000px;}
.ws46{word-spacing:-17.479139px;}
.ws5a{word-spacing:-16.434000px;}
.ws35{word-spacing:-16.134564px;}
.ws16{word-spacing:-16.080000px;}
.ws2{word-spacing:-14.940000px;}
.ws3f{word-spacing:-14.789989px;}
.ws17{word-spacing:-14.700000px;}
.ws2f{word-spacing:-13.446000px;}
.ws40{word-spacing:-13.445581px;}
.ws5b{word-spacing:-13.392000px;}
.ws7{word-spacing:-12.150000px;}
.ws47{word-spacing:-12.101006px;}
.ws3a{word-spacing:-12.100935px;}
.ws38{word-spacing:-12.100919px;}
.ws36{word-spacing:-12.100894px;}
.ws37{word-spacing:-12.100840px;}
.ws39{word-spacing:-12.100678px;}
.ws3c{word-spacing:-12.100677px;}
.ws4{word-spacing:-11.772000px;}
.ws3d{word-spacing:-11.664307px;}
.ws6{word-spacing:-11.232000px;}
.ws0{word-spacing:-10.896000px;}
.ws5{word-spacing:-10.854000px;}
.ws14{word-spacing:-10.800000px;}
.ws3b{word-spacing:-10.756102px;}
.ws8{word-spacing:-10.464000px;}
.ws21{word-spacing:-10.290000px;}
.ws1{word-spacing:-9.417600px;}
.ws5f{word-spacing:-7.807536px;}
.wsc{word-spacing:-3.132000px;}
.ws29{word-spacing:-2.940000px;}
.ws66{word-spacing:-2.916000px;}
.ws1b{word-spacing:-2.760000px;}
.ws5e{word-spacing:-1.944000px;}
.ws2b{word-spacing:-1.500000px;}
.wsd{word-spacing:-1.404000px;}
.ws27{word-spacing:-1.260000px;}
.ws19{word-spacing:-1.200000px;}
.ws15{word-spacing:-1.188000px;}
.ws33{word-spacing:-0.810000px;}
.ws48{word-spacing:-0.702000px;}
.ws67{word-spacing:-0.420000px;}
.ws32{word-spacing:-0.378000px;}
.wsa{word-spacing:-0.216000px;}
.ws9{word-spacing:0.000000px;}
.ws5d{word-spacing:0.054000px;}
.ws28{word-spacing:0.060000px;}
.ws65{word-spacing:0.270000px;}
.wsf{word-spacing:0.540000px;}
.ws10{word-spacing:0.600000px;}
.wsb{word-spacing:0.691200px;}
.ws34{word-spacing:0.718164px;}
.ws18{word-spacing:0.720000px;}
.ws5c{word-spacing:0.840000px;}
.ws13{word-spacing:0.918000px;}
.ws42{word-spacing:1.064028px;}
.ws2c{word-spacing:1.680000px;}
.ws2a{word-spacing:1.800000px;}
.ws25{word-spacing:1.920000px;}
.ws22{word-spacing:2.100000px;}
.ws58{word-spacing:2.132911px;}
.ws59{word-spacing:2.176440px;}
.ws26{word-spacing:2.400000px;}
.ws4f{word-spacing:2.418270px;}
.ws4d{word-spacing:2.606869px;}
.ws4e{word-spacing:2.660070px;}
.ws49{word-spacing:2.843862px;}
.ws4a{word-spacing:2.901900px;}
.ws2e{word-spacing:3.000000px;}
.ws56{word-spacing:3.080855px;}
.ws57{word-spacing:3.143730px;}
.ws4c{word-spacing:3.317849px;}
.ws4b{word-spacing:3.385560px;}
.ws62{word-spacing:3.510000px;}
.ws50{word-spacing:3.554842px;}
.ws1e{word-spacing:3.780000px;}
.ws55{word-spacing:3.791806px;}
.ws1d{word-spacing:3.840000px;}
.ws54{word-spacing:3.869190px;}
.ws68{word-spacing:3.996000px;}
.ws52{word-spacing:4.265790px;}
.ws1c{word-spacing:4.320000px;}
.ws51{word-spacing:4.352847px;}
.ws30{word-spacing:4.380000px;}
.ws20{word-spacing:4.560000px;}
.ws12{word-spacing:4.740000px;}
.ws31{word-spacing:5.220000px;}
.ws23{word-spacing:5.280000px;}
.ws1a{word-spacing:5.400000px;}
.ws53{word-spacing:5.803864px;}
.ws11{word-spacing:5.880000px;}
.ws61{word-spacing:7.074000px;}
.ws1f{word-spacing:7.080000px;}
.ws24{word-spacing:7.800000px;}
.ws60{word-spacing:8.370000px;}
.wse{word-spacing:11.772000px;}
.ws64{word-spacing:12.366000px;}
.ws63{word-spacing:12.960000px;}
.ws2d{word-spacing:18.480000px;}
._1c{margin-left:-60.982199px;}
._2b{margin-left:-59.939017px;}
._27{margin-left:-58.502161px;}
._29{margin-left:-57.236076px;}
._2e{margin-left:-55.144394px;}
._1e{margin-left:-53.104250px;}
._1b{margin-left:-52.016431px;}
._2c{margin-left:-50.755512px;}
._13{margin-left:-49.187085px;}
._1f{margin-left:-48.012900px;}
._16{margin-left:-46.662438px;}
._1a{margin-left:-45.269530px;}
._2f{margin-left:-44.140707px;}
._17{margin-left:-42.831940px;}
._18{margin-left:-41.482559px;}
._19{margin-left:-39.654367px;}
._20{margin-left:-38.215768px;}
._14{margin-left:-36.607379px;}
._24{margin-left:-35.477803px;}
._15{margin-left:-34.474488px;}
._22{margin-left:-33.428725px;}
._28{margin-left:-32.120323px;}
._26{margin-left:-30.252234px;}
._21{margin-left:-28.379432px;}
._25{margin-left:-27.205246px;}
._2a{margin-left:-25.197951px;}
._23{margin-left:-24.072673px;}
._31{margin-left:-23.029193px;}
._1d{margin-left:-21.850225px;}
._30{margin-left:-20.107483px;}
._2d{margin-left:-18.857036px;}
._f{margin-left:-10.654800px;}
._10{margin-left:-9.502200px;}
._32{margin-left:-6.847200px;}
._5{margin-left:-5.728200px;}
._3{margin-left:-4.536000px;}
._6{margin-left:-3.372000px;}
._1{margin-left:-2.152200px;}
._0{margin-left:-1.071000px;}
._2{width:1.428000px;}
._8{width:2.722200px;}
._e{width:3.821400px;}
._c{width:4.950000px;}
._d{width:6.900000px;}
._9{width:8.278200px;}
._a{width:9.628200px;}
._11{width:11.143800px;}
._b{width:12.624000px;}
._34{width:14.493600px;}
._7{width:15.562800px;}
._12{width:17.406000px;}
._35{width:24.106200px;}
._36{width:25.357800px;}
._4{width:36.624000px;}
._33{width:43.156200px;}
.fc7{color:rgb(33,29,29);}
.fc6{color:rgb(16,15,13);}
.fc5{color:rgb(17,15,13);}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs20{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs11{font-size:38.691014px;}
.fs13{font-size:41.957940px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs12{font-size:43.527616px;}
.fsf{font-size:43.527620px;}
.fsd{font-size:43.528200px;}
.fsc{font-size:43.528394px;}
.fse{font-size:43.528486px;}
.fs10{font-size:43.528542px;}
.fs1c{font-size:43.528800px;}
.fsa{font-size:47.877600px;}
.fs0{font-size:48.000000px;}
.fs16{font-size:48.365400px;}
.fs9{font-size:52.665000px;}
.fs15{font-size:53.201400px;}
.fs6{font-size:54.000000px;}
.fsb{font-size:58.038000px;}
.fs7{font-size:60.000000px;}
.fs1b{font-size:62.874600px;}
.fs2{font-size:66.000000px;}
.fs14{font-size:67.711200px;}
.fs8{font-size:72.000000px;}
.fs17{font-size:72.547800px;}
.fs1a{font-size:77.383800px;}
.fs19{font-size:87.056941px;}
.fs1d{font-size:94.867449px;}
.fs1{font-size:102.000000px;}
.fs1e{font-size:103.508572px;}
.fs1f{font-size:110.025792px;}
.fs18{font-size:116.077288px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y40{bottom:71.212050px;}
.y41{bottom:75.036150px;}
.y9d{bottom:113.078700px;}
.y7d{bottom:113.078850px;}
.y2c{bottom:117.212550px;}
.yb{bottom:117.875550px;}
.y4e{bottom:120.500850px;}
.ya{bottom:132.275550px;}
.y9c{bottom:134.078700px;}
.y7c{bottom:134.078850px;}
.yd3{bottom:134.586300px;}
.y2b{bottom:138.212550px;}
.y4d{bottom:140.300850px;}
.y9{bottom:146.675550px;}
.yd2{bottom:154.386300px;}
.y9b{bottom:155.078700px;}
.y7b{bottom:155.078850px;}
.y2a{bottom:159.212550px;}
.y4c{bottom:160.100850px;}
.y8{bottom:161.075550px;}
.yd1{bottom:174.186300px;}
.y7{bottom:175.475550px;}
.y9a{bottom:176.078700px;}
.y7a{bottom:176.078850px;}
.y4b{bottom:179.900850px;}
.y29{bottom:180.212550px;}
.yd0{bottom:193.986300px;}
.yb2{bottom:197.078700px;}
.y79{bottom:197.078850px;}
.y4a{bottom:199.700850px;}
.y28{bottom:201.212550px;}
.y99{bottom:211.440900px;}
.y3d{bottom:213.792600px;}
.y126{bottom:214.741500px;}
.yb1{bottom:218.078700px;}
.y78{bottom:218.078850px;}
.y49{bottom:219.500850px;}
.y27{bottom:222.212550px;}
.y3c{bottom:231.792600px;}
.yb0{bottom:239.078700px;}
.y77{bottom:239.078850px;}
.y48{bottom:239.300850px;}
.y26{bottom:243.212550px;}
.y3b{bottom:249.792600px;}
.y47{bottom:259.100850px;}
.y98{bottom:260.078700px;}
.y76{bottom:260.078850px;}
.y25{bottom:264.212550px;}
.y3a{bottom:267.792600px;}
.y12a{bottom:269.882850px;}
.y46{bottom:278.900850px;}
.y97{bottom:281.078700px;}
.y75{bottom:281.078850px;}
.y24{bottom:285.212550px;}
.y39{bottom:285.792600px;}
.yd4{bottom:285.969900px;}
.yd5{bottom:286.405185px;}
.y129{bottom:286.555800px;}
.y45{bottom:298.700850px;}
.y96{bottom:302.078700px;}
.y74{bottom:302.078850px;}
.y38{bottom:303.792600px;}
.y23{bottom:306.212550px;}
.y151{bottom:307.529250px;}
.y44{bottom:318.500850px;}
.y37{bottom:321.792600px;}
.y95{bottom:323.078700px;}
.y73{bottom:323.078850px;}
.y22{bottom:327.212550px;}
.yb6{bottom:328.530150px;}
.y10f{bottom:335.615736px;}
.y43{bottom:338.300850px;}
.y36{bottom:339.792600px;}
.y94{bottom:344.078700px;}
.y72{bottom:344.078850px;}
.y21{bottom:348.212550px;}
.yb5{bottom:348.330300px;}
.y10e{bottom:350.126418px;}
.y35{bottom:357.792600px;}
.y10d{bottom:364.637100px;}
.y93{bottom:365.078700px;}
.y71{bottom:365.078850px;}
.yb4{bottom:368.130300px;}
.y20{bottom:369.212550px;}
.y110{bottom:375.264150px;}
.y34{bottom:375.792600px;}
.y92{bottom:386.078700px;}
.y70{bottom:386.078850px;}
.yb3{bottom:387.930150px;}
.y1f{bottom:390.212550px;}
.y150{bottom:391.529250px;}
.y103{bottom:398.424600px;}
.y10c{bottom:398.771850px;}
.y155{bottom:399.513600px;}
.y91{bottom:407.078700px;}
.y6f{bottom:407.078850px;}
.y33{bottom:410.800500px;}
.y1e{bottom:411.212550px;}
.yca{bottom:415.021050px;}
.y90{bottom:428.078700px;}
.y6e{bottom:428.078850px;}
.y32{bottom:428.800500px;}
.yf9{bottom:430.030050px;}
.y105{bottom:430.382122px;}
.y154{bottom:431.811150px;}
.y1d{bottom:432.212550px;}
.yc8{bottom:435.342300px;}
.ycd{bottom:435.857850px;}
.y31{bottom:446.800500px;}
.y8f{bottom:449.078700px;}
.y6d{bottom:449.078850px;}
.yf8{bottom:451.211400px;}
.y104{bottom:451.558800px;}
.y12f{bottom:452.232000px;}
.y1c{bottom:453.212550px;}
.yc9{bottom:455.666341px;}
.yce{bottom:456.181891px;}
.y124{bottom:456.908700px;}
.y8e{bottom:470.078700px;}
.y6c{bottom:470.078850px;}
.y1b{bottom:474.212550px;}
.ycc{bottom:477.567150px;}
.y11a{bottom:477.926550px;}
.y11b{bottom:478.262916px;}
.yc7{bottom:478.380600px;}
.y30{bottom:481.808400px;}
.yfa{bottom:483.255600px;}
.y106{bottom:483.603000px;}
.y111{bottom:484.867500px;}
.y112{bottom:485.315988px;}
.y12d{bottom:487.994550px;}
.y8d{bottom:491.078700px;}
.y6b{bottom:491.078850px;}
.y1a{bottom:495.212550px;}
.y2f{bottom:499.808400px;}
.y12c{bottom:500.295750px;}
.yfc{bottom:501.308550px;}
.y108{bottom:501.650347px;}
.y138{bottom:511.296450px;}
.y119{bottom:511.605055px;}
.y139{bottom:511.662990px;}
.y8c{bottom:512.078700px;}
.y6a{bottom:512.078850px;}
.yfb{bottom:512.819850px;}
.y107{bottom:513.168450px;}
.y19{bottom:516.212550px;}
.y14f{bottom:517.529250px;}
.y2e{bottom:517.808400px;}
.y12e{bottom:518.420400px;}
.y8b{bottom:533.078700px;}
.y69{bottom:533.078850px;}
.y13b{bottom:534.763596px;}
.y13a{bottom:535.013550px;}
.y118{bottom:535.108377px;}
.y2d{bottom:535.808400px;}
.y100{bottom:543.565050px;}
.y109{bottom:543.905559px;}
.y18{bottom:551.100300px;}
.y8a{bottom:554.078700px;}
.y68{bottom:554.078850px;}
.y13c{bottom:557.598600px;}
.y13d{bottom:557.917430px;}
.y117{bottom:558.611700px;}
.y113{bottom:559.204200px;}
.y114{bottom:559.652688px;}
.yfd{bottom:565.106850px;}
.yfe{bottom:565.452659px;}
.y11c{bottom:569.762400px;}
.y11d{bottom:570.098766px;}
.y89{bottom:575.078700px;}
.y67{bottom:575.078850px;}
.y122{bottom:592.096500px;}
.y123{bottom:592.432866px;}
.y88{bottom:596.078700px;}
.y66{bottom:596.078850px;}
.y12b{bottom:597.639000px;}
.y115{bottom:600.204000px;}
.y116{bottom:600.652488px;}
.y14e{bottom:601.529250px;}
.y11e{bottom:613.798200px;}
.y101{bottom:613.884000px;}
.y11f{bottom:614.134566px;}
.y10a{bottom:614.224509px;}
.y87{bottom:617.078700px;}
.y65{bottom:617.078850px;}
.y17{bottom:631.627950px;}
.y128{bottom:636.651900px;}
.y86{bottom:638.078700px;}
.y64{bottom:638.078850px;}
.y127{bottom:640.089150px;}
.ycb{bottom:656.790150px;}
.ycf{bottom:656.828400px;}
.y85{bottom:659.078700px;}
.y63{bottom:659.078850px;}
.y120{bottom:659.539350px;}
.y121{bottom:659.707533px;}
.y14d{bottom:664.529250px;}
.y16{bottom:672.687750px;}
.y84{bottom:680.078700px;}
.y62{bottom:680.078850px;}
.y102{bottom:686.272500px;}
.y10b{bottom:686.618314px;}
.y15{bottom:692.487750px;}
.y83{bottom:701.078700px;}
.y61{bottom:701.078850px;}
.y14{bottom:712.287750px;}
.y153{bottom:714.513600px;}
.y82{bottom:722.078700px;}
.y60{bottom:722.078850px;}
.y14c{bottom:727.936950px;}
.y13{bottom:732.087750px;}
.y81{bottom:743.078700px;}
.y5f{bottom:743.078850px;}
.y152{bottom:746.811150px;}
.y12{bottom:751.887750px;}
.ybc{bottom:756.100950px;}
.y14b{bottom:757.440900px;}
.y80{bottom:764.078700px;}
.y5e{bottom:764.078850px;}
.y11{bottom:771.687750px;}
.ybb{bottom:775.553550px;}
.y7f{bottom:785.078700px;}
.y5d{bottom:785.078850px;}
.y10{bottom:791.487750px;}
.yc0{bottom:792.243300px;}
.yc5{bottom:794.400900px;}
.yba{bottom:795.007350px;}
.y14a{bottom:806.078700px;}
.y5c{bottom:806.078850px;}
.yf{bottom:811.287750px;}
.ybf{bottom:812.564100px;}
.yb9{bottom:814.460100px;}
.yc3{bottom:814.722150px;}
.y7e{bottom:817.759800px;}
.y149{bottom:827.078700px;}
.y5b{bottom:827.078850px;}
.ye{bottom:831.087750px;}
.ybe{bottom:832.885350px;}
.yb8{bottom:833.912700px;}
.yc4{bottom:835.046191px;}
.yd6{bottom:836.478900px;}
.y148{bottom:848.078700px;}
.y5a{bottom:848.078850px;}
.yd9{bottom:853.806771px;}
.y125{bottom:854.831738px;}
.yb7{bottom:856.430400px;}
.yc2{bottom:856.431000px;}
.yd{bottom:862.185300px;}
.yab{bottom:863.420250px;}
.yd7{bottom:866.184450px;}
.y59{bottom:869.078850px;}
.yaa{bottom:876.920250px;}
.yd8{bottom:883.081500px;}
.y147{bottom:883.440900px;}
.yaf{bottom:890.078850px;}
.ydc{bottom:892.529280px;}
.ya9{bottom:896.700750px;}
.y58{bottom:904.441050px;}
.yae{bottom:911.078850px;}
.ydf{bottom:914.168119px;}
.yf2{bottom:915.190650px;}
.ya8{bottom:916.481250px;}
.ye2{bottom:930.103059px;}
.y146{bottom:932.078700px;}
.yad{bottom:932.078850px;}
.yf4{bottom:932.876666px;}
.ye1{bottom:935.250988px;}
.ye8{bottom:936.032975px;}
.ya7{bottom:936.261750px;}
.y136{bottom:937.187581px;}
.yed{bottom:937.633493px;}
.y6{bottom:941.466750px;}
.ye0{bottom:943.037100px;}
.yf3{bottom:944.100014px;}
.ydb{bottom:946.668327px;}
.ye6{bottom:949.343211px;}
.yeb{bottom:952.273500px;}
.yec{bottom:953.053200px;}
.y145{bottom:953.078700px;}
.y57{bottom:953.078850px;}
.yef{bottom:953.379130px;}
.y135{bottom:954.598982px;}
.ya6{bottom:956.042250px;}
.ye7{bottom:956.833173px;}
.y5{bottom:959.466750px;}
.yf6{bottom:961.148564px;}
.yda{bottom:962.602058px;}
.y137{bottom:964.884750px;}
.yee{bottom:964.988888px;}
.yf1{bottom:970.225200px;}
.y134{bottom:972.010381px;}
.y144{bottom:974.078700px;}
.y56{bottom:974.078850px;}
.ya5{bottom:975.822750px;}
.y4{bottom:977.466750px;}
.yf0{bottom:979.179272px;}
.yf7{bottom:983.889303px;}
.yac{bottom:988.441050px;}
.ye9{bottom:994.855987px;}
.y143{bottom:995.078700px;}
.y55{bottom:995.078850px;}
.ya4{bottom:995.603250px;}
.ya3{bottom:1009.103250px;}
.y3{bottom:1012.474800px;}
.yea{bottom:1013.710350px;}
.y142{bottom:1016.078700px;}
.y54{bottom:1016.078850px;}
.ye3{bottom:1017.491250px;}
.ya2{bottom:1028.883750px;}
.y141{bottom:1037.078700px;}
.y53{bottom:1037.078850px;}
.ybd{bottom:1037.704950px;}
.yc1{bottom:1037.802750px;}
.yc6{bottom:1037.879850px;}
.yf5{bottom:1040.156626px;}
.ya1{bottom:1048.664400px;}
.yde{bottom:1048.795950px;}
.y2{bottom:1049.282550px;}
.ydd{bottom:1050.819600px;}
.y140{bottom:1058.078700px;}
.y52{bottom:1058.078850px;}
.ya0{bottom:1068.444750px;}
.ye4{bottom:1074.671362px;}
.ye5{bottom:1076.294523px;}
.y13f{bottom:1079.078700px;}
.y51{bottom:1079.078850px;}
.yff{bottom:1088.012850px;}
.y9f{bottom:1088.225250px;}
.y133{bottom:1089.203613px;}
.y50{bottom:1100.078850px;}
.y132{bottom:1106.615013px;}
.y130{bottom:1108.733400px;}
.yc{bottom:1109.815500px;}
.y13e{bottom:1111.570800px;}
.y9e{bottom:1119.282750px;}
.y4f{bottom:1121.078850px;}
.y131{bottom:1124.026413px;}
.y3f{bottom:1155.615300px;}
.y3e{bottom:1175.115300px;}
.y42{bottom:1178.691750px;}
.h1a{height:28.187008px;}
.h1c{height:30.567015px;}
.h1b{height:31.710548px;}
.h18{height:31.710551px;}
.h16{height:31.710974px;}
.h15{height:31.711115px;}
.h17{height:31.711182px;}
.h19{height:31.711223px;}
.h26{height:31.711411px;}
.h11{height:33.694336px;}
.h6{height:34.446094px;}
.h13{height:34.879580px;}
.h1f{height:35.234950px;}
.h10{height:36.492188px;}
.h2{height:38.039062px;}
.hf{height:38.273438px;}
.h12{height:38.341560px;}
.h5{height:38.531250px;}
.h1e{height:38.758051px;}
.h7{height:40.500000px;}
.he{height:41.053711px;}
.h14{height:42.281590px;}
.hd{height:42.793945px;}
.hc{height:43.057617px;}
.h9{height:43.321289px;}
.h8{height:45.615234px;}
.h25{height:45.805129px;}
.hb{height:48.134766px;}
.h1d{height:49.328667px;}
.h2a{height:50.176758px;}
.h20{height:52.852206px;}
.h4{height:52.948242px;}
.ha{height:54.738281px;}
.h24{height:56.375307px;}
.h22{height:63.422342px;}
.h27{height:69.112419px;}
.h28{height:75.407612px;}
.h3{height:77.545898px;}
.h29{height:80.155509px;}
.h21{height:84.564118px;}
.h23{height:927.336000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:710.929500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xc{left:108.286950px;}
.xd{left:112.251900px;}
.xe{left:115.988400px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x10{left:126.427800px;}
.x71{left:143.443050px;}
.xf{left:144.745950px;}
.x12{left:147.063046px;}
.x11{left:167.722230px;}
.x85{left:171.832038px;}
.x13{left:188.357476px;}
.x7f{left:191.720250px;}
.x84{left:193.306098px;}
.x7e{left:194.609400px;}
.x14{left:209.016660px;}
.x35{left:215.681700px;}
.x37{left:226.000050px;}
.x15{left:229.675844px;}
.x4d{left:245.479950px;}
.x39{left:246.635296px;}
.x36{left:248.883000px;}
.x16{left:250.335029px;}
.x4f{left:261.024565px;}
.x38{left:267.294480px;}
.x18{left:270.970274px;}
.x72{left:274.175513px;}
.x4e{left:275.273700px;}
.x3a{left:287.929726px;}
.x17{left:291.629459px;}
.x4{left:300.189000px;}
.x83{left:306.784897px;}
.x3b{left:308.588910px;}
.x1a{left:312.264704px;}
.x6c{left:314.040450px;}
.x7d{left:315.468750px;}
.x5{left:317.196900px;}
.x50{left:324.777268px;}
.x3c{left:329.248094px;}
.x19{left:332.923889px;}
.x70{left:337.345950px;}
.x51{left:338.859707px;}
.x82{left:343.798632px;}
.x3d{left:349.907279px;}
.x52{left:351.578235px;}
.x1b{left:355.987650px;}
.x68{left:361.033950px;}
.x1d{left:366.212250px;}
.x3f{left:370.554494px;}
.x54{left:376.777650px;}
.x3{left:379.689900px;}
.x78{left:384.053850px;}
.x1f{left:386.859465px;}
.x1c{left:389.401800px;}
.x3e{left:391.213678px;}
.x55{left:393.314163px;}
.x76{left:400.647000px;}
.x1e{left:407.506680px;}
.x41{left:411.848924px;}
.x53{left:421.796100px;}
.x20{left:428.153895px;}
.x40{left:432.508108px;}
.x6a{left:433.663050px;}
.x5c{left:447.176971px;}
.x21{left:448.813079px;}
.x5b{left:463.446964px;}
.x69{left:468.133350px;}
.x22{left:469.472264px;}
.x73{left:473.449050px;}
.x59{left:476.634061px;}
.x81{left:479.375400px;}
.x23{left:490.131448px;}
.x5a{left:491.448099px;}
.x6d{left:493.122900px;}
.x42{left:496.382700px;}
.x56{left:505.319250px;}
.x43{left:506.403150px;}
.x25{left:510.778663px;}
.x80{left:519.692550px;}
.x57{left:523.655292px;}
.x6b{left:526.034100px;}
.x45{left:527.038396px;}
.x24{left:531.425878px;}
.x5d{left:541.616250px;}
.x77{left:542.970750px;}
.x44{left:547.697580px;}
.x6e{left:549.107297px;}
.x5e{left:550.178700px;}
.x27{left:552.073093px;}
.x58{left:559.825217px;}
.x46{left:568.332826px;}
.x5f{left:569.883000px;}
.x26{left:572.732278px;}
.x60{left:582.666946px;}
.x47{left:588.992010px;}
.x28{left:595.874400px;}
.x61{left:597.413546px;}
.x2a{left:606.097800px;}
.x6f{left:608.426858px;}
.x48{left:609.651194px;}
.x62{left:621.430876px;}
.x2c{left:626.733046px;}
.x29{left:630.244500px;}
.x64{left:635.277300px;}
.x2b{left:647.392230px;}
.x4a{left:650.945624px;}
.xa{left:652.459950px;}
.x86{left:655.629300px;}
.x75{left:656.948544px;}
.x63{left:660.638677px;}
.x74{left:664.738790px;}
.x2d{left:668.027476px;}
.x49{left:671.604809px;}
.x65{left:676.864967px;}
.x9{left:683.848650px;}
.x2e{left:688.686660px;}
.x4c{left:692.240054px;}
.x7b{left:703.471500px;}
.x66{left:707.479067px;}
.x2f{left:709.345844px;}
.x4b{left:712.899239px;}
.x67{left:723.635543px;}
.x30{left:729.993059px;}
.x7a{left:747.639601px;}
.x32{left:750.640274px;}
.x79{left:752.906550px;}
.x31{left:771.299459px;}
.x7c{left:789.805650px;}
.x34{left:791.934704px;}
.x1{left:807.210300px;}
.x33{left:812.593889px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.v1{vertical-align:19.536000pt;}
.ls15{letter-spacing:-5.158991pt;}
.ls13{letter-spacing:-3.869197pt;}
.ls14{letter-spacing:-3.791813pt;}
.ls16{letter-spacing:-3.439280pt;}
.ls17{letter-spacing:-3.370494pt;}
.ls12{letter-spacing:-3.159860pt;}
.lsd{letter-spacing:-3.009387pt;}
.lse{letter-spacing:-2.949199pt;}
.ls19{letter-spacing:-2.794427pt;}
.ls18{letter-spacing:-2.738538pt;}
.lsc{letter-spacing:-2.579467pt;}
.lsb{letter-spacing:-2.527877pt;}
.ls10{letter-spacing:-2.364507pt;}
.lsf{letter-spacing:-2.317217pt;}
.ls11{letter-spacing:-2.149573pt;}
.ls1b{letter-spacing:-1.934613pt;}
.ls1a{letter-spacing:-1.895921pt;}
.ls6{letter-spacing:-0.816000pt;}
.ls9{letter-spacing:-0.702200pt;}
.lsa{letter-spacing:-0.638368pt;}
.ls4{letter-spacing:-0.614400pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.053333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.022933pt;}
.ls1c{letter-spacing:0.373333pt;}
.ls7{letter-spacing:1.066667pt;}
.ls0{letter-spacing:38.383435pt;}
.ws44{word-spacing:-28.683988pt;}
.ws43{word-spacing:-21.512737pt;}
.ws45{word-spacing:-19.122397pt;}
.ws41{word-spacing:-17.927367pt;}
.ws3e{word-spacing:-16.732190pt;}
.ws3{word-spacing:-15.936000pt;}
.ws46{word-spacing:-15.537012pt;}
.ws5a{word-spacing:-14.608000pt;}
.ws35{word-spacing:-14.341835pt;}
.ws16{word-spacing:-14.293333pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3f{word-spacing:-13.146657pt;}
.ws17{word-spacing:-13.066667pt;}
.ws2f{word-spacing:-11.952000pt;}
.ws40{word-spacing:-11.951628pt;}
.ws5b{word-spacing:-11.904000pt;}
.ws7{word-spacing:-10.800000pt;}
.ws47{word-spacing:-10.756450pt;}
.ws3a{word-spacing:-10.756386pt;}
.ws38{word-spacing:-10.756373pt;}
.ws36{word-spacing:-10.756350pt;}
.ws37{word-spacing:-10.756302pt;}
.ws39{word-spacing:-10.756158pt;}
.ws3c{word-spacing:-10.756158pt;}
.ws4{word-spacing:-10.464000pt;}
.ws3d{word-spacing:-10.368273pt;}
.ws6{word-spacing:-9.984000pt;}
.ws0{word-spacing:-9.685333pt;}
.ws5{word-spacing:-9.648000pt;}
.ws14{word-spacing:-9.600000pt;}
.ws3b{word-spacing:-9.560979pt;}
.ws8{word-spacing:-9.301333pt;}
.ws21{word-spacing:-9.146667pt;}
.ws1{word-spacing:-8.371200pt;}
.ws5f{word-spacing:-6.940032pt;}
.wsc{word-spacing:-2.784000pt;}
.ws29{word-spacing:-2.613333pt;}
.ws66{word-spacing:-2.592000pt;}
.ws1b{word-spacing:-2.453333pt;}
.ws5e{word-spacing:-1.728000pt;}
.ws2b{word-spacing:-1.333333pt;}
.wsd{word-spacing:-1.248000pt;}
.ws27{word-spacing:-1.120000pt;}
.ws19{word-spacing:-1.066667pt;}
.ws15{word-spacing:-1.056000pt;}
.ws33{word-spacing:-0.720000pt;}
.ws48{word-spacing:-0.624000pt;}
.ws67{word-spacing:-0.373333pt;}
.ws32{word-spacing:-0.336000pt;}
.wsa{word-spacing:-0.192000pt;}
.ws9{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.048000pt;}
.ws28{word-spacing:0.053333pt;}
.ws65{word-spacing:0.240000pt;}
.wsf{word-spacing:0.480000pt;}
.ws10{word-spacing:0.533333pt;}
.wsb{word-spacing:0.614400pt;}
.ws34{word-spacing:0.638368pt;}
.ws18{word-spacing:0.640000pt;}
.ws5c{word-spacing:0.746667pt;}
.ws13{word-spacing:0.816000pt;}
.ws42{word-spacing:0.945803pt;}
.ws2c{word-spacing:1.493333pt;}
.ws2a{word-spacing:1.600000pt;}
.ws25{word-spacing:1.706667pt;}
.ws22{word-spacing:1.866667pt;}
.ws58{word-spacing:1.895921pt;}
.ws59{word-spacing:1.934613pt;}
.ws26{word-spacing:2.133333pt;}
.ws4f{word-spacing:2.149573pt;}
.ws4d{word-spacing:2.317217pt;}
.ws4e{word-spacing:2.364507pt;}
.ws49{word-spacing:2.527877pt;}
.ws4a{word-spacing:2.579467pt;}
.ws2e{word-spacing:2.666667pt;}
.ws56{word-spacing:2.738538pt;}
.ws57{word-spacing:2.794427pt;}
.ws4c{word-spacing:2.949199pt;}
.ws4b{word-spacing:3.009387pt;}
.ws62{word-spacing:3.120000pt;}
.ws50{word-spacing:3.159860pt;}
.ws1e{word-spacing:3.360000pt;}
.ws55{word-spacing:3.370494pt;}
.ws1d{word-spacing:3.413333pt;}
.ws54{word-spacing:3.439280pt;}
.ws68{word-spacing:3.552000pt;}
.ws52{word-spacing:3.791813pt;}
.ws1c{word-spacing:3.840000pt;}
.ws51{word-spacing:3.869197pt;}
.ws30{word-spacing:3.893333pt;}
.ws20{word-spacing:4.053333pt;}
.ws12{word-spacing:4.213333pt;}
.ws31{word-spacing:4.640000pt;}
.ws23{word-spacing:4.693333pt;}
.ws1a{word-spacing:4.800000pt;}
.ws53{word-spacing:5.158991pt;}
.ws11{word-spacing:5.226667pt;}
.ws61{word-spacing:6.288000pt;}
.ws1f{word-spacing:6.293333pt;}
.ws24{word-spacing:6.933333pt;}
.ws60{word-spacing:7.440000pt;}
.wse{word-spacing:10.464000pt;}
.ws64{word-spacing:10.992000pt;}
.ws63{word-spacing:11.520000pt;}
.ws2d{word-spacing:16.426667pt;}
._1c{margin-left:-54.206399pt;}
._2b{margin-left:-53.279126pt;}
._27{margin-left:-52.001921pt;}
._29{margin-left:-50.876512pt;}
._2e{margin-left:-49.017239pt;}
._1e{margin-left:-47.203778pt;}
._1b{margin-left:-46.236827pt;}
._2c{margin-left:-45.116011pt;}
._13{margin-left:-43.721853pt;}
._1f{margin-left:-42.678133pt;}
._16{margin-left:-41.477723pt;}
._1a{margin-left:-40.239582pt;}
._2f{margin-left:-39.236184pt;}
._17{margin-left:-38.072835pt;}
._18{margin-left:-36.873386pt;}
._19{margin-left:-35.248326pt;}
._20{margin-left:-33.969571pt;}
._14{margin-left:-32.539893pt;}
._24{margin-left:-31.535825pt;}
._15{margin-left:-30.643989pt;}
._22{margin-left:-29.714423pt;}
._28{margin-left:-28.551398pt;}
._26{margin-left:-26.890874pt;}
._21{margin-left:-25.226162pt;}
._25{margin-left:-24.182441pt;}
._2a{margin-left:-22.398179pt;}
._23{margin-left:-21.397932pt;}
._31{margin-left:-20.470394pt;}
._1d{margin-left:-19.422422pt;}
._30{margin-left:-17.873318pt;}
._2d{margin-left:-16.761810pt;}
._f{margin-left:-9.470933pt;}
._10{margin-left:-8.446400pt;}
._32{margin-left:-6.086400pt;}
._5{margin-left:-5.091733pt;}
._3{margin-left:-4.032000pt;}
._6{margin-left:-2.997333pt;}
._1{margin-left:-1.913067pt;}
._0{margin-left:-0.952000pt;}
._2{width:1.269333pt;}
._8{width:2.419733pt;}
._e{width:3.396800pt;}
._c{width:4.400000pt;}
._d{width:6.133333pt;}
._9{width:7.358400pt;}
._a{width:8.558400pt;}
._11{width:9.905600pt;}
._b{width:11.221333pt;}
._34{width:12.883200pt;}
._7{width:13.833600pt;}
._12{width:15.472000pt;}
._35{width:21.427733pt;}
._36{width:22.540267pt;}
._4{width:32.554667pt;}
._33{width:38.361067pt;}
.fs20{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs11{font-size:34.392013pt;}
.fs13{font-size:37.295946pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs12{font-size:38.691214pt;}
.fsf{font-size:38.691218pt;}
.fsd{font-size:38.691733pt;}
.fsc{font-size:38.691906pt;}
.fse{font-size:38.691988pt;}
.fs10{font-size:38.692037pt;}
.fs1c{font-size:38.692267pt;}
.fsa{font-size:42.557867pt;}
.fs0{font-size:42.666667pt;}
.fs16{font-size:42.991467pt;}
.fs9{font-size:46.813333pt;}
.fs15{font-size:47.290133pt;}
.fs6{font-size:48.000000pt;}
.fsb{font-size:51.589333pt;}
.fs7{font-size:53.333333pt;}
.fs1b{font-size:55.888533pt;}
.fs2{font-size:58.666667pt;}
.fs14{font-size:60.187733pt;}
.fs8{font-size:64.000000pt;}
.fs17{font-size:64.486933pt;}
.fs1a{font-size:68.785600pt;}
.fs19{font-size:77.383948pt;}
.fs1d{font-size:84.326621pt;}
.fs1{font-size:90.666667pt;}
.fs1e{font-size:92.007619pt;}
.fs1f{font-size:97.800704pt;}
.fs18{font-size:103.179811pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y40{bottom:63.299600pt;}
.y41{bottom:66.698800pt;}
.y9d{bottom:100.514400pt;}
.y7d{bottom:100.514533pt;}
.y2c{bottom:104.188933pt;}
.yb{bottom:104.778267pt;}
.y4e{bottom:107.111867pt;}
.ya{bottom:117.578267pt;}
.y9c{bottom:119.181067pt;}
.y7c{bottom:119.181200pt;}
.yd3{bottom:119.632267pt;}
.y2b{bottom:122.855600pt;}
.y4d{bottom:124.711867pt;}
.y9{bottom:130.378267pt;}
.yd2{bottom:137.232267pt;}
.y9b{bottom:137.847733pt;}
.y7b{bottom:137.847867pt;}
.y2a{bottom:141.522267pt;}
.y4c{bottom:142.311867pt;}
.y8{bottom:143.178267pt;}
.yd1{bottom:154.832267pt;}
.y7{bottom:155.978267pt;}
.y9a{bottom:156.514400pt;}
.y7a{bottom:156.514533pt;}
.y4b{bottom:159.911867pt;}
.y29{bottom:160.188933pt;}
.yd0{bottom:172.432267pt;}
.yb2{bottom:175.181067pt;}
.y79{bottom:175.181200pt;}
.y4a{bottom:177.511867pt;}
.y28{bottom:178.855600pt;}
.y99{bottom:187.947467pt;}
.y3d{bottom:190.037867pt;}
.y126{bottom:190.881333pt;}
.yb1{bottom:193.847733pt;}
.y78{bottom:193.847867pt;}
.y49{bottom:195.111867pt;}
.y27{bottom:197.522267pt;}
.y3c{bottom:206.037867pt;}
.yb0{bottom:212.514400pt;}
.y77{bottom:212.514533pt;}
.y48{bottom:212.711867pt;}
.y26{bottom:216.188933pt;}
.y3b{bottom:222.037867pt;}
.y47{bottom:230.311867pt;}
.y98{bottom:231.181067pt;}
.y76{bottom:231.181200pt;}
.y25{bottom:234.855600pt;}
.y3a{bottom:238.037867pt;}
.y12a{bottom:239.895867pt;}
.y46{bottom:247.911867pt;}
.y97{bottom:249.847733pt;}
.y75{bottom:249.847867pt;}
.y24{bottom:253.522267pt;}
.y39{bottom:254.037867pt;}
.yd4{bottom:254.195467pt;}
.yd5{bottom:254.582387pt;}
.y129{bottom:254.716267pt;}
.y45{bottom:265.511867pt;}
.y96{bottom:268.514400pt;}
.y74{bottom:268.514533pt;}
.y38{bottom:270.037867pt;}
.y23{bottom:272.188933pt;}
.y151{bottom:273.359333pt;}
.y44{bottom:283.111867pt;}
.y37{bottom:286.037867pt;}
.y95{bottom:287.181067pt;}
.y73{bottom:287.181200pt;}
.y22{bottom:290.855600pt;}
.yb6{bottom:292.026800pt;}
.y10f{bottom:298.325099pt;}
.y43{bottom:300.711867pt;}
.y36{bottom:302.037867pt;}
.y94{bottom:305.847733pt;}
.y72{bottom:305.847867pt;}
.y21{bottom:309.522267pt;}
.yb5{bottom:309.626933pt;}
.y10e{bottom:311.223483pt;}
.y35{bottom:318.037867pt;}
.y10d{bottom:324.121867pt;}
.y93{bottom:324.514400pt;}
.y71{bottom:324.514533pt;}
.yb4{bottom:327.226933pt;}
.y20{bottom:328.188933pt;}
.y110{bottom:333.568133pt;}
.y34{bottom:334.037867pt;}
.y92{bottom:343.181067pt;}
.y70{bottom:343.181200pt;}
.yb3{bottom:344.826800pt;}
.y1f{bottom:346.855600pt;}
.y150{bottom:348.026000pt;}
.y103{bottom:354.155200pt;}
.y10c{bottom:354.463867pt;}
.y155{bottom:355.123200pt;}
.y91{bottom:361.847733pt;}
.y6f{bottom:361.847867pt;}
.y33{bottom:365.156000pt;}
.y1e{bottom:365.522267pt;}
.yca{bottom:368.907600pt;}
.y90{bottom:380.514400pt;}
.y6e{bottom:380.514533pt;}
.y32{bottom:381.156000pt;}
.yf9{bottom:382.248933pt;}
.y105{bottom:382.561886pt;}
.y154{bottom:383.832133pt;}
.y1d{bottom:384.188933pt;}
.yc8{bottom:386.970933pt;}
.ycd{bottom:387.429200pt;}
.y31{bottom:397.156000pt;}
.y8f{bottom:399.181067pt;}
.y6d{bottom:399.181200pt;}
.yf8{bottom:401.076800pt;}
.y104{bottom:401.385600pt;}
.y12f{bottom:401.984000pt;}
.y1c{bottom:402.855600pt;}
.yc9{bottom:405.036748pt;}
.yce{bottom:405.495014pt;}
.y124{bottom:406.141067pt;}
.y8e{bottom:417.847733pt;}
.y6c{bottom:417.847867pt;}
.y1b{bottom:421.522267pt;}
.ycc{bottom:424.504133pt;}
.y11a{bottom:424.823600pt;}
.y11b{bottom:425.122592pt;}
.yc7{bottom:425.227200pt;}
.y30{bottom:428.274133pt;}
.yfa{bottom:429.560533pt;}
.y106{bottom:429.869333pt;}
.y111{bottom:430.993333pt;}
.y112{bottom:431.391989pt;}
.y12d{bottom:433.772933pt;}
.y8d{bottom:436.514400pt;}
.y6b{bottom:436.514533pt;}
.y1a{bottom:440.188933pt;}
.y2f{bottom:444.274133pt;}
.y12c{bottom:444.707333pt;}
.yfc{bottom:445.607600pt;}
.y108{bottom:445.911419pt;}
.y138{bottom:454.485733pt;}
.y119{bottom:454.760049pt;}
.y139{bottom:454.811547pt;}
.y8c{bottom:455.181067pt;}
.y6a{bottom:455.181200pt;}
.yfb{bottom:455.839867pt;}
.y107{bottom:456.149733pt;}
.y19{bottom:458.855600pt;}
.y14f{bottom:460.026000pt;}
.y2e{bottom:460.274133pt;}
.y12e{bottom:460.818133pt;}
.y8b{bottom:473.847733pt;}
.y69{bottom:473.847867pt;}
.y13b{bottom:475.345419pt;}
.y13a{bottom:475.567600pt;}
.y118{bottom:475.651891pt;}
.y2d{bottom:476.274133pt;}
.y100{bottom:483.168933pt;}
.y109{bottom:483.471608pt;}
.y18{bottom:489.866933pt;}
.y8a{bottom:492.514400pt;}
.y68{bottom:492.514533pt;}
.y13c{bottom:495.643200pt;}
.y13d{bottom:495.926605pt;}
.y117{bottom:496.543733pt;}
.y113{bottom:497.070400pt;}
.y114{bottom:497.469056pt;}
.yfd{bottom:502.317200pt;}
.yfe{bottom:502.624586pt;}
.y11c{bottom:506.455467pt;}
.y11d{bottom:506.754459pt;}
.y89{bottom:511.181067pt;}
.y67{bottom:511.181200pt;}
.y122{bottom:526.308000pt;}
.y123{bottom:526.606992pt;}
.y88{bottom:529.847733pt;}
.y66{bottom:529.847867pt;}
.y12b{bottom:531.234667pt;}
.y115{bottom:533.514667pt;}
.y116{bottom:533.913323pt;}
.y14e{bottom:534.692667pt;}
.y11e{bottom:545.598400pt;}
.y101{bottom:545.674667pt;}
.y11f{bottom:545.897392pt;}
.y10a{bottom:545.977342pt;}
.y87{bottom:548.514400pt;}
.y65{bottom:548.514533pt;}
.y17{bottom:561.447067pt;}
.y128{bottom:565.912800pt;}
.y86{bottom:567.181067pt;}
.y64{bottom:567.181200pt;}
.y127{bottom:568.968133pt;}
.ycb{bottom:583.813467pt;}
.ycf{bottom:583.847467pt;}
.y85{bottom:585.847733pt;}
.y63{bottom:585.847867pt;}
.y120{bottom:586.257200pt;}
.y121{bottom:586.406696pt;}
.y14d{bottom:590.692667pt;}
.y16{bottom:597.944667pt;}
.y84{bottom:604.514400pt;}
.y62{bottom:604.514533pt;}
.y102{bottom:610.020000pt;}
.y10b{bottom:610.327391pt;}
.y15{bottom:615.544667pt;}
.y83{bottom:623.181067pt;}
.y61{bottom:623.181200pt;}
.y14{bottom:633.144667pt;}
.y153{bottom:635.123200pt;}
.y82{bottom:641.847733pt;}
.y60{bottom:641.847867pt;}
.y14c{bottom:647.055067pt;}
.y13{bottom:650.744667pt;}
.y81{bottom:660.514400pt;}
.y5f{bottom:660.514533pt;}
.y152{bottom:663.832133pt;}
.y12{bottom:668.344667pt;}
.ybc{bottom:672.089733pt;}
.y14b{bottom:673.280800pt;}
.y80{bottom:679.181067pt;}
.y5e{bottom:679.181200pt;}
.y11{bottom:685.944667pt;}
.ybb{bottom:689.380933pt;}
.y7f{bottom:697.847733pt;}
.y5d{bottom:697.847867pt;}
.y10{bottom:703.544667pt;}
.yc0{bottom:704.216267pt;}
.yc5{bottom:706.134133pt;}
.yba{bottom:706.673200pt;}
.y14a{bottom:716.514400pt;}
.y5c{bottom:716.514533pt;}
.yf{bottom:721.144667pt;}
.ybf{bottom:722.279200pt;}
.yb9{bottom:723.964533pt;}
.yc3{bottom:724.197467pt;}
.y7e{bottom:726.897600pt;}
.y149{bottom:735.181067pt;}
.y5b{bottom:735.181200pt;}
.ye{bottom:738.744667pt;}
.ybe{bottom:740.342533pt;}
.yb8{bottom:741.255733pt;}
.yc4{bottom:742.263281pt;}
.yd6{bottom:743.536800pt;}
.y148{bottom:753.847733pt;}
.y5a{bottom:753.847867pt;}
.yd9{bottom:758.939352pt;}
.y125{bottom:759.850433pt;}
.yb7{bottom:761.271467pt;}
.yc2{bottom:761.272000pt;}
.yd{bottom:766.386933pt;}
.yab{bottom:767.484667pt;}
.yd7{bottom:769.941733pt;}
.y59{bottom:772.514533pt;}
.yaa{bottom:779.484667pt;}
.yd8{bottom:784.961333pt;}
.y147{bottom:785.280800pt;}
.yaf{bottom:791.181200pt;}
.ydc{bottom:793.359360pt;}
.ya9{bottom:797.067333pt;}
.y58{bottom:803.947600pt;}
.yae{bottom:809.847867pt;}
.ydf{bottom:812.593883pt;}
.yf2{bottom:813.502800pt;}
.ya8{bottom:814.650000pt;}
.ye2{bottom:826.758275pt;}
.y146{bottom:828.514400pt;}
.yad{bottom:828.514533pt;}
.yf4{bottom:829.223703pt;}
.ye1{bottom:831.334211pt;}
.ye8{bottom:832.029311pt;}
.ya7{bottom:832.232667pt;}
.y136{bottom:833.055628pt;}
.yed{bottom:833.451994pt;}
.y6{bottom:836.859333pt;}
.ye0{bottom:838.255200pt;}
.yf3{bottom:839.200013pt;}
.ydb{bottom:841.482958pt;}
.ye6{bottom:843.860632pt;}
.yeb{bottom:846.465333pt;}
.yec{bottom:847.158400pt;}
.y145{bottom:847.181067pt;}
.y57{bottom:847.181200pt;}
.yef{bottom:847.448116pt;}
.y135{bottom:848.532428pt;}
.ya6{bottom:849.815333pt;}
.ye7{bottom:850.518376pt;}
.y5{bottom:852.859333pt;}
.yf6{bottom:854.354279pt;}
.yda{bottom:855.646274pt;}
.y137{bottom:857.675333pt;}
.yee{bottom:857.767901pt;}
.yf1{bottom:862.422400pt;}
.y134{bottom:864.009228pt;}
.y144{bottom:865.847733pt;}
.y56{bottom:865.847867pt;}
.ya5{bottom:867.398000pt;}
.y4{bottom:868.859333pt;}
.yf0{bottom:870.381575pt;}
.yf7{bottom:874.568270pt;}
.yac{bottom:878.614267pt;}
.ye9{bottom:884.316433pt;}
.y143{bottom:884.514400pt;}
.y55{bottom:884.514533pt;}
.ya4{bottom:884.980667pt;}
.ya3{bottom:896.980667pt;}
.y3{bottom:899.977600pt;}
.yea{bottom:901.075867pt;}
.y142{bottom:903.181067pt;}
.y54{bottom:903.181200pt;}
.ye3{bottom:904.436667pt;}
.ya2{bottom:914.563333pt;}
.y141{bottom:921.847733pt;}
.y53{bottom:921.847867pt;}
.ybd{bottom:922.404400pt;}
.yc1{bottom:922.491333pt;}
.yc6{bottom:922.559867pt;}
.yf5{bottom:924.583668pt;}
.ya1{bottom:932.146133pt;}
.yde{bottom:932.263067pt;}
.y2{bottom:932.695600pt;}
.ydd{bottom:934.061867pt;}
.y140{bottom:940.514400pt;}
.y52{bottom:940.514533pt;}
.ya0{bottom:949.728667pt;}
.ye4{bottom:955.263433pt;}
.ye5{bottom:956.706243pt;}
.y13f{bottom:959.181067pt;}
.y51{bottom:959.181200pt;}
.yff{bottom:967.122533pt;}
.y9f{bottom:967.311333pt;}
.y133{bottom:968.180989pt;}
.y50{bottom:977.847867pt;}
.y132{bottom:983.657789pt;}
.y130{bottom:985.540800pt;}
.yc{bottom:986.502667pt;}
.y13e{bottom:988.062933pt;}
.y9e{bottom:994.918000pt;}
.y4f{bottom:996.514533pt;}
.y131{bottom:999.134589pt;}
.y3f{bottom:1027.213600pt;}
.y3e{bottom:1044.546933pt;}
.y42{bottom:1047.726000pt;}
.h1a{height:25.055118pt;}
.h1c{height:27.170680pt;}
.h1b{height:28.187154pt;}
.h18{height:28.187156pt;}
.h16{height:28.187532pt;}
.h15{height:28.187658pt;}
.h17{height:28.187718pt;}
.h19{height:28.187754pt;}
.h26{height:28.187921pt;}
.h11{height:29.950521pt;}
.h6{height:30.618750pt;}
.h13{height:31.004071pt;}
.h1f{height:31.319955pt;}
.h10{height:32.437500pt;}
.h2{height:33.812500pt;}
.hf{height:34.020833pt;}
.h12{height:34.081387pt;}
.h5{height:34.250000pt;}
.h1e{height:34.451601pt;}
.h7{height:36.000000pt;}
.he{height:36.492188pt;}
.h14{height:37.583635pt;}
.hd{height:38.039062pt;}
.hc{height:38.273438pt;}
.h9{height:38.507812pt;}
.h8{height:40.546875pt;}
.h25{height:40.715670pt;}
.hb{height:42.786458pt;}
.h1d{height:43.847704pt;}
.h2a{height:44.601562pt;}
.h20{height:46.979739pt;}
.h4{height:47.065104pt;}
.ha{height:48.656250pt;}
.h24{height:50.111384pt;}
.h22{height:56.375415pt;}
.h27{height:61.433261pt;}
.h28{height:67.028988pt;}
.h3{height:68.929688pt;}
.h29{height:71.249341pt;}
.h21{height:75.168105pt;}
.h23{height:824.298667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:631.937333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xc{left:96.255067pt;}
.xd{left:99.779467pt;}
.xe{left:103.100800pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x10{left:112.380267pt;}
.x71{left:127.504933pt;}
.xf{left:128.663067pt;}
.x12{left:130.722707pt;}
.x11{left:149.086427pt;}
.x85{left:152.739589pt;}
.x13{left:167.428867pt;}
.x7f{left:170.418000pt;}
.x84{left:171.827643pt;}
.x7e{left:172.986133pt;}
.x14{left:185.792587pt;}
.x35{left:191.717067pt;}
.x37{left:200.888933pt;}
.x15{left:204.156306pt;}
.x4d{left:218.204400pt;}
.x39{left:219.231374pt;}
.x36{left:221.229333pt;}
.x16{left:222.520026pt;}
.x4f{left:232.021835pt;}
.x38{left:237.595093pt;}
.x18{left:240.862466pt;}
.x72{left:243.711567pt;}
.x4e{left:244.687733pt;}
.x3a{left:255.937534pt;}
.x17{left:259.226186pt;}
.x4{left:266.834667pt;}
.x83{left:272.697687pt;}
.x3b{left:274.301253pt;}
.x1a{left:277.568626pt;}
.x6c{left:279.147067pt;}
.x7d{left:280.416667pt;}
.x5{left:281.952800pt;}
.x50{left:288.690905pt;}
.x3c{left:292.664973pt;}
.x19{left:295.932346pt;}
.x70{left:299.863067pt;}
.x51{left:301.208629pt;}
.x82{left:305.598784pt;}
.x3d{left:311.028692pt;}
.x52{left:312.513987pt;}
.x1b{left:316.433467pt;}
.x68{left:320.919067pt;}
.x1d{left:325.522000pt;}
.x3f{left:329.381772pt;}
.x54{left:334.913467pt;}
.x3{left:337.502133pt;}
.x78{left:341.381200pt;}
.x1f{left:343.875080pt;}
.x1c{left:346.134933pt;}
.x3e{left:347.745492pt;}
.x55{left:349.612590pt;}
.x76{left:356.130667pt;}
.x1e{left:362.228160pt;}
.x41{left:366.087932pt;}
.x53{left:374.929867pt;}
.x20{left:380.581240pt;}
.x40{left:384.451652pt;}
.x6a{left:385.478267pt;}
.x5c{left:397.490641pt;}
.x21{left:398.944959pt;}
.x5b{left:411.952857pt;}
.x69{left:416.118533pt;}
.x22{left:417.308679pt;}
.x73{left:420.843600pt;}
.x59{left:423.674721pt;}
.x81{left:426.111467pt;}
.x23{left:435.672398pt;}
.x5a{left:436.842754pt;}
.x6d{left:438.331467pt;}
.x42{left:441.229067pt;}
.x56{left:449.172667pt;}
.x43{left:450.136133pt;}
.x25{left:454.025478pt;}
.x80{left:461.948933pt;}
.x57{left:465.471371pt;}
.x6b{left:467.585867pt;}
.x45{left:468.478574pt;}
.x24{left:472.378558pt;}
.x5d{left:481.436667pt;}
.x77{left:482.640667pt;}
.x44{left:486.842293pt;}
.x6e{left:488.095375pt;}
.x5e{left:489.047733pt;}
.x27{left:490.731638pt;}
.x58{left:497.622415pt;}
.x46{left:505.184734pt;}
.x5f{left:506.562667pt;}
.x26{left:509.095358pt;}
.x60{left:517.926174pt;}
.x47{left:523.548453pt;}
.x28{left:529.666133pt;}
.x61{left:531.034263pt;}
.x2a{left:538.753600pt;}
.x6f{left:540.823874pt;}
.x48{left:541.912173pt;}
.x62{left:552.383001pt;}
.x2c{left:557.096041pt;}
.x29{left:560.217333pt;}
.x64{left:564.690933pt;}
.x2b{left:575.459760pt;}
.x4a{left:578.618333pt;}
.xa{left:579.964400pt;}
.x86{left:582.781600pt;}
.x75{left:583.954261pt;}
.x63{left:587.234379pt;}
.x74{left:590.878925pt;}
.x2d{left:593.802201pt;}
.x49{left:596.982052pt;}
.x65{left:601.657749pt;}
.x9{left:607.865467pt;}
.x2e{left:612.165920pt;}
.x4c{left:615.324493pt;}
.x7b{left:625.308000pt;}
.x66{left:628.870281pt;}
.x2f{left:630.529639pt;}
.x4b{left:633.688212pt;}
.x67{left:643.231593pt;}
.x30{left:648.882719pt;}
.x7a{left:664.568535pt;}
.x32{left:667.235799pt;}
.x79{left:669.250267pt;}
.x31{left:685.599519pt;}
.x7c{left:702.049467pt;}
.x34{left:703.941959pt;}
.x1{left:717.520267pt;}
.x33{left:722.305679pt;}
}




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