
    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_3b68751b577e6fbe2a0ded8f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.981943;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_9cb570b562175328fc7ba1f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035645;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_16ec6e751d4ddbc8f5e26a7c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.981934;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_fdc0cc900d9fe5f6badf2da2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.981934;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.239457,0.000000,-0.071837,0.239457,0,0);-ms-transform:matrix(0.239457,0.000000,-0.071837,0.239457,0,0);-webkit-transform:matrix(0.239457,0.000000,-0.071837,0.239457,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);}
.v3{vertical-align:-16.890000px;}
.v1{vertical-align:-10.580207px;}
.v4{vertical-align:-7.054035px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:13.513080px;}
.v2{vertical-align:16.890000px;}
.v5{vertical-align:27.026159px;}
.ls7{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.032094px;}
.ls32{letter-spacing:0.048546px;}
.ls52{letter-spacing:0.048563px;}
.ls23{letter-spacing:0.048580px;}
.ls1f{letter-spacing:0.057431px;}
.ls4c{letter-spacing:0.065454px;}
.ls6{letter-spacing:0.067560px;}
.ls45{letter-spacing:0.069677px;}
.ls47{letter-spacing:0.069694px;}
.ls1d{letter-spacing:0.081923px;}
.ls56{letter-spacing:0.092902px;}
.ls16{letter-spacing:0.094169px;}
.ls57{letter-spacing:0.101348px;}
.ls35{letter-spacing:0.101770px;}
.ls4e{letter-spacing:0.101787px;}
.ls17{letter-spacing:0.109794px;}
.ls5{letter-spacing:0.111474px;}
.ls4{letter-spacing:0.118230px;}
.ls2{letter-spacing:0.128364px;}
.ls3{letter-spacing:0.138498px;}
.ls55{letter-spacing:0.146532px;}
.ls18{letter-spacing:0.148644px;}
.ls58{letter-spacing:0.162157px;}
.ls49{letter-spacing:0.166802px;}
.ls5d{letter-spacing:0.171025px;}
.ls5b{letter-spacing:0.175670px;}
.ls19{letter-spacing:0.179048px;}
.ls30{letter-spacing:0.200568px;}
.ls34{letter-spacing:0.202696px;}
.ls4f{letter-spacing:0.209875px;}
.ls54{letter-spacing:0.209892px;}
.ls59{letter-spacing:0.211547px;}
.ls37{letter-spacing:0.211564px;}
.ls5a{letter-spacing:0.211581px;}
.ls24{letter-spacing:0.215365px;}
.ls53{letter-spacing:0.227611px;}
.ls5c{letter-spacing:0.244080px;}
.ls50{letter-spacing:0.252931px;}
.ls51{letter-spacing:0.252948px;}
.ls1c{letter-spacing:0.252965px;}
.ls31{letter-spacing:0.329381px;}
.ls2c{letter-spacing:2.220257px;}
.ls1e{letter-spacing:2.239691px;}
.ls21{letter-spacing:2.244065px;}
.ls29{letter-spacing:2.244100px;}
.ls26{letter-spacing:2.258631px;}
.ls25{letter-spacing:2.285930px;}
.ls4d{letter-spacing:3.236038px;}
.lsa{letter-spacing:3.259401px;}
.ls9{letter-spacing:3.259405px;}
.ls8{letter-spacing:3.259408px;}
.ls41{letter-spacing:3.265595px;}
.ls4b{letter-spacing:3.275259px;}
.ls4a{letter-spacing:3.275294px;}
.ls38{letter-spacing:3.276599px;}
.ls3b{letter-spacing:3.276634px;}
.ls11{letter-spacing:3.281445px;}
.ls13{letter-spacing:3.281449px;}
.lsf{letter-spacing:3.292471px;}
.ls44{letter-spacing:3.302170px;}
.ls46{letter-spacing:3.317583px;}
.ls1a{letter-spacing:3.326436px;}
.lsd{letter-spacing:3.335232px;}
.lsc{letter-spacing:3.335236px;}
.lsb{letter-spacing:3.335239px;}
.lse{letter-spacing:3.352874px;}
.ls42{letter-spacing:3.378883px;}
.ls40{letter-spacing:3.378918px;}
.ls14{letter-spacing:3.380646px;}
.ls48{letter-spacing:3.381528px;}
.ls0{letter-spacing:3.389193px;}
.ls15{letter-spacing:3.389905px;}
.ls3d{letter-spacing:3.397858px;}
.ls2d{letter-spacing:3.399163px;}
.ls12{letter-spacing:3.400926px;}
.ls10{letter-spacing:3.400930px;}
.ls1{letter-spacing:3.410353px;}
.ls33{letter-spacing:3.410626px;}
.ls3f{letter-spacing:3.422089px;}
.ls43{letter-spacing:3.422935px;}
.ls2f{letter-spacing:3.444979px;}
.ls2e{letter-spacing:3.445014px;}
.ls5e{letter-spacing:20.410240px;}
.ls20{letter-spacing:260.359038px;}
.ls22{letter-spacing:261.995387px;}
.ls28{letter-spacing:567.676027px;}
.ls27{letter-spacing:727.035352px;}
.ls2b{letter-spacing:1216.356631px;}
.ls2a{letter-spacing:1222.426960px;}
.ls3a{letter-spacing:2427.965527px;}
.ls3c{letter-spacing:2438.892118px;}
.ls36{letter-spacing:2663.652637px;}
.ls39{letter-spacing:2699.441184px;}
.ls3e{letter-spacing:2740.349920px;}
.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;}
}
.ws2e{word-spacing:-50.268656px;}
.ws4e{word-spacing:-47.161492px;}
.ws4b{word-spacing:-46.917412px;}
.ws33{word-spacing:-43.777733px;}
.ws4f{word-spacing:-43.667517px;}
.ws25{word-spacing:-43.566169px;}
.wsa{word-spacing:-41.985614px;}
.wse{word-spacing:-40.393973px;}
.ws50{word-spacing:-40.324719px;}
.wsc{word-spacing:-40.309094px;}
.ws8{word-spacing:-40.214925px;}
.ws1{word-spacing:-40.211712px;}
.ws18{word-spacing:-38.486813px;}
.ws49{word-spacing:-37.620414px;}
.ws17{word-spacing:-36.945604px;}
.ws10{word-spacing:-36.863681px;}
.wsb{word-spacing:-36.052896px;}
.ws3c{word-spacing:-33.679239px;}
.ws11{word-spacing:-33.612519px;}
.ws2c{word-spacing:-33.512437px;}
.ws15{word-spacing:-33.454162px;}
.ws12{word-spacing:-33.348591px;}
.ws16{word-spacing:-32.820737px;}
.ws5{word-spacing:-32.765248px;}
.ws13{word-spacing:-32.662380px;}
.ws3e{word-spacing:-31.923384px;}
.ws3d{word-spacing:-31.870598px;}
.wsd{word-spacing:-31.501100px;}
.ws14{word-spacing:-31.350345px;}
.ws2a{word-spacing:-30.161194px;}
.ws9{word-spacing:-27.990409px;}
.ws32{word-spacing:-26.809950px;}
.ws3{word-spacing:-26.807807px;}
.ws2{word-spacing:-25.078271px;}
.ws4a{word-spacing:-22.091774px;}
.ws4d{word-spacing:-21.945241px;}
.ws24{word-spacing:-20.377724px;}
.ws0{word-spacing:-20.376096px;}
.ws4c{word-spacing:-19.025571px;}
.ws51{word-spacing:-18.810207px;}
.ws4{word-spacing:-18.808704px;}
.wsf{word-spacing:-17.242690px;}
.ws6{word-spacing:-17.189172px;}
.ws7{word-spacing:0.000000px;}
.ws1d{word-spacing:16.074230px;}
.ws1e{word-spacing:20.560995px;}
.ws1b{word-spacing:23.939265px;}
.ws1c{word-spacing:28.478815px;}
.ws1a{word-spacing:40.973346px;}
.ws19{word-spacing:60.979038px;}
.ws2b{word-spacing:61.153019px;}
.ws23{word-spacing:62.509817px;}
.ws1f{word-spacing:63.987810px;}
.ws20{word-spacing:65.360232px;}
.ws22{word-spacing:66.468727px;}
.ws21{word-spacing:68.896858px;}
.ws29{word-spacing:70.126549px;}
.ws39{word-spacing:72.327914px;}
.ws38{word-spacing:75.740389px;}
.ws37{word-spacing:106.110613px;}
.ws3a{word-spacing:221.235716px;}
.ws3f{word-spacing:549.321025px;}
.ws46{word-spacing:619.603836px;}
.ws42{word-spacing:620.026964px;}
.ws48{word-spacing:694.502613px;}
.ws44{word-spacing:736.128387px;}
.ws47{word-spacing:758.060960px;}
.ws41{word-spacing:778.805649px;}
.ws43{word-spacing:785.984472px;}
.ws45{word-spacing:975.173076px;}
.ws40{word-spacing:1055.301415px;}
.ws3b{word-spacing:2152.848517px;}
.ws26{word-spacing:2201.327534px;}
.ws31{word-spacing:2818.404846px;}
.ws2f{word-spacing:3015.558566px;}
.ws2d{word-spacing:3032.766628px;}
.ws30{word-spacing:3034.191836px;}
.ws36{word-spacing:3120.179361px;}
.ws34{word-spacing:3126.671974px;}
.ws35{word-spacing:3143.880036px;}
.ws28{word-spacing:3166.894500px;}
.ws27{word-spacing:3220.946818px;}
._13{margin-left:-174.918369px;}
._a{margin-left:-173.862660px;}
._d{margin-left:-172.859736px;}
._14{margin-left:-7.016244px;}
._16{margin-left:-5.968136px;}
._2{margin-left:-4.608963px;}
._4{margin-left:-3.507722px;}
._1{margin-left:-1.649815px;}
._0{width:1.002952px;}
._3{width:2.008184px;}
._7{width:3.160166px;}
._6{width:4.346064px;}
._8{width:5.421369px;}
._18{width:6.442519px;}
._5{width:8.471021px;}
._9{width:85.902395px;}
._17{width:118.955386px;}
._10{width:127.021457px;}
._e{width:135.411785px;}
._15{width:147.926728px;}
._f{width:170.139574px;}
._c{width:260.200681px;}
._1a{width:595.547570px;}
._11{width:665.593068px;}
._1e{width:852.997439px;}
._19{width:859.057219px;}
._20{width:890.514055px;}
._1f{width:897.059030px;}
._1b{width:902.529238px;}
._1d{width:931.716701px;}
._1c{width:938.473241px;}
._12{width:1610.347357px;}
._b{width:2738.742286px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.023999px;}
.fs19{font-size:27.026159px;}
.fs3{font-size:28.213884px;}
.fsd{font-size:28.216139px;}
.fs6{font-size:30.401999px;}
.fs15{font-size:30.404429px;}
.fs14{font-size:31.743156px;}
.fs9{font-size:33.780000px;}
.fs13{font-size:33.782699px;}
.fs8{font-size:35.267355px;}
.fse{font-size:35.270173px;}
.fs11{font-size:37.160969px;}
.fsf{font-size:38.797190px;}
.fs1{font-size:40.536000px;}
.fsb{font-size:40.539239px;}
.fs2{font-size:42.320827px;}
.fsc{font-size:42.324208px;}
.fs7{font-size:43.913999px;}
.fs0{font-size:43.914000px;}
.fs16{font-size:43.917509px;}
.fs18{font-size:45.851225px;}
.fs1b{font-size:47.295778px;}
.fs17{font-size:50.674048px;}
.fs4{font-size:54.047999px;}
.fsa{font-size:54.054000px;}
.fs12{font-size:67.565398px;}
.fs10{font-size:77.700207px;}
.fs1a{font-size:81.078477px;}
.y0{bottom:0.000000px;}
.yad{bottom:5.911964px;}
.ye6{bottom:6.756536px;}
.y159{bottom:7.601026px;}
.yc6{bottom:7.601102px;}
.ycc{bottom:8.445669px;}
.ye4{bottom:9.290238px;}
.yaf{bottom:10.979370px;}
.y95{bottom:10.979376px;}
.yd5{bottom:11.823939px;}
.ye9{bottom:11.823941px;}
.yab{bottom:12.668504px;}
.yec{bottom:12.668508px;}
.y1bc{bottom:13.513065px;}
.y141{bottom:13.513075px;}
.y91{bottom:13.513079px;}
.y14e{bottom:14.357600px;}
.yb1{bottom:14.357639px;}
.y174{bottom:14.357644px;}
.y93{bottom:14.357646px;}
.y1c{bottom:14.387516px;}
.yce{bottom:15.202209px;}
.y75{bottom:15.202211px;}
.y5e{bottom:16.046777px;}
.y8f{bottom:16.046781px;}
.yca{bottom:16.891344px;}
.ye2{bottom:16.891346px;}
.yb5{bottom:17.735910px;}
.yc4{bottom:17.735911px;}
.y188{bottom:18.580447px;}
.yb7{bottom:21.114179px;}
.y114{bottom:21.958752px;}
.ya9{bottom:25.337017px;}
.y102{bottom:26.181590px;}
.y126{bottom:27.026159px;}
.y8{bottom:32.938260px;}
.y1a7{bottom:33.782628px;}
.y140{bottom:34.627262px;}
.y3e{bottom:34.627265px;}
.y74{bottom:36.316398px;}
.y8d{bottom:36.316400px;}
.y173{bottom:38.005533px;}
.yc2{bottom:41.383800px;}
.y1bb{bottom:42.228359px;}
.y1{bottom:43.063440px;}
.y24{bottom:43.063497px;}
.yd4{bottom:43.908064px;}
.y5d{bottom:43.917503px;}
.y1c1{bottom:44.762062px;}
.yeb{bottom:48.140342px;}
.y125{bottom:48.140346px;}
.y187{bottom:50.674011px;}
.ye1{bottom:52.363179px;}
.y73{bottom:57.430585px;}
.y113{bottom:57.430586px;}
.y7{bottom:60.808860px;}
.y101{bottom:61.653424px;}
.y1a6{bottom:62.497922px;}
.y13f{bottom:62.497988px;}
.y3d{bottom:62.497992px;}
.y5c{bottom:65.031690px;}
.y1b{bottom:67.591014px;}
.y1ad{bottom:68.409951px;}
.yb6{bottom:70.089655px;}
.y1c0{bottom:70.099086px;}
.y1ba{bottom:70.943654px;}
.y186{bottom:71.788198px;}
.ye0{bottom:76.011069px;}
.y124{bottom:76.011073px;}
.y13e{bottom:83.612175px;}
.y72{bottom:85.301311px;}
.ya7{bottom:86.145874px;}
.y5b{bottom:86.145877px;}
.y6{bottom:88.679610px;}
.y1a{bottom:88.703514px;}
.y1ac{bottom:89.524137px;}
.y1a5{bottom:90.368649px;}
.y3c{bottom:90.368718px;}
.y185{bottom:92.902385px;}
.y112{bottom:92.902420px;}
.y1bf{bottom:95.436110px;}
.y100{bottom:97.125258px;}
.y123{bottom:97.125260px;}
.y96{bottom:99.649517px;}
.y1b9{bottom:99.658948px;}
.ydf{bottom:100.503525px;}
.y8c{bottom:103.037230px;}
.yd3{bottom:104.716922px;}
.y13d{bottom:104.726362px;}
.y71{bottom:106.415498px;}
.y172{bottom:108.949201px;}
.y19{bottom:109.816014px;}
.ya6{bottom:114.016601px;}
.y5a{bottom:114.016603px;}
.y5{bottom:116.550360px;}
.y10d{bottom:117.394877px;}
.y1a4{bottom:118.239375px;}
.y3b{bottom:118.239445px;}
.yff{bottom:119.928579px;}
.y184{bottom:120.773112px;}
.y1ab{bottom:120.773134px;}
.yfe{bottom:122.462282px;}
.yfd{bottom:124.151417px;}
.y122{bottom:124.995986px;}
.y1b8{bottom:128.374242px;}
.y13c{bottom:130.063386px;}
.y8b{bottom:130.907957px;}
.y18{bottom:130.928513px;}
.y171{bottom:133.441658px;}
.y70{bottom:134.286225px;}
.ya5{bottom:135.130788px;}
.y59{bottom:137.664493px;}
.y10c{bottom:138.509064px;}
.y1a3{bottom:139.353562px;}
.yea{bottom:139.353629px;}
.y183{bottom:141.887298px;}
.y1aa{bottom:141.887321px;}
.y4{bottom:144.429360px;}
.yd2{bottom:145.256160px;}
.y3a{bottom:146.110172px;}
.y121{bottom:146.110173px;}
.yfc{bottom:146.954738px;}
.yfb{bottom:149.488441px;}
.yc1{bottom:150.333004px;}
.yfa{bottom:151.177576px;}
.y8a{bottom:152.022144px;}
.y17{bottom:152.041013px;}
.y1be{bottom:153.711266px;}
.y6f{bottom:155.400412px;}
.y137{bottom:156.244976px;}
.y1b7{bottom:157.089536px;}
.y143{bottom:162.156950px;}
.y182{bottom:163.001485px;}
.y1a9{bottom:163.001508px;}
.y14c{bottom:164.690610px;}
.y10b{bottom:166.379790px;}
.y1a2{bottom:167.224289px;}
.y58{bottom:171.447192px;}
.y1e{bottom:172.291860px;}
.y89{bottom:173.136331px;}
.y16{bottom:173.153512px;}
.y39{bottom:173.980898px;}
.y6e{bottom:176.514598px;}
.yf9{bottom:176.514600px;}
.y136{bottom:177.359163px;}
.y179{bottom:177.359166px;}
.y120{bottom:177.359170px;}
.yf8{bottom:178.203735px;}
.y14b{bottom:185.804797px;}
.y1b6{bottom:185.804830px;}
.y181{bottom:186.649375px;}
.y1a1{bottom:188.338476px;}
.y1a8{bottom:192.561369px;}
.y88{bottom:194.250518px;}
.y15{bottom:194.266012px;}
.yb4{bottom:195.930208px;}
.y6d{bottom:197.628785px;}
.y135{bottom:198.473349px;}
.y178{bottom:198.473353px;}
.y57{bottom:199.317918px;}
.y3{bottom:200.166360px;}
.yf7{bottom:201.007057px;}
.y38{bottom:201.851625px;}
.y11f{bottom:201.851626px;}
.yf6{bottom:203.540759px;}
.ya4{bottom:205.229888px;}
.yf5{bottom:205.229894px;}
.y14a{bottom:206.918983px;}
.yd1{bottom:213.666126px;}
.y1b5{bottom:214.520124px;}
.y10a{bottom:215.364704px;}
.y14{bottom:215.378511px;}
.y1a0{bottom:216.209202px;}
.y6c{bottom:218.742972px;}
.y87{bottom:219.587542px;}
.y180{bottom:220.432073px;}
.ya3{bottom:226.344075px;}
.y134{bottom:226.344076px;}
.y56{bottom:227.188645px;}
.y149{bottom:228.033170px;}
.y1d{bottom:228.033211px;}
.y17a{bottom:228.033215px;}
.yf4{bottom:228.033216px;}
.y164{bottom:229.722327px;}
.y37{bottom:229.722351px;}
.y11e{bottom:229.722353px;}
.yf3{bottom:230.566918px;}
.yf2{bottom:232.256053px;}
.y1b4{bottom:236.478878px;}
.y6b{bottom:239.857159px;}
.y109{bottom:243.235430px;}
.y19f{bottom:244.924496px;}
.y133{bottom:247.458263px;}
.y2{bottom:248.302861px;}
.y18a{bottom:249.991935px;}
.y163{bottom:250.836514px;}
.y11d{bottom:250.836540px;}
.y1bd{bottom:251.671662px;}
.ya2{bottom:251.681099px;}
.yd0{bottom:254.205364px;}
.y55{bottom:255.059371px;}
.y148{bottom:255.903897px;}
.y36{bottom:257.593078px;}
.y6a{bottom:260.971346px;}
.yc0{bottom:261.815911px;}
.y111{bottom:263.505050px;}
.y108{bottom:264.349617px;}
.y1b3{bottom:265.194172px;}
.yf1{bottom:267.727887px;}
.y11c{bottom:271.950726px;}
.y13{bottom:271.960010px;}
.y19e{bottom:273.639790px;}
.y132{bottom:275.328989px;}
.y16c{bottom:277.018072px;}
.y162{bottom:278.707241px;}
.y54{bottom:282.930098px;}
.ya1{bottom:283.774663px;}
.y86{bottom:283.774670px;}
.y150{bottom:285.463758px;}
.y35{bottom:285.463805px;}
.y94{bottom:287.143496px;}
.y69{bottom:288.842072px;}
.y156{bottom:291.375697px;}
.y11b{bottom:293.064913px;}
.y1b2{bottom:293.909466px;}
.y110{bottom:295.598614px;}
.y131{bottom:296.443176px;}
.y161{bottom:299.821428px;}
.yf0{bottom:299.821451px;}
.y12{bottom:299.828509px;}
.y19d{bottom:301.510517px;}
.ya0{bottom:304.888850px;}
.y9{bottom:305.724030px;}
.y53{bottom:306.577987px;}
.y107{bottom:306.577991px;}
.y68{bottom:309.956259px;}
.y155{bottom:312.489884px;}
.y34{bottom:313.334531px;}
.y130{bottom:317.557363px;}
.y11a{bottom:320.935640px;}
.y1b1{bottom:322.624760px;}
.ycf{bottom:325.149032px;}
.y160{bottom:327.692154px;}
.y106{bottom:327.692178px;}
.y52{bottom:329.381309px;}
.y19c{bottom:330.225811px;}
.y67{bottom:331.070446px;}
.y10f{bottom:331.070447px;}
.y11{bottom:331.075009px;}
.y154{bottom:333.604070px;}
.yef{bottom:335.293285px;}
.y33{bottom:341.205258px;}
.y119{bottom:342.049827px;}
.y1b0{bottom:344.583515px;}
.y92{bottom:347.107787px;}
.y138{bottom:347.117225px;}
.y15f{bottom:348.806341px;}
.y105{bottom:348.806364px;}
.y19b{bottom:352.184565px;}
.y51{bottom:353.029198px;}
.y142{bottom:353.873767px;}
.y76{bottom:360.630308px;}
.y10{bottom:362.321508px;}
.y158{bottom:363.163932px;}
.ycd{bottom:365.688271px;}
.y10e{bottom:366.542281px;}
.yb3{bottom:368.221973px;}
.yde{bottom:369.075982px;}
.y32{bottom:369.075984px;}
.y118{bottom:369.920553px;}
.y9f{bottom:370.765112px;}
.ybf{bottom:370.765115px;}
.yee{bottom:370.765119px;}
.y1af{bottom:373.298809px;}
.y15e{bottom:374.143365px;}
.y50{bottom:375.832520px;}
.y104{bottom:376.677091px;}
.y19a{bottom:380.899859px;}
.y90{bottom:385.113322px;}
.y85{bottom:386.811901px;}
.yf{bottom:389.347757px;}
.ydd{bottom:390.190168px;}
.y31{bottom:396.946711px;}
.y103{bottom:397.791278px;}
.y9e{bottom:398.635839px;}
.y128{bottom:399.480415px;}
.y4f{bottom:403.703247px;}
.y165{bottom:406.236929px;}
.y199{bottom:409.615153px;}
.ydc{bottom:413.838058px;}
.ye{bottom:417.218507px;}
.y16a{bottom:418.060840px;}
.ybe{bottom:424.817433px;}
.y30{bottom:424.817438px;}
.y17f{bottom:430.729374px;}
.y4e{bottom:431.573973px;}
.ycb{bottom:434.098236px;}
.y198{bottom:438.330448px;}
.y169{bottom:439.175027px;}
.yd{bottom:445.090906px;}
.y8e{bottom:450.145018px;}
.y17e{bottom:451.843561px;}
.y2f{bottom:452.688164px;}
.ybd{bottom:455.221862px;}
.y84{bottom:456.066434px;}
.y4d{bottom:459.444700px;}
.y168{bottom:460.289214px;}
.yed{bottom:461.124396px;}
.yb2{bottom:461.968963px;}
.y1ae{bottom:462.813530px;}
.y9d{bottom:464.512102px;}
.y197{bottom:467.045742px;}
.y17d{bottom:472.957748px;}
.yc{bottom:472.959406px;}
.y83{bottom:479.714323px;}
.ydb{bottom:480.558888px;}
.y2e{bottom:480.558891px;}
.ye8{bottom:483.083150px;}
.y147{bottom:483.937114px;}
.y4c{bottom:487.315426px;}
.y177{bottom:487.315429px;}
.y167{bottom:488.159940px;}
.yb{bottom:494.074005px;}
.y196{bottom:494.916468px;}
.y17c{bottom:498.294772px;}
.y146{bottom:505.051301px;}
.y176{bottom:508.429616px;}
.y2d{bottom:508.429617px;}
.y166{bottom:509.274127px;}
.yda{bottom:510.963317px;}
.y82{bottom:513.497022px;}
.y4b{bottom:515.186153px;}
.yc9{bottom:516.021281px;}
.ya{bottom:520.253505px;}
.y195{bottom:522.787195px;}
.y145{bottom:526.165488px;}
.yb0{bottom:527.845226px;}
.y175{bottom:529.543802px;}
.y17b{bottom:530.388336px;}
.y9c{bottom:530.388365px;}
.y2c{bottom:536.300344px;}
.y16b{bottom:538.833988px;}
.y81{bottom:541.367749px;}
.y4a{bottom:543.056880px;}
.y153{bottom:549.813343px;}
.y194{bottom:551.502489px;}
.y13b{bottom:554.880825px;}
.y14f{bottom:555.725350px;}
.y9b{bottom:558.259091px;}
.yc8{bottom:559.094222px;}
.y189{bottom:559.948197px;}
.y2b{bottom:564.171071px;}
.ybc{bottom:565.015633px;}
.y80{bottom:569.238475px;}
.y152{bottom:570.927530px;}
.y49{bottom:570.927606px;}
.ye7{bottom:574.296436px;}
.y13a{bottom:575.995012px;}
.y193{bottom:580.217783px;}
.yd9{bottom:581.906985px;}
.y117{bottom:586.129826px;}
.y7f{bottom:590.352662px;}
.y151{bottom:592.041717px;}
.y2a{bottom:592.041797px;}
.y170{bottom:592.876921px;}
.ybb{bottom:592.886360px;}
.y139{bottom:597.109199px;}
.y48{bottom:598.798333px;}
.yd8{bottom:605.554874px;}
.y116{bottom:607.244013px;}
.y192{bottom:608.933077px;}
.y7e{bottom:611.466849px;}
.yba{bottom:614.000547px;}
.y9a{bottom:618.223382px;}
.y66{bottom:619.067954px;}
.y29{bottom:619.912524px;}
.yae{bottom:621.592215px;}
.y157{bottom:621.601579px;}
.y47{bottom:626.669059px;}
.y191{bottom:630.891831px;}
.y115{bottom:630.891902px;}
.y7d{bottom:639.337576px;}
.y12f{bottom:644.404975px;}
.y65{bottom:646.938681px;}
.y28{bottom:647.783250px;}
.y46{bottom:654.539786px;}
.yd7{bottom:657.073490px;}
.y190{bottom:659.607125px;}
.y7c{bottom:660.451762px;}
.y127{bottom:664.674601px;}
.y12e{bottom:665.519162px;}
.y99{bottom:668.052863px;}
.y64{bottom:668.052868px;}
.ye5{bottom:668.887993px;}
.y27{bottom:675.653977px;}
.yc7{bottom:677.333668px;}
.yac{bottom:681.556506px;}
.y45{bottom:682.410513px;}
.y18f{bottom:688.322419px;}
.y7b{bottom:688.322489px;}
.y63{bottom:689.167054px;}
.y12d{bottom:690.856186px;}
.yb9{bottom:691.700754px;}
.y98{bottom:695.923589px;}
.y23{bottom:696.850500px;}
.yc5{bottom:702.670692px;}
.y26{bottom:703.524704px;}
.y7a{bottom:709.436676px;}
.y44{bottom:710.281239px;}
.y22{bottom:713.067000px;}
.y18e{bottom:716.193146px;}
.yd6{bottom:716.193213px;}
.yb8{bottom:717.037778px;}
.y62{bottom:717.037781px;}
.ye3{bottom:720.406610px;}
.y15d{bottom:722.105164px;}
.y16f{bottom:722.105186px;}
.y12c{bottom:722.949750px;}
.y21{bottom:729.283500px;}
.y79{bottom:730.550863px;}
.y40{bottom:734.773700px;}
.y43{bottom:738.151966px;}
.y18d{bottom:740.685603px;}
.y15c{bottom:743.219351px;}
.y16e{bottom:743.219373px;}
.y12b{bottom:744.063937px;}
.y61{bottom:744.908508px;}
.y20{bottom:745.500000px;}
.y78{bottom:751.665049px;}
.y97{bottom:755.887880px;}
.yaa{bottom:756.723011px;}
.y1f{bottom:761.716500px;}
.y25{bottom:762.644427px;}
.y15b{bottom:764.333538px;}
.y16d{bottom:764.333560px;}
.y12a{bottom:765.178124px;}
.y42{bottom:766.022692px;}
.y60{bottom:766.022694px;}
.y18c{bottom:771.934599px;}
.y77{bottom:772.779236px;}
.yc3{bottom:784.593737px;}
.y15a{bottom:785.447724px;}
.y129{bottom:788.826013px;}
.y14d{bottom:791.350277px;}
.y18b{bottom:793.048786px;}
.y144{bottom:793.893377px;}
.y41{bottom:793.893419px;}
.y5f{bottom:793.893421px;}
.y3f{bottom:793.893423px;}
.ya8{bottom:816.687301px;}
.h1f{height:17.735917px;}
.h2f{height:19.425052px;}
.h22{height:20.269620px;}
.hb{height:20.531906px;}
.h23{height:21.114187px;}
.h28{height:21.958754px;}
.ha{height:23.098394px;}
.h26{height:24.317605px;}
.h2e{height:24.492457px;}
.h25{height:25.388325px;}
.he{height:27.017402px;}
.h27{height:27.019561px;}
.h1c{height:27.870727px;}
.hd{height:28.206996px;}
.h13{height:28.209250px;}
.h19{height:28.233627px;}
.h2a{height:28.715294px;}
.h16{height:29.721517px;}
.h1e{height:30.404428px;}
.hc{height:30.797859px;}
.h14{height:31.030175px;}
.h3{height:32.420883px;}
.h11{height:32.423473px;}
.h1a{height:32.938132px;}
.h2{height:33.364348px;}
.h3b{height:33.367013px;}
.h1b{height:33.782699px;}
.h4{height:33.848395px;}
.h12{height:33.851100px;}
.h1d{height:34.627266px;}
.h2c{height:35.125429px;}
.h35{height:35.128728px;}
.h29{height:36.316401px;}
.h30{height:36.672025px;}
.h18{height:37.160968px;}
.h38{height:37.827385px;}
.h8{height:38.488321px;}
.h9{height:38.494921px;}
.h7{height:38.495521px;}
.h34{height:38.506998px;}
.h24{height:38.850104px;}
.h2d{height:40.529341px;}
.h20{height:40.539239px;}
.h6{height:41.063812px;}
.hf{height:41.068371px;}
.h21{height:47.295778px;}
.h17{height:51.333867px;}
.h33{height:52.016779px;}
.h32{height:57.420691px;}
.h15{height:59.033947px;}
.h37{height:61.600640px;}
.h2b{height:119.084013px;}
.h36{height:152.022146px;}
.h3a{height:199.317924px;}
.h39{height:387.656470px;}
.h31{height:389.345604px;}
.h5{height:542.212290px;}
.h1{height:804.872880px;}
.h10{height:807.406503px;}
.h0{height:892.500000px;}
.w3{width:1211.954322px;}
.w1{width:1213.643430px;}
.w2{width:1213.643451px;}
.w4{width:1220.399991px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x2c{left:4.222837px;}
.x4{left:6.545430px;}
.x5{left:9.224280px;}
.x97{left:20.970000px;}
.x17{left:23.080445px;}
.x1{left:27.726570px;}
.x2{left:29.558937px;}
.x83{left:33.782699px;}
.xb{left:35.234291px;}
.x2f{left:39.602292px;}
.x7{left:42.228374px;}
.xc{left:49.103681px;}
.x30{left:52.957016px;}
.x31{left:56.005381px;}
.x3{left:59.116437px;}
.x43{left:61.587439px;}
.x44{left:71.102024px;}
.x45{left:74.058002px;}
.x2e{left:77.700207px;}
.xd{left:82.754412px;}
.x4f{left:86.145882px;}
.x50{left:91.068123px;}
.x1b{left:92.321773px;}
.xe{left:99.645765px;}
.x1c{left:101.493257px;}
.x1d{left:104.449239px;}
.x60{left:105.570934px;}
.x1e{left:107.497604px;}
.x5e{left:109.793771px;}
.x61{left:111.482906px;}
.x5f{left:114.636834px;}
.x62{left:116.259991px;}
.x51{left:119.466708px;}
.x59{left:127.397716px;}
.x1a{left:130.063391px;}
.x5a{left:132.597093px;}
.x52{left:135.632258px;}
.x5b{left:138.113175px;}
.x1f{left:140.594083px;}
.x55{left:142.349204px;}
.x53{left:146.796375px;}
.x20{left:149.765566px;}
.x21{left:152.721548px;}
.x22{left:155.769913px;}
.x54{left:165.403261px;}
.x5c{left:186.649411px;}
.x5d{left:191.703616px;}
.x56{left:204.952768px;}
.x6c{left:219.983434px;}
.x58{left:221.593391px;}
.x57{left:224.325039px;}
.x6d{left:242.984701px;}
.x6b{left:257.593079px;}
.x33{left:268.941946px;}
.x34{left:278.733659px;}
.x35{left:281.689636px;}
.x36{left:284.738006px;}
.x32{left:306.577993px;}
.x19{left:351.340069px;}
.x6e{left:397.804472px;}
.x6f{left:409.404082px;}
.x2d{left:421.452365px;}
.x4b{left:429.766072px;}
.x70{left:434.873070px;}
.x4c{left:438.568053px;}
.x4d{left:441.524039px;}
.x4e{left:444.572400px;}
.x71{left:446.472677px;}
.x66{left:452.305467px;}
.x67{left:461.608909px;}
.x68{left:464.894800px;}
.x4a{left:467.890380px;}
.x72{left:484.781729px;}
.x65{left:489.849134px;}
.x73{left:500.287460px;}
.x24{left:525.677266px;}
.xf{left:528.936764px;}
.x25{left:535.191850px;}
.x26{left:538.147828px;}
.x27{left:541.196197px;}
.x10{left:546.250406px;}
.x74{left:561.373442px;}
.x23{left:563.326504px;}
.xa2{left:565.121210px;}
.x28{left:574.292681px;}
.x29{left:583.807266px;}
.x2a{left:586.763243px;}
.x2b{left:589.811612px;}
.x37{left:591.711885px;}
.x38{left:601.503593px;}
.x39{left:604.459575px;}
.x3a{left:607.507940px;}
.x80{left:617.510778px;}
.x95{left:631.683684px;}
.x6{left:644.014500px;}
.x92{left:650.409324px;}
.xa6{left:660.953217px;}
.x94{left:662.721539px;}
.xa0{left:664.291902px;}
.x81{left:673.938450px;}
.x96{left:682.502888px;}
.x11{left:702.548174px;}
.xa3{left:706.111193px;}
.xa4{left:707.219679px;}
.x12{left:708.433753px;}
.x7d{left:712.471833px;}
.x3b{left:717.143347px;}
.x88{left:719.993770px;}
.x3c{left:726.657936px;}
.x3d{left:729.613918px;}
.x3e{left:732.662283px;}
.x46{left:739.907084px;}
.x47{left:749.421668px;}
.x48{left:752.377646px;}
.x49{left:755.426015px;}
.x8e{left:758.606331px;}
.x7e{left:765.969904px;}
.x9b{left:767.698632px;}
.x84{left:772.541694px;}
.x9f{left:775.035816px;}
.x8a{left:788.931590px;}
.xa7{left:801.943208px;}
.x75{left:803.935855px;}
.x8c{left:808.462205px;}
.x76{left:815.891768px;}
.x85{left:818.187936px;}
.x93{left:820.457711px;}
.x7f{left:822.397577px;}
.x77{left:828.758225px;}
.xa5{left:833.205401px;}
.x89{left:834.511841px;}
.x78{left:840.714134px;}
.x8{left:847.892949px;}
.x9a{left:859.901651px;}
.x9{left:861.762334px;}
.x9c{left:883.879445px;}
.x63{left:895.795768px;}
.x64{left:901.166686px;}
.x8f{left:915.392369px;}
.xa1{left:918.625483px;}
.x8b{left:929.921573px;}
.x90{left:952.949229px;}
.x8d{left:965.248243px;}
.x69{left:984.488545px;}
.x86{left:987.035448px;}
.x13{left:994.847697px;}
.x6a{left:997.486962px;}
.x14{left:1000.218614px;}
.x3f{left:1005.998623px;}
.x9d{left:1014.457490px;}
.x40{left:1015.513208px;}
.x41{left:1018.469185px;}
.x42{left:1021.517550px;}
.x79{left:1039.081919px;}
.x87{left:1043.463113px;}
.x7a{left:1044.756356px;}
.x98{left:1051.354540px;}
.x7b{left:1057.622810px;}
.x7c{left:1064.537706px;}
.x15{left:1081.283900px;}
.x91{left:1109.735266px;}
.x16{left:1123.459488px;}
.x82{left:1134.755569px;}
.x9e{left:1155.447481px;}
.x99{left:1177.340249px;}
.x18{left:1190.259496px;}
.xa{left:1196.712515px;}
@media print{
.v3{vertical-align:-15.013333pt;}
.v1{vertical-align:-9.404628pt;}
.v4{vertical-align:-6.270253pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.011626pt;}
.v2{vertical-align:15.013333pt;}
.v5{vertical-align:24.023253pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.028528pt;}
.ls32{letter-spacing:0.043152pt;}
.ls52{letter-spacing:0.043167pt;}
.ls23{letter-spacing:0.043182pt;}
.ls1f{letter-spacing:0.051049pt;}
.ls4c{letter-spacing:0.058181pt;}
.ls6{letter-spacing:0.060053pt;}
.ls45{letter-spacing:0.061935pt;}
.ls47{letter-spacing:0.061950pt;}
.ls1d{letter-spacing:0.072820pt;}
.ls56{letter-spacing:0.082580pt;}
.ls16{letter-spacing:0.083706pt;}
.ls57{letter-spacing:0.090087pt;}
.ls35{letter-spacing:0.090463pt;}
.ls4e{letter-spacing:0.090478pt;}
.ls17{letter-spacing:0.097594pt;}
.ls5{letter-spacing:0.099088pt;}
.ls4{letter-spacing:0.105093pt;}
.ls2{letter-spacing:0.114101pt;}
.ls3{letter-spacing:0.123109pt;}
.ls55{letter-spacing:0.130251pt;}
.ls18{letter-spacing:0.132128pt;}
.ls58{letter-spacing:0.144140pt;}
.ls49{letter-spacing:0.148269pt;}
.ls5d{letter-spacing:0.152022pt;}
.ls5b{letter-spacing:0.156151pt;}
.ls19{letter-spacing:0.159154pt;}
.ls30{letter-spacing:0.178283pt;}
.ls34{letter-spacing:0.180174pt;}
.ls4f{letter-spacing:0.186556pt;}
.ls54{letter-spacing:0.186571pt;}
.ls59{letter-spacing:0.188042pt;}
.ls37{letter-spacing:0.188057pt;}
.ls5a{letter-spacing:0.188072pt;}
.ls24{letter-spacing:0.191435pt;}
.ls53{letter-spacing:0.202321pt;}
.ls5c{letter-spacing:0.216960pt;}
.ls50{letter-spacing:0.224828pt;}
.ls51{letter-spacing:0.224843pt;}
.ls1c{letter-spacing:0.224858pt;}
.ls31{letter-spacing:0.292783pt;}
.ls2c{letter-spacing:1.973562pt;}
.ls1e{letter-spacing:1.990837pt;}
.ls21{letter-spacing:1.994724pt;}
.ls29{letter-spacing:1.994756pt;}
.ls26{letter-spacing:2.007672pt;}
.ls25{letter-spacing:2.031938pt;}
.ls4d{letter-spacing:2.876479pt;}
.lsa{letter-spacing:2.897246pt;}
.ls9{letter-spacing:2.897249pt;}
.ls8{letter-spacing:2.897252pt;}
.ls41{letter-spacing:2.902751pt;}
.ls4b{letter-spacing:2.911341pt;}
.ls4a{letter-spacing:2.911373pt;}
.ls38{letter-spacing:2.912533pt;}
.ls3b{letter-spacing:2.912564pt;}
.ls11{letter-spacing:2.916840pt;}
.ls13{letter-spacing:2.916843pt;}
.lsf{letter-spacing:2.926641pt;}
.ls44{letter-spacing:2.935262pt;}
.ls46{letter-spacing:2.948963pt;}
.ls1a{letter-spacing:2.956832pt;}
.lsd{letter-spacing:2.964651pt;}
.lsc{letter-spacing:2.964654pt;}
.lsb{letter-spacing:2.964657pt;}
.lse{letter-spacing:2.980333pt;}
.ls42{letter-spacing:3.003451pt;}
.ls40{letter-spacing:3.003483pt;}
.ls14{letter-spacing:3.005019pt;}
.ls48{letter-spacing:3.005803pt;}
.ls0{letter-spacing:3.012616pt;}
.ls15{letter-spacing:3.013248pt;}
.ls3d{letter-spacing:3.020318pt;}
.ls2d{letter-spacing:3.021478pt;}
.ls12{letter-spacing:3.023046pt;}
.ls10{letter-spacing:3.023049pt;}
.ls1{letter-spacing:3.031425pt;}
.ls33{letter-spacing:3.031667pt;}
.ls3f{letter-spacing:3.041856pt;}
.ls43{letter-spacing:3.042609pt;}
.ls2f{letter-spacing:3.062203pt;}
.ls2e{letter-spacing:3.062235pt;}
.ls5e{letter-spacing:18.142435pt;}
.ls20{letter-spacing:231.430256pt;}
.ls22{letter-spacing:232.884789pt;}
.ls28{letter-spacing:504.600913pt;}
.ls27{letter-spacing:646.253646pt;}
.ls2b{letter-spacing:1081.205894pt;}
.ls2a{letter-spacing:1086.601742pt;}
.ls3a{letter-spacing:2158.191579pt;}
.ls3c{letter-spacing:2167.904105pt;}
.ls36{letter-spacing:2367.691233pt;}
.ls39{letter-spacing:2399.503274pt;}
.ls3e{letter-spacing:2435.866596pt;}
.ws2e{word-spacing:-44.683250pt;}
.ws4e{word-spacing:-41.921326pt;}
.ws4b{word-spacing:-41.704366pt;}
.ws33{word-spacing:-38.913540pt;}
.ws4f{word-spacing:-38.815570pt;}
.ws25{word-spacing:-38.725483pt;}
.wsa{word-spacing:-37.320546pt;}
.wse{word-spacing:-35.905754pt;}
.ws50{word-spacing:-35.844194pt;}
.wsc{word-spacing:-35.830306pt;}
.ws8{word-spacing:-35.746600pt;}
.ws1{word-spacing:-35.743744pt;}
.ws18{word-spacing:-34.210500pt;}
.ws49{word-spacing:-33.440368pt;}
.ws17{word-spacing:-32.840537pt;}
.ws10{word-spacing:-32.767716pt;}
.wsb{word-spacing:-32.047019pt;}
.ws3c{word-spacing:-29.937102pt;}
.ws11{word-spacing:-29.877794pt;}
.ws2c{word-spacing:-29.788833pt;}
.ws15{word-spacing:-29.737033pt;}
.ws12{word-spacing:-29.643192pt;}
.ws16{word-spacing:-29.173988pt;}
.ws5{word-spacing:-29.124665pt;}
.ws13{word-spacing:-29.033227pt;}
.ws3e{word-spacing:-28.376341pt;}
.ws3d{word-spacing:-28.329421pt;}
.wsd{word-spacing:-28.000978pt;}
.ws14{word-spacing:-27.866973pt;}
.ws2a{word-spacing:-26.809950pt;}
.ws9{word-spacing:-24.880364pt;}
.ws32{word-spacing:-23.831067pt;}
.ws3{word-spacing:-23.829162pt;}
.ws2{word-spacing:-22.291797pt;}
.ws4a{word-spacing:-19.637132pt;}
.ws4d{word-spacing:-19.506881pt;}
.ws24{word-spacing:-18.113532pt;}
.ws0{word-spacing:-18.112085pt;}
.ws4c{word-spacing:-16.911619pt;}
.ws51{word-spacing:-16.720184pt;}
.ws4{word-spacing:-16.718848pt;}
.wsf{word-spacing:-15.326835pt;}
.ws6{word-spacing:-15.279264pt;}
.ws7{word-spacing:0.000000pt;}
.ws1d{word-spacing:14.288205pt;}
.ws1e{word-spacing:18.276440pt;}
.ws1b{word-spacing:21.279347pt;}
.ws1c{word-spacing:25.314502pt;}
.ws1a{word-spacing:36.420752pt;}
.ws19{word-spacing:54.203590pt;}
.ws2b{word-spacing:54.358239pt;}
.ws23{word-spacing:55.564282pt;}
.ws1f{word-spacing:56.878053pt;}
.ws20{word-spacing:58.097984pt;}
.ws22{word-spacing:59.083313pt;}
.ws21{word-spacing:61.241652pt;}
.ws29{word-spacing:62.334710pt;}
.ws39{word-spacing:64.291479pt;}
.ws38{word-spacing:67.324790pt;}
.ws37{word-spacing:94.320545pt;}
.ws3a{word-spacing:196.653970pt;}
.ws3f{word-spacing:488.285356pt;}
.ws46{word-spacing:550.758965pt;}
.ws42{word-spacing:551.135079pt;}
.ws48{word-spacing:617.335656pt;}
.ws44{word-spacing:654.336344pt;}
.ws47{word-spacing:673.831965pt;}
.ws41{word-spacing:692.271688pt;}
.ws43{word-spacing:698.652864pt;}
.ws45{word-spacing:866.820512pt;}
.ws40{word-spacing:938.045702pt;}
.ws3b{word-spacing:1913.643126pt;}
.ws26{word-spacing:1956.735586pt;}
.ws31{word-spacing:2505.248752pt;}
.ws2f{word-spacing:2680.496503pt;}
.ws2d{word-spacing:2695.792558pt;}
.ws30{word-spacing:2697.059409pt;}
.ws36{word-spacing:2773.492766pt;}
.ws34{word-spacing:2779.263977pt;}
.ws35{word-spacing:2794.560032pt;}
.ws28{word-spacing:2815.017333pt;}
.ws27{word-spacing:2863.063838pt;}
._13{margin-left:-155.482995pt;}
._a{margin-left:-154.544587pt;}
._d{margin-left:-153.653099pt;}
._14{margin-left:-6.236662pt;}
._16{margin-left:-5.305010pt;}
._2{margin-left:-4.096856pt;}
._4{margin-left:-3.117975pt;}
._1{margin-left:-1.466502pt;}
._0{width:0.891513pt;}
._3{width:1.785052pt;}
._7{width:2.809037pt;}
._6{width:3.863168pt;}
._8{width:4.818995pt;}
._18{width:5.726684pt;}
._5{width:7.529796pt;}
._9{width:76.357684pt;}
._17{width:105.738121pt;}
._10{width:112.907962pt;}
._e{width:120.366031pt;}
._15{width:131.490425pt;}
._f{width:151.235177pt;}
._c{width:231.289494pt;}
._1a{width:529.375618pt;}
._11{width:591.638283pt;}
._1e{width:758.219946pt;}
._19{width:763.606417pt;}
._20{width:791.568049pt;}
._1f{width:797.385805pt;}
._1b{width:802.248211pt;}
._1d{width:828.192623pt;}
._1c{width:834.198436pt;}
._12{width:1431.419873pt;}
._b{width:2434.437588pt;}
.fs5{font-size:24.021333pt;}
.fs19{font-size:24.023253pt;}
.fs3{font-size:25.079008pt;}
.fsd{font-size:25.081012pt;}
.fs6{font-size:27.023999pt;}
.fs15{font-size:27.026159pt;}
.fs14{font-size:28.216139pt;}
.fs9{font-size:30.026667pt;}
.fs13{font-size:30.029066pt;}
.fs8{font-size:31.348760pt;}
.fse{font-size:31.351265pt;}
.fs11{font-size:33.031972pt;}
.fsf{font-size:34.486392pt;}
.fs1{font-size:36.032000pt;}
.fsb{font-size:36.034879pt;}
.fs2{font-size:37.618512pt;}
.fsc{font-size:37.621518pt;}
.fs7{font-size:39.034666pt;}
.fs0{font-size:39.034667pt;}
.fs16{font-size:39.037785pt;}
.fs18{font-size:40.756645pt;}
.fs1b{font-size:42.040692pt;}
.fs17{font-size:45.043599pt;}
.fs4{font-size:48.042666pt;}
.fsa{font-size:48.048000pt;}
.fs12{font-size:60.058131pt;}
.fs10{font-size:69.066851pt;}
.fs1a{font-size:72.069758pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:5.255079pt;}
.ye6{bottom:6.005810pt;}
.y159{bottom:6.756467pt;}
.yc6{bottom:6.756535pt;}
.ycc{bottom:7.507261pt;}
.ye4{bottom:8.257990pt;}
.yaf{bottom:9.759440pt;}
.y95{bottom:9.759446pt;}
.yd5{bottom:10.510168pt;}
.ye9{bottom:10.510169pt;}
.yab{bottom:11.260892pt;}
.yec{bottom:11.260896pt;}
.y1bc{bottom:12.011614pt;}
.y141{bottom:12.011622pt;}
.y91{bottom:12.011626pt;}
.y14e{bottom:12.762311pt;}
.yb1{bottom:12.762346pt;}
.y174{bottom:12.762350pt;}
.y93{bottom:12.762352pt;}
.y1c{bottom:12.788903pt;}
.yce{bottom:13.513075pt;}
.y75{bottom:13.513077pt;}
.y5e{bottom:14.263801pt;}
.y8f{bottom:14.263805pt;}
.yca{bottom:15.014528pt;}
.ye2{bottom:15.014529pt;}
.yb5{bottom:15.765253pt;}
.yc4{bottom:15.765255pt;}
.y188{bottom:16.515953pt;}
.yb7{bottom:18.768159pt;}
.y114{bottom:19.518891pt;}
.ya9{bottom:22.521793pt;}
.y102{bottom:23.272524pt;}
.y126{bottom:24.023253pt;}
.y8{bottom:29.278453pt;}
.y1a7{bottom:30.029003pt;}
.y140{bottom:30.779788pt;}
.y3e{bottom:30.779791pt;}
.y74{bottom:32.281243pt;}
.y8d{bottom:32.281245pt;}
.y173{bottom:33.782696pt;}
.yc2{bottom:36.785600pt;}
.y1bb{bottom:37.536320pt;}
.y1{bottom:38.278613pt;}
.y24{bottom:38.278664pt;}
.yd4{bottom:39.029390pt;}
.y5d{bottom:39.037781pt;}
.y1c1{bottom:39.788500pt;}
.yeb{bottom:42.791415pt;}
.y125{bottom:42.791419pt;}
.y187{bottom:45.043566pt;}
.ye1{bottom:46.545048pt;}
.y73{bottom:51.049409pt;}
.y113{bottom:51.049410pt;}
.y7{bottom:54.052320pt;}
.y101{bottom:54.803043pt;}
.y1a6{bottom:55.553709pt;}
.y13f{bottom:55.553768pt;}
.y3d{bottom:55.553770pt;}
.y5c{bottom:57.805947pt;}
.y1b{bottom:60.080902pt;}
.y1ad{bottom:60.808845pt;}
.yb6{bottom:62.301916pt;}
.y1c0{bottom:62.310299pt;}
.y1ba{bottom:63.061025pt;}
.y186{bottom:63.811732pt;}
.ye0{bottom:67.565394pt;}
.y124{bottom:67.565398pt;}
.y13e{bottom:74.321934pt;}
.y72{bottom:75.823388pt;}
.ya7{bottom:76.574110pt;}
.y5b{bottom:76.574113pt;}
.y6{bottom:78.826320pt;}
.y1a{bottom:78.847568pt;}
.y1ac{bottom:79.577011pt;}
.y1a5{bottom:80.327688pt;}
.y3c{bottom:80.327750pt;}
.y185{bottom:82.579898pt;}
.y112{bottom:82.579929pt;}
.y1bf{bottom:84.832098pt;}
.y100{bottom:86.333562pt;}
.y123{bottom:86.333564pt;}
.y96{bottom:88.577349pt;}
.y1b9{bottom:88.585731pt;}
.ydf{bottom:89.336467pt;}
.y8c{bottom:91.588649pt;}
.yd3{bottom:93.081709pt;}
.y13d{bottom:93.090100pt;}
.y71{bottom:94.591554pt;}
.y172{bottom:96.843734pt;}
.y19{bottom:97.614234pt;}
.ya6{bottom:101.348090pt;}
.y5a{bottom:101.348092pt;}
.y5{bottom:103.600320pt;}
.y10d{bottom:104.351002pt;}
.y1a4{bottom:105.101667pt;}
.y3b{bottom:105.101729pt;}
.yff{bottom:106.603182pt;}
.y184{bottom:107.353877pt;}
.y1ab{bottom:107.353897pt;}
.yfe{bottom:108.855362pt;}
.yfd{bottom:110.356815pt;}
.y122{bottom:111.107543pt;}
.y1b8{bottom:114.110437pt;}
.y13c{bottom:115.611899pt;}
.y8b{bottom:116.362628pt;}
.y18{bottom:116.380901pt;}
.y171{bottom:118.614807pt;}
.y70{bottom:119.365533pt;}
.ya5{bottom:120.116256pt;}
.y59{bottom:122.368438pt;}
.y10c{bottom:123.119168pt;}
.y1a3{bottom:123.869833pt;}
.yea{bottom:123.869893pt;}
.y183{bottom:126.122043pt;}
.y1aa{bottom:126.122063pt;}
.y4{bottom:128.381654pt;}
.yd2{bottom:129.116587pt;}
.y3a{bottom:129.875708pt;}
.y121{bottom:129.875709pt;}
.yfc{bottom:130.626434pt;}
.yfb{bottom:132.878614pt;}
.yc1{bottom:133.629337pt;}
.yfa{bottom:134.380067pt;}
.y8a{bottom:135.130795pt;}
.y17{bottom:135.147567pt;}
.y1be{bottom:136.632237pt;}
.y6f{bottom:138.133699pt;}
.y137{bottom:138.884423pt;}
.y1b7{bottom:139.635143pt;}
.y143{bottom:144.139511pt;}
.y182{bottom:144.890209pt;}
.y1a9{bottom:144.890229pt;}
.y14c{bottom:146.391653pt;}
.y10b{bottom:147.893147pt;}
.y1a2{bottom:148.643812pt;}
.y58{bottom:152.397504pt;}
.y1e{bottom:153.148320pt;}
.y89{bottom:153.898961pt;}
.y16{bottom:153.914233pt;}
.y39{bottom:154.649687pt;}
.y6e{bottom:156.901865pt;}
.yf9{bottom:156.901867pt;}
.y136{bottom:157.652589pt;}
.y179{bottom:157.652592pt;}
.y120{bottom:157.652595pt;}
.yf8{bottom:158.403320pt;}
.y14b{bottom:165.159819pt;}
.y1b6{bottom:165.159849pt;}
.y181{bottom:165.910555pt;}
.y1a1{bottom:167.411978pt;}
.y1a8{bottom:171.165661pt;}
.y88{bottom:172.667127pt;}
.y15{bottom:172.680899pt;}
.yb4{bottom:174.160185pt;}
.y6d{bottom:175.670031pt;}
.y135{bottom:176.420755pt;}
.y178{bottom:176.420758pt;}
.y57{bottom:177.171483pt;}
.y3{bottom:177.925654pt;}
.yf7{bottom:178.672939pt;}
.y38{bottom:179.423666pt;}
.y11f{bottom:179.423668pt;}
.yf6{bottom:180.925119pt;}
.ya4{bottom:182.426567pt;}
.yf5{bottom:182.426572pt;}
.y14a{bottom:183.927985pt;}
.yd1{bottom:189.925445pt;}
.y1b5{bottom:190.684555pt;}
.y10a{bottom:191.435292pt;}
.y14{bottom:191.447566pt;}
.y1a0{bottom:192.185958pt;}
.y6c{bottom:194.438197pt;}
.y87{bottom:195.188926pt;}
.y180{bottom:195.939621pt;}
.ya3{bottom:201.194733pt;}
.y134{bottom:201.194734pt;}
.y56{bottom:201.945462pt;}
.y149{bottom:202.696151pt;}
.y1d{bottom:202.696187pt;}
.y17a{bottom:202.696191pt;}
.yf4{bottom:202.696192pt;}
.y164{bottom:204.197624pt;}
.y37{bottom:204.197646pt;}
.y11e{bottom:204.197647pt;}
.yf3{bottom:204.948372pt;}
.yf2{bottom:206.449825pt;}
.y1b4{bottom:210.203447pt;}
.y6b{bottom:213.206364pt;}
.y109{bottom:216.209271pt;}
.y19f{bottom:217.710663pt;}
.y133{bottom:219.962900pt;}
.y2{bottom:220.713654pt;}
.y18a{bottom:222.215053pt;}
.y163{bottom:222.965790pt;}
.y11d{bottom:222.965813pt;}
.y1bd{bottom:223.708144pt;}
.ya2{bottom:223.716532pt;}
.yd0{bottom:225.960324pt;}
.y55{bottom:226.719441pt;}
.y148{bottom:227.470130pt;}
.y36{bottom:228.971625pt;}
.y6a{bottom:231.974530pt;}
.yc0{bottom:232.725254pt;}
.y111{bottom:234.226711pt;}
.y108{bottom:234.977437pt;}
.y1b3{bottom:235.728153pt;}
.yf1{bottom:237.980344pt;}
.y11c{bottom:241.733979pt;}
.y13{bottom:241.742231pt;}
.y19e{bottom:243.235369pt;}
.y132{bottom:244.736880pt;}
.y16c{bottom:246.238286pt;}
.y162{bottom:247.739770pt;}
.y54{bottom:251.493420pt;}
.ya1{bottom:252.244145pt;}
.y86{bottom:252.244151pt;}
.y150{bottom:253.745563pt;}
.y35{bottom:253.745604pt;}
.y94{bottom:255.238663pt;}
.y69{bottom:256.748509pt;}
.y156{bottom:259.000619pt;}
.y11b{bottom:260.502145pt;}
.y1b2{bottom:261.252859pt;}
.y110{bottom:262.754323pt;}
.y131{bottom:263.505046pt;}
.y161{bottom:266.507936pt;}
.yf0{bottom:266.507956pt;}
.y12{bottom:266.514231pt;}
.y19d{bottom:268.009348pt;}
.ya0{bottom:271.012311pt;}
.y9{bottom:271.754693pt;}
.y53{bottom:272.513766pt;}
.y107{bottom:272.513770pt;}
.y68{bottom:275.516675pt;}
.y155{bottom:277.768785pt;}
.y34{bottom:278.519583pt;}
.y130{bottom:282.273212pt;}
.y11a{bottom:285.276124pt;}
.y1b1{bottom:286.777565pt;}
.ycf{bottom:289.021362pt;}
.y160{bottom:291.281915pt;}
.y106{bottom:291.281936pt;}
.y52{bottom:292.783386pt;}
.y19c{bottom:293.534054pt;}
.y67{bottom:294.284841pt;}
.y10f{bottom:294.284842pt;}
.y11{bottom:294.288897pt;}
.y154{bottom:296.536951pt;}
.yef{bottom:298.038475pt;}
.y33{bottom:303.293562pt;}
.y119{bottom:304.044290pt;}
.y1b0{bottom:306.296457pt;}
.y92{bottom:308.540255pt;}
.y138{bottom:308.548644pt;}
.y15f{bottom:310.050081pt;}
.y105{bottom:310.050102pt;}
.y19b{bottom:313.052947pt;}
.y51{bottom:313.803732pt;}
.y142{bottom:314.554459pt;}
.y76{bottom:320.560273pt;}
.y10{bottom:322.063563pt;}
.y158{bottom:322.812384pt;}
.ycd{bottom:325.056241pt;}
.y10e{bottom:325.815361pt;}
.yb3{bottom:327.308421pt;}
.yde{bottom:328.067539pt;}
.y32{bottom:328.067542pt;}
.y118{bottom:328.818270pt;}
.y9f{bottom:329.568989pt;}
.ybf{bottom:329.568991pt;}
.yee{bottom:329.568994pt;}
.y1af{bottom:331.821163pt;}
.y15e{bottom:332.571880pt;}
.y50{bottom:334.073351pt;}
.y104{bottom:334.824081pt;}
.y19a{bottom:338.577653pt;}
.y90{bottom:342.322953pt;}
.y85{bottom:343.832801pt;}
.yf{bottom:346.086895pt;}
.ydd{bottom:346.835705pt;}
.y31{bottom:352.841521pt;}
.y103{bottom:353.592247pt;}
.y9e{bottom:354.342968pt;}
.y128{bottom:355.093702pt;}
.y4f{bottom:358.847330pt;}
.y165{bottom:361.099493pt;}
.y199{bottom:364.102359pt;}
.ydc{bottom:367.856051pt;}
.ye{bottom:370.860895pt;}
.y16a{bottom:371.609635pt;}
.ybe{bottom:377.615496pt;}
.y30{bottom:377.615500pt;}
.y17f{bottom:382.870555pt;}
.y4e{bottom:383.621309pt;}
.ycb{bottom:385.865099pt;}
.y198{bottom:389.627064pt;}
.y169{bottom:390.377801pt;}
.yd{bottom:395.636361pt;}
.y8e{bottom:400.128905pt;}
.y17e{bottom:401.638721pt;}
.y2f{bottom:402.389479pt;}
.ybd{bottom:404.641655pt;}
.y84{bottom:405.392386pt;}
.y4d{bottom:408.395289pt;}
.y168{bottom:409.145968pt;}
.yed{bottom:409.888352pt;}
.yb2{bottom:410.639078pt;}
.y1ae{bottom:411.389805pt;}
.y9d{bottom:412.899646pt;}
.y197{bottom:415.151770pt;}
.y17d{bottom:420.406887pt;}
.yc{bottom:420.408361pt;}
.y83{bottom:426.412732pt;}
.ydb{bottom:427.163456pt;}
.y2e{bottom:427.163458pt;}
.ye8{bottom:429.407245pt;}
.y147{bottom:430.166324pt;}
.y4c{bottom:433.169268pt;}
.y177{bottom:433.169270pt;}
.y167{bottom:433.919947pt;}
.yb{bottom:439.176893pt;}
.y196{bottom:439.925749pt;}
.y17c{bottom:442.928686pt;}
.y146{bottom:448.934490pt;}
.y176{bottom:451.937436pt;}
.y2d{bottom:451.937438pt;}
.y166{bottom:452.688113pt;}
.yda{bottom:454.189615pt;}
.y82{bottom:456.441798pt;}
.y4b{bottom:457.943247pt;}
.yc9{bottom:458.685583pt;}
.ya{bottom:462.447560pt;}
.y195{bottom:464.699729pt;}
.y145{bottom:467.702656pt;}
.yb0{bottom:469.195757pt;}
.y175{bottom:470.705602pt;}
.y17b{bottom:471.456299pt;}
.y9c{bottom:471.456324pt;}
.y2c{bottom:476.711417pt;}
.y16b{bottom:478.963545pt;}
.y81{bottom:481.215777pt;}
.y4a{bottom:482.717226pt;}
.y153{bottom:488.722972pt;}
.y194{bottom:490.224435pt;}
.y13b{bottom:493.227400pt;}
.y14f{bottom:493.978089pt;}
.y9b{bottom:496.230303pt;}
.yc8{bottom:496.972642pt;}
.y189{bottom:497.731731pt;}
.y2b{bottom:501.485396pt;}
.ybc{bottom:502.236118pt;}
.y80{bottom:505.989756pt;}
.y152{bottom:507.491138pt;}
.y49{bottom:507.491205pt;}
.ye7{bottom:510.485721pt;}
.y13a{bottom:511.995566pt;}
.y193{bottom:515.749140pt;}
.yd9{bottom:517.250653pt;}
.y117{bottom:521.004290pt;}
.y7f{bottom:524.757922pt;}
.y151{bottom:526.259304pt;}
.y2a{bottom:526.259375pt;}
.y170{bottom:527.001708pt;}
.ybb{bottom:527.010098pt;}
.y139{bottom:530.763732pt;}
.y48{bottom:532.265185pt;}
.yd8{bottom:538.270999pt;}
.y116{bottom:539.772456pt;}
.y192{bottom:541.273846pt;}
.y7e{bottom:543.526088pt;}
.yba{bottom:545.778264pt;}
.y9a{bottom:549.531895pt;}
.y66{bottom:550.282626pt;}
.y29{bottom:551.033354pt;}
.yae{bottom:552.526413pt;}
.y157{bottom:552.534737pt;}
.y47{bottom:557.039164pt;}
.y191{bottom:560.792739pt;}
.y115{bottom:560.792802pt;}
.y7d{bottom:568.300067pt;}
.y12f{bottom:572.804422pt;}
.y65{bottom:575.056605pt;}
.y28{bottom:575.807334pt;}
.y46{bottom:581.813143pt;}
.yd7{bottom:584.065324pt;}
.y190{bottom:586.317445pt;}
.y7c{bottom:587.068233pt;}
.y127{bottom:590.821868pt;}
.y12e{bottom:591.572588pt;}
.y99{bottom:593.824767pt;}
.y64{bottom:593.824771pt;}
.ye5{bottom:594.567105pt;}
.y27{bottom:600.581313pt;}
.yc7{bottom:602.074372pt;}
.yac{bottom:605.828005pt;}
.y45{bottom:606.587122pt;}
.y18f{bottom:611.842151pt;}
.y7b{bottom:611.842212pt;}
.y63{bottom:612.592937pt;}
.y12d{bottom:614.094388pt;}
.yb9{bottom:614.845115pt;}
.y98{bottom:618.598746pt;}
.y23{bottom:619.422667pt;}
.yc5{bottom:624.596171pt;}
.y26{bottom:625.355292pt;}
.y7a{bottom:630.610379pt;}
.y44{bottom:631.361101pt;}
.y22{bottom:633.837333pt;}
.y18e{bottom:636.616130pt;}
.yd6{bottom:636.616189pt;}
.yb8{bottom:637.366914pt;}
.y62{bottom:637.366916pt;}
.ye3{bottom:640.361431pt;}
.y15d{bottom:641.871257pt;}
.y16f{bottom:641.871277pt;}
.y12c{bottom:642.622000pt;}
.y21{bottom:648.252000pt;}
.y79{bottom:649.378545pt;}
.y40{bottom:653.132178pt;}
.y43{bottom:656.135081pt;}
.y18d{bottom:658.387202pt;}
.y15c{bottom:660.639423pt;}
.y16e{bottom:660.639443pt;}
.y12b{bottom:661.390166pt;}
.y61{bottom:662.140896pt;}
.y20{bottom:662.666667pt;}
.y78{bottom:668.146711pt;}
.y97{bottom:671.900338pt;}
.yaa{bottom:672.642677pt;}
.y1f{bottom:677.081333pt;}
.y25{bottom:677.906157pt;}
.y15b{bottom:679.407589pt;}
.y16d{bottom:679.407609pt;}
.y12a{bottom:680.158332pt;}
.y42{bottom:680.909060pt;}
.y60{bottom:680.909062pt;}
.y18c{bottom:686.164088pt;}
.y77{bottom:686.914877pt;}
.yc3{bottom:697.416655pt;}
.y15a{bottom:698.175755pt;}
.y129{bottom:701.178678pt;}
.y14d{bottom:703.422468pt;}
.y18b{bottom:704.932254pt;}
.y144{bottom:705.683002pt;}
.y41{bottom:705.683039pt;}
.y5f{bottom:705.683041pt;}
.y3f{bottom:705.683043pt;}
.ya8{bottom:725.944268pt;}
.h1f{height:15.765259pt;}
.h2f{height:17.266713pt;}
.h22{height:18.017440pt;}
.hb{height:18.250583pt;}
.h23{height:18.768166pt;}
.h28{height:19.518893pt;}
.ha{height:20.531906pt;}
.h26{height:21.615649pt;}
.h2e{height:21.771073pt;}
.h25{height:22.567400pt;}
.he{height:24.015469pt;}
.h27{height:24.017388pt;}
.h1c{height:24.773979pt;}
.hd{height:25.072886pt;}
.h13{height:25.074889pt;}
.h19{height:25.096557pt;}
.h2a{height:25.524706pt;}
.h16{height:26.419126pt;}
.h1e{height:27.026159pt;}
.hc{height:27.375874pt;}
.h14{height:27.582378pt;}
.h3{height:28.818563pt;}
.h11{height:28.820865pt;}
.h1a{height:29.278339pt;}
.h2{height:29.657198pt;}
.h3b{height:29.659567pt;}
.h1b{height:30.029066pt;}
.h4{height:30.087463pt;}
.h12{height:30.089866pt;}
.h1d{height:30.779792pt;}
.h2c{height:31.222604pt;}
.h35{height:31.225536pt;}
.h29{height:32.281246pt;}
.h30{height:32.597355pt;}
.h18{height:33.031972pt;}
.h38{height:33.624343pt;}
.h8{height:34.211841pt;}
.h9{height:34.217708pt;}
.h7{height:34.218241pt;}
.h34{height:34.228443pt;}
.h24{height:34.533426pt;}
.h2d{height:36.026081pt;}
.h20{height:36.034879pt;}
.h6{height:36.501166pt;}
.hf{height:36.505219pt;}
.h21{height:42.040692pt;}
.h17{height:45.630104pt;}
.h33{height:46.237137pt;}
.h32{height:51.040614pt;}
.h15{height:52.474619pt;}
.h37{height:54.756124pt;}
.h2b{height:105.852456pt;}
.h36{height:135.130796pt;}
.h3a{height:177.171488pt;}
.h39{height:344.583529pt;}
.h31{height:346.084982pt;}
.h5{height:481.966480pt;}
.h1{height:715.442560pt;}
.h10{height:717.694670pt;}
.h0{height:793.333333pt;}
.w3{width:1077.292731pt;}
.w1{width:1078.794160pt;}
.w2{width:1078.794179pt;}
.w4{width:1084.799992pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2c{left:3.753633pt;}
.x4{left:5.818160pt;}
.x5{left:8.199360pt;}
.x97{left:18.640000pt;}
.x17{left:20.515952pt;}
.x1{left:24.645840pt;}
.x2{left:26.274611pt;}
.x83{left:30.029066pt;}
.xb{left:31.319370pt;}
.x2f{left:35.202038pt;}
.x7{left:37.536332pt;}
.xc{left:43.647716pt;}
.x30{left:47.072903pt;}
.x31{left:49.782560pt;}
.x3{left:52.547944pt;}
.x43{left:54.744391pt;}
.x44{left:63.201799pt;}
.x45{left:65.829335pt;}
.x2e{left:69.066851pt;}
.xd{left:73.559477pt;}
.x4f{left:76.574118pt;}
.x50{left:80.949442pt;}
.x1b{left:82.063799pt;}
.xe{left:88.574014pt;}
.x1c{left:90.216228pt;}
.x1d{left:92.843768pt;}
.x60{left:93.840830pt;}
.x1e{left:95.553425pt;}
.x5e{left:97.594464pt;}
.x61{left:99.095917pt;}
.x5f{left:101.899408pt;}
.x62{left:103.342214pt;}
.x51{left:106.192630pt;}
.x59{left:113.242414pt;}
.x1a{left:115.611903pt;}
.x5a{left:117.864083pt;}
.x52{left:120.562007pt;}
.x5b{left:122.767266pt;}
.x1f{left:124.972518pt;}
.x55{left:126.532626pt;}
.x53{left:130.485667pt;}
.x20{left:133.124948pt;}
.x21{left:135.752487pt;}
.x22{left:138.462145pt;}
.x54{left:147.025121pt;}
.x5c{left:165.910588pt;}
.x5d{left:170.403214pt;}
.x56{left:182.180238pt;}
.x6c{left:195.540830pt;}
.x58{left:196.971903pt;}
.x57{left:199.400034pt;}
.x6d{left:215.986401pt;}
.x6b{left:228.971626pt;}
.x33{left:239.059508pt;}
.x34{left:247.763252pt;}
.x35{left:250.390788pt;}
.x36{left:253.100449pt;}
.x32{left:272.513771pt;}
.x19{left:312.302283pt;}
.x6e{left:353.603975pt;}
.x6f{left:363.914740pt;}
.x2d{left:374.624325pt;}
.x4b{left:382.014286pt;}
.x70{left:386.553840pt;}
.x4c{left:389.838269pt;}
.x4d{left:392.465813pt;}
.x4e{left:395.175467pt;}
.x71{left:396.864601pt;}
.x66{left:402.049304pt;}
.x67{left:410.319030pt;}
.x68{left:413.239823pt;}
.x4a{left:415.902560pt;}
.x72{left:430.917093pt;}
.x65{left:435.421453pt;}
.x73{left:444.699965pt;}
.x24{left:467.268681pt;}
.xf{left:470.166013pt;}
.x25{left:475.726089pt;}
.x26{left:478.353625pt;}
.x27{left:481.063286pt;}
.x10{left:485.555916pt;}
.x74{left:498.998615pt;}
.x23{left:500.734670pt;}
.xa2{left:502.329965pt;}
.x28{left:510.482383pt;}
.x29{left:518.939792pt;}
.x2a{left:521.567327pt;}
.x2b{left:524.276989pt;}
.x37{left:525.966120pt;}
.x38{left:534.669861pt;}
.x39{left:537.297400pt;}
.x3a{left:540.007058pt;}
.x80{left:548.898469pt;}
.x95{left:561.496608pt;}
.x6{left:572.457333pt;}
.x92{left:578.141622pt;}
.xa6{left:587.513971pt;}
.x94{left:589.085812pt;}
.xa0{left:590.481691pt;}
.x81{left:599.056400pt;}
.x96{left:606.669234pt;}
.x11{left:624.487265pt;}
.xa3{left:627.654393pt;}
.xa4{left:628.639715pt;}
.x12{left:629.718892pt;}
.x7d{left:633.308296pt;}
.x3b{left:637.460753pt;}
.x88{left:639.994463pt;}
.x3c{left:645.918165pt;}
.x3d{left:648.545705pt;}
.x3e{left:651.255362pt;}
.x46{left:657.695186pt;}
.x47{left:666.152594pt;}
.x48{left:668.780130pt;}
.x49{left:671.489791pt;}
.x8e{left:674.316739pt;}
.x7e{left:680.862137pt;}
.x9b{left:682.398784pt;}
.x84{left:686.703728pt;}
.x9f{left:688.920726pt;}
.x8a{left:701.272525pt;}
.xa7{left:712.838407pt;}
.x75{left:714.609649pt;}
.x8c{left:718.633071pt;}
.x76{left:725.237127pt;}
.x85{left:727.278165pt;}
.x93{left:729.295743pt;}
.x7f{left:731.020068pt;}
.x77{left:736.673978pt;}
.xa5{left:740.627023pt;}
.x89{left:741.788303pt;}
.x78{left:747.301452pt;}
.x8{left:753.682621pt;}
.x9a{left:764.357023pt;}
.x9{left:766.010964pt;}
.x9c{left:785.670618pt;}
.x63{left:796.262905pt;}
.x64{left:801.037054pt;}
.x8f{left:813.682106pt;}
.xa1{left:816.555985pt;}
.x8b{left:826.596954pt;}
.x90{left:847.065981pt;}
.x8d{left:857.998438pt;}
.x69{left:875.100929pt;}
.x86{left:877.364843pt;}
.x13{left:884.309064pt;}
.x6a{left:886.655078pt;}
.x14{left:889.083213pt;}
.x3f{left:894.220998pt;}
.x9d{left:901.739991pt;}
.x40{left:902.678407pt;}
.x41{left:905.305943pt;}
.x42{left:908.015600pt;}
.x79{left:923.628372pt;}
.x87{left:927.522767pt;}
.x7a{left:928.672317pt;}
.x98{left:934.537369pt;}
.x7b{left:940.109164pt;}
.x7c{left:946.255739pt;}
.x15{left:961.141244pt;}
.x91{left:986.431348pt;}
.x16{left:998.630656pt;}
.x82{left:1008.671617pt;}
.x9e{left:1027.064427pt;}
.x99{left:1046.524666pt;}
.x18{left:1058.008441pt;}
.xa{left:1063.744458pt;}
}




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