
    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_1819d3b3269240b2147f2312.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_9e61fed449ad3aef03adee8f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_8518bc1a59d3fd96e4eee248.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_8cbe48dc6d5bdb4c154649dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_00789a02ef809bc931dd650b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.723000;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_8fa0dcba70d490ebf3c2b3cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_93e5a18de4d6bd56d27a200e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940000;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_44796c108b10dd1af5a276ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_f3f862f8d463c2658f57a5c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.082000;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_4fbf25357f645aa266295da4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.852539;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_0c78595d994e9135e5781b05.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.926000;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_4908fad95cafe586532e424e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.681152;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_cca149434e967e43a224c6aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.049805;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_4568315f14753c3d53366b7e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;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:fff;src:url('chunks/assets/font_b9e445154ec15b4f47fd0c0e.woff2')format("woff");}.fff{font-family:fff;line-height:1.106000;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:ff10;src:url('chunks/assets/font_b5f9e1e9d5f172788362e314.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_54e389ea852eb33d50258523.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.893555;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:ff12;src:url('chunks/assets/font_64af8d67e7026bbb04662635.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_dde0ab6d26f8e6592cbe8bda.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.808105;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:ff14;src:url('chunks/assets/font_a99ea18e0e6264a25f241ed4.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_3662d40fa14979dc980aea2b.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.051758;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:ff16;src:url('chunks/assets/font_5c69ba4c5beb9781af0e0074.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.706055;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;}
.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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.331200px;}
.ls53{letter-spacing:-1.064448px;}
.ls54{letter-spacing:-1.016064px;}
.ls52{letter-spacing:-0.997920px;}
.ls21{letter-spacing:-0.985824px;}
.ls17{letter-spacing:-0.937440px;}
.ls1c{letter-spacing:-0.919296px;}
.ls1f{letter-spacing:-0.901152px;}
.ls1b{letter-spacing:-0.858816px;}
.ls18{letter-spacing:-0.840672px;}
.ls2c{letter-spacing:-0.834624px;}
.ls20{letter-spacing:-0.822528px;}
.ls26{letter-spacing:-0.801504px;}
.ls51{letter-spacing:-0.780192px;}
.ls1d{letter-spacing:-0.762048px;}
.ls23{letter-spacing:-0.761760px;}
.ls28{letter-spacing:-0.755136px;}
.ls1a{letter-spacing:-0.743904px;}
.ls24{letter-spacing:-0.722016px;}
.ls19{letter-spacing:-0.719712px;}
.ls2b{letter-spacing:-0.715392px;}
.ls22{letter-spacing:-0.682272px;}
.ls27{letter-spacing:-0.675648px;}
.ls25{letter-spacing:-0.662400px;}
.ls62{letter-spacing:-0.635904px;}
.ls1e{letter-spacing:-0.604800px;}
.ls10{letter-spacing:-0.597600px;}
.ls61{letter-spacing:-0.542880px;}
.ls43{letter-spacing:-0.467712px;}
.ls11{letter-spacing:-0.459360px;}
.ls16{letter-spacing:-0.434304px;}
.ls48{letter-spacing:-0.338688px;}
.ls14{letter-spacing:-0.317376px;}
.ls13{letter-spacing:-0.309024px;}
.ls15{letter-spacing:-0.292320px;}
.lsf{letter-spacing:-0.266112px;}
.ls12{letter-spacing:-0.242208px;}
.ls49{letter-spacing:-0.241920px;}
.ls60{letter-spacing:-0.238464px;}
.ls5f{letter-spacing:-0.205344px;}
.ls5e{letter-spacing:-0.198720px;}
.ls59{letter-spacing:-0.158976px;}
.ls5c{letter-spacing:-0.125856px;}
.ls5a{letter-spacing:-0.119232px;}
.ls5d{letter-spacing:-0.086112px;}
.ls5b{letter-spacing:-0.079488px;}
.lsc{letter-spacing:-0.059616px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.133056px;}
.lse{letter-spacing:0.156816px;}
.ls3{letter-spacing:0.171072px;}
.ls4d{letter-spacing:0.198720px;}
.ls4{letter-spacing:0.266112px;}
.ls1{letter-spacing:0.285120px;}
.lsd{letter-spacing:0.346896px;}
.ls3a{letter-spacing:0.894240px;}
.ls35{letter-spacing:0.927360px;}
.lsa{letter-spacing:0.960480px;}
.ls3b{letter-spacing:0.993600px;}
.ls8{letter-spacing:1.033344px;}
.ls7{letter-spacing:1.059840px;}
.ls5{letter-spacing:1.149120px;}
.ls37{letter-spacing:1.543392px;}
.ls58{letter-spacing:1.656000px;}
.ls33{letter-spacing:1.788480px;}
.ls4e{letter-spacing:1.920960px;}
.ls57{letter-spacing:2.219040px;}
.ls39{letter-spacing:2.517120px;}
.ls2a{letter-spacing:3.159648px;}
.ls29{letter-spacing:3.179520px;}
.ls3c{letter-spacing:3.378240px;}
.ls46{letter-spacing:3.411360px;}
.ls31{letter-spacing:3.444480px;}
.ls2e{letter-spacing:3.576960px;}
.ls4a{letter-spacing:4.040640px;}
.ls30{letter-spacing:4.338720px;}
.ls36{letter-spacing:4.636800px;}
.ls34{letter-spacing:4.769280px;}
.ls4f{letter-spacing:5.034240px;}
.ls4c{letter-spacing:5.100480px;}
.ls2f{letter-spacing:5.232960px;}
.ls45{letter-spacing:5.941728px;}
.ls44{letter-spacing:5.961600px;}
.ls4b{letter-spacing:6.094080px;}
.ls55{letter-spacing:6.226560px;}
.ls41{letter-spacing:6.557760px;}
.ls40{letter-spacing:6.590880px;}
.ls50{letter-spacing:6.756480px;}
.ls9{letter-spacing:6.822720px;}
.ls56{letter-spacing:6.888960px;}
.ls3f{letter-spacing:7.286400px;}
.ls2d{letter-spacing:10.995840px;}
.ls38{letter-spacing:11.724480px;}
.ls47{letter-spacing:12.386880px;}
.ls32{letter-spacing:14.904000px;}
.lsb{letter-spacing:20.004480px;}
.ls42{letter-spacing:20.998080px;}
.ls6{letter-spacing:32.656320px;}
.ls3e{letter-spacing:35.305920px;}
.ls3d{letter-spacing:53.985600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-23.218560px;}
.ws14{word-spacing:-22.976352px;}
.wsd{word-spacing:-22.926240px;}
.ws9{word-spacing:-20.016000px;}
.ws20{word-spacing:-19.418400px;}
.ws28{word-spacing:-19.411200px;}
.wsa{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.402400px;}
.ws10{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.547328px;}
.ws24{word-spacing:-16.480512px;}
.ws23{word-spacing:-16.473888px;}
.ws22{word-spacing:-16.440768px;}
.ws27{word-spacing:-16.434144px;}
.ws21{word-spacing:-16.401024px;}
.ws25{word-spacing:-16.354656px;}
.ws26{word-spacing:-16.321536px;}
.ws17{word-spacing:-15.884352px;}
.wsf{word-spacing:-15.877728px;}
.ws15{word-spacing:-15.844608px;}
.ws11{word-spacing:-15.837984px;}
.ws12{word-spacing:-15.804864px;}
.wse{word-spacing:-15.798240px;}
.ws19{word-spacing:-15.758496px;}
.ws13{word-spacing:-15.725376px;}
.ws16{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.113228px;}
.ws1b{word-spacing:-14.376096px;}
.ws1e{word-spacing:-14.357952px;}
.ws1d{word-spacing:-14.297472px;}
.ws7{word-spacing:-14.279328px;}
.ws8{word-spacing:-14.261184px;}
.ws1a{word-spacing:-14.218848px;}
.ws1f{word-spacing:-14.200704px;}
.ws1c{word-spacing:-14.182560px;}
.wsb{word-spacing:-14.134176px;}
.ws3{word-spacing:-13.476672px;}
.ws2{word-spacing:-13.367376px;}
.ws29{word-spacing:-9.897120px;}
.ws6{word-spacing:-0.083520px;}
.ws18{word-spacing:-0.066240px;}
.ws1{word-spacing:0.000000px;}
._10{margin-left:-4.057920px;}
._a{margin-left:-2.963520px;}
._9{margin-left:-1.126080px;}
._5{width:1.698879px;}
._8{width:3.669579px;}
._b{width:5.034240px;}
._3{width:6.727561px;}
._6{width:7.950754px;}
._d{width:9.538560px;}
._c{width:10.995840px;}
._11{width:12.733388px;}
._2{width:13.794897px;}
._12{width:17.553600px;}
._e{width:20.269440px;}
._f{width:21.726720px;}
._4{width:24.158059px;}
._13{width:28.137673px;}
._1{width:29.152764px;}
._15{width:30.463236px;}
._7{width:46.549285px;}
._0{width:845.197156px;}
._14{width:847.408320px;}
.fc4{color:transparent;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc3{color:rgb(56,56,56);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:33.977580px;}
.fs3{font-size:38.831520px;}
.fsd{font-size:41.760000px;}
.fs6{font-size:42.714672px;}
.fs7{font-size:43.685460px;}
.fsa{font-size:47.520000px;}
.fs2{font-size:48.539400px;}
.fs1{font-size:53.393340px;}
.fs5{font-size:54.364128px;}
.fs9{font-size:60.480000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:67.955160px;}
.fsb{font-size:72.000000px;}
.fsc{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.307155px;}
.y1f{bottom:3.780000px;}
.y48{bottom:3.960000px;}
.y23{bottom:4.260000px;}
.y45{bottom:4.500000px;}
.y102{bottom:8.264880px;}
.y116{bottom:8.511360px;}
.y10b{bottom:8.977680px;}
.yf7{bottom:9.000000px;}
.y120{bottom:9.235680px;}
.ye1{bottom:9.420000px;}
.yde{bottom:9.900000px;}
.y101{bottom:25.547040px;}
.y115{bottom:25.793520px;}
.y10a{bottom:26.259840px;}
.y11f{bottom:26.517840px;}
.y100{bottom:42.829200px;}
.y114{bottom:43.075680px;}
.y109{bottom:43.542000px;}
.y11e{bottom:43.800000px;}
.yfc{bottom:47.513520px;}
.y47{bottom:49.818900px;}
.y22{bottom:51.318900px;}
.y1d{bottom:51.755135px;}
.y46{bottom:52.340340px;}
.y21{bottom:58.458900px;}
.yff{bottom:60.111360px;}
.y113{bottom:60.357840px;}
.y108{bottom:60.824160px;}
.y11d{bottom:61.082160px;}
.yfb{bottom:64.795680px;}
.y1c{bottom:65.516055px;}
.y112{bottom:77.277120px;}
.yfe{bottom:77.393520px;}
.y107{bottom:78.106320px;}
.y11c{bottom:78.364320px;}
.y1b{bottom:79.276975px;}
.yfa{bottom:82.077840px;}
.y1a{bottom:93.037895px;}
.y111{bottom:94.559280px;}
.y11b{bottom:95.283600px;}
.y106{bottom:95.388480px;}
.y148{bottom:97.344660px;}
.yb0{bottom:97.863060px;}
.yfd{bottom:99.000000px;}
.yf9{bottom:99.360000px;}
.y11a{bottom:99.955680px;}
.y19{bottom:104.796565px;}
.y6e{bottom:105.988980px;}
.ydb{bottom:109.237620px;}
.y44{bottom:110.700660px;}
.y110{bottom:111.841440px;}
.y76{bottom:116.225940px;}
.y121{bottom:116.418900px;}
.y147{bottom:116.421780px;}
.yaf{bottom:116.575860px;}
.y105{bottom:116.994960px;}
.y119{bottom:117.237840px;}
.ybd{bottom:117.543540px;}
.y16f{bottom:118.192260px;}
.y19a{bottom:119.988660px;}
.y6d{bottom:125.066100px;}
.yf4{bottom:125.489460px;}
.y18{bottom:127.076149px;}
.yda{bottom:128.314740px;}
.y10f{bottom:129.123600px;}
.y43{bottom:129.777780px;}
.y118{bottom:134.520000px;}
.y104{bottom:134.640000px;}
.y75{bottom:135.303060px;}
.y146{bottom:135.498900px;}
.yae{bottom:135.652980px;}
.y16e{bottom:136.192980px;}
.ybc{bottom:136.620660px;}
.y199{bottom:137.989380px;}
.y6c{bottom:143.778900px;}
.yf3{bottom:144.566580px;}
.yd9{bottom:147.391860px;}
.y88{bottom:148.159380px;}
.y42{bottom:148.490580px;}
.y10e{bottom:151.077840px;}
.y16d{bottom:154.193700px;}
.y74{bottom:154.380180px;}
.yad{bottom:154.730100px;}
.ybb{bottom:155.333460px;}
.y198{bottom:155.990100px;}
.y117{bottom:160.818900px;}
.yf2{bottom:163.643700px;}
.yd8{bottom:166.104660px;}
.y87{bottom:167.236500px;}
.y41{bottom:167.567700px;}
.y10d{bottom:168.360000px;}
.y16c{bottom:172.194420px;}
.y145{bottom:172.578900px;}
.y73{bottom:173.092980px;}
.yac{bottom:173.442900px;}
.y197{bottom:173.990820px;}
.yba{bottom:174.410580px;}
.y6b{bottom:181.218900px;}
.yf1{bottom:182.720820px;}
.yd7{bottom:185.181780px;}
.y86{bottom:186.313620px;}
.y40{bottom:186.644820px;}
.y16b{bottom:190.195140px;}
.y17{bottom:191.803439px;}
.y196{bottom:191.991540px;}
.y72{bottom:192.170100px;}
.yab{bottom:192.520020px;}
.yb9{bottom:193.487700px;}
.yf0{bottom:201.433620px;}
.y16{bottom:202.118062px;}
.yd6{bottom:204.258900px;}
.y3f{bottom:205.357620px;}
.y85{bottom:205.390740px;}
.y16a{bottom:208.195860px;}
.y144{bottom:208.717140px;}
.y195{bottom:209.992260px;}
.y71{bottom:211.247220px;}
.y15{bottom:211.583245px;}
.yaa{bottom:211.597140px;}
.yb8{bottom:212.564820px;}
.y6a{bottom:219.378900px;}
.y14{bottom:220.174718px;}
.yef{bottom:220.510740px;}
.y84{bottom:224.103540px;}
.y3e{bottom:224.434740px;}
.y169{bottom:226.196580px;}
.y143{bottom:227.429940px;}
.y194{bottom:227.992980px;}
.y13{bottom:228.778327px;}
.y70{bottom:229.960020px;}
.ya9{bottom:230.674260px;}
.yb7{bottom:231.277620px;}
.y12{bottom:237.381936px;}
.y1a2{bottom:239.177460px;}
.ydf{bottom:239.178900px;}
.yee{bottom:239.587860px;}
.yd5{bottom:241.698900px;}
.y83{bottom:243.180660px;}
.y3d{bottom:243.511860px;}
.y168{bottom:244.197300px;}
.y11{bottom:245.973410px;}
.y193{bottom:245.993700px;}
.y142{bottom:246.507060px;}
.y6f{bottom:249.037140px;}
.ya8{bottom:249.387060px;}
.yb6{bottom:250.354740px;}
.y10{bottom:254.577018px;}
.yed{bottom:258.300660px;}
.ydd{bottom:261.318900px;}
.y167{bottom:262.198020px;}
.y3c{bottom:262.224660px;}
.y82{bottom:262.257780px;}
.y192{bottom:263.994420px;}
.y141{bottom:265.584180px;}
.y1a1{bottom:266.898900px;}
.y69{bottom:268.114260px;}
.ya7{bottom:268.464180px;}
.yb5{bottom:269.431860px;}
.yf{bottom:272.269629px;}
.yec{bottom:277.377780px;}
.yd4{bottom:278.827860px;}
.y166{bottom:280.198740px;}
.y81{bottom:280.970580px;}
.y3b{bottom:281.301780px;}
.y191{bottom:281.995140px;}
.y140{bottom:284.296980px;}
.y1a0{bottom:285.976020px;}
.y68{bottom:286.827060px;}
.ya6{bottom:287.541300px;}
.yb4{bottom:288.144660px;}
.yeb{bottom:296.454900px;}
.yd3{bottom:297.540660px;}
.y165{bottom:298.199460px;}
.y190{bottom:299.995860px;}
.y80{bottom:300.047700px;}
.y3a{bottom:300.378900px;}
.y13f{bottom:303.374100px;}
.y19f{bottom:305.053140px;}
.y67{bottom:305.904180px;}
.ya5{bottom:306.254100px;}
.yb3{bottom:307.221780px;}
.y10c{bottom:313.818900px;}
.yea{bottom:315.532020px;}
.y164{bottom:316.200180px;}
.yd2{bottom:316.617780px;}
.y18f{bottom:317.996580px;}
.y7f{bottom:319.124820px;}
.y13e{bottom:322.451220px;}
.y66{bottom:324.981300px;}
.ya4{bottom:325.331220px;}
.yb2{bottom:326.298900px;}
.y19e{bottom:333.141780px;}
.y163{bottom:334.200900px;}
.ye9{bottom:334.244820px;}
.yd1{bottom:335.694900px;}
.y18e{bottom:335.997300px;}
.y7e{bottom:337.837620px;}
.y39{bottom:338.178900px;}
.y13d{bottom:341.164020px;}
.y65{bottom:344.058420px;}
.ya3{bottom:344.408340px;}
.y162{bottom:352.201620px;}
.y19d{bottom:352.226100px;}
.ye8{bottom:353.321940px;}
.y18d{bottom:353.998020px;}
.yd0{bottom:354.772020px;}
.y7d{bottom:356.914740px;}
.y13c{bottom:360.241140px;}
.y64{bottom:362.771220px;}
.ya2{bottom:363.485460px;}
.yb1{bottom:363.738900px;}
.y161{bottom:370.202340px;}
.y19c{bottom:370.938900px;}
.y18c{bottom:371.998740px;}
.ye7{bottom:372.399060px;}
.y7c{bottom:375.991860px;}
.y13b{bottom:379.318260px;}
.y63{bottom:381.848340px;}
.ya1{bottom:382.198260px;}
.ycf{bottom:382.493460px;}
.y38{bottom:387.138900px;}
.y160{bottom:388.203060px;}
.y18b{bottom:389.999460px;}
.ye6{bottom:391.111860px;}
.ye{bottom:395.013637px;}
.y7b{bottom:395.068980px;}
.y13a{bottom:398.395380px;}
.y62{bottom:400.925460px;}
.ya0{bottom:401.275380px;}
.y15f{bottom:406.203780px;}
.y37{bottom:407.294580px;}
.y18a{bottom:408.000180px;}
.y19b{bottom:408.018900px;}
.ye5{bottom:410.188980px;}
.yce{bottom:410.579220px;}
.y7a{bottom:413.781780px;}
.y139{bottom:417.108180px;}
.y61{bottom:419.638260px;}
.y9f{bottom:420.352500px;}
.y15e{bottom:424.204500px;}
.y36{bottom:424.576740px;}
.y189{bottom:426.000900px;}
.ye4{bottom:429.266100px;}
.ycd{bottom:429.656340px;}
.y79{bottom:432.858900px;}
.y138{bottom:436.185300px;}
.y60{bottom:438.715380px;}
.y9e{bottom:439.065300px;}
.y15d{bottom:442.205220px;}
.y188{bottom:444.001620px;}
.ye3{bottom:447.978900px;}
.ycc{bottom:448.369140px;}
.y35{bottom:450.492420px;}
.y137{bottom:455.262420px;}
.y5f{bottom:457.792500px;}
.y9d{bottom:458.142420px;}
.y15c{bottom:460.205940px;}
.y78{bottom:460.578900px;}
.y187{bottom:462.002340px;}
.ycb{bottom:467.446260px;}
.y34{bottom:467.774580px;}
.y136{bottom:473.975220px;}
.ye2{bottom:475.698900px;}
.y5e{bottom:476.869620px;}
.y9c{bottom:477.219540px;}
.y15b{bottom:478.206660px;}
.y186{bottom:480.003060px;}
.y77{bottom:483.626100px;}
.y33{bottom:485.056740px;}
.y135{bottom:493.052340px;}
.yca{bottom:495.167700px;}
.y5d{bottom:495.582420px;}
.y9b{bottom:495.932340px;}
.y15a{bottom:496.207380px;}
.y185{bottom:498.003780px;}
.ye0{bottom:498.318900px;}
.y103{bottom:499.818900px;}
.y32{bottom:502.338900px;}
.y134{bottom:512.129460px;}
.y159{bottom:514.208100px;}
.yc9{bottom:514.244820px;}
.y5c{bottom:514.659540px;}
.y9a{bottom:515.009460px;}
.y184{bottom:516.004500px;}
.y133{bottom:531.206580px;}
.y158{bottom:532.208820px;}
.yc8{bottom:533.321940px;}
.y5b{bottom:533.736660px;}
.y183{bottom:534.005220px;}
.y99{bottom:534.086580px;}
.y31{bottom:538.338900px;}
.y132{bottom:549.919380px;}
.y157{bottom:550.209540px;}
.y182{bottom:552.005940px;}
.yc7{bottom:552.399060px;}
.y5a{bottom:552.449460px;}
.y98{bottom:553.163700px;}
.y30{bottom:560.298900px;}
.y156{bottom:568.210260px;}
.y131{bottom:568.996500px;}
.y181{bottom:570.006660px;}
.yc6{bottom:571.476180px;}
.y59{bottom:571.526580px;}
.y97{bottom:571.876500px;}
.yd{bottom:577.691669px;}
.y155{bottom:586.210980px;}
.y180{bottom:588.007380px;}
.y130{bottom:588.073620px;}
.y2f{bottom:590.529540px;}
.y58{bottom:590.603700px;}
.y96{bottom:590.953620px;}
.yc5{bottom:599.197620px;}
.y154{bottom:604.211700px;}
.yc{bottom:604.218451px;}
.y17f{bottom:606.008100px;}
.y12f{bottom:606.786420px;}
.y2e{bottom:607.811700px;}
.y57{bottom:609.316500px;}
.y95{bottom:610.030740px;}
.yb{bottom:617.967236px;}
.yc4{bottom:618.274740px;}
.y153{bottom:622.212420px;}
.y17e{bottom:624.008820px;}
.y12e{bottom:625.863540px;}
.y56{bottom:628.393620px;}
.y94{bottom:628.743540px;}
.y2d{bottom:634.090260px;}
.yc3{bottom:637.351860px;}
.y152{bottom:640.213140px;}
.y17d{bottom:642.009540px;}
.ya{bottom:644.760985px;}
.y12d{bottom:644.940660px;}
.y55{bottom:647.470740px;}
.y93{bottom:647.820660px;}
.y2c{bottom:651.372420px;}
.yf8{bottom:652.818900px;}
.yc2{bottom:656.064660px;}
.y151{bottom:658.213860px;}
.y9{bottom:658.521905px;}
.y17c{bottom:660.010260px;}
.y12c{bottom:663.653460px;}
.ydc{bottom:666.183540px;}
.y54{bottom:666.547860px;}
.y92{bottom:666.897780px;}
.y2b{bottom:668.654580px;}
.y8{bottom:672.282825px;}
.yc1{bottom:675.141780px;}
.y150{bottom:676.214580px;}
.y17b{bottom:678.010980px;}
.y12b{bottom:682.730580px;}
.y53{bottom:685.260660px;}
.y91{bottom:685.610580px;}
.y2a{bottom:685.936740px;}
.y7{bottom:686.043745px;}
.y14f{bottom:694.215300px;}
.yc0{bottom:694.218900px;}
.y17a{bottom:696.011700px;}
.y6{bottom:699.804665px;}
.y12a{bottom:701.807700px;}
.y29{bottom:703.218900px;}
.y52{bottom:704.337780px;}
.y90{bottom:704.687700px;}
.y14e{bottom:712.216020px;}
.y179{bottom:714.012420px;}
.y129{bottom:720.884820px;}
.y51{bottom:723.414900px;}
.y8f{bottom:723.764820px;}
.y14d{bottom:730.216740px;}
.ybf{bottom:731.658900px;}
.y178{bottom:732.013140px;}
.y28{bottom:739.594740px;}
.y128{bottom:739.597620px;}
.y50{bottom:742.127700px;}
.y8e{bottom:742.841940px;}
.y14c{bottom:748.217460px;}
.y177{bottom:750.013860px;}
.y127{bottom:758.674740px;}
.y4f{bottom:761.204820px;}
.y8d{bottom:761.554740px;}
.y5{bottom:763.925212px;}
.y27{bottom:765.506820px;}
.y14b{bottom:766.218180px;}
.y176{bottom:768.014580px;}
.ybe{bottom:769.458900px;}
.yf6{bottom:769.818900px;}
.y126{bottom:777.751860px;}
.y4e{bottom:780.281940px;}
.y8c{bottom:780.631860px;}
.y14a{bottom:784.218900px;}
.y4{bottom:784.336030px;}
.y175{bottom:786.015300px;}
.y26{bottom:791.418900px;}
.y125{bottom:796.464660px;}
.y4d{bottom:798.994740px;}
.y8b{bottom:799.708980px;}
.y174{bottom:804.016020px;}
.y3{bottom:808.411572px;}
.yf5{bottom:810.498900px;}
.y124{bottom:815.541780px;}
.y4c{bottom:818.071860px;}
.y8a{bottom:818.421780px;}
.y149{bottom:820.218900px;}
.y173{bottom:822.016740px;}
.y2{bottom:832.499249px;}
.y25{bottom:833.898900px;}
.y123{bottom:834.618900px;}
.y4b{bottom:837.148980px;}
.y89{bottom:837.498900px;}
.y172{bottom:840.017460px;}
.y4a{bottom:856.226100px;}
.y171{bottom:858.018180px;}
.y122{bottom:872.418900px;}
.y24{bottom:873.498900px;}
.y49{bottom:874.938900px;}
.y170{bottom:876.018900px;}
.y20{bottom:894.018900px;}
.y1e{bottom:909.318900px;}
.hf{height:19.500000px;}
.h9{height:25.177387px;}
.h1c{height:28.500000px;}
.h7{height:28.774156px;}
.h8{height:28.851819px;}
.hc{height:32.370926px;}
.h12{height:34.737120px;}
.h6{height:35.967695px;}
.ha{height:36.064774px;}
.h5{height:39.564465px;}
.hb{height:40.283819px;}
.h1d{height:40.989375px;}
.h1f{height:41.993438px;}
.h13{height:43.061760px;}
.h1b{height:44.149219px;}
.h19{height:44.893125px;}
.h14{height:47.988281px;}
.h10{height:48.421440px;}
.h3{height:50.354774px;}
.h17{height:50.439375px;}
.h4{height:50.490684px;}
.h11{height:55.243125px;}
.h22{height:55.372500px;}
.h23{height:56.326669px;}
.h24{height:56.343949px;}
.h16{height:61.053120px;}
.h15{height:62.856000px;}
.h18{height:65.592000px;}
.h1e{height:118.500000px;}
.h20{height:153.000000px;}
.h21{height:187.500000px;}
.h1a{height:393.000000px;}
.hd{height:1020.518400px;}
.he{height:1020.750000px;}
.h2{height:1021.620887px;}
.h0{height:1022.235000px;}
.h1{height:1022.250000px;}
.w4{width:18.000000px;}
.w6{width:84.400500px;}
.w8{width:129.000000px;}
.w7{width:277.500000px;}
.w9{width:426.000000px;}
.w5{width:468.000000px;}
.w3{width:552.000000px;}
.w1{width:722.250000px;}
.w0{width:722.355000px;}
.w2{width:722.361150px;}
.x0{left:0.000000px;}
.x6{left:8.280000px;}
.x3{left:37.836462px;}
.x1{left:44.716922px;}
.x7{left:84.880650px;}
.x5{left:85.960650px;}
.xe{left:110.416170px;}
.xc{left:111.880650px;}
.x2{left:120.389847px;}
.x10{left:135.868890px;}
.xa{left:146.271300px;}
.x9{left:171.460650px;}
.x14{left:211.960650px;}
.x13{left:279.060000px;}
.x11{left:280.140000px;}
.x8{left:298.993500px;}
.x4{left:354.301215px;}
.x12{left:360.460650px;}
.xf{left:547.699530px;}
.xd{left:619.960650px;}
.xb{left:637.960650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.294400pt;}
.ls53{letter-spacing:-0.946176pt;}
.ls54{letter-spacing:-0.903168pt;}
.ls52{letter-spacing:-0.887040pt;}
.ls21{letter-spacing:-0.876288pt;}
.ls17{letter-spacing:-0.833280pt;}
.ls1c{letter-spacing:-0.817152pt;}
.ls1f{letter-spacing:-0.801024pt;}
.ls1b{letter-spacing:-0.763392pt;}
.ls18{letter-spacing:-0.747264pt;}
.ls2c{letter-spacing:-0.741888pt;}
.ls20{letter-spacing:-0.731136pt;}
.ls26{letter-spacing:-0.712448pt;}
.ls51{letter-spacing:-0.693504pt;}
.ls1d{letter-spacing:-0.677376pt;}
.ls23{letter-spacing:-0.677120pt;}
.ls28{letter-spacing:-0.671232pt;}
.ls1a{letter-spacing:-0.661248pt;}
.ls24{letter-spacing:-0.641792pt;}
.ls19{letter-spacing:-0.639744pt;}
.ls2b{letter-spacing:-0.635904pt;}
.ls22{letter-spacing:-0.606464pt;}
.ls27{letter-spacing:-0.600576pt;}
.ls25{letter-spacing:-0.588800pt;}
.ls62{letter-spacing:-0.565248pt;}
.ls1e{letter-spacing:-0.537600pt;}
.ls10{letter-spacing:-0.531200pt;}
.ls61{letter-spacing:-0.482560pt;}
.ls43{letter-spacing:-0.415744pt;}
.ls11{letter-spacing:-0.408320pt;}
.ls16{letter-spacing:-0.386048pt;}
.ls48{letter-spacing:-0.301056pt;}
.ls14{letter-spacing:-0.282112pt;}
.ls13{letter-spacing:-0.274688pt;}
.ls15{letter-spacing:-0.259840pt;}
.lsf{letter-spacing:-0.236544pt;}
.ls12{letter-spacing:-0.215296pt;}
.ls49{letter-spacing:-0.215040pt;}
.ls60{letter-spacing:-0.211968pt;}
.ls5f{letter-spacing:-0.182528pt;}
.ls5e{letter-spacing:-0.176640pt;}
.ls59{letter-spacing:-0.141312pt;}
.ls5c{letter-spacing:-0.111872pt;}
.ls5a{letter-spacing:-0.105984pt;}
.ls5d{letter-spacing:-0.076544pt;}
.ls5b{letter-spacing:-0.070656pt;}
.lsc{letter-spacing:-0.052992pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.118272pt;}
.lse{letter-spacing:0.139392pt;}
.ls3{letter-spacing:0.152064pt;}
.ls4d{letter-spacing:0.176640pt;}
.ls4{letter-spacing:0.236544pt;}
.ls1{letter-spacing:0.253440pt;}
.lsd{letter-spacing:0.308352pt;}
.ls3a{letter-spacing:0.794880pt;}
.ls35{letter-spacing:0.824320pt;}
.lsa{letter-spacing:0.853760pt;}
.ls3b{letter-spacing:0.883200pt;}
.ls8{letter-spacing:0.918528pt;}
.ls7{letter-spacing:0.942080pt;}
.ls5{letter-spacing:1.021440pt;}
.ls37{letter-spacing:1.371904pt;}
.ls58{letter-spacing:1.472000pt;}
.ls33{letter-spacing:1.589760pt;}
.ls4e{letter-spacing:1.707520pt;}
.ls57{letter-spacing:1.972480pt;}
.ls39{letter-spacing:2.237440pt;}
.ls2a{letter-spacing:2.808576pt;}
.ls29{letter-spacing:2.826240pt;}
.ls3c{letter-spacing:3.002880pt;}
.ls46{letter-spacing:3.032320pt;}
.ls31{letter-spacing:3.061760pt;}
.ls2e{letter-spacing:3.179520pt;}
.ls4a{letter-spacing:3.591680pt;}
.ls30{letter-spacing:3.856640pt;}
.ls36{letter-spacing:4.121600pt;}
.ls34{letter-spacing:4.239360pt;}
.ls4f{letter-spacing:4.474880pt;}
.ls4c{letter-spacing:4.533760pt;}
.ls2f{letter-spacing:4.651520pt;}
.ls45{letter-spacing:5.281536pt;}
.ls44{letter-spacing:5.299200pt;}
.ls4b{letter-spacing:5.416960pt;}
.ls55{letter-spacing:5.534720pt;}
.ls41{letter-spacing:5.829120pt;}
.ls40{letter-spacing:5.858560pt;}
.ls50{letter-spacing:6.005760pt;}
.ls9{letter-spacing:6.064640pt;}
.ls56{letter-spacing:6.123520pt;}
.ls3f{letter-spacing:6.476800pt;}
.ls2d{letter-spacing:9.774080pt;}
.ls38{letter-spacing:10.421760pt;}
.ls47{letter-spacing:11.010560pt;}
.ls32{letter-spacing:13.248000pt;}
.lsb{letter-spacing:17.781760pt;}
.ls42{letter-spacing:18.664960pt;}
.ls6{letter-spacing:29.027840pt;}
.ls3e{letter-spacing:31.383040pt;}
.ls3d{letter-spacing:47.987200pt;}
.wsc{word-spacing:-20.638720pt;}
.ws14{word-spacing:-20.423424pt;}
.wsd{word-spacing:-20.378880pt;}
.ws9{word-spacing:-17.792000pt;}
.ws20{word-spacing:-17.260800pt;}
.ws28{word-spacing:-17.254400pt;}
.wsa{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.468800pt;}
.ws10{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.708736pt;}
.ws24{word-spacing:-14.649344pt;}
.ws23{word-spacing:-14.643456pt;}
.ws22{word-spacing:-14.614016pt;}
.ws27{word-spacing:-14.608128pt;}
.ws21{word-spacing:-14.578688pt;}
.ws25{word-spacing:-14.537472pt;}
.ws26{word-spacing:-14.508032pt;}
.ws17{word-spacing:-14.119424pt;}
.wsf{word-spacing:-14.113536pt;}
.ws15{word-spacing:-14.084096pt;}
.ws11{word-spacing:-14.078208pt;}
.ws12{word-spacing:-14.048768pt;}
.wse{word-spacing:-14.042880pt;}
.ws19{word-spacing:-14.007552pt;}
.ws13{word-spacing:-13.978112pt;}
.ws16{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.433980pt;}
.ws1b{word-spacing:-12.778752pt;}
.ws1e{word-spacing:-12.762624pt;}
.ws1d{word-spacing:-12.708864pt;}
.ws7{word-spacing:-12.692736pt;}
.ws8{word-spacing:-12.676608pt;}
.ws1a{word-spacing:-12.638976pt;}
.ws1f{word-spacing:-12.622848pt;}
.ws1c{word-spacing:-12.606720pt;}
.wsb{word-spacing:-12.563712pt;}
.ws3{word-spacing:-11.979264pt;}
.ws2{word-spacing:-11.882112pt;}
.ws29{word-spacing:-8.797440pt;}
.ws6{word-spacing:-0.074240pt;}
.ws18{word-spacing:-0.058880pt;}
.ws1{word-spacing:0.000000pt;}
._10{margin-left:-3.607040pt;}
._a{margin-left:-2.634240pt;}
._9{margin-left:-1.000960pt;}
._5{width:1.510115pt;}
._8{width:3.261848pt;}
._b{width:4.474880pt;}
._3{width:5.980054pt;}
._6{width:7.067337pt;}
._d{width:8.478720pt;}
._c{width:9.774080pt;}
._11{width:11.318567pt;}
._2{width:12.262131pt;}
._12{width:15.603200pt;}
._e{width:18.017280pt;}
._f{width:19.312640pt;}
._4{width:21.473831pt;}
._13{width:25.011265pt;}
._1{width:25.913568pt;}
._15{width:27.078432pt;}
._7{width:41.377142pt;}
._0{width:751.286361pt;}
._14{width:753.251840pt;}
.fs4{font-size:30.202293pt;}
.fs3{font-size:34.516907pt;}
.fsd{font-size:37.120000pt;}
.fs6{font-size:37.968597pt;}
.fs7{font-size:38.831520pt;}
.fsa{font-size:42.240000pt;}
.fs2{font-size:43.146133pt;}
.fs1{font-size:47.460747pt;}
.fs5{font-size:48.323669pt;}
.fs9{font-size:53.760000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:60.404587pt;}
.fsb{font-size:64.000000pt;}
.fsc{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.273027pt;}
.y1f{bottom:3.360000pt;}
.y48{bottom:3.520000pt;}
.y23{bottom:3.786667pt;}
.y45{bottom:4.000000pt;}
.y102{bottom:7.346560pt;}
.y116{bottom:7.565653pt;}
.y10b{bottom:7.980160pt;}
.yf7{bottom:8.000000pt;}
.y120{bottom:8.209493pt;}
.ye1{bottom:8.373333pt;}
.yde{bottom:8.800000pt;}
.y101{bottom:22.708480pt;}
.y115{bottom:22.927573pt;}
.y10a{bottom:23.342080pt;}
.y11f{bottom:23.571413pt;}
.y100{bottom:38.070400pt;}
.y114{bottom:38.289493pt;}
.y109{bottom:38.704000pt;}
.y11e{bottom:38.933333pt;}
.yfc{bottom:42.234240pt;}
.y47{bottom:44.283467pt;}
.y22{bottom:45.616800pt;}
.y1d{bottom:46.004565pt;}
.y46{bottom:46.524747pt;}
.y21{bottom:51.963467pt;}
.yff{bottom:53.432320pt;}
.y113{bottom:53.651413pt;}
.y108{bottom:54.065920pt;}
.y11d{bottom:54.295253pt;}
.yfb{bottom:57.596160pt;}
.y1c{bottom:58.236493pt;}
.y112{bottom:68.690773pt;}
.yfe{bottom:68.794240pt;}
.y107{bottom:69.427840pt;}
.y11c{bottom:69.657173pt;}
.y1b{bottom:70.468422pt;}
.yfa{bottom:72.958080pt;}
.y1a{bottom:82.700351pt;}
.y111{bottom:84.052693pt;}
.y11b{bottom:84.696533pt;}
.y106{bottom:84.789760pt;}
.y148{bottom:86.528587pt;}
.yb0{bottom:86.989387pt;}
.yfd{bottom:88.000000pt;}
.yf9{bottom:88.320000pt;}
.y11a{bottom:88.849493pt;}
.y19{bottom:93.152502pt;}
.y6e{bottom:94.212427pt;}
.ydb{bottom:97.100107pt;}
.y44{bottom:98.400587pt;}
.y110{bottom:99.414613pt;}
.y76{bottom:103.311947pt;}
.y121{bottom:103.483467pt;}
.y147{bottom:103.486027pt;}
.yaf{bottom:103.622987pt;}
.y105{bottom:103.995520pt;}
.y119{bottom:104.211413pt;}
.ybd{bottom:104.483147pt;}
.y16f{bottom:105.059787pt;}
.y19a{bottom:106.656587pt;}
.y6d{bottom:111.169867pt;}
.yf4{bottom:111.546187pt;}
.y18{bottom:112.956577pt;}
.yda{bottom:114.057547pt;}
.y10f{bottom:114.776533pt;}
.y43{bottom:115.358027pt;}
.y118{bottom:119.573333pt;}
.y104{bottom:119.680000pt;}
.y75{bottom:120.269387pt;}
.y146{bottom:120.443467pt;}
.yae{bottom:120.580427pt;}
.y16e{bottom:121.060427pt;}
.ybc{bottom:121.440587pt;}
.y199{bottom:122.657227pt;}
.y6c{bottom:127.803467pt;}
.yf3{bottom:128.503627pt;}
.yd9{bottom:131.014987pt;}
.y88{bottom:131.697227pt;}
.y42{bottom:131.991627pt;}
.y10e{bottom:134.291413pt;}
.y16d{bottom:137.061067pt;}
.y74{bottom:137.226827pt;}
.yad{bottom:137.537867pt;}
.ybb{bottom:138.074187pt;}
.y198{bottom:138.657867pt;}
.y117{bottom:142.950133pt;}
.yf2{bottom:145.461067pt;}
.yd8{bottom:147.648587pt;}
.y87{bottom:148.654667pt;}
.y41{bottom:148.949067pt;}
.y10d{bottom:149.653333pt;}
.y16c{bottom:153.061707pt;}
.y145{bottom:153.403467pt;}
.y73{bottom:153.860427pt;}
.yac{bottom:154.171467pt;}
.y197{bottom:154.658507pt;}
.yba{bottom:155.031627pt;}
.y6b{bottom:161.083467pt;}
.yf1{bottom:162.418507pt;}
.yd7{bottom:164.606027pt;}
.y86{bottom:165.612107pt;}
.y40{bottom:165.906507pt;}
.y16b{bottom:169.062347pt;}
.y17{bottom:170.491946pt;}
.y196{bottom:170.659147pt;}
.y72{bottom:170.817867pt;}
.yab{bottom:171.128907pt;}
.yb9{bottom:171.989067pt;}
.yf0{bottom:179.052107pt;}
.y16{bottom:179.660499pt;}
.yd6{bottom:181.563467pt;}
.y3f{bottom:182.540107pt;}
.y85{bottom:182.569547pt;}
.y16a{bottom:185.062987pt;}
.y144{bottom:185.526347pt;}
.y195{bottom:186.659787pt;}
.y71{bottom:187.775307pt;}
.y15{bottom:188.073995pt;}
.yaa{bottom:188.086347pt;}
.yb8{bottom:188.946507pt;}
.y6a{bottom:195.003467pt;}
.y14{bottom:195.710861pt;}
.yef{bottom:196.009547pt;}
.y84{bottom:199.203147pt;}
.y3e{bottom:199.497547pt;}
.y169{bottom:201.063627pt;}
.y143{bottom:202.159947pt;}
.y194{bottom:202.660427pt;}
.y13{bottom:203.358513pt;}
.y70{bottom:204.408907pt;}
.ya9{bottom:205.043787pt;}
.yb7{bottom:205.580107pt;}
.y12{bottom:211.006165pt;}
.y1a2{bottom:212.602187pt;}
.ydf{bottom:212.603467pt;}
.yee{bottom:212.966987pt;}
.yd5{bottom:214.843467pt;}
.y83{bottom:216.160587pt;}
.y3d{bottom:216.454987pt;}
.y168{bottom:217.064267pt;}
.y11{bottom:218.643031pt;}
.y193{bottom:218.661067pt;}
.y142{bottom:219.117387pt;}
.y6f{bottom:221.366347pt;}
.ya8{bottom:221.677387pt;}
.yb6{bottom:222.537547pt;}
.y10{bottom:226.290683pt;}
.yed{bottom:229.600587pt;}
.ydd{bottom:232.283467pt;}
.y167{bottom:233.064907pt;}
.y3c{bottom:233.088587pt;}
.y82{bottom:233.118027pt;}
.y192{bottom:234.661707pt;}
.y141{bottom:236.074827pt;}
.y1a1{bottom:237.243467pt;}
.y69{bottom:238.323787pt;}
.ya7{bottom:238.634827pt;}
.yb5{bottom:239.494987pt;}
.yf{bottom:242.017448pt;}
.yec{bottom:246.558027pt;}
.yd4{bottom:247.846987pt;}
.y166{bottom:249.065547pt;}
.y81{bottom:249.751627pt;}
.y3b{bottom:250.046027pt;}
.y191{bottom:250.662347pt;}
.y140{bottom:252.708427pt;}
.y1a0{bottom:254.200907pt;}
.y68{bottom:254.957387pt;}
.ya6{bottom:255.592267pt;}
.yb4{bottom:256.128587pt;}
.yeb{bottom:263.515467pt;}
.yd3{bottom:264.480587pt;}
.y165{bottom:265.066187pt;}
.y190{bottom:266.662987pt;}
.y80{bottom:266.709067pt;}
.y3a{bottom:267.003467pt;}
.y13f{bottom:269.665867pt;}
.y19f{bottom:271.158347pt;}
.y67{bottom:271.914827pt;}
.ya5{bottom:272.225867pt;}
.yb3{bottom:273.086027pt;}
.y10c{bottom:278.950133pt;}
.yea{bottom:280.472907pt;}
.y164{bottom:281.066827pt;}
.yd2{bottom:281.438027pt;}
.y18f{bottom:282.663627pt;}
.y7f{bottom:283.666507pt;}
.y13e{bottom:286.623307pt;}
.y66{bottom:288.872267pt;}
.ya4{bottom:289.183307pt;}
.yb2{bottom:290.043467pt;}
.y19e{bottom:296.126027pt;}
.y163{bottom:297.067467pt;}
.ye9{bottom:297.106507pt;}
.yd1{bottom:298.395467pt;}
.y18e{bottom:298.664267pt;}
.y7e{bottom:300.300107pt;}
.y39{bottom:300.603467pt;}
.y13d{bottom:303.256907pt;}
.y65{bottom:305.829707pt;}
.ya3{bottom:306.140747pt;}
.y162{bottom:313.068107pt;}
.y19d{bottom:313.089867pt;}
.ye8{bottom:314.063947pt;}
.y18d{bottom:314.664907pt;}
.yd0{bottom:315.352907pt;}
.y7d{bottom:317.257547pt;}
.y13c{bottom:320.214347pt;}
.y64{bottom:322.463307pt;}
.ya2{bottom:323.098187pt;}
.yb1{bottom:323.323467pt;}
.y161{bottom:329.068747pt;}
.y19c{bottom:329.723467pt;}
.y18c{bottom:330.665547pt;}
.ye7{bottom:331.021387pt;}
.y7c{bottom:334.214987pt;}
.y13b{bottom:337.171787pt;}
.y63{bottom:339.420747pt;}
.ya1{bottom:339.731787pt;}
.ycf{bottom:339.994187pt;}
.y38{bottom:344.123467pt;}
.y160{bottom:345.069387pt;}
.y18b{bottom:346.666187pt;}
.ye6{bottom:347.654987pt;}
.ye{bottom:351.123233pt;}
.y7b{bottom:351.172427pt;}
.y13a{bottom:354.129227pt;}
.y62{bottom:356.378187pt;}
.ya0{bottom:356.689227pt;}
.y15f{bottom:361.070027pt;}
.y37{bottom:362.039627pt;}
.y18a{bottom:362.666827pt;}
.y19b{bottom:362.683467pt;}
.ye5{bottom:364.612427pt;}
.yce{bottom:364.959307pt;}
.y7a{bottom:367.806027pt;}
.y139{bottom:370.762827pt;}
.y61{bottom:373.011787pt;}
.y9f{bottom:373.646667pt;}
.y15e{bottom:377.070667pt;}
.y36{bottom:377.401547pt;}
.y189{bottom:378.667467pt;}
.ye4{bottom:381.569867pt;}
.ycd{bottom:381.916747pt;}
.y79{bottom:384.763467pt;}
.y138{bottom:387.720267pt;}
.y60{bottom:389.969227pt;}
.y9e{bottom:390.280267pt;}
.y15d{bottom:393.071307pt;}
.y188{bottom:394.668107pt;}
.ye3{bottom:398.203467pt;}
.ycc{bottom:398.550347pt;}
.y35{bottom:400.437707pt;}
.y137{bottom:404.677707pt;}
.y5f{bottom:406.926667pt;}
.y9d{bottom:407.237707pt;}
.y15c{bottom:409.071947pt;}
.y78{bottom:409.403467pt;}
.y187{bottom:410.668747pt;}
.ycb{bottom:415.507787pt;}
.y34{bottom:415.799627pt;}
.y136{bottom:421.311307pt;}
.ye2{bottom:422.843467pt;}
.y5e{bottom:423.884107pt;}
.y9c{bottom:424.195147pt;}
.y15b{bottom:425.072587pt;}
.y186{bottom:426.669387pt;}
.y77{bottom:429.889867pt;}
.y33{bottom:431.161547pt;}
.y135{bottom:438.268747pt;}
.yca{bottom:440.149067pt;}
.y5d{bottom:440.517707pt;}
.y9b{bottom:440.828747pt;}
.y15a{bottom:441.073227pt;}
.y185{bottom:442.670027pt;}
.ye0{bottom:442.950133pt;}
.y103{bottom:444.283467pt;}
.y32{bottom:446.523467pt;}
.y134{bottom:455.226187pt;}
.y159{bottom:457.073867pt;}
.yc9{bottom:457.106507pt;}
.y5c{bottom:457.475147pt;}
.y9a{bottom:457.786187pt;}
.y184{bottom:458.670667pt;}
.y133{bottom:472.183627pt;}
.y158{bottom:473.074507pt;}
.yc8{bottom:474.063947pt;}
.y5b{bottom:474.432587pt;}
.y183{bottom:474.671307pt;}
.y99{bottom:474.743627pt;}
.y31{bottom:478.523467pt;}
.y132{bottom:488.817227pt;}
.y157{bottom:489.075147pt;}
.y182{bottom:490.671947pt;}
.yc7{bottom:491.021387pt;}
.y5a{bottom:491.066187pt;}
.y98{bottom:491.701067pt;}
.y30{bottom:498.043467pt;}
.y156{bottom:505.075787pt;}
.y131{bottom:505.774667pt;}
.y181{bottom:506.672587pt;}
.yc6{bottom:507.978827pt;}
.y59{bottom:508.023627pt;}
.y97{bottom:508.334667pt;}
.yd{bottom:513.503706pt;}
.y155{bottom:521.076427pt;}
.y180{bottom:522.673227pt;}
.y130{bottom:522.732107pt;}
.y2f{bottom:524.915147pt;}
.y58{bottom:524.981067pt;}
.y96{bottom:525.292107pt;}
.yc5{bottom:532.620107pt;}
.y154{bottom:537.077067pt;}
.yc{bottom:537.083068pt;}
.y17f{bottom:538.673867pt;}
.y12f{bottom:539.365707pt;}
.y2e{bottom:540.277067pt;}
.y57{bottom:541.614667pt;}
.y95{bottom:542.249547pt;}
.yb{bottom:549.304210pt;}
.yc4{bottom:549.577547pt;}
.y153{bottom:553.077707pt;}
.y17e{bottom:554.674507pt;}
.y12e{bottom:556.323147pt;}
.y56{bottom:558.572107pt;}
.y94{bottom:558.883147pt;}
.y2d{bottom:563.635787pt;}
.yc3{bottom:566.534987pt;}
.y152{bottom:569.078347pt;}
.y17d{bottom:570.675147pt;}
.ya{bottom:573.120876pt;}
.y12d{bottom:573.280587pt;}
.y55{bottom:575.529547pt;}
.y93{bottom:575.840587pt;}
.y2c{bottom:578.997707pt;}
.yf8{bottom:580.283467pt;}
.yc2{bottom:583.168587pt;}
.y151{bottom:585.078987pt;}
.y9{bottom:585.352804pt;}
.y17c{bottom:586.675787pt;}
.y12c{bottom:589.914187pt;}
.ydc{bottom:592.163147pt;}
.y54{bottom:592.486987pt;}
.y92{bottom:592.798027pt;}
.y2b{bottom:594.359627pt;}
.y8{bottom:597.584733pt;}
.yc1{bottom:600.126027pt;}
.y150{bottom:601.079627pt;}
.y17b{bottom:602.676427pt;}
.y12b{bottom:606.871627pt;}
.y53{bottom:609.120587pt;}
.y91{bottom:609.431627pt;}
.y2a{bottom:609.721547pt;}
.y7{bottom:609.816662pt;}
.y14f{bottom:617.080267pt;}
.yc0{bottom:617.083467pt;}
.y17a{bottom:618.677067pt;}
.y6{bottom:622.048591pt;}
.y12a{bottom:623.829067pt;}
.y29{bottom:625.083467pt;}
.y52{bottom:626.078027pt;}
.y90{bottom:626.389067pt;}
.y14e{bottom:633.080907pt;}
.y179{bottom:634.677707pt;}
.y129{bottom:640.786507pt;}
.y51{bottom:643.035467pt;}
.y8f{bottom:643.346507pt;}
.y14d{bottom:649.081547pt;}
.ybf{bottom:650.363467pt;}
.y178{bottom:650.678347pt;}
.y28{bottom:657.417547pt;}
.y128{bottom:657.420107pt;}
.y50{bottom:659.669067pt;}
.y8e{bottom:660.303947pt;}
.y14c{bottom:665.082187pt;}
.y177{bottom:666.678987pt;}
.y127{bottom:674.377547pt;}
.y4f{bottom:676.626507pt;}
.y8d{bottom:676.937547pt;}
.y5{bottom:679.044633pt;}
.y27{bottom:680.450507pt;}
.y14b{bottom:681.082827pt;}
.y176{bottom:682.679627pt;}
.ybe{bottom:683.963467pt;}
.yf6{bottom:684.283467pt;}
.y126{bottom:691.334987pt;}
.y4e{bottom:693.583947pt;}
.y8c{bottom:693.894987pt;}
.y14a{bottom:697.083467pt;}
.y4{bottom:697.187582pt;}
.y175{bottom:698.680267pt;}
.y26{bottom:703.483467pt;}
.y125{bottom:707.968587pt;}
.y4d{bottom:710.217547pt;}
.y8b{bottom:710.852427pt;}
.y174{bottom:714.680907pt;}
.y3{bottom:718.588064pt;}
.yf5{bottom:720.443467pt;}
.y124{bottom:724.926027pt;}
.y4c{bottom:727.174987pt;}
.y8a{bottom:727.486027pt;}
.y149{bottom:729.083467pt;}
.y173{bottom:730.681547pt;}
.y2{bottom:739.999333pt;}
.y25{bottom:741.243467pt;}
.y123{bottom:741.883467pt;}
.y4b{bottom:744.132427pt;}
.y89{bottom:744.443467pt;}
.y172{bottom:746.682187pt;}
.y4a{bottom:761.089867pt;}
.y171{bottom:762.682827pt;}
.y122{bottom:775.483467pt;}
.y24{bottom:776.443467pt;}
.y49{bottom:777.723467pt;}
.y170{bottom:778.683467pt;}
.y20{bottom:794.683467pt;}
.y1e{bottom:808.283467pt;}
.hf{height:17.333333pt;}
.h9{height:22.379899pt;}
.h1c{height:25.333333pt;}
.h7{height:25.577028pt;}
.h8{height:25.646062pt;}
.hc{height:28.774156pt;}
.h12{height:30.877440pt;}
.h6{height:31.971285pt;}
.ha{height:32.057577pt;}
.h5{height:35.168413pt;}
.hb{height:35.807839pt;}
.h1d{height:36.435000pt;}
.h1f{height:37.327500pt;}
.h13{height:38.277120pt;}
.h1b{height:39.243750pt;}
.h19{height:39.905000pt;}
.h14{height:42.656250pt;}
.h10{height:43.041280pt;}
.h3{height:44.759799pt;}
.h17{height:44.835000pt;}
.h4{height:44.880608pt;}
.h11{height:49.105000pt;}
.h22{height:49.220000pt;}
.h23{height:50.068150pt;}
.h24{height:50.083510pt;}
.h16{height:54.269440pt;}
.h15{height:55.872000pt;}
.h18{height:58.304000pt;}
.h1e{height:105.333333pt;}
.h20{height:136.000000pt;}
.h21{height:166.666667pt;}
.h1a{height:349.333333pt;}
.hd{height:907.127467pt;}
.he{height:907.333333pt;}
.h2{height:908.107455pt;}
.h0{height:908.653333pt;}
.h1{height:908.666667pt;}
.w4{width:16.000000pt;}
.w6{width:75.022667pt;}
.w8{width:114.666667pt;}
.w7{width:246.666667pt;}
.w9{width:378.666667pt;}
.w5{width:416.000000pt;}
.w3{width:490.666667pt;}
.w1{width:642.000000pt;}
.w0{width:642.093333pt;}
.w2{width:642.098800pt;}
.x0{left:0.000000pt;}
.x6{left:7.360000pt;}
.x3{left:33.632411pt;}
.x1{left:39.748375pt;}
.x7{left:75.449467pt;}
.x5{left:76.409467pt;}
.xe{left:98.147707pt;}
.xc{left:99.449467pt;}
.x2{left:107.013197pt;}
.x10{left:120.772347pt;}
.xa{left:130.018933pt;}
.x9{left:152.409467pt;}
.x14{left:188.409467pt;}
.x13{left:248.053333pt;}
.x11{left:249.013333pt;}
.x8{left:265.772000pt;}
.x4{left:314.934414pt;}
.x12{left:320.409467pt;}
.xf{left:486.844027pt;}
.xd{left:551.076133pt;}
.xb{left:567.076133pt;}
}




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