
    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_65687e006bdf26435e7cd5fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_fee459ecf871dac31fda04b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_d7fe2bfda3f3e0a280a770a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_0fb22ec91489cbc08d776eae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_d79aa51d001f94267b4d0e60.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_974d3f50e0904b204f8a2a5f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.142090;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_8e8a5625790bc3a366bf3a1a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.667000;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;}
.m2{transform:matrix(0.177734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177734,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.182202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182202,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.184812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184812,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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);}
.m1{transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);}
.vb{vertical-align:-44.639996px;}
.vd{vertical-align:-42.480009px;}
.v9{vertical-align:-28.079955px;}
.v7{vertical-align:-20.880068px;}
.v8{vertical-align:-16.560243px;}
.vf{vertical-align:-14.399987px;}
.va{vertical-align:-10.799973px;}
.vc{vertical-align:-7.919973px;}
.v4{vertical-align:-4.319996px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.319996px;}
.v2{vertical-align:8.639991px;}
.ve{vertical-align:11.519986px;}
.v5{vertical-align:16.560005px;}
.v1{vertical-align:18.720013px;}
.v6{vertical-align:20.880000px;}
.v10{vertical-align:23.039978px;}
.ls9{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036707px;}
.ls5{letter-spacing:0.036774px;}
.ls0{letter-spacing:0.036841px;}
.ls4{letter-spacing:0.036846px;}
.ls2{letter-spacing:0.378634px;}
.ls3{letter-spacing:0.756720px;}
.ls7{letter-spacing:14.608337px;}
.ls6{letter-spacing:14.608341px;}
.ls10{letter-spacing:15.523336px;}
.ls8{letter-spacing:46.117883px;}
.lsa{letter-spacing:46.117950px;}
.lsd{letter-spacing:66.987178px;}
.lsb{letter-spacing:73.572842px;}
.ls13{letter-spacing:77.067205px;}
.lsf{letter-spacing:84.267232px;}
.ls11{letter-spacing:94.347187px;}
.ls16{letter-spacing:345.817808px;}
.lsc{letter-spacing:345.817947px;}
.ls14{letter-spacing:370.827201px;}
.lse{letter-spacing:397.467259px;}
.ls12{letter-spacing:404.667151px;}
.ls15{letter-spacing:724.346366px;}
.ls17{letter-spacing:839.276435px;}
.ls18{letter-spacing:839.276503px;}
.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;}
}
.ws19{word-spacing:-16.216434px;}
.ws6{word-spacing:-15.218213px;}
.ws3{word-spacing:-14.911650px;}
.ws2a{word-spacing:-13.743900px;}
.ws2{word-spacing:-13.474463px;}
.ws29{word-spacing:-13.184213px;}
.ws0{word-spacing:-12.037163px;}
.ws4{word-spacing:-9.701595px;}
.ws1{word-spacing:-7.545679px;}
.ws5{word-spacing:0.000000px;}
.ws1c{word-spacing:14.183814px;}
.ws15{word-spacing:26.507666px;}
.ws25{word-spacing:27.414994px;}
.ws1d{word-spacing:27.434006px;}
.ws2b{word-spacing:28.511963px;}
.ws28{word-spacing:29.050941px;}
.wsa{word-spacing:35.931870px;}
.ws1f{word-spacing:36.625140px;}
.ws10{word-spacing:39.821201px;}
.ws7{word-spacing:46.506857px;}
.ws11{word-spacing:48.179474px;}
.wsf{word-spacing:48.776493px;}
.ws9{word-spacing:53.456036px;}
.ws8{word-spacing:58.089857px;}
.ws17{word-spacing:63.003037px;}
.ws14{word-spacing:69.254262px;}
.ws13{word-spacing:71.642340px;}
.ws12{word-spacing:74.030418px;}
.ws16{word-spacing:76.878500px;}
.wse{word-spacing:84.907564px;}
.wsc{word-spacing:87.116541px;}
.ws26{word-spacing:109.552257px;}
.ws20{word-spacing:161.581500px;}
.ws1b{word-spacing:173.227690px;}
.wsb{word-spacing:185.139908px;}
.wsd{word-spacing:187.901130px;}
.ws27{word-spacing:199.499292px;}
.ws22{word-spacing:219.966282px;}
.ws21{word-spacing:228.907125px;}
.ws24{word-spacing:272.749572px;}
.ws23{word-spacing:281.690415px;}
.ws1e{word-spacing:299.198920px;}
.ws18{word-spacing:326.793117px;}
.ws1a{word-spacing:690.787217px;}
._2{margin-left:-1.133289px;}
._0{width:1.195190px;}
._1{width:2.450139px;}
._7{width:3.943971px;}
._f{width:5.059493px;}
._8{width:6.119047px;}
._9{width:7.130276px;}
._4{width:8.588395px;}
._3{width:10.199103px;}
._1c{width:11.479946px;}
._b{width:12.575414px;}
._c{width:13.604537px;}
._d{width:16.070942px;}
._e{width:17.097477px;}
._33{width:18.121549px;}
._13{width:19.164932px;}
._11{width:20.475238px;}
._10{width:21.482795px;}
._20{width:22.901643px;}
._16{width:24.276166px;}
._17{width:25.484620px;}
._6{width:26.767399px;}
._5{width:28.012932px;}
._14{width:29.125320px;}
._15{width:30.753558px;}
._1f{width:32.525643px;}
._1d{width:34.501059px;}
._a{width:35.539427px;}
._1e{width:36.778797px;}
._38{width:37.923821px;}
._1a{width:38.985255px;}
._4d{width:40.011058px;}
._12{width:41.023258px;}
._1b{width:42.328189px;}
._4c{width:43.398565px;}
._37{width:44.533715px;}
._48{width:45.620618px;}
._23{width:46.659108px;}
._22{width:47.824297px;}
._19{width:49.628229px;}
._18{width:50.798006px;}
._21{width:52.417085px;}
._34{width:54.049838px;}
._35{width:55.051147px;}
._4b{width:56.144705px;}
._39{width:57.664388px;}
._2a{width:58.688721px;}
._24{width:60.889160px;}
._46{width:62.557007px;}
._28{width:64.188789px;}
._4e{width:65.611726px;}
._47{width:68.702881px;}
._45{width:69.722360px;}
._36{width:71.105648px;}
._44{width:73.167201px;}
._31{width:78.342908px;}
._29{width:80.846707px;}
._2e{width:87.489003px;}
._2b{width:92.538022px;}
._27{width:96.130748px;}
._26{width:97.331441px;}
._2c{width:100.299276px;}
._30{width:105.151997px;}
._2d{width:106.232108px;}
._2f{width:116.397860px;}
._42{width:124.122317px;}
._43{width:125.306162px;}
._25{width:134.195905px;}
._3b{width:144.346140px;}
._4a{width:149.260868px;}
._3a{width:156.274092px;}
._3f{width:171.114809px;}
._32{width:206.462862px;}
._49{width:212.285282px;}
._41{width:223.898098px;}
._40{width:240.325551px;}
._3e{width:342.391199px;}
._3d{width:404.707797px;}
._3c{width:413.648640px;}
.fc2{color:rgb(0,51,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,0);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.182715px;}
.fs22{font-size:30.580065px;}
.fs26{font-size:31.074615px;}
.fs1f{font-size:31.231620px;}
.fs1d{font-size:31.253175px;}
.fs17{font-size:31.767975px;}
.fs24{font-size:31.878270px;}
.fs12{font-size:34.515270px;}
.fsf{font-size:34.621785px;}
.fsb{font-size:35.192025px;}
.fs4{font-size:35.931825px;}
.fs8{font-size:38.806380px;}
.fs2{font-size:48.148650px;}
.fs1b{font-size:52.388550px;}
.fs23{font-size:52.736850px;}
.fs27{font-size:53.589600px;}
.fs20{font-size:53.860500px;}
.fs5{font-size:53.897850px;}
.fs16{font-size:54.785250px;}
.fs25{font-size:54.975600px;}
.fs1a{font-size:55.269450px;}
.fs21{font-size:55.367973px;}
.fs14{font-size:55.736082px;}
.fs19{font-size:56.787616px;}
.fs1e{font-size:56.963110px;}
.fs18{font-size:57.900977px;}
.fs1c{font-size:58.412715px;}
.fs0{font-size:59.646600px;}
.fs11{font-size:59.701950px;}
.fs1{font-size:59.759492px;}
.fse{font-size:59.886450px;}
.fsa{font-size:60.872850px;}
.fs10{font-size:61.083900px;}
.fs13{font-size:63.097298px;}
.fsc{font-size:64.334789px;}
.fs15{font-size:71.852358px;}
.fs7{font-size:71.863650px;}
.fsd{font-size:81.375066px;}
.fs9{font-size:82.715441px;}
.fs6{font-size:95.578650px;}
.y0{bottom:0.000000px;}
.y162{bottom:1.800007px;}
.y20b{bottom:1.980011px;}
.yb4{bottom:2.159981px;}
.y95{bottom:2.159998px;}
.y85{bottom:2.160050px;}
.yc1{bottom:2.879997px;}
.yb8{bottom:2.879998px;}
.y17c{bottom:2.880031px;}
.y88{bottom:3.059967px;}
.y245{bottom:3.060002px;}
.y145{bottom:3.060035px;}
.y141{bottom:3.060036px;}
.y282{bottom:3.239937px;}
.y1ce{bottom:3.239971px;}
.y241{bottom:3.239988px;}
.y15a{bottom:3.240005px;}
.y8a{bottom:3.240006px;}
.y20d{bottom:3.419975px;}
.y83{bottom:3.599945px;}
.y9e{bottom:3.599997px;}
.yb2{bottom:3.600013px;}
.y77{bottom:3.779984px;}
.y186{bottom:3.952428px;}
.ybc{bottom:3.964500px;}
.y81{bottom:4.494863px;}
.yb0{bottom:4.499865px;}
.y75{bottom:4.505794px;}
.y9{bottom:35.640061px;}
.y8{bottom:52.919975px;}
.y7{bottom:66.960022px;}
.y132{bottom:90.000000px;}
.y2ba{bottom:90.899986px;}
.y1e9{bottom:92.519989px;}
.y272{bottom:95.039977px;}
.y1a4{bottom:95.580025px;}
.yeb{bottom:96.659981px;}
.y218{bottom:97.379998px;}
.y2ea{bottom:100.620002px;}
.y290{bottom:100.980011px;}
.y3a{bottom:102.240006px;}
.y150{bottom:105.840019px;}
.y131{bottom:107.279983px;}
.y2b9{bottom:108.179970px;}
.y1e8{bottom:109.799973px;}
.y23d{bottom:109.980011px;}
.y271{bottom:112.320030px;}
.yea{bottom:113.940033px;}
.y217{bottom:114.659981px;}
.y2e9{bottom:117.899986px;}
.y28f{bottom:118.259994px;}
.y39{bottom:119.340019px;}
.y14f{bottom:123.120002px;}
.y10e{bottom:123.480011px;}
.y130{bottom:124.559967px;}
.y2b8{bottom:125.460022px;}
.y1e7{bottom:127.080025px;}
.y23c{bottom:127.259994px;}
.y270{bottom:129.600013px;}
.ye9{bottom:131.220017px;}
.y216{bottom:131.940033px;}
.y1a3{bottom:133.740006px;}
.y2e8{bottom:135.179970px;}
.y28e{bottom:135.539977px;}
.y38{bottom:136.620002px;}
.y10d{bottom:137.159981px;}
.y14e{bottom:140.399986px;}
.y12f{bottom:141.840019px;}
.y2b7{bottom:142.740006px;}
.y23b{bottom:144.360008px;}
.y26f{bottom:146.879998px;}
.ye8{bottom:148.500000px;}
.y215{bottom:149.039977px;}
.y1a2{bottom:151.019989px;}
.y10c{bottom:151.379998px;}
.y28b{bottom:152.100013px;}
.y2e7{bottom:152.460022px;}
.y37{bottom:153.899986px;}
.y14d{bottom:156.960022px;}
.y12e{bottom:159.120002px;}
.y28d{bottom:159.480011px;}
.y2b6{bottom:159.840019px;}
.y23a{bottom:161.639992px;}
.y10b{bottom:163.980011px;}
.y26e{bottom:164.159981px;}
.y1e6{bottom:165.240006px;}
.ye7{bottom:165.779983px;}
.y289{bottom:166.139992px;}
.y214{bottom:166.320030px;}
.y1a1{bottom:168.299973px;}
.y2e6{bottom:169.740006px;}
.y28c{bottom:170.820030px;}
.y36{bottom:171.179970px;}
.y28a{bottom:171.539977px;}
.y12d{bottom:176.220017px;}
.y2b5{bottom:177.120002px;}
.y239{bottom:178.919975px;}
.y1e5{bottom:182.519989px;}
.ye6{bottom:182.879998px;}
.y213{bottom:183.600013px;}
.y1a0{bottom:185.399986px;}
.y14c{bottom:186.659981px;}
.y2e5{bottom:186.840019px;}
.y35{bottom:188.460022px;}
.y288{bottom:192.960022px;}
.y12c{bottom:193.500000px;}
.y2b4{bottom:194.399986px;}
.y238{bottom:196.200027px;}
.y14b{bottom:199.259994px;}
.y1e4{bottom:199.799973px;}
.ye5{bottom:200.159981px;}
.y212{bottom:200.879998px;}
.y26d{bottom:202.320030px;}
.y19f{bottom:202.679970px;}
.y2e4{bottom:204.120002px;}
.y287{bottom:205.559967px;}
.y34{bottom:205.740006px;}
.y2b3{bottom:211.679970px;}
.y237{bottom:213.480011px;}
.y1e3{bottom:217.080025px;}
.y8d{bottom:217.259994px;}
.ye4{bottom:217.440033px;}
.y211{bottom:218.159981px;}
.y26c{bottom:219.600013px;}
.y19e{bottom:219.960022px;}
.y2e3{bottom:221.399986px;}
.y33{bottom:222.840019px;}
.y2b2{bottom:228.960022px;}
.y236{bottom:230.759994px;}
.y12b{bottom:231.659981px;}
.y1e2{bottom:234.360008px;}
.y8c{bottom:234.539977px;}
.ye3{bottom:234.720017px;}
.y210{bottom:235.440033px;}
.y26b{bottom:236.879998px;}
.y19d{bottom:237.240006px;}
.y2e2{bottom:238.679970px;}
.y32{bottom:240.120002px;}
.y2b1{bottom:246.240006px;}
.y235{bottom:247.860008px;}
.y12a{bottom:248.940033px;}
.y1e1{bottom:251.460022px;}
.y8b{bottom:251.639992px;}
.ye2{bottom:252.000000px;}
.y20f{bottom:252.539977px;}
.y26a{bottom:254.159981px;}
.y19c{bottom:254.519989px;}
.y2e1{bottom:255.960022px;}
.y31{bottom:257.399986px;}
.y2b0{bottom:263.340019px;}
.y1c4{bottom:264.240006px;}
.y234{bottom:265.139992px;}
.y129{bottom:266.220017px;}
.y20e{bottom:267.840019px;}
.y84{bottom:268.559967px;}
.y1e0{bottom:268.740006px;}
.y80{bottom:268.917192px;}
.ye1{bottom:269.100013px;}
.y82{bottom:271.080025px;}
.y269{bottom:271.440033px;}
.y87{bottom:271.620002px;}
.y19b{bottom:271.799973px;}
.y2e0{bottom:273.240006px;}
.y66{bottom:274.679970px;}
.y89{bottom:275.759994px;}
.y86{bottom:278.820030px;}
.y2af{bottom:280.620002px;}
.y1c3{bottom:281.519989px;}
.y233{bottom:282.419975px;}
.y128{bottom:283.500000px;}
.y1df{bottom:286.019989px;}
.ye0{bottom:286.379998px;}
.y20a{bottom:287.279983px;}
.y268{bottom:288.539977px;}
.y19a{bottom:288.899986px;}
.y20c{bottom:289.259994px;}
.y2df{bottom:290.340019px;}
.y65{bottom:291.960022px;}
.y209{bottom:292.679970px;}
.y30{bottom:295.559967px;}
.y7f{bottom:296.279983px;}
.y2ae{bottom:297.899986px;}
.y1c2{bottom:298.620002px;}
.y232{bottom:299.700027px;}
.y127{bottom:300.779983px;}
.y1de{bottom:303.299973px;}
.ydf{bottom:303.659981px;}
.y267{bottom:305.820030px;}
.y199{bottom:306.179970px;}
.y2de{bottom:307.620002px;}
.y64{bottom:309.240006px;}
.y208{bottom:309.960022px;}
.y2f{bottom:312.840019px;}
.y7e{bottom:313.559967px;}
.y2ad{bottom:315.179970px;}
.y1c1{bottom:315.899986px;}
.y231{bottom:316.980011px;}
.y126{bottom:318.059967px;}
.y1dd{bottom:320.580025px;}
.yde{bottom:320.940033px;}
.y266{bottom:323.100013px;}
.y198{bottom:323.460022px;}
.y2dd{bottom:324.899986px;}
.y63{bottom:326.340019px;}
.y207{bottom:327.059967px;}
.y2e{bottom:330.120002px;}
.y7d{bottom:330.840019px;}
.y2ac{bottom:332.460022px;}
.y1c0{bottom:333.179970px;}
.y230{bottom:334.259994px;}
.y125{bottom:335.340019px;}
.y1dc{bottom:337.679970px;}
.ydd{bottom:338.220017px;}
.y265{bottom:340.379998px;}
.y197{bottom:340.740006px;}
.y2dc{bottom:342.179970px;}
.y62{bottom:343.620002px;}
.y206{bottom:344.340019px;}
.y2d{bottom:347.399986px;}
.y7c{bottom:348.120002px;}
.y2ab{bottom:349.559967px;}
.y1bf{bottom:350.460022px;}
.y22f{bottom:351.360008px;}
.y124{bottom:352.440033px;}
.y1db{bottom:355.139992px;}
.ydc{bottom:355.500000px;}
.y264{bottom:357.659981px;}
.y196{bottom:358.019989px;}
.y2db{bottom:359.460022px;}
.y205{bottom:359.639992px;}
.y61{bottom:360.899986px;}
.y204{bottom:362.879998px;}
.y2c{bottom:364.679970px;}
.y7b{bottom:365.399986px;}
.y2aa{bottom:366.840019px;}
.y1be{bottom:367.740006px;}
.y22e{bottom:368.639992px;}
.y123{bottom:369.720017px;}
.ydb{bottom:372.600013px;}
.y263{bottom:374.759994px;}
.y195{bottom:375.299973px;}
.y2da{bottom:376.559967px;}
.y60{bottom:378.179970px;}
.y203{bottom:380.159981px;}
.y2b{bottom:381.960022px;}
.y7a{bottom:383.220017px;}
.y2a9{bottom:384.120002px;}
.y1bd{bottom:385.019989px;}
.y22d{bottom:385.919975px;}
.y122{bottom:387.000000px;}
.yda{bottom:389.879998px;}
.y262{bottom:392.039977px;}
.y194{bottom:392.399986px;}
.y1da{bottom:392.940033px;}
.y2d9{bottom:393.840019px;}
.y5f{bottom:395.460022px;}
.y1ff{bottom:396.720017px;}
.y201{bottom:396.899986px;}
.y2a{bottom:399.059967px;}
.y10a{bottom:399.240006px;}
.y200{bottom:399.960022px;}
.y202{bottom:400.139992px;}
.y1bc{bottom:402.120002px;}
.y286{bottom:402.299973px;}
.y22c{bottom:403.200027px;}
.y74{bottom:403.373303px;}
.y283{bottom:403.379998px;}
.y78{bottom:405.179970px;}
.y76{bottom:405.360008px;}
.y1fe{bottom:405.899986px;}
.yd9{bottom:407.159981px;}
.y1d9{bottom:408.419975px;}
.y73{bottom:408.960022px;}
.y79{bottom:409.139992px;}
.y261{bottom:409.500000px;}
.y193{bottom:409.679970px;}
.y285{bottom:410.759994px;}
.y2d8{bottom:411.120002px;}
.y5e{bottom:412.559967px;}
.y29{bottom:416.340019px;}
.y109{bottom:416.519989px;}
.y280{bottom:417.419975px;}
.y1fd{bottom:417.960022px;}
.y1bb{bottom:419.399986px;}
.y22b{bottom:420.480011px;}
.y1d8{bottom:421.019989px;}
.y284{bottom:422.100013px;}
.y2a8{bottom:422.279983px;}
.y281{bottom:422.820030px;}
.yd8{bottom:424.440033px;}
.y121{bottom:425.159981px;}
.y192{bottom:426.960022px;}
.y2d7{bottom:428.399986px;}
.y72{bottom:429.120002px;}
.y5d{bottom:429.840019px;}
.y28{bottom:433.620002px;}
.y108{bottom:433.799973px;}
.y1fa{bottom:434.519989px;}
.y1fc{bottom:434.700027px;}
.y1ba{bottom:436.679970px;}
.y1fb{bottom:437.759994px;}
.y1f9{bottom:437.940033px;}
.y2a7{bottom:439.559967px;}
.yd7{bottom:441.720017px;}
.y120{bottom:442.440033px;}
.y191{bottom:444.240006px;}
.y27f{bottom:444.419975px;}
.y2d6{bottom:445.679970px;}
.y71{bottom:446.399986px;}
.y5c{bottom:447.120002px;}
.y260{bottom:447.659981px;}
.y27{bottom:450.899986px;}
.y107{bottom:453.779983px;}
.y1b9{bottom:453.960022px;}
.y22a{bottom:454.860008px;}
.y1f8{bottom:455.940033px;}
.y2a6{bottom:456.840019px;}
.y27e{bottom:457.019989px;}
.yd6{bottom:459.000000px;}
.y11f{bottom:459.720017px;}
.y190{bottom:461.519989px;}
.y2d5{bottom:462.960022px;}
.y70{bottom:463.679970px;}
.y5b{bottom:464.399986px;}
.y25f{bottom:464.759994px;}
.y26{bottom:468.179970px;}
.y106{bottom:471.059967px;}
.y1b8{bottom:471.240006px;}
.y229{bottom:472.139992px;}
.y1f7{bottom:473.039977px;}
.y2a5{bottom:474.120002px;}
.yd5{bottom:476.100013px;}
.y11e{bottom:477.000000px;}
.y18f{bottom:478.799973px;}
.y2d4{bottom:480.059967px;}
.y6f{bottom:480.960022px;}
.y5a{bottom:481.679970px;}
.y25e{bottom:482.039977px;}
.y25{bottom:485.460022px;}
.y105{bottom:488.159981px;}
.y1b7{bottom:488.519989px;}
.y228{bottom:489.419975px;}
.y1f6{bottom:490.320030px;}
.y2a4{bottom:491.399986px;}
.yd4{bottom:493.379998px;}
.y11d{bottom:494.279983px;}
.y18e{bottom:495.899986px;}
.y2d3{bottom:497.340019px;}
.y6e{bottom:498.059967px;}
.y59{bottom:498.960022px;}
.y25d{bottom:499.320030px;}
.y14a{bottom:500.580025px;}
.y24{bottom:502.559967px;}
.y104{bottom:505.259994px;}
.y1b6{bottom:505.620002px;}
.y227{bottom:506.700027px;}
.y1f5{bottom:507.600013px;}
.y103{bottom:508.139992px;}
.y2a3{bottom:508.679970px;}
.yd3{bottom:510.659981px;}
.y11c{bottom:511.559967px;}
.y18d{bottom:513.179970px;}
.y2d2{bottom:514.620002px;}
.y6d{bottom:515.340019px;}
.y58{bottom:516.059967px;}
.y25c{bottom:516.600013px;}
.y149{bottom:517.860008px;}
.y23{bottom:519.840019px;}
.y226{bottom:523.980011px;}
.y1f4{bottom:524.879998px;}
.y102{bottom:525.419975px;}
.y2a2{bottom:525.960022px;}
.yd2{bottom:527.940033px;}
.y11b{bottom:528.840019px;}
.y18c{bottom:530.460022px;}
.y2d1{bottom:531.899986px;}
.y6c{bottom:532.620002px;}
.y57{bottom:533.340019px;}
.y25b{bottom:533.879998px;}
.y148{bottom:535.139992px;}
.y22{bottom:537.120002px;}
.y225{bottom:541.080025px;}
.y1f3{bottom:542.159981px;}
.y2a1{bottom:543.059967px;}
.y1b5{bottom:543.960022px;}
.yd1{bottom:545.220017px;}
.y11a{bottom:545.940033px;}
.y18b{bottom:547.740006px;}
.y2d0{bottom:549.179970px;}
.y6b{bottom:549.899986px;}
.y56{bottom:550.620002px;}
.y25a{bottom:551.159981px;}
.y147{bottom:552.419975px;}
.y21{bottom:554.399986px;}
.y224{bottom:558.360008px;}
.y1f2{bottom:559.440033px;}
.y2a0{bottom:560.340019px;}
.y1b4{bottom:561.240006px;}
.yd0{bottom:562.320030px;}
.y119{bottom:563.220017px;}
.y101{bottom:563.759994px;}
.y2cf{bottom:566.460022px;}
.y6a{bottom:567.179970px;}
.y55{bottom:567.899986px;}
.y259{bottom:568.259994px;}
.y146{bottom:569.700027px;}
.y20{bottom:571.679970px;}
.y223{bottom:575.639992px;}
.y1f1{bottom:576.539977px;}
.y29f{bottom:577.620002px;}
.y1b3{bottom:578.519989px;}
.ycf{bottom:579.600013px;}
.y118{bottom:580.500000px;}
.y100{bottom:581.039977px;}
.y2ce{bottom:583.559967px;}
.y189{bottom:584.279983px;}
.y69{bottom:584.460022px;}
.y54{bottom:585.179970px;}
.y258{bottom:585.539977px;}
.y143{bottom:586.259994px;}
.y144{bottom:586.799973px;}
.y185{bottom:586.800027px;}
.y188{bottom:588.240006px;}
.y1f{bottom:588.960022px;}
.y142{bottom:589.679970px;}
.y187{bottom:591.840019px;}
.y222{bottom:592.919975px;}
.y1f0{bottom:593.820030px;}
.y29e{bottom:594.899986px;}
.y18a{bottom:595.620002px;}
.yce{bottom:596.879998px;}
.y117{bottom:597.779983px;}
.yff{bottom:598.139992px;}
.y2cd{bottom:600.840019px;}
.y68{bottom:601.559967px;}
.y53{bottom:602.460022px;}
.y257{bottom:602.820030px;}
.y140{bottom:603.899986px;}
.y1e{bottom:606.059967px;}
.y13f{bottom:606.960022px;}
.y1d7{bottom:608.759994px;}
.y221{bottom:610.200027px;}
.y1ef{bottom:611.100013px;}
.y184{bottom:611.820030px;}
.y29d{bottom:612.180004px;}
.y1b2{bottom:612.899986px;}
.ycd{bottom:614.160015px;}
.y116{bottom:615.060001px;}
.yfe{bottom:615.420010px;}
.y2cc{bottom:618.120002px;}
.y52{bottom:619.560001px;}
.y256{bottom:620.100013px;}
.y1d{bottom:623.519989px;}
.y13e{bottom:624.060001px;}
.y1d6{bottom:626.040012px;}
.y183{bottom:626.939999px;}
.y220{bottom:627.480011px;}
.y67{bottom:627.839985px;}
.y1ee{bottom:628.379998px;}
.y29c{bottom:629.459988px;}
.y1b1{bottom:630.180004px;}
.y182{bottom:630.360008px;}
.ycc{bottom:631.439999px;}
.y115{bottom:632.160015px;}
.yfd{bottom:632.699993px;}
.y2cb{bottom:635.399986px;}
.y51{bottom:636.839985px;}
.y255{bottom:637.379998px;}
.y13d{bottom:641.339985px;}
.y1d5{bottom:643.319995px;}
.y21f{bottom:644.579990px;}
.y1ed{bottom:645.660015px;}
.y29b{bottom:646.560001px;}
.y1b0{bottom:647.459988px;}
.y181{bottom:647.639992px;}
.ycb{bottom:648.720017px;}
.y114{bottom:649.439999px;}
.yfc{bottom:649.980011px;}
.y2ca{bottom:652.680004px;}
.y50{bottom:654.120002px;}
.y254{bottom:654.660015px;}
.y13c{bottom:658.620002px;}
.y1d4{bottom:660.600013px;}
.y1c{bottom:661.680004px;}
.y21e{bottom:661.860008px;}
.y1ec{bottom:662.579990px;}
.y17f{bottom:662.939999px;}
.y29a{bottom:663.839985px;}
.y1af{bottom:664.740006px;}
.yca{bottom:665.819995px;}
.y180{bottom:666.180004px;}
.y113{bottom:666.720017px;}
.yfb{bottom:667.259994px;}
.y2c9{bottom:669.779983px;}
.y4f{bottom:671.399986px;}
.y253{bottom:671.759994px;}
.y13b{bottom:675.899986px;}
.y1d3{bottom:677.879998px;}
.y1eb{bottom:678.060001px;}
.y1b{bottom:678.779983px;}
.y21d{bottom:679.139992px;}
.y299{bottom:681.120002px;}
.y17e{bottom:681.480011px;}
.y1ae{bottom:681.839985px;}
.y17a{bottom:682.560001px;}
.yc9{bottom:683.100013px;}
.y112{bottom:684.000000px;}
.yfa{bottom:684.360008px;}
.y27d{bottom:684.899986px;}
.y2c8{bottom:687.060001px;}
.yf9{bottom:687.240006px;}
.y4e{bottom:688.680004px;}
.y252{bottom:689.040012px;}
.y17d{bottom:689.939999px;}
.y1ea{bottom:690.660015px;}
.y13a{bottom:693.180004px;}
.y1d2{bottom:694.980011px;}
.y1a{bottom:696.060001px;}
.y21c{bottom:696.420010px;}
.y178{bottom:696.600013px;}
.y298{bottom:698.399986px;}
.y1ad{bottom:699.120002px;}
.yc8{bottom:700.379998px;}
.y17b{bottom:701.279983px;}
.y179{bottom:702.000000px;}
.y27c{bottom:702.180004px;}
.y2c7{bottom:704.339985px;}
.yf8{bottom:704.519989px;}
.y4d{bottom:705.779983px;}
.y251{bottom:706.319995px;}
.y139{bottom:710.279983px;}
.y1d1{bottom:710.459988px;}
.y1cd{bottom:711.540012px;}
.y21b{bottom:713.339985px;}
.y297{bottom:715.680004px;}
.y1ac{bottom:716.399986px;}
.yc7{bottom:717.660015px;}
.y19{bottom:718.560001px;}
.y1d0{bottom:718.920010px;}
.y27b{bottom:719.279983px;}
.y2c6{bottom:721.620002px;}
.yf7{bottom:721.800007px;}
.y111{bottom:721.980011px;}
.y4c{bottom:723.060001px;}
.y250{bottom:723.600013px;}
.y177{bottom:723.779983px;}
.y1cb{bottom:725.579990px;}
.y138{bottom:727.560001px;}
.y21a{bottom:728.819995px;}
.y1cf{bottom:730.259994px;}
.y18{bottom:730.620002px;}
.y1cc{bottom:730.980011px;}
.y296{bottom:732.779983px;}
.y1ab{bottom:733.680004px;}
.yc6{bottom:734.939999px;}
.y27a{bottom:736.560001px;}
.y110{bottom:737.459988px;}
.yf6{bottom:738.899986px;}
.y4b{bottom:740.339985px;}
.y24f{bottom:740.879998px;}
.y176{bottom:741.060001px;}
.y219{bottom:741.420010px;}
.y137{bottom:744.839985px;}
.y17{bottom:747.899986px;}
.y10f{bottom:750.060001px;}
.y1aa{bottom:750.959988px;}
.yc5{bottom:752.220017px;}
.y1ca{bottom:752.759994px;}
.y279{bottom:753.839985px;}
.yf5{bottom:756.180004px;}
.y175{bottom:756.540012px;}
.y4a{bottom:757.620002px;}
.y24e{bottom:757.980011px;}
.y174{bottom:759.600013px;}
.y136{bottom:762.120002px;}
.y16{bottom:765.180004px;}
.y1a9{bottom:768.240006px;}
.yc4{bottom:770.040012px;}
.y278{bottom:771.120002px;}
.y2c5{bottom:773.279983px;}
.yf4{bottom:773.459988px;}
.y49{bottom:774.899986px;}
.y173{bottom:775.079990px;}
.y24d{bottom:775.259994px;}
.y172{bottom:778.139992px;}
.y135{bottom:779.399986px;}
.y1a8{bottom:785.339985px;}
.y1c9{bottom:787.319995px;}
.y15{bottom:787.500000px;}
.y277{bottom:788.399986px;}
.yc3{bottom:790.019989px;}
.y2c4{bottom:790.560001px;}
.yf3{bottom:790.740006px;}
.y48{bottom:792.180004px;}
.y24c{bottom:792.540012px;}
.y171{bottom:793.259994px;}
.y170{bottom:796.680004px;}
.y14{bottom:799.560001px;}
.y1a7{bottom:802.800007px;}
.y1c8{bottom:804.600013px;}
.y134{bottom:805.500000px;}
.yc0{bottom:805.680004px;}
.y24a{bottom:807.300007px;}
.y2c3{bottom:807.839985px;}
.ybb{bottom:808.196436px;}
.y47{bottom:809.279983px;}
.ybe{bottom:809.639992px;}
.y24b{bottom:810.180004px;}
.ybf{bottom:810.360008px;}
.yba{bottom:813.060001px;}
.ybd{bottom:813.240006px;}
.y16f{bottom:813.779983px;}
.yc2{bottom:817.019989px;}
.y1c7{bottom:821.519989px;}
.y13{bottom:822.060001px;}
.y133{bottom:822.779983px;}
.y249{bottom:823.680004px;}
.y2c2{bottom:825.120002px;}
.y46{bottom:826.560001px;}
.yf2{bottom:828.899986px;}
.yb9{bottom:833.220017px;}
.y16e{bottom:833.399986px;}
.y12{bottom:834.120002px;}
.y169{bottom:835.019989px;}
.y1c6{bottom:837.000000px;}
.y247{bottom:839.879998px;}
.y276{bottom:840.060001px;}
.y1a6{bottom:840.600013px;}
.y16d{bottom:842.040012px;}
.y248{bottom:842.759994px;}
.y45{bottom:843.839985px;}
.y2c1{bottom:845.279983px;}
.y165{bottom:845.639992px;}
.yf1{bottom:846.180004px;}
.y1c5{bottom:849.600013px;}
.yb7{bottom:850.319995px;}
.yb6{bottom:853.199993px;}
.y168{bottom:854.279983px;}
.y1a5{bottom:856.079990px;}
.y11{bottom:856.620002px;}
.y275{bottom:857.339985px;}
.y246{bottom:859.139992px;}
.y44{bottom:861.120002px;}
.y163{bottom:862.560001px;}
.yf0{bottom:863.459988px;}
.y2c0{bottom:865.620002px;}
.y160{bottom:868.500000px;}
.y10{bottom:868.680004px;}
.yb3{bottom:870.120002px;}
.yaf{bottom:870.476318px;}
.y243{bottom:872.459988px;}
.yb1{bottom:872.639992px;}
.y16c{bottom:873.360008px;}
.y167{bottom:874.620002px;}
.y244{bottom:875.699993px;}
.yae{bottom:876.240006px;}
.y43{bottom:878.399987px;}
.yb5{bottom:880.379998px;}
.yef{bottom:880.740006px;}
.y16b{bottom:881.819996px;}
.y2bf{bottom:885.779983px;}
.y164{bottom:888.480011px;}
.yf{bottom:891.000000px;}
.y274{bottom:891.899987px;}
.y16a{bottom:893.160015px;}
.y242{bottom:893.339985px;}
.y166{bottom:893.879998px;}
.y42{bottom:895.680004px;}
.yad{bottom:897.480011px;}
.yee{bottom:897.660015px;}
.y161{bottom:903.419992px;}
.y2be{bottom:906.120002px;}
.ye{bottom:907.560001px;}
.y23f{bottom:908.099997px;}
.y273{bottom:909.180004px;}
.y240{bottom:910.080008px;}
.y41{bottom:912.780001px;}
.yed{bottom:913.139992px;}
.y23e{bottom:913.500000px;}
.y9b{bottom:916.199993px;}
.y15f{bottom:918.180004px;}
.yab{bottom:918.360008px;}
.y91{bottom:919.979994px;}
.y2bd{bottom:923.400003px;}
.yec{bottom:925.740006px;}
.y295{bottom:926.280001px;}
.y40{bottom:930.060001px;}
.yaa{bottom:930.599997px;}
.yd{bottom:934.560001px;}
.y15e{bottom:935.280001px;}
.y9a{bottom:939.060001px;}
.y2bc{bottom:940.680004px;}
.ya1{bottom:942.840002px;}
.y294{bottom:943.560001px;}
.ya9{bottom:944.819996px;}
.y3f{bottom:947.340002px;}
.y99{bottom:948.599997px;}
.y15d{bottom:950.759994px;}
.ya0{bottom:951.120002px;}
.y15b{bottom:951.840002px;}
.y90{bottom:954.719999px;}
.y2bb{bottom:957.780001px;}
.ya8{bottom:959.039995px;}
.y15c{bottom:959.219999px;}
.y98{bottom:960.659998px;}
.y293{bottom:960.840002px;}
.yc{bottom:961.020006px;}
.y3e{bottom:964.620002px;}
.y158{bottom:965.879998px;}
.y97{bottom:970.560001px;}
.y159{bottom:971.280001px;}
.yac{bottom:973.080008px;}
.ya2{bottom:975.780001px;}
.y8e{bottom:975.960004px;}
.y292{bottom:978.120002px;}
.y3d{bottom:981.900003px;}
.y96{bottom:983.520006px;}
.ya7{bottom:984.419992px;}
.y9f{bottom:987.479994px;}
.ya6{bottom:987.659998px;}
.yb{bottom:988.740006px;}
.y157{bottom:993.060001px;}
.y94{bottom:993.240006px;}
.y291{bottom:995.400003px;}
.y9d{bottom:995.580008px;}
.y3c{bottom:999.180004px;}
.ya5{bottom:1001.879998px;}
.y93{bottom:1005.120002px;}
.y156{bottom:1008.539996px;}
.y9c{bottom:1009.080008px;}
.y153{bottom:1009.620002px;}
.ya4{bottom:1016.099997px;}
.ya{bottom:1016.280001px;}
.y155{bottom:1017.000000px;}
.y151{bottom:1023.659998px;}
.y92{bottom:1027.620002px;}
.y154{bottom:1028.340002px;}
.y152{bottom:1029.060001px;}
.ya3{bottom:1030.319996px;}
.y8f{bottom:1031.580008px;}
.y3b{bottom:1033.560001px;}
.y6{bottom:1067.219999px;}
.y5{bottom:1079.459997px;}
.y4{bottom:1091.340002px;}
.y3{bottom:1105.379998px;}
.y2{bottom:1119.960843px;}
.y1{bottom:1120.860000px;}
.h6a{height:8.819996px;}
.h4b{height:8.820014px;}
.h66{height:9.180039px;}
.h25{height:9.899986px;}
.h26{height:9.900003px;}
.h1a{height:9.900055px;}
.h54{height:13.139992px;}
.h52{height:13.140027px;}
.h42{height:13.500000px;}
.h44{height:13.860008px;}
.h63{height:14.939964px;}
.h61{height:14.939965px;}
.h6f{height:14.939998px;}
.h70{height:14.939999px;}
.h64{height:14.940033px;}
.h5d{height:14.940034px;}
.h6d{height:15.120003px;}
.h5a{height:15.299972px;}
.h5b{height:15.299973px;}
.h47{height:15.299990px;}
.h46{height:15.299999px;}
.h4a{height:15.300007px;}
.h4f{height:15.300008px;}
.h65{height:15.300040px;}
.h71{height:15.300042px;}
.h21{height:15.480011px;}
.h68{height:15.840019px;}
.h2f{height:16.019990px;}
.h50{height:16.379981px;}
.h3f{height:16.379997px;}
.h3d{height:16.379998px;}
.h55{height:16.380031px;}
.h58{height:16.559966px;}
.h39{height:16.560001px;}
.h36{height:16.560002px;}
.h59{height:16.560036px;}
.h1f{height:16.740006px;}
.h18{height:16.919975px;}
.h28{height:16.919992px;}
.h29{height:16.919993px;}
.h2e{height:16.920009px;}
.h11{height:17.460023px;}
.h62{height:21.352291px;}
.h57{height:21.774117px;}
.h31{height:21.778481px;}
.h4c{height:21.807235px;}
.hf{height:22.510235px;}
.h6b{height:23.639771px;}
.h16{height:23.759655px;}
.h2d{height:23.760867px;}
.h34{height:24.167239px;}
.h67{height:24.251145px;}
.h24{height:26.257222px;}
.h1b{height:26.338252px;}
.ha{height:27.096252px;}
.h40{height:33.619419px;}
.h5{height:35.738832px;}
.h3a{height:36.541762px;}
.h5e{height:36.823094px;}
.h4d{height:37.607673px;}
.h56{height:37.633753px;}
.h6e{height:38.028512px;}
.h33{height:38.253373px;}
.h3{height:39.794858px;}
.h43{height:39.854180px;}
.h1e{height:39.944262px;}
.h5f{height:40.119147px;}
.h22{height:40.742961px;}
.h6c{height:40.767870px;}
.h4e{height:40.973955px;}
.h3c{height:41.002368px;}
.h1{height:41.647772px;}
.h35{height:41.677451px;}
.h23{height:41.686420px;}
.h19{height:41.815246px;}
.h69{height:41.822258px;}
.h6{height:41.954845px;}
.h41{height:42.045802px;}
.hc{height:42.084637px;}
.h2{height:42.164290px;}
.h12{height:42.503992px;}
.he{height:43.424356px;}
.h4{height:44.378823px;}
.h5c{height:44.392269px;}
.hd{height:45.375685px;}
.h27{height:45.417792px;}
.h1c{height:45.558149px;}
.h20{height:46.469100px;}
.hb{height:47.976184px;}
.h9{height:48.260478px;}
.h60{height:48.848537px;}
.h51{height:49.889340px;}
.h49{height:49.923936px;}
.h8{height:50.178232px;}
.h3b{height:50.704577px;}
.h38{height:50.745908px;}
.h53{height:51.285667px;}
.h30{height:51.626634px;}
.h3e{height:52.600638px;}
.h48{height:52.763193px;}
.h2c{height:53.167759px;}
.h37{height:53.631911px;}
.h45{height:54.105918px;}
.h2b{height:55.300097px;}
.h1d{height:55.470994px;}
.h15{height:56.384666px;}
.h2a{height:58.445105px;}
.h14{height:59.591355px;}
.h13{height:62.148635px;}
.h32{height:66.554650px;}
.h7{height:66.737046px;}
.h17{height:75.375245px;}
.h10{height:76.616793px;}
.h0{height:1188.000000px;}
.w2e{width:3.955220px;}
.w5{width:3.959156px;}
.wf{width:3.960084px;}
.w2{width:3.961571px;}
.w12{width:3.961690px;}
.w11{width:4.318320px;}
.w13{width:4.324790px;}
.w4{width:4.678609px;}
.w1{width:4.683880px;}
.we{width:4.684022px;}
.w3b{width:6.480011px;}
.w3e{width:6.840019px;}
.w21{width:7.019989px;}
.w19{width:9.719982px;}
.wa{width:10.259994px;}
.w2d{width:10.620002px;}
.w25{width:10.620003px;}
.w1a{width:11.699958px;}
.w26{width:11.699993px;}
.w10{width:11.700027px;}
.w17{width:11.879998px;}
.w18{width:11.880065px;}
.w27{width:12.599997px;}
.w28{width:12.959988px;}
.w9{width:13.860008px;}
.w3f{width:16.379997px;}
.w48{width:18.540012px;}
.w1b{width:18.719982px;}
.w34{width:18.899987px;}
.w32{width:18.900003px;}
.w29{width:18.900020px;}
.w1e{width:19.259994px;}
.w38{width:19.259996px;}
.w1c{width:19.439998px;}
.w2a{width:19.620002px;}
.w1f{width:19.979978px;}
.w3c{width:20.700027px;}
.w43{width:23.580025px;}
.w3{width:25.919975px;}
.w1d{width:27.719982px;}
.w2c{width:27.719990px;}
.w49{width:27.720016px;}
.w4a{width:27.720017px;}
.w2b{width:28.079990px;}
.w20{width:28.259994px;}
.w3d{width:29.519989px;}
.w3a{width:29.879998px;}
.w46{width:30.419975px;}
.w36{width:34.200028px;}
.w39{width:34.740006px;}
.w6{width:50.040012px;}
.w7{width:57.240006px;}
.w41{width:57.960022px;}
.w35{width:66.060036px;}
.wc{width:66.419975px;}
.wb{width:66.599980px;}
.w40{width:72.180038px;}
.wd{width:73.799973px;}
.w33{width:74.699960px;}
.w37{width:75.240006px;}
.w42{width:87.120037px;}
.w44{width:94.499966px;}
.w8{width:94.680005px;}
.w47{width:95.219982px;}
.w45{width:101.160016px;}
.w14{width:111.239989px;}
.w2f{width:111.240006px;}
.w16{width:194.579991px;}
.w31{width:194.580008px;}
.w22{width:200.699993px;}
.w23{width:201.419993px;}
.w15{width:205.559984px;}
.w30{width:205.560001px;}
.w24{width:209.699993px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:134.819996px;}
.x71{left:137.700002px;}
.x7a{left:138.780001px;}
.xe{left:139.860000px;}
.x7d{left:141.120002px;}
.x91{left:143.280001px;}
.x56{left:145.800007px;}
.x7b{left:149.939999px;}
.x8{left:154.439999px;}
.x90{left:156.240006px;}
.xf{left:158.039996px;}
.x7c{left:160.919992px;}
.x93{left:162.000000px;}
.x72{left:165.419992px;}
.x9{left:170.639992px;}
.x39{left:171.900003px;}
.x79{left:173.520006px;}
.x13{left:174.780001px;}
.xd{left:175.860008px;}
.x80{left:178.919992px;}
.x32{left:181.620002px;}
.x3c{left:182.879998px;}
.x10{left:187.740006px;}
.x18{left:189.000000px;}
.x69{left:190.259994px;}
.x3b{left:192.240006px;}
.x4b{left:194.759994px;}
.x81{left:197.819996px;}
.x6a{left:201.240006px;}
.x3a{left:204.300007px;}
.x7{left:207.900003px;}
.x17{left:209.340002px;}
.x36{left:213.840002px;}
.x6c{left:215.099997px;}
.x37{left:217.620002px;}
.x35{left:218.879998px;}
.x6b{left:220.139992px;}
.x31{left:221.580008px;}
.xb{left:223.919992px;}
.xa{left:225.360008px;}
.x68{left:229.319996px;}
.x60{left:232.020006px;}
.x75{left:238.142882px;}
.x67{left:239.939999px;}
.x2e{left:243.360008px;}
.x2c{left:245.520006px;}
.x1{left:246.599997px;}
.x63{left:249.840002px;}
.x78{left:253.439999px;}
.x61{left:259.560001px;}
.x2d{left:260.819996px;}
.x92{left:264.060001px;}
.x11{left:265.500000px;}
.x46{left:271.982671px;}
.x73{left:274.139992px;}
.x4a{left:278.099997px;}
.x12{left:280.979994px;}
.x76{left:283.679740px;}
.x74{left:284.759994px;}
.x49{left:287.280001px;}
.x65{left:290.879998px;}
.x34{left:292.319996px;}
.x38{left:293.939999px;}
.xa2{left:295.199993px;}
.x64{left:299.160015px;}
.x30{left:300.240006px;}
.xc{left:302.220017px;}
.xa0{left:303.300007px;}
.x62{left:304.560001px;}
.x5f{left:313.560001px;}
.x47{left:317.519529px;}
.x66{left:319.139992px;}
.x2f{left:322.379998px;}
.x33{left:324.000000px;}
.x77{left:330.480959px;}
.x41{left:332.819996px;}
.x43{left:336.060001px;}
.x70{left:342.720017px;}
.x6e{left:344.699993px;}
.x42{left:346.139992px;}
.x6f{left:351.899987px;}
.x3d{left:357.114988px;}
.x48{left:364.320748px;}
.x40{left:370.259994px;}
.x3f{left:377.459988px;}
.x2{left:383.579990px;}
.x14{left:394.199993px;}
.x44{left:396.899987px;}
.x3{left:399.420010px;}
.x6d{left:401.939999px;}
.x45{left:408.600014px;}
.x55{left:411.300007px;}
.x16{left:418.139992px;}
.x3e{left:420.656949px;}
.x6{left:443.879998px;}
.xa1{left:445.680005px;}
.x7f{left:448.019989px;}
.x82{left:453.420010px;}
.x9f{left:456.839985px;}
.x15{left:459.000000px;}
.x19{left:469.800007px;}
.x26{left:473.040012px;}
.x28{left:476.279983px;}
.x94{left:480.060001px;}
.x5d{left:481.139992px;}
.x1a{left:484.920010px;}
.x27{left:486.360008px;}
.x4d{left:490.319996px;}
.x22{left:497.337896px;}
.x84{left:502.199993px;}
.x59{left:509.220017px;}
.x25{left:510.480011px;}
.x24{left:517.680005px;}
.x5a{left:518.939999px;}
.x9b{left:520.560001px;}
.x1b{left:523.800007px;}
.x8a{left:528.120002px;}
.x96{left:531.899987px;}
.x54{left:539.639992px;}
.x5e{left:550.079990px;}
.x23{left:560.874445px;}
.x4e{left:563.040012px;}
.x20{left:567.360008px;}
.x1f{left:576.899987px;}
.x8b{left:581.220017px;}
.x21{left:587.519989px;}
.x97{left:603.899987px;}
.x5b{left:604.980011px;}
.x99{left:611.279983px;}
.x9c{left:615.059967px;}
.x4f{left:616.860008px;}
.x85{left:617.940033px;}
.x95{left:625.500000px;}
.x52{left:626.759994px;}
.x50{left:628.740006px;}
.x1c{left:633.054132px;}
.x1e{left:638.460023px;}
.x87{left:642.960023px;}
.x8f{left:645.480011px;}
.x51{left:649.440033px;}
.x1d{left:656.271769px;}
.x8d{left:671.399987px;}
.x86{left:673.740006px;}
.x8c{left:685.620002px;}
.x5c{left:689.940033px;}
.x8e{left:692.100014px;}
.x29{left:693.179970px;}
.x88{left:695.159981px;}
.x2a{left:696.779983px;}
.x9d{left:700.200027px;}
.x9a{left:703.620002px;}
.x2b{left:707.039978px;}
.x57{left:715.139992px;}
.x58{left:726.840019px;}
.x9e{left:730.620002px;}
.x98{left:744.480011px;}
.x89{left:761.220017px;}
.x7e{left:780.480011px;}
.x4{left:783.000000px;}
.x4c{left:792.179970px;}
.x83{left:793.259994px;}
.x53{left:800.820030px;}
@media print{
.vb{vertical-align:-39.679996pt;}
.vd{vertical-align:-37.760008pt;}
.v9{vertical-align:-24.959960pt;}
.v7{vertical-align:-18.560060pt;}
.v8{vertical-align:-14.720216pt;}
.vf{vertical-align:-12.799988pt;}
.va{vertical-align:-9.599976pt;}
.vc{vertical-align:-7.039976pt;}
.v4{vertical-align:-3.839996pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.839996pt;}
.v2{vertical-align:7.679992pt;}
.ve{vertical-align:10.239988pt;}
.v5{vertical-align:14.720004pt;}
.v1{vertical-align:16.640012pt;}
.v6{vertical-align:18.560000pt;}
.v10{vertical-align:20.479980pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032628pt;}
.ls5{letter-spacing:0.032688pt;}
.ls0{letter-spacing:0.032748pt;}
.ls4{letter-spacing:0.032752pt;}
.ls2{letter-spacing:0.336564pt;}
.ls3{letter-spacing:0.672640pt;}
.ls7{letter-spacing:12.985188pt;}
.ls6{letter-spacing:12.985192pt;}
.ls10{letter-spacing:13.798521pt;}
.ls8{letter-spacing:40.993674pt;}
.lsa{letter-spacing:40.993734pt;}
.lsd{letter-spacing:59.544158pt;}
.lsb{letter-spacing:65.398082pt;}
.ls13{letter-spacing:68.504182pt;}
.lsf{letter-spacing:74.904206pt;}
.ls11{letter-spacing:83.864166pt;}
.ls16{letter-spacing:307.393607pt;}
.lsc{letter-spacing:307.393731pt;}
.ls14{letter-spacing:329.624178pt;}
.lse{letter-spacing:353.304230pt;}
.ls12{letter-spacing:359.704134pt;}
.ls15{letter-spacing:643.863436pt;}
.ls17{letter-spacing:746.023498pt;}
.ls18{letter-spacing:746.023558pt;}
.ws19{word-spacing:-14.414608pt;}
.ws6{word-spacing:-13.527300pt;}
.ws3{word-spacing:-13.254800pt;}
.ws2a{word-spacing:-12.216800pt;}
.ws2{word-spacing:-11.977300pt;}
.ws29{word-spacing:-11.719300pt;}
.ws0{word-spacing:-10.699700pt;}
.ws4{word-spacing:-8.623640pt;}
.ws1{word-spacing:-6.707270pt;}
.ws5{word-spacing:0.000000pt;}
.ws1c{word-spacing:12.607835pt;}
.ws15{word-spacing:23.562370pt;}
.ws25{word-spacing:24.368884pt;}
.ws1d{word-spacing:24.385783pt;}
.ws2b{word-spacing:25.343967pt;}
.ws28{word-spacing:25.823059pt;}
.wsa{word-spacing:31.939440pt;}
.ws1f{word-spacing:32.555680pt;}
.ws10{word-spacing:35.396623pt;}
.ws7{word-spacing:41.339429pt;}
.ws11{word-spacing:42.826199pt;}
.wsf{word-spacing:43.356883pt;}
.ws9{word-spacing:47.516476pt;}
.ws8{word-spacing:51.635428pt;}
.ws17{word-spacing:56.002700pt;}
.ws14{word-spacing:61.559344pt;}
.ws13{word-spacing:63.682080pt;}
.ws12{word-spacing:65.804816pt;}
.ws16{word-spacing:68.336444pt;}
.wse{word-spacing:75.473390pt;}
.wsc{word-spacing:77.436926pt;}
.ws26{word-spacing:97.379784pt;}
.ws20{word-spacing:143.628000pt;}
.ws1b{word-spacing:153.980169pt;}
.wsb{word-spacing:164.568807pt;}
.wsd{word-spacing:167.023227pt;}
.ws27{word-spacing:177.332704pt;}
.ws22{word-spacing:195.525584pt;}
.ws21{word-spacing:203.473000pt;}
.ws24{word-spacing:242.444064pt;}
.ws23{word-spacing:250.391480pt;}
.ws1e{word-spacing:265.954595pt;}
.ws18{word-spacing:290.482770pt;}
.ws1a{word-spacing:614.033082pt;}
._2{margin-left:-1.007368pt;}
._0{width:1.062391pt;}
._1{width:2.177901pt;}
._7{width:3.505752pt;}
._f{width:4.497327pt;}
._8{width:5.439153pt;}
._9{width:6.338023pt;}
._4{width:7.634129pt;}
._3{width:9.065869pt;}
._1c{width:10.204396pt;}
._b{width:11.178146pt;}
._c{width:12.092922pt;}
._d{width:14.285282pt;}
._e{width:15.197757pt;}
._33{width:16.108044pt;}
._13{width:17.035495pt;}
._11{width:18.200211pt;}
._10{width:19.095818pt;}
._20{width:20.357016pt;}
._16{width:21.578814pt;}
._17{width:22.652996pt;}
._6{width:23.793244pt;}
._5{width:24.900384pt;}
._14{width:25.889174pt;}
._15{width:27.336496pt;}
._1f{width:28.911682pt;}
._1d{width:30.667608pt;}
._a{width:31.590602pt;}
._1e{width:32.692264pt;}
._38{width:33.710063pt;}
._1a{width:34.653560pt;}
._4d{width:35.565385pt;}
._12{width:36.465119pt;}
._1b{width:37.625056pt;}
._4c{width:38.576503pt;}
._37{width:39.585524pt;}
._48{width:40.551660pt;}
._23{width:41.474762pt;}
._22{width:42.510486pt;}
._19{width:44.113981pt;}
._18{width:45.153783pt;}
._21{width:46.592964pt;}
._34{width:48.044301pt;}
._35{width:48.934353pt;}
._4b{width:49.906405pt;}
._39{width:51.257234pt;}
._2a{width:52.167752pt;}
._24{width:54.123698pt;}
._46{width:55.606228pt;}
._28{width:57.056702pt;}
._4e{width:58.321534pt;}
._47{width:61.069228pt;}
._45{width:61.975431pt;}
._36{width:63.205021pt;}
._44{width:65.037512pt;}
._31{width:69.638140pt;}
._29{width:71.863740pt;}
._2e{width:77.768003pt;}
._2b{width:82.256020pt;}
._27{width:85.449553pt;}
._26{width:86.516836pt;}
._2c{width:89.154912pt;}
._30{width:93.468442pt;}
._2d{width:94.428541pt;}
._2f{width:103.464765pt;}
._42{width:110.330948pt;}
._43{width:111.383255pt;}
._25{width:119.285249pt;}
._3b{width:128.307680pt;}
._4a{width:132.676327pt;}
._3a{width:138.910304pt;}
._3f{width:152.102052pt;}
._32{width:183.522544pt;}
._49{width:188.698029pt;}
._41{width:199.020532pt;}
._40{width:213.622712pt;}
._3e{width:304.347732pt;}
._3d{width:359.740264pt;}
._3c{width:367.687680pt;}
.fs3{font-size:26.829080pt;}
.fs22{font-size:27.182280pt;}
.fs26{font-size:27.621880pt;}
.fs1f{font-size:27.761440pt;}
.fs1d{font-size:27.780600pt;}
.fs17{font-size:28.238200pt;}
.fs24{font-size:28.336240pt;}
.fs12{font-size:30.680240pt;}
.fsf{font-size:30.774920pt;}
.fsb{font-size:31.281800pt;}
.fs4{font-size:31.939400pt;}
.fs8{font-size:34.494560pt;}
.fs2{font-size:42.798800pt;}
.fs1b{font-size:46.567600pt;}
.fs23{font-size:46.877200pt;}
.fs27{font-size:47.635200pt;}
.fs20{font-size:47.876000pt;}
.fs5{font-size:47.909200pt;}
.fs16{font-size:48.698000pt;}
.fs25{font-size:48.867200pt;}
.fs1a{font-size:49.128400pt;}
.fs21{font-size:49.215976pt;}
.fs14{font-size:49.543184pt;}
.fs19{font-size:50.477881pt;}
.fs1e{font-size:50.633875pt;}
.fs18{font-size:51.467536pt;}
.fs1c{font-size:51.922413pt;}
.fs0{font-size:53.019200pt;}
.fs11{font-size:53.068400pt;}
.fs1{font-size:53.119548pt;}
.fse{font-size:53.232400pt;}
.fsa{font-size:54.109200pt;}
.fs10{font-size:54.296800pt;}
.fs13{font-size:56.086487pt;}
.fsc{font-size:57.186479pt;}
.fs15{font-size:63.868763pt;}
.fs7{font-size:63.878800pt;}
.fsd{font-size:72.333392pt;}
.fs9{font-size:73.524837pt;}
.fs6{font-size:84.958800pt;}
.y0{bottom:0.000000pt;}
.y162{bottom:1.600006pt;}
.y20b{bottom:1.760010pt;}
.yb4{bottom:1.919983pt;}
.y95{bottom:1.919998pt;}
.y85{bottom:1.920044pt;}
.yc1{bottom:2.559997pt;}
.yb8{bottom:2.559998pt;}
.y17c{bottom:2.560028pt;}
.y88{bottom:2.719971pt;}
.y245{bottom:2.720002pt;}
.y145{bottom:2.720031pt;}
.y141{bottom:2.720032pt;}
.y282{bottom:2.879944pt;}
.y1ce{bottom:2.879974pt;}
.y241{bottom:2.879989pt;}
.y15a{bottom:2.880004pt;}
.y8a{bottom:2.880005pt;}
.y20d{bottom:3.039978pt;}
.y83{bottom:3.199951pt;}
.y9e{bottom:3.199997pt;}
.yb2{bottom:3.200012pt;}
.y77{bottom:3.359986pt;}
.y186{bottom:3.513270pt;}
.ybc{bottom:3.524000pt;}
.y81{bottom:3.995434pt;}
.yb0{bottom:3.999880pt;}
.y75{bottom:4.005150pt;}
.y9{bottom:31.680054pt;}
.y8{bottom:47.039978pt;}
.y7{bottom:59.520020pt;}
.y132{bottom:80.000000pt;}
.y2ba{bottom:80.799988pt;}
.y1e9{bottom:82.239990pt;}
.y272{bottom:84.479980pt;}
.y1a4{bottom:84.960022pt;}
.yeb{bottom:85.919983pt;}
.y218{bottom:86.559998pt;}
.y2ea{bottom:89.440002pt;}
.y290{bottom:89.760010pt;}
.y3a{bottom:90.880005pt;}
.y150{bottom:94.080017pt;}
.y131{bottom:95.359985pt;}
.y2b9{bottom:96.159973pt;}
.y1e8{bottom:97.599976pt;}
.y23d{bottom:97.760010pt;}
.y271{bottom:99.840027pt;}
.yea{bottom:101.280029pt;}
.y217{bottom:101.919983pt;}
.y2e9{bottom:104.799988pt;}
.y28f{bottom:105.119995pt;}
.y39{bottom:106.080017pt;}
.y14f{bottom:109.440002pt;}
.y10e{bottom:109.760010pt;}
.y130{bottom:110.719971pt;}
.y2b8{bottom:111.520020pt;}
.y1e7{bottom:112.960022pt;}
.y23c{bottom:113.119995pt;}
.y270{bottom:115.200012pt;}
.ye9{bottom:116.640015pt;}
.y216{bottom:117.280029pt;}
.y1a3{bottom:118.880005pt;}
.y2e8{bottom:120.159973pt;}
.y28e{bottom:120.479980pt;}
.y38{bottom:121.440002pt;}
.y10d{bottom:121.919983pt;}
.y14e{bottom:124.799988pt;}
.y12f{bottom:126.080017pt;}
.y2b7{bottom:126.880005pt;}
.y23b{bottom:128.320007pt;}
.y26f{bottom:130.559998pt;}
.ye8{bottom:132.000000pt;}
.y215{bottom:132.479980pt;}
.y1a2{bottom:134.239990pt;}
.y10c{bottom:134.559998pt;}
.y28b{bottom:135.200012pt;}
.y2e7{bottom:135.520020pt;}
.y37{bottom:136.799988pt;}
.y14d{bottom:139.520020pt;}
.y12e{bottom:141.440002pt;}
.y28d{bottom:141.760010pt;}
.y2b6{bottom:142.080017pt;}
.y23a{bottom:143.679993pt;}
.y10b{bottom:145.760010pt;}
.y26e{bottom:145.919983pt;}
.y1e6{bottom:146.880005pt;}
.ye7{bottom:147.359985pt;}
.y289{bottom:147.679993pt;}
.y214{bottom:147.840027pt;}
.y1a1{bottom:149.599976pt;}
.y2e6{bottom:150.880005pt;}
.y28c{bottom:151.840027pt;}
.y36{bottom:152.159973pt;}
.y28a{bottom:152.479980pt;}
.y12d{bottom:156.640015pt;}
.y2b5{bottom:157.440002pt;}
.y239{bottom:159.039978pt;}
.y1e5{bottom:162.239990pt;}
.ye6{bottom:162.559998pt;}
.y213{bottom:163.200012pt;}
.y1a0{bottom:164.799988pt;}
.y14c{bottom:165.919983pt;}
.y2e5{bottom:166.080017pt;}
.y35{bottom:167.520020pt;}
.y288{bottom:171.520020pt;}
.y12c{bottom:172.000000pt;}
.y2b4{bottom:172.799988pt;}
.y238{bottom:174.400024pt;}
.y14b{bottom:177.119995pt;}
.y1e4{bottom:177.599976pt;}
.ye5{bottom:177.919983pt;}
.y212{bottom:178.559998pt;}
.y26d{bottom:179.840027pt;}
.y19f{bottom:180.159973pt;}
.y2e4{bottom:181.440002pt;}
.y287{bottom:182.719971pt;}
.y34{bottom:182.880005pt;}
.y2b3{bottom:188.159973pt;}
.y237{bottom:189.760010pt;}
.y1e3{bottom:192.960022pt;}
.y8d{bottom:193.119995pt;}
.ye4{bottom:193.280029pt;}
.y211{bottom:193.919983pt;}
.y26c{bottom:195.200012pt;}
.y19e{bottom:195.520020pt;}
.y2e3{bottom:196.799988pt;}
.y33{bottom:198.080017pt;}
.y2b2{bottom:203.520020pt;}
.y236{bottom:205.119995pt;}
.y12b{bottom:205.919983pt;}
.y1e2{bottom:208.320007pt;}
.y8c{bottom:208.479980pt;}
.ye3{bottom:208.640015pt;}
.y210{bottom:209.280029pt;}
.y26b{bottom:210.559998pt;}
.y19d{bottom:210.880005pt;}
.y2e2{bottom:212.159973pt;}
.y32{bottom:213.440002pt;}
.y2b1{bottom:218.880005pt;}
.y235{bottom:220.320007pt;}
.y12a{bottom:221.280029pt;}
.y1e1{bottom:223.520020pt;}
.y8b{bottom:223.679993pt;}
.ye2{bottom:224.000000pt;}
.y20f{bottom:224.479980pt;}
.y26a{bottom:225.919983pt;}
.y19c{bottom:226.239990pt;}
.y2e1{bottom:227.520020pt;}
.y31{bottom:228.799988pt;}
.y2b0{bottom:234.080017pt;}
.y1c4{bottom:234.880005pt;}
.y234{bottom:235.679993pt;}
.y129{bottom:236.640015pt;}
.y20e{bottom:238.080017pt;}
.y84{bottom:238.719971pt;}
.y1e0{bottom:238.880005pt;}
.y80{bottom:239.037504pt;}
.ye1{bottom:239.200012pt;}
.y82{bottom:240.960022pt;}
.y269{bottom:241.280029pt;}
.y87{bottom:241.440002pt;}
.y19b{bottom:241.599976pt;}
.y2e0{bottom:242.880005pt;}
.y66{bottom:244.159973pt;}
.y89{bottom:245.119995pt;}
.y86{bottom:247.840027pt;}
.y2af{bottom:249.440002pt;}
.y1c3{bottom:250.239990pt;}
.y233{bottom:251.039978pt;}
.y128{bottom:252.000000pt;}
.y1df{bottom:254.239990pt;}
.ye0{bottom:254.559998pt;}
.y20a{bottom:255.359985pt;}
.y268{bottom:256.479980pt;}
.y19a{bottom:256.799988pt;}
.y20c{bottom:257.119995pt;}
.y2df{bottom:258.080017pt;}
.y65{bottom:259.520020pt;}
.y209{bottom:260.159973pt;}
.y30{bottom:262.719971pt;}
.y7f{bottom:263.359985pt;}
.y2ae{bottom:264.799988pt;}
.y1c2{bottom:265.440002pt;}
.y232{bottom:266.400024pt;}
.y127{bottom:267.359985pt;}
.y1de{bottom:269.599976pt;}
.ydf{bottom:269.919983pt;}
.y267{bottom:271.840027pt;}
.y199{bottom:272.159973pt;}
.y2de{bottom:273.440002pt;}
.y64{bottom:274.880005pt;}
.y208{bottom:275.520020pt;}
.y2f{bottom:278.080017pt;}
.y7e{bottom:278.719971pt;}
.y2ad{bottom:280.159973pt;}
.y1c1{bottom:280.799988pt;}
.y231{bottom:281.760010pt;}
.y126{bottom:282.719971pt;}
.y1dd{bottom:284.960022pt;}
.yde{bottom:285.280029pt;}
.y266{bottom:287.200012pt;}
.y198{bottom:287.520020pt;}
.y2dd{bottom:288.799988pt;}
.y63{bottom:290.080017pt;}
.y207{bottom:290.719971pt;}
.y2e{bottom:293.440002pt;}
.y7d{bottom:294.080017pt;}
.y2ac{bottom:295.520020pt;}
.y1c0{bottom:296.159973pt;}
.y230{bottom:297.119995pt;}
.y125{bottom:298.080017pt;}
.y1dc{bottom:300.159973pt;}
.ydd{bottom:300.640015pt;}
.y265{bottom:302.559998pt;}
.y197{bottom:302.880005pt;}
.y2dc{bottom:304.159973pt;}
.y62{bottom:305.440002pt;}
.y206{bottom:306.080017pt;}
.y2d{bottom:308.799988pt;}
.y7c{bottom:309.440002pt;}
.y2ab{bottom:310.719971pt;}
.y1bf{bottom:311.520020pt;}
.y22f{bottom:312.320007pt;}
.y124{bottom:313.280029pt;}
.y1db{bottom:315.679993pt;}
.ydc{bottom:316.000000pt;}
.y264{bottom:317.919983pt;}
.y196{bottom:318.239990pt;}
.y2db{bottom:319.520020pt;}
.y205{bottom:319.679993pt;}
.y61{bottom:320.799988pt;}
.y204{bottom:322.559998pt;}
.y2c{bottom:324.159973pt;}
.y7b{bottom:324.799988pt;}
.y2aa{bottom:326.080017pt;}
.y1be{bottom:326.880005pt;}
.y22e{bottom:327.679993pt;}
.y123{bottom:328.640015pt;}
.ydb{bottom:331.200012pt;}
.y263{bottom:333.119995pt;}
.y195{bottom:333.599976pt;}
.y2da{bottom:334.719971pt;}
.y60{bottom:336.159973pt;}
.y203{bottom:337.919983pt;}
.y2b{bottom:339.520020pt;}
.y7a{bottom:340.640015pt;}
.y2a9{bottom:341.440002pt;}
.y1bd{bottom:342.239990pt;}
.y22d{bottom:343.039978pt;}
.y122{bottom:344.000000pt;}
.yda{bottom:346.559998pt;}
.y262{bottom:348.479980pt;}
.y194{bottom:348.799988pt;}
.y1da{bottom:349.280029pt;}
.y2d9{bottom:350.080017pt;}
.y5f{bottom:351.520020pt;}
.y1ff{bottom:352.640015pt;}
.y201{bottom:352.799988pt;}
.y2a{bottom:354.719971pt;}
.y10a{bottom:354.880005pt;}
.y200{bottom:355.520020pt;}
.y202{bottom:355.679993pt;}
.y1bc{bottom:357.440002pt;}
.y286{bottom:357.599976pt;}
.y22c{bottom:358.400024pt;}
.y74{bottom:358.554047pt;}
.y283{bottom:358.559998pt;}
.y78{bottom:360.159973pt;}
.y76{bottom:360.320007pt;}
.y1fe{bottom:360.799988pt;}
.yd9{bottom:361.919983pt;}
.y1d9{bottom:363.039978pt;}
.y73{bottom:363.520020pt;}
.y79{bottom:363.679993pt;}
.y261{bottom:364.000000pt;}
.y193{bottom:364.159973pt;}
.y285{bottom:365.119995pt;}
.y2d8{bottom:365.440002pt;}
.y5e{bottom:366.719971pt;}
.y29{bottom:370.080017pt;}
.y109{bottom:370.239990pt;}
.y280{bottom:371.039978pt;}
.y1fd{bottom:371.520020pt;}
.y1bb{bottom:372.799988pt;}
.y22b{bottom:373.760010pt;}
.y1d8{bottom:374.239990pt;}
.y284{bottom:375.200012pt;}
.y2a8{bottom:375.359985pt;}
.y281{bottom:375.840027pt;}
.yd8{bottom:377.280029pt;}
.y121{bottom:377.919983pt;}
.y192{bottom:379.520020pt;}
.y2d7{bottom:380.799988pt;}
.y72{bottom:381.440002pt;}
.y5d{bottom:382.080017pt;}
.y28{bottom:385.440002pt;}
.y108{bottom:385.599976pt;}
.y1fa{bottom:386.239990pt;}
.y1fc{bottom:386.400024pt;}
.y1ba{bottom:388.159973pt;}
.y1fb{bottom:389.119995pt;}
.y1f9{bottom:389.280029pt;}
.y2a7{bottom:390.719971pt;}
.yd7{bottom:392.640015pt;}
.y120{bottom:393.280029pt;}
.y191{bottom:394.880005pt;}
.y27f{bottom:395.039978pt;}
.y2d6{bottom:396.159973pt;}
.y71{bottom:396.799988pt;}
.y5c{bottom:397.440002pt;}
.y260{bottom:397.919983pt;}
.y27{bottom:400.799988pt;}
.y107{bottom:403.359985pt;}
.y1b9{bottom:403.520020pt;}
.y22a{bottom:404.320007pt;}
.y1f8{bottom:405.280029pt;}
.y2a6{bottom:406.080017pt;}
.y27e{bottom:406.239990pt;}
.yd6{bottom:408.000000pt;}
.y11f{bottom:408.640015pt;}
.y190{bottom:410.239990pt;}
.y2d5{bottom:411.520020pt;}
.y70{bottom:412.159973pt;}
.y5b{bottom:412.799988pt;}
.y25f{bottom:413.119995pt;}
.y26{bottom:416.159973pt;}
.y106{bottom:418.719971pt;}
.y1b8{bottom:418.880005pt;}
.y229{bottom:419.679993pt;}
.y1f7{bottom:420.479980pt;}
.y2a5{bottom:421.440002pt;}
.yd5{bottom:423.200012pt;}
.y11e{bottom:424.000000pt;}
.y18f{bottom:425.599976pt;}
.y2d4{bottom:426.719971pt;}
.y6f{bottom:427.520020pt;}
.y5a{bottom:428.159973pt;}
.y25e{bottom:428.479980pt;}
.y25{bottom:431.520020pt;}
.y105{bottom:433.919983pt;}
.y1b7{bottom:434.239990pt;}
.y228{bottom:435.039978pt;}
.y1f6{bottom:435.840027pt;}
.y2a4{bottom:436.799988pt;}
.yd4{bottom:438.559998pt;}
.y11d{bottom:439.359985pt;}
.y18e{bottom:440.799988pt;}
.y2d3{bottom:442.080017pt;}
.y6e{bottom:442.719971pt;}
.y59{bottom:443.520020pt;}
.y25d{bottom:443.840027pt;}
.y14a{bottom:444.960022pt;}
.y24{bottom:446.719971pt;}
.y104{bottom:449.119995pt;}
.y1b6{bottom:449.440002pt;}
.y227{bottom:450.400024pt;}
.y1f5{bottom:451.200012pt;}
.y103{bottom:451.679993pt;}
.y2a3{bottom:452.159973pt;}
.yd3{bottom:453.919983pt;}
.y11c{bottom:454.719971pt;}
.y18d{bottom:456.159973pt;}
.y2d2{bottom:457.440002pt;}
.y6d{bottom:458.080017pt;}
.y58{bottom:458.719971pt;}
.y25c{bottom:459.200012pt;}
.y149{bottom:460.320007pt;}
.y23{bottom:462.080017pt;}
.y226{bottom:465.760010pt;}
.y1f4{bottom:466.559998pt;}
.y102{bottom:467.039978pt;}
.y2a2{bottom:467.520020pt;}
.yd2{bottom:469.280029pt;}
.y11b{bottom:470.080017pt;}
.y18c{bottom:471.520020pt;}
.y2d1{bottom:472.799988pt;}
.y6c{bottom:473.440002pt;}
.y57{bottom:474.080017pt;}
.y25b{bottom:474.559998pt;}
.y148{bottom:475.679993pt;}
.y22{bottom:477.440002pt;}
.y225{bottom:480.960022pt;}
.y1f3{bottom:481.919983pt;}
.y2a1{bottom:482.719971pt;}
.y1b5{bottom:483.520020pt;}
.yd1{bottom:484.640015pt;}
.y11a{bottom:485.280029pt;}
.y18b{bottom:486.880005pt;}
.y2d0{bottom:488.159973pt;}
.y6b{bottom:488.799988pt;}
.y56{bottom:489.440002pt;}
.y25a{bottom:489.919983pt;}
.y147{bottom:491.039978pt;}
.y21{bottom:492.799988pt;}
.y224{bottom:496.320007pt;}
.y1f2{bottom:497.280029pt;}
.y2a0{bottom:498.080017pt;}
.y1b4{bottom:498.880005pt;}
.yd0{bottom:499.840027pt;}
.y119{bottom:500.640015pt;}
.y101{bottom:501.119995pt;}
.y2cf{bottom:503.520020pt;}
.y6a{bottom:504.159973pt;}
.y55{bottom:504.799988pt;}
.y259{bottom:505.119995pt;}
.y146{bottom:506.400024pt;}
.y20{bottom:508.159973pt;}
.y223{bottom:511.679993pt;}
.y1f1{bottom:512.479980pt;}
.y29f{bottom:513.440002pt;}
.y1b3{bottom:514.239990pt;}
.ycf{bottom:515.200012pt;}
.y118{bottom:516.000000pt;}
.y100{bottom:516.479980pt;}
.y2ce{bottom:518.719971pt;}
.y189{bottom:519.359985pt;}
.y69{bottom:519.520020pt;}
.y54{bottom:520.159973pt;}
.y258{bottom:520.479980pt;}
.y143{bottom:521.119995pt;}
.y144{bottom:521.599976pt;}
.y185{bottom:521.600024pt;}
.y188{bottom:522.880005pt;}
.y1f{bottom:523.520020pt;}
.y142{bottom:524.159973pt;}
.y187{bottom:526.080017pt;}
.y222{bottom:527.039978pt;}
.y1f0{bottom:527.840027pt;}
.y29e{bottom:528.799988pt;}
.y18a{bottom:529.440002pt;}
.yce{bottom:530.559998pt;}
.y117{bottom:531.359985pt;}
.yff{bottom:531.679993pt;}
.y2cd{bottom:534.080017pt;}
.y68{bottom:534.719971pt;}
.y53{bottom:535.520020pt;}
.y257{bottom:535.840027pt;}
.y140{bottom:536.799988pt;}
.y1e{bottom:538.719971pt;}
.y13f{bottom:539.520020pt;}
.y1d7{bottom:541.119995pt;}
.y221{bottom:542.400024pt;}
.y1ef{bottom:543.200012pt;}
.y184{bottom:543.840027pt;}
.y29d{bottom:544.160004pt;}
.y1b2{bottom:544.799988pt;}
.ycd{bottom:545.920013pt;}
.y116{bottom:546.720001pt;}
.yfe{bottom:547.040009pt;}
.y2cc{bottom:549.440002pt;}
.y52{bottom:550.720001pt;}
.y256{bottom:551.200012pt;}
.y1d{bottom:554.239990pt;}
.y13e{bottom:554.720001pt;}
.y1d6{bottom:556.480011pt;}
.y183{bottom:557.279999pt;}
.y220{bottom:557.760010pt;}
.y67{bottom:558.079987pt;}
.y1ee{bottom:558.559998pt;}
.y29c{bottom:559.519989pt;}
.y1b1{bottom:560.160004pt;}
.y182{bottom:560.320007pt;}
.ycc{bottom:561.279999pt;}
.y115{bottom:561.920013pt;}
.yfd{bottom:562.399994pt;}
.y2cb{bottom:564.799988pt;}
.y51{bottom:566.079987pt;}
.y255{bottom:566.559998pt;}
.y13d{bottom:570.079987pt;}
.y1d5{bottom:571.839996pt;}
.y21f{bottom:572.959991pt;}
.y1ed{bottom:573.920013pt;}
.y29b{bottom:574.720001pt;}
.y1b0{bottom:575.519989pt;}
.y181{bottom:575.679993pt;}
.ycb{bottom:576.640015pt;}
.y114{bottom:577.279999pt;}
.yfc{bottom:577.760010pt;}
.y2ca{bottom:580.160004pt;}
.y50{bottom:581.440002pt;}
.y254{bottom:581.920013pt;}
.y13c{bottom:585.440002pt;}
.y1d4{bottom:587.200012pt;}
.y1c{bottom:588.160004pt;}
.y21e{bottom:588.320007pt;}
.y1ec{bottom:588.959991pt;}
.y17f{bottom:589.279999pt;}
.y29a{bottom:590.079987pt;}
.y1af{bottom:590.880005pt;}
.yca{bottom:591.839996pt;}
.y180{bottom:592.160004pt;}
.y113{bottom:592.640015pt;}
.yfb{bottom:593.119995pt;}
.y2c9{bottom:595.359985pt;}
.y4f{bottom:596.799988pt;}
.y253{bottom:597.119995pt;}
.y13b{bottom:600.799988pt;}
.y1d3{bottom:602.559998pt;}
.y1eb{bottom:602.720001pt;}
.y1b{bottom:603.359985pt;}
.y21d{bottom:603.679993pt;}
.y299{bottom:605.440002pt;}
.y17e{bottom:605.760010pt;}
.y1ae{bottom:606.079987pt;}
.y17a{bottom:606.720001pt;}
.yc9{bottom:607.200012pt;}
.y112{bottom:608.000000pt;}
.yfa{bottom:608.320007pt;}
.y27d{bottom:608.799988pt;}
.y2c8{bottom:610.720001pt;}
.yf9{bottom:610.880005pt;}
.y4e{bottom:612.160004pt;}
.y252{bottom:612.480011pt;}
.y17d{bottom:613.279999pt;}
.y1ea{bottom:613.920013pt;}
.y13a{bottom:616.160004pt;}
.y1d2{bottom:617.760010pt;}
.y1a{bottom:618.720001pt;}
.y21c{bottom:619.040009pt;}
.y178{bottom:619.200012pt;}
.y298{bottom:620.799988pt;}
.y1ad{bottom:621.440002pt;}
.yc8{bottom:622.559998pt;}
.y17b{bottom:623.359985pt;}
.y179{bottom:624.000000pt;}
.y27c{bottom:624.160004pt;}
.y2c7{bottom:626.079987pt;}
.yf8{bottom:626.239990pt;}
.y4d{bottom:627.359985pt;}
.y251{bottom:627.839996pt;}
.y139{bottom:631.359985pt;}
.y1d1{bottom:631.519989pt;}
.y1cd{bottom:632.480011pt;}
.y21b{bottom:634.079987pt;}
.y297{bottom:636.160004pt;}
.y1ac{bottom:636.799988pt;}
.yc7{bottom:637.920013pt;}
.y19{bottom:638.720001pt;}
.y1d0{bottom:639.040009pt;}
.y27b{bottom:639.359985pt;}
.y2c6{bottom:641.440002pt;}
.yf7{bottom:641.600006pt;}
.y111{bottom:641.760010pt;}
.y4c{bottom:642.720001pt;}
.y250{bottom:643.200012pt;}
.y177{bottom:643.359985pt;}
.y1cb{bottom:644.959991pt;}
.y138{bottom:646.720001pt;}
.y21a{bottom:647.839996pt;}
.y1cf{bottom:649.119995pt;}
.y18{bottom:649.440002pt;}
.y1cc{bottom:649.760010pt;}
.y296{bottom:651.359985pt;}
.y1ab{bottom:652.160004pt;}
.yc6{bottom:653.279999pt;}
.y27a{bottom:654.720001pt;}
.y110{bottom:655.519989pt;}
.yf6{bottom:656.799988pt;}
.y4b{bottom:658.079987pt;}
.y24f{bottom:658.559998pt;}
.y176{bottom:658.720001pt;}
.y219{bottom:659.040009pt;}
.y137{bottom:662.079987pt;}
.y17{bottom:664.799988pt;}
.y10f{bottom:666.720001pt;}
.y1aa{bottom:667.519989pt;}
.yc5{bottom:668.640015pt;}
.y1ca{bottom:669.119995pt;}
.y279{bottom:670.079987pt;}
.yf5{bottom:672.160004pt;}
.y175{bottom:672.480011pt;}
.y4a{bottom:673.440002pt;}
.y24e{bottom:673.760010pt;}
.y174{bottom:675.200012pt;}
.y136{bottom:677.440002pt;}
.y16{bottom:680.160004pt;}
.y1a9{bottom:682.880005pt;}
.yc4{bottom:684.480011pt;}
.y278{bottom:685.440002pt;}
.y2c5{bottom:687.359985pt;}
.yf4{bottom:687.519989pt;}
.y49{bottom:688.799988pt;}
.y173{bottom:688.959991pt;}
.y24d{bottom:689.119995pt;}
.y172{bottom:691.679993pt;}
.y135{bottom:692.799988pt;}
.y1a8{bottom:698.079987pt;}
.y1c9{bottom:699.839996pt;}
.y15{bottom:700.000000pt;}
.y277{bottom:700.799988pt;}
.yc3{bottom:702.239990pt;}
.y2c4{bottom:702.720001pt;}
.yf3{bottom:702.880005pt;}
.y48{bottom:704.160004pt;}
.y24c{bottom:704.480011pt;}
.y171{bottom:705.119995pt;}
.y170{bottom:708.160004pt;}
.y14{bottom:710.720001pt;}
.y1a7{bottom:713.600006pt;}
.y1c8{bottom:715.200012pt;}
.y134{bottom:716.000000pt;}
.yc0{bottom:716.160004pt;}
.y24a{bottom:717.600006pt;}
.y2c3{bottom:718.079987pt;}
.ybb{bottom:718.396832pt;}
.y47{bottom:719.359985pt;}
.ybe{bottom:719.679993pt;}
.y24b{bottom:720.160004pt;}
.ybf{bottom:720.320007pt;}
.yba{bottom:722.720001pt;}
.ybd{bottom:722.880005pt;}
.y16f{bottom:723.359985pt;}
.yc2{bottom:726.239990pt;}
.y1c7{bottom:730.239990pt;}
.y13{bottom:730.720001pt;}
.y133{bottom:731.359985pt;}
.y249{bottom:732.160004pt;}
.y2c2{bottom:733.440002pt;}
.y46{bottom:734.720001pt;}
.yf2{bottom:736.799988pt;}
.yb9{bottom:740.640015pt;}
.y16e{bottom:740.799988pt;}
.y12{bottom:741.440002pt;}
.y169{bottom:742.239990pt;}
.y1c6{bottom:744.000000pt;}
.y247{bottom:746.559998pt;}
.y276{bottom:746.720001pt;}
.y1a6{bottom:747.200012pt;}
.y16d{bottom:748.480011pt;}
.y248{bottom:749.119995pt;}
.y45{bottom:750.079987pt;}
.y2c1{bottom:751.359985pt;}
.y165{bottom:751.679993pt;}
.yf1{bottom:752.160004pt;}
.y1c5{bottom:755.200012pt;}
.yb7{bottom:755.839996pt;}
.yb6{bottom:758.399994pt;}
.y168{bottom:759.359985pt;}
.y1a5{bottom:760.959991pt;}
.y11{bottom:761.440002pt;}
.y275{bottom:762.079987pt;}
.y246{bottom:763.679993pt;}
.y44{bottom:765.440002pt;}
.y163{bottom:766.720001pt;}
.yf0{bottom:767.519989pt;}
.y2c0{bottom:769.440002pt;}
.y160{bottom:772.000000pt;}
.y10{bottom:772.160004pt;}
.yb3{bottom:773.440002pt;}
.yaf{bottom:773.756727pt;}
.y243{bottom:775.519989pt;}
.yb1{bottom:775.679993pt;}
.y16c{bottom:776.320007pt;}
.y167{bottom:777.440002pt;}
.y244{bottom:778.399994pt;}
.yae{bottom:778.880005pt;}
.y43{bottom:780.799988pt;}
.yb5{bottom:782.559998pt;}
.yef{bottom:782.880005pt;}
.y16b{bottom:783.839996pt;}
.y2bf{bottom:787.359985pt;}
.y164{bottom:789.760010pt;}
.yf{bottom:792.000000pt;}
.y274{bottom:792.799988pt;}
.y16a{bottom:793.920013pt;}
.y242{bottom:794.079987pt;}
.y166{bottom:794.559998pt;}
.y42{bottom:796.160004pt;}
.yad{bottom:797.760010pt;}
.yee{bottom:797.920013pt;}
.y161{bottom:803.039993pt;}
.y2be{bottom:805.440002pt;}
.ye{bottom:806.720001pt;}
.y23f{bottom:807.199997pt;}
.y273{bottom:808.160004pt;}
.y240{bottom:808.960007pt;}
.y41{bottom:811.360001pt;}
.yed{bottom:811.679993pt;}
.y23e{bottom:812.000000pt;}
.y9b{bottom:814.399994pt;}
.y15f{bottom:816.160004pt;}
.yab{bottom:816.320007pt;}
.y91{bottom:817.759995pt;}
.y2bd{bottom:820.800003pt;}
.yec{bottom:822.880005pt;}
.y295{bottom:823.360001pt;}
.y40{bottom:826.720001pt;}
.yaa{bottom:827.199997pt;}
.yd{bottom:830.720001pt;}
.y15e{bottom:831.360001pt;}
.y9a{bottom:834.720001pt;}
.y2bc{bottom:836.160004pt;}
.ya1{bottom:838.080002pt;}
.y294{bottom:838.720001pt;}
.ya9{bottom:839.839996pt;}
.y3f{bottom:842.080002pt;}
.y99{bottom:843.199997pt;}
.y15d{bottom:845.119995pt;}
.ya0{bottom:845.440002pt;}
.y15b{bottom:846.080002pt;}
.y90{bottom:848.639999pt;}
.y2bb{bottom:851.360001pt;}
.ya8{bottom:852.479996pt;}
.y15c{bottom:852.639999pt;}
.y98{bottom:853.919998pt;}
.y293{bottom:854.080002pt;}
.yc{bottom:854.240005pt;}
.y3e{bottom:857.440002pt;}
.y158{bottom:858.559998pt;}
.y97{bottom:862.720001pt;}
.y159{bottom:863.360001pt;}
.yac{bottom:864.960007pt;}
.ya2{bottom:867.360001pt;}
.y8e{bottom:867.520004pt;}
.y292{bottom:869.440002pt;}
.y3d{bottom:872.800003pt;}
.y96{bottom:874.240005pt;}
.ya7{bottom:875.039993pt;}
.y9f{bottom:877.759995pt;}
.ya6{bottom:877.919998pt;}
.yb{bottom:878.880005pt;}
.y157{bottom:882.720001pt;}
.y94{bottom:882.880005pt;}
.y291{bottom:884.800003pt;}
.y9d{bottom:884.960007pt;}
.y3c{bottom:888.160004pt;}
.ya5{bottom:890.559998pt;}
.y93{bottom:893.440002pt;}
.y156{bottom:896.479996pt;}
.y9c{bottom:896.960007pt;}
.y153{bottom:897.440002pt;}
.ya4{bottom:903.199997pt;}
.ya{bottom:903.360001pt;}
.y155{bottom:904.000000pt;}
.y151{bottom:909.919998pt;}
.y92{bottom:913.440002pt;}
.y154{bottom:914.080002pt;}
.y152{bottom:914.720001pt;}
.ya3{bottom:915.839996pt;}
.y8f{bottom:916.960007pt;}
.y3b{bottom:918.720001pt;}
.y6{bottom:948.639999pt;}
.y5{bottom:959.519997pt;}
.y4{bottom:970.080002pt;}
.y3{bottom:982.559998pt;}
.y2{bottom:995.520750pt;}
.y1{bottom:996.320000pt;}
.h6a{height:7.839996pt;}
.h4b{height:7.840012pt;}
.h66{height:8.160035pt;}
.h25{height:8.799988pt;}
.h26{height:8.800003pt;}
.h1a{height:8.800049pt;}
.h54{height:11.679993pt;}
.h52{height:11.680024pt;}
.h42{height:12.000000pt;}
.h44{height:12.320007pt;}
.h63{height:13.279968pt;}
.h61{height:13.279969pt;}
.h6f{height:13.279998pt;}
.h70{height:13.279999pt;}
.h64{height:13.280029pt;}
.h5d{height:13.280030pt;}
.h6d{height:13.440003pt;}
.h5a{height:13.599975pt;}
.h5b{height:13.599976pt;}
.h47{height:13.599991pt;}
.h46{height:13.599999pt;}
.h4a{height:13.600006pt;}
.h4f{height:13.600007pt;}
.h65{height:13.600036pt;}
.h71{height:13.600037pt;}
.h21{height:13.760010pt;}
.h68{height:14.080017pt;}
.h2f{height:14.239991pt;}
.h50{height:14.559983pt;}
.h3f{height:14.559997pt;}
.h3d{height:14.559998pt;}
.h55{height:14.560028pt;}
.h58{height:14.719970pt;}
.h39{height:14.720001pt;}
.h36{height:14.720002pt;}
.h59{height:14.720032pt;}
.h1f{height:14.880005pt;}
.h18{height:15.039978pt;}
.h28{height:15.039993pt;}
.h29{height:15.039994pt;}
.h2e{height:15.040008pt;}
.h11{height:15.520020pt;}
.h62{height:18.979815pt;}
.h57{height:19.354771pt;}
.h31{height:19.358649pt;}
.h4c{height:19.384209pt;}
.hf{height:20.009097pt;}
.h6b{height:21.013129pt;}
.h16{height:21.119693pt;}
.h2d{height:21.120771pt;}
.h34{height:21.481990pt;}
.h67{height:21.556573pt;}
.h24{height:23.339753pt;}
.h1b{height:23.411780pt;}
.ha{height:24.085557pt;}
.h40{height:29.883928pt;}
.h5{height:31.767850pt;}
.h3a{height:32.481566pt;}
.h5e{height:32.731639pt;}
.h4d{height:33.429043pt;}
.h56{height:33.452225pt;}
.h6e{height:33.803122pt;}
.h33{height:34.002998pt;}
.h3{height:35.373208pt;}
.h43{height:35.425938pt;}
.h1e{height:35.506011pt;}
.h5f{height:35.661464pt;}
.h22{height:36.215966pt;}
.h6c{height:36.238106pt;}
.h4e{height:36.421293pt;}
.h3c{height:36.446550pt;}
.h1{height:37.020242pt;}
.h35{height:37.046623pt;}
.h23{height:37.054596pt;}
.h19{height:37.169107pt;}
.h69{height:37.175341pt;}
.h6{height:37.293196pt;}
.h41{height:37.374046pt;}
.hc{height:37.408566pt;}
.h2{height:37.479369pt;}
.h12{height:37.781326pt;}
.he{height:38.599427pt;}
.h4{height:39.447842pt;}
.h5c{height:39.459795pt;}
.hd{height:40.333942pt;}
.h27{height:40.371371pt;}
.h1c{height:40.496132pt;}
.h20{height:41.305866pt;}
.hb{height:42.645497pt;}
.h9{height:42.898203pt;}
.h60{height:43.420922pt;}
.h51{height:44.346080pt;}
.h49{height:44.376832pt;}
.h8{height:44.602873pt;}
.h3b{height:45.070735pt;}
.h38{height:45.107474pt;}
.h53{height:45.587259pt;}
.h30{height:45.890341pt;}
.h3e{height:46.756123pt;}
.h48{height:46.900616pt;}
.h2c{height:47.260230pt;}
.h37{height:47.672810pt;}
.h45{height:48.094149pt;}
.h2b{height:49.155642pt;}
.h1d{height:49.307550pt;}
.h15{height:50.119703pt;}
.h2a{height:51.951204pt;}
.h14{height:52.970093pt;}
.h13{height:55.243231pt;}
.h32{height:59.159689pt;}
.h7{height:59.321818pt;}
.h17{height:67.000217pt;}
.h10{height:68.103816pt;}
.h0{height:1056.000000pt;}
.w2e{width:3.515751pt;}
.w5{width:3.519250pt;}
.wf{width:3.520075pt;}
.w2{width:3.521396pt;}
.w12{width:3.521502pt;}
.w11{width:3.838506pt;}
.w13{width:3.844258pt;}
.w4{width:4.158764pt;}
.w1{width:4.163449pt;}
.we{width:4.163575pt;}
.w3b{width:5.760010pt;}
.w3e{width:6.080017pt;}
.w21{width:6.239990pt;}
.w19{width:8.639984pt;}
.wa{width:9.119995pt;}
.w2d{width:9.440002pt;}
.w25{width:9.440003pt;}
.w1a{width:10.399963pt;}
.w26{width:10.399994pt;}
.w10{width:10.400024pt;}
.w17{width:10.559998pt;}
.w18{width:10.560058pt;}
.w27{width:11.199997pt;}
.w28{width:11.519989pt;}
.w9{width:12.320007pt;}
.w3f{width:14.559997pt;}
.w48{width:16.480011pt;}
.w1b{width:16.639984pt;}
.w34{width:16.799988pt;}
.w32{width:16.800003pt;}
.w29{width:16.800018pt;}
.w1e{width:17.119995pt;}
.w38{width:17.119996pt;}
.w1c{width:17.279998pt;}
.w2a{width:17.440002pt;}
.w1f{width:17.759980pt;}
.w3c{width:18.400024pt;}
.w43{width:20.960022pt;}
.w3{width:23.039978pt;}
.w1d{width:24.639984pt;}
.w2c{width:24.639991pt;}
.w49{width:24.640014pt;}
.w4a{width:24.640015pt;}
.w2b{width:24.959991pt;}
.w20{width:25.119995pt;}
.w3d{width:26.239990pt;}
.w3a{width:26.559998pt;}
.w46{width:27.039978pt;}
.w36{width:30.400025pt;}
.w39{width:30.880005pt;}
.w6{width:44.480011pt;}
.w7{width:50.880005pt;}
.w41{width:51.520020pt;}
.w35{width:58.720032pt;}
.wc{width:59.039978pt;}
.wb{width:59.199982pt;}
.w40{width:64.160034pt;}
.wd{width:65.599976pt;}
.w33{width:66.399964pt;}
.w37{width:66.880005pt;}
.w42{width:77.440033pt;}
.w44{width:83.999970pt;}
.w8{width:84.160004pt;}
.w47{width:84.639984pt;}
.w45{width:89.920014pt;}
.w14{width:98.879990pt;}
.w2f{width:98.880005pt;}
.w16{width:172.959992pt;}
.w31{width:172.960007pt;}
.w22{width:178.399994pt;}
.w23{width:179.039994pt;}
.w15{width:182.719986pt;}
.w30{width:182.720001pt;}
.w24{width:186.399994pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:119.839996pt;}
.x71{left:122.400002pt;}
.x7a{left:123.360001pt;}
.xe{left:124.320000pt;}
.x7d{left:125.440002pt;}
.x91{left:127.360001pt;}
.x56{left:129.600006pt;}
.x7b{left:133.279999pt;}
.x8{left:137.279999pt;}
.x90{left:138.880005pt;}
.xf{left:140.479996pt;}
.x7c{left:143.039993pt;}
.x93{left:144.000000pt;}
.x72{left:147.039993pt;}
.x9{left:151.679993pt;}
.x39{left:152.800003pt;}
.x79{left:154.240005pt;}
.x13{left:155.360001pt;}
.xd{left:156.320007pt;}
.x80{left:159.039993pt;}
.x32{left:161.440002pt;}
.x3c{left:162.559998pt;}
.x10{left:166.880005pt;}
.x18{left:168.000000pt;}
.x69{left:169.119995pt;}
.x3b{left:170.880005pt;}
.x4b{left:173.119995pt;}
.x81{left:175.839996pt;}
.x6a{left:178.880005pt;}
.x3a{left:181.600006pt;}
.x7{left:184.800003pt;}
.x17{left:186.080002pt;}
.x36{left:190.080002pt;}
.x6c{left:191.199997pt;}
.x37{left:193.440002pt;}
.x35{left:194.559998pt;}
.x6b{left:195.679993pt;}
.x31{left:196.960007pt;}
.xb{left:199.039993pt;}
.xa{left:200.320007pt;}
.x68{left:203.839996pt;}
.x60{left:206.240005pt;}
.x75{left:211.682562pt;}
.x67{left:213.279999pt;}
.x2e{left:216.320007pt;}
.x2c{left:218.240005pt;}
.x1{left:219.199997pt;}
.x63{left:222.080002pt;}
.x78{left:225.279999pt;}
.x61{left:230.720001pt;}
.x2d{left:231.839996pt;}
.x92{left:234.720001pt;}
.x11{left:236.000000pt;}
.x46{left:241.762374pt;}
.x73{left:243.679993pt;}
.x4a{left:247.199997pt;}
.x12{left:249.759995pt;}
.x76{left:252.159769pt;}
.x74{left:253.119995pt;}
.x49{left:255.360001pt;}
.x65{left:258.559998pt;}
.x34{left:259.839996pt;}
.x38{left:261.279999pt;}
.xa2{left:262.399994pt;}
.x64{left:265.920013pt;}
.x30{left:266.880005pt;}
.xc{left:268.640015pt;}
.xa0{left:269.600006pt;}
.x62{left:270.720001pt;}
.x5f{left:278.720001pt;}
.x47{left:282.239581pt;}
.x66{left:283.679993pt;}
.x2f{left:286.559998pt;}
.x33{left:288.000000pt;}
.x77{left:293.760852pt;}
.x41{left:295.839996pt;}
.x43{left:298.720001pt;}
.x70{left:304.640015pt;}
.x6e{left:306.399994pt;}
.x42{left:307.679993pt;}
.x6f{left:312.799988pt;}
.x3d{left:317.435545pt;}
.x48{left:323.840665pt;}
.x40{left:329.119995pt;}
.x3f{left:335.519989pt;}
.x2{left:340.959991pt;}
.x14{left:350.399994pt;}
.x44{left:352.799988pt;}
.x3{left:355.040009pt;}
.x6d{left:357.279999pt;}
.x45{left:363.200012pt;}
.x55{left:365.600006pt;}
.x16{left:371.679993pt;}
.x3e{left:373.917288pt;}
.x6{left:394.559998pt;}
.xa1{left:396.160004pt;}
.x7f{left:398.239990pt;}
.x82{left:403.040009pt;}
.x9f{left:406.079987pt;}
.x15{left:408.000000pt;}
.x19{left:417.600006pt;}
.x26{left:420.480011pt;}
.x28{left:423.359985pt;}
.x94{left:426.720001pt;}
.x5d{left:427.679993pt;}
.x1a{left:431.040009pt;}
.x27{left:432.320007pt;}
.x4d{left:435.839996pt;}
.x22{left:442.078130pt;}
.x84{left:446.399994pt;}
.x59{left:452.640015pt;}
.x25{left:453.760010pt;}
.x24{left:460.160004pt;}
.x5a{left:461.279999pt;}
.x9b{left:462.720001pt;}
.x1b{left:465.600006pt;}
.x8a{left:469.440002pt;}
.x96{left:472.799988pt;}
.x54{left:479.679993pt;}
.x5e{left:488.959991pt;}
.x23{left:498.555062pt;}
.x4e{left:500.480011pt;}
.x20{left:504.320007pt;}
.x1f{left:512.799988pt;}
.x8b{left:516.640015pt;}
.x21{left:522.239990pt;}
.x97{left:536.799988pt;}
.x5b{left:537.760010pt;}
.x99{left:543.359985pt;}
.x9c{left:546.719971pt;}
.x4f{left:548.320007pt;}
.x85{left:549.280029pt;}
.x95{left:556.000000pt;}
.x52{left:557.119995pt;}
.x50{left:558.880005pt;}
.x1c{left:562.714784pt;}
.x1e{left:567.520020pt;}
.x87{left:571.520020pt;}
.x8f{left:573.760010pt;}
.x51{left:577.280029pt;}
.x1d{left:583.352684pt;}
.x8d{left:596.799988pt;}
.x86{left:598.880005pt;}
.x8c{left:609.440002pt;}
.x5c{left:613.280029pt;}
.x8e{left:615.200012pt;}
.x29{left:616.159973pt;}
.x88{left:617.919983pt;}
.x2a{left:619.359985pt;}
.x9d{left:622.400024pt;}
.x9a{left:625.440002pt;}
.x2b{left:628.479980pt;}
.x57{left:635.679993pt;}
.x58{left:646.080017pt;}
.x9e{left:649.440002pt;}
.x98{left:661.760010pt;}
.x89{left:676.640015pt;}
.x7e{left:693.760010pt;}
.x4{left:696.000000pt;}
.x4c{left:704.159973pt;}
.x83{left:705.119995pt;}
.x53{left:711.840027pt;}
}




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