
    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_1f0f4a8597707603b6a53d98.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.051270;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_47b5d037e1658f877a611017.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850098;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_ac600c4f4451b161a6cec8a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.048828;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_0064979f56dd6952685c8f53.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_11b056ba61c5cf5a5bb99238.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.765625;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_770b6ea6c6de325a99c78597.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982910;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_74d5fd1d332cbb8f966ca28e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_b88415334ee62f0effcb5bcb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.149414;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_896d421773c5712735c61edd.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1024531a0b33b4dea5525679.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.792000;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_a143d326b01962e27b4c4888.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.837402;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.239365px;}
.v1{vertical-align:13.712258px;}
.v4{vertical-align:56.893997px;}
.v5{vertical-align:95.074612px;}
.v3{vertical-align:96.475763px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028062px;}
.ls3{letter-spacing:0.108027px;}
.ls2{letter-spacing:0.141194px;}
.ls5{letter-spacing:0.226914px;}
.ls1b{letter-spacing:0.463678px;}
.ls12{letter-spacing:17.625795px;}
.ls22{letter-spacing:41.466458px;}
.ls1f{letter-spacing:43.752995px;}
.ls18{letter-spacing:43.773645px;}
.ls1a{letter-spacing:46.800756px;}
.ls25{letter-spacing:47.535532px;}
.ls1d{letter-spacing:50.246429px;}
.ls17{letter-spacing:50.246483px;}
.ls31{letter-spacing:57.548912px;}
.ls34{letter-spacing:57.549069px;}
.ls1{letter-spacing:58.216359px;}
.lsc{letter-spacing:58.861145px;}
.ls2e{letter-spacing:61.033381px;}
.ls33{letter-spacing:61.033394px;}
.ls35{letter-spacing:61.039081px;}
.ls30{letter-spacing:61.079726px;}
.ls2f{letter-spacing:61.079797px;}
.ls26{letter-spacing:61.775790px;}
.ls21{letter-spacing:63.786504px;}
.ls24{letter-spacing:63.793512px;}
.ls7{letter-spacing:65.532805px;}
.ls2a{letter-spacing:66.600779px;}
.lsb{letter-spacing:67.316259px;}
.ls29{letter-spacing:67.335555px;}
.ls11{letter-spacing:68.606598px;}
.ls8{letter-spacing:69.368647px;}
.ls20{letter-spacing:81.262617px;}
.ls2d{letter-spacing:81.916188px;}
.ls2c{letter-spacing:82.658562px;}
.ls2b{letter-spacing:84.621878px;}
.ls14{letter-spacing:84.793396px;}
.ls1e{letter-spacing:84.839516px;}
.ls9{letter-spacing:84.839657px;}
.ls32{letter-spacing:84.839728px;}
.ls16{letter-spacing:88.608478px;}
.ls15{letter-spacing:90.350174px;}
.ls19{letter-spacing:90.384045px;}
.lsd{letter-spacing:92.022464px;}
.ls1c{letter-spacing:92.386072px;}
.ls23{letter-spacing:95.024616px;}
.ls13{letter-spacing:98.384090px;}
.ls28{letter-spacing:98.391402px;}
.lsf{letter-spacing:108.553279px;}
.ls10{letter-spacing:108.553350px;}
.ls27{letter-spacing:194.941516px;}
.lsa{letter-spacing:256.711893px;}
.lse{letter-spacing:321.696773px;}
.ls6{letter-spacing:519.689187px;}
.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;}
}
.ws25{word-spacing:-116.383261px;}
.ws24{word-spacing:-115.919583px;}
.ws44{word-spacing:-87.107200px;}
.ws0{word-spacing:-58.192001px;}
.ws1f{word-spacing:-54.215860px;}
.ws4{word-spacing:-52.770193px;}
.ws1a{word-spacing:-52.560690px;}
.ws2{word-spacing:-50.773100px;}
.ws33{word-spacing:-47.303878px;}
.wsf{word-spacing:-46.042519px;}
.ws17{word-spacing:-39.262835px;}
.ws40{word-spacing:-37.047726px;}
.ws8{word-spacing:-30.905239px;}
.ws16{word-spacing:-29.854472px;}
.ws31{word-spacing:-29.095815px;}
.ws32{word-spacing:-25.386389px;}
.ws1e{word-spacing:-23.854993px;}
.ws7{word-spacing:-23.021259px;}
.ws18{word-spacing:-22.180611px;}
.ws10{word-spacing:-20.813719px;}
.ws28{word-spacing:-19.879223px;}
.ws11{word-spacing:-18.448590px;}
.ws27{word-spacing:-18.433555px;}
.ws15{word-spacing:-17.344820px;}
.ws3{word-spacing:-16.083461px;}
.ws26{word-spacing:-14.979691px;}
.ws1b{word-spacing:-13.875920px;}
.ws23{word-spacing:-12.614561px;}
.ws2e{word-spacing:-4.530225px;}
.ws3b{word-spacing:-3.981360px;}
.ws2d{word-spacing:-3.773233px;}
.ws3c{word-spacing:-3.749857px;}
.ws3d{word-spacing:-3.245748px;}
.ws1d{word-spacing:-3.044759px;}
.ws3e{word-spacing:-2.656809px;}
.ws2b{word-spacing:-2.375995px;}
.ws13{word-spacing:-2.291083px;}
.ws2c{word-spacing:-1.854725px;}
.ws34{word-spacing:-1.782229px;}
.ws12{word-spacing:-1.684668px;}
.ws22{word-spacing:-1.667563px;}
.ws2a{word-spacing:-1.425597px;}
.ws39{word-spacing:-1.413330px;}
.ws21{word-spacing:-1.322497px;}
.ws37{word-spacing:-1.263602px;}
.ws38{word-spacing:-1.159203px;}
.ws9{word-spacing:-1.156319px;}
.ws43{word-spacing:-0.950398px;}
.wse{word-spacing:-0.905358px;}
.ws35{word-spacing:-0.842401px;}
.ws3a{word-spacing:-0.475199px;}
.ws42{word-spacing:-0.396000px;}
.ws5{word-spacing:-0.377735px;}
.ws14{word-spacing:-0.320169px;}
.ws2f{word-spacing:-0.231841px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:0.095395px;}
.ws1c{word-spacing:0.252720px;}
.ws29{word-spacing:0.267841px;}
.wsa{word-spacing:0.440897px;}
.ws6{word-spacing:0.480336px;}
.wsb{word-spacing:0.812527px;}
.wsd{word-spacing:1.830838px;}
.ws36{word-spacing:2.565031px;}
.ws19{word-spacing:30.905686px;}
.ws30{word-spacing:755.384595px;}
.ws20{word-spacing:1830.712487px;}
.ws41{word-spacing:2365.072799px;}
.ws3f{word-spacing:2801.291101px;}
._7{margin-left:-1162.127522px;}
._16{margin-left:-15.847165px;}
._14{margin-left:-12.193909px;}
._e{margin-left:-10.432829px;}
._1c{margin-left:-9.157654px;}
._c{margin-left:-7.238579px;}
._9{margin-left:-6.096955px;}
._4{margin-left:-4.636813px;}
._2{margin-left:-3.129821px;}
._1{margin-left:-1.159203px;}
._3{width:1.159203px;}
._0{width:2.318406px;}
._b{width:3.713775px;}
._a{width:4.920511px;}
._15{width:12.883652px;}
._f{width:14.119220px;}
._10{width:15.180455px;}
._1b{width:16.216700px;}
._1d{width:17.846032px;}
._d{width:19.388122px;}
._5{width:20.606386px;}
._11{width:21.702102px;}
._21{width:23.183909px;}
._6{width:24.364042px;}
._22{width:26.846619px;}
._12{width:31.588975px;}
._20{width:32.634000px;}
._26{width:35.085718px;}
._28{width:36.266522px;}
._1f{width:41.931283px;}
._24{width:47.230656px;}
._1e{width:53.824260px;}
._29{width:56.638214px;}
._23{width:64.645280px;}
._13{width:80.931386px;}
._8{width:618.137114px;}
._19{width:1033.176086px;}
._1a{width:1074.767553px;}
._18{width:1190.143061px;}
._25{width:1198.138528px;}
._17{width:1341.480378px;}
._27{width:1666.310414px;}
.fcd{color:rgb(235,160,0);}
.fc0{color:rgb(0,0,0);}
.fc2{color:rgb(0,176,80);}
.fc8{color:rgb(34,34,34);}
.fcc{color:rgb(38,38,38);}
.fc3{color:rgb(214,59,1);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(0,186,200);}
.fc9{color:rgb(41,152,227);}
.fc5{color:rgb(0,199,119);}
.fce{color:rgb(0,33,41);}
.fc6{color:rgb(255,192,0);}
.fc7{color:rgb(255,255,255);}
.fca{color:rgb(77,90,255);}
.fcb{color:rgb(230,72,35);}
.fs2{font-size:47.520644px;}
.fsc{font-size:52.560690px;}
.fs11{font-size:57.600736px;}
.fsd{font-size:63.360367px;}
.fs12{font-size:68.400413px;}
.fs3{font-size:73.440459px;}
.fsa{font-size:79.200090px;}
.fs9{font-size:84.240136px;}
.fs13{font-size:89.280182px;}
.fs8{font-size:95.039814px;}
.fs16{font-size:95.040000px;}
.fs10{font-size:100.079860px;}
.fs7{font-size:102.959675px;}
.fs5{font-size:105.119906px;}
.fs1{font-size:115.919583px;}
.fs15{font-size:125.999675px;}
.fs14{font-size:126.000000px;}
.fs6{font-size:141.119813px;}
.fsb{font-size:147.600504px;}
.fs18{font-size:178.560365px;}
.fse{font-size:194.400088px;}
.fs4{font-size:210.239811px;}
.fsf{font-size:215.999442px;}
.fs0{font-size:231.840640px;}
.fs17{font-size:252.720409px;}
.fs19{font-size:347.040638px;}
.y0{bottom:0.000000px;}
.ya7{bottom:3.959075px;}
.ya6{bottom:91.437858px;}
.ya5{bottom:122.757444px;}
.yd5{bottom:131.759451px;}
.y2f{bottom:141.485572px;}
.ya4{bottom:150.113140px;}
.y111{bottom:151.911966px;}
.y90{bottom:158.038275px;}
.y1ea{bottom:158.762064px;}
.y83{bottom:158.938629px;}
.y1cc{bottom:159.664286px;}
.y55{bottom:159.841717px;}
.y70{bottom:159.842415px;}
.yd4{bottom:163.083609px;}
.y201{bottom:166.506078px;}
.y1f5{bottom:166.680129px;}
.y6b{bottom:166.861403px;}
.y10f{bottom:168.659323px;}
.y1ab{bottom:168.661044px;}
.yef{bottom:169.380036px;}
.y1b8{bottom:170.817400px;}
.y13b{bottom:171.899463px;}
.y223{bottom:172.618844px;}
.y173{bottom:175.132441px;}
.y110{bottom:175.488885px;}
.y102{bottom:176.753737px;}
.ya3{bottom:178.376636px;}
.y18e{bottom:179.636126px;}
.y23d{bottom:180.900654px;}
.y54{bottom:181.973813px;}
.y82{bottom:182.516427px;}
.y33{bottom:182.702014px;}
.y1cb{bottom:184.858175px;}
.y8f{bottom:185.942529px;}
.yb4{bottom:186.484260px;}
.y1aa{bottom:187.200353px;}
.y184{bottom:188.993985px;}
.y14d{bottom:191.523000px;}
.y13a{bottom:191.689491px;}
.y172{bottom:192.776507px;}
.yee{bottom:192.957834px;}
.y1f4{bottom:194.938560px;}
.yc{bottom:194.939267px;}
.y6a{bottom:195.298205px;}
.y222{bottom:196.383936px;}
.y200{bottom:197.641739px;}
.y1b7{bottom:198.537911px;}
.yd3{bottom:199.079952px;}
.yc7{bottom:199.265912px;}
.y101{bottom:199.441092px;}
.y53{bottom:204.117073px;}
.y11d{bottom:205.018615px;}
.y1a9{bottom:206.102179px;}
.y125{bottom:206.277859px;}
.y19a{bottom:206.818526px;}
.y8e{bottom:207.181873px;}
.y1ca{bottom:210.058529px;}
.y171{bottom:210.420518px;}
.y18d{bottom:210.960284px;}
.y23c{bottom:212.039219px;}
.ybe{bottom:212.584528px;}
.y81{bottom:212.759077px;}
.y32{bottom:214.204686px;}
.yb3{bottom:214.377494px;}
.ya2{bottom:214.917892px;}
.y183{bottom:215.097531px;}
.y1e9{bottom:215.461687px;}
.y22e{bottom:215.462199px;}
.yed{bottom:216.716906px;}
.y14c{bottom:216.896832px;}
.yb{bottom:217.071364px;}
.y139{bottom:218.158380px;}
.y221{bottom:220.136931px;}
.y100{bottom:222.122044px;}
.y1f3{bottom:223.385559px;}
.y52{bottom:226.249169px;}
.y1b6{bottom:226.258422px;}
.y1a8{bottom:226.622363px;}
.y170{bottom:228.232675px;}
.y11c{bottom:228.596413px;}
.y1ff{bottom:228.965897px;}
.yd2{bottom:230.036873px;}
.yc6{bottom:230.578457px;}
.y211{bottom:231.297747px;}
.y10e{bottom:232.912968px;}
.y8d{bottom:235.086068px;}
.y199{bottom:235.265525px;}
.y1c9{bottom:235.438764px;}
.y80{bottom:236.512072px;}
.y13c{bottom:237.423394px;}
.y138{bottom:237.959570px;}
.ya{bottom:239.214678px;}
.yec{bottom:240.294704px;}
.ya1{bottom:242.452456px;}
.ybd{bottom:243.897073px;}
.y1a7{bottom:244.976008px;}
.yff{bottom:244.982877px;}
.y31{bottom:245.694435px;}
.y22d{bottom:246.964792px;}
.y182{bottom:247.678577px;}
.y51{bottom:248.213174px;}
.y14b{bottom:248.582004px;}
.yb2{bottom:248.755546px;}
.y10c{bottom:249.839841px;}
.y10d{bottom:250.372656px;}
.y23b{bottom:251.275636px;}
.y1f2{bottom:251.820874px;}
.y16f{bottom:252.359441px;}
.y11b{bottom:252.361505px;}
.y210{bottom:259.744746px;}
.y7f{bottom:260.095889px;}
.y15a{bottom:260.104768px;}
.yc5{bottom:261.717022px;}
.y1b5{bottom:261.903132px;}
.yd1{bottom:262.621905px;}
.y8c{bottom:262.978167px;}
.y198{bottom:263.700911px;}
.y1d8{bottom:263.872443px;}
.y1a6{bottom:264.052782px;}
.y124{bottom:264.237972px;}
.y19b{bottom:264.246149px;}
.y137{bottom:264.417242px;}
.y6d{bottom:265.325084px;}
.ya0{bottom:269.817782px;}
.y16e{bottom:269.997925px;}
.y50{bottom:271.081694px;}
.y1e6{bottom:272.344001px;}
.ydb{bottom:273.422936px;}
.y14a{bottom:273.961046px;}
.yfe{bottom:274.135843px;}
.ybc{bottom:275.221231px;}
.yb1{bottom:276.480385px;}
.yeb{bottom:277.196128px;}
.y30{bottom:277.376696px;}
.y6f{bottom:279.536970px;}
.y1f1{bottom:280.256260px;}
.y23a{bottom:282.425742px;}
.y11a{bottom:282.604155px;}
.y1a5{bottom:284.398018px;}
.y22c{bottom:286.384759px;}
.y181{bottom:286.737240px;}
.y1d7{bottom:287.637594px;}
.y16d{bottom:287.815664px;}
.y60{bottom:288.006080px;}
.y20f{bottom:288.180132px;}
.y17{bottom:288.360902px;}
.y18c{bottom:289.259066px;}
.y7e{bottom:290.336119px;}
.y159{bottom:291.774224px;}
.y6c{bottom:293.760469px;}
.yd0{bottom:293.946063px;}
.y4f{bottom:295.559053px;}
.yfd{bottom:296.995421px;}
.y9f{bottom:297.173477px;}
.y220{bottom:297.355082px;}
.y136{bottom:297.542559px;}
.y1b4{bottom:297.717639px;}
.y149{bottom:299.154935px;}
.y1e8{bottom:300.779387px;}
.yea{bottom:300.961279px;}
.y1c8{bottom:301.674274px;}
.y1a4{bottom:302.763276px;}
.yb0{bottom:304.203969px;}
.yda{bottom:304.735516px;}
.y16c{bottom:305.454094px;}
.y119{bottom:306.181953px;}
.yc4{bottom:306.185709px;}
.y1f0{bottom:308.703259px;}
.y1e0{bottom:310.861128px;}
.y1d{bottom:310.865697px;}
.y1d6{bottom:311.218991px;}
.y180{bottom:312.843205px;}
.y239{bottom:313.738323px;}
.y10b{bottom:314.089797px;}
.y20e{bottom:316.441466px;}
.y135{bottom:317.332586px;}
.y4e{bottom:317.691149px;}
.y22b{bottom:318.054175px;}
.y2e{bottom:318.246648px;}
.y8b{bottom:318.779359px;}
.ybb{bottom:319.504290px;}
.y18b{bottom:320.397595px;}
.y21f{bottom:321.118993px;}
.y1a3{bottom:321.837119px;}
.y123{bottom:322.027956px;}
.y158{bottom:323.276817px;}
.y9e{bottom:324.538803px;}
.ye9{bottom:324.541437px;}
.ycf{bottom:325.084627px;}
.yfc{bottom:326.158618px;}
.y1c7{bottom:326.878456px;}
.y5f{bottom:327.056903px;}
.y7d{bottom:327.238841px;}
.y1e5{bottom:329.226386px;}
.y16b{bottom:329.936187px;}
.y109{bottom:330.837078px;}
.y148{bottom:331.022624px;}
.y10a{bottom:331.553862px;}
.y4{bottom:331.565271px;}
.y1b3{bottom:333.362349px;}
.y1d5{bottom:334.982903px;}
.yd9{bottom:335.885658px;}
.y16{bottom:336.057498px;}
.y197{bottom:336.245303px;}
.y1ef{bottom:336.964593px;}
.yc3{bottom:337.498289px;}
.yaf{bottom:338.580766px;}
.y4d{bottom:339.836707px;}
.y1df{bottom:342.185286px;}
.y118{bottom:343.074997px;}
.y134{bottom:343.799177px;}
.y20d{bottom:344.876852px;}
.y17f{bottom:346.324159px;}
.y8a{bottom:346.681135px;}
.y16a{bottom:349.020770px;}
.yba{bottom:350.816835px;}
.y7c{bottom:350.819000px;}
.y18a{bottom:351.721753px;}
.y9d{bottom:352.073367px;}
.y1c{bottom:352.617657px;}
.y157{bottom:354.779410px;}
.y147{bottom:356.216513px;}
.y22a{bottom:357.474142px;}
.y1e4{bottom:357.476143px;}
.y2c{bottom:359.103834px;}
.yce{bottom:361.253866px;}
.ye8{bottom:361.444159px;}
.y24{bottom:361.978194px;}
.y4c{bottom:361.980021px;}
.yfb{bottom:362.160182px;}
.y133{bottom:363.773001px;}
.y196{bottom:364.680689px;}
.y205{bottom:364.865399px;}
.y1ee{bottom:365.399979px;}
.y5e{bottom:366.119269px;}
.yae{bottom:366.294056px;}
.yd8{bottom:367.198204px;}
.y117{bottom:373.316408px;}
.y20c{bottom:373.323815px;}
.y89{bottom:374.399217px;}
.y9c{bottom:379.438693px;}
.y122{bottom:379.987736px;}
.y169{bottom:380.698736px;}
.y1de{bottom:381.236074px;}
.y146{bottom:381.420664px;}
.y1d4{bottom:382.317295px;}
.y4b{bottom:383.935052px;}
.y15{bottom:383.946606px;}
.y238{bottom:384.124882px;}
.yfa{bottom:384.834700px;}
.ye7{bottom:385.014699px;}
.y178{bottom:385.735183px;}
.y1e7{bottom:385.923106px;}
.y156{bottom:386.461671px;}
.y69{bottom:387.002041px;}
.y17e{bottom:387.174283px;}
.y7b{bottom:387.721722px;}
.y229{bottom:388.976775px;}
.y132{bottom:390.237403px;}
.y2d{bottom:390.786095px;}
.ycd{bottom:392.039302px;}
.y195{bottom:393.116075px;}
.y1c6{bottom:393.122973px;}
.y23{bottom:393.480787px;}
.y1ed{bottom:393.835365px;}
.y108{bottom:395.090842px;}
.yb9{bottom:395.099929px;}
.y116{bottom:396.896625px;}
.y168{bottom:398.332679px;}
.y204{bottom:399.601686px;}
.yad{bottom:400.681146px;}
.y177{bottom:401.570896px;}
.y20b{bottom:401.759201px;}
.y88{bottom:402.301023px;}
.y1b2{bottom:404.637647px;}
.y6e{bottom:404.996041px;}
.y5d{bottom:405.355686px;}
.y1d3{bottom:405.897512px;}
.y4a{bottom:406.078366px;}
.y9b{bottom:406.794388px;}
.y3{bottom:408.412682px;}
.y21e{bottom:410.219101px;}
.yd7{bottom:411.481297px;}
.y106{bottom:412.017596px;}
.y107{bottom:412.554907px;}
.y1dd{bottom:412.560232px;}
.y145{bottom:413.998847px;}
.y1e3{bottom:414.358492px;}
.y237{bottom:415.263411px;}
.y68{bottom:415.437427px;}
.y3a{bottom:416.886419px;}
.y176{bottom:417.234223px;}
.y17d{bottom:417.238064px;}
.y155{bottom:417.964304px;}
.y1c5{bottom:418.501953px;}
.y14{bottom:418.682894px;}
.y19f{bottom:419.045489px;}
.y1a2{bottom:419.579185px;}
.yf9{bottom:419.938121px;}
.y194{bottom:421.563038px;}
.ye6{bottom:421.917362px;}
.y1ec{bottom:422.282328px;}
.y167{bottom:423.000171px;}
.y131{bottom:423.174437px;}
.y7a{bottom:424.440691px;}
.ycc{bottom:424.625827px;}
.y22{bottom:424.983420px;}
.y115{bottom:427.138066px;}
.yac{bottom:428.394405px;}
.y228{bottom:428.396742px;}
.y49{bottom:428.939415px;}
.y1d2{bottom:429.661394px;}
.y189{bottom:430.020571px;}
.y87{bottom:430.202799px;}
.y20a{bottom:430.206164px;}
.y2b{bottom:431.643242px;}
.y175{bottom:433.073970px;}
.y19e{bottom:433.257375px;}
.y21d{bottom:433.982983px;}
.y9a{bottom:434.158770px;}
.y203{bottom:434.337934px;}
.y121{bottom:437.763555px;}
.yb8{bottom:439.557038px;}
.yf8{bottom:439.920864px;}
.y1b1{bottom:440.282314px;}
.y144{bottom:442.445810px;}
.yd6{bottom:442.805455px;}
.y130{bottom:443.157179px;}
.y17c{bottom:443.341610px;}
.y1c4{bottom:443.695842px;}
.y1dc{bottom:443.698761px;}
.y5c{bottom:444.418051px;}
.ye5{bottom:445.497550px;}
.y236{bottom:446.575956px;}
.y1a0{bottom:447.480874px;}
.y1a1{bottom:448.026148px;}
.y79{bottom:448.194925px;}
.y174{bottom:448.913717px;}
.y154{bottom:449.454052px;}
.y193{bottom:449.824373px;}
.y1b{bottom:450.533563px;}
.y86{bottom:451.617398px;}
.y1d1{bottom:453.241612px;}
.y48{bottom:453.413027px;}
.y166{bottom:454.677081px;}
.ycb{bottom:455.938407px;}
.y21{bottom:456.665681px;}
.y40{bottom:456.845308px;}
.y209{bottom:458.455921px;}
.y227{bottom:460.079003px;}
.y188{bottom:461.159100px;}
.y38{bottom:461.516183px;}
.y99{bottom:461.701028px;}
.y12f{bottom:462.960640px;}
.yab{bottom:463.676614px;}
.y114{bottom:464.040729px;}
.y13{bottom:466.559157px;}
.yf7{bottom:467.100460px;}
.y202{bottom:468.894594px;}
.ye4{bottom:469.261462px;}
.yc2{bottom:470.695567px;}
.yb7{bottom:470.881196px;}
.y1e2{bottom:471.240841px;}
.y78{bottom:471.775113px;}
.y165{bottom:472.319998px;}
.y47{bottom:475.556341px;}
.y1b0{bottom:475.927024px;}
.y105{bottom:476.274666px;}
.y67{bottom:476.821179px;}
.y2{bottom:477.891302px;}
.y29{bottom:478.621248px;}
.y1fe{bottom:478.805032px;}
.y1eb{bottom:478.979048px;}
.y153{bottom:481.136313px;}
.y1db{bottom:482.935178px;}
.y5b{bottom:483.666081px;}
.y143{bottom:483.840097px;}
.y235{bottom:485.638357px;}
.y208{bottom:486.902920px;}
.yca{bottom:487.262565px;}
.y113{bottom:487.620946px;}
.y20{bottom:488.155429px;}
.y12e{bottom:489.416069px;}
.yf6{bottom:489.774948px;}
.y98{bottom:489.953968px;}
.y164{bottom:490.133277px;}
.y187{bottom:492.483258px;}
.y103{bottom:493.014832px;}
.y104{bottom:493.733496px;}
.y17b{bottom:495.355330px;}
.y120{bottom:495.539418px;}
.y46{bottom:497.699628px;}
.y226{bottom:499.498930px;}
.y9{bottom:499.680890px;}
.y1d0{bottom:500.576034px;}
.y12{bottom:501.295445px;}
.yc1{bottom:501.845674px;}
.y22f{bottom:502.371529px;}
.y66{bottom:505.256530px;}
.ye3{bottom:505.980431px;}
.yaa{bottom:507.235867px;}
.y1e1{bottom:507.426047px;}
.y163{bottom:507.776194px;}
.y77{bottom:508.677805px;}
.y12d{bottom:509.398839px;}
.y1c3{bottom:509.940359px;}
.y1fd{bottom:510.117578px;}
.y39{bottom:510.483176px;}
.y112{bottom:511.375180px;}
.y142{bottom:512.275483px;}
.yf5{bottom:512.459729px;}
.y85{bottom:513.898509px;}
.y1da{bottom:514.085320px;}
.yb6{bottom:515.164255px;}
.y1bd{bottom:515.508311px;}
.y234{bottom:516.962515px;}
.yc9{bottom:518.401094px;}
.y2a{bottom:519.478395px;}
.y45{bottom:519.654686px;}
.y1f{bottom:519.658062px;}
.y1f7{bottom:519.850535px;}
.y3f{bottom:520.030162px;}
.y8{bottom:521.815231px;}
.y192{bottom:522.542852px;}
.y5a{bottom:522.716869px;}
.y1cf{bottom:524.339945px;}
.y152{bottom:525.778921px;}
.y97{bottom:527.400346px;}
.y17a{bottom:528.840670px;}
.y19d{bottom:530.635514px;}
.y225{bottom:531.001563px;}
.y162{bottom:531.900743px;}
.y65{bottom:533.703528px;}
.y1c0{bottom:534.782669px;}
.ya9{bottom:534.959419px;}
.yf2{bottom:534.967258px;}
.y21c{bottom:535.139062px;}
.y12c{bottom:535.854267px;}
.y11{bottom:536.044537px;}
.y141{bottom:540.722446px;}
.y37{bottom:541.074707px;}
.y1fc{bottom:541.256107px;}
.y44{bottom:542.517592px;}
.ye2{bottom:542.883123px;}
.y76{bottom:545.396804px;}
.yc0{bottom:546.302784px;}
.yb5{bottom:546.476800px;}
.y1af{bottom:547.202301px;}
.y1{bottom:547.369900px;}
.y1ce{bottom:547.920133px;}
.y161{bottom:549.713995px;}
.yde{bottom:550.430517px;}
.y191{bottom:550.978203px;}
.y1e{bottom:551.340323px;}
.y96{bottom:551.695230px;}
.y1a{bottom:553.134832px;}
.y1d9{bottom:553.321737px;}
.y11f{bottom:553.499198px;}
.y233{bottom:556.024880px;}
.y151{bottom:557.281554px;}
.y1c2{bottom:560.328121px;}
.y207{bottom:560.513235px;}
.y28{bottom:561.605939px;}
.y59{bottom:561.779234px;}
.y224{bottom:562.683824px;}
.yc8{bottom:562.858204px;}
.y43{bottom:568.438542px;}
.y12b{bottom:568.800275px;}
.y75{bottom:569.160686px;}
.ya8{bottom:570.236766px;}
.y186{bottom:570.782040px;}
.y179{bottom:571.497225px;}
.y6{bottom:571.680350px;}
.y1cd{bottom:571.684044px;}
.y19{bottom:571.850149px;}
.y19c{bottom:572.215505px;}
.y1fb{bottom:572.580265px;}
.y160{bottom:573.838544px;}
.y35{bottom:574.745914px;}
.y1ae{bottom:575.106774px;}
.y64{bottom:575.283443px;}
.y190{bottom:579.239573px;}
.ye1{bottom:579.602093px;}
.yf4{bottom:580.134128px;}
.y1bc{bottom:580.318697px;}
.y1ba{bottom:581.030620px;}
.y140{bottom:582.302361px;}
.y1f6{bottom:582.830091px;}
.y3e{bottom:583.009739px;}
.y10{bottom:583.920801px;}
.y12a{bottom:588.774071px;}
.y150{bottom:588.963795px;}
.y15f{bottom:591.660770px;}
.y74{bottom:592.740903px;}
.y1bf{bottom:593.106746px;}
.yf1{bottom:593.291315px;}
.y232{bottom:595.261297px;}
.y42{bottom:596.885505px;}
.y215{bottom:597.419184px;}
.y84{bottom:597.959163px;}
.y58{bottom:601.015651px;}
.ydd{bottom:602.993552px;}
.ye0{bottom:603.356327px;}
.y63{bottom:603.718812px;}
.y1fa{bottom:603.904440px;}
.y26{bottom:606.774645px;}
.y15e{bottom:609.294713px;}
.y213{bottom:610.557302px;}
.y13f{bottom:610.737747px;}
.y23e{bottom:613.974919px;}
.y129{bottom:615.238446px;}
.y3d{bottom:615.603061px;}
.y3c{bottom:615.962356px;}
.yf{bottom:618.657089px;}
.y217{bottom:621.724407px;}
.y231{bottom:626.399826px;}
.y15d{bottom:626.937629px;}
.y219{bottom:627.119116px;}
.y73{bottom:629.643567px;}
.y57{bottom:632.165793px;}
.y14f{bottom:633.606384px;}
.y128{bottom:635.041907px;}
.y1f9{bottom:635.042970px;}
.y95{bottom:635.219615px;}
.y21b{bottom:636.121125px;}
.y1c1{bottom:636.125735px;}
.y206{bottom:636.310849px;}
.y11e{bottom:638.273890px;}
.y13e{bottom:638.999099px;}
.ydf{bottom:640.075325px;}
.y5{bottom:641.158949px;}
.y18{bottom:641.328769px;}
.yf3{bottom:644.759944px;}
.y1bb{bottom:644.944513px;}
.y62{bottom:645.124711px;}
.y1b9{bottom:645.656417px;}
.ybf{bottom:646.014945px;}
.yd{bottom:646.194592px;}
.y1ad{bottom:646.382029px;}
.y27{bottom:647.644617px;}
.y94{bottom:651.054545px;}
.y15c{bottom:651.241487px;}
.y1be{bottom:651.246254px;}
.yf0{bottom:651.430823px;}
.y185{bottom:653.219262px;}
.y72{bottom:653.223769px;}
.y127{bottom:655.015703px;}
.y18f{bottom:655.381401px;}
.ydc{bottom:655.556551px;}
.y36{bottom:656.819523px;}
.y3b{bottom:656.999171px;}
.y212{bottom:658.793897px;}
.y21a{bottom:659.875344px;}
.y214{bottom:665.273081px;}
.y14e{bottom:665.275820px;}
.y216{bottom:665.453255px;}
.y230{bottom:665.636225px;}
.y1f8{bottom:666.355532px;}
.y41{bottom:666.715177px;}
.y93{bottom:666.716248px;}
.y13d{bottom:667.446080px;}
.y56{bottom:671.402192px;}
.y61{bottom:673.560079px;}
.y1ac{bottom:674.102562px;}
.y126{bottom:674.819164px;}
.y15b{bottom:675.721163px;}
.y71{bottom:676.978003px;}
.y92{bottom:682.557600px;}
.y25{bottom:688.501764px;}
.y34{bottom:691.915086px;}
.y91{bottom:698.398953px;}
.y218{bottom:700.563693px;}
.y7{bottom:768.238321px;}
.ye{bottom:768.418146px;}
.h18{height:17.823061px;}
.h5{height:41.093291px;}
.h15{height:42.294930px;}
.h20{height:49.810011px;}
.h25{height:49.950638px;}
.h1b{height:53.466662px;}
.h17{height:54.790630px;}
.h28{height:59.148990px;}
.h6{height:63.507350px;}
.h16{height:63.686648px;}
.h12{height:68.487969px;}
.h14{height:68.681328px;}
.h11{height:69.191583px;}
.h10{height:72.846329px;}
.h19{height:73.051993px;}
.h29{height:77.204689px;}
.h2a{height:77.422658px;}
.h3{height:78.109875px;}
.hf{height:82.185308px;}
.h1a{height:82.417338px;}
.hd{height:89.033977px;}
.h33{height:90.148506px;}
.h30{height:90.166230px;}
.h2f{height:90.171224px;}
.h34{height:90.174368px;}
.h31{height:90.182946px;}
.h2e{height:90.192960px;}
.h32{height:90.226633px;}
.h9{height:90.902028px;}
.h8{height:91.158668px;}
.h26{height:93.279039px;}
.hc{height:96.273342px;}
.h3c{height:98.376312px;}
.h35{height:100.241006px;}
.h36{height:100.524013px;}
.h3b{height:107.726117px;}
.h3a{height:107.767623px;}
.h27{height:118.693049px;}
.h2c{height:119.574000px;}
.ha{height:122.032807px;}
.h13{height:127.636959px;}
.h2b{height:127.997312px;}
.hb{height:135.745065px;}
.h2d{height:139.079305px;}
.h23{height:145.686610px;}
.h21{height:145.704598px;}
.h24{height:146.404500px;}
.h22{height:146.422489px;}
.h1f{height:146.426401px;}
.h38{height:154.845316px;}
.h1c{height:168.581326px;}
.h39{height:172.335467px;}
.he{height:181.804055px;}
.h7{height:182.317336px;}
.h1e{height:186.784674px;}
.h1d{height:187.312016px;}
.h4{height:200.483288px;}
.h2{height:201.049305px;}
.h37{height:219.155980px;}
.h3d{height:300.949303px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w3{width:5.576510px;}
.w2{width:36.359504px;}
.w4{width:170.103093px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:63.365624px;}
.x61{left:75.061960px;}
.xe{left:80.816061px;}
.x4b{left:82.260822px;}
.x59{left:87.301862px;}
.x5e{left:96.478411px;}
.xc{left:97.553898px;}
.x37{left:98.996555px;}
.x4d{left:106.200498px;}
.x55{left:109.248479px;}
.x2c{left:110.882065px;}
.x4f{left:117.175554px;}
.x38{left:134.638192px;}
.x41{left:135.899458px;}
.x49{left:137.165011px;}
.x5f{left:143.824293px;}
.x3b{left:152.281808px;}
.x2d{left:158.216487px;}
.xb{left:160.740841px;}
.x3a{left:164.161791px;}
.x60{left:173.338613px;}
.x56{left:177.839999px;}
.x2e{left:181.980383px;}
.x35{left:185.401787px;}
.x3c{left:187.736129px;}
.xd{left:189.542831px;}
.x32{left:195.843254px;}
.x39{left:199.616094px;}
.x2f{left:205.560586px;}
.x33{left:209.517715px;}
.x3d{left:211.499919px;}
.x30{left:222.663245px;}
.x36{left:227.159925px;}
.x40{left:235.077609px;}
.x34{left:237.237873px;}
.x20{left:259.561249px;}
.x23{left:264.596331px;}
.x22{left:280.618055px;}
.x21{left:298.438004px;}
.x50{left:364.682804px;}
.x8{left:489.605707px;}
.x9{left:513.357789px;}
.x1f{left:519.122499px;}
.x5a{left:535.318274px;}
.x5b{left:541.258257px;}
.x62{left:547.739395px;}
.x57{left:560.693058px;}
.x5c{left:564.844172px;}
.x1e{left:581.573609px;}
.x1b{left:584.282280px;}
.x10{left:591.479133px;}
.x12{left:595.084928px;}
.xf{left:596.162812px;}
.x15{left:600.654019px;}
.x58{left:608.040127px;}
.x4c{left:614.887980px;}
.x17{left:625.856126px;}
.x45{left:629.817821px;}
.x1c{left:631.622019px;}
.x24{left:633.061213px;}
.xa{left:646.929348px;}
.x28{left:647.996360px;}
.x5d{left:653.034335px;}
.x1d{left:655.390221px;}
.x46{left:659.340380px;}
.x52{left:660.777309px;}
.x51{left:665.093119px;}
.x13{left:671.217324px;}
.x25{left:672.657275px;}
.x11{left:674.643452px;}
.x4a{left:677.163700px;}
.x47{left:683.108582px;}
.x3{left:689.949899px;}
.x14{left:691.915379px;}
.x3e{left:695.339249px;}
.x2{left:696.606326px;}
.x48{left:706.686258px;}
.x29{left:719.104341px;}
.x63{left:723.599677px;}
.x3f{left:724.856801px;}
.x2a{left:742.682139px;}
.x64{left:747.175431px;}
.x16{left:758.154260px;}
.x2b{left:766.441211px;}
.x1a{left:783.356287px;}
.x5{left:798.486856px;}
.x6{left:817.744538px;}
.x31{left:822.427713px;}
.x7{left:824.580274px;}
.x44{left:843.305213px;}
.x18{left:851.228071px;}
.x43{left:880.377515px;}
.x42{left:925.909845px;}
.x4{left:933.307702px;}
.x4e{left:971.459981px;}
.x19{left:977.046011px;}
.x54{left:988.023373px;}
.x53{left:1024.379727px;}
.x26{left:1035.538987px;}
.x27{left:1043.638255px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.434991pt;}
.v1{vertical-align:12.188674pt;}
.v4{vertical-align:50.572442pt;}
.v5{vertical-align:84.510766pt;}
.v3{vertical-align:85.756233pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024944pt;}
.ls3{letter-spacing:0.096024pt;}
.ls2{letter-spacing:0.125505pt;}
.ls5{letter-spacing:0.201701pt;}
.ls1b{letter-spacing:0.412159pt;}
.ls12{letter-spacing:15.667373pt;}
.ls22{letter-spacing:36.859074pt;}
.ls1f{letter-spacing:38.891551pt;}
.ls18{letter-spacing:38.909906pt;}
.ls1a{letter-spacing:41.600672pt;}
.ls25{letter-spacing:42.253806pt;}
.ls1d{letter-spacing:44.663492pt;}
.ls17{letter-spacing:44.663541pt;}
.ls31{letter-spacing:51.154589pt;}
.ls34{letter-spacing:51.154728pt;}
.ls1{letter-spacing:51.747875pt;}
.lsc{letter-spacing:52.321018pt;}
.ls2e{letter-spacing:54.251894pt;}
.ls33{letter-spacing:54.251906pt;}
.ls35{letter-spacing:54.256961pt;}
.ls30{letter-spacing:54.293090pt;}
.ls2f{letter-spacing:54.293153pt;}
.ls26{letter-spacing:54.911814pt;}
.ls21{letter-spacing:56.699115pt;}
.ls24{letter-spacing:56.705344pt;}
.ls7{letter-spacing:58.251382pt;}
.ls2a{letter-spacing:59.200692pt;}
.lsb{letter-spacing:59.836675pt;}
.ls29{letter-spacing:59.853826pt;}
.ls11{letter-spacing:60.983643pt;}
.ls8{letter-spacing:61.661020pt;}
.ls20{letter-spacing:72.233437pt;}
.ls2d{letter-spacing:72.814390pt;}
.ls2c{letter-spacing:73.474277pt;}
.ls2b{letter-spacing:75.219447pt;}
.ls14{letter-spacing:75.371908pt;}
.ls1e{letter-spacing:75.412903pt;}
.ls9{letter-spacing:75.413029pt;}
.ls32{letter-spacing:75.413092pt;}
.ls16{letter-spacing:78.763092pt;}
.ls15{letter-spacing:80.311266pt;}
.ls19{letter-spacing:80.341373pt;}
.lsd{letter-spacing:81.797746pt;}
.ls1c{letter-spacing:82.120953pt;}
.ls23{letter-spacing:84.466325pt;}
.ls13{letter-spacing:87.452524pt;}
.ls28{letter-spacing:87.459024pt;}
.lsf{letter-spacing:96.491803pt;}
.ls10{letter-spacing:96.491866pt;}
.ls27{letter-spacing:173.281347pt;}
.lsa{letter-spacing:228.188349pt;}
.lse{letter-spacing:285.952687pt;}
.ls6{letter-spacing:461.945944pt;}
.ws25{word-spacing:-103.451788pt;}
.ws24{word-spacing:-103.039629pt;}
.ws44{word-spacing:-77.428622pt;}
.ws0{word-spacing:-51.726223pt;}
.ws1f{word-spacing:-48.191876pt;}
.ws4{word-spacing:-46.906838pt;}
.ws1a{word-spacing:-46.720613pt;}
.ws2{word-spacing:-45.131645pt;}
.ws33{word-spacing:-42.047891pt;}
.wsf{word-spacing:-40.926683pt;}
.ws17{word-spacing:-34.900298pt;}
.ws40{word-spacing:-32.931312pt;}
.ws8{word-spacing:-27.471324pt;}
.ws16{word-spacing:-26.537308pt;}
.ws31{word-spacing:-25.862947pt;}
.ws32{word-spacing:-22.565679pt;}
.ws1e{word-spacing:-21.204438pt;}
.ws7{word-spacing:-20.463342pt;}
.ws18{word-spacing:-19.716099pt;}
.ws10{word-spacing:-18.501084pt;}
.ws28{word-spacing:-17.670420pt;}
.ws11{word-spacing:-16.398747pt;}
.ws27{word-spacing:-16.385382pt;}
.ws15{word-spacing:-15.417618pt;}
.ws3{word-spacing:-14.296409pt;}
.ws26{word-spacing:-13.315280pt;}
.ws1b{word-spacing:-12.334151pt;}
.ws23{word-spacing:-11.212943pt;}
.ws2e{word-spacing:-4.026866pt;}
.ws3b{word-spacing:-3.538986pt;}
.ws2d{word-spacing:-3.353985pt;}
.ws3c{word-spacing:-3.333206pt;}
.ws3d{word-spacing:-2.885110pt;}
.ws1d{word-spacing:-2.706452pt;}
.ws3e{word-spacing:-2.361608pt;}
.ws2b{word-spacing:-2.111996pt;}
.ws13{word-spacing:-2.036518pt;}
.ws2c{word-spacing:-1.648645pt;}
.ws34{word-spacing:-1.584203pt;}
.ws12{word-spacing:-1.497482pt;}
.ws22{word-spacing:-1.482279pt;}
.ws2a{word-spacing:-1.267198pt;}
.ws39{word-spacing:-1.256294pt;}
.ws21{word-spacing:-1.175553pt;}
.ws37{word-spacing:-1.123202pt;}
.ws38{word-spacing:-1.030403pt;}
.ws9{word-spacing:-1.027839pt;}
.ws43{word-spacing:-0.844798pt;}
.wse{word-spacing:-0.804762pt;}
.ws35{word-spacing:-0.748801pt;}
.ws3a{word-spacing:-0.422399pt;}
.ws42{word-spacing:-0.352000pt;}
.ws5{word-spacing:-0.335764pt;}
.ws14{word-spacing:-0.284595pt;}
.ws2f{word-spacing:-0.206081pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:0.084796pt;}
.ws1c{word-spacing:0.224640pt;}
.ws29{word-spacing:0.238080pt;}
.wsa{word-spacing:0.391909pt;}
.ws6{word-spacing:0.426966pt;}
.wsb{word-spacing:0.722246pt;}
.wsd{word-spacing:1.627411pt;}
.ws36{word-spacing:2.280027pt;}
.ws19{word-spacing:27.471721pt;}
.ws30{word-spacing:671.452974pt;}
.ws20{word-spacing:1627.299989pt;}
.ws41{word-spacing:2102.286933pt;}
.ws3f{word-spacing:2490.036535pt;}
._7{margin-left:-1033.002242pt;}
._16{margin-left:-14.086369pt;}
._14{margin-left:-10.839030pt;}
._e{margin-left:-9.273626pt;}
._1c{margin-left:-8.140137pt;}
._c{margin-left:-6.434292pt;}
._9{margin-left:-5.419515pt;}
._4{margin-left:-4.121611pt;}
._2{margin-left:-2.782063pt;}
._1{margin-left:-1.030403pt;}
._3{width:1.030403pt;}
._0{width:2.060806pt;}
._b{width:3.301133pt;}
._a{width:4.373787pt;}
._15{width:11.452135pt;}
._f{width:12.550418pt;}
._10{width:13.493738pt;}
._1b{width:14.414844pt;}
._1d{width:15.863139pt;}
._d{width:17.233886pt;}
._5{width:18.316787pt;}
._11{width:19.290757pt;}
._21{width:20.607919pt;}
._6{width:21.656926pt;}
._22{width:23.863661pt;}
._12{width:28.079089pt;}
._20{width:29.008000pt;}
._26{width:31.187305pt;}
._28{width:32.236909pt;}
._1f{width:37.272252pt;}
._24{width:41.982805pt;}
._1e{width:47.843786pt;}
._29{width:50.345079pt;}
._23{width:57.462471pt;}
._13{width:71.939010pt;}
._8{width:549.455213pt;}
._19{width:918.378743pt;}
._1a{width:955.348936pt;}
._18{width:1057.904943pt;}
._25{width:1065.012025pt;}
._17{width:1192.427003pt;}
._27{width:1481.164812pt;}
.fs2{font-size:42.240573pt;}
.fsc{font-size:46.720613pt;}
.fs11{font-size:51.200654pt;}
.fsd{font-size:56.320326pt;}
.fs12{font-size:60.800367pt;}
.fs3{font-size:65.280408pt;}
.fsa{font-size:70.400080pt;}
.fs9{font-size:74.880121pt;}
.fs13{font-size:79.360162pt;}
.fs8{font-size:84.479834pt;}
.fs16{font-size:84.480000pt;}
.fs10{font-size:88.959875pt;}
.fs7{font-size:91.519711pt;}
.fs5{font-size:93.439916pt;}
.fs1{font-size:103.039629pt;}
.fs15{font-size:111.999711pt;}
.fs14{font-size:112.000000pt;}
.fs6{font-size:125.439833pt;}
.fsb{font-size:131.200448pt;}
.fs18{font-size:158.720324pt;}
.fse{font-size:172.800078pt;}
.fs4{font-size:186.879832pt;}
.fsf{font-size:191.999504pt;}
.fs0{font-size:206.080569pt;}
.fs17{font-size:224.640364pt;}
.fs19{font-size:308.480567pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:3.519178pt;}
.ya6{bottom:81.278096pt;}
.ya5{bottom:109.117728pt;}
.yd5{bottom:117.119512pt;}
.y2f{bottom:125.764953pt;}
.ya4{bottom:133.433902pt;}
.y111{bottom:135.032858pt;}
.y90{bottom:140.478466pt;}
.y1ea{bottom:141.121835pt;}
.y83{bottom:141.278781pt;}
.y1cc{bottom:141.923810pt;}
.y55{bottom:142.081526pt;}
.y70{bottom:142.082146pt;}
.yd4{bottom:144.963208pt;}
.y201{bottom:148.005402pt;}
.y1f5{bottom:148.160115pt;}
.y6b{bottom:148.321247pt;}
.y10f{bottom:149.919398pt;}
.y1ab{bottom:149.920928pt;}
.yef{bottom:150.560032pt;}
.y1b8{bottom:151.837689pt;}
.y13b{bottom:152.799523pt;}
.y223{bottom:153.438973pt;}
.y173{bottom:155.673281pt;}
.y110{bottom:155.990120pt;}
.y102{bottom:157.114433pt;}
.ya3{bottom:158.557010pt;}
.y18e{bottom:159.676557pt;}
.y23d{bottom:160.800582pt;}
.y54{bottom:161.754501pt;}
.y82{bottom:162.236824pt;}
.y33{bottom:162.401791pt;}
.y1cb{bottom:164.318378pt;}
.y8f{bottom:165.282248pt;}
.yb4{bottom:165.763786pt;}
.y1aa{bottom:166.400314pt;}
.y184{bottom:167.994654pt;}
.y14d{bottom:170.242666pt;}
.y13a{bottom:170.390659pt;}
.y172{bottom:171.356895pt;}
.yee{bottom:171.518074pt;}
.y1f4{bottom:173.278720pt;}
.yc{bottom:173.279349pt;}
.y6a{bottom:173.598405pt;}
.y222{bottom:174.563499pt;}
.y200{bottom:175.681546pt;}
.y1b7{bottom:176.478143pt;}
.yd3{bottom:176.959958pt;}
.yc7{bottom:177.125255pt;}
.y101{bottom:177.280970pt;}
.y53{bottom:181.437398pt;}
.y11d{bottom:182.238769pt;}
.y1a9{bottom:183.201937pt;}
.y125{bottom:183.358097pt;}
.y19a{bottom:183.838690pt;}
.y8e{bottom:184.161665pt;}
.y1ca{bottom:186.718692pt;}
.y171{bottom:187.040460pt;}
.y18d{bottom:187.520253pt;}
.y23c{bottom:188.479306pt;}
.ybe{bottom:188.964025pt;}
.y81{bottom:189.119180pt;}
.y32{bottom:190.404165pt;}
.yb3{bottom:190.557772pt;}
.ya2{bottom:191.038126pt;}
.y183{bottom:191.197806pt;}
.y1e9{bottom:191.521500pt;}
.y22e{bottom:191.521955pt;}
.yed{bottom:192.637250pt;}
.y14c{bottom:192.797184pt;}
.yb{bottom:192.952324pt;}
.y139{bottom:193.918560pt;}
.y221{bottom:195.677272pt;}
.y100{bottom:197.441817pt;}
.y1f3{bottom:198.564941pt;}
.y52{bottom:201.110373pt;}
.y1b6{bottom:201.118597pt;}
.y1a8{bottom:201.442101pt;}
.y170{bottom:202.873489pt;}
.y11c{bottom:203.196812pt;}
.y1ff{bottom:203.525242pt;}
.yd2{bottom:204.477220pt;}
.yc6{bottom:204.958629pt;}
.y211{bottom:205.597997pt;}
.y10e{bottom:207.033749pt;}
.y8d{bottom:208.965394pt;}
.y199{bottom:209.124911pt;}
.y1c9{bottom:209.278901pt;}
.y80{bottom:210.232953pt;}
.y13c{bottom:211.043017pt;}
.y138{bottom:211.519618pt;}
.ya{bottom:212.635269pt;}
.yec{bottom:213.595293pt;}
.ya1{bottom:215.513294pt;}
.ybd{bottom:216.797398pt;}
.y1a7{bottom:217.756452pt;}
.yff{bottom:217.762557pt;}
.y31{bottom:218.395053pt;}
.y22d{bottom:219.524260pt;}
.y182{bottom:220.158735pt;}
.y51{bottom:220.633933pt;}
.y14b{bottom:220.961781pt;}
.yb2{bottom:221.116041pt;}
.y10c{bottom:222.079859pt;}
.y10d{bottom:222.553472pt;}
.y23b{bottom:223.356121pt;}
.y1f2{bottom:223.840777pt;}
.y16f{bottom:224.319503pt;}
.y11b{bottom:224.321337pt;}
.y210{bottom:230.884218pt;}
.y7f{bottom:231.196345pt;}
.y15a{bottom:231.204239pt;}
.yc5{bottom:232.637353pt;}
.y1b5{bottom:232.802784pt;}
.yd1{bottom:233.441693pt;}
.y8c{bottom:233.758371pt;}
.y198{bottom:234.400809pt;}
.y1d8{bottom:234.553283pt;}
.y1a6{bottom:234.713584pt;}
.y124{bottom:234.878198pt;}
.y19b{bottom:234.885466pt;}
.y137{bottom:235.037549pt;}
.y6d{bottom:235.844519pt;}
.ya0{bottom:239.838028pt;}
.y16e{bottom:239.998156pt;}
.y50{bottom:240.961506pt;}
.y1e6{bottom:242.083557pt;}
.ydb{bottom:243.042610pt;}
.y14a{bottom:243.520930pt;}
.yfe{bottom:243.676305pt;}
.ybc{bottom:244.641094pt;}
.yb1{bottom:245.760342pt;}
.yeb{bottom:246.396558pt;}
.y30{bottom:246.557063pt;}
.y6f{bottom:248.477307pt;}
.y1f1{bottom:249.116676pt;}
.y23a{bottom:251.045104pt;}
.y11a{bottom:251.203693pt;}
.y1a5{bottom:252.798238pt;}
.y22c{bottom:254.564231pt;}
.y181{bottom:254.877546pt;}
.y1d7{bottom:255.677861pt;}
.y16d{bottom:255.836146pt;}
.y60{bottom:256.005405pt;}
.y20f{bottom:256.160117pt;}
.y17{bottom:256.320801pt;}
.y18c{bottom:257.119170pt;}
.y7e{bottom:258.076550pt;}
.y159{bottom:259.354865pt;}
.y6c{bottom:261.120417pt;}
.yd0{bottom:261.285389pt;}
.y4f{bottom:262.719158pt;}
.yfd{bottom:263.995930pt;}
.y9f{bottom:264.154202pt;}
.y220{bottom:264.315629pt;}
.y136{bottom:264.482274pt;}
.y1b4{bottom:264.637901pt;}
.y149{bottom:265.915498pt;}
.y1e8{bottom:267.359455pt;}
.yea{bottom:267.521137pt;}
.y1c8{bottom:268.154910pt;}
.y1a4{bottom:269.122912pt;}
.yb0{bottom:270.403528pt;}
.yda{bottom:270.876015pt;}
.y16c{bottom:271.514750pt;}
.y119{bottom:272.161736pt;}
.yc4{bottom:272.165075pt;}
.y1f0{bottom:274.402897pt;}
.y1e0{bottom:276.321003pt;}
.y1d{bottom:276.325064pt;}
.y1d6{bottom:276.639103pt;}
.y180{bottom:278.082849pt;}
.y239{bottom:278.878509pt;}
.y10b{bottom:279.190931pt;}
.y20e{bottom:281.281303pt;}
.y135{bottom:282.073410pt;}
.y4e{bottom:282.392133pt;}
.y22b{bottom:282.714823pt;}
.y2e{bottom:282.885909pt;}
.y8b{bottom:283.359430pt;}
.ybb{bottom:284.003813pt;}
.y18b{bottom:284.797863pt;}
.y21f{bottom:285.439105pt;}
.y1a3{bottom:286.077439pt;}
.y123{bottom:286.247072pt;}
.y158{bottom:287.357171pt;}
.y9e{bottom:288.478936pt;}
.ye9{bottom:288.481277pt;}
.ycf{bottom:288.964113pt;}
.yfc{bottom:289.918772pt;}
.y1c7{bottom:290.558628pt;}
.y5f{bottom:290.717248pt;}
.y7d{bottom:290.878970pt;}
.y1e5{bottom:292.645676pt;}
.y16b{bottom:293.276610pt;}
.y109{bottom:294.077402pt;}
.y148{bottom:294.242332pt;}
.y10a{bottom:294.714544pt;}
.y4{bottom:294.724685pt;}
.y1b3{bottom:296.322088pt;}
.y1d5{bottom:297.762580pt;}
.yd9{bottom:298.565030pt;}
.y16{bottom:298.717776pt;}
.y197{bottom:298.884714pt;}
.y1ef{bottom:299.524083pt;}
.yc3{bottom:299.998480pt;}
.yaf{bottom:300.960681pt;}
.y4d{bottom:302.077073pt;}
.y1df{bottom:304.164699pt;}
.y118{bottom:304.955553pt;}
.y134{bottom:305.599269pt;}
.y20d{bottom:306.557202pt;}
.y17f{bottom:307.843697pt;}
.y8a{bottom:308.161009pt;}
.y16a{bottom:310.240684pt;}
.yba{bottom:311.837186pt;}
.y7c{bottom:311.839111pt;}
.y18a{bottom:312.641559pt;}
.y9d{bottom:312.954104pt;}
.y1c{bottom:313.437918pt;}
.y157{bottom:315.359476pt;}
.y147{bottom:316.636900pt;}
.y22a{bottom:317.754793pt;}
.y1e4{bottom:317.756571pt;}
.y2c{bottom:319.203408pt;}
.yce{bottom:321.114548pt;}
.ye8{bottom:321.283697pt;}
.y24{bottom:321.758395pt;}
.y4c{bottom:321.760018pt;}
.yfb{bottom:321.920161pt;}
.y133{bottom:323.353778pt;}
.y196{bottom:324.160613pt;}
.y205{bottom:324.324799pt;}
.y1ee{bottom:324.799981pt;}
.y5e{bottom:325.439350pt;}
.yae{bottom:325.594716pt;}
.yd8{bottom:326.398403pt;}
.y117{bottom:331.836807pt;}
.y20c{bottom:331.843391pt;}
.y89{bottom:332.799304pt;}
.y9c{bottom:337.278838pt;}
.y122{bottom:337.766877pt;}
.y169{bottom:338.398877pt;}
.y1de{bottom:338.876510pt;}
.y146{bottom:339.040590pt;}
.y1d4{bottom:339.837596pt;}
.y4b{bottom:341.275602pt;}
.y15{bottom:341.285872pt;}
.y238{bottom:341.444339pt;}
.yfa{bottom:342.075289pt;}
.ye7{bottom:342.235288pt;}
.y178{bottom:342.875718pt;}
.y1e7{bottom:343.042761pt;}
.y156{bottom:343.521485pt;}
.y69{bottom:344.001814pt;}
.y17e{bottom:344.154918pt;}
.y7b{bottom:344.641531pt;}
.y229{bottom:345.757133pt;}
.y132{bottom:346.877692pt;}
.y2d{bottom:347.365417pt;}
.ycd{bottom:348.479380pt;}
.y195{bottom:349.436511pt;}
.y1c6{bottom:349.442643pt;}
.y23{bottom:349.760700pt;}
.y1ed{bottom:350.075880pt;}
.y108{bottom:351.191860pt;}
.yb9{bottom:351.199936pt;}
.y116{bottom:352.797000pt;}
.y168{bottom:354.073493pt;}
.y204{bottom:355.201499pt;}
.yad{bottom:356.161019pt;}
.y177{bottom:356.951907pt;}
.y20b{bottom:357.119290pt;}
.y88{bottom:357.600909pt;}
.y1b2{bottom:359.677909pt;}
.y6e{bottom:359.996481pt;}
.y5d{bottom:360.316165pt;}
.y1d3{bottom:360.797789pt;}
.y4a{bottom:360.958548pt;}
.y9b{bottom:361.595012pt;}
.y3{bottom:363.033495pt;}
.y21e{bottom:364.639201pt;}
.yd7{bottom:365.761153pt;}
.y106{bottom:366.237863pt;}
.y107{bottom:366.715473pt;}
.y1dd{bottom:366.720206pt;}
.y145{bottom:367.998975pt;}
.y1e3{bottom:368.318660pt;}
.y237{bottom:369.123032pt;}
.y68{bottom:369.277713pt;}
.y3a{bottom:370.565705pt;}
.y176{bottom:370.874865pt;}
.y17d{bottom:370.878279pt;}
.y155{bottom:371.523825pt;}
.y1c5{bottom:372.001736pt;}
.y14{bottom:372.162572pt;}
.y19f{bottom:372.484879pt;}
.y1a2{bottom:372.959276pt;}
.yf9{bottom:373.278330pt;}
.y194{bottom:374.722701pt;}
.ye6{bottom:375.037655pt;}
.y1ec{bottom:375.362069pt;}
.y167{bottom:376.000152pt;}
.y131{bottom:376.155055pt;}
.y7a{bottom:377.280614pt;}
.ycc{bottom:377.445179pt;}
.y22{bottom:377.763040pt;}
.y115{bottom:379.678281pt;}
.yac{bottom:380.795027pt;}
.y228{bottom:380.797104pt;}
.y49{bottom:381.279480pt;}
.y1d2{bottom:381.921239pt;}
.y189{bottom:382.240508pt;}
.y87{bottom:382.402488pt;}
.y20a{bottom:382.405480pt;}
.y2b{bottom:383.682881pt;}
.y175{bottom:384.954640pt;}
.y19e{bottom:385.117667pt;}
.y21d{bottom:385.762651pt;}
.y9a{bottom:385.918907pt;}
.y203{bottom:386.078164pt;}
.y121{bottom:389.123160pt;}
.yb8{bottom:390.717367pt;}
.yf8{bottom:391.040768pt;}
.y1b1{bottom:391.362057pt;}
.y144{bottom:393.285165pt;}
.yd6{bottom:393.604849pt;}
.y130{bottom:393.917493pt;}
.y17c{bottom:394.081431pt;}
.y1c4{bottom:394.396304pt;}
.y1dc{bottom:394.398899pt;}
.y5c{bottom:395.038268pt;}
.ye5{bottom:395.997822pt;}
.y236{bottom:396.956405pt;}
.y1a0{bottom:397.760777pt;}
.y1a1{bottom:398.245465pt;}
.y79{bottom:398.395489pt;}
.y174{bottom:399.034415pt;}
.y154{bottom:399.514713pt;}
.y193{bottom:399.843887pt;}
.y1b{bottom:400.474279pt;}
.y86{bottom:401.437687pt;}
.y1d1{bottom:402.881433pt;}
.y48{bottom:403.033802pt;}
.y166{bottom:404.157406pt;}
.ycb{bottom:405.278584pt;}
.y21{bottom:405.925049pt;}
.y40{bottom:406.084719pt;}
.y209{bottom:407.516375pt;}
.y227{bottom:408.959113pt;}
.y188{bottom:409.919200pt;}
.y38{bottom:410.236607pt;}
.y99{bottom:410.400914pt;}
.y12f{bottom:411.520569pt;}
.yab{bottom:412.156991pt;}
.y114{bottom:412.480648pt;}
.y13{bottom:414.719251pt;}
.yf7{bottom:415.200409pt;}
.y202{bottom:416.795195pt;}
.ye4{bottom:417.121299pt;}
.yc2{bottom:418.396060pt;}
.yb7{bottom:418.561063pt;}
.y1e2{bottom:418.880748pt;}
.y78{bottom:419.355656pt;}
.y165{bottom:419.839998pt;}
.y47{bottom:422.716748pt;}
.y1b0{bottom:423.046244pt;}
.y105{bottom:423.355259pt;}
.y67{bottom:423.841048pt;}
.y2{bottom:424.792268pt;}
.y29{bottom:425.441109pt;}
.y1fe{bottom:425.604473pt;}
.y1eb{bottom:425.759154pt;}
.y153{bottom:427.676723pt;}
.y1db{bottom:429.275714pt;}
.y5b{bottom:429.925405pt;}
.y143{bottom:430.080086pt;}
.y235{bottom:431.678539pt;}
.y208{bottom:432.802596pt;}
.yca{bottom:433.122280pt;}
.y113{bottom:433.440841pt;}
.y20{bottom:433.915937pt;}
.y12e{bottom:435.036506pt;}
.yf6{bottom:435.355509pt;}
.y98{bottom:435.514638pt;}
.y164{bottom:435.674024pt;}
.y187{bottom:437.762896pt;}
.y103{bottom:438.235406pt;}
.y104{bottom:438.874218pt;}
.y17b{bottom:440.315849pt;}
.y120{bottom:440.479483pt;}
.y46{bottom:442.399669pt;}
.y226{bottom:443.999049pt;}
.y9{bottom:444.160791pt;}
.y1d0{bottom:444.956474pt;}
.y12{bottom:445.595951pt;}
.yc1{bottom:446.085044pt;}
.y22f{bottom:446.552470pt;}
.y66{bottom:449.116915pt;}
.ye3{bottom:449.760383pt;}
.yaa{bottom:450.876326pt;}
.y1e1{bottom:451.045375pt;}
.y163{bottom:451.356617pt;}
.y77{bottom:452.158049pt;}
.y12d{bottom:452.798968pt;}
.y1c3{bottom:453.280319pt;}
.y1fd{bottom:453.437847pt;}
.y39{bottom:453.762823pt;}
.y112{bottom:454.555716pt;}
.y142{bottom:455.355984pt;}
.yf5{bottom:455.519759pt;}
.y85{bottom:456.798674pt;}
.y1da{bottom:456.964729pt;}
.yb6{bottom:457.923782pt;}
.y1bd{bottom:458.229610pt;}
.y234{bottom:459.522235pt;}
.yc9{bottom:460.800973pt;}
.y2a{bottom:461.758573pt;}
.y45{bottom:461.915277pt;}
.y1f{bottom:461.918277pt;}
.y1f7{bottom:462.089364pt;}
.y3f{bottom:462.249033pt;}
.y8{bottom:463.835760pt;}
.y192{bottom:464.482536pt;}
.y5a{bottom:464.637216pt;}
.y1cf{bottom:466.079951pt;}
.y152{bottom:467.359041pt;}
.y97{bottom:468.800307pt;}
.y17a{bottom:470.080596pt;}
.y19d{bottom:471.676013pt;}
.y225{bottom:472.001389pt;}
.y162{bottom:472.800660pt;}
.y65{bottom:474.403136pt;}
.y1c0{bottom:475.362373pt;}
.ya9{bottom:475.519484pt;}
.yf2{bottom:475.526452pt;}
.y21c{bottom:475.679166pt;}
.y12c{bottom:476.314904pt;}
.y11{bottom:476.484033pt;}
.y141{bottom:480.642174pt;}
.y37{bottom:480.955295pt;}
.y1fc{bottom:481.116539pt;}
.y44{bottom:482.237860pt;}
.ye2{bottom:482.562776pt;}
.y76{bottom:484.797159pt;}
.yc0{bottom:485.602474pt;}
.yb5{bottom:485.757155pt;}
.y1af{bottom:486.402046pt;}
.y1{bottom:486.551023pt;}
.y1ce{bottom:487.040118pt;}
.y161{bottom:488.634662pt;}
.yde{bottom:489.271571pt;}
.y191{bottom:489.758403pt;}
.y1e{bottom:490.080287pt;}
.y96{bottom:490.395760pt;}
.y1a{bottom:491.675406pt;}
.y1d9{bottom:491.841544pt;}
.y11f{bottom:491.999287pt;}
.y233{bottom:494.244338pt;}
.y151{bottom:495.361381pt;}
.y1c2{bottom:498.069441pt;}
.y207{bottom:498.233987pt;}
.y28{bottom:499.205279pt;}
.y59{bottom:499.359319pt;}
.y224{bottom:500.163399pt;}
.yc8{bottom:500.318404pt;}
.y43{bottom:505.278704pt;}
.y12b{bottom:505.600244pt;}
.y75{bottom:505.920610pt;}
.ya8{bottom:506.877126pt;}
.y186{bottom:507.361813pt;}
.y179{bottom:507.997534pt;}
.y6{bottom:508.160312pt;}
.y1cd{bottom:508.163595pt;}
.y19{bottom:508.311243pt;}
.y19c{bottom:508.636004pt;}
.y1fb{bottom:508.960235pt;}
.y160{bottom:510.078706pt;}
.y35{bottom:510.885257pt;}
.y1ae{bottom:511.206021pt;}
.y64{bottom:511.363061pt;}
.y190{bottom:514.879620pt;}
.ye1{bottom:515.201860pt;}
.yf4{bottom:515.674780pt;}
.y1bc{bottom:515.838842pt;}
.y1ba{bottom:516.471662pt;}
.y140{bottom:517.602099pt;}
.y1f6{bottom:518.071192pt;}
.y3e{bottom:518.230879pt;}
.y10{bottom:519.040712pt;}
.y12a{bottom:523.354730pt;}
.y150{bottom:523.523373pt;}
.y15f{bottom:525.920684pt;}
.y74{bottom:526.880803pt;}
.y1bf{bottom:527.205996pt;}
.yf1{bottom:527.370058pt;}
.y232{bottom:529.121153pt;}
.y42{bottom:530.564893pt;}
.y215{bottom:531.039275pt;}
.y84{bottom:531.519256pt;}
.y58{bottom:534.236134pt;}
.ydd{bottom:535.994269pt;}
.ye0{bottom:536.316735pt;}
.y63{bottom:536.638944pt;}
.y1fa{bottom:536.803947pt;}
.y26{bottom:539.355240pt;}
.y15e{bottom:541.595300pt;}
.y213{bottom:542.717602pt;}
.y13f{bottom:542.877997pt;}
.y23e{bottom:545.755483pt;}
.y129{bottom:546.878618pt;}
.y3d{bottom:547.202721pt;}
.y3c{bottom:547.522095pt;}
.yf{bottom:549.917412pt;}
.y217{bottom:552.643917pt;}
.y231{bottom:556.799845pt;}
.y15d{bottom:557.277893pt;}
.y219{bottom:557.439214pt;}
.y73{bottom:559.683170pt;}
.y57{bottom:561.925149pt;}
.y14f{bottom:563.205675pt;}
.y128{bottom:564.481695pt;}
.y1f9{bottom:564.482640pt;}
.y95{bottom:564.639658pt;}
.y21b{bottom:565.441000pt;}
.y1c1{bottom:565.445098pt;}
.y206{bottom:565.609643pt;}
.y11e{bottom:567.354569pt;}
.y13e{bottom:567.999199pt;}
.ydf{bottom:568.955845pt;}
.y5{bottom:569.919065pt;}
.y18{bottom:570.070016pt;}
.yf3{bottom:573.119951pt;}
.y1bb{bottom:573.284012pt;}
.y62{bottom:573.444187pt;}
.y1b9{bottom:573.916815pt;}
.ybf{bottom:574.235507pt;}
.yd{bottom:574.395193pt;}
.y1ad{bottom:574.561804pt;}
.y27{bottom:575.684104pt;}
.y94{bottom:578.715152pt;}
.y15c{bottom:578.881322pt;}
.y1be{bottom:578.885559pt;}
.yf0{bottom:579.049620pt;}
.y185{bottom:580.639344pt;}
.y72{bottom:580.643350pt;}
.y127{bottom:582.236180pt;}
.y18f{bottom:582.561245pt;}
.ydc{bottom:582.716934pt;}
.y36{bottom:583.839576pt;}
.y3b{bottom:583.999263pt;}
.y212{bottom:585.594575pt;}
.y21a{bottom:586.555861pt;}
.y214{bottom:591.353850pt;}
.y14e{bottom:591.356284pt;}
.y216{bottom:591.514004pt;}
.y230{bottom:591.676644pt;}
.y1f8{bottom:592.316029pt;}
.y41{bottom:592.635713pt;}
.y93{bottom:592.636665pt;}
.y13d{bottom:593.285404pt;}
.y56{bottom:596.801948pt;}
.y61{bottom:598.720070pt;}
.y1ac{bottom:599.202277pt;}
.y126{bottom:599.839256pt;}
.y15b{bottom:600.641034pt;}
.y71{bottom:601.758225pt;}
.y92{bottom:606.717867pt;}
.y25{bottom:612.001568pt;}
.y34{bottom:615.035632pt;}
.y91{bottom:620.799069pt;}
.y218{bottom:622.723283pt;}
.y7{bottom:682.878508pt;}
.ye{bottom:683.038352pt;}
.h18{height:15.842721pt;}
.h5{height:36.527370pt;}
.h15{height:37.595494pt;}
.h20{height:44.275566pt;}
.h25{height:44.400567pt;}
.h1b{height:47.525922pt;}
.h17{height:48.702782pt;}
.h28{height:52.576880pt;}
.h6{height:56.450978pt;}
.h16{height:56.610354pt;}
.h12{height:60.878195pt;}
.h14{height:61.050070pt;}
.h11{height:61.503629pt;}
.h10{height:64.752292pt;}
.h19{height:64.935105pt;}
.h29{height:68.626390pt;}
.h2a{height:68.820141pt;}
.h3{height:69.431000pt;}
.hf{height:73.053607pt;}
.h1a{height:73.259856pt;}
.hd{height:79.141313pt;}
.h33{height:80.132005pt;}
.h30{height:80.147760pt;}
.h2f{height:80.152199pt;}
.h34{height:80.154994pt;}
.h31{height:80.162618pt;}
.h2e{height:80.171520pt;}
.h32{height:80.201452pt;}
.h9{height:80.801802pt;}
.h8{height:81.029927pt;}
.h26{height:82.914702pt;}
.hc{height:85.576304pt;}
.h3c{height:87.445611pt;}
.h35{height:89.103117pt;}
.h36{height:89.354678pt;}
.h3b{height:95.756549pt;}
.h3a{height:95.793443pt;}
.h27{height:105.504933pt;}
.h2c{height:106.288000pt;}
.ha{height:108.473606pt;}
.h13{height:113.455075pt;}
.h2b{height:113.775388pt;}
.hb{height:120.662280pt;}
.h2d{height:123.626049pt;}
.h23{height:129.499208pt;}
.h21{height:129.515198pt;}
.h24{height:130.137333pt;}
.h22{height:130.153323pt;}
.h1f{height:130.156801pt;}
.h38{height:137.640281pt;}
.h1c{height:149.850068pt;}
.h39{height:153.187081pt;}
.he{height:161.603605pt;}
.h7{height:162.059854pt;}
.h1e{height:166.030821pt;}
.h1d{height:166.499570pt;}
.h4{height:178.207367pt;}
.h2{height:178.710493pt;}
.h37{height:194.805316pt;}
.h3d{height:267.510492pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w3{width:4.956898pt;}
.w2{width:32.319559pt;}
.w4{width:151.202750pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.324999pt;}
.x61{left:66.721742pt;}
.xe{left:71.836499pt;}
.x4b{left:73.120731pt;}
.x59{left:77.601655pt;}
.x5e{left:85.758587pt;}
.xc{left:86.714576pt;}
.x37{left:87.996938pt;}
.x4d{left:94.400443pt;}
.x55{left:97.109759pt;}
.x2c{left:98.561836pt;}
.x4f{left:104.156048pt;}
.x38{left:119.678393pt;}
.x41{left:120.799518pt;}
.x49{left:121.924455pt;}
.x5f{left:127.843816pt;}
.x3b{left:135.361607pt;}
.x2d{left:140.636877pt;}
.xb{left:142.880747pt;}
.x3a{left:145.921592pt;}
.x60{left:154.078767pt;}
.x56{left:158.079999pt;}
.x2e{left:161.760341pt;}
.x35{left:164.801588pt;}
.x3c{left:166.876559pt;}
.xd{left:168.482516pt;}
.x32{left:174.082892pt;}
.x39{left:177.436528pt;}
.x2f{left:182.720521pt;}
.x33{left:186.237969pt;}
.x3d{left:187.999928pt;}
.x30{left:197.922884pt;}
.x36{left:201.919933pt;}
.x40{left:208.957875pt;}
.x34{left:210.878109pt;}
.x20{left:230.721111pt;}
.x23{left:235.196739pt;}
.x22{left:249.438271pt;}
.x21{left:265.278225pt;}
.x50{left:324.162493pt;}
.x8{left:435.205073pt;}
.x9{left:456.318035pt;}
.x1f{left:461.442221pt;}
.x5a{left:475.838466pt;}
.x5b{left:481.118451pt;}
.x62{left:486.879462pt;}
.x57{left:498.393830pt;}
.x5c{left:502.083709pt;}
.x1e{left:516.954319pt;}
.x1b{left:519.362026pt;}
.x10{left:525.759229pt;}
.x12{left:528.964380pt;}
.xf{left:529.922500pt;}
.x15{left:533.914684pt;}
.x58{left:540.480113pt;}
.x4c{left:546.567094pt;}
.x17{left:556.316556pt;}
.x45{left:559.838064pt;}
.x1c{left:561.441794pt;}
.x24{left:562.721079pt;}
.xa{left:575.048310pt;}
.x28{left:575.996764pt;}
.x5d{left:580.474964pt;}
.x1d{left:582.569085pt;}
.x46{left:586.080338pt;}
.x52{left:587.357608pt;}
.x51{left:591.193884pt;}
.x13{left:596.637621pt;}
.x25{left:597.917578pt;}
.x11{left:599.683068pt;}
.x4a{left:601.923289pt;}
.x47{left:607.207628pt;}
.x3{left:613.288799pt;}
.x14{left:615.035892pt;}
.x3e{left:618.079333pt;}
.x2{left:619.205624pt;}
.x48{left:628.165563pt;}
.x29{left:639.203858pt;}
.x63{left:643.199713pt;}
.x3f{left:644.317156pt;}
.x2a{left:660.161901pt;}
.x64{left:664.155939pt;}
.x16{left:673.914897pt;}
.x2b{left:681.281077pt;}
.x1a{left:696.316700pt;}
.x5{left:709.766094pt;}
.x6{left:726.884034pt;}
.x31{left:731.046856pt;}
.x7{left:732.960244pt;}
.x44{left:749.604634pt;}
.x18{left:756.647174pt;}
.x43{left:782.557791pt;}
.x42{left:823.030973pt;}
.x4{left:829.606846pt;}
.x4e{left:863.519983pt;}
.x19{left:868.485344pt;}
.x54{left:878.242998pt;}
.x53{left:910.559758pt;}
.x26{left:920.479099pt;}
.x27{left:927.678449pt;}
}




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