
    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_f1df5accd40895dd491081c7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ce854b626352dd3897935c90.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d1aae7c1d2025bbc2388d8ae.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b0b15e2014e9299aee880581.woff')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_2708fd9fd160649447b04223.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_f691e345fa4fef39632abb7f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b75d7fe7e10d394ae3c00814.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.737793;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_f347857120417345b9aa9d75.woff')format("woff");}.ff9{font-family:ff9;line-height:1.049805;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_39261c2fe27cd714079350f4.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e0fee60f84aa67e8b2ac2455.woff')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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:ffd;src:url('chunks/assets/font_0f31720e86d7001c818442b7.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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:fff;src:url('chunks/assets/font_6710365eefe04782d093d9a8.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_972f03971cc14b6421ace9eb.woff')format("woff");}.ff10{font-family:ff10;line-height:0.758789;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:ff11;src:url('chunks/assets/font_2163c01a6164cc5eb63da0f3.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b4e8219693e20657553b007e.woff')format("woff");}.ff12{font-family:ff12;line-height:1.084961;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{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);}
.v3{vertical-align:-78.660000px;}
.v6{vertical-align:-74.880000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-0.612000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.305400px;}
.ls10{letter-spacing:-0.253200px;}
.ls11{letter-spacing:-0.243600px;}
.ls9{letter-spacing:-0.223800px;}
.lsb{letter-spacing:-0.150600px;}
.ls19{letter-spacing:-0.100200px;}
.lsc{letter-spacing:-0.089400px;}
.ls15{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.108000px;}
.ls14{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.144720px;}
.ls4{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.270720px;}
.lsf{letter-spacing:0.293040px;}
.ls17{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.lse{letter-spacing:0.413040px;}
.ls6{letter-spacing:0.493920px;}
.ls12{letter-spacing:0.802560px;}
.ls21{letter-spacing:0.828000px;}
.ls20{letter-spacing:0.900000px;}
.ls1d{letter-spacing:21.780000px;}
.ls1e{letter-spacing:43.380000px;}
.ls1{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.280000px;}
.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;}
}
.wsa{word-spacing:-48.240000px;}
.wsb{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.560000px;}
.ws18{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.120000px;}
.ws12{word-spacing:-15.059520px;}
.wsf{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.ws16{word-spacing:-14.839800px;}
.ws19{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.479800px;}
.ws17{word-spacing:-14.400000px;}
.ws13{word-spacing:-14.328000px;}
.ws4{word-spacing:-13.500000px;}
.ws1b{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.420000px;}
.ws9{word-spacing:-12.240000px;}
.ws7{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.836200px;}
.ws3{word-spacing:-11.700000px;}
.ws0{word-spacing:-10.440000px;}
.ws1a{word-spacing:-9.711360px;}
.ws5{word-spacing:-9.000000px;}
.ws2{word-spacing:-7.560000px;}
.wse{word-spacing:-7.316400px;}
.wsc{word-spacing:-7.306800px;}
.ws6{word-spacing:0.000000px;}
._6{margin-left:-59.580000px;}
._11{margin-left:-3.374640px;}
._b{margin-left:-2.327040px;}
._2{margin-left:-1.258560px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._1c{width:3.450720px;}
._1a{width:5.144400px;}
._c{width:6.573600px;}
._e{width:7.864320px;}
._d{width:8.964000px;}
._1b{width:10.080000px;}
._19{width:11.772000px;}
._15{width:13.505760px;}
._18{width:14.556000px;}
._25{width:16.254720px;}
._1f{width:17.330400px;}
._16{width:19.242720px;}
._17{width:20.469600px;}
._1e{width:22.170960px;}
._21{width:23.844240px;}
._22{width:25.158960px;}
._a{width:26.473680px;}
._14{width:27.848160px;}
._20{width:29.673120px;}
._10{width:31.292160px;}
._f{width:32.310480px;}
._13{width:33.704640px;}
._12{width:35.198640px;}
._23{width:36.632880px;}
._24{width:37.708560px;}
._26{width:39.202560px;}
._8{width:40.218480px;}
._9{width:41.273040px;}
._2c{width:42.354720px;}
._2d{width:43.532880px;}
._2b{width:44.784000px;}
._28{width:45.895680px;}
._2f{width:47.093760px;}
._36{width:48.883680px;}
._35{width:50.138640px;}
._32{width:51.513120px;}
._33{width:52.592400px;}
._27{width:53.724240px;}
._39{width:55.696320px;}
._38{width:56.891520px;}
._3b{width:60.912000px;}
._3a{width:62.328000px;}
._31{width:64.159200px;}
._29{width:65.298720px;}
._4{width:66.311520px;}
._43{width:67.321440px;}
._2a{width:68.742000px;}
._3c{width:69.753360px;}
._3{width:71.426160px;}
._34{width:73.659600px;}
._3f{width:76.823280px;}
._40{width:77.983200px;}
._41{width:82.648080px;}
._42{width:83.755440px;}
._3e{width:97.050240px;}
._2e{width:100.242720px;}
._37{width:113.217120px;}
._3d{width:156.611280px;}
._5{width:199.620000px;}
._44{width:239.040000px;}
._1d{width:282.270000px;}
._30{width:386.820000px;}
._7{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs10{font-size:6.000000px;}
.fsd{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fsf{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y70{bottom:-251.490000px;}
.y6f{bottom:-217.830000px;}
.y6e{bottom:-183.990000px;}
.y7f{bottom:-168.150000px;}
.y6d{bottom:-150.330000px;}
.y7e{bottom:-134.490000px;}
.y6c{bottom:-116.670000px;}
.y7d{bottom:-100.830000px;}
.y6b{bottom:-82.800000px;}
.y7c{bottom:-66.945000px;}
.y6a{bottom:-49.140000px;}
.y7b{bottom:-33.285000px;}
.y63{bottom:-28.650000px;}
.y3a{bottom:-27.180000px;}
.y81{bottom:-17.922750px;}
.y69{bottom:-15.300000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:0.555000px;}
.y2b9{bottom:1.837500px;}
.y68{bottom:2.700000px;}
.yf3{bottom:3.075000px;}
.y2{bottom:3.960000px;}
.y58{bottom:4.485000px;}
.y156{bottom:4.665000px;}
.ye6{bottom:4.680000px;}
.y15b{bottom:4.845000px;}
.y15c{bottom:5.025000px;}
.y39{bottom:5.040000px;}
.y62{bottom:5.580000px;}
.y10e{bottom:5.745000px;}
.y11f{bottom:7.740000px;}
.y115{bottom:8.265000px;}
.y126{bottom:12.240000px;}
.y7{bottom:12.420000px;}
.y157{bottom:12.765000px;}
.y4{bottom:13.500000px;}
.y3{bottom:13.680000px;}
.y67{bottom:15.660000px;}
.y60{bottom:15.705000px;}
.yef{bottom:16.935000px;}
.y10d{bottom:19.425000px;}
.y57{bottom:20.325000px;}
.y159{bottom:20.505000px;}
.y155{bottom:20.730000px;}
.y11e{bottom:21.420000px;}
.y118{bottom:21.945000px;}
.y114{bottom:22.125000px;}
.y6{bottom:25.200000px;}
.y125{bottom:26.100000px;}
.y5f{bottom:28.485000px;}
.y66{bottom:28.800000px;}
.y129{bottom:29.160000px;}
.yee{bottom:30.615000px;}
.y79{bottom:31.515000px;}
.y10c{bottom:33.285000px;}
.y56{bottom:33.690000px;}
.y11d{bottom:35.280000px;}
.y113{bottom:35.985000px;}
.y5{bottom:38.160000px;}
.y124{bottom:39.960000px;}
.y5e{bottom:40.545000px;}
.y65{bottom:41.040000px;}
.y55{bottom:42.690000px;}
.y78{bottom:44.475000px;}
.y86{bottom:46.260000px;}
.y10b{bottom:47.190000px;}
.y11c{bottom:48.960000px;}
.y112{bottom:49.710000px;}
.y128{bottom:50.040000px;}
.y5d{bottom:52.605000px;}
.y123{bottom:53.640000px;}
.y117{bottom:56.730000px;}
.y77{bottom:57.615000px;}
.yed{bottom:58.335000px;}
.ye4{bottom:60.480000px;}
.y54{bottom:60.510000px;}
.y10a{bottom:60.870000px;}
.y1{bottom:61.380000px;}
.y85{bottom:62.640000px;}
.y11b{bottom:62.820000px;}
.y111{bottom:63.570000px;}
.y80{bottom:63.780000px;}
.y5c{bottom:64.665000px;}
.y290{bottom:66.420000px;}
.y122{bottom:67.500000px;}
.y116{bottom:70.410000px;}
.y76{bottom:70.575000px;}
.y127{bottom:70.740000px;}
.yec{bottom:72.015000px;}
.y109{bottom:74.730000px;}
.y11a{bottom:76.680000px;}
.y5b{bottom:76.725000px;}
.y110{bottom:77.430000px;}
.y53{bottom:78.330000px;}
.y84{bottom:80.460000px;}
.y121{bottom:81.360000px;}
.y28f{bottom:81.540000px;}
.y75{bottom:83.535000px;}
.yeb{bottom:85.875000px;}
.y108{bottom:88.410000px;}
.y119{bottom:90.180000px;}
.y10f{bottom:91.110000px;}
.y52{bottom:91.650000px;}
.y5a{bottom:93.645000px;}
.y120{bottom:95.040000px;}
.y74{bottom:96.675000px;}
.yb8{bottom:98.640000px;}
.yf2{bottom:99.720000px;}
.yea{bottom:99.735000px;}
.y51{bottom:100.470000px;}
.y263{bottom:101.700000px;}
.y1a4{bottom:103.680000px;}
.y167{bottom:104.760000px;}
.y18c{bottom:105.660000px;}
.y27f{bottom:107.460000px;}
.y146{bottom:108.900000px;}
.y73{bottom:109.635000px;}
.y2b8{bottom:113.040000px;}
.ye8{bottom:113.220000px;}
.yf1{bottom:113.400000px;}
.yf4{bottom:113.415000px;}
.y22b{bottom:113.580000px;}
.y106{bottom:115.740000px;}
.y212{bottom:117.540000px;}
.y50{bottom:118.290000px;}
.yb7{bottom:118.440000px;}
.y1e3{bottom:120.240000px;}
.y262{bottom:121.500000px;}
.y72{bottom:122.055000px;}
.y1a3{bottom:123.480000px;}
.y166{bottom:124.560000px;}
.y18b{bottom:125.460000px;}
.y37{bottom:127.080000px;}
.yf0{bottom:127.260000px;}
.ye2{bottom:127.440000px;}
.y145{bottom:128.700000px;}
.y105{bottom:129.420000px;}
.y2b7{bottom:133.020000px;}
.y1e2{bottom:133.380000px;}
.y4f{bottom:136.110000px;}
.y211{bottom:137.340000px;}
.yb6{bottom:138.240000px;}
.y24b{bottom:139.860000px;}
.y261{bottom:141.300000px;}
.y104{bottom:143.280000px;}
.y165{bottom:144.360000px;}
.y18a{bottom:145.260000px;}
.y36{bottom:147.060000px;}
.ye1{bottom:147.240000px;}
.y27e{bottom:147.960000px;}
.y144{bottom:148.500000px;}
.y2b6{bottom:152.820000px;}
.y24a{bottom:153.000000px;}
.y1e1{bottom:153.180000px;}
.y4e{bottom:154.110000px;}
.y210{bottom:157.140000px;}
.y103{bottom:157.185000px;}
.yb5{bottom:158.220000px;}
.y260{bottom:161.100000px;}
.y1a2{bottom:163.110000px;}
.y164{bottom:164.190000px;}
.y189{bottom:165.090000px;}
.y35{bottom:166.890000px;}
.ye0{bottom:167.070000px;}
.y143{bottom:168.330000px;}
.y102{bottom:170.865000px;}
.y4d{bottom:171.930000px;}
.y2b5{bottom:172.650000px;}
.y1e0{bottom:173.010000px;}
.y20f{bottom:176.970000px;}
.yb4{bottom:178.950000px;}
.y25f{bottom:181.110000px;}
.y1a1{bottom:183.090000px;}
.y163{bottom:184.170000px;}
.y101{bottom:184.725000px;}
.y188{bottom:185.070000px;}
.y34{bottom:186.690000px;}
.ydf{bottom:187.050000px;}
.y142{bottom:188.310000px;}
.y27d{bottom:189.030000px;}
.y4c{bottom:189.750000px;}
.y2b4{bottom:192.450000px;}
.y249{bottom:192.810000px;}
.y1df{bottom:192.990000px;}
.y20e{bottom:196.950000px;}
.y100{bottom:198.405000px;}
.yb3{bottom:198.570000px;}
.y25e{bottom:200.910000px;}
.y1a0{bottom:202.890000px;}
.y162{bottom:203.970000px;}
.y187{bottom:204.870000px;}
.y33{bottom:206.490000px;}
.yde{bottom:206.850000px;}
.y4b{bottom:207.570000px;}
.y141{bottom:208.110000px;}
.y27c{bottom:208.830000px;}
.yb2{bottom:211.710000px;}
.y2b3{bottom:212.250000px;}
.yff{bottom:212.265000px;}
.y248{bottom:212.610000px;}
.y1de{bottom:212.790000px;}
.y22a{bottom:213.690000px;}
.y20d{bottom:216.750000px;}
.y25d{bottom:220.710000px;}
.y19f{bottom:222.690000px;}
.y161{bottom:223.770000px;}
.y186{bottom:224.670000px;}
.y4a{bottom:225.390000px;}
.yfe{bottom:226.125000px;}
.y32{bottom:226.290000px;}
.ydd{bottom:226.650000px;}
.y140{bottom:227.910000px;}
.y27b{bottom:228.630000px;}
.yb1{bottom:231.510000px;}
.y2b2{bottom:232.230000px;}
.y247{bottom:232.410000px;}
.y1dd{bottom:232.590000px;}
.y229{bottom:233.310000px;}
.y20c{bottom:236.550000px;}
.y49{bottom:238.710000px;}
.yfd{bottom:239.805000px;}
.y25c{bottom:241.410000px;}
.y19e{bottom:242.490000px;}
.y160{bottom:243.570000px;}
.y185{bottom:244.470000px;}
.y31{bottom:246.270000px;}
.ydc{bottom:246.450000px;}
.y48{bottom:247.530000px;}
.y13f{bottom:247.710000px;}
.y27a{bottom:248.430000px;}
.y28e{bottom:248.610000px;}
.yb0{bottom:251.490000px;}
.y2b1{bottom:252.030000px;}
.y246{bottom:252.210000px;}
.y1dc{bottom:252.390000px;}
.yfc{bottom:253.665000px;}
.y20b{bottom:256.350000px;}
.y25b{bottom:261.210000px;}
.y19d{bottom:262.290000px;}
.y184{bottom:264.270000px;}
.y15f{bottom:264.450000px;}
.y47{bottom:265.560000px;}
.y30{bottom:266.070000px;}
.ydb{bottom:266.250000px;}
.y13e{bottom:267.510000px;}
.yfb{bottom:267.525000px;}
.y279{bottom:268.230000px;}
.yaf{bottom:271.290000px;}
.y2b0{bottom:271.830000px;}
.y1db{bottom:272.190000px;}
.y25a{bottom:274.170000px;}
.y20a{bottom:276.150000px;}
.yfa{bottom:281.205000px;}
.y19c{bottom:282.270000px;}
.y46{bottom:283.380000px;}
.y183{bottom:284.250000px;}
.y2f{bottom:285.870000px;}
.yda{bottom:286.230000px;}
.y13d{bottom:287.490000px;}
.y15e{bottom:288.210000px;}
.y28d{bottom:289.470000px;}
.yae{bottom:291.090000px;}
.y2af{bottom:291.630000px;}
.y245{bottom:291.990000px;}
.y1da{bottom:292.170000px;}
.y259{bottom:294.150000px;}
.yf9{bottom:295.065000px;}
.y209{bottom:296.130000px;}
.y45{bottom:301.200000px;}
.y19b{bottom:302.070000px;}
.y182{bottom:304.050000px;}
.y2e{bottom:305.670000px;}
.yd9{bottom:306.030000px;}
.y13c{bottom:307.290000px;}
.y278{bottom:308.010000px;}
.yf8{bottom:308.925000px;}
.y28c{bottom:310.350000px;}
.yad{bottom:310.890000px;}
.y15d{bottom:311.070000px;}
.y2ae{bottom:311.430000px;}
.y244{bottom:311.790000px;}
.y1d9{bottom:311.970000px;}
.y258{bottom:313.950000px;}
.y208{bottom:315.930000px;}
.y44{bottom:319.020000px;}
.y19a{bottom:321.870000px;}
.yf7{bottom:322.605000px;}
.y181{bottom:323.850000px;}
.yd8{bottom:325.830000px;}
.y2d{bottom:326.370000px;}
.y15a{bottom:326.925000px;}
.y13b{bottom:327.090000px;}
.y277{bottom:327.810000px;}
.yac{bottom:330.690000px;}
.y2ad{bottom:331.410000px;}
.y243{bottom:331.590000px;}
.y1d8{bottom:331.770000px;}
.y43{bottom:332.340000px;}
.y257{bottom:333.750000px;}
.y207{bottom:335.730000px;}
.yf6{bottom:336.465000px;}
.y42{bottom:341.160000px;}
.y199{bottom:341.670000px;}
.y180{bottom:343.650000px;}
.y158{bottom:343.665000px;}
.y228{bottom:345.630000px;}
.yd7{bottom:346.530000px;}
.y2c{bottom:346.890000px;}
.y276{bottom:347.610000px;}
.y13a{bottom:347.790000px;}
.yab{bottom:350.670000px;}
.y28b{bottom:351.210000px;}
.y242{bottom:351.390000px;}
.y1d7{bottom:351.570000px;}
.y256{bottom:353.550000px;}
.y206{bottom:355.530000px;}
.y2b{bottom:356.790000px;}
.y41{bottom:358.980000px;}
.y3b{bottom:360.765000px;}
.y198{bottom:361.470000px;}
.y17f{bottom:363.450000px;}
.y227{bottom:365.430000px;}
.yd6{bottom:366.330000px;}
.y275{bottom:367.410000px;}
.y2a{bottom:368.130000px;}
.yaa{bottom:370.470000px;}
.y28a{bottom:371.010000px;}
.y1d6{bottom:371.370000px;}
.y255{bottom:373.350000px;}
.y205{bottom:375.330000px;}
.y154{bottom:376.065000px;}
.y40{bottom:376.980000px;}
.yd5{bottom:379.470000px;}
.y197{bottom:381.450000px;}
.y17e{bottom:383.430000px;}
.y226{bottom:385.410000px;}
.y274{bottom:387.390000px;}
.y139{bottom:388.650000px;}
.ya9{bottom:390.270000px;}
.y289{bottom:390.810000px;}
.y241{bottom:391.170000px;}
.y1d5{bottom:391.350000px;}
.y29{bottom:391.890000px;}
.y254{bottom:393.375000px;}
.y3f{bottom:394.800000px;}
.y204{bottom:395.355000px;}
.yd4{bottom:399.315000px;}
.y1b8{bottom:401.295000px;}
.y196{bottom:402.195000px;}
.y17d{bottom:403.275000px;}
.y225{bottom:405.255000px;}
.y273{bottom:407.235000px;}
.y138{bottom:408.675000px;}
.ya8{bottom:410.115000px;}
.y2ac{bottom:410.655000px;}
.y240{bottom:411.015000px;}
.y288{bottom:411.555000px;}
.y1d4{bottom:412.095000px;}
.y3e{bottom:412.620000px;}
.y28{bottom:412.815000px;}
.y253{bottom:413.175000px;}
.y203{bottom:415.155000px;}
.yd3{bottom:419.115000px;}
.y1b7{bottom:421.095000px;}
.y17c{bottom:423.075000px;}
.y224{bottom:425.055000px;}
.y195{bottom:425.955000px;}
.y272{bottom:427.035000px;}
.y137{bottom:428.475000px;}
.y3d{bottom:430.440000px;}
.y2ab{bottom:430.635000px;}
.y23f{bottom:430.815000px;}
.ya7{bottom:431.175000px;}
.y27{bottom:432.615000px;}
.y252{bottom:432.975000px;}
.y153{bottom:433.875000px;}
.y202{bottom:434.955000px;}
.y1d3{bottom:435.855000px;}
.yd2{bottom:438.915000px;}
.y1b6{bottom:440.895000px;}
.y17b{bottom:442.875000px;}
.y223{bottom:444.855000px;}
.y194{bottom:445.575000px;}
.y26{bottom:446.475000px;}
.y271{bottom:447.735000px;}
.y3c{bottom:448.260000px;}
.y136{bottom:448.275000px;}
.y2aa{bottom:450.435000px;}
.ya6{bottom:450.615000px;}
.y152{bottom:451.695000px;}
.y287{bottom:452.595000px;}
.y251{bottom:452.775000px;}
.y201{bottom:454.755000px;}
.y25{bottom:455.115000px;}
.y1d2{bottom:455.475000px;}
.yd1{bottom:458.715000px;}
.y26f{bottom:460.695000px;}
.y1b5{bottom:461.595000px;}
.y17a{bottom:462.675000px;}
.ya5{bottom:463.755000px;}
.y222{bottom:464.655000px;}
.y270{bottom:467.535000px;}
.y135{bottom:468.075000px;}
.y1d1{bottom:468.615000px;}
.y71{bottom:469.680000px;}
.y151{bottom:470.055000px;}
.y2a9{bottom:470.235000px;}
.y23e{bottom:470.595000px;}
.y286{bottom:472.395000px;}
.y250{bottom:472.575000px;}
.y200{bottom:474.555000px;}
.y24{bottom:478.335000px;}
.yd0{bottom:478.695000px;}
.y26e{bottom:480.675000px;}
.y179{bottom:482.655000px;}
.ya4{bottom:483.555000px;}
.y221{bottom:484.635000px;}
.y1b4{bottom:485.535000px;}
.y134{bottom:487.875000px;}
.y1d0{bottom:488.595000px;}
.y150{bottom:489.855000px;}
.y2a8{bottom:490.035000px;}
.y23d{bottom:490.395000px;}
.y24f{bottom:492.555000px;}
.y285{bottom:493.095000px;}
.y1ff{bottom:494.535000px;}
.ycf{bottom:498.495000px;}
.y26d{bottom:500.475000px;}
.y23{bottom:501.735000px;}
.y178{bottom:502.455000px;}
.ya3{bottom:503.355000px;}
.y220{bottom:504.435000px;}
.y133{bottom:507.855000px;}
.y1cf{bottom:508.395000px;}
.y1b3{bottom:509.295000px;}
.y14f{bottom:509.835000px;}
.y23c{bottom:510.195000px;}
.y24e{bottom:512.355000px;}
.y1fe{bottom:515.235000px;}
.y284{bottom:516.855000px;}
.yce{bottom:518.295000px;}
.y26c{bottom:520.275000px;}
.y177{bottom:522.255000px;}
.ya2{bottom:523.155000px;}
.y21f{bottom:524.235000px;}
.y22{bottom:524.955000px;}
.y132{bottom:527.655000px;}
.y1ce{bottom:528.195000px;}
.y1b2{bottom:528.915000px;}
.y14e{bottom:529.635000px;}
.y2a7{bottom:529.815000px;}
.y23b{bottom:529.995000px;}
.y24d{bottom:532.155000px;}
.ycd{bottom:538.095000px;}
.y1fd{bottom:538.995000px;}
.y26b{bottom:540.075000px;}
.y176{bottom:542.055000px;}
.ya1{bottom:544.395000px;}
.y21e{bottom:544.935000px;}
.y131{bottom:547.455000px;}
.y1cd{bottom:547.995000px;}
.y21{bottom:548.175000px;}
.y14d{bottom:549.435000px;}
.y2a6{bottom:549.615000px;}
.y23a{bottom:549.795000px;}
.y24c{bottom:551.955000px;}
.y283{bottom:557.715000px;}
.ycc{bottom:557.895000px;}
.y1fc{bottom:558.615000px;}
.y26a{bottom:559.875000px;}
.y175{bottom:561.855000px;}
.ya0{bottom:563.655000px;}
.y130{bottom:567.255000px;}
.y1cc{bottom:567.795000px;}
.y21d{bottom:568.695000px;}
.y14c{bottom:569.235000px;}
.y2a5{bottom:569.415000px;}
.y239{bottom:569.775000px;}
.y20{bottom:571.575000px;}
.y1fb{bottom:571.755000px;}
.y9f{bottom:576.795000px;}
.y282{bottom:577.695000px;}
.ycb{bottom:577.875000px;}
.y269{bottom:579.855000px;}
.y174{bottom:581.835000px;}
.y12f{bottom:587.055000px;}
.y21c{bottom:588.495000px;}
.y1cb{bottom:588.675000px;}
.y14b{bottom:589.035000px;}
.y2a4{bottom:589.215000px;}
.y238{bottom:589.575000px;}
.y1fa{bottom:591.735000px;}
.y1f{bottom:594.795000px;}
.y9e{bottom:596.595000px;}
.y281{bottom:597.495000px;}
.yca{bottom:597.675000px;}
.y268{bottom:599.655000px;}
.y173{bottom:601.635000px;}
.y12e{bottom:607.035000px;}
.y14a{bottom:609.015000px;}
.y237{bottom:609.375000px;}
.y1f9{bottom:611.535000px;}
.y1ca{bottom:612.435000px;}
.y9d{bottom:616.395000px;}
.y59{bottom:616.740000px;}
.yc9{bottom:617.475000px;}
.y280{bottom:618.195000px;}
.y267{bottom:619.455000px;}
.y172{bottom:621.435000px;}
.y12d{bottom:626.865000px;}
.y149{bottom:628.845000px;}
.y2a3{bottom:629.025000px;}
.y236{bottom:629.205000px;}
.y1f8{bottom:631.365000px;}
.y1c9{bottom:632.085000px;}
.y9c{bottom:636.225000px;}
.yc8{bottom:637.305000px;}
.y266{bottom:639.285000px;}
.y1b1{bottom:641.265000px;}
.y171{bottom:642.165000px;}
.y1c8{bottom:645.225000px;}
.y12c{bottom:646.665000px;}
.y148{bottom:648.645000px;}
.y2a2{bottom:648.825000px;}
.y235{bottom:649.005000px;}
.y1e{bottom:649.725000px;}
.y1f7{bottom:651.165000px;}
.y9b{bottom:656.205000px;}
.yc7{bottom:657.105000px;}
.y265{bottom:659.085000px;}
.y1b0{bottom:661.065000px;}
.y1c7{bottom:665.025000px;}
.y1d{bottom:665.205000px;}
.y170{bottom:665.925000px;}
.y12b{bottom:667.725000px;}
.y2a1{bottom:668.625000px;}
.y234{bottom:668.985000px;}
.y147{bottom:669.165000px;}
.y1f6{bottom:670.965000px;}
.y9a{bottom:676.005000px;}
.yc6{bottom:676.905000px;}
.y264{bottom:679.065000px;}
.y1c{bottom:680.685000px;}
.y1af{bottom:681.045000px;}
.y1c6{bottom:685.005000px;}
.y16f{bottom:685.905000px;}
.y2a0{bottom:688.425000px;}
.y233{bottom:688.785000px;}
.y12a{bottom:690.225000px;}
.y1f5{bottom:690.945000px;}
.y99{bottom:695.805000px;}
.y1b{bottom:696.165000px;}
.yc5{bottom:696.885000px;}
.y16e{bottom:698.865000px;}
.y1ae{bottom:700.845000px;}
.y1c5{bottom:704.805000px;}
.yf5{bottom:706.245000px;}
.y29f{bottom:708.225000px;}
.y232{bottom:708.585000px;}
.y1f4{bottom:710.745000px;}
.y1a{bottom:711.825000px;}
.y98{bottom:715.605000px;}
.yc4{bottom:716.685000px;}
.y16d{bottom:718.665000px;}
.y1ad{bottom:720.645000px;}
.y19{bottom:722.805000px;}
.y1c4{bottom:724.605000px;}
.y29e{bottom:728.205000px;}
.y231{bottom:728.385000px;}
.y1f3{bottom:730.545000px;}
.y64{bottom:734.685000px;}
.y97{bottom:735.405000px;}
.y18{bottom:736.485000px;}
.y16c{bottom:738.465000px;}
.y1ac{bottom:740.445000px;}
.y1c3{bottom:744.405000px;}
.y29d{bottom:748.005000px;}
.y230{bottom:748.185000px;}
.y17{bottom:749.085000px;}
.y1f2{bottom:750.345000px;}
.y96{bottom:755.385000px;}
.yc3{bottom:756.285000px;}
.y16b{bottom:758.265000px;}
.y1ab{bottom:760.245000px;}
.y16{bottom:761.505000px;}
.y1c2{bottom:764.205000px;}
.y29c{bottom:767.805000px;}
.y22f{bottom:768.165000px;}
.y1f1{bottom:770.145000px;}
.y15{bottom:774.465000px;}
.y95{bottom:776.085000px;}
.y16a{bottom:778.245000px;}
.y1aa{bottom:780.225000px;}
.y1c1{bottom:784.185000px;}
.y29b{bottom:787.605000px;}
.y14{bottom:788.325000px;}
.y22e{bottom:788.865000px;}
.y1f0{bottom:790.125000px;}
.y193{bottom:796.065000px;}
.y94{bottom:796.965000px;}
.y169{bottom:798.045000px;}
.y1a9{bottom:800.025000px;}
.y13{bottom:801.105000px;}
.y1c0{bottom:803.985000px;}
.y29a{bottom:807.405000px;}
.y1ef{bottom:809.925000px;}
.y22d{bottom:812.625000px;}
.y107{bottom:812.820000px;}
.y192{bottom:815.865000px;}
.yc2{bottom:816.585000px;}
.y168{bottom:817.845000px;}
.y1a8{bottom:819.825000px;}
.y1bf{bottom:823.785000px;}
.y299{bottom:827.385000px;}
.y12{bottom:827.925000px;}
.yc1{bottom:829.725000px;}
.y191{bottom:835.665000px;}
.y22c{bottom:836.385000px;}
.y93{bottom:837.645000px;}
.y219{bottom:839.625000px;}
.y1a7{bottom:840.525000px;}
.y1be{bottom:843.585000px;}
.y298{bottom:848.085000px;}
.yc0{bottom:849.525000px;}
.y190{bottom:856.410000px;}
.y92{bottom:857.490000px;}
.y11{bottom:858.750000px;}
.y218{bottom:859.470000px;}
.y1bd{bottom:863.430000px;}
.y1a6{bottom:864.330000px;}
.y1ee{bottom:869.370000px;}
.ybf{bottom:870.270000px;}
.y10{bottom:874.410000px;}
.y91{bottom:877.470000px;}
.y217{bottom:879.450000px;}
.y18f{bottom:880.350000px;}
.y1bc{bottom:883.410000px;}
.y1a5{bottom:884.130000px;}
.y297{bottom:888.990000px;}
.y1ed{bottom:889.350000px;}
.ybe{bottom:890.070000px;}
.yf{bottom:894.750000px;}
.y90{bottom:897.270000px;}
.y216{bottom:899.250000px;}
.y21b{bottom:900.150000px;}
.ybd{bottom:903.210000px;}
.y18e{bottom:904.110000px;}
.y296{bottom:908.790000px;}
.y1ec{bottom:909.150000px;}
.ye{bottom:910.590000px;}
.ye9{bottom:915.435000px;}
.ye7{bottom:915.450000px;}
.y8f{bottom:917.070000px;}
.y215{bottom:919.050000px;}
.ybc{bottom:923.010000px;}
.y18d{bottom:923.730000px;}
.yd{bottom:923.910000px;}
.y1eb{bottom:928.950000px;}
.y295{bottom:929.490000px;}
.y8e{bottom:936.870000px;}
.y214{bottom:939.750000px;}
.ybb{bottom:942.810000px;}
.y21a{bottom:943.530000px;}
.yc{bottom:945.870000px;}
.y1ea{bottom:948.750000px;}
.y8d{bottom:956.670000px;}
.y1bb{bottom:962.610000px;}
.y213{bottom:963.510000px;}
.yba{bottom:963.870000px;}
.y1e9{bottom:968.550000px;}
.y294{bottom:970.530000px;}
.yb{bottom:972.690000px;}
.y8c{bottom:976.650000px;}
.yb9{bottom:983.310000px;}
.y1ba{bottom:983.490000px;}
.y1e8{bottom:988.530000px;}
.y293{bottom:990.330000px;}
.y8b{bottom:996.450000px;}
.y1b9{bottom:1003.290000px;}
.ya{bottom:1004.550000px;}
.y1e7{bottom:1008.330000px;}
.y292{bottom:1011.030000px;}
.y8a{bottom:1016.250000px;}
.y1e6{bottom:1028.130000px;}
.y89{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y1e5{bottom:1048.830000px;}
.y291{bottom:1051.890000px;}
.y88{bottom:1055.850000px;}
.y8{bottom:1063.230000px;}
.y1e4{bottom:1072.590000px;}
.y87{bottom:1075.650000px;}
.ye5{bottom:1077.090000px;}
.y61{bottom:1096.200000px;}
.y83{bottom:1103.940000px;}
.ye3{bottom:1106.640000px;}
.y82{bottom:1123.200000px;}
.y38{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h39{height:6.257812px;}
.h2{height:13.500000px;}
.h28{height:15.825000px;}
.h34{height:16.005000px;}
.h17{height:16.920000px;}
.h15{height:18.140625px;}
.h1d{height:22.140000px;}
.h13{height:23.319141px;}
.h25{height:29.664141px;}
.hb{height:29.678906px;}
.hd{height:30.963516px;}
.h33{height:31.665000px;}
.h32{height:31.881000px;}
.h16{height:36.281250px;}
.h11{height:39.503370px;}
.h2e{height:40.231406px;}
.h5{height:40.985156px;}
.h23{height:41.535703px;}
.h1c{height:42.086250px;}
.hf{height:44.518359px;}
.h10{height:46.622932px;}
.h2b{height:47.321367px;}
.hc{height:47.344922px;}
.h4{height:47.699850px;}
.h2d{height:47.980898px;}
.h18{height:48.616875px;}
.h37{height:49.255313px;}
.h36{height:49.838906px;}
.h1f{height:52.020000px;}
.h12{height:52.998047px;}
.h27{height:53.709961px;}
.h19{height:54.421875px;}
.he{height:55.291992px;}
.h35{height:58.621992px;}
.h3{height:58.651172px;}
.h38{height:59.038594px;}
.h26{height:60.226875px;}
.ha{height:65.010937px;}
.h9{height:65.846250px;}
.h20{height:65.884219px;}
.h24{height:70.628906px;}
.h14{height:72.562500px;}
.h1e{height:74.953125px;}
.h22{height:75.093750px;}
.h7{height:86.585445px;}
.h8{height:96.508125px;}
.h1b{height:101.745000px;}
.h2f{height:101.902500px;}
.h30{height:105.835500px;}
.h31{height:105.840000px;}
.h21{height:133.020000px;}
.h29{height:138.051000px;}
.h2a{height:138.060000px;}
.h2c{height:347.250000px;}
.h1a{height:460.515000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w13{width:53.985000px;}
.w15{width:54.000000px;}
.w14{width:54.030000px;}
.w3{width:82.071000px;}
.w9{width:154.470000px;}
.wb{width:161.655000px;}
.wd{width:162.015000px;}
.w10{width:162.030000px;}
.w12{width:168.495000px;}
.wc{width:175.530000px;}
.wf{width:175.545000px;}
.wa{width:180.390000px;}
.w7{width:188.310000px;}
.we{width:195.870000px;}
.w11{width:195.885000px;}
.w6{width:532.740000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:4.252500px;}
.x2{left:8.091000px;}
.x11{left:10.791000px;}
.x25{left:14.040000px;}
.x17{left:21.255000px;}
.x20{left:41.940000px;}
.x22{left:63.525000px;}
.x3{left:73.965000px;}
.x23{left:80.100000px;}
.x10{left:81.765000px;}
.x16{left:93.105000px;}
.x13{left:94.185000px;}
.xc{left:101.736000px;}
.x1{left:108.045000px;}
.xb{left:109.296000px;}
.x1d{left:114.876000px;}
.x1b{left:116.316000px;}
.x1e{left:121.185000px;}
.x7{left:130.356000px;}
.xe{left:132.696000px;}
.x19{left:134.496000px;}
.x6{left:146.196000px;}
.x4{left:190.125000px;}
.x1f{left:282.855000px;}
.x12{left:302.655000px;}
.x14{left:310.350000px;}
.x9{left:321.735000px;}
.x8{left:356.295000px;}
.xd{left:360.615000px;}
.x15{left:371.580000px;}
.x5{left:446.505000px;}
.xa{left:455.685000px;}
.x21{left:458.400000px;}
.xf{left:490.785000px;}
.x18{left:620.253000px;}
.x1c{left:651.570000px;}
.x24{left:659.310000px;}
.x26{left:713.310000px;}
.x27{left:767.340000px;}
.x1a{left:799.200000px;}
@media print{
.v3{vertical-align:-69.920000pt;}
.v6{vertical-align:-66.560000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-0.544000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls10{letter-spacing:-0.225067pt;}
.ls11{letter-spacing:-0.216533pt;}
.ls9{letter-spacing:-0.198933pt;}
.lsb{letter-spacing:-0.133867pt;}
.ls19{letter-spacing:-0.089067pt;}
.lsc{letter-spacing:-0.079467pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.096000pt;}
.ls14{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.128640pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.240640pt;}
.lsf{letter-spacing:0.260480pt;}
.ls17{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.367147pt;}
.ls6{letter-spacing:0.439040pt;}
.ls12{letter-spacing:0.713387pt;}
.ls21{letter-spacing:0.736000pt;}
.ls20{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:19.360000pt;}
.ls1e{letter-spacing:38.560000pt;}
.ls1{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.360000pt;}
.wsa{word-spacing:-42.880000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws18{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.440000pt;}
.ws12{word-spacing:-13.386240pt;}
.wsf{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.ws16{word-spacing:-13.190933pt;}
.ws19{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.870933pt;}
.ws17{word-spacing:-12.800000pt;}
.ws13{word-spacing:-12.736000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws1b{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.040000pt;}
.ws9{word-spacing:-10.880000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.521067pt;}
.ws3{word-spacing:-10.400000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws1a{word-spacing:-8.632320pt;}
.ws5{word-spacing:-8.000000pt;}
.ws2{word-spacing:-6.720000pt;}
.wse{word-spacing:-6.503467pt;}
.wsc{word-spacing:-6.494933pt;}
.ws6{word-spacing:0.000000pt;}
._6{margin-left:-52.960000pt;}
._11{margin-left:-2.999680pt;}
._b{margin-left:-2.068480pt;}
._2{margin-left:-1.118720pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._1c{width:3.067307pt;}
._1a{width:4.572800pt;}
._c{width:5.843200pt;}
._e{width:6.990507pt;}
._d{width:7.968000pt;}
._1b{width:8.960000pt;}
._19{width:10.464000pt;}
._15{width:12.005120pt;}
._18{width:12.938667pt;}
._25{width:14.448640pt;}
._1f{width:15.404800pt;}
._16{width:17.104640pt;}
._17{width:18.195200pt;}
._1e{width:19.707520pt;}
._21{width:21.194880pt;}
._22{width:22.363520pt;}
._a{width:23.532160pt;}
._14{width:24.753920pt;}
._20{width:26.376107pt;}
._10{width:27.815253pt;}
._f{width:28.720427pt;}
._13{width:29.959680pt;}
._12{width:31.287680pt;}
._23{width:32.562560pt;}
._24{width:33.518720pt;}
._26{width:34.846720pt;}
._8{width:35.749760pt;}
._9{width:36.687147pt;}
._2c{width:37.648640pt;}
._2d{width:38.695893pt;}
._2b{width:39.808000pt;}
._28{width:40.796160pt;}
._2f{width:41.861120pt;}
._36{width:43.452160pt;}
._35{width:44.567680pt;}
._32{width:45.789440pt;}
._33{width:46.748800pt;}
._27{width:47.754880pt;}
._39{width:49.507840pt;}
._38{width:50.570240pt;}
._3b{width:54.144000pt;}
._3a{width:55.402667pt;}
._31{width:57.030400pt;}
._29{width:58.043307pt;}
._4{width:58.943573pt;}
._43{width:59.841280pt;}
._2a{width:61.104000pt;}
._3c{width:62.002987pt;}
._3{width:63.489920pt;}
._34{width:65.475200pt;}
._3f{width:68.287360pt;}
._40{width:69.318400pt;}
._41{width:73.464960pt;}
._42{width:74.449280pt;}
._3e{width:86.266880pt;}
._2e{width:89.104640pt;}
._37{width:100.637440pt;}
._3d{width:139.210027pt;}
._5{width:177.440000pt;}
._44{width:212.480000pt;}
._1d{width:250.906667pt;}
._30{width:343.840000pt;}
._7{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs10{font-size:5.333333pt;}
.fsd{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fsf{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y70{bottom:-223.546667pt;}
.y6f{bottom:-193.626667pt;}
.y6e{bottom:-163.546667pt;}
.y7f{bottom:-149.466667pt;}
.y6d{bottom:-133.626667pt;}
.y7e{bottom:-119.546667pt;}
.y6c{bottom:-103.706667pt;}
.y7d{bottom:-89.626667pt;}
.y6b{bottom:-73.600000pt;}
.y7c{bottom:-59.506667pt;}
.y6a{bottom:-43.680000pt;}
.y7b{bottom:-29.586667pt;}
.y63{bottom:-25.466667pt;}
.y3a{bottom:-24.160000pt;}
.y81{bottom:-15.931333pt;}
.y69{bottom:-13.600000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:0.493333pt;}
.y2b9{bottom:1.633333pt;}
.y68{bottom:2.400000pt;}
.yf3{bottom:2.733333pt;}
.y2{bottom:3.520000pt;}
.y58{bottom:3.986667pt;}
.y156{bottom:4.146667pt;}
.ye6{bottom:4.160000pt;}
.y15b{bottom:4.306667pt;}
.y15c{bottom:4.466667pt;}
.y39{bottom:4.480000pt;}
.y62{bottom:4.960000pt;}
.y10e{bottom:5.106667pt;}
.y11f{bottom:6.880000pt;}
.y115{bottom:7.346667pt;}
.y126{bottom:10.880000pt;}
.y7{bottom:11.040000pt;}
.y157{bottom:11.346667pt;}
.y4{bottom:12.000000pt;}
.y3{bottom:12.160000pt;}
.y67{bottom:13.920000pt;}
.y60{bottom:13.960000pt;}
.yef{bottom:15.053333pt;}
.y10d{bottom:17.266667pt;}
.y57{bottom:18.066667pt;}
.y159{bottom:18.226667pt;}
.y155{bottom:18.426667pt;}
.y11e{bottom:19.040000pt;}
.y118{bottom:19.506667pt;}
.y114{bottom:19.666667pt;}
.y6{bottom:22.400000pt;}
.y125{bottom:23.200000pt;}
.y5f{bottom:25.320000pt;}
.y66{bottom:25.600000pt;}
.y129{bottom:25.920000pt;}
.yee{bottom:27.213333pt;}
.y79{bottom:28.013333pt;}
.y10c{bottom:29.586667pt;}
.y56{bottom:29.946667pt;}
.y11d{bottom:31.360000pt;}
.y113{bottom:31.986667pt;}
.y5{bottom:33.920000pt;}
.y124{bottom:35.520000pt;}
.y5e{bottom:36.040000pt;}
.y65{bottom:36.480000pt;}
.y55{bottom:37.946667pt;}
.y78{bottom:39.533333pt;}
.y86{bottom:41.120000pt;}
.y10b{bottom:41.946667pt;}
.y11c{bottom:43.520000pt;}
.y112{bottom:44.186667pt;}
.y128{bottom:44.480000pt;}
.y5d{bottom:46.760000pt;}
.y123{bottom:47.680000pt;}
.y117{bottom:50.426667pt;}
.y77{bottom:51.213333pt;}
.yed{bottom:51.853333pt;}
.ye4{bottom:53.760000pt;}
.y54{bottom:53.786667pt;}
.y10a{bottom:54.106667pt;}
.y1{bottom:54.560000pt;}
.y85{bottom:55.680000pt;}
.y11b{bottom:55.840000pt;}
.y111{bottom:56.506667pt;}
.y80{bottom:56.693333pt;}
.y5c{bottom:57.480000pt;}
.y290{bottom:59.040000pt;}
.y122{bottom:60.000000pt;}
.y116{bottom:62.586667pt;}
.y76{bottom:62.733333pt;}
.y127{bottom:62.880000pt;}
.yec{bottom:64.013333pt;}
.y109{bottom:66.426667pt;}
.y11a{bottom:68.160000pt;}
.y5b{bottom:68.200000pt;}
.y110{bottom:68.826667pt;}
.y53{bottom:69.626667pt;}
.y84{bottom:71.520000pt;}
.y121{bottom:72.320000pt;}
.y28f{bottom:72.480000pt;}
.y75{bottom:74.253333pt;}
.yeb{bottom:76.333333pt;}
.y108{bottom:78.586667pt;}
.y119{bottom:80.160000pt;}
.y10f{bottom:80.986667pt;}
.y52{bottom:81.466667pt;}
.y5a{bottom:83.240000pt;}
.y120{bottom:84.480000pt;}
.y74{bottom:85.933333pt;}
.yb8{bottom:87.680000pt;}
.yf2{bottom:88.640000pt;}
.yea{bottom:88.653333pt;}
.y51{bottom:89.306667pt;}
.y263{bottom:90.400000pt;}
.y1a4{bottom:92.160000pt;}
.y167{bottom:93.120000pt;}
.y18c{bottom:93.920000pt;}
.y27f{bottom:95.520000pt;}
.y146{bottom:96.800000pt;}
.y73{bottom:97.453333pt;}
.y2b8{bottom:100.480000pt;}
.ye8{bottom:100.640000pt;}
.yf1{bottom:100.800000pt;}
.yf4{bottom:100.813333pt;}
.y22b{bottom:100.960000pt;}
.y106{bottom:102.880000pt;}
.y212{bottom:104.480000pt;}
.y50{bottom:105.146667pt;}
.yb7{bottom:105.280000pt;}
.y1e3{bottom:106.880000pt;}
.y262{bottom:108.000000pt;}
.y72{bottom:108.493333pt;}
.y1a3{bottom:109.760000pt;}
.y166{bottom:110.720000pt;}
.y18b{bottom:111.520000pt;}
.y37{bottom:112.960000pt;}
.yf0{bottom:113.120000pt;}
.ye2{bottom:113.280000pt;}
.y145{bottom:114.400000pt;}
.y105{bottom:115.040000pt;}
.y2b7{bottom:118.240000pt;}
.y1e2{bottom:118.560000pt;}
.y4f{bottom:120.986667pt;}
.y211{bottom:122.080000pt;}
.yb6{bottom:122.880000pt;}
.y24b{bottom:124.320000pt;}
.y261{bottom:125.600000pt;}
.y104{bottom:127.360000pt;}
.y165{bottom:128.320000pt;}
.y18a{bottom:129.120000pt;}
.y36{bottom:130.720000pt;}
.ye1{bottom:130.880000pt;}
.y27e{bottom:131.520000pt;}
.y144{bottom:132.000000pt;}
.y2b6{bottom:135.840000pt;}
.y24a{bottom:136.000000pt;}
.y1e1{bottom:136.160000pt;}
.y4e{bottom:136.986667pt;}
.y210{bottom:139.680000pt;}
.y103{bottom:139.720000pt;}
.yb5{bottom:140.640000pt;}
.y260{bottom:143.200000pt;}
.y1a2{bottom:144.986667pt;}
.y164{bottom:145.946667pt;}
.y189{bottom:146.746667pt;}
.y35{bottom:148.346667pt;}
.ye0{bottom:148.506667pt;}
.y143{bottom:149.626667pt;}
.y102{bottom:151.880000pt;}
.y4d{bottom:152.826667pt;}
.y2b5{bottom:153.466667pt;}
.y1e0{bottom:153.786667pt;}
.y20f{bottom:157.306667pt;}
.yb4{bottom:159.066667pt;}
.y25f{bottom:160.986667pt;}
.y1a1{bottom:162.746667pt;}
.y163{bottom:163.706667pt;}
.y101{bottom:164.200000pt;}
.y188{bottom:164.506667pt;}
.y34{bottom:165.946667pt;}
.ydf{bottom:166.266667pt;}
.y142{bottom:167.386667pt;}
.y27d{bottom:168.026667pt;}
.y4c{bottom:168.666667pt;}
.y2b4{bottom:171.066667pt;}
.y249{bottom:171.386667pt;}
.y1df{bottom:171.546667pt;}
.y20e{bottom:175.066667pt;}
.y100{bottom:176.360000pt;}
.yb3{bottom:176.506667pt;}
.y25e{bottom:178.586667pt;}
.y1a0{bottom:180.346667pt;}
.y162{bottom:181.306667pt;}
.y187{bottom:182.106667pt;}
.y33{bottom:183.546667pt;}
.yde{bottom:183.866667pt;}
.y4b{bottom:184.506667pt;}
.y141{bottom:184.986667pt;}
.y27c{bottom:185.626667pt;}
.yb2{bottom:188.186667pt;}
.y2b3{bottom:188.666667pt;}
.yff{bottom:188.680000pt;}
.y248{bottom:188.986667pt;}
.y1de{bottom:189.146667pt;}
.y22a{bottom:189.946667pt;}
.y20d{bottom:192.666667pt;}
.y25d{bottom:196.186667pt;}
.y19f{bottom:197.946667pt;}
.y161{bottom:198.906667pt;}
.y186{bottom:199.706667pt;}
.y4a{bottom:200.346667pt;}
.yfe{bottom:201.000000pt;}
.y32{bottom:201.146667pt;}
.ydd{bottom:201.466667pt;}
.y140{bottom:202.586667pt;}
.y27b{bottom:203.226667pt;}
.yb1{bottom:205.786667pt;}
.y2b2{bottom:206.426667pt;}
.y247{bottom:206.586667pt;}
.y1dd{bottom:206.746667pt;}
.y229{bottom:207.386667pt;}
.y20c{bottom:210.266667pt;}
.y49{bottom:212.186667pt;}
.yfd{bottom:213.160000pt;}
.y25c{bottom:214.586667pt;}
.y19e{bottom:215.546667pt;}
.y160{bottom:216.506667pt;}
.y185{bottom:217.306667pt;}
.y31{bottom:218.906667pt;}
.ydc{bottom:219.066667pt;}
.y48{bottom:220.026667pt;}
.y13f{bottom:220.186667pt;}
.y27a{bottom:220.826667pt;}
.y28e{bottom:220.986667pt;}
.yb0{bottom:223.546667pt;}
.y2b1{bottom:224.026667pt;}
.y246{bottom:224.186667pt;}
.y1dc{bottom:224.346667pt;}
.yfc{bottom:225.480000pt;}
.y20b{bottom:227.866667pt;}
.y25b{bottom:232.186667pt;}
.y19d{bottom:233.146667pt;}
.y184{bottom:234.906667pt;}
.y15f{bottom:235.066667pt;}
.y47{bottom:236.053333pt;}
.y30{bottom:236.506667pt;}
.ydb{bottom:236.666667pt;}
.y13e{bottom:237.786667pt;}
.yfb{bottom:237.800000pt;}
.y279{bottom:238.426667pt;}
.yaf{bottom:241.146667pt;}
.y2b0{bottom:241.626667pt;}
.y1db{bottom:241.946667pt;}
.y25a{bottom:243.706667pt;}
.y20a{bottom:245.466667pt;}
.yfa{bottom:249.960000pt;}
.y19c{bottom:250.906667pt;}
.y46{bottom:251.893333pt;}
.y183{bottom:252.666667pt;}
.y2f{bottom:254.106667pt;}
.yda{bottom:254.426667pt;}
.y13d{bottom:255.546667pt;}
.y15e{bottom:256.186667pt;}
.y28d{bottom:257.306667pt;}
.yae{bottom:258.746667pt;}
.y2af{bottom:259.226667pt;}
.y245{bottom:259.546667pt;}
.y1da{bottom:259.706667pt;}
.y259{bottom:261.466667pt;}
.yf9{bottom:262.280000pt;}
.y209{bottom:263.226667pt;}
.y45{bottom:267.733333pt;}
.y19b{bottom:268.506667pt;}
.y182{bottom:270.266667pt;}
.y2e{bottom:271.706667pt;}
.yd9{bottom:272.026667pt;}
.y13c{bottom:273.146667pt;}
.y278{bottom:273.786667pt;}
.yf8{bottom:274.600000pt;}
.y28c{bottom:275.866667pt;}
.yad{bottom:276.346667pt;}
.y15d{bottom:276.506667pt;}
.y2ae{bottom:276.826667pt;}
.y244{bottom:277.146667pt;}
.y1d9{bottom:277.306667pt;}
.y258{bottom:279.066667pt;}
.y208{bottom:280.826667pt;}
.y44{bottom:283.573333pt;}
.y19a{bottom:286.106667pt;}
.yf7{bottom:286.760000pt;}
.y181{bottom:287.866667pt;}
.yd8{bottom:289.626667pt;}
.y2d{bottom:290.106667pt;}
.y15a{bottom:290.600000pt;}
.y13b{bottom:290.746667pt;}
.y277{bottom:291.386667pt;}
.yac{bottom:293.946667pt;}
.y2ad{bottom:294.586667pt;}
.y243{bottom:294.746667pt;}
.y1d8{bottom:294.906667pt;}
.y43{bottom:295.413333pt;}
.y257{bottom:296.666667pt;}
.y207{bottom:298.426667pt;}
.yf6{bottom:299.080000pt;}
.y42{bottom:303.253333pt;}
.y199{bottom:303.706667pt;}
.y180{bottom:305.466667pt;}
.y158{bottom:305.480000pt;}
.y228{bottom:307.226667pt;}
.yd7{bottom:308.026667pt;}
.y2c{bottom:308.346667pt;}
.y276{bottom:308.986667pt;}
.y13a{bottom:309.146667pt;}
.yab{bottom:311.706667pt;}
.y28b{bottom:312.186667pt;}
.y242{bottom:312.346667pt;}
.y1d7{bottom:312.506667pt;}
.y256{bottom:314.266667pt;}
.y206{bottom:316.026667pt;}
.y2b{bottom:317.146667pt;}
.y41{bottom:319.093333pt;}
.y3b{bottom:320.680000pt;}
.y198{bottom:321.306667pt;}
.y17f{bottom:323.066667pt;}
.y227{bottom:324.826667pt;}
.yd6{bottom:325.626667pt;}
.y275{bottom:326.586667pt;}
.y2a{bottom:327.226667pt;}
.yaa{bottom:329.306667pt;}
.y28a{bottom:329.786667pt;}
.y1d6{bottom:330.106667pt;}
.y255{bottom:331.866667pt;}
.y205{bottom:333.626667pt;}
.y154{bottom:334.280000pt;}
.y40{bottom:335.093333pt;}
.yd5{bottom:337.306667pt;}
.y197{bottom:339.066667pt;}
.y17e{bottom:340.826667pt;}
.y226{bottom:342.586667pt;}
.y274{bottom:344.346667pt;}
.y139{bottom:345.466667pt;}
.ya9{bottom:346.906667pt;}
.y289{bottom:347.386667pt;}
.y241{bottom:347.706667pt;}
.y1d5{bottom:347.866667pt;}
.y29{bottom:348.346667pt;}
.y254{bottom:349.666667pt;}
.y3f{bottom:350.933333pt;}
.y204{bottom:351.426667pt;}
.yd4{bottom:354.946667pt;}
.y1b8{bottom:356.706667pt;}
.y196{bottom:357.506667pt;}
.y17d{bottom:358.466667pt;}
.y225{bottom:360.226667pt;}
.y273{bottom:361.986667pt;}
.y138{bottom:363.266667pt;}
.ya8{bottom:364.546667pt;}
.y2ac{bottom:365.026667pt;}
.y240{bottom:365.346667pt;}
.y288{bottom:365.826667pt;}
.y1d4{bottom:366.306667pt;}
.y3e{bottom:366.773333pt;}
.y28{bottom:366.946667pt;}
.y253{bottom:367.266667pt;}
.y203{bottom:369.026667pt;}
.yd3{bottom:372.546667pt;}
.y1b7{bottom:374.306667pt;}
.y17c{bottom:376.066667pt;}
.y224{bottom:377.826667pt;}
.y195{bottom:378.626667pt;}
.y272{bottom:379.586667pt;}
.y137{bottom:380.866667pt;}
.y3d{bottom:382.613333pt;}
.y2ab{bottom:382.786667pt;}
.y23f{bottom:382.946667pt;}
.ya7{bottom:383.266667pt;}
.y27{bottom:384.546667pt;}
.y252{bottom:384.866667pt;}
.y153{bottom:385.666667pt;}
.y202{bottom:386.626667pt;}
.y1d3{bottom:387.426667pt;}
.yd2{bottom:390.146667pt;}
.y1b6{bottom:391.906667pt;}
.y17b{bottom:393.666667pt;}
.y223{bottom:395.426667pt;}
.y194{bottom:396.066667pt;}
.y26{bottom:396.866667pt;}
.y271{bottom:397.986667pt;}
.y3c{bottom:398.453333pt;}
.y136{bottom:398.466667pt;}
.y2aa{bottom:400.386667pt;}
.ya6{bottom:400.546667pt;}
.y152{bottom:401.506667pt;}
.y287{bottom:402.306667pt;}
.y251{bottom:402.466667pt;}
.y201{bottom:404.226667pt;}
.y25{bottom:404.546667pt;}
.y1d2{bottom:404.866667pt;}
.yd1{bottom:407.746667pt;}
.y26f{bottom:409.506667pt;}
.y1b5{bottom:410.306667pt;}
.y17a{bottom:411.266667pt;}
.ya5{bottom:412.226667pt;}
.y222{bottom:413.026667pt;}
.y270{bottom:415.586667pt;}
.y135{bottom:416.066667pt;}
.y1d1{bottom:416.546667pt;}
.y71{bottom:417.493333pt;}
.y151{bottom:417.826667pt;}
.y2a9{bottom:417.986667pt;}
.y23e{bottom:418.306667pt;}
.y286{bottom:419.906667pt;}
.y250{bottom:420.066667pt;}
.y200{bottom:421.826667pt;}
.y24{bottom:425.186667pt;}
.yd0{bottom:425.506667pt;}
.y26e{bottom:427.266667pt;}
.y179{bottom:429.026667pt;}
.ya4{bottom:429.826667pt;}
.y221{bottom:430.786667pt;}
.y1b4{bottom:431.586667pt;}
.y134{bottom:433.666667pt;}
.y1d0{bottom:434.306667pt;}
.y150{bottom:435.426667pt;}
.y2a8{bottom:435.586667pt;}
.y23d{bottom:435.906667pt;}
.y24f{bottom:437.826667pt;}
.y285{bottom:438.306667pt;}
.y1ff{bottom:439.586667pt;}
.ycf{bottom:443.106667pt;}
.y26d{bottom:444.866667pt;}
.y23{bottom:445.986667pt;}
.y178{bottom:446.626667pt;}
.ya3{bottom:447.426667pt;}
.y220{bottom:448.386667pt;}
.y133{bottom:451.426667pt;}
.y1cf{bottom:451.906667pt;}
.y1b3{bottom:452.706667pt;}
.y14f{bottom:453.186667pt;}
.y23c{bottom:453.506667pt;}
.y24e{bottom:455.426667pt;}
.y1fe{bottom:457.986667pt;}
.y284{bottom:459.426667pt;}
.yce{bottom:460.706667pt;}
.y26c{bottom:462.466667pt;}
.y177{bottom:464.226667pt;}
.ya2{bottom:465.026667pt;}
.y21f{bottom:465.986667pt;}
.y22{bottom:466.626667pt;}
.y132{bottom:469.026667pt;}
.y1ce{bottom:469.506667pt;}
.y1b2{bottom:470.146667pt;}
.y14e{bottom:470.786667pt;}
.y2a7{bottom:470.946667pt;}
.y23b{bottom:471.106667pt;}
.y24d{bottom:473.026667pt;}
.ycd{bottom:478.306667pt;}
.y1fd{bottom:479.106667pt;}
.y26b{bottom:480.066667pt;}
.y176{bottom:481.826667pt;}
.ya1{bottom:483.906667pt;}
.y21e{bottom:484.386667pt;}
.y131{bottom:486.626667pt;}
.y1cd{bottom:487.106667pt;}
.y21{bottom:487.266667pt;}
.y14d{bottom:488.386667pt;}
.y2a6{bottom:488.546667pt;}
.y23a{bottom:488.706667pt;}
.y24c{bottom:490.626667pt;}
.y283{bottom:495.746667pt;}
.ycc{bottom:495.906667pt;}
.y1fc{bottom:496.546667pt;}
.y26a{bottom:497.666667pt;}
.y175{bottom:499.426667pt;}
.ya0{bottom:501.026667pt;}
.y130{bottom:504.226667pt;}
.y1cc{bottom:504.706667pt;}
.y21d{bottom:505.506667pt;}
.y14c{bottom:505.986667pt;}
.y2a5{bottom:506.146667pt;}
.y239{bottom:506.466667pt;}
.y20{bottom:508.066667pt;}
.y1fb{bottom:508.226667pt;}
.y9f{bottom:512.706667pt;}
.y282{bottom:513.506667pt;}
.ycb{bottom:513.666667pt;}
.y269{bottom:515.426667pt;}
.y174{bottom:517.186667pt;}
.y12f{bottom:521.826667pt;}
.y21c{bottom:523.106667pt;}
.y1cb{bottom:523.266667pt;}
.y14b{bottom:523.586667pt;}
.y2a4{bottom:523.746667pt;}
.y238{bottom:524.066667pt;}
.y1fa{bottom:525.986667pt;}
.y1f{bottom:528.706667pt;}
.y9e{bottom:530.306667pt;}
.y281{bottom:531.106667pt;}
.yca{bottom:531.266667pt;}
.y268{bottom:533.026667pt;}
.y173{bottom:534.786667pt;}
.y12e{bottom:539.586667pt;}
.y14a{bottom:541.346667pt;}
.y237{bottom:541.666667pt;}
.y1f9{bottom:543.586667pt;}
.y1ca{bottom:544.386667pt;}
.y9d{bottom:547.906667pt;}
.y59{bottom:548.213333pt;}
.yc9{bottom:548.866667pt;}
.y280{bottom:549.506667pt;}
.y267{bottom:550.626667pt;}
.y172{bottom:552.386667pt;}
.y12d{bottom:557.213333pt;}
.y149{bottom:558.973333pt;}
.y2a3{bottom:559.133333pt;}
.y236{bottom:559.293333pt;}
.y1f8{bottom:561.213333pt;}
.y1c9{bottom:561.853333pt;}
.y9c{bottom:565.533333pt;}
.yc8{bottom:566.493333pt;}
.y266{bottom:568.253333pt;}
.y1b1{bottom:570.013333pt;}
.y171{bottom:570.813333pt;}
.y1c8{bottom:573.533333pt;}
.y12c{bottom:574.813333pt;}
.y148{bottom:576.573333pt;}
.y2a2{bottom:576.733333pt;}
.y235{bottom:576.893333pt;}
.y1e{bottom:577.533333pt;}
.y1f7{bottom:578.813333pt;}
.y9b{bottom:583.293333pt;}
.yc7{bottom:584.093333pt;}
.y265{bottom:585.853333pt;}
.y1b0{bottom:587.613333pt;}
.y1c7{bottom:591.133333pt;}
.y1d{bottom:591.293333pt;}
.y170{bottom:591.933333pt;}
.y12b{bottom:593.533333pt;}
.y2a1{bottom:594.333333pt;}
.y234{bottom:594.653333pt;}
.y147{bottom:594.813333pt;}
.y1f6{bottom:596.413333pt;}
.y9a{bottom:600.893333pt;}
.yc6{bottom:601.693333pt;}
.y264{bottom:603.613333pt;}
.y1c{bottom:605.053333pt;}
.y1af{bottom:605.373333pt;}
.y1c6{bottom:608.893333pt;}
.y16f{bottom:609.693333pt;}
.y2a0{bottom:611.933333pt;}
.y233{bottom:612.253333pt;}
.y12a{bottom:613.533333pt;}
.y1f5{bottom:614.173333pt;}
.y99{bottom:618.493333pt;}
.y1b{bottom:618.813333pt;}
.yc5{bottom:619.453333pt;}
.y16e{bottom:621.213333pt;}
.y1ae{bottom:622.973333pt;}
.y1c5{bottom:626.493333pt;}
.yf5{bottom:627.773333pt;}
.y29f{bottom:629.533333pt;}
.y232{bottom:629.853333pt;}
.y1f4{bottom:631.773333pt;}
.y1a{bottom:632.733333pt;}
.y98{bottom:636.093333pt;}
.yc4{bottom:637.053333pt;}
.y16d{bottom:638.813333pt;}
.y1ad{bottom:640.573333pt;}
.y19{bottom:642.493333pt;}
.y1c4{bottom:644.093333pt;}
.y29e{bottom:647.293333pt;}
.y231{bottom:647.453333pt;}
.y1f3{bottom:649.373333pt;}
.y64{bottom:653.053333pt;}
.y97{bottom:653.693333pt;}
.y18{bottom:654.653333pt;}
.y16c{bottom:656.413333pt;}
.y1ac{bottom:658.173333pt;}
.y1c3{bottom:661.693333pt;}
.y29d{bottom:664.893333pt;}
.y230{bottom:665.053333pt;}
.y17{bottom:665.853333pt;}
.y1f2{bottom:666.973333pt;}
.y96{bottom:671.453333pt;}
.yc3{bottom:672.253333pt;}
.y16b{bottom:674.013333pt;}
.y1ab{bottom:675.773333pt;}
.y16{bottom:676.893333pt;}
.y1c2{bottom:679.293333pt;}
.y29c{bottom:682.493333pt;}
.y22f{bottom:682.813333pt;}
.y1f1{bottom:684.573333pt;}
.y15{bottom:688.413333pt;}
.y95{bottom:689.853333pt;}
.y16a{bottom:691.773333pt;}
.y1aa{bottom:693.533333pt;}
.y1c1{bottom:697.053333pt;}
.y29b{bottom:700.093333pt;}
.y14{bottom:700.733333pt;}
.y22e{bottom:701.213333pt;}
.y1f0{bottom:702.333333pt;}
.y193{bottom:707.613333pt;}
.y94{bottom:708.413333pt;}
.y169{bottom:709.373333pt;}
.y1a9{bottom:711.133333pt;}
.y13{bottom:712.093333pt;}
.y1c0{bottom:714.653333pt;}
.y29a{bottom:717.693333pt;}
.y1ef{bottom:719.933333pt;}
.y22d{bottom:722.333333pt;}
.y107{bottom:722.506667pt;}
.y192{bottom:725.213333pt;}
.yc2{bottom:725.853333pt;}
.y168{bottom:726.973333pt;}
.y1a8{bottom:728.733333pt;}
.y1bf{bottom:732.253333pt;}
.y299{bottom:735.453333pt;}
.y12{bottom:735.933333pt;}
.yc1{bottom:737.533333pt;}
.y191{bottom:742.813333pt;}
.y22c{bottom:743.453333pt;}
.y93{bottom:744.573333pt;}
.y219{bottom:746.333333pt;}
.y1a7{bottom:747.133333pt;}
.y1be{bottom:749.853333pt;}
.y298{bottom:753.853333pt;}
.yc0{bottom:755.133333pt;}
.y190{bottom:761.253333pt;}
.y92{bottom:762.213333pt;}
.y11{bottom:763.333333pt;}
.y218{bottom:763.973333pt;}
.y1bd{bottom:767.493333pt;}
.y1a6{bottom:768.293333pt;}
.y1ee{bottom:772.773333pt;}
.ybf{bottom:773.573333pt;}
.y10{bottom:777.253333pt;}
.y91{bottom:779.973333pt;}
.y217{bottom:781.733333pt;}
.y18f{bottom:782.533333pt;}
.y1bc{bottom:785.253333pt;}
.y1a5{bottom:785.893333pt;}
.y297{bottom:790.213333pt;}
.y1ed{bottom:790.533333pt;}
.ybe{bottom:791.173333pt;}
.yf{bottom:795.333333pt;}
.y90{bottom:797.573333pt;}
.y216{bottom:799.333333pt;}
.y21b{bottom:800.133333pt;}
.ybd{bottom:802.853333pt;}
.y18e{bottom:803.653333pt;}
.y296{bottom:807.813333pt;}
.y1ec{bottom:808.133333pt;}
.ye{bottom:809.413333pt;}
.ye9{bottom:813.720000pt;}
.ye7{bottom:813.733333pt;}
.y8f{bottom:815.173333pt;}
.y215{bottom:816.933333pt;}
.ybc{bottom:820.453333pt;}
.y18d{bottom:821.093333pt;}
.yd{bottom:821.253333pt;}
.y1eb{bottom:825.733333pt;}
.y295{bottom:826.213333pt;}
.y8e{bottom:832.773333pt;}
.y214{bottom:835.333333pt;}
.ybb{bottom:838.053333pt;}
.y21a{bottom:838.693333pt;}
.yc{bottom:840.773333pt;}
.y1ea{bottom:843.333333pt;}
.y8d{bottom:850.373333pt;}
.y1bb{bottom:855.653333pt;}
.y213{bottom:856.453333pt;}
.yba{bottom:856.773333pt;}
.y1e9{bottom:860.933333pt;}
.y294{bottom:862.693333pt;}
.yb{bottom:864.613333pt;}
.y8c{bottom:868.133333pt;}
.yb9{bottom:874.053333pt;}
.y1ba{bottom:874.213333pt;}
.y1e8{bottom:878.693333pt;}
.y293{bottom:880.293333pt;}
.y8b{bottom:885.733333pt;}
.y1b9{bottom:891.813333pt;}
.ya{bottom:892.933333pt;}
.y1e7{bottom:896.293333pt;}
.y292{bottom:898.693333pt;}
.y8a{bottom:903.333333pt;}
.y1e6{bottom:913.893333pt;}
.y89{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y1e5{bottom:932.293333pt;}
.y291{bottom:935.013333pt;}
.y88{bottom:938.533333pt;}
.y8{bottom:945.093333pt;}
.y1e4{bottom:953.413333pt;}
.y87{bottom:956.133333pt;}
.ye5{bottom:957.413333pt;}
.y61{bottom:974.400000pt;}
.y83{bottom:981.280000pt;}
.ye3{bottom:983.680000pt;}
.y82{bottom:998.400000pt;}
.y38{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h39{height:5.562500pt;}
.h2{height:12.000000pt;}
.h28{height:14.066667pt;}
.h34{height:14.226667pt;}
.h17{height:15.040000pt;}
.h15{height:16.125000pt;}
.h1d{height:19.680000pt;}
.h13{height:20.728125pt;}
.h25{height:26.368125pt;}
.hb{height:26.381250pt;}
.hd{height:27.523125pt;}
.h33{height:28.146667pt;}
.h32{height:28.338667pt;}
.h16{height:32.250000pt;}
.h11{height:35.114107pt;}
.h2e{height:35.761250pt;}
.h5{height:36.431250pt;}
.h23{height:36.920625pt;}
.h1c{height:37.410000pt;}
.hf{height:39.571875pt;}
.h10{height:41.442606pt;}
.h2b{height:42.063437pt;}
.hc{height:42.084375pt;}
.h4{height:42.399867pt;}
.h2d{height:42.649687pt;}
.h18{height:43.215000pt;}
.h37{height:43.782500pt;}
.h36{height:44.301250pt;}
.h1f{height:46.240000pt;}
.h12{height:47.109375pt;}
.h27{height:47.742188pt;}
.h19{height:48.375000pt;}
.he{height:49.148438pt;}
.h35{height:52.108438pt;}
.h3{height:52.134375pt;}
.h38{height:52.478750pt;}
.h26{height:53.535000pt;}
.ha{height:57.787500pt;}
.h9{height:58.530000pt;}
.h20{height:58.563750pt;}
.h24{height:62.781250pt;}
.h14{height:64.500000pt;}
.h1e{height:66.625000pt;}
.h22{height:66.750000pt;}
.h7{height:76.964840pt;}
.h8{height:85.785000pt;}
.h1b{height:90.440000pt;}
.h2f{height:90.580000pt;}
.h30{height:94.076000pt;}
.h31{height:94.080000pt;}
.h21{height:118.240000pt;}
.h29{height:122.712000pt;}
.h2a{height:122.720000pt;}
.h2c{height:308.666667pt;}
.h1a{height:409.346667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w13{width:47.986667pt;}
.w15{width:48.000000pt;}
.w14{width:48.026667pt;}
.w3{width:72.952000pt;}
.w9{width:137.306667pt;}
.wb{width:143.693333pt;}
.wd{width:144.013333pt;}
.w10{width:144.026667pt;}
.w12{width:149.773333pt;}
.wc{width:156.026667pt;}
.wf{width:156.040000pt;}
.wa{width:160.346667pt;}
.w7{width:167.386667pt;}
.we{width:174.106667pt;}
.w11{width:174.120000pt;}
.w6{width:473.546667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:3.780000pt;}
.x2{left:7.192000pt;}
.x11{left:9.592000pt;}
.x25{left:12.480000pt;}
.x17{left:18.893333pt;}
.x20{left:37.280000pt;}
.x22{left:56.466667pt;}
.x3{left:65.746667pt;}
.x23{left:71.200000pt;}
.x10{left:72.680000pt;}
.x16{left:82.760000pt;}
.x13{left:83.720000pt;}
.xc{left:90.432000pt;}
.x1{left:96.040000pt;}
.xb{left:97.152000pt;}
.x1d{left:102.112000pt;}
.x1b{left:103.392000pt;}
.x1e{left:107.720000pt;}
.x7{left:115.872000pt;}
.xe{left:117.952000pt;}
.x19{left:119.552000pt;}
.x6{left:129.952000pt;}
.x4{left:169.000000pt;}
.x1f{left:251.426667pt;}
.x12{left:269.026667pt;}
.x14{left:275.866667pt;}
.x9{left:285.986667pt;}
.x8{left:316.706667pt;}
.xd{left:320.546667pt;}
.x15{left:330.293333pt;}
.x5{left:396.893333pt;}
.xa{left:405.053333pt;}
.x21{left:407.466667pt;}
.xf{left:436.253333pt;}
.x18{left:551.336000pt;}
.x1c{left:579.173333pt;}
.x24{left:586.053333pt;}
.x26{left:634.053333pt;}
.x27{left:682.080000pt;}
.x1a{left:710.400000pt;}
}




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