
    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_3f72d807d5c572759668cfd1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fb8b3610a3260ddd050e2105.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.679688;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_f6ed275c915b47d3d6af7748.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.703000;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_d4cb8073f6c834b827301ebe.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_26c6f8cfe5c446281d961a50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.898000;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_fb18ae09ce193e2369ed7697.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_25e41e760b72415c5e594b12.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_940593144ffd68acbf3af0b0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d24bc15f57018ecf68bb3984.woff2')format("woff");}.ff9{font-family:ff9;line-height:3.860840;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e0a04886a03cf409d72c61d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_99e65a4ef6c1a0bbdf4d7782.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.707031;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;}
.m8{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.v11{vertical-align:-142.559943px;}
.v3{vertical-align:-131.759947px;}
.ve{vertical-align:-113.759954px;}
.v14{vertical-align:-94.319962px;}
.v6{vertical-align:-18.719993px;}
.v10{vertical-align:-12.239995px;}
.v1{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.159999px;}
.v4{vertical-align:5.759998px;}
.v12{vertical-align:18.719993px;}
.vf{vertical-align:28.079989px;}
.v13{vertical-align:29.519988px;}
.v15{vertical-align:33.119987px;}
.vb{vertical-align:38.159985px;}
.v8{vertical-align:44.639982px;}
.v7{vertical-align:50.399980px;}
.va{vertical-align:56.159978px;}
.v9{vertical-align:58.319977px;}
.vc{vertical-align:74.159970px;}
.vd{vertical-align:79.919968px;}
.v5{vertical-align:141.119944px;}
.ls2{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.011760px;}
.ls5{letter-spacing:0.031701px;}
.ls1e{letter-spacing:0.060720px;}
.lsc{letter-spacing:0.066180px;}
.ls7{letter-spacing:0.154200px;}
.ls17{letter-spacing:0.173653px;}
.ls16{letter-spacing:0.173828px;}
.lsb{letter-spacing:0.179280px;}
.lsa{letter-spacing:0.183300px;}
.ls0{letter-spacing:0.209232px;}
.ls1d{letter-spacing:0.234060px;}
.ls13{letter-spacing:0.261300px;}
.ls19{letter-spacing:0.278520px;}
.ls1{letter-spacing:0.308315px;}
.ls1a{letter-spacing:0.382860px;}
.ls10{letter-spacing:11.608855px;}
.ls6{letter-spacing:14.350434px;}
.ls9{letter-spacing:14.721714px;}
.ls12{letter-spacing:14.743434px;}
.lsd{letter-spacing:14.768754px;}
.ls14{letter-spacing:15.071814px;}
.lse{letter-spacing:15.490134px;}
.ls8{letter-spacing:17.957333px;}
.lsf{letter-spacing:18.328313px;}
.ls11{letter-spacing:27.683509px;}
.ls3{letter-spacing:37.852905px;}
.ls4{letter-spacing:59.494056px;}
.ls15{letter-spacing:115.475483px;}
.ls1b{letter-spacing:939.989624px;}
.ls1c{letter-spacing:1086.431565px;}
.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;}
}
.wsa{word-spacing:-165.089224px;}
.ws5{word-spacing:-49.613740px;}
.ws6{word-spacing:-36.131746px;}
.ws3{word-spacing:-33.119987px;}
.wsd{word-spacing:-29.121108px;}
.ws0{word-spacing:-26.999989px;}
.ws4{word-spacing:-17.999993px;}
.ws1{word-spacing:-16.559993px;}
.wse{word-spacing:-14.939994px;}
.wsb{word-spacing:-2.162073px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:16.086576px;}
.ws8{word-spacing:42.681727px;}
.ws7{word-spacing:55.666749px;}
.wsc{word-spacing:111.278749px;}
._1b{margin-left:-115.475483px;}
._1c{margin-left:-90.143513px;}
._1a{margin-left:-27.834469px;}
._20{margin-left:-22.433751px;}
._15{margin-left:-15.772420px;}
._10{margin-left:-2.140736px;}
._1{margin-left:-1.062009px;}
._0{width:1.003718px;}
._6{width:2.941197px;}
._5{width:4.234585px;}
._8{width:5.261072px;}
._9{width:7.066931px;}
._4{width:8.285031px;}
._b{width:10.054330px;}
._7{width:11.900610px;}
._a{width:13.548164px;}
._f{width:15.379089px;}
._11{width:17.776712px;}
._3{width:18.781936px;}
._2{width:20.447322px;}
._e{width:21.620895px;}
._18{width:23.345160px;}
._28{width:24.368981px;}
._23{width:25.467205px;}
._13{width:26.743614px;}
._12{width:28.093602px;}
._d{width:30.003317px;}
._c{width:31.253000px;}
._1e{width:48.700323px;}
._27{width:51.001286px;}
._21{width:55.026470px;}
._22{width:56.323589px;}
._1d{width:88.940359px;}
._19{width:93.803818px;}
._16{width:102.909266px;}
._17{width:108.952785px;}
._14{width:119.773781px;}
._1f{width:163.083600px;}
._24{width:317.621285px;}
._25{width:431.413533px;}
._26{width:461.293378px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.879984px;}
.fs6{font-size:48.239981px;}
.fs5{font-size:51.119980px;}
.fs0{font-size:53.999978px;}
.fs1{font-size:59.759976px;}
.fs8{font-size:66.239974px;}
.fs7{font-size:71.999971px;}
.fs4{font-size:77.759969px;}
.fs9{font-size:84.239966px;}
.fs3{font-size:107.999957px;}
.fs2{font-size:120.239952px;}
.yaa{bottom:-2.340285px;}
.ya8{bottom:-2.340278px;}
.ya6{bottom:-2.340264px;}
.ya4{bottom:-2.340257px;}
.y0{bottom:0.000000px;}
.y11d{bottom:4.499629px;}
.ya2{bottom:40.859751px;}
.y2{bottom:111.779955px;}
.y113{bottom:132.299947px;}
.y144{bottom:133.379947px;}
.yd1{bottom:135.179946px;}
.y164{bottom:144.179942px;}
.y32{bottom:145.619942px;}
.y176{bottom:148.319941px;}
.yea{bottom:149.219940px;}
.y112{bottom:149.579940px;}
.y143{bottom:150.479940px;}
.y73{bottom:151.739939px;}
.yd0{bottom:154.079938px;}
.y19c{bottom:154.979938px;}
.y61{bottom:156.599937px;}
.y111{bottom:163.259935px;}
.y163{bottom:163.619935px;}
.y31{bottom:163.799934px;}
.y175{bottom:165.419934px;}
.y142{bottom:167.759933px;}
.y72{bottom:167.939933px;}
.ycf{bottom:169.559932px;}
.y8c{bottom:170.639932px;}
.y19b{bottom:172.259931px;}
.yce{bottom:172.979931px;}
.y60{bottom:175.499930px;}
.y30{bottom:180.179928px;}
.ye9{bottom:181.439927px;}
.y162{bottom:182.699927px;}
.y141{bottom:185.039926px;}
.y71{bottom:186.839925px;}
.y19a{bottom:189.359924px;}
.y8b{bottom:189.719924px;}
.ycd{bottom:192.419923px;}
.y5f{bottom:194.399922px;}
.y174{bottom:196.379921px;}
.y2f{bottom:199.079920px;}
.y140{bottom:202.319919px;}
.y70{bottom:205.919918px;}
.y199{bottom:206.639917px;}
.y8a{bottom:208.619917px;}
.ycc{bottom:211.319915px;}
.y5e{bottom:214.019914px;}
.y2e{bottom:217.979913px;}
.y13f{bottom:219.779912px;}
.y198{bottom:223.919910px;}
.y6f{bottom:224.819910px;}
.y161{bottom:225.719910px;}
.y89{bottom:227.699909px;}
.ycb{bottom:230.399908px;}
.y13e{bottom:234.899906px;}
.y2d{bottom:237.059905px;}
.y5d{bottom:238.319905px;}
.y197{bottom:241.199904px;}
.y6e{bottom:243.899902px;}
.y160{bottom:244.799902px;}
.y88{bottom:246.599901px;}
.yca{bottom:249.299900px;}
.y2c{bottom:255.959898px;}
.y196{bottom:258.479897px;}
.y5c{bottom:262.439895px;}
.y6d{bottom:262.799895px;}
.y15f{bottom:263.699895px;}
.y87{bottom:265.499894px;}
.yc9{bottom:268.199893px;}
.y2b{bottom:275.039890px;}
.y195{bottom:275.759890px;}
.y6c{bottom:281.699887px;}
.y15e{bottom:282.599887px;}
.y86{bottom:284.579886px;}
.y5b{bottom:285.839886px;}
.yc8{bottom:287.279885px;}
.y194{bottom:293.219883px;}
.y2a{bottom:293.939882px;}
.y6b{bottom:300.779880px;}
.y15d{bottom:301.679879px;}
.y85{bottom:303.479879px;}
.y5a{bottom:304.919878px;}
.yc7{bottom:306.179878px;}
.y193{bottom:312.299875px;}
.y29{bottom:313.019875px;}
.y6a{bottom:319.679872px;}
.y15c{bottom:320.579872px;}
.y84{bottom:322.559871px;}
.y59{bottom:323.819870px;}
.yc6{bottom:325.259870px;}
.y28{bottom:331.919867px;}
.y192{bottom:332.819867px;}
.y69{bottom:338.399865px;}
.y15b{bottom:339.659864px;}
.y83{bottom:341.459863px;}
.y58{bottom:342.719863px;}
.yc5{bottom:344.159862px;}
.y27{bottom:350.819860px;}
.y191{bottom:351.899859px;}
.y68{bottom:355.679858px;}
.y15a{bottom:358.559857px;}
.y82{bottom:360.539856px;}
.y57{bottom:361.799855px;}
.yc4{bottom:363.239855px;}
.y67{bottom:369.359852px;}
.y26{bottom:369.899852px;}
.y190{bottom:370.799852px;}
.y159{bottom:377.459849px;}
.y81{bottom:379.439848px;}
.y56{bottom:380.699848px;}
.yc3{bottom:382.139847px;}
.y110{bottom:383.759846px;}
.y25{bottom:388.799844px;}
.y18f{bottom:389.879844px;}
.y173{bottom:393.299843px;}
.y158{bottom:396.539841px;}
.y80{bottom:398.339841px;}
.y55{bottom:399.779840px;}
.yc2{bottom:401.039840px;}
.y10f{bottom:402.659839px;}
.y24{bottom:407.879837px;}
.y18e{bottom:408.779836px;}
.y157{bottom:415.439834px;}
.y172{bottom:417.239833px;}
.y7f{bottom:417.419833px;}
.y54{bottom:418.679833px;}
.yc1{bottom:420.119832px;}
.y10e{bottom:421.739831px;}
.y23{bottom:426.779829px;}
.y18d{bottom:427.679829px;}
.y7e{bottom:436.319825px;}
.y53{bottom:437.579825px;}
.yc0{bottom:439.019824px;}
.y10d{bottom:440.639824px;}
.y155{bottom:441.719823px;}
.y171{bottom:444.959822px;}
.y22{bottom:445.679822px;}
.y18c{bottom:446.759821px;}
.y156{bottom:449.999820px;}
.y7d{bottom:455.399818px;}
.y52{bottom:456.659817px;}
.ybf{bottom:458.099817px;}
.y10c{bottom:459.719816px;}
.y170{bottom:462.959815px;}
.y21{bottom:464.759814px;}
.y18b{bottom:465.659814px;}
.y154{bottom:473.579811px;}
.y7c{bottom:474.299810px;}
.y51{bottom:475.559810px;}
.ybe{bottom:476.999809px;}
.y10b{bottom:478.619809px;}
.y16f{bottom:480.239808px;}
.y20{bottom:483.659807px;}
.y18a{bottom:484.739806px;}
.y153{bottom:492.479803px;}
.y7b{bottom:493.019803px;}
.y50{bottom:494.639802px;}
.ye8{bottom:495.899802px;}
.y10a{bottom:497.519801px;}
.y16e{bottom:497.699801px;}
.y1f{bottom:502.739799px;}
.y189{bottom:503.639799px;}
.ybd{bottom:504.719798px;}
.y7a{bottom:506.519797px;}
.y152{bottom:511.559795px;}
.y16d{bottom:512.819795px;}
.y4f{bottom:513.539795px;}
.ye7{bottom:514.979794px;}
.y109{bottom:516.599793px;}
.y1e{bottom:521.639791px;}
.ybc{bottom:522.899791px;}
.y188{bottom:523.259791px;}
.y151{bottom:530.459788px;}
.y4e{bottom:532.439787px;}
.ye6{bottom:533.879786px;}
.y108{bottom:535.499786px;}
.y13d{bottom:535.679786px;}
.y1d{bottom:540.719784px;}
.ybb{bottom:541.979783px;}
.y187{bottom:546.839781px;}
.y150{bottom:549.539780px;}
.y4d{bottom:551.519779px;}
.y13c{bottom:553.679779px;}
.y107{bottom:554.579778px;}
.y66{bottom:556.559777px;}
.y1c{bottom:561.959775px;}
.y186{bottom:565.739774px;}
.y14f{bottom:568.439773px;}
.yba{bottom:569.699772px;}
.ye5{bottom:570.059772px;}
.y4c{bottom:570.419772px;}
.y13b{bottom:571.859771px;}
.y106{bottom:573.479771px;}
.y65{bottom:575.639770px;}
.ya1{bottom:582.480000px;}
.y185{bottom:584.639766px;}
.y1b{bottom:585.179766px;}
.y14e{bottom:587.519765px;}
.yb9{bottom:587.699765px;}
.y4b{bottom:589.499764px;}
.y105{bottom:592.379763px;}
.y64{bottom:594.179762px;}
.y13a{bottom:595.439762px;}
.y1b4{bottom:597.779761px;}
.y134{bottom:598.319761px;}
.ye4{bottom:601.559759px;}
.y1a{bottom:602.459759px;}
.y184{bottom:603.719759px;}
.y14d{bottom:606.059758px;}
.y135{bottom:606.599757px;}
.y4a{bottom:608.399757px;}
.y63{bottom:611.459755px;}
.y136{bottom:612.719755px;}
.y137{bottom:614.879754px;}
.y1b3{bottom:615.059754px;}
.y133{bottom:616.319753px;}
.y139{bottom:617.399753px;}
.y19{bottom:619.739752px;}
.y138{bottom:621.899751px;}
.y183{bottom:622.619751px;}
.y62{bottom:625.139750px;}
.y49{bottom:627.479749px;}
.y1b2{bottom:632.339747px;}
.y18{bottom:637.379745px;}
.yb7{bottom:641.339743px;}
.y182{bottom:641.699743px;}
.y132{bottom:642.239743px;}
.yb8{bottom:643.319743px;}
.ya3{bottom:644.040000px;}
.y104{bottom:644.399742px;}
.yb3{bottom:646.199742px;}
.y48{bottom:646.379741px;}
.yb2{bottom:649.619740px;}
.yb5{bottom:656.819737px;}
.y17{bottom:658.439737px;}
.yb4{bottom:659.339736px;}
.y131{bottom:660.599736px;}
.y102{bottom:661.139736px;}
.ya5{bottom:662.040000px;}
.yb6{bottom:662.939735px;}
.y103{bottom:663.659735px;}
.y101{bottom:664.559734px;}
.y47{bottom:665.279734px;}
.y1b1{bottom:666.719733px;}
.ya0{bottom:673.919730px;}
.y16{bottom:678.239729px;}
.y181{bottom:679.679728px;}
.y1b0{bottom:683.999726px;}
.y46{bottom:684.359726px;}
.y130{bottom:688.319725px;}
.y15{bottom:695.519722px;}
.ya7{bottom:697.680000px;}
.y180{bottom:698.219721px;}
.yac{bottom:699.479720px;}
.y1af{bottom:701.279719px;}
.yb0{bottom:702.719719px;}
.yab{bottom:702.899719px;}
.y45{bottom:703.259719px;}
.y16c{bottom:706.859717px;}
.yb1{bottom:710.999716px;}
.y14{bottom:712.799715px;}
.y100{bottom:714.599714px;}
.ya9{bottom:715.680000px;}
.y17f{bottom:715.859714px;}
.yae{bottom:718.199713px;}
.y1ae{bottom:718.559713px;}
.yad{bottom:720.719712px;}
.y44{bottom:722.339711px;}
.yaf{bottom:724.319710px;}
.y16b{bottom:725.759710px;}
.y12e{bottom:726.839709px;}
.y13{bottom:730.079708px;}
.yfe{bottom:731.339707px;}
.y12a{bottom:732.959707px;}
.y17e{bottom:733.139707px;}
.yff{bottom:734.039706px;}
.y12f{bottom:734.399706px;}
.yfd{bottom:734.759706px;}
.y1ad{bottom:735.839706px;}
.y129{bottom:736.379705px;}
.y12c{bottom:736.919705px;}
.y79{bottom:739.979704px;}
.y43{bottom:741.239704px;}
.y12b{bottom:742.499703px;}
.y16a{bottom:744.839702px;}
.y12{bottom:747.359701px;}
.y17d{bottom:750.419700px;}
.y9f{bottom:752.399699px;}
.y1ac{bottom:752.939699px;}
.y12d{bottom:756.179698px;}
.y78{bottom:759.059696px;}
.y42{bottom:760.139696px;}
.y169{bottom:763.739695px;}
.y11{bottom:764.639694px;}
.y17c{bottom:768.419693px;}
.y1ab{bottom:770.219692px;}
.y77{bottom:777.959689px;}
.y41{bottom:779.219688px;}
.y9e{bottom:779.399688px;}
.y128{bottom:781.019688px;}
.y10{bottom:782.279687px;}
.y168{bottom:782.819687px;}
.y17b{bottom:785.699686px;}
.y126{bottom:787.139685px;}
.y1aa{bottom:787.499685px;}
.yfc{bottom:789.839684px;}
.yf9{bottom:790.919684px;}
.y127{bottom:791.819683px;}
.yf8{bottom:794.879682px;}
.y76{bottom:797.039681px;}
.y40{bottom:798.119681px;}
.yf2{bottom:799.559680px;}
.yfa{bottom:800.459680px;}
.yfb{bottom:800.639680px;}
.y167{bottom:801.539679px;}
.ye3{bottom:803.519679px;}
.y17a{bottom:803.699679px;}
.y1a9{bottom:804.779678px;}
.yf{bottom:804.959678px;}
.y121{bottom:808.919676px;}
.yf1{bottom:810.719676px;}
.y99{bottom:811.619675px;}
.y120{bottom:812.339675px;}
.y122{bottom:812.879675px;}
.y75{bottom:815.939674px;}
.yf3{bottom:816.839673px;}
.y3f{bottom:817.199673px;}
.y166{bottom:818.999672px;}
.y9d{bottom:819.899672px;}
.y9a{bottom:820.439672px;}
.yf7{bottom:820.799672px;}
.y179{bottom:820.979672px;}
.yf4{bottom:821.339671px;}
.y1a8{bottom:822.059671px;}
.ye2{bottom:822.419671px;}
.y14c{bottom:823.859670px;}
.yf5{bottom:825.299670px;}
.ye{bottom:825.659670px;}
.y9b{bottom:826.019670px;}
.y9c{bottom:826.559669px;}
.y98{bottom:829.619668px;}
.yf6{bottom:831.239668px;}
.yd{bottom:833.939666px;}
.y165{bottom:834.119666px;}
.y74{bottom:835.559666px;}
.y3e{bottom:836.099666px;}
.y125{bottom:836.819665px;}
.y178{bottom:839.339664px;}
.y14b{bottom:839.699664px;}
.ye1{bottom:841.319663px;}
.yc{bottom:846.359661px;}
.y124{bottom:847.439661px;}
.y149{bottom:847.979661px;}
.y123{bottom:849.959660px;}
.yf0{bottom:852.479659px;}
.y97{bottom:852.839659px;}
.y3d{bottom:854.999658px;}
.y177{bottom:856.439657px;}
.y14a{bottom:857.699657px;}
.ye0{bottom:860.399656px;}
.yb{bottom:867.059653px;}
.y11f{bottom:870.839652px;}
.yef{bottom:871.379651px;}
.y148{bottom:872.459651px;}
.y1a7{bottom:873.719651px;}
.y3c{bottom:874.079650px;}
.ya{bottom:875.339650px;}
.ydf{bottom:879.299648px;}
.y96{bottom:880.019648px;}
.y9{bottom:888.119645px;}
.y11e{bottom:888.839644px;}
.yee{bottom:890.459644px;}
.y1a6{bottom:890.999644px;}
.y147{bottom:891.899643px;}
.y3b{bottom:892.979643px;}
.y95{bottom:898.019641px;}
.yde{bottom:898.379641px;}
.y1a5{bottom:908.279637px;}
.yed{bottom:909.359636px;}
.y7{bottom:910.439636px;}
.y146{bottom:910.799636px;}
.y3a{bottom:912.059635px;}
.ydd{bottom:917.279633px;}
.y8{bottom:919.439632px;}
.y11c{bottom:922.500000px;}
.y11a{bottom:923.579631px;}
.y94{bottom:925.019630px;}
.y1a4{bottom:925.559630px;}
.yec{bottom:926.819629px;}
.y11b{bottom:927.539629px;}
.yeb{bottom:930.239628px;}
.y145{bottom:930.419628px;}
.y39{bottom:930.959628px;}
.y6{bottom:935.279626px;}
.ydc{bottom:936.179626px;}
.y1a3{bottom:942.839623px;}
.y90{bottom:948.059621px;}
.y38{bottom:949.859620px;}
.y93{bottom:952.379619px;}
.ydb{bottom:955.259618px;}
.y119{bottom:955.439618px;}
.y8e{bottom:956.339617px;}
.y91{bottom:956.879617px;}
.y1a2{bottom:959.939616px;}
.y92{bottom:962.999615px;}
.y8f{bottom:966.059614px;}
.y5{bottom:966.419613px;}
.y37{bottom:968.939612px;}
.yda{bottom:970.379612px;}
.y118{bottom:973.439611px;}
.y1a1{bottom:977.219609px;}
.yd7{bottom:978.659609px;}
.yd9{bottom:986.939605px;}
.y36{bottom:987.839605px;}
.y8d{bottom:988.559605px;}
.yd8{bottom:989.459604px;}
.y117{bottom:991.439603px;}
.y1a0{bottom:994.499602px;}
.y4{bottom:1000.259600px;}
.yd6{bottom:1002.599599px;}
.yd5{bottom:1006.019598px;}
.y35{bottom:1006.919597px;}
.y116{bottom:1009.439596px;}
.y19f{bottom:1011.779595px;}
.yd4{bottom:1025.459590px;}
.y34{bottom:1025.819590px;}
.y115{bottom:1027.439589px;}
.y19e{bottom:1029.059588px;}
.y3{bottom:1033.919586px;}
.yd3{bottom:1040.939584px;}
.yd2{bottom:1044.359582px;}
.y33{bottom:1044.719582px;}
.y114{bottom:1045.439582px;}
.y19d{bottom:1046.159582px;}
.y1{bottom:1074.419570px;}
.h17{height:18.000000px;}
.h26{height:20.340000px;}
.h7{height:33.189107px;}
.h6{height:35.170546px;}
.h18{height:35.640000px;}
.h1{height:37.151985px;}
.hb{height:40.816064px;}
.h2{height:41.114864px;}
.h2c{height:41.353903px;}
.hf{height:44.149201px;}
.h11{height:45.241902px;}
.he{height:45.573102px;}
.h14{height:45.838062px;}
.h27{height:45.928107px;}
.h10{height:47.868731px;}
.ha{height:49.319980px;}
.h19{height:49.320000px;}
.h8{height:49.535980px;}
.hd{height:49.823980px;}
.h9{height:53.265579px;}
.h5{height:53.498859px;}
.hc{height:58.294057px;}
.h2b{height:59.435132px;}
.h16{height:61.560000px;}
.h4{height:71.982393px;}
.h3{height:80.140398px;}
.h1b{height:88.979730px;}
.h13{height:110.400776px;}
.h1c{height:112.560775px;}
.h2a{height:118.499718px;}
.h29{height:129.120769px;}
.h28{height:138.480765px;}
.h22{height:148.560761px;}
.h12{height:151.595096px;}
.h1a{height:153.035095px;}
.h15{height:153.755095px;}
.h1d{height:157.355093px;}
.h20{height:196.235078px;}
.h1f{height:201.995075px;}
.h21{height:209.915072px;}
.h23{height:225.755066px;}
.h24{height:231.515064px;}
.h25{height:232.235063px;}
.h1e{height:292.715039px;}
.h0{height:1188.000000px;}
.w1{width:11.340000px;}
.w2{width:70.740000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x31{left:122.579951px;}
.x1a{left:128.339949px;}
.x2{left:129.599948px;}
.x1{left:132.299947px;}
.x47{left:138.959914px;}
.x1b{left:141.299943px;}
.x4d{left:145.259942px;}
.x28{left:148.679941px;}
.x3c{left:149.940329px;}
.x4{left:151.739753px;}
.x1f{left:154.440013px;}
.x4e{left:156.059938px;}
.x1c{left:157.679937px;}
.x49{left:160.380071px;}
.x21{left:162.179935px;}
.x29{left:163.799934px;}
.x5{left:170.279932px;}
.x20{left:181.440002px;}
.x4a{left:190.619924px;}
.xa{left:196.379921px;}
.x4b{left:200.339920px;}
.x2d{left:203.939918px;}
.x48{left:205.919918px;}
.x17{left:213.299923px;}
.xb{left:214.919914px;}
.x7d{left:232.559907px;}
.x82{left:238.139905px;}
.x66{left:241.019904px;}
.x7e{left:243.179903px;}
.x67{left:248.759900px;}
.x7f{left:255.059898px;}
.x18{left:265.859894px;}
.x19{left:271.979891px;}
.x8f{left:273.599891px;}
.x3d{left:276.839440px;}
.x6a{left:278.639889px;}
.x10{left:286.379885px;}
.x71{left:293.399883px;}
.x8d{left:295.019882px;}
.x83{left:297.179881px;}
.x22{left:304.019878px;}
.x15{left:314.099874px;}
.x89{left:317.339873px;}
.x16{left:320.219872px;}
.x23{left:322.199871px;}
.x4f{left:323.819870px;}
.x87{left:325.619870px;}
.x88{left:327.779567px;}
.x80{left:331.559867px;}
.x5f{left:333.720031px;}
.x3e{left:343.260000px;}
.x32{left:350.459845px;}
.x65{left:354.239858px;}
.x2b{left:355.499858px;}
.x44{left:357.839857px;}
.x62{left:360.899856px;}
.x77{left:362.339855px;}
.x6f{left:365.759854px;}
.x39{left:368.639854px;}
.x3f{left:369.719852px;}
.x2f{left:373.139851px;}
.x86{left:374.939850px;}
.x30{left:377.100059px;}
.x38{left:378.719849px;}
.x40{left:381.059848px;}
.x6{left:383.039847px;}
.x45{left:384.479846px;}
.x78{left:386.639844px;}
.x6d{left:387.719845px;}
.xc{left:393.479843px;}
.x60{left:397.079841px;}
.x33{left:398.879842px;}
.x6b{left:399.959840px;}
.x53{left:401.219840px;}
.x6c{left:404.279838px;}
.x8a{left:405.359758px;}
.x7{left:410.399836px;}
.xd{left:412.919835px;}
.x73{left:414.719834px;}
.x41{left:417.419833px;}
.x74{left:418.859824px;}
.x11{left:420.479832px;}
.x6e{left:421.919831px;}
.x42{left:423.899830px;}
.x12{left:426.959829px;}
.x75{left:430.739828px;}
.x34{left:431.819827px;}
.x7a{left:436.679825px;}
.x76{left:438.479824px;}
.x8e{left:440.279797px;}
.x36{left:443.519875px;}
.x7b{left:446.579821px;}
.x3b{left:448.559858px;}
.x3{left:452.339819px;}
.x5d{left:458.999816px;}
.x58{left:465.839814px;}
.x24{left:467.639813px;}
.x63{left:471.779766px;}
.x35{left:481.499807px;}
.x51{left:485.999806px;}
.x25{left:488.159805px;}
.x61{left:489.599759px;}
.x46{left:492.119803px;}
.xe{left:493.919802px;}
.x43{left:497.879801px;}
.x59{left:501.479799px;}
.x68{left:506.699797px;}
.x5a{left:509.399796px;}
.x54{left:516.419793px;}
.xf{left:522.539791px;}
.x55{left:524.159790px;}
.x7c{left:528.479789px;}
.x72{left:532.979787px;}
.x8c{left:536.939644px;}
.x8b{left:542.519648px;}
.x37{left:550.979780px;}
.x26{left:553.139779px;}
.x3a{left:563.759774px;}
.x27{left:571.139772px;}
.x5b{left:572.399771px;}
.x56{left:573.659771px;}
.x4c{left:577.619769px;}
.x5c{left:580.319768px;}
.x57{left:581.579767px;}
.x50{left:593.999747px;}
.x52{left:598.859760px;}
.x2c{left:605.340506px;}
.x2a{left:606.419937px;}
.x13{left:611.459755px;}
.x2e{left:614.339575px;}
.x14{left:618.119753px;}
.x5e{left:620.819752px;}
.x8{left:635.219746px;}
.x70{left:638.459745px;}
.x64{left:641.339773px;}
.x85{left:642.419923px;}
.x9{left:658.619737px;}
.x79{left:662.759735px;}
.x81{left:757.259697px;}
.x84{left:761.399695px;}
.x1d{left:768.779692px;}
.x1e{left:776.339689px;}
.x69{left:847.260000px;}
@media print{
.v11{vertical-align:-126.719949pt;}
.v3{vertical-align:-117.119953pt;}
.ve{vertical-align:-101.119960pt;}
.v14{vertical-align:-83.839966pt;}
.v6{vertical-align:-16.639993pt;}
.v10{vertical-align:-10.879996pt;}
.v1{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.919999pt;}
.v4{vertical-align:5.119998pt;}
.v12{vertical-align:16.639993pt;}
.vf{vertical-align:24.959990pt;}
.v13{vertical-align:26.239990pt;}
.v15{vertical-align:29.439988pt;}
.vb{vertical-align:33.919986pt;}
.v8{vertical-align:39.679984pt;}
.v7{vertical-align:44.799982pt;}
.va{vertical-align:49.919980pt;}
.v9{vertical-align:51.839979pt;}
.vc{vertical-align:65.919974pt;}
.vd{vertical-align:71.039972pt;}
.v5{vertical-align:125.439950pt;}
.ls2{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.010453pt;}
.ls5{letter-spacing:0.028179pt;}
.ls1e{letter-spacing:0.053973pt;}
.lsc{letter-spacing:0.058827pt;}
.ls7{letter-spacing:0.137067pt;}
.ls17{letter-spacing:0.154358pt;}
.ls16{letter-spacing:0.154514pt;}
.lsb{letter-spacing:0.159360pt;}
.lsa{letter-spacing:0.162933pt;}
.ls0{letter-spacing:0.185984pt;}
.ls1d{letter-spacing:0.208053pt;}
.ls13{letter-spacing:0.232267pt;}
.ls19{letter-spacing:0.247573pt;}
.ls1{letter-spacing:0.274057pt;}
.ls1a{letter-spacing:0.340320pt;}
.ls10{letter-spacing:10.318983pt;}
.ls6{letter-spacing:12.755942pt;}
.ls9{letter-spacing:13.085968pt;}
.ls12{letter-spacing:13.105275pt;}
.lsd{letter-spacing:13.127781pt;}
.ls14{letter-spacing:13.397168pt;}
.lse{letter-spacing:13.769008pt;}
.ls8{letter-spacing:15.962074pt;}
.lsf{letter-spacing:16.291833pt;}
.ls11{letter-spacing:24.607563pt;}
.ls3{letter-spacing:33.647027pt;}
.ls4{letter-spacing:52.883606pt;}
.ls15{letter-spacing:102.644874pt;}
.ls1b{letter-spacing:835.546332pt;}
.ls1c{letter-spacing:965.716947pt;}
.wsa{word-spacing:-146.745977pt;}
.ws5{word-spacing:-44.101102pt;}
.ws6{word-spacing:-32.117107pt;}
.ws3{word-spacing:-29.439988pt;}
.wsd{word-spacing:-25.885430pt;}
.ws0{word-spacing:-23.999990pt;}
.ws4{word-spacing:-15.999994pt;}
.ws1{word-spacing:-14.719994pt;}
.wse{word-spacing:-13.279995pt;}
.wsb{word-spacing:-1.921842pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:14.299179pt;}
.ws8{word-spacing:37.939313pt;}
.ws7{word-spacing:49.481555pt;}
.wsc{word-spacing:98.914444pt;}
._1b{margin-left:-102.644874pt;}
._1c{margin-left:-80.127567pt;}
._1a{margin-left:-24.741750pt;}
._20{margin-left:-19.941112pt;}
._15{margin-left:-14.019929pt;}
._10{margin-left:-1.902877pt;}
._1{margin-left:-0.944008pt;}
._0{width:0.892193pt;}
._6{width:2.614398pt;}
._5{width:3.764076pt;}
._8{width:4.676508pt;}
._9{width:6.281717pt;}
._4{width:7.364472pt;}
._b{width:8.937182pt;}
._7{width:10.578320pt;}
._a{width:12.042812pt;}
._f{width:13.670302pt;}
._11{width:15.801522pt;}
._3{width:16.695055pt;}
._2{width:18.175397pt;}
._e{width:19.218574pt;}
._18{width:20.751254pt;}
._28{width:21.661317pt;}
._23{width:22.637515pt;}
._13{width:23.772102pt;}
._12{width:24.972091pt;}
._d{width:26.669615pt;}
._c{width:27.780444pt;}
._1e{width:43.289176pt;}
._27{width:45.334476pt;}
._21{width:48.912418pt;}
._22{width:50.065412pt;}
._1d{width:79.058097pt;}
._19{width:83.381172pt;}
._16{width:91.474903pt;}
._17{width:96.846920pt;}
._14{width:106.465583pt;}
._1f{width:144.963200pt;}
._24{width:282.330031pt;}
._25{width:383.478696pt;}
._26{width:410.038559pt;}
.fsa{font-size:34.559986pt;}
.fs6{font-size:42.879983pt;}
.fs5{font-size:45.439982pt;}
.fs0{font-size:47.999981pt;}
.fs1{font-size:53.119979pt;}
.fs8{font-size:58.879976pt;}
.fs7{font-size:63.999974pt;}
.fs4{font-size:69.119972pt;}
.fs9{font-size:74.879970pt;}
.fs3{font-size:95.999962pt;}
.fs2{font-size:106.879957pt;}
.yaa{bottom:-2.080254pt;}
.ya8{bottom:-2.080247pt;}
.ya6{bottom:-2.080235pt;}
.ya4{bottom:-2.080228pt;}
.y0{bottom:0.000000pt;}
.y11d{bottom:3.999670pt;}
.ya2{bottom:36.319778pt;}
.y2{bottom:99.359960pt;}
.y113{bottom:117.599953pt;}
.y144{bottom:118.559953pt;}
.yd1{bottom:120.159952pt;}
.y164{bottom:128.159949pt;}
.y32{bottom:129.439948pt;}
.y176{bottom:131.839947pt;}
.yea{bottom:132.639947pt;}
.y112{bottom:132.959947pt;}
.y143{bottom:133.759946pt;}
.y73{bottom:134.879946pt;}
.yd0{bottom:136.959945pt;}
.y19c{bottom:137.759945pt;}
.y61{bottom:139.199944pt;}
.y111{bottom:145.119942pt;}
.y163{bottom:145.439942pt;}
.y31{bottom:145.599942pt;}
.y175{bottom:147.039941pt;}
.y142{bottom:149.119940pt;}
.y72{bottom:149.279940pt;}
.ycf{bottom:150.719940pt;}
.y8c{bottom:151.679939pt;}
.y19b{bottom:153.119939pt;}
.yce{bottom:153.759938pt;}
.y60{bottom:155.999938pt;}
.y30{bottom:160.159936pt;}
.ye9{bottom:161.279935pt;}
.y162{bottom:162.399935pt;}
.y141{bottom:164.479934pt;}
.y71{bottom:166.079934pt;}
.y19a{bottom:168.319933pt;}
.y8b{bottom:168.639933pt;}
.ycd{bottom:171.039932pt;}
.y5f{bottom:172.799931pt;}
.y174{bottom:174.559930pt;}
.y2f{bottom:176.959929pt;}
.y140{bottom:179.839928pt;}
.y70{bottom:183.039927pt;}
.y199{bottom:183.679927pt;}
.y8a{bottom:185.439926pt;}
.ycc{bottom:187.839925pt;}
.y5e{bottom:190.239924pt;}
.y2e{bottom:193.759922pt;}
.y13f{bottom:195.359922pt;}
.y198{bottom:199.039920pt;}
.y6f{bottom:199.839920pt;}
.y161{bottom:200.639920pt;}
.y89{bottom:202.399919pt;}
.ycb{bottom:204.799918pt;}
.y13e{bottom:208.799916pt;}
.y2d{bottom:210.719916pt;}
.y5d{bottom:211.839915pt;}
.y197{bottom:214.399914pt;}
.y6e{bottom:216.799913pt;}
.y160{bottom:217.599913pt;}
.y88{bottom:219.199912pt;}
.yca{bottom:221.599911pt;}
.y2c{bottom:227.519909pt;}
.y196{bottom:229.759908pt;}
.y5c{bottom:233.279907pt;}
.y6d{bottom:233.599907pt;}
.y15f{bottom:234.399906pt;}
.y87{bottom:235.999906pt;}
.yc9{bottom:238.399905pt;}
.y2b{bottom:244.479902pt;}
.y195{bottom:245.119902pt;}
.y6c{bottom:250.399900pt;}
.y15e{bottom:251.199900pt;}
.y86{bottom:252.959899pt;}
.y5b{bottom:254.079898pt;}
.yc8{bottom:255.359898pt;}
.y194{bottom:260.639896pt;}
.y2a{bottom:261.279895pt;}
.y6b{bottom:267.359893pt;}
.y15d{bottom:268.159893pt;}
.y85{bottom:269.759892pt;}
.y5a{bottom:271.039892pt;}
.yc7{bottom:272.159891pt;}
.y193{bottom:277.599889pt;}
.y29{bottom:278.239889pt;}
.y6a{bottom:284.159886pt;}
.y15c{bottom:284.959886pt;}
.y84{bottom:286.719885pt;}
.y59{bottom:287.839885pt;}
.yc6{bottom:289.119884pt;}
.y28{bottom:295.039882pt;}
.y192{bottom:295.839882pt;}
.y69{bottom:300.799880pt;}
.y15b{bottom:301.919879pt;}
.y83{bottom:303.519879pt;}
.y58{bottom:304.639878pt;}
.yc5{bottom:305.919878pt;}
.y27{bottom:311.839875pt;}
.y191{bottom:312.799875pt;}
.y68{bottom:316.159874pt;}
.y15a{bottom:318.719873pt;}
.y82{bottom:320.479872pt;}
.y57{bottom:321.599871pt;}
.yc4{bottom:322.879871pt;}
.y67{bottom:328.319869pt;}
.y26{bottom:328.799868pt;}
.y190{bottom:329.599868pt;}
.y159{bottom:335.519866pt;}
.y81{bottom:337.279865pt;}
.y56{bottom:338.399865pt;}
.yc3{bottom:339.679864pt;}
.y110{bottom:341.119864pt;}
.y25{bottom:345.599862pt;}
.y18f{bottom:346.559861pt;}
.y173{bottom:349.599860pt;}
.y158{bottom:352.479859pt;}
.y80{bottom:354.079858pt;}
.y55{bottom:355.359858pt;}
.yc2{bottom:356.479857pt;}
.y10f{bottom:357.919857pt;}
.y24{bottom:362.559855pt;}
.y18e{bottom:363.359855pt;}
.y157{bottom:369.279852pt;}
.y172{bottom:370.879852pt;}
.y7f{bottom:371.039852pt;}
.y54{bottom:372.159851pt;}
.yc1{bottom:373.439851pt;}
.y10e{bottom:374.879850pt;}
.y23{bottom:379.359848pt;}
.y18d{bottom:380.159848pt;}
.y7e{bottom:387.839845pt;}
.y53{bottom:388.959844pt;}
.yc0{bottom:390.239844pt;}
.y10d{bottom:391.679843pt;}
.y155{bottom:392.639843pt;}
.y171{bottom:395.519842pt;}
.y22{bottom:396.159842pt;}
.y18c{bottom:397.119841pt;}
.y156{bottom:399.999840pt;}
.y7d{bottom:404.799838pt;}
.y52{bottom:405.919838pt;}
.ybf{bottom:407.199837pt;}
.y10c{bottom:408.639837pt;}
.y170{bottom:411.519835pt;}
.y21{bottom:413.119835pt;}
.y18b{bottom:413.919834pt;}
.y154{bottom:420.959832pt;}
.y7c{bottom:421.599831pt;}
.y51{bottom:422.719831pt;}
.ybe{bottom:423.999830pt;}
.y10b{bottom:425.439830pt;}
.y16f{bottom:426.879829pt;}
.y20{bottom:429.919828pt;}
.y18a{bottom:430.879828pt;}
.y153{bottom:437.759825pt;}
.y7b{bottom:438.239825pt;}
.y50{bottom:439.679824pt;}
.ye8{bottom:440.799824pt;}
.y10a{bottom:442.239823pt;}
.y16e{bottom:442.399823pt;}
.y1f{bottom:446.879821pt;}
.y189{bottom:447.679821pt;}
.ybd{bottom:448.639821pt;}
.y7a{bottom:450.239820pt;}
.y152{bottom:454.719818pt;}
.y16d{bottom:455.839818pt;}
.y4f{bottom:456.479817pt;}
.ye7{bottom:457.759817pt;}
.y109{bottom:459.199816pt;}
.y1e{bottom:463.679815pt;}
.ybc{bottom:464.799814pt;}
.y188{bottom:465.119814pt;}
.y151{bottom:471.519811pt;}
.y4e{bottom:473.279811pt;}
.ye6{bottom:474.559810pt;}
.y108{bottom:475.999810pt;}
.y13d{bottom:476.159810pt;}
.y1d{bottom:480.639808pt;}
.ybb{bottom:481.759807pt;}
.y187{bottom:486.079806pt;}
.y150{bottom:488.479805pt;}
.y4d{bottom:490.239804pt;}
.y13c{bottom:492.159803pt;}
.y107{bottom:492.959803pt;}
.y66{bottom:494.719802pt;}
.y1c{bottom:499.519800pt;}
.y186{bottom:502.879799pt;}
.y14f{bottom:505.279798pt;}
.yba{bottom:506.399797pt;}
.ye5{bottom:506.719797pt;}
.y4c{bottom:507.039797pt;}
.y13b{bottom:508.319797pt;}
.y106{bottom:509.759796pt;}
.y65{bottom:511.679795pt;}
.ya1{bottom:517.760000pt;}
.y185{bottom:519.679792pt;}
.y1b{bottom:520.159792pt;}
.y14e{bottom:522.239791pt;}
.yb9{bottom:522.399791pt;}
.y4b{bottom:523.999790pt;}
.y105{bottom:526.559789pt;}
.y64{bottom:528.159789pt;}
.y13a{bottom:529.279788pt;}
.y1b4{bottom:531.359787pt;}
.y134{bottom:531.839787pt;}
.ye4{bottom:534.719786pt;}
.y1a{bottom:535.519786pt;}
.y184{bottom:536.639785pt;}
.y14d{bottom:538.719785pt;}
.y135{bottom:539.199784pt;}
.y4a{bottom:540.799784pt;}
.y63{bottom:543.519783pt;}
.y136{bottom:544.639782pt;}
.y137{bottom:546.559781pt;}
.y1b3{bottom:546.719781pt;}
.y133{bottom:547.839781pt;}
.y139{bottom:548.799780pt;}
.y19{bottom:550.879780pt;}
.y138{bottom:552.799779pt;}
.y183{bottom:553.439779pt;}
.y62{bottom:555.679778pt;}
.y49{bottom:557.759777pt;}
.y1b2{bottom:562.079775pt;}
.y18{bottom:566.559773pt;}
.yb7{bottom:570.079772pt;}
.y182{bottom:570.399772pt;}
.y132{bottom:570.879772pt;}
.yb8{bottom:571.839771pt;}
.ya3{bottom:572.480000pt;}
.y104{bottom:572.799771pt;}
.yb3{bottom:574.399770pt;}
.y48{bottom:574.559770pt;}
.yb2{bottom:577.439769pt;}
.yb5{bottom:583.839766pt;}
.y17{bottom:585.279766pt;}
.yb4{bottom:586.079766pt;}
.y131{bottom:587.199765pt;}
.y102{bottom:587.679765pt;}
.ya5{bottom:588.480000pt;}
.yb6{bottom:589.279764pt;}
.y103{bottom:589.919764pt;}
.y101{bottom:590.719764pt;}
.y47{bottom:591.359763pt;}
.y1b1{bottom:592.639763pt;}
.ya0{bottom:599.039760pt;}
.y16{bottom:602.879759pt;}
.y181{bottom:604.159758pt;}
.y1b0{bottom:607.999757pt;}
.y46{bottom:608.319757pt;}
.y130{bottom:611.839755pt;}
.y15{bottom:618.239753pt;}
.ya7{bottom:620.160000pt;}
.y180{bottom:620.639752pt;}
.yac{bottom:621.759751pt;}
.y1af{bottom:623.359751pt;}
.yb0{bottom:624.639750pt;}
.yab{bottom:624.799750pt;}
.y45{bottom:625.119750pt;}
.y16c{bottom:628.319749pt;}
.yb1{bottom:631.999747pt;}
.y14{bottom:633.599747pt;}
.y100{bottom:635.199746pt;}
.ya9{bottom:636.160000pt;}
.y17f{bottom:636.319745pt;}
.yae{bottom:638.399745pt;}
.y1ae{bottom:638.719745pt;}
.yad{bottom:640.639744pt;}
.y44{bottom:642.079743pt;}
.yaf{bottom:643.839742pt;}
.y16b{bottom:645.119742pt;}
.y12e{bottom:646.079742pt;}
.y13{bottom:648.959740pt;}
.yfe{bottom:650.079740pt;}
.y12a{bottom:651.519739pt;}
.y17e{bottom:651.679739pt;}
.yff{bottom:652.479739pt;}
.y12f{bottom:652.799739pt;}
.yfd{bottom:653.119739pt;}
.y1ad{bottom:654.079738pt;}
.y129{bottom:654.559738pt;}
.y12c{bottom:655.039738pt;}
.y79{bottom:657.759737pt;}
.y43{bottom:658.879736pt;}
.y12b{bottom:659.999736pt;}
.y16a{bottom:662.079735pt;}
.y12{bottom:664.319734pt;}
.y17d{bottom:667.039733pt;}
.y9f{bottom:668.799732pt;}
.y1ac{bottom:669.279732pt;}
.y12d{bottom:672.159731pt;}
.y78{bottom:674.719730pt;}
.y42{bottom:675.679730pt;}
.y169{bottom:678.879728pt;}
.y11{bottom:679.679728pt;}
.y17c{bottom:683.039727pt;}
.y1ab{bottom:684.639726pt;}
.y77{bottom:691.519723pt;}
.y41{bottom:692.639723pt;}
.y9e{bottom:692.799723pt;}
.y128{bottom:694.239722pt;}
.y10{bottom:695.359722pt;}
.y168{bottom:695.839722pt;}
.y17b{bottom:698.399721pt;}
.y126{bottom:699.679720pt;}
.y1aa{bottom:699.999720pt;}
.yfc{bottom:702.079719pt;}
.yf9{bottom:703.039719pt;}
.y127{bottom:703.839718pt;}
.yf8{bottom:706.559717pt;}
.y76{bottom:708.479717pt;}
.y40{bottom:709.439716pt;}
.yf2{bottom:710.719716pt;}
.yfa{bottom:711.519715pt;}
.yfb{bottom:711.679715pt;}
.y167{bottom:712.479715pt;}
.ye3{bottom:714.239714pt;}
.y17a{bottom:714.399714pt;}
.y1a9{bottom:715.359714pt;}
.yf{bottom:715.519714pt;}
.y121{bottom:719.039712pt;}
.yf1{bottom:720.639712pt;}
.y99{bottom:721.439711pt;}
.y120{bottom:722.079711pt;}
.y122{bottom:722.559711pt;}
.y75{bottom:725.279710pt;}
.yf3{bottom:726.079710pt;}
.y3f{bottom:726.399709pt;}
.y166{bottom:727.999709pt;}
.y9d{bottom:728.799708pt;}
.y9a{bottom:729.279708pt;}
.yf7{bottom:729.599708pt;}
.y179{bottom:729.759708pt;}
.yf4{bottom:730.079708pt;}
.y1a8{bottom:730.719708pt;}
.ye2{bottom:731.039708pt;}
.y14c{bottom:732.319707pt;}
.yf5{bottom:733.599707pt;}
.ye{bottom:733.919706pt;}
.y9b{bottom:734.239706pt;}
.y9c{bottom:734.719706pt;}
.y98{bottom:737.439705pt;}
.yf6{bottom:738.879704pt;}
.yd{bottom:741.279703pt;}
.y165{bottom:741.439703pt;}
.y74{bottom:742.719703pt;}
.y3e{bottom:743.199703pt;}
.y125{bottom:743.839702pt;}
.y178{bottom:746.079702pt;}
.y14b{bottom:746.399701pt;}
.ye1{bottom:747.839701pt;}
.yc{bottom:752.319699pt;}
.y124{bottom:753.279699pt;}
.y149{bottom:753.759698pt;}
.y123{bottom:755.519698pt;}
.yf0{bottom:757.759697pt;}
.y97{bottom:758.079697pt;}
.y3d{bottom:759.999696pt;}
.y177{bottom:761.279695pt;}
.y14a{bottom:762.399695pt;}
.ye0{bottom:764.799694pt;}
.yb{bottom:770.719692pt;}
.y11f{bottom:774.079690pt;}
.yef{bottom:774.559690pt;}
.y148{bottom:775.519690pt;}
.y1a7{bottom:776.639689pt;}
.y3c{bottom:776.959689pt;}
.ya{bottom:778.079689pt;}
.ydf{bottom:781.599687pt;}
.y96{bottom:782.239687pt;}
.y9{bottom:789.439684pt;}
.y11e{bottom:790.079684pt;}
.yee{bottom:791.519683pt;}
.y1a6{bottom:791.999683pt;}
.y147{bottom:792.799683pt;}
.y3b{bottom:793.759682pt;}
.y95{bottom:798.239681pt;}
.yde{bottom:798.559681pt;}
.y1a5{bottom:807.359677pt;}
.yed{bottom:808.319677pt;}
.y7{bottom:809.279676pt;}
.y146{bottom:809.599676pt;}
.y3a{bottom:810.719676pt;}
.ydd{bottom:815.359674pt;}
.y8{bottom:817.279673pt;}
.y11c{bottom:820.000000pt;}
.y11a{bottom:820.959672pt;}
.y94{bottom:822.239671pt;}
.y1a4{bottom:822.719671pt;}
.yec{bottom:823.839670pt;}
.y11b{bottom:824.479670pt;}
.yeb{bottom:826.879669pt;}
.y145{bottom:827.039669pt;}
.y39{bottom:827.519669pt;}
.y6{bottom:831.359667pt;}
.ydc{bottom:832.159667pt;}
.y1a3{bottom:838.079665pt;}
.y90{bottom:842.719663pt;}
.y38{bottom:844.319662pt;}
.y93{bottom:846.559661pt;}
.ydb{bottom:849.119660pt;}
.y119{bottom:849.279660pt;}
.y8e{bottom:850.079660pt;}
.y91{bottom:850.559660pt;}
.y1a2{bottom:853.279659pt;}
.y92{bottom:855.999658pt;}
.y8f{bottom:858.719657pt;}
.y5{bottom:859.039656pt;}
.y37{bottom:861.279655pt;}
.yda{bottom:862.559655pt;}
.y118{bottom:865.279654pt;}
.y1a1{bottom:868.639653pt;}
.yd7{bottom:869.919652pt;}
.yd9{bottom:877.279649pt;}
.y36{bottom:878.079649pt;}
.y8d{bottom:878.719649pt;}
.yd8{bottom:879.519648pt;}
.y117{bottom:881.279647pt;}
.y1a0{bottom:883.999646pt;}
.y4{bottom:889.119644pt;}
.yd6{bottom:891.199644pt;}
.yd5{bottom:894.239642pt;}
.y35{bottom:895.039642pt;}
.y116{bottom:897.279641pt;}
.y19f{bottom:899.359640pt;}
.yd4{bottom:911.519635pt;}
.y34{bottom:911.839635pt;}
.y115{bottom:913.279635pt;}
.y19e{bottom:914.719634pt;}
.y3{bottom:919.039632pt;}
.yd3{bottom:925.279630pt;}
.yd2{bottom:928.319629pt;}
.y33{bottom:928.639629pt;}
.y114{bottom:929.279628pt;}
.y19d{bottom:929.919628pt;}
.y1{bottom:955.039618pt;}
.h17{height:16.000000pt;}
.h26{height:18.080000pt;}
.h7{height:29.501428pt;}
.h6{height:31.262707pt;}
.h18{height:31.680000pt;}
.h1{height:33.023987pt;}
.hb{height:36.280945pt;}
.h2{height:36.546545pt;}
.h2c{height:36.759025pt;}
.hf{height:39.243734pt;}
.h11{height:40.215024pt;}
.he{height:40.509424pt;}
.h14{height:40.744944pt;}
.h27{height:40.824984pt;}
.h10{height:42.549983pt;}
.ha{height:43.839982pt;}
.h19{height:43.840000pt;}
.h8{height:44.031982pt;}
.hd{height:44.287982pt;}
.h9{height:47.347181pt;}
.h5{height:47.554541pt;}
.hc{height:51.816939pt;}
.h2b{height:52.831229pt;}
.h16{height:54.720000pt;}
.h4{height:63.984349pt;}
.h3{height:71.235909pt;}
.h1b{height:79.093093pt;}
.h13{height:98.134023pt;}
.h1c{height:100.054022pt;}
.h2a{height:105.333083pt;}
.h29{height:114.774017pt;}
.h28{height:123.094013pt;}
.h22{height:132.054010pt;}
.h12{height:134.751196pt;}
.h1a{height:136.031196pt;}
.h15{height:136.671195pt;}
.h1d{height:139.871194pt;}
.h20{height:174.431180pt;}
.h1f{height:179.551178pt;}
.h21{height:186.591175pt;}
.h23{height:200.671170pt;}
.h24{height:205.791168pt;}
.h25{height:206.431167pt;}
.h1e{height:260.191146pt;}
.h0{height:1056.000000pt;}
.w1{width:10.080000pt;}
.w2{width:62.880000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x31{left:108.959956pt;}
.x1a{left:114.079954pt;}
.x2{left:115.199954pt;}
.x1{left:117.599953pt;}
.x47{left:123.519924pt;}
.x1b{left:125.599950pt;}
.x4d{left:129.119948pt;}
.x28{left:132.159947pt;}
.x3c{left:133.280293pt;}
.x4{left:134.879780pt;}
.x1f{left:137.280012pt;}
.x4e{left:138.719945pt;}
.x1c{left:140.159944pt;}
.x49{left:142.560063pt;}
.x21{left:144.159942pt;}
.x29{left:145.599942pt;}
.x5{left:151.359939pt;}
.x20{left:161.280002pt;}
.x4a{left:169.439932pt;}
.xa{left:174.559930pt;}
.x4b{left:178.079929pt;}
.x2d{left:181.279927pt;}
.x48{left:183.039927pt;}
.x17{left:189.599931pt;}
.xb{left:191.039924pt;}
.x7d{left:206.719917pt;}
.x82{left:211.679915pt;}
.x66{left:214.239914pt;}
.x7e{left:216.159914pt;}
.x67{left:221.119912pt;}
.x7f{left:226.719909pt;}
.x18{left:236.319905pt;}
.x19{left:241.759903pt;}
.x8f{left:243.199903pt;}
.x3d{left:246.079502pt;}
.x6a{left:247.679901pt;}
.x10{left:254.559898pt;}
.x71{left:260.799896pt;}
.x8d{left:262.239895pt;}
.x83{left:264.159894pt;}
.x22{left:270.239892pt;}
.x15{left:279.199888pt;}
.x89{left:282.079887pt;}
.x16{left:284.639886pt;}
.x23{left:286.399885pt;}
.x4f{left:287.839885pt;}
.x87{left:289.439884pt;}
.x88{left:291.359615pt;}
.x80{left:294.719882pt;}
.x5f{left:296.640028pt;}
.x3e{left:305.120000pt;}
.x32{left:311.519862pt;}
.x65{left:314.879874pt;}
.x2b{left:315.999874pt;}
.x44{left:318.079873pt;}
.x62{left:320.799872pt;}
.x77{left:322.079871pt;}
.x6f{left:325.119870pt;}
.x39{left:327.679870pt;}
.x3f{left:328.639869pt;}
.x2f{left:331.679867pt;}
.x86{left:333.279867pt;}
.x30{left:335.200052pt;}
.x38{left:336.639865pt;}
.x40{left:338.719865pt;}
.x6{left:340.479864pt;}
.x45{left:341.759863pt;}
.x78{left:343.679862pt;}
.x6d{left:344.639862pt;}
.xc{left:349.759860pt;}
.x60{left:352.959859pt;}
.x33{left:354.559860pt;}
.x6b{left:355.519858pt;}
.x53{left:356.639857pt;}
.x6c{left:359.359856pt;}
.x8a{left:360.319785pt;}
.x7{left:364.799854pt;}
.xd{left:367.039853pt;}
.x73{left:368.639853pt;}
.x41{left:371.039852pt;}
.x74{left:372.319843pt;}
.x11{left:373.759850pt;}
.x6e{left:375.039850pt;}
.x42{left:376.799849pt;}
.x12{left:379.519848pt;}
.x75{left:382.879847pt;}
.x34{left:383.839846pt;}
.x7a{left:388.159845pt;}
.x76{left:389.759843pt;}
.x8e{left:391.359819pt;}
.x36{left:394.239889pt;}
.x7b{left:396.959841pt;}
.x3b{left:398.719874pt;}
.x3{left:402.079839pt;}
.x5d{left:407.999837pt;}
.x58{left:414.079834pt;}
.x24{left:415.679834pt;}
.x63{left:419.359792pt;}
.x35{left:427.999829pt;}
.x51{left:431.999827pt;}
.x25{left:433.919826pt;}
.x61{left:435.199786pt;}
.x46{left:437.439825pt;}
.xe{left:439.039824pt;}
.x43{left:442.559823pt;}
.x59{left:445.759822pt;}
.x68{left:450.399820pt;}
.x5a{left:452.799819pt;}
.x54{left:459.039816pt;}
.xf{left:464.479814pt;}
.x55{left:465.919814pt;}
.x7c{left:469.759812pt;}
.x72{left:473.759810pt;}
.x8c{left:477.279683pt;}
.x8b{left:482.239687pt;}
.x37{left:489.759804pt;}
.x26{left:491.679803pt;}
.x3a{left:501.119800pt;}
.x27{left:507.679797pt;}
.x5b{left:508.799796pt;}
.x56{left:509.919796pt;}
.x4c{left:513.439795pt;}
.x5c{left:515.839794pt;}
.x57{left:516.959793pt;}
.x50{left:527.999776pt;}
.x52{left:532.319787pt;}
.x2c{left:538.080450pt;}
.x2a{left:539.039944pt;}
.x13{left:543.519783pt;}
.x2e{left:546.079622pt;}
.x14{left:549.439780pt;}
.x5e{left:551.839779pt;}
.x8{left:564.639774pt;}
.x70{left:567.519773pt;}
.x64{left:570.079799pt;}
.x85{left:571.039931pt;}
.x9{left:585.439766pt;}
.x79{left:589.119764pt;}
.x81{left:673.119731pt;}
.x84{left:676.799729pt;}
.x1d{left:683.359727pt;}
.x1e{left:690.079724pt;}
.x69{left:753.120000pt;}
}




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