
    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_b37893966980c7c07fc2d8da.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_23ea62b4bc0e4fc39bb96b48.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_8dbc59dc351d4765787bc2a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120117;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_fe5099a1a6be43f543e23c89.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.123047;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_c46999ca0a828adc8acc8639.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126465;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_55e9cd4898ab42b70afba055.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_40604c3333fc14b3a8675ad8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_408f27b5ff14edcc362808d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.911000;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_676ecee8d59776e3cecbb8be.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.142000;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_7bee50db63fabaf0e11485ae.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916000;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_18c3c78db61465737ed55bbd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.954000;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_408f27b5ff14edcc362808d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;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_346017fb8ea7744fe27f65dd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.142000;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_7bee50db63fabaf0e11485ae.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.916000;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_18c3c78db61465737ed55bbd.woff2')format("woff");}.fff{font-family:fff;line-height:0.954000;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_522329cd3062cb6251701567.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.782000;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_18c3c78db61465737ed55bbd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.954000;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_1687c552b3d5fa9ea3787f3b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.142000;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_408f27b5ff14edcc362808d2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.911000;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_7bee50db63fabaf0e11485ae.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.916000;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_56def25075539d434f08da1f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938965;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_7bee50db63fabaf0e11485ae.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.916000;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:ff17;src:url('chunks/assets/font_408f27b5ff14edcc362808d2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.911000;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:ff18;src:url('chunks/assets/font_3c09e024e86cdbc4695e667d.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.142000;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:ff19;src:url('chunks/assets/font_152ed9891b762f7a449cc453.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.683105;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:ff1a;src:url('chunks/assets/font_bef13aae5498ed574ab621e7.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.984000;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;}
.mc{transform:matrix(0.147896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147896,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.186560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186560,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,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);}
.v2{vertical-align:-18.981000px;}
.v5{vertical-align:-16.357800px;}
.v3{vertical-align:-12.769200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.505200px;}
.v1{vertical-align:18.981000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.050771px;}
.ls3{letter-spacing:0.051544px;}
.ls4{letter-spacing:0.054439px;}
.ls2{letter-spacing:33.674965px;}
.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;}
}
.ws19{word-spacing:-35.649644px;}
.ws12{word-spacing:-25.509065px;}
.wsa{word-spacing:-24.749798px;}
.ws0{word-spacing:-16.680000px;}
.ws1{word-spacing:-14.250000px;}
.ws1f{word-spacing:-13.500000px;}
.ws3{word-spacing:-8.307750px;}
.ws8{word-spacing:-8.208450px;}
.wsd{word-spacing:-0.072017px;}
.ws5{word-spacing:-0.070871px;}
.ws1b{word-spacing:-0.069120px;}
.ws16{word-spacing:-0.065197px;}
.ws18{word-spacing:-0.064936px;}
.ws1c{word-spacing:-0.051840px;}
.ws10{word-spacing:-0.051544px;}
.ws1a{word-spacing:-0.048701px;}
.ws13{word-spacing:-0.046465px;}
.wsc{word-spacing:-0.046297px;}
.ws4{word-spacing:-0.045560px;}
.wsb{word-spacing:-0.045082px;}
.wse{word-spacing:-0.041668px;}
.ws7{word-spacing:-0.035618px;}
.ws6{word-spacing:-0.035506px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:20.011627px;}
.wsf{word-spacing:25.388188px;}
.ws11{word-spacing:29.096175px;}
.ws1d{word-spacing:60.880434px;}
.ws17{word-spacing:79.566033px;}
.ws14{word-spacing:107.952636px;}
.ws1e{word-spacing:221.901000px;}
.ws15{word-spacing:362.225482px;}
._d{margin-left:-1022.899200px;}
._1a{margin-left:-477.259061px;}
._2d{margin-left:-430.931253px;}
._2f{margin-left:-381.701156px;}
._1c{margin-left:-326.979926px;}
._2c{margin-left:-309.969182px;}
._2a{margin-left:-302.019676px;}
._2e{margin-left:-258.500798px;}
._23{margin-left:-243.601634px;}
._2b{margin-left:-240.592705px;}
._19{margin-left:-238.777006px;}
._26{margin-left:-232.986785px;}
._24{margin-left:-226.701590px;}
._28{margin-left:-213.938944px;}
._1b{margin-left:-211.752786px;}
._14{margin-left:-204.192916px;}
._10{margin-left:-172.280797px;}
._12{margin-left:-141.313357px;}
._25{margin-left:-106.035929px;}
._29{margin-left:-102.451055px;}
._1d{margin-left:-85.912782px;}
._21{margin-left:-84.775628px;}
._f{margin-left:-75.697310px;}
._27{margin-left:-55.846120px;}
._1e{margin-left:-52.210189px;}
._13{margin-left:-50.074912px;}
._11{margin-left:-44.903937px;}
._17{margin-left:-42.716523px;}
._18{margin-left:-40.937776px;}
._20{margin-left:-14.677200px;}
._1f{margin-left:-13.651800px;}
._3{margin-left:-8.160000px;}
._2{margin-left:-6.324000px;}
._1{margin-left:-4.386000px;}
._0{margin-left:-2.550000px;}
._5{margin-left:-1.455000px;}
._4{width:1.105800px;}
._a{width:2.109000px;}
._6{width:3.112200px;}
._9{width:4.537200px;}
._8{width:5.586000px;}
._7{width:6.612000px;}
._e{width:7.683600px;}
._b{width:8.709600px;}
._22{width:57.940301px;}
._15{width:111.944980px;}
._16{width:169.779562px;}
._32{width:230.527200px;}
._31{width:234.711000px;}
._30{width:242.235000px;}
._33{width:248.391000px;}
._c{width:1913.287800px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:32.833800px;}
.fs7{font-size:33.231000px;}
.fs1d{font-size:35.206200px;}
.fsb{font-size:35.505600px;}
.fs10{font-size:35.617800px;}
.fs6{font-size:36.000000px;}
.fs18{font-size:41.667600px;}
.fs12{font-size:45.081600px;}
.fs9{font-size:45.559800px;}
.fs14{font-size:46.297200px;}
.fs1a{font-size:46.464600px;}
.fs0{font-size:48.000000px;}
.fs23{font-size:48.701400px;}
.fs20{font-size:48.897600px;}
.fsa{font-size:50.771400px;}
.fs16{font-size:51.544196px;}
.fs17{font-size:51.544200px;}
.fs25{font-size:51.840000px;}
.fs26{font-size:54.000000px;}
.fs1c{font-size:54.439200px;}
.fs4{font-size:57.000000px;}
.fs2{font-size:58.200000px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:60.804000px;}
.fsc{font-size:60.866400px;}
.fs11{font-size:61.059000px;}
.fsd{font-size:61.738200px;}
.fs19{font-size:64.816200px;}
.fs22{font-size:64.935600px;}
.fs1f{font-size:65.196600px;}
.fs24{font-size:69.120000px;}
.fs13{font-size:70.126200px;}
.fs8{font-size:70.870800px;}
.fs5{font-size:72.000000px;}
.fs15{font-size:72.017400px;}
.fs1b{font-size:72.279000px;}
.fs1e{font-size:86.080200px;}
.fs1{font-size:102.000000px;}
.fs21{font-size:108.564000px;}
.y28{bottom:-26.942780px;}
.y0{bottom:0.000000px;}
.y90{bottom:4.219200px;}
.yaf{bottom:4.455750px;}
.ya9{bottom:5.949000px;}
.ybb{bottom:8.203800px;}
.yb0{bottom:8.530500px;}
.y91{bottom:8.771850px;}
.y7d{bottom:10.280700px;}
.yb8{bottom:12.521550px;}
.y7e{bottom:14.689050px;}
.y7a{bottom:18.260700px;}
.y7b{bottom:18.337200px;}
.y7c{bottom:21.453450px;}
.yba{bottom:27.721050px;}
.yac{bottom:28.904550px;}
.y8d{bottom:31.766100px;}
.yad{bottom:32.979300px;}
.yae{bottom:32.979450px;}
.ybc{bottom:34.973850px;}
.y8e{bottom:35.855550px;}
.y75{bottom:36.198300px;}
.y8f{bottom:37.013100px;}
.yb9{bottom:39.291750px;}
.y76{bottom:39.998550px;}
.y79{bottom:40.074600px;}
.y77{bottom:40.150500px;}
.y78{bottom:43.266750px;}
.yab{bottom:52.945050px;}
.y8b{bottom:54.368019px;}
.y8c{bottom:54.373950px;}
.y1{bottom:57.798220px;}
.y71{bottom:60.291750px;}
.y72{bottom:64.092000px;}
.y73{bottom:64.168050px;}
.y74{bottom:67.284300px;}
.y83{bottom:84.352721px;}
.y85{bottom:84.467700px;}
.y69{bottom:85.145250px;}
.y27{bottom:85.462571px;}
.yaa{bottom:86.685300px;}
.y11d{bottom:86.810320px;}
.y88{bottom:89.020350px;}
.ya6{bottom:89.374650px;}
.y6d{bottom:89.553600px;}
.ya7{bottom:90.760050px;}
.ya5{bottom:90.760200px;}
.y51{bottom:90.918220px;}
.y146{bottom:95.132470px;}
.y14e{bottom:95.617270px;}
.y82{bottom:98.752721px;}
.y6b{bottom:98.902050px;}
.y68{bottom:103.310400px;}
.y6f{bottom:103.311450px;}
.y70{bottom:103.386450px;}
.y26{bottom:104.212570px;}
.y11c{bottom:105.560320px;}
.y106{bottom:106.642871px;}
.y50{bottom:109.668220px;}
.y86{bottom:111.783000px;}
.y6a{bottom:112.810350px;}
.ya2{bottom:113.823450px;}
.y145{bottom:113.882470px;}
.yb7{bottom:114.298721px;}
.ya3{bottom:115.208850px;}
.ya1{bottom:115.209150px;}
.ya4{bottom:115.290300px;}
.y87{bottom:116.258400px;}
.y89{bottom:116.259000px;}
.y6c{bottom:117.218850px;}
.y6e{bottom:117.219750px;}
.y25{bottom:122.962570px;}
.y105{bottom:125.392871px;}
.y11b{bottom:126.436270px;}
.y4f{bottom:128.418220px;}
.y144{bottom:134.758570px;}
.y24{bottom:141.712570px;}
.y11a{bottom:145.186270px;}
.y104{bottom:146.268821px;}
.y4e{bottom:147.168220px;}
.y143{bottom:153.508570px;}
.y81{bottom:153.561521px;}
.y23{bottom:162.588521px;}
.y103{bottom:165.018821px;}
.y4d{bottom:165.918220px;}
.y119{bottom:166.062220px;}
.yde{bottom:167.426920px;}
.y142{bottom:172.258571px;}
.y80{bottom:172.311521px;}
.y22{bottom:181.338521px;}
.y102{bottom:183.768821px;}
.y118{bottom:184.812220px;}
.ydd{bottom:186.176920px;}
.yb6{bottom:186.491170px;}
.y4c{bottom:186.794171px;}
.y7f{bottom:191.061521px;}
.y141{bottom:193.134520px;}
.y21{bottom:200.088521px;}
.y101{bottom:202.518821px;}
.y117{bottom:203.562220px;}
.ydc{bottom:204.926920px;}
.yb5{bottom:205.241170px;}
.y4b{bottom:205.544171px;}
.y140{bottom:211.884520px;}
.y67{bottom:211.938220px;}
.y20{bottom:218.838521px;}
.y100{bottom:223.394921px;}
.ydb{bottom:223.676920px;}
.yb4{bottom:223.991170px;}
.y4a{bottom:224.294171px;}
.y116{bottom:224.438321px;}
.y13f{bottom:230.634520px;}
.y1f{bottom:237.588521px;}
.yff{bottom:242.144921px;}
.yda{bottom:242.426920px;}
.y49{bottom:243.044171px;}
.y115{bottom:243.188321px;}
.y13e{bottom:251.510470px;}
.y1e{bottom:256.338521px;}
.yb3{bottom:259.221070px;}
.yfe{bottom:260.894921px;}
.yd9{bottom:261.176920px;}
.y48{bottom:261.794171px;}
.y114{bottom:261.938321px;}
.y13d{bottom:270.260470px;}
.y1d{bottom:277.214470px;}
.yb2{bottom:277.971070px;}
.yfd{bottom:279.644921px;}
.yd8{bottom:279.926920px;}
.y47{bottom:280.544171px;}
.y13c{bottom:289.010470px;}
.y1c{bottom:295.964470px;}
.yb1{bottom:296.721070px;}
.y113{bottom:297.168220px;}
.yfc{bottom:298.394921px;}
.yd7{bottom:298.676920px;}
.y46{bottom:299.294171px;}
.y13b{bottom:309.886571px;}
.y1b{bottom:314.714470px;}
.y112{bottom:315.918220px;}
.yfb{bottom:317.144921px;}
.y45{bottom:318.044171px;}
.ya0{bottom:321.198220px;}
.y13a{bottom:328.636571px;}
.y1a{bottom:333.464470px;}
.y111{bottom:334.668220px;}
.yfa{bottom:335.894921px;}
.y44{bottom:336.794171px;}
.yd6{bottom:338.302871px;}
.y139{bottom:349.512520px;}
.y66{bottom:352.186270px;}
.y19{bottom:352.214470px;}
.yd5{bottom:352.702870px;}
.yf9{bottom:354.644921px;}
.y43{bottom:355.544170px;}
.y138{bottom:368.262520px;}
.yd4{bottom:369.416320px;}
.y65{bottom:370.936270px;}
.y18{bottom:370.964470px;}
.y42{bottom:374.294170px;}
.yf8{bottom:375.520871px;}
.y137{bottom:389.138470px;}
.y64{bottom:389.686270px;}
.y17{bottom:389.714470px;}
.yd2{bottom:390.292270px;}
.y41{bottom:393.044170px;}
.yf7{bottom:394.270871px;}
.ya8{bottom:406.090720px;}
.y136{bottom:407.888470px;}
.y63{bottom:410.562220px;}
.y16{bottom:410.590571px;}
.yd3{bottom:411.168370px;}
.y110{bottom:411.794170px;}
.yf6{bottom:413.020871px;}
.y40{bottom:413.920120px;}
.y135{bottom:428.764421px;}
.y62{bottom:429.312220px;}
.y15{bottom:429.340571px;}
.y10f{bottom:430.544170px;}
.yf5{bottom:431.770871px;}
.yd1{bottom:432.485020px;}
.y3f{bottom:432.670120px;}
.y134{bottom:447.514421px;}
.y61{bottom:448.062220px;}
.y14{bottom:448.090571px;}
.y10e{bottom:449.294170px;}
.yf4{bottom:450.520871px;}
.y3e{bottom:451.420120px;}
.ycf{bottom:453.361120px;}
.y60{bottom:466.812220px;}
.y13{bottom:466.840571px;}
.y10d{bottom:468.044170px;}
.y133{bottom:468.390520px;}
.yf3{bottom:469.270871px;}
.y9f{bottom:469.723121px;}
.y3d{bottom:470.170120px;}
.yd0{bottom:474.237071px;}
.y5f{bottom:485.562220px;}
.y12{bottom:485.590570px;}
.y10c{bottom:486.794170px;}
.y132{bottom:487.140520px;}
.yf2{bottom:488.020871px;}
.y9e{bottom:488.473121px;}
.y3c{bottom:488.920120px;}
.yce{bottom:495.553870px;}
.y11{bottom:504.340570px;}
.yf1{bottom:506.770871px;}
.y9d{bottom:507.223121px;}
.y3b{bottom:507.670120px;}
.y131{bottom:508.016470px;}
.ycc{bottom:516.429821px;}
.y5e{bottom:520.792270px;}
.y10{bottom:523.090570px;}
.yf0{bottom:525.520871px;}
.y9c{bottom:525.973121px;}
.y3a{bottom:526.420120px;}
.y130{bottom:526.766470px;}
.ycd{bottom:537.305770px;}
.y5d{bottom:539.542270px;}
.yef{bottom:544.270871px;}
.y9b{bottom:544.723121px;}
.y39{bottom:545.170120px;}
.yf{bottom:546.092470px;}
.y12f{bottom:547.642420px;}
.y5c{bottom:558.292270px;}
.ycb{bottom:558.622570px;}
.y9a{bottom:563.473121px;}
.y38{bottom:563.920120px;}
.yee{bottom:565.334320px;}
.y12e{bottom:566.392420px;}
.y5b{bottom:577.042270px;}
.yc9{bottom:579.498520px;}
.y37{bottom:582.670120px;}
.y10b{bottom:584.796220px;}
.yec{bottom:586.210270px;}
.y12d{bottom:587.268370px;}
.ye{bottom:594.078371px;}
.y5a{bottom:595.792270px;}
.y99{bottom:598.703020px;}
.yca{bottom:600.374470px;}
.y36{bottom:601.420120px;}
.y10a{bottom:603.546220px;}
.y12c{bottom:606.018370px;}
.yed{bottom:607.086370px;}
.y98{bottom:617.453020px;}
.yc8{bottom:621.690070px;}
.y109{bottom:622.296220px;}
.y35{bottom:624.422170px;}
.y59{bottom:626.548120px;}
.y12b{bottom:626.894320px;}
.yeb{bottom:628.403021px;}
.yd{bottom:635.830270px;}
.y97{bottom:636.203020px;}
.y108{bottom:641.046220px;}
.yc7{bottom:643.008070px;}
.y12a{bottom:645.644320px;}
.ye9{bottom:649.279120px;}
.yc{bottom:654.580270px;}
.y96{bottom:654.953020px;}
.y107{bottom:664.048120px;}
.y129{bottom:666.520421px;}
.yc6{bottom:666.638470px;}
.y14d{bottom:669.566470px;}
.yea{bottom:670.155070px;}
.y34{bottom:672.407920px;}
.yb{bottom:673.330270px;}
.y95{bottom:673.703020px;}
.y58{bottom:674.534020px;}
.y128{bottom:685.270421px;}
.y14c{bottom:688.792421px;}
.y33{bottom:691.157920px;}
.ye8{bottom:691.471870px;}
.ya{bottom:692.080270px;}
.y94{bottom:692.453020px;}
.y57{bottom:693.284020px;}
.y127{bottom:706.146370px;}
.y14b{bottom:708.018370px;}
.yc5{bottom:708.390370px;}
.y32{bottom:709.907920px;}
.y9{bottom:710.830270px;}
.y93{bottom:711.203020px;}
.y56{bottom:712.034020px;}
.ye6{bottom:712.347821px;}
.y126{bottom:724.896370px;}
.yc4{bottom:727.140370px;}
.y14a{bottom:727.244320px;}
.y31{bottom:728.657920px;}
.y8{bottom:729.580270px;}
.y92{bottom:729.953020px;}
.y55{bottom:730.784020px;}
.ye7{bottom:733.223771px;}
.y125{bottom:745.772321px;}
.yc3{bottom:745.890220px;}
.y149{bottom:746.470421px;}
.y7{bottom:748.330270px;}
.y30{bottom:749.534020px;}
.ye5{bottom:754.540571px;}
.y84{bottom:761.050720px;}
.y8a{bottom:761.056581px;}
.y124{bottom:764.522321px;}
.yc2{bottom:764.640220px;}
.y148{bottom:765.696370px;}
.y6{bottom:767.080270px;}
.y2f{bottom:768.284020px;}
.ye3{bottom:775.416520px;}
.yc1{bottom:783.390220px;}
.y147{bottom:784.922321px;}
.y123{bottom:785.398270px;}
.y5{bottom:785.830270px;}
.y2e{bottom:787.034020px;}
.ye4{bottom:796.292470px;}
.y2d{bottom:805.784020px;}
.y122{bottom:806.274371px;}
.y54{bottom:807.909970px;}
.ye2{bottom:817.608071px;}
.yc0{bottom:818.620271px;}
.y4{bottom:818.934220px;}
.y2c{bottom:824.534020px;}
.y121{bottom:825.024371px;}
.y53{bottom:826.659970px;}
.ybf{bottom:837.370271px;}
.ye1{bottom:838.926071px;}
.y2b{bottom:843.284020px;}
.y52{bottom:845.409970px;}
.y120{bottom:845.900321px;}
.ybe{bottom:856.120271px;}
.ye0{bottom:862.556320px;}
.y2a{bottom:864.159970px;}
.y11f{bottom:864.650321px;}
.y3{bottom:865.384870px;}
.ybd{bottom:879.122171px;}
.ydf{bottom:881.306320px;}
.y29{bottom:882.909970px;}
.y11e{bottom:883.400321px;}
.y2{bottom:895.984721px;}
.h33{height:22.086000px;}
.h18{height:22.852325px;}
.h30{height:24.503515px;}
.h16{height:24.676392px;}
.h14{height:24.853920px;}
.h1a{height:24.932460px;}
.ha{height:25.013672px;}
.h2a{height:29.167320px;}
.he{height:31.664061px;}
.h11{height:31.891860px;}
.h2{height:31.992188px;}
.h21{height:32.176554px;}
.h25{height:32.408040px;}
.h36{height:34.090980px;}
.h13{height:35.336894px;}
.h28{height:35.874760px;}
.h29{height:35.874763px;}
.h3a{height:36.288000px;}
.h2f{height:37.889683px;}
.h3c{height:37.990723px;}
.h40{height:40.755000px;}
.hb{height:41.273438px;}
.h1f{height:41.437500px;}
.h1d{height:41.745562px;}
.h10{height:42.188375px;}
.h19{height:42.562800px;}
.h15{height:42.606480px;}
.h1b{height:42.741300px;}
.h23{height:42.871207px;}
.h2c{height:43.026220px;}
.h17{height:43.216740px;}
.h5{height:43.710938px;}
.h2b{height:45.371340px;}
.h37{height:45.454920px;}
.h3d{height:46.432617px;}
.h3f{height:46.617188px;}
.h3e{height:46.643555px;}
.h39{height:48.384000px;}
.h6{height:49.012207px;}
.h1e{height:49.088340px;}
.h7{height:49.207031px;}
.h8{height:49.234863px;}
.hd{height:49.255206px;}
.h12{height:49.609560px;}
.h22{height:50.052093px;}
.h4{height:50.271387px;}
.h26{height:50.412180px;}
.h2d{height:50.595300px;}
.h1c{height:50.842094px;}
.h9{height:52.417969px;}
.h38{height:56.130000px;}
.h35{height:60.130366px;}
.h32{height:60.372052px;}
.h3b{height:64.005120px;}
.hf{height:65.626361px;}
.h24{height:66.688112px;}
.h3{height:74.308594px;}
.h31{height:79.710265px;}
.h34{height:100.530264px;}
.h27{height:131.169140px;}
.h20{height:131.175000px;}
.h2e{height:134.469000px;}
.hc{height:135.723000px;}
.h1{height:978.750000px;}
.h0{height:978.770508px;}
.w7{width:5.379000px;}
.w8{width:220.204500px;}
.w6{width:268.936500px;}
.w5{width:338.224995px;}
.w4{width:338.226000px;}
.w3{width:339.307500px;}
.w2{width:680.259015px;}
.w1{width:681.750000px;}
.w0{width:681.764305px;}
.x0{left:0.000000px;}
.x1{left:1.505291px;}
.x34{left:3.396900px;}
.x32{left:4.944450px;}
.x26{left:11.295900px;}
.x17{left:12.425850px;}
.x39{left:13.672050px;}
.x31{left:15.376050px;}
.x4{left:16.505141px;}
.x29{left:18.635850px;}
.xf{left:21.545250px;}
.x12{left:26.866650px;}
.xb{left:31.274550px;}
.x27{left:35.314800px;}
.x2a{left:38.846850px;}
.x28{left:42.027900px;}
.x1c{left:45.792750px;}
.x10{left:66.845100px;}
.x6{left:69.536740px;}
.xa{left:72.696750px;}
.xd{left:83.109600px;}
.x5c{left:84.536590px;}
.x3{left:86.544490px;}
.x8{left:92.686650px;}
.x30{left:93.693750px;}
.x23{left:98.819100px;}
.x18{left:100.439250px;}
.x5a{left:101.544490px;}
.xe{left:103.174500px;}
.x5b{left:105.536740px;}
.xc{left:107.355300px;}
.x19{left:109.483800px;}
.x2f{left:110.726400px;}
.x5{left:112.056341px;}
.x38{left:115.225050px;}
.x24{left:116.952150px;}
.x1d{left:119.972400px;}
.x21{left:121.350450px;}
.x59{left:122.544640px;}
.x9{left:123.544650px;}
.x1f{left:127.137600px;}
.x1e{left:129.016950px;}
.x7{left:134.641350px;}
.x36{left:139.837950px;}
.x2b{left:141.939450px;}
.x2e{left:143.650800px;}
.x25{left:145.269750px;}
.x22{left:149.745600px;}
.x2c{left:152.696850px;}
.x20{left:155.533800px;}
.x11{left:163.675050px;}
.x35{left:168.766350px;}
.x13{left:178.115850px;}
.x4a{left:184.293191px;}
.x14{left:187.160550px;}
.x37{left:190.786800px;}
.x2d{left:192.324790px;}
.x49{left:193.774840px;}
.x33{left:198.558750px;}
.x3c{left:208.009390px;}
.x3d{left:210.064390px;}
.x3a{left:226.209040px;}
.x1a{left:248.496300px;}
.x1b{left:255.336600px;}
.x53{left:264.705940px;}
.x57{left:268.040740px;}
.x4c{left:274.554941px;}
.x48{left:276.210041px;}
.x4b{left:277.735540px;}
.x3e{left:284.912891px;}
.x3b{left:293.853790px;}
.x47{left:294.913690px;}
.x15{left:295.923150px;}
.x16{left:302.763600px;}
.x54{left:352.589141px;}
.x4e{left:362.579440px;}
.x4d{left:365.283341px;}
.x40{left:373.338340px;}
.x45{left:377.155540px;}
.x3f{left:382.086641px;}
.x5d{left:434.962390px;}
.x55{left:440.049340px;}
.x50{left:450.247691px;}
.x4f{left:452.305391px;}
.x46{left:461.217340px;}
.x42{left:464.388341px;}
.x41{left:470.427341px;}
.x56{left:527.711141px;}
.x58{left:530.175790px;}
.x52{left:537.911590px;}
.x51{left:540.223691px;}
.x44{left:548.889640px;}
.x43{left:558.952691px;}
.x2{left:601.906350px;}
@media print{
.v2{vertical-align:-16.872000pt;}
.v5{vertical-align:-14.540267pt;}
.v3{vertical-align:-11.350400pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.782400pt;}
.v1{vertical-align:16.872000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.045130pt;}
.ls3{letter-spacing:0.045817pt;}
.ls4{letter-spacing:0.048390pt;}
.ls2{letter-spacing:29.933302pt;}
.ws19{word-spacing:-31.688573pt;}
.ws12{word-spacing:-22.674725pt;}
.wsa{word-spacing:-21.999821pt;}
.ws0{word-spacing:-14.826667pt;}
.ws1{word-spacing:-12.666667pt;}
.ws1f{word-spacing:-12.000000pt;}
.ws3{word-spacing:-7.384667pt;}
.ws8{word-spacing:-7.296400pt;}
.wsd{word-spacing:-0.064015pt;}
.ws5{word-spacing:-0.062996pt;}
.ws1b{word-spacing:-0.061440pt;}
.ws16{word-spacing:-0.057953pt;}
.ws18{word-spacing:-0.057721pt;}
.ws1c{word-spacing:-0.046080pt;}
.ws10{word-spacing:-0.045817pt;}
.ws1a{word-spacing:-0.043290pt;}
.ws13{word-spacing:-0.041302pt;}
.wsc{word-spacing:-0.041153pt;}
.ws4{word-spacing:-0.040498pt;}
.wsb{word-spacing:-0.040073pt;}
.wse{word-spacing:-0.037038pt;}
.ws7{word-spacing:-0.031660pt;}
.ws6{word-spacing:-0.031561pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:17.788112pt;}
.wsf{word-spacing:22.567278pt;}
.ws11{word-spacing:25.863267pt;}
.ws1d{word-spacing:54.115942pt;}
.ws17{word-spacing:70.725363pt;}
.ws14{word-spacing:95.957899pt;}
.ws1e{word-spacing:197.245333pt;}
.ws15{word-spacing:321.978206pt;}
._d{margin-left:-909.243733pt;}
._1a{margin-left:-424.230277pt;}
._2d{margin-left:-383.050002pt;}
._2f{margin-left:-339.289916pt;}
._1c{margin-left:-290.648823pt;}
._2c{margin-left:-275.528162pt;}
._2a{margin-left:-268.461935pt;}
._2e{margin-left:-229.778487pt;}
._23{margin-left:-216.534785pt;}
._2b{margin-left:-213.860182pt;}
._19{margin-left:-212.246228pt;}
._26{margin-left:-207.099365pt;}
._24{margin-left:-201.512525pt;}
._28{margin-left:-190.167950pt;}
._1b{margin-left:-188.224698pt;}
._14{margin-left:-181.504814pt;}
._10{margin-left:-153.138486pt;}
._12{margin-left:-125.611873pt;}
._25{margin-left:-94.254159pt;}
._29{margin-left:-91.067604pt;}
._1d{margin-left:-76.366917pt;}
._21{margin-left:-75.356114pt;}
._f{margin-left:-67.286498pt;}
._27{margin-left:-49.640995pt;}
._1e{margin-left:-46.409057pt;}
._13{margin-left:-44.511033pt;}
._11{margin-left:-39.914610pt;}
._17{margin-left:-37.970243pt;}
._18{margin-left:-36.389134pt;}
._20{margin-left:-13.046400pt;}
._1f{margin-left:-12.134933pt;}
._3{margin-left:-7.253333pt;}
._2{margin-left:-5.621333pt;}
._1{margin-left:-3.898667pt;}
._0{margin-left:-2.266667pt;}
._5{margin-left:-1.293333pt;}
._4{width:0.982933pt;}
._a{width:1.874667pt;}
._6{width:2.766400pt;}
._9{width:4.033067pt;}
._8{width:4.965333pt;}
._7{width:5.877333pt;}
._e{width:6.829867pt;}
._b{width:7.741867pt;}
._22{width:51.502489pt;}
._15{width:99.506649pt;}
._16{width:150.915166pt;}
._32{width:204.913067pt;}
._31{width:208.632000pt;}
._30{width:215.320000pt;}
._33{width:220.792000pt;}
._c{width:1700.700267pt;}
.fse{font-size:29.185600pt;}
.fs7{font-size:29.538667pt;}
.fs1d{font-size:31.294400pt;}
.fsb{font-size:31.560533pt;}
.fs10{font-size:31.660267pt;}
.fs6{font-size:32.000000pt;}
.fs18{font-size:37.037867pt;}
.fs12{font-size:40.072533pt;}
.fs9{font-size:40.497600pt;}
.fs14{font-size:41.153067pt;}
.fs1a{font-size:41.301867pt;}
.fs0{font-size:42.666667pt;}
.fs23{font-size:43.290133pt;}
.fs20{font-size:43.464533pt;}
.fsa{font-size:45.130133pt;}
.fs16{font-size:45.817063pt;}
.fs17{font-size:45.817067pt;}
.fs25{font-size:46.080000pt;}
.fs26{font-size:48.000000pt;}
.fs1c{font-size:48.390400pt;}
.fs4{font-size:50.666667pt;}
.fs2{font-size:51.733333pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:54.048000pt;}
.fsc{font-size:54.103467pt;}
.fs11{font-size:54.274667pt;}
.fsd{font-size:54.878400pt;}
.fs19{font-size:57.614400pt;}
.fs22{font-size:57.720533pt;}
.fs1f{font-size:57.952533pt;}
.fs24{font-size:61.440000pt;}
.fs13{font-size:62.334400pt;}
.fs8{font-size:62.996267pt;}
.fs5{font-size:64.000000pt;}
.fs15{font-size:64.015467pt;}
.fs1b{font-size:64.248000pt;}
.fs1e{font-size:76.515733pt;}
.fs1{font-size:90.666667pt;}
.fs21{font-size:96.501333pt;}
.y28{bottom:-23.949137pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:3.750400pt;}
.yaf{bottom:3.960667pt;}
.ya9{bottom:5.288000pt;}
.ybb{bottom:7.292267pt;}
.yb0{bottom:7.582667pt;}
.y91{bottom:7.797200pt;}
.y7d{bottom:9.138400pt;}
.yb8{bottom:11.130267pt;}
.y7e{bottom:13.056933pt;}
.y7a{bottom:16.231733pt;}
.y7b{bottom:16.299733pt;}
.y7c{bottom:19.069733pt;}
.yba{bottom:24.640933pt;}
.yac{bottom:25.692933pt;}
.y8d{bottom:28.236533pt;}
.yad{bottom:29.314933pt;}
.yae{bottom:29.315067pt;}
.ybc{bottom:31.087867pt;}
.y8e{bottom:31.871600pt;}
.y75{bottom:32.176267pt;}
.y8f{bottom:32.900533pt;}
.yb9{bottom:34.926000pt;}
.y76{bottom:35.554267pt;}
.y79{bottom:35.621867pt;}
.y77{bottom:35.689333pt;}
.y78{bottom:38.459333pt;}
.yab{bottom:47.062267pt;}
.y8b{bottom:48.327128pt;}
.y8c{bottom:48.332400pt;}
.y1{bottom:51.376196pt;}
.y71{bottom:53.592667pt;}
.y72{bottom:56.970667pt;}
.y73{bottom:57.038267pt;}
.y74{bottom:59.808267pt;}
.y83{bottom:74.980196pt;}
.y85{bottom:75.082400pt;}
.y69{bottom:75.684667pt;}
.y27{bottom:75.966729pt;}
.yaa{bottom:77.053600pt;}
.y11d{bottom:77.164729pt;}
.y88{bottom:79.129200pt;}
.ya6{bottom:79.444133pt;}
.y6d{bottom:79.603200pt;}
.ya7{bottom:80.675600pt;}
.ya5{bottom:80.675733pt;}
.y51{bottom:80.816196pt;}
.y146{bottom:84.562196pt;}
.y14e{bottom:84.993129pt;}
.y82{bottom:87.780196pt;}
.y6b{bottom:87.912933pt;}
.y68{bottom:91.831467pt;}
.y6f{bottom:91.832400pt;}
.y70{bottom:91.899067pt;}
.y26{bottom:92.633396pt;}
.y11c{bottom:93.831396pt;}
.y106{bottom:94.793663pt;}
.y50{bottom:97.482863pt;}
.y86{bottom:99.362667pt;}
.y6a{bottom:100.275867pt;}
.ya2{bottom:101.176400pt;}
.y145{bottom:101.228863pt;}
.yb7{bottom:101.598863pt;}
.ya3{bottom:102.407867pt;}
.ya1{bottom:102.408133pt;}
.ya4{bottom:102.480267pt;}
.y87{bottom:103.340800pt;}
.y89{bottom:103.341333pt;}
.y6c{bottom:104.194533pt;}
.y6e{bottom:104.195333pt;}
.y25{bottom:109.300063pt;}
.y105{bottom:111.460329pt;}
.y11b{bottom:112.387796pt;}
.y4f{bottom:114.149529pt;}
.y144{bottom:119.785396pt;}
.y24{bottom:125.966729pt;}
.y11a{bottom:129.054463pt;}
.y104{bottom:130.016729pt;}
.y4e{bottom:130.816196pt;}
.y143{bottom:136.452063pt;}
.y81{bottom:136.499129pt;}
.y23{bottom:144.523129pt;}
.y103{bottom:146.683396pt;}
.y4d{bottom:147.482863pt;}
.y119{bottom:147.610863pt;}
.yde{bottom:148.823929pt;}
.y142{bottom:153.118729pt;}
.y80{bottom:153.165796pt;}
.y22{bottom:161.189796pt;}
.y102{bottom:163.350063pt;}
.y118{bottom:164.277529pt;}
.ydd{bottom:165.490596pt;}
.yb6{bottom:165.769929pt;}
.y4c{bottom:166.039263pt;}
.y7f{bottom:169.832463pt;}
.y141{bottom:171.675129pt;}
.y21{bottom:177.856463pt;}
.y101{bottom:180.016729pt;}
.y117{bottom:180.944196pt;}
.ydc{bottom:182.157263pt;}
.yb5{bottom:182.436596pt;}
.y4b{bottom:182.705929pt;}
.y140{bottom:188.341796pt;}
.y67{bottom:188.389529pt;}
.y20{bottom:194.523129pt;}
.y100{bottom:198.573263pt;}
.ydb{bottom:198.823929pt;}
.yb4{bottom:199.103263pt;}
.y4a{bottom:199.372596pt;}
.y116{bottom:199.500729pt;}
.y13f{bottom:205.008463pt;}
.y1f{bottom:211.189796pt;}
.yff{bottom:215.239929pt;}
.yda{bottom:215.490596pt;}
.y49{bottom:216.039263pt;}
.y115{bottom:216.167396pt;}
.y13e{bottom:223.564863pt;}
.y1e{bottom:227.856463pt;}
.yb3{bottom:230.418729pt;}
.yfe{bottom:231.906596pt;}
.yd9{bottom:232.157263pt;}
.y48{bottom:232.705929pt;}
.y114{bottom:232.834063pt;}
.y13d{bottom:240.231529pt;}
.y1d{bottom:246.412863pt;}
.yb2{bottom:247.085396pt;}
.yfd{bottom:248.573263pt;}
.yd8{bottom:248.823929pt;}
.y47{bottom:249.372596pt;}
.y13c{bottom:256.898196pt;}
.y1c{bottom:263.079529pt;}
.yb1{bottom:263.752063pt;}
.y113{bottom:264.149529pt;}
.yfc{bottom:265.239929pt;}
.yd7{bottom:265.490596pt;}
.y46{bottom:266.039263pt;}
.y13b{bottom:275.454729pt;}
.y1b{bottom:279.746196pt;}
.y112{bottom:280.816196pt;}
.yfb{bottom:281.906596pt;}
.y45{bottom:282.705929pt;}
.ya0{bottom:285.509529pt;}
.y13a{bottom:292.121396pt;}
.y1a{bottom:296.412863pt;}
.y111{bottom:297.482863pt;}
.yfa{bottom:298.573263pt;}
.y44{bottom:299.372596pt;}
.yd6{bottom:300.713663pt;}
.y139{bottom:310.677796pt;}
.y66{bottom:313.054463pt;}
.y19{bottom:313.079529pt;}
.yd5{bottom:313.513663pt;}
.yf9{bottom:315.239929pt;}
.y43{bottom:316.039263pt;}
.y138{bottom:327.344463pt;}
.yd4{bottom:328.370063pt;}
.y65{bottom:329.721129pt;}
.y18{bottom:329.746196pt;}
.y42{bottom:332.705929pt;}
.yf8{bottom:333.796329pt;}
.y137{bottom:345.900863pt;}
.y64{bottom:346.387796pt;}
.y17{bottom:346.412863pt;}
.yd2{bottom:346.926463pt;}
.y41{bottom:349.372596pt;}
.yf7{bottom:350.462996pt;}
.ya8{bottom:360.969529pt;}
.y136{bottom:362.567529pt;}
.y63{bottom:364.944196pt;}
.y16{bottom:364.969396pt;}
.yd3{bottom:365.482996pt;}
.y110{bottom:366.039263pt;}
.yf6{bottom:367.129663pt;}
.y40{bottom:367.928996pt;}
.y135{bottom:381.123929pt;}
.y62{bottom:381.610863pt;}
.y15{bottom:381.636063pt;}
.y10f{bottom:382.705929pt;}
.yf5{bottom:383.796329pt;}
.yd1{bottom:384.431129pt;}
.y3f{bottom:384.595663pt;}
.y134{bottom:397.790596pt;}
.y61{bottom:398.277529pt;}
.y14{bottom:398.302729pt;}
.y10e{bottom:399.372596pt;}
.yf4{bottom:400.462996pt;}
.y3e{bottom:401.262329pt;}
.ycf{bottom:402.987663pt;}
.y60{bottom:414.944196pt;}
.y13{bottom:414.969396pt;}
.y10d{bottom:416.039263pt;}
.y133{bottom:416.347129pt;}
.yf3{bottom:417.129663pt;}
.y9f{bottom:417.531663pt;}
.y3d{bottom:417.928996pt;}
.yd0{bottom:421.544063pt;}
.y5f{bottom:431.610863pt;}
.y12{bottom:431.636063pt;}
.y10c{bottom:432.705929pt;}
.y132{bottom:433.013796pt;}
.yf2{bottom:433.796329pt;}
.y9e{bottom:434.198329pt;}
.y3c{bottom:434.595663pt;}
.yce{bottom:440.492329pt;}
.y11{bottom:448.302729pt;}
.yf1{bottom:450.462996pt;}
.y9d{bottom:450.864996pt;}
.y3b{bottom:451.262329pt;}
.y131{bottom:451.570196pt;}
.ycc{bottom:459.048729pt;}
.y5e{bottom:462.926463pt;}
.y10{bottom:464.969396pt;}
.yf0{bottom:467.129663pt;}
.y9c{bottom:467.531663pt;}
.y3a{bottom:467.928996pt;}
.y130{bottom:468.236863pt;}
.ycd{bottom:477.605129pt;}
.y5d{bottom:479.593129pt;}
.yef{bottom:483.796329pt;}
.y9b{bottom:484.198329pt;}
.y39{bottom:484.595663pt;}
.yf{bottom:485.415529pt;}
.y12f{bottom:486.793263pt;}
.y5c{bottom:496.259796pt;}
.ycb{bottom:496.553396pt;}
.y9a{bottom:500.864996pt;}
.y38{bottom:501.262329pt;}
.yee{bottom:502.519396pt;}
.y12e{bottom:503.459929pt;}
.y5b{bottom:512.926463pt;}
.yc9{bottom:515.109796pt;}
.y37{bottom:517.928996pt;}
.y10b{bottom:519.818863pt;}
.yec{bottom:521.075796pt;}
.y12d{bottom:522.016329pt;}
.ye{bottom:528.069663pt;}
.y5a{bottom:529.593129pt;}
.y99{bottom:532.180463pt;}
.yca{bottom:533.666196pt;}
.y36{bottom:534.595663pt;}
.y10a{bottom:536.485529pt;}
.y12c{bottom:538.682996pt;}
.yed{bottom:539.632329pt;}
.y98{bottom:548.847129pt;}
.yc8{bottom:552.613396pt;}
.y109{bottom:553.152196pt;}
.y35{bottom:555.041929pt;}
.y59{bottom:556.931663pt;}
.y12b{bottom:557.239396pt;}
.yeb{bottom:558.580463pt;}
.yd{bottom:565.182463pt;}
.y97{bottom:565.513796pt;}
.y108{bottom:569.818863pt;}
.yc7{bottom:571.562729pt;}
.y12a{bottom:573.906063pt;}
.ye9{bottom:577.136996pt;}
.yc{bottom:581.849129pt;}
.y96{bottom:582.180463pt;}
.y107{bottom:590.264996pt;}
.y129{bottom:592.462596pt;}
.yc6{bottom:592.567529pt;}
.y14d{bottom:595.170196pt;}
.yea{bottom:595.693396pt;}
.y34{bottom:597.695929pt;}
.yb{bottom:598.515796pt;}
.y95{bottom:598.847129pt;}
.y58{bottom:599.585796pt;}
.y128{bottom:609.129263pt;}
.y14c{bottom:612.259929pt;}
.y33{bottom:614.362596pt;}
.ye8{bottom:614.641663pt;}
.ya{bottom:615.182463pt;}
.y94{bottom:615.513796pt;}
.y57{bottom:616.252463pt;}
.y127{bottom:627.685663pt;}
.y14b{bottom:629.349663pt;}
.yc5{bottom:629.680329pt;}
.y32{bottom:631.029263pt;}
.y9{bottom:631.849129pt;}
.y93{bottom:632.180463pt;}
.y56{bottom:632.919129pt;}
.ye6{bottom:633.198063pt;}
.y126{bottom:644.352329pt;}
.yc4{bottom:646.346996pt;}
.y14a{bottom:646.439396pt;}
.y31{bottom:647.695929pt;}
.y8{bottom:648.515796pt;}
.y92{bottom:648.847129pt;}
.y55{bottom:649.585796pt;}
.ye7{bottom:651.754463pt;}
.y125{bottom:662.908729pt;}
.yc3{bottom:663.013529pt;}
.y149{bottom:663.529263pt;}
.y7{bottom:665.182463pt;}
.y30{bottom:666.252463pt;}
.ye5{bottom:670.702729pt;}
.y84{bottom:676.489529pt;}
.y8a{bottom:676.494738pt;}
.y124{bottom:679.575396pt;}
.yc2{bottom:679.680196pt;}
.y148{bottom:680.618996pt;}
.y6{bottom:681.849129pt;}
.y2f{bottom:682.919129pt;}
.ye3{bottom:689.259129pt;}
.yc1{bottom:696.346863pt;}
.y147{bottom:697.708729pt;}
.y123{bottom:698.131796pt;}
.y5{bottom:698.515796pt;}
.y2e{bottom:699.585796pt;}
.ye4{bottom:707.815529pt;}
.y2d{bottom:716.252463pt;}
.y122{bottom:716.688329pt;}
.y54{bottom:718.142196pt;}
.ye2{bottom:726.762729pt;}
.yc0{bottom:727.662463pt;}
.y4{bottom:727.941529pt;}
.y2c{bottom:732.919129pt;}
.y121{bottom:733.354996pt;}
.y53{bottom:734.808863pt;}
.ybf{bottom:744.329129pt;}
.ye1{bottom:745.712063pt;}
.y2b{bottom:749.585796pt;}
.y52{bottom:751.475529pt;}
.y120{bottom:751.911396pt;}
.ybe{bottom:760.995796pt;}
.ye0{bottom:766.716729pt;}
.y2a{bottom:768.142196pt;}
.y11f{bottom:768.578063pt;}
.y3{bottom:769.230996pt;}
.ybd{bottom:781.441929pt;}
.ydf{bottom:783.383396pt;}
.y29{bottom:784.808863pt;}
.y11e{bottom:785.244729pt;}
.y2{bottom:796.430863pt;}
.h33{height:19.632000pt;}
.h18{height:20.313178pt;}
.h30{height:21.780902pt;}
.h16{height:21.934571pt;}
.h14{height:22.092373pt;}
.h1a{height:22.162187pt;}
.ha{height:22.234375pt;}
.h2a{height:25.926507pt;}
.he{height:28.145832pt;}
.h11{height:28.348320pt;}
.h2{height:28.437500pt;}
.h21{height:28.601381pt;}
.h25{height:28.807147pt;}
.h36{height:30.303093pt;}
.h13{height:31.410573pt;}
.h28{height:31.888676pt;}
.h29{height:31.888678pt;}
.h3a{height:32.256000pt;}
.h2f{height:33.679718pt;}
.h3c{height:33.769531pt;}
.h40{height:36.226667pt;}
.hb{height:36.687500pt;}
.h1f{height:36.833333pt;}
.h1d{height:37.107166pt;}
.h10{height:37.500778pt;}
.h19{height:37.833600pt;}
.h15{height:37.872427pt;}
.h1b{height:37.992267pt;}
.h23{height:38.107740pt;}
.h2c{height:38.245529pt;}
.h17{height:38.414880pt;}
.h5{height:38.854167pt;}
.h2b{height:40.330080pt;}
.h37{height:40.404373pt;}
.h3d{height:41.273438pt;}
.h3f{height:41.437500pt;}
.h3e{height:41.460938pt;}
.h39{height:43.008000pt;}
.h6{height:43.566406pt;}
.h1e{height:43.634080pt;}
.h7{height:43.739583pt;}
.h8{height:43.764323pt;}
.hd{height:43.782405pt;}
.h12{height:44.097387pt;}
.h22{height:44.490749pt;}
.h4{height:44.685677pt;}
.h26{height:44.810827pt;}
.h2d{height:44.973600pt;}
.h1c{height:45.192973pt;}
.h9{height:46.593750pt;}
.h38{height:49.893333pt;}
.h35{height:53.449214pt;}
.h32{height:53.664046pt;}
.h3b{height:56.893440pt;}
.hf{height:58.334543pt;}
.h24{height:59.278322pt;}
.h3{height:66.052083pt;}
.h31{height:70.853569pt;}
.h34{height:89.360235pt;}
.h27{height:116.594791pt;}
.h20{height:116.600000pt;}
.h2e{height:119.528000pt;}
.hc{height:120.642667pt;}
.h1{height:870.000000pt;}
.h0{height:870.018229pt;}
.w7{width:4.781333pt;}
.w8{width:195.737333pt;}
.w6{width:239.054667pt;}
.w5{width:300.644440pt;}
.w4{width:300.645333pt;}
.w3{width:301.606667pt;}
.w2{width:604.674680pt;}
.w1{width:606.000000pt;}
.w0{width:606.012716pt;}
.x0{left:0.000000pt;}
.x1{left:1.338036pt;}
.x34{left:3.019467pt;}
.x32{left:4.395067pt;}
.x26{left:10.040800pt;}
.x17{left:11.045200pt;}
.x39{left:12.152933pt;}
.x31{left:13.667600pt;}
.x4{left:14.671236pt;}
.x29{left:16.565200pt;}
.xf{left:19.151333pt;}
.x12{left:23.881467pt;}
.xb{left:27.799600pt;}
.x27{left:31.390933pt;}
.x2a{left:34.530533pt;}
.x28{left:37.358133pt;}
.x1c{left:40.704667pt;}
.x10{left:59.417867pt;}
.x6{left:61.810436pt;}
.xa{left:64.619333pt;}
.xd{left:73.875200pt;}
.x5c{left:75.143636pt;}
.x3{left:76.928436pt;}
.x8{left:82.388133pt;}
.x30{left:83.283333pt;}
.x23{left:87.839200pt;}
.x18{left:89.279333pt;}
.x5a{left:90.261769pt;}
.xe{left:91.710667pt;}
.x5b{left:93.810436pt;}
.xc{left:95.426933pt;}
.x19{left:97.318933pt;}
.x2f{left:98.423467pt;}
.x5{left:99.605636pt;}
.x38{left:102.422267pt;}
.x24{left:103.957467pt;}
.x1d{left:106.642133pt;}
.x21{left:107.867067pt;}
.x59{left:108.928569pt;}
.x9{left:109.817467pt;}
.x1f{left:113.011200pt;}
.x1e{left:114.681733pt;}
.x7{left:119.681200pt;}
.x36{left:124.300400pt;}
.x2b{left:126.168400pt;}
.x2e{left:127.689600pt;}
.x25{left:129.128667pt;}
.x22{left:133.107200pt;}
.x2c{left:135.730533pt;}
.x20{left:138.252267pt;}
.x11{left:145.488933pt;}
.x35{left:150.014533pt;}
.x13{left:158.325200pt;}
.x4a{left:163.816169pt;}
.x14{left:166.364933pt;}
.x37{left:169.588267pt;}
.x2d{left:170.955369pt;}
.x49{left:172.244303pt;}
.x33{left:176.496667pt;}
.x3c{left:184.897236pt;}
.x3d{left:186.723903pt;}
.x3a{left:201.074703pt;}
.x1a{left:220.885600pt;}
.x1b{left:226.965867pt;}
.x53{left:235.294169pt;}
.x57{left:238.258436pt;}
.x4c{left:244.048836pt;}
.x48{left:245.520036pt;}
.x4b{left:246.876036pt;}
.x3e{left:253.255903pt;}
.x3b{left:261.203369pt;}
.x47{left:262.145503pt;}
.x15{left:263.042800pt;}
.x16{left:269.123200pt;}
.x54{left:313.412569pt;}
.x4e{left:322.292836pt;}
.x4d{left:324.696303pt;}
.x40{left:331.856303pt;}
.x45{left:335.249369pt;}
.x3f{left:339.632569pt;}
.x5d{left:386.633236pt;}
.x55{left:391.154969pt;}
.x50{left:400.220169pt;}
.x4f{left:402.049236pt;}
.x46{left:409.970969pt;}
.x42{left:412.789636pt;}
.x41{left:418.157636pt;}
.x56{left:469.076569pt;}
.x58{left:471.267369pt;}
.x52{left:478.143636pt;}
.x51{left:480.198836pt;}
.x44{left:487.901903pt;}
.x43{left:496.846836pt;}
.x2{left:535.027867pt;}
}




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