
    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_9bc066e97ad7d61fa8d9f7f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011000;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_acbd5f221cea18357d3984ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.383000;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_3cd65662d1c765a215c4b26f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bfc29b844c90cbbc0aba6d4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_c194140f8724690b5ca04b73.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_8dc8b6d9d1628947f2d67089.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_0f08b61fe17afe5055e915b7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_362625ef74727e30c83e9708.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.922000;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_2b895687478b60ba3a0ff946.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.242000;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_ce795a00daa4b71e3b3a7bb7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.460000;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_717be9f92a41c0151d38122a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.161000;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.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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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:-19.528800px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.528800px;}
.ls18{letter-spacing:-9.325017px;}
.ls19{letter-spacing:-7.699117px;}
.ls17{letter-spacing:-6.981808px;}
.lsa{letter-spacing:-3.945216px;}
.ls16{letter-spacing:-2.958912px;}
.lsb{letter-spacing:-2.474726px;}
.ls6{letter-spacing:-1.960645px;}
.ls1b{letter-spacing:-1.721549px;}
.ls1a{letter-spacing:-1.560154px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000086px;}
.lsd{letter-spacing:0.000360px;}
.ls10{letter-spacing:2.988528px;}
.lse{letter-spacing:2.989022px;}
.ls11{letter-spacing:2.989128px;}
.ls9{letter-spacing:2.992629px;}
.ls8{letter-spacing:4.483188px;}
.ls15{letter-spacing:8.966222px;}
.ls14{letter-spacing:11.954928px;}
.ls12{letter-spacing:11.955360px;}
.ls13{letter-spacing:11.955461px;}
.lsc{letter-spacing:15.971026px;}
.ls0{letter-spacing:17.883226px;}
.ls2{letter-spacing:18.131626px;}
.ls4{letter-spacing:18.737026px;}
.ls1{letter-spacing:28.818826px;}
.ls5{letter-spacing:36.142426px;}
.ls3{letter-spacing:39.050626px;}
.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;}
}
.ws4{word-spacing:-16.438350px;}
.ws2{word-spacing:-0.179327px;}
.ws3{word-spacing:-0.071731px;}
.ws5{word-spacing:-0.065753px;}
.ws6{word-spacing:-0.053798px;}
.ws1{word-spacing:-0.047821px;}
.ws7{word-spacing:-0.046745px;}
.wsa{word-spacing:-0.035866px;}
.ws8{word-spacing:0.000000px;}
.ws9{word-spacing:1.506355px;}
.ws0{word-spacing:1.912824px;}
._8{margin-left:-26.463433px;}
._2{margin-left:-11.969496px;}
._5{margin-left:-8.930534px;}
._4{margin-left:-7.155187px;}
._6{margin-left:-5.218445px;}
._3{margin-left:-3.945216px;}
._1{margin-left:-2.247568px;}
._0{width:1.960645px;}
._7{width:5.983248px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,128,172);}
.fs1{font-size:0.001200px;}
.fs8{font-size:35.865600px;}
.fs9{font-size:46.744800px;}
.fs0{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs6{font-size:65.753400px;}
.fs4{font-size:66.949200px;}
.fs5{font-size:71.731200px;}
.fs2{font-size:74.719800px;}
.fs3{font-size:179.327400px;}
.y0{bottom:0.000000px;}
.yc3{bottom:94.703100px;}
.yc1{bottom:109.646850px;}
.yc2{bottom:109.647000px;}
.y56{bottom:145.870350px;}
.yc0{bottom:146.413800px;}
.ybf{bottom:146.414049px;}
.y55{bottom:160.814400px;}
.ybe{bottom:162.852150px;}
.ybd{bottom:162.852399px;}
.ybc{bottom:179.290500px;}
.ybb{bottom:179.290749px;}
.yba{bottom:195.728850px;}
.yb9{bottom:195.729099px;}
.yb8{bottom:212.167200px;}
.yb7{bottom:212.167449px;}
.yb6{bottom:228.605550px;}
.y54{bottom:231.427650px;}
.y53{bottom:231.427749px;}
.yb5{bottom:245.043900px;}
.yb4{bottom:245.044299px;}
.y52{bottom:247.865850px;}
.y51{bottom:247.866249px;}
.yb3{bottom:261.482400px;}
.yb2{bottom:261.482499px;}
.y50{bottom:264.304350px;}
.y4f{bottom:264.304599px;}
.yb1{bottom:277.920600px;}
.yb0{bottom:277.920849px;}
.y4e{bottom:280.742700px;}
.y4d{bottom:280.742949px;}
.yaf{bottom:294.358950px;}
.yae{bottom:294.359349px;}
.y4c{bottom:297.181050px;}
.y4b{bottom:297.181299px;}
.yad{bottom:310.797450px;}
.yac{bottom:310.797699px;}
.y4a{bottom:313.619400px;}
.y49{bottom:313.619649px;}
.yab{bottom:327.235800px;}
.yaa{bottom:327.236049px;}
.y48{bottom:330.057750px;}
.y47{bottom:330.057849px;}
.ya9{bottom:343.674150px;}
.ya8{bottom:343.674399px;}
.y45{bottom:346.495950px;}
.y46{bottom:346.496100px;}
.y44{bottom:346.496349px;}
.ya7{bottom:360.112500px;}
.ya6{bottom:360.112899px;}
.y42{bottom:362.934450px;}
.y43{bottom:362.934600px;}
.y41{bottom:362.934699px;}
.ya5{bottom:376.551000px;}
.ya4{bottom:376.551099px;}
.y40{bottom:379.372800px;}
.y3f{bottom:379.372950px;}
.y3e{bottom:379.373199px;}
.ya3{bottom:392.989200px;}
.ya2{bottom:392.989599px;}
.y3c{bottom:395.811300px;}
.y3d{bottom:395.811450px;}
.y3b{bottom:395.811849px;}
.ya1{bottom:409.427700px;}
.ya0{bottom:409.427949px;}
.y3a{bottom:412.249950px;}
.y39{bottom:412.250199px;}
.y9e{bottom:425.865699px;}
.y9f{bottom:425.866050px;}
.y38{bottom:428.688300px;}
.y37{bottom:428.688549px;}
.y9d{bottom:442.303800px;}
.y9c{bottom:442.303950px;}
.y9b{bottom:442.304100px;}
.y98{bottom:442.304199px;}
.y99{bottom:442.304250px;}
.y9a{bottom:442.304400px;}
.y36{bottom:445.126650px;}
.y35{bottom:445.126899px;}
.y97{bottom:458.742300px;}
.y96{bottom:458.742450px;}
.y95{bottom:458.742600px;}
.y94{bottom:458.742750px;}
.y93{bottom:458.742849px;}
.y34{bottom:461.565000px;}
.y33{bottom:461.565249px;}
.y92{bottom:475.180950px;}
.y91{bottom:475.181100px;}
.y90{bottom:475.181250px;}
.y8f{bottom:475.181349px;}
.y32{bottom:478.003350px;}
.y31{bottom:478.003599px;}
.y8e{bottom:491.619450px;}
.y8d{bottom:491.619600px;}
.y8c{bottom:491.619699px;}
.y30{bottom:494.441700px;}
.y2f{bottom:494.441949px;}
.y8b{bottom:508.057800px;}
.y8a{bottom:508.058100px;}
.y89{bottom:508.058199px;}
.y2e{bottom:510.880050px;}
.y2d{bottom:510.880299px;}
.y88{bottom:524.496300px;}
.y87{bottom:524.496450px;}
.y86{bottom:524.496600px;}
.y85{bottom:524.496699px;}
.y2c{bottom:527.318400px;}
.y2b{bottom:527.318799px;}
.y84{bottom:540.934800px;}
.y83{bottom:540.934950px;}
.y82{bottom:540.935349px;}
.y2a{bottom:543.756900px;}
.y29{bottom:543.757149px;}
.y81{bottom:557.373450px;}
.y80{bottom:557.373699px;}
.y28{bottom:560.195250px;}
.y27{bottom:560.195499px;}
.y7e{bottom:573.811800px;}
.y7f{bottom:573.811950px;}
.y7d{bottom:573.812199px;}
.y26{bottom:576.633600px;}
.y25{bottom:576.633849px;}
.y7b{bottom:590.250300px;}
.y7c{bottom:590.250450px;}
.y7a{bottom:590.250699px;}
.y24{bottom:593.071950px;}
.y23{bottom:593.072199px;}
.y79{bottom:606.688800px;}
.y78{bottom:606.689049px;}
.y22{bottom:609.510300px;}
.y21{bottom:609.510549px;}
.y77{bottom:623.127150px;}
.y76{bottom:623.127399px;}
.y20{bottom:625.948650px;}
.y1f{bottom:625.948899px;}
.y75{bottom:639.565500px;}
.y74{bottom:639.565749px;}
.y1e{bottom:642.387000px;}
.y1d{bottom:642.387249px;}
.y73{bottom:656.003850px;}
.y72{bottom:656.004249px;}
.y1c{bottom:658.825350px;}
.y1b{bottom:658.825599px;}
.y71{bottom:672.442350px;}
.y70{bottom:672.442599px;}
.y1a{bottom:675.263700px;}
.y6f{bottom:688.880700px;}
.y6e{bottom:688.880949px;}
.yec{bottom:704.910600px;}
.yeb{bottom:704.910713px;}
.y6d{bottom:705.319050px;}
.y6c{bottom:705.319299px;}
.y11a{bottom:705.696900px;}
.y119{bottom:705.697299px;}
.y19{bottom:706.645950px;}
.y18{bottom:706.646058px;}
.yea{bottom:719.854650px;}
.y6b{bottom:721.757400px;}
.y118{bottom:722.135400px;}
.y17{bottom:726.072900px;}
.y16{bottom:726.073050px;}
.y15{bottom:726.073200px;}
.y14{bottom:726.073608px;}
.y117{bottom:727.017450px;}
.ye9{bottom:734.798550px;}
.ye8{bottom:734.798663px;}
.y6a{bottom:738.195750px;}
.y69{bottom:738.196149px;}
.y13{bottom:745.500450px;}
.y12{bottom:745.500708px;}
.y116{bottom:748.802700px;}
.y115{bottom:748.803099px;}
.ye6{bottom:749.742563px;}
.ye7{bottom:749.742600px;}
.y68{bottom:754.634250px;}
.y67{bottom:754.634349px;}
.ye4{bottom:764.686462px;}
.ye5{bottom:764.686500px;}
.y11{bottom:764.927550px;}
.y114{bottom:765.241200px;}
.y113{bottom:770.123400px;}
.y66{bottom:771.072450px;}
.y65{bottom:771.072849px;}
.ye3{bottom:779.630400px;}
.y112{bottom:781.679799px;}
.y64{bottom:787.510950px;}
.y63{bottom:787.511199px;}
.ye2{bottom:794.574300px;}
.ye1{bottom:794.574413px;}
.y111{bottom:798.117900px;}
.y10{bottom:799.297902px;}
.y110{bottom:803.000100px;}
.y62{bottom:803.949300px;}
.y61{bottom:803.949549px;}
.ydf{bottom:809.518312px;}
.ye0{bottom:809.518350px;}
.y10f{bottom:814.556250px;}
.y10e{bottom:814.556499px;}
.yc{bottom:820.219602px;}
.yf{bottom:820.219950px;}
.ye{bottom:820.220100px;}
.yd{bottom:820.220250px;}
.y60{bottom:820.387650px;}
.y5f{bottom:820.387899px;}
.ydd{bottom:824.462250px;}
.yde{bottom:824.462400px;}
.ydc{bottom:824.462550px;}
.y10d{bottom:830.994600px;}
.y10c{bottom:830.994849px;}
.y5e{bottom:836.826000px;}
.y5d{bottom:836.826249px;}
.ydb{bottom:839.406150px;}
.yda{bottom:839.406300px;}
.yd9{bottom:839.406562px;}
.ya{bottom:841.141152px;}
.yb{bottom:841.141800px;}
.y10b{bottom:847.432950px;}
.y10a{bottom:852.315150px;}
.y5c{bottom:853.264350px;}
.y5b{bottom:853.264449px;}
.yd8{bottom:854.350500px;}
.yd7{bottom:854.350612px;}
.y8{bottom:862.062852px;}
.y9{bottom:862.063350px;}
.yd5{bottom:869.294513px;}
.yd6{bottom:869.294550px;}
.y5a{bottom:869.702550px;}
.y59{bottom:869.702700px;}
.y58{bottom:869.702949px;}
.y109{bottom:873.837300px;}
.y108{bottom:873.837549px;}
.y7{bottom:882.985050px;}
.yd4{bottom:884.238450px;}
.yd3{bottom:884.238600px;}
.y57{bottom:886.141050px;}
.y107{bottom:890.275650px;}
.y106{bottom:917.367712px;}
.yd2{bottom:917.862450px;}
.y104{bottom:932.311613px;}
.y105{bottom:932.311650px;}
.y6{bottom:939.634500px;}
.y103{bottom:947.255550px;}
.yd1{bottom:958.211100px;}
.yff{bottom:962.199263px;}
.y102{bottom:962.199300px;}
.y100{bottom:962.199450px;}
.y101{bottom:962.199600px;}
.yfe{bottom:977.143200px;}
.yfd{bottom:977.143350px;}
.yfc{bottom:977.143500px;}
.yfb{bottom:977.143613px;}
.yf9{bottom:992.087513px;}
.yfa{bottom:992.087550px;}
.yd0{bottom:992.582100px;}
.ycf{bottom:992.582250px;}
.y5{bottom:994.797750px;}
.yf7{bottom:1007.031412px;}
.yf8{bottom:1007.031450px;}
.y4{bottom:1015.848450px;}
.yf6{bottom:1021.975350px;}
.yce{bottom:1029.942150px;}
.ycd{bottom:1029.942249px;}
.yf4{bottom:1036.919362px;}
.yf5{bottom:1036.919400px;}
.y3{bottom:1041.909600px;}
.ycc{bottom:1046.380350px;}
.ycb{bottom:1046.380500px;}
.yca{bottom:1046.380749px;}
.yf3{bottom:1051.863300px;}
.yf2{bottom:1051.863413px;}
.yc9{bottom:1062.818850px;}
.yc8{bottom:1062.819249px;}
.yf0{bottom:1066.807312px;}
.yf1{bottom:1066.807350px;}
.y2{bottom:1076.262000px;}
.yc7{bottom:1079.257350px;}
.yc6{bottom:1079.257599px;}
.yef{bottom:1081.751250px;}
.yee{bottom:1081.751362px;}
.yc5{bottom:1095.695700px;}
.yed{bottom:1096.695300px;}
.yc4{bottom:1129.788900px;}
.y1{bottom:1132.411500px;}
.h3{height:0.000499px;}
.h12{height:23.618117px;}
.h10{height:30.987898px;}
.h7{height:34.478653px;}
.he{height:37.489330px;}
.h2{height:38.352121px;}
.hb{height:43.146317px;}
.h6{height:46.261897px;}
.hd{height:48.292411px;}
.hc{height:48.293011px;}
.hf{height:48.293611px;}
.ha{height:49.117790px;}
.h11{height:50.516698px;}
.h4{height:50.958904px;}
.h9{height:53.583206px;}
.h8{height:57.528422px;}
.h5{height:123.915233px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.199600px;}
.x8e{left:75.260700px;}
.x8f{left:77.860050px;}
.xc3{left:80.398650px;}
.x7e{left:82.913700px;}
.x2{left:87.039900px;}
.xc1{left:88.199550px;}
.xbf{left:89.368800px;}
.x3{left:90.638250px;}
.x43{left:93.487800px;}
.xc2{left:95.056800px;}
.x4f{left:97.264950px;}
.x90{left:99.057300px;}
.x3d{left:100.796550px;}
.xb3{left:102.308700px;}
.x194{left:103.329300px;}
.x3e{left:105.744450px;}
.xa1{left:107.649150px;}
.x89{left:109.087500px;}
.x75{left:111.481500px;}
.x4{left:112.550700px;}
.x1b{left:114.788100px;}
.x5{left:116.149350px;}
.xc0{left:117.722850px;}
.x76{left:119.044800px;}
.x1c{left:120.185850px;}
.xaa{left:121.404750px;}
.xc7{left:122.880750px;}
.x5a{left:123.999600px;}
.xab{left:125.046750px;}
.x9c{left:126.639750px;}
.x15{left:127.771050px;}
.xbb{left:130.149150px;}
.x62{left:132.139950px;}
.x16{left:133.168800px;}
.xbc{left:134.627400px;}
.x32{left:136.023900px;}
.x1d{left:137.436750px;}
.x6f{left:138.659850px;}
.x97{left:139.922700px;}
.x33{left:140.971800px;}
.x1e{left:142.834500px;}
.x68{left:144.295500px;}
.x3a{left:146.199150px;}
.xb4{left:147.766500px;}
.x34{left:149.733450px;}
.x19d{left:150.807000px;}
.x29{left:151.818450px;}
.x9d{left:153.230100px;}
.x17{left:154.687650px;}
.x2a{left:157.216200px;}
.x6{left:158.623650px;}
.x18{left:160.085400px;}
.x77{left:161.174550px;}
.x7{left:162.222150px;}
.x7f{left:163.435200px;}
.xb8{left:165.250050px;}
.x50{left:166.367250px;}
.x44{left:168.218400px;}
.x1f{left:170.880900px;}
.x3b{left:172.105950px;}
.x190{left:173.215050px;}
.xa2{left:174.524250px;}
.x20{left:176.278500px;}
.x5b{left:177.997200px;}
.x18e{left:179.365200px;}
.x51{left:180.933600px;}
.x98{left:182.155800px;}
.xb5{left:183.515100px;}
.x42{left:184.977150px;}
.xb6{left:186.593700px;}
.x45{left:187.884600px;}
.x2e{left:190.014600px;}
.x19{left:191.843700px;}
.x70{left:194.173200px;}
.x2f{left:195.412200px;}
.x1a{left:197.241450px;}
.x69{left:199.221150px;}
.x35{left:200.741400px;}
.x99{left:202.876650px;}
.x52{left:204.455850px;}
.x6a{left:206.641500px;}
.x53{left:208.179600px;}
.xa3{left:209.535300px;}
.x30{left:211.336200px;}
.x19c{left:212.371200px;}
.x46{left:213.926100px;}
.x19a{left:215.494050px;}
.x31{left:216.733950px;}
.xac{left:217.762200px;}
.x36{left:218.807100px;}
.xbd{left:219.886350px;}
.x47{left:221.043450px;}
.xa6{left:222.083250px;}
.x37{left:223.755000px;}
.xa4{left:225.528300px;}
.xa7{left:227.625900px;}
.x21{left:228.677100px;}
.x9e{left:230.066700px;}
.x78{left:231.266850px;}
.x22{left:234.074850px;}
.x80{left:235.765500px;}
.xad{left:237.385800px;}
.x3f{left:238.434300px;}
.x27{left:239.812950px;}
.xae{left:241.027800px;}
.x63{left:243.059850px;}
.x28{left:245.210700px;}
.x189{left:247.086900px;}
.x86{left:248.432250px;}
.x95{left:250.293300px;}
.x23{left:251.325750px;}
.x5c{left:253.393950px;}
.x79{left:255.377100px;}
.x24{left:256.723500px;}
.x3c{left:258.801450px;}
.x81{left:260.805750px;}
.x2b{left:262.927800px;}
.x48{left:265.296300px;}
.x2c{left:268.325550px;}
.x197{left:269.387100px;}
.x38{left:270.390450px;}
.x7a{left:271.520850px;}
.x64{left:273.133350px;}
.x195{left:274.210800px;}
.x39{left:275.338350px;}
.xa5{left:278.213550px;}
.x2d{left:279.676800px;}
.x65{left:281.310150px;}
.xaf{left:283.187700px;}
.x25{left:284.769900px;}
.x198{left:286.002000px;}
.x54{left:287.946150px;}
.x82{left:289.131450px;}
.x26{left:290.167650px;}
.x8a{left:291.361350px;}
.x83{left:292.983000px;}
.x6b{left:294.798000px;}
.x91{left:295.889250px;}
.xa0{left:297.208800px;}
.x71{left:299.317200px;}
.x7b{left:301.598850px;}
.x7c{left:305.543400px;}
.x92{left:307.066200px;}
.x87{left:308.223000px;}
.xb0{left:309.304650px;}
.x72{left:310.494150px;}
.xa8{left:312.592050px;}
.x8{left:315.438150px;}
.xd{left:316.652550px;}
.x73{left:318.842400px;}
.xc4{left:320.131500px;}
.x7d{left:322.036800px;}
.x5d{left:323.433600px;}
.x9a{left:324.522750px;}
.x40{left:327.266850px;}
.x196{left:329.476500px;}
.x41{left:332.214750px;}
.x8b{left:333.425100px;}
.x49{left:334.765650px;}
.x55{left:336.068400px;}
.x84{left:337.247100px;}
.x93{left:339.057450px;}
.x9b{left:340.253700px;}
.x4a{left:341.883000px;}
.xa9{left:343.191900px;}
.xb9{left:344.224650px;}
.x94{left:346.118550px;}
.x85{left:348.159900px;}
.x6c{left:350.790450px;}
.x18f{left:351.847200px;}
.x66{left:352.998750px;}
.x88{left:355.846950px;}
.xba{left:357.247050px;}
.x5e{left:358.417200px;}
.xc6{left:359.767350px;}
.x56{left:361.125750px;}
.xb7{left:362.498550px;}
.x4b{left:363.779700px;}
.x57{left:364.849500px;}
.x5f{left:367.352400px;}
.x14{left:369.311250px;}
.x4c{left:370.897050px;}
.xb1{left:371.911500px;}
.x9{left:373.531350px;}
.xb2{left:375.553500px;}
.x6d{left:376.807950px;}
.x193{left:377.996400px;}
.x96{left:379.050450px;}
.xa{left:380.965950px;}
.x58{left:382.186500px;}
.x6e{left:383.869200px;}
.x59{left:385.910400px;}
.xbe{left:387.672600px;}
.x74{left:389.356650px;}
.xe{left:391.365750px;}
.x18b{left:392.602800px;}
.x67{left:394.409700px;}
.x60{left:396.027900px;}
.xf{left:397.513050px;}
.x9f{left:401.122650px;}
.x4d{left:402.316200px;}
.x61{left:404.968050px;}
.xc5{left:406.314150px;}
.x191{left:407.967300px;}
.x4e{left:409.433550px;}
.x8c{left:411.258150px;}
.x192{left:412.997100px;}
.x8d{left:414.317100px;}
.x199{left:417.362550px;}
.x19e{left:418.379550px;}
.x19b{left:420.637950px;}
.x18c{left:421.856550px;}
.x18d{left:425.102100px;}
.x10{left:443.656200px;}
.x11{left:449.803500px;}
.xdc{left:453.752745px;}
.x12{left:462.233700px;}
.x109{left:464.930700px;}
.x145{left:466.302600px;}
.x161{left:468.320100px;}
.x13{left:469.875450px;}
.x18a{left:471.085050px;}
.xb{left:472.383600px;}
.xf9{left:473.754000px;}
.x12f{left:475.018200px;}
.xfa{left:476.994900px;}
.x16a{left:478.609500px;}
.xc{left:479.818200px;}
.x19f{left:480.918900px;}
.x114{left:482.504100px;}
.x140{left:483.653250px;}
.x162{left:484.856400px;}
.x16b{left:486.873000px;}
.x14a{left:488.062200px;}
.x14f{left:489.977850px;}
.x13d{left:491.256300px;}
.x17b{left:492.320700px;}
.x150{left:493.881450px;}
.x115{left:495.052950px;}
.x172{left:496.126200px;}
.x139{left:497.721900px;}
.xfb{left:499.052850px;}
.x170{left:500.519550px;}
.xfc{left:502.293750px;}
.x10a{left:503.956050px;}
.x13a{left:505.304550px;}
.x12a{left:506.699250px;}
.xe9{left:508.118700px;}
.x16c{left:509.958450px;}
.xea{left:511.274400px;}
.x130{left:512.684700px;}
.xfd{left:514.492950px;}
.x134{left:516.049650px;}
.xfe{left:517.733850px;}
.x15e{left:519.011850px;}
.x10b{left:520.681350px;}
.x180{left:521.923950px;}
.x10c{left:525.207450px;}
.x146{left:526.632600px;}
.x14d{left:527.795400px;}
.xdd{left:529.110450px;}
.x12b{left:531.272550px;}
.x176{left:533.106750px;}
.xde{left:535.414650px;}
.x163{left:536.507550px;}
.xff{left:537.532350px;}
.x122{left:539.577150px;}
.x100{left:540.773100px;}
.x181{left:542.806350px;}
.x135{left:545.290050px;}
.x185{left:546.323250px;}
.xc8{left:547.535550px;}
.x116{left:549.694500px;}
.xc9{left:551.097150px;}
.x171{left:552.894900px;}
.xeb{left:554.596950px;}
.x12c{left:556.120950px;}
.xec{left:557.752650px;}
.x10d{left:558.798900px;}
.x12d{left:559.906650px;}
.x136{left:561.075900px;}
.x123{left:563.329950px;}
.xca{left:564.574050px;}
.x13e{left:566.190300px;}
.xcb{left:568.135500px;}
.x101{left:570.013500px;}
.x155{left:571.607850px;}
.x102{left:573.254400px;}
.xdf{left:575.355150px;}
.x156{left:576.522450px;}
.xed{left:579.043950px;}
.x175{left:580.552500px;}
.xee{left:582.199650px;}
.x1a5{left:583.256400px;}
.x124{left:584.324250px;}
.x151{left:586.033950px;}
.x117{left:587.617650px;}
.x164{left:588.666750px;}
.x152{left:589.937550px;}
.x17f{left:591.790950px;}
.x165{left:593.404200px;}
.x15f{left:594.714450px;}
.xe0{left:596.417850px;}
.x1a0{left:597.549150px;}
.x103{left:599.010600px;}
.xcc{left:600.334800px;}
.x10e{left:601.469250px;}
.xe1{left:602.722200px;}
.xcd{left:603.896250px;}
.x125{left:606.664800px;}
.x141{left:608.615400px;}
.x14b{left:609.792900px;}
.x104{left:611.559450px;}
.x105{left:614.800350px;}
.xce{left:616.552800px;}
.x10f{left:618.544200px;}
.xcf{left:620.114250px;}
.xef{left:622.692600px;}
.xe2{left:624.766800px;}
.x126{left:626.636550px;}
.x131{left:629.772750px;}
.xe3{left:631.071000px;}
.x168{left:632.334300px;}
.x13b{left:634.267200px;}
.xd0{left:636.079350px;}
.x179{left:637.857900px;}
.xd1{left:639.640800px;}
.x184{left:640.814250px;}
.x137{left:642.614250px;}
.x160{left:644.243400px;}
.x178{left:645.475200px;}
.x127{left:646.636800px;}
.x183{left:649.427850px;}
.x128{left:651.034350px;}
.x153{left:652.520400px;}
.x13c{left:655.007100px;}
.x118{left:657.108000px;}
.x1a7{left:658.172100px;}
.xf0{left:659.841450px;}
.x110{left:661.907100px;}
.xf1{left:662.997300px;}
.x16d{left:665.564100px;}
.x106{left:666.959400px;}
.x167{left:668.435100px;}
.xd2{left:670.132050px;}
.xf2{left:672.062550px;}
.xd3{left:673.693500px;}
.xf3{left:675.218400px;}
.x11e{left:677.982900px;}
.x142{left:679.495200px;}
.x1a4{left:681.111300px;}
.x12e{left:682.354650px;}
.x182{left:683.442150px;}
.x147{left:684.961050px;}
.x11f{left:686.018400px;}
.x1a6{left:687.092850px;}
.x14c{left:688.550850px;}
.x148{left:690.747750px;}
.x17c{left:691.828500px;}
.xe4{left:693.600150px;}
.x173{left:695.098350px;}
.x15a{left:697.030350px;}
.xd4{left:698.750850px;}
.xe5{left:699.904500px;}
.x186{left:701.038050px;}
.xd5{left:702.312450px;}
.x174{left:704.410650px;}
.x1a1{left:705.572100px;}
.x119{left:707.116950px;}
.x132{left:708.542400px;}
.x13f{left:710.286300px;}
.x14e{left:711.861300px;}
.xf4{left:714.035100px;}
.x157{left:715.930800px;}
.xf5{left:717.190800px;}
.x11a{left:719.665800px;}
.xd6{left:722.110800px;}
.x16e{left:723.740550px;}
.xd7{left:725.672250px;}
.x138{left:726.753000px;}
.x11b{left:728.523450px;}
.x111{left:730.233450px;}
.xe6{left:732.198000px;}
.x133{left:734.001450px;}
.xf6{left:735.168450px;}
.xe7{left:738.502200px;}
.x107{left:740.503650px;}
.x108{left:743.744550px;}
.x149{left:744.978300px;}
.x177{left:746.698650px;}
.x120{left:747.961650px;}
.xe8{left:751.051050px;}
.x129{left:752.432850px;}
.x169{left:754.241550px;}
.x143{left:755.580900px;}
.xd8{left:757.911900px;}
.x15b{left:759.008100px;}
.x17d{left:760.053150px;}
.xd9{left:761.473350px;}
.x144{left:762.506850px;}
.x187{left:763.782300px;}
.x121{left:765.277650px;}
.x154{left:766.865550px;}
.x188{left:768.155700px;}
.x166{left:770.291550px;}
.x11c{left:772.989300px;}
.x16f{left:774.062100px;}
.x15c{left:775.144200px;}
.x17e{left:777.234150px;}
.x15d{left:779.081400px;}
.x1a8{left:780.235500px;}
.x11d{left:781.846950px;}
.x17a{left:782.968800px;}
.xf7{left:784.207200px;}
.x112{left:785.997300px;}
.xf8{left:787.362900px;}
.xda{left:788.965200px;}
.x113{left:790.523250px;}
.xdb{left:792.526650px;}
.x158{left:795.305400px;}
.x1a9{left:798.498900px;}
.x159{left:800.220900px;}
.x1aa{left:803.084700px;}
.x1a2{left:805.305900px;}
.x1a3{left:814.192800px;}
@media print{
.v2{vertical-align:-17.358933pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.358933pt;}
.ls18{letter-spacing:-8.288904pt;}
.ls19{letter-spacing:-6.843659pt;}
.ls17{letter-spacing:-6.206051pt;}
.lsa{letter-spacing:-3.506859pt;}
.ls16{letter-spacing:-2.630144pt;}
.lsb{letter-spacing:-2.199757pt;}
.ls6{letter-spacing:-1.742795pt;}
.ls1b{letter-spacing:-1.530266pt;}
.ls1a{letter-spacing:-1.386803pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000077pt;}
.lsd{letter-spacing:0.000320pt;}
.ls10{letter-spacing:2.656469pt;}
.lse{letter-spacing:2.656909pt;}
.ls11{letter-spacing:2.657003pt;}
.ls9{letter-spacing:2.660115pt;}
.ls8{letter-spacing:3.985056pt;}
.ls15{letter-spacing:7.969975pt;}
.ls14{letter-spacing:10.626603pt;}
.ls12{letter-spacing:10.626987pt;}
.ls13{letter-spacing:10.627076pt;}
.lsc{letter-spacing:14.196467pt;}
.ls0{letter-spacing:15.896201pt;}
.ls2{letter-spacing:16.117001pt;}
.ls4{letter-spacing:16.655134pt;}
.ls1{letter-spacing:25.616734pt;}
.ls5{letter-spacing:32.126601pt;}
.ls3{letter-spacing:34.711667pt;}
.ws4{word-spacing:-14.611867pt;}
.ws2{word-spacing:-0.159402pt;}
.ws3{word-spacing:-0.063761pt;}
.ws5{word-spacing:-0.058447pt;}
.ws6{word-spacing:-0.047821pt;}
.ws1{word-spacing:-0.042507pt;}
.ws7{word-spacing:-0.041551pt;}
.wsa{word-spacing:-0.031881pt;}
.ws8{word-spacing:0.000000pt;}
.ws9{word-spacing:1.338982pt;}
.ws0{word-spacing:1.700288pt;}
._8{margin-left:-23.523052pt;}
._2{margin-left:-10.639552pt;}
._5{margin-left:-7.938253pt;}
._4{margin-left:-6.360166pt;}
._6{margin-left:-4.638618pt;}
._3{margin-left:-3.506859pt;}
._1{margin-left:-1.997838pt;}
._0{width:1.742795pt;}
._7{width:5.318443pt;}
.fs1{font-size:0.001067pt;}
.fs8{font-size:31.880533pt;}
.fs9{font-size:41.550933pt;}
.fs0{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs6{font-size:58.447467pt;}
.fs4{font-size:59.510400pt;}
.fs5{font-size:63.761067pt;}
.fs2{font-size:66.417600pt;}
.fs3{font-size:159.402133pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:84.180533pt;}
.yc1{bottom:97.463867pt;}
.yc2{bottom:97.464000pt;}
.y56{bottom:129.662533pt;}
.yc0{bottom:130.145600pt;}
.ybf{bottom:130.145821pt;}
.y55{bottom:142.946133pt;}
.ybe{bottom:144.757467pt;}
.ybd{bottom:144.757688pt;}
.ybc{bottom:159.369333pt;}
.ybb{bottom:159.369555pt;}
.yba{bottom:173.981200pt;}
.yb9{bottom:173.981421pt;}
.yb8{bottom:188.593067pt;}
.yb7{bottom:188.593288pt;}
.yb6{bottom:203.204933pt;}
.y54{bottom:205.713467pt;}
.y53{bottom:205.713555pt;}
.yb5{bottom:217.816800pt;}
.yb4{bottom:217.817155pt;}
.y52{bottom:220.325200pt;}
.y51{bottom:220.325555pt;}
.yb3{bottom:232.428800pt;}
.yb2{bottom:232.428888pt;}
.y50{bottom:234.937200pt;}
.y4f{bottom:234.937421pt;}
.yb1{bottom:247.040533pt;}
.yb0{bottom:247.040755pt;}
.y4e{bottom:249.549067pt;}
.y4d{bottom:249.549288pt;}
.yaf{bottom:261.652400pt;}
.yae{bottom:261.652755pt;}
.y4c{bottom:264.160933pt;}
.y4b{bottom:264.161155pt;}
.yad{bottom:276.264400pt;}
.yac{bottom:276.264621pt;}
.y4a{bottom:278.772800pt;}
.y49{bottom:278.773021pt;}
.yab{bottom:290.876267pt;}
.yaa{bottom:290.876488pt;}
.y48{bottom:293.384667pt;}
.y47{bottom:293.384755pt;}
.ya9{bottom:305.488133pt;}
.ya8{bottom:305.488355pt;}
.y45{bottom:307.996400pt;}
.y46{bottom:307.996533pt;}
.y44{bottom:307.996755pt;}
.ya7{bottom:320.100000pt;}
.ya6{bottom:320.100355pt;}
.y42{bottom:322.608400pt;}
.y43{bottom:322.608533pt;}
.y41{bottom:322.608621pt;}
.ya5{bottom:334.712000pt;}
.ya4{bottom:334.712088pt;}
.y40{bottom:337.220267pt;}
.y3f{bottom:337.220400pt;}
.y3e{bottom:337.220621pt;}
.ya3{bottom:349.323733pt;}
.ya2{bottom:349.324088pt;}
.y3c{bottom:351.832267pt;}
.y3d{bottom:351.832400pt;}
.y3b{bottom:351.832755pt;}
.ya1{bottom:363.935733pt;}
.ya0{bottom:363.935955pt;}
.y3a{bottom:366.444400pt;}
.y39{bottom:366.444621pt;}
.y9e{bottom:378.547288pt;}
.y9f{bottom:378.547600pt;}
.y38{bottom:381.056267pt;}
.y37{bottom:381.056488pt;}
.y9d{bottom:393.158933pt;}
.y9c{bottom:393.159067pt;}
.y9b{bottom:393.159200pt;}
.y98{bottom:393.159288pt;}
.y99{bottom:393.159333pt;}
.y9a{bottom:393.159467pt;}
.y36{bottom:395.668133pt;}
.y35{bottom:395.668355pt;}
.y97{bottom:407.770933pt;}
.y96{bottom:407.771067pt;}
.y95{bottom:407.771200pt;}
.y94{bottom:407.771333pt;}
.y93{bottom:407.771421pt;}
.y34{bottom:410.280000pt;}
.y33{bottom:410.280221pt;}
.y92{bottom:422.383067pt;}
.y91{bottom:422.383200pt;}
.y90{bottom:422.383333pt;}
.y8f{bottom:422.383421pt;}
.y32{bottom:424.891867pt;}
.y31{bottom:424.892088pt;}
.y8e{bottom:436.995067pt;}
.y8d{bottom:436.995200pt;}
.y8c{bottom:436.995288pt;}
.y30{bottom:439.503733pt;}
.y2f{bottom:439.503955pt;}
.y8b{bottom:451.606933pt;}
.y8a{bottom:451.607200pt;}
.y89{bottom:451.607288pt;}
.y2e{bottom:454.115600pt;}
.y2d{bottom:454.115821pt;}
.y88{bottom:466.218933pt;}
.y87{bottom:466.219067pt;}
.y86{bottom:466.219200pt;}
.y85{bottom:466.219288pt;}
.y2c{bottom:468.727467pt;}
.y2b{bottom:468.727821pt;}
.y84{bottom:480.830933pt;}
.y83{bottom:480.831067pt;}
.y82{bottom:480.831421pt;}
.y2a{bottom:483.339467pt;}
.y29{bottom:483.339688pt;}
.y81{bottom:495.443067pt;}
.y80{bottom:495.443288pt;}
.y28{bottom:497.951333pt;}
.y27{bottom:497.951555pt;}
.y7e{bottom:510.054933pt;}
.y7f{bottom:510.055067pt;}
.y7d{bottom:510.055288pt;}
.y26{bottom:512.563200pt;}
.y25{bottom:512.563421pt;}
.y7b{bottom:524.666933pt;}
.y7c{bottom:524.667067pt;}
.y7a{bottom:524.667288pt;}
.y24{bottom:527.175067pt;}
.y23{bottom:527.175288pt;}
.y79{bottom:539.278933pt;}
.y78{bottom:539.279155pt;}
.y22{bottom:541.786933pt;}
.y21{bottom:541.787155pt;}
.y77{bottom:553.890800pt;}
.y76{bottom:553.891021pt;}
.y20{bottom:556.398800pt;}
.y1f{bottom:556.399021pt;}
.y75{bottom:568.502667pt;}
.y74{bottom:568.502888pt;}
.y1e{bottom:571.010667pt;}
.y1d{bottom:571.010888pt;}
.y73{bottom:583.114533pt;}
.y72{bottom:583.114888pt;}
.y1c{bottom:585.622533pt;}
.y1b{bottom:585.622755pt;}
.y71{bottom:597.726533pt;}
.y70{bottom:597.726755pt;}
.y1a{bottom:600.234400pt;}
.y6f{bottom:612.338400pt;}
.y6e{bottom:612.338621pt;}
.yec{bottom:626.587200pt;}
.yeb{bottom:626.587300pt;}
.y6d{bottom:626.950267pt;}
.y6c{bottom:626.950488pt;}
.y11a{bottom:627.286133pt;}
.y119{bottom:627.286488pt;}
.y19{bottom:628.129733pt;}
.y18{bottom:628.129829pt;}
.yea{bottom:639.870800pt;}
.y6b{bottom:641.562133pt;}
.y118{bottom:641.898133pt;}
.y17{bottom:645.398133pt;}
.y16{bottom:645.398267pt;}
.y15{bottom:645.398400pt;}
.y14{bottom:645.398763pt;}
.y117{bottom:646.237733pt;}
.ye9{bottom:653.154267pt;}
.ye8{bottom:653.154367pt;}
.y6a{bottom:656.174000pt;}
.y69{bottom:656.174355pt;}
.y13{bottom:662.667067pt;}
.y12{bottom:662.667296pt;}
.y116{bottom:665.602400pt;}
.y115{bottom:665.602755pt;}
.ye6{bottom:666.437833pt;}
.ye7{bottom:666.437867pt;}
.y68{bottom:670.786000pt;}
.y67{bottom:670.786088pt;}
.ye4{bottom:679.721300pt;}
.ye5{bottom:679.721333pt;}
.y11{bottom:679.935600pt;}
.y114{bottom:680.214400pt;}
.y113{bottom:684.554133pt;}
.y66{bottom:685.397733pt;}
.y65{bottom:685.398088pt;}
.ye3{bottom:693.004800pt;}
.y112{bottom:694.826488pt;}
.y64{bottom:700.009733pt;}
.y63{bottom:700.009955pt;}
.ye2{bottom:706.288267pt;}
.ye1{bottom:706.288367pt;}
.y111{bottom:709.438133pt;}
.y10{bottom:710.487024pt;}
.y110{bottom:713.777867pt;}
.y62{bottom:714.621600pt;}
.y61{bottom:714.621821pt;}
.ydf{bottom:719.571833pt;}
.ye0{bottom:719.571867pt;}
.y10f{bottom:724.050000pt;}
.y10e{bottom:724.050221pt;}
.yc{bottom:729.084091pt;}
.yf{bottom:729.084400pt;}
.ye{bottom:729.084533pt;}
.yd{bottom:729.084667pt;}
.y60{bottom:729.233467pt;}
.y5f{bottom:729.233688pt;}
.ydd{bottom:732.855333pt;}
.yde{bottom:732.855467pt;}
.ydc{bottom:732.855600pt;}
.y10d{bottom:738.661867pt;}
.y10c{bottom:738.662088pt;}
.y5e{bottom:743.845333pt;}
.y5d{bottom:743.845555pt;}
.ydb{bottom:746.138800pt;}
.yda{bottom:746.138933pt;}
.yd9{bottom:746.139167pt;}
.ya{bottom:747.681024pt;}
.yb{bottom:747.681600pt;}
.y10b{bottom:753.273733pt;}
.y10a{bottom:757.613467pt;}
.y5c{bottom:758.457200pt;}
.y5b{bottom:758.457288pt;}
.yd8{bottom:759.422667pt;}
.yd7{bottom:759.422767pt;}
.y8{bottom:766.278091pt;}
.y9{bottom:766.278533pt;}
.yd5{bottom:772.706233pt;}
.yd6{bottom:772.706267pt;}
.y5a{bottom:773.068933pt;}
.y59{bottom:773.069067pt;}
.y58{bottom:773.069288pt;}
.y109{bottom:776.744267pt;}
.y108{bottom:776.744488pt;}
.y7{bottom:784.875600pt;}
.yd4{bottom:785.989733pt;}
.yd3{bottom:785.989867pt;}
.y57{bottom:787.680933pt;}
.y107{bottom:791.356133pt;}
.y106{bottom:815.437967pt;}
.yd2{bottom:815.877733pt;}
.y104{bottom:828.721433pt;}
.y105{bottom:828.721467pt;}
.y6{bottom:835.230667pt;}
.y103{bottom:842.004933pt;}
.yd1{bottom:851.743200pt;}
.yff{bottom:855.288233pt;}
.y102{bottom:855.288267pt;}
.y100{bottom:855.288400pt;}
.y101{bottom:855.288533pt;}
.yfe{bottom:868.571733pt;}
.yfd{bottom:868.571867pt;}
.yfc{bottom:868.572000pt;}
.yfb{bottom:868.572100pt;}
.yf9{bottom:881.855567pt;}
.yfa{bottom:881.855600pt;}
.yd0{bottom:882.295200pt;}
.ycf{bottom:882.295333pt;}
.y5{bottom:884.264667pt;}
.yf7{bottom:895.139033pt;}
.yf8{bottom:895.139067pt;}
.y4{bottom:902.976400pt;}
.yf6{bottom:908.422533pt;}
.yce{bottom:915.504133pt;}
.ycd{bottom:915.504221pt;}
.yf4{bottom:921.706100pt;}
.yf5{bottom:921.706133pt;}
.y3{bottom:926.141867pt;}
.ycc{bottom:930.115867pt;}
.ycb{bottom:930.116000pt;}
.yca{bottom:930.116221pt;}
.yf3{bottom:934.989600pt;}
.yf2{bottom:934.989700pt;}
.yc9{bottom:944.727867pt;}
.yc8{bottom:944.728221pt;}
.yf0{bottom:948.273167pt;}
.yf1{bottom:948.273200pt;}
.y2{bottom:956.677333pt;}
.yc7{bottom:959.339867pt;}
.yc6{bottom:959.340088pt;}
.yef{bottom:961.556667pt;}
.yee{bottom:961.556767pt;}
.yc5{bottom:973.951733pt;}
.yed{bottom:974.840267pt;}
.yc4{bottom:1004.256800pt;}
.y1{bottom:1006.588000pt;}
.h3{height:0.000444pt;}
.h12{height:20.993882pt;}
.h10{height:27.544798pt;}
.h7{height:30.647691pt;}
.he{height:33.323849pt;}
.h2{height:34.090774pt;}
.hb{height:38.352282pt;}
.h6{height:41.121686pt;}
.hd{height:42.926588pt;}
.hc{height:42.927121pt;}
.hf{height:42.927654pt;}
.ha{height:43.660258pt;}
.h11{height:44.903731pt;}
.h4{height:45.296803pt;}
.h9{height:47.629517pt;}
.h8{height:51.136375pt;}
.h5{height:110.146874pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.621867pt;}
.x8e{left:66.898400pt;}
.x8f{left:69.208933pt;}
.xc3{left:71.465467pt;}
.x7e{left:73.701067pt;}
.x2{left:77.368800pt;}
.xc1{left:78.399600pt;}
.xbf{left:79.438933pt;}
.x3{left:80.567333pt;}
.x43{left:83.100267pt;}
.xc2{left:84.494933pt;}
.x4f{left:86.457733pt;}
.x90{left:88.050933pt;}
.x3d{left:89.596933pt;}
.xb3{left:90.941067pt;}
.x194{left:91.848267pt;}
.x3e{left:93.995067pt;}
.xa1{left:95.688133pt;}
.x89{left:96.966667pt;}
.x75{left:99.094667pt;}
.x4{left:100.045067pt;}
.x1b{left:102.033867pt;}
.x5{left:103.243867pt;}
.xc0{left:104.642533pt;}
.x76{left:105.817600pt;}
.x1c{left:106.831867pt;}
.xaa{left:107.915333pt;}
.xc7{left:109.227333pt;}
.x5a{left:110.221867pt;}
.xab{left:111.152667pt;}
.x9c{left:112.568667pt;}
.x15{left:113.574267pt;}
.xbb{left:115.688133pt;}
.x62{left:117.457733pt;}
.x16{left:118.372267pt;}
.xbc{left:119.668800pt;}
.x32{left:120.910133pt;}
.x1d{left:122.166000pt;}
.x6f{left:123.253200pt;}
.x97{left:124.375733pt;}
.x33{left:125.308267pt;}
.x1e{left:126.964000pt;}
.x68{left:128.262667pt;}
.x3a{left:129.954800pt;}
.xb4{left:131.348000pt;}
.x34{left:133.096400pt;}
.x19d{left:134.050667pt;}
.x29{left:134.949733pt;}
.x9d{left:136.204533pt;}
.x17{left:137.500133pt;}
.x2a{left:139.747733pt;}
.x6{left:140.998800pt;}
.x18{left:142.298133pt;}
.x77{left:143.266267pt;}
.x7{left:144.197467pt;}
.x7f{left:145.275733pt;}
.xb8{left:146.888933pt;}
.x50{left:147.882000pt;}
.x44{left:149.527467pt;}
.x1f{left:151.894133pt;}
.x3b{left:152.983067pt;}
.x190{left:153.968933pt;}
.xa2{left:155.132667pt;}
.x20{left:156.692000pt;}
.x5b{left:158.219733pt;}
.x18e{left:159.435733pt;}
.x51{left:160.829867pt;}
.x98{left:161.916267pt;}
.xb5{left:163.124533pt;}
.x42{left:164.424133pt;}
.xb6{left:165.861067pt;}
.x45{left:167.008533pt;}
.x2e{left:168.901867pt;}
.x19{left:170.527733pt;}
.x70{left:172.598400pt;}
.x2f{left:173.699733pt;}
.x1a{left:175.325733pt;}
.x69{left:177.085467pt;}
.x35{left:178.436800pt;}
.x99{left:180.334800pt;}
.x52{left:181.738533pt;}
.x6a{left:183.681333pt;}
.x53{left:185.048533pt;}
.xa3{left:186.253600pt;}
.x30{left:187.854400pt;}
.x19c{left:188.774400pt;}
.x46{left:190.156533pt;}
.x19a{left:191.550267pt;}
.x31{left:192.652400pt;}
.xac{left:193.566400pt;}
.x36{left:194.495200pt;}
.xbd{left:195.454533pt;}
.x47{left:196.483067pt;}
.xa6{left:197.407333pt;}
.x37{left:198.893333pt;}
.xa4{left:200.469600pt;}
.xa7{left:202.334133pt;}
.x21{left:203.268533pt;}
.x9e{left:204.503733pt;}
.x78{left:205.570533pt;}
.x22{left:208.066533pt;}
.x80{left:209.569333pt;}
.xad{left:211.009600pt;}
.x3f{left:211.941600pt;}
.x27{left:213.167067pt;}
.xae{left:214.246933pt;}
.x63{left:216.053200pt;}
.x28{left:217.965067pt;}
.x189{left:219.632800pt;}
.x86{left:220.828667pt;}
.x95{left:222.482933pt;}
.x23{left:223.400667pt;}
.x5c{left:225.239067pt;}
.x79{left:227.001867pt;}
.x24{left:228.198667pt;}
.x3c{left:230.045733pt;}
.x81{left:231.827333pt;}
.x2b{left:233.713600pt;}
.x48{left:235.818933pt;}
.x2c{left:238.511600pt;}
.x197{left:239.455200pt;}
.x38{left:240.347067pt;}
.x7a{left:241.351867pt;}
.x64{left:242.785200pt;}
.x195{left:243.742933pt;}
.x39{left:244.745200pt;}
.xa5{left:247.300933pt;}
.x2d{left:248.601600pt;}
.x65{left:250.053467pt;}
.xaf{left:251.722400pt;}
.x25{left:253.128800pt;}
.x198{left:254.224000pt;}
.x54{left:255.952133pt;}
.x82{left:257.005733pt;}
.x26{left:257.926800pt;}
.x8a{left:258.987867pt;}
.x83{left:260.429333pt;}
.x6b{left:262.042667pt;}
.x91{left:263.012667pt;}
.xa0{left:264.185600pt;}
.x71{left:266.059733pt;}
.x7b{left:268.087867pt;}
.x7c{left:271.594133pt;}
.x92{left:272.947733pt;}
.x87{left:273.976000pt;}
.xb0{left:274.937467pt;}
.x72{left:275.994800pt;}
.xa8{left:277.859600pt;}
.x8{left:280.389467pt;}
.xd{left:281.468933pt;}
.x73{left:283.415467pt;}
.xc4{left:284.561333pt;}
.x7d{left:286.254933pt;}
.x5d{left:287.496533pt;}
.x9a{left:288.464667pt;}
.x40{left:290.903867pt;}
.x196{left:292.868000pt;}
.x41{left:295.302000pt;}
.x8b{left:296.377867pt;}
.x49{left:297.569467pt;}
.x55{left:298.727467pt;}
.x84{left:299.775200pt;}
.x93{left:301.384400pt;}
.x9b{left:302.447733pt;}
.x4a{left:303.896000pt;}
.xa9{left:305.059467pt;}
.xb9{left:305.977467pt;}
.x94{left:307.660933pt;}
.x85{left:309.475467pt;}
.x6c{left:311.813733pt;}
.x18f{left:312.753067pt;}
.x66{left:313.776667pt;}
.x88{left:316.308400pt;}
.xba{left:317.552933pt;}
.x5e{left:318.593067pt;}
.xc6{left:319.793200pt;}
.x56{left:321.000667pt;}
.xb7{left:322.220933pt;}
.x4b{left:323.359733pt;}
.x57{left:324.310667pt;}
.x5f{left:326.535467pt;}
.x14{left:328.276667pt;}
.x4c{left:329.686267pt;}
.xb1{left:330.588000pt;}
.x9{left:332.027867pt;}
.xb2{left:333.825333pt;}
.x6d{left:334.940400pt;}
.x193{left:335.996800pt;}
.x96{left:336.933733pt;}
.xa{left:338.636400pt;}
.x58{left:339.721333pt;}
.x6e{left:341.217067pt;}
.x59{left:343.031467pt;}
.xbe{left:344.597867pt;}
.x74{left:346.094800pt;}
.xe{left:347.880667pt;}
.x18b{left:348.980267pt;}
.x67{left:350.586400pt;}
.x60{left:352.024800pt;}
.xf{left:353.344933pt;}
.x9f{left:356.553467pt;}
.x4d{left:357.614400pt;}
.x61{left:359.971600pt;}
.xc5{left:361.168133pt;}
.x191{left:362.637600pt;}
.x4e{left:363.940933pt;}
.x8c{left:365.562800pt;}
.x192{left:367.108533pt;}
.x8d{left:368.281867pt;}
.x199{left:370.988933pt;}
.x19e{left:371.892933pt;}
.x19b{left:373.900400pt;}
.x18c{left:374.983600pt;}
.x18d{left:377.868533pt;}
.x10{left:394.361067pt;}
.x11{left:399.825333pt;}
.xdc{left:403.335774pt;}
.x12{left:410.874400pt;}
.x109{left:413.271733pt;}
.x145{left:414.491200pt;}
.x161{left:416.284533pt;}
.x13{left:417.667067pt;}
.x18a{left:418.742267pt;}
.xb{left:419.896533pt;}
.xf9{left:421.114667pt;}
.x12f{left:422.238400pt;}
.xfa{left:423.995467pt;}
.x16a{left:425.430667pt;}
.xc{left:426.505067pt;}
.x19f{left:427.483467pt;}
.x114{left:428.892533pt;}
.x140{left:429.914000pt;}
.x162{left:430.983467pt;}
.x16b{left:432.776000pt;}
.x14a{left:433.833067pt;}
.x14f{left:435.535867pt;}
.x13d{left:436.672267pt;}
.x17b{left:437.618400pt;}
.x150{left:439.005733pt;}
.x115{left:440.047067pt;}
.x172{left:441.001067pt;}
.x139{left:442.419467pt;}
.xfb{left:443.602533pt;}
.x170{left:444.906267pt;}
.xfc{left:446.483333pt;}
.x10a{left:447.960933pt;}
.x13a{left:449.159600pt;}
.x12a{left:450.399333pt;}
.xe9{left:451.661067pt;}
.x16c{left:453.296400pt;}
.xea{left:454.466133pt;}
.x130{left:455.719733pt;}
.xfd{left:457.327067pt;}
.x134{left:458.710800pt;}
.xfe{left:460.207867pt;}
.x15e{left:461.343867pt;}
.x10b{left:462.827867pt;}
.x180{left:463.932400pt;}
.x10c{left:466.851067pt;}
.x146{left:468.117867pt;}
.x14d{left:469.151467pt;}
.xdd{left:470.320400pt;}
.x12b{left:472.242267pt;}
.x176{left:473.872667pt;}
.xde{left:475.924133pt;}
.x163{left:476.895600pt;}
.xff{left:477.806533pt;}
.x122{left:479.624133pt;}
.x100{left:480.687200pt;}
.x181{left:482.494533pt;}
.x135{left:484.702267pt;}
.x185{left:485.620667pt;}
.xc8{left:486.698267pt;}
.x116{left:488.617333pt;}
.xc9{left:489.864133pt;}
.x171{left:491.462133pt;}
.xeb{left:492.975067pt;}
.x12c{left:494.329733pt;}
.xec{left:495.780133pt;}
.x10d{left:496.710133pt;}
.x12d{left:497.694800pt;}
.x136{left:498.734133pt;}
.x123{left:500.737733pt;}
.xca{left:501.843600pt;}
.x13e{left:503.280267pt;}
.xcb{left:505.009333pt;}
.x101{left:506.678667pt;}
.x155{left:508.095867pt;}
.x102{left:509.559467pt;}
.xdf{left:511.426800pt;}
.x156{left:512.464400pt;}
.xed{left:514.705733pt;}
.x175{left:516.046667pt;}
.xee{left:517.510800pt;}
.x1a5{left:518.450133pt;}
.x124{left:519.399333pt;}
.x151{left:520.919067pt;}
.x117{left:522.326800pt;}
.x164{left:523.259333pt;}
.x152{left:524.388933pt;}
.x17f{left:526.036400pt;}
.x165{left:527.470400pt;}
.x15f{left:528.635067pt;}
.xe0{left:530.149200pt;}
.x1a0{left:531.154800pt;}
.x103{left:532.453867pt;}
.xcc{left:533.630933pt;}
.x10e{left:534.639333pt;}
.xe1{left:535.753067pt;}
.xcd{left:536.796667pt;}
.x125{left:539.257600pt;}
.x141{left:540.991467pt;}
.x14b{left:542.038133pt;}
.x104{left:543.608400pt;}
.x105{left:546.489200pt;}
.xce{left:548.046933pt;}
.x10f{left:549.817067pt;}
.xcf{left:551.212667pt;}
.xef{left:553.504533pt;}
.xe2{left:555.348267pt;}
.x126{left:557.010267pt;}
.x131{left:559.798000pt;}
.xe3{left:560.952000pt;}
.x168{left:562.074933pt;}
.x13b{left:563.793067pt;}
.xd0{left:565.403867pt;}
.x179{left:566.984800pt;}
.xd1{left:568.569600pt;}
.x184{left:569.612667pt;}
.x137{left:571.212667pt;}
.x160{left:572.660800pt;}
.x178{left:573.755733pt;}
.x127{left:574.788267pt;}
.x183{left:577.269200pt;}
.x128{left:578.697200pt;}
.x153{left:580.018133pt;}
.x13c{left:582.228533pt;}
.x118{left:584.096000pt;}
.x1a7{left:585.041867pt;}
.xf0{left:586.525733pt;}
.x110{left:588.361867pt;}
.xf1{left:589.330933pt;}
.x16d{left:591.612533pt;}
.x106{left:592.852800pt;}
.x167{left:594.164533pt;}
.xd2{left:595.672933pt;}
.xf2{left:597.388933pt;}
.xd3{left:598.838667pt;}
.xf3{left:600.194133pt;}
.x11e{left:602.651467pt;}
.x142{left:603.995733pt;}
.x1a4{left:605.432267pt;}
.x12e{left:606.537467pt;}
.x182{left:607.504133pt;}
.x147{left:608.854267pt;}
.x11f{left:609.794133pt;}
.x1a6{left:610.749200pt;}
.x14c{left:612.045200pt;}
.x148{left:613.998000pt;}
.x17c{left:614.958667pt;}
.xe4{left:616.533467pt;}
.x173{left:617.865200pt;}
.x15a{left:619.582533pt;}
.xd4{left:621.111867pt;}
.xe5{left:622.137333pt;}
.x186{left:623.144933pt;}
.xd5{left:624.277733pt;}
.x174{left:626.142800pt;}
.x1a1{left:627.175200pt;}
.x119{left:628.548400pt;}
.x132{left:629.815467pt;}
.x13f{left:631.365600pt;}
.x14e{left:632.765600pt;}
.xf4{left:634.697867pt;}
.x157{left:636.382933pt;}
.xf5{left:637.502933pt;}
.x11a{left:639.702933pt;}
.xd6{left:641.876267pt;}
.x16e{left:643.324933pt;}
.xd7{left:645.042000pt;}
.x138{left:646.002667pt;}
.x11b{left:647.576400pt;}
.x111{left:649.096400pt;}
.xe6{left:650.842667pt;}
.x133{left:652.445733pt;}
.xf6{left:653.483067pt;}
.xe7{left:656.446400pt;}
.x107{left:658.225467pt;}
.x108{left:661.106267pt;}
.x149{left:662.202933pt;}
.x177{left:663.732133pt;}
.x120{left:664.854800pt;}
.xe8{left:667.600933pt;}
.x129{left:668.829200pt;}
.x169{left:670.436933pt;}
.x143{left:671.627467pt;}
.xd8{left:673.699467pt;}
.x15b{left:674.673867pt;}
.x17d{left:675.602800pt;}
.xd9{left:676.865200pt;}
.x144{left:677.783867pt;}
.x187{left:678.917600pt;}
.x121{left:680.246800pt;}
.x154{left:681.658267pt;}
.x188{left:682.805067pt;}
.x166{left:684.703600pt;}
.x11c{left:687.101600pt;}
.x16f{left:688.055200pt;}
.x15c{left:689.017067pt;}
.x17e{left:690.874800pt;}
.x15d{left:692.516800pt;}
.x1a8{left:693.542667pt;}
.x11d{left:694.975067pt;}
.x17a{left:695.972267pt;}
.xf7{left:697.073067pt;}
.x112{left:698.664267pt;}
.xf8{left:699.878133pt;}
.xda{left:701.302400pt;}
.x113{left:702.687333pt;}
.xdb{left:704.468133pt;}
.x158{left:706.938133pt;}
.x1a9{left:709.776800pt;}
.x159{left:711.307467pt;}
.x1aa{left:713.853067pt;}
.x1a2{left:715.827467pt;}
.x1a3{left:723.726933pt;}
}




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