
    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_91ce59cbaecb6cf4e06c7ed8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_99e7d987a38fada43b1aac52.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_03ece31139170748384cb344.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cab757f4fe2a573664e3b58c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d97aaae8372bbe6af8b45d62.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b3d785bef45e3cefe2cd5523.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_ebdc8ca656ddd0780fcd1f3a.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-85.680000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-4.500000px;}
.ls1a{letter-spacing:-4.242000px;}
.ls19{letter-spacing:-3.018000px;}
.ls8{letter-spacing:-2.250000px;}
.lsa{letter-spacing:-2.016000px;}
.ls1e{letter-spacing:-1.740000px;}
.ls9{letter-spacing:-1.530000px;}
.ls4{letter-spacing:-1.476000px;}
.ls15{letter-spacing:-1.128000px;}
.ls22{letter-spacing:-1.026000px;}
.lsd{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-0.468000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.762000px;}
.lsc{letter-spacing:1.128000px;}
.lsb{letter-spacing:2.484000px;}
.ls11{letter-spacing:2.760000px;}
.ls20{letter-spacing:3.375000px;}
.ls14{letter-spacing:3.378000px;}
.ls5{letter-spacing:3.492000px;}
.ls2{letter-spacing:4.500000px;}
.lse{letter-spacing:4.560000px;}
.ls1b{letter-spacing:7.875000px;}
.ls13{letter-spacing:12.360000px;}
.ls1d{letter-spacing:12.375000px;}
.ls1c{letter-spacing:15.237000px;}
.ls18{letter-spacing:15.417000px;}
.ls12{letter-spacing:21.360000px;}
.ls10{letter-spacing:21.375000px;}
.lsf{letter-spacing:33.207000px;}
.ls16{letter-spacing:37.707000px;}
.ls1f{letter-spacing:42.207000px;}
.ls1{letter-spacing:45.060000px;}
.ls17{letter-spacing:46.917000px;}
.ls23{letter-spacing:52.164000px;}
.ls21{letter-spacing:98.055000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.637000px;}
.ws3{word-spacing:-17.532000px;}
.wsa{word-spacing:-17.385000px;}
.ws9{word-spacing:-16.992000px;}
.ws8{word-spacing:-16.875000px;}
.ws4{word-spacing:-16.524000px;}
.ws7{word-spacing:-15.345000px;}
.ws6{word-spacing:-14.625000px;}
.wsf{word-spacing:-13.599000px;}
.ws2{word-spacing:-13.500000px;}
.wse{word-spacing:-12.885000px;}
.wsb{word-spacing:-12.375000px;}
.wsc{word-spacing:-11.607000px;}
.wsd{word-spacing:-10.383000px;}
.ws0{word-spacing:0.000000px;}
._34{margin-left:-17.310750px;}
._c{margin-left:-13.839450px;}
._42{margin-left:-11.016000px;}
._33{margin-left:-8.531100px;}
._3{margin-left:-7.451550px;}
._e{margin-left:-6.318750px;}
._4{margin-left:-5.300400px;}
._7{margin-left:-3.877200px;}
._5{margin-left:-2.766750px;}
._2{margin-left:-1.713000px;}
._0{width:1.199100px;}
._1{width:2.398200px;}
._a{width:3.445200px;}
._1a{width:4.477200px;}
._6{width:5.481600px;}
._8{width:6.486750px;}
._23{width:7.651650px;}
._f{width:8.928000px;}
._9{width:10.076100px;}
._31{width:11.300700px;}
._1d{width:12.472200px;}
._11{width:13.579950px;}
._32{width:15.602100px;}
._1f{width:16.974000px;}
._1e{width:19.260150px;}
._b{width:21.444750px;}
._10{width:22.779300px;}
._24{width:23.822400px;}
._30{width:25.216200px;}
._1c{width:26.247150px;}
._12{width:27.269400px;}
._27{width:28.466850px;}
._29{width:29.502600px;}
._13{width:31.426650px;}
._14{width:32.454900px;}
._1b{width:35.151300px;}
._17{width:36.372900px;}
._26{width:37.380450px;}
._25{width:39.649650px;}
._16{width:40.774050px;}
._28{width:44.188050px;}
._20{width:45.200250px;}
._18{width:48.719700px;}
._19{width:50.418450px;}
._22{width:53.316150px;}
._15{width:54.366450px;}
._2e{width:55.665600px;}
._2d{width:59.467950px;}
._2a{width:63.651300px;}
._2b{width:72.035100px;}
._2c{width:73.255350px;}
._40{width:80.259150px;}
._3a{width:89.055000px;}
._35{width:93.822450px;}
._37{width:125.543100px;}
._3c{width:138.954600px;}
._41{width:146.985600px;}
._3e{width:148.269750px;}
._3f{width:157.060350px;}
._39{width:196.995000px;}
._3b{width:198.135000px;}
._38{width:201.675000px;}
._2f{width:235.352700px;}
._3d{width:459.031650px;}
._d{width:847.200000px;}
._36{width:850.575000px;}
._21{width:869.554350px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:58.500000px;}
.fs4{font-size:67.500000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:85.650000px;}
.fs2{font-size:130.650000px;}
.fs3{font-size:144.150000px;}
.y0{bottom:0.000000px;}
.y1f2{bottom:3.375000px;}
.y144{bottom:4.500000px;}
.y1f8{bottom:4.515000px;}
.y141{bottom:5.625000px;}
.y147{bottom:5.640000px;}
.y16d{bottom:5.670000px;}
.yb1{bottom:7.875000px;}
.ycb{bottom:7.890000px;}
.yd8{bottom:7.905000px;}
.yb0{bottom:7.920000px;}
.yb8{bottom:9.000000px;}
.yd4{bottom:9.015000px;}
.yc2{bottom:9.030000px;}
.ybc{bottom:9.045000px;}
.yeb{bottom:12.375000px;}
.y19b{bottom:13.500000px;}
.y140{bottom:14.625000px;}
.y148{bottom:14.640000px;}
.y152{bottom:14.655000px;}
.y153{bottom:14.670000px;}
.y156{bottom:15.750000px;}
.y14c{bottom:15.765000px;}
.y163{bottom:15.780000px;}
.y167{bottom:15.787500px;}
.y1b7{bottom:17.985000px;}
.y9d{bottom:18.000000px;}
.y1bc{bottom:18.015000px;}
.ya0{bottom:18.045000px;}
.y99{bottom:19.125000px;}
.y1ab{bottom:19.140000px;}
.ya3{bottom:19.155000px;}
.y9e{bottom:19.170000px;}
.y1e5{bottom:20.250000px;}
.y1c4{bottom:21.375000px;}
.y1cd{bottom:21.390000px;}
.y1c1{bottom:21.405000px;}
.y1c6{bottom:21.420000px;}
.y143{bottom:23.625000px;}
.y162{bottom:23.655000px;}
.y14f{bottom:23.670000px;}
.y121{bottom:24.750000px;}
.y146{bottom:24.765000px;}
.y151{bottom:24.780000px;}
.y166{bottom:24.787500px;}
.y14b{bottom:24.795000px;}
.y19f{bottom:25.920000px;}
.yaa{bottom:29.250000px;}
.yca{bottom:29.265000px;}
.ya4{bottom:29.280000px;}
.ya7{bottom:29.295000px;}
.y19c{bottom:30.375000px;}
.yd7{bottom:30.405000px;}
.ybe{bottom:30.412500px;}
.yae{bottom:30.420000px;}
.y1a1{bottom:33.750000px;}
.y15f{bottom:33.795000px;}
.y123{bottom:36.030000px;}
.y9b{bottom:36.045000px;}
.ya9{bottom:38.265000px;}
.ya2{bottom:38.280000px;}
.ya6{bottom:38.295000px;}
.y126{bottom:39.412500px;}
.y1cb{bottom:40.500000px;}
.y1ec{bottom:40.530000px;}
.y1c3{bottom:40.545000px;}
.y1e3{bottom:41.655000px;}
.y1d6{bottom:41.670000px;}
.y17{bottom:42.795000px;}
.y160{bottom:43.920000px;}
.y19e{bottom:47.280000px;}
.y1a0{bottom:51.795000px;}
.y98{bottom:52.920000px;}
.yb6{bottom:54.030000px;}
.ybb{bottom:54.045000px;}
.y204{bottom:55.170000px;}
.yd1{bottom:56.340000px;}
.y1a{bottom:57.412500px;}
.y161{bottom:63.075000px;}
.y120{bottom:64.170000px;}
.y1aa{bottom:75.420000px;}
.yc7{bottom:76.530000px;}
.y19{bottom:77.700000px;}
.yd0{bottom:77.715000px;}
.y203{bottom:78.825000px;}
.y16{bottom:83.340000px;}
.yc6{bottom:97.950000px;}
.y1a9{bottom:97.965000px;}
.ycf{bottom:100.245000px;}
.ye9{bottom:102.450000px;}
.y86{bottom:110.362500px;}
.y125{bottom:111.487500px;}
.y1d8{bottom:112.612500px;}
.y13e{bottom:113.737500px;}
.yef{bottom:114.862500px;}
.y67{bottom:119.362500px;}
.yc5{bottom:120.495000px;}
.ybd{bottom:121.612500px;}
.yce{bottom:121.620000px;}
.y7d{bottom:123.862500px;}
.y97{bottom:124.987500px;}
.y173{bottom:132.862500px;}
.y46{bottom:137.362500px;}
.y165{bottom:139.612500px;}
.y15{bottom:139.620000px;}
.y8c{bottom:141.862500px;}
.y175{bottom:142.987500px;}
.y202{bottom:144.105000px;}
.yee{bottom:146.362500px;}
.y1d7{bottom:148.650000px;}
.y66{bottom:150.900000px;}
.y13d{bottom:154.275000px;}
.y7c{bottom:155.400000px;}
.y96{bottom:156.525000px;}
.y12{bottom:158.775000px;}
.y1fe{bottom:162.150000px;}
.y172{bottom:163.275000px;}
.yba{bottom:165.525000px;}
.ye1{bottom:166.650000px;}
.y45{bottom:167.775000px;}
.y116{bottom:168.900000px;}
.y8b{bottom:173.400000px;}
.yed{bottom:176.775000px;}
.y164{bottom:179.025000px;}
.y65{bottom:182.400000px;}
.y1d5{bottom:183.525000px;}
.y187{bottom:184.650000px;}
.y7b{bottom:185.775000px;}
.yda{bottom:186.900000px;}
.y14{bottom:188.025000px;}
.y13c{bottom:193.695000px;}
.y177{bottom:194.820000px;}
.y11{bottom:195.945000px;}
.y1a7{bottom:197.070000px;}
.y102{bottom:199.320000px;}
.y115{bottom:200.445000px;}
.y8a{bottom:203.820000px;}
.y44{bottom:208.320000px;}
.yb9{bottom:210.570000px;}
.y64{bottom:212.820000px;}
.y1ee{bottom:213.945000px;}
.y1a6{bottom:215.070000px;}
.yf7{bottom:217.320000px;}
.y201{bottom:219.555000px;}
.y122{bottom:219.570000px;}
.y13b{bottom:225.195000px;}
.y7a{bottom:226.320000px;}
.y1a5{bottom:228.570000px;}
.y101{bottom:229.695000px;}
.y114{bottom:230.820000px;}
.yb5{bottom:233.100000px;}
.y10{bottom:234.225000px;}
.y89{bottom:235.350000px;}
.y43{bottom:239.850000px;}
.y200{bottom:242.100000px;}
.y63{bottom:244.350000px;}
.y194{bottom:246.600000px;}
.yf6{bottom:247.725000px;}
.y124{bottom:252.225000px;}
.yb7{bottom:255.600000px;}
.y13a{bottom:256.725000px;}
.y113{bottom:262.350000px;}
.y79{bottom:265.725000px;}
.y42{bottom:270.225000px;}
.yf{bottom:272.475000px;}
.y1d4{bottom:274.755000px;}
.y62{bottom:274.770000px;}
.y1ff{bottom:275.850000px;}
.y1a4{bottom:277.005000px;}
.yb4{bottom:279.255000px;}
.y1ed{bottom:283.755000px;}
.y11f{bottom:286.005000px;}
.y139{bottom:287.130000px;}
.yf5{bottom:288.270000px;}
.y112{bottom:292.755000px;}
.y15e{bottom:295.005000px;}
.y78{bottom:297.255000px;}
.yb2{bottom:301.755000px;}
.y41{bottom:301.770000px;}
.y1a3{bottom:304.005000px;}
.yec{bottom:305.145000px;}
.y61{bottom:306.255000px;}
.ye{bottom:309.630000px;}
.y100{bottom:310.755000px;}
.y176{bottom:315.270000px;}
.y138{bottom:318.675000px;}
.yf4{bottom:319.800000px;}
.ye8{bottom:320.925000px;}
.yb3{bottom:324.300000px;}
.y193{bottom:326.550000px;}
.y171{bottom:327.675000px;}
.y77{bottom:328.800000px;}
.y1a2{bottom:331.050000px;}
.y40{bottom:332.175000px;}
.y85{bottom:337.800000px;}
.yff{bottom:341.175000px;}
.y60{bottom:346.800000px;}
.yd{bottom:347.925000px;}
.yf3{bottom:350.175000px;}
.y111{bottom:355.800000px;}
.y137{bottom:358.080000px;}
.y76{bottom:359.220000px;}
.y3f{bottom:363.705000px;}
.y186{bottom:367.080000px;}
.y84{bottom:368.205000px;}
.yad{bottom:369.330000px;}
.yea{bottom:370.455000px;}
.yfe{bottom:372.720000px;}
.y5f{bottom:377.205000px;}
.y1eb{bottom:380.580000px;}
.yf2{bottom:381.705000px;}
.yc{bottom:383.955000px;}
.y110{bottom:386.220000px;}
.y75{bottom:390.705000px;}
.yaf{bottom:391.830000px;}
.y3e{bottom:395.205000px;}
.y15d{bottom:396.345000px;}
.y136{bottom:398.580000px;}
.y83{bottom:399.750000px;}
.y1ea{bottom:400.875000px;}
.yfd{bottom:403.125000px;}
.y192{bottom:406.500000px;}
.y5e{bottom:408.750000px;}
.ye7{bottom:414.375000px;}
.y10f{bottom:417.750000px;}
.yb{bottom:421.125000px;}
.y3d{bottom:425.625000px;}
.y19d{bottom:427.875000px;}
.y82{bottom:430.125000px;}
.y15c{bottom:435.750000px;}
.ye0{bottom:436.875000px;}
.y5d{bottom:439.125000px;}
.yfc{bottom:443.670000px;}
.y191{bottom:447.045000px;}
.y10e{bottom:448.155000px;}
.y1b0{bottom:450.420000px;}
.y1e9{bottom:451.530000px;}
.y74{bottom:452.670000px;}
.y1d3{bottom:453.780000px;}
.y3c{bottom:457.170000px;}
.ya{bottom:458.280000px;}
.ye6{bottom:459.405000px;}
.y135{bottom:460.545000px;}
.y81{bottom:461.655000px;}
.y1be{bottom:465.030000px;}
.y15b{bottom:466.170000px;}
.y1fd{bottom:467.295000px;}
.y185{bottom:469.545000px;}
.y5c{bottom:470.670000px;}
.yfb{bottom:475.155000px;}
.yac{bottom:478.530000px;}
.y10d{bottom:479.670000px;}
.ye5{bottom:481.905000px;}
.y73{bottom:484.200000px;}
.y190{bottom:486.450000px;}
.y3b{bottom:487.575000px;}
.y134{bottom:492.075000px;}
.y80{bottom:493.200000px;}
.y15a{bottom:495.450000px;}
.y9{bottom:496.575000px;}
.y1bd{bottom:497.700000px;}
.y5b{bottom:502.200000px;}
.ye4{bottom:504.450000px;}
.yfa{bottom:505.575000px;}
.y1d2{bottom:508.950000px;}
.y184{bottom:510.075000px;}
.y10c{bottom:511.200000px;}
.y1e8{bottom:512.325000px;}
.yab{bottom:513.450000px;}
.y72{bottom:514.575000px;}
.y3a{bottom:519.075000px;}
.y133{bottom:522.450000px;}
.y7f{bottom:523.575000px;}
.y159{bottom:525.825000px;}
.ye3{bottom:526.980000px;}
.y18f{bottom:526.995000px;}
.ya8{bottom:529.230000px;}
.y1fc{bottom:529.245000px;}
.y1bb{bottom:531.480000px;}
.y5a{bottom:532.620000px;}
.y8{bottom:534.855000px;}
.y183{bottom:540.495000px;}
.y19a{bottom:541.605000px;}
.y13{bottom:546.105000px;}
.y71{bottom:546.120000px;}
.ye2{bottom:550.605000px;}
.y39{bottom:550.620000px;}
.y132{bottom:553.995000px;}
.y92{bottom:555.105000px;}
.y1fb{bottom:561.855000px;}
.y1e7{bottom:562.980000px;}
.y1ba{bottom:564.105000px;}
.y59{bottom:564.120000px;}
.y158{bottom:566.370000px;}
.y18e{bottom:567.495000px;}
.y1d1{bottom:570.900000px;}
.y182{bottom:572.025000px;}
.y7{bottom:573.150000px;}
.yf9{bottom:576.525000px;}
.y38{bottom:581.025000px;}
.y10b{bottom:582.150000px;}
.ya5{bottom:583.275000px;}
.y70{bottom:585.525000px;}
.y1d0{bottom:590.025000px;}
.y199{bottom:591.150000px;}
.y157{bottom:592.275000px;}
.y58{bottom:594.525000px;}
.ydf{bottom:595.650000px;}
.y1b9{bottom:596.775000px;}
.y1e6{bottom:597.900000px;}
.y174{bottom:603.525000px;}
.y18d{bottom:606.900000px;}
.yf8{bottom:608.025000px;}
.y6{bottom:611.445000px;}
.y10a{bottom:612.570000px;}
.y131{bottom:615.945000px;}
.y6f{bottom:617.070000px;}
.yd9{bottom:618.180000px;}
.yde{bottom:618.195000px;}
.y37{bottom:621.570000px;}
.y57{bottom:626.070000px;}
.y155{bottom:630.570000px;}
.yf1{bottom:635.070000px;}
.ya1{bottom:637.320000px;}
.y11e{bottom:639.570000px;}
.ydd{bottom:640.695000px;}
.y181{bottom:642.945000px;}
.y109{bottom:644.070000px;}
.y130{bottom:647.445000px;}
.y6e{bottom:648.570000px;}
.y5{bottom:649.695000px;}
.y1fa{bottom:650.820000px;}
.y1cf{bottom:651.945000px;}
.y1e4{bottom:654.225000px;}
.y56{bottom:657.600000px;}
.y36{bottom:660.975000px;}
.y1f9{bottom:663.225000px;}
.y1ce{bottom:665.475000px;}
.yf0{bottom:666.600000px;}
.y11d{bottom:669.975000px;}
.y180{bottom:674.475000px;}
.y108{bottom:675.600000px;}
.y12f{bottom:677.850000px;}
.y6d{bottom:678.975000px;}
.y1b8{bottom:680.100000px;}
.y4{bottom:684.600000px;}
.y18c{bottom:686.850000px;}
.y88{bottom:687.975000px;}
.y1e2{bottom:689.100000px;}
.y9f{bottom:691.350000px;}
.y35{bottom:692.475000px;}
.y198{bottom:693.600000px;}
.y55{bottom:697.005000px;}
.y1cc{bottom:701.505000px;}
.y107{bottom:706.020000px;}
.y154{bottom:708.255000px;}
.y12e{bottom:709.395000px;}
.y6c{bottom:710.505000px;}
.y17f{bottom:713.880000px;}
.y1f7{bottom:715.005000px;}
.y3{bottom:719.520000px;}
.y9a{bottom:724.005000px;}
.y18b{bottom:727.380000px;}
.y54{bottom:728.505000px;}
.ydc{bottom:729.630000px;}
.y34{bottom:733.020000px;}
.y106{bottom:737.550000px;}
.y170{bottom:739.800000px;}
.y6b{bottom:740.925000px;}
.y1e1{bottom:744.300000px;}
.y17e{bottom:745.425000px;}
.y87{bottom:749.925000px;}
.y1f6{bottom:751.050000px;}
.ydb{bottom:752.175000px;}
.y2{bottom:753.300000px;}
.y9c{bottom:757.800000px;}
.y53{bottom:758.925000px;}
.y33{bottom:763.425000px;}
.y150{bottom:766.800000px;}
.y26{bottom:767.925000px;}
.y16f{bottom:769.050000px;}
.y12d{bottom:771.300000px;}
.y11c{bottom:772.425000px;}
.yd6{bottom:774.675000px;}
.y1e0{bottom:780.330000px;}
.y6a{bottom:781.455000px;}
.y17d{bottom:785.955000px;}
.y52{bottom:790.455000px;}
.y1ca{bottom:792.705000px;}
.y32{bottom:794.955000px;}
.y1b6{bottom:797.220000px;}
.y105{bottom:799.455000px;}
.y11b{bottom:803.955000px;}
.y14e{bottom:806.205000px;}
.y18a{bottom:807.330000px;}
.y12c{bottom:809.580000px;}
.y25{bottom:811.830000px;}
.y91{bottom:812.955000px;}
.y17c{bottom:816.330000px;}
.ycd{bottom:818.580000px;}
.y16e{bottom:819.705000px;}
.y197{bottom:820.830000px;}
.y51{bottom:822.000000px;}
.y31{bottom:825.375000px;}
.y1c9{bottom:828.750000px;}
.y1b5{bottom:829.875000px;}
.y104{bottom:831.000000px;}
.y11a{bottom:834.375000px;}
.y24{bottom:841.125000px;}
.y95{bottom:843.375000px;}
.y14d{bottom:844.500000px;}
.y189{bottom:847.875000px;}
.y1df{bottom:851.250000px;}
.y50{bottom:852.375000px;}
.y30{bottom:856.875000px;}
.y1f5{bottom:860.250000px;}
.y103{bottom:861.375000px;}
.y1b4{bottom:862.500000px;}
.yd5{bottom:863.670000px;}
.y119{bottom:865.920000px;}
.y1a8{bottom:869.280000px;}
.y23{bottom:871.545000px;}
.y94{bottom:874.920000px;}
.y14a{bottom:882.780000px;}
.y4f{bottom:883.920000px;}
.yd3{bottom:886.155000px;}
.y1de{bottom:887.280000px;}
.y17b{bottom:887.295000px;}
.y12b{bottom:888.405000px;}
.y2f{bottom:888.420000px;}
.y1f4{bottom:890.670000px;}
.y90{bottom:892.920000px;}
.y1b3{bottom:896.280000px;}
.y118{bottom:896.295000px;}
.y1c8{bottom:899.655000px;}
.y22{bottom:900.795000px;}
.y93{bottom:905.325000px;}
.yd2{bottom:909.825000px;}
.y4e{bottom:914.325000px;}
.y2e{bottom:918.825000px;}
.y149{bottom:922.200000px;}
.y8f{bottom:923.325000px;}
.y17a{bottom:927.825000px;}
.y1b2{bottom:928.950000px;}
.y21{bottom:931.200000px;}
.ycc{bottom:932.325000px;}
.y1c7{bottom:934.575000px;}
.y117{bottom:936.825000px;}
.y1f3{bottom:940.200000px;}
.y12a{bottom:942.450000px;}
.y16c{bottom:943.575000px;}
.y4d{bottom:945.825000px;}
.y2d{bottom:950.370000px;}
.yc4{bottom:954.855000px;}
.y8e{bottom:954.870000px;}
.y1dd{bottom:958.230000px;}
.y179{bottom:959.370000px;}
.y145{bottom:960.480000px;}
.y20{bottom:960.495000px;}
.y1b1{bottom:961.605000px;}
.y188{bottom:968.370000px;}
.y1c5{bottom:970.605000px;}
.y4c{bottom:977.370000px;}
.y2c{bottom:980.745000px;}
.y16b{bottom:981.855000px;}
.y8d{bottom:986.370000px;}
.y1f{bottom:990.900000px;}
.y1dc{bottom:994.275000px;}
.y129{bottom:995.400000px;}
.yc9{bottom:998.775000px;}
.y142{bottom:999.900000px;}
.y16a{bottom:1002.150000px;}
.y1c2{bottom:1006.650000px;}
.y4b{bottom:1007.775000px;}
.y1af{bottom:1010.025000px;}
.y2b{bottom:1012.275000px;}
.y7e{bottom:1016.775000px;}
.y1e{bottom:1020.150000px;}
.yc8{bottom:1021.275000px;}
.y196{bottom:1029.150000px;}
.y178{bottom:1030.275000px;}
.y13f{bottom:1038.195000px;}
.y4a{bottom:1039.320000px;}
.y169{bottom:1040.445000px;}
.y2a{bottom:1043.820000px;}
.y69{bottom:1048.320000px;}
.y128{bottom:1049.445000px;}
.y1d{bottom:1050.570000px;}
.y1f1{bottom:1051.695000px;}
.y1db{bottom:1056.195000px;}
.y195{bottom:1060.695000px;}
.y1c0{bottom:1061.820000px;}
.yc3{bottom:1066.320000px;}
.y49{bottom:1069.695000px;}
.y29{bottom:1074.225000px;}
.y1da{bottom:1075.350000px;}
.y68{bottom:1078.725000px;}
.y1c{bottom:1079.850000px;}
.yc0{bottom:1088.850000px;}
.y1f0{bottom:1093.350000px;}
.y1d9{bottom:1095.600000px;}
.y48{bottom:1101.225000px;}
.y127{bottom:1103.475000px;}
.y28{bottom:1105.725000px;}
.y1ae{bottom:1109.100000px;}
.y1b{bottom:1110.225000px;}
.yc1{bottom:1111.350000px;}
.y1ef{bottom:1112.475000px;}
.y168{bottom:1118.130000px;}
.y1bf{bottom:1123.755000px;}
.y1ad{bottom:1126.005000px;}
.ybf{bottom:1133.880000px;}
.y47{bottom:1140.630000px;}
.y1{bottom:1141.755000px;}
.y27{bottom:1142.880000px;}
.y1ac{bottom:1144.005000px;}
.y18{bottom:1194.675000px;}
.h27{height:19.125000px;}
.h2a{height:19.162500px;}
.h14{height:21.375000px;}
.h13{height:21.412500px;}
.h1d{height:22.485000px;}
.h18{height:22.500000px;}
.h17{height:22.537500px;}
.h21{height:25.875000px;}
.h30{height:25.912500px;}
.h39{height:31.500000px;}
.h37{height:31.522500px;}
.he{height:31.537500px;}
.h36{height:32.625000px;}
.hf{height:32.662500px;}
.h3e{height:33.750000px;}
.h40{height:33.772500px;}
.h3b{height:34.860000px;}
.h3c{height:34.875000px;}
.h3a{height:34.912500px;}
.h2b{height:37.125000px;}
.h26{height:37.162500px;}
.h2c{height:38.235000px;}
.h29{height:38.250000px;}
.h25{height:38.287500px;}
.h1b{height:42.787500px;}
.h12{height:43.912500px;}
.h31{height:47.287500px;}
.h32{height:48.412500px;}
.h34{height:48.450000px;}
.h38{height:49.537500px;}
.h42{height:51.787500px;}
.h10{height:52.897500px;}
.h11{height:52.912500px;}
.h24{height:52.950000px;}
.h23{height:54.037500px;}
.h3f{height:54.075000px;}
.h41{height:55.162500px;}
.h3d{height:55.200000px;}
.h43{height:57.385986px;}
.h2e{height:57.414551px;}
.h2d{height:58.957031px;}
.h2f{height:60.128782px;}
.h9{height:64.546875px;}
.hc{height:65.325000px;}
.hd{height:66.247559px;}
.h15{height:66.450000px;}
.h16{height:67.537500px;}
.h19{height:67.575000px;}
.ha{height:68.662500px;}
.h33{height:69.787500px;}
.hb{height:70.628906px;}
.h2{height:70.664062px;}
.h8{height:72.562500px;}
.h45{height:74.004654px;}
.h46{height:74.953125px;}
.h28{height:76.575000px;}
.h22{height:79.950000px;}
.h4{height:84.060791px;}
.h3{height:86.319141px;}
.h20{height:115.950000px;}
.h6{height:128.225830px;}
.h1a{height:133.987500px;}
.h1c{height:135.150000px;}
.h35{height:136.237500px;}
.h7{height:145.276172px;}
.h1f{height:180.180000px;}
.h1e{height:200.400000px;}
.h5{height:203.820000px;}
.h44{height:291.630000px;}
.h47{height:1263.000000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w45{width:22.500000px;}
.w46{width:22.537500px;}
.w42{width:23.625000px;}
.w41{width:23.662500px;}
.w40{width:24.787500px;}
.w47{width:30.412500px;}
.w43{width:32.662500px;}
.w23{width:51.825000px;}
.w25{width:54.075000px;}
.w26{width:55.200000px;}
.w39{width:58.575000px;}
.w3d{width:59.700000px;}
.wa{width:63.075000px;}
.w14{width:64.200000px;}
.wc{width:66.487500px;}
.w15{width:67.575000px;}
.w38{width:70.950000px;}
.wd{width:73.200000px;}
.w32{width:73.237500px;}
.w1a{width:74.362500px;}
.w8{width:75.487500px;}
.w21{width:76.575000px;}
.w1d{width:77.737500px;}
.w19{width:79.950000px;}
.w1b{width:79.987500px;}
.w33{width:81.112500px;}
.w9{width:82.200000px;}
.wb{width:82.237500px;}
.w37{width:84.487500px;}
.w2e{width:87.862500px;}
.w2a{width:88.987500px;}
.w10{width:90.112500px;}
.w12{width:92.362500px;}
.w7{width:93.487500px;}
.w36{width:95.737500px;}
.w30{width:95.775000px;}
.w20{width:96.862500px;}
.w11{width:101.400000px;}
.w24{width:102.487500px;}
.w2c{width:103.612500px;}
.w22{width:103.650000px;}
.w1f{width:114.900000px;}
.w1e{width:116.025000px;}
.w1c{width:117.150000px;}
.w35{width:123.900000px;}
.w2b{width:126.187500px;}
.w3c{width:130.687500px;}
.w34{width:135.187500px;}
.w16{width:136.312500px;}
.w31{width:143.025000px;}
.w4{width:143.062500px;}
.w2d{width:147.562500px;}
.w2f{width:148.687500px;}
.w3a{width:167.850000px;}
.we{width:182.475000px;}
.wf{width:191.520000px;}
.w18{width:211.770000px;}
.w5{width:220.755000px;}
.w17{width:221.880000px;}
.w6{width:221.925000px;}
.w28{width:248.955000px;}
.w3b{width:279.330000px;}
.w48{width:381.870000px;}
.w3f{width:382.950000px;}
.w27{width:387.495000px;}
.w44{width:392.025000px;}
.w13{width:505.755000px;}
.w2{width:544.050000px;}
.w3e{width:636.450000px;}
.w29{width:637.575000px;}
.w49{width:647.700000px;}
.w3{width:679.230000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.w4a{width:894.000000px;}
.x0{left:0.000000px;}
.x85{left:6.795000px;}
.x17{left:7.912500px;}
.x2c{left:9.037500px;}
.x4c{left:10.170000px;}
.x4b{left:11.295000px;}
.x5b{left:12.420000px;}
.xd{left:13.500000px;}
.x2a{left:14.655000px;}
.x66{left:15.780000px;}
.x49{left:16.905000px;}
.x55{left:18.045000px;}
.x27{left:19.155000px;}
.x5c{left:20.280000px;}
.x24{left:21.405000px;}
.x28{left:22.500000px;}
.x29{left:23.670000px;}
.x48{left:24.735000px;}
.x45{left:25.905000px;}
.x21{left:27.045000px;}
.x2b{left:28.125000px;}
.x1f{left:29.295000px;}
.x1d{left:30.405000px;}
.x43{left:31.530000px;}
.x26{left:32.670000px;}
.x22{left:33.825000px;}
.x54{left:34.905000px;}
.x32{left:36.030000px;}
.x51{left:37.170000px;}
.x3c{left:38.280000px;}
.x37{left:39.405000px;}
.x33{left:40.575000px;}
.x35{left:41.655000px;}
.x1c{left:42.795000px;}
.x38{left:43.950000px;}
.x56{left:45.030000px;}
.x3a{left:46.155000px;}
.x5d{left:48.450000px;}
.x6f{left:49.575000px;}
.x39{left:50.700000px;}
.x53{left:54.075000px;}
.x52{left:55.200000px;}
.x7a{left:56.325000px;}
.x6b{left:58.530000px;}
.x3b{left:61.950000px;}
.x30{left:64.200000px;}
.x68{left:66.495000px;}
.x2e{left:68.745000px;}
.x42{left:79.980000px;}
.x19{left:83.355000px;}
.xc{left:111.525000px;}
.x3d{left:119.400000px;}
.x16{left:126.150000px;}
.x2{left:127.274987px;}
.x60{left:128.400000px;}
.x78{left:131.775000px;}
.x7d{left:136.312500px;}
.x3{left:141.937487px;}
.x10{left:144.187487px;}
.x7c{left:154.304987px;}
.xa{left:171.225000px;}
.x14{left:180.224987px;}
.x62{left:217.395000px;}
.x6d{left:220.770000px;}
.x5{left:237.674987px;}
.x5e{left:238.799987px;}
.x4a{left:244.425000px;}
.x40{left:255.720000px;}
.x7{left:260.204987px;}
.x18{left:269.220000px;}
.xb{left:271.470000px;}
.x4{left:284.999987px;}
.x9a{left:291.749987px;}
.x77{left:296.250000px;}
.x73{left:297.375000px;}
.x6e{left:301.875000px;}
.x67{left:305.250000px;}
.x2d{left:309.750000px;}
.x4d{left:322.170000px;}
.x11{left:324.404987px;}
.x44{left:335.670000px;}
.x8{left:337.904987px;}
.x63{left:343.575000px;}
.x1e{left:344.700000px;}
.x6{left:350.324987px;}
.xe{left:368.324987px;}
.x74{left:393.120000px;}
.x9{left:397.619987px;}
.x57{left:398.745000px;}
.x34{left:399.870000px;}
.x46{left:410.025000px;}
.x12{left:411.149987px;}
.x13{left:414.524987px;}
.x20{left:426.900000px;}
.x70{left:437.070000px;}
.x4e{left:438.195000px;}
.x1{left:446.069987px;}
.x64{left:447.195000px;}
.x69{left:453.945000px;}
.x41{left:477.600000px;}
.x1a{left:489.975000px;}
.x2f{left:501.270000px;}
.x58{left:502.395000px;}
.x91{left:511.395000px;}
.x61{left:517.020000px;}
.x7e{left:519.270000px;}
.x89{left:521.550000px;}
.x92{left:536.175000px;}
.x7f{left:544.050000px;}
.x8a{left:545.175000px;}
.x75{left:548.550000px;}
.x6a{left:549.720000px;}
.x71{left:551.970000px;}
.x4f{left:554.220000px;}
.x47{left:557.595000px;}
.x93{left:560.970000px;}
.x80{left:568.845000px;}
.x23{left:572.220000px;}
.x79{left:575.595000px;}
.x94{left:585.750000px;}
.x36{left:591.375000px;}
.x8b{left:592.500000px;}
.x81{left:593.625000px;}
.x65{left:594.750000px;}
.x76{left:607.125000px;}
.x95{left:610.530000px;}
.x8c{left:616.155000px;}
.x82{left:618.405000px;}
.x3e{left:625.155000px;}
.x96{left:634.155000px;}
.x25{left:638.700000px;}
.x8d{left:639.825000px;}
.x83{left:643.200000px;}
.x59{left:656.700000px;}
.x97{left:658.950000px;}
.x8e{left:663.450000px;}
.x84{left:667.950000px;}
.x50{left:669.120000px;}
.x72{left:675.870000px;}
.x31{left:683.745000px;}
.x8f{left:687.120000px;}
.x3f{left:689.370000px;}
.x5f{left:690.479987px;}
.x86{left:691.620000px;}
.x6c{left:692.745000px;}
.x7b{left:706.275000px;}
.x98{left:708.525000px;}
.x5a{left:710.775000px;}
.x1b{left:711.900000px;}
.x87{left:716.400000px;}
.x99{left:733.320000px;}
.x90{left:735.570000px;}
.x88{left:741.195000px;}
.x15{left:747.944987px;}
.xf{left:756.944987px;}
@media print{
.v1{vertical-align:-76.160000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-4.000000pt;}
.ls1a{letter-spacing:-3.770667pt;}
.ls19{letter-spacing:-2.682667pt;}
.ls8{letter-spacing:-2.000000pt;}
.lsa{letter-spacing:-1.792000pt;}
.ls1e{letter-spacing:-1.546667pt;}
.ls9{letter-spacing:-1.360000pt;}
.ls4{letter-spacing:-1.312000pt;}
.ls15{letter-spacing:-1.002667pt;}
.ls22{letter-spacing:-0.912000pt;}
.lsd{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.416000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.677333pt;}
.lsc{letter-spacing:1.002667pt;}
.lsb{letter-spacing:2.208000pt;}
.ls11{letter-spacing:2.453333pt;}
.ls20{letter-spacing:3.000000pt;}
.ls14{letter-spacing:3.002667pt;}
.ls5{letter-spacing:3.104000pt;}
.ls2{letter-spacing:4.000000pt;}
.lse{letter-spacing:4.053333pt;}
.ls1b{letter-spacing:7.000000pt;}
.ls13{letter-spacing:10.986667pt;}
.ls1d{letter-spacing:11.000000pt;}
.ls1c{letter-spacing:13.544000pt;}
.ls18{letter-spacing:13.704000pt;}
.ls12{letter-spacing:18.986667pt;}
.ls10{letter-spacing:19.000000pt;}
.lsf{letter-spacing:29.517333pt;}
.ls16{letter-spacing:33.517333pt;}
.ls1f{letter-spacing:37.517333pt;}
.ls1{letter-spacing:40.053333pt;}
.ls17{letter-spacing:41.704000pt;}
.ls23{letter-spacing:46.368000pt;}
.ls21{letter-spacing:87.160000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.677333pt;}
.ws3{word-spacing:-15.584000pt;}
.wsa{word-spacing:-15.453333pt;}
.ws9{word-spacing:-15.104000pt;}
.ws8{word-spacing:-15.000000pt;}
.ws4{word-spacing:-14.688000pt;}
.ws7{word-spacing:-13.640000pt;}
.ws6{word-spacing:-13.000000pt;}
.wsf{word-spacing:-12.088000pt;}
.ws2{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.453333pt;}
.wsb{word-spacing:-11.000000pt;}
.wsc{word-spacing:-10.317333pt;}
.wsd{word-spacing:-9.229333pt;}
.ws0{word-spacing:0.000000pt;}
._34{margin-left:-15.387333pt;}
._c{margin-left:-12.301733pt;}
._42{margin-left:-9.792000pt;}
._33{margin-left:-7.583200pt;}
._3{margin-left:-6.623600pt;}
._e{margin-left:-5.616667pt;}
._4{margin-left:-4.711467pt;}
._7{margin-left:-3.446400pt;}
._5{margin-left:-2.459333pt;}
._2{margin-left:-1.522667pt;}
._0{width:1.065867pt;}
._1{width:2.131733pt;}
._a{width:3.062400pt;}
._1a{width:3.979733pt;}
._6{width:4.872533pt;}
._8{width:5.766000pt;}
._23{width:6.801467pt;}
._f{width:7.936000pt;}
._9{width:8.956533pt;}
._31{width:10.045067pt;}
._1d{width:11.086400pt;}
._11{width:12.071067pt;}
._32{width:13.868533pt;}
._1f{width:15.088000pt;}
._1e{width:17.120133pt;}
._b{width:19.062000pt;}
._10{width:20.248267pt;}
._24{width:21.175467pt;}
._30{width:22.414400pt;}
._1c{width:23.330800pt;}
._12{width:24.239467pt;}
._27{width:25.303867pt;}
._29{width:26.224533pt;}
._13{width:27.934800pt;}
._14{width:28.848800pt;}
._1b{width:31.245600pt;}
._17{width:32.331467pt;}
._26{width:33.227067pt;}
._25{width:35.244133pt;}
._16{width:36.243600pt;}
._28{width:39.278267pt;}
._20{width:40.178000pt;}
._18{width:43.306400pt;}
._19{width:44.816400pt;}
._22{width:47.392133pt;}
._15{width:48.325733pt;}
._2e{width:49.480533pt;}
._2d{width:52.860400pt;}
._2a{width:56.578933pt;}
._2b{width:64.031200pt;}
._2c{width:65.115867pt;}
._40{width:71.341467pt;}
._3a{width:79.160000pt;}
._35{width:83.397733pt;}
._37{width:111.593867pt;}
._3c{width:123.515200pt;}
._41{width:130.653867pt;}
._3e{width:131.795333pt;}
._3f{width:139.609200pt;}
._39{width:175.106667pt;}
._3b{width:176.120000pt;}
._38{width:179.266667pt;}
._2f{width:209.202400pt;}
._3d{width:408.028133pt;}
._d{width:753.066667pt;}
._36{width:756.066667pt;}
._21{width:772.937200pt;}
.fs5{font-size:52.000000pt;}
.fs4{font-size:60.000000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:76.133333pt;}
.fs2{font-size:116.133333pt;}
.fs3{font-size:128.133333pt;}
.y0{bottom:0.000000pt;}
.y1f2{bottom:3.000000pt;}
.y144{bottom:4.000000pt;}
.y1f8{bottom:4.013333pt;}
.y141{bottom:5.000000pt;}
.y147{bottom:5.013333pt;}
.y16d{bottom:5.040000pt;}
.yb1{bottom:7.000000pt;}
.ycb{bottom:7.013333pt;}
.yd8{bottom:7.026667pt;}
.yb0{bottom:7.040000pt;}
.yb8{bottom:8.000000pt;}
.yd4{bottom:8.013333pt;}
.yc2{bottom:8.026667pt;}
.ybc{bottom:8.040000pt;}
.yeb{bottom:11.000000pt;}
.y19b{bottom:12.000000pt;}
.y140{bottom:13.000000pt;}
.y148{bottom:13.013333pt;}
.y152{bottom:13.026667pt;}
.y153{bottom:13.040000pt;}
.y156{bottom:14.000000pt;}
.y14c{bottom:14.013333pt;}
.y163{bottom:14.026667pt;}
.y167{bottom:14.033333pt;}
.y1b7{bottom:15.986667pt;}
.y9d{bottom:16.000000pt;}
.y1bc{bottom:16.013333pt;}
.ya0{bottom:16.040000pt;}
.y99{bottom:17.000000pt;}
.y1ab{bottom:17.013333pt;}
.ya3{bottom:17.026667pt;}
.y9e{bottom:17.040000pt;}
.y1e5{bottom:18.000000pt;}
.y1c4{bottom:19.000000pt;}
.y1cd{bottom:19.013333pt;}
.y1c1{bottom:19.026667pt;}
.y1c6{bottom:19.040000pt;}
.y143{bottom:21.000000pt;}
.y162{bottom:21.026667pt;}
.y14f{bottom:21.040000pt;}
.y121{bottom:22.000000pt;}
.y146{bottom:22.013333pt;}
.y151{bottom:22.026667pt;}
.y166{bottom:22.033333pt;}
.y14b{bottom:22.040000pt;}
.y19f{bottom:23.040000pt;}
.yaa{bottom:26.000000pt;}
.yca{bottom:26.013333pt;}
.ya4{bottom:26.026667pt;}
.ya7{bottom:26.040000pt;}
.y19c{bottom:27.000000pt;}
.yd7{bottom:27.026667pt;}
.ybe{bottom:27.033333pt;}
.yae{bottom:27.040000pt;}
.y1a1{bottom:30.000000pt;}
.y15f{bottom:30.040000pt;}
.y123{bottom:32.026667pt;}
.y9b{bottom:32.040000pt;}
.ya9{bottom:34.013333pt;}
.ya2{bottom:34.026667pt;}
.ya6{bottom:34.040000pt;}
.y126{bottom:35.033333pt;}
.y1cb{bottom:36.000000pt;}
.y1ec{bottom:36.026667pt;}
.y1c3{bottom:36.040000pt;}
.y1e3{bottom:37.026667pt;}
.y1d6{bottom:37.040000pt;}
.y17{bottom:38.040000pt;}
.y160{bottom:39.040000pt;}
.y19e{bottom:42.026667pt;}
.y1a0{bottom:46.040000pt;}
.y98{bottom:47.040000pt;}
.yb6{bottom:48.026667pt;}
.ybb{bottom:48.040000pt;}
.y204{bottom:49.040000pt;}
.yd1{bottom:50.080000pt;}
.y1a{bottom:51.033333pt;}
.y161{bottom:56.066667pt;}
.y120{bottom:57.040000pt;}
.y1aa{bottom:67.040000pt;}
.yc7{bottom:68.026667pt;}
.y19{bottom:69.066667pt;}
.yd0{bottom:69.080000pt;}
.y203{bottom:70.066667pt;}
.y16{bottom:74.080000pt;}
.yc6{bottom:87.066667pt;}
.y1a9{bottom:87.080000pt;}
.ycf{bottom:89.106667pt;}
.ye9{bottom:91.066667pt;}
.y86{bottom:98.100000pt;}
.y125{bottom:99.100000pt;}
.y1d8{bottom:100.100000pt;}
.y13e{bottom:101.100000pt;}
.yef{bottom:102.100000pt;}
.y67{bottom:106.100000pt;}
.yc5{bottom:107.106667pt;}
.ybd{bottom:108.100000pt;}
.yce{bottom:108.106667pt;}
.y7d{bottom:110.100000pt;}
.y97{bottom:111.100000pt;}
.y173{bottom:118.100000pt;}
.y46{bottom:122.100000pt;}
.y165{bottom:124.100000pt;}
.y15{bottom:124.106667pt;}
.y8c{bottom:126.100000pt;}
.y175{bottom:127.100000pt;}
.y202{bottom:128.093333pt;}
.yee{bottom:130.100000pt;}
.y1d7{bottom:132.133333pt;}
.y66{bottom:134.133333pt;}
.y13d{bottom:137.133333pt;}
.y7c{bottom:138.133333pt;}
.y96{bottom:139.133333pt;}
.y12{bottom:141.133333pt;}
.y1fe{bottom:144.133333pt;}
.y172{bottom:145.133333pt;}
.yba{bottom:147.133333pt;}
.ye1{bottom:148.133333pt;}
.y45{bottom:149.133333pt;}
.y116{bottom:150.133333pt;}
.y8b{bottom:154.133333pt;}
.yed{bottom:157.133333pt;}
.y164{bottom:159.133333pt;}
.y65{bottom:162.133333pt;}
.y1d5{bottom:163.133333pt;}
.y187{bottom:164.133333pt;}
.y7b{bottom:165.133333pt;}
.yda{bottom:166.133333pt;}
.y14{bottom:167.133333pt;}
.y13c{bottom:172.173333pt;}
.y177{bottom:173.173333pt;}
.y11{bottom:174.173333pt;}
.y1a7{bottom:175.173333pt;}
.y102{bottom:177.173333pt;}
.y115{bottom:178.173333pt;}
.y8a{bottom:181.173333pt;}
.y44{bottom:185.173333pt;}
.yb9{bottom:187.173333pt;}
.y64{bottom:189.173333pt;}
.y1ee{bottom:190.173333pt;}
.y1a6{bottom:191.173333pt;}
.yf7{bottom:193.173333pt;}
.y201{bottom:195.160000pt;}
.y122{bottom:195.173333pt;}
.y13b{bottom:200.173333pt;}
.y7a{bottom:201.173333pt;}
.y1a5{bottom:203.173333pt;}
.y101{bottom:204.173333pt;}
.y114{bottom:205.173333pt;}
.yb5{bottom:207.200000pt;}
.y10{bottom:208.200000pt;}
.y89{bottom:209.200000pt;}
.y43{bottom:213.200000pt;}
.y200{bottom:215.200000pt;}
.y63{bottom:217.200000pt;}
.y194{bottom:219.200000pt;}
.yf6{bottom:220.200000pt;}
.y124{bottom:224.200000pt;}
.yb7{bottom:227.200000pt;}
.y13a{bottom:228.200000pt;}
.y113{bottom:233.200000pt;}
.y79{bottom:236.200000pt;}
.y42{bottom:240.200000pt;}
.yf{bottom:242.200000pt;}
.y1d4{bottom:244.226667pt;}
.y62{bottom:244.240000pt;}
.y1ff{bottom:245.200000pt;}
.y1a4{bottom:246.226667pt;}
.yb4{bottom:248.226667pt;}
.y1ed{bottom:252.226667pt;}
.y11f{bottom:254.226667pt;}
.y139{bottom:255.226667pt;}
.yf5{bottom:256.240000pt;}
.y112{bottom:260.226667pt;}
.y15e{bottom:262.226667pt;}
.y78{bottom:264.226667pt;}
.yb2{bottom:268.226667pt;}
.y41{bottom:268.240000pt;}
.y1a3{bottom:270.226667pt;}
.yec{bottom:271.240000pt;}
.y61{bottom:272.226667pt;}
.ye{bottom:275.226667pt;}
.y100{bottom:276.226667pt;}
.y176{bottom:280.240000pt;}
.y138{bottom:283.266667pt;}
.yf4{bottom:284.266667pt;}
.ye8{bottom:285.266667pt;}
.yb3{bottom:288.266667pt;}
.y193{bottom:290.266667pt;}
.y171{bottom:291.266667pt;}
.y77{bottom:292.266667pt;}
.y1a2{bottom:294.266667pt;}
.y40{bottom:295.266667pt;}
.y85{bottom:300.266667pt;}
.yff{bottom:303.266667pt;}
.y60{bottom:308.266667pt;}
.yd{bottom:309.266667pt;}
.yf3{bottom:311.266667pt;}
.y111{bottom:316.266667pt;}
.y137{bottom:318.293333pt;}
.y76{bottom:319.306667pt;}
.y3f{bottom:323.293333pt;}
.y186{bottom:326.293333pt;}
.y84{bottom:327.293333pt;}
.yad{bottom:328.293333pt;}
.yea{bottom:329.293333pt;}
.yfe{bottom:331.306667pt;}
.y5f{bottom:335.293333pt;}
.y1eb{bottom:338.293333pt;}
.yf2{bottom:339.293333pt;}
.yc{bottom:341.293333pt;}
.y110{bottom:343.306667pt;}
.y75{bottom:347.293333pt;}
.yaf{bottom:348.293333pt;}
.y3e{bottom:351.293333pt;}
.y15d{bottom:352.306667pt;}
.y136{bottom:354.293333pt;}
.y83{bottom:355.333333pt;}
.y1ea{bottom:356.333333pt;}
.yfd{bottom:358.333333pt;}
.y192{bottom:361.333333pt;}
.y5e{bottom:363.333333pt;}
.ye7{bottom:368.333333pt;}
.y10f{bottom:371.333333pt;}
.yb{bottom:374.333333pt;}
.y3d{bottom:378.333333pt;}
.y19d{bottom:380.333333pt;}
.y82{bottom:382.333333pt;}
.y15c{bottom:387.333333pt;}
.ye0{bottom:388.333333pt;}
.y5d{bottom:390.333333pt;}
.yfc{bottom:394.373333pt;}
.y191{bottom:397.373333pt;}
.y10e{bottom:398.360000pt;}
.y1b0{bottom:400.373333pt;}
.y1e9{bottom:401.360000pt;}
.y74{bottom:402.373333pt;}
.y1d3{bottom:403.360000pt;}
.y3c{bottom:406.373333pt;}
.ya{bottom:407.360000pt;}
.ye6{bottom:408.360000pt;}
.y135{bottom:409.373333pt;}
.y81{bottom:410.360000pt;}
.y1be{bottom:413.360000pt;}
.y15b{bottom:414.373333pt;}
.y1fd{bottom:415.373333pt;}
.y185{bottom:417.373333pt;}
.y5c{bottom:418.373333pt;}
.yfb{bottom:422.360000pt;}
.yac{bottom:425.360000pt;}
.y10d{bottom:426.373333pt;}
.ye5{bottom:428.360000pt;}
.y73{bottom:430.400000pt;}
.y190{bottom:432.400000pt;}
.y3b{bottom:433.400000pt;}
.y134{bottom:437.400000pt;}
.y80{bottom:438.400000pt;}
.y15a{bottom:440.400000pt;}
.y9{bottom:441.400000pt;}
.y1bd{bottom:442.400000pt;}
.y5b{bottom:446.400000pt;}
.ye4{bottom:448.400000pt;}
.yfa{bottom:449.400000pt;}
.y1d2{bottom:452.400000pt;}
.y184{bottom:453.400000pt;}
.y10c{bottom:454.400000pt;}
.y1e8{bottom:455.400000pt;}
.yab{bottom:456.400000pt;}
.y72{bottom:457.400000pt;}
.y3a{bottom:461.400000pt;}
.y133{bottom:464.400000pt;}
.y7f{bottom:465.400000pt;}
.y159{bottom:467.400000pt;}
.ye3{bottom:468.426667pt;}
.y18f{bottom:468.440000pt;}
.ya8{bottom:470.426667pt;}
.y1fc{bottom:470.440000pt;}
.y1bb{bottom:472.426667pt;}
.y5a{bottom:473.440000pt;}
.y8{bottom:475.426667pt;}
.y183{bottom:480.440000pt;}
.y19a{bottom:481.426667pt;}
.y13{bottom:485.426667pt;}
.y71{bottom:485.440000pt;}
.ye2{bottom:489.426667pt;}
.y39{bottom:489.440000pt;}
.y132{bottom:492.440000pt;}
.y92{bottom:493.426667pt;}
.y1fb{bottom:499.426667pt;}
.y1e7{bottom:500.426667pt;}
.y1ba{bottom:501.426667pt;}
.y59{bottom:501.440000pt;}
.y158{bottom:503.440000pt;}
.y18e{bottom:504.440000pt;}
.y1d1{bottom:507.466667pt;}
.y182{bottom:508.466667pt;}
.y7{bottom:509.466667pt;}
.yf9{bottom:512.466667pt;}
.y38{bottom:516.466667pt;}
.y10b{bottom:517.466667pt;}
.ya5{bottom:518.466667pt;}
.y70{bottom:520.466667pt;}
.y1d0{bottom:524.466667pt;}
.y199{bottom:525.466667pt;}
.y157{bottom:526.466667pt;}
.y58{bottom:528.466667pt;}
.ydf{bottom:529.466667pt;}
.y1b9{bottom:530.466667pt;}
.y1e6{bottom:531.466667pt;}
.y174{bottom:536.466667pt;}
.y18d{bottom:539.466667pt;}
.yf8{bottom:540.466667pt;}
.y6{bottom:543.506667pt;}
.y10a{bottom:544.506667pt;}
.y131{bottom:547.506667pt;}
.y6f{bottom:548.506667pt;}
.yd9{bottom:549.493333pt;}
.yde{bottom:549.506667pt;}
.y37{bottom:552.506667pt;}
.y57{bottom:556.506667pt;}
.y155{bottom:560.506667pt;}
.yf1{bottom:564.506667pt;}
.ya1{bottom:566.506667pt;}
.y11e{bottom:568.506667pt;}
.ydd{bottom:569.506667pt;}
.y181{bottom:571.506667pt;}
.y109{bottom:572.506667pt;}
.y130{bottom:575.506667pt;}
.y6e{bottom:576.506667pt;}
.y5{bottom:577.506667pt;}
.y1fa{bottom:578.506667pt;}
.y1cf{bottom:579.506667pt;}
.y1e4{bottom:581.533333pt;}
.y56{bottom:584.533333pt;}
.y36{bottom:587.533333pt;}
.y1f9{bottom:589.533333pt;}
.y1ce{bottom:591.533333pt;}
.yf0{bottom:592.533333pt;}
.y11d{bottom:595.533333pt;}
.y180{bottom:599.533333pt;}
.y108{bottom:600.533333pt;}
.y12f{bottom:602.533333pt;}
.y6d{bottom:603.533333pt;}
.y1b8{bottom:604.533333pt;}
.y4{bottom:608.533333pt;}
.y18c{bottom:610.533333pt;}
.y88{bottom:611.533333pt;}
.y1e2{bottom:612.533333pt;}
.y9f{bottom:614.533333pt;}
.y35{bottom:615.533333pt;}
.y198{bottom:616.533333pt;}
.y55{bottom:619.560000pt;}
.y1cc{bottom:623.560000pt;}
.y107{bottom:627.573333pt;}
.y154{bottom:629.560000pt;}
.y12e{bottom:630.573333pt;}
.y6c{bottom:631.560000pt;}
.y17f{bottom:634.560000pt;}
.y1f7{bottom:635.560000pt;}
.y3{bottom:639.573333pt;}
.y9a{bottom:643.560000pt;}
.y18b{bottom:646.560000pt;}
.y54{bottom:647.560000pt;}
.ydc{bottom:648.560000pt;}
.y34{bottom:651.573333pt;}
.y106{bottom:655.600000pt;}
.y170{bottom:657.600000pt;}
.y6b{bottom:658.600000pt;}
.y1e1{bottom:661.600000pt;}
.y17e{bottom:662.600000pt;}
.y87{bottom:666.600000pt;}
.y1f6{bottom:667.600000pt;}
.ydb{bottom:668.600000pt;}
.y2{bottom:669.600000pt;}
.y9c{bottom:673.600000pt;}
.y53{bottom:674.600000pt;}
.y33{bottom:678.600000pt;}
.y150{bottom:681.600000pt;}
.y26{bottom:682.600000pt;}
.y16f{bottom:683.600000pt;}
.y12d{bottom:685.600000pt;}
.y11c{bottom:686.600000pt;}
.yd6{bottom:688.600000pt;}
.y1e0{bottom:693.626667pt;}
.y6a{bottom:694.626667pt;}
.y17d{bottom:698.626667pt;}
.y52{bottom:702.626667pt;}
.y1ca{bottom:704.626667pt;}
.y32{bottom:706.626667pt;}
.y1b6{bottom:708.640000pt;}
.y105{bottom:710.626667pt;}
.y11b{bottom:714.626667pt;}
.y14e{bottom:716.626667pt;}
.y18a{bottom:717.626667pt;}
.y12c{bottom:719.626667pt;}
.y25{bottom:721.626667pt;}
.y91{bottom:722.626667pt;}
.y17c{bottom:725.626667pt;}
.ycd{bottom:727.626667pt;}
.y16e{bottom:728.626667pt;}
.y197{bottom:729.626667pt;}
.y51{bottom:730.666667pt;}
.y31{bottom:733.666667pt;}
.y1c9{bottom:736.666667pt;}
.y1b5{bottom:737.666667pt;}
.y104{bottom:738.666667pt;}
.y11a{bottom:741.666667pt;}
.y24{bottom:747.666667pt;}
.y95{bottom:749.666667pt;}
.y14d{bottom:750.666667pt;}
.y189{bottom:753.666667pt;}
.y1df{bottom:756.666667pt;}
.y50{bottom:757.666667pt;}
.y30{bottom:761.666667pt;}
.y1f5{bottom:764.666667pt;}
.y103{bottom:765.666667pt;}
.y1b4{bottom:766.666667pt;}
.yd5{bottom:767.706667pt;}
.y119{bottom:769.706667pt;}
.y1a8{bottom:772.693333pt;}
.y23{bottom:774.706667pt;}
.y94{bottom:777.706667pt;}
.y14a{bottom:784.693333pt;}
.y4f{bottom:785.706667pt;}
.yd3{bottom:787.693333pt;}
.y1de{bottom:788.693333pt;}
.y17b{bottom:788.706667pt;}
.y12b{bottom:789.693333pt;}
.y2f{bottom:789.706667pt;}
.y1f4{bottom:791.706667pt;}
.y90{bottom:793.706667pt;}
.y1b3{bottom:796.693333pt;}
.y118{bottom:796.706667pt;}
.y1c8{bottom:799.693333pt;}
.y22{bottom:800.706667pt;}
.y93{bottom:804.733333pt;}
.yd2{bottom:808.733333pt;}
.y4e{bottom:812.733333pt;}
.y2e{bottom:816.733333pt;}
.y149{bottom:819.733333pt;}
.y8f{bottom:820.733333pt;}
.y17a{bottom:824.733333pt;}
.y1b2{bottom:825.733333pt;}
.y21{bottom:827.733333pt;}
.ycc{bottom:828.733333pt;}
.y1c7{bottom:830.733333pt;}
.y117{bottom:832.733333pt;}
.y1f3{bottom:835.733333pt;}
.y12a{bottom:837.733333pt;}
.y16c{bottom:838.733333pt;}
.y4d{bottom:840.733333pt;}
.y2d{bottom:844.773333pt;}
.yc4{bottom:848.760000pt;}
.y8e{bottom:848.773333pt;}
.y1dd{bottom:851.760000pt;}
.y179{bottom:852.773333pt;}
.y145{bottom:853.760000pt;}
.y20{bottom:853.773333pt;}
.y1b1{bottom:854.760000pt;}
.y188{bottom:860.773333pt;}
.y1c5{bottom:862.760000pt;}
.y4c{bottom:868.773333pt;}
.y2c{bottom:871.773333pt;}
.y16b{bottom:872.760000pt;}
.y8d{bottom:876.773333pt;}
.y1f{bottom:880.800000pt;}
.y1dc{bottom:883.800000pt;}
.y129{bottom:884.800000pt;}
.yc9{bottom:887.800000pt;}
.y142{bottom:888.800000pt;}
.y16a{bottom:890.800000pt;}
.y1c2{bottom:894.800000pt;}
.y4b{bottom:895.800000pt;}
.y1af{bottom:897.800000pt;}
.y2b{bottom:899.800000pt;}
.y7e{bottom:903.800000pt;}
.y1e{bottom:906.800000pt;}
.yc8{bottom:907.800000pt;}
.y196{bottom:914.800000pt;}
.y178{bottom:915.800000pt;}
.y13f{bottom:922.840000pt;}
.y4a{bottom:923.840000pt;}
.y169{bottom:924.840000pt;}
.y2a{bottom:927.840000pt;}
.y69{bottom:931.840000pt;}
.y128{bottom:932.840000pt;}
.y1d{bottom:933.840000pt;}
.y1f1{bottom:934.840000pt;}
.y1db{bottom:938.840000pt;}
.y195{bottom:942.840000pt;}
.y1c0{bottom:943.840000pt;}
.yc3{bottom:947.840000pt;}
.y49{bottom:950.840000pt;}
.y29{bottom:954.866667pt;}
.y1da{bottom:955.866667pt;}
.y68{bottom:958.866667pt;}
.y1c{bottom:959.866667pt;}
.yc0{bottom:967.866667pt;}
.y1f0{bottom:971.866667pt;}
.y1d9{bottom:973.866667pt;}
.y48{bottom:978.866667pt;}
.y127{bottom:980.866667pt;}
.y28{bottom:982.866667pt;}
.y1ae{bottom:985.866667pt;}
.y1b{bottom:986.866667pt;}
.yc1{bottom:987.866667pt;}
.y1ef{bottom:988.866667pt;}
.y168{bottom:993.893333pt;}
.y1bf{bottom:998.893333pt;}
.y1ad{bottom:1000.893333pt;}
.ybf{bottom:1007.893333pt;}
.y47{bottom:1013.893333pt;}
.y1{bottom:1014.893333pt;}
.y27{bottom:1015.893333pt;}
.y1ac{bottom:1016.893333pt;}
.y18{bottom:1061.933333pt;}
.h27{height:17.000000pt;}
.h2a{height:17.033333pt;}
.h14{height:19.000000pt;}
.h13{height:19.033333pt;}
.h1d{height:19.986667pt;}
.h18{height:20.000000pt;}
.h17{height:20.033333pt;}
.h21{height:23.000000pt;}
.h30{height:23.033333pt;}
.h39{height:28.000000pt;}
.h37{height:28.020000pt;}
.he{height:28.033333pt;}
.h36{height:29.000000pt;}
.hf{height:29.033333pt;}
.h3e{height:30.000000pt;}
.h40{height:30.020000pt;}
.h3b{height:30.986667pt;}
.h3c{height:31.000000pt;}
.h3a{height:31.033333pt;}
.h2b{height:33.000000pt;}
.h26{height:33.033333pt;}
.h2c{height:33.986667pt;}
.h29{height:34.000000pt;}
.h25{height:34.033333pt;}
.h1b{height:38.033333pt;}
.h12{height:39.033333pt;}
.h31{height:42.033333pt;}
.h32{height:43.033333pt;}
.h34{height:43.066667pt;}
.h38{height:44.033333pt;}
.h42{height:46.033333pt;}
.h10{height:47.020000pt;}
.h11{height:47.033333pt;}
.h24{height:47.066667pt;}
.h23{height:48.033333pt;}
.h3f{height:48.066667pt;}
.h41{height:49.033333pt;}
.h3d{height:49.066667pt;}
.h43{height:51.009766pt;}
.h2e{height:51.035156pt;}
.h2d{height:52.406250pt;}
.h2f{height:53.447806pt;}
.h9{height:57.375000pt;}
.hc{height:58.066667pt;}
.hd{height:58.886719pt;}
.h15{height:59.066667pt;}
.h16{height:60.033333pt;}
.h19{height:60.066667pt;}
.ha{height:61.033333pt;}
.h33{height:62.033333pt;}
.hb{height:62.781250pt;}
.h2{height:62.812500pt;}
.h8{height:64.500000pt;}
.h45{height:65.781915pt;}
.h46{height:66.625000pt;}
.h28{height:68.066667pt;}
.h22{height:71.066667pt;}
.h4{height:74.720703pt;}
.h3{height:76.728125pt;}
.h20{height:103.066667pt;}
.h6{height:113.978516pt;}
.h1a{height:119.100000pt;}
.h1c{height:120.133333pt;}
.h35{height:121.100000pt;}
.h7{height:129.134375pt;}
.h1f{height:160.160000pt;}
.h1e{height:178.133333pt;}
.h5{height:181.173333pt;}
.h44{height:259.226667pt;}
.h47{height:1122.666667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w45{width:20.000000pt;}
.w46{width:20.033333pt;}
.w42{width:21.000000pt;}
.w41{width:21.033333pt;}
.w40{width:22.033333pt;}
.w47{width:27.033333pt;}
.w43{width:29.033333pt;}
.w23{width:46.066667pt;}
.w25{width:48.066667pt;}
.w26{width:49.066667pt;}
.w39{width:52.066667pt;}
.w3d{width:53.066667pt;}
.wa{width:56.066667pt;}
.w14{width:57.066667pt;}
.wc{width:59.100000pt;}
.w15{width:60.066667pt;}
.w38{width:63.066667pt;}
.wd{width:65.066667pt;}
.w32{width:65.100000pt;}
.w1a{width:66.100000pt;}
.w8{width:67.100000pt;}
.w21{width:68.066667pt;}
.w1d{width:69.100000pt;}
.w19{width:71.066667pt;}
.w1b{width:71.100000pt;}
.w33{width:72.100000pt;}
.w9{width:73.066667pt;}
.wb{width:73.100000pt;}
.w37{width:75.100000pt;}
.w2e{width:78.100000pt;}
.w2a{width:79.100000pt;}
.w10{width:80.100000pt;}
.w12{width:82.100000pt;}
.w7{width:83.100000pt;}
.w36{width:85.100000pt;}
.w30{width:85.133333pt;}
.w20{width:86.100000pt;}
.w11{width:90.133333pt;}
.w24{width:91.100000pt;}
.w2c{width:92.100000pt;}
.w22{width:92.133333pt;}
.w1f{width:102.133333pt;}
.w1e{width:103.133333pt;}
.w1c{width:104.133333pt;}
.w35{width:110.133333pt;}
.w2b{width:112.166667pt;}
.w3c{width:116.166667pt;}
.w34{width:120.166667pt;}
.w16{width:121.166667pt;}
.w31{width:127.133333pt;}
.w4{width:127.166667pt;}
.w2d{width:131.166667pt;}
.w2f{width:132.166667pt;}
.w3a{width:149.200000pt;}
.we{width:162.200000pt;}
.wf{width:170.240000pt;}
.w18{width:188.240000pt;}
.w5{width:196.226667pt;}
.w17{width:197.226667pt;}
.w6{width:197.266667pt;}
.w28{width:221.293333pt;}
.w3b{width:248.293333pt;}
.w48{width:339.440000pt;}
.w3f{width:340.400000pt;}
.w27{width:344.440000pt;}
.w44{width:348.466667pt;}
.w13{width:449.560000pt;}
.w2{width:483.600000pt;}
.w3e{width:565.733333pt;}
.w29{width:566.733333pt;}
.w49{width:575.733333pt;}
.w3{width:603.760000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.w4a{width:794.666667pt;}
.x0{left:0.000000pt;}
.x85{left:6.040000pt;}
.x17{left:7.033333pt;}
.x2c{left:8.033333pt;}
.x4c{left:9.040000pt;}
.x4b{left:10.040000pt;}
.x5b{left:11.040000pt;}
.xd{left:12.000000pt;}
.x2a{left:13.026667pt;}
.x66{left:14.026667pt;}
.x49{left:15.026667pt;}
.x55{left:16.040000pt;}
.x27{left:17.026667pt;}
.x5c{left:18.026667pt;}
.x24{left:19.026667pt;}
.x28{left:20.000000pt;}
.x29{left:21.040000pt;}
.x48{left:21.986667pt;}
.x45{left:23.026667pt;}
.x21{left:24.040000pt;}
.x2b{left:25.000000pt;}
.x1f{left:26.040000pt;}
.x1d{left:27.026667pt;}
.x43{left:28.026667pt;}
.x26{left:29.040000pt;}
.x22{left:30.066667pt;}
.x54{left:31.026667pt;}
.x32{left:32.026667pt;}
.x51{left:33.040000pt;}
.x3c{left:34.026667pt;}
.x37{left:35.026667pt;}
.x33{left:36.066667pt;}
.x35{left:37.026667pt;}
.x1c{left:38.040000pt;}
.x38{left:39.066667pt;}
.x56{left:40.026667pt;}
.x3a{left:41.026667pt;}
.x5d{left:43.066667pt;}
.x6f{left:44.066667pt;}
.x39{left:45.066667pt;}
.x53{left:48.066667pt;}
.x52{left:49.066667pt;}
.x7a{left:50.066667pt;}
.x6b{left:52.026667pt;}
.x3b{left:55.066667pt;}
.x30{left:57.066667pt;}
.x68{left:59.106667pt;}
.x2e{left:61.106667pt;}
.x42{left:71.093333pt;}
.x19{left:74.093333pt;}
.xc{left:99.133333pt;}
.x3d{left:106.133333pt;}
.x16{left:112.133333pt;}
.x2{left:113.133322pt;}
.x60{left:114.133333pt;}
.x78{left:117.133333pt;}
.x7d{left:121.166667pt;}
.x3{left:126.166655pt;}
.x10{left:128.166655pt;}
.x7c{left:137.159988pt;}
.xa{left:152.200000pt;}
.x14{left:160.199988pt;}
.x62{left:193.240000pt;}
.x6d{left:196.240000pt;}
.x5{left:211.266655pt;}
.x5e{left:212.266655pt;}
.x4a{left:217.266667pt;}
.x40{left:227.306667pt;}
.x7{left:231.293322pt;}
.x18{left:239.306667pt;}
.xb{left:241.306667pt;}
.x4{left:253.333322pt;}
.x9a{left:259.333322pt;}
.x77{left:263.333333pt;}
.x73{left:264.333333pt;}
.x6e{left:268.333333pt;}
.x67{left:271.333333pt;}
.x2d{left:275.333333pt;}
.x4d{left:286.373333pt;}
.x11{left:288.359988pt;}
.x44{left:298.373333pt;}
.x8{left:300.359988pt;}
.x63{left:305.400000pt;}
.x1e{left:306.400000pt;}
.x6{left:311.399988pt;}
.xe{left:327.399988pt;}
.x74{left:349.440000pt;}
.x9{left:353.439988pt;}
.x57{left:354.440000pt;}
.x34{left:355.440000pt;}
.x46{left:364.466667pt;}
.x12{left:365.466655pt;}
.x13{left:368.466655pt;}
.x20{left:379.466667pt;}
.x70{left:388.506667pt;}
.x4e{left:389.506667pt;}
.x1{left:396.506655pt;}
.x64{left:397.506667pt;}
.x69{left:403.506667pt;}
.x41{left:424.533333pt;}
.x1a{left:435.533333pt;}
.x2f{left:445.573333pt;}
.x58{left:446.573333pt;}
.x91{left:454.573333pt;}
.x61{left:459.573333pt;}
.x7e{left:461.573333pt;}
.x89{left:463.600000pt;}
.x92{left:476.600000pt;}
.x7f{left:483.600000pt;}
.x8a{left:484.600000pt;}
.x75{left:487.600000pt;}
.x6a{left:488.640000pt;}
.x71{left:490.640000pt;}
.x4f{left:492.640000pt;}
.x47{left:495.640000pt;}
.x93{left:498.640000pt;}
.x80{left:505.640000pt;}
.x23{left:508.640000pt;}
.x79{left:511.640000pt;}
.x94{left:520.666667pt;}
.x36{left:525.666667pt;}
.x8b{left:526.666667pt;}
.x81{left:527.666667pt;}
.x65{left:528.666667pt;}
.x76{left:539.666667pt;}
.x95{left:542.693333pt;}
.x8c{left:547.693333pt;}
.x82{left:549.693333pt;}
.x3e{left:555.693333pt;}
.x96{left:563.693333pt;}
.x25{left:567.733333pt;}
.x8d{left:568.733333pt;}
.x83{left:571.733333pt;}
.x59{left:583.733333pt;}
.x97{left:585.733333pt;}
.x8e{left:589.733333pt;}
.x84{left:593.733333pt;}
.x50{left:594.773333pt;}
.x72{left:600.773333pt;}
.x31{left:607.773333pt;}
.x8f{left:610.773333pt;}
.x3f{left:612.773333pt;}
.x5f{left:613.759988pt;}
.x86{left:614.773333pt;}
.x6c{left:615.773333pt;}
.x7b{left:627.800000pt;}
.x98{left:629.800000pt;}
.x5a{left:631.800000pt;}
.x1b{left:632.800000pt;}
.x87{left:636.800000pt;}
.x99{left:651.840000pt;}
.x90{left:653.840000pt;}
.x88{left:658.840000pt;}
.x15{left:664.839988pt;}
.xf{left:672.839988pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  