
    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_b7256f232b98fef7e12d516a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_6a74b6006dae8a4319c8f49f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_25217ad38358b914abfc731f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_624fab442afc4bb017b4b8f9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e37c7cb31456f2c14d61c2b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_962dc5c0512a0b5b8b2f98fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_9cd69921db42c1d7ed12ac6e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_13c35ae08a695cd7301ee5f2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_822f85273a4a8a31104fdb74.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_bec22e858696fcca6fdd9a33.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fda0a579ae2b6af2e0135df3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104004;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.249426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls20{letter-spacing:-1.512000px;}
.ls11{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-0.792000px;}
.ls5{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.513600px;}
.ls21{letter-spacing:-0.341400px;}
.ls3{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.072000px;}
.ls2{letter-spacing:-0.018721px;}
.ls1{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.287301px;}
.ls6{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.298800px;}
.lse{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.361440px;}
.ls1a{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.792000px;}
.lsc{letter-spacing:1.584000px;}
.ls1e{letter-spacing:6.480000px;}
.lsd{letter-spacing:15.120000px;}
.lsa{letter-spacing:21.029760px;}
.lsb{letter-spacing:21.197280px;}
.ls22{letter-spacing:21.221280px;}
.ls16{letter-spacing:26.784000px;}
.ls1b{letter-spacing:33.984000px;}
.ls8{letter-spacing:62.765760px;}
.ls15{letter-spacing:64.224000px;}
.ls9{letter-spacing:75.029760px;}
.ls1f{letter-spacing:170.640000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-23.923024px;}
.ws8{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.060000px;}
.ws11{word-spacing:-20.718600px;}
.wsa{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.208000px;}
.ws10{word-spacing:-16.488000px;}
.ws12{word-spacing:-15.238800px;}
.wsf{word-spacing:-14.970240px;}
.wsd{word-spacing:-14.426400px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-16.212000px;}
._1c{margin-left:-14.532000px;}
._1d{margin-left:-12.588000px;}
._1e{margin-left:-10.500000px;}
._19{margin-left:-8.556000px;}
._1b{margin-left:-6.540000px;}
._5f{margin-left:-5.405990px;}
._1a{margin-left:-3.924000px;}
._e{margin-left:-2.396349px;}
._1{margin-left:-1.152084px;}
._0{width:1.142003px;}
._b{width:2.169997px;}
._c{width:3.240000px;}
._d{width:4.310087px;}
._2{width:5.808000px;}
._3{width:7.560000px;}
._4{width:9.009997px;}
._a{width:10.122010px;}
._7{width:11.232000px;}
._8{width:12.240000px;}
._10{width:14.160000px;}
._12{width:15.190081px;}
._f{width:16.200000px;}
._24{width:19.812084px;}
._11{width:20.880000px;}
._9{width:22.584000px;}
._5{width:23.976000px;}
._6{width:25.065997px;}
._22{width:26.382010px;}
._25{width:27.504000px;}
._26{width:28.800000px;}
._27{width:29.952000px;}
._28{width:31.546081px;}
._29{width:32.821919px;}
._23{width:34.392000px;}
._6b{width:35.650081px;}
._2f{width:36.696000px;}
._2d{width:37.800000px;}
._61{width:38.832084px;}
._1f{width:40.104000px;}
._20{width:41.328000px;}
._42{width:42.849997px;}
._3e{width:43.920000px;}
._4d{width:45.585997px;}
._21{width:46.596000px;}
._4a{width:48.168084px;}
._13{width:49.320000px;}
._14{width:50.328000px;}
._3a{width:52.416000px;}
._3b{width:53.568000px;}
._43{width:55.440000px;}
._46{width:57.024000px;}
._57{width:59.040000px;}
._55{width:61.056000px;}
._56{width:62.208000px;}
._4c{width:63.576084px;}
._47{width:67.392000px;}
._48{width:69.336000px;}
._60{width:70.606081px;}
._65{width:71.928000px;}
._49{width:73.656000px;}
._6d{width:74.700000px;}
._5d{width:77.904000px;}
._36{width:82.368000px;}
._44{width:83.880000px;}
._53{width:86.040000px;}
._64{width:87.480000px;}
._62{width:91.296000px;}
._63{width:92.736000px;}
._39{width:93.816000px;}
._52{width:95.832000px;}
._54{width:99.236349px;}
._2b{width:100.440000px;}
._15{width:104.040000px;}
._16{width:105.058081px;}
._6a{width:107.280000px;}
._2e{width:108.534346px;}
._38{width:119.880000px;}
._37{width:121.320084px;}
._51{width:123.263916px;}
._5c{width:125.352000px;}
._4b{width:132.552000px;}
._5e{width:135.072000px;}
._6e{width:140.508000px;}
._2a{width:141.552000px;}
._59{width:147.960000px;}
._5a{width:149.328000px;}
._4e{width:150.336000px;}
._40{width:167.328084px;}
._31{width:181.867357px;}
._67{width:185.328000px;}
._3c{width:187.992000px;}
._5b{width:191.520000px;}
._68{width:192.888000px;}
._58{width:194.184000px;}
._35{width:200.376084px;}
._41{width:202.968000px;}
._69{width:205.920000px;}
._4f{width:222.624000px;}
._33{width:224.784000px;}
._3d{width:244.224000px;}
._45{width:278.640000px;}
._66{width:289.152000px;}
._50{width:323.208000px;}
._34{width:346.608000px;}
._2c{width:361.368000px;}
._30{width:409.464000px;}
._3f{width:414.720000px;}
._17{width:843.096000px;}
._6c{width:846.180000px;}
._32{width:964.260000px;}
.fc2{color:transparent;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:48.240000px;}
.fs4{font-size:48.243518px;}
.fs9{font-size:59.760000px;}
.fs5{font-size:59.764358px;}
.fsa{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:72.005251px;}
.fs7{font-size:84.240000px;}
.fs6{font-size:84.246143px;}
.fsb{font-size:84.384000px;}
.fs2{font-size:95.766983px;}
.fs1{font-size:108.007876px;}
.fs0{font-size:131.769609px;}
.y0{bottom:0.000000px;}
.y192{bottom:4.125000px;}
.y46{bottom:4.140000px;}
.y193{bottom:4.485000px;}
.y48{bottom:4.500000px;}
.y1c9{bottom:4.530000px;}
.y16{bottom:5.040368px;}
.y1eb{bottom:14.400000px;}
.yf9{bottom:14.565000px;}
.y104{bottom:14.580000px;}
.y161{bottom:14.610000px;}
.y17a{bottom:14.745000px;}
.yf2{bottom:14.760000px;}
.y14d{bottom:14.790000px;}
.y195{bottom:24.825000px;}
.y4a{bottom:24.840000px;}
.y19d{bottom:24.870000px;}
.y196{bottom:25.185000px;}
.y4b{bottom:25.200000px;}
.y19e{bottom:25.230000px;}
.y140{bottom:30.165000px;}
.y1a{bottom:44.142219px;}
.y198{bottom:45.525000px;}
.y1f2{bottom:45.540000px;}
.y1fe{bottom:45.570000px;}
.yf8{bottom:45.705000px;}
.yf1{bottom:45.720000px;}
.y103{bottom:45.750000px;}
.y153{bottom:45.765000px;}
.y199{bottom:45.885000px;}
.y18d{bottom:45.900000px;}
.y1c8{bottom:45.930000px;}
.y1c{bottom:46.800000px;}
.y1{bottom:46.890000px;}
.y13f{bottom:53.250000px;}
.y77{bottom:57.420000px;}
.y1f7{bottom:57.450000px;}
.y1f9{bottom:57.810000px;}
.y1f1{bottom:66.240000px;}
.y18c{bottom:66.600000px;}
.y102{bottom:66.630000px;}
.y19{bottom:71.144188px;}
.y13e{bottom:76.290000px;}
.yf7{bottom:76.665000px;}
.y160{bottom:76.710000px;}
.y152{bottom:76.725000px;}
.yf0{bottom:76.860000px;}
.y14c{bottom:76.890000px;}
.y76{bottom:78.120000px;}
.y1f6{bottom:78.150000px;}
.y1f8{bottom:78.510000px;}
.y1f0{bottom:86.940000px;}
.y101{bottom:87.330000px;}
.y18{bottom:99.406249px;}
.y13d{bottom:105.555000px;}
.yee{bottom:107.460000px;}
.y1ef{bottom:107.640000px;}
.y15f{bottom:107.670000px;}
.yef{bottom:107.820000px;}
.yf6{bottom:107.850000px;}
.y151{bottom:107.865000px;}
.y100{bottom:108.030000px;}
.y75{bottom:110.700000px;}
.y96{bottom:112.140000px;}
.y3b{bottom:113.760000px;}
.y1b{bottom:115.844447px;}
.y123{bottom:118.440000px;}
.yfa{bottom:121.860000px;}
.y1bf{bottom:123.660000px;}
.y282{bottom:124.920000px;}
.y25b{bottom:125.100000px;}
.y17{bottom:126.408218px;}
.y43{bottom:128.160000px;}
.y1ee{bottom:128.340000px;}
.y13c{bottom:128.595000px;}
.yff{bottom:128.730000px;}
.y14e{bottom:131.040000px;}
.y162{bottom:132.300000px;}
.yc3{bottom:132.660000px;}
.y164{bottom:133.020000px;}
.yf4{bottom:138.450000px;}
.ye2{bottom:138.780000px;}
.yf5{bottom:138.810000px;}
.y150{bottom:138.825000px;}
.y170{bottom:138.960000px;}
.y14b{bottom:138.990000px;}
.y1b7{bottom:140.760000px;}
.yb6{bottom:141.660000px;}
.y74{bottom:142.020000px;}
.y95{bottom:143.100000px;}
.y21c{bottom:144.540000px;}
.y25a{bottom:145.980000px;}
.y1d1{bottom:149.220000px;}
.yfe{bottom:149.250000px;}
.y122{bottom:149.400000px;}
.y13b{bottom:151.635000px;}
.y19c{bottom:152.100000px;}
.y42{bottom:152.280000px;}
.y1e6{bottom:153.180000px;}
.y1be{bottom:154.620000px;}
.y3a{bottom:156.420000px;}
.y1fd{bottom:159.840000px;}
.y235{bottom:163.470000px;}
.yc2{bottom:163.650000px;}
.y154{bottom:164.160000px;}
.y259{bottom:166.710000px;}
.yfb{bottom:169.410000px;}
.yfc{bottom:169.770000px;}
.y15e{bottom:169.815000px;}
.yfd{bottom:169.950000px;}
.y1b6{bottom:171.750000px;}
.yb5{bottom:172.650000px;}
.y73{bottom:173.370000px;}
.y15{bottom:173.535235px;}
.y94{bottom:174.090000px;}
.y21b{bottom:175.710000px;}
.y41{bottom:176.430000px;}
.y1d0{bottom:180.210000px;}
.y121{bottom:180.570000px;}
.ye1{bottom:180.930000px;}
.y284{bottom:181.290000px;}
.y13a{bottom:192.420000px;}
.y1e5{bottom:193.170000px;}
.y19b{bottom:193.545000px;}
.y234{bottom:194.430000px;}
.yc1{bottom:194.790000px;}
.y281{bottom:198.570000px;}
.y283{bottom:198.750000px;}
.y39{bottom:199.290000px;}
.y40{bottom:200.550000px;}
.y177{bottom:200.940000px;}
.y15d{bottom:200.955000px;}
.y16f{bottom:201.090000px;}
.y14a{bottom:201.120000px;}
.y258{bottom:202.170000px;}
.y1b5{bottom:202.710000px;}
.yb4{bottom:203.790000px;}
.y72{bottom:204.690000px;}
.y93{bottom:205.230000px;}
.y21a{bottom:206.670000px;}
.y1cf{bottom:211.350000px;}
.y120{bottom:211.530000px;}
.y135{bottom:212.430000px;}
.y139{bottom:215.460000px;}
.y1fc{bottom:221.985000px;}
.y257{bottom:223.050000px;}
.ye0{bottom:223.950000px;}
.y1e4{bottom:224.310000px;}
.y3f{bottom:224.850000px;}
.y233{bottom:225.570000px;}
.yc0{bottom:225.750000px;}
.y136{bottom:226.260000px;}
.y280{bottom:230.250000px;}
.y15c{bottom:231.915000px;}
.y16e{bottom:232.050000px;}
.y149{bottom:232.080000px;}
.y166{bottom:232.095000px;}
.y1b4{bottom:233.850000px;}
.yb3{bottom:234.750000px;}
.y71{bottom:236.010000px;}
.y92{bottom:236.190000px;}
.y134{bottom:236.370000px;}
.y219{bottom:237.810000px;}
.y38{bottom:241.950000px;}
.y1ce{bottom:242.310000px;}
.y11f{bottom:242.670000px;}
.y256{bottom:243.750000px;}
.y3e{bottom:248.970000px;}
.ydf{bottom:255.090000px;}
.y19a{bottom:255.645000px;}
.y232{bottom:256.530000px;}
.yc5{bottom:256.710000px;}
.y176{bottom:263.040000px;}
.y15b{bottom:263.055000px;}
.y16d{bottom:263.190000px;}
.y148{bottom:263.220000px;}
.y172{bottom:263.235000px;}
.y1fb{bottom:263.385000px;}
.y1e3{bottom:264.270000px;}
.y1b3{bottom:264.810000px;}
.yb2{bottom:265.710000px;}
.y70{bottom:267.330000px;}
.y138{bottom:267.810000px;}
.y218{bottom:268.770000px;}
.y3d{bottom:273.090000px;}
.y1cd{bottom:273.450000px;}
.y37{bottom:276.150000px;}
.y255{bottom:279.210000px;}
.y278{bottom:281.730000px;}
.y11e{bottom:282.630000px;}
.yde{bottom:286.050000px;}
.y179{bottom:287.505000px;}
.y231{bottom:287.670000px;}
.y1bd{bottom:287.850000px;}
.y137{bottom:290.850000px;}
.y15a{bottom:294.015000px;}
.y16c{bottom:294.150000px;}
.y147{bottom:294.180000px;}
.y165{bottom:294.195000px;}
.y1b2{bottom:295.950000px;}
.yb1{bottom:296.850000px;}
.y197{bottom:297.045000px;}
.y91{bottom:298.290000px;}
.y6f{bottom:298.650000px;}
.y254{bottom:300.090000px;}
.y1e2{bottom:304.410000px;}
.y36{bottom:307.110000px;}
.y217{bottom:308.730000px;}
.yf3{bottom:308.925000px;}
.y277{bottom:313.230000px;}
.y1cc{bottom:313.410000px;}
.ydd{bottom:317.190000px;}
.y143{bottom:318.105000px;}
.y1bc{bottom:318.810000px;}
.y174{bottom:319.365000px;}
.y253{bottom:320.790000px;}
.y11d{bottom:322.770000px;}
.y175{bottom:325.140000px;}
.y159{bottom:325.155000px;}
.y146{bottom:325.320000px;}
.y16b{bottom:325.335000px;}
.y1fa{bottom:325.485000px;}
.y230{bottom:327.630000px;}
.yb0{bottom:327.810000px;}
.y90{bottom:329.430000px;}
.y6e{bottom:329.970000px;}
.y14{bottom:333.159294px;}
.y1e1{bottom:335.370000px;}
.y1b1{bottom:335.910000px;}
.y3c{bottom:338.250000px;}
.y216{bottom:339.870000px;}
.y1cb{bottom:346.170000px;}
.y35{bottom:347.250000px;}
.y1bb{bottom:349.950000px;}
.y168{bottom:350.355000px;}
.y11c{bottom:353.730000px;}
.y158{bottom:356.145000px;}
.y16a{bottom:356.295000px;}
.y145{bottom:356.325000px;}
.y252{bottom:356.430000px;}
.ydc{bottom:357.150000px;}
.y22f{bottom:358.770000px;}
.yaf{bottom:358.950000px;}
.y194{bottom:359.145000px;}
.y6d{bottom:361.290000px;}
.y8f{bottom:369.390000px;}
.y215{bottom:370.830000px;}
.y13{bottom:374.952342px;}
.y1e0{bottom:375.510000px;}
.y1b0{bottom:376.050000px;}
.y251{bottom:377.310000px;}
.y34{bottom:378.210000px;}
.y11b{bottom:384.690000px;}
.y1ca{bottom:385.050000px;}
.y157{bottom:387.285000px;}
.y169{bottom:387.435000px;}
.y144{bottom:387.465000px;}
.y1f5{bottom:387.585000px;}
.ydb{bottom:388.290000px;}
.y22e{bottom:389.730000px;}
.yae{bottom:389.910000px;}
.y6c{bottom:392.430000px;}
.y250{bottom:398.010000px;}
.y8e{bottom:400.530000px;}
.y191{bottom:400.545000px;}
.y1c7{bottom:402.885000px;}
.y276{bottom:404.850000px;}
.y1df{bottom:406.470000px;}
.y33{bottom:409.395000px;}
.y214{bottom:411.015000px;}
.y171{bottom:412.455000px;}
.y12{bottom:414.015190px;}
.y11a{bottom:415.875000px;}
.y1af{bottom:416.055000px;}
.y156{bottom:418.245000px;}
.yda{bottom:419.295000px;}
.y22d{bottom:420.915000px;}
.yad{bottom:421.095000px;}
.y190{bottom:422.895000px;}
.y6b{bottom:423.795000px;}
.y221{bottom:430.095000px;}
.y8d{bottom:431.535000px;}
.y24f{bottom:433.515000px;}
.y32{bottom:440.355000px;}
.y275{bottom:440.535000px;}
.y213{bottom:441.975000px;}
.y1de{bottom:446.655000px;}
.y119{bottom:446.835000px;}
.y11{bottom:447.317619px;}
.y155{bottom:449.385000px;}
.yd9{bottom:450.435000px;}
.y22c{bottom:451.875000px;}
.yac{bottom:452.055000px;}
.y24e{bottom:454.395000px;}
.y6a{bottom:455.115000px;}
.y1ae{bottom:456.195000px;}
.ybf{bottom:461.055000px;}
.y274{bottom:461.415000px;}
.y8c{bottom:462.675000px;}
.y18f{bottom:463.575000px;}
.y27b{bottom:463.755000px;}
.yed{bottom:464.835000px;}
.y31{bottom:471.495000px;}
.y212{bottom:473.115000px;}
.y178{bottom:474.555000px;}
.y24d{bottom:475.095000px;}
.y163{bottom:475.455000px;}
.y27a{bottom:481.215000px;}
.yd8{bottom:481.395000px;}
.y273{bottom:482.115000px;}
.y1ed{bottom:482.295000px;}
.y22b{bottom:483.015000px;}
.y1ba{bottom:483.195000px;}
.y1c6{bottom:485.715000px;}
.y69{bottom:486.435000px;}
.y1dd{bottom:486.615000px;}
.y118{bottom:486.975000px;}
.y10{bottom:489.080664px;}
.yab{bottom:492.195000px;}
.y8b{bottom:493.635000px;}
.y1ad{bottom:496.155000px;}
.y18e{bottom:501.015000px;}
.y30{bottom:502.455000px;}
.y272{bottom:502.815000px;}
.y211{bottom:504.075000px;}
.y24c{bottom:510.555000px;}
.yd7{bottom:512.535000px;}
.y279{bottom:512.715000px;}
.y22a{bottom:513.975000px;}
.y1b9{bottom:514.155000px;}
.y68{bottom:517.755000px;}
.y18b{bottom:521.535000px;}
.yaa{bottom:523.155000px;}
.y1f4{bottom:523.695000px;}
.y8a{bottom:524.775000px;}
.y117{bottom:526.935000px;}
.y1ac{bottom:527.295000px;}
.yf{bottom:527.423460px;}
.y27f{bottom:528.735000px;}
.y24b{bottom:531.435000px;}
.y2f{bottom:533.595000px;}
.y210{bottom:535.215000px;}
.y271{bottom:538.275000px;}
.yd6{bottom:543.495000px;}
.y27e{bottom:546.015000px;}
.y229{bottom:547.635000px;}
.y1c5{bottom:547.815000px;}
.y1dc{bottom:548.715000px;}
.y67{bottom:549.075000px;}
.y24a{bottom:552.135000px;}
.ya9{bottom:554.295000px;}
.y89{bottom:555.735000px;}
.ye{bottom:556.630590px;}
.y116{bottom:558.075000px;}
.y1ab{bottom:558.255000px;}
.y270{bottom:559.155000px;}
.y27d{bottom:563.295000px;}
.y20f{bottom:566.175000px;}
.y133{bottom:570.675000px;}
.y249{bottom:572.835000px;}
.y2e{bottom:573.555000px;}
.y26f{bottom:579.855000px;}
.y66{bottom:580.395000px;}
.yd5{bottom:583.635000px;}
.ybe{bottom:585.255000px;}
.y1f3{bottom:585.795000px;}
.y88{bottom:586.875000px;}
.y1db{bottom:588.855000px;}
.y115{bottom:589.035000px;}
.y1c4{bottom:589.215000px;}
.y228{bottom:590.835000px;}
.yd{bottom:592.273189px;}
.y248{bottom:593.535000px;}
.ya8{bottom:594.255000px;}
.y27c{bottom:594.795000px;}
.y20e{bottom:597.315000px;}
.y1aa{bottom:598.395000px;}
.y132{bottom:601.635000px;}
.y2d{bottom:604.695000px;}
.y18a{bottom:605.775000px;}
.yec{bottom:608.475000px;}
.y65{bottom:611.715000px;}
.yd4{bottom:614.595000px;}
.y26e{bottom:615.495000px;}
.ybd{bottom:616.395000px;}
.y87{bottom:617.835000px;}
.y1da{bottom:619.815000px;}
.y114{bottom:620.175000px;}
.y227{bottom:621.795000px;}
.yc{bottom:621.975355px;}
.ya7{bottom:625.395000px;}
.y1ec{bottom:627.195000px;}
.y20d{bottom:628.275000px;}
.y247{bottom:628.995000px;}
.y1a9{bottom:629.355000px;}
.y1c3{bottom:630.615000px;}
.y14f{bottom:630.645000px;}
.y131{bottom:632.775000px;}
.y2c{bottom:635.655000px;}
.y26d{bottom:636.375000px;}
.yeb{bottom:636.735000px;}
.y64{bottom:643.035000px;}
.yd3{bottom:645.735000px;}
.y189{bottom:646.635000px;}
.yc4{bottom:647.355000px;}
.y246{bottom:649.875000px;}
.y1d9{bottom:650.955000px;}
.y113{bottom:651.135000px;}
.y226{bottom:652.965000px;}
.ya6{bottom:656.385000px;}
.y86{bottom:658.005000px;}
.y1a8{bottom:660.525000px;}
.y173{bottom:661.650000px;}
.y130{bottom:663.765000px;}
.yb{bottom:664.998492px;}
.yea{bottom:667.725000px;}
.y20c{bottom:668.445000px;}
.y1ea{bottom:670.065000px;}
.y245{bottom:670.605000px;}
.y26c{bottom:671.865000px;}
.y1c2{bottom:673.485000px;}
.y63{bottom:674.385000px;}
.y188{bottom:674.925000px;}
.y2b{bottom:675.825000px;}
.yd2{bottom:676.725000px;}
.y21d{bottom:678.525000px;}
.y112{bottom:682.305000px;}
.y225{bottom:683.925000px;}
.ya5{bottom:687.525000px;}
.y85{bottom:688.965000px;}
.y1d8{bottom:690.945000px;}
.y244{bottom:691.305000px;}
.y1a7{bottom:691.485000px;}
.y26b{bottom:692.745000px;}
.y220{bottom:696.525000px;}
.y20b{bottom:699.405000px;}
.y12f{bottom:703.725000px;}
.y62{bottom:705.705000px;}
.y187{bottom:706.065000px;}
.y2a{bottom:706.785000px;}
.ye9{bottom:707.865000px;}
.ya{bottom:710.541813px;}
.y26a{bottom:713.445000px;}
.y224{bottom:715.065000px;}
.yd1{bottom:716.865000px;}
.ya4{bottom:718.485000px;}
.y84{bottom:720.105000px;}
.y1e9{bottom:721.185000px;}
.y1d7{bottom:722.085000px;}
.y111{bottom:722.265000px;}
.y142{bottom:722.670000px;}
.y243{bottom:726.945000px;}
.y21f{bottom:727.485000px;}
.y20a{bottom:730.545000px;}
.y1a6{bottom:731.625000px;}
.y269{bottom:734.145000px;}
.y12e{bottom:734.865000px;}
.y1c1{bottom:735.045000px;}
.y61{bottom:736.845000px;}
.y186{bottom:737.025000px;}
.y29{bottom:737.925000px;}
.y223{bottom:746.025000px;}
.yd0{bottom:747.825000px;}
.ya3{bottom:749.625000px;}
.y83{bottom:751.065000px;}
.y1c0{bottom:752.505000px;}
.y167{bottom:754.890000px;}
.y110{bottom:755.205000px;}
.y9{bottom:756.115136px;}
.y21e{bottom:758.625000px;}
.y209{bottom:761.505000px;}
.y1d6{bottom:762.045000px;}
.y12d{bottom:765.825000px;}
.y60{bottom:768.165000px;}
.y242{bottom:768.525000px;}
.y28{bottom:768.885000px;}
.y268{bottom:769.605000px;}
.y1a5{bottom:771.585000px;}
.y141{bottom:773.070000px;}
.y185{bottom:777.165000px;}
.ycf{bottom:778.785000px;}
.ye8{bottom:778.965000px;}
.ya2{bottom:780.585000px;}
.y82{bottom:782.205000px;}
.y1b8{bottom:789.585000px;}
.y267{bottom:790.485000px;}
.y208{bottom:792.645000px;}
.y1d5{bottom:793.185000px;}
.y10f{bottom:795.165000px;}
.y12c{bottom:796.965000px;}
.y5f{bottom:799.485000px;}
.y8{bottom:801.478444px;}
.y1a4{bottom:802.725000px;}
.y241{bottom:803.985000px;}
.y54{bottom:807.045000px;}
.y184{bottom:808.125000px;}
.y27{bottom:809.025000px;}
.yce{bottom:809.925000px;}
.y266{bottom:811.185000px;}
.ybc{bottom:811.725000px;}
.y81{bottom:813.165000px;}
.ya1{bottom:820.725000px;}
.y207{bottom:823.605000px;}
.y240{bottom:824.865000px;}
.y10e{bottom:826.305000px;}
.y12b{bottom:827.925000px;}
.y53{bottom:828.105000px;}
.y5e{bottom:830.805000px;}
.y265{bottom:831.885000px;}
.y1d4{bottom:833.145000px;}
.y1a3{bottom:833.685000px;}
.y183{bottom:839.265000px;}
.y26{bottom:839.985000px;}
.ycd{bottom:840.885000px;}
.ybb{bottom:842.685000px;}
.y80{bottom:844.305000px;}
.y7{bottom:847.021765px;}
.y52{bottom:848.805000px;}
.y222{bottom:849.885000px;}
.ye7{bottom:850.065000px;}
.ya0{bottom:851.685000px;}
.y206{bottom:854.745000px;}
.y10d{bottom:857.265000px;}
.y12a{bottom:859.065000px;}
.y23f{bottom:860.325000px;}
.y5d{bottom:862.125000px;}
.y1a2{bottom:864.825000px;}
.y264{bottom:867.525000px;}
.y51{bottom:869.505000px;}
.y182{bottom:870.225000px;}
.y25{bottom:871.125000px;}
.y1d3{bottom:873.285000px;}
.y1e8{bottom:873.825000px;}
.y7f{bottom:875.265000px;}
.ycc{bottom:881.025000px;}
.y23e{bottom:881.205000px;}
.y9f{bottom:882.825000px;}
.ye6{bottom:883.725000px;}
.y10c{bottom:888.405000px;}
.y50{bottom:890.205000px;}
.y6{bottom:892.565086px;}
.y5c{bottom:893.445000px;}
.y205{bottom:894.705000px;}
.y129{bottom:899.070000px;}
.y181{bottom:901.410000px;}
.y24{bottom:902.130000px;}
.y1d2{bottom:904.470000px;}
.y1a1{bottom:904.830000px;}
.y7e{bottom:906.450000px;}
.y263{bottom:909.150000px;}
.y4f{bottom:910.950000px;}
.ycb{bottom:912.030000px;}
.y9e{bottom:913.830000px;}
.y23d{bottom:916.890000px;}
.y10b{bottom:919.410000px;}
.y5b{bottom:924.810000px;}
.y204{bottom:925.890000px;}
.ye5{bottom:926.970000px;}
.y262{bottom:929.850000px;}
.y128{bottom:930.210000px;}
.y4e{bottom:931.650000px;}
.y180{bottom:932.370000px;}
.y23{bottom:933.270000px;}
.y1a0{bottom:935.970000px;}
.y7d{bottom:937.410000px;}
.y23c{bottom:937.770000px;}
.y5{bottom:938.138410px;}
.yca{bottom:943.170000px;}
.yba{bottom:944.970000px;}
.y4d{bottom:952.350000px;}
.y9d{bottom:953.970000px;}
.y5a{bottom:956.130000px;}
.y203{bottom:956.850000px;}
.ye4{bottom:957.930000px;}
.y23b{bottom:958.470000px;}
.y10a{bottom:959.370000px;}
.y127{bottom:961.170000px;}
.y17f{bottom:963.510000px;}
.y261{bottom:965.310000px;}
.y19f{bottom:966.930000px;}
.y4c{bottom:973.050000px;}
.y22{bottom:973.230000px;}
.yc9{bottom:974.130000px;}
.yb9{bottom:975.930000px;}
.y7c{bottom:977.550000px;}
.y4{bottom:983.681731px;}
.y9c{bottom:984.930000px;}
.y260{bottom:986.190000px;}
.y59{bottom:987.450000px;}
.y202{bottom:987.990000px;}
.y109{bottom:990.510000px;}
.y126{bottom:992.310000px;}
.y23a{bottom:993.930000px;}
.ye3{bottom:998.070000px;}
.y17e{bottom:1003.470000px;}
.y21{bottom:1004.370000px;}
.yc8{bottom:1005.270000px;}
.yb8{bottom:1007.070000px;}
.y7b{bottom:1008.510000px;}
.y49{bottom:1014.450000px;}
.y239{bottom:1014.810000px;}
.y9b{bottom:1016.070000px;}
.y58{bottom:1018.770000px;}
.y108{bottom:1021.470000px;}
.y201{bottom:1021.650000px;}
.y3{bottom:1029.045039px;}
.y125{bottom:1032.270000px;}
.y17d{bottom:1034.610000px;}
.y20{bottom:1035.330000px;}
.yc7{bottom:1036.230000px;}
.yb7{bottom:1038.030000px;}
.y7a{bottom:1039.650000px;}
.y25f{bottom:1042.530000px;}
.y9a{bottom:1047.030000px;}
.y57{bottom:1049.910000px;}
.y238{bottom:1050.270000px;}
.y200{bottom:1051.530000px;}
.y47{bottom:1055.850000px;}
.y107{bottom:1061.610000px;}
.y124{bottom:1066.110000px;}
.y1f{bottom:1066.290000px;}
.yc6{bottom:1069.170000px;}
.y79{bottom:1070.610000px;}
.y237{bottom:1071.150000px;}
.y17c{bottom:1074.570000px;}
.y2{bottom:1076.388491px;}
.y45{bottom:1077.990000px;}
.y99{bottom:1078.170000px;}
.y56{bottom:1081.230000px;}
.y236{bottom:1091.850000px;}
.y1e{bottom:1097.430000px;}
.y25e{bottom:1099.050000px;}
.y1e7{bottom:1100.130000px;}
.y78{bottom:1103.370000px;}
.y17b{bottom:1107.330000px;}
.y106{bottom:1107.690000px;}
.y98{bottom:1109.130000px;}
.y55{bottom:1112.550000px;}
.y1ff{bottom:1113.630000px;}
.y44{bottom:1118.670000px;}
.y25d{bottom:1119.750000px;}
.y105{bottom:1124.790000px;}
.y1d{bottom:1137.210000px;}
.y97{bottom:1140.270000px;}
.y25c{bottom:1140.450000px;}
.h10{height:20.685000px;}
.h14{height:20.700000px;}
.h34{height:20.721000px;}
.h13{height:20.722500px;}
.h22{height:30.945000px;}
.h27{height:30.958500px;}
.h1c{height:30.990000px;}
.h3c{height:31.140000px;}
.h12{height:41.385000px;}
.h38{height:41.398500px;}
.h39{height:41.400000px;}
.h3a{height:41.430000px;}
.h37{height:41.436000px;}
.hc{height:47.348375px;}
.h7{height:48.620420px;}
.hf{height:58.621992px;}
.h31{height:58.651172px;}
.h8{height:60.231267px;}
.h36{height:62.085000px;}
.h3f{height:62.136000px;}
.h35{height:63.949219px;}
.h24{height:64.546875px;}
.h15{height:70.628906px;}
.he{height:70.664062px;}
.h6{height:70.669216px;}
.h17{height:71.824219px;}
.h11{height:72.562500px;}
.h18{height:74.004654px;}
.h40{height:80.464922px;}
.h33{height:82.635820px;}
.ha{height:82.682982px;}
.h32{height:82.785000px;}
.h3b{height:82.821000px;}
.hd{height:84.898125px;}
.h1e{height:86.255508px;}
.h1f{height:86.402953px;}
.h16{height:87.695156px;}
.hb{height:93.990057px;}
.h3e{height:94.701000px;}
.h5{height:96.515163px;}
.h4{height:108.851688px;}
.h19{height:124.185000px;}
.h3{height:132.799059px;}
.h3d{height:144.885000px;}
.h1a{height:155.175000px;}
.h1b{height:186.150000px;}
.h30{height:186.315000px;}
.h25{height:186.330000px;}
.h2f{height:186.345000px;}
.h9{height:187.063641px;}
.h2b{height:217.333500px;}
.h2d{height:279.433500px;}
.h28{height:310.380000px;}
.h29{height:341.533500px;}
.h2e{height:341.550000px;}
.h2c{height:341.700000px;}
.h2a{height:403.800000px;}
.h23{height:403.830000px;}
.h1d{height:462.960000px;}
.h26{height:465.765000px;}
.h20{height:892.980000px;}
.h21{height:893.250000px;}
.h2{height:1196.853335px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:99.216000px;}
.w15{width:99.381000px;}
.w17{width:99.390000px;}
.w16{width:99.525000px;}
.w13{width:100.260000px;}
.wc{width:139.849500px;}
.wd{width:148.161000px;}
.w12{width:156.259500px;}
.we{width:190.650000px;}
.w4{width:201.540774px;}
.w7{width:215.299500px;}
.w9{width:215.340000px;}
.w8{width:215.490000px;}
.w1a{width:216.019500px;}
.w1c{width:216.060000px;}
.w1b{width:216.210000px;}
.w3{width:222.913136px;}
.w19{width:299.940000px;}
.w6{width:324.060000px;}
.w5{width:324.244500px;}
.w18{width:348.364500px;}
.wf{width:499.020000px;}
.w10{width:648.315000px;}
.w11{width:654.075000px;}
.w2{width:840.631269px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.wa{width:1262.880000px;}
.wb{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:4.440000px;}
.x18{left:8.089500px;}
.x11{left:9.877982px;}
.x43{left:12.420000px;}
.x46{left:13.860000px;}
.x44{left:16.365000px;}
.x41{left:17.460000px;}
.x42{left:19.980000px;}
.x40{left:24.120000px;}
.x25{left:27.540000px;}
.x47{left:29.340000px;}
.x13{left:31.609544px;}
.x3f{left:33.840000px;}
.x37{left:35.083500px;}
.x45{left:38.520000px;}
.x31{left:39.943500px;}
.x48{left:41.040000px;}
.x3a{left:45.540000px;}
.x12{left:49.569512px;}
.x23{left:62.100000px;}
.x33{left:63.720000px;}
.x14{left:74.713467px;}
.x20{left:77.070000px;}
.x8{left:98.779824px;}
.x24{left:100.603500px;}
.x1e{left:102.043500px;}
.x22{left:104.023500px;}
.xf{left:111.351802px;}
.x17{left:119.566500px;}
.x16{left:127.656000px;}
.x5{left:130.784487px;}
.x1a{left:144.216000px;}
.x30{left:146.926500px;}
.x1c{left:154.650000px;}
.x4b{left:163.650000px;}
.x4{left:170.829229px;}
.x7{left:173.343624px;}
.x1d{left:181.650000px;}
.x2{left:205.491967px;}
.x49{left:208.650000px;}
.xe{left:228.251135px;}
.x38{left:232.048500px;}
.x6{left:243.207900px;}
.x3{left:268.351855px;}
.x39{left:275.835000px;}
.xd{left:281.821831px;}
.x32{left:287.505000px;}
.x27{left:295.845000px;}
.x28{left:313.665000px;}
.x29{left:315.255000px;}
.xa{left:316.304970px;}
.x1f{left:335.955000px;}
.x2b{left:352.590000px;}
.xc{left:362.821287px;}
.x2a{left:367.275000px;}
.x2d{left:371.520000px;}
.x2e{left:372.600000px;}
.x3b{left:376.095000px;}
.x2c{left:385.530000px;}
.x9{left:392.859333px;}
.xb{left:436.142856px;}
.x19{left:443.820000px;}
.x10{left:451.179237px;}
.x4a{left:467.940000px;}
.x3c{left:475.320000px;}
.x21{left:552.180000px;}
.x3d{left:574.710000px;}
.x34{left:627.780000px;}
.x3e{left:674.250000px;}
.x26{left:692.430000px;}
.x4c{left:693.510000px;}
.x36{left:747.540000px;}
.x1b{left:756.540000px;}
.x4e{left:765.540000px;}
.x4d{left:810.000000px;}
.x15{left:846.900000px;}
.x35{left:1117.440000px;}
.x2f{left:1126.440000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls20{letter-spacing:-1.344000pt;}
.ls11{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-0.704000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.456533pt;}
.ls21{letter-spacing:-0.303467pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:-0.016641pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.255379pt;}
.ls6{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.321280pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.704000pt;}
.lsc{letter-spacing:1.408000pt;}
.ls1e{letter-spacing:5.760000pt;}
.lsd{letter-spacing:13.440000pt;}
.lsa{letter-spacing:18.693120pt;}
.lsb{letter-spacing:18.842027pt;}
.ls22{letter-spacing:18.863360pt;}
.ls16{letter-spacing:23.808000pt;}
.ls1b{letter-spacing:30.208000pt;}
.ls8{letter-spacing:55.791787pt;}
.ls15{letter-spacing:57.088000pt;}
.ls9{letter-spacing:66.693120pt;}
.ls1f{letter-spacing:151.680000pt;}
.ws0{word-spacing:-21.264911pt;}
.ws8{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws11{word-spacing:-18.416533pt;}
.wsa{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.296000pt;}
.ws10{word-spacing:-14.656000pt;}
.ws12{word-spacing:-13.545600pt;}
.wsf{word-spacing:-13.306880pt;}
.wsd{word-spacing:-12.823467pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-14.410667pt;}
._1c{margin-left:-12.917333pt;}
._1d{margin-left:-11.189333pt;}
._1e{margin-left:-9.333333pt;}
._19{margin-left:-7.605333pt;}
._1b{margin-left:-5.813333pt;}
._5f{margin-left:-4.805325pt;}
._1a{margin-left:-3.488000pt;}
._e{margin-left:-2.130088pt;}
._1{margin-left:-1.024075pt;}
._0{width:1.015114pt;}
._b{width:1.928886pt;}
._c{width:2.880000pt;}
._d{width:3.831189pt;}
._2{width:5.162667pt;}
._3{width:6.720000pt;}
._4{width:8.008886pt;}
._a{width:8.997342pt;}
._7{width:9.984000pt;}
._8{width:10.880000pt;}
._10{width:12.586667pt;}
._12{width:13.502294pt;}
._f{width:14.400000pt;}
._24{width:17.610741pt;}
._11{width:18.560000pt;}
._9{width:20.074667pt;}
._5{width:21.312000pt;}
._6{width:22.280886pt;}
._22{width:23.450675pt;}
._25{width:24.448000pt;}
._26{width:25.600000pt;}
._27{width:26.624000pt;}
._28{width:28.040961pt;}
._29{width:29.175039pt;}
._23{width:30.570667pt;}
._6b{width:31.688961pt;}
._2f{width:32.618667pt;}
._2d{width:33.600000pt;}
._61{width:34.517408pt;}
._1f{width:35.648000pt;}
._20{width:36.736000pt;}
._42{width:38.088886pt;}
._3e{width:39.040000pt;}
._4d{width:40.520886pt;}
._21{width:41.418667pt;}
._4a{width:42.816075pt;}
._13{width:43.840000pt;}
._14{width:44.736000pt;}
._3a{width:46.592000pt;}
._3b{width:47.616000pt;}
._43{width:49.280000pt;}
._46{width:50.688000pt;}
._57{width:52.480000pt;}
._55{width:54.272000pt;}
._56{width:55.296000pt;}
._4c{width:56.512075pt;}
._47{width:59.904000pt;}
._48{width:61.632000pt;}
._60{width:62.760961pt;}
._65{width:63.936000pt;}
._49{width:65.472000pt;}
._6d{width:66.400000pt;}
._5d{width:69.248000pt;}
._36{width:73.216000pt;}
._44{width:74.560000pt;}
._53{width:76.480000pt;}
._64{width:77.760000pt;}
._62{width:81.152000pt;}
._63{width:82.432000pt;}
._39{width:83.392000pt;}
._52{width:85.184000pt;}
._54{width:88.210088pt;}
._2b{width:89.280000pt;}
._15{width:92.480000pt;}
._16{width:93.384961pt;}
._6a{width:95.360000pt;}
._2e{width:96.474974pt;}
._38{width:106.560000pt;}
._37{width:107.840075pt;}
._51{width:109.567925pt;}
._5c{width:111.424000pt;}
._4b{width:117.824000pt;}
._5e{width:120.064000pt;}
._6e{width:124.896000pt;}
._2a{width:125.824000pt;}
._59{width:131.520000pt;}
._5a{width:132.736000pt;}
._4e{width:133.632000pt;}
._40{width:148.736075pt;}
._31{width:161.659873pt;}
._67{width:164.736000pt;}
._3c{width:167.104000pt;}
._5b{width:170.240000pt;}
._68{width:171.456000pt;}
._58{width:172.608000pt;}
._35{width:178.112075pt;}
._41{width:180.416000pt;}
._69{width:183.040000pt;}
._4f{width:197.888000pt;}
._33{width:199.808000pt;}
._3d{width:217.088000pt;}
._45{width:247.680000pt;}
._66{width:257.024000pt;}
._50{width:287.296000pt;}
._34{width:308.096000pt;}
._2c{width:321.216000pt;}
._30{width:363.968000pt;}
._3f{width:368.640000pt;}
._17{width:749.418667pt;}
._6c{width:752.160000pt;}
._32{width:857.120000pt;}
.fsc{font-size:42.880000pt;}
.fs4{font-size:42.883127pt;}
.fs9{font-size:53.120000pt;}
.fs5{font-size:53.123874pt;}
.fsa{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:64.004667pt;}
.fs7{font-size:74.880000pt;}
.fs6{font-size:74.885461pt;}
.fsb{font-size:75.008000pt;}
.fs2{font-size:85.126207pt;}
.fs1{font-size:96.007001pt;}
.fs0{font-size:117.128541pt;}
.y0{bottom:0.000000pt;}
.y192{bottom:3.666667pt;}
.y46{bottom:3.680000pt;}
.y193{bottom:3.986667pt;}
.y48{bottom:4.000000pt;}
.y1c9{bottom:4.026667pt;}
.y16{bottom:4.480327pt;}
.y1eb{bottom:12.800000pt;}
.yf9{bottom:12.946667pt;}
.y104{bottom:12.960000pt;}
.y161{bottom:12.986667pt;}
.y17a{bottom:13.106667pt;}
.yf2{bottom:13.120000pt;}
.y14d{bottom:13.146667pt;}
.y195{bottom:22.066667pt;}
.y4a{bottom:22.080000pt;}
.y19d{bottom:22.106667pt;}
.y196{bottom:22.386667pt;}
.y4b{bottom:22.400000pt;}
.y19e{bottom:22.426667pt;}
.y140{bottom:26.813333pt;}
.y1a{bottom:39.237528pt;}
.y198{bottom:40.466667pt;}
.y1f2{bottom:40.480000pt;}
.y1fe{bottom:40.506667pt;}
.yf8{bottom:40.626667pt;}
.yf1{bottom:40.640000pt;}
.y103{bottom:40.666667pt;}
.y153{bottom:40.680000pt;}
.y199{bottom:40.786667pt;}
.y18d{bottom:40.800000pt;}
.y1c8{bottom:40.826667pt;}
.y1c{bottom:41.600000pt;}
.y1{bottom:41.680000pt;}
.y13f{bottom:47.333333pt;}
.y77{bottom:51.040000pt;}
.y1f7{bottom:51.066667pt;}
.y1f9{bottom:51.386667pt;}
.y1f1{bottom:58.880000pt;}
.y18c{bottom:59.200000pt;}
.y102{bottom:59.226667pt;}
.y19{bottom:63.239278pt;}
.y13e{bottom:67.813333pt;}
.yf7{bottom:68.146667pt;}
.y160{bottom:68.186667pt;}
.y152{bottom:68.200000pt;}
.yf0{bottom:68.320000pt;}
.y14c{bottom:68.346667pt;}
.y76{bottom:69.440000pt;}
.y1f6{bottom:69.466667pt;}
.y1f8{bottom:69.786667pt;}
.y1f0{bottom:77.280000pt;}
.y101{bottom:77.626667pt;}
.y18{bottom:88.361110pt;}
.y13d{bottom:93.826667pt;}
.yee{bottom:95.520000pt;}
.y1ef{bottom:95.680000pt;}
.y15f{bottom:95.706667pt;}
.yef{bottom:95.840000pt;}
.yf6{bottom:95.866667pt;}
.y151{bottom:95.880000pt;}
.y100{bottom:96.026667pt;}
.y75{bottom:98.400000pt;}
.y96{bottom:99.680000pt;}
.y3b{bottom:101.120000pt;}
.y1b{bottom:102.972842pt;}
.y123{bottom:105.280000pt;}
.yfa{bottom:108.320000pt;}
.y1bf{bottom:109.920000pt;}
.y282{bottom:111.040000pt;}
.y25b{bottom:111.200000pt;}
.y17{bottom:112.362860pt;}
.y43{bottom:113.920000pt;}
.y1ee{bottom:114.080000pt;}
.y13c{bottom:114.306667pt;}
.yff{bottom:114.426667pt;}
.y14e{bottom:116.480000pt;}
.y162{bottom:117.600000pt;}
.yc3{bottom:117.920000pt;}
.y164{bottom:118.240000pt;}
.yf4{bottom:123.066667pt;}
.ye2{bottom:123.360000pt;}
.yf5{bottom:123.386667pt;}
.y150{bottom:123.400000pt;}
.y170{bottom:123.520000pt;}
.y14b{bottom:123.546667pt;}
.y1b7{bottom:125.120000pt;}
.yb6{bottom:125.920000pt;}
.y74{bottom:126.240000pt;}
.y95{bottom:127.200000pt;}
.y21c{bottom:128.480000pt;}
.y25a{bottom:129.760000pt;}
.y1d1{bottom:132.640000pt;}
.yfe{bottom:132.666667pt;}
.y122{bottom:132.800000pt;}
.y13b{bottom:134.786667pt;}
.y19c{bottom:135.200000pt;}
.y42{bottom:135.360000pt;}
.y1e6{bottom:136.160000pt;}
.y1be{bottom:137.440000pt;}
.y3a{bottom:139.040000pt;}
.y1fd{bottom:142.080000pt;}
.y235{bottom:145.306667pt;}
.yc2{bottom:145.466667pt;}
.y154{bottom:145.920000pt;}
.y259{bottom:148.186667pt;}
.yfb{bottom:150.586667pt;}
.yfc{bottom:150.906667pt;}
.y15e{bottom:150.946667pt;}
.yfd{bottom:151.066667pt;}
.y1b6{bottom:152.666667pt;}
.yb5{bottom:153.466667pt;}
.y73{bottom:154.106667pt;}
.y15{bottom:154.253542pt;}
.y94{bottom:154.746667pt;}
.y21b{bottom:156.186667pt;}
.y41{bottom:156.826667pt;}
.y1d0{bottom:160.186667pt;}
.y121{bottom:160.506667pt;}
.ye1{bottom:160.826667pt;}
.y284{bottom:161.146667pt;}
.y13a{bottom:171.040000pt;}
.y1e5{bottom:171.706667pt;}
.y19b{bottom:172.040000pt;}
.y234{bottom:172.826667pt;}
.yc1{bottom:173.146667pt;}
.y281{bottom:176.506667pt;}
.y283{bottom:176.666667pt;}
.y39{bottom:177.146667pt;}
.y40{bottom:178.266667pt;}
.y177{bottom:178.613333pt;}
.y15d{bottom:178.626667pt;}
.y16f{bottom:178.746667pt;}
.y14a{bottom:178.773333pt;}
.y258{bottom:179.706667pt;}
.y1b5{bottom:180.186667pt;}
.yb4{bottom:181.146667pt;}
.y72{bottom:181.946667pt;}
.y93{bottom:182.426667pt;}
.y21a{bottom:183.706667pt;}
.y1cf{bottom:187.866667pt;}
.y120{bottom:188.026667pt;}
.y135{bottom:188.826667pt;}
.y139{bottom:191.520000pt;}
.y1fc{bottom:197.320000pt;}
.y257{bottom:198.266667pt;}
.ye0{bottom:199.066667pt;}
.y1e4{bottom:199.386667pt;}
.y3f{bottom:199.866667pt;}
.y233{bottom:200.506667pt;}
.yc0{bottom:200.666667pt;}
.y136{bottom:201.120000pt;}
.y280{bottom:204.666667pt;}
.y15c{bottom:206.146667pt;}
.y16e{bottom:206.266667pt;}
.y149{bottom:206.293333pt;}
.y166{bottom:206.306667pt;}
.y1b4{bottom:207.866667pt;}
.yb3{bottom:208.666667pt;}
.y71{bottom:209.786667pt;}
.y92{bottom:209.946667pt;}
.y134{bottom:210.106667pt;}
.y219{bottom:211.386667pt;}
.y38{bottom:215.066667pt;}
.y1ce{bottom:215.386667pt;}
.y11f{bottom:215.706667pt;}
.y256{bottom:216.666667pt;}
.y3e{bottom:221.306667pt;}
.ydf{bottom:226.746667pt;}
.y19a{bottom:227.240000pt;}
.y232{bottom:228.026667pt;}
.yc5{bottom:228.186667pt;}
.y176{bottom:233.813333pt;}
.y15b{bottom:233.826667pt;}
.y16d{bottom:233.946667pt;}
.y148{bottom:233.973333pt;}
.y172{bottom:233.986667pt;}
.y1fb{bottom:234.120000pt;}
.y1e3{bottom:234.906667pt;}
.y1b3{bottom:235.386667pt;}
.yb2{bottom:236.186667pt;}
.y70{bottom:237.626667pt;}
.y138{bottom:238.053333pt;}
.y218{bottom:238.906667pt;}
.y3d{bottom:242.746667pt;}
.y1cd{bottom:243.066667pt;}
.y37{bottom:245.466667pt;}
.y255{bottom:248.186667pt;}
.y278{bottom:250.426667pt;}
.y11e{bottom:251.226667pt;}
.yde{bottom:254.266667pt;}
.y179{bottom:255.560000pt;}
.y231{bottom:255.706667pt;}
.y1bd{bottom:255.866667pt;}
.y137{bottom:258.533333pt;}
.y15a{bottom:261.346667pt;}
.y16c{bottom:261.466667pt;}
.y147{bottom:261.493333pt;}
.y165{bottom:261.506667pt;}
.y1b2{bottom:263.066667pt;}
.yb1{bottom:263.866667pt;}
.y197{bottom:264.040000pt;}
.y91{bottom:265.146667pt;}
.y6f{bottom:265.466667pt;}
.y254{bottom:266.746667pt;}
.y1e2{bottom:270.586667pt;}
.y36{bottom:272.986667pt;}
.y217{bottom:274.426667pt;}
.yf3{bottom:274.600000pt;}
.y277{bottom:278.426667pt;}
.y1cc{bottom:278.586667pt;}
.ydd{bottom:281.946667pt;}
.y143{bottom:282.760000pt;}
.y1bc{bottom:283.386667pt;}
.y174{bottom:283.880000pt;}
.y253{bottom:285.146667pt;}
.y11d{bottom:286.906667pt;}
.y175{bottom:289.013333pt;}
.y159{bottom:289.026667pt;}
.y146{bottom:289.173333pt;}
.y16b{bottom:289.186667pt;}
.y1fa{bottom:289.320000pt;}
.y230{bottom:291.226667pt;}
.yb0{bottom:291.386667pt;}
.y90{bottom:292.826667pt;}
.y6e{bottom:293.306667pt;}
.y14{bottom:296.141595pt;}
.y1e1{bottom:298.106667pt;}
.y1b1{bottom:298.586667pt;}
.y3c{bottom:300.666667pt;}
.y216{bottom:302.106667pt;}
.y1cb{bottom:307.706667pt;}
.y35{bottom:308.666667pt;}
.y1bb{bottom:311.066667pt;}
.y168{bottom:311.426667pt;}
.y11c{bottom:314.426667pt;}
.y158{bottom:316.573333pt;}
.y16a{bottom:316.706667pt;}
.y145{bottom:316.733333pt;}
.y252{bottom:316.826667pt;}
.ydc{bottom:317.466667pt;}
.y22f{bottom:318.906667pt;}
.yaf{bottom:319.066667pt;}
.y194{bottom:319.240000pt;}
.y6d{bottom:321.146667pt;}
.y8f{bottom:328.346667pt;}
.y215{bottom:329.626667pt;}
.y13{bottom:333.290970pt;}
.y1e0{bottom:333.786667pt;}
.y1b0{bottom:334.266667pt;}
.y251{bottom:335.386667pt;}
.y34{bottom:336.186667pt;}
.y11b{bottom:341.946667pt;}
.y1ca{bottom:342.266667pt;}
.y157{bottom:344.253333pt;}
.y169{bottom:344.386667pt;}
.y144{bottom:344.413333pt;}
.y1f5{bottom:344.520000pt;}
.ydb{bottom:345.146667pt;}
.y22e{bottom:346.426667pt;}
.yae{bottom:346.586667pt;}
.y6c{bottom:348.826667pt;}
.y250{bottom:353.786667pt;}
.y8e{bottom:356.026667pt;}
.y191{bottom:356.040000pt;}
.y1c7{bottom:358.120000pt;}
.y276{bottom:359.866667pt;}
.y1df{bottom:361.306667pt;}
.y33{bottom:363.906667pt;}
.y214{bottom:365.346667pt;}
.y171{bottom:366.626667pt;}
.y12{bottom:368.013502pt;}
.y11a{bottom:369.666667pt;}
.y1af{bottom:369.826667pt;}
.y156{bottom:371.773333pt;}
.yda{bottom:372.706667pt;}
.y22d{bottom:374.146667pt;}
.yad{bottom:374.306667pt;}
.y190{bottom:375.906667pt;}
.y6b{bottom:376.706667pt;}
.y221{bottom:382.306667pt;}
.y8d{bottom:383.586667pt;}
.y24f{bottom:385.346667pt;}
.y32{bottom:391.426667pt;}
.y275{bottom:391.586667pt;}
.y213{bottom:392.866667pt;}
.y1de{bottom:397.026667pt;}
.y119{bottom:397.186667pt;}
.y11{bottom:397.615661pt;}
.y155{bottom:399.453333pt;}
.yd9{bottom:400.386667pt;}
.y22c{bottom:401.666667pt;}
.yac{bottom:401.826667pt;}
.y24e{bottom:403.906667pt;}
.y6a{bottom:404.546667pt;}
.y1ae{bottom:405.506667pt;}
.ybf{bottom:409.826667pt;}
.y274{bottom:410.146667pt;}
.y8c{bottom:411.266667pt;}
.y18f{bottom:412.066667pt;}
.y27b{bottom:412.226667pt;}
.yed{bottom:413.186667pt;}
.y31{bottom:419.106667pt;}
.y212{bottom:420.546667pt;}
.y178{bottom:421.826667pt;}
.y24d{bottom:422.306667pt;}
.y163{bottom:422.626667pt;}
.y27a{bottom:427.746667pt;}
.yd8{bottom:427.906667pt;}
.y273{bottom:428.546667pt;}
.y1ed{bottom:428.706667pt;}
.y22b{bottom:429.346667pt;}
.y1ba{bottom:429.506667pt;}
.y1c6{bottom:431.746667pt;}
.y69{bottom:432.386667pt;}
.y1dd{bottom:432.546667pt;}
.y118{bottom:432.866667pt;}
.y10{bottom:434.738368pt;}
.yab{bottom:437.506667pt;}
.y8b{bottom:438.786667pt;}
.y1ad{bottom:441.026667pt;}
.y18e{bottom:445.346667pt;}
.y30{bottom:446.626667pt;}
.y272{bottom:446.946667pt;}
.y211{bottom:448.066667pt;}
.y24c{bottom:453.826667pt;}
.yd7{bottom:455.586667pt;}
.y279{bottom:455.746667pt;}
.y22a{bottom:456.866667pt;}
.y1b9{bottom:457.026667pt;}
.y68{bottom:460.226667pt;}
.y18b{bottom:463.586667pt;}
.yaa{bottom:465.026667pt;}
.y1f4{bottom:465.506667pt;}
.y8a{bottom:466.466667pt;}
.y117{bottom:468.386667pt;}
.y1ac{bottom:468.706667pt;}
.yf{bottom:468.820853pt;}
.y27f{bottom:469.986667pt;}
.y24b{bottom:472.386667pt;}
.y2f{bottom:474.306667pt;}
.y210{bottom:475.746667pt;}
.y271{bottom:478.466667pt;}
.yd6{bottom:483.106667pt;}
.y27e{bottom:485.346667pt;}
.y229{bottom:486.786667pt;}
.y1c5{bottom:486.946667pt;}
.y1dc{bottom:487.746667pt;}
.y67{bottom:488.066667pt;}
.y24a{bottom:490.786667pt;}
.ya9{bottom:492.706667pt;}
.y89{bottom:493.986667pt;}
.ye{bottom:494.782747pt;}
.y116{bottom:496.066667pt;}
.y1ab{bottom:496.226667pt;}
.y270{bottom:497.026667pt;}
.y27d{bottom:500.706667pt;}
.y20f{bottom:503.266667pt;}
.y133{bottom:507.266667pt;}
.y249{bottom:509.186667pt;}
.y2e{bottom:509.826667pt;}
.y26f{bottom:515.426667pt;}
.y66{bottom:515.906667pt;}
.yd5{bottom:518.786667pt;}
.ybe{bottom:520.226667pt;}
.y1f3{bottom:520.706667pt;}
.y88{bottom:521.666667pt;}
.y1db{bottom:523.426667pt;}
.y115{bottom:523.586667pt;}
.y1c4{bottom:523.746667pt;}
.y228{bottom:525.186667pt;}
.yd{bottom:526.465057pt;}
.y248{bottom:527.586667pt;}
.ya8{bottom:528.226667pt;}
.y27c{bottom:528.706667pt;}
.y20e{bottom:530.946667pt;}
.y1aa{bottom:531.906667pt;}
.y132{bottom:534.786667pt;}
.y2d{bottom:537.506667pt;}
.y18a{bottom:538.466667pt;}
.yec{bottom:540.866667pt;}
.y65{bottom:543.746667pt;}
.yd4{bottom:546.306667pt;}
.y26e{bottom:547.106667pt;}
.ybd{bottom:547.906667pt;}
.y87{bottom:549.186667pt;}
.y1da{bottom:550.946667pt;}
.y114{bottom:551.266667pt;}
.y227{bottom:552.706667pt;}
.yc{bottom:552.866982pt;}
.ya7{bottom:555.906667pt;}
.y1ec{bottom:557.506667pt;}
.y20d{bottom:558.466667pt;}
.y247{bottom:559.106667pt;}
.y1a9{bottom:559.426667pt;}
.y1c3{bottom:560.546667pt;}
.y14f{bottom:560.573333pt;}
.y131{bottom:562.466667pt;}
.y2c{bottom:565.026667pt;}
.y26d{bottom:565.666667pt;}
.yeb{bottom:565.986667pt;}
.y64{bottom:571.586667pt;}
.yd3{bottom:573.986667pt;}
.y189{bottom:574.786667pt;}
.yc4{bottom:575.426667pt;}
.y246{bottom:577.666667pt;}
.y1d9{bottom:578.626667pt;}
.y113{bottom:578.786667pt;}
.y226{bottom:580.413333pt;}
.ya6{bottom:583.453333pt;}
.y86{bottom:584.893333pt;}
.y1a8{bottom:587.133333pt;}
.y173{bottom:588.133333pt;}
.y130{bottom:590.013333pt;}
.yb{bottom:591.109771pt;}
.yea{bottom:593.533333pt;}
.y20c{bottom:594.173333pt;}
.y1ea{bottom:595.613333pt;}
.y245{bottom:596.093333pt;}
.y26c{bottom:597.213333pt;}
.y1c2{bottom:598.653333pt;}
.y63{bottom:599.453333pt;}
.y188{bottom:599.933333pt;}
.y2b{bottom:600.733333pt;}
.yd2{bottom:601.533333pt;}
.y21d{bottom:603.133333pt;}
.y112{bottom:606.493333pt;}
.y225{bottom:607.933333pt;}
.ya5{bottom:611.133333pt;}
.y85{bottom:612.413333pt;}
.y1d8{bottom:614.173333pt;}
.y244{bottom:614.493333pt;}
.y1a7{bottom:614.653333pt;}
.y26b{bottom:615.773333pt;}
.y220{bottom:619.133333pt;}
.y20b{bottom:621.693333pt;}
.y12f{bottom:625.533333pt;}
.y62{bottom:627.293333pt;}
.y187{bottom:627.613333pt;}
.y2a{bottom:628.253333pt;}
.ye9{bottom:629.213333pt;}
.ya{bottom:631.592723pt;}
.y26a{bottom:634.173333pt;}
.y224{bottom:635.613333pt;}
.yd1{bottom:637.213333pt;}
.ya4{bottom:638.653333pt;}
.y84{bottom:640.093333pt;}
.y1e9{bottom:641.053333pt;}
.y1d7{bottom:641.853333pt;}
.y111{bottom:642.013333pt;}
.y142{bottom:642.373333pt;}
.y243{bottom:646.173333pt;}
.y21f{bottom:646.653333pt;}
.y20a{bottom:649.373333pt;}
.y1a6{bottom:650.333333pt;}
.y269{bottom:652.573333pt;}
.y12e{bottom:653.213333pt;}
.y1c1{bottom:653.373333pt;}
.y61{bottom:654.973333pt;}
.y186{bottom:655.133333pt;}
.y29{bottom:655.933333pt;}
.y223{bottom:663.133333pt;}
.yd0{bottom:664.733333pt;}
.ya3{bottom:666.333333pt;}
.y83{bottom:667.613333pt;}
.y1c0{bottom:668.893333pt;}
.y167{bottom:671.013333pt;}
.y110{bottom:671.293333pt;}
.y9{bottom:672.102343pt;}
.y21e{bottom:674.333333pt;}
.y209{bottom:676.893333pt;}
.y1d6{bottom:677.373333pt;}
.y12d{bottom:680.733333pt;}
.y60{bottom:682.813333pt;}
.y242{bottom:683.133333pt;}
.y28{bottom:683.453333pt;}
.y268{bottom:684.093333pt;}
.y1a5{bottom:685.853333pt;}
.y141{bottom:687.173333pt;}
.y185{bottom:690.813333pt;}
.ycf{bottom:692.253333pt;}
.ye8{bottom:692.413333pt;}
.ya2{bottom:693.853333pt;}
.y82{bottom:695.293333pt;}
.y1b8{bottom:701.853333pt;}
.y267{bottom:702.653333pt;}
.y208{bottom:704.573333pt;}
.y1d5{bottom:705.053333pt;}
.y10f{bottom:706.813333pt;}
.y12c{bottom:708.413333pt;}
.y5f{bottom:710.653333pt;}
.y8{bottom:712.425284pt;}
.y1a4{bottom:713.533333pt;}
.y241{bottom:714.653333pt;}
.y54{bottom:717.373333pt;}
.y184{bottom:718.333333pt;}
.y27{bottom:719.133333pt;}
.yce{bottom:719.933333pt;}
.y266{bottom:721.053333pt;}
.ybc{bottom:721.533333pt;}
.y81{bottom:722.813333pt;}
.ya1{bottom:729.533333pt;}
.y207{bottom:732.093333pt;}
.y240{bottom:733.213333pt;}
.y10e{bottom:734.493333pt;}
.y12b{bottom:735.933333pt;}
.y53{bottom:736.093333pt;}
.y5e{bottom:738.493333pt;}
.y265{bottom:739.453333pt;}
.y1d4{bottom:740.573333pt;}
.y1a3{bottom:741.053333pt;}
.y183{bottom:746.013333pt;}
.y26{bottom:746.653333pt;}
.ycd{bottom:747.453333pt;}
.ybb{bottom:749.053333pt;}
.y80{bottom:750.493333pt;}
.y7{bottom:752.908236pt;}
.y52{bottom:754.493333pt;}
.y222{bottom:755.453333pt;}
.ye7{bottom:755.613333pt;}
.ya0{bottom:757.053333pt;}
.y206{bottom:759.773333pt;}
.y10d{bottom:762.013333pt;}
.y12a{bottom:763.613333pt;}
.y23f{bottom:764.733333pt;}
.y5d{bottom:766.333333pt;}
.y1a2{bottom:768.733333pt;}
.y264{bottom:771.133333pt;}
.y51{bottom:772.893333pt;}
.y182{bottom:773.533333pt;}
.y25{bottom:774.333333pt;}
.y1d3{bottom:776.253333pt;}
.y1e8{bottom:776.733333pt;}
.y7f{bottom:778.013333pt;}
.ycc{bottom:783.133333pt;}
.y23e{bottom:783.293333pt;}
.y9f{bottom:784.733333pt;}
.ye6{bottom:785.533333pt;}
.y10c{bottom:789.693333pt;}
.y50{bottom:791.293333pt;}
.y6{bottom:793.391188pt;}
.y5c{bottom:794.173333pt;}
.y205{bottom:795.293333pt;}
.y129{bottom:799.173333pt;}
.y181{bottom:801.253333pt;}
.y24{bottom:801.893333pt;}
.y1d2{bottom:803.973333pt;}
.y1a1{bottom:804.293333pt;}
.y7e{bottom:805.733333pt;}
.y263{bottom:808.133333pt;}
.y4f{bottom:809.733333pt;}
.ycb{bottom:810.693333pt;}
.y9e{bottom:812.293333pt;}
.y23d{bottom:815.013333pt;}
.y10b{bottom:817.253333pt;}
.y5b{bottom:822.053333pt;}
.y204{bottom:823.013333pt;}
.ye5{bottom:823.973333pt;}
.y262{bottom:826.533333pt;}
.y128{bottom:826.853333pt;}
.y4e{bottom:828.133333pt;}
.y180{bottom:828.773333pt;}
.y23{bottom:829.573333pt;}
.y1a0{bottom:831.973333pt;}
.y7d{bottom:833.253333pt;}
.y23c{bottom:833.573333pt;}
.y5{bottom:833.900809pt;}
.yca{bottom:838.373333pt;}
.yba{bottom:839.973333pt;}
.y4d{bottom:846.533333pt;}
.y9d{bottom:847.973333pt;}
.y5a{bottom:849.893333pt;}
.y203{bottom:850.533333pt;}
.ye4{bottom:851.493333pt;}
.y23b{bottom:851.973333pt;}
.y10a{bottom:852.773333pt;}
.y127{bottom:854.373333pt;}
.y17f{bottom:856.453333pt;}
.y261{bottom:858.053333pt;}
.y19f{bottom:859.493333pt;}
.y4c{bottom:864.933333pt;}
.y22{bottom:865.093333pt;}
.yc9{bottom:865.893333pt;}
.yb9{bottom:867.493333pt;}
.y7c{bottom:868.933333pt;}
.y4{bottom:874.383761pt;}
.y9c{bottom:875.493333pt;}
.y260{bottom:876.613333pt;}
.y59{bottom:877.733333pt;}
.y202{bottom:878.213333pt;}
.y109{bottom:880.453333pt;}
.y126{bottom:882.053333pt;}
.y23a{bottom:883.493333pt;}
.ye3{bottom:887.173333pt;}
.y17e{bottom:891.973333pt;}
.y21{bottom:892.773333pt;}
.yc8{bottom:893.573333pt;}
.yb8{bottom:895.173333pt;}
.y7b{bottom:896.453333pt;}
.y49{bottom:901.733333pt;}
.y239{bottom:902.053333pt;}
.y9b{bottom:903.173333pt;}
.y58{bottom:905.573333pt;}
.y108{bottom:907.973333pt;}
.y201{bottom:908.133333pt;}
.y3{bottom:914.706701pt;}
.y125{bottom:917.573333pt;}
.y17d{bottom:919.653333pt;}
.y20{bottom:920.293333pt;}
.yc7{bottom:921.093333pt;}
.yb7{bottom:922.693333pt;}
.y7a{bottom:924.133333pt;}
.y25f{bottom:926.693333pt;}
.y9a{bottom:930.693333pt;}
.y57{bottom:933.253333pt;}
.y238{bottom:933.573333pt;}
.y200{bottom:934.693333pt;}
.y47{bottom:938.533333pt;}
.y107{bottom:943.653333pt;}
.y124{bottom:947.653333pt;}
.y1f{bottom:947.813333pt;}
.yc6{bottom:950.373333pt;}
.y79{bottom:951.653333pt;}
.y237{bottom:952.133333pt;}
.y17c{bottom:955.173333pt;}
.y2{bottom:956.789770pt;}
.y45{bottom:958.213333pt;}
.y99{bottom:958.373333pt;}
.y56{bottom:961.093333pt;}
.y236{bottom:970.533333pt;}
.y1e{bottom:975.493333pt;}
.y25e{bottom:976.933333pt;}
.y1e7{bottom:977.893333pt;}
.y78{bottom:980.773333pt;}
.y17b{bottom:984.293333pt;}
.y106{bottom:984.613333pt;}
.y98{bottom:985.893333pt;}
.y55{bottom:988.933333pt;}
.y1ff{bottom:989.893333pt;}
.y44{bottom:994.373333pt;}
.y25d{bottom:995.333333pt;}
.y105{bottom:999.813333pt;}
.y1d{bottom:1010.853333pt;}
.y97{bottom:1013.573333pt;}
.y25c{bottom:1013.733333pt;}
.h10{height:18.386667pt;}
.h14{height:18.400000pt;}
.h34{height:18.418667pt;}
.h13{height:18.420000pt;}
.h22{height:27.506667pt;}
.h27{height:27.518667pt;}
.h1c{height:27.546667pt;}
.h3c{height:27.680000pt;}
.h12{height:36.786667pt;}
.h38{height:36.798667pt;}
.h39{height:36.800000pt;}
.h3a{height:36.826667pt;}
.h37{height:36.832000pt;}
.hc{height:42.087444pt;}
.h7{height:43.218151pt;}
.hf{height:52.108438pt;}
.h31{height:52.134375pt;}
.h8{height:53.538904pt;}
.h36{height:55.186667pt;}
.h3f{height:55.232000pt;}
.h35{height:56.843750pt;}
.h24{height:57.375000pt;}
.h15{height:62.781250pt;}
.he{height:62.812500pt;}
.h6{height:62.817081pt;}
.h17{height:63.843750pt;}
.h11{height:64.500000pt;}
.h18{height:65.781915pt;}
.h40{height:71.524375pt;}
.h33{height:73.454062pt;}
.ha{height:73.495984pt;}
.h32{height:73.586667pt;}
.h3b{height:73.618667pt;}
.hd{height:75.465000pt;}
.h1e{height:76.671562pt;}
.h1f{height:76.802625pt;}
.h16{height:77.951250pt;}
.hb{height:83.546717pt;}
.h3e{height:84.178667pt;}
.h5{height:85.791256pt;}
.h4{height:96.757056pt;}
.h19{height:110.386667pt;}
.h3{height:118.043608pt;}
.h3d{height:128.786667pt;}
.h1a{height:137.933333pt;}
.h1b{height:165.466667pt;}
.h30{height:165.613333pt;}
.h25{height:165.626667pt;}
.h2f{height:165.640000pt;}
.h9{height:166.278792pt;}
.h2b{height:193.185333pt;}
.h2d{height:248.385333pt;}
.h28{height:275.893333pt;}
.h29{height:303.585333pt;}
.h2e{height:303.600000pt;}
.h2c{height:303.733333pt;}
.h2a{height:358.933333pt;}
.h23{height:358.960000pt;}
.h1d{height:411.520000pt;}
.h26{height:414.013333pt;}
.h20{height:793.760000pt;}
.h21{height:794.000000pt;}
.h2{height:1063.869631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:88.192000pt;}
.w15{width:88.338667pt;}
.w17{width:88.346667pt;}
.w16{width:88.466667pt;}
.w13{width:89.120000pt;}
.wc{width:124.310667pt;}
.wd{width:131.698667pt;}
.w12{width:138.897333pt;}
.we{width:169.466667pt;}
.w4{width:179.147355pt;}
.w7{width:191.377333pt;}
.w9{width:191.413333pt;}
.w8{width:191.546667pt;}
.w1a{width:192.017333pt;}
.w1c{width:192.053333pt;}
.w1b{width:192.186667pt;}
.w3{width:198.145010pt;}
.w19{width:266.613333pt;}
.w6{width:288.053333pt;}
.w5{width:288.217333pt;}
.w18{width:309.657333pt;}
.wf{width:443.573333pt;}
.w10{width:576.280000pt;}
.w11{width:581.400000pt;}
.w2{width:747.227795pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.wa{width:1122.560000pt;}
.wb{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:3.946667pt;}
.x18{left:7.190667pt;}
.x11{left:8.780429pt;}
.x43{left:11.040000pt;}
.x46{left:12.320000pt;}
.x44{left:14.546667pt;}
.x41{left:15.520000pt;}
.x42{left:17.760000pt;}
.x40{left:21.440000pt;}
.x25{left:24.480000pt;}
.x47{left:26.080000pt;}
.x13{left:28.097372pt;}
.x3f{left:30.080000pt;}
.x37{left:31.185333pt;}
.x45{left:34.240000pt;}
.x31{left:35.505333pt;}
.x48{left:36.480000pt;}
.x3a{left:40.480000pt;}
.x12{left:44.061788pt;}
.x23{left:55.200000pt;}
.x33{left:56.640000pt;}
.x14{left:66.411971pt;}
.x20{left:68.506667pt;}
.x8{left:87.804288pt;}
.x24{left:89.425333pt;}
.x1e{left:90.705333pt;}
.x22{left:92.465333pt;}
.xf{left:98.979379pt;}
.x17{left:106.281333pt;}
.x16{left:113.472000pt;}
.x5{left:116.252877pt;}
.x1a{left:128.192000pt;}
.x30{left:130.601333pt;}
.x1c{left:137.466667pt;}
.x4b{left:145.466667pt;}
.x4{left:151.848204pt;}
.x7{left:154.083222pt;}
.x1d{left:161.466667pt;}
.x2{left:182.659526pt;}
.x49{left:185.466667pt;}
.xe{left:202.889897pt;}
.x38{left:206.265333pt;}
.x6{left:216.184800pt;}
.x3{left:238.534982pt;}
.x39{left:245.186667pt;}
.xd{left:250.508294pt;}
.x32{left:255.560000pt;}
.x27{left:262.973333pt;}
.x28{left:278.813333pt;}
.x29{left:280.226667pt;}
.xa{left:281.159973pt;}
.x1f{left:298.626667pt;}
.x2b{left:313.413333pt;}
.xc{left:322.507811pt;}
.x2a{left:326.466667pt;}
.x2d{left:330.240000pt;}
.x2e{left:331.200000pt;}
.x3b{left:334.306667pt;}
.x2c{left:342.693333pt;}
.x9{left:349.208296pt;}
.xb{left:387.682539pt;}
.x19{left:394.506667pt;}
.x10{left:401.048211pt;}
.x4a{left:415.946667pt;}
.x3c{left:422.506667pt;}
.x21{left:490.826667pt;}
.x3d{left:510.853333pt;}
.x34{left:558.026667pt;}
.x3e{left:599.333333pt;}
.x26{left:615.493333pt;}
.x4c{left:616.453333pt;}
.x36{left:664.480000pt;}
.x1b{left:672.480000pt;}
.x4e{left:680.480000pt;}
.x4d{left:720.000000pt;}
.x15{left:752.800000pt;}
.x35{left:993.280000pt;}
.x2f{left:1001.280000pt;}
}




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