
    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_16e7394aa4651227110c8f9b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675000;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_4d63d3bc7453e5d2c9927b9e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_63d3747014896713442d22fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.980000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a4d49fe0b123e344af1a077e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.975586;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_fe0e0ca38181bcd8dc2b13f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.975586;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_afd9f667469d8e7ad0e8c608.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.975586;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_79736575f96961052f999988.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975586;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_223ec5d535df45fc8cfc195f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.467000;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_1531bf5b861f8ca08c3fe789.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.522000;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_5c09329f4590c9dfc600ae10.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.887000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-10.500000px;}
.v3{vertical-align:-8.904000px;}
.v1{vertical-align:-5.298000px;}
.v4{vertical-align:-1.812000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:7.471950px;}
.ls7{letter-spacing:8.181825px;}
.ls3{letter-spacing:16.363650px;}
.ls8{letter-spacing:21.520800px;}
.ls5{letter-spacing:50.210496px;}
.ls1{letter-spacing:52.499421px;}
.ls2{letter-spacing:52.505421px;}
.ls4{letter-spacing:52.664496px;}
.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;}
}
.ws28{word-spacing:-37.180650px;}
.ws1d{word-spacing:-32.727300px;}
.ws18{word-spacing:-24.545475px;}
.ws13{word-spacing:-22.415850px;}
.ws1{word-spacing:-16.363650px;}
.wsa{word-spacing:-14.943900px;}
.ws24{word-spacing:-13.449600px;}
.ws30{word-spacing:-11.955150px;}
.ws1f{word-spacing:-7.680150px;}
.ws20{word-spacing:-6.720121px;}
.ws2a{word-spacing:-0.589091px;}
.ws3{word-spacing:-0.282443px;}
.ws5{word-spacing:-0.261818px;}
.ws4{word-spacing:-0.065455px;}
.ws2f{word-spacing:-0.047821px;}
.ws21{word-spacing:-0.026048px;}
.ws11{word-spacing:-0.022822px;}
.ws1b{word-spacing:-0.022069px;}
.ws1c{word-spacing:-0.019311px;}
.ws26{word-spacing:-0.005119px;}
.ws16{word-spacing:-0.004540px;}
.ws22{word-spacing:-0.004195px;}
.ws2{word-spacing:-0.002815px;}
.wse{word-spacing:-0.001999px;}
.ws14{word-spacing:-0.000910px;}
.wsc{word-spacing:-0.000643px;}
.ws0{word-spacing:0.000000px;}
.ws19{word-spacing:0.001568px;}
.ws7{word-spacing:1.047274px;}
.ws15{word-spacing:1.178183px;}
.ws10{word-spacing:2.728291px;}
.ws23{word-spacing:2.749093px;}
.ws8{word-spacing:3.927276px;}
.ws9{word-spacing:3.992731px;}
.ws6{word-spacing:6.349096px;}
.wsf{word-spacing:16.294385px;}
.ws12{word-spacing:16.296497px;}
.wsd{word-spacing:16.298993px;}
.ws25{word-spacing:16.302161px;}
.ws17{word-spacing:16.363650px;}
.ws2d{word-spacing:22.918118px;}
.ws1e{word-spacing:27.570683px;}
.ws29{word-spacing:29.425692px;}
.ws2b{word-spacing:30.557363px;}
.ws1a{word-spacing:32.723542px;}
.ws2c{word-spacing:38.196608px;}
.wsb{word-spacing:41.825489px;}
.ws27{word-spacing:666.178921px;}
.ws2e{word-spacing:897.153234px;}
._18{margin-left:-127.323000px;}
._17{margin-left:-108.047423px;}
._16{margin-left:-16.496260px;}
._13{margin-left:-7.471950px;}
._f{margin-left:-5.355907px;}
._b{margin-left:-4.129885px;}
._1{margin-left:-2.343209px;}
._9{margin-left:-1.178183px;}
._0{width:1.205081px;}
._4{width:3.083233px;}
._2{width:4.658908px;}
._3{width:7.094247px;}
._c{width:8.227356px;}
._1f{width:10.556432px;}
._e{width:13.581050px;}
._1a{width:14.793878px;}
._d{width:17.454475px;}
._a{width:19.112743px;}
._11{width:21.403654px;}
._10{width:24.087293px;}
._15{width:25.134542px;}
._5{width:44.545075px;}
._6{width:53.798400px;}
._8{width:80.912794px;}
._12{width:347.047395px;}
._7{width:363.721395px;}
._1d{width:380.401395px;}
._1b{width:427.156720px;}
._1e{width:521.216571px;}
._14{width:565.718483px;}
._1c{width:702.524222px;}
._19{width:921.862586px;}
.fc11{color:rgb(210,32,39);}
.fcd{color:rgb(218,147,13);}
.fc0{color:rgb(255,255,255);}
.fcb{color:rgb(96,96,96);}
.fc2{color:rgb(82,86,109);}
.fc7{color:rgb(249,206,194);}
.fc8{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc10{color:rgb(232,103,88);}
.fc4{color:rgb(252,230,223);}
.fcf{color:rgb(235,109,93);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(224,45,48);}
.fce{color:rgb(245,245,245);}
.fc9{color:rgb(0,173,239);}
.fc6{color:rgb(254,250,248);}
.fca{color:rgb(215,7,81);}
.fcc{color:rgb(240,81,51);}
.fs8{font-size:14.849738px;}
.fs7{font-size:14.849740px;}
.fsb{font-size:19.310693px;}
.fs9{font-size:19.799569px;}
.fsa{font-size:22.069398px;}
.fs10{font-size:23.530320px;}
.fsd{font-size:25.524335px;}
.fsc{font-size:26.048077px;}
.fs4{font-size:35.865600px;}
.fs6{font-size:42.351660px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fse{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.fsf{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.873000px;}
.y9{bottom:12.198000px;}
.yb2{bottom:16.317131px;}
.y1bf{bottom:16.662000px;}
.yfe{bottom:20.102696px;}
.ya{bottom:20.397402px;}
.y1f7{bottom:20.758500px;}
.y172{bottom:21.340500px;}
.y13a{bottom:21.754500px;}
.y104{bottom:25.307119px;}
.yc0{bottom:25.428000px;}
.yc3{bottom:25.753500px;}
.yc6{bottom:26.850000px;}
.y18e{bottom:29.121000px;}
.y192{bottom:29.710853px;}
.y8f{bottom:30.540000px;}
.y16b{bottom:32.388000px;}
.y12d{bottom:33.018000px;}
.y197{bottom:33.379500px;}
.y1f6{bottom:34.956000px;}
.yea{bottom:35.375889px;}
.y171{bottom:35.536500px;}
.yec{bottom:36.687552px;}
.ya2{bottom:36.693000px;}
.y1be{bottom:36.985500px;}
.y7d{bottom:37.081500px;}
.y130{bottom:37.146000px;}
.y15f{bottom:37.594500px;}
.y3d{bottom:38.146500px;}
.y139{bottom:38.193000px;}
.y18d{bottom:39.582000px;}
.y17c{bottom:39.618000px;}
.y1af{bottom:41.157000px;}
.y14c{bottom:41.665500px;}
.y1d7{bottom:41.949000px;}
.y107{bottom:43.230000px;}
.yeb{bottom:43.584317px;}
.y72{bottom:45.330000px;}
.ybf{bottom:45.751500px;}
.yc2{bottom:46.077000px;}
.yc5{bottom:47.173500px;}
.y39{bottom:48.121500px;}
.y1f5{bottom:49.152000px;}
.y170{bottom:49.734000px;}
.y2d{bottom:49.999500px;}
.y8e{bottom:50.865000px;}
.y16a{bottom:52.711500px;}
.yb0{bottom:52.851000px;}
.y1ae{bottom:55.353000px;}
.y14b{bottom:55.861500px;}
.y17b{bottom:56.055000px;}
.ydc{bottom:56.364614px;}
.ya1{bottom:57.016500px;}
.y7c{bottom:57.405000px;}
.y12c{bottom:57.825000px;}
.y3c{bottom:58.470000px;}
.y1bd{bottom:60.313500px;}
.y15e{bottom:62.401500px;}
.ydb{bottom:63.261389px;}
.y1f4{bottom:63.349500px;}
.y71{bottom:65.655000px;}
.y1d6{bottom:65.784000px;}
.y12f{bottom:67.288500px;}
.y106{bottom:68.037000px;}
.y38{bottom:68.445000px;}
.y194{bottom:69.492339px;}
.y1ad{bottom:69.550500px;}
.y103{bottom:69.705519px;}
.y14a{bottom:70.059000px;}
.y2c{bottom:70.323000px;}
.y5e{bottom:71.118000px;}
.y8d{bottom:71.188500px;}
.y17a{bottom:72.493500px;}
.y169{bottom:73.035000px;}
.yaf{bottom:73.174500px;}
.ye5{bottom:75.360194px;}
.yd8{bottom:77.171874px;}
.ya0{bottom:77.340000px;}
.y1f3{bottom:77.545500px;}
.y12{bottom:78.201000px;}
.ye4{bottom:81.394949px;}
.y7b{bottom:82.132500px;}
.yf8{bottom:82.386976px;}
.y12b{bottom:82.632000px;}
.y18b{bottom:85.956000px;}
.y15d{bottom:87.208500px;}
.yd7{bottom:87.339546px;}
.y12e{bottom:87.612000px;}
.yf7{bottom:88.421567px;}
.y86{bottom:90.555000px;}
.y67{bottom:91.617000px;}
.y1f2{bottom:91.743000px;}
.y149{bottom:92.319000px;}
.y3b{bottom:92.475000px;}
.y105{bottom:92.844000px;}
.y37{bottom:93.252000px;}
.y2b{bottom:95.130000px;}
.yed{bottom:95.152947px;}
.y8c{bottom:95.995500px;}
.y179{bottom:96.919500px;}
.y21{bottom:97.563000px;}
.y9f{bottom:97.665000px;}
.y1ac{bottom:97.944000px;}
.y1bc{bottom:98.869500px;}
.ycd{bottom:99.310429px;}
.ye3{bottom:99.797302px;}
.y102{bottom:100.179676px;}
.yf6{bottom:100.713694px;}
.y18a{bottom:103.890000px;}
.y70{bottom:103.911000px;}
.ycc{bottom:104.791373px;}
.ye2{bottom:105.832058px;}
.y1f1{bottom:105.939000px;}
.y148{bottom:106.515000px;}
.y3a{bottom:106.672500px;}
.yf5{bottom:106.748449px;}
.y8{bottom:107.554500px;}
.yd6{bottom:108.167142px;}
.y45{bottom:108.859500px;}
.y181{bottom:109.777500px;}
.y15c{bottom:110.380500px;}
.y138{bottom:111.078000px;}
.y66{bottom:111.942000px;}
.y1ab{bottom:112.140000px;}
.y168{bottom:112.869000px;}
.y1d5{bottom:112.972500px;}
.y178{bottom:113.358000px;}
.y36{bottom:113.575500px;}
.y5d{bottom:113.659500px;}
.y85{bottom:113.868000px;}
.y1ca{bottom:114.546000px;}
.y2a{bottom:115.455000px;}
.y8b{bottom:116.319000px;}
.ycf{bottom:116.646442px;}
.ye8{bottom:117.644032px;}
.yfb{bottom:118.093679px;}
.yd4{bottom:119.129030px;}
.y101{bottom:119.882599px;}
.y1f0{bottom:120.136500px;}
.y147{bottom:120.712500px;}
.ye9{bottom:120.905773px;}
.y12a{bottom:121.032000px;}
.y11{bottom:121.801500px;}
.yd0{bottom:121.923278px;}
.y1bb{bottom:123.676500px;}
.y6f{bottom:124.234500px;}
.yac{bottom:124.336500px;}
.ye7{bottom:124.540796px;}
.y193{bottom:124.559710px;}
.yd5{bottom:124.609974px;}
.y189{bottom:124.810500px;}
.yfa{bottom:124.990443px;}
.y1aa{bottom:126.337500px;}
.ycb{bottom:126.616500px;}
.y4d{bottom:127.179000px;}
.y7{bottom:127.878000px;}
.y177{bottom:129.796500px;}
.y137{bottom:131.401500px;}
.ye6{bottom:131.437560px;}
.y84{bottom:131.800500px;}
.yf9{bottom:131.887207px;}
.y65{bottom:132.265500px;}
.y44{bottom:133.666500px;}
.yce{bottom:134.079261px;}
.y18{bottom:134.107500px;}
.y7a{bottom:134.281500px;}
.y1ef{bottom:134.332500px;}
.y29{bottom:135.778500px;}
.y20{bottom:136.693500px;}
.y167{bottom:137.676000px;}
.y1d4{bottom:137.779500px;}
.y100{bottom:137.835149px;}
.yd1{bottom:138.386914px;}
.y1c9{bottom:138.456000px;}
.y5c{bottom:138.829500px;}
.yf4{bottom:139.041429px;}
.y8a{bottom:141.126000px;}
.yd2{bottom:142.430576px;}
.y146{bottom:142.972500px;}
.y6e{bottom:144.558000px;}
.yf3{bottom:145.076174px;}
.y9e{bottom:145.078500px;}
.y1ba{bottom:146.848500px;}
.y6{bottom:148.201500px;}
.y1ee{bottom:148.530000px;}
.ye1{bottom:148.671529px;}
.y1c8{bottom:148.917000px;}
.yab{bottom:149.143500px;}
.y83{bottom:149.733000px;}
.y176{bottom:151.560000px;}
.y136{bottom:151.725000px;}
.y79{bottom:152.214000px;}
.y188{bottom:152.607000px;}
.y1a9{bottom:153.984000px;}
.y43{bottom:153.991500px;}
.y1f{bottom:154.626000px;}
.ye0{bottom:154.706266px;}
.yff{bottom:155.021605px;}
.y15b{bottom:156.205500px;}
.y5b{bottom:156.762000px;}
.y64{bottom:157.072500px;}
.y145{bottom:157.170000px;}
.y17{bottom:158.914500px;}
.y1c7{bottom:159.378000px;}
.yf2{bottom:159.743018px;}
.y28{bottom:160.585500px;}
.yc4{bottom:161.064000px;}
.yd3{bottom:161.176010px;}
.y89{bottom:161.449500px;}
.y195{bottom:162.139347px;}
.yc1{bottom:162.159000px;}
.ybe{bottom:162.484500px;}
.y1d3{bottom:162.586500px;}
.y1ed{bottom:162.726000px;}
.y180{bottom:164.503500px;}
.y6d{bottom:164.883000px;}
.y35{bottom:164.974500px;}
.y10{bottom:165.403500px;}
.y166{bottom:165.472500px;}
.yf1{bottom:165.777764px;}
.y4c{bottom:167.013000px;}
.y82{bottom:167.665500px;}
.y175{bottom:167.998500px;}
.y1c6{bottom:169.839000px;}
.y78{bottom:170.908500px;}
.y144{bottom:171.366000px;}
.y1e{bottom:172.558500px;}
.yda{bottom:173.116337px;}
.y187{bottom:173.527500px;}
.yaa{bottom:173.950500px;}
.yfd{bottom:175.440342px;}
.y1ec{bottom:176.923500px;}
.y63{bottom:177.396000px;}
.y5a{bottom:177.684000px;}
.ydf{bottom:179.217915px;}
.yd9{bottom:179.303767px;}
.y1c5{bottom:180.300000px;}
.y27{bottom:180.909000px;}
.y15a{bottom:181.012500px;}
.y1a8{bottom:181.630500px;}
.y42{bottom:181.786500px;}
.y1b5{bottom:182.299500px;}
.yfc{bottom:182.336974px;}
.y16{bottom:183.721500px;}
.y174{bottom:184.435500px;}
.yde{bottom:185.252651px;}
.y34{bottom:185.298000px;}
.y88{bottom:186.256500px;}
.y165{bottom:186.393000px;}
.y5{bottom:187.191000px;}
.y4b{bottom:187.336500px;}
.y1d2{bottom:187.393500px;}
.y81{bottom:188.587500px;}
.y1d{bottom:190.491000px;}
.y1c4{bottom:190.761000px;}
.y1b9{bottom:191.266500px;}
.ydd{bottom:191.467927px;}
.y143{bottom:193.627500px;}
.y191{bottom:193.670368px;}
.y1a7{bottom:195.826500px;}
.y122{bottom:197.245500px;}
.y117{bottom:197.247000px;}
.y62{bottom:197.719500px;}
.y77{bottom:197.808000px;}
.y10c{bottom:197.994000px;}
.ya9{bottom:198.757500px;}
.y1eb{bottom:199.350000px;}
.y9d{bottom:200.068500px;}
.y1b4{bottom:200.232000px;}
.y59{bottom:200.632500px;}
.y1c3{bottom:201.220500px;}
.y186{bottom:201.324000px;}
.y4{bottom:201.387000px;}
.y41{bottom:202.708500px;}
.yca{bottom:205.387500px;}
.y6c{bottom:205.530000px;}
.y26{bottom:205.716000px;}
.y159{bottom:205.819500px;}
.yb4{bottom:206.229000px;}
.y4a{bottom:207.660000px;}
.y142{bottom:207.823500px;}
.y15{bottom:208.528500px;}
.y164{bottom:208.809000px;}
.yf{bottom:209.004000px;}
.y1b8{bottom:209.199000px;}
.y17d{bottom:209.694000px;}
.y1d1{bottom:210.958500px;}
.y87{bottom:211.063500px;}
.y1c{bottom:211.413000px;}
.y1c2{bottom:211.681500px;}
.y33{bottom:213.093000px;}
.y80{bottom:213.394500px;}
.y121{bottom:217.569000px;}
.y116{bottom:217.570500px;}
.y1b3{bottom:218.164500px;}
.y10b{bottom:218.317500px;}
.y17f{bottom:219.231000px;}
.y141{bottom:222.021000px;}
.y1c1{bottom:222.142500px;}
.y185{bottom:222.246000px;}
.y76{bottom:222.615000px;}
.y58{bottom:222.814500px;}
.y1a6{bottom:223.473000px;}
.ya8{bottom:223.564500px;}
.y9c{bottom:224.875500px;}
.y6b{bottom:225.853500px;}
.y25{bottom:226.039500px;}
.y1b7{bottom:227.131500px;}
.y40{bottom:227.515500px;}
.y49{bottom:227.983500px;}
.y1b{bottom:229.345500px;}
.y158{bottom:230.637000px;}
.yb3{bottom:230.956500px;}
.y32{bottom:231.027000px;}
.y14{bottom:233.335500px;}
.y163{bottom:233.619000px;}
.y3{bottom:235.102500px;}
.y173{bottom:235.885500px;}
.y61{bottom:235.977000px;}
.y1b2{bottom:236.097000px;}
.y1dd{bottom:236.226000px;}
.y120{bottom:237.892500px;}
.y115{bottom:237.894000px;}
.y7f{bottom:238.201500px;}
.y10a{bottom:238.642500px;}
.y140{bottom:241.593000px;}
.y1c0{bottom:242.047500px;}
.y57{bottom:243.138000px;}
.y1b6{bottom:245.064000px;}
.y6a{bottom:246.177000px;}
.y75{bottom:247.423500px;}
.ya7{bottom:248.373000px;}
.y31{bottom:248.959500px;}
.y9b{bottom:249.682500px;}
.y184{bottom:250.041000px;}
.y1dc{bottom:250.422000px;}
.y24{bottom:251.160000px;}
.y1a{bottom:251.761500px;}
.ye{bottom:252.606000px;}
.y1d0{bottom:253.054500px;}
.y19b{bottom:253.471500px;}
.y1b1{bottom:254.031000px;}
.y13f{bottom:255.790500px;}
.y60{bottom:256.300500px;}
.y16f{bottom:256.975500px;}
.y135{bottom:258.118500px;}
.y13{bottom:258.142500px;}
.y11f{bottom:258.216000px;}
.y114{bottom:258.219000px;}
.y109{bottom:258.966000px;}
.y3f{bottom:262.807500px;}
.y48{bottom:263.431500px;}
.y30{bottom:266.892000px;}
.y183{bottom:267.973500px;}
.yb1{bottom:268.480500px;}
.y13e{bottom:269.986500px;}
.yc8{bottom:271.747500px;}
.y19{bottom:272.085000px;}
.y134{bottom:272.316000px;}
.y1cf{bottom:272.482500px;}
.y19a{bottom:273.795000px;}
.y17e{bottom:273.988500px;}
.y162{bottom:275.938500px;}
.y5f{bottom:276.624000px;}
.y14f{bottom:276.855000px;}
.y16e{bottom:277.299000px;}
.y1db{bottom:278.068500px;}
.y47{bottom:279.340500px;}
.y3e{bottom:283.131000px;}
.y7e{bottom:284.724000px;}
.y133{bottom:286.512000px;}
.ya4{bottom:286.680000px;}
.ya6{bottom:286.684500px;}
.y69{bottom:286.825500px;}
.y9a{bottom:286.849500px;}
.y2f{bottom:287.814000px;}
.y182{bottom:288.895500px;}
.y4e{bottom:289.660500px;}
.y1ce{bottom:291.909000px;}
.yc7{bottom:292.072500px;}
.y13d{bottom:292.248000px;}
.y1da{bottom:292.266000px;}
.y23{bottom:293.946000px;}
.y199{bottom:294.118500px;}
.y74{bottom:294.693000px;}
.yd{bottom:296.206500px;}
.y161{bottom:296.262000px;}
.y2{bottom:298.713000px;}
.y46{bottom:299.665500px;}
.y14e{bottom:301.662000px;}
.y16d{bottom:302.106000px;}
.y1b0{bottom:303.861000px;}
.y13c{bottom:306.444000px;}
.y1d9{bottom:306.462000px;}
.y68{bottom:307.149000px;}
.ya3{bottom:311.563500px;}
.ya5{bottom:311.568000px;}
.y132{bottom:312.444000px;}
.y2e{bottom:312.621000px;}
.y22{bottom:314.269500px;}
.y1cc{bottom:314.917500px;}
.y73{bottom:319.500000px;}
.y160{bottom:319.737000px;}
.y198{bottom:319.803000px;}
.y1cd{bottom:320.160000px;}
.y13b{bottom:320.641500px;}
.y196{bottom:321.391500px;}
.y16c{bottom:322.429500px;}
.y18c{bottom:323.269500px;}
.y1{bottom:324.417000px;}
.y90{bottom:325.153500px;}
.y14d{bottom:326.470500px;}
.y108{bottom:328.497000px;}
.y1d8{bottom:328.888500px;}
.y131{bottom:334.057500px;}
.yc{bottom:362.751000px;}
.y1ea{bottom:3020.797185px;}
.yb7{bottom:3025.466685px;}
.yba{bottom:3025.792185px;}
.ybd{bottom:3026.888685px;}
.y126{bottom:3033.056685px;}
.y11b{bottom:3033.061185px;}
.y190{bottom:3033.418185px;}
.y110{bottom:3034.555185px;}
.y1e9{bottom:3034.994685px;}
.y99{bottom:3036.731685px;}
.y129{bottom:3037.184685px;}
.y11e{bottom:3037.187685px;}
.y157{bottom:3037.633185px;}
.y113{bottom:3038.681685px;}
.y1a5{bottom:3041.195685px;}
.yf0{bottom:3043.268685px;}
.yb6{bottom:3045.790185px;}
.yb9{bottom:3046.115685px;}
.ybc{bottom:3047.212185px;}
.y1e8{bottom:3049.190685px;}
.yae{bottom:3052.889685px;}
.y1a4{bottom:3055.391685px;}
.y98{bottom:3057.055185px;}
.y125{bottom:3057.863685px;}
.y11a{bottom:3057.868185px;}
.y10f{bottom:3059.362185px;}
.y156{bottom:3062.440185px;}
.y1e7{bottom:3063.388185px;}
.y128{bottom:3067.327185px;}
.y11d{bottom:3067.330185px;}
.yef{bottom:3068.075685px;}
.y112{bottom:3068.824185px;}
.y1a3{bottom:3069.589185px;}
.y56{bottom:3071.156685px;}
.yad{bottom:3073.213185px;}
.y97{bottom:3077.378685px;}
.y1e6{bottom:3077.584185px;}
.y124{bottom:3082.670685px;}
.y119{bottom:3082.675185px;}
.y10e{bottom:3084.169185px;}
.y155{bottom:3087.247185px;}
.y127{bottom:3087.650685px;}
.y11c{bottom:3087.653685px;}
.y111{bottom:3089.147685px;}
.y1e5{bottom:3091.781685px;}
.yee{bottom:3092.882685px;}
.y96{bottom:3097.703685px;}
.y1a2{bottom:3097.982685px;}
.y1e4{bottom:3105.977685px;}
.y154{bottom:3110.419185px;}
.y1a1{bottom:3112.178685px;}
.y55{bottom:3113.698185px;}
.y1e3{bottom:3120.175185px;}
.y123{bottom:3121.070685px;}
.y118{bottom:3121.073685px;}
.y10d{bottom:3122.567685px;}
.y1a0{bottom:3126.376185px;}
.y1e2{bottom:3134.371185px;}
.y54{bottom:3138.868185px;}
.y95{bottom:3145.117185px;}
.y1e1{bottom:3148.568685px;}
.y19f{bottom:3154.022685px;}
.y153{bottom:3156.244185px;}
.y53{bottom:3156.800685px;}
.ybb{bottom:3161.102685px;}
.yb8{bottom:3162.197685px;}
.yb5{bottom:3162.523185px;}
.y1e0{bottom:3162.764685px;}
.y1df{bottom:3176.962185px;}
.y52{bottom:3177.722685px;}
.y152{bottom:3181.051185px;}
.y19e{bottom:3181.669185px;}
.y19d{bottom:3195.865185px;}
.y1de{bottom:3199.388685px;}
.y94{bottom:3200.107185px;}
.y51{bottom:3200.671185px;}
.yc9{bottom:3205.426185px;}
.y151{bottom:3205.858185px;}
.y50{bottom:3222.853185px;}
.y19c{bottom:3223.511685px;}
.y93{bottom:3224.914185px;}
.y150{bottom:3230.675685px;}
.y4f{bottom:3243.176685px;}
.y92{bottom:3249.721185px;}
.y91{bottom:3286.888185px;}
.y1cb{bottom:3314.956185px;}
.y18f{bottom:3321.430185px;}
.h1f{height:-2650.741185px;}
.h15{height:11.282320px;}
.h14{height:11.282322px;}
.h18{height:14.671600px;}
.h16{height:15.043032px;}
.h20{height:16.518285px;}
.h17{height:16.767570px;}
.h7{height:25.392845px;}
.h1e{height:26.648141px;}
.h12{height:28.206206px;}
.h1a{height:28.970121px;}
.h19{height:29.564567px;}
.h10{height:33.411125px;}
.hf{height:33.417125px;}
.h4{height:33.856985px;}
.h6{height:35.259465px;}
.h22{height:35.530706px;}
.he{height:35.835857px;}
.hd{height:35.841857px;}
.h1b{height:38.089267px;}
.h1d{height:40.911857px;}
.h9{height:41.037857px;}
.h8{height:41.043857px;}
.ha{height:42.321125px;}
.h23{height:44.413271px;}
.h3{height:46.341857px;}
.hb{height:48.632768px;}
.h2{height:60.942658px;}
.hc{height:62.181870px;}
.h11{height:72.840146px;}
.h5{height:91.054594px;}
.h1c{height:105.295601px;}
.h13{height:201.147792px;}
.h21{height:205.400085px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w5{width:-2678.537685px;}
.w6{width:291.677925px;}
.w3{width:333.363113px;}
.w4{width:416.667489px;}
.w2{width:416.724081px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x64{left:4.184426px;}
.x3e{left:5.619049px;}
.x3f{left:9.862128px;}
.xc{left:18.136500px;}
.x31{left:21.259500px;}
.x21{left:28.347000px;}
.x2e{left:36.141000px;}
.x40{left:38.024925px;}
.x60{left:40.495500px;}
.xd{left:43.275000px;}
.x6b{left:45.562500px;}
.x48{left:50.276534px;}
.x25{left:51.288000px;}
.x23{left:53.284500px;}
.x61{left:54.498000px;}
.x18{left:57.912000px;}
.x5b{left:61.074000px;}
.xb{left:65.329500px;}
.x5d{left:68.034000px;}
.x24{left:69.435000px;}
.x42{left:70.840921px;}
.x43{left:72.625369px;}
.xe{left:75.247500px;}
.x44{left:76.264234px;}
.x45{left:78.734647px;}
.x49{left:79.993966px;}
.x41{left:82.487839px;}
.x19{left:84.411000px;}
.x47{left:87.434250px;}
.x46{left:88.523305px;}
.x1a{left:91.252500px;}
.x29{left:96.786303px;}
.x1{left:99.754500px;}
.x5c{left:104.350500px;}
.xf{left:107.974500px;}
.x3c{left:119.978971px;}
.xa{left:120.988740px;}
.x27{left:123.781500px;}
.x3b{left:125.598571px;}
.x9{left:131.812500px;}
.x39{left:133.061314px;}
.x3d{left:134.147794px;}
.x3a{left:137.073538px;}
.x52{left:139.755150px;}
.x2a{left:141.831000px;}
.x34{left:144.748938px;}
.x6c{left:146.737500px;}
.x38{left:149.435637px;}
.x35{left:152.054418px;}
.x36{left:160.848793px;}
.x37{left:163.676360px;}
.x4a{left:168.722355px;}
.x28{left:173.481000px;}
.x6a{left:180.243000px;}
.x51{left:186.411005px;}
.x4d{left:192.205694px;}
.x7{left:193.941000px;}
.x2{left:194.947500px;}
.x4e{left:196.388655px;}
.x4c{left:197.949253px;}
.x4b{left:202.656707px;}
.x4f{left:209.419439px;}
.x1e{left:213.285000px;}
.x5{left:231.963000px;}
.x33{left:242.859000px;}
.x1f{left:246.012000px;}
.x2f{left:250.866000px;}
.x10{left:252.933000px;}
.x55{left:258.974735px;}
.x5f{left:267.301500px;}
.x3{left:278.695500px;}
.x67{left:283.392000px;}
.x8{left:289.308000px;}
.x50{left:290.776735px;}
.x4{left:295.552500px;}
.x56{left:296.565822px;}
.x6{left:297.915000px;}
.x54{left:308.186440px;}
.x57{left:320.420462px;}
.x65{left:354.331500px;}
.x66{left:358.813500px;}
.x5e{left:374.175000px;}
.x53{left:386.443589px;}
.x20{left:395.380500px;}
.x11{left:413.590500px;}
.x12{left:433.941000px;}
.x22{left:443.619000px;}
.x30{left:465.589500px;}
.x58{left:532.915500px;}
.x13{left:590.884500px;}
.x2b{left:3036.179685px;}
.x14{left:3042.557685px;}
.x15{left:3057.950685px;}
.x59{left:3061.112685px;}
.x16{left:3075.286185px;}
.x17{left:3108.013185px;}
.x26{left:3123.820185px;}
.x68{left:3180.281685px;}
.x69{left:3203.236185px;}
.x1b{left:3213.323685px;}
.x32{left:3242.897685px;}
.x1c{left:3246.050685px;}
.x2c{left:3250.904685px;}
.x5a{left:3294.838185px;}
.x62{left:3354.370185px;}
.x63{left:3358.852185px;}
.x1d{left:3395.419185px;}
.x2d{left:3465.628185px;}
@media print{
.v2{vertical-align:-9.333333pt;}
.v3{vertical-align:-7.914667pt;}
.v1{vertical-align:-4.709333pt;}
.v4{vertical-align:-1.610667pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:6.641733pt;}
.ls7{letter-spacing:7.272733pt;}
.ls3{letter-spacing:14.545467pt;}
.ls8{letter-spacing:19.129600pt;}
.ls5{letter-spacing:44.631552pt;}
.ls1{letter-spacing:46.666152pt;}
.ls2{letter-spacing:46.671485pt;}
.ls4{letter-spacing:46.812885pt;}
.ws28{word-spacing:-33.049467pt;}
.ws1d{word-spacing:-29.090933pt;}
.ws18{word-spacing:-21.818200pt;}
.ws13{word-spacing:-19.925200pt;}
.ws1{word-spacing:-14.545467pt;}
.wsa{word-spacing:-13.283467pt;}
.ws24{word-spacing:-11.955200pt;}
.ws30{word-spacing:-10.626800pt;}
.ws1f{word-spacing:-6.826800pt;}
.ws20{word-spacing:-5.973441pt;}
.ws2a{word-spacing:-0.523637pt;}
.ws3{word-spacing:-0.251061pt;}
.ws5{word-spacing:-0.232727pt;}
.ws4{word-spacing:-0.058182pt;}
.ws2f{word-spacing:-0.042507pt;}
.ws21{word-spacing:-0.023154pt;}
.ws11{word-spacing:-0.020286pt;}
.ws1b{word-spacing:-0.019617pt;}
.ws1c{word-spacing:-0.017165pt;}
.ws26{word-spacing:-0.004550pt;}
.ws16{word-spacing:-0.004035pt;}
.ws22{word-spacing:-0.003729pt;}
.ws2{word-spacing:-0.002502pt;}
.wse{word-spacing:-0.001777pt;}
.ws14{word-spacing:-0.000809pt;}
.wsc{word-spacing:-0.000572pt;}
.ws0{word-spacing:0.000000pt;}
.ws19{word-spacing:0.001394pt;}
.ws7{word-spacing:0.930910pt;}
.ws15{word-spacing:1.047274pt;}
.ws10{word-spacing:2.425148pt;}
.ws23{word-spacing:2.443638pt;}
.ws8{word-spacing:3.490912pt;}
.ws9{word-spacing:3.549094pt;}
.ws6{word-spacing:5.643641pt;}
.wsf{word-spacing:14.483898pt;}
.ws12{word-spacing:14.485775pt;}
.wsd{word-spacing:14.487994pt;}
.ws25{word-spacing:14.490810pt;}
.ws17{word-spacing:14.545467pt;}
.ws2d{word-spacing:20.371661pt;}
.ws1e{word-spacing:24.507274pt;}
.ws29{word-spacing:26.156171pt;}
.ws2b{word-spacing:27.162101pt;}
.ws1a{word-spacing:29.087593pt;}
.ws2c{word-spacing:33.952541pt;}
.wsb{word-spacing:37.178213pt;}
.ws27{word-spacing:592.159041pt;}
.ws2e{word-spacing:797.469541pt;}
._18{margin-left:-113.176000pt;}
._17{margin-left:-96.042154pt;}
._16{margin-left:-14.663342pt;}
._13{margin-left:-6.641733pt;}
._f{margin-left:-4.760806pt;}
._b{margin-left:-3.671009pt;}
._1{margin-left:-2.082853pt;}
._9{margin-left:-1.047274pt;}
._0{width:1.071183pt;}
._4{width:2.740651pt;}
._2{width:4.141252pt;}
._3{width:6.305997pt;}
._c{width:7.313206pt;}
._1f{width:9.383495pt;}
._e{width:12.072045pt;}
._1a{width:13.150114pt;}
._d{width:15.515089pt;}
._a{width:16.989105pt;}
._11{width:19.025470pt;}
._10{width:21.410927pt;}
._15{width:22.341815pt;}
._5{width:39.595622pt;}
._6{width:47.820800pt;}
._8{width:71.922483pt;}
._12{width:308.486573pt;}
._7{width:323.307907pt;}
._1d{width:338.134573pt;}
._1b{width:379.694862pt;}
._1e{width:463.303619pt;}
._14{width:502.860874pt;}
._1c{width:624.465975pt;}
._19{width:819.433410pt;}
.fs8{font-size:13.199767pt;}
.fs7{font-size:13.199769pt;}
.fsb{font-size:17.165060pt;}
.fs9{font-size:17.599617pt;}
.fsa{font-size:19.617243pt;}
.fs10{font-size:20.915840pt;}
.fsd{font-size:22.688298pt;}
.fsc{font-size:23.153846pt;}
.fs4{font-size:31.880533pt;}
.fs6{font-size:37.645920pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fse{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.fsf{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.442667pt;}
.y9{bottom:10.842667pt;}
.yb2{bottom:14.504117pt;}
.y1bf{bottom:14.810667pt;}
.yfe{bottom:17.869063pt;}
.ya{bottom:18.131024pt;}
.y1f7{bottom:18.452000pt;}
.y172{bottom:18.969333pt;}
.y13a{bottom:19.337333pt;}
.y104{bottom:22.495216pt;}
.yc0{bottom:22.602667pt;}
.yc3{bottom:22.892000pt;}
.yc6{bottom:23.866667pt;}
.y18e{bottom:25.885333pt;}
.y192{bottom:26.409647pt;}
.y8f{bottom:27.146667pt;}
.y16b{bottom:28.789333pt;}
.y12d{bottom:29.349333pt;}
.y197{bottom:29.670667pt;}
.y1f6{bottom:31.072000pt;}
.yea{bottom:31.445235pt;}
.y171{bottom:31.588000pt;}
.yec{bottom:32.611158pt;}
.ya2{bottom:32.616000pt;}
.y1be{bottom:32.876000pt;}
.y7d{bottom:32.961333pt;}
.y130{bottom:33.018667pt;}
.y15f{bottom:33.417333pt;}
.y3d{bottom:33.908000pt;}
.y139{bottom:33.949333pt;}
.y18d{bottom:35.184000pt;}
.y17c{bottom:35.216000pt;}
.y1af{bottom:36.584000pt;}
.y14c{bottom:37.036000pt;}
.y1d7{bottom:37.288000pt;}
.y107{bottom:38.426667pt;}
.yeb{bottom:38.741615pt;}
.y72{bottom:40.293333pt;}
.ybf{bottom:40.668000pt;}
.yc2{bottom:40.957333pt;}
.yc5{bottom:41.932000pt;}
.y39{bottom:42.774667pt;}
.y1f5{bottom:43.690667pt;}
.y170{bottom:44.208000pt;}
.y2d{bottom:44.444000pt;}
.y8e{bottom:45.213333pt;}
.y16a{bottom:46.854667pt;}
.yb0{bottom:46.978667pt;}
.y1ae{bottom:49.202667pt;}
.y14b{bottom:49.654667pt;}
.y17b{bottom:49.826667pt;}
.ydc{bottom:50.101879pt;}
.ya1{bottom:50.681333pt;}
.y7c{bottom:51.026667pt;}
.y12c{bottom:51.400000pt;}
.y3c{bottom:51.973333pt;}
.y1bd{bottom:53.612000pt;}
.y15e{bottom:55.468000pt;}
.ydb{bottom:56.232346pt;}
.y1f4{bottom:56.310667pt;}
.y71{bottom:58.360000pt;}
.y1d6{bottom:58.474667pt;}
.y12f{bottom:59.812000pt;}
.y106{bottom:60.477333pt;}
.y38{bottom:60.840000pt;}
.y194{bottom:61.770968pt;}
.y1ad{bottom:61.822667pt;}
.y103{bottom:61.960461pt;}
.y14a{bottom:62.274667pt;}
.y2c{bottom:62.509333pt;}
.y5e{bottom:63.216000pt;}
.y8d{bottom:63.278667pt;}
.y17a{bottom:64.438667pt;}
.y169{bottom:64.920000pt;}
.yaf{bottom:65.044000pt;}
.ye5{bottom:66.986839pt;}
.yd8{bottom:68.597222pt;}
.ya0{bottom:68.746667pt;}
.y1f3{bottom:68.929333pt;}
.y12{bottom:69.512000pt;}
.ye4{bottom:72.351066pt;}
.y7b{bottom:73.006667pt;}
.yf8{bottom:73.232867pt;}
.y12b{bottom:73.450667pt;}
.y18b{bottom:76.405333pt;}
.y15d{bottom:77.518667pt;}
.yd7{bottom:77.635152pt;}
.y12e{bottom:77.877333pt;}
.yf7{bottom:78.596949pt;}
.y86{bottom:80.493333pt;}
.y67{bottom:81.437333pt;}
.y1f2{bottom:81.549333pt;}
.y149{bottom:82.061333pt;}
.y3b{bottom:82.200000pt;}
.y105{bottom:82.528000pt;}
.y37{bottom:82.890667pt;}
.y2b{bottom:84.560000pt;}
.yed{bottom:84.580397pt;}
.y8c{bottom:85.329333pt;}
.y179{bottom:86.150667pt;}
.y21{bottom:86.722667pt;}
.y9f{bottom:86.813333pt;}
.y1ac{bottom:87.061333pt;}
.y1bc{bottom:87.884000pt;}
.ycd{bottom:88.275937pt;}
.ye3{bottom:88.708713pt;}
.y102{bottom:89.048601pt;}
.yf6{bottom:89.523283pt;}
.y18a{bottom:92.346667pt;}
.y70{bottom:92.365333pt;}
.ycc{bottom:93.147887pt;}
.ye2{bottom:94.072940pt;}
.y1f1{bottom:94.168000pt;}
.y148{bottom:94.680000pt;}
.y3a{bottom:94.820000pt;}
.yf5{bottom:94.887511pt;}
.y8{bottom:95.604000pt;}
.yd6{bottom:96.148570pt;}
.y45{bottom:96.764000pt;}
.y181{bottom:97.580000pt;}
.y15c{bottom:98.116000pt;}
.y138{bottom:98.736000pt;}
.y66{bottom:99.504000pt;}
.y1ab{bottom:99.680000pt;}
.y168{bottom:100.328000pt;}
.y1d5{bottom:100.420000pt;}
.y178{bottom:100.762667pt;}
.y36{bottom:100.956000pt;}
.y5d{bottom:101.030667pt;}
.y85{bottom:101.216000pt;}
.y1ca{bottom:101.818667pt;}
.y2a{bottom:102.626667pt;}
.y8b{bottom:103.394667pt;}
.ycf{bottom:103.685726pt;}
.ye8{bottom:104.572473pt;}
.yfb{bottom:104.972159pt;}
.yd4{bottom:105.892471pt;}
.y101{bottom:106.562310pt;}
.y1f0{bottom:106.788000pt;}
.y147{bottom:107.300000pt;}
.ye9{bottom:107.471798pt;}
.y12a{bottom:107.584000pt;}
.y11{bottom:108.268000pt;}
.yd0{bottom:108.376247pt;}
.y1bb{bottom:109.934667pt;}
.y6f{bottom:110.430667pt;}
.yac{bottom:110.521333pt;}
.ye7{bottom:110.702930pt;}
.y193{bottom:110.719742pt;}
.yd5{bottom:110.764421pt;}
.y189{bottom:110.942667pt;}
.yfa{bottom:111.102616pt;}
.y1aa{bottom:112.300000pt;}
.ycb{bottom:112.548000pt;}
.y4d{bottom:113.048000pt;}
.y7{bottom:113.669333pt;}
.y177{bottom:115.374667pt;}
.y137{bottom:116.801333pt;}
.ye6{bottom:116.833387pt;}
.y84{bottom:117.156000pt;}
.yf9{bottom:117.233073pt;}
.y65{bottom:117.569333pt;}
.y44{bottom:118.814667pt;}
.yce{bottom:119.181565pt;}
.y18{bottom:119.206667pt;}
.y7a{bottom:119.361333pt;}
.y1ef{bottom:119.406667pt;}
.y29{bottom:120.692000pt;}
.y20{bottom:121.505333pt;}
.y167{bottom:122.378667pt;}
.y1d4{bottom:122.470667pt;}
.y100{bottom:122.520132pt;}
.yd1{bottom:123.010590pt;}
.y1c9{bottom:123.072000pt;}
.y5c{bottom:123.404000pt;}
.yf4{bottom:123.592381pt;}
.y8a{bottom:125.445333pt;}
.yd2{bottom:126.604957pt;}
.y146{bottom:127.086667pt;}
.y6e{bottom:128.496000pt;}
.yf3{bottom:128.956600pt;}
.y9e{bottom:128.958667pt;}
.y1ba{bottom:130.532000pt;}
.y6{bottom:131.734667pt;}
.y1ee{bottom:132.026667pt;}
.ye1{bottom:132.152470pt;}
.y1c8{bottom:132.370667pt;}
.yab{bottom:132.572000pt;}
.y83{bottom:133.096000pt;}
.y176{bottom:134.720000pt;}
.y136{bottom:134.866667pt;}
.y79{bottom:135.301333pt;}
.y188{bottom:135.650667pt;}
.y1a9{bottom:136.874667pt;}
.y43{bottom:136.881333pt;}
.y1f{bottom:137.445333pt;}
.ye0{bottom:137.516680pt;}
.yff{bottom:137.796982pt;}
.y15b{bottom:138.849333pt;}
.y5b{bottom:139.344000pt;}
.y64{bottom:139.620000pt;}
.y145{bottom:139.706667pt;}
.y17{bottom:141.257333pt;}
.y1c7{bottom:141.669333pt;}
.yf2{bottom:141.993794pt;}
.y28{bottom:142.742667pt;}
.yc4{bottom:143.168000pt;}
.yd3{bottom:143.267565pt;}
.y89{bottom:143.510667pt;}
.y195{bottom:144.123864pt;}
.yc1{bottom:144.141333pt;}
.ybe{bottom:144.430667pt;}
.y1d3{bottom:144.521333pt;}
.y1ed{bottom:144.645333pt;}
.y180{bottom:146.225333pt;}
.y6d{bottom:146.562667pt;}
.y35{bottom:146.644000pt;}
.y10{bottom:147.025333pt;}
.y166{bottom:147.086667pt;}
.yf1{bottom:147.358013pt;}
.y4c{bottom:148.456000pt;}
.y82{bottom:149.036000pt;}
.y175{bottom:149.332000pt;}
.y1c6{bottom:150.968000pt;}
.y78{bottom:151.918667pt;}
.y144{bottom:152.325333pt;}
.y1e{bottom:153.385333pt;}
.yda{bottom:153.881188pt;}
.y187{bottom:154.246667pt;}
.yaa{bottom:154.622667pt;}
.yfd{bottom:155.946971pt;}
.y1ec{bottom:157.265333pt;}
.y63{bottom:157.685333pt;}
.y5a{bottom:157.941333pt;}
.ydf{bottom:159.304813pt;}
.yd9{bottom:159.381126pt;}
.y1c5{bottom:160.266667pt;}
.y27{bottom:160.808000pt;}
.y15a{bottom:160.900000pt;}
.y1a8{bottom:161.449333pt;}
.y42{bottom:161.588000pt;}
.y1b5{bottom:162.044000pt;}
.yfc{bottom:162.077310pt;}
.y16{bottom:163.308000pt;}
.y174{bottom:163.942667pt;}
.yde{bottom:164.669023pt;}
.y34{bottom:164.709333pt;}
.y88{bottom:165.561333pt;}
.y165{bottom:165.682667pt;}
.y5{bottom:166.392000pt;}
.y4b{bottom:166.521333pt;}
.y1d2{bottom:166.572000pt;}
.y81{bottom:167.633333pt;}
.y1d{bottom:169.325333pt;}
.y1c4{bottom:169.565333pt;}
.y1b9{bottom:170.014667pt;}
.ydd{bottom:170.193713pt;}
.y143{bottom:172.113333pt;}
.y191{bottom:172.151438pt;}
.y1a7{bottom:174.068000pt;}
.y122{bottom:175.329333pt;}
.y117{bottom:175.330667pt;}
.y62{bottom:175.750667pt;}
.y77{bottom:175.829333pt;}
.y10c{bottom:175.994667pt;}
.ya9{bottom:176.673333pt;}
.y1eb{bottom:177.200000pt;}
.y9d{bottom:177.838667pt;}
.y1b4{bottom:177.984000pt;}
.y59{bottom:178.340000pt;}
.y1c3{bottom:178.862667pt;}
.y186{bottom:178.954667pt;}
.y4{bottom:179.010667pt;}
.y41{bottom:180.185333pt;}
.yca{bottom:182.566667pt;}
.y6c{bottom:182.693333pt;}
.y26{bottom:182.858667pt;}
.y159{bottom:182.950667pt;}
.yb4{bottom:183.314667pt;}
.y4a{bottom:184.586667pt;}
.y142{bottom:184.732000pt;}
.y15{bottom:185.358667pt;}
.y164{bottom:185.608000pt;}
.yf{bottom:185.781333pt;}
.y1b8{bottom:185.954667pt;}
.y17d{bottom:186.394667pt;}
.y1d1{bottom:187.518667pt;}
.y87{bottom:187.612000pt;}
.y1c{bottom:187.922667pt;}
.y1c2{bottom:188.161333pt;}
.y33{bottom:189.416000pt;}
.y80{bottom:189.684000pt;}
.y121{bottom:193.394667pt;}
.y116{bottom:193.396000pt;}
.y1b3{bottom:193.924000pt;}
.y10b{bottom:194.060000pt;}
.y17f{bottom:194.872000pt;}
.y141{bottom:197.352000pt;}
.y1c1{bottom:197.460000pt;}
.y185{bottom:197.552000pt;}
.y76{bottom:197.880000pt;}
.y58{bottom:198.057333pt;}
.y1a6{bottom:198.642667pt;}
.ya8{bottom:198.724000pt;}
.y9c{bottom:199.889333pt;}
.y6b{bottom:200.758667pt;}
.y25{bottom:200.924000pt;}
.y1b7{bottom:201.894667pt;}
.y40{bottom:202.236000pt;}
.y49{bottom:202.652000pt;}
.y1b{bottom:203.862667pt;}
.y158{bottom:205.010667pt;}
.yb3{bottom:205.294667pt;}
.y32{bottom:205.357333pt;}
.y14{bottom:207.409333pt;}
.y163{bottom:207.661333pt;}
.y3{bottom:208.980000pt;}
.y173{bottom:209.676000pt;}
.y61{bottom:209.757333pt;}
.y1b2{bottom:209.864000pt;}
.y1dd{bottom:209.978667pt;}
.y120{bottom:211.460000pt;}
.y115{bottom:211.461333pt;}
.y7f{bottom:211.734667pt;}
.y10a{bottom:212.126667pt;}
.y140{bottom:214.749333pt;}
.y1c0{bottom:215.153333pt;}
.y57{bottom:216.122667pt;}
.y1b6{bottom:217.834667pt;}
.y6a{bottom:218.824000pt;}
.y75{bottom:219.932000pt;}
.ya7{bottom:220.776000pt;}
.y31{bottom:221.297333pt;}
.y9b{bottom:221.940000pt;}
.y184{bottom:222.258667pt;}
.y1dc{bottom:222.597333pt;}
.y24{bottom:223.253333pt;}
.y1a{bottom:223.788000pt;}
.ye{bottom:224.538667pt;}
.y1d0{bottom:224.937333pt;}
.y19b{bottom:225.308000pt;}
.y1b1{bottom:225.805333pt;}
.y13f{bottom:227.369333pt;}
.y60{bottom:227.822667pt;}
.y16f{bottom:228.422667pt;}
.y135{bottom:229.438667pt;}
.y13{bottom:229.460000pt;}
.y11f{bottom:229.525333pt;}
.y114{bottom:229.528000pt;}
.y109{bottom:230.192000pt;}
.y3f{bottom:233.606667pt;}
.y48{bottom:234.161333pt;}
.y30{bottom:237.237333pt;}
.y183{bottom:238.198667pt;}
.yb1{bottom:238.649333pt;}
.y13e{bottom:239.988000pt;}
.yc8{bottom:241.553333pt;}
.y19{bottom:241.853333pt;}
.y134{bottom:242.058667pt;}
.y1cf{bottom:242.206667pt;}
.y19a{bottom:243.373333pt;}
.y17e{bottom:243.545333pt;}
.y162{bottom:245.278667pt;}
.y5f{bottom:245.888000pt;}
.y14f{bottom:246.093333pt;}
.y16e{bottom:246.488000pt;}
.y1db{bottom:247.172000pt;}
.y47{bottom:248.302667pt;}
.y3e{bottom:251.672000pt;}
.y7e{bottom:253.088000pt;}
.y133{bottom:254.677333pt;}
.ya4{bottom:254.826667pt;}
.ya6{bottom:254.830667pt;}
.y69{bottom:254.956000pt;}
.y9a{bottom:254.977333pt;}
.y2f{bottom:255.834667pt;}
.y182{bottom:256.796000pt;}
.y4e{bottom:257.476000pt;}
.y1ce{bottom:259.474667pt;}
.yc7{bottom:259.620000pt;}
.y13d{bottom:259.776000pt;}
.y1da{bottom:259.792000pt;}
.y23{bottom:261.285333pt;}
.y199{bottom:261.438667pt;}
.y74{bottom:261.949333pt;}
.yd{bottom:263.294667pt;}
.y161{bottom:263.344000pt;}
.y2{bottom:265.522667pt;}
.y46{bottom:266.369333pt;}
.y14e{bottom:268.144000pt;}
.y16d{bottom:268.538667pt;}
.y1b0{bottom:270.098667pt;}
.y13c{bottom:272.394667pt;}
.y1d9{bottom:272.410667pt;}
.y68{bottom:273.021333pt;}
.ya3{bottom:276.945333pt;}
.ya5{bottom:276.949333pt;}
.y132{bottom:277.728000pt;}
.y2e{bottom:277.885333pt;}
.y22{bottom:279.350667pt;}
.y1cc{bottom:279.926667pt;}
.y73{bottom:284.000000pt;}
.y160{bottom:284.210667pt;}
.y198{bottom:284.269333pt;}
.y1cd{bottom:284.586667pt;}
.y13b{bottom:285.014667pt;}
.y196{bottom:285.681333pt;}
.y16c{bottom:286.604000pt;}
.y18c{bottom:287.350667pt;}
.y1{bottom:288.370667pt;}
.y90{bottom:289.025333pt;}
.y14d{bottom:290.196000pt;}
.y108{bottom:291.997333pt;}
.y1d8{bottom:292.345333pt;}
.y131{bottom:296.940000pt;}
.yc{bottom:322.445333pt;}
.y1ea{bottom:2685.153053pt;}
.yb7{bottom:2689.303720pt;}
.yba{bottom:2689.593053pt;}
.ybd{bottom:2690.567720pt;}
.y126{bottom:2696.050387pt;}
.y11b{bottom:2696.054387pt;}
.y190{bottom:2696.371720pt;}
.y110{bottom:2697.382387pt;}
.y1e9{bottom:2697.773053pt;}
.y99{bottom:2699.317053pt;}
.y129{bottom:2699.719720pt;}
.y11e{bottom:2699.722387pt;}
.y157{bottom:2700.118387pt;}
.y113{bottom:2701.050387pt;}
.y1a5{bottom:2703.285053pt;}
.yf0{bottom:2705.127720pt;}
.yb6{bottom:2707.369053pt;}
.yb9{bottom:2707.658387pt;}
.ybc{bottom:2708.633053pt;}
.y1e8{bottom:2710.391720pt;}
.yae{bottom:2713.679720pt;}
.y1a4{bottom:2715.903720pt;}
.y98{bottom:2717.382387pt;}
.y125{bottom:2718.101053pt;}
.y11a{bottom:2718.105053pt;}
.y10f{bottom:2719.433053pt;}
.y156{bottom:2722.169053pt;}
.y1e7{bottom:2723.011720pt;}
.y128{bottom:2726.513053pt;}
.y11d{bottom:2726.515720pt;}
.yef{bottom:2727.178387pt;}
.y112{bottom:2727.843720pt;}
.y1a3{bottom:2728.523720pt;}
.y56{bottom:2729.917053pt;}
.yad{bottom:2731.745053pt;}
.y97{bottom:2735.447720pt;}
.y1e6{bottom:2735.630387pt;}
.y124{bottom:2740.151720pt;}
.y119{bottom:2740.155720pt;}
.y10e{bottom:2741.483720pt;}
.y155{bottom:2744.219720pt;}
.y127{bottom:2744.578387pt;}
.y11c{bottom:2744.581053pt;}
.y111{bottom:2745.909053pt;}
.y1e5{bottom:2748.250387pt;}
.yee{bottom:2749.229053pt;}
.y96{bottom:2753.514387pt;}
.y1a2{bottom:2753.762387pt;}
.y1e4{bottom:2760.869053pt;}
.y154{bottom:2764.817053pt;}
.y1a1{bottom:2766.381053pt;}
.y55{bottom:2767.731720pt;}
.y1e3{bottom:2773.489053pt;}
.y123{bottom:2774.285053pt;}
.y118{bottom:2774.287720pt;}
.y10d{bottom:2775.615720pt;}
.y1a0{bottom:2779.001053pt;}
.y1e2{bottom:2786.107720pt;}
.y54{bottom:2790.105053pt;}
.y95{bottom:2795.659720pt;}
.y1e1{bottom:2798.727720pt;}
.y19f{bottom:2803.575720pt;}
.y153{bottom:2805.550387pt;}
.y53{bottom:2806.045053pt;}
.ybb{bottom:2809.869053pt;}
.yb8{bottom:2810.842387pt;}
.yb5{bottom:2811.131720pt;}
.y1e0{bottom:2811.346387pt;}
.y1df{bottom:2823.966387pt;}
.y52{bottom:2824.642387pt;}
.y152{bottom:2827.601053pt;}
.y19e{bottom:2828.150387pt;}
.y19d{bottom:2840.769053pt;}
.y1de{bottom:2843.901053pt;}
.y94{bottom:2844.539720pt;}
.y51{bottom:2845.041053pt;}
.yc9{bottom:2849.267720pt;}
.y151{bottom:2849.651720pt;}
.y50{bottom:2864.758387pt;}
.y19c{bottom:2865.343720pt;}
.y93{bottom:2866.590387pt;}
.y150{bottom:2871.711720pt;}
.y4f{bottom:2882.823720pt;}
.y92{bottom:2888.641053pt;}
.y91{bottom:2921.678387pt;}
.y1cb{bottom:2946.627720pt;}
.y18f{bottom:2952.382387pt;}
.h1f{height:-2356.214387pt;}
.h15{height:10.028729pt;}
.h14{height:10.028731pt;}
.h18{height:13.041423pt;}
.h16{height:13.371584pt;}
.h20{height:14.682920pt;}
.h17{height:14.904507pt;}
.h7{height:22.571418pt;}
.h1e{height:23.687236pt;}
.h12{height:25.072183pt;}
.h1a{height:25.751218pt;}
.h19{height:26.279615pt;}
.h10{height:29.698778pt;}
.hf{height:29.704111pt;}
.h4{height:30.095098pt;}
.h6{height:31.341747pt;}
.h22{height:31.582850pt;}
.he{height:31.854095pt;}
.hd{height:31.859428pt;}
.h1b{height:33.857126pt;}
.h1d{height:36.366095pt;}
.h9{height:36.478095pt;}
.h8{height:36.483428pt;}
.ha{height:37.618778pt;}
.h23{height:39.478463pt;}
.h3{height:41.192762pt;}
.hb{height:43.229127pt;}
.h2{height:54.171251pt;}
.hc{height:55.272773pt;}
.h11{height:64.746796pt;}
.h5{height:80.937417pt;}
.h1c{height:93.596090pt;}
.h13{height:178.798038pt;}
.h21{height:182.577853pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w5{width:-2380.922387pt;}
.w6{width:259.269267pt;}
.w3{width:296.322767pt;}
.w4{width:370.371101pt;}
.w2{width:370.421406pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x64{left:3.719490pt;}
.x3e{left:4.994711pt;}
.x3f{left:8.766336pt;}
.xc{left:16.121333pt;}
.x31{left:18.897333pt;}
.x21{left:25.197333pt;}
.x2e{left:32.125333pt;}
.x40{left:33.799933pt;}
.x60{left:35.996000pt;}
.xd{left:38.466667pt;}
.x6b{left:40.500000pt;}
.x48{left:44.690253pt;}
.x25{left:45.589333pt;}
.x23{left:47.364000pt;}
.x61{left:48.442667pt;}
.x18{left:51.477333pt;}
.x5b{left:54.288000pt;}
.xb{left:58.070667pt;}
.x5d{left:60.474667pt;}
.x24{left:61.720000pt;}
.x42{left:62.969707pt;}
.x43{left:64.555883pt;}
.xe{left:66.886667pt;}
.x44{left:67.790431pt;}
.x45{left:69.986352pt;}
.x49{left:71.105747pt;}
.x41{left:73.322523pt;}
.x19{left:75.032000pt;}
.x47{left:77.719333pt;}
.x46{left:78.687382pt;}
.x1a{left:81.113333pt;}
.x29{left:86.032269pt;}
.x1{left:88.670667pt;}
.x5c{left:92.756000pt;}
.xf{left:95.977333pt;}
.x3c{left:106.647974pt;}
.xa{left:107.545547pt;}
.x27{left:110.028000pt;}
.x3b{left:111.643174pt;}
.x9{left:117.166667pt;}
.x39{left:118.276723pt;}
.x3d{left:119.242484pt;}
.x3a{left:121.843145pt;}
.x52{left:124.226800pt;}
.x2a{left:126.072000pt;}
.x34{left:128.665723pt;}
.x6c{left:130.433333pt;}
.x38{left:132.831677pt;}
.x35{left:135.159482pt;}
.x36{left:142.976705pt;}
.x37{left:145.490098pt;}
.x4a{left:149.975427pt;}
.x28{left:154.205333pt;}
.x6a{left:160.216000pt;}
.x51{left:165.698671pt;}
.x4d{left:170.849505pt;}
.x7{left:172.392000pt;}
.x2{left:173.286667pt;}
.x4e{left:174.567693pt;}
.x4c{left:175.954891pt;}
.x4b{left:180.139295pt;}
.x4f{left:186.150613pt;}
.x1e{left:189.586667pt;}
.x5{left:206.189333pt;}
.x33{left:215.874667pt;}
.x1f{left:218.677333pt;}
.x2f{left:222.992000pt;}
.x10{left:224.829333pt;}
.x55{left:230.199764pt;}
.x5f{left:237.601333pt;}
.x3{left:247.729333pt;}
.x67{left:251.904000pt;}
.x8{left:257.162667pt;}
.x50{left:258.468209pt;}
.x4{left:262.713333pt;}
.x56{left:263.614064pt;}
.x6{left:264.813333pt;}
.x54{left:273.943502pt;}
.x57{left:284.818189pt;}
.x65{left:314.961333pt;}
.x66{left:318.945333pt;}
.x5e{left:332.600000pt;}
.x53{left:343.505413pt;}
.x20{left:351.449333pt;}
.x11{left:367.636000pt;}
.x12{left:385.725333pt;}
.x22{left:394.328000pt;}
.x30{left:413.857333pt;}
.x58{left:473.702667pt;}
.x13{left:525.230667pt;}
.x2b{left:2698.826387pt;}
.x14{left:2704.495720pt;}
.x15{left:2718.178387pt;}
.x59{left:2720.989053pt;}
.x16{left:2733.587720pt;}
.x17{left:2762.678387pt;}
.x26{left:2776.729053pt;}
.x68{left:2826.917053pt;}
.x69{left:2847.321053pt;}
.x1b{left:2856.287720pt;}
.x32{left:2882.575720pt;}
.x1c{left:2885.378387pt;}
.x2c{left:2889.693053pt;}
.x5a{left:2928.745053pt;}
.x62{left:2981.662387pt;}
.x63{left:2985.646387pt;}
.x1d{left:3018.150387pt;}
.x2d{left:3080.558387pt;}
}




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