
    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_da9b6a6dabcdcf30a8b523db.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_803c5430f3b095b75ccbb68a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.050293;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_6dc915897941e62a78d8cdb2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_83483488d8c343fa2d0de733.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_2342441b191563121738e186.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_b23c02cfdbac756f1c65be9d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_2c8298dd21b7420ac0d2e5d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.741699;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;}
.m4{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-26.640059px;}
.v4{vertical-align:-5.759996px;}
.v6{vertical-align:-1.433069px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.759856px;}
.va{vertical-align:14.400092px;}
.v1{vertical-align:23.039977px;}
.v2{vertical-align:26.639991px;}
.v7{vertical-align:65.523974px;}
.v9{vertical-align:90.727773px;}
.v8{vertical-align:105.829876px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.053898px;}
.ls5{letter-spacing:0.282231px;}
.ls4{letter-spacing:0.282366px;}
.ls3{letter-spacing:0.282370px;}
.lsa{letter-spacing:0.469515px;}
.ls7{letter-spacing:0.501057px;}
.ls0{letter-spacing:1.002384px;}
.ls6{letter-spacing:1.002389px;}
.ls8{letter-spacing:6.261187px;}
.ls9{letter-spacing:14.901111px;}
.lsb{letter-spacing:33.147170px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-17.520638px;}
.ws15{word-spacing:-17.518878px;}
.ws2{word-spacing:-14.571576px;}
.ws4{word-spacing:-14.570047px;}
.ws16{word-spacing:-14.542200px;}
.ws11{word-spacing:-13.139067px;}
.ws6{word-spacing:-12.207381px;}
.wsf{word-spacing:-11.877716px;}
.ws0{word-spacing:-11.738813px;}
.ws5{word-spacing:-11.737866px;}
.wsc{word-spacing:-10.611031px;}
.ws7{word-spacing:-9.185385px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:301.113522px;}
.wsa{word-spacing:301.121988px;}
.ws9{word-spacing:301.133602px;}
.wsb{word-spacing:312.642118px;}
.wse{word-spacing:325.055900px;}
.wsd{word-spacing:325.081647px;}
.ws14{word-spacing:388.811259px;}
.ws10{word-spacing:1008.449640px;}
.ws12{word-spacing:1015.912629px;}
.ws13{word-spacing:1091.488541px;}
._3{margin-left:-1.020282px;}
._2{width:1.299343px;}
._9{width:2.393132px;}
._c{width:4.066414px;}
._d{width:5.302747px;}
._6{width:6.484552px;}
._7{width:7.919328px;}
._8{width:8.994657px;}
._5{width:10.431623px;}
._1{width:11.713979px;}
._0{width:13.335702px;}
._4{width:14.703831px;}
._12{width:15.714947px;}
._14{width:18.610417px;}
._13{width:19.623114px;}
._17{width:21.064225px;}
._16{width:22.172367px;}
._15{width:24.108945px;}
._b{width:25.942981px;}
._a{width:27.462230px;}
._3c{width:28.793251px;}
._3d{width:30.186886px;}
._48{width:31.984471px;}
._42{width:33.517943px;}
._34{width:34.747906px;}
._19{width:35.948738px;}
._27{width:37.182129px;}
._3e{width:38.560326px;}
._3f{width:41.202760px;}
._3a{width:50.375588px;}
._3b{width:51.441687px;}
._46{width:73.751692px;}
._45{width:74.943432px;}
._2f{width:82.313324px;}
._1f{width:84.394060px;}
._1e{width:85.663703px;}
._30{width:88.128160px;}
._1b{width:98.747447px;}
._1a{width:99.829005px;}
._18{width:101.540745px;}
._44{width:107.826832px;}
._43{width:109.005092px;}
._2a{width:115.186047px;}
._38{width:118.313881px;}
._37{width:119.581711px;}
._47{width:122.954363px;}
._35{width:125.097050px;}
._36{width:126.126142px;}
._40{width:149.536266px;}
._41{width:151.307678px;}
._39{width:170.172203px;}
._29{width:173.244611px;}
._2b{width:175.346540px;}
._f{width:211.622353px;}
._25{width:241.235909px;}
._22{width:251.571093px;}
._23{width:284.171732px;}
._1d{width:285.393794px;}
._e{width:288.718271px;}
._1c{width:290.531041px;}
._2c{width:311.306687px;}
._2d{width:326.024023px;}
._20{width:335.151311px;}
._26{width:479.342741px;}
._28{width:531.975831px;}
._24{width:589.862375px;}
._21{width:602.999793px;}
._32{width:714.891287px;}
._31{width:724.923221px;}
._2e{width:740.821830px;}
._33{width:819.603651px;}
._10{width:933.257286px;}
._11{width:1212.106536px;}
.fc7{color:rgb(112,48,160);}
.fc6{color:rgb(192,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc8{color:rgb(38,38,38);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(13,13,13);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.606010px;}
.fs0{font-size:5.606595px;}
.fs6{font-size:23.127300px;}
.fsd{font-size:40.643296px;}
.fs7{font-size:40.647960px;}
.fsb{font-size:46.951464px;}
.fs4{font-size:46.955250px;}
.fse{font-size:52.556266px;}
.fsf{font-size:58.168800px;}
.fs9{font-size:64.469236px;}
.fs2{font-size:64.476000px;}
.fs8{font-size:70.075513px;}
.fs1{font-size:70.082550px;}
.fsc{font-size:81.988483px;}
.fs3{font-size:81.996750px;}
.fs5{font-size:93.209855px;}
.y0{bottom:0.000000px;}
.y1e7{bottom:3.240006px;}
.y1f0{bottom:3.600013px;}
.y11a{bottom:3.779871px;}
.y159{bottom:3.779983px;}
.y172{bottom:3.779984px;}
.y13c{bottom:3.780000px;}
.y143{bottom:3.780001px;}
.y147{bottom:3.780017px;}
.y13{bottom:3.780018px;}
.y15f{bottom:3.780052px;}
.y18b{bottom:3.780053px;}
.y18f{bottom:3.959954px;}
.y16e{bottom:3.959988px;}
.y1a2{bottom:3.960022px;}
.y3{bottom:4.680038px;}
.y5{bottom:97.380066px;}
.y2{bottom:105.480011px;}
.y33{bottom:105.840088px;}
.y4{bottom:115.740074px;}
.y32{bottom:116.820099px;}
.y75{bottom:116.828559px;}
.y1{bottom:127.260064px;}
.y12d{bottom:145.265594px;}
.y16a{bottom:147.780052px;}
.y1c8{bottom:149.940033px;}
.y30{bottom:152.100083px;}
.yba{bottom:153.183604px;}
.y1bc{bottom:157.680039px;}
.y8d{bottom:160.748671px;}
.y73{bottom:162.720085px;}
.y19d{bottom:163.260064px;}
.y2f{bottom:167.400055px;}
.y12c{bottom:175.504563px;}
.y169{bottom:177.840088px;}
.y1e3{bottom:178.020058px;}
.yb9{bottom:179.642544px;}
.y52{bottom:182.880066px;}
.y188{bottom:183.420043px;}
.y2e{bottom:186.660049px;}
.y1bb{bottom:187.740074px;}
.y8c{bottom:190.987535px;}
.y72{bottom:193.140060px;}
.y19c{bottom:193.500068px;}
.y2d{bottom:202.500068px;}
.y12b{bottom:205.561630px;}
.y168{bottom:208.080093px;}
.y51{bottom:213.300041px;}
.yf6{bottom:217.622947px;}
.y2c{bottom:217.980079px;}
.y1ba{bottom:218.160049px;}
.y8b{bottom:221.226399px;}
.y71{bottom:223.200096px;}
.y19b{bottom:223.740074px;}
.y2b{bottom:227.340088px;}
.yd0{bottom:231.310176px;}
.y12a{bottom:235.982291px;}
.y2a{bottom:236.880066px;}
.y187{bottom:238.140060px;}
.y167{bottom:238.320099px;}
.y1e2{bottom:238.500068px;}
.y1e4{bottom:241.920043px;}
.y50{bottom:243.360077px;}
.y29{bottom:246.240074px;}
.yf5{bottom:247.861811px;}
.y1b9{bottom:248.220085px;}
.ycf{bottom:248.592090px;}
.y8a{bottom:251.283467px;}
.y70{bottom:253.440033px;}
.y19a{bottom:253.800041px;}
.y186{bottom:258.300041px;}
.y1ef{bottom:259.560036px;}
.y1ee{bottom:263.160049px;}
.y28{bottom:263.700096px;}
.y129{bottom:266.039358px;}
.y166{bottom:268.560036px;}
.y4f{bottom:273.600083px;}
.yce{bottom:273.973650px;}
.ydd{bottom:274.320856px;}
.yf4{bottom:278.100779px;}
.y185{bottom:278.460091px;}
.y1b8{bottom:278.640060px;}
.y1ed{bottom:279.900055px;}
.y89{bottom:281.704127px;}
.y6f{bottom:283.680039px;}
.y199{bottom:284.220085px;}
.ycd{bottom:290.172939px;}
.y27{bottom:291.960091px;}
.y1eb{bottom:293.580093px;}
.y128{bottom:296.288978px;}
.y1ec{bottom:296.820099px;}
.y165{bottom:298.800041px;}
.y1e1{bottom:298.980079px;}
.y184{bottom:303.120072px;}
.y4e{bottom:303.840088px;}
.ydc{bottom:304.388679px;}
.yc6{bottom:307.089906px;}
.yf3{bottom:308.339643px;}
.y1b7{bottom:308.700096px;}
.y1e9{bottom:311.400055px;}
.y88{bottom:311.761299px;}
.y6e{bottom:313.920043px;}
.y198{bottom:314.280052px;}
.y1ea{bottom:314.640060px;}
.y26{bottom:320.040047px;}
.y183{bottom:323.280052px;}
.y127{bottom:326.527842px;}
.y164{bottom:329.040047px;}
.y1e8{bottom:332.280052px;}
.y4d{bottom:334.080093px;}
.ydb{bottom:334.627543px;}
.yc7{bottom:337.872612px;}
.yf2{bottom:338.589158px;}
.y1b6{bottom:338.940033px;}
.y87{bottom:342.000163px;}
.y6d{bottom:344.160049px;}
.y197{bottom:344.700096px;}
.y1e6{bottom:350.280052px;}
.y25{bottom:350.460091px;}
.y182{bottom:354.240074px;}
.y126{bottom:356.766706px;}
.y163{bottom:359.100083px;}
.y1e0{bottom:359.280052px;}
.y1e5{bottom:363.960091px;}
.y4c{bottom:364.320099px;}
.yda{bottom:364.866407px;}
.y1c7{bottom:366.480079px;}
.yf1{bottom:368.646330px;}
.yc8{bottom:368.647251px;}
.y1b5{bottom:369.180039px;}
.y86{bottom:372.239027px;}
.y6c{bottom:374.400055px;}
.y196{bottom:374.760064px;}
.y162{bottom:376.200096px;}
.y24{bottom:380.520058px;}
.y181{bottom:384.480079px;}
.y125{bottom:387.005622px;}
.y1df{bottom:389.520058px;}
.y4b{bottom:394.560036px;}
.yd9{bottom:394.923579px;}
.yf0{bottom:395.105323px;}
.y161{bottom:396.360077px;}
.y98{bottom:397.441683px;}
.yc9{bottom:399.249441px;}
.y1b4{bottom:399.420043px;}
.y1c6{bottom:399.600083px;}
.y85{bottom:402.488647px;}
.y6b{bottom:404.460091px;}
.y195{bottom:405.000068px;}
.y10e{bottom:408.251274px;}
.y23{bottom:410.760064px;}
.y180{bottom:414.720085px;}
.y160{bottom:416.520058px;}
.y124{bottom:417.244538px;}
.y1de{bottom:419.760064px;}
.y10d{bottom:424.270125px;}
.y4a{bottom:424.620072px;}
.yd8{bottom:425.344240px;}
.y97{bottom:426.406634px;}
.y96{bottom:427.685925px;}
.y1c5{bottom:429.840088px;}
.yca{bottom:430.032147px;}
.y1b3{bottom:431.820099px;}
.y84{bottom:432.727511px;}
.y6a{bottom:434.880066px;}
.y194{bottom:435.240074px;}
.y15e{bottom:436.680039px;}
.y15c{bottom:440.460091px;}
.y22{bottom:441.000068px;}
.y103{bottom:441.367608px;}
.y17f{bottom:444.780052px;}
.y123{bottom:447.301606px;}
.y1dd{bottom:450.000068px;}
.y49{bottom:455.040047px;}
.yd7{bottom:455.401307px;}
.y15d{bottom:456.840088px;}
.y95{bottom:457.924789px;}
.y1c4{bottom:460.080093px;}
.y104{bottom:460.445911px;}
.y15b{bottom:460.620072px;}
.ycb{bottom:460.806786px;}
.y83{bottom:462.966375px;}
.y122{bottom:464.404560px;}
.y1b2{bottom:464.760064px;}
.y69{bottom:464.940033px;}
.y193{bottom:465.480079px;}
.y21{bottom:471.240074px;}
.y17e{bottom:475.200096px;}
.y105{bottom:479.347692px;}
.y1dc{bottom:480.240074px;}
.y15a{bottom:481.500068px;}
.yd6{bottom:481.860352px;}
.y121{bottom:484.565578px;}
.y48{bottom:485.100083px;}
.y94{bottom:488.163705px;}
.y1c3{bottom:490.140060px;}
.ycc{bottom:491.408976px;}
.y82{bottom:493.023495px;}
.y1b1{bottom:495.180039px;}
.y68{bottom:495.360077px;}
.y192{bottom:495.720085px;}
.ye8{bottom:496.990482px;}
.y158{bottom:497.880066px;}
.y106{bottom:498.425995px;}
.y20{bottom:501.480079px;}
.y157{bottom:501.660049px;}
.y120{bottom:504.726648px;}
.y17d{bottom:505.260064px;}
.y1db{bottom:510.300041px;}
.y47{bottom:515.520058px;}
.y107{bottom:517.508292px;}
.y93{bottom:518.402569px;}
.y1c2{bottom:520.560036px;}
.ye7{bottom:521.646297px;}
.y81{bottom:523.262411px;}
.y11f{bottom:524.882341px;}
.y1b0{bottom:525.240074px;}
.y67{bottom:525.420043px;}
.y191{bottom:525.960091px;}
.y11d{bottom:528.662212px;}
.y1f{bottom:531.720085px;}
.y156{bottom:532.620072px;}
.yb8{bottom:533.687335px;}
.yb7{bottom:535.147309px;}
.y17c{bottom:535.680039px;}
.y108{bottom:536.406079px;}
.y1da{bottom:540.720085px;}
.ye5{bottom:541.089469px;}
.y11e{bottom:545.043358px;}
.y46{bottom:545.580093px;}
.y92{bottom:548.641433px;}
.y11c{bottom:548.823229px;}
.y80{bottom:549.721404px;}
.y1c1{bottom:550.620072px;}
.y1af{bottom:555.480079px;}
.y109{bottom:555.488376px;}
.y66{bottom:555.660049px;}
.y190{bottom:556.020058px;}
.ye4{bottom:557.112314px;}
.y1e{bottom:561.960091px;}
.y155{bottom:562.860077px;}
.yb6{bottom:565.386173px;}
.y17b{bottom:565.740074px;}
.y11b{bottom:569.706003px;}
.y1d9{bottom:570.780052px;}
.yde{bottom:574.209797px;}
.y10a{bottom:574.566678px;}
.y91{bottom:574.924060px;}
.y45{bottom:575.820099px;}
.y1c0{bottom:581.040047px;}
.y1ae{bottom:585.720085px;}
.y65{bottom:585.900055px;}
.y119{bottom:586.087202px;}
.y118{bottom:589.867073px;}
.y18e{bottom:590.580093px;}
.y1d{bottom:592.020058px;}
.yac{bottom:592.389906px;}
.y154{bottom:593.100083px;}
.y10b{bottom:593.468538px;}
.yb5{bottom:595.625089px;}
.y17a{bottom:595.980079px;}
.y1d8{bottom:601.200096px;}
.y44{bottom:606.060036px;}
.y18d{bottom:610.740074px;}
.y1bf{bottom:611.100083px;}
.ydf{bottom:611.111289px;}
.y10c{bottom:612.546762px;}
.y1ad{bottom:615.960091px;}
.y64{bottom:616.140060px;}
.y117{bottom:620.822367px;}
.y1c{bottom:622.260064px;}
.yab{bottom:622.807664px;}
.y153{bottom:623.340088px;}
.yb4{bottom:625.863953px;}
.y179{bottom:626.220085px;}
.y18c{bottom:630.900055px;}
.y1d7{bottom:631.260064px;}
.y43{bottom:636.300041px;}
.y10f{bottom:638.283484px;}
.y1be{bottom:641.160049px;}
.y1ac{bottom:646.200096px;}
.y63{bottom:646.380066px;}
.ye0{bottom:648.004792px;}
.yaa{bottom:648.185229px;}
.y18a{bottom:651.060036px;}
.y116{bottom:651.061231px;}
.y1b{bottom:652.500068px;}
.y152{bottom:653.580093px;}
.yb3{bottom:654.648138px;}
.yb2{bottom:656.102817px;}
.y178{bottom:656.460091px;}
.y1d6{bottom:661.320099px;}
.ya9{bottom:664.384518px;}
.y42{bottom:666.540047px;}
.y1bd{bottom:673.740074px;}
.y189{bottom:675.900055px;}
.y1ab{bottom:676.440033px;}
.y62{bottom:676.620072px;}
.yef{bottom:679.503747px;}
.y115{bottom:681.300147px;}
.ya2{bottom:681.309552px;}
.y1a{bottom:682.740074px;}
.y151{bottom:683.820099px;}
.ye1{bottom:684.910277px;}
.yb1{bottom:686.341733px;}
.y177{bottom:686.700096px;}
.y1d5{bottom:691.740074px;}
.y9d{bottom:694.270167px;}
.ya0{bottom:694.792845px;}
.y41{bottom:696.780052px;}
.y9e{bottom:703.432907px;}
.y99{bottom:705.250281px;}
.y1aa{bottom:706.500068px;}
.y61{bottom:706.680073px;}
.yee{bottom:709.742663px;}
.y114{bottom:711.539011px;}
.y19{bottom:712.980079px;}
.y150{bottom:713.880066px;}
.yb0{bottom:716.398853px;}
.y176{bottom:716.940067px;}
.y9f{bottom:717.653894px;}
.ya1{bottom:718.732095px;}
.ya3{bottom:720.905586px;}
.y1d4{bottom:721.800076px;}
.ye2{bottom:721.803780px;}
.y40{bottom:729.180073px;}
.y9a{bottom:732.791895px;}
.y1a9{bottom:736.920078px;}
.y60{bottom:737.100083px;}
.yed{bottom:739.982571px;}
.y113{bottom:741.778972px;}
.y18{bottom:743.220051px;}
.y14f{bottom:744.300076px;}
.yaf{bottom:746.825883px;}
.y175{bottom:747.000068px;}
.y1d3{bottom:752.220051px;}
.ye3{bottom:758.705272px;}
.ya4{bottom:760.325177px;}
.y3f{bottom:762.120072px;}
.y1a8{bottom:766.980079px;}
.y5f{bottom:767.160049px;}
.yec{bottom:770.221487px;}
.y112{bottom:772.026398px;}
.y17{bottom:773.280052px;}
.y14e{bottom:774.360077px;}
.yae{bottom:776.885144px;}
.y174{bottom:777.420078px;}
.y1d2{bottom:782.280052px;}
.ye6{bottom:787.141549px;}
.y3e{bottom:792.360077px;}
.y1a7{bottom:797.400055px;}
.y5e{bottom:797.580059px;}
.ya5{bottom:799.748801px;}
.yeb{bottom:800.460351px;}
.y111{bottom:802.085659px;}
.yad{bottom:803.163489px;}
.y16{bottom:803.700061px;}
.y14d{bottom:804.600083px;}
.y9b{bottom:806.405778px;}
.y173{bottom:807.480079px;}
.y1d1{bottom:812.520058px;}
.y3d{bottom:822.600083px;}
.y15{bottom:826.380066px;}
.y1a6{bottom:827.460056px;}
.yd5{bottom:827.465778px;}
.y5d{bottom:827.640060px;}
.y110{bottom:828.363978px;}
.yea{bottom:830.699241px;}
.y14c{bottom:834.840054px;}
.ya6{bottom:839.164398px;}
.yc5{bottom:840.423467px;}
.y171{bottom:842.040081px;}
.y1d0{bottom:842.760064px;}
.y138{bottom:847.087638px;}
.y14{bottom:849.780052px;}
.y3c{bottom:852.840054px;}
.ye9{bottom:856.986123px;}
.y1a5{bottom:857.700061px;}
.y5c{bottom:857.880066px;}
.yd4{bottom:857.884297px;}
.y137{bottom:863.107273px;}
.y12{bottom:863.280052px;}
.y14b{bottom:864.900055px;}
.y170{bottom:866.340054px;}
.y1cf{bottom:873.000068px;}
.y101{bottom:874.443556px;}
.ya7{bottom:878.581600px;}
.y12e{bottom:880.204756px;}
.yc4{bottom:881.102911px;}
.y16f{bottom:882.720051px;}
.y7f{bottom:882.905157px;}
.y3b{bottom:883.080059px;}
.y11{bottom:887.220051px;}
.y1a4{bottom:887.940067px;}
.yd3{bottom:887.943558px;}
.y5b{bottom:888.120072px;}
.y9c{bottom:888.844631px;}
.yf7{bottom:891.547461px;}
.y14a{bottom:895.320065px;}
.y16d{bottom:902.880066px;}
.y1ce{bottom:903.240074px;}
.yc3{bottom:904.686515px;}
.y12f{bottom:906.123595px;}
.y10{bottom:907.380066px;}
.y3a{bottom:913.320065px;}
.yf8{bottom:913.681143px;}
.y7e{bottom:915.479897px;}
.ya8{bottom:918.184840px;}
.y5a{bottom:918.360077px;}
.yd2{bottom:918.362077px;}
.yc2{bottom:919.621958px;}
.y1a3{bottom:922.500068px;}
.y149{bottom:925.380066px;}
.yf{bottom:927.540081px;}
.y16c{bottom:927.720051px;}
.y130{bottom:932.222088px;}
.y1cd{bottom:933.480079px;}
.yf9{bottom:935.641592px;}
.ybb{bottom:936.000862px;}
.y1a1{bottom:942.840054px;}
.y39{bottom:943.380066px;}
.y16b{bottom:947.880066px;}
.y7d{bottom:948.421338px;}
.y59{bottom:948.600083px;}
.ye{bottom:948.960056px;}
.y148{bottom:955.800076px;}
.yfa{bottom:957.602061px;}
.y131{bottom:958.140966px;}
.y1a0{bottom:963.000068px;}
.y1cc{bottom:965.880066px;}
.ybc{bottom:966.243821px;}
.y146{bottom:972.720051px;}
.y38{bottom:973.800076px;}
.yd{bottom:975.780069px;}
.y8f{bottom:977.394305px;}
.y7c{bottom:978.660202px;}
.y58{bottom:978.840070px;}
.yfb{bottom:979.742165px;}
.y132{bottom:984.245881px;}
.y90{bottom:985.315059px;}
.y19f{bottom:987.300058px;}
.y145{bottom:992.880066px;}
.ybd{bottom:996.480359px;}
.yc{bottom:997.560070px;}
.y1cb{bottom:999.000068px;}
.yfc{bottom:1001.702614px;}
.y37{bottom:1003.860060px;}
.y19e{bottom:1008.360060px;}
.y7b{bottom:1008.899092px;}
.y57{bottom:1008.900072px;}
.y133{bottom:1010.164740px;}
.y144{bottom:1013.040064px;}
.yb{bottom:1014.840070px;}
.y8e{bottom:1015.553826px;}
.yfd{bottom:1023.842718px;}
.ybe{bottom:1026.723298px;}
.y1ca{bottom:1029.060070px;}
.y142{bottom:1033.200061px;}
.y36{bottom:1034.280069px;}
.ya{bottom:1035.000068px;}
.y134{bottom:1036.263233px;}
.y140{bottom:1036.980063px;}
.yd1{bottom:1037.694149px;}
.y79{bottom:1039.137982px;}
.y56{bottom:1039.320065px;}
.y7a{bottom:1045.798312px;}
.yfe{bottom:1045.803187px;}
.y141{bottom:1053.360060px;}
.y9{bottom:1054.980063px;}
.ybf{bottom:1056.780201px;}
.y13f{bottom:1057.140060px;}
.y1c9{bottom:1061.460074px;}
.y135{bottom:1062.182111px;}
.y35{bottom:1064.340070px;}
.yff{bottom:1067.943271px;}
.y78{bottom:1069.376859px;}
.y55{bottom:1069.380066px;}
.y8{bottom:1075.140060px;}
.y13e{bottom:1078.020058px;}
.y13d{bottom:1078.740074px;}
.yc0{bottom:1087.023160px;}
.y136{bottom:1088.100970px;}
.y100{bottom:1089.903740px;}
.y7{bottom:1091.520058px;}
.y34{bottom:1094.580059px;}
.y13b{bottom:1095.120072px;}
.y13a{bottom:1098.900072px;}
.y77{bottom:1099.624299px;}
.y54{bottom:1099.800058px;}
.yc1{bottom:1117.259688px;}
.y139{bottom:1118.879676px;}
.y102{bottom:1120.684600px;}
.y6{bottom:1126.980063px;}
.y76{bottom:1129.683546px;}
.y53{bottom:1129.860068px;}
.y74{bottom:1166.577556px;}
.y31{bottom:1166.580068px;}
.h11{height:4.678550px;}
.h1d{height:5.575900px;}
.h2{height:5.576481px;}
.h3c{height:16.379997px;}
.h3f{height:16.379998px;}
.h40{height:19.080025px;}
.h10{height:19.299099px;}
.h2f{height:19.433937px;}
.h2e{height:19.439262px;}
.h34{height:19.439964px;}
.h38{height:19.439965px;}
.h31{height:19.439998px;}
.he{height:19.439999px;}
.h32{height:19.440016px;}
.h35{height:19.440033px;}
.h37{height:19.440034px;}
.h2d{height:19.444640px;}
.h36{height:19.620002px;}
.h39{height:19.620003px;}
.h2c{height:19.792152px;}
.h33{height:19.799973px;}
.h30{height:19.799990px;}
.h3{height:21.420044px;}
.h13{height:33.919611px;}
.h1f{height:39.179713px;}
.h9{height:39.182872px;}
.h26{height:40.424997px;}
.h3e{height:41.041951px;}
.h3d{height:42.348477px;}
.h41{height:42.462088px;}
.h2b{height:43.856767px;}
.h29{height:46.699283px;}
.h3b{height:47.205345px;}
.h21{height:49.442928px;}
.h8{height:49.447893px;}
.h3a{height:51.158893px;}
.h2a{height:52.273982px;}
.h5{height:53.803459px;}
.hc{height:56.170024px;}
.h1b{height:56.867922px;}
.h14{height:56.873632px;}
.h22{height:57.757552px;}
.hd{height:57.763352px;}
.h6{height:57.854152px;}
.h1e{height:58.476100px;}
.h7{height:58.481972px;}
.h23{height:59.181774px;}
.h24{height:59.203285px;}
.h25{height:59.909169px;}
.h28{height:61.099375px;}
.h1c{height:64.122966px;}
.h12{height:64.129693px;}
.h17{height:65.341595px;}
.ha{height:65.765742px;}
.h18{height:65.822796px;}
.h15{height:65.822863px;}
.h1a{height:65.822868px;}
.h16{height:65.822931px;}
.h19{height:65.823070px;}
.h20{height:68.417147px;}
.hf{height:68.424046px;}
.h4{height:69.706130px;}
.hb{height:75.641982px;}
.h27{height:152.529159px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3c{width:7.200028px;}
.w11{width:7.920009px;}
.w1d{width:8.100013px;}
.w5{width:8.100746px;}
.we{width:8.816079px;}
.w9{width:8.816131px;}
.w7{width:8.819316px;}
.w14{width:8.819962px;}
.w16{width:8.819996px;}
.w4{width:8.819997px;}
.w2a{width:8.820012px;}
.w18{width:8.820014px;}
.w1f{width:8.820029px;}
.w1b{width:8.820030px;}
.w10{width:8.821457px;}
.w3b{width:10.439999px;}
.w1e{width:17.639991px;}
.w12{width:17.640026px;}
.w6{width:17.647195px;}
.w22{width:21.959988px;}
.w19{width:21.960022px;}
.wc{width:21.967025px;}
.w21{width:26.280017px;}
.w15{width:26.280018px;}
.wa{width:26.286882px;}
.w3{width:37.259994px;}
.w1c{width:39.419975px;}
.w24{width:39.420044px;}
.wf{width:39.423861px;}
.w2f{width:49.139992px;}
.w35{width:53.639991px;}
.w30{width:53.640001px;}
.w2d{width:66.599980px;}
.w33{width:66.600014px;}
.w2e{width:71.099979px;}
.w28{width:71.100015px;}
.w36{width:75.419975px;}
.w27{width:75.420009px;}
.wb{width:76.499681px;}
.w17{width:76.500000px;}
.w1a{width:79.739971px;}
.w26{width:79.739972px;}
.w3a{width:79.740005px;}
.w23{width:79.740006px;}
.wd{width:79.743861px;}
.w2b{width:84.239972px;}
.w8{width:88.559940px;}
.w13{width:88.560001px;}
.w20{width:88.560002px;}
.w39{width:144.539994px;}
.w34{width:144.540005px;}
.w25{width:166.500009px;}
.w29{width:177.299999px;}
.w2c{width:195.120003px;}
.w31{width:231.659990px;}
.w37{width:231.659998px;}
.w32{width:243.359983px;}
.w38{width:243.359991px;}
.w2{width:787.860009px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.xa4{left:-9.180004px;}
.x0{left:0.000000px;}
.x86{left:82.079999px;}
.x1{left:105.120002px;}
.x94{left:113.040003px;}
.x69{left:118.260986px;}
.xb{left:120.780001px;}
.x7{left:125.280001px;}
.x4a{left:128.160049px;}
.xa0{left:131.400003px;}
.x29{left:138.238606px;}
.x49{left:141.484786px;}
.x28{left:151.563353px;}
.x17{left:154.260981px;}
.xa1{left:157.680005px;}
.x64{left:159.120669px;}
.x3f{left:165.061318px;}
.x18{left:166.318138px;}
.x4b{left:169.019596px;}
.x60{left:171.001946px;}
.x7f{left:174.240006px;}
.x2a{left:176.403705px;}
.x3e{left:178.379633px;}
.x56{left:182.164723px;}
.x1f{left:188.638192px;}
.x4c{left:192.243279px;}
.x9b{left:194.039996px;}
.x2b{left:196.201558px;}
.x53{left:198.540238px;}
.x40{left:202.681096px;}
.x72{left:204.483816px;}
.x63{left:206.280134px;}
.x24{left:209.342698px;}
.x6e{left:213.665308px;}
.x54{left:219.062968px;}
.x1d{left:221.579652px;}
.x41{left:225.725149px;}
.x96{left:228.780001px;}
.x1e{left:233.459600px;}
.x25{left:241.379096px;}
.x61{left:246.600801px;}
.x88{left:248.400003px;}
.x85{left:250.740006px;}
.x57{left:256.506130px;}
.x14{left:257.941545px;}
.x8d{left:259.199993px;}
.x5d{left:263.883817px;}
.x73{left:264.961616px;}
.x1c{left:273.424543px;}
.x90{left:276.659998px;}
.xa{left:278.639992px;}
.x2c{left:281.166852px;}
.x97{left:282.419992px;}
.x37{left:284.938409px;}
.x8{left:289.439999px;}
.x20{left:292.500080px;}
.x2d{left:297.545317px;}
.x89{left:299.160015px;}
.x3d{left:301.139952px;}
.x42{left:308.342412px;}
.x43{left:327.967057px;}
.x77{left:333.357915px;}
.x9f{left:338.579990px;}
.x35{left:341.285373px;}
.x52{left:343.081710px;}
.xf{left:344.339985px;}
.xe{left:346.319996px;}
.x10{left:348.660015px;}
.x81{left:353.879998px;}
.x67{left:355.683286px;}
.x58{left:360.185096px;}
.x74{left:361.442525px;}
.x6b{left:365.407210px;}
.x6f{left:369.727040px;}
.x83{left:371.339985px;}
.x78{left:372.959988px;}
.x6d{left:374.226526px;}
.x34{left:376.563541px;}
.x5c{left:379.625308px;}
.x51{left:383.043098px;}
.x2e{left:385.743987px;}
.x79{left:390.600014px;}
.x21{left:392.759540px;}
.x62{left:395.099093px;}
.x4d{left:396.906725px;}
.x7c{left:399.240006px;}
.x2f{left:402.300476px;}
.x48{left:405.002932px;}
.x4e{left:412.745517px;}
.x44{left:413.824079px;}
.x9c{left:425.519989px;}
.xc{left:428.040012px;}
.x45{left:433.447138px;}
.x9e{left:437.220017px;}
.x9{left:446.759994px;}
.x6a{left:455.944224px;}
.x98{left:460.439999px;}
.x80{left:462.060001px;}
.xd{left:465.120002px;}
.x5a{left:471.069325px;}
.x99{left:472.139992px;}
.xa3{left:473.399987px;}
.x65{left:474.665955px;}
.x91{left:476.279983px;}
.x82{left:478.079990px;}
.x76{left:481.145473px;}
.x59{left:487.448592px;}
.x30{left:490.507918px;}
.x8a{left:493.740006px;}
.x75{left:497.524740px;}
.x22{left:500.398089px;}
.x31{left:507.063624px;}
.x46{left:519.485396px;}
.x38{left:522.359492px;}
.x4f{left:534.425196px;}
.x9d{left:536.399987px;}
.x39{left:538.926849px;}
.x70{left:551.709973px;}
.x26{left:555.661776px;}
.x3a{left:557.996789px;}
.x6c{left:560.349633px;}
.x11{left:563.398438px;}
.x84{left:566.639992px;}
.x3b{left:569.887520px;}
.x12{left:572.587421px;}
.x9a{left:573.839985px;}
.x7d{left:576.539978px;}
.x7a{left:585.360008px;}
.x5b{left:592.568610px;}
.x5{left:595.620002px;}
.x32{left:600.487595px;}
.x6{left:602.820030px;}
.x23{left:606.418115px;}
.x66{left:608.049709px;}
.x33{left:613.266238px;}
.x7b{left:618.480011px;}
.x92{left:629.100014px;}
.x8b{left:633.600014px;}
.x71{left:635.588631px;}
.x50{left:640.447378px;}
.x2{left:642.419975px;}
.x47{left:643.506704px;}
.x8e{left:646.740006px;}
.x7e{left:657.899987px;}
.x27{left:660.242187px;}
.x4{left:668.700027px;}
.xa2{left:672.480011px;}
.x95{left:677.159981px;}
.x13{left:712.805773px;}
.x55{left:715.142133px;}
.x68{left:722.167241px;}
.x87{left:723.779983px;}
.x5e{left:738.008429px;}
.x19{left:741.599370px;}
.x5f{left:743.942863px;}
.x36{left:747.904478px;}
.xa5{left:754.019989px;}
.x1a{left:756.367772px;}
.x1b{left:763.211084px;}
.x15{left:769.316914px;}
.x93{left:772.740006px;}
.x3c{left:776.887005px;}
.x16{left:784.270276px;}
.x3{left:788.399987px;}
.x8c{left:794.700027px;}
.x8f{left:803.519989px;}
@media print{
.v3{vertical-align:-23.680052pt;}
.v4{vertical-align:-5.119996pt;}
.v6{vertical-align:-1.273839pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.119872pt;}
.va{vertical-align:12.800082pt;}
.v1{vertical-align:20.479980pt;}
.v2{vertical-align:23.679992pt;}
.v7{vertical-align:58.243532pt;}
.v9{vertical-align:80.646910pt;}
.v8{vertical-align:94.071001pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.047909pt;}
.ls5{letter-spacing:0.250872pt;}
.ls4{letter-spacing:0.250992pt;}
.ls3{letter-spacing:0.250996pt;}
.lsa{letter-spacing:0.417346pt;}
.ls7{letter-spacing:0.445384pt;}
.ls0{letter-spacing:0.891008pt;}
.ls6{letter-spacing:0.891012pt;}
.ls8{letter-spacing:5.565500pt;}
.ls9{letter-spacing:13.245432pt;}
.lsb{letter-spacing:29.464151pt;}
.ws1{word-spacing:-15.573900pt;}
.ws15{word-spacing:-15.572336pt;}
.ws2{word-spacing:-12.952512pt;}
.ws4{word-spacing:-12.951153pt;}
.ws16{word-spacing:-12.926400pt;}
.ws11{word-spacing:-11.679170pt;}
.ws6{word-spacing:-10.851005pt;}
.wsf{word-spacing:-10.557970pt;}
.ws0{word-spacing:-10.434500pt;}
.ws5{word-spacing:-10.433659pt;}
.wsc{word-spacing:-9.432027pt;}
.ws7{word-spacing:-8.164787pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:267.656464pt;}
.wsa{word-spacing:267.663989pt;}
.ws9{word-spacing:267.674313pt;}
.wsb{word-spacing:277.904105pt;}
.wse{word-spacing:288.938578pt;}
.wsd{word-spacing:288.961464pt;}
.ws14{word-spacing:345.610008pt;}
.ws10{word-spacing:896.399680pt;}
.ws12{word-spacing:903.033448pt;}
.ws13{word-spacing:970.212036pt;}
._3{margin-left:-0.906918pt;}
._2{width:1.154971pt;}
._9{width:2.127228pt;}
._c{width:3.614590pt;}
._d{width:4.713553pt;}
._6{width:5.764046pt;}
._7{width:7.039403pt;}
._8{width:7.995251pt;}
._5{width:9.272554pt;}
._1{width:10.412426pt;}
._0{width:11.853957pt;}
._4{width:13.070072pt;}
._12{width:13.968842pt;}
._14{width:16.542592pt;}
._13{width:17.442768pt;}
._17{width:18.723756pt;}
._16{width:19.708770pt;}
._15{width:21.430173pt;}
._b{width:23.060428pt;}
._a{width:24.410871pt;}
._3c{width:25.594001pt;}
._3d{width:26.832787pt;}
._48{width:28.430641pt;}
._42{width:29.793727pt;}
._34{width:30.887028pt;}
._19{width:31.954434pt;}
._27{width:33.050781pt;}
._3e{width:34.275845pt;}
._3f{width:36.624676pt;}
._3a{width:44.778300pt;}
._3b{width:45.725944pt;}
._46{width:65.557059pt;}
._45{width:66.616384pt;}
._2f{width:73.167399pt;}
._1f{width:75.016943pt;}
._1e{width:76.145514pt;}
._30{width:78.336142pt;}
._1b{width:87.775508pt;}
._1a{width:88.736893pt;}
._18{width:90.258440pt;}
._44{width:95.846073pt;}
._43{width:96.893415pt;}
._2a{width:102.387598pt;}
._38{width:105.167894pt;}
._37{width:106.294854pt;}
._47{width:109.292767pt;}
._35{width:111.197378pt;}
._36{width:112.112126pt;}
._40{width:132.921126pt;}
._41{width:134.495714pt;}
._39{width:151.264180pt;}
._29{width:153.995210pt;}
._2b{width:155.863591pt;}
._f{width:188.108758pt;}
._25{width:214.431919pt;}
._22{width:223.618749pt;}
._23{width:252.597095pt;}
._1d{width:253.683372pt;}
._e{width:256.638463pt;}
._1c{width:258.249814pt;}
._2c{width:276.717055pt;}
._2d{width:289.799131pt;}
._20{width:297.912276pt;}
._26{width:426.082437pt;}
._28{width:472.867406pt;}
._24{width:524.322111pt;}
._21{width:535.999816pt;}
._32{width:635.458922pt;}
._31{width:644.376196pt;}
._2e{width:658.508294pt;}
._33{width:728.536578pt;}
._10{width:829.562032pt;}
._11{width:1077.428032pt;}
.fsa{font-size:4.983120pt;}
.fs0{font-size:4.983640pt;}
.fs6{font-size:20.557600pt;}
.fsd{font-size:36.127375pt;}
.fs7{font-size:36.131520pt;}
.fsb{font-size:41.734635pt;}
.fs4{font-size:41.738000pt;}
.fse{font-size:46.716681pt;}
.fsf{font-size:51.705600pt;}
.fs9{font-size:57.305988pt;}
.fs2{font-size:57.312000pt;}
.fs8{font-size:62.289345pt;}
.fs1{font-size:62.295600pt;}
.fsc{font-size:72.878652pt;}
.fs3{font-size:72.886000pt;}
.fs5{font-size:82.853204pt;}
.y0{bottom:0.000000pt;}
.y1e7{bottom:2.880005pt;}
.y1f0{bottom:3.200012pt;}
.y11a{bottom:3.359885pt;}
.y159{bottom:3.359985pt;}
.y172{bottom:3.359986pt;}
.y13c{bottom:3.360000pt;}
.y143{bottom:3.360001pt;}
.y147{bottom:3.360015pt;}
.y13{bottom:3.360016pt;}
.y15f{bottom:3.360046pt;}
.y18b{bottom:3.360047pt;}
.y18f{bottom:3.519959pt;}
.y16e{bottom:3.519989pt;}
.y1a2{bottom:3.520020pt;}
.y3{bottom:4.160034pt;}
.y5{bottom:86.560059pt;}
.y2{bottom:93.760010pt;}
.y33{bottom:94.080079pt;}
.y4{bottom:102.880066pt;}
.y32{bottom:103.840088pt;}
.y75{bottom:103.847608pt;}
.y1{bottom:113.120057pt;}
.y12d{bottom:129.124973pt;}
.y16a{bottom:131.360047pt;}
.y1c8{bottom:133.280030pt;}
.y30{bottom:135.200074pt;}
.yba{bottom:136.163203pt;}
.y1bc{bottom:140.160035pt;}
.y8d{bottom:142.887708pt;}
.y73{bottom:144.640076pt;}
.y19d{bottom:145.120057pt;}
.y2f{bottom:148.800049pt;}
.y12c{bottom:156.004056pt;}
.y169{bottom:158.080079pt;}
.y1e3{bottom:158.240052pt;}
.yb9{bottom:159.682262pt;}
.y52{bottom:162.560059pt;}
.y188{bottom:163.040039pt;}
.y2e{bottom:165.920044pt;}
.y1bb{bottom:166.880066pt;}
.y8c{bottom:169.766698pt;}
.y72{bottom:171.680054pt;}
.y19c{bottom:172.000061pt;}
.y2d{bottom:180.000061pt;}
.y12b{bottom:182.721449pt;}
.y168{bottom:184.960083pt;}
.y51{bottom:189.600037pt;}
.yf6{bottom:193.442619pt;}
.y2c{bottom:193.760071pt;}
.y1ba{bottom:193.920044pt;}
.y8b{bottom:196.645688pt;}
.y71{bottom:198.400086pt;}
.y19b{bottom:198.880066pt;}
.y2b{bottom:202.080079pt;}
.yd0{bottom:205.609045pt;}
.y12a{bottom:209.762036pt;}
.y2a{bottom:210.560059pt;}
.y187{bottom:211.680054pt;}
.y167{bottom:211.840088pt;}
.y1e2{bottom:212.000061pt;}
.y1e4{bottom:215.040039pt;}
.y50{bottom:216.320069pt;}
.y29{bottom:218.880066pt;}
.yf5{bottom:220.321610pt;}
.y1b9{bottom:220.640076pt;}
.ycf{bottom:220.970747pt;}
.y8a{bottom:223.363082pt;}
.y70{bottom:225.280030pt;}
.y19a{bottom:225.600037pt;}
.y186{bottom:229.600037pt;}
.y1ef{bottom:230.720032pt;}
.y1ee{bottom:233.920044pt;}
.y28{bottom:234.400086pt;}
.y129{bottom:236.479430pt;}
.y166{bottom:238.720032pt;}
.y4f{bottom:243.200074pt;}
.yce{bottom:243.532133pt;}
.ydd{bottom:243.840761pt;}
.yf4{bottom:247.200693pt;}
.y185{bottom:247.520081pt;}
.y1b8{bottom:247.680054pt;}
.y1ed{bottom:248.800049pt;}
.y89{bottom:250.403669pt;}
.y6f{bottom:252.160035pt;}
.y199{bottom:252.640076pt;}
.ycd{bottom:257.931501pt;}
.y27{bottom:259.520081pt;}
.y1eb{bottom:260.960083pt;}
.y128{bottom:263.367980pt;}
.y1ec{bottom:263.840088pt;}
.y165{bottom:265.600037pt;}
.y1e1{bottom:265.760071pt;}
.y184{bottom:269.440064pt;}
.y4e{bottom:270.080079pt;}
.ydc{bottom:270.567715pt;}
.yc6{bottom:272.968805pt;}
.yf3{bottom:274.079683pt;}
.y1b7{bottom:274.400086pt;}
.y1e9{bottom:276.800049pt;}
.y88{bottom:277.121155pt;}
.y6e{bottom:279.040039pt;}
.y198{bottom:279.360047pt;}
.y1ea{bottom:279.680054pt;}
.y26{bottom:284.480042pt;}
.y183{bottom:287.360047pt;}
.y127{bottom:290.246970pt;}
.y164{bottom:292.480042pt;}
.y1e8{bottom:295.360047pt;}
.y4d{bottom:296.960083pt;}
.ydb{bottom:297.446705pt;}
.yc7{bottom:300.331210pt;}
.yf2{bottom:300.968141pt;}
.y1b6{bottom:301.280030pt;}
.y87{bottom:304.000145pt;}
.y6d{bottom:305.920044pt;}
.y197{bottom:306.400086pt;}
.y1e6{bottom:311.360047pt;}
.y25{bottom:311.520081pt;}
.y182{bottom:314.880066pt;}
.y126{bottom:317.125961pt;}
.y163{bottom:319.200074pt;}
.y1e0{bottom:319.360047pt;}
.y1e5{bottom:323.520081pt;}
.y4c{bottom:323.840088pt;}
.yda{bottom:324.325695pt;}
.y1c7{bottom:325.760071pt;}
.yf1{bottom:327.685627pt;}
.yc8{bottom:327.686445pt;}
.y1b5{bottom:328.160035pt;}
.y86{bottom:330.879135pt;}
.y6c{bottom:332.800049pt;}
.y196{bottom:333.120057pt;}
.y162{bottom:334.400086pt;}
.y24{bottom:338.240052pt;}
.y181{bottom:341.760071pt;}
.y125{bottom:344.004997pt;}
.y1df{bottom:346.240052pt;}
.y4b{bottom:350.720032pt;}
.yd9{bottom:351.043181pt;}
.yf0{bottom:351.204732pt;}
.y161{bottom:352.320069pt;}
.y98{bottom:353.281496pt;}
.yc9{bottom:354.888392pt;}
.y1b4{bottom:355.040039pt;}
.y1c6{bottom:355.200074pt;}
.y85{bottom:357.767686pt;}
.y6b{bottom:359.520081pt;}
.y195{bottom:360.000061pt;}
.y10e{bottom:362.890021pt;}
.y23{bottom:365.120057pt;}
.y180{bottom:368.640076pt;}
.y160{bottom:370.240052pt;}
.y124{bottom:370.884034pt;}
.y1de{bottom:373.120057pt;}
.y10d{bottom:377.129000pt;}
.y4a{bottom:377.440064pt;}
.yd8{bottom:378.083768pt;}
.y97{bottom:379.028119pt;}
.y96{bottom:380.165267pt;}
.y1c5{bottom:382.080079pt;}
.yca{bottom:382.250797pt;}
.y1b3{bottom:383.840088pt;}
.y84{bottom:384.646676pt;}
.y6a{bottom:386.560059pt;}
.y194{bottom:386.880066pt;}
.y15e{bottom:388.160035pt;}
.y15c{bottom:391.520081pt;}
.y22{bottom:392.000061pt;}
.y103{bottom:392.326763pt;}
.y17f{bottom:395.360047pt;}
.y123{bottom:397.601427pt;}
.y1dd{bottom:400.000061pt;}
.y49{bottom:404.480042pt;}
.yd7{bottom:404.801162pt;}
.y15d{bottom:406.080079pt;}
.y95{bottom:407.044257pt;}
.y1c4{bottom:408.960083pt;}
.y104{bottom:409.285254pt;}
.y15b{bottom:409.440064pt;}
.ycb{bottom:409.606032pt;}
.y83{bottom:411.525666pt;}
.y122{bottom:412.804054pt;}
.y1b2{bottom:413.120057pt;}
.y69{bottom:413.280030pt;}
.y193{bottom:413.760071pt;}
.y21{bottom:418.880066pt;}
.y17e{bottom:422.400086pt;}
.y105{bottom:426.086837pt;}
.y1dc{bottom:426.880066pt;}
.y15a{bottom:428.000061pt;}
.yd6{bottom:428.320313pt;}
.y121{bottom:430.724958pt;}
.y48{bottom:431.200074pt;}
.y94{bottom:433.923293pt;}
.y1c3{bottom:435.680054pt;}
.ycc{bottom:436.807979pt;}
.y82{bottom:438.243106pt;}
.y1b1{bottom:440.160035pt;}
.y68{bottom:440.320069pt;}
.y192{bottom:440.640076pt;}
.ye8{bottom:441.769317pt;}
.y158{bottom:442.560059pt;}
.y106{bottom:443.045329pt;}
.y20{bottom:445.760071pt;}
.y157{bottom:445.920044pt;}
.y120{bottom:448.645910pt;}
.y17d{bottom:449.120057pt;}
.y1db{bottom:453.600037pt;}
.y47{bottom:458.240052pt;}
.y107{bottom:460.007370pt;}
.y93{bottom:460.802284pt;}
.y1c2{bottom:462.720032pt;}
.ye7{bottom:463.685597pt;}
.y81{bottom:465.122143pt;}
.y11f{bottom:466.562081pt;}
.y1b0{bottom:466.880066pt;}
.y67{bottom:467.040039pt;}
.y191{bottom:467.520081pt;}
.y11d{bottom:469.921966pt;}
.y1f{bottom:472.640076pt;}
.y156{bottom:473.440064pt;}
.yb8{bottom:474.388742pt;}
.yb7{bottom:475.686497pt;}
.y17c{bottom:476.160035pt;}
.y108{bottom:476.805403pt;}
.y1da{bottom:480.640076pt;}
.ye5{bottom:480.968417pt;}
.y11e{bottom:484.482985pt;}
.y46{bottom:484.960083pt;}
.y92{bottom:487.681274pt;}
.y11c{bottom:487.842871pt;}
.y80{bottom:488.641248pt;}
.y1c1{bottom:489.440064pt;}
.y1af{bottom:493.760071pt;}
.y109{bottom:493.767445pt;}
.y66{bottom:493.920044pt;}
.y190{bottom:494.240052pt;}
.ye4{bottom:495.210946pt;}
.y1e{bottom:499.520081pt;}
.y155{bottom:500.320069pt;}
.yb6{bottom:502.565487pt;}
.y17b{bottom:502.880066pt;}
.y11b{bottom:506.405336pt;}
.y1d9{bottom:507.360047pt;}
.yde{bottom:510.408709pt;}
.y10a{bottom:510.725936pt;}
.y91{bottom:511.043609pt;}
.y45{bottom:511.840088pt;}
.y1c0{bottom:516.480042pt;}
.y1ae{bottom:520.640076pt;}
.y65{bottom:520.800049pt;}
.y119{bottom:520.966402pt;}
.y118{bottom:524.326287pt;}
.y18e{bottom:524.960083pt;}
.y1d{bottom:526.240052pt;}
.yac{bottom:526.568805pt;}
.y154{bottom:527.200074pt;}
.y10b{bottom:527.527589pt;}
.yb5{bottom:529.444523pt;}
.y17a{bottom:529.760071pt;}
.y1d8{bottom:534.400086pt;}
.y44{bottom:538.720032pt;}
.y18d{bottom:542.880066pt;}
.y1bf{bottom:543.200074pt;}
.ydf{bottom:543.210034pt;}
.y10c{bottom:544.486011pt;}
.y1ad{bottom:547.520081pt;}
.y64{bottom:547.680054pt;}
.y117{bottom:551.842104pt;}
.y1c{bottom:553.120057pt;}
.yab{bottom:553.606813pt;}
.y153{bottom:554.080079pt;}
.yb4{bottom:556.323514pt;}
.y179{bottom:556.640076pt;}
.y18c{bottom:560.800049pt;}
.y1d7{bottom:561.120057pt;}
.y43{bottom:565.600037pt;}
.y10f{bottom:567.363097pt;}
.y1be{bottom:569.920044pt;}
.y1ac{bottom:574.400086pt;}
.y63{bottom:574.560059pt;}
.ye0{bottom:576.004259pt;}
.yaa{bottom:576.164648pt;}
.y18a{bottom:578.720032pt;}
.y116{bottom:578.721094pt;}
.y1b{bottom:580.000061pt;}
.y152{bottom:580.960083pt;}
.yb3{bottom:581.909456pt;}
.yb2{bottom:583.202504pt;}
.y178{bottom:583.520081pt;}
.y1d6{bottom:587.840088pt;}
.ya9{bottom:590.564016pt;}
.y42{bottom:592.480042pt;}
.y1bd{bottom:598.880066pt;}
.y189{bottom:600.800049pt;}
.y1ab{bottom:601.280030pt;}
.y62{bottom:601.440064pt;}
.yef{bottom:604.003330pt;}
.y115{bottom:605.600131pt;}
.ya2{bottom:605.608491pt;}
.y1a{bottom:606.880066pt;}
.y151{bottom:607.840088pt;}
.ye1{bottom:608.809135pt;}
.yb1{bottom:610.081541pt;}
.y177{bottom:610.400086pt;}
.y1d5{bottom:614.880066pt;}
.y9d{bottom:617.129037pt;}
.ya0{bottom:617.593640pt;}
.y41{bottom:619.360047pt;}
.y9e{bottom:625.273695pt;}
.y99{bottom:626.889139pt;}
.y1aa{bottom:628.000061pt;}
.y61{bottom:628.160065pt;}
.yee{bottom:630.882367pt;}
.y114{bottom:632.479121pt;}
.y19{bottom:633.760071pt;}
.y150{bottom:634.560059pt;}
.yb0{bottom:636.798980pt;}
.y176{bottom:637.280060pt;}
.y9f{bottom:637.914572pt;}
.ya1{bottom:638.872974pt;}
.ya3{bottom:640.804966pt;}
.y1d4{bottom:641.600068pt;}
.ye2{bottom:641.603360pt;}
.y40{bottom:648.160065pt;}
.y9a{bottom:651.370574pt;}
.y1a9{bottom:655.040070pt;}
.y60{bottom:655.200074pt;}
.yed{bottom:657.762285pt;}
.y113{bottom:659.359086pt;}
.y18{bottom:660.640046pt;}
.y14f{bottom:661.600068pt;}
.yaf{bottom:663.845229pt;}
.y175{bottom:664.000061pt;}
.y1d3{bottom:668.640046pt;}
.ye3{bottom:674.404686pt;}
.ya4{bottom:675.844602pt;}
.y3f{bottom:677.440064pt;}
.y1a8{bottom:681.760071pt;}
.y5f{bottom:681.920044pt;}
.yec{bottom:684.641322pt;}
.y112{bottom:686.245687pt;}
.y17{bottom:687.360047pt;}
.y14e{bottom:688.320069pt;}
.yae{bottom:690.564572pt;}
.y174{bottom:691.040070pt;}
.y1d2{bottom:695.360047pt;}
.ye6{bottom:699.681377pt;}
.y3e{bottom:704.320069pt;}
.y1a7{bottom:708.800049pt;}
.y5e{bottom:708.960053pt;}
.ya5{bottom:710.887823pt;}
.yeb{bottom:711.520312pt;}
.y111{bottom:712.965030pt;}
.yad{bottom:713.923101pt;}
.y16{bottom:714.400055pt;}
.y14d{bottom:715.200074pt;}
.y9b{bottom:716.805136pt;}
.y173{bottom:717.760071pt;}
.y1d1{bottom:722.240052pt;}
.y3d{bottom:731.200074pt;}
.y15{bottom:734.560059pt;}
.y1a6{bottom:735.520050pt;}
.yd5{bottom:735.525136pt;}
.y5d{bottom:735.680054pt;}
.y110{bottom:736.323536pt;}
.yea{bottom:738.399326pt;}
.y14c{bottom:742.080048pt;}
.ya6{bottom:745.923909pt;}
.yc5{bottom:747.043082pt;}
.y171{bottom:748.480072pt;}
.y1d0{bottom:749.120057pt;}
.y138{bottom:752.966789pt;}
.y14{bottom:755.360047pt;}
.y3c{bottom:758.080048pt;}
.ye9{bottom:761.765443pt;}
.y1a5{bottom:762.400055pt;}
.y5c{bottom:762.560059pt;}
.yd4{bottom:762.563820pt;}
.y137{bottom:767.206465pt;}
.y12{bottom:767.360047pt;}
.y14b{bottom:768.800049pt;}
.y170{bottom:770.080048pt;}
.y1cf{bottom:776.000061pt;}
.y101{bottom:777.283161pt;}
.ya7{bottom:780.961422pt;}
.y12e{bottom:782.404227pt;}
.yc4{bottom:783.202587pt;}
.y16f{bottom:784.640046pt;}
.y7f{bottom:784.804584pt;}
.y3b{bottom:784.960053pt;}
.y11{bottom:788.640046pt;}
.y1a4{bottom:789.280060pt;}
.yd3{bottom:789.283162pt;}
.y5b{bottom:789.440064pt;}
.y9c{bottom:790.084117pt;}
.yf7{bottom:792.486632pt;}
.y14a{bottom:795.840058pt;}
.y16d{bottom:802.560059pt;}
.y1ce{bottom:802.880066pt;}
.yc3{bottom:804.165791pt;}
.y12f{bottom:805.443195pt;}
.y10{bottom:806.560059pt;}
.y3a{bottom:811.840058pt;}
.yf8{bottom:812.161016pt;}
.y7e{bottom:813.759908pt;}
.ya8{bottom:816.164302pt;}
.y5a{bottom:816.320069pt;}
.yd2{bottom:816.321847pt;}
.yc2{bottom:817.441740pt;}
.y1a3{bottom:820.000061pt;}
.y149{bottom:822.560059pt;}
.yf{bottom:824.480072pt;}
.y16c{bottom:824.640046pt;}
.y130{bottom:828.641856pt;}
.y1cd{bottom:829.760071pt;}
.yf9{bottom:831.681415pt;}
.ybb{bottom:832.000766pt;}
.y1a1{bottom:838.080048pt;}
.y39{bottom:838.560059pt;}
.y16b{bottom:842.560059pt;}
.y7d{bottom:843.041189pt;}
.y59{bottom:843.200074pt;}
.ye{bottom:843.520050pt;}
.y148{bottom:849.600068pt;}
.yfa{bottom:851.201832pt;}
.y131{bottom:851.680859pt;}
.y1a0{bottom:856.000061pt;}
.y1cc{bottom:858.560059pt;}
.ybc{bottom:858.883397pt;}
.y146{bottom:864.640046pt;}
.y38{bottom:865.600068pt;}
.yd{bottom:867.360062pt;}
.y8f{bottom:868.794938pt;}
.y7c{bottom:869.920180pt;}
.y58{bottom:870.080063pt;}
.yfb{bottom:870.881925pt;}
.y132{bottom:874.885228pt;}
.y90{bottom:875.835608pt;}
.y19f{bottom:877.600052pt;}
.y145{bottom:882.560059pt;}
.ybd{bottom:885.760319pt;}
.yc{bottom:886.720063pt;}
.y1cb{bottom:888.000061pt;}
.yfc{bottom:890.402324pt;}
.y37{bottom:892.320054pt;}
.y19e{bottom:896.320054pt;}
.y7b{bottom:896.799193pt;}
.y57{bottom:896.800064pt;}
.y133{bottom:897.924213pt;}
.y144{bottom:900.480057pt;}
.yb{bottom:902.080063pt;}
.y8e{bottom:902.714512pt;}
.yfd{bottom:910.082416pt;}
.ybe{bottom:912.642932pt;}
.y1ca{bottom:914.720063pt;}
.y142{bottom:918.400055pt;}
.y36{bottom:919.360062pt;}
.ya{bottom:920.000061pt;}
.y134{bottom:921.122874pt;}
.y140{bottom:921.760056pt;}
.yd1{bottom:922.394799pt;}
.y79{bottom:923.678206pt;}
.y56{bottom:923.840058pt;}
.y7a{bottom:929.598499pt;}
.yfe{bottom:929.602833pt;}
.y141{bottom:936.320054pt;}
.y9{bottom:937.760056pt;}
.ybf{bottom:939.360179pt;}
.y13f{bottom:939.680054pt;}
.y1c9{bottom:943.520066pt;}
.y135{bottom:944.161877pt;}
.y35{bottom:946.080063pt;}
.yff{bottom:949.282908pt;}
.y78{bottom:950.557208pt;}
.y55{bottom:950.560059pt;}
.y8{bottom:955.680054pt;}
.y13e{bottom:958.240052pt;}
.y13d{bottom:958.880066pt;}
.yc0{bottom:966.242809pt;}
.y136{bottom:967.200862pt;}
.y100{bottom:968.803325pt;}
.y7{bottom:970.240052pt;}
.y34{bottom:972.960053pt;}
.y13b{bottom:973.440064pt;}
.y13a{bottom:976.800064pt;}
.y77{bottom:977.443821pt;}
.y54{bottom:977.600052pt;}
.yc1{bottom:993.119723pt;}
.y139{bottom:994.559712pt;}
.y102{bottom:996.164089pt;}
.y6{bottom:1001.760056pt;}
.y76{bottom:1004.163152pt;}
.y53{bottom:1004.320061pt;}
.y74{bottom:1036.957828pt;}
.y31{bottom:1036.960061pt;}
.h11{height:4.158711pt;}
.h1d{height:4.956355pt;}
.h2{height:4.956872pt;}
.h3c{height:14.559997pt;}
.h3f{height:14.559998pt;}
.h40{height:16.960022pt;}
.h10{height:17.154755pt;}
.h2f{height:17.274611pt;}
.h2e{height:17.279344pt;}
.h34{height:17.279968pt;}
.h38{height:17.279969pt;}
.h31{height:17.279998pt;}
.he{height:17.279999pt;}
.h32{height:17.280014pt;}
.h35{height:17.280029pt;}
.h37{height:17.280030pt;}
.h2d{height:17.284124pt;}
.h36{height:17.440002pt;}
.h39{height:17.440003pt;}
.h2c{height:17.593024pt;}
.h33{height:17.599976pt;}
.h30{height:17.599991pt;}
.h3{height:19.040039pt;}
.h13{height:30.150765pt;}
.h1f{height:34.826411pt;}
.h9{height:34.829220pt;}
.h26{height:35.933331pt;}
.h3e{height:36.481734pt;}
.h3d{height:37.643091pt;}
.h41{height:37.744078pt;}
.h2b{height:38.983793pt;}
.h29{height:41.510474pt;}
.h3b{height:41.960306pt;}
.h21{height:43.949269pt;}
.h8{height:43.953683pt;}
.h3a{height:45.474571pt;}
.h2a{height:46.465762pt;}
.h5{height:47.825297pt;}
.hc{height:49.928911pt;}
.h1b{height:50.549264pt;}
.h14{height:50.554339pt;}
.h22{height:51.340046pt;}
.hd{height:51.345202pt;}
.h6{height:51.425913pt;}
.h1e{height:51.978755pt;}
.h7{height:51.983975pt;}
.h23{height:52.606022pt;}
.h24{height:52.625142pt;}
.h25{height:53.252595pt;}
.h28{height:54.310556pt;}
.h1c{height:56.998192pt;}
.h12{height:57.004172pt;}
.h17{height:58.081418pt;}
.ha{height:58.458437pt;}
.h18{height:58.509152pt;}
.h15{height:58.509212pt;}
.h1a{height:58.509216pt;}
.h16{height:58.509272pt;}
.h19{height:58.509396pt;}
.h20{height:60.815242pt;}
.hf{height:60.821374pt;}
.h4{height:61.961004pt;}
.hb{height:67.237317pt;}
.h27{height:135.581475pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3c{width:6.400025pt;}
.w11{width:7.040008pt;}
.w1d{width:7.200012pt;}
.w5{width:7.200663pt;}
.we{width:7.836515pt;}
.w9{width:7.836561pt;}
.w7{width:7.839392pt;}
.w14{width:7.839966pt;}
.w16{width:7.839996pt;}
.w4{width:7.839997pt;}
.w2a{width:7.840011pt;}
.w18{width:7.840012pt;}
.w1f{width:7.840026pt;}
.w1b{width:7.840027pt;}
.w10{width:7.841295pt;}
.w3b{width:9.279999pt;}
.w1e{width:15.679992pt;}
.w12{width:15.680023pt;}
.w6{width:15.686396pt;}
.w22{width:19.519989pt;}
.w19{width:19.520020pt;}
.wc{width:19.526245pt;}
.w21{width:23.360015pt;}
.w15{width:23.360016pt;}
.wa{width:23.366117pt;}
.w3{width:33.119995pt;}
.w1c{width:35.039978pt;}
.w24{width:35.040039pt;}
.wf{width:35.043432pt;}
.w2f{width:43.679993pt;}
.w35{width:47.679992pt;}
.w30{width:47.680001pt;}
.w2d{width:59.199982pt;}
.w33{width:59.200012pt;}
.w2e{width:63.199981pt;}
.w28{width:63.200013pt;}
.w36{width:67.039978pt;}
.w27{width:67.040008pt;}
.wb{width:67.999716pt;}
.w17{width:68.000000pt;}
.w1a{width:70.879974pt;}
.w26{width:70.879975pt;}
.w3a{width:70.880004pt;}
.w23{width:70.880005pt;}
.wd{width:70.883432pt;}
.w2b{width:74.879975pt;}
.w8{width:78.719947pt;}
.w13{width:78.720001pt;}
.w20{width:78.720002pt;}
.w39{width:128.479995pt;}
.w34{width:128.480004pt;}
.w25{width:148.000008pt;}
.w29{width:157.599999pt;}
.w2c{width:173.440003pt;}
.w31{width:205.919991pt;}
.w37{width:205.919998pt;}
.w32{width:216.319985pt;}
.w38{width:216.319992pt;}
.w2{width:700.320008pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.xa4{left:-8.160004pt;}
.x0{left:0.000000pt;}
.x86{left:72.959999pt;}
.x1{left:93.440002pt;}
.x94{left:100.480003pt;}
.x69{left:105.120876pt;}
.xb{left:107.360001pt;}
.x7{left:111.360001pt;}
.x4a{left:113.920044pt;}
.xa0{left:116.800003pt;}
.x29{left:122.878760pt;}
.x49{left:125.764254pt;}
.x28{left:134.722980pt;}
.x17{left:137.120872pt;}
.xa1{left:140.160004pt;}
.x64{left:141.440595pt;}
.x3f{left:146.721171pt;}
.x18{left:147.838345pt;}
.x4b{left:150.239641pt;}
.x60{left:152.001730pt;}
.x7f{left:154.880005pt;}
.x2a{left:156.803293pt;}
.x3e{left:158.559674pt;}
.x56{left:161.924198pt;}
.x1f{left:167.678393pt;}
.x4c{left:170.882915pt;}
.x9b{left:172.479996pt;}
.x2b{left:174.401385pt;}
.x53{left:176.480212pt;}
.x40{left:180.160974pt;}
.x72{left:181.763392pt;}
.x63{left:183.360119pt;}
.x24{left:186.082398pt;}
.x6e{left:189.924718pt;}
.x54{left:194.722638pt;}
.x1d{left:196.959690pt;}
.x41{left:200.644577pt;}
.x96{left:203.360001pt;}
.x1e{left:207.519645pt;}
.x25{left:214.559197pt;}
.x61{left:219.200712pt;}
.x88{left:220.800003pt;}
.x85{left:222.880005pt;}
.x57{left:228.005449pt;}
.x14{left:229.281373pt;}
.x8d{left:230.399994pt;}
.x5d{left:234.563393pt;}
.x73{left:235.521436pt;}
.x1c{left:243.044039pt;}
.x90{left:245.919998pt;}
.xa{left:247.679993pt;}
.x2c{left:249.926091pt;}
.x97{left:251.039993pt;}
.x37{left:253.278585pt;}
.x8{left:257.279999pt;}
.x20{left:260.000071pt;}
.x2d{left:264.484726pt;}
.x89{left:265.920013pt;}
.x3d{left:267.679957pt;}
.x42{left:274.082144pt;}
.x43{left:291.526273pt;}
.x77{left:296.318147pt;}
.x9f{left:300.959991pt;}
.x35{left:303.364776pt;}
.x52{left:304.961520pt;}
.xf{left:306.079987pt;}
.xe{left:307.839996pt;}
.x10{left:309.920013pt;}
.x81{left:314.559998pt;}
.x67{left:316.162921pt;}
.x58{left:320.164530pt;}
.x74{left:321.282244pt;}
.x6b{left:324.806409pt;}
.x6f{left:328.646258pt;}
.x83{left:330.079987pt;}
.x78{left:331.519989pt;}
.x6d{left:332.645801pt;}
.x34{left:334.723148pt;}
.x5c{left:337.444718pt;}
.x51{left:340.482754pt;}
.x2e{left:342.883544pt;}
.x79{left:347.200012pt;}
.x21{left:349.119591pt;}
.x62{left:351.199194pt;}
.x4d{left:352.805978pt;}
.x7c{left:354.880005pt;}
.x2f{left:357.600423pt;}
.x48{left:360.002606pt;}
.x4e{left:366.884904pt;}
.x44{left:367.843626pt;}
.x9c{left:378.239990pt;}
.xc{left:380.480011pt;}
.x45{left:385.286345pt;}
.x9e{left:388.640015pt;}
.x9{left:397.119995pt;}
.x6a{left:405.283755pt;}
.x98{left:409.279999pt;}
.x80{left:410.720001pt;}
.xd{left:413.440002pt;}
.x5a{left:418.728289pt;}
.x99{left:419.679993pt;}
.xa3{left:420.799988pt;}
.x65{left:421.925293pt;}
.x91{left:423.359985pt;}
.x82{left:424.959991pt;}
.x76{left:427.684865pt;}
.x59{left:433.287637pt;}
.x30{left:436.007038pt;}
.x8a{left:438.880005pt;}
.x75{left:442.244213pt;}
.x22{left:444.798301pt;}
.x31{left:450.723221pt;}
.x46{left:461.764796pt;}
.x38{left:464.319548pt;}
.x4f{left:475.044619pt;}
.x9d{left:476.799988pt;}
.x39{left:479.046088pt;}
.x70{left:490.408865pt;}
.x26{left:493.921578pt;}
.x3a{left:495.997146pt;}
.x6c{left:498.088563pt;}
.x11{left:500.798612pt;}
.x84{left:503.679993pt;}
.x3b{left:506.566685pt;}
.x12{left:508.966596pt;}
.x9a{left:510.079987pt;}
.x7d{left:512.479980pt;}
.x7a{left:520.320007pt;}
.x5b{left:526.727654pt;}
.x5{left:529.440002pt;}
.x32{left:533.766751pt;}
.x6{left:535.840027pt;}
.x23{left:539.038324pt;}
.x66{left:540.488630pt;}
.x33{left:545.125545pt;}
.x7b{left:549.760010pt;}
.x92{left:559.200012pt;}
.x8b{left:563.200012pt;}
.x71{left:564.967672pt;}
.x50{left:569.286558pt;}
.x2{left:571.039978pt;}
.x47{left:572.005959pt;}
.x8e{left:574.880005pt;}
.x7e{left:584.799988pt;}
.x27{left:586.881944pt;}
.x4{left:594.400024pt;}
.xa2{left:597.760010pt;}
.x95{left:601.919983pt;}
.x13{left:633.605131pt;}
.x55{left:635.681896pt;}
.x68{left:641.926436pt;}
.x87{left:643.359985pt;}
.x5e{left:656.007492pt;}
.x19{left:659.199440pt;}
.x5f{left:661.282545pt;}
.x36{left:664.803981pt;}
.xa5{left:670.239990pt;}
.x1a{left:672.326909pt;}
.x1b{left:678.409853pt;}
.x15{left:683.837257pt;}
.x93{left:686.880005pt;}
.x3c{left:690.566227pt;}
.x16{left:697.129135pt;}
.x3{left:700.799988pt;}
.x8c{left:706.400024pt;}
.x8f{left:714.239990pt;}
}




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