
    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_0931036f80fda9624e44d4b0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_24be50bf7cdcb83852353f1c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_17e04df4655af1e28d5dad43.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_4dfdd67603cb5ed43a380e5e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_4c710ace46dda207fd59ecae.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_89ba687e0bad186f444752e5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3a614105f9385cf6764bb4c5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_965bce4f43b64f8df774a215.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_15ae10aaa775ce8cd4f951b1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.929688;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_b439eb76e01813adbde39645.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_19d49e4644b64c40f81a9012.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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_7353c039b90557d188fd3db8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.902344;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_7706c42ff56e97f01e1b3ade.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-93.600000px;}
.v1{vertical-align:-77.040000px;}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-1.782000px;}
.ls6{letter-spacing:-1.008000px;}
.ls11{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.108000px;}
.ls23{letter-spacing:-0.034560px;}
.ls1a{letter-spacing:-0.018000px;}
.lsd{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.017280px;}
.ls13{letter-spacing:0.018000px;}
.lse{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls1b{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.702000px;}
.ls12{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.864000px;}
.ls14{letter-spacing:1.440000px;}
.ls24{letter-spacing:14.580000px;}
.lsa{letter-spacing:25.308000px;}
.ls9{letter-spacing:28.062720px;}
.ls15{letter-spacing:40.428000px;}
.ls1d{letter-spacing:40.572000px;}
.ls16{letter-spacing:43.308000px;}
.ls1e{letter-spacing:43.452000px;}
.ls25{letter-spacing:52.668000px;}
.ls8{letter-spacing:94.500000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-54.000000px;}
.ws4{word-spacing:-19.457280px;}
.ws6{word-spacing:-19.440000px;}
.ws7{word-spacing:-19.431360px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.364000px;}
.wsf{word-spacing:-14.202000px;}
.ws10{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.824000px;}
.ws12{word-spacing:-13.716000px;}
.wsd{word-spacing:-13.626000px;}
.wsa{word-spacing:-13.608000px;}
.wsc{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.482000px;}
.wse{word-spacing:-13.392000px;}
.wsb{word-spacing:-13.284000px;}
.ws16{word-spacing:-13.140000px;}
.ws15{word-spacing:-11.718000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._c{width:2.196000px;}
._e{width:3.222912px;}
._d{width:4.949760px;}
._6{width:6.513840px;}
._8{width:7.714800px;}
._7{width:9.327840px;}
._a{width:10.380576px;}
._9{width:11.801088px;}
._b{width:13.371792px;}
._16{width:14.526000px;}
._17{width:15.876000px;}
._10{width:16.985760px;}
._f{width:17.987760px;}
._11{width:19.077360px;}
._13{width:20.320560px;}
._12{width:21.505680px;}
._24{width:22.662000px;}
._1f{width:24.354000px;}
._1c{width:25.866000px;}
._1d{width:27.048000px;}
._23{width:28.194000px;}
._15{width:29.592000px;}
._1e{width:30.618000px;}
._22{width:31.692000px;}
._25{width:32.886000px;}
._1b{width:34.584000px;}
._1a{width:35.856000px;}
._2d{width:37.230000px;}
._35{width:38.346000px;}
._27{width:39.636000px;}
._26{width:41.040000px;}
._28{width:42.042000px;}
._18{width:44.712000px;}
._19{width:45.900000px;}
._31{width:47.232000px;}
._32{width:48.600000px;}
._14{width:52.758000px;}
._37{width:57.294000px;}
._38{width:58.452000px;}
._34{width:59.904000px;}
._2a{width:61.182000px;}
._29{width:62.262000px;}
._30{width:65.664000px;}
._2f{width:66.798000px;}
._2e{width:74.727360px;}
._3{width:78.192000px;}
._2b{width:79.920000px;}
._2c{width:81.294000px;}
._33{width:89.640000px;}
._39{width:93.762000px;}
._20{width:99.576000px;}
._21{width:100.764000px;}
._3c{width:149.634000px;}
._4{width:157.860000px;}
._36{width:166.095360px;}
._3a{width:185.328000px;}
._3b{width:186.408000px;}
._2{width:1032.240000px;}
._5{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y99{bottom:-14.070000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y145{bottom:5.565000px;}
.y123{bottom:5.580000px;}
.y116{bottom:5.625000px;}
.y155{bottom:5.760000px;}
.y130{bottom:6.660000px;}
.y13d{bottom:6.825000px;}
.y10d{bottom:10.080000px;}
.y15b{bottom:14.580000px;}
.y4{bottom:15.660000px;}
.y147{bottom:17.985000px;}
.y118{bottom:18.045000px;}
.y2{bottom:18.900000px;}
.y132{bottom:19.080000px;}
.y158{bottom:23.400000px;}
.y154{bottom:23.580000px;}
.y144{bottom:24.645000px;}
.y122{bottom:24.660000px;}
.y115{bottom:24.705000px;}
.y13c{bottom:26.805000px;}
.y12f{bottom:26.820000px;}
.y14c{bottom:28.080000px;}
.y15a{bottom:32.400000px;}
.y97{bottom:33.630000px;}
.y140{bottom:35.805000px;}
.y111{bottom:35.865000px;}
.y12b{bottom:36.900000px;}
.y5{bottom:39.780000px;}
.y159{bottom:41.220000px;}
.y15d{bottom:41.400000px;}
.y153{bottom:42.660000px;}
.y121{bottom:43.560000px;}
.y114{bottom:43.605000px;}
.y141{bottom:44.625000px;}
.y143{bottom:44.805000px;}
.y14b{bottom:44.820000px;}
.y10f{bottom:44.865000px;}
.y37{bottom:45.180000px;}
.y125{bottom:45.900000px;}
.y13b{bottom:46.965000px;}
.y12e{bottom:46.980000px;}
.y146{bottom:53.625000px;}
.y110{bottom:53.685000px;}
.y131{bottom:54.720000px;}
.y11c{bottom:54.900000px;}
.y136{bottom:55.965000px;}
.y1{bottom:60.660000px;}
.y120{bottom:61.380000px;}
.y152{bottom:61.560000px;}
.y129{bottom:62.640000px;}
.y113{bottom:62.685000px;}
.y11a{bottom:63.720000px;}
.y14f{bottom:63.900000px;}
.y134{bottom:64.785000px;}
.y142{bottom:64.965000px;}
.y14a{bottom:64.980000px;}
.y36{bottom:65.010000px;}
.y13a{bottom:66.045000px;}
.y12d{bottom:67.140000px;}
.y117{bottom:71.685000px;}
.y11b{bottom:72.720000px;}
.y12a{bottom:72.750000px;}
.y135{bottom:73.785000px;}
.y11f{bottom:80.460000px;}
.y151{bottom:80.640000px;}
.y124{bottom:81.540000px;}
.y156{bottom:81.720000px;}
.y94{bottom:82.230000px;}
.y13e{bottom:82.605000px;}
.y128{bottom:82.830000px;}
.y112{bottom:82.845000px;}
.y139{bottom:84.945000px;}
.y35{bottom:84.990000px;}
.y149{bottom:85.170000px;}
.y11e{bottom:100.620000px;}
.y150{bottom:100.800000px;}
.y93{bottom:102.030000px;}
.y127{bottom:102.990000px;}
.y138{bottom:104.070000px;}
.y34{bottom:104.790000px;}
.y6b{bottom:111.240000px;}
.y1e9{bottom:116.820000px;}
.y17c{bottom:119.700000px;}
.y11d{bottom:120.780000px;}
.y92{bottom:121.830000px;}
.y195{bottom:122.040000px;}
.y137{bottom:122.970000px;}
.y148{bottom:124.200000px;}
.y33{bottom:124.590000px;}
.y1c9{bottom:124.740000px;}
.y8d{bottom:126.900000px;}
.y28{bottom:127.800000px;}
.y6a{bottom:129.060000px;}
.yd0{bottom:133.380000px;}
.y1e8{bottom:134.640000px;}
.y17b{bottom:137.520000px;}
.y194{bottom:139.860000px;}
.y106{bottom:140.940000px;}
.y91{bottom:141.840000px;}
.y1c8{bottom:142.560000px;}
.y32{bottom:144.390000px;}
.y8c{bottom:144.720000px;}
.y69{bottom:146.880000px;}
.ycf{bottom:151.200000px;}
.y1e7{bottom:152.460000px;}
.y17a{bottom:155.520000px;}
.y193{bottom:157.680000px;}
.y105{bottom:158.760000px;}
.y1c7{bottom:160.380000px;}
.y90{bottom:161.640000px;}
.y8b{bottom:162.540000px;}
.y29{bottom:164.520000px;}
.y68{bottom:164.700000px;}
.y1e6{bottom:170.280000px;}
.yce{bottom:170.820000px;}
.y179{bottom:173.340000px;}
.y192{bottom:175.500000px;}
.y104{bottom:176.580000px;}
.y1c6{bottom:177.840000px;}
.y8a{bottom:180.360000px;}
.y27{bottom:180.540000px;}
.y8f{bottom:181.440000px;}
.y67{bottom:182.520000px;}
.y1e5{bottom:188.280000px;}
.y38{bottom:189.720000px;}
.y178{bottom:191.160000px;}
.y31{bottom:193.170000px;}
.y191{bottom:193.500000px;}
.y103{bottom:194.400000px;}
.y1c5{bottom:195.840000px;}
.ycd{bottom:198.180000px;}
.y89{bottom:198.360000px;}
.y224{bottom:199.980000px;}
.y66{bottom:200.520000px;}
.y177{bottom:209.010000px;}
.y190{bottom:211.350000px;}
.y30{bottom:212.970000px;}
.y1e4{bottom:215.130000px;}
.ycc{bottom:216.210000px;}
.y88{bottom:217.290000px;}
.y65{bottom:218.370000px;}
.y102{bottom:221.430000px;}
.y1c4{bottom:223.050000px;}
.y18f{bottom:229.170000px;}
.y2f{bottom:232.770000px;}
.y1e3{bottom:232.950000px;}
.y26{bottom:233.490000px;}
.ycb{bottom:234.030000px;}
.y176{bottom:235.830000px;}
.y64{bottom:236.190000px;}
.y87{bottom:236.370000px;}
.y101{bottom:239.250000px;}
.y1c3{bottom:240.870000px;}
.y13f{bottom:245.925000px;}
.y18e{bottom:246.990000px;}
.y1e2{bottom:250.770000px;}
.yca{bottom:251.850000px;}
.y2e{bottom:252.570000px;}
.y223{bottom:252.750000px;}
.y175{bottom:253.830000px;}
.y63{bottom:254.010000px;}
.y86{bottom:254.190000px;}
.y100{bottom:257.070000px;}
.y1c2{bottom:258.690000px;}
.y25{bottom:268.230000px;}
.y1e1{bottom:268.590000px;}
.yc9{bottom:269.310000px;}
.y174{bottom:271.650000px;}
.y62{bottom:271.830000px;}
.y85{bottom:272.010000px;}
.y2d{bottom:272.370000px;}
.y18d{bottom:273.810000px;}
.yff{bottom:274.890000px;}
.y1c1{bottom:276.510000px;}
.y1e0{bottom:286.410000px;}
.y173{bottom:289.470000px;}
.y84{bottom:289.830000px;}
.y18c{bottom:291.810000px;}
.y2c{bottom:292.395000px;}
.yfe{bottom:292.710000px;}
.y1c0{bottom:294.510000px;}
.yc8{bottom:296.490000px;}
.y61{bottom:298.830000px;}
.y222{bottom:301.890000px;}
.y23{bottom:302.970000px;}
.y1df{bottom:304.410000px;}
.y83{bottom:307.650000px;}
.y18b{bottom:309.270000px;}
.yfd{bottom:310.530000px;}
.y2b{bottom:312.195000px;}
.y1bf{bottom:312.330000px;}
.yc7{bottom:314.490000px;}
.y172{bottom:316.290000px;}
.y60{bottom:316.650000px;}
.y1de{bottom:322.230000px;}
.y209{bottom:322.410000px;}
.y82{bottom:325.650000px;}
.y1be{bottom:330.150000px;}
.yc6{bottom:332.310000px;}
.y171{bottom:334.110000px;}
.y5f{bottom:334.470000px;}
.y18a{bottom:336.450000px;}
.yfc{bottom:337.530000px;}
.y22{bottom:337.710000px;}
.y1dd{bottom:340.050000px;}
.y208{bottom:340.410000px;}
.y2a{bottom:342.435000px;}
.y81{bottom:343.110000px;}
.y24{bottom:343.290000px;}
.y133{bottom:347.445000px;}
.y1bd{bottom:347.970000px;}
.yc5{bottom:350.130000px;}
.y5e{bottom:352.290000px;}
.y189{bottom:354.270000px;}
.yfb{bottom:355.350000px;}
.y1dc{bottom:357.870000px;}
.y207{bottom:358.230000px;}
.y170{bottom:360.930000px;}
.y1bc{bottom:365.790000px;}
.yc4{bottom:367.950000px;}
.y5d{bottom:370.110000px;}
.y80{bottom:370.290000px;}
.y188{bottom:372.090000px;}
.y21{bottom:372.630000px;}
.yfa{bottom:373.170000px;}
.y1db{bottom:375.690000px;}
.y206{bottom:376.050000px;}
.y16f{bottom:378.930000px;}
.yc3{bottom:385.770000px;}
.y5c{bottom:387.930000px;}
.y7f{bottom:388.110000px;}
.y187{bottom:389.910000px;}
.yf9{bottom:390.990000px;}
.y1bb{bottom:392.610000px;}
.y1da{bottom:393.690000px;}
.y205{bottom:393.870000px;}
.yc2{bottom:403.590000px;}
.y1f{bottom:405.390000px;}
.y16e{bottom:405.750000px;}
.y5b{bottom:405.930000px;}
.y186{bottom:407.910000px;}
.y1ba{bottom:410.610000px;}
.y204{bottom:411.690000px;}
.y1d9{bottom:413.490000px;}
.yf8{bottom:417.810000px;}
.y16d{bottom:423.570000px;}
.y5a{bottom:423.750000px;}
.y185{bottom:425.730000px;}
.y1b9{bottom:428.430000px;}
.y203{bottom:429.690000px;}
.yc1{bottom:430.590000px;}
.y1e{bottom:432.210000px;}
.yf7{bottom:435.810000px;}
.y16c{bottom:441.435000px;}
.y59{bottom:441.615000px;}
.y7e{bottom:441.795000px;}
.y221{bottom:444.675000px;}
.y184{bottom:445.575000px;}
.y1b8{bottom:446.295000px;}
.y202{bottom:447.555000px;}
.yc0{bottom:448.455000px;}
.yf6{bottom:453.675000px;}
.y1d{bottom:459.075000px;}
.y16b{bottom:459.255000px;}
.y58{bottom:459.435000px;}
.y7d{bottom:459.615000px;}
.y1b7{bottom:464.115000px;}
.y201{bottom:465.375000px;}
.ybf{bottom:466.275000px;}
.y183{bottom:471.315000px;}
.yf5{bottom:471.495000px;}
.y57{bottom:477.255000px;}
.y7c{bottom:477.435000px;}
.y1b6{bottom:481.575000px;}
.y1d8{bottom:481.935000px;}
.y200{bottom:483.195000px;}
.ybe{bottom:484.095000px;}
.y1c{bottom:485.895000px;}
.y16a{bottom:486.075000px;}
.y7b{bottom:495.255000px;}
.y56{bottom:496.335000px;}
.yf4{bottom:498.315000px;}
.y1b5{bottom:499.575000px;}
.y1d7{bottom:499.935000px;}
.y1ff{bottom:501.015000px;}
.ybd{bottom:501.915000px;}
.y169{bottom:504.075000px;}
.y12c{bottom:507.135000px;}
.y1b{bottom:512.895000px;}
.y7a{bottom:513.075000px;}
.yf3{bottom:516.135000px;}
.y55{bottom:516.495000px;}
.y1d6{bottom:517.755000px;}
.y1fe{bottom:518.835000px;}
.ybc{bottom:519.915000px;}
.y182{bottom:522.075000px;}
.y220{bottom:525.135000px;}
.y1b4{bottom:526.755000px;}
.y168{bottom:530.895000px;}
.y79{bottom:531.075000px;}
.yf2{bottom:533.955000px;}
.y54{bottom:535.395000px;}
.y1d5{bottom:535.575000px;}
.y1fd{bottom:536.835000px;}
.y1a{bottom:539.355000px;}
.y20{bottom:539.715000px;}
.y181{bottom:539.895000px;}
.y1b3{bottom:544.575000px;}
.ybb{bottom:546.735000px;}
.y78{bottom:548.895000px;}
.yf1{bottom:551.955000px;}
.y21f{bottom:552.135000px;}
.y53{bottom:554.475000px;}
.y1fc{bottom:554.655000px;}
.y167{bottom:557.715000px;}
.y1b2{bottom:562.395000px;}
.yba{bottom:564.555000px;}
.y77{bottom:566.715000px;}
.y19{bottom:567.795000px;}
.y1fb{bottom:572.475000px;}
.y52{bottom:574.635000px;}
.y166{bottom:575.535000px;}
.yf0{bottom:578.775000px;}
.y21e{bottom:578.955000px;}
.y1b1{bottom:580.215000px;}
.yb9{bottom:582.375000px;}
.y76{bottom:584.535000px;}
.y1fa{bottom:590.295000px;}
.y165{bottom:593.355000px;}
.y51{bottom:593.535000px;}
.y18{bottom:594.075000px;}
.yef{bottom:596.595000px;}
.y1b0{bottom:598.035000px;}
.yb8{bottom:600.195000px;}
.y75{bottom:602.355000px;}
.y21d{bottom:605.775000px;}
.y1f9{bottom:608.115000px;}
.y126{bottom:610.815000px;}
.y50{bottom:611.355000px;}
.yee{bottom:614.415000px;}
.y1af{bottom:616.035000px;}
.yb7{bottom:618.015000px;}
.y164{bottom:620.355000px;}
.y17{bottom:624.855000px;}
.y1f8{bottom:626.115000px;}
.y4f{bottom:629.175000px;}
.yed{bottom:632.235000px;}
.y21c{bottom:632.595000px;}
.y1ae{bottom:633.855000px;}
.y180{bottom:638.175000px;}
.y1f7{bottom:643.935000px;}
.yb6{bottom:645.015000px;}
.y4e{bottom:647.175000px;}
.yec{bottom:649.875000px;}
.y1ad{bottom:651.675000px;}
.y17f{bottom:655.995000px;}
.y21b{bottom:659.415000px;}
.y1f6{bottom:661.755000px;}
.yb5{bottom:662.835000px;}
.y4d{bottom:664.995000px;}
.y1ac{bottom:669.495000px;}
.y16{bottom:673.815000px;}
.yeb{bottom:677.085000px;}
.y1d4{bottom:678.525000px;}
.yb4{bottom:680.685000px;}
.y1f5{bottom:681.585000px;}
.y4c{bottom:682.845000px;}
.y21a{bottom:686.445000px;}
.y163{bottom:691.845000px;}
.yea{bottom:694.905000px;}
.y1ab{bottom:696.345000px;}
.yb3{bottom:698.505000px;}
.y74{bottom:700.665000px;}
.y4b{bottom:709.665000px;}
.ye9{bottom:712.725000px;}
.y219{bottom:713.265000px;}
.y1aa{bottom:714.165000px;}
.y1f4{bottom:714.345000px;}
.yb2{bottom:715.965000px;}
.y73{bottom:718.485000px;}
.y15{bottom:722.265000px;}
.y4a{bottom:727.485000px;}
.ye8{bottom:730.545000px;}
.y1a9{bottom:732.165000px;}
.yb1{bottom:733.965000px;}
.y72{bottom:736.485000px;}
.y218{bottom:740.085000px;}
.y49{bottom:745.485000px;}
.ye7{bottom:748.365000px;}
.y1a8{bottom:749.625000px;}
.y1d3{bottom:749.985000px;}
.y1f3{bottom:750.165000px;}
.y119{bottom:750.345000px;}
.y71{bottom:754.305000px;}
.y162{bottom:754.485000px;}
.yb0{bottom:761.145000px;}
.y48{bottom:763.305000px;}
.ye6{bottom:766.365000px;}
.y217{bottom:766.905000px;}
.y1a7{bottom:767.445000px;}
.y1d2{bottom:767.805000px;}
.y1f2{bottom:767.985000px;}
.y70{bottom:772.125000px;}
.y161{bottom:772.305000px;}
.y14{bottom:772.845000px;}
.yaf{bottom:778.965000px;}
.y47{bottom:781.125000px;}
.y1d1{bottom:785.625000px;}
.y1f1{bottom:785.805000px;}
.ye5{bottom:786.165000px;}
.y6f{bottom:789.945000px;}
.y160{bottom:790.125000px;}
.y216{bottom:793.725000px;}
.y1a6{bottom:794.625000px;}
.yae{bottom:796.785000px;}
.y46{bottom:798.945000px;}
.y13{bottom:800.565000px;}
.y1f0{bottom:803.625000px;}
.y15f{bottom:807.585000px;}
.y6e{bottom:807.765000px;}
.y17e{bottom:807.945000px;}
.ye4{bottom:811.905000px;}
.y1a5{bottom:812.445000px;}
.yad{bottom:814.605000px;}
.y45{bottom:816.765000px;}
.y215{bottom:820.545000px;}
.y1ef{bottom:821.445000px;}
.y6d{bottom:825.225000px;}
.y15e{bottom:825.405000px;}
.y17d{bottom:825.765000px;}
.y12{bottom:828.465000px;}
.y1a4{bottom:830.085000px;}
.y1d0{bottom:830.445000px;}
.yac{bottom:832.425000px;}
.y44{bottom:834.585000px;}
.ye3{bottom:837.645000px;}
.y1ee{bottom:839.445000px;}
.y214{bottom:847.545000px;}
.y1cf{bottom:848.265000px;}
.yab{bottom:850.425000px;}
.y43{bottom:852.585000px;}
.y1a3{bottom:857.265000px;}
.y15c{bottom:859.065000px;}
.y1ce{bottom:866.085000px;}
.yaa{bottom:868.245000px;}
.y42{bottom:870.405000px;}
.ye2{bottom:870.585000px;}
.y213{bottom:874.365000px;}
.y11{bottom:874.545000px;}
.y1a2{bottom:875.085000px;}
.y1cd{bottom:883.905000px;}
.ya9{bottom:886.065000px;}
.y41{bottom:888.225000px;}
.ye1{bottom:888.405000px;}
.y1a1{bottom:892.905000px;}
.y10{bottom:899.745000px;}
.y212{bottom:901.185000px;}
.y1cc{bottom:901.725000px;}
.ya8{bottom:903.885000px;}
.y40{bottom:906.045000px;}
.ye0{bottom:906.225000px;}
.y10e{bottom:907.665000px;}
.y1a0{bottom:910.770000px;}
.yf{bottom:919.590000px;}
.ya7{bottom:921.750000px;}
.y3f{bottom:923.910000px;}
.ydf{bottom:924.090000px;}
.y211{bottom:928.050000px;}
.y19f{bottom:928.590000px;}
.y157{bottom:935.970000px;}
.ye{bottom:939.570000px;}
.y3e{bottom:941.550000px;}
.y6c{bottom:941.910000px;}
.y19e{bottom:946.590000px;}
.yde{bottom:950.910000px;}
.y210{bottom:954.870000px;}
.y1ed{bottom:955.590000px;}
.ya6{bottom:957.570000px;}
.yd{bottom:959.010000px;}
.y19d{bottom:964.410000px;}
.ydd{bottom:968.730000px;}
.y1ec{bottom:973.410000px;}
.ya5{bottom:975.390000px;}
.yc{bottom:979.170000px;}
.y1cb{bottom:981.870000px;}
.y19c{bottom:982.230000px;}
.y3d{bottom:985.110000px;}
.ydc{bottom:986.730000px;}
.y1eb{bottom:991.230000px;}
.ya4{bottom:992.850000px;}
.y1ca{bottom:999.690000px;}
.y19b{bottom:1000.050000px;}
.ydb{bottom:1004.550000px;}
.y20f{bottom:1008.690000px;}
.y1ea{bottom:1009.050000px;}
.y8e{bottom:1012.320000px;}
.y14e{bottom:1012.650000px;}
.ya3{bottom:1013.010000px;}
.yb{bottom:1019.130000px;}
.yda{bottom:1022.370000px;}
.y98{bottom:1025.970000px;}
.y19a{bottom:1026.870000px;}
.y10c{bottom:1027.050000px;}
.ya{bottom:1031.190000px;}
.y3c{bottom:1032.270000px;}
.y20e{bottom:1035.510000px;}
.ya2{bottom:1038.930000px;}
.yd9{bottom:1040.190000px;}
.y9{bottom:1043.250000px;}
.y199{bottom:1044.870000px;}
.y96{bottom:1045.950000px;}
.y8{bottom:1055.310000px;}
.yd8{bottom:1059.270000px;}
.y20d{bottom:1062.330000px;}
.y198{bottom:1062.690000px;}
.y7{bottom:1069.890000px;}
.y10b{bottom:1071.150000px;}
.ya1{bottom:1071.690000px;}
.y95{bottom:1074.750000px;}
.y197{bottom:1080.510000px;}
.y3b{bottom:1085.010000px;}
.yd7{bottom:1087.170000px;}
.y20c{bottom:1089.150000px;}
.ya0{bottom:1089.510000px;}
.y6{bottom:1095.450000px;}
.y109{bottom:1098.330000px;}
.yd6{bottom:1104.990000px;}
.y9f{bottom:1107.330000px;}
.y20b{bottom:1115.970000px;}
.y108{bottom:1116.150000px;}
.yd5{bottom:1122.990000px;}
.y9e{bottom:1125.150000px;}
.y107{bottom:1133.970000px;}
.y3a{bottom:1137.930000px;}
.yd4{bottom:1140.810000px;}
.y9d{bottom:1142.970000px;}
.y196{bottom:1152.000000px;}
.yd3{bottom:1158.660000px;}
.y9c{bottom:1161.000000px;}
.y20a{bottom:1169.820000px;}
.y14d{bottom:1170.180000px;}
.yd2{bottom:1176.480000px;}
.y9b{bottom:1178.820000px;}
.y39{bottom:1190.700000px;}
.yd1{bottom:1195.560000px;}
.y10a{bottom:1196.280000px;}
.y9a{bottom:1196.640000px;}
.h21{height:26.640000px;}
.h19{height:26.820000px;}
.h2{height:31.135500px;}
.h14{height:37.705078px;}
.h7{height:40.985156px;}
.h12{height:49.255313px;}
.h11{height:49.374000px;}
.h26{height:52.971680px;}
.h3{height:52.998047px;}
.h23{height:53.460000px;}
.h24{height:53.676000px;}
.hd{height:54.421875px;}
.h18{height:54.864844px;}
.h25{height:55.503491px;}
.h13{height:56.214844px;}
.h10{height:58.621992px;}
.h8{height:58.651172px;}
.h16{height:58.763250px;}
.h9{height:60.226875px;}
.hc{height:65.010937px;}
.h4{height:65.884219px;}
.hb{height:66.757500px;}
.h1f{height:78.285000px;}
.he{height:78.367500px;}
.h1d{height:80.445000px;}
.h17{height:80.949375px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.h6{height:90.703125px;}
.h1a{height:96.156000px;}
.h20{height:98.496000px;}
.h1c{height:116.310000px;}
.h1b{height:134.100000px;}
.h22{height:134.122500px;}
.h1e{height:136.281000px;}
.h15{height:204.120000px;}
.hf{height:369.720000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:59.422500px;}
.w3{width:80.310000px;}
.w6{width:186.690000px;}
.w8{width:221.460000px;}
.w9{width:221.820000px;}
.w7{width:309.630000px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x42{left:4.170000px;}
.x3{left:8.635500px;}
.x13{left:10.800000px;}
.x3f{left:14.035500px;}
.x21{left:17.455500px;}
.x37{left:19.080000px;}
.x33{left:20.190000px;}
.x30{left:21.270000px;}
.x2e{left:23.220000px;}
.x2d{left:24.660000px;}
.x28{left:26.670000px;}
.x41{left:28.110000px;}
.x25{left:29.160000px;}
.x2f{left:30.600000px;}
.x2b{left:32.040000px;}
.x22{left:33.834000px;}
.x3b{left:35.130000px;}
.x38{left:36.210000px;}
.x35{left:37.260000px;}
.x12{left:38.340000px;}
.x29{left:39.990000px;}
.x20{left:41.430000px;}
.x3e{left:43.590000px;}
.x1{left:45.364500px;}
.x23{left:46.434000px;}
.x26{left:48.060000px;}
.x14{left:49.140000px;}
.x2c{left:51.480000px;}
.x5{left:54.000000px;}
.x1b{left:56.884500px;}
.x24{left:58.320000px;}
.x40{left:62.640000px;}
.x27{left:64.260000px;}
.x31{left:65.334000px;}
.x43{left:67.500000px;}
.x3c{left:68.940000px;}
.xc{left:70.920000px;}
.x36{left:72.540000px;}
.x1d{left:74.694000px;}
.x39{left:79.770000px;}
.x15{left:81.000000px;}
.x3d{left:84.240000px;}
.x2a{left:85.350000px;}
.x32{left:99.180000px;}
.x34{left:100.650000px;}
.x17{left:108.036000px;}
.xb{left:111.096000px;}
.x1c{left:116.676000px;}
.x3a{left:120.960000px;}
.x2{left:222.370500px;}
.xf{left:275.835000px;}
.x8{left:281.775000px;}
.x6{left:285.735000px;}
.x9{left:297.795000px;}
.x1e{left:304.275000px;}
.x10{left:314.355000px;}
.x7{left:364.395000px;}
.xa{left:378.795000px;}
.xe{left:390.315000px;}
.xd{left:402.195000px;}
.x11{left:473.505000px;}
.x19{left:487.005000px;}
.x16{left:500.505000px;}
.x1a{left:514.005000px;}
.x18{left:527.505000px;}
.x1f{left:614.820000px;}
.x4{left:767.490000px;}
@media print{
.v2{vertical-align:-83.200000pt;}
.v1{vertical-align:-68.480000pt;}
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-1.584000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls11{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.096000pt;}
.ls23{letter-spacing:-0.030720pt;}
.ls1a{letter-spacing:-0.016000pt;}
.lsd{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.015360pt;}
.ls13{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.624000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.768000pt;}
.ls14{letter-spacing:1.280000pt;}
.ls24{letter-spacing:12.960000pt;}
.lsa{letter-spacing:22.496000pt;}
.ls9{letter-spacing:24.944640pt;}
.ls15{letter-spacing:35.936000pt;}
.ls1d{letter-spacing:36.064000pt;}
.ls16{letter-spacing:38.496000pt;}
.ls1e{letter-spacing:38.624000pt;}
.ls25{letter-spacing:46.816000pt;}
.ls8{letter-spacing:84.000000pt;}
.ws9{word-spacing:-48.000000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws6{word-spacing:-17.280000pt;}
.ws7{word-spacing:-17.272320pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws14{word-spacing:-12.768000pt;}
.wsf{word-spacing:-12.624000pt;}
.ws10{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.288000pt;}
.ws12{word-spacing:-12.192000pt;}
.wsd{word-spacing:-12.112000pt;}
.wsa{word-spacing:-12.096000pt;}
.wsc{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.984000pt;}
.wse{word-spacing:-11.904000pt;}
.wsb{word-spacing:-11.808000pt;}
.ws16{word-spacing:-11.680000pt;}
.ws15{word-spacing:-10.416000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._c{width:1.952000pt;}
._e{width:2.864811pt;}
._d{width:4.399787pt;}
._6{width:5.790080pt;}
._8{width:6.857600pt;}
._7{width:8.291413pt;}
._a{width:9.227179pt;}
._9{width:10.489856pt;}
._b{width:11.886037pt;}
._16{width:12.912000pt;}
._17{width:14.112000pt;}
._10{width:15.098453pt;}
._f{width:15.989120pt;}
._11{width:16.957653pt;}
._13{width:18.062720pt;}
._12{width:19.116160pt;}
._24{width:20.144000pt;}
._1f{width:21.648000pt;}
._1c{width:22.992000pt;}
._1d{width:24.042667pt;}
._23{width:25.061333pt;}
._15{width:26.304000pt;}
._1e{width:27.216000pt;}
._22{width:28.170667pt;}
._25{width:29.232000pt;}
._1b{width:30.741333pt;}
._1a{width:31.872000pt;}
._2d{width:33.093333pt;}
._35{width:34.085333pt;}
._27{width:35.232000pt;}
._26{width:36.480000pt;}
._28{width:37.370667pt;}
._18{width:39.744000pt;}
._19{width:40.800000pt;}
._31{width:41.984000pt;}
._32{width:43.200000pt;}
._14{width:46.896000pt;}
._37{width:50.928000pt;}
._38{width:51.957333pt;}
._34{width:53.248000pt;}
._2a{width:54.384000pt;}
._29{width:55.344000pt;}
._30{width:58.368000pt;}
._2f{width:59.376000pt;}
._2e{width:66.424320pt;}
._3{width:69.504000pt;}
._2b{width:71.040000pt;}
._2c{width:72.261333pt;}
._33{width:79.680000pt;}
._39{width:83.344000pt;}
._20{width:88.512000pt;}
._21{width:89.568000pt;}
._3c{width:133.008000pt;}
._4{width:140.320000pt;}
._36{width:147.640320pt;}
._3a{width:164.736000pt;}
._3b{width:165.696000pt;}
._2{width:917.546667pt;}
._5{width:1088.266667pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y99{bottom:-12.506667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y145{bottom:4.946667pt;}
.y123{bottom:4.960000pt;}
.y116{bottom:5.000000pt;}
.y155{bottom:5.120000pt;}
.y130{bottom:5.920000pt;}
.y13d{bottom:6.066667pt;}
.y10d{bottom:8.960000pt;}
.y15b{bottom:12.960000pt;}
.y4{bottom:13.920000pt;}
.y147{bottom:15.986667pt;}
.y118{bottom:16.040000pt;}
.y2{bottom:16.800000pt;}
.y132{bottom:16.960000pt;}
.y158{bottom:20.800000pt;}
.y154{bottom:20.960000pt;}
.y144{bottom:21.906667pt;}
.y122{bottom:21.920000pt;}
.y115{bottom:21.960000pt;}
.y13c{bottom:23.826667pt;}
.y12f{bottom:23.840000pt;}
.y14c{bottom:24.960000pt;}
.y15a{bottom:28.800000pt;}
.y97{bottom:29.893333pt;}
.y140{bottom:31.826667pt;}
.y111{bottom:31.880000pt;}
.y12b{bottom:32.800000pt;}
.y5{bottom:35.360000pt;}
.y159{bottom:36.640000pt;}
.y15d{bottom:36.800000pt;}
.y153{bottom:37.920000pt;}
.y121{bottom:38.720000pt;}
.y114{bottom:38.760000pt;}
.y141{bottom:39.666667pt;}
.y143{bottom:39.826667pt;}
.y14b{bottom:39.840000pt;}
.y10f{bottom:39.880000pt;}
.y37{bottom:40.160000pt;}
.y125{bottom:40.800000pt;}
.y13b{bottom:41.746667pt;}
.y12e{bottom:41.760000pt;}
.y146{bottom:47.666667pt;}
.y110{bottom:47.720000pt;}
.y131{bottom:48.640000pt;}
.y11c{bottom:48.800000pt;}
.y136{bottom:49.746667pt;}
.y1{bottom:53.920000pt;}
.y120{bottom:54.560000pt;}
.y152{bottom:54.720000pt;}
.y129{bottom:55.680000pt;}
.y113{bottom:55.720000pt;}
.y11a{bottom:56.640000pt;}
.y14f{bottom:56.800000pt;}
.y134{bottom:57.586667pt;}
.y142{bottom:57.746667pt;}
.y14a{bottom:57.760000pt;}
.y36{bottom:57.786667pt;}
.y13a{bottom:58.706667pt;}
.y12d{bottom:59.680000pt;}
.y117{bottom:63.720000pt;}
.y11b{bottom:64.640000pt;}
.y12a{bottom:64.666667pt;}
.y135{bottom:65.586667pt;}
.y11f{bottom:71.520000pt;}
.y151{bottom:71.680000pt;}
.y124{bottom:72.480000pt;}
.y156{bottom:72.640000pt;}
.y94{bottom:73.093333pt;}
.y13e{bottom:73.426667pt;}
.y128{bottom:73.626667pt;}
.y112{bottom:73.640000pt;}
.y139{bottom:75.506667pt;}
.y35{bottom:75.546667pt;}
.y149{bottom:75.706667pt;}
.y11e{bottom:89.440000pt;}
.y150{bottom:89.600000pt;}
.y93{bottom:90.693333pt;}
.y127{bottom:91.546667pt;}
.y138{bottom:92.506667pt;}
.y34{bottom:93.146667pt;}
.y6b{bottom:98.880000pt;}
.y1e9{bottom:103.840000pt;}
.y17c{bottom:106.400000pt;}
.y11d{bottom:107.360000pt;}
.y92{bottom:108.293333pt;}
.y195{bottom:108.480000pt;}
.y137{bottom:109.306667pt;}
.y148{bottom:110.400000pt;}
.y33{bottom:110.746667pt;}
.y1c9{bottom:110.880000pt;}
.y8d{bottom:112.800000pt;}
.y28{bottom:113.600000pt;}
.y6a{bottom:114.720000pt;}
.yd0{bottom:118.560000pt;}
.y1e8{bottom:119.680000pt;}
.y17b{bottom:122.240000pt;}
.y194{bottom:124.320000pt;}
.y106{bottom:125.280000pt;}
.y91{bottom:126.080000pt;}
.y1c8{bottom:126.720000pt;}
.y32{bottom:128.346667pt;}
.y8c{bottom:128.640000pt;}
.y69{bottom:130.560000pt;}
.ycf{bottom:134.400000pt;}
.y1e7{bottom:135.520000pt;}
.y17a{bottom:138.240000pt;}
.y193{bottom:140.160000pt;}
.y105{bottom:141.120000pt;}
.y1c7{bottom:142.560000pt;}
.y90{bottom:143.680000pt;}
.y8b{bottom:144.480000pt;}
.y29{bottom:146.240000pt;}
.y68{bottom:146.400000pt;}
.y1e6{bottom:151.360000pt;}
.yce{bottom:151.840000pt;}
.y179{bottom:154.080000pt;}
.y192{bottom:156.000000pt;}
.y104{bottom:156.960000pt;}
.y1c6{bottom:158.080000pt;}
.y8a{bottom:160.320000pt;}
.y27{bottom:160.480000pt;}
.y8f{bottom:161.280000pt;}
.y67{bottom:162.240000pt;}
.y1e5{bottom:167.360000pt;}
.y38{bottom:168.640000pt;}
.y178{bottom:169.920000pt;}
.y31{bottom:171.706667pt;}
.y191{bottom:172.000000pt;}
.y103{bottom:172.800000pt;}
.y1c5{bottom:174.080000pt;}
.ycd{bottom:176.160000pt;}
.y89{bottom:176.320000pt;}
.y224{bottom:177.760000pt;}
.y66{bottom:178.240000pt;}
.y177{bottom:185.786667pt;}
.y190{bottom:187.866667pt;}
.y30{bottom:189.306667pt;}
.y1e4{bottom:191.226667pt;}
.ycc{bottom:192.186667pt;}
.y88{bottom:193.146667pt;}
.y65{bottom:194.106667pt;}
.y102{bottom:196.826667pt;}
.y1c4{bottom:198.266667pt;}
.y18f{bottom:203.706667pt;}
.y2f{bottom:206.906667pt;}
.y1e3{bottom:207.066667pt;}
.y26{bottom:207.546667pt;}
.ycb{bottom:208.026667pt;}
.y176{bottom:209.626667pt;}
.y64{bottom:209.946667pt;}
.y87{bottom:210.106667pt;}
.y101{bottom:212.666667pt;}
.y1c3{bottom:214.106667pt;}
.y13f{bottom:218.600000pt;}
.y18e{bottom:219.546667pt;}
.y1e2{bottom:222.906667pt;}
.yca{bottom:223.866667pt;}
.y2e{bottom:224.506667pt;}
.y223{bottom:224.666667pt;}
.y175{bottom:225.626667pt;}
.y63{bottom:225.786667pt;}
.y86{bottom:225.946667pt;}
.y100{bottom:228.506667pt;}
.y1c2{bottom:229.946667pt;}
.y25{bottom:238.426667pt;}
.y1e1{bottom:238.746667pt;}
.yc9{bottom:239.386667pt;}
.y174{bottom:241.466667pt;}
.y62{bottom:241.626667pt;}
.y85{bottom:241.786667pt;}
.y2d{bottom:242.106667pt;}
.y18d{bottom:243.386667pt;}
.yff{bottom:244.346667pt;}
.y1c1{bottom:245.786667pt;}
.y1e0{bottom:254.586667pt;}
.y173{bottom:257.306667pt;}
.y84{bottom:257.626667pt;}
.y18c{bottom:259.386667pt;}
.y2c{bottom:259.906667pt;}
.yfe{bottom:260.186667pt;}
.y1c0{bottom:261.786667pt;}
.yc8{bottom:263.546667pt;}
.y61{bottom:265.626667pt;}
.y222{bottom:268.346667pt;}
.y23{bottom:269.306667pt;}
.y1df{bottom:270.586667pt;}
.y83{bottom:273.466667pt;}
.y18b{bottom:274.906667pt;}
.yfd{bottom:276.026667pt;}
.y2b{bottom:277.506667pt;}
.y1bf{bottom:277.626667pt;}
.yc7{bottom:279.546667pt;}
.y172{bottom:281.146667pt;}
.y60{bottom:281.466667pt;}
.y1de{bottom:286.426667pt;}
.y209{bottom:286.586667pt;}
.y82{bottom:289.466667pt;}
.y1be{bottom:293.466667pt;}
.yc6{bottom:295.386667pt;}
.y171{bottom:296.986667pt;}
.y5f{bottom:297.306667pt;}
.y18a{bottom:299.066667pt;}
.yfc{bottom:300.026667pt;}
.y22{bottom:300.186667pt;}
.y1dd{bottom:302.266667pt;}
.y208{bottom:302.586667pt;}
.y2a{bottom:304.386667pt;}
.y81{bottom:304.986667pt;}
.y24{bottom:305.146667pt;}
.y133{bottom:308.840000pt;}
.y1bd{bottom:309.306667pt;}
.yc5{bottom:311.226667pt;}
.y5e{bottom:313.146667pt;}
.y189{bottom:314.906667pt;}
.yfb{bottom:315.866667pt;}
.y1dc{bottom:318.106667pt;}
.y207{bottom:318.426667pt;}
.y170{bottom:320.826667pt;}
.y1bc{bottom:325.146667pt;}
.yc4{bottom:327.066667pt;}
.y5d{bottom:328.986667pt;}
.y80{bottom:329.146667pt;}
.y188{bottom:330.746667pt;}
.y21{bottom:331.226667pt;}
.yfa{bottom:331.706667pt;}
.y1db{bottom:333.946667pt;}
.y206{bottom:334.266667pt;}
.y16f{bottom:336.826667pt;}
.yc3{bottom:342.906667pt;}
.y5c{bottom:344.826667pt;}
.y7f{bottom:344.986667pt;}
.y187{bottom:346.586667pt;}
.yf9{bottom:347.546667pt;}
.y1bb{bottom:348.986667pt;}
.y1da{bottom:349.946667pt;}
.y205{bottom:350.106667pt;}
.yc2{bottom:358.746667pt;}
.y1f{bottom:360.346667pt;}
.y16e{bottom:360.666667pt;}
.y5b{bottom:360.826667pt;}
.y186{bottom:362.586667pt;}
.y1ba{bottom:364.986667pt;}
.y204{bottom:365.946667pt;}
.y1d9{bottom:367.546667pt;}
.yf8{bottom:371.386667pt;}
.y16d{bottom:376.506667pt;}
.y5a{bottom:376.666667pt;}
.y185{bottom:378.426667pt;}
.y1b9{bottom:380.826667pt;}
.y203{bottom:381.946667pt;}
.yc1{bottom:382.746667pt;}
.y1e{bottom:384.186667pt;}
.yf7{bottom:387.386667pt;}
.y16c{bottom:392.386667pt;}
.y59{bottom:392.546667pt;}
.y7e{bottom:392.706667pt;}
.y221{bottom:395.266667pt;}
.y184{bottom:396.066667pt;}
.y1b8{bottom:396.706667pt;}
.y202{bottom:397.826667pt;}
.yc0{bottom:398.626667pt;}
.yf6{bottom:403.266667pt;}
.y1d{bottom:408.066667pt;}
.y16b{bottom:408.226667pt;}
.y58{bottom:408.386667pt;}
.y7d{bottom:408.546667pt;}
.y1b7{bottom:412.546667pt;}
.y201{bottom:413.666667pt;}
.ybf{bottom:414.466667pt;}
.y183{bottom:418.946667pt;}
.yf5{bottom:419.106667pt;}
.y57{bottom:424.226667pt;}
.y7c{bottom:424.386667pt;}
.y1b6{bottom:428.066667pt;}
.y1d8{bottom:428.386667pt;}
.y200{bottom:429.506667pt;}
.ybe{bottom:430.306667pt;}
.y1c{bottom:431.906667pt;}
.y16a{bottom:432.066667pt;}
.y7b{bottom:440.226667pt;}
.y56{bottom:441.186667pt;}
.yf4{bottom:442.946667pt;}
.y1b5{bottom:444.066667pt;}
.y1d7{bottom:444.386667pt;}
.y1ff{bottom:445.346667pt;}
.ybd{bottom:446.146667pt;}
.y169{bottom:448.066667pt;}
.y12c{bottom:450.786667pt;}
.y1b{bottom:455.906667pt;}
.y7a{bottom:456.066667pt;}
.yf3{bottom:458.786667pt;}
.y55{bottom:459.106667pt;}
.y1d6{bottom:460.226667pt;}
.y1fe{bottom:461.186667pt;}
.ybc{bottom:462.146667pt;}
.y182{bottom:464.066667pt;}
.y220{bottom:466.786667pt;}
.y1b4{bottom:468.226667pt;}
.y168{bottom:471.906667pt;}
.y79{bottom:472.066667pt;}
.yf2{bottom:474.626667pt;}
.y54{bottom:475.906667pt;}
.y1d5{bottom:476.066667pt;}
.y1fd{bottom:477.186667pt;}
.y1a{bottom:479.426667pt;}
.y20{bottom:479.746667pt;}
.y181{bottom:479.906667pt;}
.y1b3{bottom:484.066667pt;}
.ybb{bottom:485.986667pt;}
.y78{bottom:487.906667pt;}
.yf1{bottom:490.626667pt;}
.y21f{bottom:490.786667pt;}
.y53{bottom:492.866667pt;}
.y1fc{bottom:493.026667pt;}
.y167{bottom:495.746667pt;}
.y1b2{bottom:499.906667pt;}
.yba{bottom:501.826667pt;}
.y77{bottom:503.746667pt;}
.y19{bottom:504.706667pt;}
.y1fb{bottom:508.866667pt;}
.y52{bottom:510.786667pt;}
.y166{bottom:511.586667pt;}
.yf0{bottom:514.466667pt;}
.y21e{bottom:514.626667pt;}
.y1b1{bottom:515.746667pt;}
.yb9{bottom:517.666667pt;}
.y76{bottom:519.586667pt;}
.y1fa{bottom:524.706667pt;}
.y165{bottom:527.426667pt;}
.y51{bottom:527.586667pt;}
.y18{bottom:528.066667pt;}
.yef{bottom:530.306667pt;}
.y1b0{bottom:531.586667pt;}
.yb8{bottom:533.506667pt;}
.y75{bottom:535.426667pt;}
.y21d{bottom:538.466667pt;}
.y1f9{bottom:540.546667pt;}
.y126{bottom:542.946667pt;}
.y50{bottom:543.426667pt;}
.yee{bottom:546.146667pt;}
.y1af{bottom:547.586667pt;}
.yb7{bottom:549.346667pt;}
.y164{bottom:551.426667pt;}
.y17{bottom:555.426667pt;}
.y1f8{bottom:556.546667pt;}
.y4f{bottom:559.266667pt;}
.yed{bottom:561.986667pt;}
.y21c{bottom:562.306667pt;}
.y1ae{bottom:563.426667pt;}
.y180{bottom:567.266667pt;}
.y1f7{bottom:572.386667pt;}
.yb6{bottom:573.346667pt;}
.y4e{bottom:575.266667pt;}
.yec{bottom:577.666667pt;}
.y1ad{bottom:579.266667pt;}
.y17f{bottom:583.106667pt;}
.y21b{bottom:586.146667pt;}
.y1f6{bottom:588.226667pt;}
.yb5{bottom:589.186667pt;}
.y4d{bottom:591.106667pt;}
.y1ac{bottom:595.106667pt;}
.y16{bottom:598.946667pt;}
.yeb{bottom:601.853333pt;}
.y1d4{bottom:603.133333pt;}
.yb4{bottom:605.053333pt;}
.y1f5{bottom:605.853333pt;}
.y4c{bottom:606.973333pt;}
.y21a{bottom:610.173333pt;}
.y163{bottom:614.973333pt;}
.yea{bottom:617.693333pt;}
.y1ab{bottom:618.973333pt;}
.yb3{bottom:620.893333pt;}
.y74{bottom:622.813333pt;}
.y4b{bottom:630.813333pt;}
.ye9{bottom:633.533333pt;}
.y219{bottom:634.013333pt;}
.y1aa{bottom:634.813333pt;}
.y1f4{bottom:634.973333pt;}
.yb2{bottom:636.413333pt;}
.y73{bottom:638.653333pt;}
.y15{bottom:642.013333pt;}
.y4a{bottom:646.653333pt;}
.ye8{bottom:649.373333pt;}
.y1a9{bottom:650.813333pt;}
.yb1{bottom:652.413333pt;}
.y72{bottom:654.653333pt;}
.y218{bottom:657.853333pt;}
.y49{bottom:662.653333pt;}
.ye7{bottom:665.213333pt;}
.y1a8{bottom:666.333333pt;}
.y1d3{bottom:666.653333pt;}
.y1f3{bottom:666.813333pt;}
.y119{bottom:666.973333pt;}
.y71{bottom:670.493333pt;}
.y162{bottom:670.653333pt;}
.yb0{bottom:676.573333pt;}
.y48{bottom:678.493333pt;}
.ye6{bottom:681.213333pt;}
.y217{bottom:681.693333pt;}
.y1a7{bottom:682.173333pt;}
.y1d2{bottom:682.493333pt;}
.y1f2{bottom:682.653333pt;}
.y70{bottom:686.333333pt;}
.y161{bottom:686.493333pt;}
.y14{bottom:686.973333pt;}
.yaf{bottom:692.413333pt;}
.y47{bottom:694.333333pt;}
.y1d1{bottom:698.333333pt;}
.y1f1{bottom:698.493333pt;}
.ye5{bottom:698.813333pt;}
.y6f{bottom:702.173333pt;}
.y160{bottom:702.333333pt;}
.y216{bottom:705.533333pt;}
.y1a6{bottom:706.333333pt;}
.yae{bottom:708.253333pt;}
.y46{bottom:710.173333pt;}
.y13{bottom:711.613333pt;}
.y1f0{bottom:714.333333pt;}
.y15f{bottom:717.853333pt;}
.y6e{bottom:718.013333pt;}
.y17e{bottom:718.173333pt;}
.ye4{bottom:721.693333pt;}
.y1a5{bottom:722.173333pt;}
.yad{bottom:724.093333pt;}
.y45{bottom:726.013333pt;}
.y215{bottom:729.373333pt;}
.y1ef{bottom:730.173333pt;}
.y6d{bottom:733.533333pt;}
.y15e{bottom:733.693333pt;}
.y17d{bottom:734.013333pt;}
.y12{bottom:736.413333pt;}
.y1a4{bottom:737.853333pt;}
.y1d0{bottom:738.173333pt;}
.yac{bottom:739.933333pt;}
.y44{bottom:741.853333pt;}
.ye3{bottom:744.573333pt;}
.y1ee{bottom:746.173333pt;}
.y214{bottom:753.373333pt;}
.y1cf{bottom:754.013333pt;}
.yab{bottom:755.933333pt;}
.y43{bottom:757.853333pt;}
.y1a3{bottom:762.013333pt;}
.y15c{bottom:763.613333pt;}
.y1ce{bottom:769.853333pt;}
.yaa{bottom:771.773333pt;}
.y42{bottom:773.693333pt;}
.ye2{bottom:773.853333pt;}
.y213{bottom:777.213333pt;}
.y11{bottom:777.373333pt;}
.y1a2{bottom:777.853333pt;}
.y1cd{bottom:785.693333pt;}
.ya9{bottom:787.613333pt;}
.y41{bottom:789.533333pt;}
.ye1{bottom:789.693333pt;}
.y1a1{bottom:793.693333pt;}
.y10{bottom:799.773333pt;}
.y212{bottom:801.053333pt;}
.y1cc{bottom:801.533333pt;}
.ya8{bottom:803.453333pt;}
.y40{bottom:805.373333pt;}
.ye0{bottom:805.533333pt;}
.y10e{bottom:806.813333pt;}
.y1a0{bottom:809.573333pt;}
.yf{bottom:817.413333pt;}
.ya7{bottom:819.333333pt;}
.y3f{bottom:821.253333pt;}
.ydf{bottom:821.413333pt;}
.y211{bottom:824.933333pt;}
.y19f{bottom:825.413333pt;}
.y157{bottom:831.973333pt;}
.ye{bottom:835.173333pt;}
.y3e{bottom:836.933333pt;}
.y6c{bottom:837.253333pt;}
.y19e{bottom:841.413333pt;}
.yde{bottom:845.253333pt;}
.y210{bottom:848.773333pt;}
.y1ed{bottom:849.413333pt;}
.ya6{bottom:851.173333pt;}
.yd{bottom:852.453333pt;}
.y19d{bottom:857.253333pt;}
.ydd{bottom:861.093333pt;}
.y1ec{bottom:865.253333pt;}
.ya5{bottom:867.013333pt;}
.yc{bottom:870.373333pt;}
.y1cb{bottom:872.773333pt;}
.y19c{bottom:873.093333pt;}
.y3d{bottom:875.653333pt;}
.ydc{bottom:877.093333pt;}
.y1eb{bottom:881.093333pt;}
.ya4{bottom:882.533333pt;}
.y1ca{bottom:888.613333pt;}
.y19b{bottom:888.933333pt;}
.ydb{bottom:892.933333pt;}
.y20f{bottom:896.613333pt;}
.y1ea{bottom:896.933333pt;}
.y8e{bottom:899.840000pt;}
.y14e{bottom:900.133333pt;}
.ya3{bottom:900.453333pt;}
.yb{bottom:905.893333pt;}
.yda{bottom:908.773333pt;}
.y98{bottom:911.973333pt;}
.y19a{bottom:912.773333pt;}
.y10c{bottom:912.933333pt;}
.ya{bottom:916.613333pt;}
.y3c{bottom:917.573333pt;}
.y20e{bottom:920.453333pt;}
.ya2{bottom:923.493333pt;}
.yd9{bottom:924.613333pt;}
.y9{bottom:927.333333pt;}
.y199{bottom:928.773333pt;}
.y96{bottom:929.733333pt;}
.y8{bottom:938.053333pt;}
.yd8{bottom:941.573333pt;}
.y20d{bottom:944.293333pt;}
.y198{bottom:944.613333pt;}
.y7{bottom:951.013333pt;}
.y10b{bottom:952.133333pt;}
.ya1{bottom:952.613333pt;}
.y95{bottom:955.333333pt;}
.y197{bottom:960.453333pt;}
.y3b{bottom:964.453333pt;}
.yd7{bottom:966.373333pt;}
.y20c{bottom:968.133333pt;}
.ya0{bottom:968.453333pt;}
.y6{bottom:973.733333pt;}
.y109{bottom:976.293333pt;}
.yd6{bottom:982.213333pt;}
.y9f{bottom:984.293333pt;}
.y20b{bottom:991.973333pt;}
.y108{bottom:992.133333pt;}
.yd5{bottom:998.213333pt;}
.y9e{bottom:1000.133333pt;}
.y107{bottom:1007.973333pt;}
.y3a{bottom:1011.493333pt;}
.yd4{bottom:1014.053333pt;}
.y9d{bottom:1015.973333pt;}
.y196{bottom:1024.000000pt;}
.yd3{bottom:1029.920000pt;}
.y9c{bottom:1032.000000pt;}
.y20a{bottom:1039.840000pt;}
.y14d{bottom:1040.160000pt;}
.yd2{bottom:1045.760000pt;}
.y9b{bottom:1047.840000pt;}
.y39{bottom:1058.400000pt;}
.yd1{bottom:1062.720000pt;}
.y10a{bottom:1063.360000pt;}
.y9a{bottom:1063.680000pt;}
.h21{height:23.680000pt;}
.h19{height:23.840000pt;}
.h2{height:27.676000pt;}
.h14{height:33.515625pt;}
.h7{height:36.431250pt;}
.h12{height:43.782500pt;}
.h11{height:43.888000pt;}
.h26{height:47.085938pt;}
.h3{height:47.109375pt;}
.h23{height:47.520000pt;}
.h24{height:47.712000pt;}
.hd{height:48.375000pt;}
.h18{height:48.768750pt;}
.h25{height:49.336436pt;}
.h13{height:49.968750pt;}
.h10{height:52.108438pt;}
.h8{height:52.134375pt;}
.h16{height:52.234000pt;}
.h9{height:53.535000pt;}
.hc{height:57.787500pt;}
.h4{height:58.563750pt;}
.hb{height:59.340000pt;}
.h1f{height:69.586667pt;}
.he{height:69.660000pt;}
.h1d{height:71.506667pt;}
.h17{height:71.955000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.h6{height:80.625000pt;}
.h1a{height:85.472000pt;}
.h20{height:87.552000pt;}
.h1c{height:103.386667pt;}
.h1b{height:119.200000pt;}
.h22{height:119.220000pt;}
.h1e{height:121.138667pt;}
.h15{height:181.440000pt;}
.hf{height:328.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:52.820000pt;}
.w3{width:71.386667pt;}
.w6{width:165.946667pt;}
.w8{width:196.853333pt;}
.w9{width:197.173333pt;}
.w7{width:275.226667pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x42{left:3.706667pt;}
.x3{left:7.676000pt;}
.x13{left:9.600000pt;}
.x3f{left:12.476000pt;}
.x21{left:15.516000pt;}
.x37{left:16.960000pt;}
.x33{left:17.946667pt;}
.x30{left:18.906667pt;}
.x2e{left:20.640000pt;}
.x2d{left:21.920000pt;}
.x28{left:23.706667pt;}
.x41{left:24.986667pt;}
.x25{left:25.920000pt;}
.x2f{left:27.200000pt;}
.x2b{left:28.480000pt;}
.x22{left:30.074667pt;}
.x3b{left:31.226667pt;}
.x38{left:32.186667pt;}
.x35{left:33.120000pt;}
.x12{left:34.080000pt;}
.x29{left:35.546667pt;}
.x20{left:36.826667pt;}
.x3e{left:38.746667pt;}
.x1{left:40.324000pt;}
.x23{left:41.274667pt;}
.x26{left:42.720000pt;}
.x14{left:43.680000pt;}
.x2c{left:45.760000pt;}
.x5{left:48.000000pt;}
.x1b{left:50.564000pt;}
.x24{left:51.840000pt;}
.x40{left:55.680000pt;}
.x27{left:57.120000pt;}
.x31{left:58.074667pt;}
.x43{left:60.000000pt;}
.x3c{left:61.280000pt;}
.xc{left:63.040000pt;}
.x36{left:64.480000pt;}
.x1d{left:66.394667pt;}
.x39{left:70.906667pt;}
.x15{left:72.000000pt;}
.x3d{left:74.880000pt;}
.x2a{left:75.866667pt;}
.x32{left:88.160000pt;}
.x34{left:89.466667pt;}
.x17{left:96.032000pt;}
.xb{left:98.752000pt;}
.x1c{left:103.712000pt;}
.x3a{left:107.520000pt;}
.x2{left:197.662667pt;}
.xf{left:245.186667pt;}
.x8{left:250.466667pt;}
.x6{left:253.986667pt;}
.x9{left:264.706667pt;}
.x1e{left:270.466667pt;}
.x10{left:279.426667pt;}
.x7{left:323.906667pt;}
.xa{left:336.706667pt;}
.xe{left:346.946667pt;}
.xd{left:357.506667pt;}
.x11{left:420.893333pt;}
.x19{left:432.893333pt;}
.x16{left:444.893333pt;}
.x1a{left:456.893333pt;}
.x18{left:468.893333pt;}
.x1f{left:546.506667pt;}
.x4{left:682.213333pt;}
}




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