
    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_86261da7f8d852548e2b15bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064000;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_f6e0fbd31336bab014e3b053.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f0bb306a5ca7b70360c3236a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eeed3cb9e302c44eeafba15b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_5ad6ea3f0c47740123a27ab2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fa1331716cdff6784be2cbc8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5047206c097a9b59a549b627.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.107422;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_6af18184b2d9a98462830ee1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_3f397906790ac86dcf9371ef.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104492;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_3d06d51ce33f276e5a36f92e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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_2ba27ee0378525ea86791656.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ec78cfa11f24ae801dd2c3e5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.822754;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.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);}
.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);}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.120000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.828000px;}
.lsb{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.504000px;}
.ls15{letter-spacing:-0.468000px;}
.ls6{letter-spacing:-0.457800px;}
.ls2{letter-spacing:-0.414600px;}
.ls29{letter-spacing:-0.342000px;}
.ls12{letter-spacing:-0.305400px;}
.ls1f{letter-spacing:-0.270000px;}
.ls8{letter-spacing:-0.262200px;}
.ls25{letter-spacing:-0.252000px;}
.ls1d{letter-spacing:-0.178800px;}
.ls7{letter-spacing:-0.152400px;}
.ls4{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.089400px;}
.lsa{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.018000px;}
.ls20{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.108000px;}
.ls23{letter-spacing:0.126000px;}
.ls10{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.150000px;}
.ls24{letter-spacing:0.162000px;}
.ls11{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.252000px;}
.ls1a{letter-spacing:0.262080px;}
.ls1e{letter-spacing:0.262200px;}
.ls1c{letter-spacing:0.305280px;}
.ls5{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.468000px;}
.lsd{letter-spacing:0.541200px;}
.ls2a{letter-spacing:0.612000px;}
.ls9{letter-spacing:0.702000px;}
.ls19{letter-spacing:1.745280px;}
.ls22{letter-spacing:4.428000px;}
.ls1b{letter-spacing:10.385280px;}
.lsf{letter-spacing:12.545280px;}
.ls18{letter-spacing:21.905280px;}
.ls2b{letter-spacing:34.841280px;}
.lsc{letter-spacing:36.305280px;}
.ls28{letter-spacing:59.321280px;}
.ls17{letter-spacing:193.961280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-66.240000px;}
.ws17{word-spacing:-54.126000px;}
.ws19{word-spacing:-54.000000px;}
.ws1e{word-spacing:-18.676920px;}
.ws1d{word-spacing:-18.676800px;}
.ws5{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.305520px;}
.ws7{word-spacing:-18.262320px;}
.ws8{word-spacing:-18.152520px;}
.wsd{word-spacing:-18.109320px;}
.wsa{word-spacing:-17.694720px;}
.ws3{word-spacing:-17.586720px;}
.ws0{word-spacing:-16.200000px;}
.ws1a{word-spacing:-15.228000px;}
.ws18{word-spacing:-15.174000px;}
.ws12{word-spacing:-15.030000px;}
.ws16{word-spacing:-15.012000px;}
.ws1c{word-spacing:-14.670000px;}
.ws9{word-spacing:-12.186000px;}
.wsb{word-spacing:-12.150480px;}
.ws6{word-spacing:-11.609280px;}
.wsc{word-spacing:-11.519880px;}
.ws13{word-spacing:-11.430480px;}
.ws10{word-spacing:-10.224000px;}
.wse{word-spacing:-10.080000px;}
.wsf{word-spacing:-10.008000px;}
.ws11{word-spacing:-9.540000px;}
.ws15{word-spacing:-8.406720px;}
.ws14{word-spacing:-7.884000px;}
.ws1b{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
._5{margin-left:-2.668824px;}
._0{margin-left:-1.263600px;}
._1{width:1.344024px;}
._9{width:2.346192px;}
._e{width:3.393936px;}
._19{width:4.438008px;}
._7{width:5.439360px;}
._8{width:6.743520px;}
._b{width:8.479200px;}
._17{width:9.943920px;}
._d{width:11.133600px;}
._11{width:12.534456px;}
._18{width:13.723416px;}
._10{width:15.372720px;}
._f{width:16.692480px;}
._28{width:18.144000px;}
._27{width:19.224000px;}
._a{width:20.269440px;}
._21{width:21.358728px;}
._c{width:22.384344px;}
._14{width:23.387760px;}
._20{width:24.560592px;}
._1c{width:26.496000px;}
._1d{width:28.218240px;}
._1e{width:29.415600px;}
._1f{width:30.648960px;}
._12{width:31.861440px;}
._13{width:33.456240px;}
._1a{width:34.916400px;}
._3{width:36.794880px;}
._35{width:38.090880px;}
._25{width:39.560400px;}
._23{width:40.605120px;}
._24{width:41.794320px;}
._15{width:44.054640px;}
._2d{width:45.123336px;}
._1b{width:46.301760px;}
._37{width:47.460024px;}
._2c{width:48.654000px;}
._44{width:52.930800px;}
._36{width:54.383040px;}
._40{width:55.394640px;}
._3f{width:56.446560px;}
._38{width:57.605040px;}
._4{width:59.114880px;}
._2e{width:60.876216px;}
._34{width:61.884000px;}
._26{width:66.798000px;}
._30{width:68.148000px;}
._4b{width:69.358320px;}
._3e{width:72.471600px;}
._33{width:74.034000px;}
._29{width:80.370000px;}
._4a{width:81.893520px;}
._46{width:85.388400px;}
._45{width:86.774400px;}
._2f{width:88.488000px;}
._41{width:97.326984px;}
._31{width:135.810000px;}
._32{width:159.732000px;}
._3c{width:175.469760px;}
._3d{width:176.672160px;}
._22{width:193.961280px;}
._47{width:198.786240px;}
._48{width:199.789920px;}
._39{width:211.504320px;}
._2a{width:224.748000px;}
._43{width:245.419200px;}
._42{width:246.810240px;}
._3a{width:258.336000px;}
._49{width:259.337520px;}
._2b{width:368.982000px;}
._16{width:470.441280px;}
._2{width:837.534720px;}
._6{width:845.741280px;}
._3b{width:941.601600px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.y22c{bottom:-19.440000px;}
.y0{bottom:0.000000px;}
.y130{bottom:1.980000px;}
.y1e7{bottom:8.100000px;}
.yfc{bottom:10.605000px;}
.y133{bottom:10.620000px;}
.y1ee{bottom:10.650000px;}
.y13b{bottom:10.665000px;}
.y1f5{bottom:10.785000px;}
.y108{bottom:10.800000px;}
.yf8{bottom:10.965000px;}
.y1f0{bottom:10.980000px;}
.y1ed{bottom:11.010000px;}
.y1f4{bottom:11.145000px;}
.y106{bottom:11.160000px;}
.y1eb{bottom:11.880000px;}
.y22b{bottom:12.060000px;}
.y13{bottom:13.140000px;}
.y12{bottom:13.320000px;}
.y2b{bottom:13.500000px;}
.y20{bottom:14.220000px;}
.y17c{bottom:15.465000px;}
.y1ea{bottom:16.020000px;}
.y27{bottom:17.640000px;}
.y160{bottom:19.440000px;}
.y12f{bottom:19.800000px;}
.yfd{bottom:22.305000px;}
.y109{bottom:22.320000px;}
.y15d{bottom:22.500000px;}
.yfa{bottom:22.665000px;}
.y15f{bottom:22.680000px;}
.y163{bottom:23.400000px;}
.y43{bottom:23.580000px;}
.y18a{bottom:23.760000px;}
.y22{bottom:25.200000px;}
.y1d{bottom:25.380000px;}
.y185{bottom:27.345000px;}
.y22a{bottom:28.620000px;}
.y15c{bottom:31.140000px;}
.y18f{bottom:33.660000px;}
.yfb{bottom:33.825000px;}
.yff{bottom:34.005000px;}
.y107{bottom:34.020000px;}
.y101{bottom:34.365000px;}
.y105{bottom:34.380000px;}
.y12e{bottom:37.620000px;}
.y19{bottom:41.580000px;}
.y18{bottom:41.760000px;}
.y162{bottom:46.800000px;}
.y184{bottom:50.745000px;}
.y188{bottom:51.105000px;}
.y42{bottom:52.020000px;}
.y1c{bottom:53.640000px;}
.y1e{bottom:54.720000px;}
.y12d{bottom:55.260000px;}
.y18e{bottom:56.880000px;}
.y196{bottom:57.240000px;}
.y103{bottom:57.585000px;}
.yd{bottom:57.600000px;}
.y17f{bottom:62.625000px;}
.y191{bottom:68.940000px;}
.y174{bottom:68.970000px;}
.y161{bottom:69.660000px;}
.y54{bottom:70.200000px;}
.y2f{bottom:71.280000px;}
.y183{bottom:74.325000px;}
.yc{bottom:77.760000px;}
.y41{bottom:80.460000px;}
.y195{bottom:80.640000px;}
.y17a{bottom:80.850000px;}
.y18d{bottom:81.000000px;}
.y17e{bottom:85.665000px;}
.y53{bottom:89.100000px;}
.y2e{bottom:91.440000px;}
.y173{bottom:92.190000px;}
.y190{bottom:92.340000px;}
.y187{bottom:97.185000px;}
.y182{bottom:97.545000px;}
.y194{bottom:103.860000px;}
.y16b{bottom:103.890000px;}
.y18c{bottom:104.400000px;}
.y40{bottom:108.900000px;}
.y17d{bottom:109.245000px;}
.y1c2{bottom:110.340000px;}
.y2d{bottom:111.600000px;}
.y165{bottom:114.870000px;}
.y172{bottom:115.410000px;}
.y229{bottom:115.560000px;}
.yec{bottom:117.900000px;}
.y10a{bottom:120.240000px;}
.y157{bottom:120.420000px;}
.y181{bottom:120.585000px;}
.y186{bottom:120.945000px;}
.y1b2{bottom:123.120000px;}
.y207{bottom:126.180000px;}
.y193{bottom:127.080000px;}
.y16a{bottom:127.110000px;}
.y18b{bottom:127.620000px;}
.yd9{bottom:129.420000px;}
.yc0{bottom:129.960000px;}
.y243{bottom:131.580000px;}
.y104{bottom:136.080000px;}
.y1e5{bottom:136.260000px;}
.y265{bottom:137.340000px;}
.y3f{bottom:137.370000px;}
.y1c1{bottom:138.780000px;}
.y171{bottom:138.810000px;}
.y76{bottom:139.140000px;}
.y228{bottom:144.000000px;}
.y180{bottom:144.165000px;}
.y12b{bottom:145.080000px;}
.yeb{bottom:146.340000px;}
.y22f{bottom:146.520000px;}
.y156{bottom:148.860000px;}
.y169{bottom:150.330000px;}
.y192{bottom:150.480000px;}
.y1b1{bottom:151.560000px;}
.y206{bottom:155.880000px;}
.y52{bottom:156.420000px;}
.yd8{bottom:157.500000px;}
.y97{bottom:158.220000px;}
.ybf{bottom:158.400000px;}
.ya{bottom:159.480000px;}
.y242{bottom:160.200000px;}
.y170{bottom:162.030000px;}
.y1e4{bottom:164.700000px;}
.y264{bottom:165.780000px;}
.y3e{bottom:165.810000px;}
.y1c0{bottom:167.220000px;}
.y75{bottom:167.580000px;}
.y227{bottom:172.620000px;}
.y179{bottom:173.730000px;}
.y168{bottom:174.090000px;}
.yea{bottom:174.780000px;}
.y116{bottom:174.960000px;}
.y155{bottom:177.300000px;}
.y1b0{bottom:180.180000px;}
.y51{bottom:182.340000px;}
.y102{bottom:183.465000px;}
.y205{bottom:184.350000px;}
.y16f{bottom:185.250000px;}
.y12a{bottom:185.610000px;}
.yd7{bottom:185.970000px;}
.y96{bottom:186.870000px;}
.y241{bottom:188.670000px;}
.y17b{bottom:192.465000px;}
.y9{bottom:192.990000px;}
.y10{bottom:193.170000px;}
.y3d{bottom:194.250000px;}
.y74{bottom:196.230000px;}
.y167{bottom:197.310000px;}
.y226{bottom:201.090000px;}
.ye9{bottom:203.250000px;}
.y154{bottom:205.770000px;}
.y1bf{bottom:207.930000px;}
.y50{bottom:208.110000px;}
.y16e{bottom:208.650000px;}
.y2a{bottom:209.010000px;}
.y204{bottom:212.790000px;}
.y129{bottom:213.870000px;}
.yd6{bottom:214.410000px;}
.y95{bottom:215.310000px;}
.ybe{bottom:216.390000px;}
.y240{bottom:217.110000px;}
.y166{bottom:220.710000px;}
.y1e3{bottom:221.610000px;}
.y3c{bottom:222.870000px;}
.y73{bottom:224.670000px;}
.y8{bottom:227.730000px;}
.y100{bottom:230.805000px;}
.ye8{bottom:231.690000px;}
.y16d{bottom:232.230000px;}
.y4f{bottom:234.030000px;}
.y153{bottom:234.210000px;}
.y1be{bottom:236.190000px;}
.y225{bottom:241.590000px;}
.y128{bottom:242.310000px;}
.yd5{bottom:242.850000px;}
.y94{bottom:243.750000px;}
.y178{bottom:243.930000px;}
.ybd{bottom:244.830000px;}
.y23f{bottom:245.550000px;}
.y1af{bottom:248.970000px;}
.y257{bottom:250.050000px;}
.y1e2{bottom:250.230000px;}
.y3b{bottom:251.310000px;}
.y72{bottom:253.110000px;}
.y16c{bottom:255.630000px;}
.y29{bottom:256.350000px;}
.y4e{bottom:259.950000px;}
.ye7{bottom:260.130000px;}
.y7{bottom:262.470000px;}
.y152{bottom:262.650000px;}
.y1bd{bottom:264.630000px;}
.y177{bottom:266.790000px;}
.y127{bottom:270.750000px;}
.yd4{bottom:271.290000px;}
.y93{bottom:272.190000px;}
.y23e{bottom:273.990000px;}
.ybc{bottom:274.530000px;}
.y1ae{bottom:277.590000px;}
.yfe{bottom:278.145000px;}
.y256{bottom:278.490000px;}
.y1e1{bottom:278.670000px;}
.y3a{bottom:279.750000px;}
.y71{bottom:281.550000px;}
.y224{bottom:282.270000px;}
.y4d{bottom:285.870000px;}
.y115{bottom:288.570000px;}
.y176{bottom:290.550000px;}
.y151{bottom:291.090000px;}
.y1bc{bottom:293.070000px;}
.y126{bottom:299.190000px;}
.yd3{bottom:299.910000px;}
.y92{bottom:300.630000px;}
.ye6{bottom:300.810000px;}
.y1cc{bottom:300.990000px;}
.y23d{bottom:302.430000px;}
.ybb{bottom:302.970000px;}
.y28{bottom:303.510000px;}
.y1ad{bottom:306.030000px;}
.y255{bottom:306.930000px;}
.y1e0{bottom:307.110000px;}
.y39{bottom:308.190000px;}
.y223{bottom:310.530000px;}
.y4c{bottom:311.610000px;}
.y175{bottom:313.440000px;}
.y114{bottom:317.010000px;}
.y150{bottom:319.710000px;}
.y1bb{bottom:321.510000px;}
.y70{bottom:322.230000px;}
.yf9{bottom:325.485000px;}
.y203{bottom:327.810000px;}
.yd2{bottom:328.350000px;}
.y91{bottom:329.070000px;}
.y23c{bottom:330.870000px;}
.yba{bottom:331.410000px;}
.yad{bottom:333.570000px;}
.y1ac{bottom:334.470000px;}
.y254{bottom:335.370000px;}
.y1df{bottom:335.730000px;}
.y38{bottom:336.630000px;}
.y4b{bottom:337.530000px;}
.y125{bottom:339.870000px;}
.y113{bottom:345.630000px;}
.y14f{bottom:348.150000px;}
.y1ba{bottom:349.950000px;}
.y6f{bottom:350.490000px;}
.y26{bottom:350.670000px;}
.y222{bottom:351.210000px;}
.yd1{bottom:356.790000px;}
.y202{bottom:357.330000px;}
.y90{bottom:357.510000px;}
.y23b{bottom:359.310000px;}
.yb9{bottom:359.850000px;}
.yac{bottom:362.010000px;}
.y1ab{bottom:362.910000px;}
.y4a{bottom:363.450000px;}
.y253{bottom:363.810000px;}
.y1de{bottom:365.070000px;}
.y37{bottom:365.115000px;}
.y164{bottom:366.345000px;}
.y124{bottom:368.130000px;}
.y1cb{bottom:369.750000px;}
.y112{bottom:374.070000px;}
.yf7{bottom:374.265000px;}
.y14e{bottom:376.590000px;}
.y1b9{bottom:378.390000px;}
.y6e{bottom:378.930000px;}
.y221{bottom:379.290000px;}
.yd0{bottom:385.230000px;}
.y201{bottom:385.770000px;}
.y8f{bottom:385.950000px;}
.y23a{bottom:387.750000px;}
.y49{bottom:389.190000px;}
.yab{bottom:390.450000px;}
.y1aa{bottom:391.350000px;}
.y252{bottom:392.430000px;}
.y263{bottom:393.510000px;}
.y36{bottom:393.555000px;}
.y1dd{bottom:393.690000px;}
.y123{bottom:396.570000px;}
.y25{bottom:398.010000px;}
.yb8{bottom:401.610000px;}
.y111{bottom:402.510000px;}
.y14d{bottom:405.030000px;}
.y6d{bottom:407.370000px;}
.y220{bottom:407.730000px;}
.y268{bottom:411.870000px;}
.ycf{bottom:413.670000px;}
.y8e{bottom:414.390000px;}
.y48{bottom:415.110000px;}
.y200{bottom:415.290000px;}
.yf6{bottom:416.910000px;}
.yaa{bottom:418.890000px;}
.y1b8{bottom:419.070000px;}
.y251{bottom:420.870000px;}
.y262{bottom:421.950000px;}
.y35{bottom:421.995000px;}
.y1dc{bottom:423.210000px;}
.y122{bottom:425.055000px;}
.y1ca{bottom:426.495000px;}
.y22e{bottom:426.675000px;}
.yb7{bottom:429.915000px;}
.y110{bottom:430.995000px;}
.y239{bottom:431.175000px;}
.y1a9{bottom:432.075000px;}
.y14c{bottom:433.515000px;}
.y6c{bottom:435.855000px;}
.y21f{bottom:436.215000px;}
.y47{bottom:441.075000px;}
.ye5{bottom:443.055000px;}
.y1ff{bottom:445.035000px;}
.y24{bottom:446.295000px;}
.y250{bottom:449.355000px;}
.y34{bottom:450.435000px;}
.y1db{bottom:451.695000px;}
.y121{bottom:453.675000px;}
.yce{bottom:454.395000px;}
.y1c9{bottom:454.935000px;}
.y8d{bottom:455.115000px;}
.yb6{bottom:458.355000px;}
.y10f{bottom:459.435000px;}
.ya9{bottom:459.615000px;}
.y1a8{bottom:460.335000px;}
.y14b{bottom:461.955000px;}
.y6b{bottom:464.295000px;}
.y21e{bottom:464.835000px;}
.y46{bottom:466.995000px;}
.ye4{bottom:471.495000px;}
.y238{bottom:471.675000px;}
.y1fe{bottom:474.555000px;}
.y24f{bottom:477.795000px;}
.y33{bottom:479.055000px;}
.y1da{bottom:480.135000px;}
.y120{bottom:482.115000px;}
.ycd{bottom:482.655000px;}
.y8c{bottom:483.375000px;}
.yf5{bottom:483.555000px;}
.yb5{bottom:486.795000px;}
.ya8{bottom:487.875000px;}
.y1a7{bottom:488.775000px;}
.y14a{bottom:490.395000px;}
.y6a{bottom:492.735000px;}
.y21d{bottom:493.275000px;}
.y23{bottom:494.535000px;}
.y267{bottom:495.615000px;}
.ye3{bottom:499.935000px;}
.y1fd{bottom:502.995000px;}
.y45{bottom:506.235000px;}
.y32{bottom:507.495000px;}
.y1d9{bottom:508.575000px;}
.y11f{bottom:510.555000px;}
.ycc{bottom:511.095000px;}
.y8b{bottom:511.815000px;}
.yb4{bottom:515.235000px;}
.ya7{bottom:516.315000px;}
.y149{bottom:518.835000px;}
.y69{bottom:521.175000px;}
.y21c{bottom:521.715000px;}
.y1a6{bottom:523.155000px;}
.ye2{bottom:528.375000px;}
.y1fc{bottom:531.435000px;}
.y44{bottom:534.495000px;}
.y24e{bottom:534.675000px;}
.y31{bottom:535.935000px;}
.y266{bottom:536.115000px;}
.y1d8{bottom:537.015000px;}
.y11e{bottom:538.995000px;}
.ycb{bottom:539.535000px;}
.y8a{bottom:540.435000px;}
.yb3{bottom:543.675000px;}
.ya6{bottom:544.755000px;}
.y1a5{bottom:545.655000px;}
.y148{bottom:547.275000px;}
.y68{bottom:549.795000px;}
.y21b{bottom:550.155000px;}
.y30{bottom:550.515000px;}
.y234{bottom:556.815000px;}
.y24d{bottom:563.115000px;}
.y261{bottom:564.375000px;}
.y1d7{bottom:565.635000px;}
.y11d{bottom:567.435000px;}
.yca{bottom:567.975000px;}
.y89{bottom:568.875000px;}
.ye1{bottom:569.055000px;}
.y21{bottom:570.315000px;}
.ya5{bottom:573.195000px;}
.y1a4{bottom:574.095000px;}
.y147{bottom:575.895000px;}
.y67{bottom:578.235000px;}
.y21a{bottom:578.595000px;}
.y1c8{bottom:580.935000px;}
.y233{bottom:585.255000px;}
.yb2{bottom:587.055000px;}
.y24c{bottom:591.555000px;}
.y260{bottom:592.815000px;}
.y1d6{bottom:594.975000px;}
.y11c{bottom:595.875000px;}
.yc9{bottom:596.415000px;}
.y88{bottom:597.315000px;}
.y1fb{bottom:601.455000px;}
.ya4{bottom:601.815000px;}
.y1a3{bottom:602.535000px;}
.y146{bottom:604.335000px;}
.y66{bottom:606.675000px;}
.y219{bottom:607.035000px;}
.y1c7{bottom:609.195000px;}
.y232{bottom:613.695000px;}
.y10e{bottom:613.875000px;}
.yb1{bottom:615.495000px;}
.y24b{bottom:619.995000px;}
.y25f{bottom:621.255000px;}
.y1d5{bottom:623.595000px;}
.y11b{bottom:624.315000px;}
.yc8{bottom:624.855000px;}
.y87{bottom:625.755000px;}
.y1f{bottom:629.535000px;}
.y1fa{bottom:629.895000px;}
.ya3{bottom:630.255000px;}
.y1a2{bottom:631.155000px;}
.y65{bottom:635.115000px;}
.y218{bottom:635.475000px;}
.y1c6{bottom:637.815000px;}
.y10d{bottom:642.135000px;}
.y1b7{bottom:642.315000px;}
.yb0{bottom:642.495000px;}
.y145{bottom:644.835000px;}
.y24a{bottom:648.615000px;}
.y6{bottom:648.795000px;}
.y25e{bottom:649.695000px;}
.y11a{bottom:651.675000px;}
.y1d4{bottom:652.035000px;}
.yc7{bottom:653.475000px;}
.ye0{bottom:654.195000px;}
.y1f9{bottom:658.335000px;}
.ya2{bottom:658.695000px;}
.y64{bottom:663.555000px;}
.y217{bottom:663.915000px;}
.y1c5{bottom:666.255000px;}
.y86{bottom:666.465000px;}
.yaf{bottom:667.365000px;}
.y10c{bottom:670.605000px;}
.y1a1{bottom:671.685000px;}
.y144{bottom:673.305000px;}
.y249{bottom:677.085000px;}
.y1b{bottom:677.805000px;}
.y25d{bottom:678.165000px;}
.y1d3{bottom:680.505000px;}
.ydf{bottom:682.665000px;}
.y237{bottom:682.845000px;}
.y119{bottom:686.085000px;}
.y5{bottom:686.805000px;}
.yae{bottom:688.425000px;}
.y63{bottom:692.025000px;}
.y216{bottom:692.385000px;}
.y15e{bottom:693.105000px;}
.yc6{bottom:694.005000px;}
.y85{bottom:694.725000px;}
.y10b{bottom:699.225000px;}
.ya1{bottom:699.405000px;}
.y1a0{bottom:699.945000px;}
.y143{bottom:701.745000px;}
.y248{bottom:705.525000px;}
.y25c{bottom:706.605000px;}
.y1d2{bottom:708.945000px;}
.yde{bottom:711.105000px;}
.y1f8{bottom:715.425000px;}
.y62{bottom:720.465000px;}
.yc5{bottom:722.265000px;}
.y84{bottom:723.165000px;}
.y4{bottom:724.785000px;}
.ya0{bottom:727.665000px;}
.y19f{bottom:728.565000px;}
.y142{bottom:730.185000px;}
.y1f7{bottom:731.445000px;}
.y215{bottom:733.065000px;}
.y247{bottom:733.965000px;}
.y25b{bottom:735.225000px;}
.y1d1{bottom:737.565000px;}
.ydd{bottom:739.545000px;}
.y1b6{bottom:739.725000px;}
.y61{bottom:748.905000px;}
.yc4{bottom:750.885000px;}
.y83{bottom:751.605000px;}
.y22d{bottom:751.785000px;}
.y9f{bottom:756.105000px;}
.y19e{bottom:757.005000px;}
.y141{bottom:758.625000px;}
.y1f6{bottom:760.245000px;}
.y214{bottom:761.325000px;}
.y3{bottom:762.585000px;}
.y25a{bottom:763.665000px;}
.y246{bottom:765.285000px;}
.y1a{bottom:766.545000px;}
.y1d0{bottom:766.905000px;}
.y1b5{bottom:767.985000px;}
.y140{bottom:774.660000px;}
.y60{bottom:777.345000px;}
.y82{bottom:780.045000px;}
.ydc{bottom:780.225000px;}
.y15b{bottom:788.505000px;}
.y1f3{bottom:789.240000px;}
.y213{bottom:789.945000px;}
.y259{bottom:792.105000px;}
.yc3{bottom:794.085000px;}
.y1cf{bottom:795.345000px;}
.y1b4{bottom:796.605000px;}
.y9e{bottom:796.785000px;}
.y19d{bottom:797.505000px;}
.y245{bottom:799.125000px;}
.y13f{bottom:799.485000px;}
.y5f{bottom:805.965000px;}
.y81{bottom:808.485000px;}
.y236{bottom:808.665000px;}
.y17{bottom:813.885000px;}
.y1f2{bottom:818.205000px;}
.y212{bottom:819.465000px;}
.y258{bottom:820.545000px;}
.yc2{bottom:822.345000px;}
.y1ce{bottom:823.785000px;}
.y13e{bottom:824.160000px;}
.y9d{bottom:825.045000px;}
.y19c{bottom:825.945000px;}
.y5e{bottom:834.405000px;}
.y80{bottom:836.925000px;}
.yf4{bottom:837.105000px;}
.y15a{bottom:843.225000px;}
.y1f1{bottom:847.185000px;}
.y211{bottom:847.905000px;}
.y13d{bottom:848.985000px;}
.y235{bottom:849.165000px;}
.y1cd{bottom:852.585000px;}
.y9c{bottom:853.485000px;}
.y19b{bottom:854.385000px;}
.y159{bottom:856.005000px;}
.y5d{bottom:862.845000px;}
.yc1{bottom:863.025000px;}
.y7f{bottom:865.365000px;}
.y13c{bottom:874.365000px;}
.y210{bottom:877.425000px;}
.y1ef{bottom:877.785000px;}
.y9b{bottom:881.925000px;}
.y19a{bottom:882.825000px;}
.y16{bottom:889.485000px;}
.y5c{bottom:891.285000px;}
.y7e{bottom:893.985000px;}
.y158{bottom:894.165000px;}
.y13a{bottom:899.925000px;}
.y20f{bottom:905.865000px;}
.y1c4{bottom:906.045000px;}
.y1ec{bottom:906.780000px;}
.y9a{bottom:910.410000px;}
.y199{bottom:911.310000px;}
.y5b{bottom:919.770000px;}
.y7d{bottom:922.470000px;}
.y139{bottom:924.630000px;}
.y1c3{bottom:934.350000px;}
.yf3{bottom:934.530000px;}
.y20e{bottom:935.610000px;}
.y15{bottom:936.690000px;}
.y1e9{bottom:937.230000px;}
.y2{bottom:938.310000px;}
.y99{bottom:938.850000px;}
.y198{bottom:939.750000px;}
.y5a{bottom:948.210000px;}
.y138{bottom:949.470000px;}
.y7c{bottom:950.910000px;}
.yf2{bottom:962.790000px;}
.y118{bottom:962.970000px;}
.y20d{bottom:965.130000px;}
.y231{bottom:967.290000px;}
.y197{bottom:968.190000px;}
.y12c{bottom:970.350000px;}
.y1e6{bottom:970.710000px;}
.y137{bottom:974.130000px;}
.y1{bottom:974.310000px;}
.y59{bottom:976.650000px;}
.y7b{bottom:979.350000px;}
.y98{bottom:979.530000px;}
.y14{bottom:984.030000px;}
.y189{bottom:984.210000px;}
.yf1{bottom:991.410000px;}
.y1e8{bottom:991.590000px;}
.y20c{bottom:993.570000px;}
.y136{bottom:998.970000px;}
.y58{bottom:1005.090000px;}
.y7a{bottom:1007.790000px;}
.y230{bottom:1007.970000px;}
.yf0{bottom:1019.850000px;}
.y1b3{bottom:1020.030000px;}
.y135{bottom:1023.630000px;}
.y11{bottom:1031.190000px;}
.y57{bottom:1033.530000px;}
.y20b{bottom:1035.330000px;}
.y79{bottom:1036.230000px;}
.y117{bottom:1048.290000px;}
.yef{bottom:1048.470000px;}
.y56{bottom:1062.150000px;}
.y20a{bottom:1063.590000px;}
.y78{bottom:1064.670000px;}
.y134{bottom:1073.130000px;}
.yee{bottom:1076.730000px;}
.y244{bottom:1076.910000px;}
.y55{bottom:1090.590000px;}
.ydb{bottom:1093.110000px;}
.y132{bottom:1098.690000px;}
.y209{bottom:1104.270000px;}
.yed{bottom:1105.170000px;}
.y77{bottom:1105.350000px;}
.ye{bottom:1126.950000px;}
.y208{bottom:1132.530000px;}
.y2c{bottom:1133.610000px;}
.yf{bottom:1133.790000px;}
.yda{bottom:1133.970000px;}
.y131{bottom:1136.130000px;}
.yb{bottom:1167.120000px;}
.h2f{height:20.865000px;}
.h19{height:23.205000px;}
.h1f{height:24.645000px;}
.h22{height:24.660000px;}
.h20{height:24.682500px;}
.h1e{height:24.825000px;}
.h21{height:24.840000px;}
.h24{height:27.492188px;}
.h34{height:28.080000px;}
.h31{height:28.101000px;}
.h30{height:28.245000px;}
.h32{height:28.260000px;}
.h33{height:29.880000px;}
.h16{height:41.238281px;}
.h35{height:41.385000px;}
.h23{height:42.612187px;}
.h1c{height:44.534180px;}
.h2e{height:45.326250px;}
.h9{height:46.425000px;}
.ha{height:46.440000px;}
.hb{height:46.476000px;}
.h1a{height:46.605000px;}
.hd{height:46.620000px;}
.h12{height:47.520000px;}
.hf{height:47.556000px;}
.h2d{height:48.436523px;}
.h36{height:53.709961px;}
.h18{height:55.546875px;}
.h17{height:56.320312px;}
.h26{height:56.320329px;}
.h2a{height:56.320337px;}
.h28{height:56.320341px;}
.h2c{height:56.320345px;}
.h5{height:56.436480px;}
.h10{height:58.500000px;}
.h15{height:59.415469px;}
.h3{height:61.344000px;}
.h14{height:62.327813px;}
.h6{height:65.884219px;}
.h1d{height:68.025000px;}
.h8{height:69.086250px;}
.h2{height:71.772480px;}
.hc{height:74.880000px;}
.h11{height:75.060000px;}
.he{height:88.020000px;}
.h1b{height:93.945000px;}
.h25{height:94.680000px;}
.h7{height:99.874688px;}
.h4{height:102.444480px;}
.h2b{height:163.965000px;}
.h29{height:173.145000px;}
.h27{height:326.040000px;}
.h13{height:569.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:34.560000px;}
.wf{width:49.851000px;}
.wb{width:50.211000px;}
.w8{width:93.945000px;}
.w13{width:105.876000px;}
.w14{width:106.005000px;}
.w11{width:106.020000px;}
.w15{width:153.195000px;}
.wc{width:204.861000px;}
.w12{width:212.610000px;}
.we{width:213.315000px;}
.wd{width:213.510000px;}
.w7{width:225.735000px;}
.w6{width:225.750000px;}
.w5{width:225.921000px;}
.w9{width:327.255000px;}
.wa{width:327.315000px;}
.w10{width:433.320000px;}
.w2{width:645.045000px;}
.w4{width:685.350000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.x3b{left:9.165000px;}
.x37{left:10.245000px;}
.x1f{left:11.685000px;}
.x36{left:13.485000px;}
.x22{left:14.760000px;}
.x3e{left:16.200000px;}
.x10{left:17.280000px;}
.x34{left:20.331000px;}
.x26{left:22.140000px;}
.x25{left:23.220000px;}
.x1d{left:24.480000px;}
.x41{left:25.545000px;}
.x3f{left:27.900000px;}
.x32{left:30.045000px;}
.x43{left:32.400000px;}
.x44{left:35.640000px;}
.x38{left:37.245000px;}
.x21{left:39.585000px;}
.x42{left:41.400000px;}
.x35{left:44.271000px;}
.x29{left:48.765000px;}
.x11{left:52.734000px;}
.x14{left:55.614000px;}
.x2e{left:57.045000px;}
.x30{left:60.660000px;}
.x20{left:65.160000px;}
.x2c{left:68.970000px;}
.x13{left:71.994000px;}
.x12{left:74.154000px;}
.x46{left:76.530000px;}
.x33{left:77.565000px;}
.x1b{left:82.065000px;}
.x2b{left:91.065000px;}
.xd{left:98.316000px;}
.xc{left:106.416000px;}
.x19{left:111.456000px;}
.x18{left:114.336000px;}
.x28{left:118.845000px;}
.x3{left:125.136000px;}
.x2a{left:126.390000px;}
.x39{left:133.416000px;}
.x1a{left:138.456000px;}
.x2d{left:149.265000px;}
.x16{left:159.510000px;}
.x5{left:187.950000px;}
.x4{left:193.710000px;}
.x3a{left:229.905000px;}
.x3c{left:286.815000px;}
.x1c{left:325.335000px;}
.x1{left:351.615000px;}
.x6{left:353.235000px;}
.x2f{left:354.855000px;}
.x2{left:373.395000px;}
.x8{left:391.935000px;}
.x3d{left:393.555000px;}
.x27{left:437.295000px;}
.x15{left:441.975000px;}
.xb{left:446.475000px;}
.x40{left:500.160000px;}
.x7{left:503.385000px;}
.xa{left:536.505000px;}
.x1e{left:551.820000px;}
.x31{left:569.100000px;}
.x9{left:571.785000px;}
.x45{left:633.540000px;}
.x17{left:681.630000px;}
.x24{left:705.930000px;}
.xf{left:743.370000px;}
.x23{left:786.750000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.440000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.736000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.448000pt;}
.ls15{letter-spacing:-0.416000pt;}
.ls6{letter-spacing:-0.406933pt;}
.ls2{letter-spacing:-0.368533pt;}
.ls29{letter-spacing:-0.304000pt;}
.ls12{letter-spacing:-0.271467pt;}
.ls1f{letter-spacing:-0.240000pt;}
.ls8{letter-spacing:-0.233067pt;}
.ls25{letter-spacing:-0.224000pt;}
.ls1d{letter-spacing:-0.158933pt;}
.ls7{letter-spacing:-0.135467pt;}
.ls4{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.079467pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.016000pt;}
.ls20{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.096000pt;}
.ls23{letter-spacing:0.112000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.133333pt;}
.ls24{letter-spacing:0.144000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.224000pt;}
.ls1a{letter-spacing:0.232960pt;}
.ls1e{letter-spacing:0.233067pt;}
.ls1c{letter-spacing:0.271360pt;}
.ls5{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.416000pt;}
.lsd{letter-spacing:0.481067pt;}
.ls2a{letter-spacing:0.544000pt;}
.ls9{letter-spacing:0.624000pt;}
.ls19{letter-spacing:1.551360pt;}
.ls22{letter-spacing:3.936000pt;}
.ls1b{letter-spacing:9.231360pt;}
.lsf{letter-spacing:11.151360pt;}
.ls18{letter-spacing:19.471360pt;}
.ls2b{letter-spacing:30.970027pt;}
.lsc{letter-spacing:32.271360pt;}
.ls28{letter-spacing:52.730027pt;}
.ls17{letter-spacing:172.410027pt;}
.ws2{word-spacing:-58.880000pt;}
.ws17{word-spacing:-48.112000pt;}
.ws19{word-spacing:-48.000000pt;}
.ws1e{word-spacing:-16.601707pt;}
.ws1d{word-spacing:-16.601600pt;}
.ws5{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.271573pt;}
.ws7{word-spacing:-16.233173pt;}
.ws8{word-spacing:-16.135573pt;}
.wsd{word-spacing:-16.097173pt;}
.wsa{word-spacing:-15.728640pt;}
.ws3{word-spacing:-15.632640pt;}
.ws0{word-spacing:-14.400000pt;}
.ws1a{word-spacing:-13.536000pt;}
.ws18{word-spacing:-13.488000pt;}
.ws12{word-spacing:-13.360000pt;}
.ws16{word-spacing:-13.344000pt;}
.ws1c{word-spacing:-13.040000pt;}
.ws9{word-spacing:-10.832000pt;}
.wsb{word-spacing:-10.800427pt;}
.ws6{word-spacing:-10.319360pt;}
.wsc{word-spacing:-10.239893pt;}
.ws13{word-spacing:-10.160427pt;}
.ws10{word-spacing:-9.088000pt;}
.wse{word-spacing:-8.960000pt;}
.wsf{word-spacing:-8.896000pt;}
.ws11{word-spacing:-8.480000pt;}
.ws15{word-spacing:-7.472640pt;}
.ws14{word-spacing:-7.008000pt;}
.ws1b{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
._5{margin-left:-2.372288pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.194688pt;}
._9{width:2.085504pt;}
._e{width:3.016832pt;}
._19{width:3.944896pt;}
._7{width:4.834987pt;}
._8{width:5.994240pt;}
._b{width:7.537067pt;}
._17{width:8.839040pt;}
._d{width:9.896533pt;}
._11{width:11.141739pt;}
._18{width:12.198592pt;}
._10{width:13.664640pt;}
._f{width:14.837760pt;}
._28{width:16.128000pt;}
._27{width:17.088000pt;}
._a{width:18.017280pt;}
._21{width:18.985536pt;}
._c{width:19.897195pt;}
._14{width:20.789120pt;}
._20{width:21.831637pt;}
._1c{width:23.552000pt;}
._1d{width:25.082880pt;}
._1e{width:26.147200pt;}
._1f{width:27.243520pt;}
._12{width:28.321280pt;}
._13{width:29.738880pt;}
._1a{width:31.036800pt;}
._3{width:32.706560pt;}
._35{width:33.858560pt;}
._25{width:35.164800pt;}
._23{width:36.093440pt;}
._24{width:37.150507pt;}
._15{width:39.159680pt;}
._2d{width:40.109632pt;}
._1b{width:41.157120pt;}
._37{width:42.186688pt;}
._2c{width:43.248000pt;}
._44{width:47.049600pt;}
._36{width:48.340480pt;}
._40{width:49.239680pt;}
._3f{width:50.174720pt;}
._38{width:51.204480pt;}
._4{width:52.546560pt;}
._2e{width:54.112192pt;}
._34{width:55.008000pt;}
._26{width:59.376000pt;}
._30{width:60.576000pt;}
._4b{width:61.651840pt;}
._3e{width:64.419200pt;}
._33{width:65.808000pt;}
._29{width:71.440000pt;}
._4a{width:72.794240pt;}
._46{width:75.900800pt;}
._45{width:77.132800pt;}
._2f{width:78.656000pt;}
._41{width:86.512875pt;}
._31{width:120.720000pt;}
._32{width:141.984000pt;}
._3c{width:155.973120pt;}
._3d{width:157.041920pt;}
._22{width:172.410027pt;}
._47{width:176.698880pt;}
._48{width:177.591040pt;}
._39{width:188.003840pt;}
._2a{width:199.776000pt;}
._43{width:218.150400pt;}
._42{width:219.386880pt;}
._3a{width:229.632000pt;}
._49{width:230.522240pt;}
._2b{width:327.984000pt;}
._16{width:418.170027pt;}
._2{width:744.475307pt;}
._6{width:751.770027pt;}
._3b{width:836.979200pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.y22c{bottom:-17.280000pt;}
.y0{bottom:0.000000pt;}
.y130{bottom:1.760000pt;}
.y1e7{bottom:7.200000pt;}
.yfc{bottom:9.426667pt;}
.y133{bottom:9.440000pt;}
.y1ee{bottom:9.466667pt;}
.y13b{bottom:9.480000pt;}
.y1f5{bottom:9.586667pt;}
.y108{bottom:9.600000pt;}
.yf8{bottom:9.746667pt;}
.y1f0{bottom:9.760000pt;}
.y1ed{bottom:9.786667pt;}
.y1f4{bottom:9.906667pt;}
.y106{bottom:9.920000pt;}
.y1eb{bottom:10.560000pt;}
.y22b{bottom:10.720000pt;}
.y13{bottom:11.680000pt;}
.y12{bottom:11.840000pt;}
.y2b{bottom:12.000000pt;}
.y20{bottom:12.640000pt;}
.y17c{bottom:13.746667pt;}
.y1ea{bottom:14.240000pt;}
.y27{bottom:15.680000pt;}
.y160{bottom:17.280000pt;}
.y12f{bottom:17.600000pt;}
.yfd{bottom:19.826667pt;}
.y109{bottom:19.840000pt;}
.y15d{bottom:20.000000pt;}
.yfa{bottom:20.146667pt;}
.y15f{bottom:20.160000pt;}
.y163{bottom:20.800000pt;}
.y43{bottom:20.960000pt;}
.y18a{bottom:21.120000pt;}
.y22{bottom:22.400000pt;}
.y1d{bottom:22.560000pt;}
.y185{bottom:24.306667pt;}
.y22a{bottom:25.440000pt;}
.y15c{bottom:27.680000pt;}
.y18f{bottom:29.920000pt;}
.yfb{bottom:30.066667pt;}
.yff{bottom:30.226667pt;}
.y107{bottom:30.240000pt;}
.y101{bottom:30.546667pt;}
.y105{bottom:30.560000pt;}
.y12e{bottom:33.440000pt;}
.y19{bottom:36.960000pt;}
.y18{bottom:37.120000pt;}
.y162{bottom:41.600000pt;}
.y184{bottom:45.106667pt;}
.y188{bottom:45.426667pt;}
.y42{bottom:46.240000pt;}
.y1c{bottom:47.680000pt;}
.y1e{bottom:48.640000pt;}
.y12d{bottom:49.120000pt;}
.y18e{bottom:50.560000pt;}
.y196{bottom:50.880000pt;}
.y103{bottom:51.186667pt;}
.yd{bottom:51.200000pt;}
.y17f{bottom:55.666667pt;}
.y191{bottom:61.280000pt;}
.y174{bottom:61.306667pt;}
.y161{bottom:61.920000pt;}
.y54{bottom:62.400000pt;}
.y2f{bottom:63.360000pt;}
.y183{bottom:66.066667pt;}
.yc{bottom:69.120000pt;}
.y41{bottom:71.520000pt;}
.y195{bottom:71.680000pt;}
.y17a{bottom:71.866667pt;}
.y18d{bottom:72.000000pt;}
.y17e{bottom:76.146667pt;}
.y53{bottom:79.200000pt;}
.y2e{bottom:81.280000pt;}
.y173{bottom:81.946667pt;}
.y190{bottom:82.080000pt;}
.y187{bottom:86.386667pt;}
.y182{bottom:86.706667pt;}
.y194{bottom:92.320000pt;}
.y16b{bottom:92.346667pt;}
.y18c{bottom:92.800000pt;}
.y40{bottom:96.800000pt;}
.y17d{bottom:97.106667pt;}
.y1c2{bottom:98.080000pt;}
.y2d{bottom:99.200000pt;}
.y165{bottom:102.106667pt;}
.y172{bottom:102.586667pt;}
.y229{bottom:102.720000pt;}
.yec{bottom:104.800000pt;}
.y10a{bottom:106.880000pt;}
.y157{bottom:107.040000pt;}
.y181{bottom:107.186667pt;}
.y186{bottom:107.506667pt;}
.y1b2{bottom:109.440000pt;}
.y207{bottom:112.160000pt;}
.y193{bottom:112.960000pt;}
.y16a{bottom:112.986667pt;}
.y18b{bottom:113.440000pt;}
.yd9{bottom:115.040000pt;}
.yc0{bottom:115.520000pt;}
.y243{bottom:116.960000pt;}
.y104{bottom:120.960000pt;}
.y1e5{bottom:121.120000pt;}
.y265{bottom:122.080000pt;}
.y3f{bottom:122.106667pt;}
.y1c1{bottom:123.360000pt;}
.y171{bottom:123.386667pt;}
.y76{bottom:123.680000pt;}
.y228{bottom:128.000000pt;}
.y180{bottom:128.146667pt;}
.y12b{bottom:128.960000pt;}
.yeb{bottom:130.080000pt;}
.y22f{bottom:130.240000pt;}
.y156{bottom:132.320000pt;}
.y169{bottom:133.626667pt;}
.y192{bottom:133.760000pt;}
.y1b1{bottom:134.720000pt;}
.y206{bottom:138.560000pt;}
.y52{bottom:139.040000pt;}
.yd8{bottom:140.000000pt;}
.y97{bottom:140.640000pt;}
.ybf{bottom:140.800000pt;}
.ya{bottom:141.760000pt;}
.y242{bottom:142.400000pt;}
.y170{bottom:144.026667pt;}
.y1e4{bottom:146.400000pt;}
.y264{bottom:147.360000pt;}
.y3e{bottom:147.386667pt;}
.y1c0{bottom:148.640000pt;}
.y75{bottom:148.960000pt;}
.y227{bottom:153.440000pt;}
.y179{bottom:154.426667pt;}
.y168{bottom:154.746667pt;}
.yea{bottom:155.360000pt;}
.y116{bottom:155.520000pt;}
.y155{bottom:157.600000pt;}
.y1b0{bottom:160.160000pt;}
.y51{bottom:162.080000pt;}
.y102{bottom:163.080000pt;}
.y205{bottom:163.866667pt;}
.y16f{bottom:164.666667pt;}
.y12a{bottom:164.986667pt;}
.yd7{bottom:165.306667pt;}
.y96{bottom:166.106667pt;}
.y241{bottom:167.706667pt;}
.y17b{bottom:171.080000pt;}
.y9{bottom:171.546667pt;}
.y10{bottom:171.706667pt;}
.y3d{bottom:172.666667pt;}
.y74{bottom:174.426667pt;}
.y167{bottom:175.386667pt;}
.y226{bottom:178.746667pt;}
.ye9{bottom:180.666667pt;}
.y154{bottom:182.906667pt;}
.y1bf{bottom:184.826667pt;}
.y50{bottom:184.986667pt;}
.y16e{bottom:185.466667pt;}
.y2a{bottom:185.786667pt;}
.y204{bottom:189.146667pt;}
.y129{bottom:190.106667pt;}
.yd6{bottom:190.586667pt;}
.y95{bottom:191.386667pt;}
.ybe{bottom:192.346667pt;}
.y240{bottom:192.986667pt;}
.y166{bottom:196.186667pt;}
.y1e3{bottom:196.986667pt;}
.y3c{bottom:198.106667pt;}
.y73{bottom:199.706667pt;}
.y8{bottom:202.426667pt;}
.y100{bottom:205.160000pt;}
.ye8{bottom:205.946667pt;}
.y16d{bottom:206.426667pt;}
.y4f{bottom:208.026667pt;}
.y153{bottom:208.186667pt;}
.y1be{bottom:209.946667pt;}
.y225{bottom:214.746667pt;}
.y128{bottom:215.386667pt;}
.yd5{bottom:215.866667pt;}
.y94{bottom:216.666667pt;}
.y178{bottom:216.826667pt;}
.ybd{bottom:217.626667pt;}
.y23f{bottom:218.266667pt;}
.y1af{bottom:221.306667pt;}
.y257{bottom:222.266667pt;}
.y1e2{bottom:222.426667pt;}
.y3b{bottom:223.386667pt;}
.y72{bottom:224.986667pt;}
.y16c{bottom:227.226667pt;}
.y29{bottom:227.866667pt;}
.y4e{bottom:231.066667pt;}
.ye7{bottom:231.226667pt;}
.y7{bottom:233.306667pt;}
.y152{bottom:233.466667pt;}
.y1bd{bottom:235.226667pt;}
.y177{bottom:237.146667pt;}
.y127{bottom:240.666667pt;}
.yd4{bottom:241.146667pt;}
.y93{bottom:241.946667pt;}
.y23e{bottom:243.546667pt;}
.ybc{bottom:244.026667pt;}
.y1ae{bottom:246.746667pt;}
.yfe{bottom:247.240000pt;}
.y256{bottom:247.546667pt;}
.y1e1{bottom:247.706667pt;}
.y3a{bottom:248.666667pt;}
.y71{bottom:250.266667pt;}
.y224{bottom:250.906667pt;}
.y4d{bottom:254.106667pt;}
.y115{bottom:256.506667pt;}
.y176{bottom:258.266667pt;}
.y151{bottom:258.746667pt;}
.y1bc{bottom:260.506667pt;}
.y126{bottom:265.946667pt;}
.yd3{bottom:266.586667pt;}
.y92{bottom:267.226667pt;}
.ye6{bottom:267.386667pt;}
.y1cc{bottom:267.546667pt;}
.y23d{bottom:268.826667pt;}
.ybb{bottom:269.306667pt;}
.y28{bottom:269.786667pt;}
.y1ad{bottom:272.026667pt;}
.y255{bottom:272.826667pt;}
.y1e0{bottom:272.986667pt;}
.y39{bottom:273.946667pt;}
.y223{bottom:276.026667pt;}
.y4c{bottom:276.986667pt;}
.y175{bottom:278.613333pt;}
.y114{bottom:281.786667pt;}
.y150{bottom:284.186667pt;}
.y1bb{bottom:285.786667pt;}
.y70{bottom:286.426667pt;}
.yf9{bottom:289.320000pt;}
.y203{bottom:291.386667pt;}
.yd2{bottom:291.866667pt;}
.y91{bottom:292.506667pt;}
.y23c{bottom:294.106667pt;}
.yba{bottom:294.586667pt;}
.yad{bottom:296.506667pt;}
.y1ac{bottom:297.306667pt;}
.y254{bottom:298.106667pt;}
.y1df{bottom:298.426667pt;}
.y38{bottom:299.226667pt;}
.y4b{bottom:300.026667pt;}
.y125{bottom:302.106667pt;}
.y113{bottom:307.226667pt;}
.y14f{bottom:309.466667pt;}
.y1ba{bottom:311.066667pt;}
.y6f{bottom:311.546667pt;}
.y26{bottom:311.706667pt;}
.y222{bottom:312.186667pt;}
.yd1{bottom:317.146667pt;}
.y202{bottom:317.626667pt;}
.y90{bottom:317.786667pt;}
.y23b{bottom:319.386667pt;}
.yb9{bottom:319.866667pt;}
.yac{bottom:321.786667pt;}
.y1ab{bottom:322.586667pt;}
.y4a{bottom:323.066667pt;}
.y253{bottom:323.386667pt;}
.y1de{bottom:324.506667pt;}
.y37{bottom:324.546667pt;}
.y164{bottom:325.640000pt;}
.y124{bottom:327.226667pt;}
.y1cb{bottom:328.666667pt;}
.y112{bottom:332.506667pt;}
.yf7{bottom:332.680000pt;}
.y14e{bottom:334.746667pt;}
.y1b9{bottom:336.346667pt;}
.y6e{bottom:336.826667pt;}
.y221{bottom:337.146667pt;}
.yd0{bottom:342.426667pt;}
.y201{bottom:342.906667pt;}
.y8f{bottom:343.066667pt;}
.y23a{bottom:344.666667pt;}
.y49{bottom:345.946667pt;}
.yab{bottom:347.066667pt;}
.y1aa{bottom:347.866667pt;}
.y252{bottom:348.826667pt;}
.y263{bottom:349.786667pt;}
.y36{bottom:349.826667pt;}
.y1dd{bottom:349.946667pt;}
.y123{bottom:352.506667pt;}
.y25{bottom:353.786667pt;}
.yb8{bottom:356.986667pt;}
.y111{bottom:357.786667pt;}
.y14d{bottom:360.026667pt;}
.y6d{bottom:362.106667pt;}
.y220{bottom:362.426667pt;}
.y268{bottom:366.106667pt;}
.ycf{bottom:367.706667pt;}
.y8e{bottom:368.346667pt;}
.y48{bottom:368.986667pt;}
.y200{bottom:369.146667pt;}
.yf6{bottom:370.586667pt;}
.yaa{bottom:372.346667pt;}
.y1b8{bottom:372.506667pt;}
.y251{bottom:374.106667pt;}
.y262{bottom:375.066667pt;}
.y35{bottom:375.106667pt;}
.y1dc{bottom:376.186667pt;}
.y122{bottom:377.826667pt;}
.y1ca{bottom:379.106667pt;}
.y22e{bottom:379.266667pt;}
.yb7{bottom:382.146667pt;}
.y110{bottom:383.106667pt;}
.y239{bottom:383.266667pt;}
.y1a9{bottom:384.066667pt;}
.y14c{bottom:385.346667pt;}
.y6c{bottom:387.426667pt;}
.y21f{bottom:387.746667pt;}
.y47{bottom:392.066667pt;}
.ye5{bottom:393.826667pt;}
.y1ff{bottom:395.586667pt;}
.y24{bottom:396.706667pt;}
.y250{bottom:399.426667pt;}
.y34{bottom:400.386667pt;}
.y1db{bottom:401.506667pt;}
.y121{bottom:403.266667pt;}
.yce{bottom:403.906667pt;}
.y1c9{bottom:404.386667pt;}
.y8d{bottom:404.546667pt;}
.yb6{bottom:407.426667pt;}
.y10f{bottom:408.386667pt;}
.ya9{bottom:408.546667pt;}
.y1a8{bottom:409.186667pt;}
.y14b{bottom:410.626667pt;}
.y6b{bottom:412.706667pt;}
.y21e{bottom:413.186667pt;}
.y46{bottom:415.106667pt;}
.ye4{bottom:419.106667pt;}
.y238{bottom:419.266667pt;}
.y1fe{bottom:421.826667pt;}
.y24f{bottom:424.706667pt;}
.y33{bottom:425.826667pt;}
.y1da{bottom:426.786667pt;}
.y120{bottom:428.546667pt;}
.ycd{bottom:429.026667pt;}
.y8c{bottom:429.666667pt;}
.yf5{bottom:429.826667pt;}
.yb5{bottom:432.706667pt;}
.ya8{bottom:433.666667pt;}
.y1a7{bottom:434.466667pt;}
.y14a{bottom:435.906667pt;}
.y6a{bottom:437.986667pt;}
.y21d{bottom:438.466667pt;}
.y23{bottom:439.586667pt;}
.y267{bottom:440.546667pt;}
.ye3{bottom:444.386667pt;}
.y1fd{bottom:447.106667pt;}
.y45{bottom:449.986667pt;}
.y32{bottom:451.106667pt;}
.y1d9{bottom:452.066667pt;}
.y11f{bottom:453.826667pt;}
.ycc{bottom:454.306667pt;}
.y8b{bottom:454.946667pt;}
.yb4{bottom:457.986667pt;}
.ya7{bottom:458.946667pt;}
.y149{bottom:461.186667pt;}
.y69{bottom:463.266667pt;}
.y21c{bottom:463.746667pt;}
.y1a6{bottom:465.026667pt;}
.ye2{bottom:469.666667pt;}
.y1fc{bottom:472.386667pt;}
.y44{bottom:475.106667pt;}
.y24e{bottom:475.266667pt;}
.y31{bottom:476.386667pt;}
.y266{bottom:476.546667pt;}
.y1d8{bottom:477.346667pt;}
.y11e{bottom:479.106667pt;}
.ycb{bottom:479.586667pt;}
.y8a{bottom:480.386667pt;}
.yb3{bottom:483.266667pt;}
.ya6{bottom:484.226667pt;}
.y1a5{bottom:485.026667pt;}
.y148{bottom:486.466667pt;}
.y68{bottom:488.706667pt;}
.y21b{bottom:489.026667pt;}
.y30{bottom:489.346667pt;}
.y234{bottom:494.946667pt;}
.y24d{bottom:500.546667pt;}
.y261{bottom:501.666667pt;}
.y1d7{bottom:502.786667pt;}
.y11d{bottom:504.386667pt;}
.yca{bottom:504.866667pt;}
.y89{bottom:505.666667pt;}
.ye1{bottom:505.826667pt;}
.y21{bottom:506.946667pt;}
.ya5{bottom:509.506667pt;}
.y1a4{bottom:510.306667pt;}
.y147{bottom:511.906667pt;}
.y67{bottom:513.986667pt;}
.y21a{bottom:514.306667pt;}
.y1c8{bottom:516.386667pt;}
.y233{bottom:520.226667pt;}
.yb2{bottom:521.826667pt;}
.y24c{bottom:525.826667pt;}
.y260{bottom:526.946667pt;}
.y1d6{bottom:528.866667pt;}
.y11c{bottom:529.666667pt;}
.yc9{bottom:530.146667pt;}
.y88{bottom:530.946667pt;}
.y1fb{bottom:534.626667pt;}
.ya4{bottom:534.946667pt;}
.y1a3{bottom:535.586667pt;}
.y146{bottom:537.186667pt;}
.y66{bottom:539.266667pt;}
.y219{bottom:539.586667pt;}
.y1c7{bottom:541.506667pt;}
.y232{bottom:545.506667pt;}
.y10e{bottom:545.666667pt;}
.yb1{bottom:547.106667pt;}
.y24b{bottom:551.106667pt;}
.y25f{bottom:552.226667pt;}
.y1d5{bottom:554.306667pt;}
.y11b{bottom:554.946667pt;}
.yc8{bottom:555.426667pt;}
.y87{bottom:556.226667pt;}
.y1f{bottom:559.586667pt;}
.y1fa{bottom:559.906667pt;}
.ya3{bottom:560.226667pt;}
.y1a2{bottom:561.026667pt;}
.y65{bottom:564.546667pt;}
.y218{bottom:564.866667pt;}
.y1c6{bottom:566.946667pt;}
.y10d{bottom:570.786667pt;}
.y1b7{bottom:570.946667pt;}
.yb0{bottom:571.106667pt;}
.y145{bottom:573.186667pt;}
.y24a{bottom:576.546667pt;}
.y6{bottom:576.706667pt;}
.y25e{bottom:577.506667pt;}
.y11a{bottom:579.266667pt;}
.y1d4{bottom:579.586667pt;}
.yc7{bottom:580.866667pt;}
.ye0{bottom:581.506667pt;}
.y1f9{bottom:585.186667pt;}
.ya2{bottom:585.506667pt;}
.y64{bottom:589.826667pt;}
.y217{bottom:590.146667pt;}
.y1c5{bottom:592.226667pt;}
.y86{bottom:592.413333pt;}
.yaf{bottom:593.213333pt;}
.y10c{bottom:596.093333pt;}
.y1a1{bottom:597.053333pt;}
.y144{bottom:598.493333pt;}
.y249{bottom:601.853333pt;}
.y1b{bottom:602.493333pt;}
.y25d{bottom:602.813333pt;}
.y1d3{bottom:604.893333pt;}
.ydf{bottom:606.813333pt;}
.y237{bottom:606.973333pt;}
.y119{bottom:609.853333pt;}
.y5{bottom:610.493333pt;}
.yae{bottom:611.933333pt;}
.y63{bottom:615.133333pt;}
.y216{bottom:615.453333pt;}
.y15e{bottom:616.093333pt;}
.yc6{bottom:616.893333pt;}
.y85{bottom:617.533333pt;}
.y10b{bottom:621.533333pt;}
.ya1{bottom:621.693333pt;}
.y1a0{bottom:622.173333pt;}
.y143{bottom:623.773333pt;}
.y248{bottom:627.133333pt;}
.y25c{bottom:628.093333pt;}
.y1d2{bottom:630.173333pt;}
.yde{bottom:632.093333pt;}
.y1f8{bottom:635.933333pt;}
.y62{bottom:640.413333pt;}
.yc5{bottom:642.013333pt;}
.y84{bottom:642.813333pt;}
.y4{bottom:644.253333pt;}
.ya0{bottom:646.813333pt;}
.y19f{bottom:647.613333pt;}
.y142{bottom:649.053333pt;}
.y1f7{bottom:650.173333pt;}
.y215{bottom:651.613333pt;}
.y247{bottom:652.413333pt;}
.y25b{bottom:653.533333pt;}
.y1d1{bottom:655.613333pt;}
.ydd{bottom:657.373333pt;}
.y1b6{bottom:657.533333pt;}
.y61{bottom:665.693333pt;}
.yc4{bottom:667.453333pt;}
.y83{bottom:668.093333pt;}
.y22d{bottom:668.253333pt;}
.y9f{bottom:672.093333pt;}
.y19e{bottom:672.893333pt;}
.y141{bottom:674.333333pt;}
.y1f6{bottom:675.773333pt;}
.y214{bottom:676.733333pt;}
.y3{bottom:677.853333pt;}
.y25a{bottom:678.813333pt;}
.y246{bottom:680.253333pt;}
.y1a{bottom:681.373333pt;}
.y1d0{bottom:681.693333pt;}
.y1b5{bottom:682.653333pt;}
.y140{bottom:688.586667pt;}
.y60{bottom:690.973333pt;}
.y82{bottom:693.373333pt;}
.ydc{bottom:693.533333pt;}
.y15b{bottom:700.893333pt;}
.y1f3{bottom:701.546667pt;}
.y213{bottom:702.173333pt;}
.y259{bottom:704.093333pt;}
.yc3{bottom:705.853333pt;}
.y1cf{bottom:706.973333pt;}
.y1b4{bottom:708.093333pt;}
.y9e{bottom:708.253333pt;}
.y19d{bottom:708.893333pt;}
.y245{bottom:710.333333pt;}
.y13f{bottom:710.653333pt;}
.y5f{bottom:716.413333pt;}
.y81{bottom:718.653333pt;}
.y236{bottom:718.813333pt;}
.y17{bottom:723.453333pt;}
.y1f2{bottom:727.293333pt;}
.y212{bottom:728.413333pt;}
.y258{bottom:729.373333pt;}
.yc2{bottom:730.973333pt;}
.y1ce{bottom:732.253333pt;}
.y13e{bottom:732.586667pt;}
.y9d{bottom:733.373333pt;}
.y19c{bottom:734.173333pt;}
.y5e{bottom:741.693333pt;}
.y80{bottom:743.933333pt;}
.yf4{bottom:744.093333pt;}
.y15a{bottom:749.533333pt;}
.y1f1{bottom:753.053333pt;}
.y211{bottom:753.693333pt;}
.y13d{bottom:754.653333pt;}
.y235{bottom:754.813333pt;}
.y1cd{bottom:757.853333pt;}
.y9c{bottom:758.653333pt;}
.y19b{bottom:759.453333pt;}
.y159{bottom:760.893333pt;}
.y5d{bottom:766.973333pt;}
.yc1{bottom:767.133333pt;}
.y7f{bottom:769.213333pt;}
.y13c{bottom:777.213333pt;}
.y210{bottom:779.933333pt;}
.y1ef{bottom:780.253333pt;}
.y9b{bottom:783.933333pt;}
.y19a{bottom:784.733333pt;}
.y16{bottom:790.653333pt;}
.y5c{bottom:792.253333pt;}
.y7e{bottom:794.653333pt;}
.y158{bottom:794.813333pt;}
.y13a{bottom:799.933333pt;}
.y20f{bottom:805.213333pt;}
.y1c4{bottom:805.373333pt;}
.y1ec{bottom:806.026667pt;}
.y9a{bottom:809.253333pt;}
.y199{bottom:810.053333pt;}
.y5b{bottom:817.573333pt;}
.y7d{bottom:819.973333pt;}
.y139{bottom:821.893333pt;}
.y1c3{bottom:830.533333pt;}
.yf3{bottom:830.693333pt;}
.y20e{bottom:831.653333pt;}
.y15{bottom:832.613333pt;}
.y1e9{bottom:833.093333pt;}
.y2{bottom:834.053333pt;}
.y99{bottom:834.533333pt;}
.y198{bottom:835.333333pt;}
.y5a{bottom:842.853333pt;}
.y138{bottom:843.973333pt;}
.y7c{bottom:845.253333pt;}
.yf2{bottom:855.813333pt;}
.y118{bottom:855.973333pt;}
.y20d{bottom:857.893333pt;}
.y231{bottom:859.813333pt;}
.y197{bottom:860.613333pt;}
.y12c{bottom:862.533333pt;}
.y1e6{bottom:862.853333pt;}
.y137{bottom:865.893333pt;}
.y1{bottom:866.053333pt;}
.y59{bottom:868.133333pt;}
.y7b{bottom:870.533333pt;}
.y98{bottom:870.693333pt;}
.y14{bottom:874.693333pt;}
.y189{bottom:874.853333pt;}
.yf1{bottom:881.253333pt;}
.y1e8{bottom:881.413333pt;}
.y20c{bottom:883.173333pt;}
.y136{bottom:887.973333pt;}
.y58{bottom:893.413333pt;}
.y7a{bottom:895.813333pt;}
.y230{bottom:895.973333pt;}
.yf0{bottom:906.533333pt;}
.y1b3{bottom:906.693333pt;}
.y135{bottom:909.893333pt;}
.y11{bottom:916.613333pt;}
.y57{bottom:918.693333pt;}
.y20b{bottom:920.293333pt;}
.y79{bottom:921.093333pt;}
.y117{bottom:931.813333pt;}
.yef{bottom:931.973333pt;}
.y56{bottom:944.133333pt;}
.y20a{bottom:945.413333pt;}
.y78{bottom:946.373333pt;}
.y134{bottom:953.893333pt;}
.yee{bottom:957.093333pt;}
.y244{bottom:957.253333pt;}
.y55{bottom:969.413333pt;}
.ydb{bottom:971.653333pt;}
.y132{bottom:976.613333pt;}
.y209{bottom:981.573333pt;}
.yed{bottom:982.373333pt;}
.y77{bottom:982.533333pt;}
.ye{bottom:1001.733333pt;}
.y208{bottom:1006.693333pt;}
.y2c{bottom:1007.653333pt;}
.yf{bottom:1007.813333pt;}
.yda{bottom:1007.973333pt;}
.y131{bottom:1009.893333pt;}
.yb{bottom:1037.440000pt;}
.h2f{height:18.546667pt;}
.h19{height:20.626667pt;}
.h1f{height:21.906667pt;}
.h22{height:21.920000pt;}
.h20{height:21.940000pt;}
.h1e{height:22.066667pt;}
.h21{height:22.080000pt;}
.h24{height:24.437500pt;}
.h34{height:24.960000pt;}
.h31{height:24.978667pt;}
.h30{height:25.106667pt;}
.h32{height:25.120000pt;}
.h33{height:26.560000pt;}
.h16{height:36.656250pt;}
.h35{height:36.786667pt;}
.h23{height:37.877500pt;}
.h1c{height:39.585938pt;}
.h2e{height:40.290000pt;}
.h9{height:41.266667pt;}
.ha{height:41.280000pt;}
.hb{height:41.312000pt;}
.h1a{height:41.426667pt;}
.hd{height:41.440000pt;}
.h12{height:42.240000pt;}
.hf{height:42.272000pt;}
.h2d{height:43.054688pt;}
.h36{height:47.742188pt;}
.h18{height:49.375000pt;}
.h17{height:50.062500pt;}
.h26{height:50.062515pt;}
.h2a{height:50.062522pt;}
.h28{height:50.062526pt;}
.h2c{height:50.062529pt;}
.h5{height:50.165760pt;}
.h10{height:52.000000pt;}
.h15{height:52.813750pt;}
.h3{height:54.528000pt;}
.h14{height:55.402500pt;}
.h6{height:58.563750pt;}
.h1d{height:60.466667pt;}
.h8{height:61.410000pt;}
.h2{height:63.797760pt;}
.hc{height:66.560000pt;}
.h11{height:66.720000pt;}
.he{height:78.240000pt;}
.h1b{height:83.506667pt;}
.h25{height:84.160000pt;}
.h7{height:88.777500pt;}
.h4{height:91.061760pt;}
.h2b{height:145.746667pt;}
.h29{height:153.906667pt;}
.h27{height:289.813333pt;}
.h13{height:505.973333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:30.720000pt;}
.wf{width:44.312000pt;}
.wb{width:44.632000pt;}
.w8{width:83.506667pt;}
.w13{width:94.112000pt;}
.w14{width:94.226667pt;}
.w11{width:94.240000pt;}
.w15{width:136.173333pt;}
.wc{width:182.098667pt;}
.w12{width:188.986667pt;}
.we{width:189.613333pt;}
.wd{width:189.786667pt;}
.w7{width:200.653333pt;}
.w6{width:200.666667pt;}
.w5{width:200.818667pt;}
.w9{width:290.893333pt;}
.wa{width:290.946667pt;}
.w10{width:385.173333pt;}
.w2{width:573.373333pt;}
.w4{width:609.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.x3b{left:8.146667pt;}
.x37{left:9.106667pt;}
.x1f{left:10.386667pt;}
.x36{left:11.986667pt;}
.x22{left:13.120000pt;}
.x3e{left:14.400000pt;}
.x10{left:15.360000pt;}
.x34{left:18.072000pt;}
.x26{left:19.680000pt;}
.x25{left:20.640000pt;}
.x1d{left:21.760000pt;}
.x41{left:22.706667pt;}
.x3f{left:24.800000pt;}
.x32{left:26.706667pt;}
.x43{left:28.800000pt;}
.x44{left:31.680000pt;}
.x38{left:33.106667pt;}
.x21{left:35.186667pt;}
.x42{left:36.800000pt;}
.x35{left:39.352000pt;}
.x29{left:43.346667pt;}
.x11{left:46.874667pt;}
.x14{left:49.434667pt;}
.x2e{left:50.706667pt;}
.x30{left:53.920000pt;}
.x20{left:57.920000pt;}
.x2c{left:61.306667pt;}
.x13{left:63.994667pt;}
.x12{left:65.914667pt;}
.x46{left:68.026667pt;}
.x33{left:68.946667pt;}
.x1b{left:72.946667pt;}
.x2b{left:80.946667pt;}
.xd{left:87.392000pt;}
.xc{left:94.592000pt;}
.x19{left:99.072000pt;}
.x18{left:101.632000pt;}
.x28{left:105.640000pt;}
.x3{left:111.232000pt;}
.x2a{left:112.346667pt;}
.x39{left:118.592000pt;}
.x1a{left:123.072000pt;}
.x2d{left:132.680000pt;}
.x16{left:141.786667pt;}
.x5{left:167.066667pt;}
.x4{left:172.186667pt;}
.x3a{left:204.360000pt;}
.x3c{left:254.946667pt;}
.x1c{left:289.186667pt;}
.x1{left:312.546667pt;}
.x6{left:313.986667pt;}
.x2f{left:315.426667pt;}
.x2{left:331.906667pt;}
.x8{left:348.386667pt;}
.x3d{left:349.826667pt;}
.x27{left:388.706667pt;}
.x15{left:392.866667pt;}
.xb{left:396.866667pt;}
.x40{left:444.586667pt;}
.x7{left:447.453333pt;}
.xa{left:476.893333pt;}
.x1e{left:490.506667pt;}
.x31{left:505.866667pt;}
.x9{left:508.253333pt;}
.x45{left:563.146667pt;}
.x17{left:605.893333pt;}
.x24{left:627.493333pt;}
.xf{left:660.773333pt;}
.x23{left:699.333333pt;}
}




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