
    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_13c1b81620c3fc1d31abd77a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_6ee328e9aab57f7ee46fcf28.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_09118aec8688ca2d7d1cac5f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bed8cc02b63737f9685fc38b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_9ff62870ba30e3282c7c89a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_acdffe305c74a95401d8ef1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976074;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_233b12b323c55860c9744e7d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.909180;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_ae777731f1627272935b3d90.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_a6f81754cfa7a9f48e17a1ec.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m3{transform:matrix(0.000000,-0.224825,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.224825,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.224825,0.250000,0.000000,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);}
.m2{transform:matrix(0.277995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277995,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.349658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349658,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.412219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412219,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.v1{vertical-align:20.880000px;}
.v5{vertical-align:64.080000px;}
.v4{vertical-align:76.320000px;}
.ls9{letter-spacing:-1.266000px;}
.lsd{letter-spacing:-0.960000px;}
.ls35{letter-spacing:-0.948000px;}
.ls34{letter-spacing:-0.832130px;}
.ls31{letter-spacing:-0.707269px;}
.ls6{letter-spacing:-0.463800px;}
.ls36{letter-spacing:-0.431400px;}
.ls18{letter-spacing:-0.326400px;}
.ls2b{letter-spacing:-0.234600px;}
.ls30{letter-spacing:-0.146683px;}
.ls5{letter-spacing:-0.132600px;}
.ls10{letter-spacing:-0.107400px;}
.ls8{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.023760px;}
.ls4{letter-spacing:0.038880px;}
.lsa{letter-spacing:0.060600px;}
.ls19{letter-spacing:0.066000px;}
.ls1a{letter-spacing:0.066960px;}
.ls1b{letter-spacing:0.075000px;}
.lsc{letter-spacing:0.078000px;}
.ls2f{letter-spacing:0.140400px;}
.ls26{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.150000px;}
.ls3c{letter-spacing:0.169200px;}
.lsb{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.269760px;}
.ls3b{letter-spacing:0.274800px;}
.ls3a{letter-spacing:0.376800px;}
.ls1c{letter-spacing:0.479400px;}
.ls2c{letter-spacing:0.627461px;}
.ls39{letter-spacing:0.654000px;}
.lsf{letter-spacing:0.660000px;}
.ls32{letter-spacing:0.738232px;}
.ls17{letter-spacing:0.797760px;}
.ls1d{letter-spacing:0.900000px;}
.ls2{letter-spacing:1.614240px;}
.ls13{letter-spacing:2.460960px;}
.ls15{letter-spacing:2.640960px;}
.ls14{letter-spacing:3.180960px;}
.ls28{letter-spacing:3.225600px;}
.ls16{letter-spacing:3.945600px;}
.ls2a{letter-spacing:7.380000px;}
.ls27{letter-spacing:8.094240px;}
.ls29{letter-spacing:10.069200px;}
.ls38{letter-spacing:12.186720px;}
.ls1f{letter-spacing:15.396960px;}
.ls12{letter-spacing:16.140960px;}
.ls11{letter-spacing:20.505600px;}
.ls1e{letter-spacing:21.225600px;}
.ls37{letter-spacing:42.570720px;}
.ls20{letter-spacing:113.385600px;}
.ls2d{letter-spacing:124.393657px;}
.ls33{letter-spacing:146.451042px;}
.ls25{letter-spacing:369.885600px;}
.ls21{letter-spacing:408.705600px;}
.ls22{letter-spacing:464.025600px;}
.ls23{letter-spacing:807.645600px;}
.ls24{letter-spacing:816.225600px;}
.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;}
}
.ws14{word-spacing:-23.216400px;}
.ws11{word-spacing:-19.378475px;}
.ws0{word-spacing:-19.077120px;}
.ws10{word-spacing:-17.427025px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws8{word-spacing:-14.165760px;}
.ws21{word-spacing:-13.882560px;}
.ws22{word-spacing:-13.780560px;}
.ws7{word-spacing:-13.685760px;}
.ws23{word-spacing:-13.674960px;}
.wsf{word-spacing:-13.580760px;}
.ws16{word-spacing:-13.529520px;}
.ws4{word-spacing:-13.505760px;}
.ws5{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.398360px;}
.ws15{word-spacing:-13.271160px;}
.wsb{word-spacing:-13.147200px;}
.ws1c{word-spacing:-12.774264px;}
.ws17{word-spacing:-10.857500px;}
.ws13{word-spacing:-9.187200px;}
.wsa{word-spacing:-8.864880px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:4.132080px;}
.wsd{word-spacing:6.233760px;}
.wse{word-spacing:6.953760px;}
.ws12{word-spacing:7.835040px;}
.ws18{word-spacing:63.575514px;}
.ws1d{word-spacing:74.799029px;}
.ws19{word-spacing:92.344692px;}
.ws1a{word-spacing:92.619894px;}
.ws1f{word-spacing:109.035613px;}
.ws1e{word-spacing:109.067991px;}
.ws1b{word-spacing:360.082489px;}
.ws20{word-spacing:423.981114px;}
._1d{margin-left:-532.918560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._21{margin-left:-207.538560px;}
._f{margin-left:-203.010240px;}
._18{margin-left:-201.453120px;}
._17{margin-left:-200.226720px;}
._20{margin-left:-190.074240px;}
._24{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._10{margin-left:-152.558400px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._23{margin-left:-144.748560px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._22{margin-left:-109.765680px;}
._1c{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._19{margin-left:-31.530240px;}
._36{margin-left:-14.291520px;}
._33{margin-left:-6.122880px;}
._34{margin-left:-4.219680px;}
._25{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._26{width:1.182000px;}
._27{width:2.608080px;}
._29{width:3.918960px;}
._28{width:5.451360px;}
._2f{width:6.504000px;}
._30{width:8.298480px;}
._2b{width:9.421920px;}
._2a{width:10.517760px;}
._2d{width:11.952000px;}
._35{width:13.472400px;}
._2c{width:14.613600px;}
._32{width:15.765120px;}
._2e{width:17.642400px;}
._47{width:23.857440px;}
._48{width:25.388400px;}
._37{width:32.987520px;}
._38{width:34.348560px;}
._44{width:48.644640px;}
._43{width:50.056560px;}
._46{width:54.633600px;}
._45{width:59.222160px;}
._39{width:104.110358px;}
._3b{width:111.802709px;}
._3a{width:116.649142px;}
._3e{width:122.561060px;}
._40{width:131.572551px;}
._3d{width:133.279036px;}
._3f{width:137.339323px;}
._42{width:156.069075px;}
._31{width:199.038240px;}
._3c{width:478.453199px;}
._41{width:563.468966px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fsa{font-size:38.554929px;}
.fs5{font-size:38.880000px;}
.fsc{font-size:41.101436px;}
.fs6{font-size:41.760000px;}
.fsb{font-size:48.042033px;}
.fse{font-size:48.357415px;}
.fs2{font-size:54.000000px;}
.fsd{font-size:56.523294px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:77.110728px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:85.745464px;}
.fs9{font-size:87.973049px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ydc{bottom:2.414043px;}
.y58{bottom:6.660000px;}
.y7d{bottom:6.705000px;}
.y10f{bottom:6.840000px;}
.yf1{bottom:7.020000px;}
.y12b{bottom:7.078886px;}
.y5a{bottom:7.200000px;}
.yf7{bottom:7.230000px;}
.y104{bottom:7.245000px;}
.y13a{bottom:8.328581px;}
.ydb{bottom:17.253812px;}
.y57{bottom:27.720000px;}
.y87{bottom:28.620000px;}
.ya8{bottom:28.794000px;}
.y85{bottom:28.800000px;}
.y9d{bottom:28.830000px;}
.y96{bottom:28.845000px;}
.yda{bottom:32.092168px;}
.y12a{bottom:35.595330px;}
.y139{bottom:41.879270px;}
.yd9{bottom:46.905511px;}
.y10a{bottom:48.780000px;}
.y83{bottom:49.860000px;}
.y129{bottom:54.809253px;}
.y6{bottom:60.660000px;}
.yd8{bottom:61.743866px;}
.y138{bottom:64.485188px;}
.y120{bottom:66.016859px;}
.y151{bottom:69.840000px;}
.yd7{bottom:76.583310px;}
.y12e{bottom:77.671366px;}
.y69{bottom:88.596000px;}
.y16c{bottom:88.776000px;}
.y121{bottom:89.137965px;}
.yd6{bottom:91.395565px;}
.y68{bottom:93.816000px;}
.y12f{bottom:101.887309px;}
.yd5{bottom:106.235008px;}
.y78{bottom:106.776000px;}
.y31{bottom:107.136000px;}
.y67{bottom:107.316000px;}
.y8d{bottom:110.016000px;}
.y77{bottom:111.996000px;}
.y122{bottom:112.282463px;}
.yd4{bottom:121.042913px;}
.y76{bottom:125.676000px;}
.y130{bottom:126.114584px;}
.y30{bottom:128.196000px;}
.y10c{bottom:133.236000px;}
.y123{bottom:135.420081px;}
.yd3{bottom:135.887794px;}
.y8c{bottom:136.296000px;}
.yde{bottom:142.236000px;}
.y66{bottom:145.116000px;}
.ya7{bottom:145.476000px;}
.y15c{bottom:147.096000px;}
.ydf{bottom:147.456000px;}
.y2f{bottom:149.256000px;}
.y131{bottom:150.228534px;}
.yd2{bottom:150.721799px;}
.y16b{bottom:155.370000px;}
.y8b{bottom:157.530000px;}
.y124{bottom:158.564579px;}
.ydd{bottom:159.330000px;}
.ya9{bottom:159.390000px;}
.y10b{bottom:159.510000px;}
.y65{bottom:160.230000px;}
.yd1{bottom:165.534054px;}
.y15b{bottom:168.150000px;}
.y109{bottom:168.690000px;}
.y2e{bottom:170.310000px;}
.y132{bottom:174.439620px;}
.y16a{bottom:176.430000px;}
.yd0{bottom:180.378935px;}
.y125{bottom:181.688436px;}
.y64{bottom:182.010000px;}
.ya6{bottom:188.670000px;}
.y15a{bottom:189.210000px;}
.y2d{bottom:191.370000px;}
.ycf{bottom:195.212941px;}
.y169{bottom:197.490000px;}
.y133{bottom:198.650707px;}
.y8a{bottom:200.730000px;}
.y63{bottom:203.970000px;}
.y126{bottom:204.826054px;}
.yce{bottom:210.025195px;}
.y159{bottom:210.270000px;}
.y2c{bottom:212.430000px;}
.y168{bottom:218.550000px;}
.y134{bottom:222.764657px;}
.y12c{bottom:223.590000px;}
.y11f{bottom:223.665000px;}
.y158{bottom:224.670000px;}
.ycd{bottom:224.870076px;}
.y62{bottom:225.750000px;}
.y127{bottom:227.970552px;}
.ya5{bottom:231.690000px;}
.y108{bottom:232.590000px;}
.y2b{bottom:233.490000px;}
.y167{bottom:239.610000px;}
.ycc{bottom:239.682331px;}
.y89{bottom:243.930000px;}
.y157{bottom:246.090000px;}
.y135{bottom:246.991932px;}
.y61{bottom:247.530000px;}
.y128{bottom:251.004969px;}
.ycb{bottom:254.516337px;}
.y2a{bottom:254.550000px;}
.y107{bottom:254.910000px;}
.y166{bottom:260.670000px;}
.y156{bottom:267.510000px;}
.y60{bottom:269.310000px;}
.yca{bottom:269.361218px;}
.y136{bottom:271.203018px;}
.ya4{bottom:274.890000px;}
.y29{bottom:275.610000px;}
.y106{bottom:277.230000px;}
.y165{bottom:281.730000px;}
.yc9{bottom:284.173473px;}
.y88{bottom:286.950000px;}
.y155{bottom:288.930000px;}
.y5f{bottom:291.090000px;}
.y137{bottom:295.316969px;}
.y28{bottom:296.670000px;}
.y105{bottom:299.370000px;}
.y164{bottom:302.790000px;}
.yb4{bottom:308.229765px;}
.yb5{bottom:308.229769px;}
.yb6{bottom:308.229773px;}
.yb7{bottom:308.229777px;}
.yb8{bottom:308.229782px;}
.yb9{bottom:308.229786px;}
.yba{bottom:308.229790px;}
.ybb{bottom:308.229794px;}
.ybc{bottom:308.229799px;}
.ybd{bottom:308.229803px;}
.ybe{bottom:308.229807px;}
.ybf{bottom:308.229811px;}
.yc0{bottom:308.229816px;}
.yc1{bottom:308.229820px;}
.yc2{bottom:308.229824px;}
.yc3{bottom:308.229829px;}
.yc4{bottom:308.229833px;}
.yc5{bottom:308.229837px;}
.yc6{bottom:308.229841px;}
.yc7{bottom:308.229846px;}
.y154{bottom:310.350000px;}
.y5e{bottom:312.870000px;}
.y27{bottom:317.730000px;}
.ya3{bottom:317.910000px;}
.y103{bottom:321.690000px;}
.y163{bottom:323.850000px;}
.y86{bottom:330.195000px;}
.y153{bottom:331.815000px;}
.y5d{bottom:334.695000px;}
.y26{bottom:338.835000px;}
.y102{bottom:344.055000px;}
.y162{bottom:344.955000px;}
.y152{bottom:353.415000px;}
.y5c{bottom:356.655000px;}
.y25{bottom:359.895000px;}
.ya2{bottom:361.155000px;}
.y161{bottom:366.015000px;}
.y101{bottom:366.375000px;}
.y82{bottom:373.215000px;}
.y150{bottom:375.555000px;}
.y5b{bottom:378.435000px;}
.y24{bottom:380.955000px;}
.y160{bottom:387.075000px;}
.y100{bottom:388.515000px;}
.y59{bottom:400.215000px;}
.y23{bottom:402.015000px;}
.ya1{bottom:404.355000px;}
.y15f{bottom:408.135000px;}
.yff{bottom:410.835000px;}
.y84{bottom:416.415000px;}
.yaa{bottom:422.094887px;}
.y56{bottom:422.535000px;}
.y22{bottom:423.075000px;}
.y15e{bottom:429.195000px;}
.yfe{bottom:433.155000px;}
.y21{bottom:444.135000px;}
.ya0{bottom:447.375000px;}
.y75{bottom:449.355000px;}
.y15d{bottom:450.255000px;}
.yab{bottom:455.079886px;}
.yfd{bottom:455.475000px;}
.y20{bottom:465.195000px;}
.y14f{bottom:466.455000px;}
.y54{bottom:471.315000px;}
.y55{bottom:476.535000px;}
.yfc{bottom:477.615000px;}
.y1f{bottom:486.255000px;}
.y14e{bottom:487.515000px;}
.yac{bottom:488.032259px;}
.y9f{bottom:490.575000px;}
.y53{bottom:492.375000px;}
.y11e{bottom:493.095000px;}
.yfb{bottom:499.935000px;}
.y1e{bottom:507.315000px;}
.y14d{bottom:508.575000px;}
.y52{bottom:513.435000px;}
.y11d{bottom:514.155000px;}
.yad{bottom:521.017258px;}
.yfa{bottom:522.255000px;}
.y1d{bottom:528.375000px;}
.y14c{bottom:529.635000px;}
.y9e{bottom:533.595000px;}
.y51{bottom:534.495000px;}
.y11c{bottom:535.215000px;}
.yf9{bottom:544.575000px;}
.y1c{bottom:549.435000px;}
.y14b{bottom:550.695000px;}
.yae{bottom:553.991382px;}
.y50{bottom:555.555000px;}
.y11b{bottom:556.275000px;}
.yf8{bottom:566.715000px;}
.y74{bottom:569.955000px;}
.y1b{bottom:570.495000px;}
.y14a{bottom:571.755000px;}
.y4f{bottom:576.615000px;}
.y9c{bottom:576.795000px;}
.y11a{bottom:577.335000px;}
.yaf{bottom:586.954631px;}
.yf6{bottom:589.035000px;}
.y73{bottom:590.835000px;}
.y1a{bottom:591.555000px;}
.y149{bottom:592.815000px;}
.y4e{bottom:597.705000px;}
.y119{bottom:598.425000px;}
.yf5{bottom:611.385000px;}
.y72{bottom:611.925000px;}
.y19{bottom:612.645000px;}
.y148{bottom:613.905000px;}
.y4d{bottom:618.765000px;}
.y118{bottom:619.485000px;}
.yb0{bottom:619.928755px;}
.y9b{bottom:620.025000px;}
.y71{bottom:632.985000px;}
.y18{bottom:633.705000px;}
.y147{bottom:634.965000px;}
.y4c{bottom:639.825000px;}
.yb1{bottom:652.892003px;}
.y70{bottom:654.045000px;}
.y17{bottom:654.765000px;}
.yf4{bottom:655.845000px;}
.y146{bottom:656.025000px;}
.y4b{bottom:660.705000px;}
.y9a{bottom:663.045000px;}
.y117{bottom:664.665000px;}
.y6f{bottom:675.105000px;}
.y16{bottom:675.825000px;}
.y145{bottom:677.085000px;}
.yf3{bottom:678.165000px;}
.y4a{bottom:681.765000px;}
.yb2{bottom:685.866127px;}
.y116{bottom:686.625000px;}
.y6e{bottom:696.165000px;}
.y15{bottom:696.885000px;}
.y144{bottom:698.145000px;}
.yf2{bottom:700.485000px;}
.y49{bottom:702.825000px;}
.y99{bottom:706.245000px;}
.y115{bottom:708.585000px;}
.y6d{bottom:717.225000px;}
.y14{bottom:717.945000px;}
.yb3{bottom:718.829376px;}
.y143{bottom:719.205000px;}
.yf0{bottom:722.805000px;}
.y48{bottom:723.885000px;}
.y114{bottom:730.545000px;}
.y6c{bottom:738.285000px;}
.y13{bottom:739.005000px;}
.y142{bottom:740.265000px;}
.y47{bottom:744.945000px;}
.y98{bottom:749.265000px;}
.y113{bottom:752.505000px;}
.yc8{bottom:759.296651px;}
.y141{bottom:761.325000px;}
.y12{bottom:762.405000px;}
.y6b{bottom:764.385000px;}
.y46{bottom:766.005000px;}
.yef{bottom:767.265000px;}
.y81{bottom:774.465000px;}
.y112{bottom:774.645000px;}
.y140{bottom:782.385000px;}
.y45{bottom:787.065000px;}
.y11{bottom:792.285000px;}
.y97{bottom:792.465000px;}
.yed{bottom:794.985000px;}
.y80{bottom:796.245000px;}
.y111{bottom:796.605000px;}
.yee{bottom:800.205000px;}
.y13f{bottom:803.445000px;}
.y44{bottom:808.125000px;}
.y10{bottom:813.345000px;}
.yec{bottom:816.045000px;}
.y7f{bottom:818.025000px;}
.y110{bottom:818.565000px;}
.y13e{bottom:824.505000px;}
.y43{bottom:829.185000px;}
.yf{bottom:834.405000px;}
.y95{bottom:835.485000px;}
.yeb{bottom:837.105000px;}
.y7e{bottom:839.805000px;}
.y10e{bottom:840.525000px;}
.y42{bottom:850.245000px;}
.y13c{bottom:854.565000px;}
.ye{bottom:855.465000px;}
.yea{bottom:858.165000px;}
.y13d{bottom:859.785000px;}
.y7c{bottom:861.585000px;}
.y10d{bottom:863.970000px;}
.y41{bottom:871.350000px;}
.y12d{bottom:871.440000px;}
.y13b{bottom:871.530000px;}
.yd{bottom:876.570000px;}
.y94{bottom:878.730000px;}
.ye9{bottom:879.270000px;}
.y7b{bottom:883.410000px;}
.y40{bottom:892.410000px;}
.ye8{bottom:896.370000px;}
.yc{bottom:897.630000px;}
.y7a{bottom:905.370000px;}
.y3f{bottom:913.470000px;}
.ye6{bottom:915.450000px;}
.yb{bottom:920.850000px;}
.y93{bottom:921.930000px;}
.y79{bottom:927.150000px;}
.y3e{bottom:934.530000px;}
.ye7{bottom:939.750000px;}
.ya{bottom:941.910000px;}
.ye5{bottom:950.010000px;}
.y3d{bottom:955.590000px;}
.y6a{bottom:960.810000px;}
.y9{bottom:963.870000px;}
.y92{bottom:964.950000px;}
.ye3{bottom:969.090000px;}
.y3c{bottom:976.650000px;}
.y8{bottom:986.190000px;}
.ye4{bottom:993.390000px;}
.y3b{bottom:997.710000px;}
.ye2{bottom:1003.470000px;}
.y91{bottom:1008.150000px;}
.y7{bottom:1011.390000px;}
.y3a{bottom:1018.770000px;}
.ye0{bottom:1022.550000px;}
.y39{bottom:1039.830000px;}
.ye1{bottom:1046.850000px;}
.y5{bottom:1050.090000px;}
.y90{bottom:1051.170000px;}
.y38{bottom:1060.890000px;}
.y37{bottom:1081.950000px;}
.y4{bottom:1082.310000px;}
.y8f{bottom:1094.370000px;}
.y36{bottom:1103.010000px;}
.y3{bottom:1114.530000px;}
.y35{bottom:1124.070000px;}
.y8e{bottom:1137.600000px;}
.y34{bottom:1145.160000px;}
.y2{bottom:1146.600000px;}
.y33{bottom:1166.220000px;}
.y1{bottom:1180.620000px;}
.y32{bottom:1194.120000px;}
.h15{height:21.045000px;}
.hf{height:21.060000px;}
.h11{height:21.096000px;}
.h23{height:21.240000px;}
.h20{height:21.420000px;}
.h2b{height:21.456000px;}
.hd{height:21.600000px;}
.h21{height:21.636000px;}
.h1d{height:38.347847px;}
.h12{height:38.671172px;}
.h9{height:39.810234px;}
.h26{height:40.880676px;}
.ha{height:42.120000px;}
.h17{height:43.020000px;}
.h16{height:43.200000px;}
.h18{height:43.236000px;}
.h25{height:47.783995px;}
.he{height:48.029766px;}
.h29{height:48.097683px;}
.h1e{height:51.792187px;}
.hb{height:52.260820px;}
.h28{height:56.219702px;}
.h8{height:59.439023px;}
.hc{height:59.551172px;}
.h10{height:60.690234px;}
.h6{height:61.189805px;}
.h22{height:63.180000px;}
.h14{height:64.245000px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h13{height:74.116406px;}
.h1a{height:76.696559px;}
.h4{height:83.787539px;}
.h2a{height:84.240000px;}
.h1b{height:85.284917px;}
.h2{height:86.255508px;}
.h1c{height:87.500537px;}
.h5{height:98.051133px;}
.h1f{height:150.436406px;}
.h24{height:262.570338px;}
.h27{height:308.924068px;}
.h19{height:780.449318px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w30{width:82.476000px;}
.w2c{width:82.836000px;}
.wc{width:106.920000px;}
.w15{width:109.440000px;}
.w22{width:115.056000px;}
.w1d{width:115.956000px;}
.w29{width:116.100000px;}
.w28{width:116.316000px;}
.w27{width:116.496000px;}
.w23{width:118.800000px;}
.w1e{width:119.700000px;}
.w14{width:120.816000px;}
.wa{width:125.136000px;}
.w9{width:126.900000px;}
.w20{width:130.680000px;}
.w1b{width:131.400000px;}
.w2e{width:137.700000px;}
.wb{width:137.736000px;}
.w12{width:147.060000px;}
.w26{width:148.140000px;}
.w21{width:155.010000px;}
.w1c{width:155.730000px;}
.w13{width:157.890000px;}
.w2f{width:187.950000px;}
.w8{width:190.650000px;}
.w4{width:191.010000px;}
.w10{width:221.115000px;}
.w25{width:222.375000px;}
.w1f{width:223.095000px;}
.w1a{width:223.455000px;}
.wf{width:227.730000px;}
.we{width:242.130000px;}
.wd{width:242.175000px;}
.w6{width:246.270000px;}
.w5{width:253.470000px;}
.w2d{width:308.415000px;}
.w17{width:368.175000px;}
.w18{width:387.975000px;}
.w11{width:535.035000px;}
.w2a{width:644.926703px;}
.w2b{width:648.888316px;}
.w7{width:690.405000px;}
.w19{width:708.297394px;}
.w24{width:745.710000px;}
.w16{width:756.330000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4d{left:6.277060px;}
.xb{left:8.100000px;}
.x4b{left:10.026710px;}
.x4c{left:16.026173px;}
.x4e{left:32.829435px;}
.x53{left:37.447926px;}
.x6{left:53.999987px;}
.x10{left:58.859987px;}
.x34{left:66.239987px;}
.x18{left:67.860000px;}
.x3f{left:73.440000px;}
.x5c{left:75.239987px;}
.x4f{left:77.713384px;}
.x54{left:82.241202px;}
.x46{left:85.320000px;}
.x59{left:88.020000px;}
.x15{left:90.000000px;}
.x1d{left:92.415000px;}
.xa{left:101.196000px;}
.x5d{left:102.275987px;}
.x7{left:107.135987px;}
.x52{left:122.115000px;}
.x4a{left:124.140000px;}
.x1e{left:133.677982px;}
.x8{left:143.495973px;}
.x9{left:148.355987px;}
.x2e{left:159.267145px;}
.x1f{left:166.631890px;}
.x5a{left:170.850000px;}
.x5{left:173.189987px;}
.x39{left:174.269987px;}
.x35{left:180.929987px;}
.x3a{left:195.329987px;}
.x20{left:199.730916px;}
.x55{left:216.477248px;}
.x21{left:232.684824px;}
.x50{left:250.891802px;}
.x22{left:265.614546px;}
.xf{left:270.029987px;}
.x44{left:278.129973px;}
.x45{left:282.989987px;}
.x2f{left:285.302239px;}
.x3{left:286.814987px;}
.x19{left:288.975000px;}
.xc{left:292.215000px;}
.x40{left:296.895000px;}
.x23{left:298.713572px;}
.x47{left:308.415000px;}
.x31{left:310.754987px;}
.x16{left:332.175000px;}
.x2{left:350.714987px;}
.x24{left:364.621388px;}
.x25{left:397.720415px;}
.x36{left:406.694987px;}
.x4{left:419.294987px;}
.x3d{left:422.174973px;}
.x3b{left:423.614987px;}
.x3e{left:427.034987px;}
.x41{left:428.295000px;}
.x26{left:430.674323px;}
.x1a{left:436.035000px;}
.x48{left:457.275000px;}
.x27{left:463.604044px;}
.x1{left:479.444987px;}
.x13{left:490.964973px;}
.x14{left:495.824987px;}
.x11{left:504.644973px;}
.x12{left:509.504987px;}
.x28{left:529.656979px;}
.x37{left:535.424987px;}
.xd{left:545.685000px;}
.x29{left:562.610887px;}
.x17{left:574.305000px;}
.x32{left:577.364973px;}
.x33{left:582.224987px;}
.x42{left:584.025000px;}
.x1b{left:593.925000px;}
.x2a{left:595.709913px;}
.x57{left:599.324973px;}
.x58{left:604.184987px;}
.x5b{left:617.145000px;}
.x2b{left:628.663821px;}
.x3c{left:654.044987px;}
.x2c{left:661.617729px;}
.x38{left:678.029987px;}
.xe{left:684.690000px;}
.x49{left:691.530000px;}
.x2d{left:694.728849px;}
.x43{left:699.990000px;}
.x1c{left:714.750000px;}
.x51{left:769.109987px;}
.x56{left:771.089987px;}
.x30{left:800.789987px;}
.x5e{left:839.309987px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.v1{vertical-align:18.560000pt;}
.v5{vertical-align:56.960000pt;}
.v4{vertical-align:67.840000pt;}
.ls9{letter-spacing:-1.125333pt;}
.lsd{letter-spacing:-0.853333pt;}
.ls35{letter-spacing:-0.842667pt;}
.ls34{letter-spacing:-0.739671pt;}
.ls31{letter-spacing:-0.628684pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls36{letter-spacing:-0.383467pt;}
.ls18{letter-spacing:-0.290133pt;}
.ls2b{letter-spacing:-0.208533pt;}
.ls30{letter-spacing:-0.130385pt;}
.ls5{letter-spacing:-0.117867pt;}
.ls10{letter-spacing:-0.095467pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.021120pt;}
.ls4{letter-spacing:0.034560pt;}
.lsa{letter-spacing:0.053867pt;}
.ls19{letter-spacing:0.058667pt;}
.ls1a{letter-spacing:0.059520pt;}
.ls1b{letter-spacing:0.066667pt;}
.lsc{letter-spacing:0.069333pt;}
.ls2f{letter-spacing:0.124800pt;}
.ls26{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.133333pt;}
.ls3c{letter-spacing:0.150400pt;}
.lsb{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.239787pt;}
.ls3b{letter-spacing:0.244267pt;}
.ls3a{letter-spacing:0.334933pt;}
.ls1c{letter-spacing:0.426133pt;}
.ls2c{letter-spacing:0.557743pt;}
.ls39{letter-spacing:0.581333pt;}
.lsf{letter-spacing:0.586667pt;}
.ls32{letter-spacing:0.656206pt;}
.ls17{letter-spacing:0.709120pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls2{letter-spacing:1.434880pt;}
.ls13{letter-spacing:2.187520pt;}
.ls15{letter-spacing:2.347520pt;}
.ls14{letter-spacing:2.827520pt;}
.ls28{letter-spacing:2.867200pt;}
.ls16{letter-spacing:3.507200pt;}
.ls2a{letter-spacing:6.560000pt;}
.ls27{letter-spacing:7.194880pt;}
.ls29{letter-spacing:8.950400pt;}
.ls38{letter-spacing:10.832640pt;}
.ls1f{letter-spacing:13.686187pt;}
.ls12{letter-spacing:14.347520pt;}
.ls11{letter-spacing:18.227200pt;}
.ls1e{letter-spacing:18.867200pt;}
.ls37{letter-spacing:37.840640pt;}
.ls20{letter-spacing:100.787200pt;}
.ls2d{letter-spacing:110.572139pt;}
.ls33{letter-spacing:130.178704pt;}
.ls25{letter-spacing:328.787200pt;}
.ls21{letter-spacing:363.293867pt;}
.ls22{letter-spacing:412.467200pt;}
.ls23{letter-spacing:717.907200pt;}
.ls24{letter-spacing:725.533867pt;}
.ws14{word-spacing:-20.636800pt;}
.ws11{word-spacing:-17.225311pt;}
.ws0{word-spacing:-16.957440pt;}
.ws10{word-spacing:-15.490689pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws8{word-spacing:-12.591787pt;}
.ws21{word-spacing:-12.340053pt;}
.ws22{word-spacing:-12.249387pt;}
.ws7{word-spacing:-12.165120pt;}
.ws23{word-spacing:-12.155520pt;}
.wsf{word-spacing:-12.071787pt;}
.ws16{word-spacing:-12.026240pt;}
.ws4{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.909653pt;}
.ws15{word-spacing:-11.796587pt;}
.wsb{word-spacing:-11.686400pt;}
.ws1c{word-spacing:-11.354902pt;}
.ws17{word-spacing:-9.651111pt;}
.ws13{word-spacing:-8.166400pt;}
.wsa{word-spacing:-7.879893pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:3.672960pt;}
.wsd{word-spacing:5.541120pt;}
.wse{word-spacing:6.181120pt;}
.ws12{word-spacing:6.964480pt;}
.ws18{word-spacing:56.511568pt;}
.ws1d{word-spacing:66.488026pt;}
.ws19{word-spacing:82.084170pt;}
.ws1a{word-spacing:82.328795pt;}
.ws1f{word-spacing:96.920545pt;}
.ws1e{word-spacing:96.949326pt;}
.ws1b{word-spacing:320.073323pt;}
.ws20{word-spacing:376.872101pt;}
._1d{margin-left:-473.705387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._21{margin-left:-184.478720pt;}
._f{margin-left:-180.453547pt;}
._18{margin-left:-179.069440pt;}
._17{margin-left:-177.979307pt;}
._20{margin-left:-168.954880pt;}
._24{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._10{margin-left:-135.607467pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._23{margin-left:-128.665387pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._22{margin-left:-97.569493pt;}
._1c{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._19{margin-left:-28.026880pt;}
._36{margin-left:-12.703573pt;}
._33{margin-left:-5.442560pt;}
._34{margin-left:-3.750827pt;}
._25{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._26{width:1.050667pt;}
._27{width:2.318293pt;}
._29{width:3.483520pt;}
._28{width:4.845653pt;}
._2f{width:5.781333pt;}
._30{width:7.376427pt;}
._2b{width:8.375040pt;}
._2a{width:9.349120pt;}
._2d{width:10.624000pt;}
._35{width:11.975467pt;}
._2c{width:12.989867pt;}
._32{width:14.013440pt;}
._2e{width:15.682133pt;}
._47{width:21.206613pt;}
._48{width:22.567467pt;}
._37{width:29.322240pt;}
._38{width:30.532053pt;}
._44{width:43.239680pt;}
._43{width:44.494720pt;}
._46{width:48.563200pt;}
._45{width:52.641920pt;}
._39{width:92.542541pt;}
._3b{width:99.380185pt;}
._3a{width:103.688126pt;}
._3e{width:108.943165pt;}
._40{width:116.953379pt;}
._3d{width:118.470254pt;}
._3f{width:122.079398pt;}
._42{width:138.728067pt;}
._31{width:176.922880pt;}
._3c{width:425.291732pt;}
._41{width:500.861303pt;}
.fsa{font-size:34.271048pt;}
.fs5{font-size:34.560000pt;}
.fsc{font-size:36.534610pt;}
.fs6{font-size:37.120000pt;}
.fsb{font-size:42.704030pt;}
.fse{font-size:42.984369pt;}
.fs2{font-size:48.000000pt;}
.fsd{font-size:50.242928pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:68.542870pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:76.218190pt;}
.fs9{font-size:78.198265pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:2.145816pt;}
.y58{bottom:5.920000pt;}
.y7d{bottom:5.960000pt;}
.y10f{bottom:6.080000pt;}
.yf1{bottom:6.240000pt;}
.y12b{bottom:6.292343pt;}
.y5a{bottom:6.400000pt;}
.yf7{bottom:6.426667pt;}
.y104{bottom:6.440000pt;}
.y13a{bottom:7.403183pt;}
.ydb{bottom:15.336722pt;}
.y57{bottom:24.640000pt;}
.y87{bottom:25.440000pt;}
.ya8{bottom:25.594667pt;}
.y85{bottom:25.600000pt;}
.y9d{bottom:25.626667pt;}
.y96{bottom:25.640000pt;}
.yda{bottom:28.526372pt;}
.y12a{bottom:31.640293pt;}
.y139{bottom:37.226018pt;}
.yd9{bottom:41.693787pt;}
.y10a{bottom:43.360000pt;}
.y83{bottom:44.320000pt;}
.y129{bottom:48.719336pt;}
.y6{bottom:53.920000pt;}
.yd8{bottom:54.883437pt;}
.y138{bottom:57.320167pt;}
.y120{bottom:58.681653pt;}
.y151{bottom:62.080000pt;}
.yd7{bottom:68.074053pt;}
.y12e{bottom:69.041214pt;}
.y69{bottom:78.752000pt;}
.y16c{bottom:78.912000pt;}
.y121{bottom:79.233747pt;}
.yd6{bottom:81.240502pt;}
.y68{bottom:83.392000pt;}
.y12f{bottom:90.566497pt;}
.yd5{bottom:94.431118pt;}
.y78{bottom:94.912000pt;}
.y31{bottom:95.232000pt;}
.y67{bottom:95.392000pt;}
.y8d{bottom:97.792000pt;}
.y77{bottom:99.552000pt;}
.y122{bottom:99.806634pt;}
.yd4{bottom:107.593700pt;}
.y76{bottom:111.712000pt;}
.y130{bottom:112.101852pt;}
.y30{bottom:113.952000pt;}
.y10c{bottom:118.432000pt;}
.y123{bottom:120.373405pt;}
.yd3{bottom:120.789150pt;}
.y8c{bottom:121.152000pt;}
.yde{bottom:126.432000pt;}
.y66{bottom:128.992000pt;}
.ya7{bottom:129.312000pt;}
.y15c{bottom:130.752000pt;}
.ydf{bottom:131.072000pt;}
.y2f{bottom:132.672000pt;}
.y131{bottom:133.536475pt;}
.yd2{bottom:133.974933pt;}
.y16b{bottom:138.106667pt;}
.y8b{bottom:140.026667pt;}
.y124{bottom:140.946292pt;}
.ydd{bottom:141.626667pt;}
.ya9{bottom:141.680000pt;}
.y10b{bottom:141.786667pt;}
.y65{bottom:142.426667pt;}
.yd1{bottom:147.141381pt;}
.y15b{bottom:149.466667pt;}
.y109{bottom:149.946667pt;}
.y2e{bottom:151.386667pt;}
.y132{bottom:155.057440pt;}
.y16a{bottom:156.826667pt;}
.yd0{bottom:160.336831pt;}
.y125{bottom:161.500832pt;}
.y64{bottom:161.786667pt;}
.ya6{bottom:167.706667pt;}
.y15a{bottom:168.186667pt;}
.y2d{bottom:170.106667pt;}
.ycf{bottom:173.522614pt;}
.y169{bottom:175.546667pt;}
.y133{bottom:176.578406pt;}
.y8a{bottom:178.426667pt;}
.y63{bottom:181.306667pt;}
.y126{bottom:182.067604pt;}
.yce{bottom:186.689063pt;}
.y159{bottom:186.906667pt;}
.y2c{bottom:188.826667pt;}
.y168{bottom:194.266667pt;}
.y134{bottom:198.013028pt;}
.y12c{bottom:198.746667pt;}
.y11f{bottom:198.813333pt;}
.y158{bottom:199.706667pt;}
.ycd{bottom:199.884512pt;}
.y62{bottom:200.666667pt;}
.y127{bottom:202.640491pt;}
.ya5{bottom:205.946667pt;}
.y108{bottom:206.746667pt;}
.y2b{bottom:207.546667pt;}
.y167{bottom:212.986667pt;}
.ycc{bottom:213.050961pt;}
.y89{bottom:216.826667pt;}
.y157{bottom:218.746667pt;}
.y135{bottom:219.548384pt;}
.y61{bottom:220.026667pt;}
.y128{bottom:223.115528pt;}
.ycb{bottom:226.236744pt;}
.y2a{bottom:226.266667pt;}
.y107{bottom:226.586667pt;}
.y166{bottom:231.706667pt;}
.y156{bottom:237.786667pt;}
.y60{bottom:239.386667pt;}
.yca{bottom:239.432194pt;}
.y136{bottom:241.069350pt;}
.ya4{bottom:244.346667pt;}
.y29{bottom:244.986667pt;}
.y106{bottom:246.426667pt;}
.y165{bottom:250.426667pt;}
.yc9{bottom:252.598642pt;}
.y88{bottom:255.066667pt;}
.y155{bottom:256.826667pt;}
.y5f{bottom:258.746667pt;}
.y137{bottom:262.503972pt;}
.y28{bottom:263.706667pt;}
.y105{bottom:266.106667pt;}
.y164{bottom:269.146667pt;}
.yb4{bottom:273.982013pt;}
.yb5{bottom:273.982017pt;}
.yb6{bottom:273.982021pt;}
.yb7{bottom:273.982024pt;}
.yb8{bottom:273.982028pt;}
.yb9{bottom:273.982032pt;}
.yba{bottom:273.982036pt;}
.ybb{bottom:273.982039pt;}
.ybc{bottom:273.982043pt;}
.ybd{bottom:273.982047pt;}
.ybe{bottom:273.982051pt;}
.ybf{bottom:273.982055pt;}
.yc0{bottom:273.982058pt;}
.yc1{bottom:273.982062pt;}
.yc2{bottom:273.982066pt;}
.yc3{bottom:273.982070pt;}
.yc4{bottom:273.982074pt;}
.yc5{bottom:273.982077pt;}
.yc6{bottom:273.982081pt;}
.yc7{bottom:273.982085pt;}
.y154{bottom:275.866667pt;}
.y5e{bottom:278.106667pt;}
.y27{bottom:282.426667pt;}
.ya3{bottom:282.586667pt;}
.y103{bottom:285.946667pt;}
.y163{bottom:287.866667pt;}
.y86{bottom:293.506667pt;}
.y153{bottom:294.946667pt;}
.y5d{bottom:297.506667pt;}
.y26{bottom:301.186667pt;}
.y102{bottom:305.826667pt;}
.y162{bottom:306.626667pt;}
.y152{bottom:314.146667pt;}
.y5c{bottom:317.026667pt;}
.y25{bottom:319.906667pt;}
.ya2{bottom:321.026667pt;}
.y161{bottom:325.346667pt;}
.y101{bottom:325.666667pt;}
.y82{bottom:331.746667pt;}
.y150{bottom:333.826667pt;}
.y5b{bottom:336.386667pt;}
.y24{bottom:338.626667pt;}
.y160{bottom:344.066667pt;}
.y100{bottom:345.346667pt;}
.y59{bottom:355.746667pt;}
.y23{bottom:357.346667pt;}
.ya1{bottom:359.426667pt;}
.y15f{bottom:362.786667pt;}
.yff{bottom:365.186667pt;}
.y84{bottom:370.146667pt;}
.yaa{bottom:375.195455pt;}
.y56{bottom:375.586667pt;}
.y22{bottom:376.066667pt;}
.y15e{bottom:381.506667pt;}
.yfe{bottom:385.026667pt;}
.y21{bottom:394.786667pt;}
.ya0{bottom:397.666667pt;}
.y75{bottom:399.426667pt;}
.y15d{bottom:400.226667pt;}
.yab{bottom:404.515454pt;}
.yfd{bottom:404.866667pt;}
.y20{bottom:413.506667pt;}
.y14f{bottom:414.626667pt;}
.y54{bottom:418.946667pt;}
.y55{bottom:423.586667pt;}
.yfc{bottom:424.546667pt;}
.y1f{bottom:432.226667pt;}
.y14e{bottom:433.346667pt;}
.yac{bottom:433.806453pt;}
.y9f{bottom:436.066667pt;}
.y53{bottom:437.666667pt;}
.y11e{bottom:438.306667pt;}
.yfb{bottom:444.386667pt;}
.y1e{bottom:450.946667pt;}
.y14d{bottom:452.066667pt;}
.y52{bottom:456.386667pt;}
.y11d{bottom:457.026667pt;}
.yad{bottom:463.126452pt;}
.yfa{bottom:464.226667pt;}
.y1d{bottom:469.666667pt;}
.y14c{bottom:470.786667pt;}
.y9e{bottom:474.306667pt;}
.y51{bottom:475.106667pt;}
.y11c{bottom:475.746667pt;}
.yf9{bottom:484.066667pt;}
.y1c{bottom:488.386667pt;}
.y14b{bottom:489.506667pt;}
.yae{bottom:492.436784pt;}
.y50{bottom:493.826667pt;}
.y11b{bottom:494.466667pt;}
.yf8{bottom:503.746667pt;}
.y74{bottom:506.626667pt;}
.y1b{bottom:507.106667pt;}
.y14a{bottom:508.226667pt;}
.y4f{bottom:512.546667pt;}
.y9c{bottom:512.706667pt;}
.y11a{bottom:513.186667pt;}
.yaf{bottom:521.737450pt;}
.yf6{bottom:523.586667pt;}
.y73{bottom:525.186667pt;}
.y1a{bottom:525.826667pt;}
.y149{bottom:526.946667pt;}
.y4e{bottom:531.293333pt;}
.y119{bottom:531.933333pt;}
.yf5{bottom:543.453333pt;}
.y72{bottom:543.933333pt;}
.y19{bottom:544.573333pt;}
.y148{bottom:545.693333pt;}
.y4d{bottom:550.013333pt;}
.y118{bottom:550.653333pt;}
.yb0{bottom:551.047782pt;}
.y9b{bottom:551.133333pt;}
.y71{bottom:562.653333pt;}
.y18{bottom:563.293333pt;}
.y147{bottom:564.413333pt;}
.y4c{bottom:568.733333pt;}
.yb1{bottom:580.348447pt;}
.y70{bottom:581.373333pt;}
.y17{bottom:582.013333pt;}
.yf4{bottom:582.973333pt;}
.y146{bottom:583.133333pt;}
.y4b{bottom:587.293333pt;}
.y9a{bottom:589.373333pt;}
.y117{bottom:590.813333pt;}
.y6f{bottom:600.093333pt;}
.y16{bottom:600.733333pt;}
.y145{bottom:601.853333pt;}
.yf3{bottom:602.813333pt;}
.y4a{bottom:606.013333pt;}
.yb2{bottom:609.658780pt;}
.y116{bottom:610.333333pt;}
.y6e{bottom:618.813333pt;}
.y15{bottom:619.453333pt;}
.y144{bottom:620.573333pt;}
.yf2{bottom:622.653333pt;}
.y49{bottom:624.733333pt;}
.y99{bottom:627.773333pt;}
.y115{bottom:629.853333pt;}
.y6d{bottom:637.533333pt;}
.y14{bottom:638.173333pt;}
.yb3{bottom:638.959445pt;}
.y143{bottom:639.293333pt;}
.yf0{bottom:642.493333pt;}
.y48{bottom:643.453333pt;}
.y114{bottom:649.373333pt;}
.y6c{bottom:656.253333pt;}
.y13{bottom:656.893333pt;}
.y142{bottom:658.013333pt;}
.y47{bottom:662.173333pt;}
.y98{bottom:666.013333pt;}
.y113{bottom:668.893333pt;}
.yc8{bottom:674.930356pt;}
.y141{bottom:676.733333pt;}
.y12{bottom:677.693333pt;}
.y6b{bottom:679.453333pt;}
.y46{bottom:680.893333pt;}
.yef{bottom:682.013333pt;}
.y81{bottom:688.413333pt;}
.y112{bottom:688.573333pt;}
.y140{bottom:695.453333pt;}
.y45{bottom:699.613333pt;}
.y11{bottom:704.253333pt;}
.y97{bottom:704.413333pt;}
.yed{bottom:706.653333pt;}
.y80{bottom:707.773333pt;}
.y111{bottom:708.093333pt;}
.yee{bottom:711.293333pt;}
.y13f{bottom:714.173333pt;}
.y44{bottom:718.333333pt;}
.y10{bottom:722.973333pt;}
.yec{bottom:725.373333pt;}
.y7f{bottom:727.133333pt;}
.y110{bottom:727.613333pt;}
.y13e{bottom:732.893333pt;}
.y43{bottom:737.053333pt;}
.yf{bottom:741.693333pt;}
.y95{bottom:742.653333pt;}
.yeb{bottom:744.093333pt;}
.y7e{bottom:746.493333pt;}
.y10e{bottom:747.133333pt;}
.y42{bottom:755.773333pt;}
.y13c{bottom:759.613333pt;}
.ye{bottom:760.413333pt;}
.yea{bottom:762.813333pt;}
.y13d{bottom:764.253333pt;}
.y7c{bottom:765.853333pt;}
.y10d{bottom:767.973333pt;}
.y41{bottom:774.533333pt;}
.y12d{bottom:774.613333pt;}
.y13b{bottom:774.693333pt;}
.yd{bottom:779.173333pt;}
.y94{bottom:781.093333pt;}
.ye9{bottom:781.573333pt;}
.y7b{bottom:785.253333pt;}
.y40{bottom:793.253333pt;}
.ye8{bottom:796.773333pt;}
.yc{bottom:797.893333pt;}
.y7a{bottom:804.773333pt;}
.y3f{bottom:811.973333pt;}
.ye6{bottom:813.733333pt;}
.yb{bottom:818.533333pt;}
.y93{bottom:819.493333pt;}
.y79{bottom:824.133333pt;}
.y3e{bottom:830.693333pt;}
.ye7{bottom:835.333333pt;}
.ya{bottom:837.253333pt;}
.ye5{bottom:844.453333pt;}
.y3d{bottom:849.413333pt;}
.y6a{bottom:854.053333pt;}
.y9{bottom:856.773333pt;}
.y92{bottom:857.733333pt;}
.ye3{bottom:861.413333pt;}
.y3c{bottom:868.133333pt;}
.y8{bottom:876.613333pt;}
.ye4{bottom:883.013333pt;}
.y3b{bottom:886.853333pt;}
.ye2{bottom:891.973333pt;}
.y91{bottom:896.133333pt;}
.y7{bottom:899.013333pt;}
.y3a{bottom:905.573333pt;}
.ye0{bottom:908.933333pt;}
.y39{bottom:924.293333pt;}
.ye1{bottom:930.533333pt;}
.y5{bottom:933.413333pt;}
.y90{bottom:934.373333pt;}
.y38{bottom:943.013333pt;}
.y37{bottom:961.733333pt;}
.y4{bottom:962.053333pt;}
.y8f{bottom:972.773333pt;}
.y36{bottom:980.453333pt;}
.y3{bottom:990.693333pt;}
.y35{bottom:999.173333pt;}
.y8e{bottom:1011.200000pt;}
.y34{bottom:1017.920000pt;}
.y2{bottom:1019.200000pt;}
.y33{bottom:1036.640000pt;}
.y1{bottom:1049.440000pt;}
.y32{bottom:1061.440000pt;}
.h15{height:18.706667pt;}
.hf{height:18.720000pt;}
.h11{height:18.752000pt;}
.h23{height:18.880000pt;}
.h20{height:19.040000pt;}
.h2b{height:19.072000pt;}
.hd{height:19.200000pt;}
.h21{height:19.232000pt;}
.h1d{height:34.086975pt;}
.h12{height:34.374375pt;}
.h9{height:35.386875pt;}
.h26{height:36.338379pt;}
.ha{height:37.440000pt;}
.h17{height:38.240000pt;}
.h16{height:38.400000pt;}
.h18{height:38.432000pt;}
.h25{height:42.474662pt;}
.he{height:42.693125pt;}
.h29{height:42.753496pt;}
.h1e{height:46.037500pt;}
.hb{height:46.454062pt;}
.h28{height:49.973068pt;}
.h8{height:52.834688pt;}
.hc{height:52.934375pt;}
.h10{height:53.946875pt;}
.h6{height:54.390938pt;}
.h22{height:56.160000pt;}
.h14{height:57.106667pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h13{height:65.881250pt;}
.h1a{height:68.174719pt;}
.h4{height:74.477812pt;}
.h2a{height:74.880000pt;}
.h1b{height:75.808815pt;}
.h2{height:76.671562pt;}
.h1c{height:77.778255pt;}
.h5{height:87.156562pt;}
.h1f{height:133.721250pt;}
.h24{height:233.395856pt;}
.h27{height:274.599172pt;}
.h19{height:693.732727pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w30{width:73.312000pt;}
.w2c{width:73.632000pt;}
.wc{width:95.040000pt;}
.w15{width:97.280000pt;}
.w22{width:102.272000pt;}
.w1d{width:103.072000pt;}
.w29{width:103.200000pt;}
.w28{width:103.392000pt;}
.w27{width:103.552000pt;}
.w23{width:105.600000pt;}
.w1e{width:106.400000pt;}
.w14{width:107.392000pt;}
.wa{width:111.232000pt;}
.w9{width:112.800000pt;}
.w20{width:116.160000pt;}
.w1b{width:116.800000pt;}
.w2e{width:122.400000pt;}
.wb{width:122.432000pt;}
.w12{width:130.720000pt;}
.w26{width:131.680000pt;}
.w21{width:137.786667pt;}
.w1c{width:138.426667pt;}
.w13{width:140.346667pt;}
.w2f{width:167.066667pt;}
.w8{width:169.466667pt;}
.w4{width:169.786667pt;}
.w10{width:196.546667pt;}
.w25{width:197.666667pt;}
.w1f{width:198.306667pt;}
.w1a{width:198.626667pt;}
.wf{width:202.426667pt;}
.we{width:215.226667pt;}
.wd{width:215.266667pt;}
.w6{width:218.906667pt;}
.w5{width:225.306667pt;}
.w2d{width:274.146667pt;}
.w17{width:327.266667pt;}
.w18{width:344.866667pt;}
.w11{width:475.586667pt;}
.w2a{width:573.268180pt;}
.w2b{width:576.789614pt;}
.w7{width:613.693333pt;}
.w19{width:629.597683pt;}
.w24{width:662.853333pt;}
.w16{width:672.293333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4d{left:5.579609pt;}
.xb{left:7.200000pt;}
.x4b{left:8.912631pt;}
.x4c{left:14.245487pt;}
.x4e{left:29.181720pt;}
.x53{left:33.287045pt;}
.x6{left:47.999988pt;}
.x10{left:52.319988pt;}
.x34{left:58.879988pt;}
.x18{left:60.320000pt;}
.x3f{left:65.280000pt;}
.x5c{left:66.879988pt;}
.x4f{left:69.078564pt;}
.x54{left:73.103291pt;}
.x46{left:75.840000pt;}
.x59{left:78.240000pt;}
.x15{left:80.000000pt;}
.x1d{left:82.146667pt;}
.xa{left:89.952000pt;}
.x5d{left:90.911988pt;}
.x7{left:95.231988pt;}
.x52{left:108.546667pt;}
.x4a{left:110.346667pt;}
.x1e{left:118.824873pt;}
.x8{left:127.551976pt;}
.x9{left:131.871988pt;}
.x2e{left:141.570795pt;}
.x1f{left:148.117235pt;}
.x5a{left:151.866667pt;}
.x5{left:153.946655pt;}
.x39{left:154.906655pt;}
.x35{left:160.826655pt;}
.x3a{left:173.626655pt;}
.x20{left:177.538592pt;}
.x55{left:192.424221pt;}
.x21{left:206.830955pt;}
.x50{left:223.014935pt;}
.x22{left:236.101819pt;}
.xf{left:240.026655pt;}
.x44{left:247.226643pt;}
.x45{left:251.546655pt;}
.x2f{left:253.601990pt;}
.x3{left:254.946655pt;}
.x19{left:256.866667pt;}
.xc{left:259.746667pt;}
.x40{left:263.906667pt;}
.x23{left:265.523175pt;}
.x47{left:274.146667pt;}
.x31{left:276.226655pt;}
.x16{left:295.266667pt;}
.x2{left:311.746655pt;}
.x24{left:324.107901pt;}
.x25{left:353.529257pt;}
.x36{left:361.506655pt;}
.x4{left:372.706655pt;}
.x3d{left:375.266643pt;}
.x3b{left:376.546655pt;}
.x3e{left:379.586655pt;}
.x41{left:380.706667pt;}
.x26{left:382.821620pt;}
.x1a{left:387.586667pt;}
.x48{left:406.466667pt;}
.x27{left:412.092484pt;}
.x1{left:426.173322pt;}
.x13{left:436.413310pt;}
.x14{left:440.733322pt;}
.x11{left:448.573310pt;}
.x12{left:452.893322pt;}
.x28{left:470.806203pt;}
.x37{left:475.933322pt;}
.xd{left:485.053333pt;}
.x29{left:500.098566pt;}
.x17{left:510.493333pt;}
.x32{left:513.213310pt;}
.x33{left:517.533322pt;}
.x42{left:519.133333pt;}
.x1b{left:527.933333pt;}
.x2a{left:529.519923pt;}
.x57{left:532.733310pt;}
.x58{left:537.053322pt;}
.x5b{left:548.573333pt;}
.x2b{left:558.812285pt;}
.x3c{left:581.373322pt;}
.x2c{left:588.104648pt;}
.x38{left:602.693322pt;}
.xe{left:608.613333pt;}
.x49{left:614.693333pt;}
.x2d{left:617.536754pt;}
.x43{left:622.213333pt;}
.x1c{left:635.333333pt;}
.x51{left:683.653322pt;}
.x56{left:685.413322pt;}
.x30{left:711.813322pt;}
.x5e{left:746.053322pt;}
}




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