
    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_04377e3c9fd0d8e097aa734a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_daebbdccfe80a6dcaec413da.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.896973;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_c0ac5e4dd22be5d228ec161d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_9f6fe6f140a8b0a1d78f8b88.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_e02af3423c153a58914e211f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_4698c0fabf6b195b3cf41dbd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.753418;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_25faeb64d9f2d86b127c20be.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1934a818b86a241690258334.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eb70db53f8277b1ca25e52f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.866699;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_2bd17251b1ac683c6fba8a8e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bc0780e41d3360e02d1c93a4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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;}
.m7{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.010641px;}
.ls3{letter-spacing:0.018600px;}
.lsf{letter-spacing:0.021106px;}
.ls8{letter-spacing:0.021238px;}
.lse{letter-spacing:0.021282px;}
.lsc{letter-spacing:0.375684px;}
.lsa{letter-spacing:6.639717px;}
.ls6{letter-spacing:7.360137px;}
.ls7{letter-spacing:7.935297px;}
.ls4{letter-spacing:9.553196px;}
.ls9{letter-spacing:14.419134px;}
.lsb{letter-spacing:34.015846px;}
.ls2{letter-spacing:99.429322px;}
.ls1{letter-spacing:101.590613px;}
.ls0{letter-spacing:1909.299710px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-32.418587px;}
.wsa{word-spacing:-18.021275px;}
.ws7{word-spacing:-18.021231px;}
.wsb{word-spacing:-18.021099px;}
.ws1{word-spacing:-17.999993px;}
.ws3{word-spacing:-16.559993px;}
.ws4{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws2{word-spacing:-14.939994px;}
.ws9{word-spacing:-13.875678px;}
.ws8{word-spacing:-13.499995px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-19.984126px;}
._3{margin-left:-7.844991px;}
._1a{margin-left:-5.559687px;}
._1{margin-left:-4.242803px;}
._5{margin-left:-2.444756px;}
._2{margin-left:-1.221927px;}
._0{width:1.003097px;}
._8{width:2.550683px;}
._9{width:3.735560px;}
._a{width:4.961493px;}
._7{width:6.305955px;}
._6{width:7.324697px;}
._f{width:8.821357px;}
._10{width:10.377976px;}
._13{width:11.985009px;}
._e{width:13.862935px;}
._12{width:15.379058px;}
._19{width:16.629320px;}
._d{width:19.441964px;}
._c{width:20.841610px;}
._17{width:22.387493px;}
._18{width:23.848488px;}
._b{width:25.765188px;}
._25{width:27.514245px;}
._16{width:29.420740px;}
._15{width:31.016388px;}
._14{width:32.226684px;}
._11{width:40.094148px;}
._2a{width:41.205164px;}
._26{width:44.557633px;}
._27{width:45.600326px;}
._28{width:52.792948px;}
._29{width:53.887433px;}
._1b{width:161.676914px;}
._1e{width:234.694658px;}
._24{width:383.274278px;}
._21{width:413.298266px;}
._22{width:476.290561px;}
._1f{width:695.260474px;}
._23{width:732.736459px;}
._1c{width:823.703520px;}
._1d{width:895.819171px;}
._20{width:948.790372px;}
.fcb{color:rgb(0,101,204);}
.fc9{color:rgb(44,62,80);}
.fc8{color:rgb(83,129,53);}
.fc7{color:rgb(5,99,193);}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(192,0,0);}
.fca{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs7{font-size:12.239995px;}
.fsa{font-size:17.999993px;}
.fs9{font-size:23.759990px;}
.fs8{font-size:30.239988px;}
.fs5{font-size:35.999986px;}
.fs6{font-size:41.759983px;}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.y46{bottom:-5.940781px;}
.y0{bottom:0.000000px;}
.y10b{bottom:1.978994px;}
.y17d{bottom:1.979076px;}
.y189{bottom:1.979118px;}
.y107{bottom:2.878988px;}
.y10d{bottom:2.879004px;}
.y10f{bottom:2.879013px;}
.y114{bottom:2.879029px;}
.y174{bottom:2.879053px;}
.y179{bottom:2.879070px;}
.y118{bottom:2.879080px;}
.y130{bottom:2.879086px;}
.y132{bottom:2.879093px;}
.y182{bottom:2.879095px;}
.y137{bottom:2.879106px;}
.y187{bottom:2.879111px;}
.y13c{bottom:2.879119px;}
.y13e{bottom:2.879125px;}
.y190{bottom:2.879134px;}
.y144{bottom:2.879138px;}
.y148{bottom:2.879151px;}
.y14a{bottom:2.879158px;}
.y195{bottom:2.879159px;}
.y14c{bottom:2.879164px;}
.y198{bottom:2.879167px;}
.y14f{bottom:2.879171px;}
.y19b{bottom:2.879176px;}
.y155{bottom:2.879184px;}
.y158{bottom:2.879190px;}
.y19e{bottom:2.879192px;}
.y15b{bottom:2.879197px;}
.y1a1{bottom:2.879201px;}
.y15d{bottom:2.879203px;}
.y1a3{bottom:2.879209px;}
.y162{bottom:2.879216px;}
.y1a9{bottom:2.879234px;}
.y1ac{bottom:2.879242px;}
.y1af{bottom:2.879250px;}
.y1b1{bottom:2.879259px;}
.y105{bottom:3.058979px;}
.y112{bottom:3.059021px;}
.y177{bottom:3.059061px;}
.y17f{bottom:3.059078px;}
.y135{bottom:3.059099px;}
.y185{bottom:3.059103px;}
.y139{bottom:3.059112px;}
.y18b{bottom:3.059120px;}
.y141{bottom:3.059132px;}
.y18d{bottom:3.059142px;}
.y146{bottom:3.059145px;}
.y152{bottom:3.059177px;}
.y12e{bottom:3.059210px;}
.y1a7{bottom:3.059225px;}
.ya{bottom:4.500038px;}
.y5{bottom:4.800238px;}
.yb{bottom:32.700287px;}
.y9{bottom:50.520240px;}
.y7{bottom:55.020278px;}
.y8{bottom:56.640277px;}
.ya8{bottom:170.039932px;}
.yd6{bottom:170.579932px;}
.y20{bottom:174.899930px;}
.y1b9{bottom:177.419929px;}
.y1d6{bottom:177.599929px;}
.y102{bottom:179.219928px;}
.yd5{bottom:184.619926px;}
.y87{bottom:184.979926px;}
.y16e{bottom:188.399925px;}
.ya7{bottom:190.739924px;}
.y6f{bottom:192.179923px;}
.y1f{bottom:198.659921px;}
.y101{bottom:199.919920px;}
.y1b8{bottom:201.179920px;}
.y1d5{bottom:201.539919px;}
.yd4{bottom:208.379917px;}
.y86{bottom:208.739917px;}
.ya6{bottom:211.439915px;}
.y16d{bottom:212.339915px;}
.y6e{bottom:215.939914px;}
.y1e{bottom:222.419911px;}
.y100{bottom:223.859910px;}
.y1b7{bottom:225.119910px;}
.y1d4{bottom:225.299910px;}
.ya5{bottom:231.959907px;}
.yd3{bottom:232.139907px;}
.y85{bottom:232.499907px;}
.y16c{bottom:236.099906px;}
.y6d{bottom:239.699904px;}
.y1d{bottom:246.179902px;}
.yff{bottom:247.619901px;}
.y1b6{bottom:248.879900px;}
.y1d3{bottom:249.059900px;}
.ya4{bottom:251.759899px;}
.yd2{bottom:256.079898px;}
.y84{bottom:256.259897px;}
.y16b{bottom:259.859896px;}
.ya3{bottom:262.739895px;}
.y6c{bottom:263.459895px;}
.y1c{bottom:270.119892px;}
.yfe{bottom:271.379891px;}
.y1b5{bottom:272.639891px;}
.y1d2{bottom:272.819891px;}
.yd1{bottom:279.839888px;}
.y83{bottom:280.019888px;}
.ya2{bottom:283.439887px;}
.y16a{bottom:283.619887px;}
.y6b{bottom:287.399885px;}
.y1b{bottom:293.879882px;}
.yfd{bottom:295.139882px;}
.y1b4{bottom:296.399881px;}
.y1d1{bottom:296.579881px;}
.yd0{bottom:303.599879px;}
.y82{bottom:303.959878px;}
.ya1{bottom:307.199877px;}
.y169{bottom:307.559877px;}
.y6a{bottom:311.159876px;}
.y1a{bottom:317.639873px;}
.yfc{bottom:319.079872px;}
.y1b3{bottom:320.159872px;}
.y1d0{bottom:320.519872px;}
.ycf{bottom:327.359869px;}
.y81{bottom:327.719869px;}
.y168{bottom:331.319867px;}
.ya0{bottom:333.659867px;}
.y69{bottom:334.919866px;}
.y1b2{bottom:339.059864px;}
.y19{bottom:341.399863px;}
.yfb{bottom:342.839863px;}
.y1cf{bottom:344.279862px;}
.y1b0{bottom:350.400600px;}
.y80{bottom:351.479859px;}
.y9f{bottom:354.179858px;}
.y167{bottom:355.079858px;}
.y68{bottom:358.679857px;}
.yce{bottom:361.919855px;}
.y18{bottom:365.159854px;}
.y9e{bottom:366.239854px;}
.yfa{bottom:366.599853px;}
.y1ce{bottom:368.039853px;}
.y1ae{bottom:371.100600px;}
.y1ad{bottom:373.979850px;}
.y7f{bottom:375.239850px;}
.y166{bottom:378.839848px;}
.y67{bottom:382.619847px;}
.y17{bottom:389.099844px;}
.yf9{bottom:390.359844px;}
.y1cd{bottom:391.799843px;}
.y1ab{bottom:391.980600px;}
.y9d{bottom:392.339843px;}
.y1aa{bottom:394.859842px;}
.ycd{bottom:396.479841px;}
.y7e{bottom:399.179840px;}
.y165{bottom:402.599839px;}
.y66{bottom:406.379837px;}
.y1a8{bottom:412.680600px;}
.y16{bottom:412.859835px;}
.yf8{bottom:414.299834px;}
.y1cc{bottom:415.739834px;}
.y9c{bottom:416.099834px;}
.ycc{bottom:420.239832px;}
.y7d{bottom:422.939831px;}
.y164{bottom:426.539829px;}
.y65{bottom:430.139828px;}
.y1a6{bottom:433.380600px;}
.yf7{bottom:438.059825px;}
.y1cb{bottom:439.499824px;}
.y9b{bottom:439.859824px;}
.ycb{bottom:443.999822px;}
.y163{bottom:445.619822px;}
.y7c{bottom:446.699821px;}
.y64{bottom:453.899818px;}
.y1a5{bottom:454.260600px;}
.y161{bottom:456.060600px;}
.y1a4{bottom:457.139817px;}
.y160{bottom:458.939816px;}
.y45{bottom:459.660600px;}
.yf6{bottom:461.819815px;}
.y1ca{bottom:463.259815px;}
.y9a{bottom:463.619815px;}
.y30{bottom:466.859813px;}
.yca{bottom:467.939813px;}
.y44{bottom:469.559812px;}
.y7b{bottom:470.459812px;}
.y12d{bottom:472.260600px;}
.y1a2{bottom:474.960600px;}
.y15f{bottom:475.319810px;}
.y63{bottom:477.839809px;}
.y43{bottom:485.039806px;}
.yf5{bottom:485.579806px;}
.y1c9{bottom:487.019805px;}
.y99{bottom:487.559805px;}
.y15c{bottom:488.640600px;}
.y1eb{bottom:489.539804px;}
.y12c{bottom:490.799804px;}
.y15e{bottom:491.519803px;}
.yc9{bottom:491.699803px;}
.y7a{bottom:494.399802px;}
.y1a0{bottom:495.840600px;}
.y19f{bottom:498.719801px;}
.y42{bottom:500.699800px;}
.y62{bottom:501.599799px;}
.y1ea{bottom:502.319799px;}
.y15a{bottom:504.840600px;}
.y12b{bottom:506.279797px;}
.yf4{bottom:509.339796px;}
.y1c8{bottom:510.959796px;}
.y98{bottom:511.319795px;}
.yc8{bottom:515.459794px;}
.y41{bottom:516.179794px;}
.y19d{bottom:516.540600px;}
.y79{bottom:518.159793px;}
.y19c{bottom:519.419792px;}
.y157{bottom:521.220600px;}
.y12a{bottom:521.759791px;}
.y159{bottom:524.099790px;}
.y61{bottom:525.359790px;}
.y1e9{bottom:526.079790px;}
.yf3{bottom:533.279787px;}
.y1c7{bottom:534.719786px;}
.y97{bottom:535.079786px;}
.y129{bottom:537.419785px;}
.y154{bottom:537.420600px;}
.yc7{bottom:539.219784px;}
.y156{bottom:540.299784px;}
.y78{bottom:541.919783px;}
.y60{bottom:549.119780px;}
.y1e8{bottom:549.839780px;}
.y128{bottom:552.899779px;}
.y151{bottom:553.620600px;}
.y153{bottom:556.679777px;}
.yf2{bottom:557.039777px;}
.y19a{bottom:558.120600px;}
.y1c6{bottom:558.479777px;}
.y96{bottom:558.839776px;}
.y199{bottom:560.999776px;}
.y40{bottom:562.259775px;}
.yc6{bottom:562.979775px;}
.y77{bottom:565.679774px;}
.y127{bottom:568.379773px;}
.y14e{bottom:570.000600px;}
.y150{bottom:572.879771px;}
.y5f{bottom:573.059771px;}
.y2f{bottom:573.239771px;}
.y1e7{bottom:573.599771px;}
.y197{bottom:578.820600px;}
.y1c5{bottom:579.179768px;}
.yf1{bottom:580.799768px;}
.y196{bottom:581.699767px;}
.y3f{bottom:582.239767px;}
.y95{bottom:582.779767px;}
.y126{bottom:583.859766px;}
.y14b{bottom:586.200600px;}
.yc5{bottom:586.919765px;}
.y14d{bottom:589.079764px;}
.y76{bottom:589.619764px;}
.y5e{bottom:596.819761px;}
.y1e6{bottom:597.539761px;}
.y125{bottom:599.519760px;}
.y194{bottom:599.700600px;}
.y3e{bottom:602.039759px;}
.y193{bottom:602.579759px;}
.y149{bottom:602.580600px;}
.y1c4{bottom:602.939759px;}
.yf0{bottom:604.559758px;}
.yc4{bottom:605.459758px;}
.y94{bottom:606.539757px;}
.y75{bottom:613.379755px;}
.y124{bottom:614.999754px;}
.yc3{bottom:616.799753px;}
.y147{bottom:618.780600px;}
.y192{bottom:620.400600px;}
.y5d{bottom:620.579752px;}
.y1e5{bottom:621.299751px;}
.y3d{bottom:621.839751px;}
.y191{bottom:623.279751px;}
.yef{bottom:624.899750px;}
.y1c3{bottom:626.879749px;}
.y93{bottom:630.299748px;}
.y123{bottom:630.479748px;}
.y145{bottom:634.980600px;}
.y74{bottom:637.139745px;}
.yee{bottom:640.379744px;}
.yc2{bottom:640.559744px;}
.y18c{bottom:641.100600px;}
.y3c{bottom:641.639743px;}
.y5c{bottom:644.339742px;}
.y1e4{bottom:645.059742px;}
.y122{bottom:645.959742px;}
.y1c2{bottom:650.639740px;}
.y143{bottom:651.360600px;}
.y92{bottom:654.059738px;}
.y2e{bottom:654.959738px;}
.y73{bottom:660.899736px;}
.y3b{bottom:661.439735px;}
.y121{bottom:661.619735px;}
.y18f{bottom:661.980600px;}
.yed{bottom:664.139734px;}
.yc1{bottom:664.499734px;}
.y140{bottom:667.560600px;}
.y5b{bottom:668.279733px;}
.y1e3{bottom:668.819732px;}
.y142{bottom:670.619732px;}
.y1c1{bottom:674.399730px;}
.y120{bottom:677.099729px;}
.y91{bottom:677.999729px;}
.y18e{bottom:680.339728px;}
.y3a{bottom:681.419727px;}
.y13d{bottom:683.940600px;}
.y72{bottom:684.839726px;}
.y13f{bottom:686.819725px;}
.yec{bottom:687.899725px;}
.yc0{bottom:688.259725px;}
.y2d{bottom:689.699724px;}
.y5a{bottom:692.039723px;}
.y11f{bottom:692.579723px;}
.y1e2{bottom:692.759723px;}
.y1c0{bottom:698.159721px;}
.y18a{bottom:698.160600px;}
.y13b{bottom:700.140600px;}
.y39{bottom:701.219720px;}
.y90{bottom:701.759719px;}
.y188{bottom:703.740600px;}
.y2c{bottom:704.999718px;}
.y11e{bottom:708.059717px;}
.y71{bottom:708.599717px;}
.yeb{bottom:711.839715px;}
.ybf{bottom:712.019715px;}
.y59{bottom:715.799714px;}
.y138{bottom:716.340600px;}
.y1e1{bottom:716.519713px;}
.y186{bottom:719.040600px;}
.y13a{bottom:719.399712px;}
.y2b{bottom:720.299712px;}
.y38{bottom:721.019712px;}
.y1bf{bottom:722.099711px;}
.y11d{bottom:723.539711px;}
.y8f{bottom:725.519710px;}
.y70{bottom:732.359707px;}
.y136{bottom:732.720600px;}
.y2a{bottom:734.339706px;}
.yea{bottom:735.599706px;}
.ybe{bottom:735.779706px;}
.y11c{bottom:739.199704px;}
.y58{bottom:739.559704px;}
.y184{bottom:739.740600px;}
.y1e0{bottom:740.279704px;}
.y37{bottom:740.819704px;}
.y1be{bottom:745.859702px;}
.y134{bottom:748.920600px;}
.y8e{bottom:749.279700px;}
.y11b{bottom:754.679698px;}
.y1ee{bottom:756.119698px;}
.ye9{bottom:759.359696px;}
.ybd{bottom:759.539696px;}
.y36{bottom:760.619696px;}
.y181{bottom:760.620600px;}
.y57{bottom:763.499695px;}
.y1df{bottom:764.039694px;}
.y131{bottom:765.300600px;}
.y29{bottom:767.819693px;}
.y183{bottom:767.999693px;}
.y133{bottom:768.179693px;}
.y1bd{bottom:769.619692px;}
.y8d{bottom:773.219691px;}
.ye8{bottom:778.439689px;}
.y1ed{bottom:780.059688px;}
.y35{bottom:780.599688px;}
.y180{bottom:781.320600px;}
.y1f0{bottom:781.499687px;}
.y12f{bottom:781.500600px;}
.ybc{bottom:783.479687px;}
.y56{bottom:787.259685px;}
.y1de{bottom:787.979685px;}
.ye7{bottom:792.119683px;}
.y1bc{bottom:793.379683px;}
.y8c{bottom:796.979681px;}
.y117{bottom:797.880600px;}
.y34{bottom:800.399680px;}
.y28{bottom:801.479679px;}
.y17e{bottom:802.020600px;}
.y1ec{bottom:803.819678px;}
.y17b{bottom:805.079678px;}
.ybb{bottom:807.239677px;}
.y17c{bottom:807.600600px;}
.y55{bottom:811.019676px;}
.y1dd{bottom:811.739675px;}
.ye6{bottom:812.279675px;}
.y119{bottom:816.239674px;}
.y27{bottom:816.959673px;}
.y1bb{bottom:817.139673px;}
.y33{bottom:820.199672px;}
.y8b{bottom:820.739672px;}
.y178{bottom:822.900600px;}
.yba{bottom:826.319669px;}
.y1ef{bottom:827.579669px;}
.ye5{bottom:827.759669px;}
.y17a{bottom:830.279668px;}
.y11a{bottom:831.719667px;}
.y54{bottom:834.779666px;}
.y1dc{bottom:835.499666px;}
.y1ba{bottom:837.839665px;}
.yb9{bottom:838.919664px;}
.y32{bottom:839.999664px;}
.y176{bottom:843.600600px;}
.y8a{bottom:846.659661px;}
.y116{bottom:847.379661px;}
.y31{bottom:847.739661px;}
.y26{bottom:850.439660px;}
.ye4{bottom:851.699659px;}
.y53{bottom:858.539657px;}
.y1db{bottom:859.259656px;}
.y15{bottom:860.339656px;}
.yb8{bottom:862.859655px;}
.y173{bottom:864.480600px;}
.y175{bottom:867.359653px;}
.y25{bottom:868.079653px;}
.y89{bottom:870.599652px;}
.y14{bottom:873.479651px;}
.ye3{bottom:875.459650px;}
.y52{bottom:882.479647px;}
.yb7{bottom:883.019647px;}
.y1da{bottom:883.199647px;}
.y172{bottom:885.359646px;}
.y13{bottom:887.699645px;}
.y88{bottom:890.759644px;}
.yb6{bottom:898.139641px;}
.y171{bottom:899.039640px;}
.ye2{bottom:899.219640px;}
.y115{bottom:906.059638px;}
.y51{bottom:906.239638px;}
.y1d9{bottom:906.959637px;}
.y12{bottom:907.679637px;}
.yb5{bottom:918.839632px;}
.y170{bottom:919.739632px;}
.ye1{bottom:922.979631px;}
.y113{bottom:923.880600px;}
.y11{bottom:927.479629px;}
.y50{bottom:929.999628px;}
.y1d8{bottom:937.919625px;}
.y16f{bottom:938.459625px;}
.yb4{bottom:939.539624px;}
.y111{bottom:944.580600px;}
.ye0{bottom:946.919621px;}
.y10{bottom:947.279621px;}
.y4f{bottom:953.759618px;}
.y1d7{bottom:959.159616px;}
.yb3{bottom:960.239616px;}
.y10e{bottom:965.460600px;}
.yf{bottom:968.339613px;}
.ydf{bottom:970.679612px;}
.y110{bottom:972.839611px;}
.y4e{bottom:977.699609px;}
.yb2{bottom:980.939608px;}
.y10c{bottom:986.160600px;}
.yde{bottom:991.379603px;}
.ye{bottom:992.099603px;}
.yb1{bottom:999.299600px;}
.y4d{bottom:1001.459599px;}
.ydd{bottom:1009.739596px;}
.y109{bottom:1009.919596px;}
.yb0{bottom:1010.099596px;}
.y10a{bottom:1012.440600px;}
.yd{bottom:1016.039594px;}
.ydc{bottom:1021.079592px;}
.y4c{bottom:1025.219590px;}
.y106{bottom:1027.740600px;}
.yaf{bottom:1030.799588px;}
.y108{bottom:1035.119586px;}
.yc{bottom:1039.799584px;}
.ydb{bottom:1044.839582px;}
.y104{bottom:1048.440600px;}
.y4b{bottom:1048.979580px;}
.yae{bottom:1049.699580px;}
.yad{bottom:1061.939575px;}
.yda{bottom:1068.779572px;}
.y103{bottom:1072.559571px;}
.y4a{bottom:1072.919571px;}
.yac{bottom:1082.639567px;}
.yd9{bottom:1092.539563px;}
.y49{bottom:1096.679561px;}
.y23{bottom:1104.419558px;}
.yab{bottom:1106.399557px;}
.yd8{bottom:1113.239555px;}
.y48{bottom:1120.439552px;}
.y22{bottom:1121.699551px;}
.yd7{bottom:1131.959547px;}
.yaa{bottom:1132.859547px;}
.y47{bottom:1144.199542px;}
.y21{bottom:1147.979541px;}
.ya9{bottom:1153.919538px;}
.y24{bottom:1157.879537px;}
.y4{bottom:1166.159534px;}
.y6{bottom:1195.139522px;}
.y3{bottom:1197.479521px;}
.y2{bottom:1214.759514px;}
.y1{bottom:1232.039507px;}
.h14{height:6.840000px;}
.h17{height:8.295465px;}
.h1f{height:10.080000px;}
.h1e{height:14.940000px;}
.h1d{height:15.120000px;}
.h21{height:15.300000px;}
.h1a{height:15.793939px;}
.h19{height:16.102962px;}
.h6{height:20.340000px;}
.h24{height:20.847999px;}
.h9{height:24.398428px;}
.h18{height:26.533818px;}
.h1b{height:28.302176px;}
.h16{height:31.587878px;}
.h23{height:32.693893px;}
.h5{height:32.976549px;}
.h1c{height:36.597642px;}
.h12{height:36.624009px;}
.ha{height:36.641938px;}
.h3{height:36.782212px;}
.h15{height:36.914048px;}
.h20{height:37.494126px;}
.h11{height:39.339828px;}
.hd{height:40.793187px;}
.h7{height:40.851546px;}
.h13{height:41.493499px;}
.he{height:44.149201px;}
.hf{height:44.893107px;}
.h4{height:45.281232px;}
.h10{height:47.381817px;}
.h8{height:48.796855px;}
.h22{height:49.992168px;}
.hb{height:52.417948px;}
.h1{height:52.435877px;}
.h2{height:58.121696px;}
.hc{height:63.175756px;}
.h0{height:1263.000000px;}
.w15{width:1.800000px;}
.w3b{width:1.980000px;}
.w1b{width:3.420000px;}
.w3e{width:3.780000px;}
.w39{width:4.320000px;}
.w1f{width:4.500000px;}
.wd{width:5.220000px;}
.w3c{width:5.760000px;}
.w5{width:6.840000px;}
.w11{width:7.560000px;}
.w2{width:7.740000px;}
.w3{width:7.920000px;}
.w3f{width:9.000000px;}
.w6{width:9.180000px;}
.wf{width:12.600000px;}
.w16{width:13.500000px;}
.w19{width:20.340000px;}
.w34{width:20.700000px;}
.w12{width:21.420000px;}
.wb{width:23.580000px;}
.wa{width:23.760000px;}
.w1d{width:24.840000px;}
.w1a{width:28.440000px;}
.w1c{width:28.620000px;}
.w17{width:30.420000px;}
.w24{width:30.780000px;}
.w28{width:30.960000px;}
.w4{width:35.280000px;}
.wc{width:37.080000px;}
.w27{width:37.260000px;}
.w14{width:43.920000px;}
.w33{width:44.100000px;}
.w47{width:46.440000px;}
.w18{width:47.160000px;}
.w7{width:49.860000px;}
.w23{width:52.380000px;}
.w40{width:53.460000px;}
.w1e{width:57.060000px;}
.w13{width:59.940000px;}
.w3d{width:66.060000px;}
.w37{width:67.140000px;}
.w10{width:71.640000px;}
.w35{width:73.260000px;}
.w46{width:74.160000px;}
.w2b{width:74.700000px;}
.w2f{width:75.780000px;}
.w21{width:81.000000px;}
.w36{width:82.440000px;}
.w30{width:83.160000px;}
.we{width:85.500000px;}
.w22{width:89.460000px;}
.w2d{width:97.200000px;}
.w26{width:99.180000px;}
.w8{width:102.060000px;}
.w32{width:104.580000px;}
.w2a{width:106.920000px;}
.w3a{width:120.600000px;}
.w29{width:121.140000px;}
.w44{width:126.720000px;}
.w25{width:129.420000px;}
.w2e{width:131.220000px;}
.w38{width:131.760000px;}
.w43{width:133.920000px;}
.w9{width:138.420000px;}
.w31{width:144.720000px;}
.w20{width:161.640000px;}
.w2c{width:165.780000px;}
.w41{width:208.260000px;}
.w42{width:217.440000px;}
.w45{width:263.340000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:43.199983px;}
.x1{left:70.559972px;}
.xc0{left:75.059970px;}
.x1c{left:82.439967px;}
.x1a{left:84.419966px;}
.xf{left:90.899964px;}
.x17{left:94.319962px;}
.x15{left:95.759962px;}
.x24{left:97.559961px;}
.x1e{left:99.359960px;}
.x19{left:102.779919px;}
.x23{left:104.400303px;}
.x18{left:105.839958px;}
.x25{left:111.059951px;}
.x27{left:115.559954px;}
.x2a{left:117.899306px;}
.x26{left:124.559947px;}
.x1d{left:131.039948px;}
.x7b{left:136.079946px;}
.x1b{left:141.119944px;}
.x80{left:142.560000px;}
.x85{left:149.400000px;}
.xc1{left:151.559939px;}
.x29{left:158.390465px;}
.x2f{left:167.400000px;}
.x28{left:168.839739px;}
.x2b{left:173.519931px;}
.x57{left:176.580000px;}
.x81{left:177.840000px;}
.x7{left:187.199925px;}
.x95{left:196.380000px;}
.x30{left:202.680000px;}
.x16{left:214.919914px;}
.x8{left:218.339913px;}
.x50{left:220.680000px;}
.x31{left:223.740000px;}
.x1f{left:224.999920px;}
.x20{left:226.079910px;}
.x82{left:227.160000px;}
.x11{left:232.559907px;}
.x83{left:236.160000px;}
.x38{left:238.499905px;}
.x39{left:242.280000px;}
.x9f{left:243.540000px;}
.x10{left:245.339902px;}
.x21{left:247.859901px;}
.x96{left:256.320000px;}
.x4d{left:261.900000px;}
.x86{left:263.159895px;}
.x2{left:265.139894px;}
.x87{left:266.940000px;}
.x22{left:269.279892px;}
.x46{left:274.680000px;}
.x58{left:277.740000px;}
.x73{left:284.220000px;}
.x79{left:286.559885px;}
.x74{left:288.720000px;}
.x6d{left:295.380000px;}
.x70{left:296.460000px;}
.x67{left:301.680000px;}
.x75{left:303.120000px;}
.xc{left:304.379822px;}
.x76{left:306.000000px;}
.x68{left:310.140000px;}
.x6e{left:317.880000px;}
.x32{left:320.220000px;}
.x40{left:322.380000px;}
.xb{left:323.819870px;}
.x72{left:325.260000px;}
.x6c{left:327.600000px;}
.x84{left:334.080000px;}
.x5{left:336.599865px;}
.xd{left:338.219868px;}
.x6b{left:341.820000px;}
.x3a{left:343.800000px;}
.x88{left:347.040000px;}
.x6a{left:350.100000px;}
.x6f{left:351.900000px;}
.x8c{left:360.540000px;}
.x69{left:362.340000px;}
.x71{left:365.400000px;}
.x33{left:370.080000px;}
.x64{left:382.320000px;}
.xb9{left:384.480000px;}
.x47{left:387.000000px;}
.xa{left:390.779844px;}
.xba{left:393.660000px;}
.x7c{left:398.339816px;}
.xbc{left:405.900000px;}
.x12{left:407.159837px;}
.xbd{left:410.400000px;}
.x2c{left:414.000367px;}
.x7d{left:424.260000px;}
.x2e{left:425.879830px;}
.x7e{left:427.679829px;}
.x48{left:430.920000px;}
.x34{left:435.420000px;}
.x77{left:437.760000px;}
.x4f{left:440.279824px;}
.x51{left:441.899823px;}
.x8d{left:446.040000px;}
.x3d{left:447.119821px;}
.x3b{left:459.000000px;}
.x9{left:462.059815px;}
.x97{left:471.960000px;}
.x7a{left:478.979808px;}
.xbe{left:484.560000px;}
.x59{left:485.640000px;}
.x4e{left:488.700000px;}
.x5a{left:490.140000px;}
.x3e{left:496.440000px;}
.x3f{left:501.659799px;}
.xa4{left:506.340000px;}
.x13{left:508.499797px;}
.xa5{left:510.840000px;}
.x41{left:513.540000px;}
.x98{left:515.880000px;}
.x5b{left:520.560000px;}
.x7f{left:524.700000px;}
.xbf{left:531.000000px;}
.xa6{left:533.339787px;}
.xbb{left:535.320000px;}
.x8e{left:536.400000px;}
.x35{left:537.480000px;}
.x89{left:539.640000px;}
.xa7{left:542.700000px;}
.x49{left:543.960000px;}
.xad{left:546.480000px;}
.x8f{left:547.560000px;}
.x99{left:549.900000px;}
.x5c{left:558.180000px;}
.x78{left:562.679775px;}
.x52{left:565.200000px;}
.xa3{left:567.720000px;}
.xae{left:572.580000px;}
.x2d{left:584.459766px;}
.x5d{left:588.600000px;}
.x53{left:604.799758px;}
.xb2{left:607.140000px;}
.x5e{left:608.220000px;}
.x90{left:610.560000px;}
.x36{left:617.580000px;}
.x42{left:621.900000px;}
.xaf{left:625.860000px;}
.x54{left:627.299749px;}
.x43{left:629.460000px;}
.xb3{left:630.720000px;}
.x65{left:632.340000px;}
.xb4{left:635.220000px;}
.xa8{left:644.939742px;}
.x55{left:646.020000px;}
.xa9{left:647.100000px;}
.x3c{left:654.660000px;}
.x66{left:662.760000px;}
.x4a{left:665.820000px;}
.xb0{left:667.800000px;}
.x5f{left:681.840000px;}
.x60{left:686.340000px;}
.x9a{left:688.140000px;}
.xb1{left:692.460000px;}
.x56{left:695.879722px;}
.xb7{left:697.139721px;}
.x44{left:700.380000px;}
.xa0{left:701.640000px;}
.x3{left:709.919716px;}
.xaa{left:713.160000px;}
.x61{left:716.760000px;}
.x45{left:721.800000px;}
.x4b{left:724.139710px;}
.x9b{left:725.220000px;}
.x4c{left:727.920000px;}
.xa1{left:729.720000px;}
.x9c{left:735.480000px;}
.xb8{left:737.639705px;}
.xb5{left:742.140000px;}
.x62{left:745.020000px;}
.x91{left:747.360000px;}
.xab{left:749.160000px;}
.xac{left:752.940000px;}
.x92{left:754.920000px;}
.x37{left:756.000000px;}
.x14{left:762.479224px;}
.x8a{left:769.140000px;}
.x9d{left:772.560000px;}
.x63{left:775.440000px;}
.xa2{left:777.060000px;}
.x9e{left:778.860000px;}
.x93{left:781.020000px;}
.xb6{left:782.820000px;}
.x94{left:802.440000px;}
.x8b{left:806.220000px;}
.x6{left:842.400000px;}
.xe{left:851.219660px;}
@media print{
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.009459pt;}
.ls3{letter-spacing:0.016533pt;}
.lsf{letter-spacing:0.018761pt;}
.ls8{letter-spacing:0.018878pt;}
.lse{letter-spacing:0.018917pt;}
.lsc{letter-spacing:0.333941pt;}
.lsa{letter-spacing:5.901971pt;}
.ls6{letter-spacing:6.542344pt;}
.ls7{letter-spacing:7.053597pt;}
.ls4{letter-spacing:8.491730pt;}
.ls9{letter-spacing:12.817008pt;}
.lsb{letter-spacing:30.236308pt;}
.ls2{letter-spacing:88.381619pt;}
.ls1{letter-spacing:90.302768pt;}
.ls0{letter-spacing:1697.155298pt;}
.ws5{word-spacing:-28.816521pt;}
.wsa{word-spacing:-16.018911pt;}
.ws7{word-spacing:-16.018872pt;}
.wsb{word-spacing:-16.018755pt;}
.ws1{word-spacing:-15.999994pt;}
.ws3{word-spacing:-14.719994pt;}
.ws4{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws2{word-spacing:-13.279995pt;}
.ws9{word-spacing:-12.333936pt;}
.ws8{word-spacing:-11.999995pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-17.763668pt;}
._3{margin-left:-6.973325pt;}
._1a{margin-left:-4.941944pt;}
._1{margin-left:-3.771380pt;}
._5{margin-left:-2.173116pt;}
._2{margin-left:-1.086158pt;}
._0{width:0.891642pt;}
._8{width:2.267274pt;}
._9{width:3.320498pt;}
._a{width:4.410216pt;}
._7{width:5.605294pt;}
._6{width:6.510842pt;}
._f{width:7.841207pt;}
._10{width:9.224868pt;}
._13{width:10.653342pt;}
._e{width:12.322609pt;}
._12{width:13.670274pt;}
._19{width:14.781618pt;}
._d{width:17.281746pt;}
._c{width:18.525876pt;}
._17{width:19.899994pt;}
._18{width:21.198656pt;}
._b{width:22.902389pt;}
._25{width:24.457107pt;}
._16{width:26.151769pt;}
._15{width:27.570122pt;}
._14{width:28.645941pt;}
._11{width:35.639243pt;}
._2a{width:36.626813pt;}
._26{width:39.606785pt;}
._27{width:40.533623pt;}
._28{width:46.927065pt;}
._29{width:47.899940pt;}
._1b{width:143.712812pt;}
._1e{width:208.617474pt;}
._24{width:340.688247pt;}
._21{width:367.376237pt;}
._22{width:423.369388pt;}
._1f{width:618.009310pt;}
._23{width:651.321296pt;}
._1c{width:732.180906pt;}
._1d{width:796.283707pt;}
._20{width:843.369220pt;}
.fs7{font-size:10.879996pt;}
.fsa{font-size:15.999994pt;}
.fs9{font-size:21.119992pt;}
.fs8{font-size:26.879989pt;}
.fs5{font-size:31.999987pt;}
.fs6{font-size:37.119985pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.y46{bottom:-5.280695pt;}
.y0{bottom:0.000000pt;}
.y10b{bottom:1.759106pt;}
.y17d{bottom:1.759179pt;}
.y189{bottom:1.759216pt;}
.y107{bottom:2.559100pt;}
.y10d{bottom:2.559115pt;}
.y10f{bottom:2.559122pt;}
.y114{bottom:2.559137pt;}
.y174{bottom:2.559158pt;}
.y179{bottom:2.559173pt;}
.y118{bottom:2.559182pt;}
.y130{bottom:2.559188pt;}
.y132{bottom:2.559194pt;}
.y182{bottom:2.559195pt;}
.y137{bottom:2.559205pt;}
.y187{bottom:2.559210pt;}
.y13c{bottom:2.559217pt;}
.y13e{bottom:2.559222pt;}
.y190{bottom:2.559230pt;}
.y144{bottom:2.559234pt;}
.y148{bottom:2.559246pt;}
.y14a{bottom:2.559251pt;}
.y195{bottom:2.559252pt;}
.y14c{bottom:2.559257pt;}
.y198{bottom:2.559260pt;}
.y14f{bottom:2.559263pt;}
.y19b{bottom:2.559267pt;}
.y155{bottom:2.559275pt;}
.y158{bottom:2.559280pt;}
.y19e{bottom:2.559282pt;}
.y15b{bottom:2.559286pt;}
.y1a1{bottom:2.559289pt;}
.y15d{bottom:2.559292pt;}
.y1a3{bottom:2.559297pt;}
.y162{bottom:2.559303pt;}
.y1a9{bottom:2.559319pt;}
.y1ac{bottom:2.559326pt;}
.y1af{bottom:2.559334pt;}
.y1b1{bottom:2.559341pt;}
.y105{bottom:2.719093pt;}
.y112{bottom:2.719130pt;}
.y177{bottom:2.719166pt;}
.y17f{bottom:2.719180pt;}
.y135{bottom:2.719199pt;}
.y185{bottom:2.719203pt;}
.y139{bottom:2.719211pt;}
.y18b{bottom:2.719217pt;}
.y141{bottom:2.719228pt;}
.y18d{bottom:2.719238pt;}
.y146{bottom:2.719240pt;}
.y152{bottom:2.719269pt;}
.y12e{bottom:2.719298pt;}
.y1a7{bottom:2.719311pt;}
.ya{bottom:4.000034pt;}
.y5{bottom:4.266878pt;}
.yb{bottom:29.066922pt;}
.y9{bottom:44.906880pt;}
.y7{bottom:48.906914pt;}
.y8{bottom:50.346913pt;}
.ya8{bottom:151.146606pt;}
.yd6{bottom:151.626606pt;}
.y20{bottom:155.466604pt;}
.y1b9{bottom:157.706604pt;}
.y1d6{bottom:157.866604pt;}
.y102{bottom:159.306603pt;}
.yd5{bottom:164.106601pt;}
.y87{bottom:164.426601pt;}
.y16e{bottom:167.466600pt;}
.ya7{bottom:169.546599pt;}
.y6f{bottom:170.826598pt;}
.y1f{bottom:176.586596pt;}
.y101{bottom:177.706596pt;}
.y1b8{bottom:178.826595pt;}
.y1d5{bottom:179.146595pt;}
.yd4{bottom:185.226593pt;}
.y86{bottom:185.546592pt;}
.ya6{bottom:187.946591pt;}
.y16d{bottom:188.746591pt;}
.y6e{bottom:191.946590pt;}
.y1e{bottom:197.706588pt;}
.y100{bottom:198.986587pt;}
.y1b7{bottom:200.106587pt;}
.y1d4{bottom:200.266587pt;}
.ya5{bottom:206.186584pt;}
.yd3{bottom:206.346584pt;}
.y85{bottom:206.666584pt;}
.y16c{bottom:209.866583pt;}
.y6d{bottom:213.066581pt;}
.y1d{bottom:218.826579pt;}
.yff{bottom:220.106579pt;}
.y1b6{bottom:221.226578pt;}
.y1d3{bottom:221.386578pt;}
.ya4{bottom:223.786577pt;}
.yd2{bottom:227.626576pt;}
.y84{bottom:227.786576pt;}
.y16b{bottom:230.986574pt;}
.ya3{bottom:233.546573pt;}
.y6c{bottom:234.186573pt;}
.y1c{bottom:240.106571pt;}
.yfe{bottom:241.226570pt;}
.y1b5{bottom:242.346570pt;}
.y1d2{bottom:242.506570pt;}
.yd1{bottom:248.746567pt;}
.y83{bottom:248.906567pt;}
.ya2{bottom:251.946566pt;}
.y16a{bottom:252.106566pt;}
.y6b{bottom:255.466564pt;}
.y1b{bottom:261.226562pt;}
.yfd{bottom:262.346562pt;}
.y1b4{bottom:263.466561pt;}
.y1d1{bottom:263.626561pt;}
.yd0{bottom:269.866559pt;}
.y82{bottom:270.186559pt;}
.ya1{bottom:273.066557pt;}
.y169{bottom:273.386557pt;}
.y6a{bottom:276.586556pt;}
.y1a{bottom:282.346554pt;}
.yfc{bottom:283.626553pt;}
.y1b3{bottom:284.586553pt;}
.y1d0{bottom:284.906553pt;}
.ycf{bottom:290.986550pt;}
.y81{bottom:291.306550pt;}
.y168{bottom:294.506549pt;}
.ya0{bottom:296.586548pt;}
.y69{bottom:297.706548pt;}
.y1b2{bottom:301.386546pt;}
.y19{bottom:303.466545pt;}
.yfb{bottom:304.746545pt;}
.y1cf{bottom:306.026544pt;}
.y1b0{bottom:311.467200pt;}
.y80{bottom:312.426542pt;}
.y9f{bottom:314.826541pt;}
.y167{bottom:315.626540pt;}
.y68{bottom:318.826539pt;}
.yce{bottom:321.706538pt;}
.y18{bottom:324.586537pt;}
.y9e{bottom:325.546536pt;}
.yfa{bottom:325.866536pt;}
.y1ce{bottom:327.146536pt;}
.y1ae{bottom:329.867200pt;}
.y1ad{bottom:332.426534pt;}
.y7f{bottom:333.546533pt;}
.y166{bottom:336.746532pt;}
.y67{bottom:340.106531pt;}
.y17{bottom:345.866528pt;}
.yf9{bottom:346.986528pt;}
.y1cd{bottom:348.266527pt;}
.y1ab{bottom:348.427200pt;}
.y9d{bottom:348.746527pt;}
.y1aa{bottom:350.986526pt;}
.ycd{bottom:352.426526pt;}
.y7e{bottom:354.826525pt;}
.y165{bottom:357.866524pt;}
.y66{bottom:361.226522pt;}
.y1a8{bottom:366.827200pt;}
.y16{bottom:366.986520pt;}
.yf8{bottom:368.266519pt;}
.y1cc{bottom:369.546519pt;}
.y9c{bottom:369.866519pt;}
.ycc{bottom:373.546517pt;}
.y7d{bottom:375.946516pt;}
.y164{bottom:379.146515pt;}
.y65{bottom:382.346514pt;}
.y1a6{bottom:385.227200pt;}
.yf7{bottom:389.386511pt;}
.y1cb{bottom:390.666510pt;}
.y9b{bottom:390.986510pt;}
.ycb{bottom:394.666509pt;}
.y163{bottom:396.106508pt;}
.y7c{bottom:397.066508pt;}
.y64{bottom:403.466505pt;}
.y1a5{bottom:403.787200pt;}
.y161{bottom:405.387200pt;}
.y1a4{bottom:406.346504pt;}
.y160{bottom:407.946503pt;}
.y45{bottom:408.587200pt;}
.yf6{bottom:410.506502pt;}
.y1ca{bottom:411.786502pt;}
.y9a{bottom:412.106502pt;}
.y30{bottom:414.986501pt;}
.yca{bottom:415.946500pt;}
.y44{bottom:417.386500pt;}
.y7b{bottom:418.186499pt;}
.y12d{bottom:419.787200pt;}
.y1a2{bottom:422.187200pt;}
.y15f{bottom:422.506498pt;}
.y63{bottom:424.746497pt;}
.y43{bottom:431.146494pt;}
.yf5{bottom:431.626494pt;}
.y1c9{bottom:432.906494pt;}
.y99{bottom:433.386493pt;}
.y15c{bottom:434.347200pt;}
.y1eb{bottom:435.146493pt;}
.y12c{bottom:436.266492pt;}
.y15e{bottom:436.906492pt;}
.yc9{bottom:437.066492pt;}
.y7a{bottom:439.466491pt;}
.y1a0{bottom:440.747200pt;}
.y19f{bottom:443.306489pt;}
.y42{bottom:445.066489pt;}
.y62{bottom:445.866488pt;}
.y1ea{bottom:446.506488pt;}
.y15a{bottom:448.747200pt;}
.y12b{bottom:450.026487pt;}
.yf4{bottom:452.746486pt;}
.y1c8{bottom:454.186485pt;}
.y98{bottom:454.506485pt;}
.yc8{bottom:458.186483pt;}
.y41{bottom:458.826483pt;}
.y19d{bottom:459.147200pt;}
.y79{bottom:460.586482pt;}
.y19c{bottom:461.706482pt;}
.y157{bottom:463.307200pt;}
.y12a{bottom:463.786481pt;}
.y159{bottom:465.866480pt;}
.y61{bottom:466.986480pt;}
.y1e9{bottom:467.626480pt;}
.yf3{bottom:474.026477pt;}
.y1c7{bottom:475.306477pt;}
.y97{bottom:475.626476pt;}
.y129{bottom:477.706476pt;}
.y154{bottom:477.707200pt;}
.yc7{bottom:479.306475pt;}
.y156{bottom:480.266475pt;}
.y78{bottom:481.706474pt;}
.y60{bottom:488.106471pt;}
.y1e8{bottom:488.746471pt;}
.y128{bottom:491.466470pt;}
.y151{bottom:492.107200pt;}
.y153{bottom:494.826469pt;}
.yf2{bottom:495.146469pt;}
.y19a{bottom:496.107200pt;}
.y1c6{bottom:496.426468pt;}
.y96{bottom:496.746468pt;}
.y199{bottom:498.666467pt;}
.y40{bottom:499.786467pt;}
.yc6{bottom:500.426466pt;}
.y77{bottom:502.826466pt;}
.y127{bottom:505.226465pt;}
.y14e{bottom:506.667200pt;}
.y150{bottom:509.226463pt;}
.y5f{bottom:509.386463pt;}
.y2f{bottom:509.546463pt;}
.y1e7{bottom:509.866463pt;}
.y197{bottom:514.507200pt;}
.y1c5{bottom:514.826461pt;}
.yf1{bottom:516.266460pt;}
.y196{bottom:517.066460pt;}
.y3f{bottom:517.546460pt;}
.y95{bottom:518.026459pt;}
.y126{bottom:518.986459pt;}
.y14b{bottom:521.067200pt;}
.yc5{bottom:521.706458pt;}
.y14d{bottom:523.626457pt;}
.y76{bottom:524.106457pt;}
.y5e{bottom:530.506454pt;}
.y1e6{bottom:531.146454pt;}
.y125{bottom:532.906454pt;}
.y194{bottom:533.067200pt;}
.y3e{bottom:535.146453pt;}
.y193{bottom:535.626452pt;}
.y149{bottom:535.627200pt;}
.y1c4{bottom:535.946452pt;}
.yf0{bottom:537.386452pt;}
.yc4{bottom:538.186451pt;}
.y94{bottom:539.146451pt;}
.y75{bottom:545.226449pt;}
.y124{bottom:546.666448pt;}
.yc3{bottom:548.266447pt;}
.y147{bottom:550.027200pt;}
.y192{bottom:551.467200pt;}
.y5d{bottom:551.626446pt;}
.y1e5{bottom:552.266446pt;}
.y3d{bottom:552.746446pt;}
.y191{bottom:554.026445pt;}
.yef{bottom:555.466444pt;}
.y1c3{bottom:557.226444pt;}
.y93{bottom:560.266443pt;}
.y123{bottom:560.426442pt;}
.y145{bottom:564.427200pt;}
.y74{bottom:566.346440pt;}
.yee{bottom:569.226439pt;}
.yc2{bottom:569.386439pt;}
.y18c{bottom:569.867200pt;}
.y3c{bottom:570.346439pt;}
.y5c{bottom:572.746438pt;}
.y1e4{bottom:573.386437pt;}
.y122{bottom:574.186437pt;}
.y1c2{bottom:578.346435pt;}
.y143{bottom:578.987200pt;}
.y92{bottom:581.386434pt;}
.y2e{bottom:582.186434pt;}
.y73{bottom:587.466432pt;}
.y3b{bottom:587.946431pt;}
.y121{bottom:588.106431pt;}
.y18f{bottom:588.427200pt;}
.yed{bottom:590.346431pt;}
.yc1{bottom:590.666430pt;}
.y140{bottom:593.387200pt;}
.y5b{bottom:594.026429pt;}
.y1e3{bottom:594.506429pt;}
.y142{bottom:596.106428pt;}
.y1c1{bottom:599.466427pt;}
.y120{bottom:601.866426pt;}
.y91{bottom:602.666426pt;}
.y18e{bottom:604.746425pt;}
.y3a{bottom:605.706424pt;}
.y13d{bottom:607.947200pt;}
.y72{bottom:608.746423pt;}
.y13f{bottom:610.506422pt;}
.yec{bottom:611.466422pt;}
.yc0{bottom:611.786422pt;}
.y2d{bottom:613.066421pt;}
.y5a{bottom:615.146421pt;}
.y11f{bottom:615.626420pt;}
.y1e2{bottom:615.786420pt;}
.y1c0{bottom:620.586418pt;}
.y18a{bottom:620.587200pt;}
.y13b{bottom:622.347200pt;}
.y39{bottom:623.306417pt;}
.y90{bottom:623.786417pt;}
.y188{bottom:625.547200pt;}
.y2c{bottom:626.666416pt;}
.y11e{bottom:629.386415pt;}
.y71{bottom:629.866415pt;}
.yeb{bottom:632.746414pt;}
.ybf{bottom:632.906414pt;}
.y59{bottom:636.266412pt;}
.y138{bottom:636.747200pt;}
.y1e1{bottom:636.906412pt;}
.y186{bottom:639.147200pt;}
.y13a{bottom:639.466411pt;}
.y2b{bottom:640.266411pt;}
.y38{bottom:640.906410pt;}
.y1bf{bottom:641.866410pt;}
.y11d{bottom:643.146409pt;}
.y8f{bottom:644.906409pt;}
.y70{bottom:650.986406pt;}
.y136{bottom:651.307200pt;}
.y2a{bottom:652.746406pt;}
.yea{bottom:653.866405pt;}
.ybe{bottom:654.026405pt;}
.y11c{bottom:657.066404pt;}
.y58{bottom:657.386404pt;}
.y184{bottom:657.547200pt;}
.y1e0{bottom:658.026403pt;}
.y37{bottom:658.506403pt;}
.y1be{bottom:662.986401pt;}
.y134{bottom:665.707200pt;}
.y8e{bottom:666.026400pt;}
.y11b{bottom:670.826398pt;}
.y1ee{bottom:672.106398pt;}
.ye9{bottom:674.986397pt;}
.ybd{bottom:675.146397pt;}
.y36{bottom:676.106396pt;}
.y181{bottom:676.107200pt;}
.y57{bottom:678.666395pt;}
.y1df{bottom:679.146395pt;}
.y131{bottom:680.267200pt;}
.y29{bottom:682.506394pt;}
.y183{bottom:682.666394pt;}
.y133{bottom:682.826394pt;}
.y1bd{bottom:684.106393pt;}
.y8d{bottom:687.306392pt;}
.ye8{bottom:691.946390pt;}
.y1ed{bottom:693.386389pt;}
.y35{bottom:693.866389pt;}
.y180{bottom:694.507200pt;}
.y1f0{bottom:694.666389pt;}
.y12f{bottom:694.667200pt;}
.ybc{bottom:696.426388pt;}
.y56{bottom:699.786387pt;}
.y1de{bottom:700.426386pt;}
.ye7{bottom:704.106385pt;}
.y1bc{bottom:705.226385pt;}
.y8c{bottom:708.426383pt;}
.y117{bottom:709.227200pt;}
.y34{bottom:711.466382pt;}
.y28{bottom:712.426382pt;}
.y17e{bottom:712.907200pt;}
.y1ec{bottom:714.506381pt;}
.y17b{bottom:715.626380pt;}
.ybb{bottom:717.546380pt;}
.y17c{bottom:717.867200pt;}
.y55{bottom:720.906378pt;}
.y1dd{bottom:721.546378pt;}
.ye6{bottom:722.026378pt;}
.y119{bottom:725.546376pt;}
.y27{bottom:726.186376pt;}
.y1bb{bottom:726.346376pt;}
.y33{bottom:729.066375pt;}
.y8b{bottom:729.546375pt;}
.y178{bottom:731.467200pt;}
.yba{bottom:734.506373pt;}
.y1ef{bottom:735.626372pt;}
.ye5{bottom:735.786372pt;}
.y17a{bottom:738.026371pt;}
.y11a{bottom:739.306371pt;}
.y54{bottom:742.026370pt;}
.y1dc{bottom:742.666370pt;}
.y1ba{bottom:744.746369pt;}
.yb9{bottom:745.706368pt;}
.y32{bottom:746.666368pt;}
.y176{bottom:749.867200pt;}
.y8a{bottom:752.586366pt;}
.y116{bottom:753.226365pt;}
.y31{bottom:753.546365pt;}
.y26{bottom:755.946364pt;}
.ye4{bottom:757.066364pt;}
.y53{bottom:763.146361pt;}
.y1db{bottom:763.786361pt;}
.y15{bottom:764.746361pt;}
.yb8{bottom:766.986360pt;}
.y173{bottom:768.427200pt;}
.y175{bottom:770.986358pt;}
.y25{bottom:771.626358pt;}
.y89{bottom:773.866357pt;}
.y14{bottom:776.426356pt;}
.ye3{bottom:778.186355pt;}
.y52{bottom:784.426353pt;}
.yb7{bottom:784.906353pt;}
.y1da{bottom:785.066353pt;}
.y172{bottom:786.986352pt;}
.y13{bottom:789.066351pt;}
.y88{bottom:791.786350pt;}
.yb6{bottom:798.346347pt;}
.y171{bottom:799.146347pt;}
.ye2{bottom:799.306347pt;}
.y115{bottom:805.386345pt;}
.y51{bottom:805.546344pt;}
.y1d9{bottom:806.186344pt;}
.y12{bottom:806.826344pt;}
.yb5{bottom:816.746340pt;}
.y170{bottom:817.546340pt;}
.ye1{bottom:820.426338pt;}
.y113{bottom:821.227200pt;}
.y11{bottom:824.426337pt;}
.y50{bottom:826.666336pt;}
.y1d8{bottom:833.706333pt;}
.y16f{bottom:834.186333pt;}
.yb4{bottom:835.146333pt;}
.y111{bottom:839.627200pt;}
.ye0{bottom:841.706330pt;}
.y10{bottom:842.026330pt;}
.y4f{bottom:847.786328pt;}
.y1d7{bottom:852.586326pt;}
.yb3{bottom:853.546325pt;}
.y10e{bottom:858.187200pt;}
.yf{bottom:860.746322pt;}
.ydf{bottom:862.826322pt;}
.y110{bottom:864.746321pt;}
.y4e{bottom:869.066319pt;}
.yb2{bottom:871.946318pt;}
.y10c{bottom:876.587200pt;}
.yde{bottom:881.226314pt;}
.ye{bottom:881.866314pt;}
.yb1{bottom:888.266311pt;}
.y4d{bottom:890.186311pt;}
.ydd{bottom:897.546308pt;}
.y109{bottom:897.706308pt;}
.yb0{bottom:897.866308pt;}
.y10a{bottom:899.947200pt;}
.yd{bottom:903.146305pt;}
.ydc{bottom:907.626304pt;}
.y4c{bottom:911.306302pt;}
.y106{bottom:913.547200pt;}
.yaf{bottom:916.266300pt;}
.y108{bottom:920.106299pt;}
.yc{bottom:924.266297pt;}
.ydb{bottom:928.746295pt;}
.y104{bottom:931.947200pt;}
.y4b{bottom:932.426294pt;}
.yae{bottom:933.066293pt;}
.yad{bottom:943.946289pt;}
.yda{bottom:950.026287pt;}
.y103{bottom:953.386285pt;}
.y4a{bottom:953.706285pt;}
.yac{bottom:962.346282pt;}
.yd9{bottom:971.146278pt;}
.y49{bottom:974.826277pt;}
.y23{bottom:981.706274pt;}
.yab{bottom:983.466273pt;}
.yd8{bottom:989.546271pt;}
.y48{bottom:995.946268pt;}
.y22{bottom:997.066268pt;}
.yd7{bottom:1006.186264pt;}
.yaa{bottom:1006.986264pt;}
.y47{bottom:1017.066260pt;}
.y21{bottom:1020.426258pt;}
.ya9{bottom:1025.706256pt;}
.y24{bottom:1029.226255pt;}
.y4{bottom:1036.586252pt;}
.y6{bottom:1062.346242pt;}
.y3{bottom:1064.426241pt;}
.y2{bottom:1079.786235pt;}
.y1{bottom:1095.146229pt;}
.h14{height:6.080000pt;}
.h17{height:7.373747pt;}
.h1f{height:8.960000pt;}
.h1e{height:13.280000pt;}
.h1d{height:13.440000pt;}
.h21{height:13.600000pt;}
.h1a{height:14.039057pt;}
.h19{height:14.313744pt;}
.h6{height:18.080000pt;}
.h24{height:18.531555pt;}
.h9{height:21.687491pt;}
.h18{height:23.585616pt;}
.h1b{height:25.157490pt;}
.h16{height:28.078114pt;}
.h23{height:29.061238pt;}
.h5{height:29.312488pt;}
.h1c{height:32.531237pt;}
.h12{height:32.554674pt;}
.ha{height:32.570612pt;}
.h3{height:32.695299pt;}
.h15{height:32.812487pt;}
.h20{height:33.328112pt;}
.h11{height:34.968736pt;}
.hd{height:36.260610pt;}
.h7{height:36.312485pt;}
.h13{height:36.883110pt;}
.he{height:39.243734pt;}
.hf{height:39.904984pt;}
.h4{height:40.249984pt;}
.h10{height:42.117171pt;}
.h8{height:43.374983pt;}
.h22{height:44.437482pt;}
.hb{height:46.593731pt;}
.h1{height:46.609669pt;}
.h2{height:51.663729pt;}
.hc{height:56.156228pt;}
.h0{height:1122.666667pt;}
.w15{width:1.600000pt;}
.w3b{width:1.760000pt;}
.w1b{width:3.040000pt;}
.w3e{width:3.360000pt;}
.w39{width:3.840000pt;}
.w1f{width:4.000000pt;}
.wd{width:4.640000pt;}
.w3c{width:5.120000pt;}
.w5{width:6.080000pt;}
.w11{width:6.720000pt;}
.w2{width:6.880000pt;}
.w3{width:7.040000pt;}
.w3f{width:8.000000pt;}
.w6{width:8.160000pt;}
.wf{width:11.200000pt;}
.w16{width:12.000000pt;}
.w19{width:18.080000pt;}
.w34{width:18.400000pt;}
.w12{width:19.040000pt;}
.wb{width:20.960000pt;}
.wa{width:21.120000pt;}
.w1d{width:22.080000pt;}
.w1a{width:25.280000pt;}
.w1c{width:25.440000pt;}
.w17{width:27.040000pt;}
.w24{width:27.360000pt;}
.w28{width:27.520000pt;}
.w4{width:31.360000pt;}
.wc{width:32.960000pt;}
.w27{width:33.120000pt;}
.w14{width:39.040000pt;}
.w33{width:39.200000pt;}
.w47{width:41.280000pt;}
.w18{width:41.920000pt;}
.w7{width:44.320000pt;}
.w23{width:46.560000pt;}
.w40{width:47.520000pt;}
.w1e{width:50.720000pt;}
.w13{width:53.280000pt;}
.w3d{width:58.720000pt;}
.w37{width:59.680000pt;}
.w10{width:63.680000pt;}
.w35{width:65.120000pt;}
.w46{width:65.920000pt;}
.w2b{width:66.400000pt;}
.w2f{width:67.360000pt;}
.w21{width:72.000000pt;}
.w36{width:73.280000pt;}
.w30{width:73.920000pt;}
.we{width:76.000000pt;}
.w22{width:79.520000pt;}
.w2d{width:86.400000pt;}
.w26{width:88.160000pt;}
.w8{width:90.720000pt;}
.w32{width:92.960000pt;}
.w2a{width:95.040000pt;}
.w3a{width:107.200000pt;}
.w29{width:107.680000pt;}
.w44{width:112.640000pt;}
.w25{width:115.040000pt;}
.w2e{width:116.640000pt;}
.w38{width:117.120000pt;}
.w43{width:119.040000pt;}
.w9{width:123.040000pt;}
.w31{width:128.640000pt;}
.w20{width:143.680000pt;}
.w2c{width:147.360000pt;}
.w41{width:185.120000pt;}
.w42{width:193.280000pt;}
.w45{width:234.080000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:38.399985pt;}
.x1{left:62.719975pt;}
.xc0{left:66.719973pt;}
.x1c{left:73.279971pt;}
.x1a{left:75.039970pt;}
.xf{left:80.799968pt;}
.x17{left:83.839966pt;}
.x15{left:85.119966pt;}
.x24{left:86.719965pt;}
.x1e{left:88.319965pt;}
.x19{left:91.359928pt;}
.x23{left:92.800269pt;}
.x18{left:94.079962pt;}
.x25{left:98.719956pt;}
.x27{left:102.719959pt;}
.x2a{left:104.799383pt;}
.x26{left:110.719953pt;}
.x1d{left:116.479953pt;}
.x7b{left:120.959952pt;}
.x1b{left:125.439950pt;}
.x80{left:126.720000pt;}
.x85{left:132.800000pt;}
.xc1{left:134.719946pt;}
.x29{left:140.791524pt;}
.x2f{left:148.800000pt;}
.x28{left:150.079768pt;}
.x2b{left:154.239938pt;}
.x57{left:156.960000pt;}
.x81{left:158.080000pt;}
.x7{left:166.399933pt;}
.x95{left:174.560000pt;}
.x30{left:180.160000pt;}
.x16{left:191.039924pt;}
.x8{left:194.079922pt;}
.x50{left:196.160000pt;}
.x31{left:198.880000pt;}
.x1f{left:199.999929pt;}
.x20{left:200.959920pt;}
.x82{left:201.920000pt;}
.x11{left:206.719917pt;}
.x83{left:209.920000pt;}
.x38{left:211.999915pt;}
.x39{left:215.360000pt;}
.x9f{left:216.480000pt;}
.x10{left:218.079913pt;}
.x21{left:220.319912pt;}
.x96{left:227.840000pt;}
.x4d{left:232.800000pt;}
.x86{left:233.919906pt;}
.x2{left:235.679906pt;}
.x87{left:237.280000pt;}
.x22{left:239.359904pt;}
.x46{left:244.160000pt;}
.x58{left:246.880000pt;}
.x73{left:252.640000pt;}
.x79{left:254.719898pt;}
.x74{left:256.640000pt;}
.x6d{left:262.560000pt;}
.x70{left:263.520000pt;}
.x67{left:268.160000pt;}
.x75{left:269.440000pt;}
.xc{left:270.559842pt;}
.x76{left:272.000000pt;}
.x68{left:275.680000pt;}
.x6e{left:282.560000pt;}
.x32{left:284.640000pt;}
.x40{left:286.560000pt;}
.xb{left:287.839885pt;}
.x72{left:289.120000pt;}
.x6c{left:291.200000pt;}
.x84{left:296.960000pt;}
.x5{left:299.199880pt;}
.xd{left:300.639882pt;}
.x6b{left:303.840000pt;}
.x3a{left:305.600000pt;}
.x88{left:308.480000pt;}
.x6a{left:311.200000pt;}
.x6f{left:312.800000pt;}
.x8c{left:320.480000pt;}
.x69{left:322.080000pt;}
.x71{left:324.800000pt;}
.x33{left:328.960000pt;}
.x64{left:339.840000pt;}
.xb9{left:341.760000pt;}
.x47{left:344.000000pt;}
.xa{left:347.359861pt;}
.xba{left:349.920000pt;}
.x7c{left:354.079836pt;}
.xbc{left:360.800000pt;}
.x12{left:361.919855pt;}
.xbd{left:364.800000pt;}
.x2c{left:368.000326pt;}
.x7d{left:377.120000pt;}
.x2e{left:378.559849pt;}
.x7e{left:380.159848pt;}
.x48{left:383.040000pt;}
.x34{left:387.040000pt;}
.x77{left:389.120000pt;}
.x4f{left:391.359843pt;}
.x51{left:392.799843pt;}
.x8d{left:396.480000pt;}
.x3d{left:397.439841pt;}
.x3b{left:408.000000pt;}
.x9{left:410.719836pt;}
.x97{left:419.520000pt;}
.x7a{left:425.759830pt;}
.xbe{left:430.720000pt;}
.x59{left:431.680000pt;}
.x4e{left:434.400000pt;}
.x5a{left:435.680000pt;}
.x3e{left:441.280000pt;}
.x3f{left:445.919822pt;}
.xa4{left:450.080000pt;}
.x13{left:451.999819pt;}
.xa5{left:454.080000pt;}
.x41{left:456.480000pt;}
.x98{left:458.560000pt;}
.x5b{left:462.720000pt;}
.x7f{left:466.400000pt;}
.xbf{left:472.000000pt;}
.xa6{left:474.079810pt;}
.xbb{left:475.840000pt;}
.x8e{left:476.800000pt;}
.x35{left:477.760000pt;}
.x89{left:479.680000pt;}
.xa7{left:482.400000pt;}
.x49{left:483.520000pt;}
.xad{left:485.760000pt;}
.x8f{left:486.720000pt;}
.x99{left:488.800000pt;}
.x5c{left:496.160000pt;}
.x78{left:500.159800pt;}
.x52{left:502.400000pt;}
.xa3{left:504.640000pt;}
.xae{left:508.960000pt;}
.x2d{left:519.519792pt;}
.x5d{left:523.200000pt;}
.x53{left:537.599785pt;}
.xb2{left:539.680000pt;}
.x5e{left:540.640000pt;}
.x90{left:542.720000pt;}
.x36{left:548.960000pt;}
.x42{left:552.800000pt;}
.xaf{left:556.320000pt;}
.x54{left:557.599777pt;}
.x43{left:559.520000pt;}
.xb3{left:560.640000pt;}
.x65{left:562.080000pt;}
.xb4{left:564.640000pt;}
.xa8{left:573.279771pt;}
.x55{left:574.240000pt;}
.xa9{left:575.200000pt;}
.x3c{left:581.920000pt;}
.x66{left:589.120000pt;}
.x4a{left:591.840000pt;}
.xb0{left:593.600000pt;}
.x5f{left:606.080000pt;}
.x60{left:610.080000pt;}
.x9a{left:611.680000pt;}
.xb1{left:615.520000pt;}
.x56{left:618.559753pt;}
.xb7{left:619.679752pt;}
.x44{left:622.560000pt;}
.xa0{left:623.680000pt;}
.x3{left:631.039748pt;}
.xaa{left:633.920000pt;}
.x61{left:637.120000pt;}
.x45{left:641.600000pt;}
.x4b{left:643.679743pt;}
.x9b{left:644.640000pt;}
.x4c{left:647.040000pt;}
.xa1{left:648.640000pt;}
.x9c{left:653.760000pt;}
.xb8{left:655.679738pt;}
.xb5{left:659.680000pt;}
.x62{left:662.240000pt;}
.x91{left:664.320000pt;}
.xab{left:665.920000pt;}
.xac{left:669.280000pt;}
.x92{left:671.040000pt;}
.x37{left:672.000000pt;}
.x14{left:677.759311pt;}
.x8a{left:683.680000pt;}
.x9d{left:686.720000pt;}
.x63{left:689.280000pt;}
.xa2{left:690.720000pt;}
.x9e{left:692.320000pt;}
.x93{left:694.240000pt;}
.xb6{left:695.840000pt;}
.x94{left:713.280000pt;}
.x8b{left:716.640000pt;}
.x6{left:748.800000pt;}
.xe{left:756.639697pt;}
}




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