
    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_7e97cf6114bed67ccad2d689.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_29fa74f625afbdc8eea849cd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_005522f48d435be34c2c0e74.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.207031;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_a0e8a167c4dbc9b288deb2d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762207;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_ea717883abcccea5fcd72c92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_86cfbfd64e6f640bbd10a3b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008789;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_fe565a5f202c1b471a160a3c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_bed20695411d96295b1f7897.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_0dffe49ae6bc768d69b351d4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.207031;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_b0ea2af4cdf40a885df54da0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.024902;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_cc049c29cd4f3c251418de0c.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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-72.000000px;}
.v4{vertical-align:-21.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.000000px;}
.v1{vertical-align:24.000000px;}
.lsb{letter-spacing:-1.248000px;}
.lse{letter-spacing:-0.984000px;}
.ls1d{letter-spacing:-0.708000px;}
.ls1c{letter-spacing:-0.585000px;}
.ls4{letter-spacing:-0.570000px;}
.ls16{letter-spacing:-0.516000px;}
.lsa{letter-spacing:-0.492000px;}
.ls11{letter-spacing:-0.294000px;}
.ls12{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.156000px;}
.ls5{letter-spacing:-0.135000px;}
.ls7{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.063000px;}
.ls17{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.372000px;}
.ls1{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.456000px;}
.ls1e{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.516000px;}
.ls0{letter-spacing:0.552000px;}
.ls15{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.732000px;}
.lsf{letter-spacing:0.780000px;}
.ls21{letter-spacing:1.665000px;}
.ls1b{letter-spacing:1.872000px;}
.lsc{letter-spacing:30.000000px;}
.ls20{letter-spacing:32.490000px;}
.ls18{letter-spacing:40.320000px;}
.ls19{letter-spacing:41.820000px;}
.ls1f{letter-spacing:57.990000px;}
.ls14{letter-spacing:67.320000px;}
.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;}
}
.wsb{word-spacing:-33.120000px;}
.ws2{word-spacing:-31.464000px;}
.ws14{word-spacing:-26.496000px;}
.ws12{word-spacing:-19.020000px;}
.ws11{word-spacing:-18.960000px;}
.wsf{word-spacing:-18.780000px;}
.ws13{word-spacing:-18.600000px;}
.ws8{word-spacing:-17.418000px;}
.ws6{word-spacing:-17.274000px;}
.ws7{word-spacing:-16.902000px;}
.ws9{word-spacing:-15.918000px;}
.ws16{word-spacing:-15.836528px;}
.ws1{word-spacing:-15.024000px;}
.ws15{word-spacing:-14.824609px;}
.ws17{word-spacing:-14.544000px;}
.ws18{word-spacing:-14.085000px;}
.ws5{word-spacing:-14.064000px;}
.ws10{word-spacing:-13.548000px;}
.ws0{word-spacing:-13.515000px;}
.wsd{word-spacing:-12.270000px;}
.wsc{word-spacing:-12.207000px;}
.wse{word-spacing:-11.913000px;}
.ws4{word-spacing:-11.268000px;}
.ws3{word-spacing:-11.112000px;}
.wsa{word-spacing:0.000000px;}
._a{margin-left:-7.719000px;}
._9{margin-left:-6.255000px;}
._1a{margin-left:-4.935000px;}
._19{margin-left:-3.750000px;}
._f{margin-left:-2.289000px;}
._0{margin-left:-1.260000px;}
._1{width:1.395000px;}
._2{width:2.805000px;}
._b{width:4.083000px;}
._11{width:5.769000px;}
._13{width:6.876000px;}
._12{width:8.031000px;}
._e{width:9.441000px;}
._18{width:10.698000px;}
._17{width:12.228000px;}
._20{width:13.776000px;}
._1f{width:15.150000px;}
._22{width:16.395000px;}
._21{width:17.592000px;}
._15{width:19.269000px;}
._16{width:20.478000px;}
._1d{width:22.284000px;}
._d{width:23.556000px;}
._10{width:25.170000px;}
._24{width:26.616000px;}
._1e{width:28.320000px;}
._14{width:29.946000px;}
._2d{width:31.554000px;}
._23{width:33.675000px;}
._1b{width:35.037000px;}
._1c{width:36.528000px;}
._5{width:39.474000px;}
._6{width:40.731000px;}
._c{width:41.787000px;}
._2b{width:42.801000px;}
._35{width:44.208000px;}
._33{width:46.077000px;}
._32{width:48.108000px;}
._27{width:49.260000px;}
._2f{width:50.940000px;}
._2e{width:52.200000px;}
._28{width:57.120000px;}
._4{width:66.573000px;}
._2c{width:67.812000px;}
._39{width:76.734000px;}
._3b{width:81.516000px;}
._31{width:84.768000px;}
._8{width:87.075000px;}
._7{width:88.809000px;}
._2a{width:92.280000px;}
._29{width:93.303000px;}
._3c{width:94.440000px;}
._37{width:96.960000px;}
._3d{width:100.587000px;}
._3{width:107.712000px;}
._34{width:126.141000px;}
._30{width:137.184000px;}
._3a{width:146.016000px;}
._38{width:174.672000px;}
._36{width:181.104000px;}
._26{width:186.888000px;}
._25{width:188.538000px;}
.fc6{color:transparent;}
.fc4{color:rgb(0,147,201);}
.fc3{color:rgb(0,112,192);}
.fc5{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:6.000000px;}
.fs4{font-size:12.000000px;}
.fse{font-size:24.000000px;}
.fs15{font-size:30.000000px;}
.fsc{font-size:36.000000px;}
.fsd{font-size:39.000000px;}
.fs6{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs13{font-size:47.433691px;}
.fs3{font-size:48.000000px;}
.fs14{font-size:50.595937px;}
.fs10{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fsf{font-size:84.000000px;}
.fs12{font-size:96.000000px;}
.fsa{font-size:102.000000px;}
.fs9{font-size:108.000000px;}
.fs11{font-size:120.000000px;}
.fs5{font-size:144.000000px;}
.fs8{font-size:165.000000px;}
.fsb{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y207{bottom:0.375000px;}
.y52{bottom:1.500000px;}
.y3{bottom:1.875000px;}
.y2d{bottom:2.250000px;}
.y195{bottom:2.610000px;}
.y9{bottom:2.625000px;}
.y7c{bottom:2.640000px;}
.y16c{bottom:2.655000px;}
.y7b{bottom:2.670000px;}
.yc0{bottom:3.000000px;}
.y1c{bottom:3.360000px;}
.ycc{bottom:3.375000px;}
.y19c{bottom:5.625000px;}
.y19{bottom:6.000000px;}
.y1d9{bottom:7.110000px;}
.y87{bottom:7.125000px;}
.y1df{bottom:7.500000px;}
.y60{bottom:8.250000px;}
.ya{bottom:8.625000px;}
.y48{bottom:9.375000px;}
.y4{bottom:11.250000px;}
.y2c{bottom:13.875000px;}
.y14e{bottom:14.250000px;}
.y57{bottom:14.625000px;}
.y15d{bottom:14.670000px;}
.y203{bottom:15.750000px;}
.y75{bottom:16.875000px;}
.y174{bottom:16.890000px;}
.y7a{bottom:16.920000px;}
.y45{bottom:17.250000px;}
.y18c{bottom:17.280000px;}
.y16b{bottom:17.295000px;}
.y6{bottom:18.037500px;}
.y7e{bottom:18.757500px;}
.y7f{bottom:19.507500px;}
.y7{bottom:20.625000px;}
.y85{bottom:21.000000px;}
.y12e{bottom:21.015000px;}
.yb{bottom:21.375000px;}
.y2{bottom:22.875000px;}
.y50{bottom:24.375000px;}
.y2b{bottom:25.500000px;}
.y205{bottom:28.500000px;}
.y15b{bottom:28.875000px;}
.y18d{bottom:28.905000px;}
.y176{bottom:29.257500px;}
.y202{bottom:29.625000px;}
.y74{bottom:31.500000px;}
.y154{bottom:31.530000px;}
.y79{bottom:31.545000px;}
.y44{bottom:31.875000px;}
.y194{bottom:31.905000px;}
.yf{bottom:32.625000px;}
.y18{bottom:33.750000px;}
.y56{bottom:34.905000px;}
.y2a{bottom:36.375000px;}
.ybf{bottom:39.000000px;}
.y1aa{bottom:39.007500px;}
.y11f{bottom:39.367500px;}
.y126{bottom:39.375000px;}
.yf1{bottom:39.382500px;}
.y1ca{bottom:39.420000px;}
.y4f{bottom:40.125000px;}
.y80{bottom:40.132500px;}
.y1dc{bottom:40.500000px;}
.yc8{bottom:42.000000px;}
.y19b{bottom:42.750000px;}
.y201{bottom:43.170000px;}
.y155{bottom:43.530000px;}
.y73{bottom:45.780000px;}
.y43{bottom:46.125000px;}
.y172{bottom:46.140000px;}
.y192{bottom:46.155000px;}
.y78{bottom:46.170000px;}
.y29{bottom:48.000000px;}
.y4e{bottom:51.000000px;}
.y55{bottom:52.155000px;}
.y200{bottom:56.670000px;}
.ybe{bottom:57.367500px;}
.y1e{bottom:57.375000px;}
.y11e{bottom:57.382500px;}
.y19f{bottom:57.405000px;}
.y1c9{bottom:57.420000px;}
.y125{bottom:57.780000px;}
.y173{bottom:57.795000px;}
.y18a{bottom:58.125000px;}
.y193{bottom:58.155000px;}
.y1d6{bottom:58.500000px;}
.y28{bottom:58.875000px;}
.y16f{bottom:60.375000px;}
.y72{bottom:60.420000px;}
.y42{bottom:60.750000px;}
.y8{bottom:61.125000px;}
.y17{bottom:61.500000px;}
.y4d{bottom:61.905000px;}
.yc7{bottom:65.625000px;}
.y54{bottom:66.030000px;}
.y27{bottom:69.780000px;}
.y1ff{bottom:70.170000px;}
.y5{bottom:71.250000px;}
.y4c{bottom:72.780000px;}
.y41{bottom:75.000000px;}
.y71{bottom:75.045000px;}
.y14a{bottom:75.367500px;}
.y12d{bottom:75.375000px;}
.ybd{bottom:75.382500px;}
.y19e{bottom:75.405000px;}
.yf0{bottom:75.757500px;}
.y124{bottom:75.780000px;}
.y1c8{bottom:75.795000px;}
.y26{bottom:80.655000px;}
.yc6{bottom:83.625000px;}
.y4b{bottom:83.655000px;}
.y1fe{bottom:84.045000px;}
.y16{bottom:89.250000px;}
.y70{bottom:89.280000px;}
.y40{bottom:89.655000px;}
.y25{bottom:91.530000px;}
.y12c{bottom:93.375000px;}
.ybc{bottom:93.382500px;}
.y1a9{bottom:93.412500px;}
.y11d{bottom:93.742500px;}
.y149{bottom:93.757500px;}
.y123{bottom:93.780000px;}
.yef{bottom:93.787500px;}
.y1c7{bottom:93.795000px;}
.y4a{bottom:94.530000px;}
.y1fd{bottom:97.545000px;}
.yc5{bottom:101.625000px;}
.y24{bottom:102.405000px;}
.y6f{bottom:103.920000px;}
.y3f{bottom:104.280000px;}
.y49{bottom:106.155000px;}
.y1ce{bottom:106.162500px;}
.y12f{bottom:108.412500px;}
.y89{bottom:109.537500px;}
.y1fc{bottom:111.045000px;}
.y1a8{bottom:111.412500px;}
.y122{bottom:111.780000px;}
.ybb{bottom:111.787500px;}
.y187{bottom:111.795000px;}
.y23{bottom:113.280000px;}
.yf2{bottom:113.662500px;}
.y12b{bottom:114.000000px;}
.y1a3{bottom:116.287500px;}
.y15{bottom:117.000000px;}
.y3e{bottom:118.530000px;}
.y6e{bottom:118.545000px;}
.y12a{bottom:119.670000px;}
.y5e{bottom:121.905000px;}
.yc4{bottom:122.280000px;}
.ycd{bottom:122.662500px;}
.y22{bottom:124.155000px;}
.y1fb{bottom:124.545000px;}
.y175{bottom:126.412500px;}
.y81{bottom:127.537500px;}
.yba{bottom:129.787500px;}
.y186{bottom:130.155000px;}
.y1c6{bottom:130.170000px;}
.y121{bottom:132.405000px;}
.y5d{bottom:132.780000px;}
.y6d{bottom:132.795000px;}
.y3d{bottom:133.155000px;}
.y21{bottom:135.030000px;}
.y1fa{bottom:138.045000px;}
.y7d{bottom:142.537500px;}
.y5c{bottom:143.700000px;}
.y14{bottom:144.780000px;}
.y20{bottom:145.905000px;}
.y6c{bottom:147.420000px;}
.y3c{bottom:147.780000px;}
.yb9{bottom:147.787500px;}
.y185{bottom:148.155000px;}
.yee{bottom:148.162500px;}
.y1c5{bottom:148.170000px;}
.y1f9{bottom:151.920000px;}
.y5b{bottom:154.575000px;}
.y171{bottom:155.655000px;}
.y1f{bottom:157.530000px;}
.y1a{bottom:158.280000px;}
.y6b{bottom:161.670000px;}
.y3b{bottom:162.030000px;}
.yc3{bottom:164.280000px;}
.y5a{bottom:165.450000px;}
.yb8{bottom:165.787500px;}
.y184{bottom:166.155000px;}
.yed{bottom:166.162500px;}
.y1c4{bottom:166.200000px;}
.y13{bottom:172.530000px;}
.y59{bottom:176.325000px;}
.y3a{bottom:176.655000px;}
.y1f8{bottom:178.950000px;}
.yc2{bottom:182.280000px;}
.y183{bottom:184.155000px;}
.yb7{bottom:184.162500px;}
.y1c3{bottom:184.200000px;}
.y219{bottom:184.920000px;}
.y218{bottom:186.420000px;}
.yec{bottom:186.787500px;}
.y58{bottom:187.950000px;}
.y217{bottom:188.295000px;}
.y216{bottom:190.155000px;}
.y39{bottom:190.905000px;}
.y6a{bottom:190.950000px;}
.yc{bottom:192.030000px;}
.y215{bottom:192.045000px;}
.y1f7{bottom:192.450000px;}
.y214{bottom:193.905000px;}
.y213{bottom:195.795000px;}
.y212{bottom:197.280000px;}
.y211{bottom:199.170000px;}
.y12{bottom:200.280000px;}
.y210{bottom:201.030000px;}
.yb6{bottom:202.162500px;}
.y182{bottom:202.575000px;}
.y20f{bottom:202.920000px;}
.y20e{bottom:204.795000px;}
.y1c2{bottom:204.825000px;}
.y69{bottom:205.200000px;}
.y38{bottom:205.530000px;}
.y1f6{bottom:205.950000px;}
.y2e{bottom:206.655000px;}
.y20d{bottom:206.670000px;}
.y20c{bottom:208.200000px;}
.y20b{bottom:210.075000px;}
.y20a{bottom:211.950000px;}
.yeb{bottom:212.707500px;}
.y170{bottom:213.450000px;}
.y209{bottom:213.825000px;}
.y208{bottom:215.700000px;}
.y206{bottom:216.825000px;}
.y76{bottom:218.715000px;}
.y68{bottom:219.825000px;}
.yb5{bottom:220.162500px;}
.y37{bottom:220.185000px;}
.y1a7{bottom:220.192500px;}
.y148{bottom:220.537500px;}
.y181{bottom:220.575000px;}
.y11c{bottom:220.582500px;}
.yd{bottom:226.965000px;}
.y11{bottom:228.030000px;}
.y16e{bottom:228.075000px;}
.y1c1{bottom:228.450000px;}
.y1f5{bottom:233.325000px;}
.yea{bottom:233.692500px;}
.y36{bottom:234.435000px;}
.y67{bottom:234.450000px;}
.y1a6{bottom:238.207500px;}
.yb4{bottom:238.582500px;}
.y180{bottom:241.200000px;}
.y1c0{bottom:246.825000px;}
.y66{bottom:248.700000px;}
.y35{bottom:249.060000px;}
.ye9{bottom:254.317500px;}
.y204{bottom:254.700000px;}
.yb3{bottom:256.567500px;}
.y147{bottom:256.582500px;}
.y1f4{bottom:260.325000px;}
.y65{bottom:263.325000px;}
.y34{bottom:263.685000px;}
.y1bf{bottom:264.825000px;}
.y17f{bottom:267.450000px;}
.y169{bottom:268.192500px;}
.y1f3{bottom:274.200000px;}
.y146{bottom:274.567500px;}
.yb2{bottom:274.582500px;}
.ye8{bottom:275.332500px;}
.y11b{bottom:277.207500px;}
.y64{bottom:277.575000px;}
.y33{bottom:277.935000px;}
.y77{bottom:279.075000px;}
.y168{bottom:282.067500px;}
.y1be{bottom:282.825000px;}
.y1f2{bottom:287.745000px;}
.y63{bottom:292.245000px;}
.y32{bottom:292.560000px;}
.yb1{bottom:292.582500px;}
.y1d0{bottom:292.957500px;}
.y17e{bottom:293.325000px;}
.y61{bottom:293.700000px;}
.y1e1{bottom:294.825000px;}
.y145{bottom:295.207500px;}
.ye7{bottom:295.957500px;}
.y167{bottom:297.082500px;}
.y16d{bottom:300.450000px;}
.y1bd{bottom:301.230000px;}
.y1f1{bottom:301.245000px;}
.y11a{bottom:303.457500px;}
.y31{bottom:306.810000px;}
.y62{bottom:306.870000px;}
.yb0{bottom:310.957500px;}
.ye6{bottom:314.707500px;}
.y1f0{bottom:314.745000px;}
.y166{bottom:315.832500px;}
.y1bc{bottom:319.230000px;}
.y17d{bottom:319.575000px;}
.y144{bottom:321.457500px;}
.y119{bottom:327.082500px;}
.y165{bottom:328.207500px;}
.y1ef{bottom:328.245000px;}
.yaf{bottom:328.957500px;}
.y16a{bottom:330.075000px;}
.ye5{bottom:332.707500px;}
.y1bb{bottom:339.855000px;}
.y164{bottom:341.332500px;}
.y1ee{bottom:342.120000px;}
.y17c{bottom:343.230000px;}
.y118{bottom:345.112500px;}
.yae{bottom:346.957500px;}
.y1a5{bottom:346.987500px;}
.y143{bottom:347.707500px;}
.y1cf{bottom:348.082500px;}
.ye4{bottom:350.737500px;}
.y1ed{bottom:355.620000px;}
.y17b{bottom:361.230000px;}
.y117{bottom:363.112500px;}
.y1ba{bottom:363.480000px;}
.yad{bottom:364.987500px;}
.ye3{bottom:368.737500px;}
.y1ec{bottom:369.120000px;}
.y142{bottom:371.362500px;}
.y17a{bottom:379.605000px;}
.y1b9{bottom:381.480000px;}
.y116{bottom:381.487500px;}
.y1eb{bottom:382.620000px;}
.yac{bottom:383.362500px;}
.ye2{bottom:387.112500px;}
.y141{bottom:389.362500px;}
.y1ea{bottom:396.120000px;}
.y179{bottom:397.605000px;}
.y1b8{bottom:399.480000px;}
.y115{bottom:399.487500px;}
.yab{bottom:401.362500px;}
.ye1{bottom:405.112500px;}
.y140{bottom:407.362500px;}
.y1e9{bottom:409.995000px;}
.y178{bottom:415.605000px;}
.y114{bottom:417.487500px;}
.y1b7{bottom:417.900000px;}
.yaa{bottom:419.362500px;}
.ye0{bottom:423.112500px;}
.y1e8{bottom:423.525000px;}
.y13f{bottom:425.737500px;}
.y1b6{bottom:435.900000px;}
.y1e7{bottom:437.025000px;}
.ya9{bottom:437.737500px;}
.y113{bottom:438.112500px;}
.y53{bottom:439.245000px;}
.ydf{bottom:443.737500px;}
.y1e6{bottom:450.525000px;}
.y1b5{bottom:453.900000px;}
.ya8{bottom:455.737500px;}
.y1a4{bottom:456.862500px;}
.y163{bottom:460.275000px;}
.y13e{bottom:461.737500px;}
.y1e5{bottom:464.025000px;}
.y112{bottom:464.362500px;}
.yde{bottom:467.407500px;}
.y1cd{bottom:468.150000px;}
.ya7{bottom:473.782500px;}
.y1b4{bottom:474.525000px;}
.y1e4{bottom:477.900000px;}
.y13d{bottom:480.157500px;}
.y1cc{bottom:484.650000px;}
.ydd{bottom:485.782500px;}
.y111{bottom:488.032500px;}
.y162{bottom:489.525000px;}
.y1e3{bottom:491.400000px;}
.ya6{bottom:491.782500px;}
.y1e2{bottom:495.525000px;}
.y1b3{bottom:498.150000px;}
.y13c{bottom:498.157500px;}
.ydc{bottom:503.782500px;}
.y110{bottom:506.032500px;}
.ya5{bottom:510.157500px;}
.y1b2{bottom:516.150000px;}
.y13b{bottom:516.157500px;}
.y161{bottom:518.400000px;}
.ydb{bottom:521.782500px;}
.y1cb{bottom:522.150000px;}
.y10f{bottom:524.407500px;}
.ya4{bottom:528.157500px;}
.y160{bottom:532.650000px;}
.y13a{bottom:534.157500px;}
.y1b1{bottom:534.555000px;}
.yda{bottom:539.782500px;}
.y10e{bottom:542.407500px;}
.y1ab{bottom:546.150000px;}
.ya3{bottom:546.157500px;}
.y15f{bottom:547.275000px;}
.y139{bottom:552.532500px;}
.y1b0{bottom:552.555000px;}
.yd9{bottom:558.157500px;}
.y10d{bottom:560.407500px;}
.y15e{bottom:561.900000px;}
.ya2{bottom:564.532500px;}
.y138{bottom:570.532500px;}
.y1af{bottom:570.555000px;}
.y15c{bottom:576.150000px;}
.yd8{bottom:576.157500px;}
.y10c{bottom:578.407500px;}
.ya1{bottom:582.532500px;}
.y1a2{bottom:587.070000px;}
.y137{bottom:588.532500px;}
.y1ae{bottom:588.930000px;}
.y15a{bottom:590.820000px;}
.yd7{bottom:596.812500px;}
.ya0{bottom:600.562500px;}
.y1a1{bottom:603.195000px;}
.y136{bottom:606.562500px;}
.y1ad{bottom:606.930000px;}
.y5f{bottom:612.195000px;}
.y10b{bottom:614.812500px;}
.y9f{bottom:618.562500px;}
.y159{bottom:619.695000px;}
.yd6{bottom:620.437500px;}
.y30{bottom:621.945000px;}
.y1ac{bottom:624.930000px;}
.y135{bottom:624.937500px;}
.y10a{bottom:632.812500px;}
.y158{bottom:634.320000px;}
.y9e{bottom:636.937500px;}
.yd5{bottom:638.437500px;}
.y51{bottom:638.820000px;}
.y1a0{bottom:641.070000px;}
.y134{bottom:642.937500px;}
.y47{bottom:645.945000px;}
.y157{bottom:648.570000px;}
.y109{bottom:651.187500px;}
.y9d{bottom:654.937500px;}
.yd4{bottom:656.437500px;}
.y133{bottom:660.937500px;}
.y156{bottom:663.195000px;}
.y19d{bottom:665.070000px;}
.y108{bottom:669.187500px;}
.y9c{bottom:672.937500px;}
.yd3{bottom:674.812500px;}
.y153{bottom:677.820000px;}
.y132{bottom:681.562500px;}
.y107{bottom:687.187500px;}
.y9b{bottom:691.312500px;}
.yd2{bottom:692.812500px;}
.y14c{bottom:703.312500px;}
.y106{bottom:705.187500px;}
.y131{bottom:707.812500px;}
.y9a{bottom:709.312500px;}
.yd1{bottom:710.857500px;}
.y130{bottom:713.437500px;}
.y14b{bottom:717.187500px;}
.y152{bottom:721.350000px;}
.y2f{bottom:722.100000px;}
.y105{bottom:723.592500px;}
.y99{bottom:727.357500px;}
.yd0{bottom:729.217500px;}
.y151{bottom:735.600000px;}
.y104{bottom:741.592500px;}
.y98{bottom:745.342500px;}
.ycf{bottom:749.842500px;}
.y150{bottom:750.225000px;}
.y177{bottom:755.475000px;}
.yce{bottom:756.217500px;}
.y103{bottom:759.592500px;}
.y97{bottom:763.717500px;}
.y46{bottom:764.100000px;}
.y14f{bottom:764.475000px;}
.y1d{bottom:768.600000px;}
.y102{bottom:777.592500px;}
.y96{bottom:781.717500px;}
.y14d{bottom:794.475000px;}
.y101{bottom:795.967500px;}
.y1e0{bottom:797.475000px;}
.y95{bottom:799.717500px;}
.y19a{bottom:808.725000px;}
.y1de{bottom:813.600000px;}
.y100{bottom:813.967500px;}
.y94{bottom:818.092500px;}
.yff{bottom:831.967500px;}
.y93{bottom:836.092500px;}
.y129{bottom:836.880000px;}
.yfe{bottom:850.387500px;}
.y1dd{bottom:851.505000px;}
.y199{bottom:852.255000px;}
.y92{bottom:854.137500px;}
.y198{bottom:866.505000px;}
.yfd{bottom:868.387500px;}
.y91{bottom:872.137500px;}
.y1db{bottom:875.505000px;}
.y197{bottom:881.130000px;}
.yfc{bottom:886.387500px;}
.ycb{bottom:892.755000px;}
.yfb{bottom:904.387500px;}
.y90{bottom:908.512500px;}
.yca{bottom:909.255000px;}
.y196{bottom:910.005000px;}
.yfa{bottom:922.762500px;}
.y8f{bottom:926.512500px;}
.y1da{bottom:929.880000px;}
.y191{bottom:938.895000px;}
.yf9{bottom:940.762500px;}
.y1b{bottom:940.770000px;}
.y8e{bottom:944.512500px;}
.y1d8{bottom:946.020000px;}
.yc9{bottom:946.755000px;}
.y10{bottom:957.300000px;}
.yf8{bottom:958.762500px;}
.y8d{bottom:962.887500px;}
.yc1{bottom:970.800000px;}
.y128{bottom:971.550000px;}
.yf7{bottom:977.167500px;}
.y8c{bottom:980.917500px;}
.y1d7{bottom:983.925000px;}
.yf6{bottom:995.167500px;}
.y190{bottom:997.050000px;}
.y8b{bottom:998.917500px;}
.y1d5{bottom:1007.925000px;}
.y127{bottom:1009.050000px;}
.y18f{bottom:1011.675000px;}
.yf5{bottom:1013.167500px;}
.y8a{bottom:1017.292500px;}
.yf4{bottom:1031.167500px;}
.y120{bottom:1033.050000px;}
.y18e{bottom:1040.550000px;}
.yf3{bottom:1051.792500px;}
.y18b{bottom:1069.425000px;}
.y1d4{bottom:1080.330000px;}
.y1d3{bottom:1096.455000px;}
.y189{bottom:1098.330000px;}
.y1d2{bottom:1133.205000px;}
.y88{bottom:1141.830000px;}
.y1d1{bottom:1150.080000px;}
.ye{bottom:1151.580000px;}
.y86{bottom:1153.455000px;}
.y188{bottom:1156.455000px;}
.y84{bottom:1189.830000px;}
.y83{bottom:1208.625000px;}
.y1{bottom:1226.625000px;}
.y82{bottom:1227.375000px;}
.hd{height:3.999023px;}
.h34{height:4.166016px;}
.h1f{height:4.500000px;}
.h26{height:4.910156px;}
.h32{height:5.250000px;}
.h9{height:5.625000px;}
.h62{height:6.002930px;}
.h22{height:7.125000px;}
.h20{height:8.332031px;}
.h25{height:9.750000px;}
.h37{height:11.625000px;}
.ha{height:12.005859px;}
.h48{height:14.250000px;}
.h29{height:14.625000px;}
.h4c{height:14.662500px;}
.h57{height:16.125000px;}
.h3d{height:16.500000px;}
.h16{height:16.522500px;}
.h23{height:16.664062px;}
.h61{height:20.830078px;}
.h4b{height:28.875000px;}
.h54{height:28.912500px;}
.h49{height:29.250000px;}
.h6{height:31.912500px;}
.h38{height:31.916016px;}
.h4d{height:32.507812px;}
.h35{height:32.625000px;}
.h5d{height:32.647500px;}
.h5f{height:33.037500px;}
.h2e{height:33.750000px;}
.h5c{height:36.000000px;}
.h1b{height:36.017578px;}
.h46{height:36.826172px;}
.h63{height:37.875000px;}
.hb{height:38.250000px;}
.h33{height:38.625000px;}
.h1c{height:39.019043px;}
.h1a{height:39.281250px;}
.h2f{height:40.500000px;}
.h4e{height:41.405659px;}
.h5{height:41.660156px;}
.h4a{height:43.537500px;}
.h7{height:43.875000px;}
.h45{height:45.021973px;}
.h47{height:47.456852px;}
.h8{height:48.023438px;}
.h30{height:49.101562px;}
.h17{height:49.189453px;}
.h2b{height:49.500000px;}
.h18{height:49.804688px;}
.h2{height:49.992188px;}
.h51{height:50.620642px;}
.h2d{height:54.026367px;}
.h5e{height:54.375000px;}
.h10{height:55.537500px;}
.h50{height:57.787500px;}
.h53{height:58.125000px;}
.h55{height:58.147500px;}
.h4{height:60.029297px;}
.h59{height:60.079043px;}
.h2c{height:63.000000px;}
.h31{height:68.742188px;}
.h4f{height:72.375000px;}
.h2a{height:72.412500px;}
.h3c{height:78.562500px;}
.h3b{height:78.703125px;}
.h3f{height:79.687500px;}
.h3{height:80.287500px;}
.h13{height:84.667969px;}
.h11{height:89.648438px;}
.h56{height:90.397500px;}
.h42{height:96.046875px;}
.h36{height:98.378906px;}
.hc{height:108.000000px;}
.h21{height:118.162500px;}
.h43{height:134.662500px;}
.hf{height:136.962891px;}
.h15{height:137.730469px;}
.h41{height:153.030000px;}
.h19{height:172.155000px;}
.h14{height:194.280000px;}
.h24{height:199.575000px;}
.h3a{height:215.280000px;}
.h28{height:232.575000px;}
.h12{height:249.825000px;}
.h27{height:318.495000px;}
.h1e{height:318.825000px;}
.h5b{height:361.995000px;}
.h52{height:430.620000px;}
.h58{height:470.775000px;}
.h60{height:502.650000px;}
.h5a{height:639.930000px;}
.h44{height:728.475000px;}
.h1d{height:734.100000px;}
.h3e{height:770.100000px;}
.he{height:1015.095000px;}
.h39{height:1032.300000px;}
.h40{height:1072.425000px;}
.h0{height:1261.125000px;}
.h1{height:1261.500000px;}
.w22{width:16.500000px;}
.w7{width:17.662500px;}
.w1b{width:21.000000px;}
.wb{width:21.375000px;}
.w2d{width:55.162500px;}
.w5{width:57.000000px;}
.w6{width:60.750000px;}
.w19{width:61.500000px;}
.w2b{width:69.412500px;}
.w12{width:90.412500px;}
.w2c{width:94.162500px;}
.w2{width:94.537500px;}
.w14{width:95.287500px;}
.w16{width:95.662500px;}
.w1d{width:97.162500px;}
.w2a{width:100.162500px;}
.w27{width:108.450000px;}
.w10{width:109.537500px;}
.w9{width:109.575000px;}
.w15{width:115.162500px;}
.w13{width:118.537500px;}
.w11{width:118.575000px;}
.w29{width:124.162500px;}
.w26{width:124.537500px;}
.wf{width:137.287500px;}
.w2e{width:154.920000px;}
.w3{width:181.575000px;}
.w17{width:183.075000px;}
.w1e{width:184.575000px;}
.wa{width:234.075000px;}
.w28{width:240.825000px;}
.w24{width:278.370000px;}
.wd{width:343.650000px;}
.wc{width:359.025000px;}
.w1f{width:441.570000px;}
.w18{width:444.570000px;}
.w4{width:451.695000px;}
.w25{width:489.945000px;}
.w8{width:706.395000px;}
.we{width:724.050000px;}
.w1c{width:763.050000px;}
.w2f{width:763.425000px;}
.w21{width:763.800000px;}
.w23{width:768.300000px;}
.w1a{width:784.050000px;}
.w20{width:784.800000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3b{left:6.750000px;}
.x6{left:8.250000px;}
.x16{left:9.750000px;}
.x28{left:10.875000px;}
.x1a{left:12.735000px;}
.x2c{left:16.125000px;}
.xa{left:17.610000px;}
.x23{left:19.125000px;}
.x25{left:21.735000px;}
.x7{left:26.250000px;}
.x3a{left:31.125000px;}
.x3c{left:34.875000px;}
.xb{left:43.125000px;}
.x9{left:49.110000px;}
.x1{left:54.037487px;}
.x31{left:56.295000px;}
.x2d{left:61.162500px;}
.x39{left:63.420000px;}
.x2f{left:70.537500px;}
.x26{left:75.037500px;}
.x2{left:85.912500px;}
.x20{left:87.412500px;}
.x1f{left:95.287487px;}
.x13{left:105.037500px;}
.xe{left:107.332500px;}
.x1c{left:108.420000px;}
.x12{left:109.582500px;}
.xc{left:114.787500px;}
.xd{left:132.450000px;}
.x2e{left:142.162500px;}
.x3{left:148.575000px;}
.x21{left:149.700000px;}
.x2a{left:151.200000px;}
.x4{left:173.700000px;}
.x14{left:191.325000px;}
.xf{left:224.370000px;}
.x15{left:300.870000px;}
.x5{left:330.150000px;}
.x22{left:332.775000px;}
.x2b{left:335.775000px;}
.x3e{left:342.112500px;}
.x30{left:348.900000px;}
.x32{left:357.150000px;}
.x29{left:364.649987px;}
.x27{left:381.157500px;}
.x1e{left:389.399987px;}
.x3d{left:392.407500px;}
.x17{left:419.445000px;}
.x3f{left:443.062500px;}
.x1d{left:446.444987px;}
.x35{left:457.320000px;}
.x10{left:458.445000px;}
.x11{left:479.820000px;}
.x33{left:481.695000px;}
.x18{left:509.850000px;}
.x36{left:526.725000px;}
.x34{left:590.145000px;}
.x37{left:620.895000px;}
.x19{left:628.395000px;}
.x38{left:676.050000px;}
.x1b{left:723.675000px;}
.x24{left:777.345000px;}
.x8{left:781.845000px;}
@media print{
.v3{vertical-align:-64.000000pt;}
.v4{vertical-align:-18.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.666667pt;}
.v1{vertical-align:21.333333pt;}
.lsb{letter-spacing:-1.109333pt;}
.lse{letter-spacing:-0.874667pt;}
.ls1d{letter-spacing:-0.629333pt;}
.ls1c{letter-spacing:-0.520000pt;}
.ls4{letter-spacing:-0.506667pt;}
.ls16{letter-spacing:-0.458667pt;}
.lsa{letter-spacing:-0.437333pt;}
.ls11{letter-spacing:-0.261333pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.138667pt;}
.ls5{letter-spacing:-0.120000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.056000pt;}
.ls17{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.330667pt;}
.ls1{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.405333pt;}
.ls1e{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.458667pt;}
.ls0{letter-spacing:0.490667pt;}
.ls15{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.650667pt;}
.lsf{letter-spacing:0.693333pt;}
.ls21{letter-spacing:1.480000pt;}
.ls1b{letter-spacing:1.664000pt;}
.lsc{letter-spacing:26.666667pt;}
.ls20{letter-spacing:28.880000pt;}
.ls18{letter-spacing:35.840000pt;}
.ls19{letter-spacing:37.173333pt;}
.ls1f{letter-spacing:51.546667pt;}
.ls14{letter-spacing:59.840000pt;}
.wsb{word-spacing:-29.440000pt;}
.ws2{word-spacing:-27.968000pt;}
.ws14{word-spacing:-23.552000pt;}
.ws12{word-spacing:-16.906667pt;}
.ws11{word-spacing:-16.853333pt;}
.wsf{word-spacing:-16.693333pt;}
.ws13{word-spacing:-16.533333pt;}
.ws8{word-spacing:-15.482667pt;}
.ws6{word-spacing:-15.354667pt;}
.ws7{word-spacing:-15.024000pt;}
.ws9{word-spacing:-14.149333pt;}
.ws16{word-spacing:-14.076914pt;}
.ws1{word-spacing:-13.354667pt;}
.ws15{word-spacing:-13.177431pt;}
.ws17{word-spacing:-12.928000pt;}
.ws18{word-spacing:-12.520000pt;}
.ws5{word-spacing:-12.501333pt;}
.ws10{word-spacing:-12.042667pt;}
.ws0{word-spacing:-12.013333pt;}
.wsd{word-spacing:-10.906667pt;}
.wsc{word-spacing:-10.850667pt;}
.wse{word-spacing:-10.589333pt;}
.ws4{word-spacing:-10.016000pt;}
.ws3{word-spacing:-9.877333pt;}
.wsa{word-spacing:0.000000pt;}
._a{margin-left:-6.861333pt;}
._9{margin-left:-5.560000pt;}
._1a{margin-left:-4.386667pt;}
._19{margin-left:-3.333333pt;}
._f{margin-left:-2.034667pt;}
._0{margin-left:-1.120000pt;}
._1{width:1.240000pt;}
._2{width:2.493333pt;}
._b{width:3.629333pt;}
._11{width:5.128000pt;}
._13{width:6.112000pt;}
._12{width:7.138667pt;}
._e{width:8.392000pt;}
._18{width:9.509333pt;}
._17{width:10.869333pt;}
._20{width:12.245333pt;}
._1f{width:13.466667pt;}
._22{width:14.573333pt;}
._21{width:15.637333pt;}
._15{width:17.128000pt;}
._16{width:18.202667pt;}
._1d{width:19.808000pt;}
._d{width:20.938667pt;}
._10{width:22.373333pt;}
._24{width:23.658667pt;}
._1e{width:25.173333pt;}
._14{width:26.618667pt;}
._2d{width:28.048000pt;}
._23{width:29.933333pt;}
._1b{width:31.144000pt;}
._1c{width:32.469333pt;}
._5{width:35.088000pt;}
._6{width:36.205333pt;}
._c{width:37.144000pt;}
._2b{width:38.045333pt;}
._35{width:39.296000pt;}
._33{width:40.957333pt;}
._32{width:42.762667pt;}
._27{width:43.786667pt;}
._2f{width:45.280000pt;}
._2e{width:46.400000pt;}
._28{width:50.773333pt;}
._4{width:59.176000pt;}
._2c{width:60.277333pt;}
._39{width:68.208000pt;}
._3b{width:72.458667pt;}
._31{width:75.349333pt;}
._8{width:77.400000pt;}
._7{width:78.941333pt;}
._2a{width:82.026667pt;}
._29{width:82.936000pt;}
._3c{width:83.946667pt;}
._37{width:86.186667pt;}
._3d{width:89.410667pt;}
._3{width:95.744000pt;}
._34{width:112.125333pt;}
._30{width:121.941333pt;}
._3a{width:129.792000pt;}
._38{width:155.264000pt;}
._36{width:160.981333pt;}
._26{width:166.122667pt;}
._25{width:167.589333pt;}
.fs7{font-size:5.333333pt;}
.fs4{font-size:10.666667pt;}
.fse{font-size:21.333333pt;}
.fs15{font-size:26.666667pt;}
.fsc{font-size:32.000000pt;}
.fsd{font-size:34.666667pt;}
.fs6{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs13{font-size:42.163281pt;}
.fs3{font-size:42.666667pt;}
.fs14{font-size:44.974166pt;}
.fs10{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fsf{font-size:74.666667pt;}
.fs12{font-size:85.333333pt;}
.fsa{font-size:90.666667pt;}
.fs9{font-size:96.000000pt;}
.fs11{font-size:106.666667pt;}
.fs5{font-size:128.000000pt;}
.fs8{font-size:146.666667pt;}
.fsb{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y207{bottom:0.333333pt;}
.y52{bottom:1.333333pt;}
.y3{bottom:1.666667pt;}
.y2d{bottom:2.000000pt;}
.y195{bottom:2.320000pt;}
.y9{bottom:2.333333pt;}
.y7c{bottom:2.346667pt;}
.y16c{bottom:2.360000pt;}
.y7b{bottom:2.373333pt;}
.yc0{bottom:2.666667pt;}
.y1c{bottom:2.986667pt;}
.ycc{bottom:3.000000pt;}
.y19c{bottom:5.000000pt;}
.y19{bottom:5.333333pt;}
.y1d9{bottom:6.320000pt;}
.y87{bottom:6.333333pt;}
.y1df{bottom:6.666667pt;}
.y60{bottom:7.333333pt;}
.ya{bottom:7.666667pt;}
.y48{bottom:8.333333pt;}
.y4{bottom:10.000000pt;}
.y2c{bottom:12.333333pt;}
.y14e{bottom:12.666667pt;}
.y57{bottom:13.000000pt;}
.y15d{bottom:13.040000pt;}
.y203{bottom:14.000000pt;}
.y75{bottom:15.000000pt;}
.y174{bottom:15.013333pt;}
.y7a{bottom:15.040000pt;}
.y45{bottom:15.333333pt;}
.y18c{bottom:15.360000pt;}
.y16b{bottom:15.373333pt;}
.y6{bottom:16.033333pt;}
.y7e{bottom:16.673333pt;}
.y7f{bottom:17.340000pt;}
.y7{bottom:18.333333pt;}
.y85{bottom:18.666667pt;}
.y12e{bottom:18.680000pt;}
.yb{bottom:19.000000pt;}
.y2{bottom:20.333333pt;}
.y50{bottom:21.666667pt;}
.y2b{bottom:22.666667pt;}
.y205{bottom:25.333333pt;}
.y15b{bottom:25.666667pt;}
.y18d{bottom:25.693333pt;}
.y176{bottom:26.006667pt;}
.y202{bottom:26.333333pt;}
.y74{bottom:28.000000pt;}
.y154{bottom:28.026667pt;}
.y79{bottom:28.040000pt;}
.y44{bottom:28.333333pt;}
.y194{bottom:28.360000pt;}
.yf{bottom:29.000000pt;}
.y18{bottom:30.000000pt;}
.y56{bottom:31.026667pt;}
.y2a{bottom:32.333333pt;}
.ybf{bottom:34.666667pt;}
.y1aa{bottom:34.673333pt;}
.y11f{bottom:34.993333pt;}
.y126{bottom:35.000000pt;}
.yf1{bottom:35.006667pt;}
.y1ca{bottom:35.040000pt;}
.y4f{bottom:35.666667pt;}
.y80{bottom:35.673333pt;}
.y1dc{bottom:36.000000pt;}
.yc8{bottom:37.333333pt;}
.y19b{bottom:38.000000pt;}
.y201{bottom:38.373333pt;}
.y155{bottom:38.693333pt;}
.y73{bottom:40.693333pt;}
.y43{bottom:41.000000pt;}
.y172{bottom:41.013333pt;}
.y192{bottom:41.026667pt;}
.y78{bottom:41.040000pt;}
.y29{bottom:42.666667pt;}
.y4e{bottom:45.333333pt;}
.y55{bottom:46.360000pt;}
.y200{bottom:50.373333pt;}
.ybe{bottom:50.993333pt;}
.y1e{bottom:51.000000pt;}
.y11e{bottom:51.006667pt;}
.y19f{bottom:51.026667pt;}
.y1c9{bottom:51.040000pt;}
.y125{bottom:51.360000pt;}
.y173{bottom:51.373333pt;}
.y18a{bottom:51.666667pt;}
.y193{bottom:51.693333pt;}
.y1d6{bottom:52.000000pt;}
.y28{bottom:52.333333pt;}
.y16f{bottom:53.666667pt;}
.y72{bottom:53.706667pt;}
.y42{bottom:54.000000pt;}
.y8{bottom:54.333333pt;}
.y17{bottom:54.666667pt;}
.y4d{bottom:55.026667pt;}
.yc7{bottom:58.333333pt;}
.y54{bottom:58.693333pt;}
.y27{bottom:62.026667pt;}
.y1ff{bottom:62.373333pt;}
.y5{bottom:63.333333pt;}
.y4c{bottom:64.693333pt;}
.y41{bottom:66.666667pt;}
.y71{bottom:66.706667pt;}
.y14a{bottom:66.993333pt;}
.y12d{bottom:67.000000pt;}
.ybd{bottom:67.006667pt;}
.y19e{bottom:67.026667pt;}
.yf0{bottom:67.340000pt;}
.y124{bottom:67.360000pt;}
.y1c8{bottom:67.373333pt;}
.y26{bottom:71.693333pt;}
.yc6{bottom:74.333333pt;}
.y4b{bottom:74.360000pt;}
.y1fe{bottom:74.706667pt;}
.y16{bottom:79.333333pt;}
.y70{bottom:79.360000pt;}
.y40{bottom:79.693333pt;}
.y25{bottom:81.360000pt;}
.y12c{bottom:83.000000pt;}
.ybc{bottom:83.006667pt;}
.y1a9{bottom:83.033333pt;}
.y11d{bottom:83.326667pt;}
.y149{bottom:83.340000pt;}
.y123{bottom:83.360000pt;}
.yef{bottom:83.366667pt;}
.y1c7{bottom:83.373333pt;}
.y4a{bottom:84.026667pt;}
.y1fd{bottom:86.706667pt;}
.yc5{bottom:90.333333pt;}
.y24{bottom:91.026667pt;}
.y6f{bottom:92.373333pt;}
.y3f{bottom:92.693333pt;}
.y49{bottom:94.360000pt;}
.y1ce{bottom:94.366667pt;}
.y12f{bottom:96.366667pt;}
.y89{bottom:97.366667pt;}
.y1fc{bottom:98.706667pt;}
.y1a8{bottom:99.033333pt;}
.y122{bottom:99.360000pt;}
.ybb{bottom:99.366667pt;}
.y187{bottom:99.373333pt;}
.y23{bottom:100.693333pt;}
.yf2{bottom:101.033333pt;}
.y12b{bottom:101.333333pt;}
.y1a3{bottom:103.366667pt;}
.y15{bottom:104.000000pt;}
.y3e{bottom:105.360000pt;}
.y6e{bottom:105.373333pt;}
.y12a{bottom:106.373333pt;}
.y5e{bottom:108.360000pt;}
.yc4{bottom:108.693333pt;}
.ycd{bottom:109.033333pt;}
.y22{bottom:110.360000pt;}
.y1fb{bottom:110.706667pt;}
.y175{bottom:112.366667pt;}
.y81{bottom:113.366667pt;}
.yba{bottom:115.366667pt;}
.y186{bottom:115.693333pt;}
.y1c6{bottom:115.706667pt;}
.y121{bottom:117.693333pt;}
.y5d{bottom:118.026667pt;}
.y6d{bottom:118.040000pt;}
.y3d{bottom:118.360000pt;}
.y21{bottom:120.026667pt;}
.y1fa{bottom:122.706667pt;}
.y7d{bottom:126.700000pt;}
.y5c{bottom:127.733333pt;}
.y14{bottom:128.693333pt;}
.y20{bottom:129.693333pt;}
.y6c{bottom:131.040000pt;}
.y3c{bottom:131.360000pt;}
.yb9{bottom:131.366667pt;}
.y185{bottom:131.693333pt;}
.yee{bottom:131.700000pt;}
.y1c5{bottom:131.706667pt;}
.y1f9{bottom:135.040000pt;}
.y5b{bottom:137.400000pt;}
.y171{bottom:138.360000pt;}
.y1f{bottom:140.026667pt;}
.y1a{bottom:140.693333pt;}
.y6b{bottom:143.706667pt;}
.y3b{bottom:144.026667pt;}
.yc3{bottom:146.026667pt;}
.y5a{bottom:147.066667pt;}
.yb8{bottom:147.366667pt;}
.y184{bottom:147.693333pt;}
.yed{bottom:147.700000pt;}
.y1c4{bottom:147.733333pt;}
.y13{bottom:153.360000pt;}
.y59{bottom:156.733333pt;}
.y3a{bottom:157.026667pt;}
.y1f8{bottom:159.066667pt;}
.yc2{bottom:162.026667pt;}
.y183{bottom:163.693333pt;}
.yb7{bottom:163.700000pt;}
.y1c3{bottom:163.733333pt;}
.y219{bottom:164.373333pt;}
.y218{bottom:165.706667pt;}
.yec{bottom:166.033333pt;}
.y58{bottom:167.066667pt;}
.y217{bottom:167.373333pt;}
.y216{bottom:169.026667pt;}
.y39{bottom:169.693333pt;}
.y6a{bottom:169.733333pt;}
.yc{bottom:170.693333pt;}
.y215{bottom:170.706667pt;}
.y1f7{bottom:171.066667pt;}
.y214{bottom:172.360000pt;}
.y213{bottom:174.040000pt;}
.y212{bottom:175.360000pt;}
.y211{bottom:177.040000pt;}
.y12{bottom:178.026667pt;}
.y210{bottom:178.693333pt;}
.yb6{bottom:179.700000pt;}
.y182{bottom:180.066667pt;}
.y20f{bottom:180.373333pt;}
.y20e{bottom:182.040000pt;}
.y1c2{bottom:182.066667pt;}
.y69{bottom:182.400000pt;}
.y38{bottom:182.693333pt;}
.y1f6{bottom:183.066667pt;}
.y2e{bottom:183.693333pt;}
.y20d{bottom:183.706667pt;}
.y20c{bottom:185.066667pt;}
.y20b{bottom:186.733333pt;}
.y20a{bottom:188.400000pt;}
.yeb{bottom:189.073333pt;}
.y170{bottom:189.733333pt;}
.y209{bottom:190.066667pt;}
.y208{bottom:191.733333pt;}
.y206{bottom:192.733333pt;}
.y76{bottom:194.413333pt;}
.y68{bottom:195.400000pt;}
.yb5{bottom:195.700000pt;}
.y37{bottom:195.720000pt;}
.y1a7{bottom:195.726667pt;}
.y148{bottom:196.033333pt;}
.y181{bottom:196.066667pt;}
.y11c{bottom:196.073333pt;}
.yd{bottom:201.746667pt;}
.y11{bottom:202.693333pt;}
.y16e{bottom:202.733333pt;}
.y1c1{bottom:203.066667pt;}
.y1f5{bottom:207.400000pt;}
.yea{bottom:207.726667pt;}
.y36{bottom:208.386667pt;}
.y67{bottom:208.400000pt;}
.y1a6{bottom:211.740000pt;}
.yb4{bottom:212.073333pt;}
.y180{bottom:214.400000pt;}
.y1c0{bottom:219.400000pt;}
.y66{bottom:221.066667pt;}
.y35{bottom:221.386667pt;}
.ye9{bottom:226.060000pt;}
.y204{bottom:226.400000pt;}
.yb3{bottom:228.060000pt;}
.y147{bottom:228.073333pt;}
.y1f4{bottom:231.400000pt;}
.y65{bottom:234.066667pt;}
.y34{bottom:234.386667pt;}
.y1bf{bottom:235.400000pt;}
.y17f{bottom:237.733333pt;}
.y169{bottom:238.393333pt;}
.y1f3{bottom:243.733333pt;}
.y146{bottom:244.060000pt;}
.yb2{bottom:244.073333pt;}
.ye8{bottom:244.740000pt;}
.y11b{bottom:246.406667pt;}
.y64{bottom:246.733333pt;}
.y33{bottom:247.053333pt;}
.y77{bottom:248.066667pt;}
.y168{bottom:250.726667pt;}
.y1be{bottom:251.400000pt;}
.y1f2{bottom:255.773333pt;}
.y63{bottom:259.773333pt;}
.y32{bottom:260.053333pt;}
.yb1{bottom:260.073333pt;}
.y1d0{bottom:260.406667pt;}
.y17e{bottom:260.733333pt;}
.y61{bottom:261.066667pt;}
.y1e1{bottom:262.066667pt;}
.y145{bottom:262.406667pt;}
.ye7{bottom:263.073333pt;}
.y167{bottom:264.073333pt;}
.y16d{bottom:267.066667pt;}
.y1bd{bottom:267.760000pt;}
.y1f1{bottom:267.773333pt;}
.y11a{bottom:269.740000pt;}
.y31{bottom:272.720000pt;}
.y62{bottom:272.773333pt;}
.yb0{bottom:276.406667pt;}
.ye6{bottom:279.740000pt;}
.y1f0{bottom:279.773333pt;}
.y166{bottom:280.740000pt;}
.y1bc{bottom:283.760000pt;}
.y17d{bottom:284.066667pt;}
.y144{bottom:285.740000pt;}
.y119{bottom:290.740000pt;}
.y165{bottom:291.740000pt;}
.y1ef{bottom:291.773333pt;}
.yaf{bottom:292.406667pt;}
.y16a{bottom:293.400000pt;}
.ye5{bottom:295.740000pt;}
.y1bb{bottom:302.093333pt;}
.y164{bottom:303.406667pt;}
.y1ee{bottom:304.106667pt;}
.y17c{bottom:305.093333pt;}
.y118{bottom:306.766667pt;}
.yae{bottom:308.406667pt;}
.y1a5{bottom:308.433333pt;}
.y143{bottom:309.073333pt;}
.y1cf{bottom:309.406667pt;}
.ye4{bottom:311.766667pt;}
.y1ed{bottom:316.106667pt;}
.y17b{bottom:321.093333pt;}
.y117{bottom:322.766667pt;}
.y1ba{bottom:323.093333pt;}
.yad{bottom:324.433333pt;}
.ye3{bottom:327.766667pt;}
.y1ec{bottom:328.106667pt;}
.y142{bottom:330.100000pt;}
.y17a{bottom:337.426667pt;}
.y1b9{bottom:339.093333pt;}
.y116{bottom:339.100000pt;}
.y1eb{bottom:340.106667pt;}
.yac{bottom:340.766667pt;}
.ye2{bottom:344.100000pt;}
.y141{bottom:346.100000pt;}
.y1ea{bottom:352.106667pt;}
.y179{bottom:353.426667pt;}
.y1b8{bottom:355.093333pt;}
.y115{bottom:355.100000pt;}
.yab{bottom:356.766667pt;}
.ye1{bottom:360.100000pt;}
.y140{bottom:362.100000pt;}
.y1e9{bottom:364.440000pt;}
.y178{bottom:369.426667pt;}
.y114{bottom:371.100000pt;}
.y1b7{bottom:371.466667pt;}
.yaa{bottom:372.766667pt;}
.ye0{bottom:376.100000pt;}
.y1e8{bottom:376.466667pt;}
.y13f{bottom:378.433333pt;}
.y1b6{bottom:387.466667pt;}
.y1e7{bottom:388.466667pt;}
.ya9{bottom:389.100000pt;}
.y113{bottom:389.433333pt;}
.y53{bottom:390.440000pt;}
.ydf{bottom:394.433333pt;}
.y1e6{bottom:400.466667pt;}
.y1b5{bottom:403.466667pt;}
.ya8{bottom:405.100000pt;}
.y1a4{bottom:406.100000pt;}
.y163{bottom:409.133333pt;}
.y13e{bottom:410.433333pt;}
.y1e5{bottom:412.466667pt;}
.y112{bottom:412.766667pt;}
.yde{bottom:415.473333pt;}
.y1cd{bottom:416.133333pt;}
.ya7{bottom:421.140000pt;}
.y1b4{bottom:421.800000pt;}
.y1e4{bottom:424.800000pt;}
.y13d{bottom:426.806667pt;}
.y1cc{bottom:430.800000pt;}
.ydd{bottom:431.806667pt;}
.y111{bottom:433.806667pt;}
.y162{bottom:435.133333pt;}
.y1e3{bottom:436.800000pt;}
.ya6{bottom:437.140000pt;}
.y1e2{bottom:440.466667pt;}
.y1b3{bottom:442.800000pt;}
.y13c{bottom:442.806667pt;}
.ydc{bottom:447.806667pt;}
.y110{bottom:449.806667pt;}
.ya5{bottom:453.473333pt;}
.y1b2{bottom:458.800000pt;}
.y13b{bottom:458.806667pt;}
.y161{bottom:460.800000pt;}
.ydb{bottom:463.806667pt;}
.y1cb{bottom:464.133333pt;}
.y10f{bottom:466.140000pt;}
.ya4{bottom:469.473333pt;}
.y160{bottom:473.466667pt;}
.y13a{bottom:474.806667pt;}
.y1b1{bottom:475.160000pt;}
.yda{bottom:479.806667pt;}
.y10e{bottom:482.140000pt;}
.y1ab{bottom:485.466667pt;}
.ya3{bottom:485.473333pt;}
.y15f{bottom:486.466667pt;}
.y139{bottom:491.140000pt;}
.y1b0{bottom:491.160000pt;}
.yd9{bottom:496.140000pt;}
.y10d{bottom:498.140000pt;}
.y15e{bottom:499.466667pt;}
.ya2{bottom:501.806667pt;}
.y138{bottom:507.140000pt;}
.y1af{bottom:507.160000pt;}
.y15c{bottom:512.133333pt;}
.yd8{bottom:512.140000pt;}
.y10c{bottom:514.140000pt;}
.ya1{bottom:517.806667pt;}
.y1a2{bottom:521.840000pt;}
.y137{bottom:523.140000pt;}
.y1ae{bottom:523.493333pt;}
.y15a{bottom:525.173333pt;}
.yd7{bottom:530.500000pt;}
.ya0{bottom:533.833333pt;}
.y1a1{bottom:536.173333pt;}
.y136{bottom:539.166667pt;}
.y1ad{bottom:539.493333pt;}
.y5f{bottom:544.173333pt;}
.y10b{bottom:546.500000pt;}
.y9f{bottom:549.833333pt;}
.y159{bottom:550.840000pt;}
.yd6{bottom:551.500000pt;}
.y30{bottom:552.840000pt;}
.y1ac{bottom:555.493333pt;}
.y135{bottom:555.500000pt;}
.y10a{bottom:562.500000pt;}
.y158{bottom:563.840000pt;}
.y9e{bottom:566.166667pt;}
.yd5{bottom:567.500000pt;}
.y51{bottom:567.840000pt;}
.y1a0{bottom:569.840000pt;}
.y134{bottom:571.500000pt;}
.y47{bottom:574.173333pt;}
.y157{bottom:576.506667pt;}
.y109{bottom:578.833333pt;}
.y9d{bottom:582.166667pt;}
.yd4{bottom:583.500000pt;}
.y133{bottom:587.500000pt;}
.y156{bottom:589.506667pt;}
.y19d{bottom:591.173333pt;}
.y108{bottom:594.833333pt;}
.y9c{bottom:598.166667pt;}
.yd3{bottom:599.833333pt;}
.y153{bottom:602.506667pt;}
.y132{bottom:605.833333pt;}
.y107{bottom:610.833333pt;}
.y9b{bottom:614.500000pt;}
.yd2{bottom:615.833333pt;}
.y14c{bottom:625.166667pt;}
.y106{bottom:626.833333pt;}
.y131{bottom:629.166667pt;}
.y9a{bottom:630.500000pt;}
.yd1{bottom:631.873333pt;}
.y130{bottom:634.166667pt;}
.y14b{bottom:637.500000pt;}
.y152{bottom:641.200000pt;}
.y2f{bottom:641.866667pt;}
.y105{bottom:643.193333pt;}
.y99{bottom:646.540000pt;}
.yd0{bottom:648.193333pt;}
.y151{bottom:653.866667pt;}
.y104{bottom:659.193333pt;}
.y98{bottom:662.526667pt;}
.ycf{bottom:666.526667pt;}
.y150{bottom:666.866667pt;}
.y177{bottom:671.533333pt;}
.yce{bottom:672.193333pt;}
.y103{bottom:675.193333pt;}
.y97{bottom:678.860000pt;}
.y46{bottom:679.200000pt;}
.y14f{bottom:679.533333pt;}
.y1d{bottom:683.200000pt;}
.y102{bottom:691.193333pt;}
.y96{bottom:694.860000pt;}
.y14d{bottom:706.200000pt;}
.y101{bottom:707.526667pt;}
.y1e0{bottom:708.866667pt;}
.y95{bottom:710.860000pt;}
.y19a{bottom:718.866667pt;}
.y1de{bottom:723.200000pt;}
.y100{bottom:723.526667pt;}
.y94{bottom:727.193333pt;}
.yff{bottom:739.526667pt;}
.y93{bottom:743.193333pt;}
.y129{bottom:743.893333pt;}
.yfe{bottom:755.900000pt;}
.y1dd{bottom:756.893333pt;}
.y199{bottom:757.560000pt;}
.y92{bottom:759.233333pt;}
.y198{bottom:770.226667pt;}
.yfd{bottom:771.900000pt;}
.y91{bottom:775.233333pt;}
.y1db{bottom:778.226667pt;}
.y197{bottom:783.226667pt;}
.yfc{bottom:787.900000pt;}
.ycb{bottom:793.560000pt;}
.yfb{bottom:803.900000pt;}
.y90{bottom:807.566667pt;}
.yca{bottom:808.226667pt;}
.y196{bottom:808.893333pt;}
.yfa{bottom:820.233333pt;}
.y8f{bottom:823.566667pt;}
.y1da{bottom:826.560000pt;}
.y191{bottom:834.573333pt;}
.yf9{bottom:836.233333pt;}
.y1b{bottom:836.240000pt;}
.y8e{bottom:839.566667pt;}
.y1d8{bottom:840.906667pt;}
.yc9{bottom:841.560000pt;}
.y10{bottom:850.933333pt;}
.yf8{bottom:852.233333pt;}
.y8d{bottom:855.900000pt;}
.yc1{bottom:862.933333pt;}
.y128{bottom:863.600000pt;}
.yf7{bottom:868.593333pt;}
.y8c{bottom:871.926667pt;}
.y1d7{bottom:874.600000pt;}
.yf6{bottom:884.593333pt;}
.y190{bottom:886.266667pt;}
.y8b{bottom:887.926667pt;}
.y1d5{bottom:895.933333pt;}
.y127{bottom:896.933333pt;}
.y18f{bottom:899.266667pt;}
.yf5{bottom:900.593333pt;}
.y8a{bottom:904.260000pt;}
.yf4{bottom:916.593333pt;}
.y120{bottom:918.266667pt;}
.y18e{bottom:924.933333pt;}
.yf3{bottom:934.926667pt;}
.y18b{bottom:950.600000pt;}
.y1d4{bottom:960.293333pt;}
.y1d3{bottom:974.626667pt;}
.y189{bottom:976.293333pt;}
.y1d2{bottom:1007.293333pt;}
.y88{bottom:1014.960000pt;}
.y1d1{bottom:1022.293333pt;}
.ye{bottom:1023.626667pt;}
.y86{bottom:1025.293333pt;}
.y188{bottom:1027.960000pt;}
.y84{bottom:1057.626667pt;}
.y83{bottom:1074.333333pt;}
.y1{bottom:1090.333333pt;}
.y82{bottom:1091.000000pt;}
.hd{height:3.554688pt;}
.h34{height:3.703125pt;}
.h1f{height:4.000000pt;}
.h26{height:4.364583pt;}
.h32{height:4.666667pt;}
.h9{height:5.000000pt;}
.h62{height:5.335938pt;}
.h22{height:6.333333pt;}
.h20{height:7.406250pt;}
.h25{height:8.666667pt;}
.h37{height:10.333333pt;}
.ha{height:10.671875pt;}
.h48{height:12.666667pt;}
.h29{height:13.000000pt;}
.h4c{height:13.033333pt;}
.h57{height:14.333333pt;}
.h3d{height:14.666667pt;}
.h16{height:14.686667pt;}
.h23{height:14.812500pt;}
.h61{height:18.515625pt;}
.h4b{height:25.666667pt;}
.h54{height:25.700000pt;}
.h49{height:26.000000pt;}
.h6{height:28.366667pt;}
.h38{height:28.369792pt;}
.h4d{height:28.895833pt;}
.h35{height:29.000000pt;}
.h5d{height:29.020000pt;}
.h5f{height:29.366667pt;}
.h2e{height:30.000000pt;}
.h5c{height:32.000000pt;}
.h1b{height:32.015625pt;}
.h46{height:32.734375pt;}
.h63{height:33.666667pt;}
.hb{height:34.000000pt;}
.h33{height:34.333333pt;}
.h1c{height:34.683594pt;}
.h1a{height:34.916667pt;}
.h2f{height:36.000000pt;}
.h4e{height:36.805030pt;}
.h5{height:37.031250pt;}
.h4a{height:38.700000pt;}
.h7{height:39.000000pt;}
.h45{height:40.019531pt;}
.h47{height:42.183868pt;}
.h8{height:42.687500pt;}
.h30{height:43.645833pt;}
.h17{height:43.723958pt;}
.h2b{height:44.000000pt;}
.h18{height:44.270833pt;}
.h2{height:44.437500pt;}
.h51{height:44.996126pt;}
.h2d{height:48.023438pt;}
.h5e{height:48.333333pt;}
.h10{height:49.366667pt;}
.h50{height:51.366667pt;}
.h53{height:51.666667pt;}
.h55{height:51.686667pt;}
.h4{height:53.359375pt;}
.h59{height:53.403594pt;}
.h2c{height:56.000000pt;}
.h31{height:61.104167pt;}
.h4f{height:64.333333pt;}
.h2a{height:64.366667pt;}
.h3c{height:69.833333pt;}
.h3b{height:69.958333pt;}
.h3f{height:70.833333pt;}
.h3{height:71.366667pt;}
.h13{height:75.260417pt;}
.h11{height:79.687500pt;}
.h56{height:80.353333pt;}
.h42{height:85.375000pt;}
.h36{height:87.447917pt;}
.hc{height:96.000000pt;}
.h21{height:105.033333pt;}
.h43{height:119.700000pt;}
.hf{height:121.744792pt;}
.h15{height:122.427083pt;}
.h41{height:136.026667pt;}
.h19{height:153.026667pt;}
.h14{height:172.693333pt;}
.h24{height:177.400000pt;}
.h3a{height:191.360000pt;}
.h28{height:206.733333pt;}
.h12{height:222.066667pt;}
.h27{height:283.106667pt;}
.h1e{height:283.400000pt;}
.h5b{height:321.773333pt;}
.h52{height:382.773333pt;}
.h58{height:418.466667pt;}
.h60{height:446.800000pt;}
.h5a{height:568.826667pt;}
.h44{height:647.533333pt;}
.h1d{height:652.533333pt;}
.h3e{height:684.533333pt;}
.he{height:902.306667pt;}
.h39{height:917.600000pt;}
.h40{height:953.266667pt;}
.h0{height:1121.000000pt;}
.h1{height:1121.333333pt;}
.w22{width:14.666667pt;}
.w7{width:15.700000pt;}
.w1b{width:18.666667pt;}
.wb{width:19.000000pt;}
.w2d{width:49.033333pt;}
.w5{width:50.666667pt;}
.w6{width:54.000000pt;}
.w19{width:54.666667pt;}
.w2b{width:61.700000pt;}
.w12{width:80.366667pt;}
.w2c{width:83.700000pt;}
.w2{width:84.033333pt;}
.w14{width:84.700000pt;}
.w16{width:85.033333pt;}
.w1d{width:86.366667pt;}
.w2a{width:89.033333pt;}
.w27{width:96.400000pt;}
.w10{width:97.366667pt;}
.w9{width:97.400000pt;}
.w15{width:102.366667pt;}
.w13{width:105.366667pt;}
.w11{width:105.400000pt;}
.w29{width:110.366667pt;}
.w26{width:110.700000pt;}
.wf{width:122.033333pt;}
.w2e{width:137.706667pt;}
.w3{width:161.400000pt;}
.w17{width:162.733333pt;}
.w1e{width:164.066667pt;}
.wa{width:208.066667pt;}
.w28{width:214.066667pt;}
.w24{width:247.440000pt;}
.wd{width:305.466667pt;}
.wc{width:319.133333pt;}
.w1f{width:392.506667pt;}
.w18{width:395.173333pt;}
.w4{width:401.506667pt;}
.w25{width:435.506667pt;}
.w8{width:627.906667pt;}
.we{width:643.600000pt;}
.w1c{width:678.266667pt;}
.w2f{width:678.600000pt;}
.w21{width:678.933333pt;}
.w23{width:682.933333pt;}
.w1a{width:696.933333pt;}
.w20{width:697.600000pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3b{left:6.000000pt;}
.x6{left:7.333333pt;}
.x16{left:8.666667pt;}
.x28{left:9.666667pt;}
.x1a{left:11.320000pt;}
.x2c{left:14.333333pt;}
.xa{left:15.653333pt;}
.x23{left:17.000000pt;}
.x25{left:19.320000pt;}
.x7{left:23.333333pt;}
.x3a{left:27.666667pt;}
.x3c{left:31.000000pt;}
.xb{left:38.333333pt;}
.x9{left:43.653333pt;}
.x1{left:48.033322pt;}
.x31{left:50.040000pt;}
.x2d{left:54.366667pt;}
.x39{left:56.373333pt;}
.x2f{left:62.700000pt;}
.x26{left:66.700000pt;}
.x2{left:76.366667pt;}
.x20{left:77.700000pt;}
.x1f{left:84.699988pt;}
.x13{left:93.366667pt;}
.xe{left:95.406667pt;}
.x1c{left:96.373333pt;}
.x12{left:97.406667pt;}
.xc{left:102.033333pt;}
.xd{left:117.733333pt;}
.x2e{left:126.366667pt;}
.x3{left:132.066667pt;}
.x21{left:133.066667pt;}
.x2a{left:134.400000pt;}
.x4{left:154.400000pt;}
.x14{left:170.066667pt;}
.xf{left:199.440000pt;}
.x15{left:267.440000pt;}
.x5{left:293.466667pt;}
.x22{left:295.800000pt;}
.x2b{left:298.466667pt;}
.x3e{left:304.100000pt;}
.x30{left:310.133333pt;}
.x32{left:317.466667pt;}
.x29{left:324.133322pt;}
.x27{left:338.806667pt;}
.x1e{left:346.133322pt;}
.x3d{left:348.806667pt;}
.x17{left:372.840000pt;}
.x3f{left:393.833333pt;}
.x1d{left:396.839988pt;}
.x35{left:406.506667pt;}
.x10{left:407.506667pt;}
.x11{left:426.506667pt;}
.x33{left:428.173333pt;}
.x18{left:453.200000pt;}
.x36{left:468.200000pt;}
.x34{left:524.573333pt;}
.x37{left:551.906667pt;}
.x19{left:558.573333pt;}
.x38{left:600.933333pt;}
.x1b{left:643.266667pt;}
.x24{left:690.973333pt;}
.x8{left:694.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; }
  