
    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_64958e9b24c1987ada77518f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_a40b7b8ffb440c8482cd900c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_91f1629f82707948ece2984f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_9091e4f16a81d227e240bb42.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854000;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_60507852c04d325b7b10ea82.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.111000;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_46f182c78230ce14e2441bfc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.429000;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_d4455c6a783d21a52ca4438f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.829000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9b736f41ffb3efea7599172f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897000;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;}
.m18{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m5{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.690000px;}
.v4{vertical-align:-16.878000px;}
.v5{vertical-align:-7.320000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:7.320000px;}
.v3{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.ls7{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.004320px;}
.ls1{letter-spacing:2.984915px;}
.ls4{letter-spacing:2.988600px;}
.ls5{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990915px;}
.ls2{letter-spacing:2.991113px;}
.ls3{letter-spacing:3.012698px;}
.lsa{letter-spacing:25.102320px;}
.ls8{letter-spacing:25.105680px;}
.lsb{letter-spacing:25.108320px;}
.ls6{letter-spacing:29.887800px;}
.lsc{letter-spacing:138.476502px;}
.lsd{letter-spacing:167.372100px;}
.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;}
}
.ws67{word-spacing:-167.419921px;}
.ws5e{word-spacing:-138.513430px;}
.ws3{word-spacing:-50.809387px;}
.ws32{word-spacing:-14.943900px;}
.ws5{word-spacing:-11.955150px;}
.ws62{word-spacing:-11.954866px;}
.ws5a{word-spacing:-9.231548px;}
.ws7{word-spacing:-0.597756px;}
.ws46{word-spacing:-0.418429px;}
.ws11{word-spacing:-0.358654px;}
.ws2f{word-spacing:-0.041843px;}
.ws2c{word-spacing:0.000000px;}
.ws28{word-spacing:0.059776px;}
.ws43{word-spacing:0.298878px;}
.ws4f{word-spacing:0.777083px;}
.ws47{word-spacing:0.836858px;}
.wsc{word-spacing:0.956410px;}
.wsb{word-spacing:1.195512px;}
.ws4d{word-spacing:1.255288px;}
.ws41{word-spacing:1.613941px;}
.ws3c{word-spacing:1.673717px;}
.ws15{word-spacing:1.972595px;}
.ws21{word-spacing:2.689902px;}
.ws42{word-spacing:2.869229px;}
.ws29{word-spacing:2.929004px;}
.ws2a{word-spacing:3.048556px;}
.ws27{word-spacing:3.227882px;}
.ws3b{word-spacing:3.466985px;}
.ws59{word-spacing:3.692619px;}
.ws38{word-spacing:4.423394px;}
.ws10{word-spacing:4.602721px;}
.ws4e{word-spacing:4.662497px;}
.ws23{word-spacing:4.734239px;}
.ws63{word-spacing:4.781947px;}
.ws24{word-spacing:4.782060px;}
.ws2b{word-spacing:4.841824px;}
.ws4a{word-spacing:4.961375px;}
.ws57{word-spacing:4.973342px;}
.ws2e{word-spacing:5.379840px;}
.ws44{word-spacing:5.499355px;}
.ws17{word-spacing:5.618906px;}
.ws19{word-spacing:5.678682px;}
.ws49{word-spacing:5.738458px;}
.ws34{word-spacing:5.798233px;}
.wsf{word-spacing:5.858009px;}
.ws54{word-spacing:5.917784px;}
.ws4{word-spacing:5.977560px;}
.ws25{word-spacing:6.037336px;}
.ws13{word-spacing:6.097111px;}
.ws12{word-spacing:6.156887px;}
.ws14{word-spacing:6.216662px;}
.ws39{word-spacing:6.336214px;}
.ws3a{word-spacing:6.395989px;}
.ws16{word-spacing:6.455765px;}
.wse{word-spacing:6.575316px;}
.ws2{word-spacing:6.575340px;}
.ws22{word-spacing:6.754643px;}
.ws1e{word-spacing:6.874194px;}
.ws35{word-spacing:6.933970px;}
.ws1c{word-spacing:7.292623px;}
.ws4c{word-spacing:7.352399px;}
.ws26{word-spacing:7.651277px;}
.ws1a{word-spacing:7.711052px;}
.ws1b{word-spacing:7.770828px;}
.ws3f{word-spacing:8.308808px;}
.ws18{word-spacing:8.547911px;}
.ws50{word-spacing:9.085891px;}
.ws40{word-spacing:9.205442px;}
.ws3d{word-spacing:10.580281px;}
.ws55{word-spacing:10.879159px;}
.ws3e{word-spacing:11.058486px;}
.ws1d{word-spacing:11.417140px;}
.ws20{word-spacing:11.955120px;}
.ws4b{word-spacing:12.433325px;}
.ws45{word-spacing:12.971305px;}
.ws1{word-spacing:13.055024px;}
.ws1f{word-spacing:13.688612px;}
.ws0{word-spacing:14.346180px;}
.wsd{word-spacing:16.916495px;}
.ws48{word-spacing:17.215373px;}
.ws52{word-spacing:20.503031px;}
.ws51{word-spacing:20.562806px;}
.wsa{word-spacing:20.682358px;}
.ws53{word-spacing:20.742133px;}
.ws6{word-spacing:20.861684px;}
.ws33{word-spacing:20.921460px;}
.ws31{word-spacing:21.100787px;}
.ws30{word-spacing:21.160562px;}
.ws36{word-spacing:21.877870px;}
.ws9{word-spacing:22.595177px;}
.ws2d{word-spacing:25.063837px;}
.ws8{word-spacing:29.828024px;}
.ws37{word-spacing:48.059703px;}
.ws56{word-spacing:60.636521px;}
.ws5b{word-spacing:83.085901px;}
.ws5c{word-spacing:92.280741px;}
.ws5d{word-spacing:92.317668px;}
.ws65{word-spacing:95.641200px;}
.ws64{word-spacing:107.548529px;}
.ws61{word-spacing:119.976042px;}
.ws5f{word-spacing:129.244736px;}
.ws60{word-spacing:138.439575px;}
.ws66{word-spacing:155.416950px;}
.ws58{word-spacing:774.645899px;}
._60{margin-left:-167.372100px;}
._38{margin-left:-137.996451px;}
._0{margin-left:-11.620406px;}
._8{margin-left:-8.069706px;}
._4{margin-left:-6.635092px;}
._7{margin-left:-5.499355px;}
._3{margin-left:-4.184292px;}
._1{margin-left:-2.151927px;}
._6{margin-left:-1.016185px;}
._2{width:2.963404px;}
._1d{width:12.370568px;}
._1e{width:13.478380px;}
._61{width:15.780798px;}
._58{width:17.095854px;}
._5{width:29.887800px;}
._19{width:71.109232px;}
._39{width:101.106310px;}
._42{width:107.596350px;}
._57{width:114.912902px;}
._36{width:120.012969px;}
._34{width:124.518071px;}
._30{width:125.699737px;}
._33{width:130.647964px;}
._2f{width:131.829630px;}
._37{width:137.516399px;}
._20{width:138.956554px;}
._2a{width:140.064366px;}
._1f{width:145.086448px;}
._29{width:146.194260px;}
._3e{width:154.502850px;}
._3c{width:156.459984px;}
._3d{width:160.632743px;}
._3b{width:162.589877px;}
._2e{width:166.799563px;}
._2d{width:172.929456px;}
._32{width:179.059349px;}
._31{width:185.189243px;}
._2c{width:224.147299px;}
._2b{width:230.277192px;}
._40{width:248.814580px;}
._3f{width:254.944473px;}
._26{width:260.003481px;}
._25{width:266.133374px;}
._28{width:277.506911px;}
._27{width:283.636804px;}
._22{width:296.930548px;}
._21{width:303.060441px;}
._24{width:314.433978px;}
._23{width:320.563871px;}
._18{width:326.901622px;}
._3a{width:337.033343px;}
._56{width:362.767072px;}
._35{width:369.982445px;}
._41{width:409.870363px;}
._16{width:415.800117px;}
._10{width:434.402330px;}
._11{width:436.554257px;}
._53{width:451.665567px;}
._14{width:453.817494px;}
._52{width:459.603787px;}
._5a{width:468.713621px;}
._4c{width:470.267780px;}
._13{width:471.893681px;}
._43{width:478.923309px;}
._4d{width:480.357927px;}
._17{width:484.900884px;}
._5f{width:489.682944px;}
._5d{width:492.217436px;}
._63{width:494.130260px;}
._5e{width:497.621164px;}
._5c{width:500.155655px;}
._62{width:502.068479px;}
._51{width:507.759131px;}
._50{width:515.697350px;}
._55{width:520.766334px;}
._54{width:528.704554px;}
._12{width:544.007146px;}
._1b{width:573.321173px;}
._9{width:575.999127px;}
._15{width:578.103233px;}
._4f{width:579.872596px;}
._4e{width:587.810815px;}
._e{width:591.875566px;}
._f{width:613.107913px;}
._1c{width:621.093953px;}
._49{width:627.741016px;}
._48{width:635.679236px;}
._c{width:639.696166px;}
._a{width:645.052073px;}
._4b{width:648.973363px;}
._4a{width:656.911582px;}
._d{width:660.928513px;}
._b{width:666.284420px;}
._45{width:675.561616px;}
._44{width:683.499836px;}
._1a{width:689.070925px;}
._47{width:696.793963px;}
._46{width:704.732182px;}
._5b{width:726.777479px;}
._59{width:794.395807px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs7{font-size:36.926191px;}
.fs8{font-size:36.927067px;}
.fs4{font-size:41.842800px;}
.fs9{font-size:47.819465px;}
.fs2{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y34{bottom:113.332500px;}
.y33{bottom:126.783000px;}
.y1aa{bottom:127.278000px;}
.y32{bottom:131.002500px;}
.y59{bottom:131.265000px;}
.ya1{bottom:133.059000px;}
.yd7{bottom:140.232000px;}
.y1a9{bottom:140.728500px;}
.yd6{bottom:144.451500px;}
.y31{bottom:145.797000px;}
.y58{bottom:149.199000px;}
.ya0{bottom:150.991500px;}
.y1a8{bottom:154.177500px;}
.yd5{bottom:155.026500px;}
.y11b{bottom:160.257000px;}
.y30{bottom:160.591500px;}
.y9b{bottom:163.378500px;}
.y57{bottom:167.131500px;}
.y1a7{bottom:167.628000px;}
.yd4{bottom:168.477000px;}
.y9f{bottom:168.924000px;}
.y11a{bottom:172.212000px;}
.yd3{bottom:172.695000px;}
.y1a6{bottom:181.077000px;}
.y99{bottom:181.311000px;}
.y119{bottom:184.167000px;}
.y56{bottom:185.064000px;}
.y9a{bottom:186.733500px;}
.y9e{bottom:186.856500px;}
.yd2{bottom:187.489500px;}
.y2f{bottom:188.463000px;}
.y1a5{bottom:194.526000px;}
.y118{bottom:196.123500px;}
.y98{bottom:199.243500px;}
.y55{bottom:202.996500px;}
.y9d{bottom:204.790500px;}
.y2e{bottom:206.395500px;}
.y1a4{bottom:207.976500px;}
.y117{bottom:208.078500px;}
.y97{bottom:217.176000px;}
.y116{bottom:220.033500px;}
.y54{bottom:220.929000px;}
.y1a3{bottom:221.425500px;}
.y9c{bottom:222.723000px;}
.y2d{bottom:224.329500px;}
.y115{bottom:231.988500px;}
.y1a2{bottom:234.874500px;}
.y53{bottom:238.861500px;}
.y96{bottom:240.655500px;}
.y2c{bottom:242.262000px;}
.y114{bottom:243.943500px;}
.y14c{bottom:246.073500px;}
.y1a1{bottom:248.325000px;}
.y16c{bottom:251.521026px;}
.y113{bottom:255.898500px;}
.y52{bottom:256.795500px;}
.y95{bottom:258.588000px;}
.y2b{bottom:260.194500px;}
.y1a0{bottom:261.774000px;}
.y16b{bottom:261.906343px;}
.y112{bottom:267.853500px;}
.y14b{bottom:269.983500px;}
.y16a{bottom:272.291661px;}
.y51{bottom:274.728000px;}
.y19f{bottom:275.223000px;}
.y94{bottom:276.520500px;}
.y2a{bottom:278.127000px;}
.y111{bottom:279.808500px;}
.yd1{bottom:281.004000px;}
.y14a{bottom:281.938500px;}
.y169{bottom:282.678137px;}
.y19e{bottom:288.673500px;}
.y110{bottom:291.763500px;}
.y50{bottom:292.660500px;}
.y168{bottom:293.063455px;}
.y149{bottom:293.893500px;}
.y29{bottom:296.059500px;}
.yd0{bottom:298.938000px;}
.y19d{bottom:302.122500px;}
.y167{bottom:303.448773px;}
.y10f{bottom:303.720000px;}
.y4f{bottom:310.593000px;}
.y166{bottom:313.835249px;}
.y28{bottom:313.992000px;}
.y19c{bottom:315.573000px;}
.y10e{bottom:315.675000px;}
.ycf{bottom:316.870500px;}
.y148{bottom:317.803500px;}
.y165{bottom:324.220567px;}
.y93{bottom:327.630000px;}
.y4e{bottom:328.525500px;}
.y19b{bottom:329.022000px;}
.y147{bottom:329.758500px;}
.y27{bottom:331.926000px;}
.y164{bottom:334.605885px;}
.yce{bottom:334.803000px;}
.y19a{bottom:342.471000px;}
.y163{bottom:344.992361px;}
.y92{bottom:345.562500px;}
.y4d{bottom:346.459500px;}
.y26{bottom:350.224500px;}
.y10d{bottom:351.540000px;}
.ycd{bottom:352.735500px;}
.y146{bottom:353.670000px;}
.y162{bottom:355.377679px;}
.y199{bottom:355.921500px;}
.y91{bottom:363.495000px;}
.y4c{bottom:364.392000px;}
.y145{bottom:365.625000px;}
.y161{bottom:365.764155px;}
.y25{bottom:368.158500px;}
.y198{bottom:369.370500px;}
.ycc{bottom:370.668000px;}
.y10c{bottom:373.620000px;}
.y160{bottom:376.149473px;}
.y144{bottom:377.580000px;}
.y90{bottom:381.427500px;}
.y4b{bottom:382.324500px;}
.y197{bottom:382.819500px;}
.y24{bottom:386.091000px;}
.y15f{bottom:386.534790px;}
.y10b{bottom:387.405000px;}
.y143{bottom:387.705000px;}
.ycb{bottom:388.600500px;}
.y196{bottom:396.270000px;}
.y15e{bottom:396.921266px;}
.y10a{bottom:397.530000px;}
.y4a{bottom:400.257000px;}
.y142{bottom:401.490000px;}
.y23{bottom:404.023500px;}
.yca{bottom:406.534500px;}
.y15d{bottom:407.306584px;}
.y8e{bottom:407.430000px;}
.y195{bottom:409.719000px;}
.y109{bottom:411.316500px;}
.y141{bottom:413.445000px;}
.y15c{bottom:417.691902px;}
.y49{bottom:418.189500px;}
.y22{bottom:421.956000px;}
.y194{bottom:423.169500px;}
.y108{bottom:423.271500px;}
.y140{bottom:423.570000px;}
.yc9{bottom:424.467000px;}
.y15b{bottom:428.078378px;}
.y107{bottom:435.226500px;}
.y48{bottom:436.122000px;}
.y193{bottom:436.618500px;}
.y13f{bottom:437.355000px;}
.y15a{bottom:438.463696px;}
.y21{bottom:439.888500px;}
.yc8{bottom:442.399500px;}
.y8d{bottom:444.043500px;}
.y106{bottom:447.181500px;}
.y13e{bottom:447.480000px;}
.y159{bottom:448.850172px;}
.y192{bottom:450.067500px;}
.y47{bottom:454.056000px;}
.y8c{bottom:455.998500px;}
.y20{bottom:457.821000px;}
.y105{bottom:459.136500px;}
.y158{bottom:459.235490px;}
.yc6{bottom:460.332000px;}
.y13d{bottom:461.266500px;}
.y191{bottom:463.518000px;}
.yc7{bottom:465.754500px;}
.y8b{bottom:467.953500px;}
.y104{bottom:469.261500px;}
.y157{bottom:469.620808px;}
.y46{bottom:471.988500px;}
.y13c{bottom:473.221500px;}
.y1f{bottom:475.755000px;}
.yc5{bottom:478.264500px;}
.y8a{bottom:479.908500px;}
.y156{bottom:480.007284px;}
.y103{bottom:483.046500px;}
.y13b{bottom:483.345000px;}
.y190{bottom:484.774500px;}
.y155{bottom:490.392602px;}
.y89{bottom:491.863500px;}
.y45{bottom:492.931500px;}
.y102{bottom:493.171500px;}
.y1e{bottom:493.687500px;}
.yc4{bottom:496.197000px;}
.y154{bottom:500.777919px;}
.y88{bottom:503.818500px;}
.y101{bottom:506.956500px;}
.y13a{bottom:509.086500px;}
.y153{bottom:511.164395px;}
.y1d{bottom:511.620000px;}
.y44{bottom:515.608500px;}
.y87{bottom:515.773500px;}
.yc3{bottom:518.838000px;}
.y100{bottom:518.913000px;}
.y139{bottom:521.041500px;}
.y152{bottom:521.549713px;}
.y86{bottom:527.728500px;}
.yff{bottom:529.036500px;}
.y1c{bottom:529.552500px;}
.y151{bottom:531.936189px;}
.y138{bottom:532.996500px;}
.y85{bottom:539.683500px;}
.y150{bottom:542.321507px;}
.yfe{bottom:542.823000px;}
.y43{bottom:543.718500px;}
.y137{bottom:544.951500px;}
.yc2{bottom:546.858000px;}
.y1b{bottom:547.485000px;}
.y16e{bottom:548.350459px;}
.y84{bottom:551.640000px;}
.y14f{bottom:552.706825px;}
.yfd{bottom:554.778000px;}
.y136{bottom:556.908000px;}
.y42{bottom:561.652500px;}
.y18f{bottom:563.248500px;}
.y83{bottom:563.595000px;}
.yc1{bottom:564.790500px;}
.yfc{bottom:564.903000px;}
.y1a{bottom:565.417500px;}
.y135{bottom:568.863000px;}
.y14e{bottom:569.122253px;}
.y82{bottom:575.550000px;}
.yfb{bottom:578.688000px;}
.y41{bottom:579.585000px;}
.y134{bottom:580.818000px;}
.yc0{bottom:582.723000px;}
.y19{bottom:583.351500px;}
.y81{bottom:587.505000px;}
.yfa{bottom:590.643000px;}
.y40{bottom:597.517500px;}
.y133{bottom:599.049000px;}
.y80{bottom:599.460000px;}
.ybf{bottom:600.655500px;}
.y17{bottom:601.284000px;}
.yf9{bottom:602.598000px;}
.y18{bottom:606.706500px;}
.y18e{bottom:609.222000px;}
.y8f{bottom:611.415000px;}
.yf8{bottom:614.553000px;}
.y3f{bottom:615.450000px;}
.y132{bottom:616.981500px;}
.ybe{bottom:618.588000px;}
.y16{bottom:619.216500px;}
.y18d{bottom:622.671000px;}
.y7f{bottom:623.370000px;}
.yf7{bottom:626.509500px;}
.y7e{bottom:635.325000px;}
.y18c{bottom:636.120000px;}
.y3e{bottom:636.394500px;}
.ybd{bottom:636.522000px;}
.y15{bottom:637.149000px;}
.yf6{bottom:638.464500px;}
.y16d{bottom:639.273000px;}
.y7d{bottom:647.281500px;}
.y18b{bottom:649.570500px;}
.yf5{bottom:650.419500px;}
.y3d{bottom:654.327000px;}
.ybc{bottom:654.454500px;}
.y14{bottom:655.081500px;}
.y7c{bottom:659.236500px;}
.y14d{bottom:660.045000px;}
.yf4{bottom:662.374500px;}
.y18a{bottom:663.019500px;}
.yba{bottom:672.387000px;}
.y13{bottom:673.014000px;}
.yf3{bottom:674.329500px;}
.y189{bottom:676.468500px;}
.y3c{bottom:677.004000px;}
.ybb{bottom:677.809500px;}
.y7b{bottom:678.364500px;}
.yf2{bottom:684.454500px;}
.y188{bottom:689.919000px;}
.yb9{bottom:690.319500px;}
.y12{bottom:690.948000px;}
.yf1{bottom:696.409500px;}
.y187{bottom:703.368000px;}
.y3b{bottom:705.114000px;}
.yb8{bottom:708.252000px;}
.y11{bottom:708.880500px;}
.y7a{bottom:714.976500px;}
.y186{bottom:716.818500px;}
.yf0{bottom:722.149500px;}
.y3a{bottom:723.046500px;}
.yb7{bottom:726.184500px;}
.y79{bottom:726.931500px;}
.y185{bottom:730.267500px;}
.y10{bottom:732.804000px;}
.yef{bottom:734.106000px;}
.y78{bottom:738.888000px;}
.y39{bottom:740.979000px;}
.y184{bottom:743.716500px;}
.yb6{bottom:744.118500px;}
.yee{bottom:746.061000px;}
.y77{bottom:750.843000px;}
.y183{bottom:757.167000px;}
.yed{bottom:758.016000px;}
.y38{bottom:758.911500px;}
.yb5{bottom:762.051000px;}
.y76{bottom:762.798000px;}
.yf{bottom:763.944000px;}
.yec{bottom:769.971000px;}
.y182{bottom:770.616000px;}
.y75{bottom:774.753000px;}
.y37{bottom:776.845500px;}
.yb4{bottom:779.983500px;}
.yd{bottom:781.876500px;}
.yeb{bottom:781.926000px;}
.y181{bottom:784.065000px;}
.y74{bottom:786.708000px;}
.ye{bottom:787.300500px;}
.yea{bottom:793.881000px;}
.y36{bottom:794.778000px;}
.y180{bottom:797.515500px;}
.yb3{bottom:797.916000px;}
.y73{bottom:798.663000px;}
.y131{bottom:798.888000px;}
.yc{bottom:805.801500px;}
.ye9{bottom:805.836000px;}
.y72{bottom:810.618000px;}
.y17f{bottom:810.964500px;}
.y130{bottom:812.337000px;}
.y35{bottom:812.710500px;}
.yb2{bottom:815.848500px;}
.ye8{bottom:817.791000px;}
.y71{bottom:822.573000px;}
.y17e{bottom:824.413500px;}
.y12f{bottom:825.786000px;}
.ye7{bottom:829.746000px;}
.yb{bottom:830.643000px;}
.yb1{bottom:833.781000px;}
.y70{bottom:834.528000px;}
.y17d{bottom:837.864000px;}
.y12e{bottom:839.236500px;}
.ye6{bottom:841.702500px;}
.y6f{bottom:846.484500px;}
.y17c{bottom:851.313000px;}
.yb0{bottom:851.715000px;}
.y12d{bottom:852.685500px;}
.ye5{bottom:853.657500px;}
.y6e{bottom:858.439500px;}
.y17b{bottom:864.763500px;}
.ye4{bottom:865.612500px;}
.y12c{bottom:866.136000px;}
.yaf{bottom:869.647500px;}
.y6d{bottom:870.394500px;}
.ye3{bottom:877.567500px;}
.y17a{bottom:878.212500px;}
.y12b{bottom:879.585000px;}
.ya{bottom:881.055000px;}
.y6c{bottom:882.349500px;}
.yae{bottom:887.580000px;}
.ye2{bottom:889.522500px;}
.y179{bottom:891.661500px;}
.y12a{bottom:893.034000px;}
.y6b{bottom:894.304500px;}
.y9{bottom:899.548500px;}
.ye1{bottom:901.477500px;}
.y178{bottom:905.112000px;}
.yac{bottom:905.512500px;}
.y6a{bottom:906.259500px;}
.y129{bottom:906.484500px;}
.yad{bottom:910.935000px;}
.ye0{bottom:913.432500px;}
.y69{bottom:918.214500px;}
.y177{bottom:918.561000px;}
.y128{bottom:919.933500px;}
.yab{bottom:923.445000px;}
.y8{bottom:923.464500px;}
.y68{bottom:930.169500px;}
.y176{bottom:932.010000px;}
.y127{bottom:933.382500px;}
.ydf{bottom:937.342500px;}
.yaa{bottom:941.377500px;}
.y7{bottom:941.958000px;}
.y67{bottom:942.124500px;}
.y175{bottom:945.460500px;}
.y126{bottom:946.833000px;}
.yde{bottom:949.299000px;}
.y66{bottom:954.081000px;}
.y174{bottom:958.909500px;}
.ya9{bottom:959.311500px;}
.y125{bottom:960.282000px;}
.y6{bottom:960.450000px;}
.y65{bottom:966.036000px;}
.y173{bottom:972.360000px;}
.ydd{bottom:973.209000px;}
.y5{bottom:973.521000px;}
.y124{bottom:973.732500px;}
.ya8{bottom:977.244000px;}
.y64{bottom:977.991000px;}
.y4{bottom:978.943500px;}
.ydc{bottom:985.164000px;}
.y172{bottom:985.809000px;}
.y123{bottom:987.181500px;}
.y63{bottom:989.946000px;}
.y3{bottom:992.235000px;}
.ya7{bottom:995.176500px;}
.ydb{bottom:997.119000px;}
.y171{bottom:999.258000px;}
.y122{bottom:1000.630500px;}
.y62{bottom:1001.901000px;}
.ya6{bottom:1013.109000px;}
.y61{bottom:1013.856000px;}
.y121{bottom:1014.081000px;}
.y170{bottom:1020.516000px;}
.yda{bottom:1021.029000px;}
.y60{bottom:1025.811000px;}
.y120{bottom:1027.530000px;}
.ya5{bottom:1035.748500px;}
.y5f{bottom:1037.766000px;}
.yd9{bottom:1039.261500px;}
.y2{bottom:1039.309500px;}
.y11f{bottom:1040.979000px;}
.y5e{bottom:1049.721000px;}
.y11e{bottom:1054.429500px;}
.yd8{bottom:1057.194000px;}
.y5d{bottom:1061.677500px;}
.ya4{bottom:1063.768500px;}
.y5c{bottom:1073.632500px;}
.y11d{bottom:1075.687500px;}
.y1{bottom:1081.152000px;}
.ya3{bottom:1081.701000px;}
.y5b{bottom:1085.587500px;}
.y5a{bottom:1097.542500px;}
.y16f{bottom:1098.990000px;}
.ya2{bottom:1099.635000px;}
.y11c{bottom:1105.014000px;}
.hb{height:5.308087px;}
.h9{height:24.675533px;}
.h12{height:25.405219px;}
.h13{height:25.516604px;}
.hc{height:27.950990px;}
.h6{height:28.787846px;}
.h14{height:32.899792px;}
.ha{height:32.900573px;}
.h15{height:33.044035px;}
.h3{height:33.665702px;}
.hf{height:35.270990px;}
.h10{height:35.276990px;}
.hd{height:37.013299px;}
.h8{height:39.930101px;}
.h5{height:40.826735px;}
.h4{height:41.125613px;}
.he{height:41.304940px;}
.h7{height:50.477846px;}
.h2{height:57.419702px;}
.h1{height:98.701718px;}
.h11{height:918.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.w1{width:1188.000000px;}
.x0{left:0.000000px;}
.x48{left:72.325500px;}
.x2{left:73.446000px;}
.x27{left:85.401000px;}
.xc{left:88.390500px;}
.x28{left:90.201000px;}
.x35{left:98.551500px;}
.x3d{left:103.333500px;}
.x55{left:109.611000px;}
.x36{left:111.105000px;}
.x19{left:113.452500px;}
.x20{left:118.624500px;}
.x3{left:123.934500px;}
.x54{left:129.613500px;}
.x1b{left:132.490500px;}
.x37{left:136.210500px;}
.x38{left:148.764000px;}
.x39{left:161.317500px;}
.x44{left:169.326000px;}
.x3e{left:172.372500px;}
.x3a{left:173.871000px;}
.x9{left:176.002500px;}
.x21{left:177.639000px;}
.x3b{left:186.423000px;}
.x29{left:212.290500px;}
.x2a{left:215.820000px;}
.x73{left:220.698000px;}
.x57{left:224.036330px;}
.x72{left:225.426000px;}
.xb{left:228.759000px;}
.x7{left:231.145500px;}
.x2b{left:235.425000px;}
.x2c{left:238.954500px;}
.x15{left:246.103500px;}
.x22{left:248.202000px;}
.x6{left:259.285500px;}
.x58{left:263.271426px;}
.xa{left:273.369000px;}
.xd{left:300.894000px;}
.x59{left:302.506522px;}
.xe{left:306.871500px;}
.x24{left:319.560000px;}
.xf{left:321.085500px;}
.x4{left:323.124000px;}
.x23{left:325.720500px;}
.x10{left:327.064500px;}
.x11{left:328.983000px;}
.x1c{left:334.336500px;}
.x1e{left:335.634000px;}
.x4a{left:341.047500px;}
.x16{left:344.733000px;}
.x3c{left:361.390500px;}
.x2d{left:362.677500px;}
.x2e{left:366.205500px;}
.x1{left:367.399500px;}
.x5a{left:380.976714px;}
.x25{left:382.324500px;}
.x4b{left:384.243000px;}
.x4c{left:387.772500px;}
.x26{left:390.312000px;}
.x8{left:391.657500px;}
.x45{left:399.601500px;}
.x46{left:403.129500px;}
.x1a{left:405.649500px;}
.x13{left:408.246000px;}
.x1f{left:416.361000px;}
.x12{left:418.647000px;}
.x5b{left:420.211810px;}
.x4d{left:422.925000px;}
.x56{left:427.188000px;}
.x17{left:430.069500px;}
.x47{left:434.298000px;}
.x1d{left:438.198000px;}
.x49{left:442.860000px;}
.x14{left:444.111000px;}
.x18{left:448.002000px;}
.x5{left:457.483500px;}
.x5c{left:459.446906px;}
.x2f{left:467.967000px;}
.x3f{left:474.426000px;}
.x6d{left:477.168000px;}
.x4f{left:480.519000px;}
.x33{left:482.910000px;}
.x34{left:484.260000px;}
.x40{left:486.978000px;}
.x50{left:493.072500px;}
.x4e{left:497.854500px;}
.x41{left:499.531500px;}
.x53{left:504.130500px;}
.x51{left:505.626000px;}
.x42{left:516.867000px;}
.x52{left:518.178000px;}
.x6e{left:524.871000px;}
.x5d{left:537.917098px;}
.x43{left:570.400500px;}
.x6f{left:572.809500px;}
.x5e{left:577.152193px;}
.x5f{left:616.387289px;}
.x70{left:620.629500px;}
.x60{left:655.622385px;}
.x71{left:668.451000px;}
.x61{left:694.857481px;}
.x32{left:709.768500px;}
.x62{left:734.092577px;}
.x30{left:765.385500px;}
.x63{left:773.327673px;}
.x64{left:812.562769px;}
.x31{left:822.855000px;}
.x65{left:851.797865px;}
.x66{left:891.032961px;}
.x67{left:930.268057px;}
.x68{left:969.503153px;}
.x69{left:1008.738248px;}
.x6a{left:1047.973344px;}
.x6b{left:1087.208440px;}
.x6c{left:1126.443536px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v4{vertical-align:-15.002667pt;}
.v5{vertical-align:-6.506667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:6.506667pt;}
.v3{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.003840pt;}
.ls1{letter-spacing:2.653258pt;}
.ls4{letter-spacing:2.656533pt;}
.ls5{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.658591pt;}
.ls2{letter-spacing:2.658767pt;}
.ls3{letter-spacing:2.677954pt;}
.lsa{letter-spacing:22.313173pt;}
.ls8{letter-spacing:22.316160pt;}
.lsb{letter-spacing:22.318507pt;}
.ls6{letter-spacing:26.566933pt;}
.lsc{letter-spacing:123.090224pt;}
.lsd{letter-spacing:148.775200pt;}
.ws67{word-spacing:-148.817707pt;}
.ws5e{word-spacing:-123.123048pt;}
.ws3{word-spacing:-45.163900pt;}
.ws32{word-spacing:-13.283467pt;}
.ws5{word-spacing:-10.626800pt;}
.ws62{word-spacing:-10.626548pt;}
.ws5a{word-spacing:-8.205820pt;}
.ws7{word-spacing:-0.531339pt;}
.ws46{word-spacing:-0.371937pt;}
.ws11{word-spacing:-0.318803pt;}
.ws2f{word-spacing:-0.037194pt;}
.ws2c{word-spacing:0.000000pt;}
.ws28{word-spacing:0.053134pt;}
.ws43{word-spacing:0.265669pt;}
.ws4f{word-spacing:0.690740pt;}
.ws47{word-spacing:0.743874pt;}
.wsc{word-spacing:0.850142pt;}
.wsb{word-spacing:1.062677pt;}
.ws4d{word-spacing:1.115811pt;}
.ws41{word-spacing:1.434614pt;}
.ws3c{word-spacing:1.487748pt;}
.ws15{word-spacing:1.753418pt;}
.ws21{word-spacing:2.391024pt;}
.ws42{word-spacing:2.550426pt;}
.ws29{word-spacing:2.603559pt;}
.ws2a{word-spacing:2.709827pt;}
.ws27{word-spacing:2.869229pt;}
.ws3b{word-spacing:3.081764pt;}
.ws59{word-spacing:3.282328pt;}
.ws38{word-spacing:3.931906pt;}
.ws10{word-spacing:4.091308pt;}
.ws4e{word-spacing:4.144442pt;}
.ws23{word-spacing:4.208213pt;}
.ws63{word-spacing:4.250619pt;}
.ws24{word-spacing:4.250720pt;}
.ws2b{word-spacing:4.303843pt;}
.ws4a{word-spacing:4.410111pt;}
.ws57{word-spacing:4.420749pt;}
.ws2e{word-spacing:4.782080pt;}
.ws44{word-spacing:4.888316pt;}
.ws17{word-spacing:4.994583pt;}
.ws19{word-spacing:5.047717pt;}
.ws49{word-spacing:5.100851pt;}
.ws34{word-spacing:5.153985pt;}
.wsf{word-spacing:5.207119pt;}
.ws54{word-spacing:5.260253pt;}
.ws4{word-spacing:5.313387pt;}
.ws25{word-spacing:5.366521pt;}
.ws13{word-spacing:5.419654pt;}
.ws12{word-spacing:5.472788pt;}
.ws14{word-spacing:5.525922pt;}
.ws39{word-spacing:5.632190pt;}
.ws3a{word-spacing:5.685324pt;}
.ws16{word-spacing:5.738458pt;}
.wse{word-spacing:5.844725pt;}
.ws2{word-spacing:5.844747pt;}
.ws22{word-spacing:6.004127pt;}
.ws1e{word-spacing:6.110395pt;}
.ws35{word-spacing:6.163529pt;}
.ws1c{word-spacing:6.482332pt;}
.ws4c{word-spacing:6.535466pt;}
.ws26{word-spacing:6.801135pt;}
.ws1a{word-spacing:6.854269pt;}
.ws1b{word-spacing:6.907403pt;}
.ws3f{word-spacing:7.385607pt;}
.ws18{word-spacing:7.598143pt;}
.ws50{word-spacing:8.076348pt;}
.ws40{word-spacing:8.182615pt;}
.ws3d{word-spacing:9.404694pt;}
.ws55{word-spacing:9.670364pt;}
.ws3e{word-spacing:9.829765pt;}
.ws1d{word-spacing:10.148569pt;}
.ws20{word-spacing:10.626773pt;}
.ws4b{word-spacing:11.051844pt;}
.ws45{word-spacing:11.530049pt;}
.ws1{word-spacing:11.604466pt;}
.ws1f{word-spacing:12.167655pt;}
.ws0{word-spacing:12.752160pt;}
.wsd{word-spacing:15.036884pt;}
.ws48{word-spacing:15.302554pt;}
.ws52{word-spacing:18.224916pt;}
.ws51{word-spacing:18.278050pt;}
.wsa{word-spacing:18.384318pt;}
.ws53{word-spacing:18.437452pt;}
.ws6{word-spacing:18.543719pt;}
.ws33{word-spacing:18.596853pt;}
.ws31{word-spacing:18.756255pt;}
.ws30{word-spacing:18.809389pt;}
.ws36{word-spacing:19.446995pt;}
.ws9{word-spacing:20.084602pt;}
.ws2d{word-spacing:22.278966pt;}
.ws8{word-spacing:26.513799pt;}
.ws37{word-spacing:42.719736pt;}
.ws56{word-spacing:53.899130pt;}
.ws5b{word-spacing:73.854135pt;}
.ws5c{word-spacing:82.027326pt;}
.ws5d{word-spacing:82.060150pt;}
.ws65{word-spacing:85.014400pt;}
.ws64{word-spacing:95.598693pt;}
.ws61{word-spacing:106.645370pt;}
.ws5f{word-spacing:114.884209pt;}
.ws60{word-spacing:123.057400pt;}
.ws66{word-spacing:138.148400pt;}
.ws58{word-spacing:688.574133pt;}
._60{margin-left:-148.775200pt;}
._38{margin-left:-122.663512pt;}
._0{margin-left:-10.329250pt;}
._8{margin-left:-7.173072pt;}
._4{margin-left:-5.897859pt;}
._7{margin-left:-4.888316pt;}
._3{margin-left:-3.719371pt;}
._1{margin-left:-1.912824pt;}
._6{margin-left:-0.903276pt;}
._2{width:2.634137pt;}
._1d{width:10.996060pt;}
._1e{width:11.980782pt;}
._61{width:14.027376pt;}
._58{width:15.196315pt;}
._5{width:26.566933pt;}
._19{width:63.208206pt;}
._39{width:89.872276pt;}
._42{width:95.641200pt;}
._57{width:102.144802pt;}
._36{width:106.678194pt;}
._34{width:110.682730pt;}
._30{width:111.733100pt;}
._33{width:116.131524pt;}
._2f{width:117.181894pt;}
._37{width:122.236799pt;}
._20{width:123.516937pt;}
._2a{width:124.501659pt;}
._1f{width:128.965731pt;}
._29{width:129.950453pt;}
._3e{width:137.335866pt;}
._3c{width:139.075542pt;}
._3d{width:142.784660pt;}
._3b{width:144.524335pt;}
._2e{width:148.266278pt;}
._2d{width:153.715072pt;}
._32{width:159.163866pt;}
._31{width:164.612660pt;}
._2c{width:199.242043pt;}
._2b{width:204.690837pt;}
._40{width:221.168515pt;}
._3f{width:226.617309pt;}
._26{width:231.114205pt;}
._25{width:236.562999pt;}
._28{width:246.672810pt;}
._27{width:252.121604pt;}
._22{width:263.938265pt;}
._21{width:269.387059pt;}
._24{width:279.496870pt;}
._23{width:284.945663pt;}
._18{width:290.579219pt;}
._3a{width:299.585194pt;}
._56{width:322.459619pt;}
._35{width:328.873284pt;}
._41{width:364.329211pt;}
._16{width:369.600104pt;}
._10{width:386.135405pt;}
._11{width:388.048229pt;}
._53{width:401.480504pt;}
._14{width:403.393328pt;}
._52{width:408.536699pt;}
._5a{width:416.634330pt;}
._4c{width:418.015805pt;}
._13{width:419.461050pt;}
._43{width:425.709608pt;}
._4d{width:426.984824pt;}
._17{width:431.023008pt;}
._5f{width:435.273728pt;}
._5d{width:437.526610pt;}
._63{width:439.226898pt;}
._5e{width:442.329923pt;}
._5c{width:444.582805pt;}
._62{width:446.283093pt;}
._51{width:451.341450pt;}
._50{width:458.397645pt;}
._55{width:462.903408pt;}
._54{width:469.959603pt;}
._12{width:483.561907pt;}
._1b{width:509.618821pt;}
._9{width:511.999224pt;}
._15{width:513.869541pt;}
._4f{width:515.442307pt;}
._4e{width:522.498502pt;}
._e{width:526.111614pt;}
._f{width:544.984811pt;}
._1c{width:552.083514pt;}
._49{width:557.992014pt;}
._48{width:565.048210pt;}
._c{width:568.618814pt;}
._a{width:573.379621pt;}
._4b{width:576.865211pt;}
._4a{width:583.921406pt;}
._d{width:587.492011pt;}
._b{width:592.252818pt;}
._45{width:600.499214pt;}
._44{width:607.555410pt;}
._1a{width:612.507489pt;}
._47{width:619.372411pt;}
._46{width:626.428606pt;}
._5b{width:646.024426pt;}
._59{width:706.129606pt;}
.fs5{font-size:31.880533pt;}
.fs7{font-size:32.823281pt;}
.fs8{font-size:32.824060pt;}
.fs4{font-size:37.193600pt;}
.fs9{font-size:42.506191pt;}
.fs2{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:100.740000pt;}
.y33{bottom:112.696000pt;}
.y1aa{bottom:113.136000pt;}
.y32{bottom:116.446667pt;}
.y59{bottom:116.680000pt;}
.ya1{bottom:118.274667pt;}
.yd7{bottom:124.650667pt;}
.y1a9{bottom:125.092000pt;}
.yd6{bottom:128.401333pt;}
.y31{bottom:129.597333pt;}
.y58{bottom:132.621333pt;}
.ya0{bottom:134.214667pt;}
.y1a8{bottom:137.046667pt;}
.yd5{bottom:137.801333pt;}
.y11b{bottom:142.450667pt;}
.y30{bottom:142.748000pt;}
.y9b{bottom:145.225333pt;}
.y57{bottom:148.561333pt;}
.y1a7{bottom:149.002667pt;}
.yd4{bottom:149.757333pt;}
.y9f{bottom:150.154667pt;}
.y11a{bottom:153.077333pt;}
.yd3{bottom:153.506667pt;}
.y1a6{bottom:160.957333pt;}
.y99{bottom:161.165333pt;}
.y119{bottom:163.704000pt;}
.y56{bottom:164.501333pt;}
.y9a{bottom:165.985333pt;}
.y9e{bottom:166.094667pt;}
.yd2{bottom:166.657333pt;}
.y2f{bottom:167.522667pt;}
.y1a5{bottom:172.912000pt;}
.y118{bottom:174.332000pt;}
.y98{bottom:177.105333pt;}
.y55{bottom:180.441333pt;}
.y9d{bottom:182.036000pt;}
.y2e{bottom:183.462667pt;}
.y1a4{bottom:184.868000pt;}
.y117{bottom:184.958667pt;}
.y97{bottom:193.045333pt;}
.y116{bottom:195.585333pt;}
.y54{bottom:196.381333pt;}
.y1a3{bottom:196.822667pt;}
.y9c{bottom:197.976000pt;}
.y2d{bottom:199.404000pt;}
.y115{bottom:206.212000pt;}
.y1a2{bottom:208.777333pt;}
.y53{bottom:212.321333pt;}
.y96{bottom:213.916000pt;}
.y2c{bottom:215.344000pt;}
.y114{bottom:216.838667pt;}
.y14c{bottom:218.732000pt;}
.y1a1{bottom:220.733333pt;}
.y16c{bottom:223.574245pt;}
.y113{bottom:227.465333pt;}
.y52{bottom:228.262667pt;}
.y95{bottom:229.856000pt;}
.y2b{bottom:231.284000pt;}
.y1a0{bottom:232.688000pt;}
.y16b{bottom:232.805639pt;}
.y112{bottom:238.092000pt;}
.y14b{bottom:239.985333pt;}
.y16a{bottom:242.037032pt;}
.y51{bottom:244.202667pt;}
.y19f{bottom:244.642667pt;}
.y94{bottom:245.796000pt;}
.y2a{bottom:247.224000pt;}
.y111{bottom:248.718667pt;}
.yd1{bottom:249.781333pt;}
.y14a{bottom:250.612000pt;}
.y169{bottom:251.269455pt;}
.y19e{bottom:256.598667pt;}
.y110{bottom:259.345333pt;}
.y50{bottom:260.142667pt;}
.y168{bottom:260.500849pt;}
.y149{bottom:261.238667pt;}
.y29{bottom:263.164000pt;}
.yd0{bottom:265.722667pt;}
.y19d{bottom:268.553333pt;}
.y167{bottom:269.732243pt;}
.y10f{bottom:269.973333pt;}
.y4f{bottom:276.082667pt;}
.y166{bottom:278.964666pt;}
.y28{bottom:279.104000pt;}
.y19c{bottom:280.509333pt;}
.y10e{bottom:280.600000pt;}
.ycf{bottom:281.662667pt;}
.y148{bottom:282.492000pt;}
.y165{bottom:288.196059pt;}
.y93{bottom:291.226667pt;}
.y4e{bottom:292.022667pt;}
.y19b{bottom:292.464000pt;}
.y147{bottom:293.118667pt;}
.y27{bottom:295.045333pt;}
.y164{bottom:297.427453pt;}
.yce{bottom:297.602667pt;}
.y19a{bottom:304.418667pt;}
.y163{bottom:306.659876pt;}
.y92{bottom:307.166667pt;}
.y4d{bottom:307.964000pt;}
.y26{bottom:311.310667pt;}
.y10d{bottom:312.480000pt;}
.ycd{bottom:313.542667pt;}
.y146{bottom:314.373333pt;}
.y162{bottom:315.891270pt;}
.y199{bottom:316.374667pt;}
.y91{bottom:323.106667pt;}
.y4c{bottom:323.904000pt;}
.y145{bottom:325.000000pt;}
.y161{bottom:325.123693pt;}
.y25{bottom:327.252000pt;}
.y198{bottom:328.329333pt;}
.ycc{bottom:329.482667pt;}
.y10c{bottom:332.106667pt;}
.y160{bottom:334.355087pt;}
.y144{bottom:335.626667pt;}
.y90{bottom:339.046667pt;}
.y4b{bottom:339.844000pt;}
.y197{bottom:340.284000pt;}
.y24{bottom:343.192000pt;}
.y15f{bottom:343.586480pt;}
.y10b{bottom:344.360000pt;}
.y143{bottom:344.626667pt;}
.ycb{bottom:345.422667pt;}
.y196{bottom:352.240000pt;}
.y15e{bottom:352.818903pt;}
.y10a{bottom:353.360000pt;}
.y4a{bottom:355.784000pt;}
.y142{bottom:356.880000pt;}
.y23{bottom:359.132000pt;}
.yca{bottom:361.364000pt;}
.y15d{bottom:362.050297pt;}
.y8e{bottom:362.160000pt;}
.y195{bottom:364.194667pt;}
.y109{bottom:365.614667pt;}
.y141{bottom:367.506667pt;}
.y15c{bottom:371.281691pt;}
.y49{bottom:371.724000pt;}
.y22{bottom:375.072000pt;}
.y194{bottom:376.150667pt;}
.y108{bottom:376.241333pt;}
.y140{bottom:376.506667pt;}
.yc9{bottom:377.304000pt;}
.y15b{bottom:380.514114pt;}
.y107{bottom:386.868000pt;}
.y48{bottom:387.664000pt;}
.y193{bottom:388.105333pt;}
.y13f{bottom:388.760000pt;}
.y15a{bottom:389.745507pt;}
.y21{bottom:391.012000pt;}
.yc8{bottom:393.244000pt;}
.y8d{bottom:394.705333pt;}
.y106{bottom:397.494667pt;}
.y13e{bottom:397.760000pt;}
.y159{bottom:398.977931pt;}
.y192{bottom:400.060000pt;}
.y47{bottom:403.605333pt;}
.y8c{bottom:405.332000pt;}
.y20{bottom:406.952000pt;}
.y105{bottom:408.121333pt;}
.y158{bottom:408.209324pt;}
.yc6{bottom:409.184000pt;}
.y13d{bottom:410.014667pt;}
.y191{bottom:412.016000pt;}
.yc7{bottom:414.004000pt;}
.y8b{bottom:415.958667pt;}
.y104{bottom:417.121333pt;}
.y157{bottom:417.440718pt;}
.y46{bottom:419.545333pt;}
.y13c{bottom:420.641333pt;}
.y1f{bottom:422.893333pt;}
.yc5{bottom:425.124000pt;}
.y8a{bottom:426.585333pt;}
.y156{bottom:426.673141pt;}
.y103{bottom:429.374667pt;}
.y13b{bottom:429.640000pt;}
.y190{bottom:430.910667pt;}
.y155{bottom:435.904535pt;}
.y89{bottom:437.212000pt;}
.y45{bottom:438.161333pt;}
.y102{bottom:438.374667pt;}
.y1e{bottom:438.833333pt;}
.yc4{bottom:441.064000pt;}
.y154{bottom:445.135928pt;}
.y88{bottom:447.838667pt;}
.y101{bottom:450.628000pt;}
.y13a{bottom:452.521333pt;}
.y153{bottom:454.368351pt;}
.y1d{bottom:454.773333pt;}
.y44{bottom:458.318667pt;}
.y87{bottom:458.465333pt;}
.yc3{bottom:461.189333pt;}
.y100{bottom:461.256000pt;}
.y139{bottom:463.148000pt;}
.y152{bottom:463.599745pt;}
.y86{bottom:469.092000pt;}
.yff{bottom:470.254667pt;}
.y1c{bottom:470.713333pt;}
.y151{bottom:472.832168pt;}
.y138{bottom:473.774667pt;}
.y85{bottom:479.718667pt;}
.y150{bottom:482.063562pt;}
.yfe{bottom:482.509333pt;}
.y43{bottom:483.305333pt;}
.y137{bottom:484.401333pt;}
.yc2{bottom:486.096000pt;}
.y1b{bottom:486.653333pt;}
.y16e{bottom:487.422630pt;}
.y84{bottom:490.346667pt;}
.y14f{bottom:491.294955pt;}
.yfd{bottom:493.136000pt;}
.y136{bottom:495.029333pt;}
.y42{bottom:499.246667pt;}
.y18f{bottom:500.665333pt;}
.y83{bottom:500.973333pt;}
.yc1{bottom:502.036000pt;}
.yfc{bottom:502.136000pt;}
.y1a{bottom:502.593333pt;}
.y135{bottom:505.656000pt;}
.y14e{bottom:505.886447pt;}
.y82{bottom:511.600000pt;}
.yfb{bottom:514.389333pt;}
.y41{bottom:515.186667pt;}
.y134{bottom:516.282667pt;}
.yc0{bottom:517.976000pt;}
.y19{bottom:518.534667pt;}
.y81{bottom:522.226667pt;}
.yfa{bottom:525.016000pt;}
.y40{bottom:531.126667pt;}
.y133{bottom:532.488000pt;}
.y80{bottom:532.853333pt;}
.ybf{bottom:533.916000pt;}
.y17{bottom:534.474667pt;}
.yf9{bottom:535.642667pt;}
.y18{bottom:539.294667pt;}
.y18e{bottom:541.530667pt;}
.y8f{bottom:543.480000pt;}
.yf8{bottom:546.269333pt;}
.y3f{bottom:547.066667pt;}
.y132{bottom:548.428000pt;}
.ybe{bottom:549.856000pt;}
.y16{bottom:550.414667pt;}
.y18d{bottom:553.485333pt;}
.y7f{bottom:554.106667pt;}
.yf7{bottom:556.897333pt;}
.y7e{bottom:564.733333pt;}
.y18c{bottom:565.440000pt;}
.y3e{bottom:565.684000pt;}
.ybd{bottom:565.797333pt;}
.y15{bottom:566.354667pt;}
.yf6{bottom:567.524000pt;}
.y16d{bottom:568.242667pt;}
.y7d{bottom:575.361333pt;}
.y18b{bottom:577.396000pt;}
.yf5{bottom:578.150667pt;}
.y3d{bottom:581.624000pt;}
.ybc{bottom:581.737333pt;}
.y14{bottom:582.294667pt;}
.y7c{bottom:585.988000pt;}
.y14d{bottom:586.706667pt;}
.yf4{bottom:588.777333pt;}
.y18a{bottom:589.350667pt;}
.yba{bottom:597.677333pt;}
.y13{bottom:598.234667pt;}
.yf3{bottom:599.404000pt;}
.y189{bottom:601.305333pt;}
.y3c{bottom:601.781333pt;}
.ybb{bottom:602.497333pt;}
.y7b{bottom:602.990667pt;}
.yf2{bottom:608.404000pt;}
.y188{bottom:613.261333pt;}
.yb9{bottom:613.617333pt;}
.y12{bottom:614.176000pt;}
.yf1{bottom:619.030667pt;}
.y187{bottom:625.216000pt;}
.y3b{bottom:626.768000pt;}
.yb8{bottom:629.557333pt;}
.y11{bottom:630.116000pt;}
.y7a{bottom:635.534667pt;}
.y186{bottom:637.172000pt;}
.yf0{bottom:641.910667pt;}
.y3a{bottom:642.708000pt;}
.yb7{bottom:645.497333pt;}
.y79{bottom:646.161333pt;}
.y185{bottom:649.126667pt;}
.y10{bottom:651.381333pt;}
.yef{bottom:652.538667pt;}
.y78{bottom:656.789333pt;}
.y39{bottom:658.648000pt;}
.y184{bottom:661.081333pt;}
.yb6{bottom:661.438667pt;}
.yee{bottom:663.165333pt;}
.y77{bottom:667.416000pt;}
.y183{bottom:673.037333pt;}
.yed{bottom:673.792000pt;}
.y38{bottom:674.588000pt;}
.yb5{bottom:677.378667pt;}
.y76{bottom:678.042667pt;}
.yf{bottom:679.061333pt;}
.yec{bottom:684.418667pt;}
.y182{bottom:684.992000pt;}
.y75{bottom:688.669333pt;}
.y37{bottom:690.529333pt;}
.yb4{bottom:693.318667pt;}
.yd{bottom:695.001333pt;}
.yeb{bottom:695.045333pt;}
.y181{bottom:696.946667pt;}
.y74{bottom:699.296000pt;}
.ye{bottom:699.822667pt;}
.yea{bottom:705.672000pt;}
.y36{bottom:706.469333pt;}
.y180{bottom:708.902667pt;}
.yb3{bottom:709.258667pt;}
.y73{bottom:709.922667pt;}
.y131{bottom:710.122667pt;}
.yc{bottom:716.268000pt;}
.ye9{bottom:716.298667pt;}
.y72{bottom:720.549333pt;}
.y17f{bottom:720.857333pt;}
.y130{bottom:722.077333pt;}
.y35{bottom:722.409333pt;}
.yb2{bottom:725.198667pt;}
.ye8{bottom:726.925333pt;}
.y71{bottom:731.176000pt;}
.y17e{bottom:732.812000pt;}
.y12f{bottom:734.032000pt;}
.ye7{bottom:737.552000pt;}
.yb{bottom:738.349333pt;}
.yb1{bottom:741.138667pt;}
.y70{bottom:741.802667pt;}
.y17d{bottom:744.768000pt;}
.y12e{bottom:745.988000pt;}
.ye6{bottom:748.180000pt;}
.y6f{bottom:752.430667pt;}
.y17c{bottom:756.722667pt;}
.yb0{bottom:757.080000pt;}
.y12d{bottom:757.942667pt;}
.ye5{bottom:758.806667pt;}
.y6e{bottom:763.057333pt;}
.y17b{bottom:768.678667pt;}
.ye4{bottom:769.433333pt;}
.y12c{bottom:769.898667pt;}
.yaf{bottom:773.020000pt;}
.y6d{bottom:773.684000pt;}
.ye3{bottom:780.060000pt;}
.y17a{bottom:780.633333pt;}
.y12b{bottom:781.853333pt;}
.ya{bottom:783.160000pt;}
.y6c{bottom:784.310667pt;}
.yae{bottom:788.960000pt;}
.ye2{bottom:790.686667pt;}
.y179{bottom:792.588000pt;}
.y12a{bottom:793.808000pt;}
.y6b{bottom:794.937333pt;}
.y9{bottom:799.598667pt;}
.ye1{bottom:801.313333pt;}
.y178{bottom:804.544000pt;}
.yac{bottom:804.900000pt;}
.y6a{bottom:805.564000pt;}
.y129{bottom:805.764000pt;}
.yad{bottom:809.720000pt;}
.ye0{bottom:811.940000pt;}
.y69{bottom:816.190667pt;}
.y177{bottom:816.498667pt;}
.y128{bottom:817.718667pt;}
.yab{bottom:820.840000pt;}
.y8{bottom:820.857333pt;}
.y68{bottom:826.817333pt;}
.y176{bottom:828.453333pt;}
.y127{bottom:829.673333pt;}
.ydf{bottom:833.193333pt;}
.yaa{bottom:836.780000pt;}
.y7{bottom:837.296000pt;}
.y67{bottom:837.444000pt;}
.y175{bottom:840.409333pt;}
.y126{bottom:841.629333pt;}
.yde{bottom:843.821333pt;}
.y66{bottom:848.072000pt;}
.y174{bottom:852.364000pt;}
.ya9{bottom:852.721333pt;}
.y125{bottom:853.584000pt;}
.y6{bottom:853.733333pt;}
.y65{bottom:858.698667pt;}
.y173{bottom:864.320000pt;}
.ydd{bottom:865.074667pt;}
.y5{bottom:865.352000pt;}
.y124{bottom:865.540000pt;}
.ya8{bottom:868.661333pt;}
.y64{bottom:869.325333pt;}
.y4{bottom:870.172000pt;}
.ydc{bottom:875.701333pt;}
.y172{bottom:876.274667pt;}
.y123{bottom:877.494667pt;}
.y63{bottom:879.952000pt;}
.y3{bottom:881.986667pt;}
.ya7{bottom:884.601333pt;}
.ydb{bottom:886.328000pt;}
.y171{bottom:888.229333pt;}
.y122{bottom:889.449333pt;}
.y62{bottom:890.578667pt;}
.ya6{bottom:900.541333pt;}
.y61{bottom:901.205333pt;}
.y121{bottom:901.405333pt;}
.y170{bottom:907.125333pt;}
.yda{bottom:907.581333pt;}
.y60{bottom:911.832000pt;}
.y120{bottom:913.360000pt;}
.ya5{bottom:920.665333pt;}
.y5f{bottom:922.458667pt;}
.yd9{bottom:923.788000pt;}
.y2{bottom:923.830667pt;}
.y11f{bottom:925.314667pt;}
.y5e{bottom:933.085333pt;}
.y11e{bottom:937.270667pt;}
.yd8{bottom:939.728000pt;}
.y5d{bottom:943.713333pt;}
.ya4{bottom:945.572000pt;}
.y5c{bottom:954.340000pt;}
.y11d{bottom:956.166667pt;}
.y1{bottom:961.024000pt;}
.ya3{bottom:961.512000pt;}
.y5b{bottom:964.966667pt;}
.y5a{bottom:975.593333pt;}
.y16f{bottom:976.880000pt;}
.ya2{bottom:977.453333pt;}
.y11c{bottom:982.234667pt;}
.hb{height:4.718299pt;}
.h9{height:21.933807pt;}
.h12{height:22.582417pt;}
.h13{height:22.681425pt;}
.hc{height:24.845325pt;}
.h6{height:25.589197pt;}
.h14{height:29.244260pt;}
.ha{height:29.244954pt;}
.h15{height:29.372475pt;}
.h3{height:29.925069pt;}
.hf{height:31.351991pt;}
.h10{height:31.357325pt;}
.hd{height:32.900710pt;}
.h8{height:35.493423pt;}
.h5{height:36.290431pt;}
.h4{height:36.556100pt;}
.he{height:36.715502pt;}
.h7{height:44.869197pt;}
.h2{height:51.039735pt;}
.h1{height:87.734861pt;}
.h11{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.w1{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x48{left:64.289333pt;}
.x2{left:65.285333pt;}
.x27{left:75.912000pt;}
.xc{left:78.569333pt;}
.x28{left:80.178667pt;}
.x35{left:87.601333pt;}
.x3d{left:91.852000pt;}
.x55{left:97.432000pt;}
.x36{left:98.760000pt;}
.x19{left:100.846667pt;}
.x20{left:105.444000pt;}
.x3{left:110.164000pt;}
.x54{left:115.212000pt;}
.x1b{left:117.769333pt;}
.x37{left:121.076000pt;}
.x38{left:132.234667pt;}
.x39{left:143.393333pt;}
.x44{left:150.512000pt;}
.x3e{left:153.220000pt;}
.x3a{left:154.552000pt;}
.x9{left:156.446667pt;}
.x21{left:157.901333pt;}
.x3b{left:165.709333pt;}
.x29{left:188.702667pt;}
.x2a{left:191.840000pt;}
.x73{left:196.176000pt;}
.x57{left:199.143405pt;}
.x72{left:200.378667pt;}
.xb{left:203.341333pt;}
.x7{left:205.462667pt;}
.x2b{left:209.266667pt;}
.x2c{left:212.404000pt;}
.x15{left:218.758667pt;}
.x22{left:220.624000pt;}
.x6{left:230.476000pt;}
.x58{left:234.019046pt;}
.xa{left:242.994667pt;}
.xd{left:267.461333pt;}
.x59{left:268.894686pt;}
.xe{left:272.774667pt;}
.x24{left:284.053333pt;}
.xf{left:285.409333pt;}
.x4{left:287.221333pt;}
.x23{left:289.529333pt;}
.x10{left:290.724000pt;}
.x11{left:292.429333pt;}
.x1c{left:297.188000pt;}
.x1e{left:298.341333pt;}
.x4a{left:303.153333pt;}
.x16{left:306.429333pt;}
.x3c{left:321.236000pt;}
.x2d{left:322.380000pt;}
.x2e{left:325.516000pt;}
.x1{left:326.577333pt;}
.x5a{left:338.645968pt;}
.x25{left:339.844000pt;}
.x4b{left:341.549333pt;}
.x4c{left:344.686667pt;}
.x26{left:346.944000pt;}
.x8{left:348.140000pt;}
.x45{left:355.201333pt;}
.x46{left:358.337333pt;}
.x1a{left:360.577333pt;}
.x13{left:362.885333pt;}
.x1f{left:370.098667pt;}
.x12{left:372.130667pt;}
.x5b{left:373.521609pt;}
.x4d{left:375.933333pt;}
.x56{left:379.722667pt;}
.x17{left:382.284000pt;}
.x47{left:386.042667pt;}
.x1d{left:389.509333pt;}
.x49{left:393.653333pt;}
.x14{left:394.765333pt;}
.x18{left:398.224000pt;}
.x5{left:406.652000pt;}
.x5c{left:408.397250pt;}
.x2f{left:415.970667pt;}
.x3f{left:421.712000pt;}
.x6d{left:424.149333pt;}
.x4f{left:427.128000pt;}
.x33{left:429.253333pt;}
.x34{left:430.453333pt;}
.x40{left:432.869333pt;}
.x50{left:438.286667pt;}
.x4e{left:442.537333pt;}
.x41{left:444.028000pt;}
.x53{left:448.116000pt;}
.x51{left:449.445333pt;}
.x42{left:459.437333pt;}
.x52{left:460.602667pt;}
.x6e{left:466.552000pt;}
.x5d{left:478.148531pt;}
.x43{left:507.022667pt;}
.x6f{left:509.164000pt;}
.x5e{left:513.024172pt;}
.x5f{left:547.899813pt;}
.x70{left:551.670667pt;}
.x60{left:582.775454pt;}
.x71{left:594.178667pt;}
.x61{left:617.651094pt;}
.x32{left:630.905333pt;}
.x62{left:652.526735pt;}
.x30{left:680.342667pt;}
.x63{left:687.402376pt;}
.x64{left:722.278017pt;}
.x31{left:731.426667pt;}
.x65{left:757.153658pt;}
.x66{left:792.029298pt;}
.x67{left:826.904939pt;}
.x68{left:861.780580pt;}
.x69{left:896.656221pt;}
.x6a{left:931.531862pt;}
.x6b{left:966.407502pt;}
.x6c{left:1001.283143pt;}
}




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