
    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_0c32427efba3b03ae9fd3e05.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_a2fd68e9d6f3e90fe3b25cea.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_06c807915cd4ad27940a907b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_8a506ce31c6f2bd3698e8e1f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_f3293f8ea751fa24886d4951.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_30f3f00f37c889808452fea8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_214f5be2eb673bb95432b89b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_22fef2c394d3a73f1db9dd1d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_a4bede96f6f0a9ca52952518.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_6753121fb9dc2903c0792b63.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0bb0411071b7778d690ae151.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.710449;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:ffc;src:url('chunks/assets/font_fbd06d3416ade280d4c84143.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.860840;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_34d139db83641458f51558a7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.706543;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:ffe;src:url('chunks/assets/font_52fbfd78ba7fe685c96b7024.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.747070;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;}
.m6{transform:matrix(0.000000,-0.249815,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249815,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249815,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250119,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250119,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250119,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.222852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222852,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249881,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);}
.m5{transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255424,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258618,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-51.458765px;}
.v5{vertical-align:-24.363831px;}
.v1{vertical-align:-9.540000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.540000px;}
.v9{vertical-align:18.000000px;}
.v8{vertical-align:30.000000px;}
.v3{vertical-align:41.541430px;}
.v6{vertical-align:53.991815px;}
.v7{vertical-align:58.922637px;}
.lsf{letter-spacing:-2.420075px;}
.ls1a{letter-spacing:-1.980000px;}
.ls14{letter-spacing:-0.960000px;}
.ls10{letter-spacing:-0.874097px;}
.lsd{letter-spacing:-0.842004px;}
.ls2{letter-spacing:-0.696000px;}
.ls1b{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.432000px;}
.ls1{letter-spacing:-0.348000px;}
.ls18{letter-spacing:-0.186820px;}
.ls16{letter-spacing:-0.186441px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.222000px;}
.lsa{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.462000px;}
.ls4{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.600000px;}
.ls8{letter-spacing:0.852000px;}
.ls9{letter-spacing:0.878918px;}
.lsc{letter-spacing:18.261314px;}
.ls7{letter-spacing:22.737749px;}
.lsb{letter-spacing:51.229133px;}
.ls15{letter-spacing:210.354385px;}
.ls17{letter-spacing:251.149355px;}
.lse{letter-spacing:253.062461px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws5{word-spacing:-36.234000px;}
.ws4{word-spacing:-19.584000px;}
.ws2{word-spacing:-18.948000px;}
.ws7{word-spacing:-18.852000px;}
.ws1a{word-spacing:-18.570000px;}
.ws3{word-spacing:-18.348000px;}
.wsd{word-spacing:-17.811837px;}
.ws1c{word-spacing:-17.100000px;}
.ws16{word-spacing:-16.920000px;}
.ws15{word-spacing:-16.800000px;}
.wsb{word-spacing:-16.680000px;}
.ws17{word-spacing:-15.720000px;}
.ws1b{word-spacing:-14.700000px;}
.ws6{word-spacing:-11.676000px;}
.wsa{word-spacing:-11.058289px;}
.wse{word-spacing:-10.313679px;}
.ws9{word-spacing:-10.281912px;}
.ws8{word-spacing:-9.402994px;}
.ws10{word-spacing:-0.080743px;}
.ws11{word-spacing:-0.047140px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:12.544826px;}
.wsf{word-spacing:23.155388px;}
.ws13{word-spacing:23.722100px;}
.ws14{word-spacing:31.191066px;}
.ws18{word-spacing:177.096027px;}
.ws19{word-spacing:185.145047px;}
.wsc{word-spacing:758.926755px;}
._1f{margin-left:-335.868697px;}
._1d{margin-left:-326.245363px;}
._1e{margin-left:-323.844616px;}
._1c{margin-left:-314.037869px;}
._23{margin-left:-15.948000px;}
._4{margin-left:-3.360000px;}
._11{margin-left:-2.268000px;}
._0{margin-left:-1.224000px;}
._1{width:1.224000px;}
._2{width:2.256000px;}
._3{width:3.588000px;}
._7{width:5.412000px;}
._8{width:6.672000px;}
._6{width:7.722000px;}
._d{width:9.096000px;}
._e{width:10.632000px;}
._c{width:12.342000px;}
._b{width:13.662000px;}
._1b{width:14.676000px;}
._9{width:15.678000px;}
._a{width:16.998000px;}
._5{width:19.506000px;}
._10{width:20.544000px;}
._18{width:21.948000px;}
._12{width:23.298000px;}
._f{width:24.408000px;}
._13{width:25.920000px;}
._14{width:27.864000px;}
._19{width:28.944000px;}
._20{width:30.450000px;}
._21{width:32.994000px;}
._16{width:35.772000px;}
._17{width:36.894000px;}
._1a{width:39.787320px;}
._15{width:58.092000px;}
._25{width:89.652000px;}
._27{width:143.877955px;}
._26{width:161.382928px;}
._24{width:194.232000px;}
._29{width:201.237402px;}
._28{width:218.417639px;}
._22{width:718.731335px;}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(89,89,89);}
.fsa{font-size:41.254718px;}
.fs6{font-size:41.606169px;}
.fs3{font-size:42.000000px;}
.fs7{font-size:44.047607px;}
.fsc{font-size:47.139936px;}
.fs8{font-size:48.930482px;}
.fs5{font-size:60.000000px;}
.fsd{font-size:60.068846px;}
.fse{font-size:60.113267px;}
.fs10{font-size:60.162185px;}
.fsf{font-size:60.190900px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:66.063301px;}
.fs9{font-size:71.247348px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:80.743106px;}
.fs1{font-size:84.000000px;}
.yda{bottom:-80.862153px;}
.y0{bottom:0.000000px;}
.yc5{bottom:1.820906px;}
.y155{bottom:2.158162px;}
.y16a{bottom:2.162547px;}
.yea{bottom:3.285000px;}
.y179{bottom:3.315000px;}
.yec{bottom:3.570000px;}
.y176{bottom:3.585000px;}
.yc3{bottom:4.272516px;}
.yc7{bottom:4.882876px;}
.ycf{bottom:5.279968px;}
.y177{bottom:5.685000px;}
.yc1{bottom:6.739386px;}
.y153{bottom:7.913261px;}
.y168{bottom:7.929340px;}
.ydc{bottom:8.759075px;}
.ycd{bottom:9.891236px;}
.y106{bottom:12.600000px;}
.y76{bottom:19.456940px;}
.y121{bottom:20.685000px;}
.y134{bottom:20.715000px;}
.yb9{bottom:22.659594px;}
.ydd{bottom:23.489734px;}
.ycc{bottom:23.690003px;}
.yce{bottom:32.208081px;}
.ycb{bottom:34.847993px;}
.yd0{bottom:36.784313px;}
.ydb{bottom:38.460281px;}
.yba{bottom:41.631600px;}
.y166{bottom:42.482041px;}
.y105{bottom:44.400000px;}
.y151{bottom:46.324051px;}
.y4{bottom:46.837500px;}
.ybb{bottom:60.603607px;}
.y160{bottom:64.918469px;}
.y148{bottom:68.714983px;}
.ybc{bottom:80.185972px;}
.ybd{bottom:99.157978px;}
.y149{bottom:101.267262px;}
.y161{bottom:112.494510px;}
.ybe{bottom:118.124898px;}
.y1ae{bottom:131.137500px;}
.y14a{bottom:133.909464px;}
.ybf{bottom:137.096904px;}
.y11e{bottom:137.737500px;}
.yc0{bottom:156.099428px;}
.y7f{bottom:156.930000px;}
.y1ad{bottom:159.330000px;}
.y162{bottom:160.073554px;}
.yc9{bottom:160.830000px;}
.y186{bottom:164.745000px;}
.y14b{bottom:166.463242px;}
.y11d{bottom:166.830000px;}
.y103{bottom:173.475000px;}
.y7e{bottom:176.175000px;}
.y54{bottom:181.575000px;}
.y2b{bottom:181.875000px;}
.y185{bottom:183.675000px;}
.y140{bottom:186.075000px;}
.y1ac{bottom:187.275000px;}
.y102{bottom:190.875000px;}
.yc8{bottom:192.375000px;}
.yb8{bottom:192.450000px;}
.y11c{bottom:195.675000px;}
.yc6{bottom:197.358307px;}
.y14c{bottom:199.045496px;}
.y2a{bottom:200.775000px;}
.y184{bottom:202.575000px;}
.y9b{bottom:203.775000px;}
.y7d{bottom:204.975000px;}
.y1ab{bottom:206.175000px;}
.y163{bottom:207.679631px;}
.y11b{bottom:214.575000px;}
.y13f{bottom:215.175000px;}
.y29{bottom:219.975000px;}
.y101{bottom:222.375000px;}
.y9a{bottom:222.675000px;}
.y7c{bottom:224.175000px;}
.y1aa{bottom:225.075000px;}
.y53{bottom:229.875000px;}
.y183{bottom:231.375000px;}
.y14d{bottom:231.687698px;}
.y11a{bottom:233.775000px;}
.y28{bottom:238.875000px;}
.y99{bottom:241.875000px;}
.y13e{bottom:243.975000px;}
.y52{bottom:248.775000px;}
.y119{bottom:252.675000px;}
.y7b{bottom:252.975000px;}
.y1a9{bottom:253.275000px;}
.y164{bottom:255.255671px;}
.y27{bottom:257.775000px;}
.y13d{bottom:262.875000px;}
.y14e{bottom:264.239977px;}
.y51{bottom:267.675000px;}
.y98{bottom:270.675000px;}
.y118{bottom:271.575000px;}
.y7a{bottom:272.175000px;}
.y26{bottom:276.675000px;}
.yc2{bottom:277.544279px;}
.y182{bottom:278.175000px;}
.y13c{bottom:282.075000px;}
.y50{bottom:286.875000px;}
.y97{bottom:289.875000px;}
.y14f{bottom:296.882179px;}
.y181{bottom:297.375000px;}
.y117{bottom:299.475000px;}
.y1a8{bottom:300.075000px;}
.y79{bottom:301.275000px;}
.y165{bottom:302.831712px;}
.y25{bottom:305.475000px;}
.y13b{bottom:310.275000px;}
.y4f{bottom:315.675000px;}
.y180{bottom:316.275000px;}
.y96{bottom:317.775000px;}
.y78{bottom:320.175000px;}
.y1a7{bottom:327.975000px;}
.y13a{bottom:329.175000px;}
.y150{bottom:329.434458px;}
.y116{bottom:331.275000px;}
.y4e{bottom:334.875000px;}
.y95{bottom:336.675000px;}
.y17f{bottom:341.235000px;}
.y15e{bottom:342.120000px;}
.y75{bottom:344.550000px;}
.y1a6{bottom:347.205000px;}
.y24{bottom:352.620000px;}
.y4d{bottom:353.820000px;}
.y139{bottom:356.820000px;}
.y15d{bottom:361.005000px;}
.y77{bottom:364.005000px;}
.y94{bottom:365.505000px;}
.y1a5{bottom:366.120000px;}
.y17e{bottom:368.835000px;}
.y23{bottom:371.505000px;}
.yc4{bottom:374.876265px;}
.y4c{bottom:381.705000px;}
.y138{bottom:382.035000px;}
.y15c{bottom:388.920000px;}
.y22{bottom:390.420000px;}
.y1a4{bottom:394.005000px;}
.y17d{bottom:396.135000px;}
.y4b{bottom:400.620000px;}
.y74{bottom:403.620000px;}
.y15b{bottom:408.120000px;}
.yb7{bottom:408.420000px;}
.y137{bottom:409.035000px;}
.y21{bottom:409.320000px;}
.y93{bottom:412.620000px;}
.y1a3{bottom:412.920000px;}
.y4a{bottom:419.820000px;}
.y73{bottom:422.505000px;}
.y17c{bottom:423.435000px;}
.yef{bottom:424.320000px;}
.y15a{bottom:427.005000px;}
.y20{bottom:428.505000px;}
.y136{bottom:436.035000px;}
.yb6{bottom:436.320000px;}
.y49{bottom:438.705000px;}
.y1a2{bottom:441.120000px;}
.y72{bottom:441.705000px;}
.y92{bottom:444.120000px;}
.y159{bottom:445.920000px;}
.y17b{bottom:450.735000px;}
.yee{bottom:452.205000px;}
.yb5{bottom:455.505000px;}
.y1f{bottom:456.420000px;}
.y1a1{bottom:460.005000px;}
.y135{bottom:463.035000px;}
.y158{bottom:464.820000px;}
.y48{bottom:467.820000px;}
.y71{bottom:469.920000px;}
.yed{bottom:471.420000px;}
.yb4{bottom:474.420000px;}
.y1e{bottom:475.320000px;}
.y17a{bottom:478.335000px;}
.y1a0{bottom:478.920000px;}
.y47{bottom:486.705000px;}
.y133{bottom:490.035000px;}
.y157{bottom:493.005000px;}
.yb3{bottom:493.320000px;}
.y1d{bottom:494.205000px;}
.yeb{bottom:496.335000px;}
.y70{bottom:498.720000px;}
.y100{bottom:504.405000px;}
.y178{bottom:505.635000px;}
.y46{bottom:505.905000px;}
.y19f{bottom:506.820000px;}
.y156{bottom:510.150000px;}
.yb2{bottom:512.250000px;}
.y1c{bottom:522.450000px;}
.ye9{bottom:522.765000px;}
.y19e{bottom:526.050000px;}
.y6f{bottom:527.850000px;}
.yff{bottom:532.350000px;}
.y175{bottom:532.965000px;}
.y45{bottom:534.750000px;}
.yb1{bottom:540.450000px;}
.y1b{bottom:541.350000px;}
.y147{bottom:541.950000px;}
.y19d{bottom:544.950000px;}
.y132{bottom:547.050000px;}
.y152{bottom:547.958383px;}
.yfe{bottom:551.250000px;}
.y44{bottom:553.650000px;}
.y6e{bottom:556.950000px;}
.yb0{bottom:559.350000px;}
.y1a{bottom:560.250000px;}
.ye8{bottom:562.350000px;}
.y19c{bottom:563.850000px;}
.yfd{bottom:570.150000px;}
.y43{bottom:572.850000px;}
.y174{bottom:577.350000px;}
.yaf{bottom:578.250000px;}
.y131{bottom:582.150000px;}
.y6d{bottom:586.050000px;}
.y19{bottom:588.150000px;}
.yfc{bottom:589.350000px;}
.y19b{bottom:591.750000px;}
.y42{bottom:592.050000px;}
.yae{bottom:597.150000px;}
.ye7{bottom:597.450000px;}
.y130{bottom:601.050000px;}
.y18{bottom:607.350000px;}
.yfb{bottom:608.250000px;}
.y19a{bottom:610.950000px;}
.y115{bottom:611.850000px;}
.y173{bottom:612.450000px;}
.y6c{bottom:615.150000px;}
.ye6{bottom:616.650000px;}
.y12f{bottom:620.250000px;}
.y41{bottom:620.850000px;}
.yad{bottom:625.650000px;}
.y17{bottom:626.250000px;}
.y199{bottom:629.850000px;}
.y172{bottom:631.350000px;}
.y6b{bottom:634.050000px;}
.ye5{bottom:635.550000px;}
.yfa{bottom:636.150000px;}
.y12e{bottom:639.150000px;}
.y40{bottom:639.750000px;}
.y16{bottom:645.150000px;}
.y171{bottom:650.250000px;}
.y6a{bottom:652.950000px;}
.yac{bottom:653.250000px;}
.ye4{bottom:654.450000px;}
.yf9{bottom:655.050000px;}
.y198{bottom:657.750000px;}
.y12d{bottom:658.050000px;}
.y3f{bottom:658.650000px;}
.y170{bottom:669.450000px;}
.y69{bottom:671.850000px;}
.yab{bottom:672.150000px;}
.y15{bottom:673.050000px;}
.yf8{bottom:674.250000px;}
.y91{bottom:675.450000px;}
.y197{bottom:676.695000px;}
.y12c{bottom:676.995000px;}
.y3e{bottom:677.880000px;}
.y154{bottom:680.445559px;}
.ye3{bottom:682.380000px;}
.y1c0{bottom:686.880000px;}
.y16f{bottom:688.380000px;}
.y68{bottom:691.095000px;}
.y14{bottom:692.280000px;}
.yf7{bottom:693.195000px;}
.y90{bottom:694.695000px;}
.y3d{bottom:696.780000px;}
.yaa{bottom:700.380000px;}
.ye2{bottom:701.595000px;}
.y196{bottom:704.880000px;}
.y12b{bottom:705.195000px;}
.y16e{bottom:707.280000px;}
.y13{bottom:711.195000px;}
.y1bf{bottom:712.995000px;}
.y8f{bottom:713.595000px;}
.y67{bottom:718.995000px;}
.ye1{bottom:720.495000px;}
.yf6{bottom:721.095000px;}
.y195{bottom:723.780000px;}
.y12a{bottom:724.095000px;}
.y114{bottom:724.695000px;}
.y3c{bottom:725.595000px;}
.ya9{bottom:729.495000px;}
.y12{bottom:730.095000px;}
.y1be{bottom:731.880000px;}
.y8e{bottom:732.495000px;}
.y16d{bottom:735.495000px;}
.y66{bottom:737.880000px;}
.yf5{bottom:739.995000px;}
.y194{bottom:742.695000px;}
.y113{bottom:743.595000px;}
.ye0{bottom:748.380000px;}
.y11{bottom:748.995000px;}
.y1bd{bottom:751.095000px;}
.y8d{bottom:751.380000px;}
.y129{bottom:751.995000px;}
.y16c{bottom:752.595000px;}
.y65{bottom:756.780000px;}
.ya8{bottom:758.595000px;}
.y193{bottom:761.595000px;}
.ydf{bottom:767.280000px;}
.y10{bottom:768.195000px;}
.yf4{bottom:768.495000px;}
.y1bc{bottom:769.995000px;}
.y8c{bottom:770.580000px;}
.y128{bottom:770.880000px;}
.y112{bottom:772.080000px;}
.y3b{bottom:772.695000px;}
.y64{bottom:775.995000px;}
.y15f{bottom:784.350000px;}
.y16b{bottom:784.380000px;}
.y167{bottom:786.433704px;}
.yf{bottom:787.080000px;}
.ya7{bottom:787.380000px;}
.y1bb{bottom:788.880000px;}
.y8b{bottom:789.495000px;}
.y192{bottom:789.795000px;}
.yd9{bottom:791.850000px;}
.y63{bottom:794.880000px;}
.yf3{bottom:796.080000px;}
.y127{bottom:799.080000px;}
.y111{bottom:800.580000px;}
.ya6{bottom:806.295000px;}
.y191{bottom:808.695000px;}
.y3a{bottom:809.580000px;}
.yde{bottom:812.880000px;}
.y62{bottom:813.795000px;}
.yf2{bottom:814.995000px;}
.ye{bottom:815.880000px;}
.y8a{bottom:817.380000px;}
.y1ba{bottom:817.695000px;}
.y126{bottom:817.995000px;}
.ya5{bottom:825.495000px;}
.y190{bottom:827.580000px;}
.y61{bottom:832.695000px;}
.yf1{bottom:833.880000px;}
.y89{bottom:836.295000px;}
.y125{bottom:836.880000px;}
.y1b9{bottom:837.795000px;}
.ya4{bottom:844.425000px;}
.y39{bottom:846.525000px;}
.y110{bottom:847.425000px;}
.y60{bottom:851.925000px;}
.yf0{bottom:852.825000px;}
.y88{bottom:855.525000px;}
.yd8{bottom:859.725000px;}
.y124{bottom:862.140000px;}
.yd{bottom:863.025000px;}
.ya3{bottom:863.325000px;}
.y1b8{bottom:863.925000px;}
.y38{bottom:865.425000px;}
.y10f{bottom:866.325000px;}
.y5f{bottom:870.825000px;}
.y87{bottom:874.425000px;}
.y18f{bottom:874.725000px;}
.yd7{bottom:878.925000px;}
.y104{bottom:882.825000px;}
.y37{bottom:884.325000px;}
.y123{bottom:889.140000px;}
.y5e{bottom:889.725000px;}
.yc{bottom:890.925000px;}
.ya2{bottom:891.525000px;}
.y1b7{bottom:891.825000px;}
.y86{bottom:893.325000px;}
.y18e{bottom:893.625000px;}
.y10e{bottom:894.225000px;}
.y36{bottom:903.225000px;}
.yd6{bottom:906.825000px;}
.yb{bottom:910.125000px;}
.y10d{bottom:913.425000px;}
.y169{bottom:914.054782px;}
.y122{bottom:916.140000px;}
.y5d{bottom:917.925000px;}
.y146{bottom:918.825000px;}
.y1b6{bottom:919.725000px;}
.ya1{bottom:920.025000px;}
.y85{bottom:921.225000px;}
.y18d{bottom:921.525000px;}
.yd5{bottom:925.725000px;}
.y35{bottom:931.425000px;}
.y10c{bottom:932.325000px;}
.ya{bottom:937.725000px;}
.y84{bottom:940.425000px;}
.y120{bottom:943.140000px;}
.y5c{bottom:947.025000px;}
.y1b5{bottom:948.525000px;}
.y34{bottom:950.325000px;}
.yd4{bottom:953.625000px;}
.y83{bottom:959.325000px;}
.y18c{bottom:959.625000px;}
.y10b{bottom:960.225000px;}
.y9{bottom:965.625000px;}
.ya0{bottom:967.125000px;}
.y33{bottom:969.225000px;}
.yd3{bottom:972.825000px;}
.y5b{bottom:976.125000px;}
.y82{bottom:978.225000px;}
.y18b{bottom:978.525000px;}
.y10a{bottom:979.125000px;}
.y145{bottom:984.825000px;}
.y9f{bottom:986.025000px;}
.yd2{bottom:991.725000px;}
.y8{bottom:993.525000px;}
.y1b4{bottom:995.625000px;}
.y32{bottom:997.125000px;}
.y11f{bottom:1000.125000px;}
.y144{bottom:1003.725000px;}
.y5a{bottom:1005.225000px;}
.y18a{bottom:1006.425000px;}
.y109{bottom:1007.325000px;}
.y9e{bottom:1013.955000px;}
.y1b3{bottom:1014.570000px;}
.yca{bottom:1015.950000px;}
.y31{bottom:1016.370000px;}
.y189{bottom:1025.370000px;}
.y108{bottom:1026.255000px;}
.y143{bottom:1031.955000px;}
.y9d{bottom:1033.170000px;}
.y1b2{bottom:1033.455000px;}
.y59{bottom:1034.070000px;}
.y30{bottom:1035.255000px;}
.yd1{bottom:1040.070000px;}
.y7{bottom:1040.955000px;}
.y188{bottom:1044.570000px;}
.y1b1{bottom:1052.370000px;}
.y58{bottom:1052.955000px;}
.y81{bottom:1054.170000px;}
.y107{bottom:1054.455000px;}
.y142{bottom:1061.070000px;}
.y9c{bottom:1061.955000px;}
.y2f{bottom:1063.170000px;}
.y6{bottom:1064.955000px;}
.y1b0{bottom:1071.570000px;}
.y80{bottom:1073.070000px;}
.y187{bottom:1073.370000px;}
.y57{bottom:1081.170000px;}
.y2e{bottom:1082.070000px;}
.y5{bottom:1089.255000px;}
.y141{bottom:1090.170000px;}
.y1af{bottom:1090.455000px;}
.y56{bottom:1100.070000px;}
.y2d{bottom:1101.255000px;}
.y55{bottom:1119.255000px;}
.y2c{bottom:1120.170000px;}
.y3{bottom:1144.755000px;}
.y2{bottom:1174.455000px;}
.y1{bottom:1195.200000px;}
.he{height:12.842980px;}
.hd{height:17.140928px;}
.h10{height:17.751287px;}
.h24{height:25.478303px;}
.h2a{height:25.500037px;}
.h21{height:26.070000px;}
.h1b{height:26.085000px;}
.h30{height:26.107500px;}
.h31{height:26.370000px;}
.h1c{height:26.422500px;}
.hc{height:28.827712px;}
.hf{height:30.519313px;}
.h2e{height:30.885000px;}
.h11{height:33.902517px;}
.h14{height:40.469105px;}
.h23{height:41.971933px;}
.h29{height:42.057216px;}
.h1f{height:43.485000px;}
.h20{height:43.507500px;}
.h33{height:44.238281px;}
.h7{height:46.498936px;}
.h16{height:49.469594px;}
.h12{height:53.398025px;}
.h17{height:55.500286px;}
.h18{height:56.062840px;}
.h32{height:58.886719px;}
.h6{height:59.167969px;}
.ha{height:62.578125px;}
.h25{height:62.649929px;}
.h27{height:62.696258px;}
.h2d{height:62.747279px;}
.h2b{height:62.777228px;}
.h4{height:68.835938px;}
.h9{height:68.901958px;}
.h15{height:69.890587px;}
.h13{height:69.925376px;}
.h1{height:70.628906px;}
.h2{height:70.664062px;}
.h1e{height:73.804688px;}
.h5{height:75.093750px;}
.h2f{height:80.578125px;}
.h3{height:87.609375px;}
.h2c{height:109.689205px;}
.h19{height:110.054656px;}
.h8{height:110.443389px;}
.h1a{height:114.985478px;}
.h26{height:124.483991px;}
.hb{height:212.405087px;}
.h1d{height:247.230000px;}
.h28{height:351.308815px;}
.h22{height:364.204848px;}
.h0{height:1263.000000px;}
.w18{width:25.467147px;}
.w1b{width:25.487872px;}
.w5{width:59.893929px;}
.w6{width:64.813301px;}
.w4{width:70.798160px;}
.we{width:114.885000px;}
.wf{width:132.007500px;}
.w17{width:134.534930px;}
.w1a{width:134.674433px;}
.w11{width:136.507500px;}
.w10{width:141.022500px;}
.w1f{width:147.907500px;}
.w1c{width:147.919500px;}
.w1e{width:147.922500px;}
.w1d{width:147.960000px;}
.wc{width:150.900000px;}
.wb{width:151.215000px;}
.w9{width:163.827000px;}
.wa{width:168.660000px;}
.w14{width:171.915000px;}
.w12{width:171.927000px;}
.w15{width:171.945000px;}
.w13{width:171.960000px;}
.w8{width:238.494479px;}
.w7{width:317.999692px;}
.w16{width:599.407859px;}
.w19{width:599.910653px;}
.w2{width:644.994767px;}
.wd{width:654.495000px;}
.w3{width:680.097600px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x27{left:-80.705572px;}
.x0{left:0.000000px;}
.x10{left:2.408975px;}
.x22{left:3.459352px;}
.x28{left:4.637263px;}
.x14{left:6.528937px;}
.x3e{left:9.600000px;}
.x3c{left:11.700000px;}
.x41{left:14.100000px;}
.x47{left:15.300000px;}
.x5a{left:17.098085px;}
.x1f{left:18.170772px;}
.x18{left:21.241715px;}
.x17{left:23.957571px;}
.x1a{left:25.045728px;}
.x2f{left:26.445000px;}
.x31{left:29.700000px;}
.x64{left:34.785000px;}
.x37{left:37.200000px;}
.x44{left:38.700000px;}
.x33{left:41.385000px;}
.x4c{left:42.630000px;}
.x45{left:47.100000px;}
.x46{left:49.500000px;}
.x42{left:50.700000px;}
.x50{left:53.407500px;}
.x2d{left:54.637500px;}
.x3f{left:55.800000px;}
.x55{left:56.992500px;}
.x4a{left:61.192500px;}
.x4f{left:63.630000px;}
.x51{left:67.245000px;}
.x65{left:69.937500px;}
.x56{left:71.400000px;}
.x53{left:73.545000px;}
.x52{left:75.600000px;}
.x54{left:77.700000px;}
.x29{left:78.792818px;}
.x24{left:82.258426px;}
.x3{left:84.937500px;}
.x23{left:96.059144px;}
.x49{left:98.737500px;}
.xc{left:106.237500px;}
.x5{left:107.737500px;}
.x5c{left:111.337500px;}
.xa{left:113.137500px;}
.x21{left:117.214379px;}
.x1{left:119.737500px;}
.xe{left:124.050000px;}
.x2c{left:128.137500px;}
.xd{left:132.937500px;}
.x6{left:134.437500px;}
.x57{left:146.850000px;}
.x5e{left:149.835556px;}
.x66{left:160.230000px;}
.x59{left:166.287823px;}
.x60{left:169.289197px;}
.x20{left:173.221163px;}
.xb{left:174.645000px;}
.x1e{left:180.723337px;}
.x3b{left:183.375000px;}
.x62{left:205.575000px;}
.x48{left:208.275000px;}
.x3a{left:222.675000px;}
.x35{left:237.675000px;}
.x1c{left:247.575000px;}
.x39{left:251.175000px;}
.x2b{left:266.775000px;}
.x4b{left:271.275000px;}
.x13{left:273.375000px;}
.x1d{left:288.750000px;}
.x2e{left:292.575000px;}
.x3d{left:298.920000px;}
.x7{left:336.120000px;}
.x26{left:341.850000px;}
.x5d{left:349.320000px;}
.x9{left:358.320000px;}
.x8{left:373.905000px;}
.x2{left:396.720000px;}
.x58{left:405.091074px;}
.x5f{left:412.759917px;}
.x40{left:431.550000px;}
.x4d{left:444.150000px;}
.x4{left:446.550000px;}
.x30{left:461.850000px;}
.xf{left:470.791461px;}
.x43{left:573.195000px;}
.x2a{left:580.380000px;}
.x15{left:583.188226px;}
.x63{left:595.995000px;}
.x25{left:606.780000px;}
.x32{left:613.995000px;}
.x4e{left:616.995000px;}
.x36{left:643.687500px;}
.x38{left:649.995000px;}
.x12{left:673.125000px;}
.x16{left:705.316490px;}
.x19{left:708.580959px;}
.x34{left:717.225000px;}
.x5b{left:746.325000px;}
.x61{left:765.225000px;}
.x11{left:769.125000px;}
.x1b{left:786.570000px;}
@media print{
.v4{vertical-align:-45.741124pt;}
.v5{vertical-align:-21.656739pt;}
.v1{vertical-align:-8.480000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.480000pt;}
.v9{vertical-align:16.000000pt;}
.v8{vertical-align:26.666667pt;}
.v3{vertical-align:36.925716pt;}
.v6{vertical-align:47.992725pt;}
.v7{vertical-align:52.375678pt;}
.lsf{letter-spacing:-2.151178pt;}
.ls1a{letter-spacing:-1.760000pt;}
.ls14{letter-spacing:-0.853333pt;}
.ls10{letter-spacing:-0.776975pt;}
.lsd{letter-spacing:-0.748448pt;}
.ls2{letter-spacing:-0.618667pt;}
.ls1b{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls1{letter-spacing:-0.309333pt;}
.ls18{letter-spacing:-0.166062pt;}
.ls16{letter-spacing:-0.165726pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.197333pt;}
.lsa{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.410667pt;}
.ls4{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.533333pt;}
.ls8{letter-spacing:0.757333pt;}
.ls9{letter-spacing:0.781260pt;}
.lsc{letter-spacing:16.232279pt;}
.ls7{letter-spacing:20.211332pt;}
.lsb{letter-spacing:45.537007pt;}
.ls15{letter-spacing:186.981676pt;}
.ls17{letter-spacing:223.243871pt;}
.lse{letter-spacing:224.944410pt;}
.ws0{word-spacing:-64.000000pt;}
.ws5{word-spacing:-32.208000pt;}
.ws4{word-spacing:-17.408000pt;}
.ws2{word-spacing:-16.842667pt;}
.ws7{word-spacing:-16.757333pt;}
.ws1a{word-spacing:-16.506667pt;}
.ws3{word-spacing:-16.309333pt;}
.wsd{word-spacing:-15.832744pt;}
.ws1c{word-spacing:-15.200000pt;}
.ws16{word-spacing:-15.040000pt;}
.ws15{word-spacing:-14.933333pt;}
.wsb{word-spacing:-14.826667pt;}
.ws17{word-spacing:-13.973333pt;}
.ws1b{word-spacing:-13.066667pt;}
.ws6{word-spacing:-10.378667pt;}
.wsa{word-spacing:-9.829590pt;}
.wse{word-spacing:-9.167715pt;}
.ws9{word-spacing:-9.139477pt;}
.ws8{word-spacing:-8.358217pt;}
.ws10{word-spacing:-0.071772pt;}
.ws11{word-spacing:-0.041902pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:11.150957pt;}
.wsf{word-spacing:20.582567pt;}
.ws13{word-spacing:21.086311pt;}
.ws14{word-spacing:27.725392pt;}
.ws18{word-spacing:157.418691pt;}
.ws19{word-spacing:164.573375pt;}
.wsc{word-spacing:674.601560pt;}
._1f{margin-left:-298.549953pt;}
._1d{margin-left:-289.995878pt;}
._1e{margin-left:-287.861881pt;}
._1c{margin-left:-279.144773pt;}
._23{margin-left:-14.176000pt;}
._4{margin-left:-2.986667pt;}
._11{margin-left:-2.016000pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.088000pt;}
._2{width:2.005333pt;}
._3{width:3.189333pt;}
._7{width:4.810667pt;}
._8{width:5.930667pt;}
._6{width:6.864000pt;}
._d{width:8.085333pt;}
._e{width:9.450667pt;}
._c{width:10.970667pt;}
._b{width:12.144000pt;}
._1b{width:13.045333pt;}
._9{width:13.936000pt;}
._a{width:15.109333pt;}
._5{width:17.338667pt;}
._10{width:18.261333pt;}
._18{width:19.509333pt;}
._12{width:20.709333pt;}
._f{width:21.696000pt;}
._13{width:23.040000pt;}
._14{width:24.768000pt;}
._19{width:25.728000pt;}
._20{width:27.066667pt;}
._21{width:29.328000pt;}
._16{width:31.797333pt;}
._17{width:32.794667pt;}
._1a{width:35.366506pt;}
._15{width:51.637333pt;}
._25{width:79.690667pt;}
._27{width:127.891516pt;}
._26{width:143.451492pt;}
._24{width:172.650667pt;}
._29{width:178.877691pt;}
._28{width:194.149013pt;}
._22{width:638.872298pt;}
.fsa{font-size:36.670860pt;}
.fs6{font-size:36.983261pt;}
.fs3{font-size:37.333333pt;}
.fs7{font-size:39.153428pt;}
.fsc{font-size:41.902166pt;}
.fs8{font-size:43.493762pt;}
.fs5{font-size:53.333333pt;}
.fsd{font-size:53.394530pt;}
.fse{font-size:53.434015pt;}
.fs10{font-size:53.477498pt;}
.fsf{font-size:53.503022pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:58.722934pt;}
.fs9{font-size:63.330976pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:71.771650pt;}
.fs1{font-size:74.666667pt;}
.yda{bottom:-71.877470pt;}
.y0{bottom:0.000000pt;}
.yc5{bottom:1.618583pt;}
.y155{bottom:1.918366pt;}
.y16a{bottom:1.922264pt;}
.yea{bottom:2.920000pt;}
.y179{bottom:2.946667pt;}
.yec{bottom:3.173333pt;}
.y176{bottom:3.186667pt;}
.yc3{bottom:3.797792pt;}
.yc7{bottom:4.340334pt;}
.ycf{bottom:4.693305pt;}
.y177{bottom:5.053333pt;}
.yc1{bottom:5.990565pt;}
.y153{bottom:7.034010pt;}
.y168{bottom:7.048302pt;}
.ydc{bottom:7.785844pt;}
.ycd{bottom:8.792210pt;}
.y106{bottom:11.200000pt;}
.y76{bottom:17.295058pt;}
.y121{bottom:18.386667pt;}
.y134{bottom:18.413333pt;}
.yb9{bottom:20.141862pt;}
.ydd{bottom:20.879763pt;}
.ycc{bottom:21.057780pt;}
.yce{bottom:28.629405pt;}
.ycb{bottom:30.975994pt;}
.yd0{bottom:32.697167pt;}
.ydb{bottom:34.186916pt;}
.yba{bottom:37.005867pt;}
.y166{bottom:37.761814pt;}
.y105{bottom:39.466667pt;}
.y151{bottom:41.176934pt;}
.y4{bottom:41.633333pt;}
.ybb{bottom:53.869872pt;}
.y160{bottom:57.705306pt;}
.y148{bottom:61.079985pt;}
.ybc{bottom:71.276420pt;}
.ybd{bottom:88.140425pt;}
.y149{bottom:90.015344pt;}
.y161{bottom:99.995120pt;}
.ybe{bottom:104.999909pt;}
.y1ae{bottom:116.566667pt;}
.y14a{bottom:119.030635pt;}
.ybf{bottom:121.863915pt;}
.y11e{bottom:122.433333pt;}
.yc0{bottom:138.755047pt;}
.y7f{bottom:139.493333pt;}
.y1ad{bottom:141.626667pt;}
.y162{bottom:142.287604pt;}
.yc9{bottom:142.960000pt;}
.y186{bottom:146.440000pt;}
.y14b{bottom:147.967326pt;}
.y11d{bottom:148.293333pt;}
.y103{bottom:154.200000pt;}
.y7e{bottom:156.600000pt;}
.y54{bottom:161.400000pt;}
.y2b{bottom:161.666667pt;}
.y185{bottom:163.266667pt;}
.y140{bottom:165.400000pt;}
.y1ac{bottom:166.466667pt;}
.y102{bottom:169.666667pt;}
.yc8{bottom:171.000000pt;}
.yb8{bottom:171.066667pt;}
.y11c{bottom:173.933333pt;}
.yc6{bottom:175.429606pt;}
.y14c{bottom:176.929329pt;}
.y2a{bottom:178.466667pt;}
.y184{bottom:180.066667pt;}
.y9b{bottom:181.133333pt;}
.y7d{bottom:182.200000pt;}
.y1ab{bottom:183.266667pt;}
.y163{bottom:184.604116pt;}
.y11b{bottom:190.733333pt;}
.y13f{bottom:191.266667pt;}
.y29{bottom:195.533333pt;}
.y101{bottom:197.666667pt;}
.y9a{bottom:197.933333pt;}
.y7c{bottom:199.266667pt;}
.y1aa{bottom:200.066667pt;}
.y53{bottom:204.333333pt;}
.y183{bottom:205.666667pt;}
.y14d{bottom:205.944620pt;}
.y11a{bottom:207.800000pt;}
.y28{bottom:212.333333pt;}
.y99{bottom:215.000000pt;}
.y13e{bottom:216.866667pt;}
.y52{bottom:221.133333pt;}
.y119{bottom:224.600000pt;}
.y7b{bottom:224.866667pt;}
.y1a9{bottom:225.133333pt;}
.y164{bottom:226.893930pt;}
.y27{bottom:229.133333pt;}
.y13d{bottom:233.666667pt;}
.y14e{bottom:234.879979pt;}
.y51{bottom:237.933333pt;}
.y98{bottom:240.600000pt;}
.y118{bottom:241.400000pt;}
.y7a{bottom:241.933333pt;}
.y26{bottom:245.933333pt;}
.yc2{bottom:246.706026pt;}
.y182{bottom:247.266667pt;}
.y13c{bottom:250.733333pt;}
.y50{bottom:255.000000pt;}
.y97{bottom:257.666667pt;}
.y14f{bottom:263.895270pt;}
.y181{bottom:264.333333pt;}
.y117{bottom:266.200000pt;}
.y1a8{bottom:266.733333pt;}
.y79{bottom:267.800000pt;}
.y165{bottom:269.183744pt;}
.y25{bottom:271.533333pt;}
.y13b{bottom:275.800000pt;}
.y4f{bottom:280.600000pt;}
.y180{bottom:281.133333pt;}
.y96{bottom:282.466667pt;}
.y78{bottom:284.600000pt;}
.y1a7{bottom:291.533333pt;}
.y13a{bottom:292.600000pt;}
.y150{bottom:292.830629pt;}
.y116{bottom:294.466667pt;}
.y4e{bottom:297.666667pt;}
.y95{bottom:299.266667pt;}
.y17f{bottom:303.320000pt;}
.y15e{bottom:304.106667pt;}
.y75{bottom:306.266667pt;}
.y1a6{bottom:308.626667pt;}
.y24{bottom:313.440000pt;}
.y4d{bottom:314.506667pt;}
.y139{bottom:317.173333pt;}
.y15d{bottom:320.893333pt;}
.y77{bottom:323.560000pt;}
.y94{bottom:324.893333pt;}
.y1a5{bottom:325.440000pt;}
.y17e{bottom:327.853333pt;}
.y23{bottom:330.226667pt;}
.yc4{bottom:333.223347pt;}
.y4c{bottom:339.293333pt;}
.y138{bottom:339.586667pt;}
.y15c{bottom:345.706667pt;}
.y22{bottom:347.040000pt;}
.y1a4{bottom:350.226667pt;}
.y17d{bottom:352.120000pt;}
.y4b{bottom:356.106667pt;}
.y74{bottom:358.773333pt;}
.y15b{bottom:362.773333pt;}
.yb7{bottom:363.040000pt;}
.y137{bottom:363.586667pt;}
.y21{bottom:363.840000pt;}
.y93{bottom:366.773333pt;}
.y1a3{bottom:367.040000pt;}
.y4a{bottom:373.173333pt;}
.y73{bottom:375.560000pt;}
.y17c{bottom:376.386667pt;}
.yef{bottom:377.173333pt;}
.y15a{bottom:379.560000pt;}
.y20{bottom:380.893333pt;}
.y136{bottom:387.586667pt;}
.yb6{bottom:387.840000pt;}
.y49{bottom:389.960000pt;}
.y1a2{bottom:392.106667pt;}
.y72{bottom:392.626667pt;}
.y92{bottom:394.773333pt;}
.y159{bottom:396.373333pt;}
.y17b{bottom:400.653333pt;}
.yee{bottom:401.960000pt;}
.yb5{bottom:404.893333pt;}
.y1f{bottom:405.706667pt;}
.y1a1{bottom:408.893333pt;}
.y135{bottom:411.586667pt;}
.y158{bottom:413.173333pt;}
.y48{bottom:415.840000pt;}
.y71{bottom:417.706667pt;}
.yed{bottom:419.040000pt;}
.yb4{bottom:421.706667pt;}
.y1e{bottom:422.506667pt;}
.y17a{bottom:425.186667pt;}
.y1a0{bottom:425.706667pt;}
.y47{bottom:432.626667pt;}
.y133{bottom:435.586667pt;}
.y157{bottom:438.226667pt;}
.yb3{bottom:438.506667pt;}
.y1d{bottom:439.293333pt;}
.yeb{bottom:441.186667pt;}
.y70{bottom:443.306667pt;}
.y100{bottom:448.360000pt;}
.y178{bottom:449.453333pt;}
.y46{bottom:449.693333pt;}
.y19f{bottom:450.506667pt;}
.y156{bottom:453.466667pt;}
.yb2{bottom:455.333333pt;}
.y1c{bottom:464.400000pt;}
.ye9{bottom:464.680000pt;}
.y19e{bottom:467.600000pt;}
.y6f{bottom:469.200000pt;}
.yff{bottom:473.200000pt;}
.y175{bottom:473.746667pt;}
.y45{bottom:475.333333pt;}
.yb1{bottom:480.400000pt;}
.y1b{bottom:481.200000pt;}
.y147{bottom:481.733333pt;}
.y19d{bottom:484.400000pt;}
.y132{bottom:486.266667pt;}
.y152{bottom:487.074119pt;}
.yfe{bottom:490.000000pt;}
.y44{bottom:492.133333pt;}
.y6e{bottom:495.066667pt;}
.yb0{bottom:497.200000pt;}
.y1a{bottom:498.000000pt;}
.ye8{bottom:499.866667pt;}
.y19c{bottom:501.200000pt;}
.yfd{bottom:506.800000pt;}
.y43{bottom:509.200000pt;}
.y174{bottom:513.200000pt;}
.yaf{bottom:514.000000pt;}
.y131{bottom:517.466667pt;}
.y6d{bottom:520.933333pt;}
.y19{bottom:522.800000pt;}
.yfc{bottom:523.866667pt;}
.y19b{bottom:526.000000pt;}
.y42{bottom:526.266667pt;}
.yae{bottom:530.800000pt;}
.ye7{bottom:531.066667pt;}
.y130{bottom:534.266667pt;}
.y18{bottom:539.866667pt;}
.yfb{bottom:540.666667pt;}
.y19a{bottom:543.066667pt;}
.y115{bottom:543.866667pt;}
.y173{bottom:544.400000pt;}
.y6c{bottom:546.800000pt;}
.ye6{bottom:548.133333pt;}
.y12f{bottom:551.333333pt;}
.y41{bottom:551.866667pt;}
.yad{bottom:556.133333pt;}
.y17{bottom:556.666667pt;}
.y199{bottom:559.866667pt;}
.y172{bottom:561.200000pt;}
.y6b{bottom:563.600000pt;}
.ye5{bottom:564.933333pt;}
.yfa{bottom:565.466667pt;}
.y12e{bottom:568.133333pt;}
.y40{bottom:568.666667pt;}
.y16{bottom:573.466667pt;}
.y171{bottom:578.000000pt;}
.y6a{bottom:580.400000pt;}
.yac{bottom:580.666667pt;}
.ye4{bottom:581.733333pt;}
.yf9{bottom:582.266667pt;}
.y198{bottom:584.666667pt;}
.y12d{bottom:584.933333pt;}
.y3f{bottom:585.466667pt;}
.y170{bottom:595.066667pt;}
.y69{bottom:597.200000pt;}
.yab{bottom:597.466667pt;}
.y15{bottom:598.266667pt;}
.yf8{bottom:599.333333pt;}
.y91{bottom:600.400000pt;}
.y197{bottom:601.506667pt;}
.y12c{bottom:601.773333pt;}
.y3e{bottom:602.560000pt;}
.y154{bottom:604.840497pt;}
.ye3{bottom:606.560000pt;}
.y1c0{bottom:610.560000pt;}
.y16f{bottom:611.893333pt;}
.y68{bottom:614.306667pt;}
.y14{bottom:615.360000pt;}
.yf7{bottom:616.173333pt;}
.y90{bottom:617.506667pt;}
.y3d{bottom:619.360000pt;}
.yaa{bottom:622.560000pt;}
.ye2{bottom:623.640000pt;}
.y196{bottom:626.560000pt;}
.y12b{bottom:626.840000pt;}
.y16e{bottom:628.693333pt;}
.y13{bottom:632.173333pt;}
.y1bf{bottom:633.773333pt;}
.y8f{bottom:634.306667pt;}
.y67{bottom:639.106667pt;}
.ye1{bottom:640.440000pt;}
.yf6{bottom:640.973333pt;}
.y195{bottom:643.360000pt;}
.y12a{bottom:643.640000pt;}
.y114{bottom:644.173333pt;}
.y3c{bottom:644.973333pt;}
.ya9{bottom:648.440000pt;}
.y12{bottom:648.973333pt;}
.y1be{bottom:650.560000pt;}
.y8e{bottom:651.106667pt;}
.y16d{bottom:653.773333pt;}
.y66{bottom:655.893333pt;}
.yf5{bottom:657.773333pt;}
.y194{bottom:660.173333pt;}
.y113{bottom:660.973333pt;}
.ye0{bottom:665.226667pt;}
.y11{bottom:665.773333pt;}
.y1bd{bottom:667.640000pt;}
.y8d{bottom:667.893333pt;}
.y129{bottom:668.440000pt;}
.y16c{bottom:668.973333pt;}
.y65{bottom:672.693333pt;}
.ya8{bottom:674.306667pt;}
.y193{bottom:676.973333pt;}
.ydf{bottom:682.026667pt;}
.y10{bottom:682.840000pt;}
.yf4{bottom:683.106667pt;}
.y1bc{bottom:684.440000pt;}
.y8c{bottom:684.960000pt;}
.y128{bottom:685.226667pt;}
.y112{bottom:686.293333pt;}
.y3b{bottom:686.840000pt;}
.y64{bottom:689.773333pt;}
.y15f{bottom:697.200000pt;}
.y16b{bottom:697.226667pt;}
.y167{bottom:699.052182pt;}
.yf{bottom:699.626667pt;}
.ya7{bottom:699.893333pt;}
.y1bb{bottom:701.226667pt;}
.y8b{bottom:701.773333pt;}
.y192{bottom:702.040000pt;}
.yd9{bottom:703.866667pt;}
.y63{bottom:706.560000pt;}
.yf3{bottom:707.626667pt;}
.y127{bottom:710.293333pt;}
.y111{bottom:711.626667pt;}
.ya6{bottom:716.706667pt;}
.y191{bottom:718.840000pt;}
.y3a{bottom:719.626667pt;}
.yde{bottom:722.560000pt;}
.y62{bottom:723.373333pt;}
.yf2{bottom:724.440000pt;}
.ye{bottom:725.226667pt;}
.y8a{bottom:726.560000pt;}
.y1ba{bottom:726.840000pt;}
.y126{bottom:727.106667pt;}
.ya5{bottom:733.773333pt;}
.y190{bottom:735.626667pt;}
.y61{bottom:740.173333pt;}
.yf1{bottom:741.226667pt;}
.y89{bottom:743.373333pt;}
.y125{bottom:743.893333pt;}
.y1b9{bottom:744.706667pt;}
.ya4{bottom:750.600000pt;}
.y39{bottom:752.466667pt;}
.y110{bottom:753.266667pt;}
.y60{bottom:757.266667pt;}
.yf0{bottom:758.066667pt;}
.y88{bottom:760.466667pt;}
.yd8{bottom:764.200000pt;}
.y124{bottom:766.346667pt;}
.yd{bottom:767.133333pt;}
.ya3{bottom:767.400000pt;}
.y1b8{bottom:767.933333pt;}
.y38{bottom:769.266667pt;}
.y10f{bottom:770.066667pt;}
.y5f{bottom:774.066667pt;}
.y87{bottom:777.266667pt;}
.y18f{bottom:777.533333pt;}
.yd7{bottom:781.266667pt;}
.y104{bottom:784.733333pt;}
.y37{bottom:786.066667pt;}
.y123{bottom:790.346667pt;}
.y5e{bottom:790.866667pt;}
.yc{bottom:791.933333pt;}
.ya2{bottom:792.466667pt;}
.y1b7{bottom:792.733333pt;}
.y86{bottom:794.066667pt;}
.y18e{bottom:794.333333pt;}
.y10e{bottom:794.866667pt;}
.y36{bottom:802.866667pt;}
.yd6{bottom:806.066667pt;}
.yb{bottom:809.000000pt;}
.y10d{bottom:811.933333pt;}
.y169{bottom:812.493140pt;}
.y122{bottom:814.346667pt;}
.y5d{bottom:815.933333pt;}
.y146{bottom:816.733333pt;}
.y1b6{bottom:817.533333pt;}
.ya1{bottom:817.800000pt;}
.y85{bottom:818.866667pt;}
.y18d{bottom:819.133333pt;}
.yd5{bottom:822.866667pt;}
.y35{bottom:827.933333pt;}
.y10c{bottom:828.733333pt;}
.ya{bottom:833.533333pt;}
.y84{bottom:835.933333pt;}
.y120{bottom:838.346667pt;}
.y5c{bottom:841.800000pt;}
.y1b5{bottom:843.133333pt;}
.y34{bottom:844.733333pt;}
.yd4{bottom:847.666667pt;}
.y83{bottom:852.733333pt;}
.y18c{bottom:853.000000pt;}
.y10b{bottom:853.533333pt;}
.y9{bottom:858.333333pt;}
.ya0{bottom:859.666667pt;}
.y33{bottom:861.533333pt;}
.yd3{bottom:864.733333pt;}
.y5b{bottom:867.666667pt;}
.y82{bottom:869.533333pt;}
.y18b{bottom:869.800000pt;}
.y10a{bottom:870.333333pt;}
.y145{bottom:875.400000pt;}
.y9f{bottom:876.466667pt;}
.yd2{bottom:881.533333pt;}
.y8{bottom:883.133333pt;}
.y1b4{bottom:885.000000pt;}
.y32{bottom:886.333333pt;}
.y11f{bottom:889.000000pt;}
.y144{bottom:892.200000pt;}
.y5a{bottom:893.533333pt;}
.y18a{bottom:894.600000pt;}
.y109{bottom:895.400000pt;}
.y9e{bottom:901.293333pt;}
.y1b3{bottom:901.840000pt;}
.yca{bottom:903.066667pt;}
.y31{bottom:903.440000pt;}
.y189{bottom:911.440000pt;}
.y108{bottom:912.226667pt;}
.y143{bottom:917.293333pt;}
.y9d{bottom:918.373333pt;}
.y1b2{bottom:918.626667pt;}
.y59{bottom:919.173333pt;}
.y30{bottom:920.226667pt;}
.yd1{bottom:924.506667pt;}
.y7{bottom:925.293333pt;}
.y188{bottom:928.506667pt;}
.y1b1{bottom:935.440000pt;}
.y58{bottom:935.960000pt;}
.y81{bottom:937.040000pt;}
.y107{bottom:937.293333pt;}
.y142{bottom:943.173333pt;}
.y9c{bottom:943.960000pt;}
.y2f{bottom:945.040000pt;}
.y6{bottom:946.626667pt;}
.y1b0{bottom:952.506667pt;}
.y80{bottom:953.840000pt;}
.y187{bottom:954.106667pt;}
.y57{bottom:961.040000pt;}
.y2e{bottom:961.840000pt;}
.y5{bottom:968.226667pt;}
.y141{bottom:969.040000pt;}
.y1af{bottom:969.293333pt;}
.y56{bottom:977.840000pt;}
.y2d{bottom:978.893333pt;}
.y55{bottom:994.893333pt;}
.y2c{bottom:995.706667pt;}
.y3{bottom:1017.560000pt;}
.y2{bottom:1043.960000pt;}
.y1{bottom:1062.400000pt;}
.he{height:11.415982pt;}
.hd{height:15.236380pt;}
.h10{height:15.778922pt;}
.h24{height:22.647380pt;}
.h2a{height:22.666700pt;}
.h21{height:23.173333pt;}
.h1b{height:23.186667pt;}
.h30{height:23.206667pt;}
.h31{height:23.440000pt;}
.h1c{height:23.486667pt;}
.hc{height:25.624633pt;}
.hf{height:27.128279pt;}
.h2e{height:27.453333pt;}
.h11{height:30.135570pt;}
.h14{height:35.972538pt;}
.h23{height:37.308385pt;}
.h29{height:37.384192pt;}
.h1f{height:38.653333pt;}
.h20{height:38.673333pt;}
.h33{height:39.322917pt;}
.h7{height:41.332388pt;}
.h16{height:43.972973pt;}
.h12{height:47.464911pt;}
.h17{height:49.333587pt;}
.h18{height:49.833636pt;}
.h32{height:52.343750pt;}
.h6{height:52.593750pt;}
.ha{height:55.625000pt;}
.h25{height:55.688826pt;}
.h27{height:55.730008pt;}
.h2d{height:55.775359pt;}
.h2b{height:55.801980pt;}
.h4{height:61.187500pt;}
.h9{height:61.246185pt;}
.h15{height:62.124967pt;}
.h13{height:62.155890pt;}
.h1{height:62.781250pt;}
.h2{height:62.812500pt;}
.h1e{height:65.604167pt;}
.h5{height:66.750000pt;}
.h2f{height:71.625000pt;}
.h3{height:77.875000pt;}
.h2c{height:97.501516pt;}
.h19{height:97.826361pt;}
.h8{height:98.171901pt;}
.h1a{height:102.209314pt;}
.h26{height:110.652437pt;}
.hb{height:188.804522pt;}
.h1d{height:219.760000pt;}
.h28{height:312.274502pt;}
.h22{height:323.737643pt;}
.h0{height:1122.666667pt;}
.w18{width:22.637464pt;}
.w1b{width:22.655886pt;}
.w5{width:53.239048pt;}
.w6{width:57.611823pt;}
.w4{width:62.931698pt;}
.we{width:102.120000pt;}
.wf{width:117.340000pt;}
.w17{width:119.586605pt;}
.w1a{width:119.710607pt;}
.w11{width:121.340000pt;}
.w10{width:125.353333pt;}
.w1f{width:131.473333pt;}
.w1c{width:131.484000pt;}
.w1e{width:131.486667pt;}
.w1d{width:131.520000pt;}
.wc{width:134.133333pt;}
.wb{width:134.413333pt;}
.w9{width:145.624000pt;}
.wa{width:149.920000pt;}
.w14{width:152.813333pt;}
.w12{width:152.824000pt;}
.w15{width:152.840000pt;}
.w13{width:152.853333pt;}
.w8{width:211.995092pt;}
.w7{width:282.666393pt;}
.w16{width:532.806986pt;}
.w19{width:533.253913pt;}
.w2{width:573.328682pt;}
.wd{width:581.773333pt;}
.w3{width:604.531200pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x27{left:-71.738286pt;}
.x0{left:0.000000pt;}
.x10{left:2.141311pt;}
.x22{left:3.074980pt;}
.x28{left:4.122012pt;}
.x14{left:5.803500pt;}
.x3e{left:8.533333pt;}
.x3c{left:10.400000pt;}
.x41{left:12.533333pt;}
.x47{left:13.600000pt;}
.x5a{left:15.198298pt;}
.x1f{left:16.151797pt;}
.x18{left:18.881524pt;}
.x17{left:21.295619pt;}
.x1a{left:22.262869pt;}
.x2f{left:23.506667pt;}
.x31{left:26.400000pt;}
.x64{left:30.920000pt;}
.x37{left:33.066667pt;}
.x44{left:34.400000pt;}
.x33{left:36.786667pt;}
.x4c{left:37.893333pt;}
.x45{left:41.866667pt;}
.x46{left:44.000000pt;}
.x42{left:45.066667pt;}
.x50{left:47.473333pt;}
.x2d{left:48.566667pt;}
.x3f{left:49.600000pt;}
.x55{left:50.660000pt;}
.x4a{left:54.393333pt;}
.x4f{left:56.560000pt;}
.x51{left:59.773333pt;}
.x65{left:62.166667pt;}
.x56{left:63.466667pt;}
.x53{left:65.373333pt;}
.x52{left:67.200000pt;}
.x54{left:69.066667pt;}
.x29{left:70.038060pt;}
.x24{left:73.118601pt;}
.x3{left:75.500000pt;}
.x23{left:85.385906pt;}
.x49{left:87.766667pt;}
.xc{left:94.433333pt;}
.x5{left:95.766667pt;}
.x5c{left:98.966667pt;}
.xa{left:100.566667pt;}
.x21{left:104.190559pt;}
.x1{left:106.433333pt;}
.xe{left:110.266667pt;}
.x2c{left:113.900000pt;}
.xd{left:118.166667pt;}
.x6{left:119.500000pt;}
.x57{left:130.533333pt;}
.x5e{left:133.187161pt;}
.x66{left:142.426667pt;}
.x59{left:147.811398pt;}
.x60{left:150.479286pt;}
.x20{left:153.974367pt;}
.xb{left:155.240000pt;}
.x1e{left:160.642966pt;}
.x3b{left:163.000000pt;}
.x62{left:182.733333pt;}
.x48{left:185.133333pt;}
.x3a{left:197.933333pt;}
.x35{left:211.266667pt;}
.x1c{left:220.066667pt;}
.x39{left:223.266667pt;}
.x2b{left:237.133333pt;}
.x4b{left:241.133333pt;}
.x13{left:243.000000pt;}
.x1d{left:256.666667pt;}
.x2e{left:260.066667pt;}
.x3d{left:265.706667pt;}
.x7{left:298.773333pt;}
.x26{left:303.866667pt;}
.x5d{left:310.506667pt;}
.x9{left:318.506667pt;}
.x8{left:332.360000pt;}
.x2{left:352.640000pt;}
.x58{left:360.080954pt;}
.x5f{left:366.897704pt;}
.x40{left:383.600000pt;}
.x4d{left:394.800000pt;}
.x4{left:396.933333pt;}
.x30{left:410.533333pt;}
.xf{left:418.481299pt;}
.x43{left:509.506667pt;}
.x2a{left:515.893333pt;}
.x15{left:518.389534pt;}
.x63{left:529.773333pt;}
.x25{left:539.360000pt;}
.x32{left:545.773333pt;}
.x4e{left:548.440000pt;}
.x36{left:572.166667pt;}
.x38{left:577.773333pt;}
.x12{left:598.333333pt;}
.x16{left:626.947991pt;}
.x19{left:629.849741pt;}
.x34{left:637.533333pt;}
.x5b{left:663.400000pt;}
.x61{left:680.200000pt;}
.x11{left:683.666667pt;}
.x1b{left:699.173333pt;}
}




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