
    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_6bd6ba629e95c39ced6d4ff0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_f1c21d4b8fe3162b1ee45310.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_9c7440f1eeb9c4a79d862278.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.897000;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_1dc40aad8064580132605d08.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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_cfa1413a53da2e39cadd3918.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_35913839d4d9acbc08076f7c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.007324;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_2c474ba1829616091bbc056e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.891113;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.180119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180119,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.236406,0.000000,-0.080856,0.236564,0,0);-ms-transform:matrix(0.236406,0.000000,-0.080856,0.236564,0,0);-webkit-transform:matrix(0.236406,0.000000,-0.080856,0.236564,0,0);}
.m3{transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m5{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-60.000000px;}
.v2{vertical-align:-48.000000px;}
.v3{vertical-align:-45.000000px;}
.v6{vertical-align:-27.000000px;}
.v4{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.084019px;}
.ls7{letter-spacing:0.384000px;}
.ls8{letter-spacing:0.456029px;}
.ls9{letter-spacing:2.553627px;}
.lsc{letter-spacing:3.876060px;}
.lsb{letter-spacing:28.072200px;}
.ls1{letter-spacing:46.370400px;}
.lsa{letter-spacing:85.110000px;}
.ls5{letter-spacing:250.204200px;}
.lsd{letter-spacing:284.632227px;}
.ls2{letter-spacing:338.724000px;}
.ls6{letter-spacing:425.725904px;}
.lse{letter-spacing:438.316200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-46.620000px;}
.wsd{word-spacing:-19.022362px;}
.ws9{word-spacing:-18.471750px;}
.ws5{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.024000px;}
.ws2{word-spacing:-15.000000px;}
.ws6{word-spacing:-10.775250px;}
.ws4{word-spacing:-10.500000px;}
.ws3{word-spacing:-9.750000px;}
.ws1{word-spacing:-9.000000px;}
.wsa{word-spacing:0.000000px;}
.wsc{word-spacing:72.084000px;}
.ws13{word-spacing:74.560200px;}
.ws11{word-spacing:102.103800px;}
.wsb{word-spacing:108.108000px;}
.ws10{word-spacing:155.614200px;}
.wsf{word-spacing:249.218400px;}
.ws8{word-spacing:406.266687px;}
.ws12{word-spacing:497.842200px;}
.ws7{word-spacing:590.004750px;}
._83{margin-left:-706.728000px;}
._94{margin-left:-408.286200px;}
._81{margin-left:-387.313800px;}
._7c{margin-left:-375.210000px;}
._6c{margin-left:-363.744000px;}
._75{margin-left:-355.496400px;}
._3c{margin-left:-319.745163px;}
._3a{margin-left:-311.204073px;}
._3f{margin-left:-295.915443px;}
._35{margin-left:-294.702300px;}
._84{margin-left:-273.684000px;}
._57{margin-left:-271.170000px;}
._2f{margin-left:-267.679800px;}
._36{margin-left:-257.005800px;}
._38{margin-left:-252.711081px;}
._62{margin-left:-249.667800px;}
._51{margin-left:-246.666000px;}
._7f{margin-left:-244.147236px;}
._8f{margin-left:-241.211400px;}
._69{margin-left:-237.660000px;}
._8d{margin-left:-235.207800px;}
._77{margin-left:-234.075780px;}
._6e{margin-left:-231.106200px;}
._88{margin-left:-225.652200px;}
._30{margin-left:-222.649800px;}
._67{margin-left:-220.135800px;}
._5c{margin-left:-219.066180px;}
._96{margin-left:-217.134000px;}
._61{margin-left:-216.096000px;}
._32{margin-left:-213.643800px;}
._55{margin-left:-211.191600px;}
._8c{margin-left:-210.091800px;}
._48{margin-left:-208.128000px;}
._74{margin-left:-200.583600px;}
._41{margin-left:-198.091800px;}
._3b{margin-left:-196.665363px;}
._89{margin-left:-194.566800px;}
._7e{margin-left:-193.117800px;}
._4d{margin-left:-187.117080px;}
._87{margin-left:-183.139200px;}
._64{margin-left:-181.125420px;}
._54{margin-left:-180.072000px;}
._7d{margin-left:-175.586460px;}
._80{margin-left:-173.062200px;}
._59{margin-left:-171.073800px;}
._40{margin-left:-169.833843px;}
._3d{margin-left:-166.645563px;}
._82{margin-left:-165.123600px;}
._3e{margin-left:-163.829643px;}
._6b{margin-left:-162.060600px;}
._20{margin-left:-159.118200px;}
._90{margin-left:-158.052000px;}
._24{margin-left:-156.115800px;}
._29{margin-left:-155.050200px;}
._1e{margin-left:-153.113400px;}
._27{margin-left:-152.047800px;}
._34{margin-left:-150.622500px;}
._2d{margin-left:-149.046000px;}
._63{margin-left:-147.018180px;}
._7a{margin-left:-145.086000px;}
._8a{margin-left:-143.041800px;}
._5d{margin-left:-141.054000px;}
._72{margin-left:-139.081800px;}
._58{margin-left:-138.067800px;}
._73{margin-left:-137.043600px;}
._79{margin-left:-135.097800px;}
._37{margin-left:-133.511760px;}
._28{margin-left:-128.088000px;}
._45{margin-left:-127.074000px;}
._2b{margin-left:-125.062200px;}
._70{margin-left:-124.052400px;}
._2e{margin-left:-122.059800px;}
._44{margin-left:-120.085200px;}
._5e{margin-left:-117.082200px;}
._1f{margin-left:-114.079800px;}
._66{margin-left:-112.063800px;}
._95{margin-left:-110.605200px;}
._22{margin-left:-108.074400px;}
._25{margin-left:-105.072000px;}
._56{margin-left:-103.033800px;}
._71{margin-left:-102.015780px;}
._52{margin-left:-99.568200px;}
._91{margin-left:-98.011800px;}
._31{margin-left:-96.566040px;}
._47{margin-left:-95.018400px;}
._5f{margin-left:-93.061800px;}
._2a{margin-left:-89.062200px;}
._98{margin-left:-88.048200px;}
._5a{margin-left:-87.034020px;}
._43{margin-left:-84.016200px;}
._78{margin-left:-81.014040px;}
._2c{margin-left:-79.063620px;}
._26{margin-left:-77.054040px;}
._85{margin-left:-75.026040px;}
._9a{margin-left:-72.573600px;}
._21{margin-left:-69.041160px;}
._1d{margin-left:-66.038580px;}
._97{margin-left:-64.581600px;}
._23{margin-left:-63.036060px;}
._39{margin-left:-61.552191px;}
._42{margin-left:-60.000000px;}
._50{margin-left:-54.424200px;}
._b{margin-left:-4.646340px;}
._2{margin-left:-3.312000px;}
._1{margin-left:-1.334340px;}
._0{width:1.382400px;}
._4{width:2.484660px;}
._5{width:3.949740px;}
._6{width:5.067840px;}
._f{width:6.168900px;}
._7{width:7.366500px;}
._a{width:8.415420px;}
._9{width:10.295940px;}
._8{width:11.465220px;}
._c{width:13.017060px;}
._13{width:17.248620px;}
._12{width:18.581400px;}
._1c{width:20.231880px;}
._14{width:21.696000px;}
._10{width:23.733540px;}
._11{width:24.871860px;}
._1a{width:26.072820px;}
._19{width:27.117660px;}
._9c{width:29.416860px;}
._1b{width:30.775260px;}
._17{width:32.728860px;}
._18{width:33.813600px;}
._e{width:35.385600px;}
._d{width:36.458460px;}
._92{width:39.043260px;}
._9e{width:41.318160px;}
._9d{width:42.487260px;}
._16{width:45.715200px;}
._15{width:48.997680px;}
._76{width:51.052800px;}
._7b{width:57.057600px;}
._99{width:60.060000px;}
._68{width:63.062400px;}
._65{width:69.067200px;}
._8e{width:75.072000px;}
._49{width:87.081600px;}
._4e{width:99.091200px;}
._9b{width:105.096000px;}
._6f{width:111.100800px;}
._4c{width:117.105600px;}
._6a{width:123.110400px;}
._60{width:129.115200px;}
._8b{width:147.129600px;}
._86{width:159.139200px;}
._93{width:165.144000px;}
._5b{width:168.146400px;}
._6d{width:171.148800px;}
._53{width:177.153600px;}
._4f{width:195.168000px;}
._4a{width:197.209560px;}
._46{width:199.131240px;}
._33{width:255.216000px;}
._3{width:1222.337880px;}
._4b{width:1258.020000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs4{font-size:39.000000px;}
.fs5{font-size:42.000000px;}
.fs7{font-size:43.101000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:73.887000px;}
.fs6{font-size:76.089448px;}
.fs9{font-size:98.439000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:4.500000px;}
.y17d{bottom:5.250000px;}
.y1c0{bottom:114.750000px;}
.y11e{bottom:115.500300px;}
.y19f{bottom:131.250000px;}
.y11d{bottom:132.750300px;}
.y40{bottom:134.250000px;}
.y42{bottom:134.250300px;}
.y85{bottom:135.000000px;}
.yda{bottom:135.750000px;}
.y1bf{bottom:136.500000px;}
.y11c{bottom:137.250300px;}
.y41{bottom:141.000300px;}
.y168{bottom:141.750000px;}
.y19e{bottom:148.500000px;}
.y3e{bottom:151.500000px;}
.y84{bottom:152.250000px;}
.yd2{bottom:153.750000px;}
.yd1{bottom:156.750000px;}
.y3f{bottom:158.250000px;}
.y167{bottom:159.000000px;}
.y11b{bottom:159.750000px;}
.yd5{bottom:161.250000px;}
.yd8{bottom:165.750000px;}
.y83{bottom:167.250000px;}
.y3d{bottom:168.750000px;}
.y82{bottom:169.500000px;}
.yd3{bottom:171.750000px;}
.yd4{bottom:175.500000px;}
.y166{bottom:176.250000px;}
.y11a{bottom:177.000000px;}
.y1be{bottom:180.000000px;}
.yd9{bottom:181.500000px;}
.y19d{bottom:183.000000px;}
.y3c{bottom:186.000000px;}
.y81{bottom:186.750000px;}
.y165{bottom:193.500000px;}
.y119{bottom:194.250000px;}
.yd7{bottom:198.000000px;}
.y1bd{bottom:201.750000px;}
.y7f{bottom:202.500000px;}
.y3b{bottom:203.250000px;}
.y19c{bottom:204.750000px;}
.y7e{bottom:207.000000px;}
.y164{bottom:210.750000px;}
.yd6{bottom:211.500000px;}
.y80{bottom:215.250000px;}
.y3a{bottom:220.500000px;}
.y19b{bottom:222.000000px;}
.y1bc{bottom:223.500000px;}
.yd0{bottom:227.250000px;}
.y163{bottom:228.000000px;}
.y118{bottom:228.750000px;}
.y7d{bottom:231.000000px;}
.y117{bottom:233.250000px;}
.y39{bottom:237.750000px;}
.y19a{bottom:239.250000px;}
.ycf{bottom:244.500000px;}
.y162{bottom:245.250000px;}
.y7c{bottom:248.250000px;}
.y161{bottom:249.750000px;}
.y38{bottom:255.000000px;}
.y116{bottom:255.750000px;}
.y199{bottom:256.500000px;}
.y160{bottom:258.000000px;}
.yce{bottom:261.750000px;}
.y7b{bottom:265.500000px;}
.y1bb{bottom:267.000000px;}
.y37{bottom:272.250000px;}
.y115{bottom:273.000000px;}
.y15f{bottom:273.750000px;}
.ycd{bottom:279.000000px;}
.y7a{bottom:282.750000px;}
.y1ba{bottom:288.750000px;}
.y36{bottom:289.500000px;}
.y114{bottom:290.250000px;}
.y15e{bottom:291.000000px;}
.ycc{bottom:294.000000px;}
.ycb{bottom:296.250000px;}
.y71{bottom:301.500000px;}
.y79{bottom:303.750000px;}
.y73{bottom:306.000000px;}
.y35{bottom:306.750000px;}
.y15d{bottom:308.250000px;}
.y1b9{bottom:310.500000px;}
.y70{bottom:311.250000px;}
.y77{bottom:312.000000px;}
.yca{bottom:313.500000px;}
.y74{bottom:318.000000px;}
.y33{bottom:324.000000px;}
.y159{bottom:324.750000px;}
.y76{bottom:325.500000px;}
.y75{bottom:326.250000px;}
.y72{bottom:328.500000px;}
.y157{bottom:329.250000px;}
.y78{bottom:330.000000px;}
.y34{bottom:330.750000px;}
.y112{bottom:332.250000px;}
.yc9{bottom:335.250000px;}
.y113{bottom:336.750000px;}
.y15c{bottom:339.000000px;}
.y32{bottom:341.250000px;}
.y198{bottom:342.750000px;}
.yc8{bottom:343.500000px;}
.y15a{bottom:353.250000px;}
.y6f{bottom:354.000000px;}
.y158{bottom:357.750000px;}
.y31{bottom:358.500000px;}
.yc7{bottom:359.250000px;}
.y197{bottom:360.000000px;}
.y15b{bottom:367.500000px;}
.y6e{bottom:371.250000px;}
.y30{bottom:375.750000px;}
.y196{bottom:377.250000px;}
.yc6{bottom:380.250000px;}
.y156{bottom:384.000000px;}
.y6d{bottom:388.500000px;}
.y2e{bottom:393.000000px;}
.y195{bottom:394.500000px;}
.y1b8{bottom:397.500000px;}
.y155{bottom:399.000000px;}
.y2f{bottom:399.750000px;}
.y154{bottom:401.250000px;}
.yc3{bottom:403.500000px;}
.y6c{bottom:405.750000px;}
.yc5{bottom:408.000000px;}
.y2d{bottom:410.250000px;}
.y194{bottom:411.750000px;}
.y111{bottom:414.750000px;}
.y153{bottom:418.500000px;}
.y1b7{bottom:419.250000px;}
.y6b{bottom:423.000000px;}
.y2c{bottom:427.500000px;}
.y193{bottom:429.000000px;}
.yc4{bottom:431.250000px;}
.y6a{bottom:435.750000px;}
.y110{bottom:437.250000px;}
.y1b6{bottom:441.000000px;}
.y2b{bottom:444.750000px;}
.y192{bottom:446.250000px;}
.y69{bottom:452.250000px;}
.y152{bottom:453.000000px;}
.y10f{bottom:454.500000px;}
.yc2{bottom:457.500000px;}
.y2a{bottom:462.000000px;}
.y1b5{bottom:462.750000px;}
.y191{bottom:463.500000px;}
.y151{bottom:468.000000px;}
.y68{bottom:469.500000px;}
.y150{bottom:470.250000px;}
.y10e{bottom:471.750000px;}
.yc1{bottom:472.500000px;}
.yc0{bottom:474.750000px;}
.y29{bottom:479.250000px;}
.y190{bottom:480.750000px;}
.y14e{bottom:484.500000px;}
.y67{bottom:486.750000px;}
.y10d{bottom:489.000000px;}
.ybf{bottom:489.750000px;}
.ybe{bottom:492.000000px;}
.y14f{bottom:493.500000px;}
.y28{bottom:496.500000px;}
.y18f{bottom:498.000000px;}
.y65{bottom:501.750000px;}
.y64{bottom:504.000000px;}
.y14d{bottom:505.500000px;}
.y10c{bottom:506.250000px;}
.ybd{bottom:507.000000px;}
.ybc{bottom:509.250000px;}
.y66{bottom:510.750000px;}
.y27{bottom:513.750000px;}
.y18e{bottom:515.250000px;}
.y62{bottom:521.250000px;}
.y14c{bottom:522.750000px;}
.y10b{bottom:523.500000px;}
.ybb{bottom:526.500000px;}
.y63{bottom:528.000000px;}
.y26{bottom:531.000000px;}
.y18d{bottom:532.500000px;}
.y61{bottom:536.250000px;}
.y18c{bottom:537.000000px;}
.y60{bottom:538.500000px;}
.y14b{bottom:540.000000px;}
.y10a{bottom:540.750000px;}
.yb9{bottom:543.000000px;}
.y109{bottom:545.250000px;}
.yb7{bottom:547.500000px;}
.y25{bottom:548.250000px;}
.y1b4{bottom:549.750000px;}
.y5f{bottom:553.500000px;}
.y5e{bottom:555.750000px;}
.yba{bottom:558.750000px;}
.y18b{bottom:559.500000px;}
.y14a{bottom:563.250000px;}
.y24{bottom:565.500000px;}
.y108{bottom:569.250000px;}
.yb8{bottom:570.000000px;}
.y5d{bottom:570.750000px;}
.y148{bottom:571.500000px;}
.y149{bottom:572.250000px;}
.y5c{bottom:573.000000px;}
.y18a{bottom:576.750000px;}
.y23{bottom:582.750000px;}
.y107{bottom:586.500000px;}
.y5a{bottom:588.000000px;}
.y147{bottom:588.750000px;}
.y59{bottom:590.250000px;}
.yb6{bottom:591.750000px;}
.y1b3{bottom:593.250000px;}
.y189{bottom:594.000000px;}
.y5b{bottom:597.000000px;}
.y22{bottom:600.000000px;}
.y106{bottom:603.750000px;}
.y146{bottom:606.000000px;}
.yb5{bottom:606.750000px;}
.y58{bottom:607.500000px;}
.yb4{bottom:609.000000px;}
.y188{bottom:611.250000px;}
.y1b2{bottom:615.000000px;}
.y21{bottom:617.250000px;}
.y104{bottom:621.000000px;}
.y145{bottom:623.250000px;}
.yb3{bottom:624.000000px;}
.y52{bottom:624.750000px;}
.y105{bottom:625.500000px;}
.yb2{bottom:626.250000px;}
.y187{bottom:628.500000px;}
.y4d{bottom:633.750000px;}
.y20{bottom:634.500000px;}
.y1b1{bottom:636.750000px;}
.y51{bottom:638.250000px;}
.y140{bottom:639.750000px;}
.yb1{bottom:643.500000px;}
.y143{bottom:644.250000px;}
.y4e{bottom:645.750000px;}
.y4c{bottom:648.000000px;}
.y53{bottom:650.250000px;}
.y142{bottom:651.000000px;}
.y1f{bottom:651.750000px;}
.y13f{bottom:655.500000px;}
.y1b0{bottom:658.500000px;}
.yb0{bottom:660.750000px;}
.y141{bottom:662.250000px;}
.y186{bottom:663.000000px;}
.y57{bottom:663.750000px;}
.yaf{bottom:665.250000px;}
.y144{bottom:666.750000px;}
.y185{bottom:667.500000px;}
.y102{bottom:668.250000px;}
.y1e{bottom:669.000000px;}
.y101{bottom:670.500000px;}
.y55{bottom:672.750000px;}
.yae{bottom:673.500000px;}
.y103{bottom:677.250000px;}
.y1af{bottom:680.250000px;}
.y4f{bottom:682.500000px;}
.y1d{bottom:686.250000px;}
.y54{bottom:687.000000px;}
.y100{bottom:687.750000px;}
.y13e{bottom:688.500000px;}
.yad{bottom:689.250000px;}
.y184{bottom:690.000000px;}
.y50{bottom:693.750000px;}
.y56{bottom:698.250000px;}
.y1ae{bottom:702.000000px;}
.y1c{bottom:703.500000px;}
.yff{bottom:705.000000px;}
.y13d{bottom:705.750000px;}
.yab{bottom:706.500000px;}
.y183{bottom:707.250000px;}
.yac{bottom:713.250000px;}
.y1b{bottom:720.750000px;}
.y4b{bottom:720.750300px;}
.yfe{bottom:722.250000px;}
.y13c{bottom:723.000000px;}
.yaa{bottom:723.750000px;}
.y182{bottom:724.500000px;}
.y1a{bottom:738.000000px;}
.y4a{bottom:738.000300px;}
.yfd{bottom:739.500000px;}
.ya5{bottom:740.250000px;}
.y181{bottom:742.500000px;}
.ya3{bottom:744.750000px;}
.y1ad{bottom:745.500000px;}
.ya8{bottom:751.500000px;}
.y17f{bottom:753.750000px;}
.y19{bottom:755.250000px;}
.ya7{bottom:756.000000px;}
.yfb{bottom:756.750000px;}
.y13b{bottom:757.500000px;}
.y17c{bottom:759.750000px;}
.y17e{bottom:760.500000px;}
.yfc{bottom:761.250000px;}
.y13a{bottom:762.000000px;}
.ya6{bottom:762.750000px;}
.y180{bottom:765.000000px;}
.ya4{bottom:767.250000px;}
.yfa{bottom:769.500000px;}
.y139{bottom:770.250000px;}
.y49{bottom:771.750300px;}
.y18{bottom:772.500000px;}
.y1c4{bottom:780.750000px;}
.yf9{bottom:785.250000px;}
.y138{bottom:786.000000px;}
.ya2{bottom:789.000000px;}
.y17{bottom:789.750000px;}
.y17b{bottom:791.250000px;}
.y137{bottom:801.000000px;}
.yf8{bottom:802.500000px;}
.y136{bottom:803.250000px;}
.ya1{bottom:806.250000px;}
.y16{bottom:807.000000px;}
.y48{bottom:807.000300px;}
.y179{bottom:808.500000px;}
.y1ac{bottom:810.750000px;}
.y17a{bottom:815.250000px;}
.y1c3{bottom:816.750000px;}
.y135{bottom:818.250000px;}
.yf7{bottom:819.750000px;}
.y134{bottom:820.500000px;}
.y9f{bottom:821.250000px;}
.y9e{bottom:823.500000px;}
.y15{bottom:824.250000px;}
.y47{bottom:825.000300px;}
.y178{bottom:825.750000px;}
.ya0{bottom:830.250000px;}
.y1ab{bottom:832.500000px;}
.yf6{bottom:837.000000px;}
.y133{bottom:837.750000px;}
.y9d{bottom:840.750000px;}
.y14{bottom:841.500000px;}
.y46{bottom:842.250300px;}
.y177{bottom:843.000000px;}
.y1aa{bottom:849.750000px;}
.yf4{bottom:852.000000px;}
.yf3{bottom:854.250000px;}
.y12f{bottom:856.500000px;}
.y9a{bottom:857.250000px;}
.y13{bottom:858.750000px;}
.y45{bottom:859.500300px;}
.y176{bottom:860.250000px;}
.yf5{bottom:861.000000px;}
.y97{bottom:861.750000px;}
.y1a9{bottom:867.000000px;}
.yf2{bottom:871.500000px;}
.y99{bottom:873.000000px;}
.y132{bottom:876.000000px;}
.y44{bottom:876.750300px;}
.y174{bottom:879.000000px;}
.y9c{bottom:879.750000px;}
.y130{bottom:882.750000px;}
.y175{bottom:883.500000px;}
.y98{bottom:884.250000px;}
.y131{bottom:887.250000px;}
.yf1{bottom:888.750000px;}
.y173{bottom:891.750000px;}
.y9b{bottom:892.500000px;}
.y12{bottom:893.250000px;}
.y43{bottom:894.000300px;}
.yef{bottom:906.000000px;}
.y96{bottom:909.000000px;}
.y11{bottom:909.750000px;}
.yf0{bottom:910.500000px;}
.yee{bottom:918.750000px;}
.y1a8{bottom:923.250000px;}
.y10{bottom:925.500000px;}
.y95{bottom:926.250000px;}
.y129{bottom:927.750000px;}
.y12b{bottom:932.250000px;}
.yed{bottom:934.500000px;}
.y1a7{bottom:940.500000px;}
.yf{bottom:941.250000px;}
.y12e{bottom:942.750000px;}
.y94{bottom:943.500000px;}
.y12d{bottom:947.250000px;}
.yec{bottom:951.750000px;}
.y12a{bottom:954.000000px;}
.ye{bottom:957.000000px;}
.y1c2{bottom:957.750000px;}
.y12c{bottom:958.500000px;}
.y93{bottom:960.750000px;}
.y1a6{bottom:962.250000px;}
.yeb{bottom:969.000000px;}
.yd{bottom:972.000000px;}
.y92{bottom:978.000000px;}
.y1a5{bottom:979.500000px;}
.y128{bottom:980.250000px;}
.y91{bottom:982.500000px;}
.yea{bottom:986.250000px;}
.yc{bottom:987.750000px;}
.y90{bottom:990.750000px;}
.y172{bottom:995.250000px;}
.y1a4{bottom:996.750000px;}
.y127{bottom:999.000000px;}
.y125{bottom:1003.500000px;}
.yb{bottom:1004.250000px;}
.y8f{bottom:1006.500000px;}
.ye1{bottom:1008.750000px;}
.y126{bottom:1012.500000px;}
.y1a3{bottom:1014.000000px;}
.ydf{bottom:1015.500000px;}
.ya{bottom:1021.500000px;}
.ye2{bottom:1023.000000px;}
.y8e{bottom:1023.750000px;}
.ye7{bottom:1029.750000px;}
.y1c1{bottom:1031.250000px;}
.y171{bottom:1032.000000px;}
.y124{bottom:1033.500000px;}
.ye5{bottom:1034.250000px;}
.ye0{bottom:1035.750000px;}
.y9{bottom:1038.000000px;}
.y170{bottom:1038.750000px;}
.y8d{bottom:1041.000000px;}
.y16c{bottom:1041.750000px;}
.y16f{bottom:1043.250000px;}
.ye9{bottom:1047.000000px;}
.y16d{bottom:1050.000000px;}
.y123{bottom:1050.750000px;}
.y16e{bottom:1051.500000px;}
.y8{bottom:1053.000000px;}
.y8c{bottom:1058.250000px;}
.ye6{bottom:1061.250000px;}
.y8b{bottom:1066.500000px;}
.y122{bottom:1068.000000px;}
.y7{bottom:1068.750000px;}
.y1a2{bottom:1070.250000px;}
.ye4{bottom:1074.750000px;}
.ye8{bottom:1081.500000px;}
.y8a{bottom:1082.250000px;}
.y6{bottom:1085.250000px;}
.ye3{bottom:1086.000000px;}
.y1a1{bottom:1087.500000px;}
.y16b{bottom:1092.000000px;}
.y121{bottom:1093.500000px;}
.y89{bottom:1099.500000px;}
.y5{bottom:1102.500000px;}
.y1a0{bottom:1104.750000px;}
.yde{bottom:1108.500000px;}
.y120{bottom:1109.250000px;}
.y88{bottom:1116.750000px;}
.y4{bottom:1120.500000px;}
.ydd{bottom:1122.750000px;}
.y16a{bottom:1124.250000px;}
.ydc{bottom:1125.000000px;}
.y11f{bottom:1126.500000px;}
.y86{bottom:1134.000000px;}
.y87{bottom:1138.500000px;}
.y3{bottom:1140.000000px;}
.y169{bottom:1141.500000px;}
.ydb{bottom:1143.750000px;}
.y2{bottom:1176.000000px;}
.y1{bottom:1196.250000px;}
.h11{height:21.750000px;}
.h8{height:26.832000px;}
.h14{height:27.000000px;}
.ha{height:28.686000px;}
.h9{height:28.896000px;}
.he{height:29.653488px;}
.h12{height:31.080000px;}
.h5{height:36.882000px;}
.h6{height:37.152000px;}
.h16{height:40.980000px;}
.h1{height:41.280000px;}
.h4{height:41.520000px;}
.h13{height:44.400000px;}
.h7{height:48.768000px;}
.hb{height:49.176000px;}
.h2{height:49.536000px;}
.h3{height:49.824000px;}
.hc{height:53.280000px;}
.hf{height:54.676380px;}
.hd{height:56.306191px;}
.h10{height:66.691406px;}
.h15{height:72.844860px;}
.h0{height:1263.000000px;}
.w6{width:6.000000px;}
.w1{width:9.750000px;}
.w3{width:11.250000px;}
.w4{width:12.000000px;}
.w5{width:13.500000px;}
.w2{width:21.750000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:106.500000px;}
.x4c{left:108.750000px;}
.x79{left:111.000000px;}
.x4b{left:113.250000px;}
.x7a{left:116.250000px;}
.xaf{left:117.750000px;}
.x61{left:120.750000px;}
.x71{left:123.000107px;}
.x46{left:126.750000px;}
.x3{left:128.999512px;}
.x55{left:131.250000px;}
.xc1{left:132.749994px;}
.xbb{left:134.250000px;}
.xb7{left:137.249996px;}
.xb6{left:138.750000px;}
.x45{left:140.250000px;}
.x72{left:141.750000px;}
.x6d{left:146.250000px;}
.x64{left:148.500000px;}
.x6e{left:150.750000px;}
.xbd{left:154.500000px;}
.x76{left:156.750011px;}
.xbe{left:159.750000px;}
.x75{left:161.250000px;}
.x82{left:163.499902px;}
.x44{left:165.000000px;}
.xb9{left:167.249929px;}
.xb0{left:168.750000px;}
.x43{left:170.250000px;}
.xba{left:172.500000px;}
.x9{left:174.000000px;}
.xad{left:175.500000px;}
.x7c{left:178.500082px;}
.x77{left:180.000092px;}
.x6a{left:182.250000px;}
.x47{left:184.500000px;}
.xae{left:186.000001px;}
.x52{left:188.250000px;}
.x62{left:189.750000px;}
.x63{left:191.250000px;}
.x4a{left:192.750000px;}
.x51{left:194.249983px;}
.x70{left:195.750000px;}
.x4d{left:201.000000px;}
.x48{left:203.250000px;}
.x60{left:205.500000px;}
.x4e{left:207.750000px;}
.x69{left:210.000000px;}
.x5e{left:211.500000px;}
.x5f{left:213.750103px;}
.x68{left:215.250000px;}
.x49{left:217.500000px;}
.xc0{left:218.999956px;}
.x6f{left:221.249991px;}
.x50{left:222.749988px;}
.xb4{left:225.000000px;}
.x81{left:226.500000px;}
.x65{left:229.500000px;}
.x78{left:231.000000px;}
.xb5{left:234.750000px;}
.x57{left:239.250000px;}
.x53{left:242.249958px;}
.x58{left:243.750000px;}
.x7{left:246.750660px;}
.x54{left:250.500000px;}
.xc2{left:252.000000px;}
.x4f{left:260.250059px;}
.xb8{left:264.750000px;}
.x59{left:267.750000px;}
.x80{left:270.000038px;}
.x56{left:273.000000px;}
.x7f{left:276.000037px;}
.x6{left:279.000000px;}
.xe{left:282.000000px;}
.x10{left:284.250000px;}
.xc{left:288.000000px;}
.xf{left:290.250000px;}
.xd{left:292.500000px;}
.x83{left:295.499980px;}
.x7e{left:300.000001px;}
.xbf{left:304.500000px;}
.x7d{left:306.000000px;}
.x7b{left:315.000000px;}
.x84{left:325.500000px;}
.xb1{left:334.500000px;}
.xbc{left:336.000000px;}
.xb2{left:339.750000px;}
.x66{left:350.250000px;}
.x67{left:357.750000px;}
.x8{left:361.501230px;}
.xb3{left:370.500000px;}
.x73{left:375.750000px;}
.x74{left:381.000000px;}
.x6b{left:384.000000px;}
.x6c{left:389.250000px;}
.x5a{left:407.250000px;}
.xa{left:410.250000px;}
.x4{left:412.500000px;}
.xb{left:414.750000px;}
.x5b{left:416.250000px;}
.x5c{left:420.750006px;}
.x5d{left:425.250000px;}
.x5{left:446.249993px;}
.x11{left:468.000487px;}
.x93{left:469.500000px;}
.x92{left:471.000143px;}
.xc4{left:476.250000px;}
.xab{left:479.250000px;}
.xc5{left:480.750000px;}
.x96{left:482.250000px;}
.x18{left:484.500129px;}
.x38{left:486.750182px;}
.x19{left:489.750120px;}
.x12{left:495.000530px;}
.xa2{left:497.250124px;}
.x8c{left:499.500110px;}
.xcb{left:501.000000px;}
.x15{left:504.000048px;}
.x3d{left:506.250000px;}
.xa4{left:507.750047px;}
.xac{left:510.000000px;}
.xc9{left:512.250000px;}
.xd3{left:515.250000px;}
.x37{left:516.750109px;}
.x85{left:519.000000px;}
.x33{left:520.500093px;}
.xd4{left:522.000389px;}
.x29{left:524.250000px;}
.x36{left:525.749957px;}
.x8d{left:527.250098px;}
.x2a{left:529.500000px;}
.x89{left:532.499984px;}
.xc8{left:534.750154px;}
.x32{left:536.250054px;}
.xcc{left:539.250000px;}
.xd0{left:543.000000px;}
.x86{left:544.500000px;}
.x91{left:546.000035px;}
.x87{left:549.000000px;}
.x90{left:551.250048px;}
.x9d{left:553.500000px;}
.xc7{left:555.750087px;}
.x8e{left:558.750074px;}
.xce{left:560.249926px;}
.x3c{left:561.750000px;}
.xca{left:564.749991px;}
.xa3{left:566.249999px;}
.x35{left:567.749932px;}
.xa9{left:569.250000px;}
.x8b{left:571.500054px;}
.xa1{left:573.000000px;}
.x1c{left:574.499489px;}
.x3b{left:576.000000px;}
.x9c{left:577.500000px;}
.x39{left:579.000000px;}
.x27{left:582.000000px;}
.x1f{left:585.000000px;}
.x28{left:587.250000px;}
.x20{left:589.500000px;}
.x34{left:591.000000px;}
.x95{left:593.250000px;}
.x97{left:594.750000px;}
.x8f{left:596.250000px;}
.x9e{left:600.000000px;}
.x3e{left:601.500000px;}
.x8a{left:603.000030px;}
.x1d{left:606.750000px;}
.x3f{left:608.250000px;}
.x88{left:611.250000px;}
.x40{left:612.750000px;}
.x1a{left:614.249973px;}
.x3a{left:616.500000px;}
.x16{left:618.750172px;}
.x94{left:621.000000px;}
.x9f{left:622.500000px;}
.xa0{left:627.750000px;}
.xa7{left:629.250000px;}
.x1b{left:635.249352px;}
.x41{left:642.000000px;}
.x42{left:647.250000px;}
.xcd{left:652.500000px;}
.xc6{left:659.250000px;}
.xcf{left:661.500000px;}
.x17{left:663.000000px;}
.x2b{left:666.750000px;}
.x14{left:668.250000px;}
.x2c{left:671.250000px;}
.x13{left:675.000000px;}
.x98{left:681.000000px;}
.x1e{left:684.000000px;}
.x99{left:685.500000px;}
.x30{left:710.250000px;}
.xa8{left:712.500000px;}
.xa6{left:732.750000px;}
.x2f{left:735.000000px;}
.xc3{left:736.500000px;}
.xa5{left:741.000000px;}
.x2d{left:743.250000px;}
.x31{left:745.500000px;}
.x2e{left:748.500000px;}
.xaa{left:754.500000px;}
.x9a{left:756.750000px;}
.x21{left:759.750000px;}
.x9b{left:761.250006px;}
.xd1{left:763.500000px;}
.x22{left:765.000000px;}
.x23{left:769.500000px;}
.x24{left:774.000006px;}
.xd2{left:777.000000px;}
.x25{left:778.500000px;}
.x26{left:782.250000px;}
.x2{left:786.750000px;}
@media print{
.v5{vertical-align:-53.333333pt;}
.v2{vertical-align:-42.666667pt;}
.v3{vertical-align:-40.000000pt;}
.v6{vertical-align:-24.000000pt;}
.v4{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.074684pt;}
.ls7{letter-spacing:0.341333pt;}
.ls8{letter-spacing:0.405359pt;}
.ls9{letter-spacing:2.269891pt;}
.lsc{letter-spacing:3.445387pt;}
.lsb{letter-spacing:24.953067pt;}
.ls1{letter-spacing:41.218133pt;}
.lsa{letter-spacing:75.653333pt;}
.ls5{letter-spacing:222.403733pt;}
.lsd{letter-spacing:253.006424pt;}
.ls2{letter-spacing:301.088000pt;}
.ls6{letter-spacing:378.423026pt;}
.lse{letter-spacing:389.614400pt;}
.wse{word-spacing:-41.440000pt;}
.wsd{word-spacing:-16.908766pt;}
.ws9{word-spacing:-16.419333pt;}
.ws5{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.354667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws6{word-spacing:-9.578000pt;}
.ws4{word-spacing:-9.333333pt;}
.ws3{word-spacing:-8.666667pt;}
.ws1{word-spacing:-8.000000pt;}
.wsa{word-spacing:0.000000pt;}
.wsc{word-spacing:64.074667pt;}
.ws13{word-spacing:66.275733pt;}
.ws11{word-spacing:90.758933pt;}
.wsb{word-spacing:96.096000pt;}
.ws10{word-spacing:138.323733pt;}
.wsf{word-spacing:221.527467pt;}
.ws8{word-spacing:361.125944pt;}
.ws12{word-spacing:442.526400pt;}
.ws7{word-spacing:524.448667pt;}
._83{margin-left:-628.202667pt;}
._94{margin-left:-362.921067pt;}
._81{margin-left:-344.278933pt;}
._7c{margin-left:-333.520000pt;}
._6c{margin-left:-323.328000pt;}
._75{margin-left:-315.996800pt;}
._3c{margin-left:-284.217923pt;}
._3a{margin-left:-276.625843pt;}
._3f{margin-left:-263.035949pt;}
._35{margin-left:-261.957600pt;}
._84{margin-left:-243.274667pt;}
._57{margin-left:-241.040000pt;}
._2f{margin-left:-237.937600pt;}
._36{margin-left:-228.449600pt;}
._38{margin-left:-224.632072pt;}
._62{margin-left:-221.926933pt;}
._51{margin-left:-219.258667pt;}
._7f{margin-left:-217.019765pt;}
._8f{margin-left:-214.410133pt;}
._69{margin-left:-211.253333pt;}
._8d{margin-left:-209.073600pt;}
._77{margin-left:-208.067360pt;}
._6e{margin-left:-205.427733pt;}
._88{margin-left:-200.579733pt;}
._30{margin-left:-197.910933pt;}
._67{margin-left:-195.676267pt;}
._5c{margin-left:-194.725493pt;}
._96{margin-left:-193.008000pt;}
._61{margin-left:-192.085333pt;}
._32{margin-left:-189.905600pt;}
._55{margin-left:-187.725867pt;}
._8c{margin-left:-186.748267pt;}
._48{margin-left:-185.002667pt;}
._74{margin-left:-178.296533pt;}
._41{margin-left:-176.081600pt;}
._3b{margin-left:-174.813656pt;}
._89{margin-left:-172.948267pt;}
._7e{margin-left:-171.660267pt;}
._4d{margin-left:-166.326293pt;}
._87{margin-left:-162.790400pt;}
._64{margin-left:-161.000373pt;}
._54{margin-left:-160.064000pt;}
._7d{margin-left:-156.076853pt;}
._80{margin-left:-153.833067pt;}
._59{margin-left:-152.065600pt;}
._40{margin-left:-150.963416pt;}
._3d{margin-left:-148.129389pt;}
._82{margin-left:-146.776533pt;}
._3e{margin-left:-145.626349pt;}
._6b{margin-left:-144.053867pt;}
._20{margin-left:-141.438400pt;}
._90{margin-left:-140.490667pt;}
._24{margin-left:-138.769600pt;}
._29{margin-left:-137.822400pt;}
._1e{margin-left:-136.100800pt;}
._27{margin-left:-135.153600pt;}
._34{margin-left:-133.886667pt;}
._2d{margin-left:-132.485333pt;}
._63{margin-left:-130.682827pt;}
._7a{margin-left:-128.965333pt;}
._8a{margin-left:-127.148267pt;}
._5d{margin-left:-125.381333pt;}
._72{margin-left:-123.628267pt;}
._58{margin-left:-122.726933pt;}
._73{margin-left:-121.816533pt;}
._79{margin-left:-120.086933pt;}
._37{margin-left:-118.677120pt;}
._28{margin-left:-113.856000pt;}
._45{margin-left:-112.954667pt;}
._2b{margin-left:-111.166400pt;}
._70{margin-left:-110.268800pt;}
._2e{margin-left:-108.497600pt;}
._44{margin-left:-106.742400pt;}
._5e{margin-left:-104.073067pt;}
._1f{margin-left:-101.404267pt;}
._66{margin-left:-99.612267pt;}
._95{margin-left:-98.315733pt;}
._22{margin-left:-96.066133pt;}
._25{margin-left:-93.397333pt;}
._56{margin-left:-91.585600pt;}
._71{margin-left:-90.680693pt;}
._52{margin-left:-88.505067pt;}
._91{margin-left:-87.121600pt;}
._31{margin-left:-85.836480pt;}
._47{margin-left:-84.460800pt;}
._5f{margin-left:-82.721600pt;}
._2a{margin-left:-79.166400pt;}
._98{margin-left:-78.265067pt;}
._5a{margin-left:-77.363573pt;}
._43{margin-left:-74.681067pt;}
._78{margin-left:-72.012480pt;}
._2c{margin-left:-70.278773pt;}
._26{margin-left:-68.492480pt;}
._85{margin-left:-66.689813pt;}
._9a{margin-left:-64.509867pt;}
._21{margin-left:-61.369920pt;}
._1d{margin-left:-58.700960pt;}
._97{margin-left:-57.405867pt;}
._23{margin-left:-56.032053pt;}
._39{margin-left:-54.713059pt;}
._42{margin-left:-53.333333pt;}
._50{margin-left:-48.377067pt;}
._b{margin-left:-4.130080pt;}
._2{margin-left:-2.944000pt;}
._1{margin-left:-1.186080pt;}
._0{width:1.228800pt;}
._4{width:2.208587pt;}
._5{width:3.510880pt;}
._6{width:4.504747pt;}
._f{width:5.483467pt;}
._7{width:6.548000pt;}
._a{width:7.480373pt;}
._9{width:9.151947pt;}
._8{width:10.191307pt;}
._c{width:11.570720pt;}
._13{width:15.332107pt;}
._12{width:16.516800pt;}
._1c{width:17.983893pt;}
._14{width:19.285333pt;}
._10{width:21.096480pt;}
._11{width:22.108320pt;}
._1a{width:23.175840pt;}
._19{width:24.104587pt;}
._9c{width:26.148320pt;}
._1b{width:27.355787pt;}
._17{width:29.092320pt;}
._18{width:30.056533pt;}
._e{width:31.453867pt;}
._d{width:32.407520pt;}
._92{width:34.705120pt;}
._9e{width:36.727253pt;}
._9d{width:37.766453pt;}
._16{width:40.635733pt;}
._15{width:43.553493pt;}
._76{width:45.380267pt;}
._7b{width:50.717867pt;}
._99{width:53.386667pt;}
._68{width:56.055467pt;}
._65{width:61.393067pt;}
._8e{width:66.730667pt;}
._49{width:77.405867pt;}
._4e{width:88.081067pt;}
._9b{width:93.418667pt;}
._6f{width:98.756267pt;}
._4c{width:104.093867pt;}
._6a{width:109.431467pt;}
._60{width:114.769067pt;}
._8b{width:130.781867pt;}
._86{width:141.457067pt;}
._93{width:146.794667pt;}
._5b{width:149.463467pt;}
._6d{width:152.132267pt;}
._53{width:157.469867pt;}
._4f{width:173.482667pt;}
._4a{width:175.297387pt;}
._46{width:177.005547pt;}
._33{width:226.858667pt;}
._3{width:1086.522560pt;}
._4b{width:1118.240000pt;}
.fs3{font-size:32.000000pt;}
.fs4{font-size:34.666667pt;}
.fs5{font-size:37.333333pt;}
.fs7{font-size:38.312000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:65.677333pt;}
.fs6{font-size:67.635065pt;}
.fs9{font-size:87.501333pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:4.000000pt;}
.y17d{bottom:4.666667pt;}
.y1c0{bottom:102.000000pt;}
.y11e{bottom:102.666933pt;}
.y19f{bottom:116.666667pt;}
.y11d{bottom:118.000267pt;}
.y40{bottom:119.333333pt;}
.y42{bottom:119.333600pt;}
.y85{bottom:120.000000pt;}
.yda{bottom:120.666667pt;}
.y1bf{bottom:121.333333pt;}
.y11c{bottom:122.000267pt;}
.y41{bottom:125.333600pt;}
.y168{bottom:126.000000pt;}
.y19e{bottom:132.000000pt;}
.y3e{bottom:134.666667pt;}
.y84{bottom:135.333333pt;}
.yd2{bottom:136.666667pt;}
.yd1{bottom:139.333333pt;}
.y3f{bottom:140.666667pt;}
.y167{bottom:141.333333pt;}
.y11b{bottom:142.000000pt;}
.yd5{bottom:143.333333pt;}
.yd8{bottom:147.333333pt;}
.y83{bottom:148.666667pt;}
.y3d{bottom:150.000000pt;}
.y82{bottom:150.666667pt;}
.yd3{bottom:152.666667pt;}
.yd4{bottom:156.000000pt;}
.y166{bottom:156.666667pt;}
.y11a{bottom:157.333333pt;}
.y1be{bottom:160.000000pt;}
.yd9{bottom:161.333333pt;}
.y19d{bottom:162.666667pt;}
.y3c{bottom:165.333333pt;}
.y81{bottom:166.000000pt;}
.y165{bottom:172.000000pt;}
.y119{bottom:172.666667pt;}
.yd7{bottom:176.000000pt;}
.y1bd{bottom:179.333333pt;}
.y7f{bottom:180.000000pt;}
.y3b{bottom:180.666667pt;}
.y19c{bottom:182.000000pt;}
.y7e{bottom:184.000000pt;}
.y164{bottom:187.333333pt;}
.yd6{bottom:188.000000pt;}
.y80{bottom:191.333333pt;}
.y3a{bottom:196.000000pt;}
.y19b{bottom:197.333333pt;}
.y1bc{bottom:198.666667pt;}
.yd0{bottom:202.000000pt;}
.y163{bottom:202.666667pt;}
.y118{bottom:203.333333pt;}
.y7d{bottom:205.333333pt;}
.y117{bottom:207.333333pt;}
.y39{bottom:211.333333pt;}
.y19a{bottom:212.666667pt;}
.ycf{bottom:217.333333pt;}
.y162{bottom:218.000000pt;}
.y7c{bottom:220.666667pt;}
.y161{bottom:222.000000pt;}
.y38{bottom:226.666667pt;}
.y116{bottom:227.333333pt;}
.y199{bottom:228.000000pt;}
.y160{bottom:229.333333pt;}
.yce{bottom:232.666667pt;}
.y7b{bottom:236.000000pt;}
.y1bb{bottom:237.333333pt;}
.y37{bottom:242.000000pt;}
.y115{bottom:242.666667pt;}
.y15f{bottom:243.333333pt;}
.ycd{bottom:248.000000pt;}
.y7a{bottom:251.333333pt;}
.y1ba{bottom:256.666667pt;}
.y36{bottom:257.333333pt;}
.y114{bottom:258.000000pt;}
.y15e{bottom:258.666667pt;}
.ycc{bottom:261.333333pt;}
.ycb{bottom:263.333333pt;}
.y71{bottom:268.000000pt;}
.y79{bottom:270.000000pt;}
.y73{bottom:272.000000pt;}
.y35{bottom:272.666667pt;}
.y15d{bottom:274.000000pt;}
.y1b9{bottom:276.000000pt;}
.y70{bottom:276.666667pt;}
.y77{bottom:277.333333pt;}
.yca{bottom:278.666667pt;}
.y74{bottom:282.666667pt;}
.y33{bottom:288.000000pt;}
.y159{bottom:288.666667pt;}
.y76{bottom:289.333333pt;}
.y75{bottom:290.000000pt;}
.y72{bottom:292.000000pt;}
.y157{bottom:292.666667pt;}
.y78{bottom:293.333333pt;}
.y34{bottom:294.000000pt;}
.y112{bottom:295.333333pt;}
.yc9{bottom:298.000000pt;}
.y113{bottom:299.333333pt;}
.y15c{bottom:301.333333pt;}
.y32{bottom:303.333333pt;}
.y198{bottom:304.666667pt;}
.yc8{bottom:305.333333pt;}
.y15a{bottom:314.000000pt;}
.y6f{bottom:314.666667pt;}
.y158{bottom:318.000000pt;}
.y31{bottom:318.666667pt;}
.yc7{bottom:319.333333pt;}
.y197{bottom:320.000000pt;}
.y15b{bottom:326.666667pt;}
.y6e{bottom:330.000000pt;}
.y30{bottom:334.000000pt;}
.y196{bottom:335.333333pt;}
.yc6{bottom:338.000000pt;}
.y156{bottom:341.333333pt;}
.y6d{bottom:345.333333pt;}
.y2e{bottom:349.333333pt;}
.y195{bottom:350.666667pt;}
.y1b8{bottom:353.333333pt;}
.y155{bottom:354.666667pt;}
.y2f{bottom:355.333333pt;}
.y154{bottom:356.666667pt;}
.yc3{bottom:358.666667pt;}
.y6c{bottom:360.666667pt;}
.yc5{bottom:362.666667pt;}
.y2d{bottom:364.666667pt;}
.y194{bottom:366.000000pt;}
.y111{bottom:368.666667pt;}
.y153{bottom:372.000000pt;}
.y1b7{bottom:372.666667pt;}
.y6b{bottom:376.000000pt;}
.y2c{bottom:380.000000pt;}
.y193{bottom:381.333333pt;}
.yc4{bottom:383.333333pt;}
.y6a{bottom:387.333333pt;}
.y110{bottom:388.666667pt;}
.y1b6{bottom:392.000000pt;}
.y2b{bottom:395.333333pt;}
.y192{bottom:396.666667pt;}
.y69{bottom:402.000000pt;}
.y152{bottom:402.666667pt;}
.y10f{bottom:404.000000pt;}
.yc2{bottom:406.666667pt;}
.y2a{bottom:410.666667pt;}
.y1b5{bottom:411.333333pt;}
.y191{bottom:412.000000pt;}
.y151{bottom:416.000000pt;}
.y68{bottom:417.333333pt;}
.y150{bottom:418.000000pt;}
.y10e{bottom:419.333333pt;}
.yc1{bottom:420.000000pt;}
.yc0{bottom:422.000000pt;}
.y29{bottom:426.000000pt;}
.y190{bottom:427.333333pt;}
.y14e{bottom:430.666667pt;}
.y67{bottom:432.666667pt;}
.y10d{bottom:434.666667pt;}
.ybf{bottom:435.333333pt;}
.ybe{bottom:437.333333pt;}
.y14f{bottom:438.666667pt;}
.y28{bottom:441.333333pt;}
.y18f{bottom:442.666667pt;}
.y65{bottom:446.000000pt;}
.y64{bottom:448.000000pt;}
.y14d{bottom:449.333333pt;}
.y10c{bottom:450.000000pt;}
.ybd{bottom:450.666667pt;}
.ybc{bottom:452.666667pt;}
.y66{bottom:454.000000pt;}
.y27{bottom:456.666667pt;}
.y18e{bottom:458.000000pt;}
.y62{bottom:463.333333pt;}
.y14c{bottom:464.666667pt;}
.y10b{bottom:465.333333pt;}
.ybb{bottom:468.000000pt;}
.y63{bottom:469.333333pt;}
.y26{bottom:472.000000pt;}
.y18d{bottom:473.333333pt;}
.y61{bottom:476.666667pt;}
.y18c{bottom:477.333333pt;}
.y60{bottom:478.666667pt;}
.y14b{bottom:480.000000pt;}
.y10a{bottom:480.666667pt;}
.yb9{bottom:482.666667pt;}
.y109{bottom:484.666667pt;}
.yb7{bottom:486.666667pt;}
.y25{bottom:487.333333pt;}
.y1b4{bottom:488.666667pt;}
.y5f{bottom:492.000000pt;}
.y5e{bottom:494.000000pt;}
.yba{bottom:496.666667pt;}
.y18b{bottom:497.333333pt;}
.y14a{bottom:500.666667pt;}
.y24{bottom:502.666667pt;}
.y108{bottom:506.000000pt;}
.yb8{bottom:506.666667pt;}
.y5d{bottom:507.333333pt;}
.y148{bottom:508.000000pt;}
.y149{bottom:508.666667pt;}
.y5c{bottom:509.333333pt;}
.y18a{bottom:512.666667pt;}
.y23{bottom:518.000000pt;}
.y107{bottom:521.333333pt;}
.y5a{bottom:522.666667pt;}
.y147{bottom:523.333333pt;}
.y59{bottom:524.666667pt;}
.yb6{bottom:526.000000pt;}
.y1b3{bottom:527.333333pt;}
.y189{bottom:528.000000pt;}
.y5b{bottom:530.666667pt;}
.y22{bottom:533.333333pt;}
.y106{bottom:536.666667pt;}
.y146{bottom:538.666667pt;}
.yb5{bottom:539.333333pt;}
.y58{bottom:540.000000pt;}
.yb4{bottom:541.333333pt;}
.y188{bottom:543.333333pt;}
.y1b2{bottom:546.666667pt;}
.y21{bottom:548.666667pt;}
.y104{bottom:552.000000pt;}
.y145{bottom:554.000000pt;}
.yb3{bottom:554.666667pt;}
.y52{bottom:555.333333pt;}
.y105{bottom:556.000000pt;}
.yb2{bottom:556.666667pt;}
.y187{bottom:558.666667pt;}
.y4d{bottom:563.333333pt;}
.y20{bottom:564.000000pt;}
.y1b1{bottom:566.000000pt;}
.y51{bottom:567.333333pt;}
.y140{bottom:568.666667pt;}
.yb1{bottom:572.000000pt;}
.y143{bottom:572.666667pt;}
.y4e{bottom:574.000000pt;}
.y4c{bottom:576.000000pt;}
.y53{bottom:578.000000pt;}
.y142{bottom:578.666667pt;}
.y1f{bottom:579.333333pt;}
.y13f{bottom:582.666667pt;}
.y1b0{bottom:585.333333pt;}
.yb0{bottom:587.333333pt;}
.y141{bottom:588.666667pt;}
.y186{bottom:589.333333pt;}
.y57{bottom:590.000000pt;}
.yaf{bottom:591.333333pt;}
.y144{bottom:592.666667pt;}
.y185{bottom:593.333333pt;}
.y102{bottom:594.000000pt;}
.y1e{bottom:594.666667pt;}
.y101{bottom:596.000000pt;}
.y55{bottom:598.000000pt;}
.yae{bottom:598.666667pt;}
.y103{bottom:602.000000pt;}
.y1af{bottom:604.666667pt;}
.y4f{bottom:606.666667pt;}
.y1d{bottom:610.000000pt;}
.y54{bottom:610.666667pt;}
.y100{bottom:611.333333pt;}
.y13e{bottom:612.000000pt;}
.yad{bottom:612.666667pt;}
.y184{bottom:613.333333pt;}
.y50{bottom:616.666667pt;}
.y56{bottom:620.666667pt;}
.y1ae{bottom:624.000000pt;}
.y1c{bottom:625.333333pt;}
.yff{bottom:626.666667pt;}
.y13d{bottom:627.333333pt;}
.yab{bottom:628.000000pt;}
.y183{bottom:628.666667pt;}
.yac{bottom:634.000000pt;}
.y1b{bottom:640.666667pt;}
.y4b{bottom:640.666933pt;}
.yfe{bottom:642.000000pt;}
.y13c{bottom:642.666667pt;}
.yaa{bottom:643.333333pt;}
.y182{bottom:644.000000pt;}
.y1a{bottom:656.000000pt;}
.y4a{bottom:656.000267pt;}
.yfd{bottom:657.333333pt;}
.ya5{bottom:658.000000pt;}
.y181{bottom:660.000000pt;}
.ya3{bottom:662.000000pt;}
.y1ad{bottom:662.666667pt;}
.ya8{bottom:668.000000pt;}
.y17f{bottom:670.000000pt;}
.y19{bottom:671.333333pt;}
.ya7{bottom:672.000000pt;}
.yfb{bottom:672.666667pt;}
.y13b{bottom:673.333333pt;}
.y17c{bottom:675.333333pt;}
.y17e{bottom:676.000000pt;}
.yfc{bottom:676.666667pt;}
.y13a{bottom:677.333333pt;}
.ya6{bottom:678.000000pt;}
.y180{bottom:680.000000pt;}
.ya4{bottom:682.000000pt;}
.yfa{bottom:684.000000pt;}
.y139{bottom:684.666667pt;}
.y49{bottom:686.000267pt;}
.y18{bottom:686.666667pt;}
.y1c4{bottom:694.000000pt;}
.yf9{bottom:698.000000pt;}
.y138{bottom:698.666667pt;}
.ya2{bottom:701.333333pt;}
.y17{bottom:702.000000pt;}
.y17b{bottom:703.333333pt;}
.y137{bottom:712.000000pt;}
.yf8{bottom:713.333333pt;}
.y136{bottom:714.000000pt;}
.ya1{bottom:716.666667pt;}
.y16{bottom:717.333333pt;}
.y48{bottom:717.333600pt;}
.y179{bottom:718.666667pt;}
.y1ac{bottom:720.666667pt;}
.y17a{bottom:724.666667pt;}
.y1c3{bottom:726.000000pt;}
.y135{bottom:727.333333pt;}
.yf7{bottom:728.666667pt;}
.y134{bottom:729.333333pt;}
.y9f{bottom:730.000000pt;}
.y9e{bottom:732.000000pt;}
.y15{bottom:732.666667pt;}
.y47{bottom:733.333600pt;}
.y178{bottom:734.000000pt;}
.ya0{bottom:738.000000pt;}
.y1ab{bottom:740.000000pt;}
.yf6{bottom:744.000000pt;}
.y133{bottom:744.666667pt;}
.y9d{bottom:747.333333pt;}
.y14{bottom:748.000000pt;}
.y46{bottom:748.666933pt;}
.y177{bottom:749.333333pt;}
.y1aa{bottom:755.333333pt;}
.yf4{bottom:757.333333pt;}
.yf3{bottom:759.333333pt;}
.y12f{bottom:761.333333pt;}
.y9a{bottom:762.000000pt;}
.y13{bottom:763.333333pt;}
.y45{bottom:764.000267pt;}
.y176{bottom:764.666667pt;}
.yf5{bottom:765.333333pt;}
.y97{bottom:766.000000pt;}
.y1a9{bottom:770.666667pt;}
.yf2{bottom:774.666667pt;}
.y99{bottom:776.000000pt;}
.y132{bottom:778.666667pt;}
.y44{bottom:779.333600pt;}
.y174{bottom:781.333333pt;}
.y9c{bottom:782.000000pt;}
.y130{bottom:784.666667pt;}
.y175{bottom:785.333333pt;}
.y98{bottom:786.000000pt;}
.y131{bottom:788.666667pt;}
.yf1{bottom:790.000000pt;}
.y173{bottom:792.666667pt;}
.y9b{bottom:793.333333pt;}
.y12{bottom:794.000000pt;}
.y43{bottom:794.666933pt;}
.yef{bottom:805.333333pt;}
.y96{bottom:808.000000pt;}
.y11{bottom:808.666667pt;}
.yf0{bottom:809.333333pt;}
.yee{bottom:816.666667pt;}
.y1a8{bottom:820.666667pt;}
.y10{bottom:822.666667pt;}
.y95{bottom:823.333333pt;}
.y129{bottom:824.666667pt;}
.y12b{bottom:828.666667pt;}
.yed{bottom:830.666667pt;}
.y1a7{bottom:836.000000pt;}
.yf{bottom:836.666667pt;}
.y12e{bottom:838.000000pt;}
.y94{bottom:838.666667pt;}
.y12d{bottom:842.000000pt;}
.yec{bottom:846.000000pt;}
.y12a{bottom:848.000000pt;}
.ye{bottom:850.666667pt;}
.y1c2{bottom:851.333333pt;}
.y12c{bottom:852.000000pt;}
.y93{bottom:854.000000pt;}
.y1a6{bottom:855.333333pt;}
.yeb{bottom:861.333333pt;}
.yd{bottom:864.000000pt;}
.y92{bottom:869.333333pt;}
.y1a5{bottom:870.666667pt;}
.y128{bottom:871.333333pt;}
.y91{bottom:873.333333pt;}
.yea{bottom:876.666667pt;}
.yc{bottom:878.000000pt;}
.y90{bottom:880.666667pt;}
.y172{bottom:884.666667pt;}
.y1a4{bottom:886.000000pt;}
.y127{bottom:888.000000pt;}
.y125{bottom:892.000000pt;}
.yb{bottom:892.666667pt;}
.y8f{bottom:894.666667pt;}
.ye1{bottom:896.666667pt;}
.y126{bottom:900.000000pt;}
.y1a3{bottom:901.333333pt;}
.ydf{bottom:902.666667pt;}
.ya{bottom:908.000000pt;}
.ye2{bottom:909.333333pt;}
.y8e{bottom:910.000000pt;}
.ye7{bottom:915.333333pt;}
.y1c1{bottom:916.666667pt;}
.y171{bottom:917.333333pt;}
.y124{bottom:918.666667pt;}
.ye5{bottom:919.333333pt;}
.ye0{bottom:920.666667pt;}
.y9{bottom:922.666667pt;}
.y170{bottom:923.333333pt;}
.y8d{bottom:925.333333pt;}
.y16c{bottom:926.000000pt;}
.y16f{bottom:927.333333pt;}
.ye9{bottom:930.666667pt;}
.y16d{bottom:933.333333pt;}
.y123{bottom:934.000000pt;}
.y16e{bottom:934.666667pt;}
.y8{bottom:936.000000pt;}
.y8c{bottom:940.666667pt;}
.ye6{bottom:943.333333pt;}
.y8b{bottom:948.000000pt;}
.y122{bottom:949.333333pt;}
.y7{bottom:950.000000pt;}
.y1a2{bottom:951.333333pt;}
.ye4{bottom:955.333333pt;}
.ye8{bottom:961.333333pt;}
.y8a{bottom:962.000000pt;}
.y6{bottom:964.666667pt;}
.ye3{bottom:965.333333pt;}
.y1a1{bottom:966.666667pt;}
.y16b{bottom:970.666667pt;}
.y121{bottom:972.000000pt;}
.y89{bottom:977.333333pt;}
.y5{bottom:980.000000pt;}
.y1a0{bottom:982.000000pt;}
.yde{bottom:985.333333pt;}
.y120{bottom:986.000000pt;}
.y88{bottom:992.666667pt;}
.y4{bottom:996.000000pt;}
.ydd{bottom:998.000000pt;}
.y16a{bottom:999.333333pt;}
.ydc{bottom:1000.000000pt;}
.y11f{bottom:1001.333333pt;}
.y86{bottom:1008.000000pt;}
.y87{bottom:1012.000000pt;}
.y3{bottom:1013.333333pt;}
.y169{bottom:1014.666667pt;}
.ydb{bottom:1016.666667pt;}
.y2{bottom:1045.333333pt;}
.y1{bottom:1063.333333pt;}
.h11{height:19.333333pt;}
.h8{height:23.850667pt;}
.h14{height:24.000000pt;}
.ha{height:25.498667pt;}
.h9{height:25.685333pt;}
.he{height:26.358656pt;}
.h12{height:27.626667pt;}
.h5{height:32.784000pt;}
.h6{height:33.024000pt;}
.h16{height:36.426667pt;}
.h1{height:36.693333pt;}
.h4{height:36.906667pt;}
.h13{height:39.466667pt;}
.h7{height:43.349333pt;}
.hb{height:43.712000pt;}
.h2{height:44.032000pt;}
.h3{height:44.288000pt;}
.hc{height:47.360000pt;}
.hf{height:48.601227pt;}
.hd{height:50.049948pt;}
.h10{height:59.281250pt;}
.h15{height:64.750987pt;}
.h0{height:1122.666667pt;}
.w6{width:5.333333pt;}
.w1{width:8.666667pt;}
.w3{width:10.000000pt;}
.w4{width:10.666667pt;}
.w5{width:12.000000pt;}
.w2{width:19.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:94.666667pt;}
.x4c{left:96.666667pt;}
.x79{left:98.666667pt;}
.x4b{left:100.666667pt;}
.x7a{left:103.333333pt;}
.xaf{left:104.666667pt;}
.x61{left:107.333333pt;}
.x71{left:109.333428pt;}
.x46{left:112.666667pt;}
.x3{left:114.666233pt;}
.x55{left:116.666667pt;}
.xc1{left:117.999995pt;}
.xbb{left:119.333333pt;}
.xb7{left:121.999997pt;}
.xb6{left:123.333333pt;}
.x45{left:124.666667pt;}
.x72{left:126.000000pt;}
.x6d{left:130.000000pt;}
.x64{left:132.000000pt;}
.x6e{left:134.000000pt;}
.xbd{left:137.333333pt;}
.x76{left:139.333343pt;}
.xbe{left:142.000000pt;}
.x75{left:143.333333pt;}
.x82{left:145.333247pt;}
.x44{left:146.666667pt;}
.xb9{left:148.666604pt;}
.xb0{left:150.000000pt;}
.x43{left:151.333333pt;}
.xba{left:153.333333pt;}
.x9{left:154.666667pt;}
.xad{left:156.000000pt;}
.x7c{left:158.666740pt;}
.x77{left:160.000082pt;}
.x6a{left:162.000000pt;}
.x47{left:164.000000pt;}
.xae{left:165.333335pt;}
.x52{left:167.333333pt;}
.x62{left:168.666667pt;}
.x63{left:170.000000pt;}
.x4a{left:171.333333pt;}
.x51{left:172.666652pt;}
.x70{left:174.000000pt;}
.x4d{left:178.666667pt;}
.x48{left:180.666667pt;}
.x60{left:182.666667pt;}
.x4e{left:184.666667pt;}
.x69{left:186.666667pt;}
.x5e{left:188.000000pt;}
.x5f{left:190.000092pt;}
.x68{left:191.333333pt;}
.x49{left:193.333333pt;}
.xc0{left:194.666628pt;}
.x6f{left:196.666658pt;}
.x50{left:197.999989pt;}
.xb4{left:200.000000pt;}
.x81{left:201.333333pt;}
.x65{left:204.000000pt;}
.x78{left:205.333333pt;}
.xb5{left:208.666667pt;}
.x57{left:212.666667pt;}
.x53{left:215.333296pt;}
.x58{left:216.666667pt;}
.x7{left:219.333920pt;}
.x54{left:222.666667pt;}
.xc2{left:224.000000pt;}
.x4f{left:231.333386pt;}
.xb8{left:235.333333pt;}
.x59{left:238.000000pt;}
.x80{left:240.000034pt;}
.x56{left:242.666667pt;}
.x7f{left:245.333366pt;}
.x6{left:248.000000pt;}
.xe{left:250.666667pt;}
.x10{left:252.666667pt;}
.xc{left:256.000000pt;}
.xf{left:258.000000pt;}
.xd{left:260.000000pt;}
.x83{left:262.666649pt;}
.x7e{left:266.666668pt;}
.xbf{left:270.666667pt;}
.x7d{left:272.000000pt;}
.x7b{left:280.000000pt;}
.x84{left:289.333333pt;}
.xb1{left:297.333333pt;}
.xbc{left:298.666667pt;}
.xb2{left:302.000000pt;}
.x66{left:311.333333pt;}
.x67{left:318.000000pt;}
.x8{left:321.334427pt;}
.xb3{left:329.333333pt;}
.x73{left:334.000000pt;}
.x74{left:338.666667pt;}
.x6b{left:341.333333pt;}
.x6c{left:346.000000pt;}
.x5a{left:362.000000pt;}
.xa{left:364.666667pt;}
.x4{left:366.666667pt;}
.xb{left:368.666667pt;}
.x5b{left:370.000000pt;}
.x5c{left:374.000005pt;}
.x5d{left:378.000000pt;}
.x5{left:396.666661pt;}
.x11{left:416.000433pt;}
.x93{left:417.333333pt;}
.x92{left:418.666794pt;}
.xc4{left:423.333333pt;}
.xab{left:426.000000pt;}
.xc5{left:427.333333pt;}
.x96{left:428.666667pt;}
.x18{left:430.666781pt;}
.x38{left:432.666828pt;}
.x19{left:435.333440pt;}
.x12{left:440.000471pt;}
.xa2{left:442.000110pt;}
.x8c{left:444.000098pt;}
.xcb{left:445.333333pt;}
.x15{left:448.000042pt;}
.x3d{left:450.000000pt;}
.xa4{left:451.333375pt;}
.xac{left:453.333333pt;}
.xc9{left:455.333333pt;}
.xd3{left:458.000000pt;}
.x37{left:459.333430pt;}
.x85{left:461.333333pt;}
.x33{left:462.666749pt;}
.xd4{left:464.000346pt;}
.x29{left:466.000000pt;}
.x36{left:467.333295pt;}
.x8d{left:468.666754pt;}
.x2a{left:470.666667pt;}
.x89{left:473.333320pt;}
.xc8{left:475.333470pt;}
.x32{left:476.666715pt;}
.xcc{left:479.333333pt;}
.xd0{left:482.666667pt;}
.x86{left:484.000000pt;}
.x91{left:485.333364pt;}
.x87{left:488.000000pt;}
.x90{left:490.000043pt;}
.x9d{left:492.000000pt;}
.xc7{left:494.000078pt;}
.x8e{left:496.666732pt;}
.xce{left:497.999934pt;}
.x3c{left:499.333333pt;}
.xca{left:501.999992pt;}
.xa3{left:503.333333pt;}
.x35{left:504.666607pt;}
.xa9{left:506.000000pt;}
.x8b{left:508.000048pt;}
.xa1{left:509.333333pt;}
.x1c{left:510.666213pt;}
.x3b{left:512.000000pt;}
.x9c{left:513.333333pt;}
.x39{left:514.666667pt;}
.x27{left:517.333333pt;}
.x1f{left:520.000000pt;}
.x28{left:522.000000pt;}
.x20{left:524.000000pt;}
.x34{left:525.333333pt;}
.x95{left:527.333333pt;}
.x97{left:528.666667pt;}
.x8f{left:530.000000pt;}
.x9e{left:533.333333pt;}
.x3e{left:534.666667pt;}
.x8a{left:536.000026pt;}
.x1d{left:539.333333pt;}
.x3f{left:540.666667pt;}
.x88{left:543.333333pt;}
.x40{left:544.666667pt;}
.x1a{left:545.999976pt;}
.x3a{left:548.000000pt;}
.x16{left:550.000153pt;}
.x94{left:552.000000pt;}
.x9f{left:553.333333pt;}
.xa0{left:558.000000pt;}
.xa7{left:559.333333pt;}
.x1b{left:564.666091pt;}
.x41{left:570.666667pt;}
.x42{left:575.333333pt;}
.xcd{left:580.000000pt;}
.xc6{left:586.000000pt;}
.xcf{left:588.000000pt;}
.x17{left:589.333333pt;}
.x2b{left:592.666667pt;}
.x14{left:594.000000pt;}
.x2c{left:596.666667pt;}
.x13{left:600.000000pt;}
.x98{left:605.333333pt;}
.x1e{left:608.000000pt;}
.x99{left:609.333333pt;}
.x30{left:631.333333pt;}
.xa8{left:633.333333pt;}
.xa6{left:651.333333pt;}
.x2f{left:653.333333pt;}
.xc3{left:654.666667pt;}
.xa5{left:658.666667pt;}
.x2d{left:660.666667pt;}
.x31{left:662.666667pt;}
.x2e{left:665.333333pt;}
.xaa{left:670.666667pt;}
.x9a{left:672.666667pt;}
.x21{left:675.333333pt;}
.x9b{left:676.666672pt;}
.xd1{left:678.666667pt;}
.x22{left:680.000000pt;}
.x23{left:684.000000pt;}
.x24{left:688.000005pt;}
.xd2{left:690.666667pt;}
.x25{left:692.000000pt;}
.x26{left:695.333333pt;}
.x2{left:699.333333pt;}
}




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