
    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_cb4753a15fbcc92f66002310.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_0c6ecabfdd8f8cdd04e8347c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_b6278d42091aa7ced9d25f00.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_cc2f95a5c99554e78fb45cc6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.952000;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_f786aaf96477b1118c924c8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_0da2285526fd2fba7497f9c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.853000;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_486a84686df6b3b063435f14.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.954000;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_5619f13393068339936a6a56.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904000;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_4777996d0466f9d854ae7af5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.710000;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_cd80fa4af83e48fb24ae89d3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.888000;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_f51e037885ca61a00c6a5604.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.955000;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_b29842a007b70bce3e0acbe2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.889000;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_04af838ed2e0fc15abd35731.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964000;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_3fe7377109ce72b46de2fe76.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_56926c9a316b0e13e4ec413a.woff2')format("woff");}.fff{font-family:fff;line-height:0.684000;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.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.620000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.038400px;}
.ls12{letter-spacing:0.723285px;}
.ls15{letter-spacing:0.729262px;}
.ls1e{letter-spacing:0.902612px;}
.ls9{letter-spacing:2.092146px;}
.lsb{letter-spacing:2.450800px;}
.lsa{letter-spacing:6.503520px;}
.ls27{letter-spacing:7.522180px;}
.ls1c{letter-spacing:7.531745px;}
.ls2b{letter-spacing:7.550873px;}
.ls26{letter-spacing:7.627386px;}
.ls2{letter-spacing:7.636950px;}
.ls1b{letter-spacing:7.737373px;}
.ls1a{letter-spacing:7.813886px;}
.ls19{letter-spacing:7.847360px;}
.ls2a{letter-spacing:7.861707px;}
.lse{letter-spacing:9.277173px;}
.ls6{letter-spacing:9.390747px;}
.ls22{letter-spacing:9.408679px;}
.ls10{letter-spacing:9.426612px;}
.ls8{letter-spacing:9.450522px;}
.ls18{letter-spacing:9.504320px;}
.ls7{letter-spacing:9.510298px;}
.ls16{letter-spacing:9.516276px;}
.lsf{letter-spacing:9.564096px;}
.lsd{letter-spacing:9.576051px;}
.ls1d{letter-spacing:9.582029px;}
.lsc{letter-spacing:9.611916px;}
.ls11{letter-spacing:9.617894px;}
.ls23{letter-spacing:9.629849px;}
.ls14{letter-spacing:9.647782px;}
.ls17{letter-spacing:9.665715px;}
.ls24{letter-spacing:9.677670px;}
.ls5{letter-spacing:9.731468px;}
.ls4{letter-spacing:9.737445px;}
.ls21{letter-spacing:9.797221px;}
.ls1f{letter-spacing:9.803198px;}
.ls3{letter-spacing:10.586394px;}
.ls20{letter-spacing:11.787748px;}
.ls13{letter-spacing:12.002940px;}
.ls28{letter-spacing:20.883256px;}
.ls29{letter-spacing:20.888038px;}
.ls25{letter-spacing:21.050628px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws65{word-spacing:-51.782320px;}
.ws1f{word-spacing:-51.753628px;}
.wsa1{word-spacing:-51.746455px;}
.ws9e{word-spacing:-51.617340px;}
.ws9f{word-spacing:-51.502571px;}
.wsa0{word-spacing:-51.438013px;}
.ws9c{word-spacing:-43.152006px;}
.wsc7{word-spacing:-37.204427px;}
.ws4f{word-spacing:-37.162491px;}
.ws51{word-spacing:-36.989141px;}
.ws6{word-spacing:-36.798106px;}
.ws5f{word-spacing:-36.767972px;}
.ws91{word-spacing:-34.612550px;}
.ws10{word-spacing:-34.469088px;}
.wsf{word-spacing:-34.459524px;}
.ws4{word-spacing:-34.426050px;}
.wsa4{word-spacing:-34.387793px;}
.ws83{word-spacing:-34.273024px;}
.wsb5{word-spacing:-34.086524px;}
.wsd4{word-spacing:-34.048267px;}
.wsc2{word-spacing:-34.043485px;}
.wscb{word-spacing:-29.863965px;}
.wsb4{word-spacing:-29.849619px;}
.wsd0{word-spacing:-29.816144px;}
.wsc1{word-spacing:-29.797016px;}
.wsbf{word-spacing:-29.792234px;}
.ws3{word-spacing:-29.782670px;}
.wscf{word-spacing:-29.763541px;}
.wsde{word-spacing:-29.758759px;}
.wsbb{word-spacing:-29.749195px;}
.wsc4{word-spacing:-29.744413px;}
.wsb8{word-spacing:-29.739631px;}
.wsb7{word-spacing:-29.734849px;}
.ws6f{word-spacing:-29.730067px;}
.wsbe{word-spacing:-29.725285px;}
.wsdd{word-spacing:-29.720503px;}
.wsd2{word-spacing:-29.706157px;}
.wsae{word-spacing:-29.687028px;}
.wsa3{word-spacing:-29.682246px;}
.wsa6{word-spacing:-29.634426px;}
.wsb1{word-spacing:-29.591387px;}
.wsd9{word-spacing:-29.562695px;}
.wsaa{word-spacing:-29.557913px;}
.wsc0{word-spacing:-29.553131px;}
.wsda{word-spacing:-29.538785px;}
.wsba{word-spacing:-29.514874px;}
.wsc8{word-spacing:-29.490964px;}
.wsdf{word-spacing:-29.476618px;}
.ws76{word-spacing:-24.926425px;}
.ws8{word-spacing:-21.810685px;}
.wsb{word-spacing:-20.455210px;}
.wsa{word-spacing:-20.443255px;}
.ws9{word-spacing:-20.383480px;}
.ws7{word-spacing:-20.269906px;}
.ws85{word-spacing:-19.941190px;}
.ws12{word-spacing:-17.201246px;}
.ws13{word-spacing:-17.181520px;}
.ws1d{word-spacing:-17.174945px;}
.ws1b{word-spacing:-17.155219px;}
.ws1e{word-spacing:-17.135492px;}
.ws15{word-spacing:-17.096040px;}
.ws18{word-spacing:-17.069738px;}
.ws1a{word-spacing:-17.023711px;}
.ws14{word-spacing:-16.984258px;}
.ws16{word-spacing:-16.971107px;}
.ws17{word-spacing:-16.957957px;}
.ws1c{word-spacing:-16.951381px;}
.ws40{word-spacing:-16.949799px;}
.ws19{word-spacing:-16.859326px;}
.ws39{word-spacing:-16.402466px;}
.ws34{word-spacing:-15.691095px;}
.ws4b{word-spacing:-15.685117px;}
.ws56{word-spacing:-15.679140px;}
.ws74{word-spacing:-15.673162px;}
.ws5a{word-spacing:-15.667185px;}
.ws50{word-spacing:-15.661207px;}
.ws2b{word-spacing:-15.655230px;}
.ws57{word-spacing:-15.649252px;}
.ws32{word-spacing:-15.643275px;}
.ws2c{word-spacing:-15.637297px;}
.ws37{word-spacing:-15.631319px;}
.ws62{word-spacing:-15.619364px;}
.ws49{word-spacing:-15.613387px;}
.ws54{word-spacing:-15.607409px;}
.ws63{word-spacing:-15.601432px;}
.ws28{word-spacing:-15.595454px;}
.ws5e{word-spacing:-15.589476px;}
.ws38{word-spacing:-15.583499px;}
.ws2e{word-spacing:-15.577521px;}
.ws31{word-spacing:-15.571544px;}
.ws78{word-spacing:-15.565566px;}
.ws35{word-spacing:-15.559589px;}
.ws29{word-spacing:-15.553611px;}
.ws22{word-spacing:-15.547634px;}
.ws66{word-spacing:-15.541656px;}
.ws2d{word-spacing:-15.535678px;}
.ws53{word-spacing:-15.529701px;}
.ws25{word-spacing:-15.523723px;}
.ws2a{word-spacing:-15.517746px;}
.ws30{word-spacing:-15.511768px;}
.ws24{word-spacing:-15.505791px;}
.ws5c{word-spacing:-15.499813px;}
.ws70{word-spacing:-15.493836px;}
.ws9d{word-spacing:-15.487858px;}
.ws4e{word-spacing:-15.481880px;}
.ws61{word-spacing:-15.475903px;}
.ws67{word-spacing:-15.469925px;}
.ws64{word-spacing:-15.463948px;}
.ws21{word-spacing:-15.457970px;}
.ws6d{word-spacing:-15.451993px;}
.ws6c{word-spacing:-15.446015px;}
.ws36{word-spacing:-15.434060px;}
.ws4c{word-spacing:-15.428082px;}
.ws4a{word-spacing:-15.422105px;}
.ws59{word-spacing:-15.416127px;}
.ws68{word-spacing:-15.404172px;}
.ws75{word-spacing:-15.398195px;}
.ws73{word-spacing:-15.392217px;}
.ws5b{word-spacing:-15.386239px;}
.ws8d{word-spacing:-15.380262px;}
.ws2f{word-spacing:-15.374284px;}
.ws4d{word-spacing:-15.368307px;}
.ws5d{word-spacing:-15.362329px;}
.ws69{word-spacing:-15.356352px;}
.ws79{word-spacing:-15.350374px;}
.ws8c{word-spacing:-15.344397px;}
.ws52{word-spacing:-15.338419px;}
.ws60{word-spacing:-15.332441px;}
.ws33{word-spacing:-15.326464px;}
.ws71{word-spacing:-15.320486px;}
.ws27{word-spacing:-15.302554px;}
.ws72{word-spacing:-15.296576px;}
.ws23{word-spacing:-15.290598px;}
.ws58{word-spacing:-15.284621px;}
.ws55{word-spacing:-15.272666px;}
.ws26{word-spacing:-15.254733px;}
.ws20{word-spacing:-15.242778px;}
.ws7a{word-spacing:-15.171047px;}
.ws6b{word-spacing:-15.063451px;}
.ws77{word-spacing:-15.051496px;}
.ws8a{word-spacing:-13.043036px;}
.ws6a{word-spacing:-12.917507px;}
.wsb3{word-spacing:-12.610292px;}
.wsce{word-spacing:-12.600728px;}
.ws8f{word-spacing:-12.595946px;}
.wsb2{word-spacing:-12.591164px;}
.wsb6{word-spacing:-12.562472px;}
.ws89{word-spacing:-12.557690px;}
.wsbd{word-spacing:-12.552908px;}
.wsd6{word-spacing:-12.548125px;}
.wsa7{word-spacing:-12.533779px;}
.wsb0{word-spacing:-12.524215px;}
.ws84{word-spacing:-12.519433px;}
.ws90{word-spacing:-12.514651px;}
.wsc{word-spacing:-12.509869px;}
.wsa8{word-spacing:-12.500305px;}
.wsdc{word-spacing:-12.490741px;}
.wse{word-spacing:-12.485959px;}
.wscc{word-spacing:-12.476395px;}
.wsac{word-spacing:-12.462048px;}
.ws11{word-spacing:-12.452484px;}
.ws8e{word-spacing:-12.447702px;}
.wsc3{word-spacing:-12.442920px;}
.wsa5{word-spacing:-12.433356px;}
.ws47{word-spacing:-12.428574px;}
.wse0{word-spacing:-12.423792px;}
.ws7f{word-spacing:-12.419010px;}
.ws3b{word-spacing:-12.418381px;}
.ws9a{word-spacing:-12.414228px;}
.wsd8{word-spacing:-12.409446px;}
.wscd{word-spacing:-12.404664px;}
.wsd5{word-spacing:-12.399882px;}
.ws86{word-spacing:-12.390317px;}
.wsdb{word-spacing:-12.385535px;}
.ws88{word-spacing:-12.380753px;}
.ws92{word-spacing:-12.375971px;}
.ws7c{word-spacing:-12.371189px;}
.ws48{word-spacing:-12.356843px;}
.ws87{word-spacing:-12.342497px;}
.wsab{word-spacing:-12.337715px;}
.ws6e{word-spacing:-12.332933px;}
.ws81{word-spacing:-12.328151px;}
.wsc5{word-spacing:-12.309022px;}
.ws9b{word-spacing:-12.304240px;}
.wsa2{word-spacing:-12.285112px;}
.ws7b{word-spacing:-12.280330px;}
.wsbc{word-spacing:-12.270766px;}
.wsd3{word-spacing:-12.265984px;}
.wsd1{word-spacing:-12.256420px;}
.wsb9{word-spacing:-12.251638px;}
.wsd7{word-spacing:-12.246856px;}
.wsad{word-spacing:-12.242074px;}
.wsaf{word-spacing:-12.213381px;}
.wsca{word-spacing:-12.208599px;}
.wsc6{word-spacing:-12.199035px;}
.wsa9{word-spacing:-12.184689px;}
.wsd{word-spacing:-12.170343px;}
.ws7d{word-spacing:-12.160779px;}
.wsc9{word-spacing:-12.146432px;}
.ws1{word-spacing:-11.676000px;}
.ws41{word-spacing:-10.738937px;}
.ws3a{word-spacing:-10.730808px;}
.ws43{word-spacing:-10.710484px;}
.ws45{word-spacing:-10.633255px;}
.ws3d{word-spacing:-10.625126px;}
.ws46{word-spacing:-10.616996px;}
.ws3c{word-spacing:-10.608867px;}
.ws3e{word-spacing:-10.564155px;}
.ws42{word-spacing:-10.556026px;}
.ws3f{word-spacing:-10.499120px;}
.ws44{word-spacing:-10.421891px;}
.ws97{word-spacing:-8.186887px;}
.ws82{word-spacing:-8.100810px;}
.ws80{word-spacing:-8.019515px;}
.ws98{word-spacing:-7.928655px;}
.ws93{word-spacing:-7.856925px;}
.ws7e{word-spacing:-7.785194px;}
.ws8b{word-spacing:-5.535221px;}
.ws2{word-spacing:0.000000px;}
.ws94{word-spacing:172.756700px;}
.ws95{word-spacing:220.998121px;}
.ws96{word-spacing:246.869065px;}
.ws99{word-spacing:310.188322px;}
.ws5{word-spacing:1045.463521px;}
.ws0{word-spacing:1714.980000px;}
._3{width:6.690102px;}
._2{width:8.808555px;}
._6{width:10.293812px;}
._4{width:11.303113px;}
._7{width:12.397006px;}
._5{width:13.696558px;}
._1b{width:15.140002px;}
._1{width:18.076262px;}
._12{width:119.575410px;}
._9{width:126.423320px;}
._17{width:164.918903px;}
._13{width:167.156907px;}
._14{width:175.731141px;}
._c{width:177.433554px;}
._15{width:196.370512px;}
._a{width:207.938315px;}
._d{width:224.017278px;}
._18{width:235.607314px;}
._16{width:243.422877px;}
._e{width:248.069363px;}
._f{width:260.695678px;}
._11{width:275.365361px;}
._b{width:308.305867px;}
._10{width:355.091865px;}
._19{width:363.594368px;}
._1a{width:368.926365px;}
._0{width:473.820000px;}
._8{width:1638.501128px;}
.fc5{color:rgb(217,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(0,138,209);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:27.094800px;}
.fsf{font-size:29.887800px;}
.fs12{font-size:31.875600px;}
.fs6{font-size:33.600000px;}
.fsa{font-size:34.864200px;}
.fs11{font-size:39.846000px;}
.fs10{font-size:40.647000px;}
.fs5{font-size:42.000000px;}
.fs7{font-size:47.820600px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:49.072383px;}
.fsb{font-size:52.303800px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:59.775600px;}
.fsd{font-size:65.754000px;}
.fse{font-size:71.730600px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.fs9{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y98{bottom:39.968400px;}
.y15{bottom:58.200000px;}
.y5c{bottom:63.439350px;}
.ycf{bottom:76.451531px;}
.y97{bottom:76.452625px;}
.y102{bottom:76.453535px;}
.y126{bottom:77.896960px;}
.y15d{bottom:84.194713px;}
.yce{bottom:95.159800px;}
.y101{bottom:95.332164px;}
.y96{bottom:95.586795px;}
.y125{bottom:97.457031px;}
.y15c{bottom:99.161365px;}
.ycd{bottom:113.869563px;}
.y100{bottom:114.040432px;}
.y15b{bottom:114.128018px;}
.y95{bottom:114.634290px;}
.y124{bottom:117.015607px;}
.y45{bottom:124.584404px;}
.y15a{bottom:129.009788px;}
.ycc{bottom:132.492651px;}
.yff{bottom:132.919061px;}
.y94{bottom:133.768460px;}
.y123{bottom:136.574184px;}
.y159{bottom:143.976441px;}
.ye0{bottom:144.056550px;}
.y44{bottom:144.142980px;}
.ycb{bottom:151.200919px;}
.yfe{bottom:151.799184px;}
.y93{bottom:152.476728px;}
.y122{bottom:156.132760px;}
.y158{bottom:158.943093px;}
.y43{bottom:163.703051px;}
.yca{bottom:169.909188px;}
.yfd{bottom:170.761499px;}
.y92{bottom:171.610898px;}
.y157{bottom:173.909745px;}
.y121{bottom:175.778011px;}
.y42{bottom:183.261627px;}
.yc9{bottom:188.617456px;}
.y156{bottom:188.791516px;}
.yfc{bottom:189.386081px;}
.y91{bottom:190.659887px;}
.y120{bottom:194.401099px;}
.y41{bottom:202.820204px;}
.y155{bottom:203.758168px;}
.yc8{bottom:207.327219px;}
.yfb{bottom:208.349891px;}
.y90{bottom:209.794056px;}
.y11f{bottom:213.959675px;}
.y154{bottom:218.724821px;}
.y40{bottom:222.463960px;}
.yc7{bottom:225.950307px;}
.yfa{bottom:226.972979px;}
.y8f{bottom:228.502325px;}
.y11e{bottom:233.603432px;}
.y153{bottom:233.692668px;}
.y3f{bottom:241.088543px;}
.yc6{bottom:244.658575px;}
.yf9{bottom:245.936788px;}
.y8e{bottom:247.635000px;}
.y8c{bottom:247.635496px;}
.y152{bottom:248.573244px;}
.y11d{bottom:253.163503px;}
.y8d{bottom:254.268000px;}
.y3e{bottom:260.732299px;}
.yc5{bottom:263.366844px;}
.y151{bottom:263.541091px;}
.yf8{bottom:264.815417px;}
.y8b{bottom:266.684486px;}
.y11c{bottom:272.722079px;}
.y150{bottom:278.507744px;}
.y3d{bottom:280.290876px;}
.yc4{bottom:282.076607px;}
.yf7{bottom:283.694046px;}
.y8a{bottom:285.818655px;}
.y11b{bottom:292.280655px;}
.y14f{bottom:293.389514px;}
.y3c{bottom:299.849452px;}
.yc3{bottom:300.784875px;}
.yf6{bottom:302.402314px;}
.y89{bottom:304.952825px;}
.y14e{bottom:308.356167px;}
.y11a{bottom:310.988924px;}
.yc2{bottom:319.407963px;}
.y3b{bottom:319.409523px;}
.yf5{bottom:321.280943px;}
.y14d{bottom:323.322819px;}
.y88{bottom:324.085500px;}
.y119{bottom:330.547500px;}
.y117{bottom:330.549091px;}
.y118{bottom:337.180500px;}
.yc1{bottom:338.116232px;}
.y14c{bottom:338.289471px;}
.y3a{bottom:338.968099px;}
.yf4{bottom:340.159572px;}
.y116{bottom:350.107667px;}
.y14b{bottom:353.171242px;}
.yc0{bottom:356.824500px;}
.ybe{bottom:356.826695px;}
.y39{bottom:357.676367px;}
.yf3{bottom:358.867840px;}
.y87{bottom:361.417500px;}
.ybf{bottom:363.457500px;}
.y14a{bottom:368.137894px;}
.y115{bottom:369.751424px;}
.ybd{bottom:375.534963px;}
.y38{bottom:377.234944px;}
.yf2{bottom:377.746469px;}
.y149{bottom:383.104546px;}
.y114{bottom:389.310000px;}
.ybc{bottom:394.243232px;}
.yf1{bottom:396.710278px;}
.y37{bottom:396.795014px;}
.y148{bottom:398.071199px;}
.ybb{bottom:412.951500px;}
.yb9{bottom:412.952800px;}
.y147{bottom:412.952969px;}
.yf0{bottom:415.588907px;}
.y86{bottom:415.674706px;}
.y36{bottom:416.438771px;}
.yba{bottom:419.584500px;}
.y113{bottom:426.642000px;}
.y146{bottom:427.919622px;}
.yb8{bottom:431.577382px;}
.yef{bottom:434.467536px;}
.y85{bottom:434.808876px;}
.y35{bottom:435.997347px;}
.y145{bottom:442.887470px;}
.yb7{bottom:450.285651px;}
.yee{bottom:453.346165px;}
.y84{bottom:453.941551px;}
.y34{bottom:455.555924px;}
.y144{bottom:457.769240px;}
.yb6{bottom:468.993919px;}
.yed{bottom:472.309974px;}
.y143{bottom:472.735893px;}
.y83{bottom:473.075721px;}
.y33{bottom:475.114500px;}
.yb5{bottom:487.702188px;}
.y142{bottom:487.702545px;}
.y112{bottom:490.166924px;}
.yec{bottom:490.934556px;}
.y82{bottom:492.124710px;}
.y141{bottom:502.669197px;}
.yb4{bottom:506.410456px;}
.y111{bottom:509.725500px;}
.yeb{bottom:509.896871px;}
.y81{bottom:510.832978px;}
.y32{bottom:512.532000px;}
.y140{bottom:517.550968px;}
.yb3{bottom:525.035039px;}
.yea{bottom:528.775500px;}
.ye8{bottom:528.776278px;}
.y80{bottom:529.967148px;}
.y13f{bottom:532.517620px;}
.ye9{bottom:535.407000px;}
.yb2{bottom:543.743307px;}
.y13e{bottom:547.484272px;}
.ye7{bottom:547.654907px;}
.y7f{bottom:549.101318px;}
.y31{bottom:557.944671px;}
.y129{bottom:561.260421px;}
.y13d{bottom:562.450925px;}
.yb1{bottom:562.451575px;}
.ye6{bottom:566.533536px;}
.y7e{bottom:568.150307px;}
.y128{bottom:574.780500px;}
.y184{bottom:577.083172px;}
.y13c{bottom:577.332695px;}
.y30{bottom:578.098272px;}
.yb0{bottom:581.159844px;}
.ye5{bottom:585.497345px;}
.y7d{bottom:587.282982px;}
.y183{bottom:591.964942px;}
.y13b{bottom:592.299348px;}
.y2f{bottom:598.253517px;}
.yaf{bottom:599.869607px;}
.ye4{bottom:604.375974px;}
.y7c{bottom:606.417152px;}
.y182{bottom:606.932790px;}
.y13a{bottom:607.266000px;}
.y2e{bottom:618.407118px;}
.yae{bottom:618.492695px;}
.y181{bottom:621.899442px;}
.ye3{bottom:623.084242px;}
.y7b{bottom:625.551321px;}
.y139{bottom:635.668500px;}
.y180{bottom:636.866095px;}
.yad{bottom:637.200963px;}
.y2d{bottom:638.646199px;}
.ye2{bottom:641.962871px;}
.y7a{bottom:644.683996px;}
.y17f{bottom:651.747865px;}
.yac{bottom:655.909232px;}
.y2c{bottom:658.801444px;}
.ye1{bottom:660.841500px;}
.y79{bottom:663.732986px;}
.y17e{bottom:666.714518px;}
.ydf{bottom:669.516016px;}
.yab{bottom:674.617500px;}
.ya9{bottom:674.619375px;}
.y138{bottom:678.699000px;}
.y2b{bottom:678.955045px;}
.yaa{bottom:681.250500px;}
.y17d{bottom:681.681170px;}
.y78{bottom:682.867155px;}
.yde{bottom:682.952409px;}
.ya8{bottom:693.327643px;}
.ydd{bottom:696.388802px;}
.y17c{bottom:696.647822px;}
.y2a{bottom:699.110290px;}
.y77{bottom:702.001325px;}
.ydc{bottom:709.824000px;}
.yda{bottom:709.824302px;}
.y17b{bottom:711.529593px;}
.ya7{bottom:712.035912px;}
.ydb{bottom:715.180500px;}
.y137{bottom:716.031000px;}
.y29{bottom:719.349371px;}
.y110{bottom:719.859000px;}
.y76{bottom:721.134000px;}
.y74{bottom:721.136956px;}
.yd9{bottom:723.259500px;}
.y5b{bottom:725.896904px;}
.y17a{bottom:726.496245px;}
.y75{bottom:727.767000px;}
.ya6{bottom:730.659000px;}
.y10f{bottom:736.270500px;}
.y10d{bottom:736.273419px;}
.y5a{bottom:737.887769px;}
.y28{bottom:739.502972px;}
.y73{bottom:740.185945px;}
.y179{bottom:741.462898px;}
.y10e{bottom:741.628500px;}
.y59{bottom:749.793275px;}
.y10c{bottom:752.685449px;}
.y178{bottom:756.429550px;}
.y72{bottom:759.320115px;}
.y27{bottom:759.658217px;}
.y136{bottom:761.613643px;}
.y58{bottom:761.784140px;}
.ya5{bottom:768.075000px;}
.y10b{bottom:769.182361px;}
.y177{bottom:771.311321px;}
.y57{bottom:773.689646px;}
.y71{bottom:778.028383px;}
.y26{bottom:779.811818px;}
.y135{bottom:780.321912px;}
.y10a{bottom:785.595586px;}
.y56{bottom:785.679495px;}
.y176{bottom:786.279168px;}
.y70{bottom:797.162553px;}
.y134{bottom:798.945000px;}
.y25{bottom:800.050899px;}
.y175{bottom:801.245821px;}
.y109{bottom:802.007616px;}
.y55{bottom:803.282695px;}
.ya4{bottom:813.913926px;}
.y54{bottom:815.273560px;}
.y174{bottom:816.127591px;}
.y6f{bottom:816.210048px;}
.y24{bottom:820.204500px;}
.y53{bottom:827.264425px;}
.y173{bottom:831.094244px;}
.y108{bottom:831.601394px;}
.ya3{bottom:832.622195px;}
.y6e{bottom:835.344217px;}
.y133{bottom:836.362500px;}
.y52{bottom:839.169931px;}
.y172{bottom:846.060896px;}
.y51{bottom:851.159780px;}
.ya2{bottom:851.330463px;}
.y6d{bottom:854.052486px;}
.y107{bottom:857.962500px;}
.y171{bottom:861.027548px;}
.ya1{bottom:870.038732px;}
.y6c{bottom:873.186655px;}
.y23{bottom:873.951166px;}
.y170{bottom:875.909319px;}
.y132{bottom:881.943000px;}
.y50{bottom:887.046000px;}
.y9e{bottom:888.746524px;}
.ya0{bottom:888.747000px;}
.y16f{bottom:890.875971px;}
.y6b{bottom:892.235644px;}
.y9f{bottom:895.380000px;}
.y4f{bottom:898.951500px;}
.y22{bottom:899.377379px;}
.y8{bottom:903.150000px;}
.y16e{bottom:905.842623px;}
.y9d{bottom:907.371107px;}
.y14{bottom:910.260000px;}
.y6a{bottom:911.369814px;}
.y106{bottom:917.149500px;}
.y104{bottom:917.149802px;}
.y4e{bottom:918.424500px;}
.y131{bottom:919.275000px;}
.y21{bottom:920.296500px;}
.y16d{bottom:920.809276px;}
.y13{bottom:922.260000px;}
.y105{bottom:922.507500px;}
.y127{bottom:924.123000px;}
.y20{bottom:924.802500px;}
.y9c{bottom:926.079375px;}
.y4d{bottom:930.330000px;}
.y69{bottom:930.502489px;}
.y103{bottom:930.585000px;}
.y7{bottom:932.250000px;}
.y12{bottom:934.260000px;}
.y1f{bottom:935.263500px;}
.y16c{bottom:935.691046px;}
.y1e{bottom:939.769500px;}
.y9b{bottom:944.787643px;}
.y11{bottom:946.260000px;}
.y68{bottom:949.636659px;}
.y4c{bottom:949.804500px;}
.y1d{bottom:950.230500px;}
.y16b{bottom:950.657699px;}
.y1c{bottom:954.736500px;}
.y10{bottom:958.260000px;}
.y4b{bottom:961.710000px;}
.y9a{bottom:963.495912px;}
.y130{bottom:964.857000px;}
.y16a{bottom:965.625547px;}
.y67{bottom:968.685648px;}
.y1a{bottom:969.619500px;}
.y6{bottom:972.630000px;}
.y1b{bottom:975.402000px;}
.y169{bottom:980.506122px;}
.y4a{bottom:981.184500px;}
.yf{bottom:981.510000px;}
.y99{bottom:982.119000px;}
.y66{bottom:987.819818px;}
.y49{bottom:993.090000px;}
.ye{bottom:993.510000px;}
.y168{bottom:995.473970px;}
.y12f{bottom:1002.189000px;}
.yd{bottom:1005.510000px;}
.y65{bottom:1006.952493px;}
.y19{bottom:1010.013583px;}
.y167{bottom:1010.440622px;}
.y5{bottom:1011.165000px;}
.y166{bottom:1025.407274px;}
.y64{bottom:1026.086662px;}
.yc{bottom:1028.760000px;}
.y48{bottom:1028.806500px;}
.y4{bottom:1039.965000px;}
.y165{bottom:1040.289045px;}
.yb{bottom:1040.760000px;}
.yd8{bottom:1041.136500px;}
.yd6{bottom:1041.139419px;}
.y18{bottom:1041.391500px;}
.y63{bottom:1045.220832px;}
.yd7{bottom:1046.494500px;}
.y12e{bottom:1047.771107px;}
.y47{bottom:1051.596855px;}
.ya{bottom:1052.760000px;}
.y164{bottom:1055.255697px;}
.yd5{bottom:1057.551449px;}
.y62{bottom:1064.269821px;}
.y12d{bottom:1066.479375px;}
.y163{bottom:1070.222349px;}
.yd4{bottom:1074.048361px;}
.y46{bottom:1076.598000px;}
.y9{bottom:1078.260000px;}
.y3{bottom:1081.485000px;}
.y17{bottom:1081.701000px;}
.y61{bottom:1083.402496px;}
.y12c{bottom:1085.187643px;}
.y162{bottom:1085.189002px;}
.yd3{bottom:1090.461586px;}
.y161{bottom:1100.070772px;}
.y60{bottom:1102.536666px;}
.y12b{bottom:1103.810732px;}
.yd2{bottom:1106.873616px;}
.y160{bottom:1115.037425px;}
.y5f{bottom:1121.670836px;}
.y12a{bottom:1122.519000px;}
.y15f{bottom:1130.004077px;}
.yd1{bottom:1136.467394px;}
.y5e{bottom:1140.719825px;}
.y15e{bottom:1144.885848px;}
.y5d{bottom:1159.852500px;}
.yd0{bottom:1162.828500px;}
.y2{bottom:1169.970000px;}
.y1{bottom:1191.570000px;}
.y16{bottom:1212.151500px;}
.h11{height:18.261895px;}
.hf{height:19.237308px;}
.h17{height:20.921460px;}
.h1e{height:23.811073px;}
.he{height:24.753582px;}
.h19{height:28.290660px;}
.h18{height:28.859370px;}
.h1a{height:29.764962px;}
.h16{height:33.474420px;}
.h10{height:33.952626px;}
.ha{height:34.526473px;}
.h1d{height:35.721988px;}
.h5{height:36.000000px;}
.h6{height:36.804287px;}
.hb{height:41.842920px;}
.hd{height:42.201574px;}
.h15{height:42.440676px;}
.h1b{height:43.157983px;}
.h8{height:43.804688px;}
.h1c{height:44.652373px;}
.h12{height:46.685340px;}
.h13{height:49.118238px;}
.h7{height:50.062500px;}
.h14{height:50.928726px;}
.h3{height:56.320312px;}
.h4{height:72.000000px;}
.h1{height:75.093750px;}
.hc{height:75.317760px;}
.h2{height:75.682500px;}
.h9{height:1262.835000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.w1{width:892.914000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:58.500000px;}
.x19{left:63.694978px;}
.x18{left:85.039350px;}
.xa{left:178.837500px;}
.x36{left:184.705500px;}
.x16{left:190.659000px;}
.x2a{left:193.635000px;}
.x17{left:201.117041px;}
.x37{left:203.668759px;}
.x2{left:217.050000px;}
.x9{left:219.780000px;}
.x3{left:239.715000px;}
.xb{left:242.617500px;}
.xc{left:263.196000px;}
.x25{left:265.833000px;}
.x4{left:273.045000px;}
.x26{left:282.330000px;}
.x1e{left:315.751500px;}
.x2b{left:325.785000px;}
.x1f{left:332.248500px;}
.x2e{left:335.055000px;}
.x2c{left:339.052500px;}
.x21{left:351.723000px;}
.xd{left:364.308000px;}
.xe{left:369.070500px;}
.x5{left:381.675000px;}
.x20{left:442.714500px;}
.xf{left:451.644000px;}
.x10{left:456.406500px;}
.x22{left:464.824500px;}
.x23{left:478.941000px;}
.x2f{left:485.064000px;}
.x27{left:524.352000px;}
.x30{left:526.224000px;}
.x11{left:533.877000px;}
.x12{left:538.639500px;}
.x28{left:570.358500px;}
.x31{left:573.336000px;}
.x13{left:590.683500px;}
.x14{left:600.292500px;}
.x2d{left:603.949500px;}
.x6{left:605.490000px;}
.x32{left:614.494500px;}
.x8{left:627.990000px;}
.x7{left:634.410000px;}
.x29{left:640.686000px;}
.x33{left:661.690500px;}
.x34{left:666.708000px;}
.x15{left:679.125000px;}
.x35{left:683.206500px;}
.x1a{left:691.369500px;}
.x1b{left:699.703500px;}
.x1c{left:704.976000px;}
.x24{left:716.967000px;}
.x1d{left:721.474500px;}
@media print{
.v2{vertical-align:-14.933333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.773333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.034133pt;}
.ls12{letter-spacing:0.642920pt;}
.ls15{letter-spacing:0.648233pt;}
.ls1e{letter-spacing:0.802321pt;}
.ls9{letter-spacing:1.859685pt;}
.lsb{letter-spacing:2.178489pt;}
.lsa{letter-spacing:5.780907pt;}
.ls27{letter-spacing:6.686383pt;}
.ls1c{letter-spacing:6.694884pt;}
.ls2b{letter-spacing:6.711887pt;}
.ls26{letter-spacing:6.779898pt;}
.ls2{letter-spacing:6.788400pt;}
.ls1b{letter-spacing:6.877665pt;}
.ls1a{letter-spacing:6.945676pt;}
.ls19{letter-spacing:6.975432pt;}
.ls2a{letter-spacing:6.988184pt;}
.lse{letter-spacing:8.246376pt;}
.ls6{letter-spacing:8.347330pt;}
.ls22{letter-spacing:8.363271pt;}
.ls10{letter-spacing:8.379211pt;}
.ls8{letter-spacing:8.400464pt;}
.ls18{letter-spacing:8.448285pt;}
.ls7{letter-spacing:8.453598pt;}
.ls16{letter-spacing:8.458912pt;}
.lsf{letter-spacing:8.501419pt;}
.lsd{letter-spacing:8.512045pt;}
.ls1d{letter-spacing:8.517359pt;}
.lsc{letter-spacing:8.543926pt;}
.ls11{letter-spacing:8.549239pt;}
.ls23{letter-spacing:8.559866pt;}
.ls14{letter-spacing:8.575806pt;}
.ls17{letter-spacing:8.591746pt;}
.ls24{letter-spacing:8.602373pt;}
.ls5{letter-spacing:8.650193pt;}
.ls4{letter-spacing:8.655507pt;}
.ls21{letter-spacing:8.708641pt;}
.ls1f{letter-spacing:8.713954pt;}
.ls3{letter-spacing:9.410128pt;}
.ls20{letter-spacing:10.477999pt;}
.ls13{letter-spacing:10.669280pt;}
.ls28{letter-spacing:18.562894pt;}
.ls29{letter-spacing:18.567145pt;}
.ls25{letter-spacing:18.711669pt;}
.ws65{word-spacing:-46.028729pt;}
.ws1f{word-spacing:-46.003225pt;}
.wsa1{word-spacing:-45.996849pt;}
.ws9e{word-spacing:-45.882080pt;}
.ws9f{word-spacing:-45.780063pt;}
.wsa0{word-spacing:-45.722678pt;}
.ws9c{word-spacing:-38.357338pt;}
.wsc7{word-spacing:-33.070602pt;}
.ws4f{word-spacing:-33.033325pt;}
.ws51{word-spacing:-32.879237pt;}
.ws6{word-spacing:-32.709427pt;}
.ws5f{word-spacing:-32.682641pt;}
.ws91{word-spacing:-30.766711pt;}
.ws10{word-spacing:-30.639190pt;}
.wsf{word-spacing:-30.630688pt;}
.ws4{word-spacing:-30.600933pt;}
.wsa4{word-spacing:-30.566928pt;}
.ws83{word-spacing:-30.464910pt;}
.wsb5{word-spacing:-30.299132pt;}
.wsd4{word-spacing:-30.265126pt;}
.wsc2{word-spacing:-30.260876pt;}
.wscb{word-spacing:-26.545746pt;}
.wsb4{word-spacing:-26.532994pt;}
.wsd0{word-spacing:-26.503239pt;}
.wsc1{word-spacing:-26.486236pt;}
.wsbf{word-spacing:-26.481986pt;}
.ws3{word-spacing:-26.473484pt;}
.wscf{word-spacing:-26.456481pt;}
.wsde{word-spacing:-26.452231pt;}
.wsbb{word-spacing:-26.443729pt;}
.wsc4{word-spacing:-26.439478pt;}
.wsb8{word-spacing:-26.435228pt;}
.wsb7{word-spacing:-26.430977pt;}
.ws6f{word-spacing:-26.426726pt;}
.wsbe{word-spacing:-26.422476pt;}
.wsdd{word-spacing:-26.418225pt;}
.wsd2{word-spacing:-26.405473pt;}
.wsae{word-spacing:-26.388470pt;}
.wsa3{word-spacing:-26.384219pt;}
.wsa6{word-spacing:-26.341712pt;}
.wsb1{word-spacing:-26.303455pt;}
.wsd9{word-spacing:-26.277951pt;}
.wsaa{word-spacing:-26.273700pt;}
.wsc0{word-spacing:-26.269450pt;}
.wsda{word-spacing:-26.256697pt;}
.wsba{word-spacing:-26.235444pt;}
.wsc8{word-spacing:-26.214190pt;}
.wsdf{word-spacing:-26.201438pt;}
.ws76{word-spacing:-22.156822pt;}
.ws8{word-spacing:-19.387275pt;}
.wsb{word-spacing:-18.182409pt;}
.wsa{word-spacing:-18.171782pt;}
.ws9{word-spacing:-18.118649pt;}
.ws7{word-spacing:-18.017694pt;}
.ws85{word-spacing:-17.725502pt;}
.ws12{word-spacing:-15.289997pt;}
.ws13{word-spacing:-15.272462pt;}
.ws1d{word-spacing:-15.266618pt;}
.ws1b{word-spacing:-15.249083pt;}
.ws1e{word-spacing:-15.231549pt;}
.ws15{word-spacing:-15.196480pt;}
.ws18{word-spacing:-15.173101pt;}
.ws1a{word-spacing:-15.132187pt;}
.ws14{word-spacing:-15.097118pt;}
.ws16{word-spacing:-15.085429pt;}
.ws17{word-spacing:-15.073739pt;}
.ws1c{word-spacing:-15.067894pt;}
.ws40{word-spacing:-15.066488pt;}
.ws19{word-spacing:-14.986067pt;}
.ws39{word-spacing:-14.579970pt;}
.ws34{word-spacing:-13.947640pt;}
.ws4b{word-spacing:-13.942327pt;}
.ws56{word-spacing:-13.937013pt;}
.ws74{word-spacing:-13.931700pt;}
.ws5a{word-spacing:-13.926386pt;}
.ws50{word-spacing:-13.921073pt;}
.ws2b{word-spacing:-13.915760pt;}
.ws57{word-spacing:-13.910446pt;}
.ws32{word-spacing:-13.905133pt;}
.ws2c{word-spacing:-13.899820pt;}
.ws37{word-spacing:-13.894506pt;}
.ws62{word-spacing:-13.883879pt;}
.ws49{word-spacing:-13.878566pt;}
.ws54{word-spacing:-13.873253pt;}
.ws63{word-spacing:-13.867939pt;}
.ws28{word-spacing:-13.862626pt;}
.ws5e{word-spacing:-13.857312pt;}
.ws38{word-spacing:-13.851999pt;}
.ws2e{word-spacing:-13.846686pt;}
.ws31{word-spacing:-13.841372pt;}
.ws78{word-spacing:-13.836059pt;}
.ws35{word-spacing:-13.830745pt;}
.ws29{word-spacing:-13.825432pt;}
.ws22{word-spacing:-13.820119pt;}
.ws66{word-spacing:-13.814805pt;}
.ws2d{word-spacing:-13.809492pt;}
.ws53{word-spacing:-13.804179pt;}
.ws25{word-spacing:-13.798865pt;}
.ws2a{word-spacing:-13.793552pt;}
.ws30{word-spacing:-13.788238pt;}
.ws24{word-spacing:-13.782925pt;}
.ws5c{word-spacing:-13.777612pt;}
.ws70{word-spacing:-13.772298pt;}
.ws9d{word-spacing:-13.766985pt;}
.ws4e{word-spacing:-13.761671pt;}
.ws61{word-spacing:-13.756358pt;}
.ws67{word-spacing:-13.751045pt;}
.ws64{word-spacing:-13.745731pt;}
.ws21{word-spacing:-13.740418pt;}
.ws6d{word-spacing:-13.735105pt;}
.ws6c{word-spacing:-13.729791pt;}
.ws36{word-spacing:-13.719164pt;}
.ws4c{word-spacing:-13.713851pt;}
.ws4a{word-spacing:-13.708538pt;}
.ws59{word-spacing:-13.703224pt;}
.ws68{word-spacing:-13.692597pt;}
.ws75{word-spacing:-13.687284pt;}
.ws73{word-spacing:-13.681971pt;}
.ws5b{word-spacing:-13.676657pt;}
.ws8d{word-spacing:-13.671344pt;}
.ws2f{word-spacing:-13.666031pt;}
.ws4d{word-spacing:-13.660717pt;}
.ws5d{word-spacing:-13.655404pt;}
.ws69{word-spacing:-13.650090pt;}
.ws79{word-spacing:-13.644777pt;}
.ws8c{word-spacing:-13.639464pt;}
.ws52{word-spacing:-13.634150pt;}
.ws60{word-spacing:-13.628837pt;}
.ws33{word-spacing:-13.623523pt;}
.ws71{word-spacing:-13.618210pt;}
.ws27{word-spacing:-13.602270pt;}
.ws72{word-spacing:-13.596956pt;}
.ws23{word-spacing:-13.591643pt;}
.ws58{word-spacing:-13.586330pt;}
.ws55{word-spacing:-13.575703pt;}
.ws26{word-spacing:-13.559763pt;}
.ws20{word-spacing:-13.549136pt;}
.ws7a{word-spacing:-13.485375pt;}
.ws6b{word-spacing:-13.389734pt;}
.ws77{word-spacing:-13.379108pt;}
.ws8a{word-spacing:-11.593810pt;}
.ws6a{word-spacing:-11.482229pt;}
.wsb3{word-spacing:-11.209149pt;}
.wsce{word-spacing:-11.200647pt;}
.ws8f{word-spacing:-11.196396pt;}
.wsb2{word-spacing:-11.192146pt;}
.wsb6{word-spacing:-11.166641pt;}
.ws89{word-spacing:-11.162391pt;}
.wsbd{word-spacing:-11.158140pt;}
.wsd6{word-spacing:-11.153889pt;}
.wsa7{word-spacing:-11.141137pt;}
.wsb0{word-spacing:-11.132636pt;}
.ws84{word-spacing:-11.128385pt;}
.ws90{word-spacing:-11.124134pt;}
.wsc{word-spacing:-11.119884pt;}
.wsa8{word-spacing:-11.111382pt;}
.wsdc{word-spacing:-11.102881pt;}
.wse{word-spacing:-11.098630pt;}
.wscc{word-spacing:-11.090128pt;}
.wsac{word-spacing:-11.077376pt;}
.ws11{word-spacing:-11.068875pt;}
.ws8e{word-spacing:-11.064624pt;}
.wsc3{word-spacing:-11.060373pt;}
.wsa5{word-spacing:-11.051872pt;}
.ws47{word-spacing:-11.047621pt;}
.wse0{word-spacing:-11.043371pt;}
.ws7f{word-spacing:-11.039120pt;}
.ws3b{word-spacing:-11.038561pt;}
.ws9a{word-spacing:-11.034869pt;}
.wsd8{word-spacing:-11.030618pt;}
.wscd{word-spacing:-11.026368pt;}
.wsd5{word-spacing:-11.022117pt;}
.ws86{word-spacing:-11.013616pt;}
.wsdb{word-spacing:-11.009365pt;}
.ws88{word-spacing:-11.005114pt;}
.ws92{word-spacing:-11.000863pt;}
.ws7c{word-spacing:-10.996613pt;}
.ws48{word-spacing:-10.983860pt;}
.ws87{word-spacing:-10.971108pt;}
.wsab{word-spacing:-10.966858pt;}
.ws6e{word-spacing:-10.962607pt;}
.ws81{word-spacing:-10.958356pt;}
.wsc5{word-spacing:-10.941353pt;}
.ws9b{word-spacing:-10.937103pt;}
.wsa2{word-spacing:-10.920100pt;}
.ws7b{word-spacing:-10.915849pt;}
.wsbc{word-spacing:-10.907348pt;}
.wsd3{word-spacing:-10.903097pt;}
.wsd1{word-spacing:-10.894595pt;}
.wsb9{word-spacing:-10.890345pt;}
.wsd7{word-spacing:-10.886094pt;}
.wsad{word-spacing:-10.881843pt;}
.wsaf{word-spacing:-10.856339pt;}
.wsca{word-spacing:-10.852088pt;}
.wsc6{word-spacing:-10.843587pt;}
.wsa9{word-spacing:-10.830835pt;}
.wsd{word-spacing:-10.818082pt;}
.ws7d{word-spacing:-10.809581pt;}
.wsc9{word-spacing:-10.796829pt;}
.ws1{word-spacing:-10.378667pt;}
.ws41{word-spacing:-9.545722pt;}
.ws3a{word-spacing:-9.538496pt;}
.ws43{word-spacing:-9.520431pt;}
.ws45{word-spacing:-9.451782pt;}
.ws3d{word-spacing:-9.444556pt;}
.ws46{word-spacing:-9.437330pt;}
.ws3c{word-spacing:-9.430104pt;}
.ws3e{word-spacing:-9.390360pt;}
.ws42{word-spacing:-9.383134pt;}
.ws3f{word-spacing:-9.332551pt;}
.ws44{word-spacing:-9.263903pt;}
.ws97{word-spacing:-7.277233pt;}
.ws82{word-spacing:-7.200720pt;}
.ws80{word-spacing:-7.128457pt;}
.ws98{word-spacing:-7.047694pt;}
.ws93{word-spacing:-6.983933pt;}
.ws7e{word-spacing:-6.920172pt;}
.ws8b{word-spacing:-4.920196pt;}
.ws2{word-spacing:0.000000pt;}
.ws94{word-spacing:153.561511pt;}
.ws95{word-spacing:196.442774pt;}
.ws96{word-spacing:219.439169pt;}
.ws99{word-spacing:275.722953pt;}
.ws5{word-spacing:929.300908pt;}
.ws0{word-spacing:1524.426667pt;}
._3{width:5.946757pt;}
._2{width:7.829826pt;}
._6{width:9.150055pt;}
._4{width:10.047211pt;}
._7{width:11.019561pt;}
._5{width:12.174718pt;}
._1b{width:13.457780pt;}
._1{width:16.067789pt;}
._12{width:106.289254pt;}
._9{width:112.376285pt;}
._17{width:146.594581pt;}
._13{width:148.583918pt;}
._14{width:156.205459pt;}
._c{width:157.718715pt;}
._15{width:174.551566pt;}
._a{width:184.834058pt;}
._d{width:199.126469pt;}
._18{width:209.428724pt;}
._16{width:216.375891pt;}
._e{width:220.506100pt;}
._f{width:231.729492pt;}
._11{width:244.769210pt;}
._b{width:274.049660pt;}
._10{width:315.637214pt;}
._19{width:323.194994pt;}
._1a{width:327.934547pt;}
._0{width:421.173333pt;}
._8{width:1456.445447pt;}
.fsc{font-size:24.084267pt;}
.fsf{font-size:26.566933pt;}
.fs12{font-size:28.333867pt;}
.fs6{font-size:29.866667pt;}
.fsa{font-size:30.990400pt;}
.fs11{font-size:35.418667pt;}
.fs10{font-size:36.130667pt;}
.fs5{font-size:37.333333pt;}
.fs7{font-size:42.507200pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:43.619896pt;}
.fsb{font-size:46.492267pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:53.133867pt;}
.fsd{font-size:58.448000pt;}
.fse{font-size:63.760533pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.fs9{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:35.527467pt;}
.y15{bottom:51.733333pt;}
.y5c{bottom:56.390533pt;}
.ycf{bottom:67.956917pt;}
.y97{bottom:67.957889pt;}
.y102{bottom:67.958698pt;}
.y126{bottom:69.241742pt;}
.y15d{bottom:74.839745pt;}
.yce{bottom:84.586489pt;}
.y101{bottom:84.739701pt;}
.y96{bottom:84.966040pt;}
.y125{bottom:86.628472pt;}
.y15c{bottom:88.143436pt;}
.ycd{bottom:101.217389pt;}
.y100{bottom:101.369273pt;}
.y15b{bottom:101.447127pt;}
.y95{bottom:101.897147pt;}
.y124{bottom:104.013873pt;}
.y45{bottom:110.741692pt;}
.y15a{bottom:114.675367pt;}
.ycc{bottom:117.771245pt;}
.yff{bottom:118.150276pt;}
.y94{bottom:118.905297pt;}
.y123{bottom:121.399274pt;}
.y159{bottom:127.979058pt;}
.ye0{bottom:128.050267pt;}
.y44{bottom:128.127094pt;}
.ycb{bottom:134.400817pt;}
.yfe{bottom:134.932608pt;}
.y93{bottom:135.534869pt;}
.y122{bottom:138.784675pt;}
.y158{bottom:141.282749pt;}
.y43{bottom:145.513823pt;}
.yca{bottom:151.030389pt;}
.yfd{bottom:151.787999pt;}
.y92{bottom:152.543020pt;}
.y157{bottom:154.586440pt;}
.y121{bottom:156.247121pt;}
.y42{bottom:162.899224pt;}
.yc9{bottom:167.659961pt;}
.y156{bottom:167.814681pt;}
.yfc{bottom:168.343184pt;}
.y91{bottom:169.475455pt;}
.y120{bottom:172.800977pt;}
.y41{bottom:180.284626pt;}
.y155{bottom:181.118372pt;}
.yc8{bottom:184.290861pt;}
.yfb{bottom:185.199903pt;}
.y90{bottom:186.483606pt;}
.y11f{bottom:190.186378pt;}
.y154{bottom:194.422063pt;}
.y40{bottom:197.745742pt;}
.yc7{bottom:200.844717pt;}
.yfa{bottom:201.753759pt;}
.y8f{bottom:203.113178pt;}
.y11e{bottom:207.647495pt;}
.y153{bottom:207.726816pt;}
.y3f{bottom:214.300927pt;}
.yc6{bottom:217.474289pt;}
.yf9{bottom:218.610478pt;}
.y8e{bottom:220.120000pt;}
.y8c{bottom:220.120441pt;}
.y152{bottom:220.953994pt;}
.y11d{bottom:225.034225pt;}
.y8d{bottom:226.016000pt;}
.y3e{bottom:231.762044pt;}
.yc5{bottom:234.103861pt;}
.y151{bottom:234.258748pt;}
.yf8{bottom:235.391482pt;}
.y8b{bottom:237.052876pt;}
.y11c{bottom:242.419626pt;}
.y150{bottom:247.562439pt;}
.y3d{bottom:249.147445pt;}
.yc4{bottom:250.734761pt;}
.yf7{bottom:252.172485pt;}
.y8a{bottom:254.061027pt;}
.y11b{bottom:259.805027pt;}
.y14f{bottom:260.790679pt;}
.y3c{bottom:266.532846pt;}
.yc3{bottom:267.364333pt;}
.yf6{bottom:268.802057pt;}
.y89{bottom:271.069178pt;}
.y14e{bottom:274.094370pt;}
.y11a{bottom:276.434599pt;}
.yc2{bottom:283.918189pt;}
.y3b{bottom:283.919576pt;}
.yf5{bottom:285.583060pt;}
.y14d{bottom:287.398061pt;}
.y88{bottom:288.076000pt;}
.y119{bottom:293.820000pt;}
.y117{bottom:293.821414pt;}
.y118{bottom:299.716000pt;}
.yc1{bottom:300.547761pt;}
.y14c{bottom:300.701752pt;}
.y3a{bottom:301.304977pt;}
.yf4{bottom:302.364064pt;}
.y116{bottom:311.206815pt;}
.y14b{bottom:313.929993pt;}
.yc0{bottom:317.177333pt;}
.ybe{bottom:317.179284pt;}
.y39{bottom:317.934549pt;}
.yf3{bottom:318.993636pt;}
.y87{bottom:321.260000pt;}
.ybf{bottom:323.073333pt;}
.y14a{bottom:327.233684pt;}
.y115{bottom:328.667932pt;}
.ybd{bottom:333.808856pt;}
.y38{bottom:335.319950pt;}
.yf2{bottom:335.774639pt;}
.y149{bottom:340.537375pt;}
.y114{bottom:346.053333pt;}
.ybc{bottom:350.438428pt;}
.yf1{bottom:352.631358pt;}
.y37{bottom:352.706680pt;}
.y148{bottom:353.841066pt;}
.ybb{bottom:367.068000pt;}
.yb9{bottom:367.069155pt;}
.y147{bottom:367.069306pt;}
.yf0{bottom:369.412362pt;}
.y86{bottom:369.488628pt;}
.y36{bottom:370.167796pt;}
.yba{bottom:372.964000pt;}
.y113{bottom:379.237333pt;}
.y146{bottom:380.372997pt;}
.yb8{bottom:383.624340pt;}
.yef{bottom:386.193365pt;}
.y85{bottom:386.496779pt;}
.y35{bottom:387.553198pt;}
.y145{bottom:393.677751pt;}
.yb7{bottom:400.253912pt;}
.yee{bottom:402.974369pt;}
.y84{bottom:403.503601pt;}
.y34{bottom:404.938599pt;}
.y144{bottom:406.905991pt;}
.yb6{bottom:416.883484pt;}
.yed{bottom:419.831088pt;}
.y143{bottom:420.209682pt;}
.y83{bottom:420.511752pt;}
.y33{bottom:422.324000pt;}
.yb5{bottom:433.513056pt;}
.y142{bottom:433.513373pt;}
.y112{bottom:435.703932pt;}
.yec{bottom:436.386272pt;}
.y82{bottom:437.444187pt;}
.y141{bottom:446.817064pt;}
.yb4{bottom:450.142628pt;}
.y111{bottom:453.089333pt;}
.yeb{bottom:453.241663pt;}
.y81{bottom:454.073759pt;}
.y32{bottom:455.584000pt;}
.y140{bottom:460.045305pt;}
.yb3{bottom:466.697812pt;}
.yea{bottom:470.022667pt;}
.ye8{bottom:470.023358pt;}
.y80{bottom:471.081909pt;}
.y13f{bottom:473.348996pt;}
.ye9{bottom:475.917333pt;}
.yb2{bottom:483.327384pt;}
.y13e{bottom:486.652687pt;}
.ye7{bottom:486.804362pt;}
.y7f{bottom:488.090060pt;}
.y31{bottom:495.950819pt;}
.y129{bottom:498.898152pt;}
.y13d{bottom:499.956378pt;}
.yb1{bottom:499.956956pt;}
.ye6{bottom:503.585365pt;}
.y7e{bottom:505.022495pt;}
.y128{bottom:510.916000pt;}
.y184{bottom:512.962819pt;}
.y13c{bottom:513.184618pt;}
.y30{bottom:513.865131pt;}
.yb0{bottom:516.586528pt;}
.ye5{bottom:520.442084pt;}
.y7d{bottom:522.029317pt;}
.y183{bottom:526.191060pt;}
.y13b{bottom:526.488309pt;}
.y2f{bottom:531.780904pt;}
.yaf{bottom:533.217428pt;}
.ye4{bottom:537.223088pt;}
.y7c{bottom:539.037468pt;}
.y182{bottom:539.495813pt;}
.y13a{bottom:539.792000pt;}
.y2e{bottom:549.695216pt;}
.yae{bottom:549.771284pt;}
.y181{bottom:552.799504pt;}
.ye3{bottom:553.852660pt;}
.y7b{bottom:556.045619pt;}
.y139{bottom:565.038667pt;}
.y180{bottom:566.103195pt;}
.yad{bottom:566.400856pt;}
.y2d{bottom:567.685510pt;}
.ye2{bottom:570.633663pt;}
.y7a{bottom:573.052441pt;}
.y17f{bottom:579.331436pt;}
.yac{bottom:583.030428pt;}
.y2c{bottom:585.601283pt;}
.ye1{bottom:587.414667pt;}
.y79{bottom:589.984876pt;}
.y17e{bottom:592.635127pt;}
.ydf{bottom:595.125348pt;}
.yab{bottom:599.660000pt;}
.ya9{bottom:599.661667pt;}
.y138{bottom:603.288000pt;}
.y2b{bottom:603.515595pt;}
.yaa{bottom:605.556000pt;}
.y17d{bottom:605.938818pt;}
.y78{bottom:606.993027pt;}
.yde{bottom:607.068808pt;}
.ya8{bottom:616.291239pt;}
.ydd{bottom:619.012269pt;}
.y17c{bottom:619.242509pt;}
.y2a{bottom:621.431369pt;}
.y77{bottom:624.001178pt;}
.ydc{bottom:630.954667pt;}
.yda{bottom:630.954935pt;}
.y17b{bottom:632.470749pt;}
.ya7{bottom:632.920811pt;}
.ydb{bottom:635.716000pt;}
.y137{bottom:636.472000pt;}
.y29{bottom:639.421663pt;}
.y110{bottom:639.874667pt;}
.y76{bottom:641.008000pt;}
.y74{bottom:641.010627pt;}
.yd9{bottom:642.897333pt;}
.y5b{bottom:645.241692pt;}
.y17a{bottom:645.774440pt;}
.y75{bottom:646.904000pt;}
.ya6{bottom:649.474667pt;}
.y10f{bottom:654.462667pt;}
.y10d{bottom:654.465261pt;}
.y5a{bottom:655.900239pt;}
.y28{bottom:657.335975pt;}
.y73{bottom:657.943062pt;}
.y179{bottom:659.078131pt;}
.y10e{bottom:659.225333pt;}
.y59{bottom:666.482911pt;}
.y10c{bottom:669.053733pt;}
.y178{bottom:672.381822pt;}
.y72{bottom:674.951213pt;}
.y27{bottom:675.251748pt;}
.y136{bottom:676.989905pt;}
.y58{bottom:677.141458pt;}
.ya5{bottom:682.733333pt;}
.y10b{bottom:683.717654pt;}
.y177{bottom:685.610063pt;}
.y57{bottom:687.724130pt;}
.y71{bottom:691.580785pt;}
.y26{bottom:693.166060pt;}
.y135{bottom:693.619477pt;}
.y10a{bottom:698.307188pt;}
.y56{bottom:698.381774pt;}
.y176{bottom:698.914816pt;}
.y70{bottom:708.588936pt;}
.y134{bottom:710.173333pt;}
.y25{bottom:711.156355pt;}
.y175{bottom:712.218507pt;}
.y109{bottom:712.895659pt;}
.y55{bottom:714.029062pt;}
.ya4{bottom:723.479046pt;}
.y54{bottom:724.687609pt;}
.y174{bottom:725.446748pt;}
.y6f{bottom:725.520042pt;}
.y24{bottom:729.070667pt;}
.y53{bottom:735.346155pt;}
.y173{bottom:738.750439pt;}
.y108{bottom:739.201239pt;}
.ya3{bottom:740.108618pt;}
.y6e{bottom:742.528193pt;}
.y133{bottom:743.433333pt;}
.y52{bottom:745.928828pt;}
.y172{bottom:752.054130pt;}
.y51{bottom:756.586471pt;}
.ya2{bottom:756.738189pt;}
.y6d{bottom:759.157765pt;}
.y107{bottom:762.633333pt;}
.y171{bottom:765.357821pt;}
.ya1{bottom:773.367761pt;}
.y6c{bottom:776.165916pt;}
.y23{bottom:776.845480pt;}
.y170{bottom:778.586061pt;}
.y132{bottom:783.949333pt;}
.y50{bottom:788.485333pt;}
.y9e{bottom:789.996910pt;}
.ya0{bottom:789.997333pt;}
.y16f{bottom:791.889752pt;}
.y6b{bottom:793.098351pt;}
.y9f{bottom:795.893333pt;}
.y4f{bottom:799.068000pt;}
.y22{bottom:799.446559pt;}
.y8{bottom:802.800000pt;}
.y16e{bottom:805.193443pt;}
.y9d{bottom:806.552095pt;}
.y14{bottom:809.120000pt;}
.y6a{bottom:810.106501pt;}
.y106{bottom:815.244000pt;}
.y104{bottom:815.244269pt;}
.y4e{bottom:816.377333pt;}
.y131{bottom:817.133333pt;}
.y21{bottom:818.041333pt;}
.y16d{bottom:818.497134pt;}
.y13{bottom:819.786667pt;}
.y105{bottom:820.006667pt;}
.y127{bottom:821.442667pt;}
.y20{bottom:822.046667pt;}
.y9c{bottom:823.181667pt;}
.y4d{bottom:826.960000pt;}
.y69{bottom:827.113324pt;}
.y103{bottom:827.186667pt;}
.y7{bottom:828.666667pt;}
.y12{bottom:830.453333pt;}
.y1f{bottom:831.345333pt;}
.y16c{bottom:831.725375pt;}
.y1e{bottom:835.350667pt;}
.y9b{bottom:839.811239pt;}
.y11{bottom:841.120000pt;}
.y68{bottom:844.121474pt;}
.y4c{bottom:844.270667pt;}
.y1d{bottom:844.649333pt;}
.y16b{bottom:845.029066pt;}
.y1c{bottom:848.654667pt;}
.y10{bottom:851.786667pt;}
.y4b{bottom:854.853333pt;}
.y9a{bottom:856.440811pt;}
.y130{bottom:857.650667pt;}
.y16a{bottom:858.333819pt;}
.y67{bottom:861.053909pt;}
.y1a{bottom:861.884000pt;}
.y6{bottom:864.560000pt;}
.y1b{bottom:867.024000pt;}
.y169{bottom:871.560997pt;}
.y4a{bottom:872.164000pt;}
.yf{bottom:872.453333pt;}
.y99{bottom:872.994667pt;}
.y66{bottom:878.062060pt;}
.y49{bottom:882.746667pt;}
.ye{bottom:883.120000pt;}
.y168{bottom:884.865751pt;}
.y12f{bottom:890.834667pt;}
.yd{bottom:893.786667pt;}
.y65{bottom:895.068882pt;}
.y19{bottom:897.789852pt;}
.y167{bottom:898.169442pt;}
.y5{bottom:898.813333pt;}
.y166{bottom:911.473133pt;}
.y64{bottom:912.077033pt;}
.yc{bottom:914.453333pt;}
.y48{bottom:914.494667pt;}
.y4{bottom:924.413333pt;}
.y165{bottom:924.701373pt;}
.yb{bottom:925.120000pt;}
.yd8{bottom:925.454667pt;}
.yd6{bottom:925.457261pt;}
.y18{bottom:925.681333pt;}
.y63{bottom:929.085184pt;}
.yd7{bottom:930.217333pt;}
.y12e{bottom:931.352095pt;}
.y47{bottom:934.752760pt;}
.ya{bottom:935.786667pt;}
.y164{bottom:938.005064pt;}
.yd5{bottom:940.045733pt;}
.y62{bottom:946.017619pt;}
.y12d{bottom:947.981667pt;}
.y163{bottom:951.308755pt;}
.yd4{bottom:954.709654pt;}
.y46{bottom:956.976000pt;}
.y9{bottom:958.453333pt;}
.y3{bottom:961.320000pt;}
.y17{bottom:961.512000pt;}
.y61{bottom:963.024441pt;}
.y12c{bottom:964.611239pt;}
.y162{bottom:964.612446pt;}
.yd3{bottom:969.299188pt;}
.y161{bottom:977.840687pt;}
.y60{bottom:980.032592pt;}
.y12b{bottom:981.165095pt;}
.yd2{bottom:983.887659pt;}
.y160{bottom:991.144378pt;}
.y5f{bottom:997.040743pt;}
.y12a{bottom:997.794667pt;}
.y15f{bottom:1004.448068pt;}
.yd1{bottom:1010.193239pt;}
.y5e{bottom:1013.973178pt;}
.y15e{bottom:1017.676309pt;}
.y5d{bottom:1030.980000pt;}
.yd0{bottom:1033.625333pt;}
.y2{bottom:1039.973333pt;}
.y1{bottom:1059.173333pt;}
.y16{bottom:1077.468000pt;}
.h11{height:16.232796pt;}
.hf{height:17.099829pt;}
.h17{height:18.596853pt;}
.h1e{height:21.165398pt;}
.he{height:22.003184pt;}
.h19{height:25.147253pt;}
.h18{height:25.652773pt;}
.h1a{height:26.457744pt;}
.h16{height:29.755040pt;}
.h10{height:30.180112pt;}
.ha{height:30.690198pt;}
.h1d{height:31.752878pt;}
.h5{height:32.000000pt;}
.h6{height:32.714922pt;}
.hb{height:37.193707pt;}
.hd{height:37.512510pt;}
.h15{height:37.725045pt;}
.h1b{height:38.362652pt;}
.h8{height:38.937500pt;}
.h1c{height:39.690998pt;}
.h12{height:41.498080pt;}
.h13{height:43.660656pt;}
.h7{height:44.500000pt;}
.h14{height:45.269979pt;}
.h3{height:50.062500pt;}
.h4{height:64.000000pt;}
.h1{height:66.750000pt;}
.hc{height:66.949120pt;}
.h2{height:67.273333pt;}
.h9{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.w1{width:793.701333pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:52.000000pt;}
.x19{left:56.617758pt;}
.x18{left:75.590533pt;}
.xa{left:158.966667pt;}
.x36{left:164.182667pt;}
.x16{left:169.474667pt;}
.x2a{left:172.120000pt;}
.x17{left:178.770703pt;}
.x37{left:181.038897pt;}
.x2{left:192.933333pt;}
.x9{left:195.360000pt;}
.x3{left:213.080000pt;}
.xb{left:215.660000pt;}
.xc{left:233.952000pt;}
.x25{left:236.296000pt;}
.x4{left:242.706667pt;}
.x26{left:250.960000pt;}
.x1e{left:280.668000pt;}
.x2b{left:289.586667pt;}
.x1f{left:295.332000pt;}
.x2e{left:297.826667pt;}
.x2c{left:301.380000pt;}
.x21{left:312.642667pt;}
.xd{left:323.829333pt;}
.xe{left:328.062667pt;}
.x5{left:339.266667pt;}
.x20{left:393.524000pt;}
.xf{left:401.461333pt;}
.x10{left:405.694667pt;}
.x22{left:413.177333pt;}
.x23{left:425.725333pt;}
.x2f{left:431.168000pt;}
.x27{left:466.090667pt;}
.x30{left:467.754667pt;}
.x11{left:474.557333pt;}
.x12{left:478.790667pt;}
.x28{left:506.985333pt;}
.x31{left:509.632000pt;}
.x13{left:525.052000pt;}
.x14{left:533.593333pt;}
.x2d{left:536.844000pt;}
.x6{left:538.213333pt;}
.x32{left:546.217333pt;}
.x8{left:558.213333pt;}
.x7{left:563.920000pt;}
.x29{left:569.498667pt;}
.x33{left:588.169333pt;}
.x34{left:592.629333pt;}
.x15{left:603.666667pt;}
.x35{left:607.294667pt;}
.x1a{left:614.550667pt;}
.x1b{left:621.958667pt;}
.x1c{left:626.645333pt;}
.x24{left:637.304000pt;}
.x1d{left:641.310667pt;}
}




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