
    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_189368d48d329e555d4e659d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_216bf80168a535816906731b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_3c7d1e7cb518e1d72fcdc3f8.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff4{font-family:ff4;line-height:0.813477;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_e6f0708552efe89a65852fea.woff')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_506a9eeff1687d95f7f32904.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2194fa3c20ba53e84f272aec.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8ce990efbf62a720833ce866.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4638587fac5b416e381617c1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.738770;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_54615acde85e49869998cdb5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_00b40f9484d847206eba7537.woff')format("woff");}.ffc{font-family:ffc;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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:-5.760000px;}
.v1{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v3{vertical-align:20.880000px;}
.ls19{letter-spacing:-3.546000px;}
.ls11{letter-spacing:-2.520000px;}
.ls1d{letter-spacing:-0.924000px;}
.ls22{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.612000px;}
.ls26{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.529800px;}
.ls24{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.208200px;}
.ls1a{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.013440px;}
.ls9{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.119520px;}
.ls21{letter-spacing:0.135600px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.259920px;}
.lse{letter-spacing:0.298800px;}
.ls1b{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.439920px;}
.ls1f{letter-spacing:2.340000px;}
.ls13{letter-spacing:13.680000px;}
.ls20{letter-spacing:14.400000px;}
.ls4{letter-spacing:14.580000px;}
.ls27{letter-spacing:16.506720px;}
.ls3{letter-spacing:22.500000px;}
.ls15{letter-spacing:46.026720px;}
.ls25{letter-spacing:46.170720px;}
.ls17{letter-spacing:98.820000px;}
.ls12{letter-spacing:201.204000px;}
.ls16{letter-spacing:900.480000px;}
.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;}
}
.ws2{word-spacing:-23.940000px;}
.ws1{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.ws0{word-spacing:-15.226440px;}
.ws8{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.833200px;}
.ws3{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.500000px;}
.wsc{word-spacing:-12.420000px;}
.wsf{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1d{margin-left:-7.802640px;}
._19{margin-left:-6.454080px;}
._16{margin-left:-4.713360px;}
._4{margin-left:-3.576960px;}
._3{margin-left:-2.384640px;}
._1{margin-left:-1.330320px;}
._0{width:1.185840px;}
._5{width:2.652240px;}
._11{width:4.395360px;}
._15{width:6.121440px;}
._9{width:7.158240px;}
._8{width:8.917200px;}
._f{width:10.099440px;}
._14{width:11.198880px;}
._d{width:12.388320px;}
._18{width:13.615440px;}
._a{width:16.122240px;}
._12{width:17.156160px;}
._17{width:18.229680px;}
._1c{width:19.730160px;}
._6{width:22.360320px;}
._e{width:23.366160px;}
._10{width:25.228080px;}
._13{width:26.360400px;}
._c{width:27.589920px;}
._b{width:32.688720px;}
._2{width:63.300000px;}
._7{width:82.838160px;}
._1b{width:114.054240px;}
._1a{width:148.400160px;}
.fc6{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(79,129,189);}
.fc5{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y211{bottom:5.580000px;}
.y30{bottom:5.760000px;}
.y1b8{bottom:5.790000px;}
.y15{bottom:5.805000px;}
.y6e{bottom:5.940000px;}
.yde{bottom:6.120000px;}
.ydd{bottom:6.300000px;}
.ybd{bottom:6.480000px;}
.y160{bottom:6.660000px;}
.ye0{bottom:6.840000px;}
.y261{bottom:7.020000px;}
.ycc{bottom:7.200000px;}
.y117{bottom:7.380000px;}
.y25f{bottom:7.560000px;}
.yc0{bottom:8.820000px;}
.y23b{bottom:9.945000px;}
.yc9{bottom:11.160000px;}
.yed{bottom:11.520000px;}
.y10e{bottom:12.960000px;}
.yeb{bottom:13.500000px;}
.y7{bottom:14.760000px;}
.y13d{bottom:15.840000px;}
.y10c{bottom:18.540000px;}
.y23d{bottom:24.840000px;}
.y25c{bottom:25.020000px;}
.y210{bottom:25.380000px;}
.y2f{bottom:25.560000px;}
.y181{bottom:25.590000px;}
.yd6{bottom:25.605000px;}
.yc5{bottom:25.740000px;}
.y1d8{bottom:25.785000px;}
.y240{bottom:25.920000px;}
.y23e{bottom:26.100000px;}
.y1a2{bottom:26.280000px;}
.y22b{bottom:27.720000px;}
.y227{bottom:28.620000px;}
.y225{bottom:28.800000px;}
.y208{bottom:33.120000px;}
.y204{bottom:33.300000px;}
.y206{bottom:35.460000px;}
.y20a{bottom:35.505000px;}
.y6{bottom:43.920000px;}
.y20f{bottom:45.180000px;}
.y2e{bottom:45.360000px;}
.y1a5{bottom:45.405000px;}
.y1aa{bottom:45.534000px;}
.y179{bottom:45.540000px;}
.y180{bottom:45.570000px;}
.y1d7{bottom:45.585000px;}
.yd{bottom:58.320000px;}
.y5{bottom:64.080000px;}
.y20e{bottom:64.980000px;}
.y20d{bottom:65.160000px;}
.y1f6{bottom:65.205000px;}
.y2d{bottom:65.340000px;}
.y1f5{bottom:65.385000px;}
.yb{bottom:73.800000px;}
.y22a{bottom:77.796000px;}
.y76{bottom:77.976000px;}
.ya{bottom:78.300000px;}
.y10b{bottom:78.336000px;}
.y195{bottom:80.676000px;}
.y202{bottom:80.856000px;}
.y1ac{bottom:84.096000px;}
.y2c{bottom:85.140000px;}
.y25a{bottom:85.176000px;}
.y1f4{bottom:85.185000px;}
.y170{bottom:85.536000px;}
.y4{bottom:86.430000px;}
.y3d{bottom:90.036000px;}
.y1dc{bottom:91.116000px;}
.yac{bottom:95.616000px;}
.y75{bottom:97.776000px;}
.y1c7{bottom:98.316000px;}
.y288{bottom:99.036000px;}
.y201{bottom:100.656000px;}
.y141{bottom:101.196000px;}
.y1ab{bottom:103.896000px;}
.y2b{bottom:104.940000px;}
.y259{bottom:104.976000px;}
.y16f{bottom:105.336000px;}
.y9{bottom:107.490000px;}
.y3c{bottom:109.836000px;}
.y10a{bottom:110.916000px;}
.yab{bottom:115.416000px;}
.y74{bottom:117.756000px;}
.y1c6{bottom:118.296000px;}
.y287{bottom:118.836000px;}
.y229{bottom:119.556000px;}
.y200{bottom:120.456000px;}
.y3{bottom:122.610000px;}
.y1a9{bottom:123.696000px;}
.y2a{bottom:124.740000px;}
.y258{bottom:124.776000px;}
.y16e{bottom:125.136000px;}
.y3b{bottom:129.816000px;}
.y109{bottom:130.716000px;}
.yaa{bottom:135.216000px;}
.y8{bottom:136.650000px;}
.y73{bottom:137.556000px;}
.y1c5{bottom:138.096000px;}
.y286{bottom:138.636000px;}
.y194{bottom:140.076000px;}
.y1ff{bottom:140.256000px;}
.y140{bottom:140.796000px;}
.y29{bottom:144.540000px;}
.y257{bottom:144.576000px;}
.y16d{bottom:144.936000px;}
.y3a{bottom:149.616000px;}
.y108{bottom:150.690000px;}
.ya9{bottom:155.190000px;}
.y72{bottom:157.350000px;}
.y1c4{bottom:157.890000px;}
.y285{bottom:158.430000px;}
.y193{bottom:159.870000px;}
.y1fe{bottom:160.050000px;}
.y1fd{bottom:160.230000px;}
.y13f{bottom:160.590000px;}
.y228{bottom:162.210000px;}
.y256{bottom:164.370000px;}
.y28{bottom:164.520000px;}
.y16c{bottom:164.910000px;}
.y39{bottom:169.410000px;}
.y107{bottom:170.490000px;}
.ya8{bottom:174.990000px;}
.y71{bottom:177.150000px;}
.y1c3{bottom:177.690000px;}
.y284{bottom:178.410000px;}
.y1fc{bottom:180.030000px;}
.y13e{bottom:180.570000px;}
.y1a8{bottom:183.270000px;}
.y27{bottom:184.320000px;}
.y255{bottom:184.350000px;}
.y16b{bottom:184.710000px;}
.y38{bottom:189.210000px;}
.y106{bottom:190.290000px;}
.ya7{bottom:194.790000px;}
.y70{bottom:196.950000px;}
.y1c2{bottom:197.490000px;}
.y283{bottom:198.210000px;}
.y1fb{bottom:199.830000px;}
.y13c{bottom:200.370000px;}
.y16a{bottom:200.910000px;}
.y1a7{bottom:203.070000px;}
.y26{bottom:204.120000px;}
.y254{bottom:204.150000px;}
.y226{bottom:205.050000px;}
.y37{bottom:209.010000px;}
.y1db{bottom:210.090000px;}
.y105{bottom:210.810000px;}
.y1c1{bottom:213.870000px;}
.ya6{bottom:214.590000px;}
.y6f{bottom:216.930000px;}
.y282{bottom:218.010000px;}
.y1fa{bottom:219.630000px;}
.y253{bottom:220.350000px;}
.y192{bottom:221.610000px;}
.y25{bottom:223.920000px;}
.y36{bottom:228.990000px;}
.y1da{bottom:229.890000px;}
.y13b{bottom:230.250000px;}
.y104{bottom:230.610000px;}
.ya5{bottom:234.390000px;}
.y281{bottom:237.810000px;}
.y6d{bottom:238.890000px;}
.y1f9{bottom:239.430000px;}
.y252{bottom:240.330000px;}
.y169{bottom:240.690000px;}
.y191{bottom:242.310000px;}
.y24{bottom:243.720000px;}
.y224{bottom:247.710000px;}
.y35{bottom:248.790000px;}
.y13a{bottom:250.050000px;}
.y103{bottom:250.410000px;}
.ya4{bottom:254.370000px;}
.y280{bottom:257.610000px;}
.y1f8{bottom:259.410000px;}
.y251{bottom:260.130000px;}
.y168{bottom:260.490000px;}
.y1a6{bottom:262.470000px;}
.y23{bottom:263.730000px;}
.y6c{bottom:266.790000px;}
.y34{bottom:268.590000px;}
.y139{bottom:270.030000px;}
.y190{bottom:270.210000px;}
.y102{bottom:273.090000px;}
.y1c0{bottom:273.450000px;}
.ya3{bottom:274.170000px;}
.y1f7{bottom:275.610000px;}
.y27f{bottom:277.590000px;}
.y250{bottom:279.930000px;}
.y167{bottom:280.290000px;}
.y1a4{bottom:282.450000px;}
.y22{bottom:283.530000px;}
.y6b{bottom:286.590000px;}
.y33{bottom:288.390000px;}
.y1d9{bottom:289.470000px;}
.y18f{bottom:290.010000px;}
.y223{bottom:292.710000px;}
.y1bf{bottom:293.250000px;}
.ya2{bottom:293.970000px;}
.y1f3{bottom:295.410000px;}
.y27e{bottom:297.390000px;}
.y166{bottom:300.090000px;}
.y101{bottom:300.990000px;}
.y24f{bottom:302.070000px;}
.y21{bottom:303.330000px;}
.y6a{bottom:306.570000px;}
.y32{bottom:308.190000px;}
.y1d6{bottom:309.270000px;}
.y138{bottom:309.630000px;}
.y18e{bottom:309.810000px;}
.ya1{bottom:313.770000px;}
.y27d{bottom:317.190000px;}
.y165{bottom:319.890000px;}
.y100{bottom:320.790000px;}
.y222{bottom:321.510000px;}
.y20{bottom:323.130000px;}
.y69{bottom:326.370000px;}
.y31{bottom:328.215000px;}
.y137{bottom:329.475000px;}
.y18d{bottom:329.655000px;}
.y24e{bottom:330.015000px;}
.ya0{bottom:333.615000px;}
.y27c{bottom:337.035000px;}
.y164{bottom:339.915000px;}
.yff{bottom:340.635000px;}
.y221{bottom:341.355000px;}
.y1f{bottom:342.930000px;}
.y16{bottom:342.975000px;}
.y1a1{bottom:344.235000px;}
.y68{bottom:346.215000px;}
.y136{bottom:349.275000px;}
.y18c{bottom:349.635000px;}
.y24d{bottom:349.815000px;}
.y1be{bottom:352.695000px;}
.y9f{bottom:353.595000px;}
.y27b{bottom:356.835000px;}
.yfe{bottom:360.435000px;}
.y163{bottom:360.615000px;}
.y220{bottom:361.335000px;}
.yd5{bottom:362.775000px;}
.y1e{bottom:362.910000px;}
.y1a3{bottom:364.755000px;}
.y135{bottom:369.255000px;}
.y1d5{bottom:369.615000px;}
.y1bd{bottom:372.675000px;}
.y9e{bottom:373.395000px;}
.y67{bottom:375.015000px;}
.y27a{bottom:376.815000px;}
.y18b{bottom:378.435000px;}
.yfd{bottom:380.235000px;}
.y162{bottom:380.415000px;}
.y21f{bottom:381.135000px;}
.yd4{bottom:382.575000px;}
.y1d{bottom:382.710000px;}
.y134{bottom:389.055000px;}
.y24c{bottom:389.415000px;}
.y1d4{bottom:390.135000px;}
.y1a0{bottom:392.655000px;}
.y9d{bottom:393.195000px;}
.y1f2{bottom:394.635000px;}
.y66{bottom:394.815000px;}
.y279{bottom:396.615000px;}
.y18a{bottom:398.235000px;}
.yfc{bottom:400.215000px;}
.y21e{bottom:400.935000px;}
.yd3{bottom:402.375000px;}
.y1c{bottom:402.510000px;}
.y133{bottom:408.855000px;}
.y24b{bottom:409.215000px;}
.y19f{bottom:412.455000px;}
.y9c{bottom:412.995000px;}
.y1f1{bottom:414.435000px;}
.y65{bottom:414.795000px;}
.y278{bottom:416.415000px;}
.y189{bottom:418.035000px;}
.yfb{bottom:420.015000px;}
.y1b{bottom:422.310000px;}
.yd2{bottom:422.355000px;}
.y132{bottom:428.655000px;}
.y21d{bottom:429.735000px;}
.y1bc{bottom:432.075000px;}
.y19e{bottom:432.255000px;}
.y9b{bottom:432.795000px;}
.y1f0{bottom:434.415000px;}
.y64{bottom:434.595000px;}
.y277{bottom:436.215000px;}
.y188{bottom:437.835000px;}
.y24a{bottom:438.195000px;}
.yfa{bottom:439.815000px;}
.y1a{bottom:442.110000px;}
.yd1{bottom:442.155000px;}
.y131{bottom:448.455000px;}
.y21c{bottom:449.535000px;}
.y1bb{bottom:451.875000px;}
.y19d{bottom:452.235000px;}
.y1ef{bottom:454.215000px;}
.y63{bottom:454.395000px;}
.y9a{bottom:454.935000px;}
.y276{bottom:456.015000px;}
.y187{bottom:457.815000px;}
.y249{bottom:457.995000px;}
.yf9{bottom:459.615000px;}
.y161{bottom:459.795000px;}
.yd0{bottom:461.955000px;}
.y19{bottom:462.090000px;}
.y130{bottom:468.435000px;}
.y21b{bottom:469.515000px;}
.y19c{bottom:472.035000px;}
.y1ee{bottom:474.015000px;}
.y62{bottom:474.195000px;}
.y275{bottom:475.995000px;}
.y186{bottom:477.615000px;}
.y248{bottom:477.795000px;}
.yf8{bottom:479.415000px;}
.y15f{bottom:479.595000px;}
.ycf{bottom:481.755000px;}
.y18{bottom:481.890000px;}
.y99{bottom:482.835000px;}
.y21a{bottom:489.315000px;}
.y12f{bottom:491.115000px;}
.y19b{bottom:491.835000px;}
.y61{bottom:493.995000px;}
.y274{bottom:495.795000px;}
.y1ed{bottom:496.155000px;}
.y185{bottom:497.415000px;}
.y247{bottom:497.595000px;}
.yf7{bottom:499.395000px;}
.y15e{bottom:500.295000px;}
.yce{bottom:501.555000px;}
.y17{bottom:501.690000px;}
.y98{bottom:502.635000px;}
.y219{bottom:509.115000px;}
.y1ba{bottom:511.455000px;}
.y19a{bottom:511.635000px;}
.y60{bottom:513.975000px;}
.y273{bottom:515.595000px;}
.y184{bottom:517.215000px;}
.y246{bottom:517.395000px;}
.y12e{bottom:519.015000px;}
.yf6{bottom:519.195000px;}
.y15d{bottom:520.095000px;}
.ycd{bottom:521.535000px;}
.y97{bottom:522.435000px;}
.y1ec{bottom:524.055000px;}
.y218{bottom:528.915000px;}
.y1b9{bottom:531.255000px;}
.y199{bottom:531.435000px;}
.y5f{bottom:533.775000px;}
.y272{bottom:535.395000px;}
.y183{bottom:537.015000px;}
.y245{bottom:537.195000px;}
.y12d{bottom:538.815000px;}
.yf5{bottom:538.995000px;}
.y15c{bottom:539.895000px;}
.ycb{bottom:541.335000px;}
.y96{bottom:542.415000px;}
.y1eb{bottom:543.855000px;}
.y217{bottom:548.535000px;}
.y216{bottom:548.715000px;}
.y198{bottom:551.415000px;}
.y5e{bottom:553.575000px;}
.y271{bottom:555.195000px;}
.y182{bottom:556.995000px;}
.y244{bottom:557.175000px;}
.y12c{bottom:558.615000px;}
.yf4{bottom:558.795000px;}
.y15b{bottom:559.695000px;}
.y95{bottom:562.215000px;}
.yca{bottom:562.575000px;}
.y1ea{bottom:563.655000px;}
.y215{bottom:568.695000px;}
.y197{bottom:571.215000px;}
.y17f{bottom:573.195000px;}
.y5d{bottom:573.375000px;}
.y270{bottom:575.175000px;}
.y1d3{bottom:576.795000px;}
.y243{bottom:576.975000px;}
.y12b{bottom:578.415000px;}
.yf3{bottom:578.595000px;}
.y15a{bottom:579.675000px;}
.yc8{bottom:582.375000px;}
.y1e9{bottom:583.455000px;}
.y214{bottom:588.495000px;}
.y1b7{bottom:590.835000px;}
.y94{bottom:591.015000px;}
.y5c{bottom:593.175000px;}
.y26f{bottom:595.005000px;}
.y1d2{bottom:596.625000px;}
.y242{bottom:596.805000px;}
.y12a{bottom:598.245000px;}
.yf2{bottom:598.425000px;}
.y159{bottom:599.505000px;}
.y1e8{bottom:603.285000px;}
.yc7{bottom:607.605000px;}
.y213{bottom:608.325000px;}
.y1b6{bottom:610.665000px;}
.y93{bottom:610.845000px;}
.y5b{bottom:613.185000px;}
.y26e{bottom:614.805000px;}
.y1d1{bottom:616.425000px;}
.y241{bottom:616.605000px;}
.y129{bottom:618.225000px;}
.yf1{bottom:618.405000px;}
.y158{bottom:619.305000px;}
.yc6{bottom:627.405000px;}
.y212{bottom:628.125000px;}
.y92{bottom:630.645000px;}
.y1e7{bottom:632.265000px;}
.y17e{bottom:632.805000px;}
.y5a{bottom:632.985000px;}
.y26d{bottom:634.605000px;}
.y1d0{bottom:636.225000px;}
.y128{bottom:638.025000px;}
.yf0{bottom:638.205000px;}
.y157{bottom:641.445000px;}
.y20c{bottom:644.505000px;}
.yc4{bottom:647.205000px;}
.y91{bottom:650.625000px;}
.y1e6{bottom:652.065000px;}
.y17d{bottom:652.605000px;}
.y59{bottom:652.785000px;}
.y26c{bottom:654.405000px;}
.y1cf{bottom:656.205000px;}
.y127{bottom:657.825000px;}
.yef{bottom:658.005000px;}
.y156{bottom:669.345000px;}
.y1b5{bottom:670.245000px;}
.y90{bottom:670.425000px;}
.y1e5{bottom:671.865000px;}
.y1ce{bottom:672.405000px;}
.y58{bottom:672.585000px;}
.yee{bottom:674.385000px;}
.y126{bottom:677.625000px;}
.yc3{bottom:686.985000px;}
.y155{bottom:689.145000px;}
.y1b4{bottom:690.045000px;}
.y8f{bottom:690.225000px;}
.y1e4{bottom:691.665000px;}
.y57{bottom:692.385000px;}
.y26b{bottom:694.185000px;}
.y125{bottom:697.425000px;}
.y196{bottom:706.425000px;}
.yc2{bottom:706.785000px;}
.y154{bottom:708.945000px;}
.y8e{bottom:710.025000px;}
.y1e3{bottom:711.465000px;}
.y17c{bottom:712.005000px;}
.y56{bottom:712.365000px;}
.y26a{bottom:713.805000px;}
.yec{bottom:713.985000px;}
.y124{bottom:717.405000px;}
.yc1{bottom:726.585000px;}
.y153{bottom:728.745000px;}
.y8d{bottom:729.825000px;}
.y1e2{bottom:731.445000px;}
.y17b{bottom:731.985000px;}
.y55{bottom:732.165000px;}
.y23f{bottom:732.345000px;}
.y269{bottom:733.605000px;}
.y268{bottom:733.785000px;}
.y123{bottom:737.205000px;}
.yea{bottom:739.545000px;}
.y20b{bottom:743.685000px;}
.y152{bottom:748.545000px;}
.ybf{bottom:749.445000px;}
.y8c{bottom:749.625000px;}
.y1e1{bottom:751.245000px;}
.y1cd{bottom:751.785000px;}
.y54{bottom:751.965000px;}
.y267{bottom:753.585000px;}
.y122{bottom:757.005000px;}
.y8b{bottom:766.005000px;}
.ye9{bottom:767.085000px;}
.y151{bottom:768.525000px;}
.y1b3{bottom:769.425000px;}
.y1e0{bottom:771.045000px;}
.y53{bottom:771.765000px;}
.ybe{bottom:772.305000px;}
.y266{bottom:773.565000px;}
.y121{bottom:776.805000px;}
.y8a{bottom:785.805000px;}
.y150{bottom:788.325000px;}
.y1df{bottom:790.845000px;}
.y17a{bottom:791.385000px;}
.y52{bottom:791.565000px;}
.ybc{bottom:792.105000px;}
.y265{bottom:793.365000px;}
.y120{bottom:796.605000px;}
.y89{bottom:805.605000px;}
.ye8{bottom:806.865000px;}
.y14f{bottom:808.125000px;}
.y1de{bottom:810.645000px;}
.y178{bottom:811.185000px;}
.y51{bottom:811.545000px;}
.y23c{bottom:812.445000px;}
.y11f{bottom:812.985000px;}
.y264{bottom:813.165000px;}
.ybb{bottom:820.005000px;}
.y88{bottom:825.585000px;}
.ye7{bottom:826.665000px;}
.y14e{bottom:827.925000px;}
.y263{bottom:829.365000px;}
.y1dd{bottom:830.625000px;}
.y1b1{bottom:831.165000px;}
.y50{bottom:831.345000px;}
.y11e{bottom:834.225000px;}
.y209{bottom:838.185000px;}
.yba{bottom:839.805000px;}
.y87{bottom:845.385000px;}
.y14d{bottom:847.725000px;}
.ye6{bottom:849.525000px;}
.y4f{bottom:851.145000px;}
.y1b2{bottom:851.685000px;}
.y23a{bottom:853.485000px;}
.y11d{bottom:854.025000px;}
.y14{bottom:859.425000px;}
.yb9{bottom:859.785000px;}
.y86{bottom:865.230000px;}
.y14c{bottom:867.750000px;}
.ye5{bottom:869.910000px;}
.y4e{bottom:870.990000px;}
.y177{bottom:873.150000px;}
.y11c{bottom:873.870000px;}
.yb8{bottom:879.630000px;}
.y85{bottom:885.030000px;}
.y13{bottom:885.210000px;}
.y239{bottom:885.570000px;}
.y14b{bottom:887.550000px;}
.y207{bottom:887.730000px;}
.ye4{bottom:889.890000px;}
.y1cc{bottom:890.610000px;}
.y4d{bottom:890.790000px;}
.y176{bottom:893.670000px;}
.y11b{bottom:895.110000px;}
.yb7{bottom:899.430000px;}
.y84{bottom:904.830000px;}
.y12{bottom:905.010000px;}
.y238{bottom:905.370000px;}
.y14a{bottom:907.350000px;}
.y262{bottom:908.790000px;}
.ye3{bottom:909.690000px;}
.y1cb{bottom:910.410000px;}
.y4c{bottom:910.770000px;}
.y11a{bottom:914.910000px;}
.y1b0{bottom:919.230000px;}
.y175{bottom:921.570000px;}
.y83{bottom:924.810000px;}
.y237{bottom:925.170000px;}
.y11{bottom:925.350000px;}
.y149{bottom:927.150000px;}
.yb6{bottom:928.230000px;}
.y260{bottom:928.590000px;}
.ye2{bottom:929.490000px;}
.y4b{bottom:930.570000px;}
.y119{bottom:934.890000px;}
.y1af{bottom:939.030000px;}
.y174{bottom:941.370000px;}
.y82{bottom:944.610000px;}
.y236{bottom:944.970000px;}
.y10{bottom:946.590000px;}
.y148{bottom:946.950000px;}
.yb5{bottom:948.030000px;}
.ye1{bottom:949.290000px;}
.y25e{bottom:949.650000px;}
.y4a{bottom:950.370000px;}
.y118{bottom:954.690000px;}
.y1ae{bottom:959.010000px;}
.y173{bottom:961.170000px;}
.y81{bottom:964.410000px;}
.y235{bottom:964.950000px;}
.y147{bottom:966.930000px;}
.yb4{bottom:968.010000px;}
.ydf{bottom:969.090000px;}
.yf{bottom:969.990000px;}
.y49{bottom:970.170000px;}
.y25d{bottom:971.250000px;}
.y1c9{bottom:972.330000px;}
.y116{bottom:974.490000px;}
.y172{bottom:980.970000px;}
.y205{bottom:982.230000px;}
.y80{bottom:984.210000px;}
.y234{bottom:984.750000px;}
.y146{bottom:986.730000px;}
.yb3{bottom:987.810000px;}
.y48{bottom:989.970000px;}
.y1ca{bottom:992.850000px;}
.y25b{bottom:993.390000px;}
.y115{bottom:995.910000px;}
.y171{bottom:1000.950000px;}
.ye{bottom:1001.850000px;}
.y7f{bottom:1004.010000px;}
.y233{bottom:1004.550000px;}
.y145{bottom:1006.530000px;}
.yb2{bottom:1007.610000px;}
.y47{bottom:1009.950000px;}
.ydc{bottom:1012.650000px;}
.y114{bottom:1015.710000px;}
.y1c8{bottom:1020.750000px;}
.y7e{bottom:1023.990000px;}
.y232{bottom:1024.350000px;}
.y144{bottom:1026.330000px;}
.yb1{bottom:1027.410000px;}
.yc{bottom:1029.210000px;}
.y46{bottom:1029.750000px;}
.y203{bottom:1033.890000px;}
.y113{bottom:1035.690000px;}
.ydb{bottom:1040.550000px;}
.y143{bottom:1042.710000px;}
.y7d{bottom:1043.790000px;}
.y231{bottom:1044.150000px;}
.y1{bottom:1046.850000px;}
.yb0{bottom:1047.210000px;}
.y45{bottom:1049.550000px;}
.y112{bottom:1056.570000px;}
.yda{bottom:1060.350000px;}
.y7c{bottom:1063.590000px;}
.y230{bottom:1064.130000px;}
.yaf{bottom:1067.190000px;}
.y44{bottom:1069.350000px;}
.y111{bottom:1076.370000px;}
.yd9{bottom:1080.150000px;}
.y142{bottom:1082.310000px;}
.y7b{bottom:1083.390000px;}
.y22f{bottom:1083.930000px;}
.yae{bottom:1086.990000px;}
.y43{bottom:1089.150000px;}
.y110{bottom:1096.170000px;}
.yd8{bottom:1100.130000px;}
.y7a{bottom:1103.190000px;}
.y22e{bottom:1103.730000px;}
.yad{bottom:1106.790000px;}
.y42{bottom:1109.130000px;}
.y10f{bottom:1115.970000px;}
.yd7{bottom:1119.930000px;}
.y79{bottom:1123.170000px;}
.y22d{bottom:1123.530000px;}
.y1ad{bottom:1126.590000px;}
.y41{bottom:1128.930000px;}
.y10d{bottom:1135.800000px;}
.y22c{bottom:1139.940000px;}
.y78{bottom:1143.000000px;}
.y40{bottom:1148.760000px;}
.y77{bottom:1162.800000px;}
.y3f{bottom:1168.560000px;}
.y3e{bottom:1194.840000px;}
.h3{height:2.010938px;}
.h10{height:19.800000px;}
.hc{height:19.836000px;}
.hf{height:19.980000px;}
.h24{height:20.016000px;}
.h1d{height:20.340000px;}
.h19{height:20.376000px;}
.h17{height:20.520000px;}
.h23{height:20.700000px;}
.h18{height:20.880000px;}
.h3e{height:21.060000px;}
.h15{height:21.240000px;}
.h20{height:21.420000px;}
.h3d{height:21.600000px;}
.h11{height:22.860000px;}
.h37{height:23.976000px;}
.h14{height:25.236000px;}
.h1b{height:25.560000px;}
.h1f{height:27.000000px;}
.h1a{height:27.540000px;}
.h21{height:29.880000px;}
.h1e{height:32.580000px;}
.h38{height:38.880000px;}
.h3c{height:39.060000px;}
.h1c{height:39.600000px;}
.h16{height:39.636000px;}
.h13{height:39.780000px;}
.h22{height:39.816000px;}
.h3a{height:39.960000px;}
.h39{height:40.140000px;}
.h28{height:40.320000px;}
.h2a{height:40.356000px;}
.hb{height:41.726953px;}
.h36{height:41.760000px;}
.h9{height:42.164648px;}
.h2d{height:42.446953px;}
.h34{height:42.660000px;}
.h33{height:42.840000px;}
.h12{height:43.506914px;}
.he{height:43.681992px;}
.h7{height:46.251562px;}
.ha{height:46.736719px;}
.h30{height:47.160000px;}
.h2e{height:47.340000px;}
.h35{height:48.003656px;}
.h2b{height:48.027656px;}
.h2f{height:49.500000px;}
.h31{height:49.536000px;}
.h26{height:59.400000px;}
.h29{height:59.436000px;}
.h27{height:59.580000px;}
.h25{height:59.616000px;}
.h6{height:60.855469px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h3b{height:79.380000px;}
.h3f{height:79.416000px;}
.h32{height:99.180000px;}
.h2c{height:99.216000px;}
.h4{height:105.060586px;}
.h2{height:161.310000px;}
.hd{height:515.730000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:47.160000px;}
.w14{width:47.340000px;}
.w18{width:51.300000px;}
.w13{width:53.100000px;}
.w11{width:54.036000px;}
.w1a{width:54.360000px;}
.w5a{width:56.376000px;}
.w10{width:57.060000px;}
.w52{width:57.636000px;}
.w17{width:57.780000px;}
.w4d{width:59.436000px;}
.w15{width:60.300000px;}
.w41{width:60.696000px;}
.w47{width:61.200000px;}
.w1e{width:66.780000px;}
.w40{width:87.840000px;}
.w1c{width:89.136000px;}
.w56{width:94.140000px;}
.w59{width:98.460000px;}
.w46{width:98.676000px;}
.w4c{width:99.000000px;}
.w51{width:100.260000px;}
.w29{width:105.120000px;}
.w26{width:111.816000px;}
.w3e{width:112.860000px;}
.we{width:114.696000px;}
.w43{width:122.796000px;}
.w2e{width:124.776000px;}
.w2f{width:126.540000px;}
.w5c{width:126.720000px;}
.w57{width:127.656000px;}
.w42{width:128.340000px;}
.w49{width:131.400000px;}
.w5b{width:133.776000px;}
.w4f{width:134.496000px;}
.w53{width:134.856000px;}
.w23{width:135.540000px;}
.w3d{width:135.756000px;}
.w38{width:136.980000px;}
.w48{width:138.816000px;}
.w2c{width:141.300000px;}
.w2d{width:141.336000px;}
.w4e{width:141.480000px;}
.w3c{width:144.036000px;}
.w3b{width:151.200000px;}
.w2{width:153.750000px;}
.wb{width:155.370000px;}
.w4{width:156.960000px;}
.w21{width:159.690000px;}
.w34{width:160.920000px;}
.w22{width:167.430000px;}
.w27{width:167.610000px;}
.wa{width:175.530000px;}
.w28{width:191.550000px;}
.w37{width:191.730000px;}
.w36{width:199.470000px;}
.w32{width:199.650000px;}
.w33{width:207.615000px;}
.w24{width:209.010000px;}
.w30{width:216.930000px;}
.w9{width:224.130000px;}
.wd{width:230.970000px;}
.w39{width:241.275000px;}
.w4b{width:249.150000px;}
.w2a{width:251.175000px;}
.w55{width:252.750000px;}
.w1f{width:256.935000px;}
.w3f{width:264.630000px;}
.w58{width:268.950000px;}
.w50{width:269.670000px;}
.w44{width:276.870000px;}
.w45{width:286.275000px;}
.w7{width:287.895000px;}
.w5d{width:288.615000px;}
.w54{width:292.755000px;}
.w4a{width:298.695000px;}
.wc{width:399.675000px;}
.w20{width:462.675000px;}
.w3{width:472.785000px;}
.w8{width:493.275000px;}
.w35{width:528.195000px;}
.w2b{width:533.955000px;}
.w3a{width:543.855000px;}
.w31{width:568.185000px;}
.w25{width:576.105000px;}
.w1b{width:582.045000px;}
.w12{width:624.390000px;}
.w16{width:676.050000px;}
.w19{width:679.470000px;}
.wf{width:707.910000px;}
.w6{width:781.170000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x16{left:12.240000px;}
.x18{left:35.100000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.x22{left:62.136000px;}
.xe{left:80.999987px;}
.x43{left:82.980000px;}
.x44{left:85.500000px;}
.x23{left:86.760000px;}
.x3f{left:88.380000px;}
.x39{left:94.320000px;}
.x4f{left:96.660000px;}
.x4b{left:101.196000px;}
.x46{left:104.796000px;}
.x3b{left:105.840000px;}
.xc{left:108.035987px;}
.x8{left:109.485000px;}
.x54{left:111.636000px;}
.x34{left:114.336000px;}
.x7{left:116.865000px;}
.x5a{left:118.079987px;}
.x5{left:119.385000px;}
.x50{left:124.560000px;}
.x51{left:132.840000px;}
.x2{left:136.290000px;}
.x3a{left:142.560000px;}
.xf{left:169.050000px;}
.x12{left:196.050000px;}
.x3{left:208.470000px;}
.xd{left:227.369987px;}
.x3d{left:229.139987px;}
.x6{left:236.385000px;}
.x26{left:263.010000px;}
.x2c{left:270.930000px;}
.x31{left:295.275000px;}
.x28{left:305.175000px;}
.x2e{left:310.935000px;}
.xb{left:343.875000px;}
.x47{left:353.955000px;}
.x55{left:364.395000px;}
.x4c{left:370.875000px;}
.x57{left:373.395000px;}
.x27{left:374.835000px;}
.x35{left:378.975000px;}
.x59{left:390.239987px;}
.x10{left:393.195000px;}
.x3e{left:397.079987px;}
.x13{left:427.035000px;}
.x29{left:446.475000px;}
.x48{left:452.955000px;}
.x56{left:458.535000px;}
.x36{left:466.815000px;}
.x2d{left:470.595000px;}
.x52{left:472.139987px;}
.x40{left:473.325000px;}
.x24{left:503.385000px;}
.x2f{left:510.405000px;}
.x49{left:512.385000px;}
.x37{left:527.505000px;}
.x4d{left:528.765000px;}
.x41{left:534.525000px;}
.x14{left:541.725000px;}
.x11{left:568.725000px;}
.x2a{left:587.805000px;}
.x32{left:590.505000px;}
.x1f{left:636.045000px;}
.x4a{left:653.865000px;}
.x38{left:655.845000px;}
.x58{left:662.010000px;}
.x4e{left:663.630000px;}
.x25{left:670.830000px;}
.x42{left:673.350000px;}
.x19{left:678.390000px;}
.x9{left:681.270000px;}
.x30{left:702.150000px;}
.x2b{left:712.590000px;}
.x45{left:714.269987px;}
.x53{left:721.259987px;}
.x20{left:725.190000px;}
.x33{left:726.270000px;}
.x1c{left:730.050000px;}
.x1a{left:731.490000px;}
.x1e{left:733.470000px;}
.x15{left:761.910000px;}
.x21{left:772.350000px;}
.x1b{left:778.830000px;}
.x3c{left:784.949987px;}
.x1d{left:787.830000px;}
.x17{left:818.970000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v1{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v3{vertical-align:18.560000pt;}
.ls19{letter-spacing:-3.152000pt;}
.ls11{letter-spacing:-2.240000pt;}
.ls1d{letter-spacing:-0.821333pt;}
.ls22{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.470933pt;}
.ls24{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.185067pt;}
.ls1a{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.011947pt;}
.ls9{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.106240pt;}
.ls21{letter-spacing:0.120533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.265600pt;}
.ls1b{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.391040pt;}
.ls1f{letter-spacing:2.080000pt;}
.ls13{letter-spacing:12.160000pt;}
.ls20{letter-spacing:12.800000pt;}
.ls4{letter-spacing:12.960000pt;}
.ls27{letter-spacing:14.672640pt;}
.ls3{letter-spacing:20.000000pt;}
.ls15{letter-spacing:40.912640pt;}
.ls25{letter-spacing:41.040640pt;}
.ls17{letter-spacing:87.840000pt;}
.ls12{letter-spacing:178.848000pt;}
.ls16{letter-spacing:800.426667pt;}
.ws2{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.534613pt;}
.ws8{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.185067pt;}
.ws3{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.040000pt;}
.wsf{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1d{margin-left:-6.935680pt;}
._19{margin-left:-5.736960pt;}
._16{margin-left:-4.189653pt;}
._4{margin-left:-3.179520pt;}
._3{margin-left:-2.119680pt;}
._1{margin-left:-1.182507pt;}
._0{width:1.054080pt;}
._5{width:2.357547pt;}
._11{width:3.906987pt;}
._15{width:5.441280pt;}
._9{width:6.362880pt;}
._8{width:7.926400pt;}
._f{width:8.977280pt;}
._14{width:9.954560pt;}
._d{width:11.011840pt;}
._18{width:12.102613pt;}
._a{width:14.330880pt;}
._12{width:15.249920pt;}
._17{width:16.204160pt;}
._1c{width:17.537920pt;}
._6{width:19.875840pt;}
._e{width:20.769920pt;}
._10{width:22.424960pt;}
._13{width:23.431467pt;}
._c{width:24.524373pt;}
._b{width:29.056640pt;}
._2{width:56.266667pt;}
._7{width:73.633920pt;}
._1b{width:101.381547pt;}
._1a{width:131.911253pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y211{bottom:4.960000pt;}
.y30{bottom:5.120000pt;}
.y1b8{bottom:5.146667pt;}
.y15{bottom:5.160000pt;}
.y6e{bottom:5.280000pt;}
.yde{bottom:5.440000pt;}
.ydd{bottom:5.600000pt;}
.ybd{bottom:5.760000pt;}
.y160{bottom:5.920000pt;}
.ye0{bottom:6.080000pt;}
.y261{bottom:6.240000pt;}
.ycc{bottom:6.400000pt;}
.y117{bottom:6.560000pt;}
.y25f{bottom:6.720000pt;}
.yc0{bottom:7.840000pt;}
.y23b{bottom:8.840000pt;}
.yc9{bottom:9.920000pt;}
.yed{bottom:10.240000pt;}
.y10e{bottom:11.520000pt;}
.yeb{bottom:12.000000pt;}
.y7{bottom:13.120000pt;}
.y13d{bottom:14.080000pt;}
.y10c{bottom:16.480000pt;}
.y23d{bottom:22.080000pt;}
.y25c{bottom:22.240000pt;}
.y210{bottom:22.560000pt;}
.y2f{bottom:22.720000pt;}
.y181{bottom:22.746667pt;}
.yd6{bottom:22.760000pt;}
.yc5{bottom:22.880000pt;}
.y1d8{bottom:22.920000pt;}
.y240{bottom:23.040000pt;}
.y23e{bottom:23.200000pt;}
.y1a2{bottom:23.360000pt;}
.y22b{bottom:24.640000pt;}
.y227{bottom:25.440000pt;}
.y225{bottom:25.600000pt;}
.y208{bottom:29.440000pt;}
.y204{bottom:29.600000pt;}
.y206{bottom:31.520000pt;}
.y20a{bottom:31.560000pt;}
.y6{bottom:39.040000pt;}
.y20f{bottom:40.160000pt;}
.y2e{bottom:40.320000pt;}
.y1a5{bottom:40.360000pt;}
.y1aa{bottom:40.474667pt;}
.y179{bottom:40.480000pt;}
.y180{bottom:40.506667pt;}
.y1d7{bottom:40.520000pt;}
.yd{bottom:51.840000pt;}
.y5{bottom:56.960000pt;}
.y20e{bottom:57.760000pt;}
.y20d{bottom:57.920000pt;}
.y1f6{bottom:57.960000pt;}
.y2d{bottom:58.080000pt;}
.y1f5{bottom:58.120000pt;}
.yb{bottom:65.600000pt;}
.y22a{bottom:69.152000pt;}
.y76{bottom:69.312000pt;}
.ya{bottom:69.600000pt;}
.y10b{bottom:69.632000pt;}
.y195{bottom:71.712000pt;}
.y202{bottom:71.872000pt;}
.y1ac{bottom:74.752000pt;}
.y2c{bottom:75.680000pt;}
.y25a{bottom:75.712000pt;}
.y1f4{bottom:75.720000pt;}
.y170{bottom:76.032000pt;}
.y4{bottom:76.826667pt;}
.y3d{bottom:80.032000pt;}
.y1dc{bottom:80.992000pt;}
.yac{bottom:84.992000pt;}
.y75{bottom:86.912000pt;}
.y1c7{bottom:87.392000pt;}
.y288{bottom:88.032000pt;}
.y201{bottom:89.472000pt;}
.y141{bottom:89.952000pt;}
.y1ab{bottom:92.352000pt;}
.y2b{bottom:93.280000pt;}
.y259{bottom:93.312000pt;}
.y16f{bottom:93.632000pt;}
.y9{bottom:95.546667pt;}
.y3c{bottom:97.632000pt;}
.y10a{bottom:98.592000pt;}
.yab{bottom:102.592000pt;}
.y74{bottom:104.672000pt;}
.y1c6{bottom:105.152000pt;}
.y287{bottom:105.632000pt;}
.y229{bottom:106.272000pt;}
.y200{bottom:107.072000pt;}
.y3{bottom:108.986667pt;}
.y1a9{bottom:109.952000pt;}
.y2a{bottom:110.880000pt;}
.y258{bottom:110.912000pt;}
.y16e{bottom:111.232000pt;}
.y3b{bottom:115.392000pt;}
.y109{bottom:116.192000pt;}
.yaa{bottom:120.192000pt;}
.y8{bottom:121.466667pt;}
.y73{bottom:122.272000pt;}
.y1c5{bottom:122.752000pt;}
.y286{bottom:123.232000pt;}
.y194{bottom:124.512000pt;}
.y1ff{bottom:124.672000pt;}
.y140{bottom:125.152000pt;}
.y29{bottom:128.480000pt;}
.y257{bottom:128.512000pt;}
.y16d{bottom:128.832000pt;}
.y3a{bottom:132.992000pt;}
.y108{bottom:133.946667pt;}
.ya9{bottom:137.946667pt;}
.y72{bottom:139.866667pt;}
.y1c4{bottom:140.346667pt;}
.y285{bottom:140.826667pt;}
.y193{bottom:142.106667pt;}
.y1fe{bottom:142.266667pt;}
.y1fd{bottom:142.426667pt;}
.y13f{bottom:142.746667pt;}
.y228{bottom:144.186667pt;}
.y256{bottom:146.106667pt;}
.y28{bottom:146.240000pt;}
.y16c{bottom:146.586667pt;}
.y39{bottom:150.586667pt;}
.y107{bottom:151.546667pt;}
.ya8{bottom:155.546667pt;}
.y71{bottom:157.466667pt;}
.y1c3{bottom:157.946667pt;}
.y284{bottom:158.586667pt;}
.y1fc{bottom:160.026667pt;}
.y13e{bottom:160.506667pt;}
.y1a8{bottom:162.906667pt;}
.y27{bottom:163.840000pt;}
.y255{bottom:163.866667pt;}
.y16b{bottom:164.186667pt;}
.y38{bottom:168.186667pt;}
.y106{bottom:169.146667pt;}
.ya7{bottom:173.146667pt;}
.y70{bottom:175.066667pt;}
.y1c2{bottom:175.546667pt;}
.y283{bottom:176.186667pt;}
.y1fb{bottom:177.626667pt;}
.y13c{bottom:178.106667pt;}
.y16a{bottom:178.586667pt;}
.y1a7{bottom:180.506667pt;}
.y26{bottom:181.440000pt;}
.y254{bottom:181.466667pt;}
.y226{bottom:182.266667pt;}
.y37{bottom:185.786667pt;}
.y1db{bottom:186.746667pt;}
.y105{bottom:187.386667pt;}
.y1c1{bottom:190.106667pt;}
.ya6{bottom:190.746667pt;}
.y6f{bottom:192.826667pt;}
.y282{bottom:193.786667pt;}
.y1fa{bottom:195.226667pt;}
.y253{bottom:195.866667pt;}
.y192{bottom:196.986667pt;}
.y25{bottom:199.040000pt;}
.y36{bottom:203.546667pt;}
.y1da{bottom:204.346667pt;}
.y13b{bottom:204.666667pt;}
.y104{bottom:204.986667pt;}
.ya5{bottom:208.346667pt;}
.y281{bottom:211.386667pt;}
.y6d{bottom:212.346667pt;}
.y1f9{bottom:212.826667pt;}
.y252{bottom:213.626667pt;}
.y169{bottom:213.946667pt;}
.y191{bottom:215.386667pt;}
.y24{bottom:216.640000pt;}
.y224{bottom:220.186667pt;}
.y35{bottom:221.146667pt;}
.y13a{bottom:222.266667pt;}
.y103{bottom:222.586667pt;}
.ya4{bottom:226.106667pt;}
.y280{bottom:228.986667pt;}
.y1f8{bottom:230.586667pt;}
.y251{bottom:231.226667pt;}
.y168{bottom:231.546667pt;}
.y1a6{bottom:233.306667pt;}
.y23{bottom:234.426667pt;}
.y6c{bottom:237.146667pt;}
.y34{bottom:238.746667pt;}
.y139{bottom:240.026667pt;}
.y190{bottom:240.186667pt;}
.y102{bottom:242.746667pt;}
.y1c0{bottom:243.066667pt;}
.ya3{bottom:243.706667pt;}
.y1f7{bottom:244.986667pt;}
.y27f{bottom:246.746667pt;}
.y250{bottom:248.826667pt;}
.y167{bottom:249.146667pt;}
.y1a4{bottom:251.066667pt;}
.y22{bottom:252.026667pt;}
.y6b{bottom:254.746667pt;}
.y33{bottom:256.346667pt;}
.y1d9{bottom:257.306667pt;}
.y18f{bottom:257.786667pt;}
.y223{bottom:260.186667pt;}
.y1bf{bottom:260.666667pt;}
.ya2{bottom:261.306667pt;}
.y1f3{bottom:262.586667pt;}
.y27e{bottom:264.346667pt;}
.y166{bottom:266.746667pt;}
.y101{bottom:267.546667pt;}
.y24f{bottom:268.506667pt;}
.y21{bottom:269.626667pt;}
.y6a{bottom:272.506667pt;}
.y32{bottom:273.946667pt;}
.y1d6{bottom:274.906667pt;}
.y138{bottom:275.226667pt;}
.y18e{bottom:275.386667pt;}
.ya1{bottom:278.906667pt;}
.y27d{bottom:281.946667pt;}
.y165{bottom:284.346667pt;}
.y100{bottom:285.146667pt;}
.y222{bottom:285.786667pt;}
.y20{bottom:287.226667pt;}
.y69{bottom:290.106667pt;}
.y31{bottom:291.746667pt;}
.y137{bottom:292.866667pt;}
.y18d{bottom:293.026667pt;}
.y24e{bottom:293.346667pt;}
.ya0{bottom:296.546667pt;}
.y27c{bottom:299.586667pt;}
.y164{bottom:302.146667pt;}
.yff{bottom:302.786667pt;}
.y221{bottom:303.426667pt;}
.y1f{bottom:304.826667pt;}
.y16{bottom:304.866667pt;}
.y1a1{bottom:305.986667pt;}
.y68{bottom:307.746667pt;}
.y136{bottom:310.466667pt;}
.y18c{bottom:310.786667pt;}
.y24d{bottom:310.946667pt;}
.y1be{bottom:313.506667pt;}
.y9f{bottom:314.306667pt;}
.y27b{bottom:317.186667pt;}
.yfe{bottom:320.386667pt;}
.y163{bottom:320.546667pt;}
.y220{bottom:321.186667pt;}
.yd5{bottom:322.466667pt;}
.y1e{bottom:322.586667pt;}
.y1a3{bottom:324.226667pt;}
.y135{bottom:328.226667pt;}
.y1d5{bottom:328.546667pt;}
.y1bd{bottom:331.266667pt;}
.y9e{bottom:331.906667pt;}
.y67{bottom:333.346667pt;}
.y27a{bottom:334.946667pt;}
.y18b{bottom:336.386667pt;}
.yfd{bottom:337.986667pt;}
.y162{bottom:338.146667pt;}
.y21f{bottom:338.786667pt;}
.yd4{bottom:340.066667pt;}
.y1d{bottom:340.186667pt;}
.y134{bottom:345.826667pt;}
.y24c{bottom:346.146667pt;}
.y1d4{bottom:346.786667pt;}
.y1a0{bottom:349.026667pt;}
.y9d{bottom:349.506667pt;}
.y1f2{bottom:350.786667pt;}
.y66{bottom:350.946667pt;}
.y279{bottom:352.546667pt;}
.y18a{bottom:353.986667pt;}
.yfc{bottom:355.746667pt;}
.y21e{bottom:356.386667pt;}
.yd3{bottom:357.666667pt;}
.y1c{bottom:357.786667pt;}
.y133{bottom:363.426667pt;}
.y24b{bottom:363.746667pt;}
.y19f{bottom:366.626667pt;}
.y9c{bottom:367.106667pt;}
.y1f1{bottom:368.386667pt;}
.y65{bottom:368.706667pt;}
.y278{bottom:370.146667pt;}
.y189{bottom:371.586667pt;}
.yfb{bottom:373.346667pt;}
.y1b{bottom:375.386667pt;}
.yd2{bottom:375.426667pt;}
.y132{bottom:381.026667pt;}
.y21d{bottom:381.986667pt;}
.y1bc{bottom:384.066667pt;}
.y19e{bottom:384.226667pt;}
.y9b{bottom:384.706667pt;}
.y1f0{bottom:386.146667pt;}
.y64{bottom:386.306667pt;}
.y277{bottom:387.746667pt;}
.y188{bottom:389.186667pt;}
.y24a{bottom:389.506667pt;}
.yfa{bottom:390.946667pt;}
.y1a{bottom:392.986667pt;}
.yd1{bottom:393.026667pt;}
.y131{bottom:398.626667pt;}
.y21c{bottom:399.586667pt;}
.y1bb{bottom:401.666667pt;}
.y19d{bottom:401.986667pt;}
.y1ef{bottom:403.746667pt;}
.y63{bottom:403.906667pt;}
.y9a{bottom:404.386667pt;}
.y276{bottom:405.346667pt;}
.y187{bottom:406.946667pt;}
.y249{bottom:407.106667pt;}
.yf9{bottom:408.546667pt;}
.y161{bottom:408.706667pt;}
.yd0{bottom:410.626667pt;}
.y19{bottom:410.746667pt;}
.y130{bottom:416.386667pt;}
.y21b{bottom:417.346667pt;}
.y19c{bottom:419.586667pt;}
.y1ee{bottom:421.346667pt;}
.y62{bottom:421.506667pt;}
.y275{bottom:423.106667pt;}
.y186{bottom:424.546667pt;}
.y248{bottom:424.706667pt;}
.yf8{bottom:426.146667pt;}
.y15f{bottom:426.306667pt;}
.ycf{bottom:428.226667pt;}
.y18{bottom:428.346667pt;}
.y99{bottom:429.186667pt;}
.y21a{bottom:434.946667pt;}
.y12f{bottom:436.546667pt;}
.y19b{bottom:437.186667pt;}
.y61{bottom:439.106667pt;}
.y274{bottom:440.706667pt;}
.y1ed{bottom:441.026667pt;}
.y185{bottom:442.146667pt;}
.y247{bottom:442.306667pt;}
.yf7{bottom:443.906667pt;}
.y15e{bottom:444.706667pt;}
.yce{bottom:445.826667pt;}
.y17{bottom:445.946667pt;}
.y98{bottom:446.786667pt;}
.y219{bottom:452.546667pt;}
.y1ba{bottom:454.626667pt;}
.y19a{bottom:454.786667pt;}
.y60{bottom:456.866667pt;}
.y273{bottom:458.306667pt;}
.y184{bottom:459.746667pt;}
.y246{bottom:459.906667pt;}
.y12e{bottom:461.346667pt;}
.yf6{bottom:461.506667pt;}
.y15d{bottom:462.306667pt;}
.ycd{bottom:463.586667pt;}
.y97{bottom:464.386667pt;}
.y1ec{bottom:465.826667pt;}
.y218{bottom:470.146667pt;}
.y1b9{bottom:472.226667pt;}
.y199{bottom:472.386667pt;}
.y5f{bottom:474.466667pt;}
.y272{bottom:475.906667pt;}
.y183{bottom:477.346667pt;}
.y245{bottom:477.506667pt;}
.y12d{bottom:478.946667pt;}
.yf5{bottom:479.106667pt;}
.y15c{bottom:479.906667pt;}
.ycb{bottom:481.186667pt;}
.y96{bottom:482.146667pt;}
.y1eb{bottom:483.426667pt;}
.y217{bottom:487.586667pt;}
.y216{bottom:487.746667pt;}
.y198{bottom:490.146667pt;}
.y5e{bottom:492.066667pt;}
.y271{bottom:493.506667pt;}
.y182{bottom:495.106667pt;}
.y244{bottom:495.266667pt;}
.y12c{bottom:496.546667pt;}
.yf4{bottom:496.706667pt;}
.y15b{bottom:497.506667pt;}
.y95{bottom:499.746667pt;}
.yca{bottom:500.066667pt;}
.y1ea{bottom:501.026667pt;}
.y215{bottom:505.506667pt;}
.y197{bottom:507.746667pt;}
.y17f{bottom:509.506667pt;}
.y5d{bottom:509.666667pt;}
.y270{bottom:511.266667pt;}
.y1d3{bottom:512.706667pt;}
.y243{bottom:512.866667pt;}
.y12b{bottom:514.146667pt;}
.yf3{bottom:514.306667pt;}
.y15a{bottom:515.266667pt;}
.yc8{bottom:517.666667pt;}
.y1e9{bottom:518.626667pt;}
.y214{bottom:523.106667pt;}
.y1b7{bottom:525.186667pt;}
.y94{bottom:525.346667pt;}
.y5c{bottom:527.266667pt;}
.y26f{bottom:528.893333pt;}
.y1d2{bottom:530.333333pt;}
.y242{bottom:530.493333pt;}
.y12a{bottom:531.773333pt;}
.yf2{bottom:531.933333pt;}
.y159{bottom:532.893333pt;}
.y1e8{bottom:536.253333pt;}
.yc7{bottom:540.093333pt;}
.y213{bottom:540.733333pt;}
.y1b6{bottom:542.813333pt;}
.y93{bottom:542.973333pt;}
.y5b{bottom:545.053333pt;}
.y26e{bottom:546.493333pt;}
.y1d1{bottom:547.933333pt;}
.y241{bottom:548.093333pt;}
.y129{bottom:549.533333pt;}
.yf1{bottom:549.693333pt;}
.y158{bottom:550.493333pt;}
.yc6{bottom:557.693333pt;}
.y212{bottom:558.333333pt;}
.y92{bottom:560.573333pt;}
.y1e7{bottom:562.013333pt;}
.y17e{bottom:562.493333pt;}
.y5a{bottom:562.653333pt;}
.y26d{bottom:564.093333pt;}
.y1d0{bottom:565.533333pt;}
.y128{bottom:567.133333pt;}
.yf0{bottom:567.293333pt;}
.y157{bottom:570.173333pt;}
.y20c{bottom:572.893333pt;}
.yc4{bottom:575.293333pt;}
.y91{bottom:578.333333pt;}
.y1e6{bottom:579.613333pt;}
.y17d{bottom:580.093333pt;}
.y59{bottom:580.253333pt;}
.y26c{bottom:581.693333pt;}
.y1cf{bottom:583.293333pt;}
.y127{bottom:584.733333pt;}
.yef{bottom:584.893333pt;}
.y156{bottom:594.973333pt;}
.y1b5{bottom:595.773333pt;}
.y90{bottom:595.933333pt;}
.y1e5{bottom:597.213333pt;}
.y1ce{bottom:597.693333pt;}
.y58{bottom:597.853333pt;}
.yee{bottom:599.453333pt;}
.y126{bottom:602.333333pt;}
.yc3{bottom:610.653333pt;}
.y155{bottom:612.573333pt;}
.y1b4{bottom:613.373333pt;}
.y8f{bottom:613.533333pt;}
.y1e4{bottom:614.813333pt;}
.y57{bottom:615.453333pt;}
.y26b{bottom:617.053333pt;}
.y125{bottom:619.933333pt;}
.y196{bottom:627.933333pt;}
.yc2{bottom:628.253333pt;}
.y154{bottom:630.173333pt;}
.y8e{bottom:631.133333pt;}
.y1e3{bottom:632.413333pt;}
.y17c{bottom:632.893333pt;}
.y56{bottom:633.213333pt;}
.y26a{bottom:634.493333pt;}
.yec{bottom:634.653333pt;}
.y124{bottom:637.693333pt;}
.yc1{bottom:645.853333pt;}
.y153{bottom:647.773333pt;}
.y8d{bottom:648.733333pt;}
.y1e2{bottom:650.173333pt;}
.y17b{bottom:650.653333pt;}
.y55{bottom:650.813333pt;}
.y23f{bottom:650.973333pt;}
.y269{bottom:652.093333pt;}
.y268{bottom:652.253333pt;}
.y123{bottom:655.293333pt;}
.yea{bottom:657.373333pt;}
.y20b{bottom:661.053333pt;}
.y152{bottom:665.373333pt;}
.ybf{bottom:666.173333pt;}
.y8c{bottom:666.333333pt;}
.y1e1{bottom:667.773333pt;}
.y1cd{bottom:668.253333pt;}
.y54{bottom:668.413333pt;}
.y267{bottom:669.853333pt;}
.y122{bottom:672.893333pt;}
.y8b{bottom:680.893333pt;}
.ye9{bottom:681.853333pt;}
.y151{bottom:683.133333pt;}
.y1b3{bottom:683.933333pt;}
.y1e0{bottom:685.373333pt;}
.y53{bottom:686.013333pt;}
.ybe{bottom:686.493333pt;}
.y266{bottom:687.613333pt;}
.y121{bottom:690.493333pt;}
.y8a{bottom:698.493333pt;}
.y150{bottom:700.733333pt;}
.y1df{bottom:702.973333pt;}
.y17a{bottom:703.453333pt;}
.y52{bottom:703.613333pt;}
.ybc{bottom:704.093333pt;}
.y265{bottom:705.213333pt;}
.y120{bottom:708.093333pt;}
.y89{bottom:716.093333pt;}
.ye8{bottom:717.213333pt;}
.y14f{bottom:718.333333pt;}
.y1de{bottom:720.573333pt;}
.y178{bottom:721.053333pt;}
.y51{bottom:721.373333pt;}
.y23c{bottom:722.173333pt;}
.y11f{bottom:722.653333pt;}
.y264{bottom:722.813333pt;}
.ybb{bottom:728.893333pt;}
.y88{bottom:733.853333pt;}
.ye7{bottom:734.813333pt;}
.y14e{bottom:735.933333pt;}
.y263{bottom:737.213333pt;}
.y1dd{bottom:738.333333pt;}
.y1b1{bottom:738.813333pt;}
.y50{bottom:738.973333pt;}
.y11e{bottom:741.533333pt;}
.y209{bottom:745.053333pt;}
.yba{bottom:746.493333pt;}
.y87{bottom:751.453333pt;}
.y14d{bottom:753.533333pt;}
.ye6{bottom:755.133333pt;}
.y4f{bottom:756.573333pt;}
.y1b2{bottom:757.053333pt;}
.y23a{bottom:758.653333pt;}
.y11d{bottom:759.133333pt;}
.y14{bottom:763.933333pt;}
.yb9{bottom:764.253333pt;}
.y86{bottom:769.093333pt;}
.y14c{bottom:771.333333pt;}
.ye5{bottom:773.253333pt;}
.y4e{bottom:774.213333pt;}
.y177{bottom:776.133333pt;}
.y11c{bottom:776.773333pt;}
.yb8{bottom:781.893333pt;}
.y85{bottom:786.693333pt;}
.y13{bottom:786.853333pt;}
.y239{bottom:787.173333pt;}
.y14b{bottom:788.933333pt;}
.y207{bottom:789.093333pt;}
.ye4{bottom:791.013333pt;}
.y1cc{bottom:791.653333pt;}
.y4d{bottom:791.813333pt;}
.y176{bottom:794.373333pt;}
.y11b{bottom:795.653333pt;}
.yb7{bottom:799.493333pt;}
.y84{bottom:804.293333pt;}
.y12{bottom:804.453333pt;}
.y238{bottom:804.773333pt;}
.y14a{bottom:806.533333pt;}
.y262{bottom:807.813333pt;}
.ye3{bottom:808.613333pt;}
.y1cb{bottom:809.253333pt;}
.y4c{bottom:809.573333pt;}
.y11a{bottom:813.253333pt;}
.y1b0{bottom:817.093333pt;}
.y175{bottom:819.173333pt;}
.y83{bottom:822.053333pt;}
.y237{bottom:822.373333pt;}
.y11{bottom:822.533333pt;}
.y149{bottom:824.133333pt;}
.yb6{bottom:825.093333pt;}
.y260{bottom:825.413333pt;}
.ye2{bottom:826.213333pt;}
.y4b{bottom:827.173333pt;}
.y119{bottom:831.013333pt;}
.y1af{bottom:834.693333pt;}
.y174{bottom:836.773333pt;}
.y82{bottom:839.653333pt;}
.y236{bottom:839.973333pt;}
.y10{bottom:841.413333pt;}
.y148{bottom:841.733333pt;}
.yb5{bottom:842.693333pt;}
.ye1{bottom:843.813333pt;}
.y25e{bottom:844.133333pt;}
.y4a{bottom:844.773333pt;}
.y118{bottom:848.613333pt;}
.y1ae{bottom:852.453333pt;}
.y173{bottom:854.373333pt;}
.y81{bottom:857.253333pt;}
.y235{bottom:857.733333pt;}
.y147{bottom:859.493333pt;}
.yb4{bottom:860.453333pt;}
.ydf{bottom:861.413333pt;}
.yf{bottom:862.213333pt;}
.y49{bottom:862.373333pt;}
.y25d{bottom:863.333333pt;}
.y1c9{bottom:864.293333pt;}
.y116{bottom:866.213333pt;}
.y172{bottom:871.973333pt;}
.y205{bottom:873.093333pt;}
.y80{bottom:874.853333pt;}
.y234{bottom:875.333333pt;}
.y146{bottom:877.093333pt;}
.yb3{bottom:878.053333pt;}
.y48{bottom:879.973333pt;}
.y1ca{bottom:882.533333pt;}
.y25b{bottom:883.013333pt;}
.y115{bottom:885.253333pt;}
.y171{bottom:889.733333pt;}
.ye{bottom:890.533333pt;}
.y7f{bottom:892.453333pt;}
.y233{bottom:892.933333pt;}
.y145{bottom:894.693333pt;}
.yb2{bottom:895.653333pt;}
.y47{bottom:897.733333pt;}
.ydc{bottom:900.133333pt;}
.y114{bottom:902.853333pt;}
.y1c8{bottom:907.333333pt;}
.y7e{bottom:910.213333pt;}
.y232{bottom:910.533333pt;}
.y144{bottom:912.293333pt;}
.yb1{bottom:913.253333pt;}
.yc{bottom:914.853333pt;}
.y46{bottom:915.333333pt;}
.y203{bottom:919.013333pt;}
.y113{bottom:920.613333pt;}
.ydb{bottom:924.933333pt;}
.y143{bottom:926.853333pt;}
.y7d{bottom:927.813333pt;}
.y231{bottom:928.133333pt;}
.y1{bottom:930.533333pt;}
.yb0{bottom:930.853333pt;}
.y45{bottom:932.933333pt;}
.y112{bottom:939.173333pt;}
.yda{bottom:942.533333pt;}
.y7c{bottom:945.413333pt;}
.y230{bottom:945.893333pt;}
.yaf{bottom:948.613333pt;}
.y44{bottom:950.533333pt;}
.y111{bottom:956.773333pt;}
.yd9{bottom:960.133333pt;}
.y142{bottom:962.053333pt;}
.y7b{bottom:963.013333pt;}
.y22f{bottom:963.493333pt;}
.yae{bottom:966.213333pt;}
.y43{bottom:968.133333pt;}
.y110{bottom:974.373333pt;}
.yd8{bottom:977.893333pt;}
.y7a{bottom:980.613333pt;}
.y22e{bottom:981.093333pt;}
.yad{bottom:983.813333pt;}
.y42{bottom:985.893333pt;}
.y10f{bottom:991.973333pt;}
.yd7{bottom:995.493333pt;}
.y79{bottom:998.373333pt;}
.y22d{bottom:998.693333pt;}
.y1ad{bottom:1001.413333pt;}
.y41{bottom:1003.493333pt;}
.y10d{bottom:1009.600000pt;}
.y22c{bottom:1013.280000pt;}
.y78{bottom:1016.000000pt;}
.y40{bottom:1021.120000pt;}
.y77{bottom:1033.600000pt;}
.y3f{bottom:1038.720000pt;}
.y3e{bottom:1062.080000pt;}
.h3{height:1.787500pt;}
.h10{height:17.600000pt;}
.hc{height:17.632000pt;}
.hf{height:17.760000pt;}
.h24{height:17.792000pt;}
.h1d{height:18.080000pt;}
.h19{height:18.112000pt;}
.h17{height:18.240000pt;}
.h23{height:18.400000pt;}
.h18{height:18.560000pt;}
.h3e{height:18.720000pt;}
.h15{height:18.880000pt;}
.h20{height:19.040000pt;}
.h3d{height:19.200000pt;}
.h11{height:20.320000pt;}
.h37{height:21.312000pt;}
.h14{height:22.432000pt;}
.h1b{height:22.720000pt;}
.h1f{height:24.000000pt;}
.h1a{height:24.480000pt;}
.h21{height:26.560000pt;}
.h1e{height:28.960000pt;}
.h38{height:34.560000pt;}
.h3c{height:34.720000pt;}
.h1c{height:35.200000pt;}
.h16{height:35.232000pt;}
.h13{height:35.360000pt;}
.h22{height:35.392000pt;}
.h3a{height:35.520000pt;}
.h39{height:35.680000pt;}
.h28{height:35.840000pt;}
.h2a{height:35.872000pt;}
.hb{height:37.090625pt;}
.h36{height:37.120000pt;}
.h9{height:37.479688pt;}
.h2d{height:37.730625pt;}
.h34{height:37.920000pt;}
.h33{height:38.080000pt;}
.h12{height:38.672812pt;}
.he{height:38.828437pt;}
.h7{height:41.112500pt;}
.ha{height:41.543750pt;}
.h30{height:41.920000pt;}
.h2e{height:42.080000pt;}
.h35{height:42.669917pt;}
.h2b{height:42.691250pt;}
.h2f{height:44.000000pt;}
.h31{height:44.032000pt;}
.h26{height:52.800000pt;}
.h29{height:52.832000pt;}
.h27{height:52.960000pt;}
.h25{height:52.992000pt;}
.h6{height:54.093750pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h3b{height:70.560000pt;}
.h3f{height:70.592000pt;}
.h32{height:88.160000pt;}
.h2c{height:88.192000pt;}
.h4{height:93.387187pt;}
.h2{height:143.386667pt;}
.hd{height:458.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:41.920000pt;}
.w14{width:42.080000pt;}
.w18{width:45.600000pt;}
.w13{width:47.200000pt;}
.w11{width:48.032000pt;}
.w1a{width:48.320000pt;}
.w5a{width:50.112000pt;}
.w10{width:50.720000pt;}
.w52{width:51.232000pt;}
.w17{width:51.360000pt;}
.w4d{width:52.832000pt;}
.w15{width:53.600000pt;}
.w41{width:53.952000pt;}
.w47{width:54.400000pt;}
.w1e{width:59.360000pt;}
.w40{width:78.080000pt;}
.w1c{width:79.232000pt;}
.w56{width:83.680000pt;}
.w59{width:87.520000pt;}
.w46{width:87.712000pt;}
.w4c{width:88.000000pt;}
.w51{width:89.120000pt;}
.w29{width:93.440000pt;}
.w26{width:99.392000pt;}
.w3e{width:100.320000pt;}
.we{width:101.952000pt;}
.w43{width:109.152000pt;}
.w2e{width:110.912000pt;}
.w2f{width:112.480000pt;}
.w5c{width:112.640000pt;}
.w57{width:113.472000pt;}
.w42{width:114.080000pt;}
.w49{width:116.800000pt;}
.w5b{width:118.912000pt;}
.w4f{width:119.552000pt;}
.w53{width:119.872000pt;}
.w23{width:120.480000pt;}
.w3d{width:120.672000pt;}
.w38{width:121.760000pt;}
.w48{width:123.392000pt;}
.w2c{width:125.600000pt;}
.w2d{width:125.632000pt;}
.w4e{width:125.760000pt;}
.w3c{width:128.032000pt;}
.w3b{width:134.400000pt;}
.w2{width:136.666667pt;}
.wb{width:138.106667pt;}
.w4{width:139.520000pt;}
.w21{width:141.946667pt;}
.w34{width:143.040000pt;}
.w22{width:148.826667pt;}
.w27{width:148.986667pt;}
.wa{width:156.026667pt;}
.w28{width:170.266667pt;}
.w37{width:170.426667pt;}
.w36{width:177.306667pt;}
.w32{width:177.466667pt;}
.w33{width:184.546667pt;}
.w24{width:185.786667pt;}
.w30{width:192.826667pt;}
.w9{width:199.226667pt;}
.wd{width:205.306667pt;}
.w39{width:214.466667pt;}
.w4b{width:221.466667pt;}
.w2a{width:223.266667pt;}
.w55{width:224.666667pt;}
.w1f{width:228.386667pt;}
.w3f{width:235.226667pt;}
.w58{width:239.066667pt;}
.w50{width:239.706667pt;}
.w44{width:246.106667pt;}
.w45{width:254.466667pt;}
.w7{width:255.906667pt;}
.w5d{width:256.546667pt;}
.w54{width:260.226667pt;}
.w4a{width:265.506667pt;}
.wc{width:355.266667pt;}
.w20{width:411.266667pt;}
.w3{width:420.253333pt;}
.w8{width:438.466667pt;}
.w35{width:469.506667pt;}
.w2b{width:474.626667pt;}
.w3a{width:483.426667pt;}
.w31{width:505.053333pt;}
.w25{width:512.093333pt;}
.w1b{width:517.373333pt;}
.w12{width:555.013333pt;}
.w16{width:600.933333pt;}
.w19{width:603.973333pt;}
.wf{width:629.253333pt;}
.w6{width:694.373333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x16{left:10.880000pt;}
.x18{left:31.200000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.x22{left:55.232000pt;}
.xe{left:71.999988pt;}
.x43{left:73.760000pt;}
.x44{left:76.000000pt;}
.x23{left:77.120000pt;}
.x3f{left:78.560000pt;}
.x39{left:83.840000pt;}
.x4f{left:85.920000pt;}
.x4b{left:89.952000pt;}
.x46{left:93.152000pt;}
.x3b{left:94.080000pt;}
.xc{left:96.031988pt;}
.x8{left:97.320000pt;}
.x54{left:99.232000pt;}
.x34{left:101.632000pt;}
.x7{left:103.880000pt;}
.x5a{left:104.959988pt;}
.x5{left:106.120000pt;}
.x50{left:110.720000pt;}
.x51{left:118.080000pt;}
.x2{left:121.146667pt;}
.x3a{left:126.720000pt;}
.xf{left:150.266667pt;}
.x12{left:174.266667pt;}
.x3{left:185.306667pt;}
.xd{left:202.106655pt;}
.x3d{left:203.679988pt;}
.x6{left:210.120000pt;}
.x26{left:233.786667pt;}
.x2c{left:240.826667pt;}
.x31{left:262.466667pt;}
.x28{left:271.266667pt;}
.x2e{left:276.386667pt;}
.xb{left:305.666667pt;}
.x47{left:314.626667pt;}
.x55{left:323.906667pt;}
.x4c{left:329.666667pt;}
.x57{left:331.906667pt;}
.x27{left:333.186667pt;}
.x35{left:336.866667pt;}
.x59{left:346.879988pt;}
.x10{left:349.506667pt;}
.x3e{left:352.959988pt;}
.x13{left:379.586667pt;}
.x29{left:396.866667pt;}
.x48{left:402.626667pt;}
.x56{left:407.586667pt;}
.x36{left:414.946667pt;}
.x2d{left:418.306667pt;}
.x52{left:419.679988pt;}
.x40{left:420.733333pt;}
.x24{left:447.453333pt;}
.x2f{left:453.693333pt;}
.x49{left:455.453333pt;}
.x37{left:468.893333pt;}
.x4d{left:470.013333pt;}
.x41{left:475.133333pt;}
.x14{left:481.533333pt;}
.x11{left:505.533333pt;}
.x2a{left:522.493333pt;}
.x32{left:524.893333pt;}
.x1f{left:565.373333pt;}
.x4a{left:581.213333pt;}
.x38{left:582.973333pt;}
.x58{left:588.453333pt;}
.x4e{left:589.893333pt;}
.x25{left:596.293333pt;}
.x42{left:598.533333pt;}
.x19{left:603.013333pt;}
.x9{left:605.573333pt;}
.x30{left:624.133333pt;}
.x2b{left:633.413333pt;}
.x45{left:634.906655pt;}
.x53{left:641.119988pt;}
.x20{left:644.613333pt;}
.x33{left:645.573333pt;}
.x1c{left:648.933333pt;}
.x1a{left:650.213333pt;}
.x1e{left:651.973333pt;}
.x15{left:677.253333pt;}
.x21{left:686.533333pt;}
.x1b{left:692.293333pt;}
.x3c{left:697.733322pt;}
.x1d{left:700.293333pt;}
.x17{left:727.973333pt;}
}




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