
    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_d5d7f97ab72635abd0737822.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_4587d6e5d37219d7a77e9498.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922363;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_1f199d5e7271408af1fe7be2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918213;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_b42c67e63ed8369eea7085ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_6f8323a92077b0509e3f4d79.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752930;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_1240952fd2d8d7020f3f53c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8e684443a2e7aebb3d0afa04.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_28677f7cf8d018cca14a706f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fb8a06bdf1e1830199bc3e98.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c6350585459df1da31c31169.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_fdcad1c51f53a05845d1fd6d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_52184e0424b5d7d8ae31ae23.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v1{vertical-align:-109.453680px;}
.v2{vertical-align:-76.971600px;}
.v3{vertical-align:-69.859440px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-2.160000px;}
.ls5{letter-spacing:-2.016000px;}
.ls17{letter-spacing:-1.656000px;}
.lsf{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-1.224000px;}
.ls4{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.792000px;}
.ls7{letter-spacing:0.900000px;}
.lse{letter-spacing:2.340000px;}
.lsc{letter-spacing:10.944000px;}
.ls0{letter-spacing:1843.200000px;}
.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;}
}
.ws12{word-spacing:-18.792000px;}
.wse{word-spacing:-18.216000px;}
.wsf{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws11{word-spacing:-16.344000px;}
.ws6{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.616000px;}
.ws9{word-spacing:-14.479800px;}
.ws1{word-spacing:-13.824000px;}
.wsd{word-spacing:-12.096000px;}
.wsc{word-spacing:-12.060000px;}
.ws4{word-spacing:-0.792000px;}
.ws3{word-spacing:-0.216000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-28.071360px;}
._1{margin-left:-13.625280px;}
._3{margin-left:-4.608000px;}
._d{margin-left:-3.574800px;}
._c{margin-left:-2.214720px;}
._2{margin-left:-1.008000px;}
._4{width:1.080000px;}
._5{width:2.305920px;}
._b{width:3.984720px;}
._f{width:5.273760px;}
._12{width:6.286800px;}
._e{width:7.327440px;}
._a{width:8.473680px;}
._9{width:9.501840px;}
._7{width:11.276640px;}
._6{width:12.609120px;}
._8{width:13.908240px;}
._17{width:14.975760px;}
._16{width:16.128000px;}
._18{width:19.584000px;}
._14{width:21.168000px;}
._15{width:22.248000px;}
._10{width:23.844240px;}
._11{width:25.465440px;}
._19{width:26.506320px;}
._1c{width:27.973680px;}
._1e{width:29.796000px;}
._1d{width:30.864000px;}
._1a{width:34.896000px;}
._1b{width:36.696000px;}
._2f{width:38.376000px;}
._30{width:39.438720px;}
._31{width:40.452000px;}
._29{width:47.160000px;}
._2a{width:48.168000px;}
._28{width:88.452000px;}
._2c{width:138.096000px;}
._1f{width:163.944000px;}
._20{width:167.904000px;}
._21{width:168.912000px;}
._2d{width:182.700000px;}
._22{width:193.284000px;}
._23{width:194.292000px;}
._26{width:205.488000px;}
._27{width:206.568000px;}
._24{width:212.688000px;}
._25{width:213.696000px;}
._2b{width:228.024000px;}
._2e{width:846.192000px;}
._13{width:847.884000px;}
.fc9{color:rgb(112,173,71);}
.fca{color:rgb(37,94,145);}
.fc7{color:rgb(255,192,0);}
.fc8{color:rgb(68,114,196);}
.fc4{color:rgb(91,155,213);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc6{color:rgb(165,165,165);}
.fc5{color:rgb(237,125,49);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:23.760000px;}
.fs3{font-size:30.240000px;}
.fsc{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fsd{font-size:48.384000px;}
.fs1{font-size:59.760000px;}
.fsb{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs6{font-size:120.240000px;}
.fs0{font-size:123.120000px;}
.fs4{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y186{bottom:3.240000px;}
.y16a{bottom:3.420000px;}
.y16f{bottom:3.960000px;}
.y171{bottom:4.140000px;}
.y11f{bottom:4.320000px;}
.y10d{bottom:4.500000px;}
.y112{bottom:4.680000px;}
.y12b{bottom:4.710000px;}
.y10f{bottom:4.860000px;}
.y13a{bottom:4.905000px;}
.ye7{bottom:5.400000px;}
.yee{bottom:5.580000px;}
.ye9{bottom:5.760000px;}
.y38{bottom:6.480000px;}
.y22a{bottom:7.740000px;}
.y225{bottom:7.920000px;}
.y15c{bottom:8.925000px;}
.y223{bottom:9.540000px;}
.y3a{bottom:10.800000px;}
.y184{bottom:11.880000px;}
.y16b{bottom:12.060000px;}
.y16d{bottom:12.420000px;}
.y15e{bottom:13.470000px;}
.y231{bottom:16.380000px;}
.y21f{bottom:18.180000px;}
.y185{bottom:20.520000px;}
.y169{bottom:20.700000px;}
.y15b{bottom:22.785000px;}
.y232{bottom:25.020000px;}
.y222{bottom:26.820000px;}
.y15d{bottom:27.330000px;}
.y21d{bottom:35.460000px;}
.y15a{bottom:36.645000px;}
.y177{bottom:37.980000px;}
.y6b{bottom:41.796000px;}
.y37{bottom:42.696000px;}
.y221{bottom:44.100000px;}
.y36{bottom:46.116000px;}
.y21e{bottom:52.740000px;}
.y6c{bottom:61.056000px;}
.y220{bottom:61.380000px;}
.y39{bottom:61.416000px;}
.y161{bottom:76.965000px;}
.y160{bottom:90.870000px;}
.y15f{bottom:104.730000px;}
.ya9{bottom:109.836000px;}
.y34{bottom:112.536000px;}
.y156{bottom:112.896000px;}
.y1db{bottom:113.436000px;}
.y212{bottom:115.056000px;}
.yf0{bottom:117.936000px;}
.y19e{bottom:119.556000px;}
.ya{bottom:122.940000px;}
.yd0{bottom:124.236000px;}
.y142{bottom:125.316000px;}
.ya8{bottom:127.116000px;}
.y10b{bottom:127.836000px;}
.y33{bottom:131.436000px;}
.y1ab{bottom:133.236000px;}
.y155{bottom:133.596000px;}
.y1da{bottom:134.136000px;}
.yef{bottom:136.836000px;}
.y19d{bottom:142.776000px;}
.y141{bottom:144.036000px;}
.ya7{bottom:144.396000px;}
.ycf{bottom:144.936000px;}
.y32{bottom:147.456000px;}
.y10a{bottom:148.536000px;}
.ya6{bottom:149.616000px;}
.y1aa{bottom:153.930000px;}
.y154{bottom:154.290000px;}
.y1d9{bottom:154.830000px;}
.yed{bottom:158.790000px;}
.y6a{bottom:161.310000px;}
.ya5{bottom:161.670000px;}
.y140{bottom:163.110000px;}
.y163{bottom:164.805000px;}
.yce{bottom:165.630000px;}
.y9{bottom:168.300000px;}
.y109{bottom:169.230000px;}
.y1e9{bottom:171.930000px;}
.y153{bottom:174.990000px;}
.y211{bottom:175.530000px;}
.y1ff{bottom:177.330000px;}
.y69{bottom:178.590000px;}
.y162{bottom:178.665000px;}
.ya4{bottom:178.950000px;}
.y19c{bottom:180.030000px;}
.yec{bottom:180.750000px;}
.y13f{bottom:182.190000px;}
.y1a9{bottom:183.270000px;}
.y1d8{bottom:184.530000px;}
.y31{bottom:189.750000px;}
.y108{bottom:189.930000px;}
.y1e8{bottom:192.630000px;}
.ycd{bottom:194.970000px;}
.y20b{bottom:195.330000px;}
.y68{bottom:195.690000px;}
.ya3{bottom:196.230000px;}
.y1fe{bottom:198.030000px;}
.y13e{bottom:201.270000px;}
.yeb{bottom:202.710000px;}
.y1a8{bottom:203.970000px;}
.y152{bottom:204.330000px;}
.y1d7{bottom:205.230000px;}
.y159{bottom:205.590000px;}
.y8{bottom:208.800000px;}
.y107{bottom:210.630000px;}
.ya2{bottom:213.330000px;}
.y19b{bottom:215.310000px;}
.y20a{bottom:216.030000px;}
.y30{bottom:218.010000px;}
.ya1{bottom:218.550000px;}
.y1fd{bottom:218.730000px;}
.y158{bottom:219.450000px;}
.y13d{bottom:220.350000px;}
.y67{bottom:221.970000px;}
.y1e7{bottom:222.330000px;}
.yea{bottom:224.670000px;}
.ycc{bottom:225.030000px;}
.y1d6{bottom:225.930000px;}
.y165{bottom:229.140000px;}
.ya0{bottom:230.610000px;}
.y106{bottom:231.330000px;}
.y19a{bottom:233.850000px;}
.y1a7{bottom:234.030000px;}
.y151{bottom:234.390000px;}
.y13c{bottom:239.430000px;}
.y2f{bottom:240.690000px;}
.y164{bottom:243.000000px;}
.y1b3{bottom:243.030000px;}
.y167{bottom:245.415000px;}
.y209{bottom:245.730000px;}
.ye8{bottom:246.630000px;}
.y66{bottom:248.250000px;}
.y1fc{bottom:248.430000px;}
.y105{bottom:252.030000px;}
.y199{bottom:252.390000px;}
.ycb{bottom:254.370000px;}
.y13b{bottom:258.330000px;}
.y166{bottom:259.275000px;}
.y1be{bottom:261.030000px;}
.y2e{bottom:263.550000px;}
.y1a6{bottom:263.730000px;}
.y150{bottom:264.090000px;}
.y208{bottom:266.430000px;}
.y1d5{bottom:267.330000px;}
.ye6{bottom:268.590000px;}
.y1fb{bottom:269.130000px;}
.y198{bottom:271.110000px;}
.y9f{bottom:272.730000px;}
.y65{bottom:274.530000px;}
.y139{bottom:277.410000px;}
.y1bd{bottom:281.775000px;}
.yca{bottom:284.475000px;}
.y7{bottom:284.580000px;}
.y14f{bottom:284.835000px;}
.y2d{bottom:286.275000px;}
.y207{bottom:287.175000px;}
.y1d4{bottom:288.075000px;}
.y197{bottom:289.695000px;}
.y9e{bottom:293.475000px;}
.y138{bottom:296.535000px;}
.ye5{bottom:298.515000px;}
.y1fa{bottom:298.875000px;}
.y64{bottom:300.855000px;}
.y1bc{bottom:302.475000px;}
.y1a5{bottom:305.175000px;}
.y14e{bottom:305.535000px;}
.y206{bottom:307.875000px;}
.y196{bottom:308.235000px;}
.y1d3{bottom:308.775000px;}
.y2c{bottom:309.855000px;}
.y9d{bottom:314.175000px;}
.y137{bottom:315.615000px;}
.y1f9{bottom:319.575000px;}
.y104{bottom:323.175000px;}
.ye4{bottom:325.875000px;}
.y14d{bottom:326.235000px;}
.y195{bottom:326.955000px;}
.y63{bottom:327.135000px;}
.y205{bottom:328.575000px;}
.y1d2{bottom:329.475000px;}
.y136{bottom:334.695000px;}
.y9c{bottom:334.875000px;}
.y2b{bottom:336.675000px;}
.y103{bottom:343.875000px;}
.y194{bottom:345.495000px;}
.y1f8{bottom:349.275000px;}
.y1d1{bottom:350.175000px;}
.y62{bottom:353.235000px;}
.y135{bottom:353.775000px;}
.yc9{bottom:355.575000px;}
.y14c{bottom:355.935000px;}
.y204{bottom:358.275000px;}
.y21b{bottom:359.175000px;}
.y2a{bottom:362.235000px;}
.y9b{bottom:364.575000px;}
.y1f7{bottom:369.975000px;}
.y1d0{bottom:370.875000px;}
.y134{bottom:372.675000px;}
.ye3{bottom:376.275000px;}
.y203{bottom:378.975000px;}
.y61{bottom:379.515000px;}
.y21a{bottom:379.875000px;}
.y193{bottom:380.775000px;}
.y29{bottom:384.915000px;}
.y9a{bottom:385.275000px;}
.y1f6{bottom:390.675000px;}
.y1cf{bottom:391.575000px;}
.y133{bottom:391.755000px;}
.y102{bottom:394.275000px;}
.y60{bottom:396.795000px;}
.ye2{bottom:396.975000px;}
.y192{bottom:399.315000px;}
.y202{bottom:399.675000px;}
.y210{bottom:400.575000px;}
.y8b{bottom:403.995000px;}
.y99{bottom:405.975000px;}
.y14b{bottom:407.415000px;}
.y28{bottom:407.775000px;}
.y157{bottom:409.140000px;}
.y132{bottom:410.835000px;}
.y1ce{bottom:412.275000px;}
.y101{bottom:414.975000px;}
.ye1{bottom:417.675000px;}
.y191{bottom:417.855000px;}
.y1f5{bottom:420.375000px;}
.y20f{bottom:421.275000px;}
.y5f{bottom:423.075000px;}
.y1a4{bottom:426.315000px;}
.y98{bottom:426.675000px;}
.y131{bottom:429.915000px;}
.y27{bottom:430.455000px;}
.y1cd{bottom:432.975000px;}
.y100{bottom:435.675000px;}
.y190{bottom:436.575000px;}
.y1f4{bottom:441.075000px;}
.y20e{bottom:441.975000px;}
.ye0{bottom:447.015000px;}
.yc8{bottom:447.375000px;}
.y130{bottom:448.995000px;}
.y5e{bottom:449.355000px;}
.y201{bottom:450.075000px;}
.y1cc{bottom:453.675000px;}
.y26{bottom:454.035000px;}
.y18f{bottom:455.115000px;}
.y97{bottom:456.375000px;}
.y238{bottom:459.975000px;}
.y20d{bottom:462.675000px;}
.y5d{bottom:466.635000px;}
.yc7{bottom:468.075000px;}
.y1f3{bottom:470.775000px;}
.y18e{bottom:473.655000px;}
.y96{bottom:477.075000px;}
.y25{bottom:480.855000px;}
.y1cb{bottom:483.375000px;}
.y5c{bottom:483.735000px;}
.y1a3{bottom:486.075000px;}
.y12f{bottom:486.975000px;}
.yc6{bottom:488.775000px;}
.y237{bottom:489.675000px;}
.y1f2{bottom:491.475000px;}
.y18d{bottom:492.375000px;}
.y94{bottom:497.775000px;}
.y5b{bottom:501.015000px;}
.y1ca{bottom:504.075000px;}
.y95{bottom:504.615000px;}
.y12e{bottom:506.055000px;}
.y24{bottom:506.415000px;}
.ydf{bottom:506.775000px;}
.yc5{bottom:509.475000px;}
.y89{bottom:515.775000px;}
.y5a{bottom:518.295000px;}
.y93{bottom:518.475000px;}
.y236{bottom:519.375000px;}
.y1f1{bottom:521.175000px;}
.y1c9{bottom:524.775000px;}
.y12d{bottom:525.135000px;}
.yde{bottom:527.475000px;}
.y18c{bottom:527.655000px;}
.y23{bottom:529.095000px;}
.yc4{bottom:530.175000px;}
.y59{bottom:535.575000px;}
.y88{bottom:536.475000px;}
.yff{bottom:539.175000px;}
.y1f0{bottom:541.875000px;}
.y12c{bottom:544.215000px;}
.y1c8{bottom:545.475000px;}
.y18b{bottom:546.195000px;}
.y92{bottom:548.175000px;}
.y235{bottom:549.075000px;}
.yc3{bottom:550.875000px;}
.y22{bottom:551.955000px;}
.y58{bottom:552.855000px;}
.y219{bottom:554.475000px;}
.y87{bottom:557.175000px;}
.y1b2{bottom:559.875000px;}
.y1ef{bottom:562.575000px;}
.y12a{bottom:563.295000px;}
.y18a{bottom:564.765000px;}
.y1c7{bottom:566.205000px;}
.y91{bottom:568.905000px;}
.y57{bottom:569.985000px;}
.y200{bottom:571.605000px;}
.y21{bottom:574.665000px;}
.y218{bottom:575.205000px;}
.y86{bottom:577.905000px;}
.y234{bottom:578.805000px;}
.yc2{bottom:580.605000px;}
.y129{bottom:582.405000px;}
.y189{bottom:583.485000px;}
.y1c6{bottom:586.905000px;}
.y56{bottom:587.265000px;}
.y90{bottom:589.605000px;}
.y1ee{bottom:592.305000px;}
.y217{bottom:595.905000px;}
.y20{bottom:598.245000px;}
.y85{bottom:598.605000px;}
.yc1{bottom:601.305000px;}
.y188{bottom:602.025000px;}
.y55{bottom:604.545000px;}
.y20c{bottom:607.605000px;}
.y233{bottom:607.785000px;}
.ydd{bottom:610.305000px;}
.y1ed{bottom:613.005000px;}
.y1c5{bottom:616.605000px;}
.y84{bottom:619.305000px;}
.y128{bottom:620.385000px;}
.y187{bottom:620.565000px;}
.y54{bottom:621.825000px;}
.yc0{bottom:622.005000px;}
.y1f{bottom:625.245000px;}
.y1bb{bottom:631.005000px;}
.y1ec{bottom:633.705000px;}
.y1c4{bottom:637.305000px;}
.y53{bottom:639.105000px;}
.y183{bottom:639.285000px;}
.y127{bottom:639.465000px;}
.y83{bottom:640.005000px;}
.ybf{bottom:642.705000px;}
.y1a2{bottom:649.005000px;}
.y1e{bottom:650.625000px;}
.y1ba{bottom:651.705000px;}
.y1eb{bottom:654.405000px;}
.y52{bottom:656.385000px;}
.y1c3{bottom:658.005000px;}
.y126{bottom:658.545000px;}
.y82{bottom:660.705000px;}
.ybe{bottom:663.405000px;}
.y216{bottom:667.005000px;}
.y1e6{bottom:669.345000px;}
.y1a1{bottom:669.705000px;}
.y1b9{bottom:672.405000px;}
.y1d{bottom:673.485000px;}
.y182{bottom:674.385000px;}
.y125{bottom:677.625000px;}
.y1c2{bottom:678.705000px;}
.ydc{bottom:681.405000px;}
.y51{bottom:682.485000px;}
.ybd{bottom:684.105000px;}
.y215{bottom:687.705000px;}
.y81{bottom:690.405000px;}
.y181{bottom:693.105000px;}
.y1c{bottom:696.165000px;}
.y124{bottom:696.705000px;}
.y1c1{bottom:699.405000px;}
.y230{bottom:700.665000px;}
.ydb{bottom:702.105000px;}
.ybc{bottom:704.805000px;}
.y14a{bottom:707.865000px;}
.y50{bottom:708.405000px;}
.y80{bottom:711.105000px;}
.y180{bottom:711.645000px;}
.y1b1{bottom:713.445000px;}
.y123{bottom:715.605000px;}
.y1b{bottom:719.025000px;}
.y1c0{bottom:720.105000px;}
.yda{bottom:722.805000px;}
.ybb{bottom:725.505000px;}
.y22f{bottom:726.945000px;}
.y1e5{bottom:729.105000px;}
.y7f{bottom:731.805000px;}
.y1b0{bottom:734.145000px;}
.y149{bottom:734.505000px;}
.y122{bottom:734.685000px;}
.y4f{bottom:735.045000px;}
.y1bf{bottom:740.805000px;}
.y1a{bottom:742.425000px;}
.yfe{bottom:743.505000px;}
.y17f{bottom:746.925000px;}
.y1e4{bottom:749.805000px;}
.y7e{bottom:752.505000px;}
.y22e{bottom:753.045000px;}
.y121{bottom:753.765000px;}
.yba{bottom:755.205000px;}
.y4e{bottom:761.325000px;}
.y148{bottom:761.505000px;}
.y1af{bottom:764.205000px;}
.y17e{bottom:765.465000px;}
.y19{bottom:769.425000px;}
.y1e3{bottom:770.505000px;}
.yfd{bottom:772.845000px;}
.y7d{bottom:773.205000px;}
.yb9{bottom:775.905000px;}
.y22d{bottom:779.325000px;}
.y147{bottom:782.205000px;}
.y17d{bottom:784.005000px;}
.y1b8{bottom:784.905000px;}
.y4d{bottom:787.605000px;}
.y1e2{bottom:791.205000px;}
.y120{bottom:791.925000px;}
.y7c{bottom:793.905000px;}
.y18{bottom:794.805000px;}
.yb8{bottom:796.605000px;}
.y17c{bottom:802.725000px;}
.yfc{bottom:802.905000px;}
.y1b7{bottom:805.605000px;}
.y11e{bottom:811.005000px;}
.y214{bottom:811.905000px;}
.y4c{bottom:813.885000px;}
.y7b{bottom:814.605000px;}
.yb7{bottom:817.305000px;}
.y17{bottom:817.665000px;}
.y1e1{bottom:820.905000px;}
.y17b{bottom:821.265000px;}
.y146{bottom:823.605000px;}
.y1b6{bottom:826.305000px;}
.y11d{bottom:829.905000px;}
.y4b{bottom:830.985000px;}
.y22c{bottom:831.885000px;}
.yfb{bottom:832.605000px;}
.y8f{bottom:835.305000px;}
.yb6{bottom:838.005000px;}
.y17a{bottom:839.805000px;}
.y16{bottom:840.345000px;}
.y1e0{bottom:841.605000px;}
.y7a{bottom:844.305000px;}
.y1ea{bottom:847.005000px;}
.y4a{bottom:848.310000px;}
.y11c{bottom:849.030000px;}
.yfa{bottom:853.350000px;}
.y8e{bottom:856.050000px;}
.y22b{bottom:858.210000px;}
.y179{bottom:858.570000px;}
.y1df{bottom:862.350000px;}
.y15{bottom:863.250000px;}
.y79{bottom:865.050000px;}
.y49{bottom:865.590000px;}
.yb5{bottom:867.750000px;}
.y11b{bottom:868.110000px;}
.yf9{bottom:874.050000px;}
.yd9{bottom:876.750000px;}
.y178{bottom:877.110000px;}
.y48{bottom:882.870000px;}
.y1de{bottom:883.050000px;}
.y229{bottom:884.490000px;}
.y1b5{bottom:885.390000px;}
.y78{bottom:885.750000px;}
.y14{bottom:886.650000px;}
.y11a{bottom:887.190000px;}
.yb4{bottom:888.450000px;}
.yf8{bottom:894.750000px;}
.y176{bottom:895.650000px;}
.yd8{bottom:897.450000px;}
.y47{bottom:900.150000px;}
.y1dd{bottom:903.750000px;}
.y1ae{bottom:906.090000px;}
.y119{bottom:906.270000px;}
.y77{bottom:906.450000px;}
.yb3{bottom:909.150000px;}
.y228{bottom:910.590000px;}
.y13{bottom:914.730000px;}
.y1b4{bottom:915.090000px;}
.yf7{bottom:915.450000px;}
.y46{bottom:917.430000px;}
.yd7{bottom:918.150000px;}
.y1dc{bottom:924.450000px;}
.y118{bottom:925.350000px;}
.y6{bottom:926.986860px;}
.y76{bottom:927.150000px;}
.y45{bottom:934.530000px;}
.y1a0{bottom:935.790000px;}
.y1ad{bottom:936.150000px;}
.y227{bottom:936.870000px;}
.yb2{bottom:938.850000px;}
.y117{bottom:944.250000px;}
.y5{bottom:944.451720px;}
.yf6{bottom:945.150000px;}
.y12{bottom:946.590000px;}
.yd6{bottom:947.490000px;}
.y75{bottom:947.850000px;}
.y175{bottom:948.210000px;}
.y44{bottom:951.810000px;}
.y19f{bottom:956.490000px;}
.y8a{bottom:956.850000px;}
.yb1{bottom:959.550000px;}
.y4{bottom:962.095860px;}
.y226{bottom:963.150000px;}
.y116{bottom:963.330000px;}
.yf5{bottom:965.850000px;}
.y174{bottom:966.750000px;}
.y8d{bottom:968.550000px;}
.y43{bottom:969.090000px;}
.y74{bottom:977.550000px;}
.y3{bottom:979.740000px;}
.yb0{bottom:980.250000px;}
.y115{bottom:982.410000px;}
.y11{bottom:984.390000px;}
.y173{bottom:985.470000px;}
.y42{bottom:986.370000px;}
.yf4{bottom:986.550000px;}
.y145{bottom:989.250000px;}
.y224{bottom:989.430000px;}
.y213{bottom:995.550000px;}
.y73{bottom:998.250000px;}
.y2{bottom:998.820000px;}
.yaf{bottom:1000.950000px;}
.y114{bottom:1001.490000px;}
.y41{bottom:1003.650000px;}
.y172{bottom:1004.010000px;}
.yd5{bottom:1007.250000px;}
.y144{bottom:1009.950000px;}
.y21c{bottom:1015.710000px;}
.yf3{bottom:1016.250000px;}
.y72{bottom:1018.950000px;}
.y113{bottom:1020.570000px;}
.y40{bottom:1020.750000px;}
.y10{bottom:1020.930000px;}
.y170{bottom:1022.550000px;}
.yd4{bottom:1027.950000px;}
.yae{bottom:1030.650000px;}
.yf2{bottom:1036.950000px;}
.y3f{bottom:1038.030000px;}
.y71{bottom:1039.650000px;}
.y16e{bottom:1041.270000px;}
.yd3{bottom:1048.650000px;}
.yf{bottom:1049.190000px;}
.yf1{bottom:1057.650000px;}
.y111{bottom:1058.550000px;}
.y16c{bottom:1059.810000px;}
.yad{bottom:1059.990000px;}
.y70{bottom:1060.350000px;}
.y3e{bottom:1063.950000px;}
.y1ac{bottom:1069.350000px;}
.ye{bottom:1071.870000px;}
.y110{bottom:1077.630000px;}
.yd2{bottom:1078.350000px;}
.y6f{bottom:1081.050000px;}
.yac{bottom:1090.050000px;}
.y3d{bottom:1090.230000px;}
.yd{bottom:1094.730000px;}
.y168{bottom:1095.090000px;}
.y10e{bottom:1096.710000px;}
.yd1{bottom:1099.050000px;}
.y6e{bottom:1110.390000px;}
.y143{bottom:1110.750000px;}
.y10c{bottom:1115.790000px;}
.y3c{bottom:1116.510000px;}
.yc{bottom:1117.410000px;}
.yab{bottom:1119.750000px;}
.y6d{bottom:1140.120000px;}
.yb{bottom:1140.300000px;}
.yaa{bottom:1140.480000px;}
.y3b{bottom:1142.820000px;}
.y8c{bottom:1146.060000px;}
.y35{bottom:1206.900000px;}
.y1{bottom:1214.280000px;}
.h2a{height:17.820000px;}
.h2f{height:17.856000px;}
.h2b{height:18.000000px;}
.h2d{height:18.036000px;}
.h25{height:18.180000px;}
.h26{height:18.216000px;}
.h24{height:18.360000px;}
.h23{height:18.396000px;}
.h22{height:21.060000px;}
.h21{height:21.240000px;}
.h20{height:21.276000px;}
.h5{height:21.292031px;}
.h10{height:22.680000px;}
.h17{height:23.307539px;}
.h32{height:25.380000px;}
.h31{height:25.560000px;}
.h33{height:25.596000px;}
.h2e{height:34.380000px;}
.h29{height:34.560000px;}
.h1f{height:38.158594px;}
.h4{height:42.077109px;}
.h34{height:42.660000px;}
.h1e{height:47.344922px;}
.h7{height:47.988281px;}
.h1d{height:48.616875px;}
.h28{height:48.762000px;}
.h3{height:50.695312px;}
.h2c{height:51.840000px;}
.h13{height:58.622061px;}
.h16{height:58.622145px;}
.hf{height:58.651172px;}
.h11{height:60.226875px;}
.h1a{height:64.546875px;}
.h1b{height:65.010937px;}
.h14{height:70.628906px;}
.ha{height:70.664062px;}
.h18{height:72.562500px;}
.h1c{height:73.722656px;}
.h19{height:74.953125px;}
.h30{height:80.640000px;}
.he{height:82.676953px;}
.hd{height:84.898125px;}
.hb{height:93.983203px;}
.h6{height:119.970703px;}
.hc{height:121.179375px;}
.h2{height:131.369040px;}
.h8{height:135.527344px;}
.h27{height:286.380000px;}
.h12{height:790.125000px;}
.h15{height:805.245000px;}
.h9{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:19.980000px;}
.w10{width:42.120000px;}
.w4{width:66.816000px;}
.w12{width:84.240000px;}
.w13{width:84.276000px;}
.w14{width:84.456000px;}
.wd{width:115.560000px;}
.wf{width:125.820000px;}
.wb{width:126.180000px;}
.w8{width:126.360000px;}
.we{width:127.296000px;}
.w11{width:169.410000px;}
.wc{width:265.935000px;}
.w9{width:509.145000px;}
.wa{width:572.940000px;}
.w7{width:636.405000px;}
.w6{width:892.979973px;}
.w3{width:892.979987px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x76{left:4.860000px;}
.x3b{left:7.740000px;}
.x7a{left:8.820000px;}
.x5e{left:10.260000px;}
.x3e{left:12.780000px;}
.x24{left:14.400000px;}
.x5b{left:17.280000px;}
.x70{left:18.540000px;}
.x7c{left:20.520000px;}
.x22{left:22.140000px;}
.x28{left:23.220000px;}
.x6d{left:24.885000px;}
.x3d{left:25.965000px;}
.x7d{left:27.900000px;}
.x6e{left:31.365000px;}
.x6f{left:32.625000px;}
.x71{left:35.865000px;}
.x5d{left:38.565000px;}
.x45{left:41.265000px;}
.x2{left:42.480000px;}
.x5a{left:43.965000px;}
.x72{left:45.405000px;}
.x5c{left:47.925000px;}
.x4f{left:50.325000px;}
.x6a{left:51.705000px;}
.x3f{left:52.785000px;}
.x51{left:54.390000px;}
.x62{left:56.745000px;}
.x41{left:58.545000px;}
.x61{left:61.965000px;}
.x56{left:63.174000px;}
.x4e{left:64.545000px;}
.x37{left:65.694000px;}
.x38{left:67.314000px;}
.x68{left:71.145000px;}
.x64{left:75.285000px;}
.x40{left:76.905000px;}
.x35{left:79.374000px;}
.x50{left:80.565000px;}
.x52{left:83.370000px;}
.x33{left:85.494000px;}
.x67{left:90.225000px;}
.x65{left:92.385000px;}
.x66{left:94.005000px;}
.x69{left:95.445000px;}
.x43{left:98.145000px;}
.x6c{left:99.945000px;}
.x63{left:103.365000px;}
.x36{left:107.094000px;}
.x44{left:109.305000px;}
.x60{left:112.905000px;}
.x6b{left:114.165000px;}
.x5f{left:116.685000px;}
.x20{left:127.655987px;}
.x42{left:129.465000px;}
.x31{left:132.515987px;}
.x34{left:137.334000px;}
.x12{left:138.455987px;}
.x53{left:140.430000px;}
.x15{left:142.955987px;}
.x29{left:148.895987px;}
.x18{left:151.769987px;}
.x4d{left:154.365000px;}
.x47{left:159.480000px;}
.xd{left:163.109987px;}
.xa{left:170.309987px;}
.x73{left:180.749987px;}
.x26{left:183.089987px;}
.x4{left:207.360000px;}
.x25{left:238.529987px;}
.x54{left:241.275000px;}
.x1f{left:246.629987px;}
.x9{left:250.949987px;}
.x57{left:254.550000px;}
.x3c{left:255.630000px;}
.x7e{left:257.069987px;}
.x55{left:258.195000px;}
.x3a{left:263.369987px;}
.x1e{left:273.269987px;}
.x11{left:275.429987px;}
.x13{left:280.694987px;}
.xe{left:288.254987px;}
.x2e{left:290.774973px;}
.x19{left:292.214987px;}
.x17{left:293.654987px;}
.x2f{left:296.894987px;}
.x1a{left:303.194987px;}
.x10{left:305.174987px;}
.xb{left:310.574987px;}
.x6{left:312.014987px;}
.x32{left:313.454987px;}
.xc{left:317.594987px;}
.x74{left:330.194973px;}
.x75{left:336.314987px;}
.x77{left:340.815000px;}
.x39{left:342.254987px;}
.x1c{left:344.234987px;}
.x1b{left:345.854987px;}
.x8{left:349.454987px;}
.x2a{left:351.614987px;}
.xf{left:364.214987px;}
.x14{left:366.554987px;}
.x16{left:369.794987px;}
.x2b{left:372.854987px;}
.x7{left:376.274987px;}
.x1{left:408.960000px;}
.x4b{left:415.290000px;}
.x78{left:425.955000px;}
.x4a{left:432.750000px;}
.x4c{left:445.170000px;}
.x5{left:446.580000px;}
.x48{left:463.890000px;}
.x49{left:480.810000px;}
.x1d{left:495.104987px;}
.x79{left:510.945000px;}
.x58{left:521.205000px;}
.x2c{left:575.564987px;}
.x30{left:582.584987px;}
.x2d{left:596.804987px;}
.x59{left:637.485000px;}
.x7b{left:681.090000px;}
.x3{left:689.580000px;}
.x46{left:733.469987px;}
.x21{left:795.930000px;}
.x23{left:819.150000px;}
.x27{left:820.230000px;}
@media print{
.v1{vertical-align:-97.292160pt;}
.v2{vertical-align:-68.419200pt;}
.v3{vertical-align:-62.097280pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.920000pt;}
.ls5{letter-spacing:-1.792000pt;}
.ls17{letter-spacing:-1.472000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-1.088000pt;}
.ls4{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.704000pt;}
.ls7{letter-spacing:0.800000pt;}
.lse{letter-spacing:2.080000pt;}
.lsc{letter-spacing:9.728000pt;}
.ls0{letter-spacing:1638.400000pt;}
.ws12{word-spacing:-16.704000pt;}
.wse{word-spacing:-16.192000pt;}
.wsf{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws11{word-spacing:-14.528000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.992000pt;}
.ws9{word-spacing:-12.870933pt;}
.ws1{word-spacing:-12.288000pt;}
.wsd{word-spacing:-10.752000pt;}
.wsc{word-spacing:-10.720000pt;}
.ws4{word-spacing:-0.704000pt;}
.ws3{word-spacing:-0.192000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-24.952320pt;}
._1{margin-left:-12.111360pt;}
._3{margin-left:-4.096000pt;}
._d{margin-left:-3.177600pt;}
._c{margin-left:-1.968640pt;}
._2{margin-left:-0.896000pt;}
._4{width:0.960000pt;}
._5{width:2.049707pt;}
._b{width:3.541973pt;}
._f{width:4.687787pt;}
._12{width:5.588267pt;}
._e{width:6.513280pt;}
._a{width:7.532160pt;}
._9{width:8.446080pt;}
._7{width:10.023680pt;}
._6{width:11.208107pt;}
._8{width:12.362880pt;}
._17{width:13.311787pt;}
._16{width:14.336000pt;}
._18{width:17.408000pt;}
._14{width:18.816000pt;}
._15{width:19.776000pt;}
._10{width:21.194880pt;}
._11{width:22.635947pt;}
._19{width:23.561173pt;}
._1c{width:24.865493pt;}
._1e{width:26.485333pt;}
._1d{width:27.434667pt;}
._1a{width:31.018667pt;}
._1b{width:32.618667pt;}
._2f{width:34.112000pt;}
._30{width:35.056640pt;}
._31{width:35.957333pt;}
._29{width:41.920000pt;}
._2a{width:42.816000pt;}
._28{width:78.624000pt;}
._2c{width:122.752000pt;}
._1f{width:145.728000pt;}
._20{width:149.248000pt;}
._21{width:150.144000pt;}
._2d{width:162.400000pt;}
._22{width:171.808000pt;}
._23{width:172.704000pt;}
._26{width:182.656000pt;}
._27{width:183.616000pt;}
._24{width:189.056000pt;}
._25{width:189.952000pt;}
._2b{width:202.688000pt;}
._2e{width:752.170667pt;}
._13{width:753.674667pt;}
.fsa{font-size:21.120000pt;}
.fs3{font-size:26.880000pt;}
.fsc{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fsd{font-size:43.008000pt;}
.fs1{font-size:53.120000pt;}
.fsb{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs6{font-size:106.880000pt;}
.fs0{font-size:109.440000pt;}
.fs4{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y186{bottom:2.880000pt;}
.y16a{bottom:3.040000pt;}
.y16f{bottom:3.520000pt;}
.y171{bottom:3.680000pt;}
.y11f{bottom:3.840000pt;}
.y10d{bottom:4.000000pt;}
.y112{bottom:4.160000pt;}
.y12b{bottom:4.186667pt;}
.y10f{bottom:4.320000pt;}
.y13a{bottom:4.360000pt;}
.ye7{bottom:4.800000pt;}
.yee{bottom:4.960000pt;}
.ye9{bottom:5.120000pt;}
.y38{bottom:5.760000pt;}
.y22a{bottom:6.880000pt;}
.y225{bottom:7.040000pt;}
.y15c{bottom:7.933333pt;}
.y223{bottom:8.480000pt;}
.y3a{bottom:9.600000pt;}
.y184{bottom:10.560000pt;}
.y16b{bottom:10.720000pt;}
.y16d{bottom:11.040000pt;}
.y15e{bottom:11.973333pt;}
.y231{bottom:14.560000pt;}
.y21f{bottom:16.160000pt;}
.y185{bottom:18.240000pt;}
.y169{bottom:18.400000pt;}
.y15b{bottom:20.253333pt;}
.y232{bottom:22.240000pt;}
.y222{bottom:23.840000pt;}
.y15d{bottom:24.293333pt;}
.y21d{bottom:31.520000pt;}
.y15a{bottom:32.573333pt;}
.y177{bottom:33.760000pt;}
.y6b{bottom:37.152000pt;}
.y37{bottom:37.952000pt;}
.y221{bottom:39.200000pt;}
.y36{bottom:40.992000pt;}
.y21e{bottom:46.880000pt;}
.y6c{bottom:54.272000pt;}
.y220{bottom:54.560000pt;}
.y39{bottom:54.592000pt;}
.y161{bottom:68.413333pt;}
.y160{bottom:80.773333pt;}
.y15f{bottom:93.093333pt;}
.ya9{bottom:97.632000pt;}
.y34{bottom:100.032000pt;}
.y156{bottom:100.352000pt;}
.y1db{bottom:100.832000pt;}
.y212{bottom:102.272000pt;}
.yf0{bottom:104.832000pt;}
.y19e{bottom:106.272000pt;}
.ya{bottom:109.280000pt;}
.yd0{bottom:110.432000pt;}
.y142{bottom:111.392000pt;}
.ya8{bottom:112.992000pt;}
.y10b{bottom:113.632000pt;}
.y33{bottom:116.832000pt;}
.y1ab{bottom:118.432000pt;}
.y155{bottom:118.752000pt;}
.y1da{bottom:119.232000pt;}
.yef{bottom:121.632000pt;}
.y19d{bottom:126.912000pt;}
.y141{bottom:128.032000pt;}
.ya7{bottom:128.352000pt;}
.ycf{bottom:128.832000pt;}
.y32{bottom:131.072000pt;}
.y10a{bottom:132.032000pt;}
.ya6{bottom:132.992000pt;}
.y1aa{bottom:136.826667pt;}
.y154{bottom:137.146667pt;}
.y1d9{bottom:137.626667pt;}
.yed{bottom:141.146667pt;}
.y6a{bottom:143.386667pt;}
.ya5{bottom:143.706667pt;}
.y140{bottom:144.986667pt;}
.y163{bottom:146.493333pt;}
.yce{bottom:147.226667pt;}
.y9{bottom:149.600000pt;}
.y109{bottom:150.426667pt;}
.y1e9{bottom:152.826667pt;}
.y153{bottom:155.546667pt;}
.y211{bottom:156.026667pt;}
.y1ff{bottom:157.626667pt;}
.y69{bottom:158.746667pt;}
.y162{bottom:158.813333pt;}
.ya4{bottom:159.066667pt;}
.y19c{bottom:160.026667pt;}
.yec{bottom:160.666667pt;}
.y13f{bottom:161.946667pt;}
.y1a9{bottom:162.906667pt;}
.y1d8{bottom:164.026667pt;}
.y31{bottom:168.666667pt;}
.y108{bottom:168.826667pt;}
.y1e8{bottom:171.226667pt;}
.ycd{bottom:173.306667pt;}
.y20b{bottom:173.626667pt;}
.y68{bottom:173.946667pt;}
.ya3{bottom:174.426667pt;}
.y1fe{bottom:176.026667pt;}
.y13e{bottom:178.906667pt;}
.yeb{bottom:180.186667pt;}
.y1a8{bottom:181.306667pt;}
.y152{bottom:181.626667pt;}
.y1d7{bottom:182.426667pt;}
.y159{bottom:182.746667pt;}
.y8{bottom:185.600000pt;}
.y107{bottom:187.226667pt;}
.ya2{bottom:189.626667pt;}
.y19b{bottom:191.386667pt;}
.y20a{bottom:192.026667pt;}
.y30{bottom:193.786667pt;}
.ya1{bottom:194.266667pt;}
.y1fd{bottom:194.426667pt;}
.y158{bottom:195.066667pt;}
.y13d{bottom:195.866667pt;}
.y67{bottom:197.306667pt;}
.y1e7{bottom:197.626667pt;}
.yea{bottom:199.706667pt;}
.ycc{bottom:200.026667pt;}
.y1d6{bottom:200.826667pt;}
.y165{bottom:203.680000pt;}
.ya0{bottom:204.986667pt;}
.y106{bottom:205.626667pt;}
.y19a{bottom:207.866667pt;}
.y1a7{bottom:208.026667pt;}
.y151{bottom:208.346667pt;}
.y13c{bottom:212.826667pt;}
.y2f{bottom:213.946667pt;}
.y164{bottom:216.000000pt;}
.y1b3{bottom:216.026667pt;}
.y167{bottom:218.146667pt;}
.y209{bottom:218.426667pt;}
.ye8{bottom:219.226667pt;}
.y66{bottom:220.666667pt;}
.y1fc{bottom:220.826667pt;}
.y105{bottom:224.026667pt;}
.y199{bottom:224.346667pt;}
.ycb{bottom:226.106667pt;}
.y13b{bottom:229.626667pt;}
.y166{bottom:230.466667pt;}
.y1be{bottom:232.026667pt;}
.y2e{bottom:234.266667pt;}
.y1a6{bottom:234.426667pt;}
.y150{bottom:234.746667pt;}
.y208{bottom:236.826667pt;}
.y1d5{bottom:237.626667pt;}
.ye6{bottom:238.746667pt;}
.y1fb{bottom:239.226667pt;}
.y198{bottom:240.986667pt;}
.y9f{bottom:242.426667pt;}
.y65{bottom:244.026667pt;}
.y139{bottom:246.586667pt;}
.y1bd{bottom:250.466667pt;}
.yca{bottom:252.866667pt;}
.y7{bottom:252.960000pt;}
.y14f{bottom:253.186667pt;}
.y2d{bottom:254.466667pt;}
.y207{bottom:255.266667pt;}
.y1d4{bottom:256.066667pt;}
.y197{bottom:257.506667pt;}
.y9e{bottom:260.866667pt;}
.y138{bottom:263.586667pt;}
.ye5{bottom:265.346667pt;}
.y1fa{bottom:265.666667pt;}
.y64{bottom:267.426667pt;}
.y1bc{bottom:268.866667pt;}
.y1a5{bottom:271.266667pt;}
.y14e{bottom:271.586667pt;}
.y206{bottom:273.666667pt;}
.y196{bottom:273.986667pt;}
.y1d3{bottom:274.466667pt;}
.y2c{bottom:275.426667pt;}
.y9d{bottom:279.266667pt;}
.y137{bottom:280.546667pt;}
.y1f9{bottom:284.066667pt;}
.y104{bottom:287.266667pt;}
.ye4{bottom:289.666667pt;}
.y14d{bottom:289.986667pt;}
.y195{bottom:290.626667pt;}
.y63{bottom:290.786667pt;}
.y205{bottom:292.066667pt;}
.y1d2{bottom:292.866667pt;}
.y136{bottom:297.506667pt;}
.y9c{bottom:297.666667pt;}
.y2b{bottom:299.266667pt;}
.y103{bottom:305.666667pt;}
.y194{bottom:307.106667pt;}
.y1f8{bottom:310.466667pt;}
.y1d1{bottom:311.266667pt;}
.y62{bottom:313.986667pt;}
.y135{bottom:314.466667pt;}
.yc9{bottom:316.066667pt;}
.y14c{bottom:316.386667pt;}
.y204{bottom:318.466667pt;}
.y21b{bottom:319.266667pt;}
.y2a{bottom:321.986667pt;}
.y9b{bottom:324.066667pt;}
.y1f7{bottom:328.866667pt;}
.y1d0{bottom:329.666667pt;}
.y134{bottom:331.266667pt;}
.ye3{bottom:334.466667pt;}
.y203{bottom:336.866667pt;}
.y61{bottom:337.346667pt;}
.y21a{bottom:337.666667pt;}
.y193{bottom:338.466667pt;}
.y29{bottom:342.146667pt;}
.y9a{bottom:342.466667pt;}
.y1f6{bottom:347.266667pt;}
.y1cf{bottom:348.066667pt;}
.y133{bottom:348.226667pt;}
.y102{bottom:350.466667pt;}
.y60{bottom:352.706667pt;}
.ye2{bottom:352.866667pt;}
.y192{bottom:354.946667pt;}
.y202{bottom:355.266667pt;}
.y210{bottom:356.066667pt;}
.y8b{bottom:359.106667pt;}
.y99{bottom:360.866667pt;}
.y14b{bottom:362.146667pt;}
.y28{bottom:362.466667pt;}
.y157{bottom:363.680000pt;}
.y132{bottom:365.186667pt;}
.y1ce{bottom:366.466667pt;}
.y101{bottom:368.866667pt;}
.ye1{bottom:371.266667pt;}
.y191{bottom:371.426667pt;}
.y1f5{bottom:373.666667pt;}
.y20f{bottom:374.466667pt;}
.y5f{bottom:376.066667pt;}
.y1a4{bottom:378.946667pt;}
.y98{bottom:379.266667pt;}
.y131{bottom:382.146667pt;}
.y27{bottom:382.626667pt;}
.y1cd{bottom:384.866667pt;}
.y100{bottom:387.266667pt;}
.y190{bottom:388.066667pt;}
.y1f4{bottom:392.066667pt;}
.y20e{bottom:392.866667pt;}
.ye0{bottom:397.346667pt;}
.yc8{bottom:397.666667pt;}
.y130{bottom:399.106667pt;}
.y5e{bottom:399.426667pt;}
.y201{bottom:400.066667pt;}
.y1cc{bottom:403.266667pt;}
.y26{bottom:403.586667pt;}
.y18f{bottom:404.546667pt;}
.y97{bottom:405.666667pt;}
.y238{bottom:408.866667pt;}
.y20d{bottom:411.266667pt;}
.y5d{bottom:414.786667pt;}
.yc7{bottom:416.066667pt;}
.y1f3{bottom:418.466667pt;}
.y18e{bottom:421.026667pt;}
.y96{bottom:424.066667pt;}
.y25{bottom:427.426667pt;}
.y1cb{bottom:429.666667pt;}
.y5c{bottom:429.986667pt;}
.y1a3{bottom:432.066667pt;}
.y12f{bottom:432.866667pt;}
.yc6{bottom:434.466667pt;}
.y237{bottom:435.266667pt;}
.y1f2{bottom:436.866667pt;}
.y18d{bottom:437.666667pt;}
.y94{bottom:442.466667pt;}
.y5b{bottom:445.346667pt;}
.y1ca{bottom:448.066667pt;}
.y95{bottom:448.546667pt;}
.y12e{bottom:449.826667pt;}
.y24{bottom:450.146667pt;}
.ydf{bottom:450.466667pt;}
.yc5{bottom:452.866667pt;}
.y89{bottom:458.466667pt;}
.y5a{bottom:460.706667pt;}
.y93{bottom:460.866667pt;}
.y236{bottom:461.666667pt;}
.y1f1{bottom:463.266667pt;}
.y1c9{bottom:466.466667pt;}
.y12d{bottom:466.786667pt;}
.yde{bottom:468.866667pt;}
.y18c{bottom:469.026667pt;}
.y23{bottom:470.306667pt;}
.yc4{bottom:471.266667pt;}
.y59{bottom:476.066667pt;}
.y88{bottom:476.866667pt;}
.yff{bottom:479.266667pt;}
.y1f0{bottom:481.666667pt;}
.y12c{bottom:483.746667pt;}
.y1c8{bottom:484.866667pt;}
.y18b{bottom:485.506667pt;}
.y92{bottom:487.266667pt;}
.y235{bottom:488.066667pt;}
.yc3{bottom:489.666667pt;}
.y22{bottom:490.626667pt;}
.y58{bottom:491.426667pt;}
.y219{bottom:492.866667pt;}
.y87{bottom:495.266667pt;}
.y1b2{bottom:497.666667pt;}
.y1ef{bottom:500.066667pt;}
.y12a{bottom:500.706667pt;}
.y18a{bottom:502.013333pt;}
.y1c7{bottom:503.293333pt;}
.y91{bottom:505.693333pt;}
.y57{bottom:506.653333pt;}
.y200{bottom:508.093333pt;}
.y21{bottom:510.813333pt;}
.y218{bottom:511.293333pt;}
.y86{bottom:513.693333pt;}
.y234{bottom:514.493333pt;}
.yc2{bottom:516.093333pt;}
.y129{bottom:517.693333pt;}
.y189{bottom:518.653333pt;}
.y1c6{bottom:521.693333pt;}
.y56{bottom:522.013333pt;}
.y90{bottom:524.093333pt;}
.y1ee{bottom:526.493333pt;}
.y217{bottom:529.693333pt;}
.y20{bottom:531.773333pt;}
.y85{bottom:532.093333pt;}
.yc1{bottom:534.493333pt;}
.y188{bottom:535.133333pt;}
.y55{bottom:537.373333pt;}
.y20c{bottom:540.093333pt;}
.y233{bottom:540.253333pt;}
.ydd{bottom:542.493333pt;}
.y1ed{bottom:544.893333pt;}
.y1c5{bottom:548.093333pt;}
.y84{bottom:550.493333pt;}
.y128{bottom:551.453333pt;}
.y187{bottom:551.613333pt;}
.y54{bottom:552.733333pt;}
.yc0{bottom:552.893333pt;}
.y1f{bottom:555.773333pt;}
.y1bb{bottom:560.893333pt;}
.y1ec{bottom:563.293333pt;}
.y1c4{bottom:566.493333pt;}
.y53{bottom:568.093333pt;}
.y183{bottom:568.253333pt;}
.y127{bottom:568.413333pt;}
.y83{bottom:568.893333pt;}
.ybf{bottom:571.293333pt;}
.y1a2{bottom:576.893333pt;}
.y1e{bottom:578.333333pt;}
.y1ba{bottom:579.293333pt;}
.y1eb{bottom:581.693333pt;}
.y52{bottom:583.453333pt;}
.y1c3{bottom:584.893333pt;}
.y126{bottom:585.373333pt;}
.y82{bottom:587.293333pt;}
.ybe{bottom:589.693333pt;}
.y216{bottom:592.893333pt;}
.y1e6{bottom:594.973333pt;}
.y1a1{bottom:595.293333pt;}
.y1b9{bottom:597.693333pt;}
.y1d{bottom:598.653333pt;}
.y182{bottom:599.453333pt;}
.y125{bottom:602.333333pt;}
.y1c2{bottom:603.293333pt;}
.ydc{bottom:605.693333pt;}
.y51{bottom:606.653333pt;}
.ybd{bottom:608.093333pt;}
.y215{bottom:611.293333pt;}
.y81{bottom:613.693333pt;}
.y181{bottom:616.093333pt;}
.y1c{bottom:618.813333pt;}
.y124{bottom:619.293333pt;}
.y1c1{bottom:621.693333pt;}
.y230{bottom:622.813333pt;}
.ydb{bottom:624.093333pt;}
.ybc{bottom:626.493333pt;}
.y14a{bottom:629.213333pt;}
.y50{bottom:629.693333pt;}
.y80{bottom:632.093333pt;}
.y180{bottom:632.573333pt;}
.y1b1{bottom:634.173333pt;}
.y123{bottom:636.093333pt;}
.y1b{bottom:639.133333pt;}
.y1c0{bottom:640.093333pt;}
.yda{bottom:642.493333pt;}
.ybb{bottom:644.893333pt;}
.y22f{bottom:646.173333pt;}
.y1e5{bottom:648.093333pt;}
.y7f{bottom:650.493333pt;}
.y1b0{bottom:652.573333pt;}
.y149{bottom:652.893333pt;}
.y122{bottom:653.053333pt;}
.y4f{bottom:653.373333pt;}
.y1bf{bottom:658.493333pt;}
.y1a{bottom:659.933333pt;}
.yfe{bottom:660.893333pt;}
.y17f{bottom:663.933333pt;}
.y1e4{bottom:666.493333pt;}
.y7e{bottom:668.893333pt;}
.y22e{bottom:669.373333pt;}
.y121{bottom:670.013333pt;}
.yba{bottom:671.293333pt;}
.y4e{bottom:676.733333pt;}
.y148{bottom:676.893333pt;}
.y1af{bottom:679.293333pt;}
.y17e{bottom:680.413333pt;}
.y19{bottom:683.933333pt;}
.y1e3{bottom:684.893333pt;}
.yfd{bottom:686.973333pt;}
.y7d{bottom:687.293333pt;}
.yb9{bottom:689.693333pt;}
.y22d{bottom:692.733333pt;}
.y147{bottom:695.293333pt;}
.y17d{bottom:696.893333pt;}
.y1b8{bottom:697.693333pt;}
.y4d{bottom:700.093333pt;}
.y1e2{bottom:703.293333pt;}
.y120{bottom:703.933333pt;}
.y7c{bottom:705.693333pt;}
.y18{bottom:706.493333pt;}
.yb8{bottom:708.093333pt;}
.y17c{bottom:713.533333pt;}
.yfc{bottom:713.693333pt;}
.y1b7{bottom:716.093333pt;}
.y11e{bottom:720.893333pt;}
.y214{bottom:721.693333pt;}
.y4c{bottom:723.453333pt;}
.y7b{bottom:724.093333pt;}
.yb7{bottom:726.493333pt;}
.y17{bottom:726.813333pt;}
.y1e1{bottom:729.693333pt;}
.y17b{bottom:730.013333pt;}
.y146{bottom:732.093333pt;}
.y1b6{bottom:734.493333pt;}
.y11d{bottom:737.693333pt;}
.y4b{bottom:738.653333pt;}
.y22c{bottom:739.453333pt;}
.yfb{bottom:740.093333pt;}
.y8f{bottom:742.493333pt;}
.yb6{bottom:744.893333pt;}
.y17a{bottom:746.493333pt;}
.y16{bottom:746.973333pt;}
.y1e0{bottom:748.093333pt;}
.y7a{bottom:750.493333pt;}
.y1ea{bottom:752.893333pt;}
.y4a{bottom:754.053333pt;}
.y11c{bottom:754.693333pt;}
.yfa{bottom:758.533333pt;}
.y8e{bottom:760.933333pt;}
.y22b{bottom:762.853333pt;}
.y179{bottom:763.173333pt;}
.y1df{bottom:766.533333pt;}
.y15{bottom:767.333333pt;}
.y79{bottom:768.933333pt;}
.y49{bottom:769.413333pt;}
.yb5{bottom:771.333333pt;}
.y11b{bottom:771.653333pt;}
.yf9{bottom:776.933333pt;}
.yd9{bottom:779.333333pt;}
.y178{bottom:779.653333pt;}
.y48{bottom:784.773333pt;}
.y1de{bottom:784.933333pt;}
.y229{bottom:786.213333pt;}
.y1b5{bottom:787.013333pt;}
.y78{bottom:787.333333pt;}
.y14{bottom:788.133333pt;}
.y11a{bottom:788.613333pt;}
.yb4{bottom:789.733333pt;}
.yf8{bottom:795.333333pt;}
.y176{bottom:796.133333pt;}
.yd8{bottom:797.733333pt;}
.y47{bottom:800.133333pt;}
.y1dd{bottom:803.333333pt;}
.y1ae{bottom:805.413333pt;}
.y119{bottom:805.573333pt;}
.y77{bottom:805.733333pt;}
.yb3{bottom:808.133333pt;}
.y228{bottom:809.413333pt;}
.y13{bottom:813.093333pt;}
.y1b4{bottom:813.413333pt;}
.yf7{bottom:813.733333pt;}
.y46{bottom:815.493333pt;}
.yd7{bottom:816.133333pt;}
.y1dc{bottom:821.733333pt;}
.y118{bottom:822.533333pt;}
.y6{bottom:823.988320pt;}
.y76{bottom:824.133333pt;}
.y45{bottom:830.693333pt;}
.y1a0{bottom:831.813333pt;}
.y1ad{bottom:832.133333pt;}
.y227{bottom:832.773333pt;}
.yb2{bottom:834.533333pt;}
.y117{bottom:839.333333pt;}
.y5{bottom:839.512640pt;}
.yf6{bottom:840.133333pt;}
.y12{bottom:841.413333pt;}
.yd6{bottom:842.213333pt;}
.y75{bottom:842.533333pt;}
.y175{bottom:842.853333pt;}
.y44{bottom:846.053333pt;}
.y19f{bottom:850.213333pt;}
.y8a{bottom:850.533333pt;}
.yb1{bottom:852.933333pt;}
.y4{bottom:855.196320pt;}
.y226{bottom:856.133333pt;}
.y116{bottom:856.293333pt;}
.yf5{bottom:858.533333pt;}
.y174{bottom:859.333333pt;}
.y8d{bottom:860.933333pt;}
.y43{bottom:861.413333pt;}
.y74{bottom:868.933333pt;}
.y3{bottom:870.880000pt;}
.yb0{bottom:871.333333pt;}
.y115{bottom:873.253333pt;}
.y11{bottom:875.013333pt;}
.y173{bottom:875.973333pt;}
.y42{bottom:876.773333pt;}
.yf4{bottom:876.933333pt;}
.y145{bottom:879.333333pt;}
.y224{bottom:879.493333pt;}
.y213{bottom:884.933333pt;}
.y73{bottom:887.333333pt;}
.y2{bottom:887.840000pt;}
.yaf{bottom:889.733333pt;}
.y114{bottom:890.213333pt;}
.y41{bottom:892.133333pt;}
.y172{bottom:892.453333pt;}
.yd5{bottom:895.333333pt;}
.y144{bottom:897.733333pt;}
.y21c{bottom:902.853333pt;}
.yf3{bottom:903.333333pt;}
.y72{bottom:905.733333pt;}
.y113{bottom:907.173333pt;}
.y40{bottom:907.333333pt;}
.y10{bottom:907.493333pt;}
.y170{bottom:908.933333pt;}
.yd4{bottom:913.733333pt;}
.yae{bottom:916.133333pt;}
.yf2{bottom:921.733333pt;}
.y3f{bottom:922.693333pt;}
.y71{bottom:924.133333pt;}
.y16e{bottom:925.573333pt;}
.yd3{bottom:932.133333pt;}
.yf{bottom:932.613333pt;}
.yf1{bottom:940.133333pt;}
.y111{bottom:940.933333pt;}
.y16c{bottom:942.053333pt;}
.yad{bottom:942.213333pt;}
.y70{bottom:942.533333pt;}
.y3e{bottom:945.733333pt;}
.y1ac{bottom:950.533333pt;}
.ye{bottom:952.773333pt;}
.y110{bottom:957.893333pt;}
.yd2{bottom:958.533333pt;}
.y6f{bottom:960.933333pt;}
.yac{bottom:968.933333pt;}
.y3d{bottom:969.093333pt;}
.yd{bottom:973.093333pt;}
.y168{bottom:973.413333pt;}
.y10e{bottom:974.853333pt;}
.yd1{bottom:976.933333pt;}
.y6e{bottom:987.013333pt;}
.y143{bottom:987.333333pt;}
.y10c{bottom:991.813333pt;}
.y3c{bottom:992.453333pt;}
.yc{bottom:993.253333pt;}
.yab{bottom:995.333333pt;}
.y6d{bottom:1013.440000pt;}
.yb{bottom:1013.600000pt;}
.yaa{bottom:1013.760000pt;}
.y3b{bottom:1015.840000pt;}
.y8c{bottom:1018.720000pt;}
.y35{bottom:1072.800000pt;}
.y1{bottom:1079.360000pt;}
.h2a{height:15.840000pt;}
.h2f{height:15.872000pt;}
.h2b{height:16.000000pt;}
.h2d{height:16.032000pt;}
.h25{height:16.160000pt;}
.h26{height:16.192000pt;}
.h24{height:16.320000pt;}
.h23{height:16.352000pt;}
.h22{height:18.720000pt;}
.h21{height:18.880000pt;}
.h20{height:18.912000pt;}
.h5{height:18.926250pt;}
.h10{height:20.160000pt;}
.h17{height:20.717813pt;}
.h32{height:22.560000pt;}
.h31{height:22.720000pt;}
.h33{height:22.752000pt;}
.h2e{height:30.560000pt;}
.h29{height:30.720000pt;}
.h1f{height:33.918750pt;}
.h4{height:37.401875pt;}
.h34{height:37.920000pt;}
.h1e{height:42.084375pt;}
.h7{height:42.656250pt;}
.h1d{height:43.215000pt;}
.h28{height:43.344000pt;}
.h3{height:45.062500pt;}
.h2c{height:46.080000pt;}
.h13{height:52.108498pt;}
.h16{height:52.108573pt;}
.hf{height:52.134375pt;}
.h11{height:53.535000pt;}
.h1a{height:57.375000pt;}
.h1b{height:57.787500pt;}
.h14{height:62.781250pt;}
.ha{height:62.812500pt;}
.h18{height:64.500000pt;}
.h1c{height:65.531250pt;}
.h19{height:66.625000pt;}
.h30{height:71.680000pt;}
.he{height:73.490625pt;}
.hd{height:75.465000pt;}
.hb{height:83.540625pt;}
.h6{height:106.640625pt;}
.hc{height:107.715000pt;}
.h2{height:116.772480pt;}
.h8{height:120.468750pt;}
.h27{height:254.560000pt;}
.h12{height:702.333333pt;}
.h15{height:715.773333pt;}
.h9{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:17.760000pt;}
.w10{width:37.440000pt;}
.w4{width:59.392000pt;}
.w12{width:74.880000pt;}
.w13{width:74.912000pt;}
.w14{width:75.072000pt;}
.wd{width:102.720000pt;}
.wf{width:111.840000pt;}
.wb{width:112.160000pt;}
.w8{width:112.320000pt;}
.we{width:113.152000pt;}
.w11{width:150.586667pt;}
.wc{width:236.386667pt;}
.w9{width:452.573333pt;}
.wa{width:509.280000pt;}
.w7{width:565.693333pt;}
.w6{width:793.759976pt;}
.w3{width:793.759988pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x76{left:4.320000pt;}
.x3b{left:6.880000pt;}
.x7a{left:7.840000pt;}
.x5e{left:9.120000pt;}
.x3e{left:11.360000pt;}
.x24{left:12.800000pt;}
.x5b{left:15.360000pt;}
.x70{left:16.480000pt;}
.x7c{left:18.240000pt;}
.x22{left:19.680000pt;}
.x28{left:20.640000pt;}
.x6d{left:22.120000pt;}
.x3d{left:23.080000pt;}
.x7d{left:24.800000pt;}
.x6e{left:27.880000pt;}
.x6f{left:29.000000pt;}
.x71{left:31.880000pt;}
.x5d{left:34.280000pt;}
.x45{left:36.680000pt;}
.x2{left:37.760000pt;}
.x5a{left:39.080000pt;}
.x72{left:40.360000pt;}
.x5c{left:42.600000pt;}
.x4f{left:44.733333pt;}
.x6a{left:45.960000pt;}
.x3f{left:46.920000pt;}
.x51{left:48.346667pt;}
.x62{left:50.440000pt;}
.x41{left:52.040000pt;}
.x61{left:55.080000pt;}
.x56{left:56.154667pt;}
.x4e{left:57.373333pt;}
.x37{left:58.394667pt;}
.x38{left:59.834667pt;}
.x68{left:63.240000pt;}
.x64{left:66.920000pt;}
.x40{left:68.360000pt;}
.x35{left:70.554667pt;}
.x50{left:71.613333pt;}
.x52{left:74.106667pt;}
.x33{left:75.994667pt;}
.x67{left:80.200000pt;}
.x65{left:82.120000pt;}
.x66{left:83.560000pt;}
.x69{left:84.840000pt;}
.x43{left:87.240000pt;}
.x6c{left:88.840000pt;}
.x63{left:91.880000pt;}
.x36{left:95.194667pt;}
.x44{left:97.160000pt;}
.x60{left:100.360000pt;}
.x6b{left:101.480000pt;}
.x5f{left:103.720000pt;}
.x20{left:113.471988pt;}
.x42{left:115.080000pt;}
.x31{left:117.791988pt;}
.x34{left:122.074667pt;}
.x12{left:123.071988pt;}
.x53{left:124.826667pt;}
.x15{left:127.071988pt;}
.x29{left:132.351988pt;}
.x18{left:134.906655pt;}
.x4d{left:137.213333pt;}
.x47{left:141.760000pt;}
.xd{left:144.986655pt;}
.xa{left:151.386655pt;}
.x73{left:160.666655pt;}
.x26{left:162.746655pt;}
.x4{left:184.320000pt;}
.x25{left:212.026655pt;}
.x54{left:214.466667pt;}
.x1f{left:219.226655pt;}
.x9{left:223.066655pt;}
.x57{left:226.266667pt;}
.x3c{left:227.226667pt;}
.x7e{left:228.506655pt;}
.x55{left:229.506667pt;}
.x3a{left:234.106655pt;}
.x1e{left:242.906655pt;}
.x11{left:244.826655pt;}
.x13{left:249.506655pt;}
.xe{left:256.226655pt;}
.x2e{left:258.466643pt;}
.x19{left:259.746655pt;}
.x17{left:261.026655pt;}
.x2f{left:263.906655pt;}
.x1a{left:269.506655pt;}
.x10{left:271.266655pt;}
.xb{left:276.066655pt;}
.x6{left:277.346655pt;}
.x32{left:278.626655pt;}
.xc{left:282.306655pt;}
.x74{left:293.506643pt;}
.x75{left:298.946655pt;}
.x77{left:302.946667pt;}
.x39{left:304.226655pt;}
.x1c{left:305.986655pt;}
.x1b{left:307.426655pt;}
.x8{left:310.626655pt;}
.x2a{left:312.546655pt;}
.xf{left:323.746655pt;}
.x14{left:325.826655pt;}
.x16{left:328.706655pt;}
.x2b{left:331.426655pt;}
.x7{left:334.466655pt;}
.x1{left:363.520000pt;}
.x4b{left:369.146667pt;}
.x78{left:378.626667pt;}
.x4a{left:384.666667pt;}
.x4c{left:395.706667pt;}
.x5{left:396.960000pt;}
.x48{left:412.346667pt;}
.x49{left:427.386667pt;}
.x1d{left:440.093322pt;}
.x79{left:454.173333pt;}
.x58{left:463.293333pt;}
.x2c{left:511.613322pt;}
.x30{left:517.853322pt;}
.x2d{left:530.493322pt;}
.x59{left:566.653333pt;}
.x7b{left:605.413333pt;}
.x3{left:612.960000pt;}
.x46{left:651.973322pt;}
.x21{left:707.493333pt;}
.x23{left:728.133333pt;}
.x27{left:729.093333pt;}
}




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