
    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_aa186fcd0cc9e1d5e3a96ad0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7cc0aa5d1ec7edeeda010daa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_85c0c403746e60c3396a086b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6610984414f8d8989882bbec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.730957;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:-22.768068px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000003px;}
.ls2{letter-spacing:14.994141px;}
.ls5{letter-spacing:16.663445px;}
.ls7{letter-spacing:17.985937px;}
.ls9{letter-spacing:18.000000px;}
.ls4{letter-spacing:26.985914px;}
.ls1{letter-spacing:35.985914px;}
.ls3{letter-spacing:53.985914px;}
.ls6{letter-spacing:64.511718px;}
.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;}
}
.ws3{word-spacing:-29.999999px;}
.ws58{word-spacing:-18.000000px;}
.ws57{word-spacing:-15.000000px;}
.ws55{word-spacing:-10.800000px;}
.ws1{word-spacing:-0.027328px;}
.ws0{word-spacing:-0.027326px;}
.ws39{word-spacing:-0.000036px;}
.ws4f{word-spacing:-0.000035px;}
.ws7{word-spacing:-0.000023px;}
.ws6a{word-spacing:-0.000013px;}
.wsf{word-spacing:-0.000012px;}
.ws2e{word-spacing:-0.000001px;}
.ws2{word-spacing:0.000000px;}
.ws63{word-spacing:0.000002px;}
.ws40{word-spacing:0.000011px;}
.ws4d{word-spacing:0.000022px;}
.ws3a{word-spacing:4.499966px;}
.ws2b{word-spacing:4.499976px;}
.ws12{word-spacing:4.499977px;}
.ws68{word-spacing:4.499987px;}
.wsd{word-spacing:4.499988px;}
.ws1b{word-spacing:4.499998px;}
.wsa{word-spacing:4.499999px;}
.ws34{word-spacing:4.500001px;}
.ws1d{word-spacing:4.500010px;}
.ws2c{word-spacing:4.500022px;}
.ws5c{word-spacing:8.999966px;}
.ws6{word-spacing:8.999977px;}
.wsb{word-spacing:8.999988px;}
.ws4a{word-spacing:8.999999px;}
.ws22{word-spacing:9.000000px;}
.ws13{word-spacing:9.000002px;}
.ws35{word-spacing:9.000011px;}
.ws10{word-spacing:9.000023px;}
.ws15{word-spacing:13.499965px;}
.ws3b{word-spacing:13.499977px;}
.ws4e{word-spacing:13.499986px;}
.ws11{word-spacing:13.499988px;}
.ws61{word-spacing:13.499997px;}
.wse{word-spacing:13.500000px;}
.ws20{word-spacing:13.500011px;}
.ws5f{word-spacing:13.500012px;}
.ws5e{word-spacing:13.500022px;}
.ws23{word-spacing:17.999966px;}
.ws17{word-spacing:17.999977px;}
.ws9{word-spacing:17.999988px;}
.ws49{word-spacing:17.999997px;}
.ws14{word-spacing:17.999999px;}
.ws1e{word-spacing:18.000001px;}
.ws25{word-spacing:18.000011px;}
.ws33{word-spacing:18.000022px;}
.ws1f{word-spacing:22.499966px;}
.ws41{word-spacing:22.499977px;}
.ws8{word-spacing:22.499988px;}
.ws27{word-spacing:22.499999px;}
.ws16{word-spacing:22.500000px;}
.ws1c{word-spacing:22.500011px;}
.ws5b{word-spacing:22.500022px;}
.ws5d{word-spacing:22.500033px;}
.ws60{word-spacing:26.999965px;}
.ws3d{word-spacing:26.999976px;}
.ws36{word-spacing:26.999977px;}
.ws59{word-spacing:26.999989px;}
.ws64{word-spacing:26.999999px;}
.ws26{word-spacing:27.000000px;}
.ws21{word-spacing:27.000010px;}
.ws37{word-spacing:27.000011px;}
.ws24{word-spacing:27.000034px;}
.ws3e{word-spacing:31.499966px;}
.ws45{word-spacing:31.499977px;}
.ws50{word-spacing:31.499988px;}
.ws1a{word-spacing:31.499999px;}
.ws2a{word-spacing:31.500001px;}
.ws4b{word-spacing:31.500002px;}
.ws18{word-spacing:31.500011px;}
.ws30{word-spacing:35.999965px;}
.ws3c{word-spacing:35.999966px;}
.ws65{word-spacing:35.999977px;}
.ws2d{word-spacing:35.999988px;}
.ws53{word-spacing:35.999999px;}
.ws5{word-spacing:36.000000px;}
.ws54{word-spacing:36.000011px;}
.ws32{word-spacing:36.000022px;}
.ws67{word-spacing:36.000023px;}
.ws5a{word-spacing:40.499965px;}
.ws56{word-spacing:40.499977px;}
.ws42{word-spacing:40.499998px;}
.wsc{word-spacing:40.499999px;}
.ws4c{word-spacing:40.500011px;}
.ws69{word-spacing:44.999965px;}
.ws2f{word-spacing:44.999988px;}
.ws31{word-spacing:44.999999px;}
.ws29{word-spacing:45.000000px;}
.ws47{word-spacing:45.000010px;}
.ws3f{word-spacing:49.500000px;}
.ws19{word-spacing:53.999997px;}
.ws38{word-spacing:54.000000px;}
.ws52{word-spacing:58.499988px;}
.ws66{word-spacing:58.499999px;}
.ws43{word-spacing:62.999977px;}
.ws28{word-spacing:63.000000px;}
.ws62{word-spacing:67.499966px;}
.ws51{word-spacing:76.500000px;}
.ws48{word-spacing:80.999999px;}
.ws46{word-spacing:94.499977px;}
.ws44{word-spacing:125.999966px;}
.ws4{word-spacing:2089.606770px;}
._27{margin-left:-9.660738px;}
._1{margin-left:-7.600913px;}
._0{margin-left:-5.388486px;}
._2{margin-left:-3.509624px;}
._3{margin-left:-1.907250px;}
._1f{width:17.231802px;}
._4{width:18.256061px;}
._28{width:19.907272px;}
._15{width:22.500002px;}
._18{width:27.000002px;}
._1a{width:31.500001px;}
._19{width:36.000002px;}
._17{width:40.500000px;}
._16{width:45.000001px;}
._1c{width:49.499999px;}
._5{width:54.000000px;}
._1e{width:58.499999px;}
._24{width:63.000002px;}
._1b{width:67.500022px;}
._20{width:72.000002px;}
._1d{width:76.499985px;}
._25{width:81.000001px;}
._26{width:90.000000px;}
._23{width:94.499989px;}
._22{width:117.000001px;}
._21{width:148.500002px;}
._8{width:535.768410px;}
._9{width:726.475069px;}
._13{width:826.529757px;}
._a{width:984.422891px;}
._10{width:1002.662570px;}
._7{width:1179.172522px;}
._b{width:1255.006963px;}
._f{width:1701.587237px;}
._6{width:1759.533550px;}
._d{width:1829.591144px;}
._c{width:1853.506206px;}
._14{width:1879.548175px;}
._12{width:1959.634113px;}
._e{width:2005.618488px;}
._11{width:2019.610675px;}
.fc2{color:rgb(17,85,204);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(32,33,36);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:43.200002px;}
.fs2{font-size:59.999999px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.fs0{font-size:96.000003px;}
.fs3{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.yb{bottom:39.996093px;}
.y1d{bottom:84.426263px;}
.y161{bottom:84.427733px;}
.yeb{bottom:111.410148px;}
.y17e{bottom:115.725592px;}
.y52{bottom:115.727048px;}
.y159{bottom:116.774408px;}
.yc5{bottom:117.102165px;}
.y11e{bottom:117.102173px;}
.y9{bottom:117.277226px;}
.y1b0{bottom:117.591803px;}
.y3b{bottom:117.821783px;}
.yf5{bottom:121.727048px;}
.y89{bottom:122.774408px;}
.y133{bottom:127.863278px;}
.y19a{bottom:131.165033px;}
.y188{bottom:131.774408px;}
.yda{bottom:133.727048px;}
.yea{bottom:134.350703px;}
.ye2{bottom:134.350710px;}
.y6c{bottom:137.774408px;}
.y1d7{bottom:144.140617px;}
.y51{bottom:146.774408px;}
.y1b7{bottom:147.820312px;}
.y158{bottom:147.821783px;}
.y1af{bottom:148.640617px;}
.y1db{bottom:149.774408px;}
.ye3{bottom:151.599240px;}
.yc0{bottom:151.727048px;}
.yf4{bottom:152.774408px;}
.y88{bottom:153.821783px;}
.y11d{bottom:157.458983px;}
.y132{bottom:158.912108px;}
.y199{bottom:162.210938px;}
.y187{bottom:162.823238px;}
.y3a{bottom:163.869142px;}
.yd9{bottom:164.774408px;}
.yc4{bottom:167.774408px;}
.y6b{bottom:168.821783px;}
.ya6{bottom:170.774408px;}
.y1ee{bottom:171.820312px;}
.y1d6{bottom:175.186523px;}
.y17d{bottom:177.820312px;}
.y50{bottom:177.821783px;}
.y21c{bottom:177.963863px;}
.y157{bottom:178.869142px;}
.y1ae{bottom:179.686523px;}
.y1da{bottom:180.823238px;}
.ybf{bottom:182.774408px;}
.yf3{bottom:183.821783px;}
.y203{bottom:183.960938px;}
.y171{bottom:185.299808px;}
.y11c{bottom:188.506342px;}
.yb1{bottom:189.821783px;}
.y131{bottom:189.958012px;}
.y1b6{bottom:193.869142px;}
.y1bf{bottom:194.915033px;}
.y39{bottom:194.916503px;}
.yd8{bottom:195.821783px;}
.y87{bottom:196.869142px;}
.yc3{bottom:198.821783px;}
.y6a{bottom:199.869142px;}
.ya5{bottom:201.821783px;}
.y1ed{bottom:202.869142px;}
.ye1{bottom:205.869142px;}
.y1d5{bottom:206.232428px;}
.y198{bottom:208.259768px;}
.y4f{bottom:208.869142px;}
.y21b{bottom:209.009768px;}
.y156{bottom:209.916503px;}
.y1ad{bottom:210.732428px;}
.y100{bottom:211.869142px;}
.ybe{bottom:213.821783px;}
.yf2{bottom:214.869142px;}
.y202{bottom:215.009768px;}
.y170{bottom:216.348637px;}
.y11b{bottom:219.553717px;}
.y8{bottom:219.721076px;}
.yb0{bottom:220.869142px;}
.y130{bottom:221.006842px;}
.y1b5{bottom:224.917973px;}
.y38{bottom:225.963863px;}
.yd7{bottom:226.869142px;}
.y86{bottom:227.916503px;}
.y69{bottom:230.916503px;}
.ya4{bottom:232.869142px;}
.y1ec{bottom:233.915033px;}
.ye0{bottom:236.916503px;}
.y1d4{bottom:237.281242px;}
.y197{bottom:239.308598px;}
.y186{bottom:239.915033px;}
.y4e{bottom:239.916503px;}
.y21a{bottom:240.058598px;}
.y155{bottom:240.963863px;}
.y1ac{bottom:241.781242px;}
.yff{bottom:242.917973px;}
.ybd{bottom:244.869142px;}
.y16f{bottom:247.394528px;}
.yaf{bottom:251.916503px;}
.y12f{bottom:252.052733px;}
.y17c{bottom:254.917973px;}
.y1b4{bottom:255.963863px;}
.y37{bottom:257.011238px;}
.yd6{bottom:257.916503px;}
.y201{bottom:258.058598px;}
.y85{bottom:258.963863px;}
.y148{bottom:260.613278px;}
.yf1{bottom:260.916503px;}
.y68{bottom:261.963863px;}
.ya3{bottom:263.916503px;}
.y11a{bottom:265.602533px;}
.y1d3{bottom:268.330073px;}
.y7{bottom:270.942986px;}
.y4d{bottom:270.963863px;}
.y219{bottom:271.107428px;}
.y1be{bottom:272.009768px;}
.y1ab{bottom:272.830073px;}
.yfe{bottom:273.963863px;}
.ybc{bottom:275.916503px;}
.y1eb{bottom:276.963863px;}
.y16e{bottom:278.443358px;}
.ydf{bottom:279.963863px;}
.yae{bottom:282.963863px;}
.y12e{bottom:283.101563px;}
.y196{bottom:285.354488px;}
.y17b{bottom:285.963863px;}
.y154{bottom:287.012693px;}
.y36{bottom:288.058598px;}
.yd5{bottom:288.963863px;}
.y200{bottom:289.107428px;}
.y84{bottom:290.011238px;}
.y147{bottom:291.662108px;}
.yf0{bottom:291.963863px;}
.ya2{bottom:294.963863px;}
.y119{bottom:296.648438px;}
.y1d2{bottom:299.375977px;}
.ye9{bottom:302.011238px;}
.y1bd{bottom:303.058598px;}
.y1aa{bottom:303.875977px;}
.y67{bottom:305.011238px;}
.yfd{bottom:305.012693px;}
.ybb{bottom:306.963863px;}
.y1ea{bottom:308.009768px;}
.y16d{bottom:309.489262px;}
.yde{bottom:311.011238px;}
.yad{bottom:314.011238px;}
.y218{bottom:314.156242px;}
.y195{bottom:316.403318px;}
.y17a{bottom:317.009768px;}
.y4c{bottom:317.011238px;}
.y153{bottom:318.058598px;}
.y35{bottom:319.105957px;}
.yd4{bottom:320.011238px;}
.y83{bottom:321.058598px;}
.y146{bottom:322.708012px;}
.yef{bottom:323.011238px;}
.ya1{bottom:326.011238px;}
.y118{bottom:327.697268px;}
.y12d{bottom:329.147468px;}
.y1d1{bottom:330.421867px;}
.ye8{bottom:333.058598px;}
.y1bc{bottom:334.107428px;}
.y1a9{bottom:334.921867px;}
.y1ff{bottom:335.150393px;}
.y66{bottom:336.058598px;}
.yba{bottom:338.011238px;}
.y1e9{bottom:339.058598px;}
.y16c{bottom:340.538092px;}
.ydd{bottom:342.058598px;}
.yac{bottom:345.058598px;}
.y217{bottom:345.202148px;}
.y194{bottom:347.449223px;}
.y4b{bottom:348.058598px;}
.y152{bottom:349.107428px;}
.y34{bottom:350.153318px;}
.yd3{bottom:351.058598px;}
.y82{bottom:352.105957px;}
.y145{bottom:353.756842px;}
.yee{bottom:354.058598px;}
.ya0{bottom:357.058598px;}
.y12c{bottom:360.193358px;}
.y160{bottom:364.104488px;}
.ye7{bottom:364.105957px;}
.y1a8{bottom:365.970698px;}
.y1fe{bottom:366.199223px;}
.y65{bottom:367.105957px;}
.yfc{bottom:367.107428px;}
.yb9{bottom:369.058598px;}
.y16b{bottom:371.583983px;}
.ydc{bottom:373.105957px;}
.y117{bottom:373.743157px;}
.yab{bottom:376.105957px;}
.y1d0{bottom:376.470698px;}
.y193{bottom:378.498053px;}
.y4a{bottom:379.105957px;}
.y179{bottom:379.107428px;}
.y1b3{bottom:380.153318px;}
.y33{bottom:381.200677px;}
.y1e8{bottom:382.107428px;}
.y144{bottom:384.802733px;}
.yed{bottom:385.105957px;}
.y9f{bottom:388.105957px;}
.y12b{bottom:391.242188px;}
.y216{bottom:391.248053px;}
.ye6{bottom:395.153318px;}
.yd2{bottom:397.105957px;}
.y64{bottom:398.153318px;}
.yb8{bottom:400.105957px;}
.y116{bottom:404.789063px;}
.yaa{bottom:407.153318px;}
.y1cf{bottom:407.519528px;}
.y1c{bottom:408.493658px;}
.y49{bottom:410.153318px;}
.y1bb{bottom:411.202148px;}
.y1a7{bottom:412.019528px;}
.y1fd{bottom:412.248053px;}
.yfb{bottom:413.153318px;}
.y1e7{bottom:413.156242px;}
.y143{bottom:415.851563px;}
.ydb{bottom:416.153318px;}
.y12a{bottom:422.288092px;}
.y215{bottom:422.296867px;}
.y192{bottom:424.543943px;}
.y151{bottom:426.199223px;}
.ye5{bottom:426.200677px;}
.y32{bottom:427.248053px;}
.yd1{bottom:428.153318px;}
.y63{bottom:429.200677px;}
.y9e{bottom:431.153318px;}
.y115{bottom:435.837892px;}
.y1ce{bottom:438.565433px;}
.y178{bottom:441.199223px;}
.y48{bottom:441.200677px;}
.y1ba{bottom:442.248053px;}
.y1a6{bottom:443.065433px;}
.y1fc{bottom:443.296867px;}
.yfa{bottom:444.199223px;}
.y81{bottom:444.200677px;}
.y1e6{bottom:444.202148px;}
.y142{bottom:446.897468px;}
.ya9{bottom:450.200677px;}
.y129{bottom:453.336908px;}
.y1b{bottom:454.541017px;}
.y191{bottom:455.589847px;}
.y185{bottom:456.202148px;}
.y150{bottom:457.248053px;}
.yd0{bottom:459.200677px;}
.y9d{bottom:462.200677px;}
.y114{bottom:466.883783px;}
.y214{bottom:468.339847px;}
.y1cd{bottom:469.614262px;}
.y47{bottom:472.248053px;}
.y31{bottom:473.295413px;}
.y1b9{bottom:473.296867px;}
.y1a5{bottom:474.114262px;}
.y80{bottom:475.248053px;}
.y141{bottom:477.946283px;}
.y128{bottom:484.382812px;}
.y190{bottom:486.638678px;}
.y184{bottom:487.248052px;}
.y14f{bottom:488.293942px;}
.y1fb{bottom:489.342773px;}
.ycf{bottom:490.248052px;}
.y9c{bottom:493.248052px;}
.y113{bottom:497.932613px;}
.y1a{bottom:500.588377px;}
.y1cc{bottom:500.660152px;}
.y46{bottom:503.295412px;}
.y177{bottom:503.296867px;}
.y1a4{bottom:505.160152px;}
.yf9{bottom:506.293942px;}
.y7f{bottom:506.295412px;}
.y6{bottom:508.728151px;}
.y140{bottom:508.992188px;}
.y213{bottom:514.391602px;}
.y127{bottom:515.431642px;}
.y18f{bottom:517.684567px;}
.y1e5{bottom:518.293942px;}
.y183{bottom:518.296867px;}
.y30{bottom:519.342773px;}
.y1fa{bottom:520.388678px;}
.yce{bottom:521.295412px;}
.y9b{bottom:524.295412px;}
.y112{bottom:528.978517px;}
.y1cb{bottom:531.708982px;}
.y62{bottom:534.342773px;}
.y1a3{bottom:536.208982px;}
.y7e{bottom:537.342773px;}
.y212{bottom:545.437492px;}
.y126{bottom:546.477533px;}
.y19{bottom:546.635737px;}
.y18e{bottom:548.733398px;}
.y1e4{bottom:549.339848px;}
.y45{bottom:549.342773px;}
.y14e{bottom:550.388678px;}
.y2f{bottom:550.390133px;}
.y1f9{bottom:551.437492px;}
.ycd{bottom:552.342773px;}
.y13f{bottom:555.041018px;}
.y9a{bottom:555.342773px;}
.y1ca{bottom:562.754887px;}
.y5{bottom:565.124641px;}
.y15f{bottom:565.388678px;}
.y61{bottom:565.390133px;}
.yc2{bottom:567.342773px;}
.yf8{bottom:568.388678px;}
.y7d{bottom:568.390133px;}
.y125{bottom:577.526363px;}
.y111{bottom:579.669432px;}
.y18d{bottom:579.779303px;}
.y1e3{bottom:580.388678px;}
.y44{bottom:580.390133px;}
.y176{bottom:580.391602px;}
.y2e{bottom:581.437492px;}
.y1a2{bottom:582.254887px;}
.ycc{bottom:583.390133px;}
.y13e{bottom:586.088377px;}
.y99{bottom:586.390133px;}
.y211{bottom:591.486322px;}
.y18{bottom:592.683112px;}
.y1c9{bottom:593.803718px;}
.y60{bottom:596.437492px;}
.y1f8{bottom:597.483398px;}
.yc1{bottom:598.390133px;}
.y7c{bottom:599.437492px;}
.y124{bottom:608.572268px;}
.y18c{bottom:610.828118px;}
.y43{bottom:611.437492px;}
.y14d{bottom:612.483398px;}
.y2d{bottom:612.484868px;}
.y1a1{bottom:613.300777px;}
.ycb{bottom:614.437492px;}
.y16a{bottom:614.651363px;}
.y13d{bottom:617.135738px;}
.y98{bottom:617.437492px;}
.y210{bottom:622.532228px;}
.y1c8{bottom:624.849608px;}
.y1e2{bottom:626.437492px;}
.y5f{bottom:627.484868px;}
.y15e{bottom:627.486322px;}
.y17{bottom:628.230473px;}
.y1f7{bottom:628.529303px;}
.yb7{bottom:629.437492px;}
.yf7{bottom:630.483398px;}
.y7b{bottom:630.484868px;}
.y110{bottom:631.464841px;}
.y18b{bottom:641.874022px;}
.y42{bottom:642.484868px;}
.y175{bottom:642.486322px;}
.y2c{bottom:643.532228px;}
.y1a0{bottom:644.349608px;}
.yca{bottom:645.484868px;}
.y13c{bottom:648.183112px;}
.y97{bottom:648.484868px;}
.y123{bottom:654.621098px;}
.y1e1{bottom:657.486322px;}
.y5e{bottom:658.532228px;}
.yb6{bottom:660.484868px;}
.y169{bottom:660.697268px;}
.y7a{bottom:661.532228px;}
.y10f{bottom:662.589848px;}
.y16{bottom:663.777833px;}
.y20f{bottom:668.578118px;}
.y1c7{bottom:670.895512px;}
.y18a{bottom:672.922852px;}
.y41{bottom:673.532228px;}
.y2b{bottom:674.579588px;}
.y1f6{bottom:674.581058px;}
.y19f{bottom:675.395512px;}
.yc9{bottom:676.532228px;}
.y13b{bottom:679.230473px;}
.y96{bottom:679.532228px;}
.y122{bottom:685.668457px;}
.yec{bottom:688.532228px;}
.y1e0{bottom:688.535152px;}
.y15d{bottom:689.578118px;}
.y5d{bottom:689.579588px;}
.yb5{bottom:691.532228px;}
.y168{bottom:691.746098px;}
.y79{bottom:692.579588px;}
.y10e{bottom:693.638678px;}
.y15{bottom:699.325192px;}
.y20e{bottom:699.626948px;}
.y1c6{bottom:701.944342px;}
.y189{bottom:703.968742px;}
.y40{bottom:704.579588px;}
.y182{bottom:704.581058px;}
.y2a{bottom:705.626948px;}
.y19e{bottom:706.444342px;}
.yf6{bottom:707.579588px;}
.y13a{bottom:710.277833px;}
.y95{bottom:710.579588px;}
.y121{bottom:716.715818px;}
.y174{bottom:719.578118px;}
.yc8{bottom:719.579588px;}
.y1df{bottom:719.581058px;}
.y5c{bottom:720.626948px;}
.yb4{bottom:722.579588px;}
.y167{bottom:722.794928px;}
.y10d{bottom:724.725586px;}
.y1c5{bottom:732.990233px;}
.y4{bottom:734.314081px;}
.y14{bottom:734.872552px;}
.y3f{bottom:735.626948px;}
.y29{bottom:736.674322px;}
.y19d{bottom:737.490233px;}
.y78{bottom:738.626948px;}
.y139{bottom:741.325192px;}
.y20d{bottom:742.675777px;}
.y120{bottom:747.763178px;}
.ye4{bottom:750.626948px;}
.y5b{bottom:751.674322px;}
.y15c{bottom:751.675777px;}
.y94{bottom:753.626948px;}
.y166{bottom:753.840818px;}
.y10c{bottom:755.850592px;}
.y1c4{bottom:764.039063px;}
.yc7{bottom:765.626948px;}
.y1d9{bottom:766.675777px;}
.y19c{bottom:768.539063px;}
.y77{bottom:769.674322px;}
.y20c{bottom:773.721683px;}
.y13{bottom:780.919928px;}
.y173{bottom:781.672852px;}
.y3e{bottom:781.674322px;}
.y1de{bottom:781.675777px;}
.y28{bottom:782.721683px;}
.y93{bottom:784.674322px;}
.y165{bottom:784.886723px;}
.y10b{bottom:786.937501px;}
.y3{bottom:790.710571px;}
.y138{bottom:792.014652px;}
.y1c3{bottom:795.084967px;}
.yc6{bottom:796.674322px;}
.y1f5{bottom:797.718742px;}
.y1d8{bottom:797.721683px;}
.y11f{bottom:798.454107px;}
.y76{bottom:800.721683px;}
.y20b{bottom:804.767573px;}
.y3d{bottom:812.721683px;}
.y1dd{bottom:812.724608px;}
.y1b2{bottom:813.767573px;}
.y5a{bottom:813.769043px;}
.y92{bottom:815.721683px;}
.y164{bottom:815.935552px;}
.y12{bottom:816.467288px;}
.y10a{bottom:818.065433px;}
.y1c2{bottom:826.133783px;}
.yb3{bottom:827.721683px;}
.y1f4{bottom:828.767573px;}
.y27{bottom:828.769043px;}
.y15b{bottom:828.770512px;}
.y75{bottom:831.769043px;}
.y2{bottom:832.107061px;}
.y137{bottom:843.767573px;}
.y3c{bottom:843.769043px;}
.y1dc{bottom:843.770512px;}
.y59{bottom:844.816402px;}
.y91{bottom:846.769043px;}
.y163{bottom:846.984367px;}
.y109{bottom:849.152341px;}
.y20a{bottom:850.816402px;}
.y11{bottom:852.014648px;}
.yb2{bottom:858.769043px;}
.y15a{bottom:859.816402px;}
.y74{bottom:862.816402px;}
.y1c1{bottom:872.179688px;}
.y26{bottom:874.816402px;}
.y14c{bottom:875.863762px;}
.y1b1{bottom:875.865232px;}
.ya8{bottom:877.816402px;}
.y162{bottom:878.030273px;}
.y108{bottom:880.277348px;}
.y209{bottom:881.862308px;}
.y10{bottom:887.562007px;}
.y90{bottom:889.816402px;}
.y1f3{bottom:890.862308px;}
.y58{bottom:890.863762px;}
.y1b8{bottom:890.865232px;}
.y73{bottom:893.863762px;}
.y136{bottom:905.862308px;}
.y25{bottom:905.863762px;}
.y14b{bottom:906.911137px;}
.ya7{bottom:908.863762px;}
.y107{bottom:911.364256px;}
.y208{bottom:912.908197px;}
.y8f{bottom:920.863762px;}
.y181{bottom:920.865232px;}
.y1f2{bottom:921.908197px;}
.y57{bottom:921.911137px;}
.yf{bottom:923.109367px;}
.y24{bottom:936.911137px;}
.y72{bottom:939.911137px;}
.y106{bottom:942.492188px;}
.y8e{bottom:951.911137px;}
.y1f1{bottom:952.957027px;}
.y56{bottom:952.958498px;}
.y14a{bottom:952.959967px;}
.ye{bottom:958.656742px;}
.y207{bottom:958.959967px;}
.y135{bottom:967.957027px;}
.y23{bottom:967.958498px;}
.y71{bottom:970.958498px;}
.y105{bottom:973.579096px;}
.y180{bottom:982.957027px;}
.y8d{bottom:982.958498px;}
.y55{bottom:984.005858px;}
.y206{bottom:990.005858px;}
.y22{bottom:999.005859px;}
.y1{bottom:1001.296510px;}
.y70{bottom:1002.005859px;}
.yd{bottom:1004.704101px;}
.y19b{bottom:1009.353516px;}
.y8c{bottom:1014.005859px;}
.y1f0{bottom:1015.051758px;}
.y54{bottom:1015.053222px;}
.y104{bottom:1019.704101px;}
.y134{bottom:1030.051758px;}
.y21{bottom:1030.053222px;}
.y205{bottom:1033.051758px;}
.y6f{bottom:1033.053222px;}
.y8b{bottom:1045.053222px;}
.y17f{bottom:1045.054688px;}
.y53{bottom:1046.100586px;}
.y103{bottom:1050.750000px;}
.y20{bottom:1061.100586px;}
.y1ef{bottom:1061.103516px;}
.y204{bottom:1064.097655px;}
.y6e{bottom:1064.100586px;}
.y8a{bottom:1076.100586px;}
.y102{bottom:1081.798828px;}
.y149{bottom:1092.146484px;}
.y1f{bottom:1092.147950px;}
.y172{bottom:1107.146484px;}
.y6d{bottom:1107.147950px;}
.y1c0{bottom:1117.497071px;}
.yc{bottom:1126.992186px;}
.y101{bottom:1132.488282px;}
.y1e{bottom:1138.195312px;}
.ya{bottom:1155.000000px;}
.hd{height:31.020993px;}
.hc{height:32.273438px;}
.h7{height:48.796875px;}
.ha{height:49.992188px;}
.h5{height:53.789061px;}
.h3{height:56.929685px;}
.h9{height:64.546875px;}
.h1{height:65.062502px;}
.hb{height:66.049807px;}
.h2{height:75.304685px;}
.h6{height:81.328123px;}
.h8{height:107.625000px;}
.h4{height:108.000000px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x7{left:108.000000px;}
.x2{left:115.025987px;}
.xb{left:135.000000px;}
.xe{left:148.314116px;}
.xa{left:162.000000px;}
.x11{left:167.625000px;}
.xd{left:169.394682px;}
.x4{left:175.966095px;}
.x3{left:179.469386px;}
.xf{left:190.233550px;}
.x1{left:285.163982px;}
.x5{left:297.172755px;}
.x6{left:339.490598px;}
.x9{left:348.980130px;}
.x8{left:515.909003px;}
.x10{left:766.913411px;}
.xc{left:775.913411px;}
@media print{
.v2{vertical-align:-20.238283pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000002pt;}
.ls2{letter-spacing:13.328125pt;}
.ls5{letter-spacing:14.811951pt;}
.ls7{letter-spacing:15.987499pt;}
.ls9{letter-spacing:16.000000pt;}
.ls4{letter-spacing:23.987479pt;}
.ls1{letter-spacing:31.987479pt;}
.ls3{letter-spacing:47.987479pt;}
.ls6{letter-spacing:57.343750pt;}
.ws3{word-spacing:-26.666666pt;}
.ws58{word-spacing:-16.000000pt;}
.ws57{word-spacing:-13.333333pt;}
.ws55{word-spacing:-9.600000pt;}
.ws1{word-spacing:-0.024291pt;}
.ws0{word-spacing:-0.024290pt;}
.ws39{word-spacing:-0.000032pt;}
.ws4f{word-spacing:-0.000031pt;}
.ws7{word-spacing:-0.000020pt;}
.ws6a{word-spacing:-0.000011pt;}
.wsf{word-spacing:-0.000010pt;}
.ws2e{word-spacing:-0.000001pt;}
.ws2{word-spacing:0.000000pt;}
.ws63{word-spacing:0.000002pt;}
.ws40{word-spacing:0.000010pt;}
.ws4d{word-spacing:0.000020pt;}
.ws3a{word-spacing:3.999970pt;}
.ws2b{word-spacing:3.999979pt;}
.ws12{word-spacing:3.999980pt;}
.ws68{word-spacing:3.999989pt;}
.wsd{word-spacing:3.999990pt;}
.ws1b{word-spacing:3.999998pt;}
.wsa{word-spacing:3.999999pt;}
.ws34{word-spacing:4.000000pt;}
.ws1d{word-spacing:4.000009pt;}
.ws2c{word-spacing:4.000020pt;}
.ws5c{word-spacing:7.999970pt;}
.ws6{word-spacing:7.999980pt;}
.wsb{word-spacing:7.999989pt;}
.ws4a{word-spacing:7.999999pt;}
.ws22{word-spacing:8.000000pt;}
.ws13{word-spacing:8.000002pt;}
.ws35{word-spacing:8.000010pt;}
.ws10{word-spacing:8.000020pt;}
.ws15{word-spacing:11.999969pt;}
.ws3b{word-spacing:11.999980pt;}
.ws4e{word-spacing:11.999988pt;}
.ws11{word-spacing:11.999990pt;}
.ws61{word-spacing:11.999998pt;}
.wse{word-spacing:12.000000pt;}
.ws20{word-spacing:12.000010pt;}
.ws5f{word-spacing:12.000011pt;}
.ws5e{word-spacing:12.000019pt;}
.ws23{word-spacing:15.999970pt;}
.ws17{word-spacing:15.999979pt;}
.ws9{word-spacing:15.999990pt;}
.ws49{word-spacing:15.999998pt;}
.ws14{word-spacing:16.000000pt;}
.ws1e{word-spacing:16.000001pt;}
.ws25{word-spacing:16.000010pt;}
.ws33{word-spacing:16.000019pt;}
.ws1f{word-spacing:19.999970pt;}
.ws41{word-spacing:19.999980pt;}
.ws8{word-spacing:19.999990pt;}
.ws27{word-spacing:19.999999pt;}
.ws16{word-spacing:20.000000pt;}
.ws1c{word-spacing:20.000010pt;}
.ws5b{word-spacing:20.000020pt;}
.ws5d{word-spacing:20.000030pt;}
.ws60{word-spacing:23.999969pt;}
.ws3d{word-spacing:23.999979pt;}
.ws36{word-spacing:23.999980pt;}
.ws59{word-spacing:23.999990pt;}
.ws64{word-spacing:23.999999pt;}
.ws26{word-spacing:24.000000pt;}
.ws21{word-spacing:24.000009pt;}
.ws37{word-spacing:24.000010pt;}
.ws24{word-spacing:24.000030pt;}
.ws3e{word-spacing:27.999970pt;}
.ws45{word-spacing:27.999980pt;}
.ws50{word-spacing:27.999989pt;}
.ws1a{word-spacing:28.000000pt;}
.ws2a{word-spacing:28.000000pt;}
.ws4b{word-spacing:28.000002pt;}
.ws18{word-spacing:28.000010pt;}
.ws30{word-spacing:31.999969pt;}
.ws3c{word-spacing:31.999970pt;}
.ws65{word-spacing:31.999980pt;}
.ws2d{word-spacing:31.999990pt;}
.ws53{word-spacing:31.999999pt;}
.ws5{word-spacing:32.000000pt;}
.ws54{word-spacing:32.000010pt;}
.ws32{word-spacing:32.000019pt;}
.ws67{word-spacing:32.000020pt;}
.ws5a{word-spacing:35.999969pt;}
.ws56{word-spacing:35.999980pt;}
.ws42{word-spacing:35.999998pt;}
.wsc{word-spacing:36.000000pt;}
.ws4c{word-spacing:36.000010pt;}
.ws69{word-spacing:39.999969pt;}
.ws2f{word-spacing:39.999989pt;}
.ws31{word-spacing:39.999999pt;}
.ws29{word-spacing:40.000000pt;}
.ws47{word-spacing:40.000009pt;}
.ws3f{word-spacing:44.000000pt;}
.ws19{word-spacing:47.999998pt;}
.ws38{word-spacing:48.000000pt;}
.ws52{word-spacing:51.999989pt;}
.ws66{word-spacing:51.999999pt;}
.ws43{word-spacing:55.999980pt;}
.ws28{word-spacing:56.000000pt;}
.ws62{word-spacing:59.999970pt;}
.ws51{word-spacing:68.000000pt;}
.ws48{word-spacing:71.999999pt;}
.ws46{word-spacing:83.999979pt;}
.ws44{word-spacing:111.999970pt;}
.ws4{word-spacing:1857.428240pt;}
._27{margin-left:-8.587323pt;}
._1{margin-left:-6.756367pt;}
._0{margin-left:-4.789766pt;}
._2{margin-left:-3.119666pt;}
._3{margin-left:-1.695333pt;}
._1f{width:15.317157pt;}
._4{width:16.227610pt;}
._28{width:17.695352pt;}
._15{width:20.000002pt;}
._18{width:24.000002pt;}
._1a{width:28.000001pt;}
._19{width:32.000002pt;}
._17{width:36.000000pt;}
._16{width:40.000001pt;}
._1c{width:43.999999pt;}
._5{width:48.000000pt;}
._1e{width:51.999999pt;}
._24{width:56.000002pt;}
._1b{width:60.000020pt;}
._20{width:64.000002pt;}
._1d{width:67.999987pt;}
._25{width:72.000001pt;}
._26{width:80.000000pt;}
._23{width:83.999990pt;}
._22{width:104.000001pt;}
._21{width:132.000002pt;}
._8{width:476.238586pt;}
._9{width:645.755617pt;}
._13{width:734.693118pt;}
._a{width:875.042570pt;}
._10{width:891.255617pt;}
._7{width:1048.153352pt;}
._b{width:1115.561745pt;}
._f{width:1512.521989pt;}
._6{width:1564.029822pt;}
._d{width:1626.303239pt;}
._c{width:1647.561072pt;}
._14{width:1670.709489pt;}
._12{width:1741.896990pt;}
._e{width:1782.771989pt;}
._11{width:1795.209489pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:38.400002pt;}
.fs2{font-size:53.333332pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.fs0{font-size:85.333336pt;}
.fs3{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:35.552083pt;}
.y1d{bottom:75.045567pt;}
.y161{bottom:75.046873pt;}
.yeb{bottom:99.031243pt;}
.y17e{bottom:102.867193pt;}
.y52{bottom:102.868487pt;}
.y159{bottom:103.799473pt;}
.yc5{bottom:104.090814pt;}
.y11e{bottom:104.090820pt;}
.y9{bottom:104.246423pt;}
.y1b0{bottom:104.526047pt;}
.y3b{bottom:104.730473pt;}
.yf5{bottom:108.201820pt;}
.y89{bottom:109.132807pt;}
.y133{bottom:113.656247pt;}
.y19a{bottom:116.591140pt;}
.y188{bottom:117.132807pt;}
.yda{bottom:118.868487pt;}
.yea{bottom:119.422847pt;}
.ye2{bottom:119.422854pt;}
.y6c{bottom:122.466140pt;}
.y1d7{bottom:128.124993pt;}
.y51{bottom:130.466140pt;}
.y1b7{bottom:131.395833pt;}
.y158{bottom:131.397140pt;}
.y1af{bottom:132.124993pt;}
.y1db{bottom:133.132807pt;}
.ye3{bottom:134.754880pt;}
.yc0{bottom:134.868487pt;}
.yf4{bottom:135.799473pt;}
.y88{bottom:136.730473pt;}
.y11d{bottom:139.963540pt;}
.y132{bottom:141.255207pt;}
.y199{bottom:144.187500pt;}
.y187{bottom:144.731767pt;}
.y3a{bottom:145.661460pt;}
.yd9{bottom:146.466140pt;}
.yc4{bottom:149.132807pt;}
.y6b{bottom:150.063807pt;}
.ya6{bottom:151.799473pt;}
.y1ee{bottom:152.729167pt;}
.y1d6{bottom:155.721353pt;}
.y17d{bottom:158.062500pt;}
.y50{bottom:158.063807pt;}
.y21c{bottom:158.190100pt;}
.y157{bottom:158.994793pt;}
.y1ae{bottom:159.721353pt;}
.y1da{bottom:160.731767pt;}
.ybf{bottom:162.466140pt;}
.yf3{bottom:163.397140pt;}
.y203{bottom:163.520833pt;}
.y171{bottom:164.710940pt;}
.y11c{bottom:167.561193pt;}
.yb1{bottom:168.730473pt;}
.y131{bottom:168.851567pt;}
.y1b6{bottom:172.328127pt;}
.y1bf{bottom:173.257807pt;}
.y39{bottom:173.259113pt;}
.yd8{bottom:174.063807pt;}
.y87{bottom:174.994793pt;}
.yc3{bottom:176.730473pt;}
.y6a{bottom:177.661460pt;}
.ya5{bottom:179.397140pt;}
.y1ed{bottom:180.328127pt;}
.ye1{bottom:182.994793pt;}
.y1d5{bottom:183.317713pt;}
.y198{bottom:185.119793pt;}
.y4f{bottom:185.661460pt;}
.y21b{bottom:185.786460pt;}
.y156{bottom:186.592447pt;}
.y1ad{bottom:187.317713pt;}
.y100{bottom:188.328127pt;}
.ybe{bottom:190.063807pt;}
.yf2{bottom:190.994793pt;}
.y202{bottom:191.119793pt;}
.y170{bottom:192.309900pt;}
.y11b{bottom:195.158860pt;}
.y8{bottom:195.307623pt;}
.yb0{bottom:196.328127pt;}
.y130{bottom:196.450527pt;}
.y1b5{bottom:199.927087pt;}
.y38{bottom:200.856767pt;}
.yd7{bottom:201.661460pt;}
.y86{bottom:202.592447pt;}
.y69{bottom:205.259113pt;}
.ya4{bottom:206.994793pt;}
.y1ec{bottom:207.924473pt;}
.ye0{bottom:210.592447pt;}
.y1d4{bottom:210.916660pt;}
.y197{bottom:212.718753pt;}
.y186{bottom:213.257807pt;}
.y4e{bottom:213.259113pt;}
.y21a{bottom:213.385420pt;}
.y155{bottom:214.190100pt;}
.y1ac{bottom:214.916660pt;}
.yff{bottom:215.927087pt;}
.ybd{bottom:217.661460pt;}
.y16f{bottom:219.906247pt;}
.yaf{bottom:223.925780pt;}
.y12f{bottom:224.046873pt;}
.y17c{bottom:226.593753pt;}
.y1b4{bottom:227.523433pt;}
.y37{bottom:228.454433pt;}
.yd6{bottom:229.259113pt;}
.y201{bottom:229.385420pt;}
.y85{bottom:230.190100pt;}
.y148{bottom:231.656247pt;}
.yf1{bottom:231.925780pt;}
.y68{bottom:232.856767pt;}
.ya3{bottom:234.592447pt;}
.y11a{bottom:236.091140pt;}
.y1d3{bottom:238.515620pt;}
.y7{bottom:240.838209pt;}
.y4d{bottom:240.856767pt;}
.y219{bottom:240.984380pt;}
.y1be{bottom:241.786460pt;}
.y1ab{bottom:242.515620pt;}
.yfe{bottom:243.523433pt;}
.ybc{bottom:245.259113pt;}
.y1eb{bottom:246.190100pt;}
.y16e{bottom:247.505207pt;}
.ydf{bottom:248.856767pt;}
.yae{bottom:251.523433pt;}
.y12e{bottom:251.645833pt;}
.y196{bottom:253.648433pt;}
.y17b{bottom:254.190100pt;}
.y154{bottom:255.122393pt;}
.y36{bottom:256.052087pt;}
.yd5{bottom:256.856767pt;}
.y200{bottom:256.984380pt;}
.y84{bottom:257.787767pt;}
.y147{bottom:259.255207pt;}
.yf0{bottom:259.523433pt;}
.ya2{bottom:262.190100pt;}
.y119{bottom:263.687500pt;}
.y1d2{bottom:266.111980pt;}
.ye9{bottom:268.454433pt;}
.y1bd{bottom:269.385420pt;}
.y1aa{bottom:270.111980pt;}
.y67{bottom:271.121100pt;}
.yfd{bottom:271.122393pt;}
.ybb{bottom:272.856767pt;}
.y1ea{bottom:273.786460pt;}
.y16d{bottom:275.101567pt;}
.yde{bottom:276.454433pt;}
.yad{bottom:279.121100pt;}
.y218{bottom:279.249993pt;}
.y195{bottom:281.247393pt;}
.y17a{bottom:281.786460pt;}
.y4c{bottom:281.787767pt;}
.y153{bottom:282.718753pt;}
.y35{bottom:283.649740pt;}
.yd4{bottom:284.454433pt;}
.y83{bottom:285.385420pt;}
.y146{bottom:286.851567pt;}
.yef{bottom:287.121100pt;}
.ya1{bottom:289.787767pt;}
.y118{bottom:291.286460pt;}
.y12d{bottom:292.575527pt;}
.y1d1{bottom:293.708327pt;}
.ye8{bottom:296.052087pt;}
.y1bc{bottom:296.984380pt;}
.y1a9{bottom:297.708327pt;}
.y1ff{bottom:297.911460pt;}
.y66{bottom:298.718753pt;}
.yba{bottom:300.454433pt;}
.y1e9{bottom:301.385420pt;}
.y16c{bottom:302.700527pt;}
.ydd{bottom:304.052087pt;}
.yac{bottom:306.718753pt;}
.y217{bottom:306.846353pt;}
.y194{bottom:308.843753pt;}
.y4b{bottom:309.385420pt;}
.y152{bottom:310.317713pt;}
.y34{bottom:311.247393pt;}
.yd3{bottom:312.052087pt;}
.y82{bottom:312.983073pt;}
.y145{bottom:314.450527pt;}
.yee{bottom:314.718753pt;}
.ya0{bottom:317.385420pt;}
.y12c{bottom:320.171873pt;}
.y160{bottom:323.648433pt;}
.ye7{bottom:323.649740pt;}
.y1a8{bottom:325.307287pt;}
.y1fe{bottom:325.510420pt;}
.y65{bottom:326.316407pt;}
.yfc{bottom:326.317713pt;}
.yb9{bottom:328.052087pt;}
.y16b{bottom:330.296873pt;}
.ydc{bottom:331.649740pt;}
.y117{bottom:332.216140pt;}
.yab{bottom:334.316407pt;}
.y1d0{bottom:334.640620pt;}
.y193{bottom:336.442713pt;}
.y4a{bottom:336.983073pt;}
.y179{bottom:336.984380pt;}
.y1b3{bottom:337.914060pt;}
.y33{bottom:338.845047pt;}
.y1e8{bottom:339.651047pt;}
.y144{bottom:342.046873pt;}
.yed{bottom:342.316407pt;}
.y9f{bottom:344.983073pt;}
.y12b{bottom:347.770833pt;}
.y216{bottom:347.776047pt;}
.ye6{bottom:351.247393pt;}
.yd2{bottom:352.983073pt;}
.y64{bottom:353.914060pt;}
.yb8{bottom:355.649740pt;}
.y116{bottom:359.812500pt;}
.yaa{bottom:361.914060pt;}
.y1cf{bottom:362.239580pt;}
.y1c{bottom:363.105473pt;}
.y49{bottom:364.580727pt;}
.y1bb{bottom:365.513020pt;}
.y1a7{bottom:366.239580pt;}
.y1fd{bottom:366.442713pt;}
.yfb{bottom:367.247393pt;}
.y1e7{bottom:367.249993pt;}
.y143{bottom:369.645833pt;}
.ydb{bottom:369.914060pt;}
.y12a{bottom:375.367193pt;}
.y215{bottom:375.374993pt;}
.y192{bottom:377.372393pt;}
.y151{bottom:378.843753pt;}
.ye5{bottom:378.845047pt;}
.y32{bottom:379.776047pt;}
.yd1{bottom:380.580727pt;}
.y63{bottom:381.511713pt;}
.y9e{bottom:383.247393pt;}
.y115{bottom:387.411460pt;}
.y1ce{bottom:389.835940pt;}
.y178{bottom:392.177087pt;}
.y48{bottom:392.178380pt;}
.y1ba{bottom:393.109380pt;}
.y1a6{bottom:393.835940pt;}
.y1fc{bottom:394.041660pt;}
.yfa{bottom:394.843753pt;}
.y81{bottom:394.845047pt;}
.y1e6{bottom:394.846353pt;}
.y142{bottom:397.242193pt;}
.ya9{bottom:400.178380pt;}
.y129{bottom:402.966140pt;}
.y1b{bottom:404.036460pt;}
.y191{bottom:404.968753pt;}
.y185{bottom:405.513020pt;}
.y150{bottom:406.442713pt;}
.yd0{bottom:408.178380pt;}
.y9d{bottom:410.845047pt;}
.y114{bottom:415.007807pt;}
.y214{bottom:416.302087pt;}
.y1cd{bottom:417.434900pt;}
.y47{bottom:419.776047pt;}
.y31{bottom:420.707033pt;}
.y1b9{bottom:420.708327pt;}
.y1a5{bottom:421.434900pt;}
.y80{bottom:422.442713pt;}
.y141{bottom:424.841140pt;}
.y128{bottom:430.562500pt;}
.y190{bottom:432.567713pt;}
.y184{bottom:433.109380pt;}
.y14f{bottom:434.039060pt;}
.y1fb{bottom:434.971353pt;}
.ycf{bottom:435.776047pt;}
.y9c{bottom:438.442713pt;}
.y113{bottom:442.606767pt;}
.y1a{bottom:444.967447pt;}
.y1cc{bottom:445.031247pt;}
.y46{bottom:447.373700pt;}
.y177{bottom:447.374993pt;}
.y1a4{bottom:449.031247pt;}
.yf9{bottom:450.039060pt;}
.y7f{bottom:450.040367pt;}
.y6{bottom:452.202801pt;}
.y140{bottom:452.437500pt;}
.y213{bottom:457.236980pt;}
.y127{bottom:458.161460pt;}
.y18f{bottom:460.164060pt;}
.y1e5{bottom:460.705727pt;}
.y183{bottom:460.708327pt;}
.y30{bottom:461.638020pt;}
.y1fa{bottom:462.567713pt;}
.yce{bottom:463.373700pt;}
.y9b{bottom:466.040367pt;}
.y112{bottom:470.203127pt;}
.y1cb{bottom:472.630207pt;}
.y62{bottom:474.971353pt;}
.y1a3{bottom:476.630207pt;}
.y7e{bottom:477.638020pt;}
.y212{bottom:484.833327pt;}
.y126{bottom:485.757807pt;}
.y19{bottom:485.898433pt;}
.y18e{bottom:487.763020pt;}
.y1e4{bottom:488.302087pt;}
.y45{bottom:488.304687pt;}
.y14e{bottom:489.234380pt;}
.y2f{bottom:489.235673pt;}
.y1f9{bottom:490.166660pt;}
.ycd{bottom:490.971353pt;}
.y13f{bottom:493.369793pt;}
.y9a{bottom:493.638020pt;}
.y1ca{bottom:500.226567pt;}
.y5{bottom:502.333014pt;}
.y15f{bottom:502.567713pt;}
.y61{bottom:502.569007pt;}
.yc2{bottom:504.304687pt;}
.yf8{bottom:505.234380pt;}
.y7d{bottom:505.235673pt;}
.y125{bottom:513.356767pt;}
.y111{bottom:515.261717pt;}
.y18d{bottom:515.359380pt;}
.y1e3{bottom:515.901047pt;}
.y44{bottom:515.902340pt;}
.y176{bottom:515.903647pt;}
.y2e{bottom:516.833327pt;}
.y1a2{bottom:517.559900pt;}
.ycc{bottom:518.569007pt;}
.y13e{bottom:520.967447pt;}
.y99{bottom:521.235673pt;}
.y211{bottom:525.765620pt;}
.y18{bottom:526.829433pt;}
.y1c9{bottom:527.825527pt;}
.y60{bottom:530.166660pt;}
.y1f8{bottom:531.096353pt;}
.yc1{bottom:531.902340pt;}
.y7c{bottom:532.833327pt;}
.y124{bottom:540.953127pt;}
.y18c{bottom:542.958327pt;}
.y43{bottom:543.499993pt;}
.y14d{bottom:544.429687pt;}
.y2d{bottom:544.430993pt;}
.y1a1{bottom:545.156247pt;}
.ycb{bottom:546.166660pt;}
.y16a{bottom:546.356767pt;}
.y13d{bottom:548.565100pt;}
.y98{bottom:548.833327pt;}
.y210{bottom:553.361980pt;}
.y1c8{bottom:555.421873pt;}
.y1e2{bottom:556.833327pt;}
.y5f{bottom:557.764327pt;}
.y15e{bottom:557.765620pt;}
.y17{bottom:558.427087pt;}
.y1f7{bottom:558.692713pt;}
.yb7{bottom:559.499993pt;}
.yf7{bottom:560.429687pt;}
.y7b{bottom:560.430993pt;}
.y110{bottom:561.302081pt;}
.y18b{bottom:570.554687pt;}
.y42{bottom:571.097660pt;}
.y175{bottom:571.098953pt;}
.y2c{bottom:572.028647pt;}
.y1a0{bottom:572.755207pt;}
.yca{bottom:573.764327pt;}
.y13c{bottom:576.162767pt;}
.y97{bottom:576.430993pt;}
.y123{bottom:581.885420pt;}
.y1e1{bottom:584.432287pt;}
.y5e{bottom:585.361980pt;}
.yb6{bottom:587.097660pt;}
.y169{bottom:587.286460pt;}
.y7a{bottom:588.028647pt;}
.y10f{bottom:588.968753pt;}
.y16{bottom:590.024740pt;}
.y20f{bottom:594.291660pt;}
.y1c7{bottom:596.351567pt;}
.y18a{bottom:598.153647pt;}
.y41{bottom:598.695313pt;}
.y2b{bottom:599.626300pt;}
.y1f6{bottom:599.627607pt;}
.y19f{bottom:600.351567pt;}
.yc9{bottom:601.361980pt;}
.y13b{bottom:603.760420pt;}
.y96{bottom:604.028647pt;}
.y122{bottom:609.483073pt;}
.yec{bottom:612.028647pt;}
.y1e0{bottom:612.031247pt;}
.y15d{bottom:612.958327pt;}
.y5d{bottom:612.959633pt;}
.yb5{bottom:614.695313pt;}
.y168{bottom:614.885420pt;}
.y79{bottom:615.626300pt;}
.y10e{bottom:616.567713pt;}
.y15{bottom:621.622393pt;}
.y20e{bottom:621.890620pt;}
.y1c6{bottom:623.950527pt;}
.y189{bottom:625.749993pt;}
.y40{bottom:626.292967pt;}
.y182{bottom:626.294273pt;}
.y2a{bottom:627.223953pt;}
.y19e{bottom:627.950527pt;}
.yf6{bottom:628.959633pt;}
.y13a{bottom:631.358073pt;}
.y95{bottom:631.626300pt;}
.y121{bottom:637.080727pt;}
.y174{bottom:639.624993pt;}
.yc8{bottom:639.626300pt;}
.y1df{bottom:639.627607pt;}
.y5c{bottom:640.557287pt;}
.yb4{bottom:642.292967pt;}
.y167{bottom:642.484380pt;}
.y10d{bottom:644.200521pt;}
.y1c5{bottom:651.546873pt;}
.y4{bottom:652.723627pt;}
.y14{bottom:653.220046pt;}
.y3f{bottom:653.890620pt;}
.y29{bottom:654.821620pt;}
.y19d{bottom:655.546873pt;}
.y78{bottom:656.557287pt;}
.y139{bottom:658.955727pt;}
.y20d{bottom:660.156247pt;}
.y120{bottom:664.678380pt;}
.ye4{bottom:667.223953pt;}
.y5b{bottom:668.154953pt;}
.y15c{bottom:668.156247pt;}
.y94{bottom:669.890620pt;}
.y166{bottom:670.080727pt;}
.y10c{bottom:671.867193pt;}
.y1c4{bottom:679.145833pt;}
.yc7{bottom:680.557287pt;}
.y1d9{bottom:681.489580pt;}
.y19c{bottom:683.145833pt;}
.y77{bottom:684.154953pt;}
.y20c{bottom:687.752607pt;}
.y13{bottom:694.151047pt;}
.y173{bottom:694.820313pt;}
.y3e{bottom:694.821620pt;}
.y1de{bottom:694.822913pt;}
.y28{bottom:695.752607pt;}
.y93{bottom:697.488287pt;}
.y165{bottom:697.677087pt;}
.y10b{bottom:699.500001pt;}
.y3{bottom:702.853841pt;}
.y138{bottom:704.013024pt;}
.y1c3{bottom:706.742193pt;}
.yc6{bottom:708.154953pt;}
.y1f5{bottom:709.083327pt;}
.y1d8{bottom:709.085940pt;}
.y11f{bottom:709.736984pt;}
.y76{bottom:711.752607pt;}
.y20b{bottom:715.348953pt;}
.y3d{bottom:722.419273pt;}
.y1dd{bottom:722.421873pt;}
.y1b2{bottom:723.348953pt;}
.y5a{bottom:723.350260pt;}
.y92{bottom:725.085940pt;}
.y164{bottom:725.276047pt;}
.y12{bottom:725.748700pt;}
.y10a{bottom:727.169273pt;}
.y1c2{bottom:734.341140pt;}
.yb3{bottom:735.752607pt;}
.y1f4{bottom:736.682287pt;}
.y27{bottom:736.683593pt;}
.y15b{bottom:736.684900pt;}
.y75{bottom:739.350260pt;}
.y2{bottom:739.650721pt;}
.y137{bottom:750.015620pt;}
.y3c{bottom:750.016927pt;}
.y1dc{bottom:750.018233pt;}
.y59{bottom:750.947913pt;}
.y91{bottom:752.683593pt;}
.y163{bottom:752.874993pt;}
.y109{bottom:754.802081pt;}
.y20a{bottom:756.281247pt;}
.y11{bottom:757.346353pt;}
.yb2{bottom:763.350260pt;}
.y15a{bottom:764.281247pt;}
.y74{bottom:766.947913pt;}
.y1c1{bottom:775.270833pt;}
.y26{bottom:777.614580pt;}
.y14c{bottom:778.545567pt;}
.y1b1{bottom:778.546873pt;}
.ya8{bottom:780.281247pt;}
.y162{bottom:780.471353pt;}
.y108{bottom:782.468753pt;}
.y209{bottom:783.877607pt;}
.y10{bottom:788.944007pt;}
.y90{bottom:790.947913pt;}
.y1f3{bottom:791.877607pt;}
.y58{bottom:791.878900pt;}
.y1b8{bottom:791.880207pt;}
.y73{bottom:794.545567pt;}
.y136{bottom:805.210940pt;}
.y25{bottom:805.212233pt;}
.y14b{bottom:806.143233pt;}
.ya7{bottom:807.878900pt;}
.y107{bottom:810.101561pt;}
.y208{bottom:811.473953pt;}
.y8f{bottom:818.545567pt;}
.y181{bottom:818.546873pt;}
.y1f2{bottom:819.473953pt;}
.y57{bottom:819.476567pt;}
.yf{bottom:820.541660pt;}
.y24{bottom:832.809900pt;}
.y72{bottom:835.476567pt;}
.y106{bottom:837.770833pt;}
.y8e{bottom:846.143233pt;}
.y1f1{bottom:847.072913pt;}
.y56{bottom:847.074220pt;}
.y14a{bottom:847.075527pt;}
.ye{bottom:852.139326pt;}
.y207{bottom:852.408860pt;}
.y135{bottom:860.406247pt;}
.y23{bottom:860.407553pt;}
.y71{bottom:863.074220pt;}
.y105{bottom:865.403641pt;}
.y180{bottom:873.739580pt;}
.y8d{bottom:873.740887pt;}
.y55{bottom:874.671873pt;}
.y206{bottom:880.005207pt;}
.y22{bottom:888.005208pt;}
.y1{bottom:890.041342pt;}
.y70{bottom:890.671875pt;}
.yd{bottom:893.070312pt;}
.y19b{bottom:897.203125pt;}
.y8c{bottom:901.338541pt;}
.y1f0{bottom:902.268229pt;}
.y54{bottom:902.269531pt;}
.y104{bottom:906.403645pt;}
.y134{bottom:915.601563pt;}
.y21{bottom:915.602864pt;}
.y205{bottom:918.268229pt;}
.y6f{bottom:918.269531pt;}
.y8b{bottom:928.936197pt;}
.y17f{bottom:928.937500pt;}
.y53{bottom:929.867188pt;}
.y103{bottom:934.000000pt;}
.y20{bottom:943.200521pt;}
.y1ef{bottom:943.203125pt;}
.y204{bottom:945.864583pt;}
.y6e{bottom:945.867188pt;}
.y8a{bottom:956.533855pt;}
.y102{bottom:961.598959pt;}
.y149{bottom:970.796875pt;}
.y1f{bottom:970.798177pt;}
.y172{bottom:984.130208pt;}
.y6d{bottom:984.131511pt;}
.y1c0{bottom:993.330729pt;}
.yc{bottom:1001.770832pt;}
.y101{bottom:1006.656251pt;}
.y1e{bottom:1011.729167pt;}
.ya{bottom:1026.666667pt;}
.hd{height:27.574216pt;}
.hc{height:28.687500pt;}
.h7{height:43.375000pt;}
.ha{height:44.437500pt;}
.h5{height:47.812499pt;}
.h3{height:50.604165pt;}
.h9{height:57.375000pt;}
.h1{height:57.833335pt;}
.hb{height:58.710940pt;}
.h2{height:66.937498pt;}
.h6{height:72.291665pt;}
.h8{height:95.666667pt;}
.h4{height:96.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x7{left:96.000000pt;}
.x2{left:102.245322pt;}
.xb{left:120.000000pt;}
.xe{left:131.834770pt;}
.xa{left:144.000000pt;}
.x11{left:149.000000pt;}
.xd{left:150.573051pt;}
.x4{left:156.414307pt;}
.x3{left:159.528343pt;}
.xf{left:169.096489pt;}
.x1{left:253.479095pt;}
.x5{left:264.153560pt;}
.x6{left:301.769420pt;}
.x9{left:310.204560pt;}
.x8{left:458.585780pt;}
.x10{left:681.700810pt;}
.xc{left:689.700810pt;}
}




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