
    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_6df4c4c90f465192b6d5c280.woff')format("woff");}.ff1{font-family:ff1;line-height:0.912109;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_ea534e15b2de9a24576aa11a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_dc6b8d8af28d3d05d067cb7e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_cac6b3e3ffb990ad95191e68.woff')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_8045e7dd2b472c85ccf89c84.woff')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_9c423a5509b12df032a1472d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3e0a4f0d4558e29e961c79da.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682129;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_b9da60cb356f07877983a02f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_78b328f808bbc655d383816e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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_3f2ab0f4c7571ac3df1f9ae2.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f64d6871602a5e4e5f54e8c5.woff')format("woff");}.ffb{font-family:ffb;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8efdf1bdd137ac502e318e71.woff')format("woff");}.ffc{font-family:ffc;line-height:0.774414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ab8ece2600258d7fada627b2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.891602;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:ffe;src:url('chunks/assets/font_d16119bd8e1c78e3b9530998.woff')format("woff");}.ffe{font-family:ffe;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:48.239981px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.062743px;}
.lsb{letter-spacing:0.068862px;}
.lsd{letter-spacing:0.068906px;}
.lse{letter-spacing:0.069038px;}
.ls4{letter-spacing:0.182590px;}
.ls0{letter-spacing:0.200640px;}
.lsc{letter-spacing:0.757810px;}
.ls8{letter-spacing:1.041060px;}
.ls7{letter-spacing:1.762439px;}
.lsa{letter-spacing:3.926578px;}
.ls2{letter-spacing:4.388098px;}
.ls5{letter-spacing:4.647958px;}
.ls6{letter-spacing:11.140376px;}
.ls9{letter-spacing:21.239632px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc3{text-shadow:-0.015em 0 rgb(51,51,51),0 0.015em rgb(51,51,51),0.015em 0 rgb(51,51,51),0 -0.015em  rgb(51,51,51);}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(51,51,51);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-47.375981px;}
.ws3{word-spacing:-39.322064px;}
.ws5{word-spacing:-32.462730px;}
.ws7{word-spacing:-19.727992px;}
.wsa{word-spacing:-18.182583px;}
.wsd{word-spacing:-18.069031px;}
.wsc{word-spacing:-18.068899px;}
.wsb{word-spacing:-18.068855px;}
.ws6{word-spacing:-17.999993px;}
.ws4{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.939994px;}
.ws8{word-spacing:-12.203995px;}
.ws0{word-spacing:-9.719996px;}
.ws9{word-spacing:0.000000px;}
._16{margin-left:-98.730544px;}
._26{margin-left:-10.632512px;}
._6{margin-left:-9.471464px;}
._1e{margin-left:-7.958957px;}
._5{margin-left:-6.649696px;}
._50{margin-left:-5.630719px;}
._4{margin-left:-4.563135px;}
._7{margin-left:-2.630389px;}
._1{margin-left:-1.237605px;}
._0{width:1.152887px;}
._12{width:2.347171px;}
._8{width:3.370795px;}
._d{width:4.496580px;}
._13{width:6.356491px;}
._e{width:7.431881px;}
._a{width:9.032591px;}
._14{width:10.634400px;}
._19{width:11.837203px;}
._1a{width:13.006391px;}
._9{width:14.105505px;}
._10{width:15.315222px;}
._f{width:16.518612px;}
._11{width:17.622408px;}
._15{width:19.315428px;}
._b{width:21.084084px;}
._c{width:22.221389px;}
._1c{width:23.702994px;}
._1b{width:24.756294px;}
._1d{width:25.973036px;}
._27{width:27.514161px;}
._25{width:28.765525px;}
._29{width:29.955454px;}
._21{width:31.330339px;}
._49{width:33.443614px;}
._31{width:34.660415px;}
._1f{width:36.218698px;}
._20{width:37.470837px;}
._24{width:38.726967px;}
._4b{width:41.386021px;}
._52{width:42.696195px;}
._4c{width:43.859382px;}
._4d{width:44.896259px;}
._44{width:46.928097px;}
._4a{width:48.248373px;}
._30{width:50.886529px;}
._34{width:52.204260px;}
._22{width:54.678281px;}
._23{width:55.844667px;}
._37{width:56.981691px;}
._36{width:58.825730px;}
._40{width:63.049244px;}
._3e{width:64.666044px;}
._38{width:68.458349px;}
._51{width:69.473615px;}
._28{width:71.592117px;}
._2{width:83.278107px;}
._3f{width:86.773580px;}
._45{width:90.356480px;}
._17{width:95.841765px;}
._18{width:96.913709px;}
._2d{width:99.900494px;}
._48{width:102.335606px;}
._41{width:105.116291px;}
._2e{width:108.083756px;}
._35{width:115.182977px;}
._4e{width:133.423958px;}
._4f{width:134.567199px;}
._32{width:138.392346px;}
._3c{width:142.951919px;}
._39{width:155.430169px;}
._46{width:175.315798px;}
._33{width:182.455789px;}
._42{width:184.869226px;}
._2f{width:218.570685px;}
._3a{width:221.330063px;}
._43{width:247.502885px;}
._47{width:259.811839px;}
._2a{width:281.645518px;}
._2c{width:293.306377px;}
._3d{width:299.043912px;}
._3b{width:310.963758px;}
._2b{width:482.364137px;}
._3{width:2569.145121px;}
.fc11{color:rgb(0,176,80);}
.fcf{color:rgb(153,142,164);}
.fce{color:rgb(225,216,236);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fc4{color:rgb(192,0,0);}
.fcd{color:rgb(205,196,214);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fca{color:rgb(5,99,193);}
.fc12{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc7{color:rgb(0,32,96);}
.fcb{color:rgb(112,48,160);}
.fc10{color:rgb(243,238,248);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fcc{color:rgb(180,172,188);}
.fs2{font-size:5.759998px;}
.fs4{font-size:38.879984px;}
.fs3{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y47{bottom:3.419945px;}
.y1ab{bottom:3.959576px;}
.y13c{bottom:3.959591px;}
.y1ae{bottom:3.959602px;}
.y1b1{bottom:3.959611px;}
.y1b3{bottom:3.959621px;}
.y1c3{bottom:3.959656px;}
.y1c6{bottom:3.959666px;}
.y14e{bottom:3.959671px;}
.y18{bottom:3.959698px;}
.y173{bottom:3.959780px;}
.y17f{bottom:3.959816px;}
.y190{bottom:3.959880px;}
.y19a{bottom:3.959920px;}
.y1bc{bottom:4.319602px;}
.y1be{bottom:4.319611px;}
.y14a{bottom:4.319617px;}
.y1c0{bottom:4.319621px;}
.y140{bottom:4.319626px;}
.y1b6{bottom:4.319631px;}
.y14c{bottom:4.319636px;}
.y146{bottom:4.319641px;}
.y1ce{bottom:4.319656px;}
.y15a{bottom:4.319662px;}
.y1d0{bottom:4.319666px;}
.y15c{bottom:4.319671px;}
.y152{bottom:4.319676px;}
.y15e{bottom:4.319681px;}
.y158{bottom:4.319691px;}
.y1d7{bottom:4.319701px;}
.y16d{bottom:4.319711px;}
.y16f{bottom:4.319721px;}
.y165{bottom:4.319726px;}
.y1df{bottom:4.319727px;}
.y162{bottom:4.319731px;}
.y16a{bottom:4.319735px;}
.y1db{bottom:4.319737px;}
.y1e1{bottom:4.319746px;}
.y179{bottom:4.319761px;}
.y17b{bottom:4.319771px;}
.y177{bottom:4.319780px;}
.y17d{bottom:4.319790px;}
.y18c{bottom:4.319816px;}
.y189{bottom:4.319825px;}
.y182{bottom:4.319835px;}
.y198{bottom:4.319866px;}
.y196{bottom:4.319875px;}
.y1a7{bottom:4.319915px;}
.y1a5{bottom:4.319920px;}
.y1a1{bottom:4.319925px;}
.y19d{bottom:4.319930px;}
.y1a9{bottom:4.319935px;}
.y51{bottom:4.859578px;}
.y8{bottom:4.859984px;}
.y9{bottom:17.819993px;}
.y7{bottom:34.200000px;}
.y6{bottom:39.059984px;}
.y49{bottom:112.859955px;}
.y11b{bottom:116.099954px;}
.y7a{bottom:116.819953px;}
.ye5{bottom:122.399951px;}
.y208{bottom:128.159949px;}
.y139{bottom:130.139948px;}
.y46{bottom:133.020000px;}
.y48{bottom:136.439945px;}
.y1a3{bottom:139.679944px;}
.y11a{bottom:140.039944px;}
.y79{bottom:140.759944px;}
.y100{bottom:142.379943px;}
.yca{bottom:143.999942px;}
.yb2{bottom:147.959941px;}
.y1f3{bottom:151.379939px;}
.y19e{bottom:151.739939px;}
.y207{bottom:152.099939px;}
.y138{bottom:157.139937px;}
.ye4{bottom:158.219937px;}
.y1a8{bottom:159.300000px;}
.y1a2{bottom:163.619935px;}
.y21b{bottom:163.979934px;}
.y78{bottom:164.699934px;}
.yff{bottom:166.319933px;}
.y56{bottom:166.499933px;}
.yc9{bottom:167.939933px;}
.y19c{bottom:171.360000px;}
.yb1{bottom:172.079931px;}
.y1f2{bottom:175.319930px;}
.y19b{bottom:175.679930px;}
.y119{bottom:176.039930px;}
.y27{bottom:180.719928px;}
.ye3{bottom:182.339927px;}
.y1a0{bottom:183.420000px;}
.y137{bottom:183.959926px;}
.y55{bottom:185.579926px;}
.y1a4{bottom:195.300000px;}
.y199{bottom:195.660000px;}
.yb0{bottom:196.019922px;}
.y1f1{bottom:199.259920px;}
.y118{bottom:199.979920px;}
.y77{bottom:200.699920px;}
.y95{bottom:201.959919px;}
.yfe{bottom:202.319919px;}
.yc8{bottom:203.939918px;}
.y54{bottom:204.659918px;}
.ye2{bottom:206.279917px;}
.y1a6{bottom:207.360000px;}
.y136{bottom:210.959916px;}
.y19f{bottom:211.679915px;}
.y1f0{bottom:223.199911px;}
.y53{bottom:223.739911px;}
.y117{bottom:223.919910px;}
.y217{bottom:224.099910px;}
.y76{bottom:224.639910px;}
.yfd{bottom:226.259909px;}
.ye1{bottom:230.219908px;}
.yaf{bottom:232.019907px;}
.y206{bottom:235.979906px;}
.y135{bottom:237.779905px;}
.yc7{bottom:239.939904px;}
.y52{bottom:242.639903px;}
.y94{bottom:242.999903px;}
.y1ef{bottom:247.139901px;}
.y21a{bottom:248.039901px;}
.yfc{bottom:250.379900px;}
.y192{bottom:252.179899px;}
.yae{bottom:255.959898px;}
.y75{bottom:257.399897px;}
.y116{bottom:259.919896px;}
.y205{bottom:260.099896px;}
.yc6{bottom:263.879894px;}
.y194{bottom:264.059894px;}
.ye0{bottom:266.219894px;}
.y1ee{bottom:271.259891px;}
.y45{bottom:272.339891px;}
.y191{bottom:276.119890px;}
.y134{bottom:276.839889px;}
.y93{bottom:282.419887px;}
.yfb{bottom:282.959887px;}
.y115{bottom:283.859886px;}
.y204{bottom:284.039886px;}
.y44{bottom:287.999885px;}
.y74{bottom:290.159884px;}
.yad{bottom:291.959883px;}
.y1ed{bottom:295.199882px;}
.y216{bottom:295.919882px;}
.y18f{bottom:296.100000px;}
.yc5{bottom:300.959880px;}
.ydf{bottom:302.219879px;}
.y43{bottom:303.479879px;}
.y92{bottom:306.359877px;}
.y195{bottom:307.800000px;}
.y203{bottom:307.979877px;}
.y73{bottom:310.859876px;}
.y193{bottom:312.119875px;}
.yfa{bottom:315.719874px;}
.yac{bottom:315.899874px;}
.y26{bottom:318.599873px;}
.y42{bottom:319.679872px;}
.y114{bottom:319.859872px;}
.y215{bottom:320.039872px;}
.y18e{bottom:323.999870px;}
.yde{bottom:326.159870px;}
.y91{bottom:330.299868px;}
.y1ec{bottom:331.199868px;}
.y197{bottom:331.740000px;}
.y202{bottom:331.919867px;}
.y25{bottom:334.079866px;}
.y41{bottom:336.059866px;}
.yf9{bottom:336.419865px;}
.yc4{bottom:339.839864px;}
.y133{bottom:342.539863px;}
.y72{bottom:343.439863px;}
.y113{bottom:343.799862px;}
.y214{bottom:343.979862px;}
.y18d{bottom:347.939861px;}
.y24{bottom:349.559860px;}
.ydd{bottom:350.099860px;}
.yab{bottom:351.899859px;}
.y40{bottom:352.619859px;}
.y1eb{bottom:355.139858px;}
.y23{bottom:362.339855px;}
.yc3{bottom:363.779854px;}
.y90{bottom:366.299853px;}
.y201{bottom:367.919853px;}
.y3f{bottom:368.999852px;}
.yf8{bottom:369.179852px;}
.y132{bottom:369.539852px;}
.ydc{bottom:374.039850px;}
.yaa{bottom:375.839850px;}
.y71{bottom:376.199850px;}
.y1ea{bottom:379.079848px;}
.y112{bottom:379.799848px;}
.y213{bottom:379.979848px;}
.y3e{bottom:385.559846px;}
.y183{bottom:388.439845px;}
.yf7{bottom:389.879844px;}
.y200{bottom:391.859843px;}
.y131{bottom:396.359841px;}
.y70{bottom:396.899841px;}
.ydb{bottom:398.159841px;}
.yc2{bottom:399.779840px;}
.y186{bottom:400.499840px;}
.y3d{bottom:402.119839px;}
.y8f{bottom:402.299839px;}
.y1e9{bottom:403.019839px;}
.y111{bottom:403.739839px;}
.y212{bottom:403.919838px;}
.y181{bottom:408.240000px;}
.ya9{bottom:411.839835px;}
.y18a{bottom:412.559835px;}
.y1ff{bottom:415.799834px;}
.y3c{bottom:418.499833px;}
.yf6{bottom:422.459831px;}
.yc1{bottom:423.719831px;}
.y185{bottom:424.439830px;}
.y8e{bottom:426.239830px;}
.y211{bottom:427.859829px;}
.y6f{bottom:429.479828px;}
.y188{bottom:432.180000px;}
.yda{bottom:433.979826px;}
.y3b{bottom:435.059826px;}
.y130{bottom:435.239826px;}
.ya8{bottom:435.779826px;}
.y180{bottom:436.499825px;}
.y1e8{bottom:439.019824px;}
.y110{bottom:439.739824px;}
.y1fe{bottom:439.919824px;}
.y184{bottom:448.379821px;}
.y8d{bottom:450.359820px;}
.y3a{bottom:451.439819px;}
.y210{bottom:451.799819px;}
.yf5{bottom:455.219818px;}
.y18b{bottom:456.120000px;}
.y17e{bottom:456.480000px;}
.yc0{bottom:459.719816px;}
.y187{bottom:460.439816px;}
.y6e{bottom:462.239815px;}
.y1e7{bottom:462.959815px;}
.y1fd{bottom:463.859814px;}
.y39{bottom:467.999813px;}
.yd9{bottom:469.979812px;}
.ya7{bottom:471.779811px;}
.y10f{bottom:475.739810px;}
.yf4{bottom:475.919810px;}
.y22{bottom:480.779808px;}
.y6d{bottom:482.939807px;}
.ybf{bottom:483.839806px;}
.y38{bottom:484.379806px;}
.y8c{bottom:486.179806px;}
.y1e6{bottom:487.079805px;}
.y1fc{bottom:487.799805px;}
.y12f{bottom:489.059804px;}
.yd8{bottom:493.919802px;}
.ya6{bottom:495.719802px;}
.y10e{bottom:499.679800px;}
.y20f{bottom:499.859800px;}
.y37{bottom:500.939800px;}
.yf3{bottom:508.679797px;}
.y1e5{bottom:511.019796px;}
.y1fb{bottom:511.739795px;}
.y6c{bottom:515.699794px;}
.y12e{bottom:516.059794px;}
.y36{bottom:517.319793px;}
.yd7{bottom:518.039793px;}
.ybe{bottom:519.659792px;}
.y17c{bottom:520.560000px;}
.y8b{bottom:522.179791px;}
.y20e{bottom:523.799790px;}
.y174{bottom:524.879790px;}
.y21{bottom:527.039789px;}
.yf2{bottom:529.379788px;}
.ya5{bottom:531.719787px;}
.y35{bottom:533.879786px;}
.y1e4{bottom:534.959786px;}
.y10d{bottom:535.679786px;}
.yd6{bottom:541.979783px;}
.ybd{bottom:543.779782px;}
.y176{bottom:544.500000px;}
.y20{bottom:544.679782px;}
.y172{bottom:544.860000px;}
.y8a{bottom:546.119782px;}
.y20d{bottom:547.739781px;}
.y6b{bottom:548.279781px;}
.y171{bottom:548.819780px;}
.yf1{bottom:550.079780px;}
.y34{bottom:550.439780px;}
.y12d{bottom:554.939778px;}
.ya4{bottom:555.659778px;}
.y1e3{bottom:558.899776px;}
.y10c{bottom:559.619776px;}
.y1f{bottom:562.499775px;}
.yd5{bottom:565.919774px;}
.y33{bottom:566.819773px;}
.ybc{bottom:567.719773px;}
.y17a{bottom:568.440000px;}
.y6a{bottom:568.979772px;}
.y89{bottom:570.239772px;}
.y1fa{bottom:571.679771px;}
.y170{bottom:572.759771px;}
.y1e{bottom:579.059768px;}
.ya3{bottom:579.599768px;}
.yf0{bottom:582.659767px;}
.y32{bottom:583.379767px;}
.y21d{bottom:583.739767px;}
.ybb{bottom:591.659763px;}
.y178{bottom:592.560000px;}
.y12c{bottom:593.819762px;}
.y1e2{bottom:594.899762px;}
.y10b{bottom:595.619762px;}
.y175{bottom:596.879761px;}
.y31{bottom:599.759760px;}
.y69{bottom:601.739759px;}
.yd4{bottom:601.919759px;}
.y88{bottom:606.239758px;}
.y219{bottom:607.679757px;}
.yef{bottom:615.419754px;}
.ya2{bottom:615.599754px;}
.y30{bottom:616.319753px;}
.y1f9{bottom:619.739752px;}
.y12b{bottom:620.819752px;}
.y1d{bottom:623.879750px;}
.yba{bottom:627.659749px;}
.y1e0{bottom:630.000000px;}
.y10a{bottom:631.619747px;}
.y2f{bottom:632.699747px;}
.y1d9{bottom:634.319746px;}
.y68{bottom:634.499746px;}
.yee{bottom:636.119746px;}
.y16b{bottom:637.199745px;}
.ya1{bottom:639.539744px;}
.yd3{bottom:640.259744px;}
.y87{bottom:642.059743px;}
.y1f8{bottom:643.679743px;}
.y1dd{bottom:646.199742px;}
.y12a{bottom:647.639741px;}
.y2e{bottom:649.259740px;}
.yb9{bottom:651.599739px;}
.y1da{bottom:653.940000px;}
.y67{bottom:655.199738px;}
.y109{bottom:655.559738px;}
.y20c{bottom:655.739738px;}
.y169{bottom:657.000000px;}
.y1d8{bottom:658.259737px;}
.y166{bottom:661.319735px;}
.ya0{bottom:663.659735px;}
.y2d{bottom:665.639734px;}
.y86{bottom:666.179734px;}
.y1f7{bottom:667.619733px;}
.yed{bottom:668.699733px;}
.y1c{bottom:668.879732px;}
.y161{bottom:668.880000px;}
.y1dc{bottom:670.139732px;}
.y160{bottom:673.199731px;}
.y129{bottom:674.639730px;}
.y1de{bottom:677.880000px;}
.yd2{bottom:679.499728px;}
.y20b{bottom:679.679728px;}
.y164{bottom:680.940000px;}
.y2c{bottom:682.199727px;}
.y168{bottom:685.259726px;}
.y9f{bottom:687.599725px;}
.y66{bottom:687.779725px;}
.yec{bottom:689.399724px;}
.y85{bottom:690.119724px;}
.y108{bottom:691.559723px;}
.y16e{bottom:692.820000px;}
.y15f{bottom:697.139721px;}
.y2b{bottom:698.759720px;}
.y128{bottom:701.459719px;}
.yd1{bottom:703.619719px;}
.y163{bottom:709.199716px;}
.y9e{bottom:711.539715px;}
.y1b{bottom:713.879714px;}
.y2a{bottom:715.139714px;}
.y107{bottom:715.499714px;}
.y16c{bottom:716.940000px;}
.y65{bottom:720.539712px;}
.yeb{bottom:722.159711px;}
.y1d3{bottom:722.699711px;}
.y84{bottom:726.119710px;}
.y28{bottom:727.379709px;}
.y20a{bottom:727.559709px;}
.y127{bottom:728.279709px;}
.y29{bottom:731.699707px;}
.y1a{bottom:731.879707px;}
.y167{bottom:733.139707px;}
.y1d5{bottom:734.579706px;}
.yb8{bottom:735.479706px;}
.yd0{bottom:739.439704px;}
.y1f6{bottom:739.619704px;}
.y64{bottom:741.239704px;}
.y1d6{bottom:742.320000px;}
.y1d2{bottom:746.639701px;}
.y9d{bottom:748.619701px;}
.y17{bottom:751.140000px;}
.y106{bottom:751.499699px;}
.y15{bottom:754.919698px;}
.y16{bottom:755.099698px;}
.y126{bottom:755.279698px;}
.y19{bottom:757.979697px;}
.y1d4{bottom:758.699697px;}
.y63{bottom:761.939695px;}
.ycf{bottom:763.559695px;}
.y157{bottom:769.320000px;}
.y1d1{bottom:770.579692px;}
.yb7{bottom:771.479691px;}
.y156{bottom:773.639691px;}
.y1f5{bottom:775.439690px;}
.yea{bottom:775.619690px;}
.y14{bottom:780.659688px;}
.y125{bottom:782.099687px;}
.y153{bottom:785.699686px;}
.y83{bottom:786.059686px;}
.y9c{bottom:787.499685px;}
.y15d{bottom:793.260000px;}
.y62{bottom:794.699682px;}
.y14f{bottom:797.579681px;}
.y13{bottom:797.939681px;}
.yce{bottom:799.559680px;}
.y151{bottom:805.320000px;}
.y1c8{bottom:806.760000px;}
.yb6{bottom:807.479677px;}
.ye9{bottom:808.199677px;}
.y124{bottom:809.099676px;}
.y1c7{bottom:811.079676px;}
.y105{bottom:811.439675px;}
.y12{bottom:815.219674px;}
.y15b{bottom:817.200000px;}
.y14d{bottom:817.560000px;}
.y1cc{bottom:818.820000px;}
.y155{bottom:821.519671px;}
.y82{bottom:822.059671px;}
.y1cb{bottom:823.139671px;}
.y9b{bottom:823.499671px;}
.ye8{bottom:828.899668px;}
.y61{bottom:829.079668px;}
.y1cf{bottom:830.700000px;}
.y1c5{bottom:831.060000px;}
.yb5{bottom:831.419667px;}
.y11{bottom:832.499667px;}
.y150{bottom:833.579667px;}
.y1c4{bottom:835.019666px;}
.y21c{bottom:835.379666px;}
.y209{bottom:835.559666px;}
.y123{bottom:835.919666px;}
.y159{bottom:841.320000px;}
.y154{bottom:845.639662px;}
.y1ca{bottom:847.079661px;}
.y104{bottom:847.439661px;}
.y10{bottom:849.599660px;}
.y1cd{bottom:854.820000px;}
.y1c2{bottom:855.180000px;}
.y81{bottom:857.879657px;}
.y9a{bottom:859.499656px;}
.y122{bottom:862.919655px;}
.y60{bottom:864.899654px;}
.yb4{bottom:868.499653px;}
.y1c9{bottom:871.019652px;}
.y103{bottom:871.379651px;}
.ye{bottom:875.879650px;}
.yf{bottom:881.099648px;}
.y80{bottom:881.999647px;}
.ye7{bottom:882.359647px;}
.y1c1{bottom:883.079647px;}
.ycd{bottom:883.439647px;}
.y5f{bottom:885.599646px;}
.y148{bottom:886.139646px;}
.y121{bottom:889.739644px;}
.y145{bottom:893.700000px;}
.y99{bottom:895.319642px;}
.y218{bottom:895.499642px;}
.y144{bottom:898.019641px;}
.yc{bottom:902.159639px;}
.y14b{bottom:905.760000px;}
.y7f{bottom:905.939638px;}
.y5e{bottom:906.299637px;}
.yd{bottom:907.379637px;}
.y141{bottom:910.079636px;}
.ye6{bottom:915.119634px;}
.y120{bottom:916.739633px;}
.y1b5{bottom:919.260000px;}
.ycc{bottom:919.439632px;}
.y143{bottom:921.959631px;}
.y1b4{bottom:923.579631px;}
.y5d{bottom:926.999629px;}
.yb{bottom:929.159628px;}
.y13f{bottom:929.700000px;}
.y98{bottom:931.319627px;}
.y13e{bottom:934.019626px;}
.y1ba{bottom:935.459626px;}
.y7e{bottom:941.939623px;}
.y1bf{bottom:943.200000px;}
.ycb{bottom:943.379623px;}
.y11f{bottom:943.559623px;}
.y1b2{bottom:943.560000px;}
.y142{bottom:946.079622px;}
.y1b7{bottom:947.519621px;}
.y5c{bottom:947.699621px;}
.ya{bottom:949.859620px;}
.y149{bottom:953.640000px;}
.y97{bottom:955.439618px;}
.y147{bottom:957.959617px;}
.y1b9{bottom:959.399616px;}
.y1bd{bottom:967.140000px;}
.y102{bottom:967.319613px;}
.y1b0{bottom:967.500000px;}
.y5b{bottom:968.399613px;}
.y11e{bottom:970.559612px;}
.y1af{bottom:971.459611px;}
.y4a{bottom:975.239610px;}
.y4f{bottom:976.139610px;}
.y7d{bottom:979.019608px;}
.y96{bottom:979.379608px;}
.y1b8{bottom:983.519607px;}
.y5a{bottom:989.099604px;}
.y1bb{bottom:991.080000px;}
.y1f4{bottom:991.259603px;}
.y1ad{bottom:991.440000px;}
.y4e{bottom:994.499602px;}
.y11d{bottom:997.379601px;}
.y13d{bottom:998.459601px;}
.yb3{bottom:1003.319599px;}
.y59{bottom:1009.799596px;}
.y4d{bottom:1012.859595px;}
.y7c{bottom:1015.379594px;}
.y13b{bottom:1018.440000px;}
.y11c{bottom:1024.379590px;}
.y101{bottom:1027.259589px;}
.y58{bottom:1030.499588px;}
.y1ac{bottom:1035.899586px;}
.y7b{bottom:1039.319584px;}
.y4c{bottom:1040.039584px;}
.y50{bottom:1050.840000px;}
.y1aa{bottom:1055.880000px;}
.y4b{bottom:1058.399577px;}
.y13a{bottom:1062.899575px;}
.y57{bottom:1063.259575px;}
.y4{bottom:1092.239563px;}
.y5{bottom:1106.459557px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:3.990936px;}
.h13{height:17.640000px;}
.h1d{height:20.520000px;}
.hc{height:21.060000px;}
.h5{height:21.960000px;}
.h9{height:26.350302px;}
.hb{height:35.991197px;}
.h10{height:36.624009px;}
.h4{height:36.703110px;}
.h11{height:37.415024px;}
.h12{height:37.599594px;}
.h18{height:38.522446px;}
.h17{height:39.242445px;}
.hf{height:39.313461px;}
.h15{height:39.830258px;}
.he{height:40.297132px;}
.h8{height:40.501390px;}
.h6{height:41.405960px;}
.h1{height:41.610218px;}
.h14{height:43.390178px;}
.ha{height:47.988262px;}
.hd{height:48.550762px;}
.h19{height:48.796855px;}
.h2{height:49.886699px;}
.h7{height:50.132792px;}
.h1b{height:52.277323px;}
.h16{height:53.261697px;}
.h1c{height:57.092321px;}
.h1a{height:61.164468px;}
.h1e{height:97.036836px;}
.h0{height:1188.000000px;}
.w6{width:1.080000px;}
.w1a{width:1.800000px;}
.w7{width:3.240000px;}
.w3{width:3.420000px;}
.w1e{width:3.780000px;}
.w1{width:3.960000px;}
.w4{width:4.320000px;}
.w1c{width:5.220000px;}
.we{width:7.200000px;}
.wc{width:8.640000px;}
.w1b{width:12.420000px;}
.w19{width:14.760000px;}
.w2{width:15.300000px;}
.w18{width:34.200000px;}
.w13{width:34.380000px;}
.w11{width:51.120000px;}
.w9{width:58.140000px;}
.wd{width:94.140000px;}
.w5{width:160.200000px;}
.w10{width:164.340000px;}
.w14{width:164.520000px;}
.w12{width:165.420000px;}
.w8{width:165.960000px;}
.w17{width:166.320000px;}
.w15{width:167.220000px;}
.w1d{width:170.100000px;}
.wa{width:172.260000px;}
.wb{width:183.060000px;}
.w16{width:183.420000px;}
.wf{width:185.760000px;}
.w0{width:918.000000px;}
.x2e{left:-4.680255px;}
.x0{left:0.000000px;}
.x20{left:99.179960px;}
.x1e{left:105.119958px;}
.x1{left:107.999957px;}
.x32{left:111.420000px;}
.x1c{left:119.159952px;}
.x22{left:120.239952px;}
.x1d{left:121.319961px;}
.x17{left:124.019950px;}
.x5{left:131.939947px;}
.x21{left:159.839936px;}
.x1f{left:161.819935px;}
.x13{left:170.279932px;}
.x14{left:172.079455px;}
.x16{left:174.239781px;}
.x24{left:176.039808px;}
.x15{left:186.298981px;}
.x47{left:220.500000px;}
.x27{left:222.479911px;}
.x18{left:228.419909px;}
.x19{left:231.299907px;}
.x7{left:238.679905px;}
.x23{left:246.239870px;}
.x58{left:256.860000px;}
.x5a{left:259.200000px;}
.x42{left:264.420000px;}
.x28{left:269.279892px;}
.x1a{left:270.900000px;}
.x43{left:275.580000px;}
.x33{left:277.199128px;}
.x3b{left:278.280000px;}
.x51{left:279.359510px;}
.x5b{left:281.699887px;}
.x3a{left:283.859896px;}
.x4e{left:285.479795px;}
.x5c{left:286.551112px;}
.x48{left:288.179877px;}
.x61{left:290.879884px;}
.x25{left:292.139883px;}
.x1b{left:294.292382px;}
.x26{left:295.559882px;}
.x2f{left:298.439881px;}
.x2{left:302.579879px;}
.x3c{left:304.370878px;}
.x4f{left:305.639788px;}
.x52{left:310.499456px;}
.x5f{left:315.899586px;}
.x53{left:320.399452px;}
.x54{left:322.019456px;}
.x57{left:326.700397px;}
.x44{left:340.919864px;}
.x49{left:352.619835px;}
.xe{left:358.200521px;}
.x6{left:374.580370px;}
.x8{left:381.419847px;}
.x9{left:386.279845px;}
.x2a{left:388.619845px;}
.x2b{left:399.599840px;}
.x30{left:409.319836px;}
.x29{left:419.939798px;}
.xf{left:452.159819px;}
.x10{left:457.019817px;}
.x34{left:458.100000px;}
.x55{left:464.940000px;}
.x36{left:466.200000px;}
.x46{left:467.820000px;}
.x3f{left:471.600012px;}
.x3e{left:473.940018px;}
.x4a{left:476.999815px;}
.x5d{left:482.579807px;}
.x35{left:484.199806px;}
.x3d{left:486.900007px;}
.x37{left:488.879805px;}
.x4b{left:491.399803px;}
.x56{left:493.379803px;}
.x2c{left:496.439801px;}
.x59{left:499.680593px;}
.x5e{left:502.739770px;}
.x60{left:506.880039px;}
.x62{left:509.930439px;}
.x4c{left:518.391041px;}
.x45{left:526.320496px;}
.x50{left:530.819789px;}
.x11{left:552.599779px;}
.x12{left:559.799776px;}
.xa{left:570.419772px;}
.xb{left:575.279770px;}
.x40{left:623.520000px;}
.x31{left:624.959750px;}
.x38{left:635.579813px;}
.x2d{left:641.520000px;}
.xc{left:670.499732px;}
.xd{left:675.359730px;}
.x3{left:691.199724px;}
.x41{left:713.700000px;}
.x39{left:749.700000px;}
.x4d{left:773.460000px;}
.x63{left:804.060000px;}
.x4{left:805.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:42.879983pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.055772pt;}
.lsb{letter-spacing:0.061211pt;}
.lsd{letter-spacing:0.061250pt;}
.lse{letter-spacing:0.061367pt;}
.ls4{letter-spacing:0.162302pt;}
.ls0{letter-spacing:0.178347pt;}
.lsc{letter-spacing:0.673609pt;}
.ls8{letter-spacing:0.925386pt;}
.ls7{letter-spacing:1.566613pt;}
.lsa{letter-spacing:3.490292pt;}
.ls2{letter-spacing:3.900532pt;}
.ls5{letter-spacing:4.131518pt;}
.ls6{letter-spacing:9.902556pt;}
.ls9{letter-spacing:18.879672pt;}
.ws2{word-spacing:-42.111983pt;}
.ws3{word-spacing:-34.952946pt;}
.ws5{word-spacing:-28.855760pt;}
.ws7{word-spacing:-17.535993pt;}
.wsa{word-spacing:-16.162296pt;}
.wsd{word-spacing:-16.061361pt;}
.wsc{word-spacing:-16.061243pt;}
.wsb{word-spacing:-16.061204pt;}
.ws6{word-spacing:-15.999994pt;}
.ws4{word-spacing:-13.343995pt;}
.ws1{word-spacing:-13.279995pt;}
.ws8{word-spacing:-10.847996pt;}
.ws0{word-spacing:-8.639997pt;}
.ws9{word-spacing:0.000000pt;}
._16{margin-left:-87.760483pt;}
._26{margin-left:-9.451122pt;}
._6{margin-left:-8.419079pt;}
._1e{margin-left:-7.074629pt;}
._5{margin-left:-5.910841pt;}
._50{margin-left:-5.005083pt;}
._4{margin-left:-4.056120pt;}
._7{margin-left:-2.338124pt;}
._1{margin-left:-1.100094pt;}
._0{width:1.024788pt;}
._12{width:2.086374pt;}
._8{width:2.996262pt;}
._d{width:3.996960pt;}
._13{width:5.650214pt;}
._e{width:6.606116pt;}
._a{width:8.028970pt;}
._14{width:9.452800pt;}
._19{width:10.521958pt;}
._1a{width:11.561236pt;}
._9{width:12.538227pt;}
._10{width:13.613530pt;}
._f{width:14.683211pt;}
._11{width:15.664362pt;}
._15{width:17.169269pt;}
._b{width:18.741408pt;}
._c{width:19.752345pt;}
._1c{width:21.069328pt;}
._1b{width:22.005594pt;}
._1d{width:23.087143pt;}
._27{width:24.457032pt;}
._25{width:25.569356pt;}
._29{width:26.627070pt;}
._21{width:27.849190pt;}
._49{width:29.727657pt;}
._31{width:30.809258pt;}
._1f{width:32.194398pt;}
._20{width:33.307411pt;}
._24{width:34.423971pt;}
._4b{width:36.787575pt;}
._52{width:37.952174pt;}
._4c{width:38.986118pt;}
._4d{width:39.907786pt;}
._44{width:41.713864pt;}
._4a{width:42.887442pt;}
._30{width:45.232470pt;}
._34{width:46.403786pt;}
._22{width:48.602916pt;}
._23{width:49.639704pt;}
._37{width:50.650392pt;}
._36{width:52.289538pt;}
._40{width:56.043772pt;}
._3e{width:57.480928pt;}
._38{width:60.851865pt;}
._51{width:61.754324pt;}
._28{width:63.637437pt;}
._2{width:74.024984pt;}
._3f{width:77.132071pt;}
._45{width:80.316871pt;}
._17{width:85.192680pt;}
._18{width:86.145519pt;}
._2d{width:88.800439pt;}
._48{width:90.964983pt;}
._41{width:93.436703pt;}
._2e{width:96.074450pt;}
._35{width:102.384869pt;}
._4e{width:118.599074pt;}
._4f{width:119.615288pt;}
._32{width:123.015419pt;}
._3c{width:127.068372pt;}
._39{width:138.160150pt;}
._46{width:155.836265pt;}
._33{width:162.182923pt;}
._42{width:164.328201pt;}
._2f{width:194.285053pt;}
._3a{width:196.737833pt;}
._43{width:220.002565pt;}
._47{width:230.943857pt;}
._2a{width:250.351571pt;}
._2c{width:260.716780pt;}
._3d{width:265.816811pt;}
._3b{width:276.412229pt;}
._2b{width:428.768122pt;}
._3{width:2283.684552pt;}
.fs2{font-size:5.119998pt;}
.fs4{font-size:34.559986pt;}
.fs3{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:3.039951pt;}
.y1ab{bottom:3.519623pt;}
.y13c{bottom:3.519636pt;}
.y1ae{bottom:3.519646pt;}
.y1b1{bottom:3.519655pt;}
.y1b3{bottom:3.519663pt;}
.y1c3{bottom:3.519695pt;}
.y1c6{bottom:3.519703pt;}
.y14e{bottom:3.519708pt;}
.y18{bottom:3.519732pt;}
.y173{bottom:3.519805pt;}
.y17f{bottom:3.519836pt;}
.y190{bottom:3.519893pt;}
.y19a{bottom:3.519929pt;}
.y1bc{bottom:3.839646pt;}
.y1be{bottom:3.839655pt;}
.y14a{bottom:3.839659pt;}
.y1c0{bottom:3.839663pt;}
.y140{bottom:3.839668pt;}
.y1b6{bottom:3.839672pt;}
.y14c{bottom:3.839676pt;}
.y146{bottom:3.839681pt;}
.y1ce{bottom:3.839695pt;}
.y15a{bottom:3.839699pt;}
.y1d0{bottom:3.839703pt;}
.y15c{bottom:3.839708pt;}
.y152{bottom:3.839712pt;}
.y15e{bottom:3.839716pt;}
.y158{bottom:3.839725pt;}
.y1d7{bottom:3.839735pt;}
.y16d{bottom:3.839744pt;}
.y16f{bottom:3.839752pt;}
.y165{bottom:3.839756pt;}
.y1df{bottom:3.839757pt;}
.y162{bottom:3.839761pt;}
.y16a{bottom:3.839765pt;}
.y1db{bottom:3.839766pt;}
.y1e1{bottom:3.839774pt;}
.y179{bottom:3.839788pt;}
.y17b{bottom:3.839796pt;}
.y177{bottom:3.839805pt;}
.y17d{bottom:3.839813pt;}
.y18c{bottom:3.839836pt;}
.y189{bottom:3.839845pt;}
.y182{bottom:3.839853pt;}
.y198{bottom:3.839881pt;}
.y196{bottom:3.839889pt;}
.y1a7{bottom:3.839925pt;}
.y1a5{bottom:3.839929pt;}
.y1a1{bottom:3.839933pt;}
.y19d{bottom:3.839938pt;}
.y1a9{bottom:3.839942pt;}
.y51{bottom:4.319625pt;}
.y8{bottom:4.319986pt;}
.y9{bottom:15.839994pt;}
.y7{bottom:30.400000pt;}
.y6{bottom:34.719986pt;}
.y49{bottom:100.319960pt;}
.y11b{bottom:103.199959pt;}
.y7a{bottom:103.839958pt;}
.ye5{bottom:108.799956pt;}
.y208{bottom:113.919954pt;}
.y139{bottom:115.679954pt;}
.y46{bottom:118.240000pt;}
.y48{bottom:121.279951pt;}
.y1a3{bottom:124.159950pt;}
.y11a{bottom:124.479950pt;}
.y79{bottom:125.119950pt;}
.y100{bottom:126.559949pt;}
.yca{bottom:127.999949pt;}
.yb2{bottom:131.519947pt;}
.y1f3{bottom:134.559946pt;}
.y19e{bottom:134.879946pt;}
.y207{bottom:135.199946pt;}
.y138{bottom:139.679944pt;}
.ye4{bottom:140.639944pt;}
.y1a8{bottom:141.600000pt;}
.y1a2{bottom:145.439942pt;}
.y21b{bottom:145.759942pt;}
.y78{bottom:146.399941pt;}
.yff{bottom:147.839941pt;}
.y56{bottom:147.999941pt;}
.yc9{bottom:149.279940pt;}
.y19c{bottom:152.320000pt;}
.yb1{bottom:152.959939pt;}
.y1f2{bottom:155.839938pt;}
.y19b{bottom:156.159938pt;}
.y119{bottom:156.479937pt;}
.y27{bottom:160.639936pt;}
.ye3{bottom:162.079935pt;}
.y1a0{bottom:163.040000pt;}
.y137{bottom:163.519935pt;}
.y55{bottom:164.959934pt;}
.y1a4{bottom:173.600000pt;}
.y199{bottom:173.920000pt;}
.yb0{bottom:174.239930pt;}
.y1f1{bottom:177.119929pt;}
.y118{bottom:177.759929pt;}
.y77{bottom:178.399929pt;}
.y95{bottom:179.519928pt;}
.yfe{bottom:179.839928pt;}
.yc8{bottom:181.279927pt;}
.y54{bottom:181.919927pt;}
.ye2{bottom:183.359927pt;}
.y1a6{bottom:184.320000pt;}
.y136{bottom:187.519925pt;}
.y19f{bottom:188.159925pt;}
.y1f0{bottom:198.399921pt;}
.y53{bottom:198.879920pt;}
.y117{bottom:199.039920pt;}
.y217{bottom:199.199920pt;}
.y76{bottom:199.679920pt;}
.yfd{bottom:201.119920pt;}
.ye1{bottom:204.639918pt;}
.yaf{bottom:206.239918pt;}
.y206{bottom:209.759916pt;}
.y135{bottom:211.359915pt;}
.yc7{bottom:213.279915pt;}
.y52{bottom:215.679914pt;}
.y94{bottom:215.999914pt;}
.y1ef{bottom:219.679912pt;}
.y21a{bottom:220.479912pt;}
.yfc{bottom:222.559911pt;}
.y192{bottom:224.159910pt;}
.yae{bottom:227.519909pt;}
.y75{bottom:228.799908pt;}
.y116{bottom:231.039908pt;}
.y205{bottom:231.199908pt;}
.yc6{bottom:234.559906pt;}
.y194{bottom:234.719906pt;}
.ye0{bottom:236.639905pt;}
.y1ee{bottom:241.119904pt;}
.y45{bottom:242.079903pt;}
.y191{bottom:245.439902pt;}
.y134{bottom:246.079902pt;}
.y93{bottom:251.039900pt;}
.yfb{bottom:251.519899pt;}
.y115{bottom:252.319899pt;}
.y204{bottom:252.479899pt;}
.y44{bottom:255.999898pt;}
.y74{bottom:257.919897pt;}
.yad{bottom:259.519896pt;}
.y1ed{bottom:262.399895pt;}
.y216{bottom:263.039895pt;}
.y18f{bottom:263.200000pt;}
.yc5{bottom:267.519893pt;}
.ydf{bottom:268.639893pt;}
.y43{bottom:269.759892pt;}
.y92{bottom:272.319891pt;}
.y195{bottom:273.600000pt;}
.y203{bottom:273.759890pt;}
.y73{bottom:276.319889pt;}
.y193{bottom:277.439889pt;}
.yfa{bottom:280.639888pt;}
.yac{bottom:280.799888pt;}
.y26{bottom:283.199887pt;}
.y42{bottom:284.159886pt;}
.y114{bottom:284.319886pt;}
.y215{bottom:284.479886pt;}
.y18e{bottom:287.999885pt;}
.yde{bottom:289.919884pt;}
.y91{bottom:293.599883pt;}
.y1ec{bottom:294.399882pt;}
.y197{bottom:294.880000pt;}
.y202{bottom:295.039882pt;}
.y25{bottom:296.959881pt;}
.y41{bottom:298.719881pt;}
.yf9{bottom:299.039880pt;}
.yc4{bottom:302.079879pt;}
.y133{bottom:304.479878pt;}
.y72{bottom:305.279878pt;}
.y113{bottom:305.599878pt;}
.y214{bottom:305.759878pt;}
.y18d{bottom:309.279876pt;}
.y24{bottom:310.719876pt;}
.ydd{bottom:311.199876pt;}
.yab{bottom:312.799875pt;}
.y40{bottom:313.439875pt;}
.y1eb{bottom:315.679874pt;}
.y23{bottom:322.079871pt;}
.yc3{bottom:323.359871pt;}
.y90{bottom:325.599870pt;}
.y201{bottom:327.039869pt;}
.y3f{bottom:327.999869pt;}
.yf8{bottom:328.159869pt;}
.y132{bottom:328.479869pt;}
.ydc{bottom:332.479867pt;}
.yaa{bottom:334.079866pt;}
.y71{bottom:334.399866pt;}
.y1ea{bottom:336.959865pt;}
.y112{bottom:337.599865pt;}
.y213{bottom:337.759865pt;}
.y3e{bottom:342.719863pt;}
.y183{bottom:345.279862pt;}
.yf7{bottom:346.559861pt;}
.y200{bottom:348.319861pt;}
.y131{bottom:352.319859pt;}
.y70{bottom:352.799859pt;}
.ydb{bottom:353.919858pt;}
.yc2{bottom:355.359858pt;}
.y186{bottom:355.999858pt;}
.y3d{bottom:357.439857pt;}
.y8f{bottom:357.599857pt;}
.y1e9{bottom:358.239857pt;}
.y111{bottom:358.879856pt;}
.y212{bottom:359.039856pt;}
.y181{bottom:362.880000pt;}
.ya9{bottom:366.079854pt;}
.y18a{bottom:366.719853pt;}
.y1ff{bottom:369.599852pt;}
.y3c{bottom:371.999851pt;}
.yf6{bottom:375.519850pt;}
.yc1{bottom:376.639849pt;}
.y185{bottom:377.279849pt;}
.y8e{bottom:378.879848pt;}
.y211{bottom:380.319848pt;}
.y6f{bottom:381.759847pt;}
.y188{bottom:384.160000pt;}
.yda{bottom:385.759846pt;}
.y3b{bottom:386.719845pt;}
.y130{bottom:386.879845pt;}
.ya8{bottom:387.359845pt;}
.y180{bottom:387.999845pt;}
.y1e8{bottom:390.239844pt;}
.y110{bottom:390.879844pt;}
.y1fe{bottom:391.039844pt;}
.y184{bottom:398.559841pt;}
.y8d{bottom:400.319840pt;}
.y3a{bottom:401.279839pt;}
.y210{bottom:401.599839pt;}
.yf5{bottom:404.639838pt;}
.y18b{bottom:405.440000pt;}
.y17e{bottom:405.760000pt;}
.yc0{bottom:408.639837pt;}
.y187{bottom:409.279836pt;}
.y6e{bottom:410.879836pt;}
.y1e7{bottom:411.519835pt;}
.y1fd{bottom:412.319835pt;}
.y39{bottom:415.999834pt;}
.yd9{bottom:417.759833pt;}
.ya7{bottom:419.359832pt;}
.y10f{bottom:422.879831pt;}
.yf4{bottom:423.039831pt;}
.y22{bottom:427.359829pt;}
.y6d{bottom:429.279828pt;}
.ybf{bottom:430.079828pt;}
.y38{bottom:430.559828pt;}
.y8c{bottom:432.159827pt;}
.y1e6{bottom:432.959827pt;}
.y1fc{bottom:433.599827pt;}
.y12f{bottom:434.719826pt;}
.yd8{bottom:439.039824pt;}
.ya6{bottom:440.639824pt;}
.y10e{bottom:444.159822pt;}
.y20f{bottom:444.319822pt;}
.y37{bottom:445.279822pt;}
.yf3{bottom:452.159819pt;}
.y1e5{bottom:454.239818pt;}
.y1fb{bottom:454.879818pt;}
.y6c{bottom:458.399817pt;}
.y12e{bottom:458.719817pt;}
.y36{bottom:459.839816pt;}
.yd7{bottom:460.479816pt;}
.ybe{bottom:461.919815pt;}
.y17c{bottom:462.720000pt;}
.y8b{bottom:464.159814pt;}
.y20e{bottom:465.599814pt;}
.y174{bottom:466.559813pt;}
.y21{bottom:468.479813pt;}
.yf2{bottom:470.559812pt;}
.ya5{bottom:472.639811pt;}
.y35{bottom:474.559810pt;}
.y1e4{bottom:475.519810pt;}
.y10d{bottom:476.159810pt;}
.yd6{bottom:481.759807pt;}
.ybd{bottom:483.359807pt;}
.y176{bottom:484.000000pt;}
.y20{bottom:484.159806pt;}
.y172{bottom:484.320000pt;}
.y8a{bottom:485.439806pt;}
.y20d{bottom:486.879805pt;}
.y6b{bottom:487.359805pt;}
.y171{bottom:487.839805pt;}
.yf1{bottom:488.959804pt;}
.y34{bottom:489.279804pt;}
.y12d{bottom:493.279803pt;}
.ya4{bottom:493.919802pt;}
.y1e3{bottom:496.799801pt;}
.y10c{bottom:497.439801pt;}
.y1f{bottom:499.999800pt;}
.yd5{bottom:503.039799pt;}
.y33{bottom:503.839798pt;}
.ybc{bottom:504.639798pt;}
.y17a{bottom:505.280000pt;}
.y6a{bottom:505.759798pt;}
.y89{bottom:506.879797pt;}
.y1fa{bottom:508.159797pt;}
.y170{bottom:509.119796pt;}
.y1e{bottom:514.719794pt;}
.ya3{bottom:515.199794pt;}
.yf0{bottom:517.919793pt;}
.y32{bottom:518.559793pt;}
.y21d{bottom:518.879792pt;}
.ybb{bottom:525.919790pt;}
.y178{bottom:526.720000pt;}
.y12c{bottom:527.839789pt;}
.y1e2{bottom:528.799788pt;}
.y10b{bottom:529.439788pt;}
.y175{bottom:530.559788pt;}
.y31{bottom:533.119787pt;}
.y69{bottom:534.879786pt;}
.yd4{bottom:535.039786pt;}
.y88{bottom:538.879784pt;}
.y219{bottom:540.159784pt;}
.yef{bottom:547.039781pt;}
.ya2{bottom:547.199781pt;}
.y30{bottom:547.839781pt;}
.y1f9{bottom:550.879780pt;}
.y12b{bottom:551.839779pt;}
.y1d{bottom:554.559778pt;}
.yba{bottom:557.919777pt;}
.y1e0{bottom:560.000000pt;}
.y10a{bottom:561.439775pt;}
.y2f{bottom:562.399775pt;}
.y1d9{bottom:563.839774pt;}
.y68{bottom:563.999774pt;}
.yee{bottom:565.439774pt;}
.y16b{bottom:566.399773pt;}
.ya1{bottom:568.479773pt;}
.yd3{bottom:569.119772pt;}
.y87{bottom:570.719772pt;}
.y1f8{bottom:572.159771pt;}
.y1dd{bottom:574.399770pt;}
.y12a{bottom:575.679770pt;}
.y2e{bottom:577.119769pt;}
.yb9{bottom:579.199768pt;}
.y1da{bottom:581.280000pt;}
.y67{bottom:582.399767pt;}
.y109{bottom:582.719767pt;}
.y20c{bottom:582.879767pt;}
.y169{bottom:584.000000pt;}
.y1d8{bottom:585.119766pt;}
.y166{bottom:587.839765pt;}
.ya0{bottom:589.919764pt;}
.y2d{bottom:591.679763pt;}
.y86{bottom:592.159763pt;}
.y1f7{bottom:593.439763pt;}
.yed{bottom:594.399762pt;}
.y1c{bottom:594.559762pt;}
.y161{bottom:594.560000pt;}
.y1dc{bottom:595.679762pt;}
.y160{bottom:598.399761pt;}
.y129{bottom:599.679760pt;}
.y1de{bottom:602.560000pt;}
.yd2{bottom:603.999758pt;}
.y20b{bottom:604.159758pt;}
.y164{bottom:605.280000pt;}
.y2c{bottom:606.399757pt;}
.y168{bottom:609.119756pt;}
.y9f{bottom:611.199756pt;}
.y66{bottom:611.359755pt;}
.yec{bottom:612.799755pt;}
.y85{bottom:613.439755pt;}
.y108{bottom:614.719754pt;}
.y16e{bottom:615.840000pt;}
.y15f{bottom:619.679752pt;}
.y2b{bottom:621.119752pt;}
.y128{bottom:623.519751pt;}
.yd1{bottom:625.439750pt;}
.y163{bottom:630.399748pt;}
.y9e{bottom:632.479747pt;}
.y1b{bottom:634.559746pt;}
.y2a{bottom:635.679746pt;}
.y107{bottom:635.999746pt;}
.y16c{bottom:637.280000pt;}
.y65{bottom:640.479744pt;}
.yeb{bottom:641.919743pt;}
.y1d3{bottom:642.399743pt;}
.y84{bottom:645.439742pt;}
.y28{bottom:646.559741pt;}
.y20a{bottom:646.719741pt;}
.y127{bottom:647.359741pt;}
.y29{bottom:650.399740pt;}
.y1a{bottom:650.559740pt;}
.y167{bottom:651.679739pt;}
.y1d5{bottom:652.959739pt;}
.yb8{bottom:653.759738pt;}
.yd0{bottom:657.279737pt;}
.y1f6{bottom:657.439737pt;}
.y64{bottom:658.879736pt;}
.y1d6{bottom:659.840000pt;}
.y1d2{bottom:663.679735pt;}
.y9d{bottom:665.439734pt;}
.y17{bottom:667.680000pt;}
.y106{bottom:667.999733pt;}
.y15{bottom:671.039732pt;}
.y16{bottom:671.199732pt;}
.y126{bottom:671.359731pt;}
.y19{bottom:673.759730pt;}
.y1d4{bottom:674.399730pt;}
.y63{bottom:677.279729pt;}
.ycf{bottom:678.719729pt;}
.y157{bottom:683.840000pt;}
.y1d1{bottom:684.959726pt;}
.yb7{bottom:685.759726pt;}
.y156{bottom:687.679725pt;}
.y1f5{bottom:689.279724pt;}
.yea{bottom:689.439724pt;}
.y14{bottom:693.919722pt;}
.y125{bottom:695.199722pt;}
.y153{bottom:698.399721pt;}
.y83{bottom:698.719721pt;}
.y9c{bottom:699.999720pt;}
.y15d{bottom:705.120000pt;}
.y62{bottom:706.399717pt;}
.y14f{bottom:708.959716pt;}
.y13{bottom:709.279716pt;}
.yce{bottom:710.719716pt;}
.y151{bottom:715.840000pt;}
.y1c8{bottom:717.120000pt;}
.yb6{bottom:717.759713pt;}
.ye9{bottom:718.399713pt;}
.y124{bottom:719.199712pt;}
.y1c7{bottom:720.959712pt;}
.y105{bottom:721.279711pt;}
.y12{bottom:724.639710pt;}
.y15b{bottom:726.400000pt;}
.y14d{bottom:726.720000pt;}
.y1cc{bottom:727.840000pt;}
.y155{bottom:730.239708pt;}
.y82{bottom:730.719708pt;}
.y1cb{bottom:731.679707pt;}
.y9b{bottom:731.999707pt;}
.ye8{bottom:736.799705pt;}
.y61{bottom:736.959705pt;}
.y1cf{bottom:738.400000pt;}
.y1c5{bottom:738.720000pt;}
.yb5{bottom:739.039704pt;}
.y11{bottom:739.999704pt;}
.y150{bottom:740.959704pt;}
.y1c4{bottom:742.239703pt;}
.y21c{bottom:742.559703pt;}
.y209{bottom:742.719703pt;}
.y123{bottom:743.039703pt;}
.y159{bottom:747.840000pt;}
.y154{bottom:751.679699pt;}
.y1ca{bottom:752.959699pt;}
.y104{bottom:753.279699pt;}
.y10{bottom:755.199698pt;}
.y1cd{bottom:759.840000pt;}
.y1c2{bottom:760.160000pt;}
.y81{bottom:762.559695pt;}
.y9a{bottom:763.999694pt;}
.y122{bottom:767.039693pt;}
.y60{bottom:768.799692pt;}
.yb4{bottom:771.999691pt;}
.y1c9{bottom:774.239690pt;}
.y103{bottom:774.559690pt;}
.ye{bottom:778.559689pt;}
.yf{bottom:783.199687pt;}
.y80{bottom:783.999686pt;}
.ye7{bottom:784.319686pt;}
.y1c1{bottom:784.959686pt;}
.ycd{bottom:785.279686pt;}
.y5f{bottom:787.199685pt;}
.y148{bottom:787.679685pt;}
.y121{bottom:790.879684pt;}
.y145{bottom:794.400000pt;}
.y99{bottom:795.839682pt;}
.y218{bottom:795.999682pt;}
.y144{bottom:798.239681pt;}
.yc{bottom:801.919679pt;}
.y14b{bottom:805.120000pt;}
.y7f{bottom:805.279678pt;}
.y5e{bottom:805.599678pt;}
.yd{bottom:806.559677pt;}
.y141{bottom:808.959676pt;}
.ye6{bottom:813.439675pt;}
.y120{bottom:814.879674pt;}
.y1b5{bottom:817.120000pt;}
.ycc{bottom:817.279673pt;}
.y143{bottom:819.519672pt;}
.y1b4{bottom:820.959672pt;}
.y5d{bottom:823.999670pt;}
.yb{bottom:825.919670pt;}
.y13f{bottom:826.400000pt;}
.y98{bottom:827.839669pt;}
.y13e{bottom:830.239668pt;}
.y1ba{bottom:831.519667pt;}
.y7e{bottom:837.279665pt;}
.y1bf{bottom:838.400000pt;}
.ycb{bottom:838.559665pt;}
.y11f{bottom:838.719665pt;}
.y1b2{bottom:838.720000pt;}
.y142{bottom:840.959664pt;}
.y1b7{bottom:842.239663pt;}
.y5c{bottom:842.399663pt;}
.ya{bottom:844.319662pt;}
.y149{bottom:847.680000pt;}
.y97{bottom:849.279660pt;}
.y147{bottom:851.519659pt;}
.y1b9{bottom:852.799659pt;}
.y1bd{bottom:859.680000pt;}
.y102{bottom:859.839656pt;}
.y1b0{bottom:860.000000pt;}
.y5b{bottom:860.799656pt;}
.y11e{bottom:862.719655pt;}
.y1af{bottom:863.519655pt;}
.y4a{bottom:866.879653pt;}
.y4f{bottom:867.679653pt;}
.y7d{bottom:870.239652pt;}
.y96{bottom:870.559652pt;}
.y1b8{bottom:874.239650pt;}
.y5a{bottom:879.199648pt;}
.y1bb{bottom:880.960000pt;}
.y1f4{bottom:881.119648pt;}
.y1ad{bottom:881.280000pt;}
.y4e{bottom:883.999646pt;}
.y11d{bottom:886.559645pt;}
.y13d{bottom:887.519645pt;}
.yb3{bottom:891.839643pt;}
.y59{bottom:897.599641pt;}
.y4d{bottom:900.319640pt;}
.y7c{bottom:902.559639pt;}
.y13b{bottom:905.280000pt;}
.y11c{bottom:910.559636pt;}
.y101{bottom:913.119635pt;}
.y58{bottom:915.999634pt;}
.y1ac{bottom:920.799632pt;}
.y7b{bottom:923.839630pt;}
.y4c{bottom:924.479630pt;}
.y50{bottom:934.080000pt;}
.y1aa{bottom:938.560000pt;}
.y4b{bottom:940.799624pt;}
.y13a{bottom:944.799622pt;}
.y57{bottom:945.119622pt;}
.y4{bottom:970.879612pt;}
.y5{bottom:983.519607pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:3.547499pt;}
.h13{height:15.680000pt;}
.h1d{height:18.240000pt;}
.hc{height:18.720000pt;}
.h5{height:19.520000pt;}
.h9{height:23.422491pt;}
.hb{height:31.992175pt;}
.h10{height:32.554674pt;}
.h4{height:32.624987pt;}
.h11{height:33.257799pt;}
.h12{height:33.421862pt;}
.h18{height:34.242174pt;}
.h17{height:34.882174pt;}
.hf{height:34.945299pt;}
.h15{height:35.404673pt;}
.he{height:35.819673pt;}
.h8{height:36.001236pt;}
.h6{height:36.805298pt;}
.h1{height:36.986860pt;}
.h14{height:38.569047pt;}
.ha{height:42.656233pt;}
.hd{height:43.156233pt;}
.h19{height:43.374983pt;}
.h2{height:44.343732pt;}
.h7{height:44.562482pt;}
.h1b{height:46.468731pt;}
.h16{height:47.343731pt;}
.h1c{height:50.748730pt;}
.h1a{height:54.368416pt;}
.h1e{height:86.254965pt;}
.h0{height:1056.000000pt;}
.w6{width:0.960000pt;}
.w1a{width:1.600000pt;}
.w7{width:2.880000pt;}
.w3{width:3.040000pt;}
.w1e{width:3.360000pt;}
.w1{width:3.520000pt;}
.w4{width:3.840000pt;}
.w1c{width:4.640000pt;}
.we{width:6.400000pt;}
.wc{width:7.680000pt;}
.w1b{width:11.040000pt;}
.w19{width:13.120000pt;}
.w2{width:13.600000pt;}
.w18{width:30.400000pt;}
.w13{width:30.560000pt;}
.w11{width:45.440000pt;}
.w9{width:51.680000pt;}
.wd{width:83.680000pt;}
.w5{width:142.400000pt;}
.w10{width:146.080000pt;}
.w14{width:146.240000pt;}
.w12{width:147.040000pt;}
.w8{width:147.520000pt;}
.w17{width:147.840000pt;}
.w15{width:148.640000pt;}
.w1d{width:151.200000pt;}
.wa{width:153.120000pt;}
.wb{width:162.720000pt;}
.w16{width:163.040000pt;}
.wf{width:165.120000pt;}
.w0{width:816.000000pt;}
.x2e{left:-4.160226pt;}
.x0{left:0.000000pt;}
.x20{left:88.159965pt;}
.x1e{left:93.439963pt;}
.x1{left:95.999962pt;}
.x32{left:99.040000pt;}
.x1c{left:105.919958pt;}
.x22{left:106.879957pt;}
.x1d{left:107.839965pt;}
.x17{left:110.239956pt;}
.x5{left:117.279953pt;}
.x21{left:142.079943pt;}
.x1f{left:143.839942pt;}
.x13{left:151.359939pt;}
.x14{left:152.959516pt;}
.x16{left:154.879805pt;}
.x24{left:156.479829pt;}
.x15{left:165.599094pt;}
.x47{left:196.000000pt;}
.x27{left:197.759921pt;}
.x18{left:203.039919pt;}
.x19{left:205.599918pt;}
.x7{left:212.159915pt;}
.x23{left:218.879884pt;}
.x58{left:228.320000pt;}
.x5a{left:230.400000pt;}
.x42{left:235.040000pt;}
.x28{left:239.359904pt;}
.x1a{left:240.800000pt;}
.x43{left:244.960000pt;}
.x33{left:246.399225pt;}
.x3b{left:247.360000pt;}
.x51{left:248.319564pt;}
.x5b{left:250.399900pt;}
.x3a{left:252.319907pt;}
.x4e{left:253.759818pt;}
.x5c{left:254.712099pt;}
.x48{left:256.159891pt;}
.x61{left:258.559897pt;}
.x25{left:259.679896pt;}
.x1b{left:261.593229pt;}
.x26{left:262.719895pt;}
.x2f{left:265.279894pt;}
.x2{left:268.959892pt;}
.x3c{left:270.551892pt;}
.x4f{left:271.679811pt;}
.x52{left:275.999517pt;}
.x5f{left:280.799632pt;}
.x53{left:284.799513pt;}
.x54{left:286.239517pt;}
.x57{left:290.400353pt;}
.x44{left:303.039879pt;}
.x49{left:313.439854pt;}
.xe{left:318.400463pt;}
.x6{left:332.960329pt;}
.x8{left:339.039864pt;}
.x9{left:343.359863pt;}
.x2a{left:345.439862pt;}
.x2b{left:355.199858pt;}
.x30{left:363.839854pt;}
.x29{left:373.279821pt;}
.xf{left:401.919839pt;}
.x10{left:406.239838pt;}
.x34{left:407.200000pt;}
.x55{left:413.280000pt;}
.x36{left:414.400000pt;}
.x46{left:415.840000pt;}
.x3f{left:419.200011pt;}
.x3e{left:421.280016pt;}
.x4a{left:423.999836pt;}
.x5d{left:428.959828pt;}
.x35{left:430.399828pt;}
.x3d{left:432.800006pt;}
.x37{left:434.559827pt;}
.x4b{left:436.799825pt;}
.x56{left:438.559825pt;}
.x2c{left:441.279823pt;}
.x59{left:444.160527pt;}
.x5e{left:446.879795pt;}
.x60{left:450.560035pt;}
.x62{left:453.271501pt;}
.x4c{left:460.792036pt;}
.x45{left:467.840441pt;}
.x50{left:471.839812pt;}
.x11{left:491.199804pt;}
.x12{left:497.599801pt;}
.xa{left:507.039797pt;}
.xb{left:511.359795pt;}
.x40{left:554.240000pt;}
.x31{left:555.519778pt;}
.x38{left:564.959834pt;}
.x2d{left:570.240000pt;}
.xc{left:595.999762pt;}
.xd{left:600.319760pt;}
.x3{left:614.399754pt;}
.x41{left:634.400000pt;}
.x39{left:666.400000pt;}
.x4d{left:687.520000pt;}
.x63{left:714.720000pt;}
.x4{left:716.160000pt;}
}




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