
    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_764ac7754483ae48d671f677.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.099609;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_ff36b633d587318ad4013f5f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_a96fcc720672cf4065b4b9e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_a7072b57e1fb06d7f0013fea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966797;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_291d72a4ed7874fdc3ca2d20.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9ebc0f4c0f8834fb81814494.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.070312;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_7b535ec06161e5b5235bc8be.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_6bfa20a5ec2200ad41bfa974.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_fd7f5a760ff71effe3bba588.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172363;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_b40f9c4077ee737ea0bcc5b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_fe96a6ea4154be364977bfa2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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;}
.md{transform:matrix(0.000000,-0.249862,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249862,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249862,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.000000,-0.250017,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250017,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250017,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,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);}
.m8{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255518,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.282415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282415,0.000000,0.000000,0.250000,0,0);}
.v1a{vertical-align:-131.044511px;}
.v1{vertical-align:-84.247707px;}
.v5{vertical-align:-56.133739px;}
.v3{vertical-align:-44.652182px;}
.v19{vertical-align:-34.587867px;}
.v2{vertical-align:-27.339035px;}
.v18{vertical-align:-23.785159px;}
.v17{vertical-align:-20.155044px;}
.v6{vertical-align:-17.259481px;}
.v16{vertical-align:-12.243167px;}
.v10{vertical-align:-3.618116px;}
.vc{vertical-align:-1.422792px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.174879px;}
.v15{vertical-align:3.585263px;}
.v11{vertical-align:5.052389px;}
.v1b{vertical-align:9.351565px;}
.v4{vertical-align:11.517109px;}
.vd{vertical-align:16.535113px;}
.v7{vertical-align:20.877596px;}
.v14{vertical-align:25.200751px;}
.va{vertical-align:46.115719px;}
.v12{vertical-align:56.847546px;}
.v8{vertical-align:59.732849px;}
.vf{vertical-align:64.813926px;}
.v13{vertical-align:66.223962px;}
.ve{vertical-align:82.095178px;}
.v9{vertical-align:106.563403px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.050415px;}
.ls38{letter-spacing:0.050752px;}
.ls39{letter-spacing:0.066798px;}
.ls2{letter-spacing:0.109160px;}
.ls7{letter-spacing:0.160657px;}
.ls22{letter-spacing:0.166986px;}
.ls2f{letter-spacing:0.170511px;}
.ls26{letter-spacing:0.193281px;}
.ls3b{letter-spacing:0.262194px;}
.ls3c{letter-spacing:0.279829px;}
.ls3a{letter-spacing:0.281032px;}
.ls3{letter-spacing:0.292950px;}
.ls4{letter-spacing:0.293173px;}
.ls3e{letter-spacing:0.352773px;}
.ls33{letter-spacing:0.391679px;}
.ls24{letter-spacing:0.492137px;}
.ls3f{letter-spacing:0.503999px;}
.ls3d{letter-spacing:0.568080px;}
.ls1e{letter-spacing:0.877662px;}
.ls1b{letter-spacing:0.904587px;}
.ls18{letter-spacing:0.908373px;}
.ls19{letter-spacing:0.926698px;}
.lsc{letter-spacing:0.944868px;}
.lsd{letter-spacing:0.945490px;}
.ls8{letter-spacing:0.961223px;}
.ls23{letter-spacing:0.964531px;}
.lse{letter-spacing:0.965872px;}
.ls1c{letter-spacing:0.976773px;}
.ls12{letter-spacing:1.190556px;}
.ls2c{letter-spacing:1.193236px;}
.ls14{letter-spacing:1.199012px;}
.ls2a{letter-spacing:1.200533px;}
.lsf{letter-spacing:1.202093px;}
.ls9{letter-spacing:1.206742px;}
.ls15{letter-spacing:1.620233px;}
.ls2d{letter-spacing:1.622578px;}
.ls20{letter-spacing:1.671363px;}
.lsa{letter-spacing:1.918632px;}
.ls1a{letter-spacing:1.920643px;}
.ls29{letter-spacing:1.922867px;}
.ls21{letter-spacing:1.930790px;}
.ls11{letter-spacing:1.932745px;}
.ls10{letter-spacing:1.948781px;}
.ls1d{letter-spacing:2.625671px;}
.ls25{letter-spacing:2.639475px;}
.lsb{letter-spacing:27.654032px;}
.ls5{letter-spacing:31.100335px;}
.ls6{letter-spacing:31.246384px;}
.ls40{letter-spacing:45.945447px;}
.ls31{letter-spacing:50.215314px;}
.ls30{letter-spacing:50.953563px;}
.ls13{letter-spacing:52.922782px;}
.ls2b{letter-spacing:53.642316px;}
.ls16{letter-spacing:61.091172px;}
.ls34{letter-spacing:70.932378px;}
.ls17{letter-spacing:74.080761px;}
.ls2e{letter-spacing:76.942696px;}
.ls41{letter-spacing:84.875217px;}
.ls1f{letter-spacing:94.400306px;}
.ls32{letter-spacing:123.419196px;}
.ls36{letter-spacing:328.651018px;}
.ls37{letter-spacing:331.525530px;}
.ls35{letter-spacing:331.532066px;}
.ls28{letter-spacing:474.579896px;}
.ls27{letter-spacing:508.610857px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-77.925560px;}
.ws2a{word-spacing:-52.452732px;}
.ws2f{word-spacing:-38.890863px;}
.ws24{word-spacing:-34.901910px;}
.ws3{word-spacing:-31.112690px;}
.ws13{word-spacing:-31.029959px;}
.ws2d{word-spacing:-28.979925px;}
.ws18{word-spacing:-27.515416px;}
.ws14{word-spacing:-27.123737px;}
.ws1a{word-spacing:-26.326028px;}
.ws2{word-spacing:-25.927378px;}
.ws1b{word-spacing:-23.334518px;}
.ws10{word-spacing:-21.963341px;}
.ws23{word-spacing:-20.343007px;}
.ws1e{word-spacing:-19.867065px;}
.ws1c{word-spacing:-19.856068px;}
.wsa{word-spacing:-18.449010px;}
.ws2c{word-spacing:-17.924214px;}
.ws11{word-spacing:-16.323012px;}
.ws29{word-spacing:-15.556345px;}
.ws7{word-spacing:-14.495592px;}
.ws1f{word-spacing:-12.727399px;}
.ws26{word-spacing:-10.739666px;}
.ws21{word-spacing:-0.597315px;}
.ws28{word-spacing:-0.589681px;}
.ws20{word-spacing:-0.321631px;}
.ws16{word-spacing:-0.285119px;}
.ws1{word-spacing:0.000000px;}
.ws17{word-spacing:0.293759px;}
.ws5{word-spacing:9.593235px;}
.ws4{word-spacing:9.622458px;}
.ws27{word-spacing:17.392556px;}
.ws9{word-spacing:26.374758px;}
.wsb{word-spacing:29.077474px;}
.wsd{word-spacing:29.087771px;}
.wsc{word-spacing:29.104087px;}
.ws6{word-spacing:39.115574px;}
.ws8{word-spacing:41.027402px;}
.wse{word-spacing:41.297283px;}
.wsf{word-spacing:42.359460px;}
.ws2b{word-spacing:69.217312px;}
.ws12{word-spacing:85.050197px;}
.ws25{word-spacing:96.254996px;}
.ws22{word-spacing:384.492792px;}
.ws1d{word-spacing:397.209213px;}
.ws19{word-spacing:1015.597828px;}
.ws2e{word-spacing:1428.943184px;}
.ws15{word-spacing:1434.527059px;}
._c{margin-left:-1551.891549px;}
._18{margin-left:-1464.211308px;}
._7{margin-left:-17.423979px;}
._19{margin-left:-11.807355px;}
._e{margin-left:-10.108772px;}
._5{margin-left:-8.205833px;}
._2{margin-left:-6.739211px;}
._12{margin-left:-5.585745px;}
._8{margin-left:-4.101809px;}
._6{margin-left:-3.086636px;}
._3{margin-left:-2.032561px;}
._0{margin-left:-1.010882px;}
._1{width:1.179362px;}
._4{width:2.233436px;}
._d{width:3.779990px;}
._b{width:5.551223px;}
._9{width:7.609917px;}
._15{width:13.893139px;}
._16{width:16.644983px;}
._27{width:18.575967px;}
._28{width:20.051242px;}
._29{width:24.429640px;}
._13{width:28.300275px;}
._14{width:29.935329px;}
._24{width:32.150617px;}
._30{width:39.800223px;}
._11{width:54.146873px;}
._20{width:58.537621px;}
._a{width:63.352831px;}
._21{width:68.382207px;}
._1f{width:74.322287px;}
._25{width:76.738028px;}
._1e{width:78.551625px;}
._22{width:80.547492px;}
._23{width:81.830549px;}
._26{width:84.301623px;}
._1d{width:91.524761px;}
._f{width:102.668460px;}
._2e{width:103.793943px;}
._2a{width:108.108175px;}
._2d{width:118.700293px;}
._1c{width:123.378733px;}
._2f{width:312.144359px;}
._2b{width:351.403498px;}
._2c{width:352.952444px;}
._1b{width:416.504831px;}
._17{width:436.577593px;}
._10{width:933.325939px;}
._1a{width:943.431627px;}
.fcb{color:rgb(30,80,160);}
.fc8{color:rgb(0,255,0);}
.fca{color:rgb(0,191,86);}
.fc7{color:rgb(255,0,0);}
.fc9{color:rgb(78,167,46);}
.fc6{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(35,129,196);}
.fc5{color:rgb(23,23,23);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs1a{font-size:45.947289px;}
.fs20{font-size:47.520644px;}
.fs19{font-size:48.036740px;}
.fs11{font-size:48.911154px;}
.fs1b{font-size:52.214168px;}
.fsa{font-size:52.330659px;}
.fs21{font-size:52.560690px;}
.fs15{font-size:56.160091px;}
.fs10{font-size:58.927840px;}
.fs12{font-size:58.929315px;}
.fs1d{font-size:63.360367px;}
.fs22{font-size:65.520598px;}
.fs25{font-size:66.219539px;}
.fs26{font-size:66.223963px;}
.fs9{font-size:66.602925px;}
.fs5{font-size:69.839584px;}
.fs1c{font-size:73.440459px;}
.fs8{font-size:74.879630px;}
.fsd{font-size:79.290039px;}
.fs23{font-size:79.310682px;}
.fs0{font-size:84.240136px;}
.fs17{font-size:87.858707px;}
.fs18{font-size:87.907367px;}
.fsb{font-size:91.977153px;}
.fs24{font-size:92.395928px;}
.fs6{font-size:93.600643px;}
.fs14{font-size:95.039814px;}
.fse{font-size:97.919629px;}
.fs1e{font-size:105.119906px;}
.fs7{font-size:112.320182px;}
.fs2{font-size:115.919583px;}
.fsc{font-size:118.935058px;}
.fsf{font-size:125.999675px;}
.fs13{font-size:137.300702px;}
.fs4{font-size:140.400227px;}
.fs1f{font-size:147.600504px;}
.fs16{font-size:168.480273px;}
.fs3{font-size:189.360042px;}
.fs1{font-size:284.399856px;}
.y0{bottom:0.000000px;}
.yd1{bottom:5.761564px;}
.y68{bottom:8.279612px;}
.yd4{bottom:112.140838px;}
.y79{bottom:112.675586px;}
.y6c{bottom:125.095859px;}
.y9e{bottom:125.277635px;}
.yef{bottom:125.809053px;}
.y124{bottom:127.801008px;}
.y85{bottom:128.881030px;}
.y12a{bottom:131.938192px;}
.ye8{bottom:141.108821px;}
.y37{bottom:142.025457px;}
.y113{bottom:143.281869px;}
.y1d{bottom:147.787639px;}
.yfa{bottom:150.480092px;}
.y96{bottom:152.811670px;}
.y84{bottom:153.539335px;}
.yc6{bottom:154.439138px;}
.y31{bottom:154.444273px;}
.y122{bottom:156.777475px;}
.y129{bottom:157.144947px;}
.yd2{bottom:164.339397px;}
.y32{bottom:166.680517px;}
.y66{bottom:167.396796px;}
.y1b{bottom:168.667082px;}
.y2e{bottom:169.199504px;}
.y2f{bottom:171.187486px;}
.y110{bottom:171.903467px;}
.ye9{bottom:173.510221px;}
.y2{bottom:177.486442px;}
.y25{bottom:179.825866px;}
.y92{bottom:181.795846px;}
.y60{bottom:184.858317px;}
.y61{bottom:185.403176px;}
.y70{bottom:185.940097px;}
.y26{bottom:187.376447px;}
.y116{bottom:187.732588px;}
.yf7{bottom:189.000060px;}
.yd0{bottom:190.260093px;}
.y63{bottom:192.959489px;}
.y42{bottom:193.137305px;}
.y64{bottom:193.683344px;}
.y1c{bottom:194.048675px;}
.y30{bottom:194.948092px;}
.y112{bottom:196.017630px;}
.y83{bottom:200.518898px;}
.y57{bottom:201.777009px;}
.y58{bottom:202.500937px;}
.y6f{bottom:202.680289px;}
.y1{bottom:202.680331px;}
.yf0{bottom:204.648788px;}
.yea{bottom:205.908010px;}
.y5f{bottom:207.359338px;}
.y56{bottom:208.620618px;}
.y54{bottom:209.344546px;}
.y5e{bottom:210.060967px;}
.y5b{bottom:210.781178px;}
.y36{bottom:211.677992px;}
.y50{bottom:212.042386px;}
.y55{bottom:212.758880px;}
.y62{bottom:214.202946px;}
.y4d{bottom:214.740298px;}
.y7c{bottom:215.281543px;}
.y51{bottom:215.464227px;}
.y5d{bottom:216.900859px;}
.y5a{bottom:217.617280px;}
.y4b{bottom:218.162066px;}
.y4c{bottom:218.878560px;}
.y127{bottom:220.868921px;}
.y4e{bottom:221.583907px;}
.y4f{bottom:222.300328px;}
.y136{bottom:224.810677px;}
.y117{bottom:224.812645px;}
.yad{bottom:224.824727px;}
.y52{bottom:226.442307px;}
.y53{bottom:229.856641px;}
.yf6{bottom:231.125875px;}
.y5c{bottom:231.838060px;}
.y91{bottom:232.015752px;}
.y7b{bottom:232.017467px;}
.y41{bottom:236.342022px;}
.yeb{bottom:238.313093px;}
.yac{bottom:238.506652px;}
.ycf{bottom:244.076665px;}
.yfd{bottom:246.784570px;}
.y111{bottom:248.582046px;}
.y59{bottom:249.659822px;}
.y29{bottom:249.664598px;}
.y2b{bottom:251.641282px;}
.yb5{bottom:255.248907px;}
.y118{bottom:261.892760px;}
.yce{bottom:262.972839px;}
.y10f{bottom:264.418188px;}
.y2d{bottom:264.955841px;}
.y19{bottom:265.147633px;}
.y90{bottom:265.676184px;}
.y27{bottom:268.201535px;}
.y33{bottom:268.735474px;}
.yb4{bottom:268.927409px;}
.y2c{bottom:269.106064px;}
.yec{bottom:270.710882px;}
.y9{bottom:270.718809px;}
.y9d{bottom:272.692396px;}
.yf5{bottom:273.059892px;}
.yfc{bottom:276.117402px;}
.y1a{bottom:277.022875px;}
.y40{bottom:279.362178px;}
.y23{bottom:280.447709px;}
.ycd{bottom:281.873828px;}
.y24{bottom:287.998910px;}
.y28{bottom:289.269049px;}
.y2a{bottom:291.245684px;}
.y93{bottom:292.672965px;}
.y43{bottom:293.212809px;}
.y8{bottom:298.439320px;}
.y119{bottom:298.972817px;}
.yb7{bottom:299.152975px;}
.yb6{bottom:299.515508px;}
.yb8{bottom:299.694771px;}
.ycc{bottom:300.958500px;}
.yed{bottom:303.293594px;}
.y6e{bottom:303.661543px;}
.y10e{bottom:306.545090px;}
.y35{bottom:307.083508px;}
.y9c{bottom:307.977410px;}
.y135{bottom:315.542907px;}
.y123{bottom:316.617499px;}
.ycb{bottom:319.859488px;}
.y6d{bottom:320.397467px;}
.y3f{bottom:322.566942px;}
.yff{bottom:325.985653px;}
.y7{bottom:326.159831px;}
.y8f{bottom:332.996964px;}
.yee{bottom:335.691383px;}
.y11a{bottom:336.052873px;}
.yab{bottom:341.454665px;}
.ya4{bottom:341.817470px;}
.yc5{bottom:342.532128px;}
.y97{bottom:342.533200px;}
.ybe{bottom:342.898619px;}
.y9b{bottom:343.251753px;}
.y102{bottom:343.794366px;}
.y44{bottom:344.334959px;}
.y16{bottom:347.044567px;}
.y20{bottom:347.943985px;}
.yf1{bottom:348.125269px;}
.y10d{bottom:348.654888px;}
.yd3{bottom:354.605170px;}
.yfe{bottom:355.318522px;}
.yaa{bottom:356.935234px;}
.ya3{bottom:357.298075px;}
.y18{bottom:357.481733px;}
.yc4{bottom:357.836824px;}
.ybd{bottom:358.195978px;}
.y1e{bottom:366.480922px;}
.y101{bottom:368.998548px;}
.y82{bottom:369.363391px;}
.y14{bottom:370.083605px;}
.y65{bottom:370.433296px;}
.y17{bottom:370.988134px;}
.ya9{bottom:372.954588px;}
.y11b{bottom:373.132930px;}
.ya2{bottom:373.317393px;}
.yc3{bottom:373.859829px;}
.ybc{bottom:374.215297px;}
.y9a{bottom:378.719137px;}
.y21{bottom:378.904945px;}
.y69{bottom:384.484526px;}
.y22{bottom:386.454439px;}
.ya8{bottom:387.537254px;}
.y1f{bottom:387.547394px;}
.ya1{bottom:387.896444px;}
.yc2{bottom:388.435157px;}
.ybb{bottom:388.797998px;}
.y10c{bottom:390.781842px;}
.ye5{bottom:392.935009px;}
.y130{bottom:394.740877px;}
.y45{bottom:395.452632px;}
.y15{bottom:396.726417px;}
.y6{bottom:397.988155px;}
.y81{bottom:398.696259px;}
.y8e{bottom:400.317786px;}
.ya7{bottom:402.655018px;}
.ya0{bottom:403.017858px;}
.y94{bottom:403.558102px;}
.yc1{bottom:403.560258px;}
.yba{bottom:404.099008px;}
.ydb{bottom:405.891137px;}
.y134{bottom:406.258086px;}
.yde{bottom:408.231130px;}
.y3e{bottom:408.776420px;}
.y11c{bottom:410.213016px;}
.y99{bottom:413.993481px;}
.ya6{bottom:418.494777px;}
.y9f{bottom:419.216772px;}
.yc0{bottom:419.396367px;}
.yb9{bottom:420.118326px;}
.y34{bottom:421.024256px;}
.y10b{bottom:432.720243px;}
.y8d{bottom:433.978218px;}
.y12f{bottom:436.867779px;}
.ya5{bottom:437.757578px;}
.ybf{bottom:438.659132px;}
.y7a{bottom:439.387170px;}
.ydf{bottom:440.636213px;}
.y104{bottom:442.256197px;}
.y100{bottom:444.966622px;}
.y46{bottom:446.755538px;}
.y11d{bottom:447.293073px;}
.y98{bottom:449.278527px;}
.yf4{bottom:449.278680px;}
.y80{bottom:450.357473px;}
.yc8{bottom:451.439105px;}
.y3d{bottom:451.981138px;}
.yb3{bottom:458.108700px;}
.y103{bottom:467.460379px;}
.y8c{bottom:467.638608px;}
.yc9{bottom:467.998937px;}
.ye6{bottom:471.775068px;}
.yb2{bottom:471.787168px;}
.ye0{bottom:473.211667px;}
.y5{bottom:474.677536px;}
.y10a{bottom:474.847144px;}
.yda{bottom:478.805788px;}
.y106{bottom:479.522981px;}
.y7f{bottom:479.702269px;}
.y11e{bottom:484.373159px;}
.yb1{bottom:485.465635px;}
.y12{bottom:486.724282px;}
.yf3{bottom:491.402388px;}
.y12e{bottom:492.122957px;}
.y76{bottom:492.659404px;}
.y3c{bottom:495.001293px;}
.y133{bottom:497.161739px;}
.y47{bottom:497.878611px;}
.yca{bottom:499.313326px;}
.y13{bottom:500.757717px;}
.ye1{bottom:505.616714px;}
.yd{bottom:506.526359px;}
.yb0{bottom:508.142729px;}
.yd9{bottom:508.317946px;}
.y105{bottom:508.855849px;}
.y95{bottom:514.614843px;}
.y11f{bottom:521.453215px;}
.yaf{bottom:521.824688px;}
.y8b{bottom:522.180805px;}
.y75{bottom:522.183526px;}
.yc{bottom:527.583933px;}
.yf{bottom:530.818693px;}
.y7e{bottom:533.158255px;}
.yf2{bottom:533.338537px;}
.y12d{bottom:534.232730px;}
.yae{bottom:535.503156px;}
.yd8{bottom:537.662743px;}
.ye2{bottom:538.013795px;}
.y3b{bottom:538.206011px;}
.y10{bottom:541.981738px;}
.y126{bottom:542.528017px;}
.y11{bottom:544.861016px;}
.y38{bottom:545.217098px;}
.y48{bottom:548.994483px;}
.y4{bottom:551.332166px;}
.y74{bottom:551.516358px;}
.y8a{bottom:555.841216px;}
.y120{bottom:558.359013px;}
.y109{bottom:559.083845px;}
.y125{bottom:563.753554px;}
.yd7{bottom:567.186865px;}
.ye3{bottom:570.417391px;}
.y87{bottom:570.775892px;}
.y73{bottom:581.040480px;}
.y3a{bottom:581.395356px;}
.y132{bottom:587.876866px;}
.y12c{bottom:589.316536px;}
.y86{bottom:590.221433px;}
.yf9{bottom:591.475988px;}
.y121{bottom:595.439099px;}
.y6b{bottom:597.604795px;}
.ye{bottom:597.781508px;}
.y49{bottom:600.117556px;}
.y108{bottom:601.193643px;}
.ye4{bottom:602.815197px;}
.y89{bottom:607.140774px;}
.y67{bottom:610.015187px;}
.y72{bottom:610.564584px;}
.yf8{bottom:616.680170px;}
.ye7{bottom:617.223003px;}
.yfb{bottom:621.537272px;}
.yd5{bottom:622.077620px;}
.y39{bottom:624.415512px;}
.y6a{bottom:626.040181px;}
.y3{bottom:628.021547px;}
.yd6{bottom:628.564149px;}
.y128{bottom:631.075409px;}
.y12b{bottom:631.443438px;}
.yb{bottom:633.414404px;}
.y71{bottom:639.897453px;}
.y107{bottom:643.320571px;}
.y88{bottom:649.267702px;}
.y4a{bottom:651.420462px;}
.yc7{bottom:658.976216px;}
.y78{bottom:680.227339px;}
.y115{bottom:680.389145px;}
.ydd{bottom:682.009465px;}
.y7d{bottom:705.954595px;}
.ya{bottom:706.139521px;}
.y131{bottom:719.467815px;}
.ydc{bottom:727.379043px;}
.y77{bottom:731.520063px;}
.y114{bottom:731.704989px;}
.h3a{height:30.065413px;}
.h31{height:34.550207px;}
.h30{height:35.112793px;}
.h22{height:36.778895px;}
.h32{height:38.166314px;}
.h33{height:39.616446px;}
.h25{height:41.046082px;}
.h34{height:41.751576px;}
.h24{height:43.073719px;}
.h21{height:44.310973px;}
.h23{height:44.312082px;}
.h3f{height:47.265406px;}
.h29{height:48.290000px;}
.hf{height:48.683876px;}
.h7{height:50.845127px;}
.h1e{height:51.049735px;}
.h40{height:52.278382px;}
.h12{height:52.281547px;}
.he{height:52.301992px;}
.h42{height:52.516093px;}
.h1b{height:52.992744px;}
.h38{height:53.681820px;}
.h39{height:54.481253px;}
.hb{height:54.733792px;}
.h1a{height:57.957611px;}
.h8{height:60.052494px;}
.h37{height:61.575920px;}
.h15{height:62.291167px;}
.h35{height:63.344634px;}
.h46{height:65.863868px;}
.h47{height:65.868268px;}
.h4a{height:66.235966px;}
.hc{height:66.250901px;}
.h4b{height:66.252955px;}
.h2d{height:66.265047px;}
.hd{height:66.287498px;}
.h27{height:69.470020px;}
.h9{height:70.383296px;}
.h1f{height:71.575042px;}
.h2{height:72.846329px;}
.h2a{height:73.630971px;}
.h3b{height:76.530166px;}
.h44{height:78.884697px;}
.ha{height:82.101227px;}
.h18{height:84.332552px;}
.h13{height:84.332746px;}
.h14{height:84.333691px;}
.h17{height:84.346896px;}
.h1c{height:84.359974px;}
.h11{height:84.367182px;}
.h1d{height:86.936417px;}
.h2e{height:89.960795px;}
.h2f{height:90.010620px;}
.h45{height:91.899660px;}
.h19{height:91.988806px;}
.h36{height:92.100348px;}
.h41{height:97.313715px;}
.h4{height:100.241006px;}
.h49{height:101.451913px;}
.h3c{height:102.626533px;}
.h43{height:103.997629px;}
.h6{height:105.574390px;}
.h20{height:108.957727px;}
.h3d{height:110.988660px;}
.h4c{height:121.410548px;}
.h48{height:125.322919px;}
.h28{height:126.317566px;}
.h2b{height:126.689268px;}
.h16{height:130.779054px;}
.h2c{height:132.475326px;}
.h26{height:136.563247px;}
.h10{height:144.814866px;}
.h3e{height:145.692658px;}
.h5{height:163.748357px;}
.h3{height:245.933664px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w2{width:29.331540px;}
.w3{width:374.582672px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xb2{left:49.856479px;}
.xb3{left:78.838020px;}
.x9{left:96.298090px;}
.xb0{left:99.712957px;}
.x32{left:100.975086px;}
.x7c{left:105.848608px;}
.xaa{left:109.619124px;}
.x9a{left:112.140595px;}
.x6d{left:114.658022px;}
.x93{left:117.002476px;}
.x81{left:118.082605px;}
.x98{left:119.520916px;}
.xb1{left:123.484339px;}
.x97{left:125.460999px;}
.x96{left:131.401083px;}
.x7f{left:135.541743px;}
.xa1{left:145.627536px;}
.x7e{left:146.884291px;}
.x99{left:162.540104px;}
.xa4{left:167.761485px;}
.xa{left:170.461509px;}
.x83{left:173.519055px;}
.xa3{left:187.376476px;}
.xa2{left:191.524196px;}
.xa9{left:198.363310px;}
.x8c{left:212.937566px;}
.x3{left:216.354972px;}
.x89{left:217.615471px;}
.x84{left:220.855653px;}
.x68{left:223.560214px;}
.x80{left:225.176782px;}
.x35{left:230.221420px;}
.x88{left:231.654086px;}
.x34{left:238.501147px;}
.x4{left:241.732930px;}
.x33{left:246.601057px;}
.x85{left:263.155515px;}
.xc{left:271.626965px;}
.x13{left:274.502057px;}
.x2f{left:276.836129px;}
.x17{left:278.097049px;}
.x6a{left:279.722325px;}
.x19{left:281.700165px;}
.x69{left:283.863482px;}
.xad{left:289.079977px;}
.x6c{left:290.340134px;}
.x36{left:293.043017px;}
.x86{left:297.538003px;}
.xac{left:300.781225px;}
.x87{left:305.634615px;}
.x37{left:307.259014px;}
.xab{left:310.858870px;}
.x9b{left:314.819372px;}
.x38{left:321.480988px;}
.x7a{left:322.557196px;}
.xae{left:327.419727px;}
.x39{left:335.702961px;}
.x8d{left:341.818506px;}
.x14{left:347.221635px;}
.x3a{left:349.918959px;}
.xa0{left:351.549006px;}
.x7{left:353.701908px;}
.x1{left:362.884566px;}
.x3b{left:364.140932px;}
.x15{left:367.923315px;}
.x18{left:370.982706px;}
.x3c{left:378.364400px;}
.x74{left:380.344883px;}
.x16{left:386.101178px;}
.x3d{left:392.578138px;}
.x6{left:397.256631px;}
.x5{left:402.298037px;}
.x3e{left:406.799382px;}
.x2{left:415.247408px;}
.x3f{left:421.024308px;}
.x95{left:430.558424px;}
.x79{left:434.164444px;}
.x40{left:435.238082px;}
.x1e{left:441.718729px;}
.x20{left:442.981820px;}
.x41{left:449.459290px;}
.x8a{left:451.615636px;}
.xa5{left:459.896459px;}
.x42{left:463.684252px;}
.x1f{left:465.838085px;}
.x21{left:467.104712px;}
.x8b{left:470.152866px;}
.xa6{left:476.102793px;}
.x43{left:477.898026px;}
.x72{left:487.794809px;}
.x44{left:492.298345px;}
.x10{left:496.981169px;}
.x45{left:506.523307px;}
.x1c{left:510.126577px;}
.x46{left:520.744552px;}
.x8{left:529.378349px;}
.x47{left:534.958289px;}
.x8e{left:537.658133px;}
.x11{left:547.913780px;}
.x48{left:549.183251px;}
.x1a{left:556.925470px;}
.x1b{left:558.715858px;}
.xd{left:559.804798px;}
.x49{left:563.404460px;}
.x4a{left:577.618234px;}
.x4b{left:591.843196px;}
.x27{left:601.923820px;}
.x4c{left:606.064404px;}
.x1d{left:607.497863px;}
.x22{left:614.517886px;}
.x28{left:618.847881px;}
.xe{left:621.176667px;}
.x4d{left:634.503140px;}
.x23{left:638.642988px;}
.x24{left:646.196842px;}
.x4e{left:648.724348px;}
.x31{left:649.972654px;}
.x4f{left:662.938122px;}
.x50{left:677.163048px;}
.x82{left:681.484629px;}
.x2a{left:684.540784px;}
.x75{left:687.063024px;}
.x51{left:691.384256px;}
.x52{left:705.598030px;}
.x7b{left:715.866385px;}
.x53{left:719.823028px;}
.x30{left:728.991188px;}
.x12{left:734.217089px;}
.xaf{left:739.263755px;}
.x25{left:743.400764px;}
.x54{left:748.258011px;}
.xa7{left:753.123727px;}
.xf{left:755.634632px;}
.x55{left:762.482936px;}
.x76{left:764.279964px;}
.x7d{left:766.264415px;}
.x77{left:768.598000px;}
.x56{left:776.704145px;}
.x57{left:790.917919px;}
.x6b{left:792.174876px;}
.x78{left:796.314204px;}
.x58{left:805.142844px;}
.x59{left:819.364125px;}
.x5a{left:833.577827px;}
.x2c{left:845.463653px;}
.x2b{left:847.436661px;}
.xa8{left:853.733783px;}
.x5b{left:862.024033px;}
.x2d{left:866.889318px;}
.x8f{left:869.031726px;}
.x94{left:875.153262px;}
.x5c{left:876.237807px;}
.x26{left:881.464295px;}
.x92{left:886.858044px;}
.x91{left:888.307767px;}
.x5d{left:890.462733px;}
.x29{left:896.037345px;}
.x70{left:902.696616px;}
.x5e{left:904.683941px;}
.x2e{left:919.434547px;}
.x5f{left:933.301788px;}
.x71{left:942.119383px;}
.x9f{left:944.995783px;}
.x60{left:947.522996px;}
.x61{left:961.744277px;}
.x6f{left:971.820024px;}
.x62{left:975.961768px;}
.xb{left:984.410353px;}
.x63{left:990.182977px;}
.x9e{left:1000.441632px;}
.x64{left:1004.404185px;}
.x65{left:1018.621676px;}
.x66{left:1032.842885px;}
.x9c{left:1035.173383px;}
.x9d{left:1040.032889px;}
.x67{left:1047.064093px;}
.x73{left:1072.976849px;}
.x90{left:1090.804208px;}
.x6e{left:1094.760154px;}
@media print{
.v1a{vertical-align:-116.484010pt;}
.v1{vertical-align:-74.886851pt;}
.v5{vertical-align:-49.896657pt;}
.v3{vertical-align:-39.690828pt;}
.v19{vertical-align:-30.744770pt;}
.v2{vertical-align:-24.301364pt;}
.v18{vertical-align:-21.142364pt;}
.v17{vertical-align:-17.915595pt;}
.v6{vertical-align:-15.341761pt;}
.v16{vertical-align:-10.882815pt;}
.v10{vertical-align:-3.216103pt;}
.vc{vertical-align:-1.264704pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.933226pt;}
.v15{vertical-align:3.186900pt;}
.v11{vertical-align:4.491012pt;}
.v1b{vertical-align:8.312502pt;}
.v4{vertical-align:10.237430pt;}
.vd{vertical-align:14.697879pt;}
.v7{vertical-align:18.557863pt;}
.v14{vertical-align:22.400668pt;}
.va{vertical-align:40.991750pt;}
.v12{vertical-align:50.531152pt;}
.v8{vertical-align:53.095866pt;}
.vf{vertical-align:57.612379pt;}
.v13{vertical-align:58.865744pt;}
.ve{vertical-align:72.973491pt;}
.v9{vertical-align:94.723025pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.044813pt;}
.ls38{letter-spacing:0.045113pt;}
.ls39{letter-spacing:0.059376pt;}
.ls2{letter-spacing:0.097031pt;}
.ls7{letter-spacing:0.142806pt;}
.ls22{letter-spacing:0.148432pt;}
.ls2f{letter-spacing:0.151565pt;}
.ls26{letter-spacing:0.171806pt;}
.ls3b{letter-spacing:0.233062pt;}
.ls3c{letter-spacing:0.248737pt;}
.ls3a{letter-spacing:0.249806pt;}
.ls3{letter-spacing:0.260400pt;}
.ls4{letter-spacing:0.260598pt;}
.ls3e{letter-spacing:0.313576pt;}
.ls33{letter-spacing:0.348159pt;}
.ls24{letter-spacing:0.437455pt;}
.ls3f{letter-spacing:0.447999pt;}
.ls3d{letter-spacing:0.504960pt;}
.ls1e{letter-spacing:0.780144pt;}
.ls1b{letter-spacing:0.804077pt;}
.ls18{letter-spacing:0.807442pt;}
.ls19{letter-spacing:0.823732pt;}
.lsc{letter-spacing:0.839883pt;}
.lsd{letter-spacing:0.840435pt;}
.ls8{letter-spacing:0.854420pt;}
.ls23{letter-spacing:0.857361pt;}
.lse{letter-spacing:0.858553pt;}
.ls1c{letter-spacing:0.868243pt;}
.ls12{letter-spacing:1.058272pt;}
.ls2c{letter-spacing:1.060654pt;}
.ls14{letter-spacing:1.065789pt;}
.ls2a{letter-spacing:1.067140pt;}
.lsf{letter-spacing:1.068527pt;}
.ls9{letter-spacing:1.072660pt;}
.ls15{letter-spacing:1.440207pt;}
.ls2d{letter-spacing:1.442291pt;}
.ls20{letter-spacing:1.485656pt;}
.lsa{letter-spacing:1.705451pt;}
.ls1a{letter-spacing:1.707238pt;}
.ls29{letter-spacing:1.709215pt;}
.ls21{letter-spacing:1.716258pt;}
.ls11{letter-spacing:1.717995pt;}
.ls10{letter-spacing:1.732249pt;}
.ls1d{letter-spacing:2.333930pt;}
.ls25{letter-spacing:2.346200pt;}
.lsb{letter-spacing:24.581362pt;}
.ls5{letter-spacing:27.644742pt;}
.ls6{letter-spacing:27.774563pt;}
.ls40{letter-spacing:40.840397pt;}
.ls31{letter-spacing:44.635834pt;}
.ls30{letter-spacing:45.292056pt;}
.ls13{letter-spacing:47.042473pt;}
.ls2b{letter-spacing:47.682059pt;}
.ls16{letter-spacing:54.303264pt;}
.ls34{letter-spacing:63.051002pt;}
.ls17{letter-spacing:65.849565pt;}
.ls2e{letter-spacing:68.393507pt;}
.ls41{letter-spacing:75.444637pt;}
.ls1f{letter-spacing:83.911383pt;}
.ls32{letter-spacing:109.705952pt;}
.ls36{letter-spacing:292.134239pt;}
.ls37{letter-spacing:294.689360pt;}
.ls35{letter-spacing:294.695170pt;}
.ls28{letter-spacing:421.848796pt;}
.ls27{letter-spacing:452.098540pt;}
.ws0{word-spacing:-69.267165pt;}
.ws2a{word-spacing:-46.624650pt;}
.ws2f{word-spacing:-34.569656pt;}
.ws24{word-spacing:-31.023920pt;}
.ws3{word-spacing:-27.655725pt;}
.ws13{word-spacing:-27.582186pt;}
.ws2d{word-spacing:-25.759934pt;}
.ws18{word-spacing:-24.458147pt;}
.ws14{word-spacing:-24.109989pt;}
.ws1a{word-spacing:-23.400914pt;}
.ws2{word-spacing:-23.046558pt;}
.ws1b{word-spacing:-20.741794pt;}
.ws10{word-spacing:-19.522970pt;}
.ws23{word-spacing:-18.082673pt;}
.ws1e{word-spacing:-17.659613pt;}
.ws1c{word-spacing:-17.649838pt;}
.wsa{word-spacing:-16.399120pt;}
.ws2c{word-spacing:-15.932635pt;}
.ws11{word-spacing:-14.509344pt;}
.ws29{word-spacing:-13.827862pt;}
.ws7{word-spacing:-12.884971pt;}
.ws1f{word-spacing:-11.313244pt;}
.ws26{word-spacing:-9.546369pt;}
.ws21{word-spacing:-0.530946pt;}
.ws28{word-spacing:-0.524161pt;}
.ws20{word-spacing:-0.285894pt;}
.ws16{word-spacing:-0.253440pt;}
.ws1{word-spacing:0.000000pt;}
.ws17{word-spacing:0.261119pt;}
.ws5{word-spacing:8.527320pt;}
.ws4{word-spacing:8.553296pt;}
.ws27{word-spacing:15.460050pt;}
.ws9{word-spacing:23.444229pt;}
.wsb{word-spacing:25.846643pt;}
.wsd{word-spacing:25.855796pt;}
.wsc{word-spacing:25.870300pt;}
.ws6{word-spacing:34.769399pt;}
.ws8{word-spacing:36.468801pt;}
.wse{word-spacing:36.708696pt;}
.wsf{word-spacing:37.652853pt;}
.ws2b{word-spacing:61.526500pt;}
.ws12{word-spacing:75.600175pt;}
.ws25{word-spacing:85.559996pt;}
.ws22{word-spacing:341.771371pt;}
.ws1d{word-spacing:353.074856pt;}
.ws19{word-spacing:902.753625pt;}
.ws2e{word-spacing:1270.171719pt;}
.ws15{word-spacing:1275.135164pt;}
._c{margin-left:-1379.459154pt;}
._18{margin-left:-1301.521163pt;}
._7{margin-left:-15.487981pt;}
._19{margin-left:-10.495426pt;}
._e{margin-left:-8.985575pt;}
._5{margin-left:-7.294074pt;}
._2{margin-left:-5.990410pt;}
._12{margin-left:-4.965107pt;}
._8{margin-left:-3.646052pt;}
._6{margin-left:-2.743676pt;}
._3{margin-left:-1.806721pt;}
._0{margin-left:-0.898561pt;}
._1{width:1.048322pt;}
._4{width:1.985277pt;}
._d{width:3.359991pt;}
._b{width:4.934420pt;}
._9{width:6.764370pt;}
._15{width:12.349457pt;}
._16{width:14.795541pt;}
._27{width:16.511970pt;}
._28{width:17.823326pt;}
._29{width:21.715235pt;}
._13{width:25.155800pt;}
._14{width:26.609182pt;}
._24{width:28.578326pt;}
._30{width:35.377976pt;}
._11{width:48.130554pt;}
._20{width:52.033441pt;}
._a{width:56.313627pt;}
._21{width:60.784184pt;}
._1f{width:66.064255pt;}
._25{width:68.211580pt;}
._1e{width:69.823666pt;}
._22{width:71.597770pt;}
._23{width:72.738266pt;}
._26{width:74.934776pt;}
._1d{width:81.355343pt;}
._f{width:91.260853pt;}
._2e{width:92.261283pt;}
._2a{width:96.096156pt;}
._2d{width:105.511371pt;}
._1c{width:109.669985pt;}
._2f{width:277.461652pt;}
._2b{width:312.358665pt;}
._2c{width:313.735505pt;}
._1b{width:370.226516pt;}
._17{width:388.068971pt;}
._10{width:829.623057pt;}
._1a{width:838.605890pt;}
.fs1a{font-size:40.842034pt;}
.fs20{font-size:42.240573pt;}
.fs19{font-size:42.699325pt;}
.fs11{font-size:43.476581pt;}
.fs1b{font-size:46.412594pt;}
.fsa{font-size:46.516141pt;}
.fs21{font-size:46.720613pt;}
.fs15{font-size:49.920081pt;}
.fs10{font-size:52.380302pt;}
.fs12{font-size:52.381613pt;}
.fs1d{font-size:56.320326pt;}
.fs22{font-size:58.240531pt;}
.fs25{font-size:58.861813pt;}
.fs26{font-size:58.865745pt;}
.fs9{font-size:59.202600pt;}
.fs5{font-size:62.079630pt;}
.fs1c{font-size:65.280408pt;}
.fs8{font-size:66.559671pt;}
.fsd{font-size:70.480034pt;}
.fs23{font-size:70.498384pt;}
.fs0{font-size:74.880121pt;}
.fs17{font-size:78.096628pt;}
.fs18{font-size:78.139882pt;}
.fsb{font-size:81.757469pt;}
.fs24{font-size:82.129713pt;}
.fs6{font-size:83.200572pt;}
.fs14{font-size:84.479834pt;}
.fse{font-size:87.039670pt;}
.fs1e{font-size:93.439916pt;}
.fs7{font-size:99.840162pt;}
.fs2{font-size:103.039629pt;}
.fsc{font-size:105.720052pt;}
.fsf{font-size:111.999711pt;}
.fs13{font-size:122.045069pt;}
.fs4{font-size:124.800202pt;}
.fs1f{font-size:131.200448pt;}
.fs16{font-size:149.760243pt;}
.fs3{font-size:168.320037pt;}
.fs1{font-size:252.799872pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:5.121391pt;}
.y68{bottom:7.359655pt;}
.yd4{bottom:99.680745pt;}
.y79{bottom:100.156076pt;}
.y6c{bottom:111.196319pt;}
.y9e{bottom:111.357898pt;}
.yef{bottom:111.830269pt;}
.y124{bottom:113.600896pt;}
.y85{bottom:114.560916pt;}
.y12a{bottom:117.278393pt;}
.ye8{bottom:125.430063pt;}
.y37{bottom:126.244851pt;}
.y113{bottom:127.361661pt;}
.y1d{bottom:131.366790pt;}
.yfa{bottom:133.760081pt;}
.y96{bottom:135.832595pt;}
.y84{bottom:136.479409pt;}
.yc6{bottom:137.279233pt;}
.y31{bottom:137.283798pt;}
.y122{bottom:139.357755pt;}
.y129{bottom:139.684398pt;}
.yd2{bottom:146.079464pt;}
.y32{bottom:148.160459pt;}
.y66{bottom:148.797152pt;}
.y1b{bottom:149.926295pt;}
.y2e{bottom:150.399559pt;}
.y2f{bottom:152.166654pt;}
.y110{bottom:152.803081pt;}
.ye9{bottom:154.231308pt;}
.y2{bottom:157.765726pt;}
.y25{bottom:159.845214pt;}
.y92{bottom:161.596308pt;}
.y60{bottom:164.318504pt;}
.y61{bottom:164.802823pt;}
.y70{bottom:165.280087pt;}
.y26{bottom:166.556842pt;}
.y116{bottom:166.873412pt;}
.yf7{bottom:168.000053pt;}
.yd0{bottom:169.120083pt;}
.y63{bottom:171.519546pt;}
.y42{bottom:171.677604pt;}
.y64{bottom:172.162973pt;}
.y1c{bottom:172.487711pt;}
.y30{bottom:173.287193pt;}
.y112{bottom:174.237893pt;}
.y83{bottom:178.239021pt;}
.y57{bottom:179.357342pt;}
.y58{bottom:180.000833pt;}
.y6f{bottom:180.160257pt;}
.y1{bottom:180.160294pt;}
.yf0{bottom:181.910034pt;}
.yea{bottom:183.029342pt;}
.y5f{bottom:184.319411pt;}
.y56{bottom:185.440549pt;}
.y54{bottom:186.084041pt;}
.y5e{bottom:186.720860pt;}
.y5b{bottom:187.361047pt;}
.y36{bottom:188.158216pt;}
.y50{bottom:188.482121pt;}
.y55{bottom:189.119004pt;}
.y62{bottom:190.402619pt;}
.y4d{bottom:190.880265pt;}
.y7c{bottom:191.361372pt;}
.y51{bottom:191.523757pt;}
.y5d{bottom:192.800763pt;}
.y5a{bottom:193.437582pt;}
.y4b{bottom:193.921837pt;}
.y4c{bottom:194.558720pt;}
.y127{bottom:196.327930pt;}
.y4e{bottom:196.963473pt;}
.y4f{bottom:197.600292pt;}
.y136{bottom:199.831713pt;}
.y117{bottom:199.833462pt;}
.yad{bottom:199.844202pt;}
.y52{bottom:201.282051pt;}
.y53{bottom:204.317014pt;}
.yf6{bottom:205.445223pt;}
.y5c{bottom:206.078275pt;}
.y91{bottom:206.236224pt;}
.y7b{bottom:206.237749pt;}
.y41{bottom:210.081798pt;}
.yeb{bottom:211.833860pt;}
.yac{bottom:212.005913pt;}
.ycf{bottom:216.957036pt;}
.yfd{bottom:219.364062pt;}
.y111{bottom:220.961819pt;}
.y59{bottom:221.919841pt;}
.y29{bottom:221.924087pt;}
.y2b{bottom:223.681140pt;}
.yb5{bottom:226.887917pt;}
.y118{bottom:232.793565pt;}
.yce{bottom:233.753635pt;}
.y10f{bottom:235.038389pt;}
.y2d{bottom:235.516303pt;}
.y19{bottom:235.686785pt;}
.y90{bottom:236.156608pt;}
.y27{bottom:238.401364pt;}
.y33{bottom:238.875976pt;}
.yb4{bottom:239.046586pt;}
.y2c{bottom:239.205390pt;}
.yec{bottom:240.631895pt;}
.y9{bottom:240.638941pt;}
.y9d{bottom:242.393241pt;}
.yf5{bottom:242.719904pt;}
.yfc{bottom:245.437691pt;}
.y1a{bottom:246.242556pt;}
.y40{bottom:248.321936pt;}
.y23{bottom:249.286852pt;}
.ycd{bottom:250.554514pt;}
.y24{bottom:255.999031pt;}
.y28{bottom:257.128044pt;}
.y2a{bottom:258.885052pt;}
.y93{bottom:260.153746pt;}
.y43{bottom:260.633608pt;}
.y8{bottom:265.279395pt;}
.y119{bottom:265.753615pt;}
.yb7{bottom:265.913755pt;}
.yb6{bottom:266.236007pt;}
.yb8{bottom:266.395352pt;}
.ycc{bottom:267.518666pt;}
.yed{bottom:269.594306pt;}
.y6e{bottom:269.921372pt;}
.y10e{bottom:272.484524pt;}
.y35{bottom:272.963118pt;}
.y9c{bottom:273.757697pt;}
.y135{bottom:280.482584pt;}
.y123{bottom:281.437777pt;}
.ycb{bottom:284.319545pt;}
.y6d{bottom:284.797748pt;}
.y3f{bottom:286.726171pt;}
.yff{bottom:289.765025pt;}
.y7{bottom:289.919850pt;}
.y8f{bottom:295.997301pt;}
.yee{bottom:298.392341pt;}
.y11a{bottom:298.713665pt;}
.yab{bottom:303.515258pt;}
.ya4{bottom:303.837751pt;}
.yc5{bottom:304.473003pt;}
.y97{bottom:304.473956pt;}
.ybe{bottom:304.798773pt;}
.y9b{bottom:305.112669pt;}
.y102{bottom:305.594992pt;}
.y44{bottom:306.075520pt;}
.y16{bottom:308.484060pt;}
.y20{bottom:309.283542pt;}
.yf1{bottom:309.444684pt;}
.y10d{bottom:309.915456pt;}
.yd3{bottom:315.204596pt;}
.yfe{bottom:315.838686pt;}
.yaa{bottom:317.275764pt;}
.ya3{bottom:317.598289pt;}
.y18{bottom:317.761540pt;}
.yc4{bottom:318.077177pt;}
.ybd{bottom:318.396425pt;}
.y1e{bottom:325.760820pt;}
.y101{bottom:327.998709pt;}
.y82{bottom:328.323014pt;}
.y14{bottom:328.963204pt;}
.y65{bottom:329.274041pt;}
.y17{bottom:329.767230pt;}
.ya9{bottom:331.515190pt;}
.y11b{bottom:331.673716pt;}
.ya2{bottom:331.837683pt;}
.yc3{bottom:332.319848pt;}
.ybc{bottom:332.635819pt;}
.y9a{bottom:336.639233pt;}
.y21{bottom:336.804396pt;}
.y69{bottom:341.764024pt;}
.y22{bottom:343.515056pt;}
.ya8{bottom:344.477559pt;}
.y1f{bottom:344.486573pt;}
.ya1{bottom:344.796839pt;}
.yc2{bottom:345.275695pt;}
.ybb{bottom:345.598220pt;}
.y10c{bottom:347.361637pt;}
.ye5{bottom:349.275564pt;}
.y130{bottom:350.880780pt;}
.y45{bottom:351.513451pt;}
.y15{bottom:352.645704pt;}
.y6{bottom:353.767249pt;}
.y81{bottom:354.396675pt;}
.y8e{bottom:355.838032pt;}
.ya7{bottom:357.915571pt;}
.ya0{bottom:358.238096pt;}
.y94{bottom:358.718313pt;}
.yc1{bottom:358.720230pt;}
.yba{bottom:359.199118pt;}
.ydb{bottom:360.792122pt;}
.y134{bottom:361.118299pt;}
.yde{bottom:362.872116pt;}
.y3e{bottom:363.356818pt;}
.y11c{bottom:364.633792pt;}
.y99{bottom:367.994205pt;}
.ya6{bottom:371.995357pt;}
.y9f{bottom:372.637130pt;}
.yc0{bottom:372.796770pt;}
.yb9{bottom:373.438512pt;}
.y34{bottom:374.243783pt;}
.y10b{bottom:384.640216pt;}
.y8d{bottom:385.758416pt;}
.y12f{bottom:388.326915pt;}
.ya5{bottom:389.117847pt;}
.ybf{bottom:389.919229pt;}
.y7a{bottom:390.566373pt;}
.ydf{bottom:391.676634pt;}
.y104{bottom:393.116620pt;}
.y100{bottom:395.525886pt;}
.y46{bottom:397.116034pt;}
.y11d{bottom:397.593842pt;}
.y98{bottom:399.358691pt;}
.yf4{bottom:399.358826pt;}
.y80{bottom:400.317753pt;}
.yc8{bottom:401.279205pt;}
.y3d{bottom:401.761011pt;}
.yb3{bottom:407.207733pt;}
.y103{bottom:415.520337pt;}
.y8c{bottom:415.678762pt;}
.yc9{bottom:415.999055pt;}
.ye6{bottom:419.355616pt;}
.yb2{bottom:419.366371pt;}
.ye0{bottom:420.632593pt;}
.y5{bottom:421.935587pt;}
.y10a{bottom:422.086351pt;}
.yda{bottom:425.605145pt;}
.y106{bottom:426.242649pt;}
.y7f{bottom:426.402017pt;}
.y11e{bottom:430.553919pt;}
.yb1{bottom:431.525009pt;}
.y12{bottom:432.643807pt;}
.yf3{bottom:436.802123pt;}
.y12e{bottom:437.442629pt;}
.y76{bottom:437.919470pt;}
.y3c{bottom:440.001149pt;}
.y133{bottom:441.921546pt;}
.y47{bottom:442.558765pt;}
.yca{bottom:443.834068pt;}
.y13{bottom:445.117971pt;}
.ye1{bottom:449.437080pt;}
.yd{bottom:450.245652pt;}
.yb0{bottom:451.682426pt;}
.yd9{bottom:451.838174pt;}
.y105{bottom:452.316310pt;}
.y95{bottom:457.435416pt;}
.y11f{bottom:463.513969pt;}
.yaf{bottom:463.844167pt;}
.y8b{bottom:464.160715pt;}
.y75{bottom:464.163134pt;}
.yc{bottom:468.963496pt;}
.yf{bottom:471.838838pt;}
.y7e{bottom:473.918448pt;}
.yf2{bottom:474.078700pt;}
.y12d{bottom:474.873537pt;}
.yae{bottom:476.002806pt;}
.yd8{bottom:477.922438pt;}
.ye2{bottom:478.234485pt;}
.y3b{bottom:478.405343pt;}
.y10{bottom:481.761545pt;}
.y126{bottom:482.247127pt;}
.y11{bottom:484.320903pt;}
.y38{bottom:484.637421pt;}
.y48{bottom:487.995096pt;}
.y4{bottom:490.073036pt;}
.y74{bottom:490.236763pt;}
.y8a{bottom:494.081081pt;}
.y120{bottom:496.319122pt;}
.y109{bottom:496.963417pt;}
.y125{bottom:501.114270pt;}
.yd7{bottom:504.166102pt;}
.ye3{bottom:507.037681pt;}
.y87{bottom:507.356348pt;}
.y73{bottom:516.480427pt;}
.y3a{bottom:516.795872pt;}
.y132{bottom:522.557214pt;}
.y12c{bottom:523.836921pt;}
.y86{bottom:524.641274pt;}
.yf9{bottom:525.756433pt;}
.y121{bottom:529.279199pt;}
.y6b{bottom:531.204262pt;}
.ye{bottom:531.361341pt;}
.y49{bottom:533.437827pt;}
.y108{bottom:534.394349pt;}
.ye4{bottom:535.835731pt;}
.y89{bottom:539.680688pt;}
.y67{bottom:542.235722pt;}
.y72{bottom:542.724075pt;}
.yf8{bottom:548.160151pt;}
.ye7{bottom:548.642670pt;}
.yfb{bottom:552.477575pt;}
.yd5{bottom:552.957885pt;}
.y39{bottom:555.036010pt;}
.y6a{bottom:556.480161pt;}
.y3{bottom:558.241375pt;}
.yd6{bottom:558.723688pt;}
.y128{bottom:560.955920pt;}
.y12b{bottom:561.283056pt;}
.yb{bottom:563.035026pt;}
.y71{bottom:568.797736pt;}
.y107{bottom:571.840507pt;}
.y88{bottom:577.126846pt;}
.y4a{bottom:579.040410pt;}
.yc7{bottom:585.756636pt;}
.y78{bottom:604.646524pt;}
.y115{bottom:604.790351pt;}
.ydd{bottom:606.230636pt;}
.y7d{bottom:627.515196pt;}
.ya{bottom:627.679575pt;}
.y131{bottom:639.526947pt;}
.ydc{bottom:646.559149pt;}
.y77{bottom:650.240056pt;}
.y114{bottom:650.404435pt;}
.h3a{height:26.724812pt;}
.h31{height:30.711295pt;}
.h30{height:31.211371pt;}
.h22{height:32.692351pt;}
.h32{height:33.925612pt;}
.h33{height:35.214619pt;}
.h25{height:36.485406pt;}
.h34{height:37.112512pt;}
.h24{height:38.287750pt;}
.h21{height:39.387532pt;}
.h23{height:39.388518pt;}
.h3f{height:42.013694pt;}
.h29{height:42.924445pt;}
.hf{height:43.274557pt;}
.h7{height:45.195668pt;}
.h1e{height:45.377542pt;}
.h40{height:46.469673pt;}
.h12{height:46.472486pt;}
.he{height:46.490659pt;}
.h42{height:46.680972pt;}
.h1b{height:47.104662pt;}
.h38{height:47.717173pt;}
.h39{height:48.427781pt;}
.hb{height:48.652259pt;}
.h1a{height:51.517877pt;}
.h8{height:53.379994pt;}
.h37{height:54.734151pt;}
.h15{height:55.369926pt;}
.h35{height:56.306341pt;}
.h46{height:58.545660pt;}
.h47{height:58.549571pt;}
.h4a{height:58.876415pt;}
.hc{height:58.889689pt;}
.h4b{height:58.891515pt;}
.h2d{height:58.902264pt;}
.hd{height:58.922221pt;}
.h27{height:61.751129pt;}
.h9{height:62.562930pt;}
.h1f{height:63.622259pt;}
.h2{height:64.752292pt;}
.h2a{height:65.449752pt;}
.h3b{height:68.026814pt;}
.h44{height:70.119731pt;}
.ha{height:72.978868pt;}
.h18{height:74.962268pt;}
.h13{height:74.962441pt;}
.h14{height:74.963281pt;}
.h17{height:74.975019pt;}
.h1c{height:74.986643pt;}
.h11{height:74.993051pt;}
.h1d{height:77.276815pt;}
.h2e{height:79.965151pt;}
.h2f{height:80.009440pt;}
.h45{height:81.688587pt;}
.h19{height:81.767827pt;}
.h36{height:81.866976pt;}
.h41{height:86.501080pt;}
.h4{height:89.103117pt;}
.h49{height:90.179478pt;}
.h3c{height:91.223585pt;}
.h43{height:92.442337pt;}
.h6{height:93.843902pt;}
.h20{height:96.851312pt;}
.h3d{height:98.656587pt;}
.h4c{height:107.920487pt;}
.h48{height:111.398150pt;}
.h28{height:112.282281pt;}
.h2b{height:112.612682pt;}
.h16{height:116.248048pt;}
.h2c{height:117.755846pt;}
.h26{height:121.389553pt;}
.h10{height:128.724325pt;}
.h3e{height:129.504585pt;}
.h5{height:145.554095pt;}
.h3{height:218.607702pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w2{width:26.072480pt;}
.w3{width:332.962376pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xb2{left:44.316870pt;}
.xb3{left:70.078240pt;}
.x9{left:85.598302pt;}
.xb0{left:88.633740pt;}
.x32{left:89.755632pt;}
.x7c{left:94.087652pt;}
.xaa{left:97.439221pt;}
.x9a{left:99.680529pt;}
.x6d{left:101.918242pt;}
.x93{left:104.002201pt;}
.x81{left:104.962315pt;}
.x98{left:106.240814pt;}
.xb1{left:109.763857pt;}
.x97{left:111.520888pt;}
.x96{left:116.800963pt;}
.x7f{left:120.481549pt;}
.xa1{left:129.446699pt;}
.x7e{left:130.563814pt;}
.x99{left:144.480093pt;}
.xa4{left:149.121320pt;}
.xa{left:151.521341pt;}
.x83{left:154.239160pt;}
.xa3{left:166.556867pt;}
.xa2{left:170.243730pt;}
.xa9{left:176.322942pt;}
.x8c{left:189.277836pt;}
.x3{left:192.315531pt;}
.x89{left:193.435974pt;}
.x84{left:196.316136pt;}
.x68{left:198.720190pt;}
.x80{left:200.157140pt;}
.x35{left:204.641262pt;}
.x88{left:205.914743pt;}
.x34{left:212.001019pt;}
.x4{left:214.873715pt;}
.x33{left:219.200940pt;}
.x85{left:233.916013pt;}
.xc{left:241.446191pt;}
.x13{left:244.001828pt;}
.x2f{left:246.076559pt;}
.x17{left:247.197377pt;}
.x6a{left:248.642067pt;}
.x19{left:250.400146pt;}
.x69{left:252.323095pt;}
.xad{left:256.959980pt;}
.x6c{left:258.080119pt;}
.x36{left:260.482682pt;}
.x86{left:264.478225pt;}
.xac{left:267.361089pt;}
.x87{left:271.675213pt;}
.x37{left:273.119124pt;}
.xab{left:276.318996pt;}
.x9b{left:279.839442pt;}
.x38{left:285.760878pt;}
.x7a{left:286.717508pt;}
.xae{left:291.039758pt;}
.x39{left:298.402632pt;}
.x8d{left:303.838672pt;}
.x14{left:308.641454pt;}
.x3a{left:311.039074pt;}
.xa0{left:312.488005pt;}
.x7{left:314.401696pt;}
.x1{left:322.564058pt;}
.x3b{left:323.680829pt;}
.x15{left:327.042946pt;}
.x18{left:329.762405pt;}
.x3c{left:336.323911pt;}
.x74{left:338.084341pt;}
.x16{left:343.201047pt;}
.x3d{left:348.958345pt;}
.x6{left:353.117006pt;}
.x5{left:357.598255pt;}
.x3e{left:361.599451pt;}
.x2{left:369.108807pt;}
.x3f{left:374.243829pt;}
.x95{left:382.718599pt;}
.x79{left:385.923950pt;}
.x40{left:386.878295pt;}
.x1e{left:392.638870pt;}
.x20{left:393.761617pt;}
.x41{left:399.519369pt;}
.x8a{left:401.436121pt;}
.xa5{left:408.796853pt;}
.x42{left:412.163780pt;}
.x1f{left:414.078298pt;}
.x21{left:415.204189pt;}
.x8b{left:417.913658pt;}
.xa6{left:423.202482pt;}
.x43{left:424.798245pt;}
.x72{left:433.595386pt;}
.x44{left:437.598529pt;}
.x10{left:441.761039pt;}
.x45{left:450.242940pt;}
.x1c{left:453.445846pt;}
.x46{left:462.884046pt;}
.x8{left:470.558532pt;}
.x47{left:475.518480pt;}
.x8e{left:477.918340pt;}
.x11{left:487.034471pt;}
.x48{left:488.162890pt;}
.x1a{left:495.044862pt;}
.x1b{left:496.636318pt;}
.xd{left:497.604265pt;}
.x49{left:500.803964pt;}
.x4a{left:513.438430pt;}
.x4b{left:526.082840pt;}
.x27{left:535.043396pt;}
.x4c{left:538.723915pt;}
.x1d{left:539.998101pt;}
.x22{left:546.238120pt;}
.x28{left:550.087006pt;}
.xe{left:552.157037pt;}
.x4d{left:564.002791pt;}
.x23{left:567.682656pt;}
.x24{left:574.397193pt;}
.x4e{left:576.643865pt;}
.x31{left:577.753471pt;}
.x4f{left:589.278331pt;}
.x50{left:601.922709pt;}
.x82{left:605.764114pt;}
.x2a{left:608.480697pt;}
.x75{left:610.722688pt;}
.x51{left:614.563783pt;}
.x52{left:627.198249pt;}
.x7b{left:636.325676pt;}
.x53{left:639.842692pt;}
.x30{left:647.992167pt;}
.x12{left:652.637412pt;}
.xaf{left:657.123338pt;}
.x25{left:660.800679pt;}
.x54{left:665.118232pt;}
.xa7{left:669.443313pt;}
.xf{left:671.675229pt;}
.x55{left:677.762610pt;}
.x76{left:679.359968pt;}
.x7d{left:681.123924pt;}
.x77{left:683.198222pt;}
.x56{left:690.403684pt;}
.x57{left:703.038150pt;}
.x6b{left:704.155445pt;}
.x78{left:707.834848pt;}
.x58{left:715.682528pt;}
.x59{left:728.323667pt;}
.x5a{left:740.958068pt;}
.x2c{left:751.523247pt;}
.x2b{left:753.277032pt;}
.xa8{left:758.874474pt;}
.x5b{left:766.243585pt;}
.x2d{left:770.568282pt;}
.x8f{left:772.472645pt;}
.x94{left:777.914011pt;}
.x5c{left:778.878051pt;}
.x26{left:783.523818pt;}
.x92{left:788.318261pt;}
.x91{left:789.606904pt;}
.x5d{left:791.522429pt;}
.x29{left:796.477640pt;}
.x70{left:802.396992pt;}
.x5e{left:804.163503pt;}
.x2e{left:817.275153pt;}
.x5f{left:829.601589pt;}
.x71{left:837.439451pt;}
.x9f{left:839.996252pt;}
.x60{left:842.242663pt;}
.x61{left:854.883802pt;}
.x6f{left:863.840022pt;}
.x62{left:867.521572pt;}
.xb{left:875.031425pt;}
.x63{left:880.162646pt;}
.x9e{left:889.281451pt;}
.x64{left:892.803720pt;}
.x65{left:905.441490pt;}
.x66{left:918.082564pt;}
.x9c{left:920.154118pt;}
.x9d{left:924.473679pt;}
.x67{left:930.723638pt;}
.x73{left:953.757199pt;}
.x90{left:969.603740pt;}
.x6e{left:973.120137pt;}
}




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