
    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_9989529358da8f540dd75897.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_178d2e02565934b881affdd9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9062f29695e486ea9c0ab849.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056000;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_9c104c5a4d19a3019000d9f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.834473;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_4047edba3d1a2f16f1c4b40e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109000;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_1ef5f4cc560dd396b5bd0077.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.094000;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_a6ad0834eba52388d99afca2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.094000;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_e94687c0c05499f10c541754.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.082000;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_f0d08fea6fc7135c290ca9a3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_237fd95a7903a3784bc446da.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.094000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ecebbf87c2072e1f7a089554.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.094000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_65f36014fdeb63d14f223ca3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7b1309ee6795a757bb0cc021.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.094000;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;}
.m2{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-15.054000px;}
.v2{vertical-align:-6.000000px;}
.v5{vertical-align:-1.521000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.983730px;}
.v6{vertical-align:27.027000px;}
.v4{vertical-align:34.437000px;}
.v9{vertical-align:36.699000px;}
.v8{vertical-align:38.103000px;}
.v7{vertical-align:40.404000px;}
.ls29{letter-spacing:-9.720000px;}
.ls5c{letter-spacing:-5.301000px;}
.ls56{letter-spacing:-0.456000px;}
.ls45{letter-spacing:-0.434565px;}
.ls28{letter-spacing:-0.399000px;}
.ls37{letter-spacing:-0.317682px;}
.ls2f{letter-spacing:-0.285000px;}
.ls31{letter-spacing:-0.228000px;}
.ls40{letter-spacing:-0.217500px;}
.ls57{letter-spacing:-0.171570px;}
.ls58{letter-spacing:-0.057570px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010884px;}
.ls5a{letter-spacing:0.010890px;}
.ls4c{letter-spacing:0.011070px;}
.ls4e{letter-spacing:0.057570px;}
.ls1a{letter-spacing:0.114000px;}
.ls30{letter-spacing:0.171570px;}
.ls3e{letter-spacing:0.217500px;}
.ls1b{letter-spacing:0.228000px;}
.ls25{letter-spacing:0.285000px;}
.ls4b{letter-spacing:0.290586px;}
.ls2e{letter-spacing:0.291228px;}
.ls47{letter-spacing:0.304500px;}
.ls11{letter-spacing:0.342000px;}
.ls46{letter-spacing:0.348000px;}
.ls35{letter-spacing:0.381282px;}
.ls2{letter-spacing:0.384395px;}
.ls18{letter-spacing:0.399000px;}
.ls38{letter-spacing:0.432000px;}
.ls3c{letter-spacing:0.434565px;}
.ls34{letter-spacing:0.445518px;}
.lsc{letter-spacing:0.456000px;}
.ls49{letter-spacing:0.472032px;}
.ls36{letter-spacing:0.477000px;}
.ls33{letter-spacing:0.479520px;}
.ls17{letter-spacing:0.513000px;}
.ls2d{letter-spacing:0.539460px;}
.ls43{letter-spacing:0.565500px;}
.ls3{letter-spacing:0.569430px;}
.ls4a{letter-spacing:0.578907px;}
.ls4d{letter-spacing:0.585000px;}
.ls15{letter-spacing:0.627000px;}
.ls3d{letter-spacing:0.652500px;}
.ls27{letter-spacing:0.683430px;}
.ls12{letter-spacing:0.741000px;}
.ls2c{letter-spacing:0.756540px;}
.ls1e{letter-spacing:0.798570px;}
.ls10{letter-spacing:0.855000px;}
.ls13{letter-spacing:0.912570px;}
.ls42{letter-spacing:0.957000px;}
.ls8{letter-spacing:0.969000px;}
.ls3a{letter-spacing:1.000065px;}
.ls23{letter-spacing:1.026570px;}
.lsd{letter-spacing:1.083000px;}
.ls26{letter-spacing:1.140000px;}
.ls59{letter-spacing:1.152000px;}
.ls3f{letter-spacing:1.174065px;}
.ls4{letter-spacing:1.197000px;}
.ls3b{letter-spacing:1.218000px;}
.ls39{letter-spacing:1.248000px;}
.ls1d{letter-spacing:1.254000px;}
.lsb{letter-spacing:1.310430px;}
.ls48{letter-spacing:1.344000px;}
.ls19{letter-spacing:1.368000px;}
.ls41{letter-spacing:1.392000px;}
.ls9{letter-spacing:1.424430px;}
.ls44{letter-spacing:1.435500px;}
.ls14{letter-spacing:1.482000px;}
.ls5{letter-spacing:1.538430px;}
.ls7{letter-spacing:1.596000px;}
.lse{letter-spacing:1.653570px;}
.ls4f{letter-spacing:1.710000px;}
.ls2a{letter-spacing:1.729080px;}
.lsa{letter-spacing:1.767570px;}
.ls6{letter-spacing:1.824000px;}
.ls24{letter-spacing:1.881000px;}
.ls54{letter-spacing:1.938000px;}
.ls22{letter-spacing:1.995000px;}
.ls32{letter-spacing:2.052000px;}
.ls21{letter-spacing:2.109000px;}
.ls1f{letter-spacing:2.165430px;}
.ls20{letter-spacing:2.223000px;}
.ls2b{letter-spacing:2.268000px;}
.ls5b{letter-spacing:2.279430px;}
.ls16{letter-spacing:2.337000px;}
.lsf{letter-spacing:2.508570px;}
.ls52{letter-spacing:2.736000px;}
.ls53{letter-spacing:2.793000px;}
.ls1c{letter-spacing:2.850000px;}
.ls55{letter-spacing:2.906430px;}
.ls51{letter-spacing:3.192000px;}
.ls50{letter-spacing:3.591000px;}
.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;}
}
.ws5b{word-spacing:-29.477088px;}
.ws5a{word-spacing:-27.360294px;}
.ws81{word-spacing:-27.359694px;}
.ws85{word-spacing:-16.359000px;}
.ws5c{word-spacing:-14.592000px;}
.ws86{word-spacing:-14.535000px;}
.wsb6{word-spacing:-13.680000px;}
.ws87{word-spacing:-13.622430px;}
.wsb7{word-spacing:-13.224000px;}
.ws82{word-spacing:-10.729076px;}
.ws58{word-spacing:-8.262000px;}
.ws56{word-spacing:-4.537080px;}
.ws55{word-spacing:-3.996000px;}
.wsb1{word-spacing:-1.310430px;}
.wsab{word-spacing:-1.254000px;}
.ws80{word-spacing:-1.000065px;}
.ws63{word-spacing:-0.969000px;}
.ws83{word-spacing:-0.864480px;}
.wsaa{word-spacing:-0.855000px;}
.ws97{word-spacing:-0.798570px;}
.ws7c{word-spacing:-0.794682px;}
.ws7e{word-spacing:-0.783435px;}
.wsb8{word-spacing:-0.768480px;}
.ws7a{word-spacing:-0.763200px;}
.ws57{word-spacing:-0.756540px;}
.ws22{word-spacing:-0.741000px;}
.ws7f{word-spacing:-0.739500px;}
.ws7b{word-spacing:-0.699600px;}
.ws21{word-spacing:-0.683430px;}
.wsb3{word-spacing:-0.672480px;}
.ws3e{word-spacing:-0.627000px;}
.ws3b{word-spacing:-0.569430px;}
.ws4c{word-spacing:-0.456000px;}
.ws52{word-spacing:-0.399000px;}
.ws9d{word-spacing:-0.285000px;}
.ws37{word-spacing:-0.228000px;}
.wscb{word-spacing:-0.171570px;}
.ws1f{word-spacing:-0.114000px;}
.ws0{word-spacing:0.000000px;}
.ws7d{word-spacing:0.048480px;}
.wsc6{word-spacing:0.171570px;}
.ws6a{word-spacing:0.228000px;}
.ws31{word-spacing:0.285000px;}
.ws6f{word-spacing:0.399000px;}
.wsbc{word-spacing:0.513000px;}
.ws94{word-spacing:0.569430px;}
.wsb0{word-spacing:0.627000px;}
.ws1{word-spacing:0.969000px;}
.ws36{word-spacing:1.026570px;}
.ws1c{word-spacing:1.083000px;}
.ws44{word-spacing:1.140000px;}
.ws6{word-spacing:1.197000px;}
.ws61{word-spacing:1.254000px;}
.ws3c{word-spacing:1.310430px;}
.ws3d{word-spacing:1.368000px;}
.ws35{word-spacing:1.424430px;}
.ws12{word-spacing:1.482000px;}
.wsd{word-spacing:1.538430px;}
.ws74{word-spacing:1.596000px;}
.ws1b{word-spacing:1.710000px;}
.ws53{word-spacing:1.767570px;}
.ws65{word-spacing:1.824000px;}
.wsa5{word-spacing:1.938000px;}
.wsad{word-spacing:1.995000px;}
.wsc4{word-spacing:2.052000px;}
.ws10{word-spacing:2.109000px;}
.ws32{word-spacing:2.165430px;}
.ws46{word-spacing:2.223000px;}
.ws3{word-spacing:2.337000px;}
.ws2a{word-spacing:2.451000px;}
.wsa7{word-spacing:2.508570px;}
.wse{word-spacing:2.565000px;}
.wscc{word-spacing:2.622570px;}
.ws39{word-spacing:2.679000px;}
.ws88{word-spacing:2.736000px;}
.ws99{word-spacing:2.793000px;}
.ws3f{word-spacing:2.850000px;}
.ws9c{word-spacing:2.906430px;}
.ws5f{word-spacing:2.964000px;}
.wsc8{word-spacing:3.020430px;}
.ws98{word-spacing:3.078000px;}
.ws2{word-spacing:3.134430px;}
.ws13{word-spacing:3.192000px;}
.ws50{word-spacing:3.249570px;}
.ws5d{word-spacing:3.306000px;}
.ws51{word-spacing:3.363570px;}
.ws7{word-spacing:3.420000px;}
.ws62{word-spacing:3.477000px;}
.wsb2{word-spacing:3.534000px;}
.wsc9{word-spacing:3.591000px;}
.wsc{word-spacing:3.648000px;}
.ws60{word-spacing:3.761430px;}
.wscd{word-spacing:3.819000px;}
.wsc2{word-spacing:3.875430px;}
.ws8c{word-spacing:3.990570px;}
.ws89{word-spacing:4.047000px;}
.ws5e{word-spacing:4.104570px;}
.wsbb{word-spacing:4.161000px;}
.ws8{word-spacing:4.218570px;}
.wsa{word-spacing:4.275000px;}
.ws5{word-spacing:4.332000px;}
.ws4d{word-spacing:4.389000px;}
.ws9{word-spacing:4.560000px;}
.ws16{word-spacing:4.616430px;}
.ws45{word-spacing:4.674000px;}
.wsf{word-spacing:4.788000px;}
.ws8b{word-spacing:4.845570px;}
.ws2b{word-spacing:4.959570px;}
.ws4e{word-spacing:5.016000px;}
.ws42{word-spacing:5.073000px;}
.ws9e{word-spacing:5.130000px;}
.ws4a{word-spacing:5.187000px;}
.ws49{word-spacing:5.244000px;}
.wsac{word-spacing:5.301000px;}
.ws71{word-spacing:5.357430px;}
.ws4b{word-spacing:5.415000px;}
.ws4f{word-spacing:5.471430px;}
.ws64{word-spacing:5.529000px;}
.ws15{word-spacing:5.586570px;}
.wsa9{word-spacing:5.643000px;}
.ws1d{word-spacing:5.700570px;}
.wsb{word-spacing:5.757000px;}
.wsc5{word-spacing:5.814570px;}
.ws27{word-spacing:6.042000px;}
.ws43{word-spacing:6.098430px;}
.ws17{word-spacing:6.212430px;}
.wsa4{word-spacing:6.270000px;}
.ws4{word-spacing:6.326430px;}
.ws9a{word-spacing:6.384000px;}
.ws77{word-spacing:6.441570px;}
.ws76{word-spacing:6.498000px;}
.ws2e{word-spacing:6.555570px;}
.wsca{word-spacing:6.612000px;}
.wsae{word-spacing:6.669000px;}
.ws93{word-spacing:6.726000px;}
.ws91{word-spacing:6.783000px;}
.ws14{word-spacing:6.840000px;}
.ws26{word-spacing:6.953430px;}
.ws24{word-spacing:7.067430px;}
.wsa3{word-spacing:7.125000px;}
.ws73{word-spacing:7.182570px;}
.ws6c{word-spacing:7.239000px;}
.ws75{word-spacing:7.581000px;}
.wsaf{word-spacing:7.638000px;}
.wsa0{word-spacing:7.694430px;}
.ws1e{word-spacing:7.752000px;}
.ws66{word-spacing:7.808430px;}
.ws20{word-spacing:8.208000px;}
.ws92{word-spacing:8.322000px;}
.wsba{word-spacing:8.379000px;}
.wsa1{word-spacing:8.435430px;}
.ws8a{word-spacing:8.493000px;}
.ws47{word-spacing:8.549430px;}
.ws3a{word-spacing:8.607000px;}
.wsa2{word-spacing:8.663430px;}
.ws69{word-spacing:8.721000px;}
.ws29{word-spacing:8.778570px;}
.wsc3{word-spacing:9.006000px;}
.wsc7{word-spacing:9.063000px;}
.ws90{word-spacing:9.120000px;}
.wsbe{word-spacing:9.348000px;}
.ws68{word-spacing:9.404430px;}
.ws2d{word-spacing:9.462000px;}
.ws54{word-spacing:9.720000px;}
.ws18{word-spacing:9.861000px;}
.ws1a{word-spacing:9.918000px;}
.wsb9{word-spacing:9.975000px;}
.ws25{word-spacing:10.031430px;}
.ws30{word-spacing:10.089000px;}
.ws28{word-spacing:10.145430px;}
.ws72{word-spacing:10.317000px;}
.ws8d{word-spacing:10.374570px;}
.ws67{word-spacing:10.488570px;}
.ws9b{word-spacing:10.602000px;}
.ws48{word-spacing:10.773000px;}
.ws78{word-spacing:10.830000px;}
.wsbf{word-spacing:10.944000px;}
.ws70{word-spacing:11.000430px;}
.ws11{word-spacing:11.627430px;}
.ws6b{word-spacing:11.685000px;}
.wsa6{word-spacing:11.799000px;}
.ws79{word-spacing:12.198000px;}
.wsbd{word-spacing:12.312000px;}
.ws96{word-spacing:12.596430px;}
.ws6d{word-spacing:12.768000px;}
.ws38{word-spacing:12.882000px;}
.ws8e{word-spacing:12.996000px;}
.ws8f{word-spacing:13.223430px;}
.wsc0{word-spacing:13.509000px;}
.ws9f{word-spacing:13.737000px;}
.ws41{word-spacing:14.078430px;}
.wsc1{word-spacing:14.192430px;}
.ws23{word-spacing:14.421570px;}
.ws6e{word-spacing:14.933430px;}
.ws40{word-spacing:15.447000px;}
.ws33{word-spacing:15.618000px;}
.ws34{word-spacing:15.674430px;}
.ws2c{word-spacing:15.960000px;}
.ws95{word-spacing:16.473000px;}
.ws2f{word-spacing:16.701000px;}
.ws19{word-spacing:20.462430px;}
.wsa8{word-spacing:22.230000px;}
.ws59{word-spacing:76.281305px;}
.wsb5{word-spacing:101.485800px;}
.wsb4{word-spacing:219.414000px;}
.ws84{word-spacing:353.964000px;}
._13{margin-left:-70.852206px;}
._10{margin-left:-26.616720px;}
._11{margin-left:-16.647426px;}
._a{margin-left:-14.389644px;}
._17{margin-left:-13.162464px;}
._7{margin-left:-11.527146px;}
._6{margin-left:-10.205868px;}
._d{margin-left:-8.259840px;}
._18{margin-left:-7.056030px;}
._12{margin-left:-5.427600px;}
._5{margin-left:-4.360500px;}
._9{margin-left:-3.338460px;}
._3{margin-left:-2.309070px;}
._2{margin-left:-1.003200px;}
._0{width:1.026000px;}
._1{width:2.097600px;}
._4{width:3.437100px;}
._1d{width:5.419932px;}
._19{width:6.905934px;}
._8{width:9.017400px;}
._15{width:10.301826px;}
._c{width:13.577400px;}
._b{width:16.102500px;}
._e{width:31.078176px;}
._14{width:35.569686px;}
._1a{width:107.669310px;}
._16{width:111.549690px;}
._f{width:129.252091px;}
._1c{width:148.239000px;}
._1b{width:156.624000px;}
.fc2{color:rgb(0,161,229);}
.fc1{color:rgb(237,87,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:27.984000px;}
.fs12{font-size:31.468800px;}
.fsf{font-size:31.800000px;}
.fsa{font-size:36.000000px;}
.fsd{font-size:37.500000px;}
.fs7{font-size:38.478000px;}
.fs11{font-size:38.593800px;}
.fsb{font-size:39.000000px;}
.fsc{font-size:39.024000px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:43.500000px;}
.fse{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y154{bottom:18.934797px;}
.y8d{bottom:18.934799px;}
.yb9{bottom:18.934800px;}
.yf2{bottom:18.934803px;}
.y83{bottom:77.376229px;}
.y140{bottom:77.376258px;}
.y14e{bottom:77.376300px;}
.y130{bottom:77.376303px;}
.y53{bottom:77.376306px;}
.yaf{bottom:77.376317px;}
.ydb{bottom:84.160655px;}
.y13f{bottom:95.676251px;}
.y12f{bottom:95.676296px;}
.y52{bottom:95.676299px;}
.yae{bottom:95.676309px;}
.y82{bottom:95.676364px;}
.y4{bottom:97.125005px;}
.yda{bottom:97.660662px;}
.yf1{bottom:104.976452px;}
.y1b5{bottom:104.976477px;}
.yd9{bottom:111.160670px;}
.y13e{bottom:113.976243px;}
.y14d{bottom:113.976297px;}
.y12e{bottom:113.976299px;}
.y51{bottom:113.976300px;}
.yad{bottom:113.976302px;}
.y81{bottom:113.976357px;}
.y1b4{bottom:113.976433px;}
.yf0{bottom:113.976452px;}
.y1b3{bottom:123.726472px;}
.yd8{bottom:124.660677px;}
.y13d{bottom:132.276236px;}
.y12d{bottom:132.276291px;}
.y50{bottom:132.276294px;}
.y14c{bottom:132.276306px;}
.y80{bottom:132.276350px;}
.y1b2{bottom:132.726429px;}
.yd7{bottom:138.160685px;}
.y20{bottom:139.264499px;}
.y1b1{bottom:141.726465px;}
.y12c{bottom:150.576299px;}
.y4f{bottom:150.576301px;}
.y7f{bottom:150.576342px;}
.y13c{bottom:150.576371px;}
.y1b0{bottom:150.726421px;}
.yd6{bottom:151.660692px;}
.y1af{bottom:159.726298px;}
.yd5{bottom:165.160700px;}
.yac{bottom:168.876230px;}
.y14b{bottom:168.876294px;}
.y4e{bottom:168.876305px;}
.y7e{bottom:168.876335px;}
.y12b{bottom:168.876363px;}
.yde{bottom:181.456802px;}
.yd4{bottom:187.164630px;}
.y4d{bottom:187.176297px;}
.y14a{bottom:187.176302px;}
.y7d{bottom:187.176327px;}
.y12a{bottom:187.176356px;}
.yab{bottom:187.176365px;}
.y160{bottom:193.815901px;}
.y17{bottom:196.933500px;}
.yd3{bottom:200.664638px;}
.y4c{bottom:205.476290px;}
.y7c{bottom:205.476320px;}
.y129{bottom:205.476348px;}
.yaa{bottom:205.476357px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.yd2{bottom:214.164645px;}
.ye1{bottom:219.966297px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y158{bottom:223.571248px;}
.y4b{bottom:223.776282px;}
.y7b{bottom:223.776312px;}
.y128{bottom:223.776341px;}
.ya9{bottom:223.776350px;}
.yd1{bottom:227.664653px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.ydf{bottom:235.056453px;}
.yd0{bottom:241.164552px;}
.y4a{bottom:242.076275px;}
.y7a{bottom:242.076305px;}
.y127{bottom:242.076333px;}
.ya8{bottom:242.076342px;}
.ye0{bottom:250.203899px;}
.ycf{bottom:254.664560px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y49{bottom:260.376267px;}
.y79{bottom:260.376297px;}
.y126{bottom:260.376326px;}
.ya7{bottom:260.376335px;}
.ye2{bottom:265.441959px;}
.yce{bottom:268.164567px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y48{bottom:278.676259px;}
.y78{bottom:278.676292px;}
.y125{bottom:278.676318px;}
.ya6{bottom:278.676327px;}
.ye3{bottom:280.588649px;}
.ycd{bottom:281.664575px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.ycc{bottom:295.164582px;}
.ye4{bottom:295.650447px;}
.y47{bottom:296.976252px;}
.y77{bottom:296.976311px;}
.ya5{bottom:296.976320px;}
.ye5{bottom:305.790987px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.yef{bottom:310.853694px;}
.y46{bottom:315.276244px;}
.y124{bottom:315.276303px;}
.y76{bottom:315.276306px;}
.ya4{bottom:315.276312px;}
.ycb{bottom:317.168405px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.yca{bottom:330.668405px;}
.y45{bottom:333.576237px;}
.y123{bottom:333.576299px;}
.ya3{bottom:333.576305px;}
.y149{bottom:333.576314px;}
.y159{bottom:341.585248px;}
.yc9{bottom:344.168451px;}
.ye{bottom:348.133500px;}
.y44{bottom:351.876229px;}
.y122{bottom:351.876294px;}
.ya2{bottom:351.876297px;}
.y148{bottom:351.876306px;}
.y13b{bottom:351.876332px;}
.y75{bottom:351.876366px;}
.yc8{bottom:357.668349px;}
.ye6{bottom:367.946302px;}
.y121{bottom:370.176290px;}
.ya1{bottom:370.176293px;}
.y147{bottom:370.176299px;}
.y13a{bottom:370.176324px;}
.y74{bottom:370.176358px;}
.y43{bottom:370.176364px;}
.yc7{bottom:371.168357px;}
.yc6{bottom:384.668364px;}
.yd{bottom:386.785499px;}
.y146{bottom:388.476291px;}
.ya0{bottom:388.476306px;}
.y139{bottom:388.476317px;}
.y73{bottom:388.476351px;}
.y42{bottom:388.476357px;}
.yc5{bottom:406.672296px;}
.y145{bottom:406.776284px;}
.y9f{bottom:406.776299px;}
.y120{bottom:406.776303px;}
.y138{bottom:406.776309px;}
.y72{bottom:406.776344px;}
.y41{bottom:406.776350px;}
.yc{bottom:408.044999px;}
.y15b{bottom:414.661498px;}
.y15c{bottom:417.888748px;}
.yc4{bottom:420.172304px;}
.y144{bottom:425.076276px;}
.y9e{bottom:425.076291px;}
.y137{bottom:425.076302px;}
.y71{bottom:425.076336px;}
.y11f{bottom:425.076339px;}
.y40{bottom:425.076342px;}
.y1ae{bottom:425.076459px;}
.y15e{bottom:429.374248px;}
.yc3{bottom:433.672311px;}
.y9d{bottom:443.376284px;}
.y136{bottom:443.376294px;}
.y70{bottom:443.376328px;}
.y11e{bottom:443.376332px;}
.y3f{bottom:443.376334px;}
.y1ad{bottom:443.376451px;}
.yc2{bottom:447.172319px;}
.y15f{bottom:449.449498px;}
.y15a{bottom:452.696248px;}
.yc1{bottom:460.672326px;}
.y9c{bottom:461.676276px;}
.y135{bottom:461.676312px;}
.y6f{bottom:461.676321px;}
.y11d{bottom:461.676324px;}
.y3e{bottom:461.676327px;}
.y1ac{bottom:461.676444px;}
.y15d{bottom:469.173748px;}
.yc0{bottom:474.172334px;}
.y134{bottom:479.976285px;}
.y143{bottom:479.976311px;}
.y6e{bottom:479.976313px;}
.y11c{bottom:479.976317px;}
.y3d{bottom:479.976319px;}
.y9b{bottom:479.976411px;}
.y1ab{bottom:479.976436px;}
.yb{bottom:484.864502px;}
.ybf{bottom:487.672341px;}
.y133{bottom:498.276303px;}
.y6d{bottom:498.276306px;}
.y11b{bottom:498.276309px;}
.y3c{bottom:498.276312px;}
.y9a{bottom:498.276404px;}
.y1aa{bottom:498.276429px;}
.ye7{bottom:498.837156px;}
.ybe{bottom:501.172349px;}
.ya{bottom:502.864502px;}
.ybd{bottom:514.672349px;}
.y132{bottom:516.576251px;}
.y6c{bottom:516.576279px;}
.y11a{bottom:516.576302px;}
.y3b{bottom:516.576304px;}
.y142{bottom:516.576369px;}
.y99{bottom:516.576396px;}
.y1a9{bottom:516.576421px;}
.y9{bottom:520.864502px;}
.y157{bottom:527.526444px;}
.y131{bottom:534.876243px;}
.y119{bottom:534.876294px;}
.y3a{bottom:534.876297px;}
.y141{bottom:534.876362px;}
.y98{bottom:534.876389px;}
.y1a8{bottom:534.876414px;}
.ybc{bottom:536.676315px;}
.y8{bottom:538.864499px;}
.y156{bottom:545.526444px;}
.y118{bottom:553.176312px;}
.y39{bottom:553.176315px;}
.y97{bottom:553.176381px;}
.y1a7{bottom:553.176406px;}
.ybb{bottom:554.676315px;}
.y7{bottom:556.864499px;}
.yee{bottom:563.742279px;}
.y117{bottom:571.476285px;}
.y6b{bottom:571.476291px;}
.y38{bottom:571.476373px;}
.y1a6{bottom:571.476399px;}
.ye9{bottom:572.030297px;}
.ye8{bottom:582.296248px;}
.y6a{bottom:589.776283px;}
.y116{bottom:589.776315px;}
.y37{bottom:589.776366px;}
.y1a5{bottom:589.776392px;}
.y69{bottom:608.076276px;}
.y177{bottom:608.076282px;}
.y115{bottom:608.076308px;}
.y36{bottom:608.076358px;}
.y1a4{bottom:608.076384px;}
.y18e{bottom:608.076597px;}
.y176{bottom:626.376274px;}
.y114{bottom:626.376300px;}
.y35{bottom:626.376351px;}
.y1a3{bottom:626.376376px;}
.y68{bottom:626.376411px;}
.y18d{bottom:626.376597px;}
.yb8{bottom:627.276329px;}
.y151{bottom:635.826284px;}
.yb7{bottom:636.276285px;}
.y113{bottom:644.676293px;}
.y34{bottom:644.676344px;}
.y1a2{bottom:644.676369px;}
.y67{bottom:644.676403px;}
.y175{bottom:644.676409px;}
.y18c{bottom:644.676589px;}
.y150{bottom:644.826240px;}
.yb6{bottom:645.276321px;}
.y6{bottom:645.510000px;}
.y14f{bottom:653.826276px;}
.yb5{bottom:654.276278px;}
.y112{bottom:662.976285px;}
.y33{bottom:662.976336px;}
.y1a1{bottom:662.976361px;}
.y66{bottom:662.976396px;}
.y174{bottom:662.976402px;}
.y18b{bottom:662.976582px;}
.yb4{bottom:663.276314px;}
.y5{bottom:666.771000px;}
.yb3{bottom:672.276270px;}
.yea{bottom:679.253522px;}
.y173{bottom:681.276252px;}
.yb2{bottom:681.276306px;}
.y111{bottom:681.276326px;}
.y32{bottom:681.276328px;}
.y1a0{bottom:681.276354px;}
.y65{bottom:681.276388px;}
.y18a{bottom:681.276574px;}
.yfe{bottom:682.394529px;}
.yb1{bottom:690.426315px;}
.y110{bottom:699.576318px;}
.y31{bottom:699.576321px;}
.y19f{bottom:699.576346px;}
.y64{bottom:699.576381px;}
.y172{bottom:699.576387px;}
.y189{bottom:699.576567px;}
.yff{bottom:713.916279px;}
.y10f{bottom:717.876311px;}
.y30{bottom:717.876313px;}
.y63{bottom:717.876373px;}
.y171{bottom:717.876379px;}
.y19e{bottom:717.876481px;}
.y188{bottom:717.876559px;}
.y95{bottom:723.256806px;}
.yed{bottom:725.739754px;}
.yf5{bottom:731.188328px;}
.y10e{bottom:736.176303px;}
.y2f{bottom:736.176306px;}
.y62{bottom:736.176366px;}
.y170{bottom:736.176372px;}
.y19d{bottom:736.176474px;}
.y187{bottom:736.176552px;}
.yf4{bottom:741.913328px;}
.y8f{bottom:747.902847px;}
.y3{bottom:752.599495px;}
.y10d{bottom:754.476296px;}
.y2e{bottom:754.476298px;}
.y61{bottom:754.476358px;}
.y16f{bottom:754.476364px;}
.y19c{bottom:754.476466px;}
.y8c{bottom:754.476470px;}
.y186{bottom:754.476544px;}
.yeb{bottom:758.062062px;}
.y90{bottom:760.208999px;}
.y16e{bottom:772.776214px;}
.y10c{bottom:772.776288px;}
.y2d{bottom:772.776291px;}
.y60{bottom:772.776351px;}
.y19b{bottom:772.776459px;}
.y185{bottom:772.776537px;}
.y10b{bottom:791.076281px;}
.y2c{bottom:791.076284px;}
.y5f{bottom:791.076343px;}
.y16d{bottom:791.076349px;}
.y19a{bottom:791.076452px;}
.y184{bottom:791.076529px;}
.yec{bottom:798.508364px;}
.y8b{bottom:801.126387px;}
.y91{bottom:804.528626px;}
.y10a{bottom:809.376273px;}
.y2b{bottom:809.376276px;}
.y5e{bottom:809.376336px;}
.y16c{bottom:809.376342px;}
.y199{bottom:809.376444px;}
.y183{bottom:809.376665px;}
.y8a{bottom:819.126342px;}
.y16b{bottom:827.676269px;}
.y5d{bottom:827.676328px;}
.y109{bottom:827.676408px;}
.y2a{bottom:827.676411px;}
.y198{bottom:827.676436px;}
.y182{bottom:827.676657px;}
.y89{bottom:837.126342px;}
.y16a{bottom:845.976104px;}
.y5c{bottom:845.976321px;}
.y108{bottom:845.976401px;}
.y29{bottom:845.976403px;}
.y197{bottom:845.976429px;}
.y181{bottom:845.976650px;}
.y92{bottom:848.848755px;}
.y88{bottom:855.126342px;}
.ydd{bottom:860.404178px;}
.y169{bottom:864.276122px;}
.y5b{bottom:864.276314px;}
.y107{bottom:864.276393px;}
.y28{bottom:864.276396px;}
.y196{bottom:864.276421px;}
.y180{bottom:864.276642px;}
.yf7{bottom:873.879578px;}
.y2{bottom:879.369000px;}
.y5a{bottom:882.576306px;}
.y168{bottom:882.576322px;}
.y106{bottom:882.576386px;}
.y27{bottom:882.576388px;}
.y195{bottom:882.576414px;}
.y17f{bottom:882.576634px;}
.yfb{bottom:885.686828px;}
.yf8{bottom:892.316828px;}
.y93{bottom:893.168427px;}
.y59{bottom:900.876299px;}
.y167{bottom:900.876342px;}
.y105{bottom:900.876378px;}
.y26{bottom:900.876381px;}
.y194{bottom:900.876433px;}
.y87{bottom:900.876471px;}
.y17e{bottom:900.876627px;}
.yfc{bottom:910.559078px;}
.yf9{bottom:919.168328px;}
.y166{bottom:919.176269px;}
.y58{bottom:919.176291px;}
.y104{bottom:919.176371px;}
.y25{bottom:919.176374px;}
.y193{bottom:919.176452px;}
.y17d{bottom:919.176620px;}
.y86{bottom:928.326561px;}
.yfd{bottom:931.034078px;}
.y165{bottom:937.476104px;}
.y57{bottom:937.476284px;}
.y103{bottom:937.476363px;}
.y24{bottom:937.476366px;}
.y17c{bottom:937.476612px;}
.y94{bottom:937.488008px;}
.yfa{bottom:938.941328px;}
.yf6{bottom:940.979078px;}
.y96{bottom:955.544403px;}
.y164{bottom:955.776214px;}
.y56{bottom:955.776276px;}
.y102{bottom:955.776356px;}
.y23{bottom:955.776359px;}
.y85{bottom:955.776381px;}
.y192{bottom:955.776488px;}
.y17b{bottom:955.776605px;}
.y1{bottom:966.726000px;}
.y101{bottom:974.076348px;}
.y163{bottom:974.076349px;}
.y22{bottom:974.076351px;}
.y55{bottom:974.076411px;}
.y191{bottom:974.076466px;}
.y17a{bottom:974.076597px;}
.y84{bottom:983.226471px;}
.y100{bottom:992.376341px;}
.y162{bottom:992.376342px;}
.y21{bottom:992.376343px;}
.y54{bottom:992.376403px;}
.y190{bottom:992.376459px;}
.y179{bottom:992.376616px;}
.yb0{bottom:993.876435px;}
.y153{bottom:994.176267px;}
.y161{bottom:1010.676269px;}
.y18f{bottom:1010.676452px;}
.y178{bottom:1010.676635px;}
.y152{bottom:1012.176267px;}
.ydc{bottom:1012.176270px;}
.y155{bottom:1074.014372px;}
.y8e{bottom:1074.014373px;}
.yba{bottom:1074.014375px;}
.yf3{bottom:1074.014378px;}
.h16{height:27.761400px;}
.h1b{height:27.975763px;}
.h10{height:32.004000px;}
.h7{height:32.130000px;}
.h17{height:32.352000px;}
.h1c{height:34.309888px;}
.h12{height:34.671000px;}
.h13{height:34.692336px;}
.h1a{height:34.888795px;}
.h15{height:37.392000px;}
.h11{height:37.968000px;}
.h19{height:38.671500px;}
.h18{height:43.392000px;}
.ha{height:45.543000px;}
.h6{height:45.900000px;}
.hf{height:48.006000px;}
.h3{height:48.195000px;}
.he{height:48.816000px;}
.hc{height:51.528000px;}
.hb{height:52.721610px;}
.h1f{height:52.721886px;}
.h20{height:52.721892px;}
.h14{height:52.721934px;}
.h23{height:52.722438px;}
.h1d{height:54.054000px;}
.h2{height:55.080000px;}
.h1e{height:61.698000px;}
.h22{height:71.370000px;}
.h21{height:75.075000px;}
.h5{height:78.030000px;}
.hd{height:97.632000px;}
.h4{height:119.055004px;}
.h9{height:1105.500000px;}
.h8{height:1105.512000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:21.259799px;}
.x43{left:41.269650px;}
.xa{left:42.519599px;}
.x1a{left:50.857800px;}
.x29{left:63.779598px;}
.x11{left:75.342072px;}
.x10{left:76.806744px;}
.x13{left:96.545100px;}
.x12{left:97.553703px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x3c{left:109.567350px;}
.x3b{left:113.574600px;}
.x3f{left:122.330100px;}
.x22{left:179.517920px;}
.x3d{left:186.104850px;}
.x23{left:197.801732px;}
.x40{left:198.867600px;}
.x4{left:203.484001px;}
.x20{left:241.953040px;}
.x3e{left:262.642350px;}
.x24{left:270.010732px;}
.x41{left:275.405100px;}
.x1f{left:283.779070px;}
.x5{left:307.217400px;}
.x6{left:328.534119px;}
.x25{left:336.961327px;}
.x39{left:340.324681px;}
.x38{left:342.139134px;}
.x19{left:361.975839px;}
.x18{left:363.024740px;}
.x14{left:371.172750px;}
.x15{left:384.094479px;}
.xd{left:385.558500px;}
.xc{left:394.062010px;}
.x36{left:395.148285px;}
.xf{left:403.631559px;}
.x21{left:407.626575px;}
.x2a{left:414.327438px;}
.xe{left:415.958997px;}
.x17{left:417.323270px;}
.x30{left:425.851948px;}
.x42{left:428.480100px;}
.x2b{left:436.274688px;}
.x1e{left:439.505044px;}
.x33{left:451.338448px;}
.x3{left:454.959000px;}
.x1b{left:462.146168px;}
.x1c{left:515.863271px;}
.x2c{left:519.334938px;}
.x37{left:529.900056px;}
.x31{left:540.638698px;}
.x26{left:564.076191px;}
.x27{left:569.411784px;}
.x9{left:571.348398px;}
.x7{left:573.019684px;}
.x8{left:594.033720px;}
.x3a{left:606.253794px;}
.x2d{left:621.378438px;}
.x28{left:631.158786px;}
.x1d{left:643.536809px;}
.x34{left:655.425448px;}
.x2e{left:725.878938px;}
.x2f{left:742.405188px;}
.x32{left:744.725698px;}
.x35{left:757.468948px;}
.x16{left:856.641629px;}
@media print{
.v3{vertical-align:-13.381333pt;}
.v2{vertical-align:-5.333333pt;}
.v5{vertical-align:-1.352000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.541093pt;}
.v6{vertical-align:24.024000pt;}
.v4{vertical-align:30.610667pt;}
.v9{vertical-align:32.621333pt;}
.v8{vertical-align:33.869333pt;}
.v7{vertical-align:35.914667pt;}
.ls29{letter-spacing:-8.640000pt;}
.ls5c{letter-spacing:-4.712000pt;}
.ls56{letter-spacing:-0.405333pt;}
.ls45{letter-spacing:-0.386280pt;}
.ls28{letter-spacing:-0.354667pt;}
.ls37{letter-spacing:-0.282384pt;}
.ls2f{letter-spacing:-0.253333pt;}
.ls31{letter-spacing:-0.202667pt;}
.ls40{letter-spacing:-0.193333pt;}
.ls57{letter-spacing:-0.152507pt;}
.ls58{letter-spacing:-0.051173pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009675pt;}
.ls5a{letter-spacing:0.009680pt;}
.ls4c{letter-spacing:0.009840pt;}
.ls4e{letter-spacing:0.051173pt;}
.ls1a{letter-spacing:0.101333pt;}
.ls30{letter-spacing:0.152507pt;}
.ls3e{letter-spacing:0.193333pt;}
.ls1b{letter-spacing:0.202667pt;}
.ls25{letter-spacing:0.253333pt;}
.ls4b{letter-spacing:0.258299pt;}
.ls2e{letter-spacing:0.258869pt;}
.ls47{letter-spacing:0.270667pt;}
.ls11{letter-spacing:0.304000pt;}
.ls46{letter-spacing:0.309333pt;}
.ls35{letter-spacing:0.338917pt;}
.ls2{letter-spacing:0.341685pt;}
.ls18{letter-spacing:0.354667pt;}
.ls38{letter-spacing:0.384000pt;}
.ls3c{letter-spacing:0.386280pt;}
.ls34{letter-spacing:0.396016pt;}
.lsc{letter-spacing:0.405333pt;}
.ls49{letter-spacing:0.419584pt;}
.ls36{letter-spacing:0.424000pt;}
.ls33{letter-spacing:0.426240pt;}
.ls17{letter-spacing:0.456000pt;}
.ls2d{letter-spacing:0.479520pt;}
.ls43{letter-spacing:0.502667pt;}
.ls3{letter-spacing:0.506160pt;}
.ls4a{letter-spacing:0.514584pt;}
.ls4d{letter-spacing:0.520000pt;}
.ls15{letter-spacing:0.557333pt;}
.ls3d{letter-spacing:0.580000pt;}
.ls27{letter-spacing:0.607493pt;}
.ls12{letter-spacing:0.658667pt;}
.ls2c{letter-spacing:0.672480pt;}
.ls1e{letter-spacing:0.709840pt;}
.ls10{letter-spacing:0.760000pt;}
.ls13{letter-spacing:0.811173pt;}
.ls42{letter-spacing:0.850667pt;}
.ls8{letter-spacing:0.861333pt;}
.ls3a{letter-spacing:0.888947pt;}
.ls23{letter-spacing:0.912507pt;}
.lsd{letter-spacing:0.962667pt;}
.ls26{letter-spacing:1.013333pt;}
.ls59{letter-spacing:1.024000pt;}
.ls3f{letter-spacing:1.043613pt;}
.ls4{letter-spacing:1.064000pt;}
.ls3b{letter-spacing:1.082667pt;}
.ls39{letter-spacing:1.109333pt;}
.ls1d{letter-spacing:1.114667pt;}
.lsb{letter-spacing:1.164827pt;}
.ls48{letter-spacing:1.194667pt;}
.ls19{letter-spacing:1.216000pt;}
.ls41{letter-spacing:1.237333pt;}
.ls9{letter-spacing:1.266160pt;}
.ls44{letter-spacing:1.276000pt;}
.ls14{letter-spacing:1.317333pt;}
.ls5{letter-spacing:1.367493pt;}
.ls7{letter-spacing:1.418667pt;}
.lse{letter-spacing:1.469840pt;}
.ls4f{letter-spacing:1.520000pt;}
.ls2a{letter-spacing:1.536960pt;}
.lsa{letter-spacing:1.571173pt;}
.ls6{letter-spacing:1.621333pt;}
.ls24{letter-spacing:1.672000pt;}
.ls54{letter-spacing:1.722667pt;}
.ls22{letter-spacing:1.773333pt;}
.ls32{letter-spacing:1.824000pt;}
.ls21{letter-spacing:1.874667pt;}
.ls1f{letter-spacing:1.924827pt;}
.ls20{letter-spacing:1.976000pt;}
.ls2b{letter-spacing:2.016000pt;}
.ls5b{letter-spacing:2.026160pt;}
.ls16{letter-spacing:2.077333pt;}
.lsf{letter-spacing:2.229840pt;}
.ls52{letter-spacing:2.432000pt;}
.ls53{letter-spacing:2.482667pt;}
.ls1c{letter-spacing:2.533333pt;}
.ls55{letter-spacing:2.583493pt;}
.ls51{letter-spacing:2.837333pt;}
.ls50{letter-spacing:3.192000pt;}
.ws5b{word-spacing:-26.201856pt;}
.ws5a{word-spacing:-24.320261pt;}
.ws81{word-spacing:-24.319728pt;}
.ws85{word-spacing:-14.541333pt;}
.ws5c{word-spacing:-12.970667pt;}
.ws86{word-spacing:-12.920000pt;}
.wsb6{word-spacing:-12.160000pt;}
.ws87{word-spacing:-12.108827pt;}
.wsb7{word-spacing:-11.754667pt;}
.ws82{word-spacing:-9.536957pt;}
.ws58{word-spacing:-7.344000pt;}
.ws56{word-spacing:-4.032960pt;}
.ws55{word-spacing:-3.552000pt;}
.wsb1{word-spacing:-1.164827pt;}
.wsab{word-spacing:-1.114667pt;}
.ws80{word-spacing:-0.888947pt;}
.ws63{word-spacing:-0.861333pt;}
.ws83{word-spacing:-0.768427pt;}
.wsaa{word-spacing:-0.760000pt;}
.ws97{word-spacing:-0.709840pt;}
.ws7c{word-spacing:-0.706384pt;}
.ws7e{word-spacing:-0.696387pt;}
.wsb8{word-spacing:-0.683093pt;}
.ws7a{word-spacing:-0.678400pt;}
.ws57{word-spacing:-0.672480pt;}
.ws22{word-spacing:-0.658667pt;}
.ws7f{word-spacing:-0.657333pt;}
.ws7b{word-spacing:-0.621867pt;}
.ws21{word-spacing:-0.607493pt;}
.wsb3{word-spacing:-0.597760pt;}
.ws3e{word-spacing:-0.557333pt;}
.ws3b{word-spacing:-0.506160pt;}
.ws4c{word-spacing:-0.405333pt;}
.ws52{word-spacing:-0.354667pt;}
.ws9d{word-spacing:-0.253333pt;}
.ws37{word-spacing:-0.202667pt;}
.wscb{word-spacing:-0.152507pt;}
.ws1f{word-spacing:-0.101333pt;}
.ws0{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.043093pt;}
.wsc6{word-spacing:0.152507pt;}
.ws6a{word-spacing:0.202667pt;}
.ws31{word-spacing:0.253333pt;}
.ws6f{word-spacing:0.354667pt;}
.wsbc{word-spacing:0.456000pt;}
.ws94{word-spacing:0.506160pt;}
.wsb0{word-spacing:0.557333pt;}
.ws1{word-spacing:0.861333pt;}
.ws36{word-spacing:0.912507pt;}
.ws1c{word-spacing:0.962667pt;}
.ws44{word-spacing:1.013333pt;}
.ws6{word-spacing:1.064000pt;}
.ws61{word-spacing:1.114667pt;}
.ws3c{word-spacing:1.164827pt;}
.ws3d{word-spacing:1.216000pt;}
.ws35{word-spacing:1.266160pt;}
.ws12{word-spacing:1.317333pt;}
.wsd{word-spacing:1.367493pt;}
.ws74{word-spacing:1.418667pt;}
.ws1b{word-spacing:1.520000pt;}
.ws53{word-spacing:1.571173pt;}
.ws65{word-spacing:1.621333pt;}
.wsa5{word-spacing:1.722667pt;}
.wsad{word-spacing:1.773333pt;}
.wsc4{word-spacing:1.824000pt;}
.ws10{word-spacing:1.874667pt;}
.ws32{word-spacing:1.924827pt;}
.ws46{word-spacing:1.976000pt;}
.ws3{word-spacing:2.077333pt;}
.ws2a{word-spacing:2.178667pt;}
.wsa7{word-spacing:2.229840pt;}
.wse{word-spacing:2.280000pt;}
.wscc{word-spacing:2.331173pt;}
.ws39{word-spacing:2.381333pt;}
.ws88{word-spacing:2.432000pt;}
.ws99{word-spacing:2.482667pt;}
.ws3f{word-spacing:2.533333pt;}
.ws9c{word-spacing:2.583493pt;}
.ws5f{word-spacing:2.634667pt;}
.wsc8{word-spacing:2.684827pt;}
.ws98{word-spacing:2.736000pt;}
.ws2{word-spacing:2.786160pt;}
.ws13{word-spacing:2.837333pt;}
.ws50{word-spacing:2.888507pt;}
.ws5d{word-spacing:2.938667pt;}
.ws51{word-spacing:2.989840pt;}
.ws7{word-spacing:3.040000pt;}
.ws62{word-spacing:3.090667pt;}
.wsb2{word-spacing:3.141333pt;}
.wsc9{word-spacing:3.192000pt;}
.wsc{word-spacing:3.242667pt;}
.ws60{word-spacing:3.343493pt;}
.wscd{word-spacing:3.394667pt;}
.wsc2{word-spacing:3.444827pt;}
.ws8c{word-spacing:3.547173pt;}
.ws89{word-spacing:3.597333pt;}
.ws5e{word-spacing:3.648507pt;}
.wsbb{word-spacing:3.698667pt;}
.ws8{word-spacing:3.749840pt;}
.wsa{word-spacing:3.800000pt;}
.ws5{word-spacing:3.850667pt;}
.ws4d{word-spacing:3.901333pt;}
.ws9{word-spacing:4.053333pt;}
.ws16{word-spacing:4.103493pt;}
.ws45{word-spacing:4.154667pt;}
.wsf{word-spacing:4.256000pt;}
.ws8b{word-spacing:4.307173pt;}
.ws2b{word-spacing:4.408507pt;}
.ws4e{word-spacing:4.458667pt;}
.ws42{word-spacing:4.509333pt;}
.ws9e{word-spacing:4.560000pt;}
.ws4a{word-spacing:4.610667pt;}
.ws49{word-spacing:4.661333pt;}
.wsac{word-spacing:4.712000pt;}
.ws71{word-spacing:4.762160pt;}
.ws4b{word-spacing:4.813333pt;}
.ws4f{word-spacing:4.863493pt;}
.ws64{word-spacing:4.914667pt;}
.ws15{word-spacing:4.965840pt;}
.wsa9{word-spacing:5.016000pt;}
.ws1d{word-spacing:5.067173pt;}
.wsb{word-spacing:5.117333pt;}
.wsc5{word-spacing:5.168507pt;}
.ws27{word-spacing:5.370667pt;}
.ws43{word-spacing:5.420827pt;}
.ws17{word-spacing:5.522160pt;}
.wsa4{word-spacing:5.573333pt;}
.ws4{word-spacing:5.623493pt;}
.ws9a{word-spacing:5.674667pt;}
.ws77{word-spacing:5.725840pt;}
.ws76{word-spacing:5.776000pt;}
.ws2e{word-spacing:5.827173pt;}
.wsca{word-spacing:5.877333pt;}
.wsae{word-spacing:5.928000pt;}
.ws93{word-spacing:5.978667pt;}
.ws91{word-spacing:6.029333pt;}
.ws14{word-spacing:6.080000pt;}
.ws26{word-spacing:6.180827pt;}
.ws24{word-spacing:6.282160pt;}
.wsa3{word-spacing:6.333333pt;}
.ws73{word-spacing:6.384507pt;}
.ws6c{word-spacing:6.434667pt;}
.ws75{word-spacing:6.738667pt;}
.wsaf{word-spacing:6.789333pt;}
.wsa0{word-spacing:6.839493pt;}
.ws1e{word-spacing:6.890667pt;}
.ws66{word-spacing:6.940827pt;}
.ws20{word-spacing:7.296000pt;}
.ws92{word-spacing:7.397333pt;}
.wsba{word-spacing:7.448000pt;}
.wsa1{word-spacing:7.498160pt;}
.ws8a{word-spacing:7.549333pt;}
.ws47{word-spacing:7.599493pt;}
.ws3a{word-spacing:7.650667pt;}
.wsa2{word-spacing:7.700827pt;}
.ws69{word-spacing:7.752000pt;}
.ws29{word-spacing:7.803173pt;}
.wsc3{word-spacing:8.005333pt;}
.wsc7{word-spacing:8.056000pt;}
.ws90{word-spacing:8.106667pt;}
.wsbe{word-spacing:8.309333pt;}
.ws68{word-spacing:8.359493pt;}
.ws2d{word-spacing:8.410667pt;}
.ws54{word-spacing:8.640000pt;}
.ws18{word-spacing:8.765333pt;}
.ws1a{word-spacing:8.816000pt;}
.wsb9{word-spacing:8.866667pt;}
.ws25{word-spacing:8.916827pt;}
.ws30{word-spacing:8.968000pt;}
.ws28{word-spacing:9.018160pt;}
.ws72{word-spacing:9.170667pt;}
.ws8d{word-spacing:9.221840pt;}
.ws67{word-spacing:9.323173pt;}
.ws9b{word-spacing:9.424000pt;}
.ws48{word-spacing:9.576000pt;}
.ws78{word-spacing:9.626667pt;}
.wsbf{word-spacing:9.728000pt;}
.ws70{word-spacing:9.778160pt;}
.ws11{word-spacing:10.335493pt;}
.ws6b{word-spacing:10.386667pt;}
.wsa6{word-spacing:10.488000pt;}
.ws79{word-spacing:10.842667pt;}
.wsbd{word-spacing:10.944000pt;}
.ws96{word-spacing:11.196827pt;}
.ws6d{word-spacing:11.349333pt;}
.ws38{word-spacing:11.450667pt;}
.ws8e{word-spacing:11.552000pt;}
.ws8f{word-spacing:11.754160pt;}
.wsc0{word-spacing:12.008000pt;}
.ws9f{word-spacing:12.210667pt;}
.ws41{word-spacing:12.514160pt;}
.wsc1{word-spacing:12.615493pt;}
.ws23{word-spacing:12.819173pt;}
.ws6e{word-spacing:13.274160pt;}
.ws40{word-spacing:13.730667pt;}
.ws33{word-spacing:13.882667pt;}
.ws34{word-spacing:13.932827pt;}
.ws2c{word-spacing:14.186667pt;}
.ws95{word-spacing:14.642667pt;}
.ws2f{word-spacing:14.845333pt;}
.ws19{word-spacing:18.188827pt;}
.wsa8{word-spacing:19.760000pt;}
.ws59{word-spacing:67.805604pt;}
.wsb5{word-spacing:90.209600pt;}
.wsb4{word-spacing:195.034667pt;}
.ws84{word-spacing:314.634667pt;}
._13{margin-left:-62.979739pt;}
._10{margin-left:-23.659307pt;}
._11{margin-left:-14.797712pt;}
._a{margin-left:-12.790795pt;}
._17{margin-left:-11.699968pt;}
._7{margin-left:-10.246352pt;}
._6{margin-left:-9.071883pt;}
._d{margin-left:-7.342080pt;}
._18{margin-left:-6.272027pt;}
._12{margin-left:-4.824533pt;}
._5{margin-left:-3.876000pt;}
._9{margin-left:-2.967520pt;}
._3{margin-left:-2.052507pt;}
._2{margin-left:-0.891733pt;}
._0{width:0.912000pt;}
._1{width:1.864533pt;}
._4{width:3.055200pt;}
._1d{width:4.817717pt;}
._19{width:6.138608pt;}
._8{width:8.015467pt;}
._15{width:9.157179pt;}
._c{width:12.068800pt;}
._b{width:14.313333pt;}
._e{width:27.625045pt;}
._14{width:31.617499pt;}
._1a{width:95.706053pt;}
._16{width:99.155280pt;}
._f{width:114.890748pt;}
._1c{width:131.768000pt;}
._1b{width:139.221333pt;}
.fs6{font-size:24.874667pt;}
.fs12{font-size:27.972267pt;}
.fsf{font-size:28.266667pt;}
.fsa{font-size:32.000000pt;}
.fsd{font-size:33.333333pt;}
.fs7{font-size:34.202667pt;}
.fs11{font-size:34.305600pt;}
.fsb{font-size:34.666667pt;}
.fsc{font-size:34.688000pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:38.666667pt;}
.fse{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y154{bottom:16.830931pt;}
.y8d{bottom:16.830932pt;}
.yb9{bottom:16.830933pt;}
.yf2{bottom:16.830936pt;}
.y83{bottom:68.778871pt;}
.y140{bottom:68.778896pt;}
.y14e{bottom:68.778933pt;}
.y130{bottom:68.778936pt;}
.y53{bottom:68.778939pt;}
.yaf{bottom:68.778948pt;}
.ydb{bottom:74.809471pt;}
.y13f{bottom:85.045556pt;}
.y12f{bottom:85.045596pt;}
.y52{bottom:85.045599pt;}
.yae{bottom:85.045608pt;}
.y82{bottom:85.045657pt;}
.y4{bottom:86.333337pt;}
.yda{bottom:86.809477pt;}
.yf1{bottom:93.312401pt;}
.y1b5{bottom:93.312424pt;}
.yd9{bottom:98.809484pt;}
.y13e{bottom:101.312216pt;}
.y14d{bottom:101.312264pt;}
.y12e{bottom:101.312265pt;}
.y51{bottom:101.312267pt;}
.yad{bottom:101.312268pt;}
.y81{bottom:101.312317pt;}
.y1b4{bottom:101.312385pt;}
.yf0{bottom:101.312401pt;}
.y1b3{bottom:109.979087pt;}
.yd8{bottom:110.809491pt;}
.y13d{bottom:117.578876pt;}
.y12d{bottom:117.578925pt;}
.y50{bottom:117.578928pt;}
.y14c{bottom:117.578939pt;}
.y80{bottom:117.578977pt;}
.y1b2{bottom:117.979048pt;}
.yd7{bottom:122.809497pt;}
.y20{bottom:123.790666pt;}
.y1b1{bottom:125.979080pt;}
.y12c{bottom:133.845599pt;}
.y4f{bottom:133.845601pt;}
.y7f{bottom:133.845637pt;}
.y13c{bottom:133.845663pt;}
.y1b0{bottom:133.979041pt;}
.yd6{bottom:134.809504pt;}
.y1af{bottom:141.978932pt;}
.yd5{bottom:146.809511pt;}
.yac{bottom:150.112204pt;}
.y14b{bottom:150.112261pt;}
.y4e{bottom:150.112271pt;}
.y7e{bottom:150.112297pt;}
.y12b{bottom:150.112323pt;}
.yde{bottom:161.294935pt;}
.yd4{bottom:166.368560pt;}
.y4d{bottom:166.378931pt;}
.y14a{bottom:166.378935pt;}
.y7d{bottom:166.378957pt;}
.y12a{bottom:166.378983pt;}
.yab{bottom:166.378991pt;}
.y160{bottom:172.280801pt;}
.y17{bottom:175.052000pt;}
.yd3{bottom:178.368567pt;}
.y4c{bottom:182.645591pt;}
.y7c{bottom:182.645617pt;}
.y129{bottom:182.645643pt;}
.yaa{bottom:182.645651pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.yd2{bottom:190.368573pt;}
.ye1{bottom:195.525597pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y158{bottom:198.729999pt;}
.y4b{bottom:198.912251pt;}
.y7b{bottom:198.912277pt;}
.y128{bottom:198.912303pt;}
.ya9{bottom:198.912311pt;}
.yd1{bottom:202.368580pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.ydf{bottom:208.939069pt;}
.yd0{bottom:214.368491pt;}
.y4a{bottom:215.178911pt;}
.y7a{bottom:215.178937pt;}
.y127{bottom:215.178963pt;}
.ya8{bottom:215.178971pt;}
.ye0{bottom:222.403465pt;}
.ycf{bottom:226.368497pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y49{bottom:231.445571pt;}
.y79{bottom:231.445597pt;}
.y126{bottom:231.445623pt;}
.ya7{bottom:231.445631pt;}
.ye2{bottom:235.948408pt;}
.yce{bottom:238.368504pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y48{bottom:247.712231pt;}
.y78{bottom:247.712260pt;}
.y125{bottom:247.712283pt;}
.ya6{bottom:247.712291pt;}
.ye3{bottom:249.412132pt;}
.ycd{bottom:250.368511pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.ycc{bottom:262.368517pt;}
.ye4{bottom:262.800397pt;}
.y47{bottom:263.978891pt;}
.y77{bottom:263.978943pt;}
.ya5{bottom:263.978951pt;}
.ye5{bottom:271.814211pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.yef{bottom:276.314395pt;}
.y46{bottom:280.245551pt;}
.y124{bottom:280.245603pt;}
.y76{bottom:280.245605pt;}
.ya4{bottom:280.245611pt;}
.ycb{bottom:281.927471pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.yca{bottom:293.927471pt;}
.y45{bottom:296.512211pt;}
.y123{bottom:296.512265pt;}
.ya3{bottom:296.512271pt;}
.y149{bottom:296.512279pt;}
.y159{bottom:303.631332pt;}
.yc9{bottom:305.927512pt;}
.ye{bottom:309.452000pt;}
.y44{bottom:312.778871pt;}
.y122{bottom:312.778928pt;}
.ya2{bottom:312.778931pt;}
.y148{bottom:312.778939pt;}
.y13b{bottom:312.778961pt;}
.y75{bottom:312.778992pt;}
.yc8{bottom:317.927421pt;}
.ye6{bottom:327.063380pt;}
.y121{bottom:329.045591pt;}
.ya1{bottom:329.045593pt;}
.y147{bottom:329.045599pt;}
.y13a{bottom:329.045621pt;}
.y74{bottom:329.045652pt;}
.y43{bottom:329.045657pt;}
.yc7{bottom:329.927428pt;}
.yc6{bottom:341.927435pt;}
.yd{bottom:343.809333pt;}
.y146{bottom:345.312259pt;}
.ya0{bottom:345.312272pt;}
.y139{bottom:345.312281pt;}
.y73{bottom:345.312312pt;}
.y42{bottom:345.312317pt;}
.yc5{bottom:361.486485pt;}
.y145{bottom:361.578919pt;}
.y9f{bottom:361.578932pt;}
.y120{bottom:361.578936pt;}
.y138{bottom:361.578941pt;}
.y72{bottom:361.578972pt;}
.y41{bottom:361.578977pt;}
.yc{bottom:362.706666pt;}
.y15b{bottom:368.587999pt;}
.y15c{bottom:371.456665pt;}
.yc4{bottom:373.486492pt;}
.y144{bottom:377.845579pt;}
.y9e{bottom:377.845592pt;}
.y137{bottom:377.845601pt;}
.y71{bottom:377.845632pt;}
.y11f{bottom:377.845635pt;}
.y40{bottom:377.845637pt;}
.y1ae{bottom:377.845741pt;}
.y15e{bottom:381.665999pt;}
.yc3{bottom:385.486499pt;}
.y9d{bottom:394.112252pt;}
.y136{bottom:394.112261pt;}
.y70{bottom:394.112292pt;}
.y11e{bottom:394.112295pt;}
.y3f{bottom:394.112297pt;}
.y1ad{bottom:394.112401pt;}
.yc2{bottom:397.486505pt;}
.y15f{bottom:399.510665pt;}
.y15a{bottom:402.396665pt;}
.yc1{bottom:409.486512pt;}
.y9c{bottom:410.378912pt;}
.y135{bottom:410.378944pt;}
.y6f{bottom:410.378952pt;}
.y11d{bottom:410.378955pt;}
.y3e{bottom:410.378957pt;}
.y1ac{bottom:410.379061pt;}
.y15d{bottom:417.043332pt;}
.yc0{bottom:421.486519pt;}
.y134{bottom:426.645587pt;}
.y143{bottom:426.645609pt;}
.y6e{bottom:426.645612pt;}
.y11c{bottom:426.645615pt;}
.y3d{bottom:426.645617pt;}
.y9b{bottom:426.645699pt;}
.y1ab{bottom:426.645721pt;}
.yb{bottom:430.990669pt;}
.ybf{bottom:433.486525pt;}
.y133{bottom:442.912269pt;}
.y6d{bottom:442.912272pt;}
.y11b{bottom:442.912275pt;}
.y3c{bottom:442.912277pt;}
.y9a{bottom:442.912359pt;}
.y1aa{bottom:442.912381pt;}
.ye7{bottom:443.410805pt;}
.ybe{bottom:445.486532pt;}
.ya{bottom:446.990669pt;}
.ybd{bottom:457.486532pt;}
.y132{bottom:459.178889pt;}
.y6c{bottom:459.178915pt;}
.y11a{bottom:459.178935pt;}
.y3b{bottom:459.178937pt;}
.y142{bottom:459.178995pt;}
.y99{bottom:459.179019pt;}
.y1a9{bottom:459.179041pt;}
.y9{bottom:462.990669pt;}
.y157{bottom:468.912395pt;}
.y131{bottom:475.445549pt;}
.y119{bottom:475.445595pt;}
.y3a{bottom:475.445597pt;}
.y141{bottom:475.445655pt;}
.y98{bottom:475.445679pt;}
.y1a8{bottom:475.445701pt;}
.ybc{bottom:477.045613pt;}
.y8{bottom:478.990666pt;}
.y156{bottom:484.912395pt;}
.y118{bottom:491.712277pt;}
.y39{bottom:491.712280pt;}
.y97{bottom:491.712339pt;}
.y1a7{bottom:491.712361pt;}
.ybb{bottom:493.045613pt;}
.y7{bottom:494.990666pt;}
.yee{bottom:501.104248pt;}
.y117{bottom:507.978920pt;}
.y6b{bottom:507.978925pt;}
.y38{bottom:507.978999pt;}
.y1a6{bottom:507.979021pt;}
.ye9{bottom:508.471375pt;}
.ye8{bottom:517.596665pt;}
.y6a{bottom:524.245585pt;}
.y116{bottom:524.245613pt;}
.y37{bottom:524.245659pt;}
.y1a5{bottom:524.245681pt;}
.y69{bottom:540.512245pt;}
.y177{bottom:540.512251pt;}
.y115{bottom:540.512273pt;}
.y36{bottom:540.512319pt;}
.y1a4{bottom:540.512341pt;}
.y18e{bottom:540.512531pt;}
.y176{bottom:556.778911pt;}
.y114{bottom:556.778933pt;}
.y35{bottom:556.778979pt;}
.y1a3{bottom:556.779001pt;}
.y68{bottom:556.779032pt;}
.y18d{bottom:556.779197pt;}
.yb8{bottom:557.578959pt;}
.y151{bottom:565.178919pt;}
.yb7{bottom:565.578920pt;}
.y113{bottom:573.045593pt;}
.y34{bottom:573.045639pt;}
.y1a2{bottom:573.045661pt;}
.y67{bottom:573.045692pt;}
.y175{bottom:573.045697pt;}
.y18c{bottom:573.045857pt;}
.y150{bottom:573.178880pt;}
.yb6{bottom:573.578952pt;}
.y6{bottom:573.786667pt;}
.y14f{bottom:581.178912pt;}
.yb5{bottom:581.578913pt;}
.y112{bottom:589.312253pt;}
.y33{bottom:589.312299pt;}
.y1a1{bottom:589.312321pt;}
.y66{bottom:589.312352pt;}
.y174{bottom:589.312357pt;}
.y18b{bottom:589.312517pt;}
.yb4{bottom:589.578945pt;}
.y5{bottom:592.685334pt;}
.yb3{bottom:597.578907pt;}
.yea{bottom:603.780909pt;}
.y173{bottom:605.578891pt;}
.yb2{bottom:605.578939pt;}
.y111{bottom:605.578956pt;}
.y32{bottom:605.578959pt;}
.y1a0{bottom:605.578981pt;}
.y65{bottom:605.579012pt;}
.y18a{bottom:605.579177pt;}
.yfe{bottom:606.572915pt;}
.yb1{bottom:613.712280pt;}
.y110{bottom:621.845616pt;}
.y31{bottom:621.845619pt;}
.y19f{bottom:621.845641pt;}
.y64{bottom:621.845672pt;}
.y172{bottom:621.845677pt;}
.y189{bottom:621.845837pt;}
.yff{bottom:634.592248pt;}
.y10f{bottom:638.112276pt;}
.y30{bottom:638.112279pt;}
.y63{bottom:638.112332pt;}
.y171{bottom:638.112337pt;}
.y19e{bottom:638.112428pt;}
.y188{bottom:638.112497pt;}
.y95{bottom:642.894939pt;}
.yed{bottom:645.102004pt;}
.yf5{bottom:649.945180pt;}
.y10e{bottom:654.378936pt;}
.y2f{bottom:654.378939pt;}
.y62{bottom:654.378992pt;}
.y170{bottom:654.378997pt;}
.y19d{bottom:654.379088pt;}
.y187{bottom:654.379157pt;}
.yf4{bottom:659.478513pt;}
.y8f{bottom:664.802531pt;}
.y3{bottom:668.977329pt;}
.y10d{bottom:670.645596pt;}
.y2e{bottom:670.645599pt;}
.y61{bottom:670.645652pt;}
.y16f{bottom:670.645657pt;}
.y19c{bottom:670.645748pt;}
.y8c{bottom:670.645751pt;}
.y186{bottom:670.645817pt;}
.yeb{bottom:673.832944pt;}
.y90{bottom:675.741332pt;}
.y16e{bottom:686.912191pt;}
.y10c{bottom:686.912256pt;}
.y2d{bottom:686.912259pt;}
.y60{bottom:686.912312pt;}
.y19b{bottom:686.912408pt;}
.y185{bottom:686.912477pt;}
.y10b{bottom:703.178916pt;}
.y2c{bottom:703.178919pt;}
.y5f{bottom:703.178972pt;}
.y16d{bottom:703.178977pt;}
.y19a{bottom:703.179068pt;}
.y184{bottom:703.179137pt;}
.yec{bottom:709.785213pt;}
.y8b{bottom:712.112344pt;}
.y91{bottom:715.136556pt;}
.y10a{bottom:719.445576pt;}
.y2b{bottom:719.445579pt;}
.y5e{bottom:719.445632pt;}
.y16c{bottom:719.445637pt;}
.y199{bottom:719.445728pt;}
.y183{bottom:719.445924pt;}
.y8a{bottom:728.112304pt;}
.y16b{bottom:735.712239pt;}
.y5d{bottom:735.712292pt;}
.y109{bottom:735.712363pt;}
.y2a{bottom:735.712365pt;}
.y198{bottom:735.712388pt;}
.y182{bottom:735.712584pt;}
.y89{bottom:744.112304pt;}
.y16a{bottom:751.978759pt;}
.y5c{bottom:751.978952pt;}
.y108{bottom:751.979023pt;}
.y29{bottom:751.979025pt;}
.y197{bottom:751.979048pt;}
.y181{bottom:751.979244pt;}
.y92{bottom:754.532227pt;}
.y88{bottom:760.112304pt;}
.ydd{bottom:764.803713pt;}
.y169{bottom:768.245441pt;}
.y5b{bottom:768.245612pt;}
.y107{bottom:768.245683pt;}
.y28{bottom:768.245685pt;}
.y196{bottom:768.245708pt;}
.y180{bottom:768.245904pt;}
.yf7{bottom:776.781847pt;}
.y2{bottom:781.661334pt;}
.y5a{bottom:784.512272pt;}
.y168{bottom:784.512287pt;}
.y106{bottom:784.512343pt;}
.y27{bottom:784.512345pt;}
.y195{bottom:784.512368pt;}
.y17f{bottom:784.512564pt;}
.yfb{bottom:787.277180pt;}
.yf8{bottom:793.170513pt;}
.y93{bottom:793.927491pt;}
.y59{bottom:800.778932pt;}
.y167{bottom:800.778971pt;}
.y105{bottom:800.779003pt;}
.y26{bottom:800.779005pt;}
.y194{bottom:800.779052pt;}
.y87{bottom:800.779085pt;}
.y17e{bottom:800.779224pt;}
.yfc{bottom:809.385847pt;}
.yf9{bottom:817.038513pt;}
.y166{bottom:817.045572pt;}
.y58{bottom:817.045592pt;}
.y104{bottom:817.045663pt;}
.y25{bottom:817.045665pt;}
.y193{bottom:817.045735pt;}
.y17d{bottom:817.045884pt;}
.y86{bottom:825.179165pt;}
.yfd{bottom:827.585847pt;}
.y165{bottom:833.312092pt;}
.y57{bottom:833.312252pt;}
.y103{bottom:833.312323pt;}
.y24{bottom:833.312325pt;}
.y17c{bottom:833.312544pt;}
.y94{bottom:833.322673pt;}
.yfa{bottom:834.614513pt;}
.yf6{bottom:836.425847pt;}
.y96{bottom:849.372803pt;}
.y164{bottom:849.578857pt;}
.y56{bottom:849.578912pt;}
.y102{bottom:849.578983pt;}
.y23{bottom:849.578985pt;}
.y85{bottom:849.579005pt;}
.y192{bottom:849.579100pt;}
.y17b{bottom:849.579204pt;}
.y1{bottom:859.312000pt;}
.y101{bottom:865.845643pt;}
.y163{bottom:865.845644pt;}
.y22{bottom:865.845645pt;}
.y55{bottom:865.845699pt;}
.y191{bottom:865.845748pt;}
.y17a{bottom:865.845864pt;}
.y84{bottom:873.979085pt;}
.y100{bottom:882.112303pt;}
.y162{bottom:882.112304pt;}
.y21{bottom:882.112305pt;}
.y54{bottom:882.112359pt;}
.y190{bottom:882.112408pt;}
.y179{bottom:882.112548pt;}
.yb0{bottom:883.445720pt;}
.y153{bottom:883.712237pt;}
.y161{bottom:898.378905pt;}
.y18f{bottom:898.379068pt;}
.y178{bottom:898.379231pt;}
.y152{bottom:899.712237pt;}
.ydc{bottom:899.712240pt;}
.y155{bottom:954.679441pt;}
.y8e{bottom:954.679443pt;}
.yba{bottom:954.679444pt;}
.yf3{bottom:954.679447pt;}
.h16{height:24.676800pt;}
.h1b{height:24.867345pt;}
.h10{height:28.448000pt;}
.h7{height:28.560000pt;}
.h17{height:28.757333pt;}
.h1c{height:30.497678pt;}
.h12{height:30.818667pt;}
.h13{height:30.837632pt;}
.h1a{height:31.012262pt;}
.h15{height:33.237333pt;}
.h11{height:33.749333pt;}
.h19{height:34.374667pt;}
.h18{height:38.570667pt;}
.ha{height:40.482667pt;}
.h6{height:40.800000pt;}
.hf{height:42.672000pt;}
.h3{height:42.840000pt;}
.he{height:43.392000pt;}
.hc{height:45.802667pt;}
.hb{height:46.863653pt;}
.h1f{height:46.863899pt;}
.h20{height:46.863904pt;}
.h14{height:46.863941pt;}
.h23{height:46.864389pt;}
.h1d{height:48.048000pt;}
.h2{height:48.960000pt;}
.h1e{height:54.842667pt;}
.h22{height:63.440000pt;}
.h21{height:66.733333pt;}
.h5{height:69.360000pt;}
.hd{height:86.784000pt;}
.h4{height:105.826671pt;}
.h9{height:982.666667pt;}
.h8{height:982.677333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:18.897599pt;}
.x43{left:36.684133pt;}
.xa{left:37.795199pt;}
.x1a{left:45.206933pt;}
.x29{left:56.692976pt;}
.x11{left:66.970731pt;}
.x10{left:68.272661pt;}
.x13{left:85.817867pt;}
.x12{left:86.714403pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x3c{left:97.393200pt;}
.x3b{left:100.955200pt;}
.x3f{left:108.737867pt;}
.x22{left:159.571484pt;}
.x3d{left:165.426533pt;}
.x23{left:175.823762pt;}
.x40{left:176.771200pt;}
.x4{left:180.874667pt;}
.x20{left:215.069369pt;}
.x3e{left:233.459867pt;}
.x24{left:240.009540pt;}
.x41{left:244.804533pt;}
.x1f{left:252.248063pt;}
.x5{left:273.082133pt;}
.x6{left:292.030328pt;}
.x25{left:299.521179pt;}
.x39{left:302.510828pt;}
.x38{left:304.123675pt;}
.x19{left:321.756301pt;}
.x18{left:322.688657pt;}
.x14{left:329.931333pt;}
.x15{left:341.417315pt;}
.xd{left:342.718667pt;}
.xc{left:350.277343pt;}
.x36{left:351.242920pt;}
.xf{left:358.783608pt;}
.x21{left:362.334733pt;}
.x2a{left:368.291056pt;}
.xe{left:369.741331pt;}
.x17{left:370.954017pt;}
.x30{left:378.535065pt;}
.x42{left:380.871200pt;}
.x2b{left:387.799723pt;}
.x1e{left:390.671150pt;}
.x33{left:401.189731pt;}
.x3{left:404.408000pt;}
.x1b{left:410.796593pt;}
.x1c{left:458.545129pt;}
.x2c{left:461.631056pt;}
.x37{left:471.022272pt;}
.x31{left:480.567731pt;}
.x26{left:501.401059pt;}
.x27{left:506.143808pt;}
.x9{left:507.865243pt;}
.x7{left:509.350831pt;}
.x8{left:528.029973pt;}
.x3a{left:538.892261pt;}
.x2d{left:552.336389pt;}
.x28{left:561.030032pt;}
.x1d{left:572.032719pt;}
.x34{left:582.600398pt;}
.x2e{left:645.225723pt;}
.x2f{left:659.915723pt;}
.x32{left:661.978398pt;}
.x35{left:673.305731pt;}
.x16{left:761.459225pt;}
}




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