
    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_69bc0e9cc7956b0c36b7f3d7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_080c1f35376e639f1c1eb11b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.072754;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_6a6a92b5d9ed547efe794e6f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.056152;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_a16e8a0c2cd95a33e5f059a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:2.530273;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_b12af9cc741b840f0595519e.woff2')format("woff");}.ff5{font-family:ff5;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;}
.m2{transform:matrix(0.249556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249556,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249561,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);}
.v10{vertical-align:-79.200027px;}
.v21{vertical-align:-74.880063px;}
.v20{vertical-align:-72.719879px;}
.vc{vertical-align:-54.720014px;}
.v11{vertical-align:-28.799973px;}
.vb{vertical-align:-25.920041px;}
.vf{vertical-align:-23.040049px;}
.v2{vertical-align:-20.160049px;}
.v1c{vertical-align:-17.279987px;}
.v22{vertical-align:-14.400054px;}
.v14{vertical-align:-12.960023px;}
.v24{vertical-align:-10.079960px;}
.v23{vertical-align:-7.919771px;}
.v3{vertical-align:-2.159982px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.159978px;}
.v1d{vertical-align:5.759995px;}
.v1f{vertical-align:12.959888px;}
.v15{vertical-align:15.120005px;}
.v1a{vertical-align:17.280050px;}
.v25{vertical-align:19.440032px;}
.v1{vertical-align:22.320099px;}
.vd{vertical-align:29.519987px;}
.v5{vertical-align:41.759996px;}
.v18{vertical-align:43.920041px;}
.v4{vertical-align:47.519986px;}
.v12{vertical-align:50.399987px;}
.ve{vertical-align:52.560036px;}
.v8{vertical-align:58.319996px;}
.v19{vertical-align:64.800041px;}
.v9{vertical-align:66.960018px;}
.v16{vertical-align:70.560032px;}
.v13{vertical-align:73.439964px;}
.v1b{vertical-align:79.919977px;}
.v6{vertical-align:89.279982px;}
.v7{vertical-align:91.440000px;}
.v17{vertical-align:118.080023px;}
.v1e{vertical-align:127.440031px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.013352px;}
.ls57{letter-spacing:0.064215px;}
.ls23{letter-spacing:0.128610px;}
.lsa{letter-spacing:0.128615px;}
.ls7{letter-spacing:0.128745px;}
.ls4{letter-spacing:0.128750px;}
.ls40{letter-spacing:0.175638px;}
.ls42{letter-spacing:0.189198px;}
.ls49{letter-spacing:0.192286px;}
.ls2{letter-spacing:0.214096px;}
.ls31{letter-spacing:0.257666px;}
.lsf{letter-spacing:0.258919px;}
.ls2b{letter-spacing:0.259054px;}
.ls11{letter-spacing:0.259059px;}
.ls19{letter-spacing:0.306086px;}
.ls1{letter-spacing:0.392022px;}
.ls1f{letter-spacing:0.568130px;}
.lsb{letter-spacing:0.663848px;}
.ls25{letter-spacing:0.677440px;}
.ls20{letter-spacing:0.839661px;}
.ls28{letter-spacing:0.848763px;}
.ls44{letter-spacing:0.895656px;}
.ls2a{letter-spacing:0.978937px;}
.ls4e{letter-spacing:1.041385px;}
.lsd{letter-spacing:1.062354px;}
.ls38{letter-spacing:1.062358px;}
.ls4b{letter-spacing:1.068015px;}
.ls0{letter-spacing:1.112040px;}
.ls41{letter-spacing:1.356444px;}
.ls4c{letter-spacing:1.364697px;}
.ls4d{letter-spacing:1.376203px;}
.ls4a{letter-spacing:1.376295px;}
.ls33{letter-spacing:1.383731px;}
.ls54{letter-spacing:1.451893px;}
.ls51{letter-spacing:1.589756px;}
.ls53{letter-spacing:1.832076px;}
.ls17{letter-spacing:1.919877px;}
.ls48{letter-spacing:2.171771px;}
.ls6{letter-spacing:2.217410px;}
.ls4f{letter-spacing:2.309769px;}
.ls21{letter-spacing:2.491698px;}
.ls9{letter-spacing:2.600926px;}
.ls15{letter-spacing:2.817187px;}
.ls16{letter-spacing:2.865267px;}
.ls1b{letter-spacing:2.865402px;}
.ls22{letter-spacing:3.042304px;}
.ls1a{letter-spacing:3.320944px;}
.ls37{letter-spacing:3.320949px;}
.ls3b{letter-spacing:3.334338px;}
.ls36{letter-spacing:3.623054px;}
.ls2f{letter-spacing:3.623194px;}
.ls1e{letter-spacing:3.746424px;}
.ls32{letter-spacing:4.040823px;}
.ls1c{letter-spacing:4.040827px;}
.ls14{letter-spacing:4.040962px;}
.ls3e{letter-spacing:4.319172px;}
.ls50{letter-spacing:5.432027px;}
.ls3f{letter-spacing:5.864384px;}
.ls3d{letter-spacing:6.584397px;}
.ls52{letter-spacing:6.872197px;}
.ls47{letter-spacing:7.304411px;}
.ls5{letter-spacing:9.488691px;}
.ls24{letter-spacing:9.647987px;}
.ls27{letter-spacing:12.615650px;}
.ls46{letter-spacing:12.719855px;}
.ls2e{letter-spacing:13.335659px;}
.ls35{letter-spacing:13.335664px;}
.ls29{letter-spacing:13.703149px;}
.lsc{letter-spacing:13.808651px;}
.ls2d{letter-spacing:13.938960px;}
.ls34{letter-spacing:14.528669px;}
.ls3a{letter-spacing:14.789422px;}
.ls1d{letter-spacing:17.081345px;}
.ls3c{letter-spacing:17.999073px;}
.ls45{letter-spacing:18.719226px;}
.ls56{letter-spacing:23.768107px;}
.ls26{letter-spacing:55.632322px;}
.ls10{letter-spacing:56.352200px;}
.ls8{letter-spacing:65.712277px;}
.ls2c{letter-spacing:72.192425px;}
.ls30{letter-spacing:72.912308px;}
.ls43{letter-spacing:75.519419px;}
.lse{letter-spacing:157.152313px;}
.ls55{letter-spacing:384.872197px;}
.ls18{letter-spacing:795.183021px;}
.ls12{letter-spacing:1184.958145px;}
.ls39{letter-spacing:1196.943017px;}
.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;}
}
.wsc{word-spacing:-16.920944px;}
.ws11{word-spacing:-16.887938px;}
.wse{word-spacing:-15.567298px;}
.ws0{word-spacing:-15.536925px;}
.wsd{word-spacing:-14.890431px;}
.ws10{word-spacing:-13.699222px;}
.ws2{word-spacing:-13.672494px;}
.ws12{word-spacing:-10.551618px;}
.wsf{word-spacing:-9.976696px;}
.ws4{word-spacing:-9.957123px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:24.546273px;}
.ws5{word-spacing:51.289021px;}
.wsa{word-spacing:61.650518px;}
.ws9{word-spacing:62.271995px;}
.wsb{word-spacing:218.048516px;}
.ws7{word-spacing:224.548428px;}
.ws8{word-spacing:244.282401px;}
.ws6{word-spacing:1223.373522px;}
._22{margin-left:-42.377549px;}
._1f{margin-left:-26.528678px;}
._21{margin-left:-25.285519px;}
._3d{margin-left:-9.573082px;}
._20{margin-left:-6.370760px;}
._1d{margin-left:-4.885517px;}
._1b{margin-left:-3.555906px;}
._1a{margin-left:-2.216709px;}
._1{margin-left:-1.114274px;}
._0{width:1.195344px;}
._9{width:2.402883px;}
._3{width:3.803391px;}
._4{width:4.944612px;}
._d{width:6.296137px;}
._e{width:7.775003px;}
._17{width:8.786147px;}
._b{width:9.827817px;}
._a{width:11.187071px;}
._6{width:12.675574px;}
._5{width:14.280119px;}
._11{width:15.606315px;}
._2{width:16.678902px;}
._c{width:17.931796px;}
._7{width:19.008713px;}
._8{width:20.829420px;}
._19{width:22.248877px;}
._18{width:23.390841px;}
._16{width:24.453406px;}
._15{width:26.042814px;}
._14{width:27.373377px;}
._39{width:28.790907px;}
._3e{width:30.195632px;}
._23{width:32.510827px;}
._10{width:33.801373px;}
._f{width:34.842275px;}
._38{width:36.844173px;}
._13{width:37.889700px;}
._28{width:42.334237px;}
._27{width:43.712923px;}
._3c{width:45.323199px;}
._36{width:50.263637px;}
._37{width:51.328272px;}
._25{width:54.364699px;}
._24{width:55.539921px;}
._26{width:56.773407px;}
._3b{width:60.820952px;}
._3a{width:62.043847px;}
._12{width:68.971401px;}
._1c{width:102.387554px;}
._1e{width:212.651446px;}
._30{width:269.536559px;}
._32{width:301.280805px;}
._2d{width:321.546858px;}
._2a{width:418.820850px;}
._2e{width:471.770075px;}
._34{width:510.610524px;}
._2b{width:552.573315px;}
._35{width:568.785735px;}
._2f{width:607.206050px;}
._2c{width:632.738411px;}
._31{width:719.558129px;}
._29{width:841.863719px;}
._33{width:864.570892px;}
.fc1{color:rgb(16,185,129);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.371780px;}
.fs4{font-size:33.775920px;}
.fs7{font-size:45.259650px;}
.fsa{font-size:45.348617px;}
.fsb{font-size:47.961900px;}
.fs6{font-size:56.068200px;}
.fs2{font-size:62.147700px;}
.fs9{font-size:62.269193px;}
.fs0{font-size:67.551750px;}
.fs8{font-size:67.683777px;}
.fs3{font-size:79.035746px;}
.fs1{font-size:89.843850px;}
.y0{bottom:0.000000px;}
.ya6{bottom:3.423681px;}
.yaa{bottom:18.357531px;}
.y14e{bottom:28.259996px;}
.y155{bottom:29.340019px;}
.y14a{bottom:29.519989px;}
.y148{bottom:29.700028px;}
.y3{bottom:55.259994px;}
.ya5{bottom:71.092648px;}
.y2{bottom:74.700027px;}
.y6a{bottom:105.299973px;}
.yb9{bottom:108.180170px;}
.y17e{bottom:112.679970px;}
.y158{bottom:114.299973px;}
.ye1{bottom:121.139992px;}
.y32{bottom:123.659981px;}
.y69{bottom:124.740006px;}
.yb8{bottom:125.995529px;}
.y11f{bottom:127.259994px;}
.y17d{bottom:135.000000px;}
.y157{bottom:135.899986px;}
.ye0{bottom:138.960022px;}
.y31{bottom:141.659981px;}
.y68{bottom:143.100013px;}
.yb7{bottom:143.810888px;}
.y11e{bottom:145.259994px;}
.y152{bottom:152.100013px;}
.ydf{bottom:156.960022px;}
.y17c{bottom:157.320030px;}
.y153{bottom:158.399986px;}
.y30{bottom:159.480011px;}
.y67{bottom:160.559967px;}
.yb6{bottom:161.635805px;}
.y11d{bottom:162.899986px;}
.yf3{bottom:171.720017px;}
.yde{bottom:175.320030px;}
.y2f{bottom:177.299973px;}
.ya9{bottom:177.478604px;}
.y66{bottom:178.559967px;}
.y17b{bottom:179.820030px;}
.y11c{bottom:181.080025px;}
.y154{bottom:181.620002px;}
.y151{bottom:182.159981px;}
.y156{bottom:187.740006px;}
.yf2{bottom:189.720017px;}
.ydd{bottom:193.139992px;}
.y2e{bottom:195.120002px;}
.ya7{bottom:195.836135px;}
.ya8{bottom:195.836470px;}
.y65{bottom:196.379998px;}
.y14d{bottom:198.539977px;}
.y11b{bottom:199.080025px;}
.y17a{bottom:202.320030px;}
.y14f{bottom:203.580025px;}
.yf1{bottom:207.539977px;}
.ya3{bottom:207.899986px;}
.ydc{bottom:210.960022px;}
.y2d{bottom:212.940033px;}
.y64{bottom:214.379998px;}
.y11a{bottom:216.720017px;}
.y179{bottom:224.639992px;}
.yf0{bottom:225.179970px;}
.ya2{bottom:225.899986px;}
.y150{bottom:226.799973px;}
.y14c{bottom:227.340019px;}
.y2c{bottom:230.580025px;}
.y102{bottom:231.299973px;}
.y63{bottom:232.379998px;}
.y119{bottom:234.720017px;}
.ydb{bottom:243.000000px;}
.yef{bottom:243.179970px;}
.y147{bottom:243.539977px;}
.ya1{bottom:243.720017px;}
.y178{bottom:246.960022px;}
.y2b{bottom:248.220017px;}
.y149{bottom:250.019989px;}
.y62{bottom:250.200027px;}
.y118{bottom:252.539977px;}
.yda{bottom:257.039977px;}
.yee{bottom:261.000000px;}
.ya0{bottom:261.899986px;}
.y2a{bottom:266.580025px;}
.y61{bottom:268.019989px;}
.y177{bottom:269.279983px;}
.y117{bottom:270.179970px;}
.y146{bottom:273.419975px;}
.yed{bottom:278.820030px;}
.y14b{bottom:279.539977px;}
.y9e{bottom:280.080025px;}
.y9f{bottom:283.500000px;}
.y29{bottom:284.220017px;}
.y60{bottom:285.840019px;}
.y101{bottom:286.019989px;}
.y116{bottom:288.179970px;}
.y176{bottom:291.779983px;}
.yec{bottom:296.639992px;}
.y9d{bottom:299.159981px;}
.y28{bottom:302.039977px;}
.y5f{bottom:303.659981px;}
.y100{bottom:303.840019px;}
.y115{bottom:306.000000px;}
.y175{bottom:314.100013px;}
.yeb{bottom:316.440033px;}
.y145{bottom:318.600013px;}
.y9b{bottom:318.960022px;}
.y27{bottom:320.039977px;}
.y5e{bottom:321.480011px;}
.yff{bottom:322.740006px;}
.y9c{bottom:323.460022px;}
.y114{bottom:324.179970px;}
.y99{bottom:325.799973px;}
.y9a{bottom:329.220017px;}
.yea{bottom:336.240006px;}
.y174{bottom:336.419975px;}
.y26{bottom:337.679970px;}
.y5d{bottom:339.299973px;}
.yfe{bottom:340.919975px;}
.y113{bottom:343.620002px;}
.y94{bottom:347.039977px;}
.y98{bottom:354.960022px;}
.y25{bottom:355.679970px;}
.ye9{bottom:356.220017px;}
.y5c{bottom:357.299973px;}
.y173{bottom:358.740006px;}
.y95{bottom:358.919975px;}
.y96{bottom:362.340019px;}
.y144{bottom:363.779983px;}
.y97{bottom:365.220017px;}
.y24{bottom:373.500000px;}
.ye8{bottom:374.039977px;}
.y5b{bottom:374.940033px;}
.yd5{bottom:375.116050px;}
.yfd{bottom:376.740006px;}
.y172{bottom:381.240006px;}
.y112{bottom:384.299973px;}
.ye7{bottom:391.860008px;}
.y5a{bottom:392.759994px;}
.yd4{bottom:392.936142px;}
.yfc{bottom:394.379998px;}
.y93{bottom:396.899986px;}
.y111{bottom:402.120002px;}
.y171{bottom:403.559967px;}
.y143{bottom:405.539977px;}
.ye6{bottom:409.679970px;}
.y59{bottom:410.759994px;}
.yd3{bottom:410.761012px;}
.y23{bottom:412.379998px;}
.yfb{bottom:412.740006px;}
.y92{bottom:414.539977px;}
.y110{bottom:420.299973px;}
.y170{bottom:425.879998px;}
.ye5{bottom:427.500000px;}
.y58{bottom:428.399986px;}
.yd2{bottom:428.576371px;}
.y22{bottom:430.379998px;}
.yfa{bottom:430.559967px;}
.y91{bottom:432.539977px;}
.y10f{bottom:438.120002px;}
.y16f{bottom:444.960022px;}
.y142{bottom:445.500000px;}
.yd1{bottom:446.396463px;}
.y57{bottom:446.399986px;}
.y21{bottom:448.019989px;}
.yf9{bottom:448.740006px;}
.y90{bottom:450.539977px;}
.y10e{bottom:455.940033px;}
.ye4{bottom:459.360008px;}
.y141{bottom:463.500000px;}
.y56{bottom:464.220017px;}
.yd0{bottom:464.577640px;}
.y16e{bottom:464.580025px;}
.y20{bottom:466.019989px;}
.yf8{bottom:466.559967px;}
.y8f{bottom:468.539977px;}
.ye3{bottom:473.399986px;}
.y10d{bottom:473.759994px;}
.ycf{bottom:480.406997px;}
.y140{bottom:481.320030px;}
.y55{bottom:482.039977px;}
.yce{bottom:483.656684px;}
.y1f{bottom:483.840019px;}
.yf7{bottom:485.460022px;}
.y8e{bottom:486.360008px;}
.y10c{bottom:491.580025px;}
.y13f{bottom:499.139992px;}
.y54{bottom:499.860008px;}
.y1e{bottom:501.480011px;}
.y16d{bottom:501.659981px;}
.ycd{bottom:501.837861px;}
.y8d{bottom:504.000000px;}
.yf6{bottom:504.360008px;}
.y10b{bottom:509.580025px;}
.yb5{bottom:511.918989px;}
.y13e{bottom:517.320030px;}
.ycc{bottom:517.669313px;}
.y53{bottom:517.679970px;}
.y1d{bottom:519.480011px;}
.ycb{bottom:520.916951px;}
.y8c{bottom:522.000000px;}
.y10a{bottom:527.220017px;}
.yb4{bottom:529.558561px;}
.y13d{bottom:535.139992px;}
.y52{bottom:535.500000px;}
.y1c{bottom:537.299973px;}
.y16c{bottom:537.480011px;}
.yf5{bottom:538.200027px;}
.yca{bottom:539.098082px;}
.y8b{bottom:540.179970px;}
.y109{bottom:545.220017px;}
.yb3{bottom:547.559218px;}
.y13c{bottom:552.960022px;}
.yf4{bottom:553.139992px;}
.y51{bottom:553.320030px;}
.y8a{bottom:554.399986px;}
.y1b{bottom:555.120002px;}
.y16b{bottom:556.919975px;}
.y194{bottom:560.519989px;}
.y108{bottom:563.220017px;}
.y88{bottom:563.759994px;}
.yb2{bottom:565.374578px;}
.y13b{bottom:570.779983px;}
.y50{bottom:571.679970px;}
.y1a{bottom:572.940033px;}
.yba{bottom:573.655278px;}
.y87{bottom:574.379998px;}
.y16a{bottom:576.360008px;}
.y107{bottom:581.039977px;}
.yb1{bottom:583.194669px;}
.y13a{bottom:588.600013px;}
.y4f{bottom:589.320030px;}
.y19{bottom:590.940033px;}
.y169{bottom:594.179970px;}
.y89{bottom:597.419975px;}
.y106{bottom:599.039977px;}
.yb0{bottom:601.019539px;}
.y193{bottom:603.000000px;}
.y139{bottom:606.419975px;}
.y4e{bottom:607.139992px;}
.y18{bottom:608.580025px;}
.y168{bottom:611.820030px;}
.y105{bottom:617.040012px;}
.yaf{bottom:618.834899px;}
.y138{bottom:624.420010px;}
.y4d{bottom:625.139992px;}
.y192{bottom:625.319995px;}
.y17{bottom:626.399986px;}
.y86{bottom:627.120002px;}
.y167{bottom:630.899986px;}
.yae{bottom:636.659769px;}
.y137{bottom:642.420010px;}
.y4c{bottom:642.779983px;}
.y16{bottom:644.399986px;}
.y85{bottom:644.939999px;}
.y191{bottom:647.819995px;}
.y166{bottom:649.259994px;}
.y104{bottom:649.980011px;}
.yad{bottom:654.836168px;}
.y136{bottom:660.240006px;}
.y4b{bottom:660.779983px;}
.y15{bottom:662.040012px;}
.y84{bottom:662.759994px;}
.y165{bottom:667.980011px;}
.y190{bottom:670.139992px;}
.y135{bottom:678.240006px;}
.y4a{bottom:678.600013px;}
.y14{bottom:680.040012px;}
.y83{bottom:680.579990px;}
.y103{bottom:686.339985px;}
.y164{bottom:686.519989px;}
.yac{bottom:686.875328px;}
.y18f{bottom:692.639992px;}
.y134{bottom:695.879998px;}
.y49{bottom:696.240006px;}
.y82{bottom:698.579990px;}
.yab{bottom:701.094351px;}
.yd9{bottom:704.879998px;}
.y163{bottom:705.420010px;}
.y133{bottom:713.879998px;}
.y48{bottom:714.240006px;}
.y18e{bottom:714.959988px;}
.y81{bottom:716.220017px;}
.y13{bottom:719.100013px;}
.yd8{bottom:722.699993px;}
.y132{bottom:731.699993px;}
.y47{bottom:732.060001px;}
.y80{bottom:734.040012px;}
.y162{bottom:734.399986px;}
.y18d{bottom:737.279983px;}
.y12{bottom:738.540012px;}
.y131{bottom:749.339985px;}
.y46{bottom:749.879998px;}
.y7f{bottom:752.040012px;}
.yd7{bottom:754.740006px;}
.y11{bottom:757.800007px;}
.y18c{bottom:759.600013px;}
.y161{bottom:764.459988px;}
.y130{bottom:767.339985px;}
.y45{bottom:768.060001px;}
.yd6{bottom:768.959988px;}
.y7e{bottom:769.680004px;}
.y10{bottom:774.000000px;}
.y18b{bottom:781.920010px;}
.y160{bottom:782.100013px;}
.y12f{bottom:785.160015px;}
.y44{bottom:786.240006px;}
.y7d{bottom:787.680004px;}
.yf{bottom:789.660015px;}
.y15f{bottom:800.100013px;}
.y43{bottom:804.060001px;}
.y18a{bottom:804.420010px;}
.y7c{bottom:805.500000px;}
.ye{bottom:806.399986px;}
.y15e{bottom:817.740006px;}
.y42{bottom:821.879998px;}
.y12e{bottom:822.420010px;}
.yd{bottom:822.779983px;}
.y7b{bottom:824.399986px;}
.y189{bottom:826.740006px;}
.yc{bottom:838.800007px;}
.y41{bottom:839.699993px;}
.y12d{bottom:840.240006px;}
.y7a{bottom:842.579990px;}
.y188{bottom:849.060001px;}
.yc9{bottom:855.720258px;}
.y78{bottom:856.800007px;}
.y40{bottom:857.519989px;}
.y12c{bottom:858.060001px;}
.yb{bottom:859.860008px;}
.y79{bottom:866.339985px;}
.y76{bottom:866.879998px;}
.y187{bottom:871.379998px;}
.yc8{bottom:873.537519px;}
.y3f{bottom:875.519989px;}
.y12b{bottom:876.060001px;}
.ya{bottom:876.240006px;}
.y75{bottom:876.779983px;}
.y9{bottom:887.399987px;}
.yc7{bottom:891.354781px;}
.y3e{bottom:892.980011px;}
.y12a{bottom:893.699993px;}
.y186{bottom:893.879998px;}
.y15d{bottom:894.060001px;}
.y77{bottom:900.000000px;}
.yc6{bottom:909.179651px;}
.y3d{bottom:910.080008px;}
.y129{bottom:911.520006px;}
.y15c{bottom:912.060001px;}
.y185{bottom:916.199993px;}
.y74{bottom:924.840002px;}
.yc5{bottom:926.996913px;}
.y8{bottom:927.180004px;}
.y128{bottom:929.520006px;}
.y15b{bottom:929.879998px;}
.y184{bottom:938.520006px;}
.y3c{bottom:942.300007px;}
.y73{bottom:945.000000px;}
.yc4{bottom:945.179018px;}
.y127{bottom:947.159998px;}
.y15a{bottom:947.520006px;}
.y7{bottom:949.500000px;}
.y71{bottom:954.539995px;}
.y3b{bottom:960.120002px;}
.y183{bottom:960.840002px;}
.yc3{bottom:963.361146px;}
.y70{bottom:964.979994px;}
.y126{bottom:965.520006px;}
.y159{bottom:966.599997px;}
.y3a{bottom:978.300007px;}
.yc2{bottom:979.015505px;}
.yc1{bottom:982.257768px;}
.y125{bottom:983.340002px;}
.y182{bottom:983.520006px;}
.ye2{bottom:984.960004px;}
.y72{bottom:988.199993px;}
.y39{bottom:996.479994px;}
.yc0{bottom:998.456951px;}
.y124{bottom:1001.159998px;}
.ybf{bottom:1001.701702px;}
.y6f{bottom:1002.780001px;}
.y181{bottom:1005.840002px;}
.y38{bottom:1010.879998px;}
.y6{bottom:1017.900003px;}
.y123{bottom:1018.979994px;}
.ybe{bottom:1020.058643px;}
.y6e{bottom:1020.419992px;}
.y37{bottom:1021.319996px;}
.y180{bottom:1028.159998px;}
.y122{bottom:1036.800007px;}
.ybd{bottom:1038.240760px;}
.y6d{bottom:1038.419992px;}
.y5{bottom:1041.659998px;}
.y36{bottom:1046.340002px;}
.y34{bottom:1050.480002px;}
.y121{bottom:1054.620002px;}
.ybc{bottom:1056.058022px;}
.y6c{bottom:1056.239997px;}
.y33{bottom:1061.459997px;}
.y4{bottom:1067.219999px;}
.y17f{bottom:1072.980002px;}
.y120{bottom:1073.700002px;}
.ybb{bottom:1074.057717px;}
.y6b{bottom:1074.060001px;}
.y35{bottom:1078.379998px;}
.ya4{bottom:1122.836184px;}
.y1{bottom:1123.020002px;}
.h26{height:18.543511px;}
.h7{height:26.955855px;}
.h8{height:27.675873px;}
.h28{height:33.838730px;}
.h30{height:39.060036px;}
.h33{height:39.240006px;}
.h32{height:44.280053px;}
.h34{height:45.539979px;}
.h2f{height:45.540047px;}
.ha{height:46.787380px;}
.h9{height:47.115904px;}
.hb{height:48.046724px;}
.h3{height:51.860556px;}
.h27{height:51.961939px;}
.h6{height:53.256452px;}
.h1{height:56.370088px;}
.h25{height:56.480261px;}
.h36{height:56.765899px;}
.h4{height:57.887364px;}
.h2e{height:58.530003px;}
.h35{height:58.530273px;}
.h2d{height:58.530277px;}
.h5{height:67.728385px;}
.h10{height:70.187817px;}
.h2b{height:70.325785px;}
.h31{height:74.378415px;}
.h2{height:76.990213px;}
.h14{height:96.377488px;}
.h2a{height:96.565897px;}
.h21{height:97.817519px;}
.h16{height:98.537398px;}
.h2c{height:104.757987px;}
.h29{height:104.962732px;}
.h1b{height:126.617492px;}
.h24{height:128.507637px;}
.h1a{height:131.780534px;}
.h22{height:131.780601px;}
.h13{height:138.137479px;}
.hf{height:138.137483px;}
.h20{height:140.297533px;}
.hc{height:141.737492px;}
.h1f{height:143.177596px;}
.h12{height:143.897479px;}
.h1c{height:143.897614px;}
.h17{height:146.057524px;}
.h23{height:146.057668px;}
.h15{height:146.777474px;}
.h11{height:154.697483px;}
.he{height:185.657470px;}
.h18{height:185.657537px;}
.hd{height:187.817488px;}
.h19{height:188.267839px;}
.h1e{height:188.987925px;}
.h1d{height:223.817519px;}
.h0{height:1188.000000px;}
.wc{width:3.773287px;}
.we{width:3.778422px;}
.w6{width:5.577399px;}
.w2{width:5.583629px;}
.wa{width:7.015595px;}
.w14{width:7.019989px;}
.w8{width:7.732125px;}
.w15{width:8.459988px;}
.w12{width:8.460021px;}
.w10{width:8.460023px;}
.w3{width:8.462033px;}
.w11{width:8.819996px;}
.w13{width:8.820030px;}
.wb{width:8.995039px;}
.w9{width:9.541422px;}
.wd{width:12.603364px;}
.w1{width:32.033675px;}
.wf{width:42.835972px;}
.w7{width:59.398225px;}
.w4{width:215.996396px;}
.w5{width:303.122003px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x54{left:128.700002px;}
.x1{left:138.780001px;}
.x5b{left:148.319996px;}
.xf{left:150.659998px;}
.xe{left:158.759994px;}
.x3a{left:164.523121px;}
.x57{left:168.840002px;}
.x33{left:170.816044px;}
.x34{left:176.399673px;}
.x35{left:184.861706px;}
.x4b{left:188.099574px;}
.x3{left:197.639992px;}
.x3b{left:199.617728px;}
.x32{left:227.699993px;}
.x8{left:233.280001px;}
.x49{left:238.325327px;}
.x46{left:247.860464px;}
.x4a{left:255.417827px;}
.x16{left:262.979994px;}
.x56{left:268.740006px;}
.x10{left:275.759994px;}
.x9{left:280.080008px;}
.x19{left:282.060001px;}
.x4{left:292.860008px;}
.x1d{left:304.740006px;}
.x5{left:309.600013px;}
.x28{left:320.579990px;}
.x15{left:323.279983px;}
.x48{left:325.079149px;}
.x14{left:328.860008px;}
.x20{left:334.980011px;}
.x1a{left:337.319996px;}
.xc{left:338.399987px;}
.x7{left:342.180005px;}
.xd{left:344.339985px;}
.x2c{left:354.600014px;}
.xb{left:356.579990px;}
.x1e{left:357.839985px;}
.x5a{left:362.339985px;}
.x30{left:377.279983px;}
.x59{left:380.879998px;}
.x22{left:381.959988px;}
.x52{left:391.319996px;}
.x4e{left:399.246586px;}
.x36{left:400.676654px;}
.x21{left:412.560001px;}
.x2d{left:414.360008px;}
.x2b{left:416.339985px;}
.x11{left:419.220017px;}
.xa{left:420.300007px;}
.x47{left:423.531349px;}
.x53{left:428.399987px;}
.x18{left:431.279983px;}
.x2{left:435.420010px;}
.x23{left:437.399987px;}
.x1b{left:440.639992px;}
.x26{left:449.279983px;}
.x25{left:456.480011px;}
.x6{left:458.459988px;}
.x12{left:485.819996px;}
.x17{left:497.339985px;}
.x29{left:500.759994px;}
.x1f{left:506.519989px;}
.x24{left:511.019989px;}
.x2f{left:517.860008px;}
.x61{left:527.220017px;}
.x5c{left:529.019989px;}
.x2a{left:531.720017px;}
.x62{left:536.040012px;}
.x5d{left:538.379998px;}
.x63{left:543.600014px;}
.x2e{left:545.040012px;}
.x5e{left:547.199993px;}
.x1c{left:576.360008px;}
.x13{left:590.220017px;}
.x27{left:592.200027px;}
.x31{left:596.340019px;}
.x4c{left:618.490669px;}
.x4d{left:635.395691px;}
.x3c{left:664.741106px;}
.x5f{left:672.659981px;}
.x3d{left:674.638226px;}
.x3e{left:681.839422px;}
.x3f{left:691.380844px;}
.x4f{left:696.419975px;}
.x60{left:698.399987px;}
.x40{left:700.561433px;}
.x37{left:703.798657px;}
.x41{left:706.680132px;}
.x38{left:709.376056px;}
.x58{left:717.480011px;}
.x42{left:724.139280px;}
.x43{left:727.917702px;}
.x50{left:730.980011px;}
.x39{left:768.604133px;}
.x44{left:770.934090px;}
.x55{left:779.399987px;}
.x51{left:794.340019px;}
.x45{left:799.731424px;}
@media print{
.v10{vertical-align:-70.400024pt;}
.v21{vertical-align:-66.560056pt;}
.v20{vertical-align:-64.639892pt;}
.vc{vertical-align:-48.640012pt;}
.v11{vertical-align:-25.599976pt;}
.vb{vertical-align:-23.040036pt;}
.vf{vertical-align:-20.480044pt;}
.v2{vertical-align:-17.920044pt;}
.v1c{vertical-align:-15.359988pt;}
.v22{vertical-align:-12.800048pt;}
.v14{vertical-align:-11.520020pt;}
.v24{vertical-align:-8.959964pt;}
.v23{vertical-align:-7.039796pt;}
.v3{vertical-align:-1.919984pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.919980pt;}
.v1d{vertical-align:5.119996pt;}
.v1f{vertical-align:11.519900pt;}
.v15{vertical-align:13.440004pt;}
.v1a{vertical-align:15.360044pt;}
.v25{vertical-align:17.280028pt;}
.v1{vertical-align:19.840088pt;}
.vd{vertical-align:26.239988pt;}
.v5{vertical-align:37.119996pt;}
.v18{vertical-align:39.040036pt;}
.v4{vertical-align:42.239988pt;}
.v12{vertical-align:44.799988pt;}
.ve{vertical-align:46.720032pt;}
.v8{vertical-align:51.839996pt;}
.v19{vertical-align:57.600036pt;}
.v9{vertical-align:59.520016pt;}
.v16{vertical-align:62.720028pt;}
.v13{vertical-align:65.279968pt;}
.v1b{vertical-align:71.039980pt;}
.v6{vertical-align:79.359984pt;}
.v7{vertical-align:81.280000pt;}
.v17{vertical-align:104.960020pt;}
.v1e{vertical-align:113.280028pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.011868pt;}
.ls57{letter-spacing:0.057080pt;}
.ls23{letter-spacing:0.114320pt;}
.lsa{letter-spacing:0.114324pt;}
.ls7{letter-spacing:0.114440pt;}
.ls4{letter-spacing:0.114444pt;}
.ls40{letter-spacing:0.156122pt;}
.ls42{letter-spacing:0.168176pt;}
.ls49{letter-spacing:0.170921pt;}
.ls2{letter-spacing:0.190308pt;}
.ls31{letter-spacing:0.229036pt;}
.lsf{letter-spacing:0.230150pt;}
.ls2b{letter-spacing:0.230270pt;}
.ls11{letter-spacing:0.230274pt;}
.ls19{letter-spacing:0.272077pt;}
.ls1{letter-spacing:0.348464pt;}
.ls1f{letter-spacing:0.505004pt;}
.lsb{letter-spacing:0.590087pt;}
.ls25{letter-spacing:0.602169pt;}
.ls20{letter-spacing:0.746366pt;}
.ls28{letter-spacing:0.754456pt;}
.ls44{letter-spacing:0.796138pt;}
.ls2a{letter-spacing:0.870166pt;}
.ls4e{letter-spacing:0.925675pt;}
.lsd{letter-spacing:0.944314pt;}
.ls38{letter-spacing:0.944318pt;}
.ls4b{letter-spacing:0.949347pt;}
.ls0{letter-spacing:0.988480pt;}
.ls41{letter-spacing:1.205728pt;}
.ls4c{letter-spacing:1.213064pt;}
.ls4d{letter-spacing:1.223291pt;}
.ls4a{letter-spacing:1.223374pt;}
.ls33{letter-spacing:1.229983pt;}
.ls54{letter-spacing:1.290571pt;}
.ls51{letter-spacing:1.413116pt;}
.ls53{letter-spacing:1.628512pt;}
.ls17{letter-spacing:1.706558pt;}
.ls48{letter-spacing:1.930463pt;}
.ls6{letter-spacing:1.971031pt;}
.ls4f{letter-spacing:2.053128pt;}
.ls21{letter-spacing:2.214843pt;}
.ls9{letter-spacing:2.311934pt;}
.ls15{letter-spacing:2.504166pt;}
.ls16{letter-spacing:2.546904pt;}
.ls1b{letter-spacing:2.547024pt;}
.ls22{letter-spacing:2.704270pt;}
.ls1a{letter-spacing:2.951950pt;}
.ls37{letter-spacing:2.951954pt;}
.ls3b{letter-spacing:2.963856pt;}
.ls36{letter-spacing:3.220493pt;}
.ls2f{letter-spacing:3.220617pt;}
.ls1e{letter-spacing:3.330155pt;}
.ls32{letter-spacing:3.591842pt;}
.ls1c{letter-spacing:3.591846pt;}
.ls14{letter-spacing:3.591966pt;}
.ls3e{letter-spacing:3.839264pt;}
.ls50{letter-spacing:4.828468pt;}
.ls3f{letter-spacing:5.212786pt;}
.ls3d{letter-spacing:5.852798pt;}
.ls52{letter-spacing:6.108620pt;}
.ls47{letter-spacing:6.492810pt;}
.ls5{letter-spacing:8.434392pt;}
.ls24{letter-spacing:8.575988pt;}
.ls27{letter-spacing:11.213911pt;}
.ls46{letter-spacing:11.306538pt;}
.ls2e{letter-spacing:11.853919pt;}
.ls35{letter-spacing:11.853923pt;}
.ls29{letter-spacing:12.180577pt;}
.lsc{letter-spacing:12.274356pt;}
.ls2d{letter-spacing:12.390186pt;}
.ls34{letter-spacing:12.914372pt;}
.ls3a{letter-spacing:13.146153pt;}
.ls1d{letter-spacing:15.183418pt;}
.ls3c{letter-spacing:15.999176pt;}
.ls45{letter-spacing:16.639312pt;}
.ls56{letter-spacing:21.127206pt;}
.ls26{letter-spacing:49.450953pt;}
.ls10{letter-spacing:50.090845pt;}
.ls8{letter-spacing:58.410913pt;}
.ls2c{letter-spacing:64.171045pt;}
.ls30{letter-spacing:64.810941pt;}
.ls43{letter-spacing:67.128373pt;}
.lse{letter-spacing:139.690945pt;}
.ls55{letter-spacing:342.108620pt;}
.ls18{letter-spacing:706.829352pt;}
.ls12{letter-spacing:1053.296129pt;}
.ls39{letter-spacing:1063.949348pt;}
.wsc{word-spacing:-15.040839pt;}
.ws11{word-spacing:-15.011500pt;}
.wse{word-spacing:-13.837598pt;}
.ws0{word-spacing:-13.810600pt;}
.wsd{word-spacing:-13.235939pt;}
.ws10{word-spacing:-12.177087pt;}
.ws2{word-spacing:-12.153328pt;}
.ws12{word-spacing:-9.379216pt;}
.wsf{word-spacing:-8.868174pt;}
.ws4{word-spacing:-8.850776pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:21.818910pt;}
.ws5{word-spacing:45.590241pt;}
.wsa{word-spacing:54.800461pt;}
.ws9{word-spacing:55.352885pt;}
.wsb{word-spacing:193.820903pt;}
.ws7{word-spacing:199.598603pt;}
.ws8{word-spacing:217.139912pt;}
.ws6{word-spacing:1087.443131pt;}
._22{margin-left:-37.668932pt;}
._1f{margin-left:-23.581048pt;}
._21{margin-left:-22.476017pt;}
._3d{margin-left:-8.509406pt;}
._20{margin-left:-5.662898pt;}
._1d{margin-left:-4.342682pt;}
._1b{margin-left:-3.160805pt;}
._1a{margin-left:-1.970408pt;}
._1{margin-left:-0.990466pt;}
._0{width:1.062528pt;}
._9{width:2.135896pt;}
._3{width:3.380792pt;}
._4{width:4.395211pt;}
._d{width:5.596566pt;}
._e{width:6.911113pt;}
._17{width:7.809908pt;}
._b{width:8.735838pt;}
._a{width:9.944064pt;}
._6{width:11.267177pt;}
._5{width:12.693439pt;}
._11{width:13.872280pt;}
._2{width:14.825691pt;}
._c{width:15.939375pt;}
._7{width:16.896633pt;}
._8{width:18.515040pt;}
._19{width:19.776779pt;}
._18{width:20.791858pt;}
._16{width:21.736361pt;}
._15{width:23.149168pt;}
._14{width:24.331891pt;}
._39{width:25.591917pt;}
._3e{width:26.840562pt;}
._23{width:28.898513pt;}
._10{width:30.045665pt;}
._f{width:30.970911pt;}
._38{width:32.750376pt;}
._13{width:33.679733pt;}
._28{width:37.630433pt;}
._27{width:38.855931pt;}
._3c{width:40.287288pt;}
._36{width:44.678789pt;}
._37{width:45.625130pt;}
._25{width:48.324177pt;}
._24{width:49.368819pt;}
._26{width:50.465251pt;}
._3b{width:54.063068pt;}
._3a{width:55.150086pt;}
._12{width:61.307912pt;}
._1c{width:91.011159pt;}
._1e{width:189.023508pt;}
._30{width:239.588052pt;}
._32{width:267.805160pt;}
._2d{width:285.819429pt;}
._2a{width:372.285200pt;}
._2e{width:419.351178pt;}
._34{width:453.876022pt;}
._2b{width:491.176280pt;}
._35{width:505.587320pt;}
._2f{width:539.738711pt;}
._2c{width:562.434143pt;}
._31{width:639.607226pt;}
._29{width:748.323306pt;}
._33{width:768.507460pt;}
.fs5{font-size:25.219360pt;}
.fs4{font-size:30.023040pt;}
.fs7{font-size:40.230800pt;}
.fsa{font-size:40.309882pt;}
.fsb{font-size:42.632800pt;}
.fs6{font-size:49.838400pt;}
.fs2{font-size:55.242400pt;}
.fs9{font-size:55.350394pt;}
.fs0{font-size:60.046000pt;}
.fs8{font-size:60.163357pt;}
.fs3{font-size:70.253996pt;}
.fs1{font-size:79.861200pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:3.043272pt;}
.yaa{bottom:16.317806pt;}
.y14e{bottom:25.119996pt;}
.y155{bottom:26.080017pt;}
.y14a{bottom:26.239990pt;}
.y148{bottom:26.400025pt;}
.y3{bottom:49.119995pt;}
.ya5{bottom:63.193465pt;}
.y2{bottom:66.400024pt;}
.y6a{bottom:93.599976pt;}
.yb9{bottom:96.160151pt;}
.y17e{bottom:100.159973pt;}
.y158{bottom:101.599976pt;}
.ye1{bottom:107.679993pt;}
.y32{bottom:109.919983pt;}
.y69{bottom:110.880005pt;}
.yb8{bottom:111.996026pt;}
.y11f{bottom:113.119995pt;}
.y17d{bottom:120.000000pt;}
.y157{bottom:120.799988pt;}
.ye0{bottom:123.520020pt;}
.y31{bottom:125.919983pt;}
.y68{bottom:127.200012pt;}
.yb7{bottom:127.831901pt;}
.y11e{bottom:129.119995pt;}
.y152{bottom:135.200012pt;}
.ydf{bottom:139.520020pt;}
.y17c{bottom:139.840027pt;}
.y153{bottom:140.799988pt;}
.y30{bottom:141.760010pt;}
.y67{bottom:142.719971pt;}
.yb6{bottom:143.676271pt;}
.y11d{bottom:144.799988pt;}
.yf3{bottom:152.640015pt;}
.yde{bottom:155.840027pt;}
.y2f{bottom:157.599976pt;}
.ya9{bottom:157.758759pt;}
.y66{bottom:158.719971pt;}
.y17b{bottom:159.840027pt;}
.y11c{bottom:160.960022pt;}
.y154{bottom:161.440002pt;}
.y151{bottom:161.919983pt;}
.y156{bottom:166.880005pt;}
.yf2{bottom:168.640015pt;}
.ydd{bottom:171.679993pt;}
.y2e{bottom:173.440002pt;}
.ya7{bottom:174.076564pt;}
.ya8{bottom:174.076862pt;}
.y65{bottom:174.559998pt;}
.y14d{bottom:176.479980pt;}
.y11b{bottom:176.960022pt;}
.y17a{bottom:179.840027pt;}
.y14f{bottom:180.960022pt;}
.yf1{bottom:184.479980pt;}
.ya3{bottom:184.799988pt;}
.ydc{bottom:187.520020pt;}
.y2d{bottom:189.280029pt;}
.y64{bottom:190.559998pt;}
.y11a{bottom:192.640015pt;}
.y179{bottom:199.679993pt;}
.yf0{bottom:200.159973pt;}
.ya2{bottom:200.799988pt;}
.y150{bottom:201.599976pt;}
.y14c{bottom:202.080017pt;}
.y2c{bottom:204.960022pt;}
.y102{bottom:205.599976pt;}
.y63{bottom:206.559998pt;}
.y119{bottom:208.640015pt;}
.ydb{bottom:216.000000pt;}
.yef{bottom:216.159973pt;}
.y147{bottom:216.479980pt;}
.ya1{bottom:216.640015pt;}
.y178{bottom:219.520020pt;}
.y2b{bottom:220.640015pt;}
.y149{bottom:222.239990pt;}
.y62{bottom:222.400024pt;}
.y118{bottom:224.479980pt;}
.yda{bottom:228.479980pt;}
.yee{bottom:232.000000pt;}
.ya0{bottom:232.799988pt;}
.y2a{bottom:236.960022pt;}
.y61{bottom:238.239990pt;}
.y177{bottom:239.359985pt;}
.y117{bottom:240.159973pt;}
.y146{bottom:243.039978pt;}
.yed{bottom:247.840027pt;}
.y14b{bottom:248.479980pt;}
.y9e{bottom:248.960022pt;}
.y9f{bottom:252.000000pt;}
.y29{bottom:252.640015pt;}
.y60{bottom:254.080017pt;}
.y101{bottom:254.239990pt;}
.y116{bottom:256.159973pt;}
.y176{bottom:259.359985pt;}
.yec{bottom:263.679993pt;}
.y9d{bottom:265.919983pt;}
.y28{bottom:268.479980pt;}
.y5f{bottom:269.919983pt;}
.y100{bottom:270.080017pt;}
.y115{bottom:272.000000pt;}
.y175{bottom:279.200012pt;}
.yeb{bottom:281.280029pt;}
.y145{bottom:283.200012pt;}
.y9b{bottom:283.520020pt;}
.y27{bottom:284.479980pt;}
.y5e{bottom:285.760010pt;}
.yff{bottom:286.880005pt;}
.y9c{bottom:287.520020pt;}
.y114{bottom:288.159973pt;}
.y99{bottom:289.599976pt;}
.y9a{bottom:292.640015pt;}
.yea{bottom:298.880005pt;}
.y174{bottom:299.039978pt;}
.y26{bottom:300.159973pt;}
.y5d{bottom:301.599976pt;}
.yfe{bottom:303.039978pt;}
.y113{bottom:305.440002pt;}
.y94{bottom:308.479980pt;}
.y98{bottom:315.520020pt;}
.y25{bottom:316.159973pt;}
.ye9{bottom:316.640015pt;}
.y5c{bottom:317.599976pt;}
.y173{bottom:318.880005pt;}
.y95{bottom:319.039978pt;}
.y96{bottom:322.080017pt;}
.y144{bottom:323.359985pt;}
.y97{bottom:324.640015pt;}
.y24{bottom:332.000000pt;}
.ye8{bottom:332.479980pt;}
.y5b{bottom:333.280029pt;}
.yd5{bottom:333.436489pt;}
.yfd{bottom:334.880005pt;}
.y172{bottom:338.880005pt;}
.y112{bottom:341.599976pt;}
.ye7{bottom:348.320007pt;}
.y5a{bottom:349.119995pt;}
.yd4{bottom:349.276570pt;}
.yfc{bottom:350.559998pt;}
.y93{bottom:352.799988pt;}
.y111{bottom:357.440002pt;}
.y171{bottom:358.719971pt;}
.y143{bottom:360.479980pt;}
.ye6{bottom:364.159973pt;}
.y59{bottom:365.119995pt;}
.yd3{bottom:365.120900pt;}
.y23{bottom:366.559998pt;}
.yfb{bottom:366.880005pt;}
.y92{bottom:368.479980pt;}
.y110{bottom:373.599976pt;}
.y170{bottom:378.559998pt;}
.ye5{bottom:380.000000pt;}
.y58{bottom:380.799988pt;}
.yd2{bottom:380.956775pt;}
.y22{bottom:382.559998pt;}
.yfa{bottom:382.719971pt;}
.y91{bottom:384.479980pt;}
.y10f{bottom:389.440002pt;}
.y16f{bottom:395.520020pt;}
.y142{bottom:396.000000pt;}
.yd1{bottom:396.796856pt;}
.y57{bottom:396.799988pt;}
.y21{bottom:398.239990pt;}
.yf9{bottom:398.880005pt;}
.y90{bottom:400.479980pt;}
.y10e{bottom:405.280029pt;}
.ye4{bottom:408.320007pt;}
.y141{bottom:412.000000pt;}
.y56{bottom:412.640015pt;}
.yd0{bottom:412.957902pt;}
.y16e{bottom:412.960022pt;}
.y20{bottom:414.239990pt;}
.yf8{bottom:414.719971pt;}
.y8f{bottom:416.479980pt;}
.ye3{bottom:420.799988pt;}
.y10d{bottom:421.119995pt;}
.ycf{bottom:427.028442pt;}
.y140{bottom:427.840027pt;}
.y55{bottom:428.479980pt;}
.yce{bottom:429.917052pt;}
.y1f{bottom:430.080017pt;}
.yf7{bottom:431.520020pt;}
.y8e{bottom:432.320007pt;}
.y10c{bottom:436.960022pt;}
.y13f{bottom:443.679993pt;}
.y54{bottom:444.320007pt;}
.y1e{bottom:445.760010pt;}
.y16d{bottom:445.919983pt;}
.ycd{bottom:446.078099pt;}
.y8d{bottom:448.000000pt;}
.yf6{bottom:448.320007pt;}
.y10b{bottom:452.960022pt;}
.yb5{bottom:455.039101pt;}
.y13e{bottom:459.840027pt;}
.ycc{bottom:460.150500pt;}
.y53{bottom:460.159973pt;}
.y1d{bottom:461.760010pt;}
.ycb{bottom:463.037290pt;}
.y8c{bottom:464.000000pt;}
.y10a{bottom:468.640015pt;}
.yb4{bottom:470.718720pt;}
.y13d{bottom:475.679993pt;}
.y52{bottom:476.000000pt;}
.y1c{bottom:477.599976pt;}
.y16c{bottom:477.760010pt;}
.yf5{bottom:478.400024pt;}
.yca{bottom:479.198295pt;}
.y8b{bottom:480.159973pt;}
.y109{bottom:484.640015pt;}
.yb3{bottom:486.719305pt;}
.y13c{bottom:491.520020pt;}
.yf4{bottom:491.679993pt;}
.y51{bottom:491.840027pt;}
.y8a{bottom:492.799988pt;}
.y1b{bottom:493.440002pt;}
.y16b{bottom:495.039978pt;}
.y194{bottom:498.239990pt;}
.y108{bottom:500.640015pt;}
.y88{bottom:501.119995pt;}
.yb2{bottom:502.555180pt;}
.y13b{bottom:507.359985pt;}
.y50{bottom:508.159973pt;}
.y1a{bottom:509.280029pt;}
.yba{bottom:509.915803pt;}
.y87{bottom:510.559998pt;}
.y16a{bottom:512.320007pt;}
.y107{bottom:516.479980pt;}
.yb1{bottom:518.395261pt;}
.y13a{bottom:523.200012pt;}
.y4f{bottom:523.840027pt;}
.y19{bottom:525.280029pt;}
.y169{bottom:528.159973pt;}
.y89{bottom:531.039978pt;}
.y106{bottom:532.479980pt;}
.yb0{bottom:534.239590pt;}
.y193{bottom:536.000000pt;}
.y139{bottom:539.039978pt;}
.y4e{bottom:539.679993pt;}
.y18{bottom:540.960022pt;}
.y168{bottom:543.840027pt;}
.y105{bottom:548.480011pt;}
.yaf{bottom:550.075465pt;}
.y138{bottom:555.040009pt;}
.y4d{bottom:555.679993pt;}
.y192{bottom:555.839996pt;}
.y17{bottom:556.799988pt;}
.y86{bottom:557.440002pt;}
.y167{bottom:560.799988pt;}
.yae{bottom:565.919795pt;}
.y137{bottom:571.040009pt;}
.y4c{bottom:571.359985pt;}
.y16{bottom:572.799988pt;}
.y85{bottom:573.279999pt;}
.y191{bottom:575.839996pt;}
.y166{bottom:577.119995pt;}
.y104{bottom:577.760010pt;}
.yad{bottom:582.076593pt;}
.y136{bottom:586.880005pt;}
.y4b{bottom:587.359985pt;}
.y15{bottom:588.480011pt;}
.y84{bottom:589.119995pt;}
.y165{bottom:593.760010pt;}
.y190{bottom:595.679993pt;}
.y135{bottom:602.880005pt;}
.y4a{bottom:603.200012pt;}
.y14{bottom:604.480011pt;}
.y83{bottom:604.959991pt;}
.y103{bottom:610.079987pt;}
.y164{bottom:610.239990pt;}
.yac{bottom:610.555848pt;}
.y18f{bottom:615.679993pt;}
.y134{bottom:618.559998pt;}
.y49{bottom:618.880005pt;}
.y82{bottom:620.959991pt;}
.yab{bottom:623.194979pt;}
.yd9{bottom:626.559998pt;}
.y163{bottom:627.040009pt;}
.y133{bottom:634.559998pt;}
.y48{bottom:634.880005pt;}
.y18e{bottom:635.519989pt;}
.y81{bottom:636.640015pt;}
.y13{bottom:639.200012pt;}
.yd8{bottom:642.399994pt;}
.y132{bottom:650.399994pt;}
.y47{bottom:650.720001pt;}
.y80{bottom:652.480011pt;}
.y162{bottom:652.799988pt;}
.y18d{bottom:655.359985pt;}
.y12{bottom:656.480011pt;}
.y131{bottom:666.079987pt;}
.y46{bottom:666.559998pt;}
.y7f{bottom:668.480011pt;}
.yd7{bottom:670.880005pt;}
.y11{bottom:673.600006pt;}
.y18c{bottom:675.200012pt;}
.y161{bottom:679.519989pt;}
.y130{bottom:682.079987pt;}
.y45{bottom:682.720001pt;}
.yd6{bottom:683.519989pt;}
.y7e{bottom:684.160004pt;}
.y10{bottom:688.000000pt;}
.y18b{bottom:695.040009pt;}
.y160{bottom:695.200012pt;}
.y12f{bottom:697.920013pt;}
.y44{bottom:698.880005pt;}
.y7d{bottom:700.160004pt;}
.yf{bottom:701.920013pt;}
.y15f{bottom:711.200012pt;}
.y43{bottom:714.720001pt;}
.y18a{bottom:715.040009pt;}
.y7c{bottom:716.000000pt;}
.ye{bottom:716.799988pt;}
.y15e{bottom:726.880005pt;}
.y42{bottom:730.559998pt;}
.y12e{bottom:731.040009pt;}
.yd{bottom:731.359985pt;}
.y7b{bottom:732.799988pt;}
.y189{bottom:734.880005pt;}
.yc{bottom:745.600006pt;}
.y41{bottom:746.399994pt;}
.y12d{bottom:746.880005pt;}
.y7a{bottom:748.959991pt;}
.y188{bottom:754.720001pt;}
.yc9{bottom:760.640229pt;}
.y78{bottom:761.600006pt;}
.y40{bottom:762.239990pt;}
.y12c{bottom:762.720001pt;}
.yb{bottom:764.320007pt;}
.y79{bottom:770.079987pt;}
.y76{bottom:770.559998pt;}
.y187{bottom:774.559998pt;}
.yc8{bottom:776.477795pt;}
.y3f{bottom:778.239990pt;}
.y12b{bottom:778.720001pt;}
.ya{bottom:778.880005pt;}
.y75{bottom:779.359985pt;}
.y9{bottom:788.799988pt;}
.yc7{bottom:792.315361pt;}
.y3e{bottom:793.760010pt;}
.y12a{bottom:794.399994pt;}
.y186{bottom:794.559998pt;}
.y15d{bottom:794.720001pt;}
.y77{bottom:800.000000pt;}
.yc6{bottom:808.159690pt;}
.y3d{bottom:808.960007pt;}
.y129{bottom:810.240005pt;}
.y15c{bottom:810.720001pt;}
.y185{bottom:814.399994pt;}
.y74{bottom:822.080002pt;}
.yc5{bottom:823.997256pt;}
.y8{bottom:824.160004pt;}
.y128{bottom:826.240005pt;}
.y15b{bottom:826.559998pt;}
.y184{bottom:834.240005pt;}
.y3c{bottom:837.600006pt;}
.y73{bottom:840.000000pt;}
.yc4{bottom:840.159127pt;}
.y127{bottom:841.919998pt;}
.y15a{bottom:842.240005pt;}
.y7{bottom:844.000000pt;}
.y71{bottom:848.479996pt;}
.y3b{bottom:853.440002pt;}
.y183{bottom:854.080002pt;}
.yc3{bottom:856.321019pt;}
.y70{bottom:857.759995pt;}
.y126{bottom:858.240005pt;}
.y159{bottom:859.199997pt;}
.y3a{bottom:869.600006pt;}
.yc2{bottom:870.236004pt;}
.yc1{bottom:873.118016pt;}
.y125{bottom:874.080002pt;}
.y182{bottom:874.240005pt;}
.ye2{bottom:875.520004pt;}
.y72{bottom:878.399994pt;}
.y39{bottom:885.759995pt;}
.yc0{bottom:887.517289pt;}
.y124{bottom:889.919998pt;}
.ybf{bottom:890.401513pt;}
.y6f{bottom:891.360001pt;}
.y181{bottom:894.080002pt;}
.y38{bottom:898.559998pt;}
.y6{bottom:904.800003pt;}
.y123{bottom:905.759995pt;}
.ybe{bottom:906.718794pt;}
.y6e{bottom:907.039993pt;}
.y37{bottom:907.839996pt;}
.y180{bottom:913.919998pt;}
.y122{bottom:921.600006pt;}
.ybd{bottom:922.880676pt;}
.y6d{bottom:923.039993pt;}
.y5{bottom:925.919998pt;}
.y36{bottom:930.080002pt;}
.y34{bottom:933.760002pt;}
.y121{bottom:937.440002pt;}
.ybc{bottom:938.718242pt;}
.y6c{bottom:938.879997pt;}
.y33{bottom:943.519997pt;}
.y4{bottom:948.639999pt;}
.y17f{bottom:953.760002pt;}
.y120{bottom:954.400002pt;}
.ybb{bottom:954.717971pt;}
.y6b{bottom:954.720001pt;}
.y35{bottom:958.559998pt;}
.ya4{bottom:998.076608pt;}
.y1{bottom:998.240002pt;}
.h26{height:16.483121pt;}
.h7{height:23.960760pt;}
.h8{height:24.600776pt;}
.h28{height:30.078872pt;}
.h30{height:34.720032pt;}
.h33{height:34.880005pt;}
.h32{height:39.360047pt;}
.h34{height:40.479981pt;}
.h2f{height:40.480042pt;}
.ha{height:41.588782pt;}
.h9{height:41.880804pt;}
.hb{height:42.708199pt;}
.h3{height:46.098272pt;}
.h27{height:46.188390pt;}
.h6{height:47.339068pt;}
.h1{height:50.106745pt;}
.h25{height:50.204677pt;}
.h36{height:50.458577pt;}
.h4{height:51.455435pt;}
.h2e{height:52.026669pt;}
.h35{height:52.026909pt;}
.h2d{height:52.026913pt;}
.h5{height:60.203009pt;}
.h10{height:62.389170pt;}
.h2b{height:62.511809pt;}
.h31{height:66.114147pt;}
.h2{height:68.435745pt;}
.h14{height:85.668878pt;}
.h2a{height:85.836353pt;}
.h21{height:86.948906pt;}
.h16{height:87.588798pt;}
.h2c{height:93.118211pt;}
.h29{height:93.300207pt;}
.h1b{height:112.548882pt;}
.h24{height:114.229010pt;}
.h1a{height:117.138252pt;}
.h22{height:117.138312pt;}
.h13{height:122.788870pt;}
.hf{height:122.788874pt;}
.h20{height:124.708918pt;}
.hc{height:125.988882pt;}
.h1f{height:127.268974pt;}
.h12{height:127.908870pt;}
.h1c{height:127.908990pt;}
.h17{height:129.828910pt;}
.h23{height:129.829038pt;}
.h15{height:130.468866pt;}
.h11{height:137.508874pt;}
.he{height:165.028862pt;}
.h18{height:165.028922pt;}
.hd{height:166.948878pt;}
.h19{height:167.349190pt;}
.h1e{height:167.989266pt;}
.h1d{height:198.948906pt;}
.h0{height:1056.000000pt;}
.wc{width:3.354033pt;}
.we{width:3.358597pt;}
.w6{width:4.957688pt;}
.w2{width:4.963226pt;}
.wa{width:6.236084pt;}
.w14{width:6.239990pt;}
.w8{width:6.873000pt;}
.w15{width:7.519989pt;}
.w12{width:7.520019pt;}
.w10{width:7.520020pt;}
.w3{width:7.521807pt;}
.w11{width:7.839996pt;}
.w13{width:7.840027pt;}
.wb{width:7.995590pt;}
.w9{width:8.481264pt;}
.wd{width:11.202990pt;}
.w1{width:28.474378pt;}
.wf{width:38.076420pt;}
.w7{width:52.798422pt;}
.w4{width:191.996796pt;}
.w5{width:269.441781pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x54{left:114.400002pt;}
.x1{left:123.360001pt;}
.x5b{left:131.839996pt;}
.xf{left:133.919998pt;}
.xe{left:141.119995pt;}
.x3a{left:146.242774pt;}
.x57{left:150.080002pt;}
.x33{left:151.836484pt;}
.x34{left:156.799709pt;}
.x35{left:164.321516pt;}
.x4b{left:167.199621pt;}
.x3{left:175.679993pt;}
.x3b{left:177.437980pt;}
.x32{left:202.399994pt;}
.x8{left:207.360001pt;}
.x49{left:211.844735pt;}
.x46{left:220.320413pt;}
.x4a{left:227.038068pt;}
.x16{left:233.759995pt;}
.x56{left:238.880005pt;}
.x10{left:245.119995pt;}
.x9{left:248.960007pt;}
.x19{left:250.720001pt;}
.x4{left:260.320007pt;}
.x1d{left:270.880005pt;}
.x5{left:275.200012pt;}
.x28{left:284.959991pt;}
.x15{left:287.359985pt;}
.x48{left:288.959244pt;}
.x14{left:292.320007pt;}
.x20{left:297.760010pt;}
.x1a{left:299.839996pt;}
.xc{left:300.799988pt;}
.x7{left:304.160004pt;}
.xd{left:306.079987pt;}
.x2c{left:315.200012pt;}
.xb{left:316.959991pt;}
.x1e{left:318.079987pt;}
.x5a{left:322.079987pt;}
.x30{left:335.359985pt;}
.x59{left:338.559998pt;}
.x22{left:339.519989pt;}
.x52{left:347.839996pt;}
.x4e{left:354.885854pt;}
.x36{left:356.157025pt;}
.x21{left:366.720001pt;}
.x2d{left:368.320007pt;}
.x2b{left:370.079987pt;}
.x11{left:372.640015pt;}
.xa{left:373.600006pt;}
.x47{left:376.472311pt;}
.x53{left:380.799988pt;}
.x18{left:383.359985pt;}
.x2{left:387.040009pt;}
.x23{left:388.799988pt;}
.x1b{left:391.679993pt;}
.x26{left:399.359985pt;}
.x25{left:405.760010pt;}
.x6{left:407.519989pt;}
.x12{left:431.839996pt;}
.x17{left:442.079987pt;}
.x29{left:445.119995pt;}
.x1f{left:450.239990pt;}
.x24{left:454.239990pt;}
.x2f{left:460.320007pt;}
.x61{left:468.640015pt;}
.x5c{left:470.239990pt;}
.x2a{left:472.640015pt;}
.x62{left:476.480011pt;}
.x5d{left:478.559998pt;}
.x63{left:483.200012pt;}
.x2e{left:484.480011pt;}
.x5e{left:486.399994pt;}
.x1c{left:512.320007pt;}
.x13{left:524.640015pt;}
.x27{left:526.400024pt;}
.x31{left:530.080017pt;}
.x4c{left:549.769484pt;}
.x4d{left:564.796170pt;}
.x3c{left:590.880983pt;}
.x5f{left:597.919983pt;}
.x3d{left:599.678423pt;}
.x3e{left:606.079486pt;}
.x3f{left:614.560750pt;}
.x4f{left:619.039978pt;}
.x60{left:620.799988pt;}
.x40{left:622.721274pt;}
.x37{left:625.598806pt;}
.x41{left:628.160117pt;}
.x38{left:630.556494pt;}
.x58{left:637.760010pt;}
.x42{left:643.679360pt;}
.x43{left:647.037957pt;}
.x50{left:649.760010pt;}
.x39{left:683.203674pt;}
.x44{left:685.274747pt;}
.x55{left:692.799988pt;}
.x51{left:706.080017pt;}
.x45{left:710.872377pt;}
}




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