
    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_863c7f47ade674404bb488b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_87752da1d3dad321a8b6e275.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.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_c2dbc4058a05e267a20f6b4f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6dd933d4c088a33b939f0f5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_04cc8c4bb4239bb7d65fe01c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e86392070ec423c711938b00.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a5b355a6ae12666c337ccc3c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6a30132820e3c0d7bd1af473.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cfb7602c73b98be56e21ad23.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_69a59c3a28cf899cd3cae35f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ddab41cdbbc15e15c7962b70.woff2')format("woff");}.fff{font-family:fff;line-height:0.844727;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_a54a8db57302cb372a05ba69.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.844727;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_203bd43cd3c8018704827275.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m1{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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-15.660000px;}
.ls12{letter-spacing:-14.220000px;}
.ls13{letter-spacing:-2.520000px;}
.ls16{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.208200px;}
.lsd{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017280px;}
.ls15{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.106800px;}
.lse{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.305400px;}
.lsc{letter-spacing:0.360000px;}
.ls17{letter-spacing:16.506720px;}
.ls11{letter-spacing:22.500000px;}
.ls14{letter-spacing:46.026720px;}
.ls3{letter-spacing:64.026720px;}
.ls9{letter-spacing:64.170720px;}
.lsa{letter-spacing:71.226720px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws8{word-spacing:-18.943920px;}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.wsf{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.479800px;}
.wsd{word-spacing:-12.420000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws9{word-spacing:-8.136000px;}
.ws6{word-spacing:0.000000px;}
._56{margin-left:-2433.350160px;}
._5c{margin-left:-2328.496320px;}
._69{margin-left:-2108.141280px;}
._65{margin-left:-2054.835360px;}
._4e{margin-left:-1792.668240px;}
._61{margin-left:-1770.444000px;}
._48{margin-left:-1218.145680px;}
._2d{margin-left:-1141.968960px;}
._68{margin-left:-942.469200px;}
._5d{margin-left:-877.689360px;}
._3a{margin-left:-761.977440px;}
._3f{margin-left:-708.449040px;}
._57{margin-left:-648.689040px;}
._39{margin-left:-619.590960px;}
._4f{margin-left:-575.602560px;}
._3e{margin-left:-567.637920px;}
._2e{margin-left:-511.963200px;}
._4d{margin-left:-496.002240px;}
._4b{margin-left:-489.368880px;}
._3b{margin-left:-485.130960px;}
._52{margin-left:-469.175040px;}
._42{margin-left:-465.051600px;}
._2f{margin-left:-457.223040px;}
._71{margin-left:-446.944320px;}
._53{margin-left:-422.024400px;}
._54{margin-left:-418.384080px;}
._58{margin-left:-367.164720px;}
._6a{margin-left:-363.937680px;}
._62{margin-left:-333.938160px;}
._5e{margin-left:-312.133680px;}
._5b{margin-left:-309.984240px;}
._40{margin-left:-294.138000px;}
._67{margin-left:-286.493760px;}
._41{margin-left:-284.217840px;}
._59{margin-left:-282.544560px;}
._49{margin-left:-269.277840px;}
._55{margin-left:-266.593680px;}
._64{margin-left:-253.866240px;}
._51{margin-left:-240.120000px;}
._70{margin-left:-236.953440px;}
._6b{margin-left:-234.437760px;}
._6e{margin-left:-220.160160px;}
._30{margin-left:-214.119360px;}
._66{margin-left:-211.191120px;}
._63{margin-left:-196.913520px;}
._45{margin-left:-193.566960px;}
._6d{margin-left:-183.766800px;}
._4c{margin-left:-170.640000px;}
._3d{margin-left:-166.914000px;}
._44{margin-left:-147.133440px;}
._47{margin-left:-137.213280px;}
._43{margin-left:-135.540000px;}
._5a{margin-left:-133.106400px;}
._46{margin-left:-121.680000px;}
._50{margin-left:-105.660000px;}
._3c{margin-left:-91.440000px;}
._6c{margin-left:-64.186560px;}
._4a{margin-left:-60.840000px;}
._2c{margin-left:-20.736000px;}
._f{margin-left:-8.191920px;}
._74{margin-left:-7.097760px;}
._1{margin-left:-6.094080px;}
._7{margin-left:-4.514400px;}
._4{margin-left:-3.444480px;}
._1a{margin-left:-2.439600px;}
._2{margin-left:-1.391040px;}
._0{width:1.010880px;}
._8{width:2.599680px;}
._b{width:3.884400px;}
._c{width:5.418000px;}
._9{width:7.155600px;}
._a{width:8.262480px;}
._e{width:9.376320px;}
._d{width:10.955520px;}
._10{width:11.985120px;}
._16{width:13.874400px;}
._5f{width:14.943600px;}
._1e{width:16.194960px;}
._17{width:17.514720px;}
._1c{width:19.100880px;}
._14{width:20.980800px;}
._13{width:22.051440px;}
._22{width:23.279040px;}
._24{width:24.322320px;}
._15{width:26.179920px;}
._1b{width:28.027440px;}
._12{width:29.885040px;}
._19{width:31.797360px;}
._20{width:33.042240px;}
._21{width:34.207920px;}
._27{width:35.395920px;}
._26{width:36.453600px;}
._77{width:37.653840px;}
._11{width:38.669760px;}
._32{width:40.457520px;}
._38{width:41.913360px;}
._25{width:43.146720px;}
._28{width:44.700480px;}
._1d{width:46.378800px;}
._2b{width:47.597040px;}
._2a{width:48.839760px;}
._33{width:49.926960px;}
._73{width:51.675840px;}
._37{width:52.766640px;}
._36{width:54.203760px;}
._1f{width:55.761120px;}
._60{width:56.831760px;}
._23{width:57.907440px;}
._29{width:59.286960px;}
._6f{width:60.835680px;}
._18{width:62.269920px;}
._35{width:63.400320px;}
._34{width:64.605600px;}
._31{width:65.915280px;}
._72{width:67.507680px;}
._76{width:82.588320px;}
._75{width:88.091280px;}
._78{width:128.058720px;}
._6{width:202.500000px;}
._5{width:345.365760px;}
._3{width:631.448160px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,78,154);}
.fc1{color:rgb(192,0,0);}
.fc5{color:rgb(1,2,5);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fsb{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs6{font-size:95.760000px;}
.y101{bottom:-3.600000px;}
.y0{bottom:0.000000px;}
.y1a3{bottom:5.760000px;}
.y19f{bottom:5.940000px;}
.y8{bottom:6.480000px;}
.y7{bottom:6.660000px;}
.yf9{bottom:6.840000px;}
.yf6{bottom:7.200000px;}
.y1c2{bottom:7.560000px;}
.yf4{bottom:9.000000px;}
.y1c3{bottom:9.180000px;}
.y106{bottom:9.900000px;}
.y15f{bottom:9.930000px;}
.y1bf{bottom:10.080000px;}
.y150{bottom:10.800000px;}
.y1fc{bottom:12.240000px;}
.y156{bottom:13.860000px;}
.y160{bottom:13.890000px;}
.y18c{bottom:13.905000px;}
.y1c0{bottom:14.400000px;}
.y1cc{bottom:15.120000px;}
.y151{bottom:15.660000px;}
.y1a0{bottom:15.840000px;}
.y1aa{bottom:16.020000px;}
.y1a6{bottom:16.200000px;}
.y1fb{bottom:18.540000px;}
.y200{bottom:18.570000px;}
.y103{bottom:19.080000px;}
.y105{bottom:21.420000px;}
.y1f7{bottom:22.860000px;}
.y1ca{bottom:25.380000px;}
.y1a2{bottom:25.560000px;}
.y19e{bottom:25.740000px;}
.y1f9{bottom:28.980000px;}
.y1fe{bottom:29.010000px;}
.yf8{bottom:32.220000px;}
.y202{bottom:32.400000px;}
.y1f2{bottom:32.760000px;}
.y1c7{bottom:35.640000px;}
.y1a9{bottom:35.820000px;}
.y1a5{bottom:36.000000px;}
.y1f3{bottom:42.660000px;}
.y1c8{bottom:45.540000px;}
.y9{bottom:51.480000px;}
.y1f1{bottom:52.560000px;}
.y108{bottom:58.680000px;}
.y1f5{bottom:59.760000px;}
.y1f6{bottom:62.460000px;}
.y6{bottom:68.580000px;}
.y107{bottom:75.780000px;}
.y1f4{bottom:79.560000px;}
.yea{bottom:101.700000px;}
.y154{bottom:103.320000px;}
.y204{bottom:104.040000px;}
.y176{bottom:104.220000px;}
.y224{bottom:110.700000px;}
.yb0{bottom:111.420000px;}
.y123{bottom:115.200000px;}
.y19c{bottom:116.280000px;}
.y153{bottom:118.080000px;}
.y201{bottom:118.800000px;}
.y148{bottom:120.420000px;}
.ye9{bottom:121.500000px;}
.y36{bottom:122.940000px;}
.y175{bottom:124.020000px;}
.y7c{bottom:129.240000px;}
.y223{bottom:130.500000px;}
.yaf{bottom:131.220000px;}
.y47{bottom:132.840000px;}
.y122{bottom:135.000000px;}
.y19b{bottom:136.260000px;}
.y174{bottom:139.500000px;}
.y147{bottom:140.220000px;}
.ye8{bottom:141.480000px;}
.y35{bottom:142.920000px;}
.y152{bottom:148.500000px;}
.yf2{bottom:148.890000px;}
.y7b{bottom:149.040000px;}
.y222{bottom:150.480000px;}
.yae{bottom:151.020000px;}
.y46{bottom:152.640000px;}
.y121{bottom:154.800000px;}
.y19a{bottom:156.060000px;}
.yfd{bottom:156.270000px;}
.y203{bottom:159.120000px;}
.y146{bottom:160.020000px;}
.ye7{bottom:161.280000px;}
.y34{bottom:162.720000px;}
.yad{bottom:168.300000px;}
.y7a{bottom:168.840000px;}
.y173{bottom:169.020000px;}
.y221{bottom:170.280000px;}
.y45{bottom:172.440000px;}
.y120{bottom:174.600000px;}
.y199{bottom:175.860000px;}
.y145{bottom:177.300000px;}
.y14f{bottom:179.100000px;}
.ye6{bottom:181.080000px;}
.y33{bottom:182.520000px;}
.yfc{bottom:183.630000px;}
.yf1{bottom:184.890000px;}
.y79{bottom:188.640000px;}
.y220{bottom:190.080000px;}
.y1fd{bottom:192.420000px;}
.y44{bottom:193.320000px;}
.y11f{bottom:194.580000px;}
.y198{bottom:195.660000px;}
.yac{bottom:197.100000px;}
.y172{bottom:198.360000px;}
.ye5{bottom:200.880000px;}
.y32{bottom:202.320000px;}
.y144{bottom:206.100000px;}
.y78{bottom:208.440000px;}
.y21f{bottom:209.910000px;}
.y43{bottom:213.150000px;}
.y11e{bottom:214.410000px;}
.y197{bottom:215.490000px;}
.y14e{bottom:216.210000px;}
.yab{bottom:216.930000px;}
.ye4{bottom:220.710000px;}
.yf0{bottom:220.890000px;}
.yfb{bottom:221.070000px;}
.y31{bottom:222.150000px;}
.y1ff{bottom:225.750000px;}
.y143{bottom:225.930000px;}
.y171{bottom:227.730000px;}
.y77{bottom:228.450000px;}
.y21e{bottom:229.710000px;}
.yee{bottom:230.250000px;}
.y42{bottom:233.130000px;}
.y11d{bottom:234.210000px;}
.y196{bottom:235.470000px;}
.yaa{bottom:236.730000px;}
.ye3{bottom:240.690000px;}
.y30{bottom:242.130000px;}
.y142{bottom:245.730000px;}
.y76{bottom:248.250000px;}
.y21d{bottom:249.690000px;}
.y41{bottom:252.930000px;}
.y11c{bottom:254.010000px;}
.y195{bottom:255.270000px;}
.y1c4{bottom:255.450000px;}
.ya9{bottom:256.710000px;}
.y170{bottom:257.250000px;}
.y1f8{bottom:259.050000px;}
.ye2{bottom:260.490000px;}
.y2f{bottom:261.930000px;}
.y141{bottom:265.710000px;}
.yed{bottom:267.690000px;}
.y75{bottom:268.050000px;}
.y21c{bottom:269.490000px;}
.y40{bottom:272.730000px;}
.y11b{bottom:273.810000px;}
.y194{bottom:275.070000px;}
.ya8{bottom:276.510000px;}
.ye1{bottom:280.290000px;}
.y2e{bottom:281.730000px;}
.y1c1{bottom:284.610000px;}
.y140{bottom:285.510000px;}
.y16f{bottom:286.590000px;}
.y74{bottom:287.850000px;}
.y21b{bottom:289.290000px;}
.y1fa{bottom:292.350000px;}
.y3f{bottom:292.530000px;}
.y11a{bottom:293.790000px;}
.y193{bottom:294.870000px;}
.ya7{bottom:296.310000px;}
.ye0{bottom:300.090000px;}
.y2d{bottom:301.530000px;}
.yec{bottom:305.130000px;}
.y13f{bottom:305.310000px;}
.y73{bottom:307.650000px;}
.y1be{bottom:308.550000px;}
.y21a{bottom:309.090000px;}
.y3e{bottom:312.330000px;}
.y119{bottom:313.590000px;}
.y192{bottom:314.670000px;}
.y16e{bottom:315.930000px;}
.ya6{bottom:316.110000px;}
.ydf{bottom:319.890000px;}
.y2c{bottom:321.330000px;}
.y13e{bottom:325.110000px;}
.y1f0{bottom:326.550000px;}
.y72{bottom:327.630000px;}
.y219{bottom:328.890000px;}
.y3d{bottom:332.310000px;}
.y118{bottom:333.390000px;}
.y191{bottom:334.650000px;}
.ya5{bottom:335.910000px;}
.y1bd{bottom:337.710000px;}
.yde{bottom:339.870000px;}
.y2b{bottom:341.310000px;}
.y13d{bottom:344.910000px;}
.y71{bottom:347.430000px;}
.y218{bottom:348.870000px;}
.y16d{bottom:351.210000px;}
.y3c{bottom:352.110000px;}
.y117{bottom:353.190000px;}
.y190{bottom:354.450000px;}
.ya4{bottom:355.890000px;}
.ydd{bottom:359.670000px;}
.y2a{bottom:361.110000px;}
.y13c{bottom:364.890000px;}
.y217{bottom:368.670000px;}
.y16c{bottom:371.010000px;}
.y3b{bottom:371.910000px;}
.y116{bottom:372.990000px;}
.y18f{bottom:374.250000px;}
.ya3{bottom:375.690000px;}
.y70{bottom:376.230000px;}
.ydc{bottom:379.470000px;}
.y29{bottom:380.910000px;}
.y1bc{bottom:383.970000px;}
.y13b{bottom:384.690000px;}
.y216{bottom:388.470000px;}
.y16b{bottom:390.810000px;}
.y3a{bottom:391.710000px;}
.y115{bottom:392.970000px;}
.y18e{bottom:394.050000px;}
.ya2{bottom:395.490000px;}
.y6f{bottom:396.030000px;}
.ydb{bottom:399.270000px;}
.y28{bottom:400.710000px;}
.y1bb{bottom:403.770000px;}
.y13a{bottom:404.490000px;}
.y215{bottom:408.270000px;}
.y18d{bottom:409.710000px;}
.y16a{bottom:410.610000px;}
.y39{bottom:411.510000px;}
.y114{bottom:412.770000px;}
.ya1{bottom:415.290000px;}
.y6e{bottom:415.830000px;}
.yda{bottom:419.070000px;}
.y27{bottom:420.510000px;}
.y1ba{bottom:423.570000px;}
.y139{bottom:424.290000px;}
.y1ef{bottom:427.530000px;}
.y214{bottom:428.070000px;}
.y169{bottom:430.590000px;}
.y38{bottom:431.490000px;}
.ya0{bottom:432.570000px;}
.y6d{bottom:435.810000px;}
.yd9{bottom:439.050000px;}
.y26{bottom:440.490000px;}
.y1b9{bottom:443.550000px;}
.y138{bottom:444.090000px;}
.y1ee{bottom:447.375000px;}
.y213{bottom:448.095000px;}
.y168{bottom:450.435000px;}
.y37{bottom:451.335000px;}
.y113{bottom:452.415000px;}
.y6c{bottom:455.655000px;}
.yd8{bottom:458.895000px;}
.y25{bottom:460.335000px;}
.y9f{bottom:461.415000px;}
.y1b8{bottom:463.395000px;}
.y137{bottom:464.115000px;}
.y1ed{bottom:467.175000px;}
.y212{bottom:467.895000px;}
.y18b{bottom:468.435000px;}
.y1df{bottom:469.155000px;}
.y167{bottom:470.235000px;}
.y112{bottom:472.215000px;}
.y6b{bottom:475.455000px;}
.yd7{bottom:478.695000px;}
.y24{bottom:480.135000px;}
.y9e{bottom:481.215000px;}
.y1b7{bottom:483.195000px;}
.y136{bottom:483.915000px;}
.y1ec{bottom:487.155000px;}
.y211{bottom:487.695000px;}
.y1de{bottom:488.955000px;}
.y166{bottom:490.035000px;}
.y111{bottom:492.195000px;}
.y6a{bottom:495.255000px;}
.y18a{bottom:497.955000px;}
.yd6{bottom:498.495000px;}
.y23{bottom:499.935000px;}
.y9d{bottom:501.195000px;}
.y1b6{bottom:502.995000px;}
.y135{bottom:503.715000px;}
.y1eb{bottom:506.955000px;}
.y210{bottom:507.495000px;}
.y1dd{bottom:508.755000px;}
.y165{bottom:509.835000px;}
.y110{bottom:511.995000px;}
.y69{bottom:515.055000px;}
.yd5{bottom:518.295000px;}
.y22{bottom:519.735000px;}
.y9c{bottom:520.995000px;}
.y1b5{bottom:522.795000px;}
.y134{bottom:523.515000px;}
.y164{bottom:525.495000px;}
.y1ea{bottom:526.755000px;}
.y189{bottom:527.295000px;}
.y1dc{bottom:528.555000px;}
.y10f{bottom:531.795000px;}
.yeb{bottom:534.855000px;}
.y68{bottom:535.035000px;}
.yd4{bottom:538.275000px;}
.y21{bottom:539.715000px;}
.y9b{bottom:540.795000px;}
.y1b4{bottom:542.775000px;}
.y133{bottom:543.315000px;}
.y1e9{bottom:546.555000px;}
.y20f{bottom:547.275000px;}
.y1db{bottom:548.355000px;}
.y10e{bottom:551.595000px;}
.y67{bottom:554.835000px;}
.y188{bottom:556.635000px;}
.yd3{bottom:558.075000px;}
.y20{bottom:559.515000px;}
.y9a{bottom:560.595000px;}
.y1b3{bottom:562.575000px;}
.y132{bottom:563.295000px;}
.y1e8{bottom:566.355000px;}
.y20e{bottom:567.075000px;}
.y1da{bottom:568.335000px;}
.y10d{bottom:571.395000px;}
.yfa{bottom:573.735000px;}
.y66{bottom:574.635000px;}
.yd2{bottom:577.875000px;}
.y1f{bottom:579.315000px;}
.yef{bottom:580.215000px;}
.y99{bottom:580.395000px;}
.y1b2{bottom:582.375000px;}
.y131{bottom:583.095000px;}
.y163{bottom:584.175000px;}
.y187{bottom:586.155000px;}
.y1e7{bottom:586.335000px;}
.y20d{bottom:586.875000px;}
.y100{bottom:587.955000px;}
.y1d9{bottom:588.135000px;}
.y10c{bottom:591.375000px;}
.y65{bottom:594.435000px;}
.yd1{bottom:597.675000px;}
.y98{bottom:600.375000px;}
.y1e{bottom:601.455000px;}
.y1b1{bottom:602.175000px;}
.y130{bottom:602.895000px;}
.yf7{bottom:604.875000px;}
.y1e6{bottom:606.135000px;}
.y20c{bottom:606.675000px;}
.y1d8{bottom:607.935000px;}
.y10b{bottom:611.175000px;}
.y162{bottom:613.695000px;}
.y64{bottom:614.235000px;}
.y186{bottom:615.495000px;}
.yd0{bottom:617.475000px;}
.y97{bottom:620.175000px;}
.y1d{bottom:621.255000px;}
.y1b0{bottom:621.975000px;}
.y12f{bottom:622.695000px;}
.y1e5{bottom:625.935000px;}
.y20b{bottom:626.475000px;}
.y1d7{bottom:627.735000px;}
.y10a{bottom:630.975000px;}
.y63{bottom:634.215000px;}
.ycf{bottom:637.455000px;}
.yff{bottom:638.535000px;}
.y96{bottom:639.975000px;}
.y1c{bottom:641.055000px;}
.y1af{bottom:641.955000px;}
.y12e{bottom:642.495000px;}
.y161{bottom:643.035000px;}
.y1e4{bottom:645.735000px;}
.y20a{bottom:646.455000px;}
.y1d6{bottom:647.535000px;}
.y109{bottom:648.255000px;}
.y185{bottom:650.595000px;}
.y62{bottom:654.015000px;}
.yf5{bottom:655.455000px;}
.yce{bottom:657.255000px;}
.y95{bottom:659.775000px;}
.y1b{bottom:660.855000px;}
.y1ae{bottom:661.755000px;}
.y12d{bottom:662.475000px;}
.y1e3{bottom:665.535000px;}
.y209{bottom:666.255000px;}
.y15e{bottom:672.375000px;}
.y61{bottom:673.815000px;}
.y1d5{bottom:676.515000px;}
.ycd{bottom:677.055000px;}
.y94{bottom:679.575000px;}
.y1a{bottom:680.835000px;}
.yf3{bottom:681.225000px;}
.y1ad{bottom:681.585000px;}
.y12c{bottom:682.305000px;}
.y1e2{bottom:685.545000px;}
.y208{bottom:686.085000px;}
.y184{bottom:688.605000px;}
.yfe{bottom:689.325000px;}
.y60{bottom:693.645000px;}
.y1d4{bottom:696.345000px;}
.ycc{bottom:696.885000px;}
.y93{bottom:699.585000px;}
.y19{bottom:700.665000px;}
.y1ac{bottom:701.385000px;}
.y12b{bottom:702.105000px;}
.y1e1{bottom:705.345000px;}
.y207{bottom:705.885000px;}
.y15d{bottom:707.685000px;}
.y183{bottom:708.405000px;}
.y5f{bottom:713.445000px;}
.y1d3{bottom:716.145000px;}
.ycb{bottom:716.685000px;}
.y92{bottom:719.385000px;}
.y18{bottom:720.465000px;}
.y1ab{bottom:721.185000px;}
.y12a{bottom:721.905000px;}
.y1e0{bottom:725.145000px;}
.y206{bottom:725.685000px;}
.y182{bottom:728.205000px;}
.y5e{bottom:733.425000px;}
.y1a8{bottom:736.125000px;}
.yca{bottom:736.665000px;}
.y91{bottom:739.185000px;}
.y17{bottom:740.265000px;}
.y129{bottom:741.705000px;}
.y1d2{bottom:744.945000px;}
.y15c{bottom:745.485000px;}
.y205{bottom:745.665000px;}
.y181{bottom:748.005000px;}
.y104{bottom:751.785000px;}
.y5d{bottom:753.225000px;}
.yc9{bottom:756.465000px;}
.y1a7{bottom:756.645000px;}
.y90{bottom:758.985000px;}
.y16{bottom:760.065000px;}
.y128{bottom:761.685000px;}
.y102{bottom:763.305000px;}
.y1d1{bottom:764.745000px;}
.y15b{bottom:765.285000px;}
.y14d{bottom:765.465000px;}
.y180{bottom:767.805000px;}
.yc8{bottom:776.265000px;}
.y8f{bottom:778.785000px;}
.y15{bottom:780.045000px;}
.y127{bottom:781.485000px;}
.y5c{bottom:782.025000px;}
.y1d0{bottom:784.725000px;}
.y14c{bottom:785.265000px;}
.y17f{bottom:787.785000px;}
.yc7{bottom:796.065000px;}
.y1a4{bottom:796.965000px;}
.y8e{bottom:798.765000px;}
.y14{bottom:799.845000px;}
.y126{bottom:801.285000px;}
.y5b{bottom:801.825000px;}
.y1cf{bottom:804.525000px;}
.y14b{bottom:805.065000px;}
.y17e{bottom:807.585000px;}
.yc6{bottom:815.865000px;}
.y1a1{bottom:817.665000px;}
.y8d{bottom:818.565000px;}
.y13{bottom:819.465000px;}
.y5a{bottom:821.625000px;}
.y1ce{bottom:824.325000px;}
.y14a{bottom:824.865000px;}
.y17d{bottom:827.385000px;}
.yc5{bottom:835.845000px;}
.y8c{bottom:838.365000px;}
.y59{bottom:841.605000px;}
.y12{bottom:841.785000px;}
.y1cd{bottom:844.125000px;}
.y15a{bottom:844.665000px;}
.y149{bottom:844.845000px;}
.y17c{bottom:847.185000px;}
.yc4{bottom:855.645000px;}
.y19d{bottom:857.985000px;}
.y8b{bottom:858.165000px;}
.y1c9{bottom:858.885000px;}
.y159{bottom:860.145000px;}
.y58{bottom:861.405000px;}
.y17b{bottom:862.845000px;}
.y125{bottom:864.645000px;}
.y11{bottom:866.805000px;}
.y8a{bottom:875.445000px;}
.y57{bottom:881.205000px;}
.y124{bottom:884.445000px;}
.y10{bottom:886.605000px;}
.y1cb{bottom:888.765000px;}
.y158{bottom:889.665000px;}
.y17a{bottom:892.185000px;}
.yc3{bottom:895.245000px;}
.y56{bottom:901.005000px;}
.y89{bottom:904.245000px;}
.yf{bottom:906.405000px;}
.yc2{bottom:915.045000px;}
.y1c6{bottom:918.690000px;}
.y157{bottom:919.050000px;}
.yb8{bottom:920.310000px;}
.y55{bottom:920.850000px;}
.ye{bottom:921.570000px;}
.y88{bottom:924.090000px;}
.yc1{bottom:935.070000px;}
.yb7{bottom:940.110000px;}
.y54{bottom:940.830000px;}
.yd{bottom:942.990000px;}
.y87{bottom:944.070000px;}
.y155{bottom:948.390000px;}
.y179{bottom:951.090000px;}
.yc0{bottom:954.870000px;}
.yb6{bottom:960.090000px;}
.y53{bottom:960.630000px;}
.y86{bottom:963.870000px;}
.yc{bottom:966.390000px;}
.ybf{bottom:974.670000px;}
.yb5{bottom:979.890000px;}
.y52{bottom:980.430000px;}
.y85{bottom:983.670000px;}
.y1c5{bottom:985.470000px;}
.ybe{bottom:994.470000px;}
.yb{bottom:998.070000px;}
.y51{bottom:1000.230000px;}
.y84{bottom:1003.470000px;}
.yb4{bottom:1008.690000px;}
.y178{bottom:1009.770000px;}
.ybd{bottom:1014.270000px;}
.y50{bottom:1020.030000px;}
.y83{bottom:1023.270000px;}
.yb3{bottom:1028.490000px;}
.ya{bottom:1029.930000px;}
.ybc{bottom:1034.250000px;}
.y4f{bottom:1040.010000px;}
.y82{bottom:1043.250000px;}
.y177{bottom:1045.050000px;}
.yb2{bottom:1048.290000px;}
.ybb{bottom:1054.050000px;}
.y4e{bottom:1060.890000px;}
.y81{bottom:1063.050000px;}
.yb1{bottom:1065.570000px;}
.y5{bottom:1066.110000px;}
.yba{bottom:1073.850000px;}
.y4d{bottom:1080.690000px;}
.y80{bottom:1082.850000px;}
.yb9{bottom:1093.650000px;}
.y4c{bottom:1100.490000px;}
.y7f{bottom:1102.650000px;}
.y4{bottom:1103.010000px;}
.y4b{bottom:1121.370000px;}
.y7e{bottom:1122.450000px;}
.y3{bottom:1131.450000px;}
.y4a{bottom:1141.350000px;}
.y7d{bottom:1142.430000px;}
.y2{bottom:1159.920000px;}
.y49{bottom:1171.800000px;}
.y1{bottom:1190.700000px;}
.y48{bottom:1193.580000px;}
.h2b{height:19.800000px;}
.h29{height:19.980000px;}
.h6{height:21.960000px;}
.h17{height:22.015547px;}
.h2d{height:23.220000px;}
.h18{height:24.840000px;}
.h14{height:25.020000px;}
.h12{height:26.640000px;}
.hb{height:27.147656px;}
.h23{height:27.900000px;}
.h24{height:27.936000px;}
.h2c{height:28.440000px;}
.h31{height:29.160000px;}
.h30{height:29.196000px;}
.h21{height:29.700000px;}
.h22{height:29.880000px;}
.h1a{height:30.420000px;}
.h1d{height:31.320000px;}
.h34{height:32.580000px;}
.h36{height:32.616000px;}
.h1c{height:36.861328px;}
.h27{height:39.600000px;}
.h26{height:39.780000px;}
.h25{height:41.493516px;}
.hc{height:41.726953px;}
.ha{height:42.164648px;}
.h20{height:42.661046px;}
.h1e{height:42.759141px;}
.h13{height:42.923320px;}
.hd{height:43.506914px;}
.h7{height:46.251562px;}
.h3{height:46.736719px;}
.h1b{height:49.394180px;}
.h15{height:49.860000px;}
.h19{height:50.076000px;}
.h4{height:50.800781px;}
.h11{height:52.417969px;}
.h8{height:53.224453px;}
.h2{height:54.864844px;}
.h2f{height:59.076000px;}
.h2e{height:59.580000px;}
.h2a{height:60.120000px;}
.h28{height:60.300000px;}
.h33{height:65.880000px;}
.h1f{height:65.884219px;}
.h35{height:65.916000px;}
.h9{height:67.565039px;}
.h5{height:71.613281px;}
.h37{height:72.900000px;}
.he{height:73.722656px;}
.h32{height:93.600000px;}
.h10{height:237.810000px;}
.h16{height:238.170000px;}
.hf{height:322.230000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:51.336000px;}
.w27{width:61.596000px;}
.w2f{width:64.800000px;}
.w26{width:64.980000px;}
.w2e{width:67.356000px;}
.w28{width:67.680000px;}
.w35{width:87.480000px;}
.w30{width:87.840000px;}
.w2b{width:89.316000px;}
.w25{width:89.856000px;}
.w21{width:90.540000px;}
.w32{width:99.216000px;}
.w29{width:99.720000px;}
.w36{width:108.756000px;}
.w31{width:109.476000px;}
.w34{width:115.200000px;}
.w2d{width:115.560000px;}
.w24{width:116.820000px;}
.w13{width:126.576000px;}
.w16{width:126.936000px;}
.w17{width:127.656000px;}
.w1e{width:137.520000px;}
.w7{width:140.796000px;}
.wb{width:142.596000px;}
.w9{width:145.296000px;}
.wa{width:147.996000px;}
.w1d{width:148.176000px;}
.w2a{width:155.190000px;}
.w2c{width:155.550000px;}
.w33{width:165.960000px;}
.w1b{width:168.870000px;}
.w19{width:169.230000px;}
.w15{width:174.450000px;}
.w12{width:174.810000px;}
.w6{width:175.170000px;}
.w8{width:182.550000px;}
.w22{width:188.670000px;}
.w20{width:190.290000px;}
.wc{width:198.930000px;}
.wf{width:199.650000px;}
.w10{width:204.150000px;}
.wd{width:204.870000px;}
.w18{width:211.170000px;}
.w14{width:211.890000px;}
.w11{width:219.810000px;}
.we{width:219.990000px;}
.w1c{width:275.070000px;}
.w1a{width:275.790000px;}
.w1f{width:339.195000px;}
.w23{width:438.555000px;}
.w5{width:597.885000px;}
.w4{width:733.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4c{left:1.260000px;}
.x3{left:8.100000px;}
.x22{left:10.800000px;}
.x5{left:17.640000px;}
.x2c{left:19.440000px;}
.x25{left:21.780000px;}
.x2d{left:27.540000px;}
.x2f{left:29.700000px;}
.x30{left:31.320000px;}
.x24{left:36.900000px;}
.x26{left:40.680000px;}
.x33{left:45.899987px;}
.x2e{left:50.040000px;}
.x1{left:52.919987px;}
.x2{left:53.999987px;}
.x7{left:58.679987px;}
.x17{left:62.459987px;}
.x19{left:66.779987px;}
.x4e{left:71.099987px;}
.x46{left:74.025000px;}
.x53{left:75.239987px;}
.x16{left:86.075987px;}
.x27{left:87.480000px;}
.x18{left:89.495987px;}
.x52{left:102.275987px;}
.x4{left:106.056000px;}
.x10{left:108.035987px;}
.x6{left:113.075987px;}
.x45{left:116.316000px;}
.xa{left:129.095987px;}
.x36{left:133.236000px;}
.x1f{left:146.916000px;}
.xc{left:150.689987px;}
.xd{left:158.069987px;}
.x3a{left:159.330000px;}
.x29{left:161.145000px;}
.x2a{left:167.805000px;}
.xb{left:171.029987px;}
.x23{left:182.550000px;}
.x31{left:188.310000px;}
.x8{left:198.389987px;}
.x4d{left:256.170000px;}
.x44{left:272.595000px;}
.x3c{left:281.955000px;}
.x21{left:312.189000px;}
.x1e{left:348.554987px;}
.x35{left:353.955000px;}
.x4b{left:356.115000px;}
.x4f{left:357.374987px;}
.x1d{left:361.154987px;}
.x43{left:373.035000px;}
.x38{left:401.475000px;}
.x39{left:436.215000px;}
.x42{left:441.435000px;}
.x9{left:446.504987px;}
.x1c{left:461.984987px;}
.x4a{left:465.945000px;}
.x12{left:473.504987px;}
.x14{left:481.964987px;}
.x1a{left:487.004987px;}
.x50{left:490.604987px;}
.x13{left:494.744987px;}
.x41{left:503.745000px;}
.x15{left:508.964987px;}
.x1b{left:513.284987px;}
.x51{left:521.744987px;}
.x3e{left:525.885000px;}
.x11{left:527.504987px;}
.x37{left:529.125000px;}
.x28{left:536.865000px;}
.x49{left:554.145000px;}
.x32{left:557.385000px;}
.x34{left:559.545000px;}
.x2b{left:563.145000px;}
.x40{left:569.085000px;}
.x20{left:576.474000px;}
.x3b{left:611.205000px;}
.x48{left:619.665000px;}
.x3f{left:659.310000px;}
.x47{left:687.750000px;}
.x3d{left:715.290000px;}
.xf{left:777.029987px;}
.xe{left:832.319987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-13.920000pt;}
.ls12{letter-spacing:-12.640000pt;}
.ls13{letter-spacing:-2.240000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.185067pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015360pt;}
.ls15{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.271467pt;}
.lsc{letter-spacing:0.320000pt;}
.ls17{letter-spacing:14.672640pt;}
.ls11{letter-spacing:20.000000pt;}
.ls14{letter-spacing:40.912640pt;}
.ls3{letter-spacing:56.912640pt;}
.ls9{letter-spacing:57.040640pt;}
.lsa{letter-spacing:63.312640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws8{word-spacing:-16.839040pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.wsf{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wsc{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.870933pt;}
.wsd{word-spacing:-11.040000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws9{word-spacing:-7.232000pt;}
.ws6{word-spacing:0.000000pt;}
._56{margin-left:-2162.977920pt;}
._5c{margin-left:-2069.774507pt;}
._69{margin-left:-1873.903360pt;}
._65{margin-left:-1826.520320pt;}
._4e{margin-left:-1593.482880pt;}
._61{margin-left:-1573.728000pt;}
._48{margin-left:-1082.796160pt;}
._2d{margin-left:-1015.083520pt;}
._68{margin-left:-837.750400pt;}
._5d{margin-left:-780.168320pt;}
._3a{margin-left:-677.313280pt;}
._3f{margin-left:-629.732480pt;}
._57{margin-left:-576.612480pt;}
._39{margin-left:-550.747520pt;}
._4f{margin-left:-511.646720pt;}
._3e{margin-left:-504.567040pt;}
._2e{margin-left:-455.078400pt;}
._4d{margin-left:-440.890880pt;}
._4b{margin-left:-434.994560pt;}
._3b{margin-left:-431.227520pt;}
._52{margin-left:-417.044480pt;}
._42{margin-left:-413.379200pt;}
._2f{margin-left:-406.420480pt;}
._71{margin-left:-397.283840pt;}
._53{margin-left:-375.132800pt;}
._54{margin-left:-371.896960pt;}
._58{margin-left:-326.368640pt;}
._6a{margin-left:-323.500160pt;}
._62{margin-left:-296.833920pt;}
._5e{margin-left:-277.452160pt;}
._5b{margin-left:-275.541547pt;}
._40{margin-left:-261.456000pt;}
._67{margin-left:-254.661120pt;}
._41{margin-left:-252.638080pt;}
._59{margin-left:-251.150720pt;}
._49{margin-left:-239.358080pt;}
._55{margin-left:-236.972160pt;}
._64{margin-left:-225.658880pt;}
._51{margin-left:-213.440000pt;}
._70{margin-left:-210.625280pt;}
._6b{margin-left:-208.389120pt;}
._6e{margin-left:-195.697920pt;}
._30{margin-left:-190.328320pt;}
._66{margin-left:-187.725440pt;}
._63{margin-left:-175.034240pt;}
._45{margin-left:-172.059520pt;}
._6d{margin-left:-163.348267pt;}
._4c{margin-left:-151.680000pt;}
._3d{margin-left:-148.368000pt;}
._44{margin-left:-130.785280pt;}
._47{margin-left:-121.967360pt;}
._43{margin-left:-120.480000pt;}
._5a{margin-left:-118.316800pt;}
._46{margin-left:-108.160000pt;}
._50{margin-left:-93.920000pt;}
._3c{margin-left:-81.280000pt;}
._6c{margin-left:-57.054720pt;}
._4a{margin-left:-54.080000pt;}
._2c{margin-left:-18.432000pt;}
._f{margin-left:-7.281707pt;}
._74{margin-left:-6.309120pt;}
._1{margin-left:-5.416960pt;}
._7{margin-left:-4.012800pt;}
._4{margin-left:-3.061760pt;}
._1a{margin-left:-2.168533pt;}
._2{margin-left:-1.236480pt;}
._0{width:0.898560pt;}
._8{width:2.310827pt;}
._b{width:3.452800pt;}
._c{width:4.816000pt;}
._9{width:6.360533pt;}
._a{width:7.344427pt;}
._e{width:8.334507pt;}
._d{width:9.738240pt;}
._10{width:10.653440pt;}
._16{width:12.332800pt;}
._5f{width:13.283200pt;}
._1e{width:14.395520pt;}
._17{width:15.568640pt;}
._1c{width:16.978560pt;}
._14{width:18.649600pt;}
._13{width:19.601280pt;}
._22{width:20.692480pt;}
._24{width:21.619840pt;}
._15{width:23.271040pt;}
._1b{width:24.913280pt;}
._12{width:26.564480pt;}
._19{width:28.264320pt;}
._20{width:29.370880pt;}
._21{width:30.407040pt;}
._27{width:31.463040pt;}
._26{width:32.403200pt;}
._77{width:33.470080pt;}
._11{width:34.373120pt;}
._32{width:35.962240pt;}
._38{width:37.256320pt;}
._25{width:38.352640pt;}
._28{width:39.733760pt;}
._1d{width:41.225600pt;}
._2b{width:42.308480pt;}
._2a{width:43.413120pt;}
._33{width:44.379520pt;}
._73{width:45.934080pt;}
._37{width:46.903680pt;}
._36{width:48.181120pt;}
._1f{width:49.565440pt;}
._60{width:50.517120pt;}
._23{width:51.473280pt;}
._29{width:52.699520pt;}
._6f{width:54.076160pt;}
._18{width:55.351040pt;}
._35{width:56.355840pt;}
._34{width:57.427200pt;}
._31{width:58.591360pt;}
._72{width:60.006827pt;}
._76{width:73.411840pt;}
._75{width:78.303360pt;}
._78{width:113.829973pt;}
._6{width:180.000000pt;}
._5{width:306.991787pt;}
._3{width:561.287253pt;}
.fs8{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fsb{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs6{font-size:85.120000pt;}
.y101{bottom:-3.200000pt;}
.y0{bottom:0.000000pt;}
.y1a3{bottom:5.120000pt;}
.y19f{bottom:5.280000pt;}
.y8{bottom:5.760000pt;}
.y7{bottom:5.920000pt;}
.yf9{bottom:6.080000pt;}
.yf6{bottom:6.400000pt;}
.y1c2{bottom:6.720000pt;}
.yf4{bottom:8.000000pt;}
.y1c3{bottom:8.160000pt;}
.y106{bottom:8.800000pt;}
.y15f{bottom:8.826667pt;}
.y1bf{bottom:8.960000pt;}
.y150{bottom:9.600000pt;}
.y1fc{bottom:10.880000pt;}
.y156{bottom:12.320000pt;}
.y160{bottom:12.346667pt;}
.y18c{bottom:12.360000pt;}
.y1c0{bottom:12.800000pt;}
.y1cc{bottom:13.440000pt;}
.y151{bottom:13.920000pt;}
.y1a0{bottom:14.080000pt;}
.y1aa{bottom:14.240000pt;}
.y1a6{bottom:14.400000pt;}
.y1fb{bottom:16.480000pt;}
.y200{bottom:16.506667pt;}
.y103{bottom:16.960000pt;}
.y105{bottom:19.040000pt;}
.y1f7{bottom:20.320000pt;}
.y1ca{bottom:22.560000pt;}
.y1a2{bottom:22.720000pt;}
.y19e{bottom:22.880000pt;}
.y1f9{bottom:25.760000pt;}
.y1fe{bottom:25.786667pt;}
.yf8{bottom:28.640000pt;}
.y202{bottom:28.800000pt;}
.y1f2{bottom:29.120000pt;}
.y1c7{bottom:31.680000pt;}
.y1a9{bottom:31.840000pt;}
.y1a5{bottom:32.000000pt;}
.y1f3{bottom:37.920000pt;}
.y1c8{bottom:40.480000pt;}
.y9{bottom:45.760000pt;}
.y1f1{bottom:46.720000pt;}
.y108{bottom:52.160000pt;}
.y1f5{bottom:53.120000pt;}
.y1f6{bottom:55.520000pt;}
.y6{bottom:60.960000pt;}
.y107{bottom:67.360000pt;}
.y1f4{bottom:70.720000pt;}
.yea{bottom:90.400000pt;}
.y154{bottom:91.840000pt;}
.y204{bottom:92.480000pt;}
.y176{bottom:92.640000pt;}
.y224{bottom:98.400000pt;}
.yb0{bottom:99.040000pt;}
.y123{bottom:102.400000pt;}
.y19c{bottom:103.360000pt;}
.y153{bottom:104.960000pt;}
.y201{bottom:105.600000pt;}
.y148{bottom:107.040000pt;}
.ye9{bottom:108.000000pt;}
.y36{bottom:109.280000pt;}
.y175{bottom:110.240000pt;}
.y7c{bottom:114.880000pt;}
.y223{bottom:116.000000pt;}
.yaf{bottom:116.640000pt;}
.y47{bottom:118.080000pt;}
.y122{bottom:120.000000pt;}
.y19b{bottom:121.120000pt;}
.y174{bottom:124.000000pt;}
.y147{bottom:124.640000pt;}
.ye8{bottom:125.760000pt;}
.y35{bottom:127.040000pt;}
.y152{bottom:132.000000pt;}
.yf2{bottom:132.346667pt;}
.y7b{bottom:132.480000pt;}
.y222{bottom:133.760000pt;}
.yae{bottom:134.240000pt;}
.y46{bottom:135.680000pt;}
.y121{bottom:137.600000pt;}
.y19a{bottom:138.720000pt;}
.yfd{bottom:138.906667pt;}
.y203{bottom:141.440000pt;}
.y146{bottom:142.240000pt;}
.ye7{bottom:143.360000pt;}
.y34{bottom:144.640000pt;}
.yad{bottom:149.600000pt;}
.y7a{bottom:150.080000pt;}
.y173{bottom:150.240000pt;}
.y221{bottom:151.360000pt;}
.y45{bottom:153.280000pt;}
.y120{bottom:155.200000pt;}
.y199{bottom:156.320000pt;}
.y145{bottom:157.600000pt;}
.y14f{bottom:159.200000pt;}
.ye6{bottom:160.960000pt;}
.y33{bottom:162.240000pt;}
.yfc{bottom:163.226667pt;}
.yf1{bottom:164.346667pt;}
.y79{bottom:167.680000pt;}
.y220{bottom:168.960000pt;}
.y1fd{bottom:171.040000pt;}
.y44{bottom:171.840000pt;}
.y11f{bottom:172.960000pt;}
.y198{bottom:173.920000pt;}
.yac{bottom:175.200000pt;}
.y172{bottom:176.320000pt;}
.ye5{bottom:178.560000pt;}
.y32{bottom:179.840000pt;}
.y144{bottom:183.200000pt;}
.y78{bottom:185.280000pt;}
.y21f{bottom:186.586667pt;}
.y43{bottom:189.466667pt;}
.y11e{bottom:190.586667pt;}
.y197{bottom:191.546667pt;}
.y14e{bottom:192.186667pt;}
.yab{bottom:192.826667pt;}
.ye4{bottom:196.186667pt;}
.yf0{bottom:196.346667pt;}
.yfb{bottom:196.506667pt;}
.y31{bottom:197.466667pt;}
.y1ff{bottom:200.666667pt;}
.y143{bottom:200.826667pt;}
.y171{bottom:202.426667pt;}
.y77{bottom:203.066667pt;}
.y21e{bottom:204.186667pt;}
.yee{bottom:204.666667pt;}
.y42{bottom:207.226667pt;}
.y11d{bottom:208.186667pt;}
.y196{bottom:209.306667pt;}
.yaa{bottom:210.426667pt;}
.ye3{bottom:213.946667pt;}
.y30{bottom:215.226667pt;}
.y142{bottom:218.426667pt;}
.y76{bottom:220.666667pt;}
.y21d{bottom:221.946667pt;}
.y41{bottom:224.826667pt;}
.y11c{bottom:225.786667pt;}
.y195{bottom:226.906667pt;}
.y1c4{bottom:227.066667pt;}
.ya9{bottom:228.186667pt;}
.y170{bottom:228.666667pt;}
.y1f8{bottom:230.266667pt;}
.ye2{bottom:231.546667pt;}
.y2f{bottom:232.826667pt;}
.y141{bottom:236.186667pt;}
.yed{bottom:237.946667pt;}
.y75{bottom:238.266667pt;}
.y21c{bottom:239.546667pt;}
.y40{bottom:242.426667pt;}
.y11b{bottom:243.386667pt;}
.y194{bottom:244.506667pt;}
.ya8{bottom:245.786667pt;}
.ye1{bottom:249.146667pt;}
.y2e{bottom:250.426667pt;}
.y1c1{bottom:252.986667pt;}
.y140{bottom:253.786667pt;}
.y16f{bottom:254.746667pt;}
.y74{bottom:255.866667pt;}
.y21b{bottom:257.146667pt;}
.y1fa{bottom:259.866667pt;}
.y3f{bottom:260.026667pt;}
.y11a{bottom:261.146667pt;}
.y193{bottom:262.106667pt;}
.ya7{bottom:263.386667pt;}
.ye0{bottom:266.746667pt;}
.y2d{bottom:268.026667pt;}
.yec{bottom:271.226667pt;}
.y13f{bottom:271.386667pt;}
.y73{bottom:273.466667pt;}
.y1be{bottom:274.266667pt;}
.y21a{bottom:274.746667pt;}
.y3e{bottom:277.626667pt;}
.y119{bottom:278.746667pt;}
.y192{bottom:279.706667pt;}
.y16e{bottom:280.826667pt;}
.ya6{bottom:280.986667pt;}
.ydf{bottom:284.346667pt;}
.y2c{bottom:285.626667pt;}
.y13e{bottom:288.986667pt;}
.y1f0{bottom:290.266667pt;}
.y72{bottom:291.226667pt;}
.y219{bottom:292.346667pt;}
.y3d{bottom:295.386667pt;}
.y118{bottom:296.346667pt;}
.y191{bottom:297.466667pt;}
.ya5{bottom:298.586667pt;}
.y1bd{bottom:300.186667pt;}
.yde{bottom:302.106667pt;}
.y2b{bottom:303.386667pt;}
.y13d{bottom:306.586667pt;}
.y71{bottom:308.826667pt;}
.y218{bottom:310.106667pt;}
.y16d{bottom:312.186667pt;}
.y3c{bottom:312.986667pt;}
.y117{bottom:313.946667pt;}
.y190{bottom:315.066667pt;}
.ya4{bottom:316.346667pt;}
.ydd{bottom:319.706667pt;}
.y2a{bottom:320.986667pt;}
.y13c{bottom:324.346667pt;}
.y217{bottom:327.706667pt;}
.y16c{bottom:329.786667pt;}
.y3b{bottom:330.586667pt;}
.y116{bottom:331.546667pt;}
.y18f{bottom:332.666667pt;}
.ya3{bottom:333.946667pt;}
.y70{bottom:334.426667pt;}
.ydc{bottom:337.306667pt;}
.y29{bottom:338.586667pt;}
.y1bc{bottom:341.306667pt;}
.y13b{bottom:341.946667pt;}
.y216{bottom:345.306667pt;}
.y16b{bottom:347.386667pt;}
.y3a{bottom:348.186667pt;}
.y115{bottom:349.306667pt;}
.y18e{bottom:350.266667pt;}
.ya2{bottom:351.546667pt;}
.y6f{bottom:352.026667pt;}
.ydb{bottom:354.906667pt;}
.y28{bottom:356.186667pt;}
.y1bb{bottom:358.906667pt;}
.y13a{bottom:359.546667pt;}
.y215{bottom:362.906667pt;}
.y18d{bottom:364.186667pt;}
.y16a{bottom:364.986667pt;}
.y39{bottom:365.786667pt;}
.y114{bottom:366.906667pt;}
.ya1{bottom:369.146667pt;}
.y6e{bottom:369.626667pt;}
.yda{bottom:372.506667pt;}
.y27{bottom:373.786667pt;}
.y1ba{bottom:376.506667pt;}
.y139{bottom:377.146667pt;}
.y1ef{bottom:380.026667pt;}
.y214{bottom:380.506667pt;}
.y169{bottom:382.746667pt;}
.y38{bottom:383.546667pt;}
.ya0{bottom:384.506667pt;}
.y6d{bottom:387.386667pt;}
.yd9{bottom:390.266667pt;}
.y26{bottom:391.546667pt;}
.y1b9{bottom:394.266667pt;}
.y138{bottom:394.746667pt;}
.y1ee{bottom:397.666667pt;}
.y213{bottom:398.306667pt;}
.y168{bottom:400.386667pt;}
.y37{bottom:401.186667pt;}
.y113{bottom:402.146667pt;}
.y6c{bottom:405.026667pt;}
.yd8{bottom:407.906667pt;}
.y25{bottom:409.186667pt;}
.y9f{bottom:410.146667pt;}
.y1b8{bottom:411.906667pt;}
.y137{bottom:412.546667pt;}
.y1ed{bottom:415.266667pt;}
.y212{bottom:415.906667pt;}
.y18b{bottom:416.386667pt;}
.y1df{bottom:417.026667pt;}
.y167{bottom:417.986667pt;}
.y112{bottom:419.746667pt;}
.y6b{bottom:422.626667pt;}
.yd7{bottom:425.506667pt;}
.y24{bottom:426.786667pt;}
.y9e{bottom:427.746667pt;}
.y1b7{bottom:429.506667pt;}
.y136{bottom:430.146667pt;}
.y1ec{bottom:433.026667pt;}
.y211{bottom:433.506667pt;}
.y1de{bottom:434.626667pt;}
.y166{bottom:435.586667pt;}
.y111{bottom:437.506667pt;}
.y6a{bottom:440.226667pt;}
.y18a{bottom:442.626667pt;}
.yd6{bottom:443.106667pt;}
.y23{bottom:444.386667pt;}
.y9d{bottom:445.506667pt;}
.y1b6{bottom:447.106667pt;}
.y135{bottom:447.746667pt;}
.y1eb{bottom:450.626667pt;}
.y210{bottom:451.106667pt;}
.y1dd{bottom:452.226667pt;}
.y165{bottom:453.186667pt;}
.y110{bottom:455.106667pt;}
.y69{bottom:457.826667pt;}
.yd5{bottom:460.706667pt;}
.y22{bottom:461.986667pt;}
.y9c{bottom:463.106667pt;}
.y1b5{bottom:464.706667pt;}
.y134{bottom:465.346667pt;}
.y164{bottom:467.106667pt;}
.y1ea{bottom:468.226667pt;}
.y189{bottom:468.706667pt;}
.y1dc{bottom:469.826667pt;}
.y10f{bottom:472.706667pt;}
.yeb{bottom:475.426667pt;}
.y68{bottom:475.586667pt;}
.yd4{bottom:478.466667pt;}
.y21{bottom:479.746667pt;}
.y9b{bottom:480.706667pt;}
.y1b4{bottom:482.466667pt;}
.y133{bottom:482.946667pt;}
.y1e9{bottom:485.826667pt;}
.y20f{bottom:486.466667pt;}
.y1db{bottom:487.426667pt;}
.y10e{bottom:490.306667pt;}
.y67{bottom:493.186667pt;}
.y188{bottom:494.786667pt;}
.yd3{bottom:496.066667pt;}
.y20{bottom:497.346667pt;}
.y9a{bottom:498.306667pt;}
.y1b3{bottom:500.066667pt;}
.y132{bottom:500.706667pt;}
.y1e8{bottom:503.426667pt;}
.y20e{bottom:504.066667pt;}
.y1da{bottom:505.186667pt;}
.y10d{bottom:507.906667pt;}
.yfa{bottom:509.986667pt;}
.y66{bottom:510.786667pt;}
.yd2{bottom:513.666667pt;}
.y1f{bottom:514.946667pt;}
.yef{bottom:515.746667pt;}
.y99{bottom:515.906667pt;}
.y1b2{bottom:517.666667pt;}
.y131{bottom:518.306667pt;}
.y163{bottom:519.266667pt;}
.y187{bottom:521.026667pt;}
.y1e7{bottom:521.186667pt;}
.y20d{bottom:521.666667pt;}
.y100{bottom:522.626667pt;}
.y1d9{bottom:522.786667pt;}
.y10c{bottom:525.666667pt;}
.y65{bottom:528.386667pt;}
.yd1{bottom:531.266667pt;}
.y98{bottom:533.666667pt;}
.y1e{bottom:534.626667pt;}
.y1b1{bottom:535.266667pt;}
.y130{bottom:535.906667pt;}
.yf7{bottom:537.666667pt;}
.y1e6{bottom:538.786667pt;}
.y20c{bottom:539.266667pt;}
.y1d8{bottom:540.386667pt;}
.y10b{bottom:543.266667pt;}
.y162{bottom:545.506667pt;}
.y64{bottom:545.986667pt;}
.y186{bottom:547.106667pt;}
.yd0{bottom:548.866667pt;}
.y97{bottom:551.266667pt;}
.y1d{bottom:552.226667pt;}
.y1b0{bottom:552.866667pt;}
.y12f{bottom:553.506667pt;}
.y1e5{bottom:556.386667pt;}
.y20b{bottom:556.866667pt;}
.y1d7{bottom:557.986667pt;}
.y10a{bottom:560.866667pt;}
.y63{bottom:563.746667pt;}
.ycf{bottom:566.626667pt;}
.yff{bottom:567.586667pt;}
.y96{bottom:568.866667pt;}
.y1c{bottom:569.826667pt;}
.y1af{bottom:570.626667pt;}
.y12e{bottom:571.106667pt;}
.y161{bottom:571.586667pt;}
.y1e4{bottom:573.986667pt;}
.y20a{bottom:574.626667pt;}
.y1d6{bottom:575.586667pt;}
.y109{bottom:576.226667pt;}
.y185{bottom:578.306667pt;}
.y62{bottom:581.346667pt;}
.yf5{bottom:582.626667pt;}
.yce{bottom:584.226667pt;}
.y95{bottom:586.466667pt;}
.y1b{bottom:587.426667pt;}
.y1ae{bottom:588.226667pt;}
.y12d{bottom:588.866667pt;}
.y1e3{bottom:591.586667pt;}
.y209{bottom:592.226667pt;}
.y15e{bottom:597.666667pt;}
.y61{bottom:598.946667pt;}
.y1d5{bottom:601.346667pt;}
.ycd{bottom:601.826667pt;}
.y94{bottom:604.066667pt;}
.y1a{bottom:605.186667pt;}
.yf3{bottom:605.533333pt;}
.y1ad{bottom:605.853333pt;}
.y12c{bottom:606.493333pt;}
.y1e2{bottom:609.373333pt;}
.y208{bottom:609.853333pt;}
.y184{bottom:612.093333pt;}
.yfe{bottom:612.733333pt;}
.y60{bottom:616.573333pt;}
.y1d4{bottom:618.973333pt;}
.ycc{bottom:619.453333pt;}
.y93{bottom:621.853333pt;}
.y19{bottom:622.813333pt;}
.y1ac{bottom:623.453333pt;}
.y12b{bottom:624.093333pt;}
.y1e1{bottom:626.973333pt;}
.y207{bottom:627.453333pt;}
.y15d{bottom:629.053333pt;}
.y183{bottom:629.693333pt;}
.y5f{bottom:634.173333pt;}
.y1d3{bottom:636.573333pt;}
.ycb{bottom:637.053333pt;}
.y92{bottom:639.453333pt;}
.y18{bottom:640.413333pt;}
.y1ab{bottom:641.053333pt;}
.y12a{bottom:641.693333pt;}
.y1e0{bottom:644.573333pt;}
.y206{bottom:645.053333pt;}
.y182{bottom:647.293333pt;}
.y5e{bottom:651.933333pt;}
.y1a8{bottom:654.333333pt;}
.yca{bottom:654.813333pt;}
.y91{bottom:657.053333pt;}
.y17{bottom:658.013333pt;}
.y129{bottom:659.293333pt;}
.y1d2{bottom:662.173333pt;}
.y15c{bottom:662.653333pt;}
.y205{bottom:662.813333pt;}
.y181{bottom:664.893333pt;}
.y104{bottom:668.253333pt;}
.y5d{bottom:669.533333pt;}
.yc9{bottom:672.413333pt;}
.y1a7{bottom:672.573333pt;}
.y90{bottom:674.653333pt;}
.y16{bottom:675.613333pt;}
.y128{bottom:677.053333pt;}
.y102{bottom:678.493333pt;}
.y1d1{bottom:679.773333pt;}
.y15b{bottom:680.253333pt;}
.y14d{bottom:680.413333pt;}
.y180{bottom:682.493333pt;}
.yc8{bottom:690.013333pt;}
.y8f{bottom:692.253333pt;}
.y15{bottom:693.373333pt;}
.y127{bottom:694.653333pt;}
.y5c{bottom:695.133333pt;}
.y1d0{bottom:697.533333pt;}
.y14c{bottom:698.013333pt;}
.y17f{bottom:700.253333pt;}
.yc7{bottom:707.613333pt;}
.y1a4{bottom:708.413333pt;}
.y8e{bottom:710.013333pt;}
.y14{bottom:710.973333pt;}
.y126{bottom:712.253333pt;}
.y5b{bottom:712.733333pt;}
.y1cf{bottom:715.133333pt;}
.y14b{bottom:715.613333pt;}
.y17e{bottom:717.853333pt;}
.yc6{bottom:725.213333pt;}
.y1a1{bottom:726.813333pt;}
.y8d{bottom:727.613333pt;}
.y13{bottom:728.413333pt;}
.y5a{bottom:730.333333pt;}
.y1ce{bottom:732.733333pt;}
.y14a{bottom:733.213333pt;}
.y17d{bottom:735.453333pt;}
.yc5{bottom:742.973333pt;}
.y8c{bottom:745.213333pt;}
.y59{bottom:748.093333pt;}
.y12{bottom:748.253333pt;}
.y1cd{bottom:750.333333pt;}
.y15a{bottom:750.813333pt;}
.y149{bottom:750.973333pt;}
.y17c{bottom:753.053333pt;}
.yc4{bottom:760.573333pt;}
.y19d{bottom:762.653333pt;}
.y8b{bottom:762.813333pt;}
.y1c9{bottom:763.453333pt;}
.y159{bottom:764.573333pt;}
.y58{bottom:765.693333pt;}
.y17b{bottom:766.973333pt;}
.y125{bottom:768.573333pt;}
.y11{bottom:770.493333pt;}
.y8a{bottom:778.173333pt;}
.y57{bottom:783.293333pt;}
.y124{bottom:786.173333pt;}
.y10{bottom:788.093333pt;}
.y1cb{bottom:790.013333pt;}
.y158{bottom:790.813333pt;}
.y17a{bottom:793.053333pt;}
.yc3{bottom:795.773333pt;}
.y56{bottom:800.893333pt;}
.y89{bottom:803.773333pt;}
.yf{bottom:805.693333pt;}
.yc2{bottom:813.373333pt;}
.y1c6{bottom:816.613333pt;}
.y157{bottom:816.933333pt;}
.yb8{bottom:818.053333pt;}
.y55{bottom:818.533333pt;}
.ye{bottom:819.173333pt;}
.y88{bottom:821.413333pt;}
.yc1{bottom:831.173333pt;}
.yb7{bottom:835.653333pt;}
.y54{bottom:836.293333pt;}
.yd{bottom:838.213333pt;}
.y87{bottom:839.173333pt;}
.y155{bottom:843.013333pt;}
.y179{bottom:845.413333pt;}
.yc0{bottom:848.773333pt;}
.yb6{bottom:853.413333pt;}
.y53{bottom:853.893333pt;}
.y86{bottom:856.773333pt;}
.yc{bottom:859.013333pt;}
.ybf{bottom:866.373333pt;}
.yb5{bottom:871.013333pt;}
.y52{bottom:871.493333pt;}
.y85{bottom:874.373333pt;}
.y1c5{bottom:875.973333pt;}
.ybe{bottom:883.973333pt;}
.yb{bottom:887.173333pt;}
.y51{bottom:889.093333pt;}
.y84{bottom:891.973333pt;}
.yb4{bottom:896.613333pt;}
.y178{bottom:897.573333pt;}
.ybd{bottom:901.573333pt;}
.y50{bottom:906.693333pt;}
.y83{bottom:909.573333pt;}
.yb3{bottom:914.213333pt;}
.ya{bottom:915.493333pt;}
.ybc{bottom:919.333333pt;}
.y4f{bottom:924.453333pt;}
.y82{bottom:927.333333pt;}
.y177{bottom:928.933333pt;}
.yb2{bottom:931.813333pt;}
.ybb{bottom:936.933333pt;}
.y4e{bottom:943.013333pt;}
.y81{bottom:944.933333pt;}
.yb1{bottom:947.173333pt;}
.y5{bottom:947.653333pt;}
.yba{bottom:954.533333pt;}
.y4d{bottom:960.613333pt;}
.y80{bottom:962.533333pt;}
.yb9{bottom:972.133333pt;}
.y4c{bottom:978.213333pt;}
.y7f{bottom:980.133333pt;}
.y4{bottom:980.453333pt;}
.y4b{bottom:996.773333pt;}
.y7e{bottom:997.733333pt;}
.y3{bottom:1005.733333pt;}
.y4a{bottom:1014.533333pt;}
.y7d{bottom:1015.493333pt;}
.y2{bottom:1031.040000pt;}
.y49{bottom:1041.600000pt;}
.y1{bottom:1058.400000pt;}
.y48{bottom:1060.960000pt;}
.h2b{height:17.600000pt;}
.h29{height:17.760000pt;}
.h6{height:19.520000pt;}
.h17{height:19.569375pt;}
.h2d{height:20.640000pt;}
.h18{height:22.080000pt;}
.h14{height:22.240000pt;}
.h12{height:23.680000pt;}
.hb{height:24.131250pt;}
.h23{height:24.800000pt;}
.h24{height:24.832000pt;}
.h2c{height:25.280000pt;}
.h31{height:25.920000pt;}
.h30{height:25.952000pt;}
.h21{height:26.400000pt;}
.h22{height:26.560000pt;}
.h1a{height:27.040000pt;}
.h1d{height:27.840000pt;}
.h34{height:28.960000pt;}
.h36{height:28.992000pt;}
.h1c{height:32.765625pt;}
.h27{height:35.200000pt;}
.h26{height:35.360000pt;}
.h25{height:36.883125pt;}
.hc{height:37.090625pt;}
.ha{height:37.479688pt;}
.h20{height:37.920930pt;}
.h1e{height:38.008125pt;}
.h13{height:38.154063pt;}
.hd{height:38.672812pt;}
.h7{height:41.112500pt;}
.h3{height:41.543750pt;}
.h1b{height:43.905937pt;}
.h15{height:44.320000pt;}
.h19{height:44.512000pt;}
.h4{height:45.156250pt;}
.h11{height:46.593750pt;}
.h8{height:47.310625pt;}
.h2{height:48.768750pt;}
.h2f{height:52.512000pt;}
.h2e{height:52.960000pt;}
.h2a{height:53.440000pt;}
.h28{height:53.600000pt;}
.h33{height:58.560000pt;}
.h1f{height:58.563750pt;}
.h35{height:58.592000pt;}
.h9{height:60.057813pt;}
.h5{height:63.656250pt;}
.h37{height:64.800000pt;}
.he{height:65.531250pt;}
.h32{height:83.200000pt;}
.h10{height:211.386667pt;}
.h16{height:211.706667pt;}
.hf{height:286.426667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:45.632000pt;}
.w27{width:54.752000pt;}
.w2f{width:57.600000pt;}
.w26{width:57.760000pt;}
.w2e{width:59.872000pt;}
.w28{width:60.160000pt;}
.w35{width:77.760000pt;}
.w30{width:78.080000pt;}
.w2b{width:79.392000pt;}
.w25{width:79.872000pt;}
.w21{width:80.480000pt;}
.w32{width:88.192000pt;}
.w29{width:88.640000pt;}
.w36{width:96.672000pt;}
.w31{width:97.312000pt;}
.w34{width:102.400000pt;}
.w2d{width:102.720000pt;}
.w24{width:103.840000pt;}
.w13{width:112.512000pt;}
.w16{width:112.832000pt;}
.w17{width:113.472000pt;}
.w1e{width:122.240000pt;}
.w7{width:125.152000pt;}
.wb{width:126.752000pt;}
.w9{width:129.152000pt;}
.wa{width:131.552000pt;}
.w1d{width:131.712000pt;}
.w2a{width:137.946667pt;}
.w2c{width:138.266667pt;}
.w33{width:147.520000pt;}
.w1b{width:150.106667pt;}
.w19{width:150.426667pt;}
.w15{width:155.066667pt;}
.w12{width:155.386667pt;}
.w6{width:155.706667pt;}
.w8{width:162.266667pt;}
.w22{width:167.706667pt;}
.w20{width:169.146667pt;}
.wc{width:176.826667pt;}
.wf{width:177.466667pt;}
.w10{width:181.466667pt;}
.wd{width:182.106667pt;}
.w18{width:187.706667pt;}
.w14{width:188.346667pt;}
.w11{width:195.386667pt;}
.we{width:195.546667pt;}
.w1c{width:244.506667pt;}
.w1a{width:245.146667pt;}
.w1f{width:301.506667pt;}
.w23{width:389.826667pt;}
.w5{width:531.453333pt;}
.w4{width:651.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4c{left:1.120000pt;}
.x3{left:7.200000pt;}
.x22{left:9.600000pt;}
.x5{left:15.680000pt;}
.x2c{left:17.280000pt;}
.x25{left:19.360000pt;}
.x2d{left:24.480000pt;}
.x2f{left:26.400000pt;}
.x30{left:27.840000pt;}
.x24{left:32.800000pt;}
.x26{left:36.160000pt;}
.x33{left:40.799988pt;}
.x2e{left:44.480000pt;}
.x1{left:47.039988pt;}
.x2{left:47.999988pt;}
.x7{left:52.159988pt;}
.x17{left:55.519988pt;}
.x19{left:59.359988pt;}
.x4e{left:63.199988pt;}
.x46{left:65.800000pt;}
.x53{left:66.879988pt;}
.x16{left:76.511988pt;}
.x27{left:77.760000pt;}
.x18{left:79.551988pt;}
.x52{left:90.911988pt;}
.x4{left:94.272000pt;}
.x10{left:96.031988pt;}
.x6{left:100.511988pt;}
.x45{left:103.392000pt;}
.xa{left:114.751988pt;}
.x36{left:118.432000pt;}
.x1f{left:130.592000pt;}
.xc{left:133.946655pt;}
.xd{left:140.506655pt;}
.x3a{left:141.626667pt;}
.x29{left:143.240000pt;}
.x2a{left:149.160000pt;}
.xb{left:152.026655pt;}
.x23{left:162.266667pt;}
.x31{left:167.386667pt;}
.x8{left:176.346655pt;}
.x4d{left:227.706667pt;}
.x44{left:242.306667pt;}
.x3c{left:250.626667pt;}
.x21{left:277.501333pt;}
.x1e{left:309.826655pt;}
.x35{left:314.626667pt;}
.x4b{left:316.546667pt;}
.x4f{left:317.666655pt;}
.x1d{left:321.026655pt;}
.x43{left:331.586667pt;}
.x38{left:356.866667pt;}
.x39{left:387.746667pt;}
.x42{left:392.386667pt;}
.x9{left:396.893322pt;}
.x1c{left:410.653322pt;}
.x4a{left:414.173333pt;}
.x12{left:420.893322pt;}
.x14{left:428.413322pt;}
.x1a{left:432.893322pt;}
.x50{left:436.093322pt;}
.x13{left:439.773322pt;}
.x41{left:447.773333pt;}
.x15{left:452.413322pt;}
.x1b{left:456.253322pt;}
.x51{left:463.773322pt;}
.x3e{left:467.453333pt;}
.x11{left:468.893322pt;}
.x37{left:470.333333pt;}
.x28{left:477.213333pt;}
.x49{left:492.573333pt;}
.x32{left:495.453333pt;}
.x34{left:497.373333pt;}
.x2b{left:500.573333pt;}
.x40{left:505.853333pt;}
.x20{left:512.421333pt;}
.x3b{left:543.293333pt;}
.x48{left:550.813333pt;}
.x3f{left:586.053333pt;}
.x47{left:611.333333pt;}
.x3d{left:635.813333pt;}
.xf{left:690.693322pt;}
.xe{left:739.839988pt;}
}




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