
    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_a1f426bacbaa923cbf201323.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_81d71f2ae284568f51083834.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ee0c5a493bbd66ed796cb22a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.979004;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_66c374fc673f6ec9cebee0bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979980;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_96517659f5cf951568db0ffb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_f4355811c1e8994f91136243.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979980;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_a1f426bacbaa923cbf201323.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_81919a1bf10ef8b57b580b14.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_e0661851a52b799228bd9139.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.873535;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_b14cd776af27a9240e2d0625.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m7{transform:matrix(0.000000,-0.222336,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.222336,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.222336,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.246079,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.246079,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.246079,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.248806,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248806,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248806,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.272587,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.272587,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.272587,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.229284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229284,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.229285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229285,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251201,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253983,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.281106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281106,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-21.978000px;}
.v4{vertical-align:-14.280000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.006000px;}
.v5{vertical-align:14.985000px;}
.v2{vertical-align:17.982000px;}
.v6{vertical-align:32.400000px;}
.ls3b{letter-spacing:-6.000000px;}
.ls2{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-0.600000px;}
.ls2b{letter-spacing:-0.396994px;}
.ls34{letter-spacing:-0.363346px;}
.ls14{letter-spacing:-0.354634px;}
.ls29{letter-spacing:-0.347369px;}
.ls1c{letter-spacing:-0.340384px;}
.ls23{letter-spacing:-0.327605px;}
.ls32{letter-spacing:-0.317927px;}
.ls12{letter-spacing:-0.310304px;}
.ls5{letter-spacing:-0.307440px;}
.ls28{letter-spacing:-0.297745px;}
.ls21{letter-spacing:-0.286654px;}
.ls31{letter-spacing:-0.272509px;}
.ls11{letter-spacing:-0.265975px;}
.ls6{letter-spacing:-0.256200px;}
.ls2a{letter-spacing:-0.248121px;}
.ls20{letter-spacing:-0.245704px;}
.ls33{letter-spacing:-0.227091px;}
.ls1a{letter-spacing:-0.226922px;}
.ls3a{letter-spacing:-0.225058px;}
.ls13{letter-spacing:-0.221646px;}
.ls8{letter-spacing:-0.204960px;}
.ls22{letter-spacing:-0.204753px;}
.ls16{letter-spacing:-0.198490px;}
.ls27{letter-spacing:-0.148873px;}
.ls30{letter-spacing:-0.136255px;}
.ls10{letter-spacing:-0.132988px;}
.ls1f{letter-spacing:-0.122852px;}
.ls26{letter-spacing:-0.061475px;}
.ls1b{letter-spacing:-0.056731px;}
.ls2f{letter-spacing:-0.056264px;}
.lsf{letter-spacing:-0.054916px;}
.ls1e{letter-spacing:-0.050729px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000300px;}
.ls4{letter-spacing:0.004800px;}
.ls38{letter-spacing:0.112529px;}
.ls19{letter-spacing:0.113461px;}
.ls37{letter-spacing:0.168793px;}
.ls1d{letter-spacing:0.170192px;}
.ls2e{letter-spacing:0.184424px;}
.ls15{letter-spacing:0.265922px;}
.ls39{letter-spacing:0.281322px;}
.ls18{letter-spacing:0.283653px;}
.ls25{letter-spacing:0.304376px;}
.ls36{letter-spacing:0.337586px;}
.ls2c{letter-spacing:0.338285px;}
.ls24{letter-spacing:0.342248px;}
.ls35{letter-spacing:0.342965px;}
.ls7{letter-spacing:0.358680px;}
.ls2d{letter-spacing:0.368849px;}
.ls17{letter-spacing:0.453845px;}
.lsb{letter-spacing:316.675800px;}
.lsd{letter-spacing:324.955200px;}
.lsa{letter-spacing:355.515000px;}
.lsc{letter-spacing:438.756000px;}
.ls9{letter-spacing:520.283400px;}
.ls0{letter-spacing:699.402000px;}
.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;}
}
.ws0{word-spacing:-23.352000px;}
.ws5{word-spacing:-16.680000px;}
.ws6{word-spacing:-15.012000px;}
.ws8{word-spacing:-14.603400px;}
.wsa{word-spacing:-14.039760px;}
.ws3e{word-spacing:-13.831830px;}
.ws2e{word-spacing:-13.104769px;}
.ws4b{word-spacing:-12.997076px;}
.ws2f{word-spacing:-12.991307px;}
.ws30{word-spacing:-12.934577px;}
.ws4c{word-spacing:-12.884548px;}
.ws4a{word-spacing:-12.828283px;}
.ws2c{word-spacing:-12.821116px;}
.ws2d{word-spacing:-12.764385px;}
.ws44{word-spacing:-12.659490px;}
.ws2a{word-spacing:-12.594193px;}
.ws4d{word-spacing:-12.490697px;}
.ws2b{word-spacing:-12.480732px;}
.ws18{word-spacing:-12.356010px;}
.ws38{word-spacing:-11.414115px;}
.ws3f{word-spacing:-11.066197px;}
.ws42{word-spacing:-10.966948px;}
.ws40{word-spacing:-10.917324px;}
.ws41{word-spacing:-10.867700px;}
.ws43{word-spacing:-10.818076px;}
.ws45{word-spacing:-10.128259px;}
.ws48{word-spacing:-10.037422px;}
.ws46{word-spacing:-9.992004px;}
.ws47{word-spacing:-9.946586px;}
.ws49{word-spacing:-9.901168px;}
.ws19{word-spacing:-9.885412px;}
.ws1c{word-spacing:-9.796753px;}
.ws1a{word-spacing:-9.752424px;}
.ws1b{word-spacing:-9.708095px;}
.ws1d{word-spacing:-9.663766px;}
.ws39{word-spacing:-9.131984px;}
.ws3c{word-spacing:-9.050083px;}
.ws3a{word-spacing:-9.009132px;}
.ws3b{word-spacing:-8.968181px;}
.ws3d{word-spacing:-8.927231px;}
.ws15{word-spacing:-8.751996px;}
.ws4{word-spacing:-8.696028px;}
.ws17{word-spacing:-7.293330px;}
.wsb{word-spacing:-6.750000px;}
.wsd{word-spacing:-0.922320px;}
.ws57{word-spacing:-0.922122px;}
.ws5c{word-spacing:-0.857412px;}
.ws51{word-spacing:-0.855621px;}
.ws56{word-spacing:-0.845712px;}
.ws5d{word-spacing:-0.843966px;}
.ws33{word-spacing:-0.794228px;}
.ws52{word-spacing:-0.760941px;}
.ws5e{word-spacing:-0.675173px;}
.ws21{word-spacing:-0.664806px;}
.ws36{word-spacing:-0.453845px;}
.wse{word-spacing:-0.256200px;}
.ws22{word-spacing:-0.198490px;}
.ws32{word-spacing:-0.113461px;}
.ws3{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws4f{word-spacing:0.122852px;}
.ws1f{word-spacing:0.132988px;}
.ws5a{word-spacing:0.136255px;}
.ws54{word-spacing:0.148873px;}
.ws5f{word-spacing:0.225058px;}
.ws31{word-spacing:0.226922px;}
.ws50{word-spacing:0.245704px;}
.ws58{word-spacing:0.245899px;}
.ws20{word-spacing:0.265975px;}
.ws5b{word-spacing:0.272509px;}
.ws55{word-spacing:0.297745px;}
.wsc{word-spacing:0.307440px;}
.ws35{word-spacing:0.397114px;}
.ws2{word-spacing:0.600000px;}
.ws4e{word-spacing:0.655210px;}
.ws1e{word-spacing:0.709267px;}
.ws59{word-spacing:0.726691px;}
.ws53{word-spacing:0.793987px;}
.ws34{word-spacing:0.907690px;}
.ws9{word-spacing:1.383480px;}
.ws37{word-spacing:1.758649px;}
.ws7{word-spacing:2.049600px;}
.ws60{word-spacing:6.000000px;}
.ws14{word-spacing:63.180000px;}
.ws16{word-spacing:90.180000px;}
.ws13{word-spacing:144.180000px;}
.ws12{word-spacing:151.794000px;}
.ws11{word-spacing:156.006000px;}
.wsf{word-spacing:205.470000px;}
.ws28{word-spacing:283.608000px;}
.ws25{word-spacing:304.722000px;}
.ws23{word-spacing:307.702800px;}
.ws27{word-spacing:319.356000px;}
.ws29{word-spacing:337.068000px;}
.ws24{word-spacing:404.244000px;}
.ws26{word-spacing:436.914000px;}
.ws10{word-spacing:439.457046px;}
._9{margin-left:-3060.454200px;}
._e{margin-left:-1296.084360px;}
._6{margin-left:-10.800000px;}
._3d{margin-left:-9.404400px;}
._7{margin-left:-8.006400px;}
._5{margin-left:-6.386400px;}
._8{margin-left:-5.209200px;}
._38{margin-left:-4.158300px;}
._3{margin-left:-2.880000px;}
._4{margin-left:-1.324800px;}
._0{width:1.900800px;}
._3c{width:3.024000px;}
._2{width:4.291200px;}
._c{width:6.215400px;}
._b{width:73.386000px;}
._28{width:78.192000px;}
._2b{width:84.592800px;}
._d{width:86.085000px;}
._26{width:88.128000px;}
._3b{width:89.964600px;}
._34{width:112.806000px;}
._27{width:114.156000px;}
._33{width:115.506000px;}
._11{width:120.124800px;}
._25{width:124.956000px;}
._35{width:128.415600px;}
._2f{width:130.082400px;}
._37{width:139.806000px;}
._36{width:142.128000px;}
._32{width:144.990000px;}
._a{width:147.423600px;}
._2e{width:151.956000px;}
._31{width:153.954000px;}
._21{width:159.192000px;}
._1e{width:169.128000px;}
._1b{width:170.709600px;}
._2d{width:172.008000px;}
._1a{width:179.010000px;}
._18{width:180.954000px;}
._30{width:190.782000px;}
._23{width:193.298400px;}
._1f{width:195.156000px;}
._10{width:197.586000px;}
._1d{width:205.956000px;}
._19{width:206.982000px;}
._17{width:217.818000px;}
._2a{width:222.076800px;}
._13{width:230.418000px;}
._39{width:233.874000px;}
._15{width:244.890000px;}
._29{width:246.740400px;}
._16{width:255.096000px;}
._14{width:270.540000px;}
._12{width:281.340000px;}
._3a{width:319.734000px;}
._24{width:408.996000px;}
._1c{width:551.908800px;}
._20{width:615.996000px;}
._22{width:661.960800px;}
._2c{width:731.916000px;}
._f{width:756.000000px;}
._1{width:2421.450600px;}
.fc6{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc7{color:rgb(109,110,113);}
.fc5{color:rgb(51,51,51);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(118,33,35);}
.fc0{color:rgb(118,33,35);}
.fsb{font-size:26.235000px;}
.fs7{font-size:31.482000px;}
.fs1a{font-size:36.000000px;}
.fs8{font-size:38.478000px;}
.fs12{font-size:40.950600px;}
.fsd{font-size:44.329200px;}
.fs9{font-size:45.000000px;}
.fs18{font-size:45.418200px;}
.fs0{font-size:48.000000px;}
.fs15{font-size:49.624200px;}
.fs11{font-size:50.729400px;}
.fsa{font-size:51.240000px;}
.fs6{font-size:54.000000px;}
.fsc{font-size:54.915600px;}
.fs17{font-size:56.264400px;}
.fs16{font-size:56.380800px;}
.fs10{font-size:56.730600px;}
.fs13{font-size:57.041400px;}
.fs19{font-size:57.160800px;}
.fs4{font-size:60.000000px;}
.fs14{font-size:61.474800px;}
.fs3{font-size:66.000000px;}
.fsf{font-size:66.163200px;}
.fse{font-size:66.480600px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y11d{bottom:5.349900px;}
.y13e{bottom:5.903850px;}
.y12c{bottom:6.379950px;}
.yab{bottom:6.443850px;}
.y1{bottom:31.781100px;}
.y11b{bottom:37.100400px;}
.y13c{bottom:41.118600px;}
.ya9{bottom:43.460700px;}
.y12a{bottom:44.855700px;}
.y12b{bottom:46.340700px;}
.y11c{bottom:46.360500px;}
.y11a{bottom:49.534500px;}
.y13b{bottom:54.909450px;}
.y145{bottom:56.498100px;}
.ya8{bottom:56.920800px;}
.y129{bottom:59.923650px;}
.y21{bottom:67.075350px;}
.y119{bottom:69.387900px;}
.y13d{bottom:71.019450px;}
.y17a{bottom:73.496400px;}
.y13a{bottom:76.929000px;}
.y38{bottom:77.215350px;}
.ya7{bottom:78.412500px;}
.y118{bottom:81.822150px;}
.y144{bottom:82.035900px;}
.y128{bottom:83.982300px;}
.y20{bottom:85.075350px;}
.y139{bottom:90.719700px;}
.ya6{bottom:91.872750px;}
.y117{bottom:94.256400px;}
.y37{bottom:95.215350px;}
.y127{bottom:99.050100px;}
.y1f{bottom:103.075350px;}
.y138{bottom:104.510400px;}
.ya5{bottom:105.332850px;}
.y111{bottom:106.748250px;}
.y143{bottom:107.573700px;}
.y80{bottom:107.834700px;}
.y12f{bottom:112.720050px;}
.y36{bottom:113.215350px;}
.y126{bottom:114.118200px;}
.ye0{bottom:114.468300px;}
.y132{bottom:118.365450px;}
.y9f{bottom:118.855650px;}
.y1e{bottom:121.075350px;}
.y7f{bottom:125.834700px;}
.y112{bottom:128.067450px;}
.y120{bottom:129.256050px;}
.y35{bottom:131.215350px;}
.y142{bottom:133.111350px;}
.ydf{bottom:135.798300px;}
.y1d{bottom:139.075350px;}
.y12e{bottom:140.622750px;}
.y7e{bottom:143.834700px;}
.y133{bottom:145.611750px;}
.ya0{bottom:148.496400px;}
.y34{bottom:149.215350px;}
.y113{bottom:149.386350px;}
.yde{bottom:151.998300px;}
.yaa{bottom:152.441250px;}
.y121{bottom:157.127550px;}
.y141{bottom:158.649150px;}
.y7d{bottom:161.834700px;}
.y1c{bottom:164.575350px;}
.y33{bottom:167.215350px;}
.y12d{bottom:168.525450px;}
.y5e{bottom:169.643850px;}
.y10e{bottom:170.614350px;}
.y114{bottom:170.705700px;}
.y134{bottom:172.858050px;}
.ydd{bottom:173.328300px;}
.ya1{bottom:178.137300px;}
.y7c{bottom:179.834700px;}
.y140{bottom:184.186800px;}
.y122{bottom:184.999200px;}
.y32{bottom:185.215350px;}
.y5d{bottom:187.513350px;}
.y10d{bottom:188.614350px;}
.ydc{bottom:189.528300px;}
.y115{bottom:192.024600px;}
.y135{bottom:200.104500px;}
.y31{bottom:203.215350px;}
.y5c{bottom:203.383500px;}
.y10c{bottom:206.614350px;}
.ya2{bottom:207.778050px;}
.y131{bottom:208.410000px;}
.y13f{bottom:209.724750px;}
.ydb{bottom:210.858300px;}
.y7b{bottom:211.334700px;}
.y123{bottom:212.871000px;}
.y116{bottom:213.343800px;}
.y1b{bottom:214.075350px;}
.y5b{bottom:219.583500px;}
.y30{bottom:221.215350px;}
.y10b{bottom:224.614350px;}
.y136{bottom:227.350800px;}
.y7a{bottom:229.334700px;}
.y1a{bottom:232.075350px;}
.yda{bottom:232.188300px;}
.y5a{bottom:235.783500px;}
.ya3{bottom:237.418800px;}
.y124{bottom:240.742500px;}
.y10a{bottom:242.614350px;}
.y79{bottom:247.334700px;}
.yd9{bottom:248.388300px;}
.y19{bottom:250.075350px;}
.y2f{bottom:252.715350px;}
.y137{bottom:254.597400px;}
.y59{bottom:257.113500px;}
.y109{bottom:260.614350px;}
.y78{bottom:265.334700px;}
.ya4{bottom:267.059550px;}
.y18{bottom:268.075350px;}
.y125{bottom:268.614000px;}
.yd8{bottom:269.715600px;}
.y2e{bottom:270.715350px;}
.y58{bottom:273.313500px;}
.y108{bottom:278.614350px;}
.y77{bottom:283.334700px;}
.y17{bottom:286.075350px;}
.y9e{bottom:287.688000px;}
.yd7{bottom:287.715600px;}
.y2d{bottom:288.715350px;}
.y57{bottom:289.513500px;}
.y107{bottom:296.614350px;}
.y16{bottom:304.075350px;}
.y2c{bottom:306.715350px;}
.y56{bottom:310.843500px;}
.y106{bottom:314.614350px;}
.yd6{bottom:316.079400px;}
.y15{bottom:322.075350px;}
.y2b{bottom:324.715350px;}
.y55{bottom:327.043500px;}
.yd5{bottom:334.079400px;}
.y14{bottom:340.075350px;}
.y105{bottom:340.108350px;}
.y2a{bottom:342.715350px;}
.y54{bottom:348.373500px;}
.yd4{bottom:352.079400px;}
.y13{bottom:358.075350px;}
.y29{bottom:360.715350px;}
.y104{bottom:364.111350px;}
.y53{bottom:369.703500px;}
.yd3{bottom:370.079400px;}
.y12{bottom:376.075350px;}
.y103{bottom:388.114350px;}
.y28{bottom:392.215350px;}
.y11{bottom:394.075350px;}
.y52{bottom:395.575950px;}
.yd2{bottom:401.579400px;}
.y27{bottom:410.215350px;}
.y10{bottom:412.075350px;}
.yd1{bottom:419.579400px;}
.y51{bottom:421.945950px;}
.y26{bottom:428.215350px;}
.yf{bottom:430.075350px;}
.yd0{bottom:437.579400px;}
.y102{bottom:437.614350px;}
.y50{bottom:439.945950px;}
.y25{bottom:446.215350px;}
.y74{bottom:446.603700px;}
.y75{bottom:446.898330px;}
.ye{bottom:448.075350px;}
.ycf{bottom:455.579400px;}
.y4f{bottom:457.945950px;}
.y101{bottom:461.614350px;}
.yd{bottom:466.075350px;}
.yce{bottom:473.579400px;}
.y4e{bottom:475.945950px;}
.y24{bottom:477.715350px;}
.y100{bottom:479.614350px;}
.yc{bottom:484.075350px;}
.ycd{bottom:491.579400px;}
.y4d{bottom:493.945950px;}
.y23{bottom:495.715350px;}
.yff{bottom:497.614350px;}
.y130{bottom:501.684300px;}
.yb{bottom:509.575350px;}
.ycc{bottom:509.579400px;}
.y4c{bottom:511.945950px;}
.y22{bottom:513.715350px;}
.ycb{bottom:527.579400px;}
.yfe{bottom:529.114350px;}
.y4b{bottom:537.445950px;}
.yca{bottom:545.579400px;}
.yfd{bottom:547.114350px;}
.y11f{bottom:556.756500px;}
.y5{bottom:562.254300px;}
.yc9{bottom:563.579400px;}
.yfc{bottom:565.114350px;}
.yc8{bottom:581.579400px;}
.yfb{bottom:583.114350px;}
.y179{bottom:585.859800px;}
.y4a{bottom:586.945950px;}
.y9d{bottom:593.513250px;}
.yfa{bottom:601.114350px;}
.y178{bottom:603.859800px;}
.y49{bottom:604.945950px;}
.y4{bottom:606.014250px;}
.yc7{bottom:613.079400px;}
.y175{bottom:615.977850px;}
.y76{bottom:616.096500px;}
.yf9{bottom:619.114350px;}
.y177{bottom:621.859800px;}
.y48{bottom:622.945950px;}
.y9c{bottom:630.311850px;}
.yc6{bottom:631.079400px;}
.y174{bottom:633.973350px;}
.y73{bottom:636.145950px;}
.yf8{bottom:637.114350px;}
.y47{bottom:640.945950px;}
.y176{bottom:642.859800px;}
.y9b{bottom:643.811850px;}
.yc5{bottom:649.079400px;}
.y3{bottom:651.014250px;}
.y173{bottom:651.968850px;}
.y72{bottom:652.345950px;}
.yf7{bottom:655.114350px;}
.y46{bottom:658.945950px;}
.y9a{bottom:661.058100px;}
.yc4{bottom:667.079400px;}
.yf6{bottom:673.114350px;}
.y71{bottom:674.545950px;}
.y45{bottom:676.945950px;}
.yc3{bottom:685.079400px;}
.y99{bottom:685.968300px;}
.yf5{bottom:691.114350px;}
.y70{bottom:692.545950px;}
.y44{bottom:694.945950px;}
.y2{bottom:696.014250px;}
.y98{bottom:707.295750px;}
.yf4{bottom:709.114350px;}
.y6f{bottom:710.545950px;}
.y43{bottom:712.945950px;}
.yc2{bottom:716.579400px;}
.y172{bottom:727.057500px;}
.yf3{bottom:727.114350px;}
.y15e{bottom:728.191350px;}
.y6e{bottom:728.545950px;}
.y97{bottom:732.195750px;}
.yc1{bottom:734.579400px;}
.y171{bottom:745.057500px;}
.y15d{bottom:746.191350px;}
.y6d{bottom:746.545950px;}
.yc0{bottom:752.579400px;}
.y96{bottom:753.525750px;}
.y170{bottom:763.057500px;}
.y15c{bottom:764.191350px;}
.y6c{bottom:764.545950px;}
.y95{bottom:769.707450px;}
.ybf{bottom:770.579400px;}
.y16f{bottom:781.057500px;}
.y15b{bottom:782.191350px;}
.y6b{bottom:782.545950px;}
.yf2{bottom:784.387941px;}
.ybe{bottom:788.579400px;}
.y94{bottom:791.037450px;}
.yeb{bottom:797.563623px;}
.y16e{bottom:799.057500px;}
.y15a{bottom:800.191350px;}
.yf1{bottom:802.669377px;}
.ybd{bottom:806.579400px;}
.y93{bottom:807.237450px;}
.yea{bottom:813.107807px;}
.y6a{bottom:814.045950px;}
.y16d{bottom:817.057500px;}
.y159{bottom:818.191350px;}
.yf0{bottom:820.950813px;}
.ybc{bottom:824.579400px;}
.y92{bottom:828.567450px;}
.ye9{bottom:828.822183px;}
.y69{bottom:832.045950px;}
.yef{bottom:839.232248px;}
.y158{bottom:842.191350px;}
.ybb{bottom:842.579400px;}
.ye8{bottom:846.933427px;}
.y91{bottom:849.897450px;}
.y68{bottom:850.045950px;}
.y16c{bottom:854.545950px;}
.yee{bottom:857.343492px;}
.y157{bottom:860.191350px;}
.yba{bottom:860.579400px;}
.ye7{bottom:862.647804px;}
.y11e{bottom:863.109300px;}
.y67{bottom:868.045950px;}
.y146{bottom:869.507250px;}
.y90{bottom:871.227450px;}
.y16b{bottom:872.545950px;}
.yed{bottom:875.624928px;}
.y156{bottom:878.191350px;}
.yb9{bottom:878.579400px;}
.ye6{bottom:880.929239px;}
.y66{bottom:886.045950px;}
.y16a{bottom:890.545950px;}
.y8f{bottom:892.557450px;}
.y8{bottom:893.137200px;}
.yec{bottom:893.906364px;}
.y155{bottom:896.191350px;}
.ye5{bottom:896.473424px;}
.yb8{bottom:896.579400px;}
.y65{bottom:904.045950px;}
.y169{bottom:908.545950px;}
.ya{bottom:908.903850px;}
.ye4{bottom:912.187800px;}
.y8e{bottom:913.887450px;}
.y154{bottom:914.191350px;}
.yb7{bottom:914.579400px;}
.y168{bottom:926.545950px;}
.y64{bottom:929.545950px;}
.y153{bottom:932.191350px;}
.yb6{bottom:932.579400px;}
.y8d{bottom:935.214900px;}
.y110{bottom:940.842000px;}
.ye3{bottom:942.135600px;}
.y167{bottom:944.545950px;}
.yb5{bottom:950.579400px;}
.y152{bottom:956.191350px;}
.y8c{bottom:956.542350px;}
.y166{bottom:962.545950px;}
.y151{bottom:974.191350px;}
.ye2{bottom:976.645950px;}
.y8b{bottom:977.861850px;}
.y63{bottom:979.045950px;}
.y165{bottom:980.545950px;}
.yb4{bottom:991.444050px;}
.y150{bottom:992.191350px;}
.ye1{bottom:992.845950px;}
.y62{bottom:997.045950px;}
.y164{bottom:998.545950px;}
.y8a{bottom:999.191850px;}
.y14f{bottom:1010.191350px;}
.yb3{bottom:1012.774050px;}
.y42{bottom:1014.445950px;}
.y61{bottom:1015.045950px;}
.y7{bottom:1018.586400px;}
.y89{bottom:1020.521850px;}
.y163{bottom:1024.045950px;}
.y6{bottom:1024.773900px;}
.y14e{bottom:1028.191350px;}
.yb2{bottom:1028.974050px;}
.y41{bottom:1030.645950px;}
.y60{bottom:1033.045950px;}
.y9{bottom:1041.101850px;}
.y88{bottom:1041.851850px;}
.y40{bottom:1046.845950px;}
.y14d{bottom:1049.191350px;}
.yb1{bottom:1050.304050px;}
.y5f{bottom:1051.045950px;}
.y87{bottom:1063.179300px;}
.yb0{bottom:1066.504050px;}
.y3f{bottom:1069.045950px;}
.y162{bottom:1073.545950px;}
.y86{bottom:1084.504050px;}
.y3e{bottom:1087.045950px;}
.yaf{bottom:1087.834050px;}
.y161{bottom:1091.545950px;}
.y14c{bottom:1098.691350px;}
.y3d{bottom:1105.045950px;}
.y85{bottom:1105.834050px;}
.yae{bottom:1109.164050px;}
.y160{bottom:1109.545950px;}
.y14b{bottom:1116.691350px;}
.y3c{bottom:1123.045950px;}
.yad{bottom:1125.364050px;}
.y84{bottom:1127.164050px;}
.y15f{bottom:1127.545950px;}
.y14a{bottom:1134.691350px;}
.y3b{bottom:1141.045950px;}
.y83{bottom:1143.364050px;}
.yac{bottom:1146.691350px;}
.y149{bottom:1152.691350px;}
.y3a{bottom:1159.045950px;}
.y82{bottom:1164.691350px;}
.y148{bottom:1170.691350px;}
.y81{bottom:1182.691350px;}
.y39{bottom:1184.545950px;}
.y147{bottom:1188.691350px;}
.y10f{bottom:1189.727850px;}
.h13{height:19.676250px;}
.hc{height:26.303320px;}
.h2b{height:27.000000px;}
.h1e{height:27.993574px;}
.h17{height:30.303164px;}
.h28{height:31.047598px;}
.hd{height:33.750000px;}
.h23{height:33.922793px;}
.h14{height:34.661250px;}
.h1d{height:34.678301px;}
.h20{height:35.272786px;}
.h9{height:36.000000px;}
.h2{height:36.422400px;}
.h16{height:37.539961px;}
.he{height:38.430000px;}
.h27{height:38.461992px;}
.h1b{height:38.780684px;}
.h2a{height:39.121341px;}
.h24{height:39.202275px;}
.h1f{height:39.661598px;}
.h29{height:39.744619px;}
.ha{height:40.500000px;}
.hb{height:41.593500px;}
.h10{height:41.603700px;}
.hf{height:41.614500px;}
.h11{height:41.635500px;}
.h12{height:41.666700px;}
.h22{height:42.023789px;}
.h25{height:42.744197px;}
.h7{height:45.000000px;}
.h19{height:46.004100px;}
.h18{height:46.224792px;}
.h6{height:49.500000px;}
.h4{height:54.000000px;}
.h5{height:55.506000px;}
.h8{height:63.000000px;}
.h1a{height:72.900000px;}
.h3{height:108.000000px;}
.h1c{height:231.186000px;}
.h26{height:274.374000px;}
.h15{height:286.321500px;}
.h21{height:290.152500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:589.848000px;}
.w3{width:600.312000px;}
.w4{width:751.122000px;}
.w5{width:775.978500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x57{left:31.579350px;}
.x33{left:33.240900px;}
.x3e{left:39.776250px;}
.x15{left:41.897100px;}
.x14{left:48.919050px;}
.x59{left:50.041050px;}
.x1{left:62.100000px;}
.x9{left:63.779550px;}
.xc{left:69.779550px;}
.x3a{left:72.495900px;}
.x3b{left:78.991554px;}
.x27{left:88.006950px;}
.x2{left:89.572950px;}
.x73{left:90.705600px;}
.x16{left:91.940250px;}
.x81{left:98.961600px;}
.x26{left:102.632700px;}
.x4e{left:103.821450px;}
.x17{left:105.534300px;}
.x3f{left:107.887500px;}
.x68{left:112.482450px;}
.x7c{left:114.013800px;}
.x5a{left:116.501550px;}
.x4d{left:118.940850px;}
.x40{left:121.940400px;}
.x39{left:125.243700px;}
.x67{left:127.426800px;}
.x7b{left:129.165000px;}
.x5b{left:130.391550px;}
.x74{left:132.170850px;}
.x29{left:158.265300px;}
.x18{left:162.198750px;}
.x3{left:166.072950px;}
.x50{left:173.027850px;}
.x28{left:174.051150px;}
.x19{left:175.792650px;}
.x41{left:177.093900px;}
.xd{left:178.913550px;}
.x7d{left:181.525650px;}
.x5c{left:183.182700px;}
.x34{left:184.451400px;}
.x75{left:185.600250px;}
.x58{left:187.665600px;}
.x4f{left:189.346500px;}
.x42{left:191.146800px;}
.x69{left:195.293250px;}
.x5d{left:197.072700px;}
.x5{left:199.462050px;}
.x7f{left:202.342350px;}
.x71{left:210.052800px;}
.x2b{left:228.523800px;}
.x1a{left:232.457100px;}
.x1b{left:239.378850px;}
.x2a{left:243.149550px;}
.x43{left:246.300300px;}
.x5e{left:249.863850px;}
.x44{left:253.455750px;}
.x51{left:257.353650px;}
.x6a{left:260.789100px;}
.x3d{left:263.651700px;}
.x2d{left:298.782150px;}
.x1c{left:303.969000px;}
.x1d{left:310.890750px;}
.x6b{left:312.526050px;}
.x2c{left:314.568000px;}
.x45{left:316.802550px;}
.x5f{left:317.825850px;}
.x76{left:321.922050px;}
.x46{left:323.957850px;}
.x3c{left:326.136000px;}
.x52{left:327.759300px;}
.x77{left:329.092350px;}
.x7e{left:332.901750px;}
.x4{left:336.280950px;}
.x13{left:349.148550px;}
.x2e{left:369.040500px;}
.x1f{left:371.793300px;}
.x1e{left:374.227350px;}
.x6c{left:379.207200px;}
.x53{left:380.647050px;}
.x60{left:382.019850px;}
.x20{left:383.718150px;}
.x47{left:386.008800px;}
.x78{left:389.433750px;}
.x61{left:394.204650px;}
.x48{left:395.820150px;}
.x79{left:399.265500px;}
.x30{left:439.299000px;}
.x22{left:442.051800px;}
.x21{left:444.485700px;}
.x6e{left:445.888350px;}
.x63{left:448.701000px;}
.x55{left:449.853450px;}
.x62{left:451.188150px;}
.x49{left:452.698950px;}
.x23{left:453.976650px;}
.x2f{left:455.084700px;}
.x7a{left:456.945300px;}
.x64{left:460.885800px;}
.x6d{left:462.018000px;}
.x4a{left:465.026550px;}
.x54{left:466.172100px;}
.xa{left:467.714550px;}
.x82{left:470.716500px;}
.x35{left:473.716500px;}
.xf{left:477.930930px;}
.x10{left:489.332550px;}
.x32{left:509.557350px;}
.x70{left:512.569500px;}
.x24{left:519.913800px;}
.x65{left:523.151550px;}
.x25{left:524.235000px;}
.x31{left:525.343050px;}
.x66{left:527.566950px;}
.x6f{left:528.699150px;}
.x4b{left:529.765800px;}
.x4c{left:534.232950px;}
.x56{left:535.378500px;}
.x72{left:610.282500px;}
.x80{left:618.103050px;}
.x36{left:622.972500px;}
.x11{left:624.332550px;}
.xe{left:654.030000px;}
.xb{left:673.473600px;}
.x37{left:726.112500px;}
.x38{left:730.540500px;}
.x12{left:761.587050px;}
.x7{left:774.172950px;}
.x6{left:792.172950px;}
.x8{left:794.811750px;}
@media print{
.v3{vertical-align:-19.536000pt;}
.v4{vertical-align:-12.693333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.338667pt;}
.v5{vertical-align:13.320000pt;}
.v2{vertical-align:15.984000pt;}
.v6{vertical-align:28.800000pt;}
.ls3b{letter-spacing:-5.333333pt;}
.ls2{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.533333pt;}
.ls2b{letter-spacing:-0.352883pt;}
.ls34{letter-spacing:-0.322974pt;}
.ls14{letter-spacing:-0.315230pt;}
.ls29{letter-spacing:-0.308773pt;}
.ls1c{letter-spacing:-0.302563pt;}
.ls23{letter-spacing:-0.291204pt;}
.ls32{letter-spacing:-0.282602pt;}
.ls12{letter-spacing:-0.275826pt;}
.ls5{letter-spacing:-0.273280pt;}
.ls28{letter-spacing:-0.264662pt;}
.ls21{letter-spacing:-0.254804pt;}
.ls31{letter-spacing:-0.242230pt;}
.ls11{letter-spacing:-0.236422pt;}
.ls6{letter-spacing:-0.227733pt;}
.ls2a{letter-spacing:-0.220552pt;}
.ls20{letter-spacing:-0.218403pt;}
.ls33{letter-spacing:-0.201859pt;}
.ls1a{letter-spacing:-0.201709pt;}
.ls3a{letter-spacing:-0.200051pt;}
.ls13{letter-spacing:-0.197019pt;}
.ls8{letter-spacing:-0.182187pt;}
.ls22{letter-spacing:-0.182003pt;}
.ls16{letter-spacing:-0.176435pt;}
.ls27{letter-spacing:-0.132331pt;}
.ls30{letter-spacing:-0.121115pt;}
.ls10{letter-spacing:-0.118211pt;}
.ls1f{letter-spacing:-0.109202pt;}
.ls26{letter-spacing:-0.054644pt;}
.ls1b{letter-spacing:-0.050427pt;}
.ls2f{letter-spacing:-0.050013pt;}
.lsf{letter-spacing:-0.048814pt;}
.ls1e{letter-spacing:-0.045093pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000267pt;}
.ls4{letter-spacing:0.004267pt;}
.ls38{letter-spacing:0.100026pt;}
.ls19{letter-spacing:0.100854pt;}
.ls37{letter-spacing:0.150038pt;}
.ls1d{letter-spacing:0.151282pt;}
.ls2e{letter-spacing:0.163933pt;}
.ls15{letter-spacing:0.236375pt;}
.ls39{letter-spacing:0.250064pt;}
.ls18{letter-spacing:0.252136pt;}
.ls25{letter-spacing:0.270557pt;}
.ls36{letter-spacing:0.300077pt;}
.ls2c{letter-spacing:0.300698pt;}
.ls24{letter-spacing:0.304221pt;}
.ls35{letter-spacing:0.304858pt;}
.ls7{letter-spacing:0.318827pt;}
.ls2d{letter-spacing:0.327866pt;}
.ls17{letter-spacing:0.403418pt;}
.lsb{letter-spacing:281.489600pt;}
.lsd{letter-spacing:288.849067pt;}
.lsa{letter-spacing:316.013333pt;}
.lsc{letter-spacing:390.005333pt;}
.ls9{letter-spacing:462.474133pt;}
.ls0{letter-spacing:621.690667pt;}
.ws0{word-spacing:-20.757333pt;}
.ws5{word-spacing:-14.826667pt;}
.ws6{word-spacing:-13.344000pt;}
.ws8{word-spacing:-12.980800pt;}
.wsa{word-spacing:-12.479787pt;}
.ws3e{word-spacing:-12.294960pt;}
.ws2e{word-spacing:-11.648683pt;}
.ws4b{word-spacing:-11.552957pt;}
.ws2f{word-spacing:-11.547829pt;}
.ws30{word-spacing:-11.497402pt;}
.ws4c{word-spacing:-11.452931pt;}
.ws4a{word-spacing:-11.402918pt;}
.ws2c{word-spacing:-11.396547pt;}
.ws2d{word-spacing:-11.346120pt;}
.ws44{word-spacing:-11.252880pt;}
.ws2a{word-spacing:-11.194838pt;}
.ws4d{word-spacing:-11.102842pt;}
.ws2b{word-spacing:-11.093984pt;}
.ws18{word-spacing:-10.983120pt;}
.ws38{word-spacing:-10.145880pt;}
.ws3f{word-spacing:-9.836619pt;}
.ws42{word-spacing:-9.748398pt;}
.ws40{word-spacing:-9.704288pt;}
.ws41{word-spacing:-9.660178pt;}
.ws43{word-spacing:-9.616067pt;}
.ws45{word-spacing:-9.002897pt;}
.ws48{word-spacing:-8.922153pt;}
.ws46{word-spacing:-8.881781pt;}
.ws47{word-spacing:-8.841410pt;}
.ws49{word-spacing:-8.801038pt;}
.ws19{word-spacing:-8.787033pt;}
.ws1c{word-spacing:-8.708225pt;}
.ws1a{word-spacing:-8.668821pt;}
.ws1b{word-spacing:-8.629418pt;}
.ws1d{word-spacing:-8.590014pt;}
.ws39{word-spacing:-8.117319pt;}
.ws3c{word-spacing:-8.044518pt;}
.ws3a{word-spacing:-8.008117pt;}
.ws3b{word-spacing:-7.971717pt;}
.ws3d{word-spacing:-7.935316pt;}
.ws15{word-spacing:-7.779552pt;}
.ws4{word-spacing:-7.729803pt;}
.ws17{word-spacing:-6.482960pt;}
.wsb{word-spacing:-6.000000pt;}
.wsd{word-spacing:-0.819840pt;}
.ws57{word-spacing:-0.819664pt;}
.ws5c{word-spacing:-0.762144pt;}
.ws51{word-spacing:-0.760552pt;}
.ws56{word-spacing:-0.751744pt;}
.ws5d{word-spacing:-0.750192pt;}
.ws33{word-spacing:-0.705981pt;}
.ws52{word-spacing:-0.676392pt;}
.ws5e{word-spacing:-0.600154pt;}
.ws21{word-spacing:-0.590939pt;}
.ws36{word-spacing:-0.403418pt;}
.wse{word-spacing:-0.227733pt;}
.ws22{word-spacing:-0.176435pt;}
.ws32{word-spacing:-0.100854pt;}
.ws3{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.109202pt;}
.ws1f{word-spacing:0.118211pt;}
.ws5a{word-spacing:0.121115pt;}
.ws54{word-spacing:0.132331pt;}
.ws5f{word-spacing:0.200051pt;}
.ws31{word-spacing:0.201709pt;}
.ws50{word-spacing:0.218403pt;}
.ws58{word-spacing:0.218577pt;}
.ws20{word-spacing:0.236422pt;}
.ws5b{word-spacing:0.242230pt;}
.ws55{word-spacing:0.264662pt;}
.wsc{word-spacing:0.273280pt;}
.ws35{word-spacing:0.352990pt;}
.ws2{word-spacing:0.533333pt;}
.ws4e{word-spacing:0.582409pt;}
.ws1e{word-spacing:0.630460pt;}
.ws59{word-spacing:0.645948pt;}
.ws53{word-spacing:0.705766pt;}
.ws34{word-spacing:0.806835pt;}
.ws9{word-spacing:1.229760pt;}
.ws37{word-spacing:1.563243pt;}
.ws7{word-spacing:1.821867pt;}
.ws60{word-spacing:5.333333pt;}
.ws14{word-spacing:56.160000pt;}
.ws16{word-spacing:80.160000pt;}
.ws13{word-spacing:128.160000pt;}
.ws12{word-spacing:134.928000pt;}
.ws11{word-spacing:138.672000pt;}
.wsf{word-spacing:182.640000pt;}
.ws28{word-spacing:252.096000pt;}
.ws25{word-spacing:270.864000pt;}
.ws23{word-spacing:273.513600pt;}
.ws27{word-spacing:283.872000pt;}
.ws29{word-spacing:299.616000pt;}
.ws24{word-spacing:359.328000pt;}
.ws26{word-spacing:388.368000pt;}
.ws10{word-spacing:390.628485pt;}
._9{margin-left:-2720.403733pt;}
._e{margin-left:-1152.074987pt;}
._6{margin-left:-9.600000pt;}
._3d{margin-left:-8.359467pt;}
._7{margin-left:-7.116800pt;}
._5{margin-left:-5.676800pt;}
._8{margin-left:-4.630400pt;}
._38{margin-left:-3.696267pt;}
._3{margin-left:-2.560000pt;}
._4{margin-left:-1.177600pt;}
._0{width:1.689600pt;}
._3c{width:2.688000pt;}
._2{width:3.814400pt;}
._c{width:5.524800pt;}
._b{width:65.232000pt;}
._28{width:69.504000pt;}
._2b{width:75.193600pt;}
._d{width:76.520000pt;}
._26{width:78.336000pt;}
._3b{width:79.968533pt;}
._34{width:100.272000pt;}
._27{width:101.472000pt;}
._33{width:102.672000pt;}
._11{width:106.777600pt;}
._25{width:111.072000pt;}
._35{width:114.147200pt;}
._2f{width:115.628800pt;}
._37{width:124.272000pt;}
._36{width:126.336000pt;}
._32{width:128.880000pt;}
._a{width:131.043200pt;}
._2e{width:135.072000pt;}
._31{width:136.848000pt;}
._21{width:141.504000pt;}
._1e{width:150.336000pt;}
._1b{width:151.741867pt;}
._2d{width:152.896000pt;}
._1a{width:159.120000pt;}
._18{width:160.848000pt;}
._30{width:169.584000pt;}
._23{width:171.820800pt;}
._1f{width:173.472000pt;}
._10{width:175.632000pt;}
._1d{width:183.072000pt;}
._19{width:183.984000pt;}
._17{width:193.616000pt;}
._2a{width:197.401600pt;}
._13{width:204.816000pt;}
._39{width:207.888000pt;}
._15{width:217.680000pt;}
._29{width:219.324800pt;}
._16{width:226.752000pt;}
._14{width:240.480000pt;}
._12{width:250.080000pt;}
._3a{width:284.208000pt;}
._24{width:363.552000pt;}
._1c{width:490.585600pt;}
._20{width:547.552000pt;}
._22{width:588.409600pt;}
._2c{width:650.592000pt;}
._f{width:672.000000pt;}
._1{width:2152.400533pt;}
.fsb{font-size:23.320000pt;}
.fs7{font-size:27.984000pt;}
.fs1a{font-size:32.000000pt;}
.fs8{font-size:34.202667pt;}
.fs12{font-size:36.400533pt;}
.fsd{font-size:39.403733pt;}
.fs9{font-size:40.000000pt;}
.fs18{font-size:40.371733pt;}
.fs0{font-size:42.666667pt;}
.fs15{font-size:44.110400pt;}
.fs11{font-size:45.092800pt;}
.fsa{font-size:45.546667pt;}
.fs6{font-size:48.000000pt;}
.fsc{font-size:48.813867pt;}
.fs17{font-size:50.012800pt;}
.fs16{font-size:50.116267pt;}
.fs10{font-size:50.427200pt;}
.fs13{font-size:50.703467pt;}
.fs19{font-size:50.809600pt;}
.fs4{font-size:53.333333pt;}
.fs14{font-size:54.644267pt;}
.fs3{font-size:58.666667pt;}
.fsf{font-size:58.811733pt;}
.fse{font-size:59.093867pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y11d{bottom:4.755467pt;}
.y13e{bottom:5.247867pt;}
.y12c{bottom:5.671067pt;}
.yab{bottom:5.727867pt;}
.y1{bottom:28.249867pt;}
.y11b{bottom:32.978133pt;}
.y13c{bottom:36.549867pt;}
.ya9{bottom:38.631733pt;}
.y12a{bottom:39.871733pt;}
.y12b{bottom:41.191733pt;}
.y11c{bottom:41.209333pt;}
.y11a{bottom:44.030667pt;}
.y13b{bottom:48.808400pt;}
.y145{bottom:50.220533pt;}
.ya8{bottom:50.596267pt;}
.y129{bottom:53.265467pt;}
.y21{bottom:59.622533pt;}
.y119{bottom:61.678133pt;}
.y13d{bottom:63.128400pt;}
.y17a{bottom:65.330133pt;}
.y13a{bottom:68.381333pt;}
.y38{bottom:68.635867pt;}
.ya7{bottom:69.700000pt;}
.y118{bottom:72.730800pt;}
.y144{bottom:72.920800pt;}
.y128{bottom:74.650933pt;}
.y20{bottom:75.622533pt;}
.y139{bottom:80.639733pt;}
.ya6{bottom:81.664667pt;}
.y117{bottom:83.783467pt;}
.y37{bottom:84.635867pt;}
.y127{bottom:88.044533pt;}
.y1f{bottom:91.622533pt;}
.y138{bottom:92.898133pt;}
.ya5{bottom:93.629200pt;}
.y111{bottom:94.887333pt;}
.y143{bottom:95.621067pt;}
.y80{bottom:95.853067pt;}
.y12f{bottom:100.195600pt;}
.y36{bottom:100.635867pt;}
.y126{bottom:101.438400pt;}
.ye0{bottom:101.749600pt;}
.y132{bottom:105.213733pt;}
.y9f{bottom:105.649467pt;}
.y1e{bottom:107.622533pt;}
.y7f{bottom:111.853067pt;}
.y112{bottom:113.837733pt;}
.y120{bottom:114.894267pt;}
.y35{bottom:116.635867pt;}
.y142{bottom:118.321200pt;}
.ydf{bottom:120.709600pt;}
.y1d{bottom:123.622533pt;}
.y12e{bottom:124.998000pt;}
.y7e{bottom:127.853067pt;}
.y133{bottom:129.432667pt;}
.ya0{bottom:131.996800pt;}
.y34{bottom:132.635867pt;}
.y113{bottom:132.787867pt;}
.yde{bottom:135.109600pt;}
.yaa{bottom:135.503333pt;}
.y121{bottom:139.668933pt;}
.y141{bottom:141.021467pt;}
.y7d{bottom:143.853067pt;}
.y1c{bottom:146.289200pt;}
.y33{bottom:148.635867pt;}
.y12d{bottom:149.800400pt;}
.y5e{bottom:150.794533pt;}
.y10e{bottom:151.657200pt;}
.y114{bottom:151.738400pt;}
.y134{bottom:153.651600pt;}
.ydd{bottom:154.069600pt;}
.ya1{bottom:158.344267pt;}
.y7c{bottom:159.853067pt;}
.y140{bottom:163.721600pt;}
.y122{bottom:164.443733pt;}
.y32{bottom:164.635867pt;}
.y5d{bottom:166.678533pt;}
.y10d{bottom:167.657200pt;}
.ydc{bottom:168.469600pt;}
.y115{bottom:170.688533pt;}
.y135{bottom:177.870667pt;}
.y31{bottom:180.635867pt;}
.y5c{bottom:180.785333pt;}
.y10c{bottom:183.657200pt;}
.ya2{bottom:184.691600pt;}
.y131{bottom:185.253333pt;}
.y13f{bottom:186.422000pt;}
.ydb{bottom:187.429600pt;}
.y7b{bottom:187.853067pt;}
.y123{bottom:189.218667pt;}
.y116{bottom:189.638933pt;}
.y1b{bottom:190.289200pt;}
.y5b{bottom:195.185333pt;}
.y30{bottom:196.635867pt;}
.y10b{bottom:199.657200pt;}
.y136{bottom:202.089600pt;}
.y7a{bottom:203.853067pt;}
.y1a{bottom:206.289200pt;}
.yda{bottom:206.389600pt;}
.y5a{bottom:209.585333pt;}
.ya3{bottom:211.038933pt;}
.y124{bottom:213.993333pt;}
.y10a{bottom:215.657200pt;}
.y79{bottom:219.853067pt;}
.yd9{bottom:220.789600pt;}
.y19{bottom:222.289200pt;}
.y2f{bottom:224.635867pt;}
.y137{bottom:226.308800pt;}
.y59{bottom:228.545333pt;}
.y109{bottom:231.657200pt;}
.y78{bottom:235.853067pt;}
.ya4{bottom:237.386267pt;}
.y18{bottom:238.289200pt;}
.y125{bottom:238.768000pt;}
.yd8{bottom:239.747200pt;}
.y2e{bottom:240.635867pt;}
.y58{bottom:242.945333pt;}
.y108{bottom:247.657200pt;}
.y77{bottom:251.853067pt;}
.y17{bottom:254.289200pt;}
.y9e{bottom:255.722667pt;}
.yd7{bottom:255.747200pt;}
.y2d{bottom:256.635867pt;}
.y57{bottom:257.345333pt;}
.y107{bottom:263.657200pt;}
.y16{bottom:270.289200pt;}
.y2c{bottom:272.635867pt;}
.y56{bottom:276.305333pt;}
.y106{bottom:279.657200pt;}
.yd6{bottom:280.959467pt;}
.y15{bottom:286.289200pt;}
.y2b{bottom:288.635867pt;}
.y55{bottom:290.705333pt;}
.yd5{bottom:296.959467pt;}
.y14{bottom:302.289200pt;}
.y105{bottom:302.318533pt;}
.y2a{bottom:304.635867pt;}
.y54{bottom:309.665333pt;}
.yd4{bottom:312.959467pt;}
.y13{bottom:318.289200pt;}
.y29{bottom:320.635867pt;}
.y104{bottom:323.654533pt;}
.y53{bottom:328.625333pt;}
.yd3{bottom:328.959467pt;}
.y12{bottom:334.289200pt;}
.y103{bottom:344.990533pt;}
.y28{bottom:348.635867pt;}
.y11{bottom:350.289200pt;}
.y52{bottom:351.623067pt;}
.yd2{bottom:356.959467pt;}
.y27{bottom:364.635867pt;}
.y10{bottom:366.289200pt;}
.yd1{bottom:372.959467pt;}
.y51{bottom:375.063067pt;}
.y26{bottom:380.635867pt;}
.yf{bottom:382.289200pt;}
.yd0{bottom:388.959467pt;}
.y102{bottom:388.990533pt;}
.y50{bottom:391.063067pt;}
.y25{bottom:396.635867pt;}
.y74{bottom:396.981067pt;}
.y75{bottom:397.242960pt;}
.ye{bottom:398.289200pt;}
.ycf{bottom:404.959467pt;}
.y4f{bottom:407.063067pt;}
.y101{bottom:410.323867pt;}
.yd{bottom:414.289200pt;}
.yce{bottom:420.959467pt;}
.y4e{bottom:423.063067pt;}
.y24{bottom:424.635867pt;}
.y100{bottom:426.323867pt;}
.yc{bottom:430.289200pt;}
.ycd{bottom:436.959467pt;}
.y4d{bottom:439.063067pt;}
.y23{bottom:440.635867pt;}
.yff{bottom:442.323867pt;}
.y130{bottom:445.941600pt;}
.yb{bottom:452.955867pt;}
.ycc{bottom:452.959467pt;}
.y4c{bottom:455.063067pt;}
.y22{bottom:456.635867pt;}
.ycb{bottom:468.959467pt;}
.yfe{bottom:470.323867pt;}
.y4b{bottom:477.729733pt;}
.yca{bottom:484.959467pt;}
.yfd{bottom:486.323867pt;}
.y11f{bottom:494.894667pt;}
.y5{bottom:499.781600pt;}
.yc9{bottom:500.959467pt;}
.yfc{bottom:502.323867pt;}
.yc8{bottom:516.959467pt;}
.yfb{bottom:518.323867pt;}
.y179{bottom:520.764267pt;}
.y4a{bottom:521.729733pt;}
.y9d{bottom:527.567333pt;}
.yfa{bottom:534.323867pt;}
.y178{bottom:536.764267pt;}
.y49{bottom:537.729733pt;}
.y4{bottom:538.679333pt;}
.yc7{bottom:544.959467pt;}
.y175{bottom:547.535867pt;}
.y76{bottom:547.641333pt;}
.yf9{bottom:550.323867pt;}
.y177{bottom:552.764267pt;}
.y48{bottom:553.729733pt;}
.y9c{bottom:560.277200pt;}
.yc6{bottom:560.959467pt;}
.y174{bottom:563.531867pt;}
.y73{bottom:565.463067pt;}
.yf8{bottom:566.323867pt;}
.y47{bottom:569.729733pt;}
.y176{bottom:571.430933pt;}
.y9b{bottom:572.277200pt;}
.yc5{bottom:576.959467pt;}
.y3{bottom:578.679333pt;}
.y173{bottom:579.527867pt;}
.y72{bottom:579.863067pt;}
.yf7{bottom:582.323867pt;}
.y46{bottom:585.729733pt;}
.y9a{bottom:587.607200pt;}
.yc4{bottom:592.959467pt;}
.yf6{bottom:598.323867pt;}
.y71{bottom:599.596400pt;}
.y45{bottom:601.729733pt;}
.yc3{bottom:608.959467pt;}
.y99{bottom:609.749600pt;}
.yf5{bottom:614.323867pt;}
.y70{bottom:615.596400pt;}
.y44{bottom:617.729733pt;}
.y2{bottom:618.679333pt;}
.y98{bottom:628.707333pt;}
.yf4{bottom:630.323867pt;}
.y6f{bottom:631.596400pt;}
.y43{bottom:633.729733pt;}
.yc2{bottom:636.959467pt;}
.y172{bottom:646.273333pt;}
.yf3{bottom:646.323867pt;}
.y15e{bottom:647.281200pt;}
.y6e{bottom:647.596400pt;}
.y97{bottom:650.840667pt;}
.yc1{bottom:652.959467pt;}
.y171{bottom:662.273333pt;}
.y15d{bottom:663.281200pt;}
.y6d{bottom:663.596400pt;}
.yc0{bottom:668.959467pt;}
.y96{bottom:669.800667pt;}
.y170{bottom:678.273333pt;}
.y15c{bottom:679.281200pt;}
.y6c{bottom:679.596400pt;}
.y95{bottom:684.184400pt;}
.ybf{bottom:684.959467pt;}
.y16f{bottom:694.273333pt;}
.y15b{bottom:695.281200pt;}
.y6b{bottom:695.596400pt;}
.yf2{bottom:697.233725pt;}
.ybe{bottom:700.959467pt;}
.y94{bottom:703.144400pt;}
.yeb{bottom:708.945442pt;}
.y16e{bottom:710.273333pt;}
.y15a{bottom:711.281200pt;}
.yf1{bottom:713.483890pt;}
.ybd{bottom:716.959467pt;}
.y93{bottom:717.544400pt;}
.yea{bottom:722.762495pt;}
.y6a{bottom:723.596400pt;}
.y16d{bottom:726.273333pt;}
.y159{bottom:727.281200pt;}
.yf0{bottom:729.734056pt;}
.ybc{bottom:732.959467pt;}
.y92{bottom:736.504400pt;}
.ye9{bottom:736.730830pt;}
.y69{bottom:739.596400pt;}
.yef{bottom:745.984221pt;}
.y158{bottom:748.614533pt;}
.ybb{bottom:748.959467pt;}
.ye8{bottom:752.829713pt;}
.y91{bottom:755.464400pt;}
.y68{bottom:755.596400pt;}
.y16c{bottom:759.596400pt;}
.yee{bottom:762.083104pt;}
.y157{bottom:764.614533pt;}
.yba{bottom:764.959467pt;}
.ye7{bottom:766.798048pt;}
.y11e{bottom:767.208267pt;}
.y67{bottom:771.596400pt;}
.y146{bottom:772.895333pt;}
.y90{bottom:774.424400pt;}
.y16b{bottom:775.596400pt;}
.yed{bottom:778.333270pt;}
.y156{bottom:780.614533pt;}
.yb9{bottom:780.959467pt;}
.ye6{bottom:783.048213pt;}
.y66{bottom:787.596400pt;}
.y16a{bottom:791.596400pt;}
.y8f{bottom:793.384400pt;}
.y8{bottom:793.899733pt;}
.yec{bottom:794.583435pt;}
.y155{bottom:796.614533pt;}
.ye5{bottom:796.865266pt;}
.yb8{bottom:796.959467pt;}
.y65{bottom:803.596400pt;}
.y169{bottom:807.596400pt;}
.ya{bottom:807.914533pt;}
.ye4{bottom:810.833600pt;}
.y8e{bottom:812.344400pt;}
.y154{bottom:812.614533pt;}
.yb7{bottom:812.959467pt;}
.y168{bottom:823.596400pt;}
.y64{bottom:826.263067pt;}
.y153{bottom:828.614533pt;}
.yb6{bottom:828.959467pt;}
.y8d{bottom:831.302133pt;}
.y110{bottom:836.304000pt;}
.ye3{bottom:837.453867pt;}
.y167{bottom:839.596400pt;}
.yb5{bottom:844.959467pt;}
.y152{bottom:849.947867pt;}
.y8c{bottom:850.259867pt;}
.y166{bottom:855.596400pt;}
.y151{bottom:865.947867pt;}
.ye2{bottom:868.129733pt;}
.y8b{bottom:869.210533pt;}
.y63{bottom:870.263067pt;}
.y165{bottom:871.596400pt;}
.yb4{bottom:881.283600pt;}
.y150{bottom:881.947867pt;}
.ye1{bottom:882.529733pt;}
.y62{bottom:886.263067pt;}
.y164{bottom:887.596400pt;}
.y8a{bottom:888.170533pt;}
.y14f{bottom:897.947867pt;}
.yb3{bottom:900.243600pt;}
.y42{bottom:901.729733pt;}
.y61{bottom:902.263067pt;}
.y7{bottom:905.410133pt;}
.y89{bottom:907.130533pt;}
.y163{bottom:910.263067pt;}
.y6{bottom:910.910133pt;}
.y14e{bottom:913.947867pt;}
.yb2{bottom:914.643600pt;}
.y41{bottom:916.129733pt;}
.y60{bottom:918.263067pt;}
.y9{bottom:925.423867pt;}
.y88{bottom:926.090533pt;}
.y40{bottom:930.529733pt;}
.y14d{bottom:932.614533pt;}
.yb1{bottom:933.603600pt;}
.y5f{bottom:934.263067pt;}
.y87{bottom:945.048267pt;}
.yb0{bottom:948.003600pt;}
.y3f{bottom:950.263067pt;}
.y162{bottom:954.263067pt;}
.y86{bottom:964.003600pt;}
.y3e{bottom:966.263067pt;}
.yaf{bottom:966.963600pt;}
.y161{bottom:970.263067pt;}
.y14c{bottom:976.614533pt;}
.y3d{bottom:982.263067pt;}
.y85{bottom:982.963600pt;}
.yae{bottom:985.923600pt;}
.y160{bottom:986.263067pt;}
.y14b{bottom:992.614533pt;}
.y3c{bottom:998.263067pt;}
.yad{bottom:1000.323600pt;}
.y84{bottom:1001.923600pt;}
.y15f{bottom:1002.263067pt;}
.y14a{bottom:1008.614533pt;}
.y3b{bottom:1014.263067pt;}
.y83{bottom:1016.323600pt;}
.yac{bottom:1019.281200pt;}
.y149{bottom:1024.614533pt;}
.y3a{bottom:1030.263067pt;}
.y82{bottom:1035.281200pt;}
.y148{bottom:1040.614533pt;}
.y81{bottom:1051.281200pt;}
.y39{bottom:1052.929733pt;}
.y147{bottom:1056.614533pt;}
.y10f{bottom:1057.535867pt;}
.h13{height:17.490000pt;}
.hc{height:23.380729pt;}
.h2b{height:24.000000pt;}
.h1e{height:24.883177pt;}
.h17{height:26.936146pt;}
.h28{height:27.597865pt;}
.hd{height:30.000000pt;}
.h23{height:30.153594pt;}
.h14{height:30.810000pt;}
.h1d{height:30.825156pt;}
.h20{height:31.353587pt;}
.h9{height:32.000000pt;}
.h2{height:32.375467pt;}
.h16{height:33.368854pt;}
.he{height:34.160000pt;}
.h27{height:34.188438pt;}
.h1b{height:34.471719pt;}
.h2a{height:34.774525pt;}
.h24{height:34.846467pt;}
.h1f{height:35.254754pt;}
.h29{height:35.328550pt;}
.ha{height:36.000000pt;}
.hb{height:36.972000pt;}
.h10{height:36.981067pt;}
.hf{height:36.990667pt;}
.h11{height:37.009333pt;}
.h12{height:37.037067pt;}
.h22{height:37.354479pt;}
.h25{height:37.994842pt;}
.h7{height:40.000000pt;}
.h19{height:40.892533pt;}
.h18{height:41.088704pt;}
.h6{height:44.000000pt;}
.h4{height:48.000000pt;}
.h5{height:49.338667pt;}
.h8{height:56.000000pt;}
.h1a{height:64.800000pt;}
.h3{height:96.000000pt;}
.h1c{height:205.498667pt;}
.h26{height:243.888000pt;}
.h15{height:254.508000pt;}
.h21{height:257.913333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:524.309333pt;}
.w3{width:533.610667pt;}
.w4{width:667.664000pt;}
.w5{width:689.758667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x57{left:28.070533pt;}
.x33{left:29.547467pt;}
.x3e{left:35.356667pt;}
.x15{left:37.241867pt;}
.x14{left:43.483600pt;}
.x59{left:44.480933pt;}
.x1{left:55.200000pt;}
.x9{left:56.692933pt;}
.xc{left:62.026267pt;}
.x3a{left:64.440800pt;}
.x3b{left:70.214714pt;}
.x27{left:78.228400pt;}
.x2{left:79.620400pt;}
.x73{left:80.627200pt;}
.x16{left:81.724667pt;}
.x81{left:87.965867pt;}
.x26{left:91.229067pt;}
.x4e{left:92.285733pt;}
.x17{left:93.808267pt;}
.x3f{left:95.900000pt;}
.x68{left:99.984400pt;}
.x7c{left:101.345600pt;}
.x5a{left:103.556933pt;}
.x4d{left:105.725200pt;}
.x40{left:108.391467pt;}
.x39{left:111.327733pt;}
.x67{left:113.268267pt;}
.x7b{left:114.813333pt;}
.x5b{left:115.903600pt;}
.x74{left:117.485200pt;}
.x29{left:140.680267pt;}
.x18{left:144.176667pt;}
.x3{left:147.620400pt;}
.x50{left:153.802533pt;}
.x28{left:154.712133pt;}
.x19{left:156.260133pt;}
.x41{left:157.416800pt;}
.xd{left:159.034267pt;}
.x7d{left:161.356133pt;}
.x5c{left:162.829067pt;}
.x34{left:163.956800pt;}
.x75{left:164.978000pt;}
.x58{left:166.813867pt;}
.x4f{left:168.308000pt;}
.x42{left:169.908267pt;}
.x69{left:173.594000pt;}
.x5d{left:175.175733pt;}
.x5{left:177.299600pt;}
.x7f{left:179.859867pt;}
.x71{left:186.713600pt;}
.x2b{left:203.132267pt;}
.x1a{left:206.628533pt;}
.x1b{left:212.781200pt;}
.x2a{left:216.132933pt;}
.x43{left:218.933600pt;}
.x5e{left:222.101200pt;}
.x44{left:225.294000pt;}
.x51{left:228.758800pt;}
.x6a{left:231.812533pt;}
.x3d{left:234.357067pt;}
.x2d{left:265.584133pt;}
.x1c{left:270.194667pt;}
.x1d{left:276.347333pt;}
.x6b{left:277.800933pt;}
.x2c{left:279.616000pt;}
.x45{left:281.602267pt;}
.x5f{left:282.511867pt;}
.x76{left:286.152933pt;}
.x46{left:287.962533pt;}
.x3c{left:289.898667pt;}
.x52{left:291.341600pt;}
.x77{left:292.526533pt;}
.x7e{left:295.912667pt;}
.x4{left:298.916400pt;}
.x13{left:310.354267pt;}
.x2e{left:328.036000pt;}
.x1f{left:330.482933pt;}
.x1e{left:332.646533pt;}
.x6c{left:337.073067pt;}
.x53{left:338.352933pt;}
.x60{left:339.573200pt;}
.x20{left:341.082800pt;}
.x47{left:343.118933pt;}
.x78{left:346.163333pt;}
.x61{left:350.404133pt;}
.x48{left:351.840133pt;}
.x79{left:354.902667pt;}
.x30{left:390.488000pt;}
.x22{left:392.934933pt;}
.x21{left:395.098400pt;}
.x6e{left:396.345200pt;}
.x63{left:398.845333pt;}
.x55{left:399.869733pt;}
.x62{left:401.056133pt;}
.x49{left:402.399067pt;}
.x23{left:403.534800pt;}
.x2f{left:404.519733pt;}
.x7a{left:406.173600pt;}
.x64{left:409.676267pt;}
.x6d{left:410.682667pt;}
.x4a{left:413.356933pt;}
.x54{left:414.375200pt;}
.xa{left:415.746267pt;}
.x82{left:418.414667pt;}
.x35{left:421.081333pt;}
.xf{left:424.827493pt;}
.x10{left:434.962267pt;}
.x32{left:452.939867pt;}
.x70{left:455.617333pt;}
.x24{left:462.145600pt;}
.x65{left:465.023600pt;}
.x25{left:465.986667pt;}
.x31{left:466.971600pt;}
.x66{left:468.948400pt;}
.x6f{left:469.954800pt;}
.x4b{left:470.902933pt;}
.x4c{left:474.873733pt;}
.x56{left:475.892000pt;}
.x72{left:542.473333pt;}
.x80{left:549.424933pt;}
.x36{left:553.753333pt;}
.x11{left:554.962267pt;}
.xe{left:581.360000pt;}
.xb{left:598.643200pt;}
.x37{left:645.433333pt;}
.x38{left:649.369333pt;}
.x12{left:676.966267pt;}
.x7{left:688.153733pt;}
.x6{left:704.153733pt;}
.x8{left:706.499333pt;}
}




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