
    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_c58d39fc14c9a897d67ae393.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929000;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_386d15943d7b2cd443c27ac2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912000;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_68aaa1f35529eded619532b6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065000;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_5a5cb6c2f87d3a87db483b09.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_a0432462f28ee31fb8181d43.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073000;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_c76ab16999dfbc976283923b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766000;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_c21e95e39f3fd3c63ec7fb20.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.730000;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_5606deef116a5063fca59324.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.149000;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_386d15943d7b2cd443c27ac2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.912000;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_68aaa1f35529eded619532b6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065000;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_641eee33bcf1e1ebd70b5700.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.974000;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_f8b87b2c8a0a493f0503cfb7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.990000;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_2ea800c92af72f221a4ec301.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.950000;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_1a662c2cf15704d678aa3dd2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.990000;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_40f4f9a3f7454432e80c85a1.woff2')format("woff");}.fff{font-family:fff;line-height:1.079000;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_b53260b971241926cca103a2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.738000;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_a4156d86f4f17463cf6ede8d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.102000;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_653c25b6b982dec915412e2d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.714000;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_3bf1ead224fa3a64472e9b06.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.890000;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_7ef9a9ffc78ac36ae985ed35.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.714000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-36.719985px;}
.v4{vertical-align:-19.859032px;}
.v3{vertical-align:-16.860953px;}
.v6{vertical-align:-5.124376px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.118748px;}
.v1{vertical-align:14.999034px;}
.v2{vertical-align:77.999969px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000960px;}
.ls2{letter-spacing:0.001200px;}
.lse{letter-spacing:0.001860px;}
.lsb{letter-spacing:0.221700px;}
.ls3{letter-spacing:0.642600px;}
.ls16{letter-spacing:0.649440px;}
.ls18{letter-spacing:0.650040px;}
.ls14{letter-spacing:0.655080px;}
.ls11{letter-spacing:0.658440px;}
.lsd{letter-spacing:0.807540px;}
.ls7{letter-spacing:0.830040px;}
.ls1a{letter-spacing:1.500179px;}
.ls10{letter-spacing:1.738139px;}
.lsf{letter-spacing:2.639039px;}
.lsa{letter-spacing:2.706179px;}
.ls1{letter-spacing:5.126278px;}
.ls9{letter-spacing:37.069305px;}
.ls15{letter-spacing:120.140952px;}
.ls19{letter-spacing:128.408229px;}
.ls17{letter-spacing:128.408289px;}
.ls13{letter-spacing:147.205141px;}
.ls12{letter-spacing:147.649741px;}
.lsc{letter-spacing:188.223525px;}
.ls8{letter-spacing:194.652522px;}
.ls4{letter-spacing:195.710322px;}
.ls6{letter-spacing:204.963518px;}
.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;}
}
.ws5{word-spacing:-42.310933px;}
.ws3{word-spacing:-16.199994px;}
.ws6{word-spacing:-14.999994px;}
.ws8{word-spacing:-13.499995px;}
.ws2{word-spacing:-13.391995px;}
.ws7{word-spacing:-13.199995px;}
.ws43{word-spacing:-11.879995px;}
.wsa{word-spacing:-11.375995px;}
.ws44{word-spacing:-10.771196px;}
.wsb{word-spacing:-10.010876px;}
.ws1{word-spacing:-8.639997px;}
.ws0{word-spacing:-7.919997px;}
.ws4{word-spacing:0.000000px;}
.ws3f{word-spacing:48.645653px;}
.ws39{word-spacing:50.102107px;}
.ws27{word-spacing:50.125750px;}
.ws3d{word-spacing:50.219806px;}
.ws36{word-spacing:50.243093px;}
.ws33{word-spacing:50.290469px;}
.ws30{word-spacing:50.358031px;}
.ws2d{word-spacing:50.360407px;}
.ws2a{word-spacing:50.692807px;}
.ws15{word-spacing:60.241294px;}
.ws13{word-spacing:60.335475px;}
.ws21{word-spacing:60.340875px;}
.ws18{word-spacing:60.382309px;}
.ws1b{word-spacing:60.383475px;}
.ws24{word-spacing:60.388309px;}
.ws10{word-spacing:60.481890px;}
.wsd{word-spacing:60.740813px;}
.ws1e{word-spacing:60.764480px;}
.ws28{word-spacing:74.842003px;}
.ws42{word-spacing:74.889600px;}
.ws2b{word-spacing:75.023858px;}
.ws37{word-spacing:75.158542px;}
.ws38{word-spacing:75.174000px;}
.ws3c{word-spacing:75.280176px;}
.ws16{word-spacing:75.348527px;}
.ws2c{word-spacing:75.474516px;}
.ws41{word-spacing:75.792570px;}
.ws17{word-spacing:76.267991px;}
.ws29{word-spacing:76.666151px;}
.ws3a{word-spacing:78.059075px;}
.ws20{word-spacing:78.154037px;}
.ws31{word-spacing:78.202471px;}
.ws11{word-spacing:78.202626px;}
.ws19{word-spacing:78.208731px;}
.wse{word-spacing:78.216714px;}
.wsf{word-spacing:78.246467px;}
.ws40{word-spacing:78.296711px;}
.ws3b{word-spacing:78.344585px;}
.ws34{word-spacing:78.355467px;}
.ws14{word-spacing:78.395777px;}
.ws1c{word-spacing:78.439735px;}
.ws12{word-spacing:78.462137px;}
.ws1d{word-spacing:78.491051px;}
.ws2f{word-spacing:78.676385px;}
.ws1a{word-spacing:78.724733px;}
.ws32{word-spacing:78.730421px;}
.ws1f{word-spacing:78.883927px;}
.ws3e{word-spacing:78.922390px;}
.ws26{word-spacing:78.957940px;}
.ws2e{word-spacing:78.973608px;}
.ws25{word-spacing:79.364341px;}
.ws23{word-spacing:79.391176px;}
.ws22{word-spacing:79.484514px;}
.ws35{word-spacing:79.486924px;}
.wsc{word-spacing:110.280246px;}
.ws9{word-spacing:243.600827px;}
._34{margin-left:-14.390426px;}
._4{margin-left:-7.709236px;}
._33{margin-left:-6.030039px;}
._19{margin-left:-4.717721px;}
._10{margin-left:-3.627885px;}
._5{margin-left:-2.487094px;}
._3{margin-left:-1.209414px;}
._1{width:1.181251px;}
._0{width:2.296934px;}
._8{width:3.357357px;}
._b{width:4.765879px;}
._9{width:5.820820px;}
._a{width:7.069943px;}
._c{width:8.765208px;}
._2{width:10.762062px;}
._11{width:11.986840px;}
._1a{width:13.265038px;}
._d{width:16.189985px;}
._f{width:20.211438px;}
._e{width:21.216523px;}
._17{width:27.482148px;}
._16{width:38.639122px;}
._7{width:39.895917px;}
._18{width:41.776295px;}
._12{width:45.120172px;}
._15{width:50.659594px;}
._3b{width:57.063785px;}
._6{width:59.816717px;}
._2e{width:61.742598px;}
._37{width:75.450210px;}
._38{width:86.052834px;}
._2f{width:87.827191px;}
._23{width:90.328539px;}
._20{width:92.125988px;}
._1d{width:93.190306px;}
._24{width:94.711115px;}
._26{width:95.940320px;}
._1e{width:97.090358px;}
._28{width:98.649704px;}
._36{width:100.169127px;}
._3c{width:103.641123px;}
._39{width:130.289406px;}
._21{width:154.809652px;}
._22{width:167.843887px;}
._1f{width:169.858522px;}
._2d{width:177.032994px;}
._1c{width:179.790024px;}
._32{width:180.974076px;}
._31{width:203.350406px;}
._1b{width:205.137486px;}
._29{width:226.635815px;}
._2b{width:232.279639px;}
._2c{width:236.925007px;}
._27{width:241.044938px;}
._2a{width:246.367775px;}
._14{width:253.507302px;}
._3a{width:264.261662px;}
._25{width:270.409437px;}
._30{width:314.527092px;}
._35{width:512.366213px;}
._13{width:621.571879px;}
.fc0{color:rgb(35,31,32);}
.fs10{font-size:29.399988px;}
.fs1{font-size:32.999987px;}
.fs2{font-size:35.999986px;}
.fs4{font-size:37.799985px;}
.fs3{font-size:38.399985px;}
.fse{font-size:41.399983px;}
.fs11{font-size:41.711983px;}
.fs14{font-size:44.879982px;}
.fsf{font-size:47.399981px;}
.fs12{font-size:47.519981px;}
.fs5{font-size:48.599981px;}
.fs13{font-size:50.999980px;}
.fsd{font-size:52.799979px;}
.fsa{font-size:53.999978px;}
.fs6{font-size:55.799978px;}
.fs8{font-size:56.999977px;}
.fsc{font-size:59.999976px;}
.fs9{font-size:64.799974px;}
.fs0{font-size:65.999974px;}
.fs7{font-size:101.999959px;}
.fsb{font-size:169.243732px;}
.y0{bottom:0.000000px;}
.y1{bottom:105.024420px;}
.y4{bottom:109.796494px;}
.y2{bottom:113.942492px;}
.y3{bottom:120.896400px;}
.ya{bottom:144.312740px;}
.y9{bottom:156.312975px;}
.y1d{bottom:201.713607px;}
.y1c{bottom:218.211051px;}
.y1e{bottom:218.966912px;}
.y199{bottom:219.041183px;}
.y1cd{bottom:219.672343px;}
.yd2{bottom:220.218633px;}
.yfc{bottom:221.609911px;}
.y2a{bottom:221.669911px;}
.ya9{bottom:221.861911px;}
.y11a{bottom:221.939761px;}
.y69{bottom:221.939911px;}
.y7d{bottom:222.594001px;}
.y198{bottom:234.043127px;}
.y1cc{bottom:234.674287px;}
.y1b{bottom:234.708494px;}
.yd3{bottom:235.220577px;}
.yd1{bottom:236.500921px;}
.y7b{bottom:237.596605px;}
.yfb{bottom:241.109904px;}
.y29{bottom:241.169904px;}
.ya8{bottom:241.361903px;}
.y119{bottom:241.439753px;}
.y68{bottom:241.439903px;}
.y7c{bottom:242.560658px;}
.y197{bottom:249.045671px;}
.y1cb{bottom:249.672875px;}
.y1a{bottom:251.205938px;}
.y13f{bottom:251.721499px;}
.y7a{bottom:258.440747px;}
.yd0{bottom:259.903762px;}
.yfa{bottom:260.609896px;}
.y28{bottom:260.669896px;}
.ya7{bottom:260.861896px;}
.y118{bottom:260.939746px;}
.y67{bottom:260.939896px;}
.y196{bottom:264.047615px;}
.y1ca{bottom:264.674069px;}
.y19{bottom:267.703381px;}
.y13e{bottom:268.218193px;}
.y78{bottom:273.444041px;}
.yce{bottom:277.322964px;}
.y79{bottom:278.408799px;}
.y195{bottom:279.050159px;}
.y1c9{bottom:279.674063px;}
.yf9{bottom:280.109888px;}
.y27{bottom:280.169888px;}
.ya6{bottom:280.361888px;}
.y117{bottom:280.439738px;}
.y66{bottom:280.439888px;}
.y18{bottom:284.200824px;}
.y13d{bottom:284.715636px;}
.ycf{bottom:292.324908px;}
.y77{bottom:292.379883px;}
.ycd{bottom:293.604549px;}
.y194{bottom:294.052103px;}
.y1c8{bottom:294.667729px;}
.yf8{bottom:299.609880px;}
.y26{bottom:299.669880px;}
.ya5{bottom:299.861880px;}
.y116{bottom:299.939730px;}
.y65{bottom:299.939880px;}
.y17{bottom:300.698268px;}
.y13c{bottom:301.212330px;}
.y193{bottom:309.053297px;}
.y1c7{bottom:309.669673px;}
.ycc{bottom:312.304141px;}
.y16{bottom:317.195711px;}
.y13b{bottom:317.709023px;}
.yf7{bottom:319.109872px;}
.y25{bottom:319.169872px;}
.ya4{bottom:319.361872px;}
.y64{bottom:319.438372px;}
.y115{bottom:319.439722px;}
.y76{bottom:322.439721px;}
.y192{bottom:324.056591px;}
.y1c6{bottom:324.672967px;}
.ycb{bottom:331.002984px;}
.y15{bottom:333.693155px;}
.y13a{bottom:334.206466px;}
.yf6{bottom:338.609865px;}
.y24{bottom:338.669865px;}
.ya3{bottom:338.861864px;}
.y63{bottom:338.938364px;}
.y114{bottom:338.939714px;}
.y191{bottom:339.057785px;}
.y1c5{bottom:339.674161px;}
.yc9{bottom:348.422186px;}
.y14{bottom:350.190598px;}
.y139{bottom:350.703160px;}
.y190{bottom:354.061079px;}
.y1c4{bottom:354.674155px;}
.y166{bottom:356.620357px;}
.y10d{bottom:358.108957px;}
.yf5{bottom:358.109857px;}
.y23{bottom:358.169857px;}
.ya2{bottom:358.361857px;}
.y62{bottom:358.438357px;}
.y113{bottom:358.439707px;}
.yca{bottom:363.424130px;}
.yc8{bottom:364.703770px;}
.y13{bottom:366.688041px;}
.y138{bottom:367.199853px;}
.y18f{bottom:369.056854px;}
.y1c3{bottom:369.667821px;}
.y165{bottom:373.117051px;}
.yf4{bottom:377.609849px;}
.y22{bottom:377.669849px;}
.ya1{bottom:377.861849px;}
.y61{bottom:377.938349px;}
.y112{bottom:377.939699px;}
.y12{bottom:383.185485px;}
.yc7{bottom:383.403363px;}
.y137{bottom:383.697297px;}
.y18e{bottom:384.058048px;}
.y1c2{bottom:384.669765px;}
.y164{bottom:389.614494px;}
.y10c{bottom:390.661494px;}
.yf3{bottom:397.109841px;}
.y21{bottom:397.169841px;}
.ya0{bottom:397.361841px;}
.y60{bottom:397.438341px;}
.y111{bottom:397.439691px;}
.y18d{bottom:399.061342px;}
.y1c1{bottom:399.672309px;}
.y11{bottom:399.682928px;}
.y136{bottom:400.193990px;}
.y8{bottom:400.913378px;}
.yc6{bottom:402.102205px;}
.y163{bottom:406.111188px;}
.y18c{bottom:414.061336px;}
.y1c0{bottom:414.674253px;}
.y10{bottom:416.180372px;}
.yf2{bottom:416.609833px;}
.y135{bottom:416.691433px;}
.y9f{bottom:416.861833px;}
.y5f{bottom:416.938333px;}
.y7{bottom:417.413371px;}
.yc4{bottom:419.521407px;}
.y162{bottom:422.608631px;}
.y18b{bottom:429.058518px;}
.y1bf{bottom:429.665106px;}
.y134{bottom:433.188127px;}
.y6{bottom:433.913364px;}
.yc5{bottom:434.523351px;}
.yc3{bottom:435.802992px;}
.yf1{bottom:436.109826px;}
.y9e{bottom:436.361825px;}
.y5e{bottom:436.438325px;}
.y110{bottom:436.439675px;}
.y161{bottom:439.164274px;}
.y18a{bottom:444.061812px;}
.y1be{bottom:444.668400px;}
.yf{bottom:449.181078px;}
.y133{bottom:449.684820px;}
.y5{bottom:450.413358px;}
.yc2{bottom:454.502584px;}
.yf0{bottom:455.608318px;}
.y160{bottom:455.661718px;}
.y20{bottom:455.669818px;}
.y5d{bottom:455.938318px;}
.y189{bottom:459.052665px;}
.y1bd{bottom:459.669594px;}
.y132{bottom:466.182264px;}
.yc0{bottom:471.921740px;}
.y15f{bottom:472.158411px;}
.y188{bottom:474.054609px;}
.y1bc{bottom:474.672888px;}
.yef{bottom:475.108310px;}
.y9d{bottom:475.361810px;}
.y5c{bottom:475.438310px;}
.y131{bottom:482.678957px;}
.yc1{bottom:486.922934px;}
.ybf{bottom:488.202621px;}
.y15e{bottom:488.655105px;}
.y187{bottom:489.057153px;}
.y1bb{bottom:489.674082px;}
.yee{bottom:494.608302px;}
.y5b{bottom:494.938302px;}
.y130{bottom:499.176400px;}
.y186{bottom:504.059097px;}
.y1ba{bottom:504.658608px;}
.y15d{bottom:505.152548px;}
.ybe{bottom:506.902963px;}
.yed{bottom:514.107404px;}
.y5a{bottom:514.438294px;}
.y12f{bottom:515.673094px;}
.y185{bottom:519.060291px;}
.y1b9{bottom:519.661902px;}
.y15c{bottom:521.649241px;}
.ybc{bottom:524.322869px;}
.y12e{bottom:532.220637px;}
.yec{bottom:533.607396px;}
.y9c{bottom:533.861786px;}
.y59{bottom:533.938286px;}
.y184{bottom:534.052551px;}
.y1b8{bottom:534.663096px;}
.y15b{bottom:538.146685px;}
.ybd{bottom:539.324063px;}
.ybb{bottom:540.603750px;}
.y12d{bottom:548.717331px;}
.y183{bottom:549.053745px;}
.y1b7{bottom:549.665040px;}
.yeb{bottom:553.107388px;}
.y9b{bottom:553.361636px;}
.y58{bottom:553.438279px;}
.y15a{bottom:554.643378px;}
.y40{bottom:555.507228px;}
.yba{bottom:559.302592px;}
.y182{bottom:564.057039px;}
.y1b6{bottom:564.667584px;}
.y12c{bottom:565.214774px;}
.y159{bottom:571.140072px;}
.y3f{bottom:572.004671px;}
.yea{bottom:572.607380px;}
.y9a{bottom:572.861628px;}
.y57{bottom:572.938271px;}
.yb8{bottom:576.721748px;}
.y181{bottom:579.058233px;}
.y1b5{bottom:579.669528px;}
.y12b{bottom:581.711467px;}
.y158{bottom:587.637515px;}
.yb9{bottom:591.725042px;}
.ye9{bottom:592.107373px;}
.y99{bottom:592.361621px;}
.y56{bottom:592.438263px;}
.yb7{bottom:592.997913px;}
.y180{bottom:594.060177px;}
.y1b4{bottom:594.672072px;}
.y12a{bottom:598.208161px;}
.y157{bottom:604.134208px;}
.y3e{bottom:604.998808px;}
.y17f{bottom:609.054546px;}
.y1b3{bottom:609.674016px;}
.yb5{bottom:610.417818px;}
.ye8{bottom:611.607365px;}
.y98{bottom:611.861613px;}
.y55{bottom:611.938255px;}
.y129{bottom:614.705604px;}
.y156{bottom:620.630902px;}
.y3d{bottom:621.495501px;}
.ye{bottom:621.883509px;}
.y17e{bottom:624.057090px;}
.y1b2{bottom:624.674010px;}
.yb6{bottom:625.420362px;}
.yb4{bottom:626.700049px;}
.ye7{bottom:631.107357px;}
.y128{bottom:631.202298px;}
.y97{bottom:631.361605px;}
.y54{bottom:631.438247px;}
.y1f{bottom:635.186746px;}
.y155{bottom:637.128345px;}
.y3c{bottom:637.992195px;}
.y17d{bottom:639.059034px;}
.y1b1{bottom:639.672597px;}
.yd{bottom:641.377651px;}
.yb1{bottom:647.243741px;}
.y127{bottom:647.699741px;}
.y10b{bottom:647.782391px;}
.ye6{bottom:650.607349px;}
.y96{bottom:650.861597px;}
.y53{bottom:650.938240px;}
.yb2{bottom:652.208499px;}
.yb3{bottom:652.208739px;}
.y154{bottom:653.625039px;}
.yaf{bottom:653.967863px;}
.y17c{bottom:654.060228px;}
.y3b{bottom:654.488888px;}
.y1b0{bottom:654.674541px;}
.y126{bottom:664.196434px;}
.y10a{bottom:665.593234px;}
.yb0{bottom:668.970407px;}
.y17b{bottom:669.058816px;}
.y1af{bottom:669.673129px;}
.ye5{bottom:670.107341px;}
.y153{bottom:670.120982px;}
.yae{bottom:670.244732px;}
.y95{bottom:670.361589px;}
.y52{bottom:670.438232px;}
.y3a{bottom:670.985582px;}
.y125{bottom:680.693128px;}
.y108{bottom:683.404077px;}
.y17a{bottom:684.060760px;}
.y1ae{bottom:684.674323px;}
.y152{bottom:686.617675px;}
.y39{bottom:687.482275px;}
.ye4{bottom:689.607334px;}
.y94{bottom:689.861582px;}
.y51{bottom:689.938224px;}
.y124{bottom:697.190571px;}
.yad{bottom:697.438221px;}
.y109{bottom:698.406021px;}
.y107{bottom:698.406621px;}
.y179{bottom:699.039660px;}
.y1e1{bottom:699.670033px;}
.y1ad{bottom:699.674317px;}
.yc{bottom:702.884827px;}
.y151{bottom:703.114369px;}
.y38{bottom:703.978968px;}
.ye3{bottom:709.107326px;}
.y93{bottom:709.361574px;}
.y50{bottom:709.438216px;}
.y75{bottom:709.438366px;}
.yac{bottom:712.438215px;}
.y123{bottom:713.687265px;}
.y178{bottom:714.042954px;}
.y1ac{bottom:714.667983px;}
.y1e0{bottom:714.671977px;}
.y105{bottom:716.217464px;}
.y150{bottom:719.611812px;}
.y37{bottom:720.475662px;}
.ye2{bottom:728.607318px;}
.y92{bottom:728.861566px;}
.y4f{bottom:728.938208px;}
.y74{bottom:728.938358px;}
.y177{bottom:729.044148px;}
.y1ab{bottom:729.669927px;}
.y1df{bottom:729.674521px;}
.y122{bottom:730.184708px;}
.y104{bottom:731.220008px;}
.yb{bottom:734.377764px;}
.y14f{bottom:736.108506px;}
.y36{bottom:736.972355px;}
.y176{bottom:744.047442px;}
.y1aa{bottom:744.673221px;}
.y1de{bottom:744.676465px;}
.y106{bottom:746.221952px;}
.y103{bottom:746.222552px;}
.y121{bottom:746.681401px;}
.ye1{bottom:748.107310px;}
.y91{bottom:748.361558px;}
.y4e{bottom:748.438201px;}
.y73{bottom:748.438351px;}
.y14e{bottom:752.648549px;}
.y35{bottom:753.469049px;}
.y175{bottom:759.048636px;}
.y1dd{bottom:759.667318px;}
.y1a9{bottom:759.674415px;}
.y120{bottom:763.178095px;}
.y100{bottom:766.073694px;}
.ye0{bottom:767.607302px;}
.y90{bottom:767.861550px;}
.yab{bottom:767.938193px;}
.y4d{bottom:767.939243px;}
.y14d{bottom:769.145992px;}
.y34{bottom:769.965742px;}
.y101{bottom:771.038452px;}
.y102{bottom:771.038692px;}
.y174{bottom:774.050580px;}
.y1a8{bottom:774.665971px;}
.y1dc{bottom:774.670612px;}
.y11f{bottom:779.675538px;}
.y14c{bottom:785.642686px;}
.yff{bottom:785.926186px;}
.y33{bottom:786.462435px;}
.ydf{bottom:787.107295px;}
.y8f{bottom:787.361543px;}
.y10f{bottom:787.438185px;}
.y72{bottom:787.438335px;}
.y4c{bottom:787.439235px;}
.y173{bottom:789.053124px;}
.y1a7{bottom:789.668515px;}
.y1db{bottom:789.671806px;}
.y11e{bottom:796.172232px;}
.y14b{bottom:802.140129px;}
.y32{bottom:802.959129px;}
.y172{bottom:804.055068px;}
.y1a6{bottom:804.670459px;}
.y1da{bottom:804.675100px;}
.y8e{bottom:806.861535px;}
.y10e{bottom:806.938177px;}
.y4b{bottom:806.939227px;}
.y11d{bottom:812.669675px;}
.yfe{bottom:814.438024px;}
.y14a{bottom:818.636823px;}
.y171{bottom:819.057612px;}
.y1a5{bottom:819.673003px;}
.y1d9{bottom:819.676294px;}
.yde{bottom:824.745579px;}
.y8d{bottom:826.361527px;}
.y4a{bottom:826.439219px;}
.yfd{bottom:829.438018px;}
.y170{bottom:834.059556px;}
.y1d8{bottom:834.674179px;}
.y1a4{bottom:834.674947px;}
.y149{bottom:835.133516px;}
.y31{bottom:835.953266px;}
.ydd{bottom:843.705272px;}
.y11c{bottom:845.669662px;}
.y8c{bottom:845.861519px;}
.y49{bottom:845.939212px;}
.y71{bottom:845.939662px;}
.y16f{bottom:849.060750px;}
.y1a3{bottom:849.674941px;}
.y1d7{bottom:849.676123px;}
.y148{bottom:851.630959px;}
.y30{bottom:852.449959px;}
.ydc{bottom:858.707216px;}
.y16e{bottom:864.053009px;}
.y1d6{bottom:864.664164px;}
.y1a2{bottom:864.673529px;}
.y48{bottom:865.439204px;}
.y70{bottom:865.439654px;}
.y147{bottom:868.127653px;}
.y2f{bottom:868.946652px;}
.yda{bottom:877.666908px;}
.y16d{bottom:879.054203px;}
.y1d5{bottom:879.666108px;}
.y1a1{bottom:879.675473px;}
.y89{bottom:883.262317px;}
.y8b{bottom:884.540354px;}
.y146{bottom:884.624346px;}
.y47{bottom:884.939196px;}
.y6f{bottom:884.939646px;}
.yd9{bottom:892.653543px;}
.ydb{bottom:892.670202px;}
.y16c{bottom:894.057497px;}
.y1d4{bottom:894.667302px;}
.y1a0{bottom:894.674061px;}
.y87{bottom:898.259341px;}
.y8a{bottom:899.531910px;}
.y145{bottom:901.120290px;}
.y2e{bottom:901.946639px;}
.y88{bottom:903.229019px;}
.y46{bottom:904.439188px;}
.y6e{bottom:904.439638px;}
.y11b{bottom:904.440538px;}
.y16b{bottom:909.058691px;}
.y1d3{bottom:909.670596px;}
.y19f{bottom:909.675255px;}
.yd8{bottom:911.613235px;}
.y144{bottom:917.616983px;}
.y84{bottom:917.778683px;}
.y86{bottom:919.053682px;}
.y6d{bottom:923.939030px;}
.y45{bottom:923.939180px;}
.yaa{bottom:923.940530px;}
.y16a{bottom:924.060635px;}
.y1d2{bottom:924.671790px;}
.y19e{bottom:924.675249px;}
.yd7{bottom:926.616529px;}
.y82{bottom:932.783627px;}
.y85{bottom:934.048276px;}
.y143{bottom:934.115026px;}
.y83{bottom:937.745580px;}
.y19d{bottom:939.671024px;}
.y1d1{bottom:939.674334px;}
.y44{bottom:943.438273px;}
.y6c{bottom:943.439623px;}
.yd6{bottom:945.576222px;}
.y142{bottom:950.611720px;}
.y81{bottom:951.020620px;}
.y2d{bottom:951.452469px;}
.y169{bottom:954.067223px;}
.y19c{bottom:954.672968px;}
.y1d0{bottom:954.676278px;}
.y43{bottom:962.938265px;}
.y6b{bottom:962.939615px;}
.yd5{bottom:964.536064px;}
.y80{bottom:966.020614px;}
.y141{bottom:967.108413px;}
.y2c{bottom:967.949163px;}
.y168{bottom:969.066977px;}
.y1cf{bottom:969.674162px;}
.y19b{bottom:969.675512px;}
.yd4{bottom:979.538608px;}
.y7e{bottom:979.745608px;}
.y42{bottom:982.438257px;}
.y6a{bottom:982.439607px;}
.y140{bottom:983.605107px;}
.y167{bottom:984.061106px;}
.y2b{bottom:984.446606px;}
.y19a{bottom:984.675506px;}
.y1ce{bottom:984.676106px;}
.y7f{bottom:984.710366px;}
.y41{bottom:1030.004588px;}
.h1c{height:20.991592px;}
.h16{height:22.276731px;}
.h15{height:22.279551px;}
.h17{height:27.398299px;}
.h4{height:33.604187px;}
.h1b{height:33.843586px;}
.hb{height:34.137586px;}
.h3{height:34.137946px;}
.h14{height:34.981186px;}
.h5{height:35.866786px;}
.hf{height:36.804585px;}
.h24{height:38.351985px;}
.he{height:41.471983px;}
.h12{height:42.138583px;}
.h28{height:42.144208px;}
.h2f{height:42.147021px;}
.h2b{height:42.149833px;}
.h2c{height:42.155458px;}
.h29{height:42.161083px;}
.h2d{height:42.163896px;}
.h18{height:42.167983px;}
.h26{height:42.169521px;}
.h19{height:42.172333px;}
.h2a{height:42.175146px;}
.h30{height:42.186396px;}
.h20{height:42.192021px;}
.h2e{height:42.200458px;}
.h27{height:42.222958px;}
.h13{height:42.422983px;}
.h8{height:42.863983px;}
.h25{height:45.338982px;}
.h9{height:45.813582px;}
.h1d{height:47.257331px;}
.h1e{height:47.260145px;}
.h1f{height:47.262959px;}
.h2{height:49.169980px;}
.h6{height:49.606180px;}
.ha{height:50.057980px;}
.hd{height:55.619978px;}
.h1a{height:55.620548px;}
.h23{height:55.620578px;}
.h11{height:55.622378px;}
.h21{height:55.623540px;}
.h22{height:55.623578px;}
.h10{height:55.625978px;}
.h7{height:75.989970px;}
.hc{height:156.888940px;}
.h1{height:977.952780px;}
.h0{height:1188.000000px;}
.w1{width:722.834820px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:97.581780px;}
.x5{left:110.669887px;}
.x7{left:136.913246px;}
.x6{left:148.237072px;}
.x4{left:153.668120px;}
.x9{left:176.984929px;}
.xa{left:192.778423px;}
.x12{left:208.136917px;}
.x19{left:212.759915px;}
.x1a{left:220.117412px;}
.x1c{left:221.724076px;}
.x3c{left:225.140910px;}
.x11{left:229.391908px;}
.xc{left:242.147903px;}
.x16{left:246.771786px;}
.x15{left:252.376399px;}
.x17{left:253.869123px;}
.x2a{left:256.303682px;}
.x3b{left:259.161646px;}
.xe{left:263.407395px;}
.xd{left:269.569392px;}
.x13{left:272.145191px;}
.x35{left:274.047265px;}
.x8{left:276.377070px;}
.x2b{left:286.366520px;}
.x37{left:291.047524px;}
.x33{left:294.565367px;}
.x3{left:297.105562px;}
.x1f{left:306.503877px;}
.x30{left:312.552025px;}
.x14{left:321.237322px;}
.x36{left:322.934871px;}
.x31{left:327.188404px;}
.x2f{left:362.998505px;}
.x2e{left:365.593654px;}
.x1d{left:366.987153px;}
.x39{left:369.887702px;}
.x21{left:379.128298px;}
.x3a{left:382.979397px;}
.x20{left:384.508346px;}
.x34{left:393.115043px;}
.x1e{left:395.332492px;}
.x2d{left:397.012176px;}
.x2c{left:399.604775px;}
.x1b{left:424.132330px;}
.xb{left:427.325829px;}
.x10{left:438.512825px;}
.x32{left:443.697558px;}
.x23{left:455.072818px;}
.x38{left:456.511317px;}
.x18{left:458.152482px;}
.x24{left:462.541405px;}
.x25{left:507.895762px;}
.x22{left:528.438239px;}
.x26{left:555.654048px;}
.x27{left:598.662136px;}
.x2{left:627.589930px;}
.x28{left:639.652259px;}
.x29{left:689.596509px;}
.xf{left:725.171710px;}
@media print{
.v7{vertical-align:-32.639987pt;}
.v4{vertical-align:-17.652473pt;}
.v3{vertical-align:-14.987514pt;}
.v6{vertical-align:-4.555001pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.549998pt;}
.v1{vertical-align:13.332475pt;}
.v2{vertical-align:69.333306pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000853pt;}
.ls2{letter-spacing:0.001067pt;}
.lse{letter-spacing:0.001653pt;}
.lsb{letter-spacing:0.197067pt;}
.ls3{letter-spacing:0.571200pt;}
.ls16{letter-spacing:0.577280pt;}
.ls18{letter-spacing:0.577813pt;}
.ls14{letter-spacing:0.582293pt;}
.ls11{letter-spacing:0.585280pt;}
.lsd{letter-spacing:0.717813pt;}
.ls7{letter-spacing:0.737813pt;}
.ls1a{letter-spacing:1.333493pt;}
.ls10{letter-spacing:1.545013pt;}
.lsf{letter-spacing:2.345812pt;}
.lsa{letter-spacing:2.405492pt;}
.ls1{letter-spacing:4.556692pt;}
.ls9{letter-spacing:32.950493pt;}
.ls15{letter-spacing:106.791957pt;}
.ls19{letter-spacing:114.140648pt;}
.ls17{letter-spacing:114.140701pt;}
.ls13{letter-spacing:130.849014pt;}
.ls12{letter-spacing:131.244214pt;}
.lsc{letter-spacing:167.309800pt;}
.ls8{letter-spacing:173.024464pt;}
.ls4{letter-spacing:173.964730pt;}
.ls6{letter-spacing:182.189794pt;}
.ws5{word-spacing:-37.609718pt;}
.ws3{word-spacing:-14.399994pt;}
.ws6{word-spacing:-13.333328pt;}
.ws8{word-spacing:-11.999995pt;}
.ws2{word-spacing:-11.903995pt;}
.ws7{word-spacing:-11.733329pt;}
.ws43{word-spacing:-10.559996pt;}
.wsa{word-spacing:-10.111996pt;}
.ws44{word-spacing:-9.574396pt;}
.wsb{word-spacing:-8.898556pt;}
.ws1{word-spacing:-7.679997pt;}
.ws0{word-spacing:-7.039997pt;}
.ws4{word-spacing:0.000000pt;}
.ws3f{word-spacing:43.240580pt;}
.ws39{word-spacing:44.535206pt;}
.ws27{word-spacing:44.556222pt;}
.ws3d{word-spacing:44.639827pt;}
.ws36{word-spacing:44.660527pt;}
.ws33{word-spacing:44.702639pt;}
.ws30{word-spacing:44.762694pt;}
.ws2d{word-spacing:44.764806pt;}
.ws2a{word-spacing:45.060273pt;}
.ws15{word-spacing:53.547817pt;}
.ws13{word-spacing:53.631534pt;}
.ws21{word-spacing:53.636334pt;}
.ws18{word-spacing:53.673163pt;}
.ws1b{word-spacing:53.674200pt;}
.ws24{word-spacing:53.678497pt;}
.ws10{word-spacing:53.761680pt;}
.wsd{word-spacing:53.991834pt;}
.ws1e{word-spacing:54.012871pt;}
.ws28{word-spacing:66.526225pt;}
.ws42{word-spacing:66.568533pt;}
.ws2b{word-spacing:66.687874pt;}
.ws37{word-spacing:66.807593pt;}
.ws38{word-spacing:66.821333pt;}
.ws3c{word-spacing:66.915712pt;}
.ws16{word-spacing:66.976468pt;}
.ws2c{word-spacing:67.088458pt;}
.ws41{word-spacing:67.371173pt;}
.ws17{word-spacing:67.793770pt;}
.ws29{word-spacing:68.147690pt;}
.ws3a{word-spacing:69.385845pt;}
.ws20{word-spacing:69.470255pt;}
.ws31{word-spacing:69.513308pt;}
.ws11{word-spacing:69.513445pt;}
.ws19{word-spacing:69.518872pt;}
.wse{word-spacing:69.525968pt;}
.wsf{word-spacing:69.552415pt;}
.ws40{word-spacing:69.597076pt;}
.ws3b{word-spacing:69.639631pt;}
.ws34{word-spacing:69.649304pt;}
.ws14{word-spacing:69.685135pt;}
.ws1c{word-spacing:69.724209pt;}
.ws12{word-spacing:69.744121pt;}
.ws1d{word-spacing:69.769823pt;}
.ws2f{word-spacing:69.934564pt;}
.ws1a{word-spacing:69.977540pt;}
.ws32{word-spacing:69.982596pt;}
.ws1f{word-spacing:70.119046pt;}
.ws3e{word-spacing:70.153236pt;}
.ws26{word-spacing:70.184836pt;}
.ws2e{word-spacing:70.198763pt;}
.ws25{word-spacing:70.546081pt;}
.ws23{word-spacing:70.569934pt;}
.ws22{word-spacing:70.652901pt;}
.ws35{word-spacing:70.655044pt;}
.wsc{word-spacing:98.026885pt;}
.ws9{word-spacing:216.534068pt;}
._34{margin-left:-12.791490pt;}
._4{margin-left:-6.852654pt;}
._33{margin-left:-5.360035pt;}
._19{margin-left:-4.193530pt;}
._10{margin-left:-3.224786pt;}
._5{margin-left:-2.210750pt;}
._3{margin-left:-1.075035pt;}
._1{width:1.050001pt;}
._0{width:2.041719pt;}
._8{width:2.984317pt;}
._b{width:4.236337pt;}
._9{width:5.174062pt;}
._a{width:6.284393pt;}
._c{width:7.791296pt;}
._2{width:9.566277pt;}
._11{width:10.654969pt;}
._1a{width:11.791145pt;}
._d{width:14.391098pt;}
._f{width:17.965723pt;}
._e{width:18.859132pt;}
._17{width:24.428576pt;}
._16{width:34.345886pt;}
._7{width:35.463037pt;}
._18{width:37.134484pt;}
._12{width:40.106819pt;}
._15{width:45.030750pt;}
._3b{width:50.723364pt;}
._6{width:53.170415pt;}
._2e{width:54.882309pt;}
._37{width:67.066854pt;}
._38{width:76.491408pt;}
._2f{width:78.068614pt;}
._23{width:80.292035pt;}
._20{width:81.889768pt;}
._1d{width:82.835828pt;}
._24{width:84.187658pt;}
._26{width:85.280285pt;}
._1e{width:86.302540pt;}
._28{width:87.688626pt;}
._36{width:89.039224pt;}
._3c{width:92.125443pt;}
._39{width:115.812805pt;}
._21{width:137.608579pt;}
._22{width:149.194566pt;}
._1f{width:150.985353pt;}
._2d{width:157.362662pt;}
._1c{width:159.813355pt;}
._32{width:160.865845pt;}
._31{width:180.755916pt;}
._1b{width:182.344432pt;}
._29{width:201.454058pt;}
._2b{width:206.470790pt;}
._2c{width:210.600006pt;}
._27{width:214.262167pt;}
._2a{width:218.993577pt;}
._14{width:225.339824pt;}
._3a{width:234.899255pt;}
._25{width:240.363944pt;}
._30{width:279.579637pt;}
._35{width:455.436634pt;}
._13{width:552.508337pt;}
.fs10{font-size:26.133323pt;}
.fs1{font-size:29.333322pt;}
.fs2{font-size:31.999987pt;}
.fs4{font-size:33.599987pt;}
.fs3{font-size:34.133320pt;}
.fse{font-size:36.799985pt;}
.fs11{font-size:37.077319pt;}
.fs14{font-size:39.893317pt;}
.fsf{font-size:42.133316pt;}
.fs12{font-size:42.239983pt;}
.fs5{font-size:43.199983pt;}
.fs13{font-size:45.333315pt;}
.fsd{font-size:46.933315pt;}
.fsa{font-size:47.999981pt;}
.fs6{font-size:49.599980pt;}
.fs8{font-size:50.666646pt;}
.fsc{font-size:53.333312pt;}
.fs9{font-size:57.599977pt;}
.fs0{font-size:58.666643pt;}
.fs7{font-size:90.666630pt;}
.fsb{font-size:150.438873pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:93.355040pt;}
.y4{bottom:97.596884pt;}
.y2{bottom:101.282215pt;}
.y3{bottom:107.463466pt;}
.ya{bottom:128.277991pt;}
.y9{bottom:138.944867pt;}
.y1d{bottom:179.300984pt;}
.y1c{bottom:193.965378pt;}
.y1e{bottom:194.637255pt;}
.y199{bottom:194.703274pt;}
.y1cd{bottom:195.264305pt;}
.yd2{bottom:195.749896pt;}
.yfc{bottom:196.986588pt;}
.y2a{bottom:197.039921pt;}
.ya9{bottom:197.210588pt;}
.y11a{bottom:197.279788pt;}
.y69{bottom:197.279921pt;}
.y7d{bottom:197.861334pt;}
.y198{bottom:208.038335pt;}
.y1cc{bottom:208.599367pt;}
.y1b{bottom:208.629773pt;}
.yd3{bottom:209.084958pt;}
.yd1{bottom:210.223041pt;}
.y7b{bottom:211.196982pt;}
.yfb{bottom:214.319914pt;}
.y29{bottom:214.373248pt;}
.ya8{bottom:214.543914pt;}
.y119{bottom:214.613114pt;}
.y68{bottom:214.613247pt;}
.y7c{bottom:215.609474pt;}
.y197{bottom:221.373930pt;}
.y1cb{bottom:221.931445pt;}
.y1a{bottom:223.294167pt;}
.y13f{bottom:223.752444pt;}
.y7a{bottom:229.725108pt;}
.yd0{bottom:231.025566pt;}
.yfa{bottom:231.653241pt;}
.y28{bottom:231.706574pt;}
.ya7{bottom:231.877241pt;}
.y118{bottom:231.946441pt;}
.y67{bottom:231.946574pt;}
.y196{bottom:234.708991pt;}
.y1ca{bottom:235.265839pt;}
.y19{bottom:237.958561pt;}
.y13e{bottom:238.416171pt;}
.y78{bottom:243.061369pt;}
.yce{bottom:246.509301pt;}
.y79{bottom:247.474488pt;}
.y195{bottom:248.044586pt;}
.y1c9{bottom:248.599167pt;}
.yf9{bottom:248.986567pt;}
.y27{bottom:249.039900pt;}
.ya6{bottom:249.210567pt;}
.y117{bottom:249.279767pt;}
.y66{bottom:249.279900pt;}
.y18{bottom:252.622955pt;}
.y13d{bottom:253.080565pt;}
.ycf{bottom:259.844363pt;}
.y77{bottom:259.893229pt;}
.ycd{bottom:260.981821pt;}
.y194{bottom:261.379647pt;}
.y1c8{bottom:261.926870pt;}
.yf8{bottom:266.319893pt;}
.y26{bottom:266.373227pt;}
.ya5{bottom:266.543893pt;}
.y116{bottom:266.613093pt;}
.y65{bottom:266.613227pt;}
.y17{bottom:267.287349pt;}
.y13c{bottom:267.744293pt;}
.y193{bottom:274.714042pt;}
.y1c7{bottom:275.261932pt;}
.ycc{bottom:277.603681pt;}
.y16{bottom:281.951743pt;}
.y13b{bottom:282.408020pt;}
.yf7{bottom:283.653220pt;}
.y25{bottom:283.706553pt;}
.ya4{bottom:283.877220pt;}
.y64{bottom:283.945220pt;}
.y115{bottom:283.946420pt;}
.y76{bottom:286.613085pt;}
.y192{bottom:288.050303pt;}
.y1c6{bottom:288.598193pt;}
.ycb{bottom:294.224874pt;}
.y15{bottom:296.616137pt;}
.y13a{bottom:297.072415pt;}
.yf6{bottom:300.986546pt;}
.y24{bottom:301.039880pt;}
.ya3{bottom:301.210546pt;}
.y63{bottom:301.278546pt;}
.y114{bottom:301.279746pt;}
.y191{bottom:301.384698pt;}
.y1c5{bottom:301.932588pt;}
.yc9{bottom:309.708609pt;}
.y14{bottom:311.280531pt;}
.y139{bottom:311.736142pt;}
.y190{bottom:314.720959pt;}
.y1c4{bottom:315.265916pt;}
.y166{bottom:316.995873pt;}
.y10d{bottom:318.319073pt;}
.yf5{bottom:318.319873pt;}
.y23{bottom:318.373206pt;}
.ya2{bottom:318.543873pt;}
.y62{bottom:318.611873pt;}
.y113{bottom:318.613073pt;}
.yca{bottom:323.043671pt;}
.yc8{bottom:324.181129pt;}
.y13{bottom:325.944926pt;}
.y138{bottom:326.399869pt;}
.y18f{bottom:328.050537pt;}
.y1c3{bottom:328.593619pt;}
.y165{bottom:331.659601pt;}
.yf4{bottom:335.653199pt;}
.y22{bottom:335.706532pt;}
.ya1{bottom:335.877199pt;}
.y61{bottom:335.945199pt;}
.y112{bottom:335.946399pt;}
.y12{bottom:340.609320pt;}
.yc7{bottom:340.802989pt;}
.y137{bottom:341.064264pt;}
.y18e{bottom:341.384932pt;}
.y1c2{bottom:341.928680pt;}
.y164{bottom:346.323995pt;}
.y10c{bottom:347.254661pt;}
.yf3{bottom:352.986525pt;}
.y21{bottom:353.039859pt;}
.ya0{bottom:353.210525pt;}
.y60{bottom:353.278525pt;}
.y111{bottom:353.279725pt;}
.y18d{bottom:354.721193pt;}
.y1c1{bottom:355.264275pt;}
.y11{bottom:355.273714pt;}
.y136{bottom:355.727991pt;}
.y8{bottom:356.367447pt;}
.yc6{bottom:357.424182pt;}
.y163{bottom:360.987722pt;}
.y18c{bottom:368.054521pt;}
.y1c0{bottom:368.599336pt;}
.y10{bottom:369.938108pt;}
.yf2{bottom:370.319852pt;}
.y135{bottom:370.392385pt;}
.y9f{bottom:370.543852pt;}
.y5f{bottom:370.611852pt;}
.y7{bottom:371.034108pt;}
.yc4{bottom:372.907918pt;}
.y162{bottom:375.652116pt;}
.y18b{bottom:381.385349pt;}
.y1bf{bottom:381.924539pt;}
.y134{bottom:385.056113pt;}
.y6{bottom:385.700768pt;}
.yc5{bottom:386.242979pt;}
.yc3{bottom:387.380437pt;}
.yf1{bottom:387.653178pt;}
.y9e{bottom:387.877178pt;}
.y5e{bottom:387.945178pt;}
.y110{bottom:387.946378pt;}
.y161{bottom:390.368244pt;}
.y18a{bottom:394.721610pt;}
.y1be{bottom:395.260800pt;}
.yf{bottom:399.272070pt;}
.y133{bottom:399.719840pt;}
.y5{bottom:400.367429pt;}
.yc2{bottom:404.002297pt;}
.yf0{bottom:404.985171pt;}
.y160{bottom:405.032638pt;}
.y20{bottom:405.039838pt;}
.y5d{bottom:405.278505pt;}
.y189{bottom:408.046813pt;}
.y1bd{bottom:408.595195pt;}
.y132{bottom:414.384234pt;}
.yc0{bottom:419.485991pt;}
.y15f{bottom:419.696365pt;}
.y188{bottom:421.381875pt;}
.y1bc{bottom:421.931456pt;}
.yef{bottom:422.318498pt;}
.y9d{bottom:422.543831pt;}
.y5c{bottom:422.611831pt;}
.y131{bottom:429.047962pt;}
.yc1{bottom:432.820386pt;}
.ybf{bottom:433.957885pt;}
.y15e{bottom:434.360093pt;}
.y187{bottom:434.717469pt;}
.y1bb{bottom:435.265851pt;}
.yee{bottom:439.651824pt;}
.y5b{bottom:439.945157pt;}
.y130{bottom:443.712356pt;}
.y186{bottom:448.052531pt;}
.y1ba{bottom:448.585429pt;}
.y15d{bottom:449.024487pt;}
.ybe{bottom:450.580412pt;}
.yed{bottom:456.984359pt;}
.y5a{bottom:457.278484pt;}
.y12f{bottom:458.376083pt;}
.y185{bottom:461.386925pt;}
.y1b9{bottom:461.921690pt;}
.y15c{bottom:463.688215pt;}
.ybc{bottom:466.064772pt;}
.y12e{bottom:473.085011pt;}
.yec{bottom:474.317685pt;}
.y9c{bottom:474.543810pt;}
.y59{bottom:474.611810pt;}
.y184{bottom:474.713378pt;}
.y1b8{bottom:475.256085pt;}
.y15b{bottom:478.352609pt;}
.ybd{bottom:479.399167pt;}
.ybb{bottom:480.536666pt;}
.y12d{bottom:487.748738pt;}
.y183{bottom:488.047773pt;}
.y1b7{bottom:488.591146pt;}
.yeb{bottom:491.651012pt;}
.y9b{bottom:491.877010pt;}
.y58{bottom:491.945137pt;}
.y15a{bottom:493.016336pt;}
.y40{bottom:493.784202pt;}
.yba{bottom:497.157860pt;}
.y182{bottom:501.384034pt;}
.y1b6{bottom:501.926741pt;}
.y12c{bottom:502.413132pt;}
.y159{bottom:507.680064pt;}
.y3f{bottom:508.448597pt;}
.yea{bottom:508.984338pt;}
.y9a{bottom:509.210336pt;}
.y57{bottom:509.278463pt;}
.yb8{bottom:512.641554pt;}
.y181{bottom:514.718429pt;}
.y1b5{bottom:515.261802pt;}
.y12b{bottom:517.076860pt;}
.y158{bottom:522.344458pt;}
.yb9{bottom:525.977815pt;}
.ye9{bottom:526.317664pt;}
.y99{bottom:526.543663pt;}
.y56{bottom:526.611789pt;}
.yb7{bottom:527.109256pt;}
.y180{bottom:528.053490pt;}
.y1b4{bottom:528.597397pt;}
.y12a{bottom:531.740587pt;}
.y157{bottom:537.008185pt;}
.y3e{bottom:537.776718pt;}
.y17f{bottom:541.381818pt;}
.y1b3{bottom:541.932458pt;}
.yb5{bottom:542.593616pt;}
.ye8{bottom:543.650991pt;}
.y98{bottom:543.876989pt;}
.y55{bottom:543.945116pt;}
.y129{bottom:546.404981pt;}
.y156{bottom:551.671913pt;}
.y3d{bottom:552.440446pt;}
.ye{bottom:552.785342pt;}
.y17e{bottom:554.717413pt;}
.y1b2{bottom:555.265786pt;}
.yb6{bottom:555.929211pt;}
.yb4{bottom:557.066711pt;}
.ye7{bottom:560.984317pt;}
.y128{bottom:561.068709pt;}
.y97{bottom:561.210316pt;}
.y54{bottom:561.278442pt;}
.y1f{bottom:564.610441pt;}
.y155{bottom:566.336307pt;}
.y3c{bottom:567.104173pt;}
.y17d{bottom:568.052474pt;}
.y1b1{bottom:568.597864pt;}
.yd{bottom:570.113468pt;}
.yb1{bottom:575.327770pt;}
.y127{bottom:575.733103pt;}
.y10b{bottom:575.806570pt;}
.ye6{bottom:578.317644pt;}
.y96{bottom:578.543642pt;}
.y53{bottom:578.611769pt;}
.yb2{bottom:579.740888pt;}
.yb3{bottom:579.741101pt;}
.y154{bottom:581.000034pt;}
.yaf{bottom:581.304767pt;}
.y17c{bottom:581.386869pt;}
.y3b{bottom:581.767901pt;}
.y1b0{bottom:581.932926pt;}
.y126{bottom:590.396831pt;}
.y10a{bottom:591.638430pt;}
.yb0{bottom:594.640361pt;}
.y17b{bottom:594.718947pt;}
.y1af{bottom:595.265004pt;}
.ye5{bottom:595.650970pt;}
.y153{bottom:595.663095pt;}
.yae{bottom:595.773095pt;}
.y95{bottom:595.876968pt;}
.y52{bottom:595.945095pt;}
.y3a{bottom:596.431628pt;}
.y125{bottom:605.060558pt;}
.y108{bottom:607.470290pt;}
.y17a{bottom:608.054008pt;}
.y1ae{bottom:608.599398pt;}
.y152{bottom:610.326823pt;}
.y39{bottom:611.095356pt;}
.ye4{bottom:612.984296pt;}
.y94{bottom:613.210295pt;}
.y51{bottom:613.278421pt;}
.y124{bottom:619.724952pt;}
.yad{bottom:619.945085pt;}
.y109{bottom:620.805352pt;}
.y107{bottom:620.805885pt;}
.y179{bottom:621.368586pt;}
.y1e1{bottom:621.928918pt;}
.y1ad{bottom:621.932726pt;}
.yc{bottom:624.786513pt;}
.y151{bottom:624.990550pt;}
.y38{bottom:625.759083pt;}
.ye3{bottom:630.317623pt;}
.y93{bottom:630.543621pt;}
.y50{bottom:630.611748pt;}
.y75{bottom:630.611881pt;}
.yac{bottom:633.278413pt;}
.y123{bottom:634.388680pt;}
.y178{bottom:634.704848pt;}
.y1ac{bottom:635.260429pt;}
.y1e0{bottom:635.263979pt;}
.y105{bottom:636.637745pt;}
.y150{bottom:639.654944pt;}
.y37{bottom:640.422810pt;}
.ye2{bottom:647.650949pt;}
.y92{bottom:647.876948pt;}
.y4f{bottom:647.945074pt;}
.y74{bottom:647.945207pt;}
.y177{bottom:648.039242pt;}
.y1ab{bottom:648.595491pt;}
.y1df{bottom:648.599574pt;}
.y122{bottom:649.053074pt;}
.y104{bottom:649.973340pt;}
.yb{bottom:652.780235pt;}
.y14f{bottom:654.318672pt;}
.y36{bottom:655.086538pt;}
.y176{bottom:661.375504pt;}
.y1aa{bottom:661.931752pt;}
.y1de{bottom:661.934635pt;}
.y106{bottom:663.308401pt;}
.y103{bottom:663.308935pt;}
.y121{bottom:663.716801pt;}
.ye1{bottom:664.984276pt;}
.y91{bottom:665.210274pt;}
.y4e{bottom:665.278401pt;}
.y73{bottom:665.278534pt;}
.y14e{bottom:669.020932pt;}
.y35{bottom:669.750265pt;}
.y175{bottom:674.709898pt;}
.y1dd{bottom:675.259838pt;}
.y1a9{bottom:675.266147pt;}
.y120{bottom:678.380529pt;}
.y100{bottom:680.954394pt;}
.ye0{bottom:682.317602pt;}
.y90{bottom:682.543600pt;}
.yab{bottom:682.611727pt;}
.y4d{bottom:682.612660pt;}
.y14d{bottom:683.685327pt;}
.y34{bottom:684.413993pt;}
.y101{bottom:685.367513pt;}
.y102{bottom:685.367726pt;}
.y174{bottom:688.044960pt;}
.y1a8{bottom:688.591975pt;}
.y1dc{bottom:688.596100pt;}
.y11f{bottom:693.044923pt;}
.y14c{bottom:698.349054pt;}
.yff{bottom:698.601054pt;}
.y33{bottom:699.077720pt;}
.ydf{bottom:699.650928pt;}
.y8f{bottom:699.876927pt;}
.y10f{bottom:699.945053pt;}
.y72{bottom:699.945187pt;}
.y4c{bottom:699.945987pt;}
.y173{bottom:701.380554pt;}
.y1a7{bottom:701.927569pt;}
.y1db{bottom:701.930494pt;}
.y11e{bottom:707.708650pt;}
.y14b{bottom:713.013448pt;}
.y32{bottom:713.741448pt;}
.y172{bottom:714.715616pt;}
.y1a6{bottom:715.262631pt;}
.y1da{bottom:715.266756pt;}
.y8e{bottom:717.210253pt;}
.y10e{bottom:717.278380pt;}
.y4b{bottom:717.279313pt;}
.y11d{bottom:722.373044pt;}
.yfe{bottom:723.944910pt;}
.y14a{bottom:727.677176pt;}
.y171{bottom:728.051210pt;}
.y1a5{bottom:728.598225pt;}
.y1d9{bottom:728.601150pt;}
.yde{bottom:733.107182pt;}
.y8d{bottom:734.543580pt;}
.y4a{bottom:734.612639pt;}
.yfd{bottom:737.278238pt;}
.y170{bottom:741.386272pt;}
.y1d8{bottom:741.932603pt;}
.y1a4{bottom:741.933287pt;}
.y149{bottom:742.340903pt;}
.y31{bottom:743.069569pt;}
.ydd{bottom:749.960242pt;}
.y11c{bottom:751.706366pt;}
.y8c{bottom:751.876906pt;}
.y49{bottom:751.945966pt;}
.y71{bottom:751.946366pt;}
.y16f{bottom:754.720666pt;}
.y1a3{bottom:755.266615pt;}
.y1d7{bottom:755.267665pt;}
.y148{bottom:757.005297pt;}
.y30{bottom:757.733297pt;}
.ydc{bottom:763.295303pt;}
.y16e{bottom:768.047119pt;}
.y1d6{bottom:768.590368pt;}
.y1a2{bottom:768.598693pt;}
.y48{bottom:769.279292pt;}
.y70{bottom:769.279692pt;}
.y147{bottom:771.669025pt;}
.y2f{bottom:772.397024pt;}
.yda{bottom:780.148363pt;}
.y16d{bottom:781.381514pt;}
.y1d5{bottom:781.925429pt;}
.y1a1{bottom:781.933754pt;}
.y89{bottom:785.122059pt;}
.y8b{bottom:786.258092pt;}
.y146{bottom:786.332752pt;}
.y47{bottom:786.612619pt;}
.y6f{bottom:786.613019pt;}
.yd9{bottom:793.469816pt;}
.ydb{bottom:793.484624pt;}
.y16c{bottom:794.717775pt;}
.y1d4{bottom:795.259824pt;}
.y1a0{bottom:795.265832pt;}
.y87{bottom:798.452747pt;}
.y8a{bottom:799.583920pt;}
.y145{bottom:800.995813pt;}
.y2e{bottom:801.730346pt;}
.y88{bottom:802.870239pt;}
.y46{bottom:803.945945pt;}
.y6e{bottom:803.946345pt;}
.y11b{bottom:803.947145pt;}
.y16b{bottom:808.052170pt;}
.y1d3{bottom:808.596085pt;}
.y19f{bottom:808.600227pt;}
.yd8{bottom:810.322876pt;}
.y144{bottom:815.659540pt;}
.y84{bottom:815.803274pt;}
.y86{bottom:816.936607pt;}
.y6d{bottom:821.279138pt;}
.y45{bottom:821.279271pt;}
.yaa{bottom:821.280471pt;}
.y16a{bottom:821.387231pt;}
.y1d2{bottom:821.930480pt;}
.y19e{bottom:821.933555pt;}
.yd7{bottom:823.659137pt;}
.y82{bottom:829.141002pt;}
.y85{bottom:830.265135pt;}
.y143{bottom:830.324468pt;}
.y83{bottom:833.551627pt;}
.y19d{bottom:835.263133pt;}
.y1d1{bottom:835.266074pt;}
.y44{bottom:838.611798pt;}
.y6c{bottom:838.612998pt;}
.yd6{bottom:840.512197pt;}
.y142{bottom:844.988195pt;}
.y81{bottom:845.351662pt;}
.y2d{bottom:845.735528pt;}
.y169{bottom:848.059754pt;}
.y19c{bottom:848.598194pt;}
.y1d0{bottom:848.601136pt;}
.y43{bottom:855.945124pt;}
.y6b{bottom:855.946324pt;}
.yd5{bottom:857.365390pt;}
.y80{bottom:858.684990pt;}
.y141{bottom:859.651923pt;}
.y2c{bottom:860.399256pt;}
.y168{bottom:861.392869pt;}
.y1cf{bottom:861.932589pt;}
.y19b{bottom:861.933789pt;}
.yd4{bottom:870.700985pt;}
.y7e{bottom:870.884985pt;}
.y42{bottom:873.278451pt;}
.y6a{bottom:873.279651pt;}
.y140{bottom:874.315650pt;}
.y167{bottom:874.720983pt;}
.y2b{bottom:875.063650pt;}
.y19a{bottom:875.267117pt;}
.y1ce{bottom:875.267650pt;}
.y7f{bottom:875.298103pt;}
.y41{bottom:915.559634pt;}
.h1c{height:18.659193pt;}
.h16{height:19.801539pt;}
.h15{height:19.804045pt;}
.h17{height:24.354044pt;}
.h4{height:29.870388pt;}
.h1b{height:30.083188pt;}
.hb{height:30.344521pt;}
.h3{height:30.344841pt;}
.h14{height:31.094388pt;}
.h5{height:31.881587pt;}
.hf{height:32.715187pt;}
.h24{height:34.090653pt;}
.he{height:36.863985pt;}
.h12{height:37.456518pt;}
.h28{height:37.461518pt;}
.h2f{height:37.464018pt;}
.h2b{height:37.466518pt;}
.h2c{height:37.471518pt;}
.h29{height:37.476518pt;}
.h2d{height:37.479018pt;}
.h18{height:37.482652pt;}
.h26{height:37.484018pt;}
.h19{height:37.486518pt;}
.h2a{height:37.489018pt;}
.h30{height:37.499018pt;}
.h20{height:37.504018pt;}
.h2e{height:37.511518pt;}
.h27{height:37.531518pt;}
.h13{height:37.709318pt;}
.h8{height:38.101318pt;}
.h25{height:40.301317pt;}
.h9{height:40.723184pt;}
.h1d{height:42.006517pt;}
.h1e{height:42.009018pt;}
.h1f{height:42.011519pt;}
.h2{height:43.706649pt;}
.h6{height:44.094382pt;}
.ha{height:44.495982pt;}
.hd{height:49.439980pt;}
.h1a{height:49.440487pt;}
.h23{height:49.440514pt;}
.h11{height:49.442114pt;}
.h21{height:49.443147pt;}
.h22{height:49.443180pt;}
.h10{height:49.445314pt;}
.h7{height:67.546640pt;}
.hc{height:139.456835pt;}
.h1{height:869.291360pt;}
.h0{height:1056.000000pt;}
.w1{width:642.519840pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:86.739360pt;}
.x5{left:98.373233pt;}
.x7{left:121.700663pt;}
.x6{left:131.766286pt;}
.x4{left:136.593884pt;}
.x9{left:157.319937pt;}
.xa{left:171.358598pt;}
.x12{left:185.010593pt;}
.x19{left:189.119924pt;}
.x1a{left:195.659922pt;}
.x1c{left:197.088068pt;}
.x3c{left:200.125253pt;}
.x11{left:203.903918pt;}
.xc{left:215.242581pt;}
.x16{left:219.352699pt;}
.x15{left:224.334577pt;}
.x17{left:225.661443pt;}
.x2a{left:227.825496pt;}
.x3b{left:230.365908pt;}
.xe{left:234.139906pt;}
.xd{left:239.617237pt;}
.x13{left:241.906837pt;}
.x35{left:243.597569pt;}
.x8{left:245.668507pt;}
.x2b{left:254.548018pt;}
.x37{left:258.708910pt;}
.x33{left:261.835882pt;}
.x3{left:264.093833pt;}
.x1f{left:272.447891pt;}
.x30{left:277.824022pt;}
.x14{left:285.544286pt;}
.x36{left:287.053219pt;}
.x31{left:290.834137pt;}
.x2f{left:322.665338pt;}
.x2e{left:324.972137pt;}
.x1d{left:326.210803pt;}
.x39{left:328.789068pt;}
.x21{left:337.002932pt;}
.x3a{left:340.426130pt;}
.x20{left:341.785197pt;}
.x34{left:349.435594pt;}
.x1e{left:351.406659pt;}
.x2d{left:352.899712pt;}
.x2c{left:355.204245pt;}
.x1b{left:377.006516pt;}
.xb{left:379.845181pt;}
.x10{left:389.789177pt;}
.x32{left:394.397829pt;}
.x23{left:404.509172pt;}
.x38{left:405.787838pt;}
.x18{left:407.246650pt;}
.x24{left:411.147916pt;}
.x25{left:451.462899pt;}
.x22{left:469.722879pt;}
.x26{left:493.914709pt;}
.x27{left:532.144120pt;}
.x2{left:557.857715pt;}
.x28{left:568.579786pt;}
.x29{left:612.974675pt;}
.xf{left:644.597075pt;}
}




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