
    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_6dc5047a919b1c305c543018.woff')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_6af260db1a3a8cef8572f4fd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_25b36fbdcaa8d4a459d89bd6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_956df3466ad9badc1459d51a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_fb06db4091e5bf1ffb6255ba.woff')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_4bf2d0d05049c83038a7b08e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_90b529871518665b85c598fd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_468ef1b417c7569b722ed7e0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_51f2634704890ef5da670074.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_069fac129bd5756a1f5f8736.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_0f7cfd662e93a1f639de6fec.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_2828a00dc1bc2a7c11cbd2b1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.422000px;}
.ls9{letter-spacing:-1.296000px;}
.ls8{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.792000px;}
.ls4{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.504000px;}
.ls3{letter-spacing:-0.498000px;}
.ls5{letter-spacing:-0.466800px;}
.lse{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.020160px;}
.ls18{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.498240px;}
.lsa{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.720000px;}
.ls11{letter-spacing:1.440000px;}
.ls10{letter-spacing:1.584000px;}
.ls14{letter-spacing:2.160000px;}
.lsc{letter-spacing:3.600000px;}
.ls16{letter-spacing:10.800000px;}
.lsb{letter-spacing:54.876000px;}
.ls17{letter-spacing:87.996000px;}
.ls15{letter-spacing:167.916000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws3{word-spacing:-24.120000px;}
.wsb{word-spacing:-20.880000px;}
.ws7{word-spacing:-18.504000px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.496000px;}
.wsd{word-spacing:-17.208000px;}
.ws4{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.653200px;}
.ws0{word-spacing:-13.680000px;}
.ws1{word-spacing:-13.182000px;}
.ws6{word-spacing:0.000000px;}
._1f{margin-left:-19.440000px;}
._2f{margin-left:-5.359200px;}
._1a{margin-left:-4.171680px;}
._6{margin-left:-2.478240px;}
._0{margin-left:-1.477440px;}
._3{width:1.094400px;}
._7{width:2.591040px;}
._18{width:3.602400px;}
._17{width:4.880640px;}
._19{width:6.526080px;}
._c{width:7.565760px;}
._d{width:8.709120px;}
._b{width:9.904320px;}
._23{width:10.950240px;}
._f{width:11.966400px;}
._e{width:13.815360px;}
._22{width:14.836320px;}
._20{width:15.991200px;}
._31{width:16.992000px;}
._8{width:19.716480px;}
._9{width:21.227040px;}
._a{width:22.940640px;}
._1b{width:24.399360px;}
._1c{width:25.876800px;}
._26{width:27.406080px;}
._29{width:28.512000px;}
._15{width:30.193920px;}
._14{width:31.397280px;}
._13{width:32.549760px;}
._21{width:33.805440px;}
._11{width:35.683200px;}
._12{width:36.797760px;}
._10{width:38.396160px;}
._2c{width:43.833600px;}
._2a{width:45.792000px;}
._2b{width:47.160000px;}
._25{width:48.706560px;}
._24{width:50.077440px;}
._2e{width:51.768000px;}
._2d{width:53.526240px;}
._38{width:54.630720px;}
._27{width:56.304000px;}
._28{width:57.627840px;}
._37{width:67.305600px;}
._3a{width:68.486400px;}
._35{width:86.437440px;}
._36{width:88.774560px;}
._33{width:91.080000px;}
._34{width:92.459040px;}
._2{width:97.920000px;}
._30{width:139.836000px;}
._39{width:154.368000px;}
._3c{width:156.816000px;}
._3d{width:158.940000px;}
._32{width:167.916000px;}
._3b{width:174.024000px;}
._4{width:476.936640px;}
._16{width:849.485760px;}
._1d{width:850.787520px;}
._1{width:972.394560px;}
._1e{width:973.395360px;}
._5{width:1347.720000px;}
.fc2{color:rgb(255,0,0);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y22{bottom:3.240000px;}
.y1c{bottom:3.960000px;}
.y24{bottom:4.680000px;}
.y2a{bottom:10.440000px;}
.y2e{bottom:12.240000px;}
.y38{bottom:18.720000px;}
.y21{bottom:20.520000px;}
.y2c{bottom:20.880000px;}
.y1b{bottom:21.240000px;}
.y29{bottom:27.720000px;}
.y2d{bottom:29.160000px;}
.y18{bottom:29.880000px;}
.y26{bottom:36.360000px;}
.y1e{bottom:37.800000px;}
.y1a{bottom:38.520000px;}
.y37{bottom:40.320000px;}
.y28{bottom:45.000000px;}
.y20{bottom:55.080000px;}
.y19{bottom:55.800000px;}
.y6{bottom:56.880000px;}
.y36{bottom:61.920000px;}
.y27{bottom:62.310000px;}
.y1f{bottom:72.360000px;}
.y5{bottom:77.796000px;}
.y137{bottom:110.916000px;}
.y209{bottom:112.716000px;}
.yea{bottom:114.516000px;}
.y1ed{bottom:119.916000px;}
.y16e{bottom:120.996000px;}
.y22c{bottom:123.516000px;}
.y1c7{bottom:125.676000px;}
.y14d{bottom:128.196000px;}
.y136{bottom:131.436000px;}
.y208{bottom:133.596000px;}
.ye9{bottom:135.396000px;}
.y1b1{bottom:137.196000px;}
.y1ec{bottom:140.436000px;}
.y8e{bottom:140.796000px;}
.ybd{bottom:141.156000px;}
.y16d{bottom:141.876000px;}
.y22b{bottom:144.036000px;}
.y1c6{bottom:146.196000px;}
.y10f{bottom:149.076000px;}
.y135{bottom:152.310000px;}
.y181{bottom:153.390000px;}
.y207{bottom:154.110000px;}
.ye8{bottom:155.910000px;}
.y1b0{bottom:158.070000px;}
.y1eb{bottom:161.310000px;}
.y8d{bottom:161.670000px;}
.ybc{bottom:162.030000px;}
.y16c{bottom:162.390000px;}
.y22a{bottom:164.910000px;}
.y1c5{bottom:167.070000px;}
.y10e{bottom:169.590000px;}
.y134{bottom:172.830000px;}
.y180{bottom:173.910000px;}
.y206{bottom:174.990000px;}
.ye7{bottom:176.790000px;}
.y1af{bottom:178.590000px;}
.y1ea{bottom:181.830000px;}
.y8c{bottom:182.190000px;}
.ybb{bottom:182.550000px;}
.y16b{bottom:183.270000px;}
.y229{bottom:185.475000px;}
.y1c4{bottom:187.635000px;}
.y10d{bottom:190.515000px;}
.y133{bottom:193.755000px;}
.y17f{bottom:194.835000px;}
.y205{bottom:195.555000px;}
.ye6{bottom:197.355000px;}
.y1ae{bottom:199.515000px;}
.y1e9{bottom:202.755000px;}
.y8b{bottom:203.115000px;}
.yba{bottom:203.475000px;}
.y16a{bottom:203.835000px;}
.y228{bottom:206.355000px;}
.y1c3{bottom:208.515000px;}
.y10c{bottom:211.035000px;}
.y132{bottom:214.275000px;}
.y17e{bottom:215.355000px;}
.y204{bottom:216.435000px;}
.ye5{bottom:218.235000px;}
.y1ad{bottom:220.035000px;}
.y1e8{bottom:223.275000px;}
.y8a{bottom:223.635000px;}
.yb9{bottom:223.995000px;}
.y169{bottom:224.355000px;}
.y227{bottom:226.875000px;}
.y1c2{bottom:229.035000px;}
.y35{bottom:230.475000px;}
.y10b{bottom:231.915000px;}
.y131{bottom:235.155000px;}
.y17d{bottom:236.235000px;}
.y203{bottom:236.955000px;}
.ye4{bottom:238.755000px;}
.y1ac{bottom:240.915000px;}
.y1e7{bottom:244.155000px;}
.y89{bottom:244.515000px;}
.yb8{bottom:244.875000px;}
.y168{bottom:245.235000px;}
.y226{bottom:247.755000px;}
.y1c1{bottom:249.915000px;}
.y10a{bottom:252.435000px;}
.y130{bottom:255.675000px;}
.y17c{bottom:256.755000px;}
.y202{bottom:257.835000px;}
.ye3{bottom:259.635000px;}
.y1ab{bottom:261.435000px;}
.y1e6{bottom:264.675000px;}
.y88{bottom:265.035000px;}
.yb7{bottom:265.395000px;}
.y167{bottom:265.755000px;}
.y225{bottom:268.275000px;}
.y1c0{bottom:270.435000px;}
.y109{bottom:272.955000px;}
.y12f{bottom:276.555000px;}
.y17b{bottom:277.635000px;}
.y201{bottom:278.355000px;}
.ye2{bottom:280.155000px;}
.y1aa{bottom:281.955000px;}
.y1e5{bottom:285.555000px;}
.y87{bottom:285.915000px;}
.yb6{bottom:286.275000px;}
.y166{bottom:286.635000px;}
.y224{bottom:289.155000px;}
.y1bf{bottom:290.955000px;}
.y108{bottom:293.835000px;}
.y12e{bottom:297.075000px;}
.y17a{bottom:298.155000px;}
.y200{bottom:299.235000px;}
.y34{bottom:301.035000px;}
.y1a9{bottom:302.835000px;}
.y1e4{bottom:306.075000px;}
.y86{bottom:306.435000px;}
.yb5{bottom:306.795000px;}
.y165{bottom:307.155000px;}
.y223{bottom:309.675000px;}
.y1be{bottom:311.865000px;}
.y107{bottom:314.385000px;}
.y12d{bottom:317.985000px;}
.y179{bottom:319.065000px;}
.y1ff{bottom:319.785000px;}
.ye1{bottom:321.585000px;}
.y1a8{bottom:323.385000px;}
.y1e3{bottom:326.985000px;}
.y85{bottom:327.345000px;}
.yb4{bottom:327.705000px;}
.y164{bottom:328.065000px;}
.y222{bottom:330.585000px;}
.y1bd{bottom:332.385000px;}
.y33{bottom:333.105000px;}
.y106{bottom:335.265000px;}
.y12c{bottom:338.505000px;}
.y178{bottom:339.585000px;}
.y1fe{bottom:340.665000px;}
.ye0{bottom:342.465000px;}
.y1a7{bottom:344.265000px;}
.y1e2{bottom:347.505000px;}
.y84{bottom:347.865000px;}
.yb3{bottom:348.225000px;}
.y163{bottom:348.585000px;}
.y221{bottom:351.105000px;}
.y1bc{bottom:353.265000px;}
.y105{bottom:355.785000px;}
.y12b{bottom:359.385000px;}
.y177{bottom:360.465000px;}
.y1fd{bottom:361.185000px;}
.ydf{bottom:362.985000px;}
.y61{bottom:364.785000px;}
.y32{bottom:365.145000px;}
.y1e1{bottom:368.385000px;}
.y83{bottom:368.745000px;}
.yb2{bottom:369.105000px;}
.y162{bottom:369.465000px;}
.y220{bottom:371.985000px;}
.y1bb{bottom:373.785000px;}
.y104{bottom:376.665000px;}
.y12a{bottom:379.905000px;}
.y176{bottom:380.985000px;}
.y1fc{bottom:382.065000px;}
.yde{bottom:383.865000px;}
.y1a6{bottom:385.665000px;}
.y1e0{bottom:388.905000px;}
.y82{bottom:389.265000px;}
.yb1{bottom:389.625000px;}
.y161{bottom:389.985000px;}
.y1b3{bottom:392.505000px;}
.y1ba{bottom:394.665000px;}
.y60{bottom:395.025000px;}
.y103{bottom:397.185000px;}
.y31{bottom:397.545000px;}
.y129{bottom:400.785000px;}
.y175{bottom:401.865000px;}
.y1fb{bottom:402.585000px;}
.ydd{bottom:404.385000px;}
.y1a5{bottom:406.185000px;}
.y1df{bottom:409.785000px;}
.y81{bottom:410.145000px;}
.yb0{bottom:410.505000px;}
.y160{bottom:410.865000px;}
.y5f{bottom:412.665000px;}
.y1b2{bottom:413.385000px;}
.y1b9{bottom:415.185000px;}
.y30{bottom:417.705000px;}
.y102{bottom:418.065000px;}
.y128{bottom:421.305000px;}
.y174{bottom:422.385000px;}
.y1fa{bottom:423.465000px;}
.ydc{bottom:425.265000px;}
.y1a4{bottom:427.065000px;}
.y5e{bottom:429.945000px;}
.y1de{bottom:430.305000px;}
.y80{bottom:430.665000px;}
.yaf{bottom:431.025000px;}
.y21f{bottom:433.905000px;}
.y1b8{bottom:436.065000px;}
.y2f{bottom:437.910000px;}
.y101{bottom:438.630000px;}
.y15f{bottom:440.070000px;}
.y127{bottom:442.230000px;}
.y173{bottom:443.310000px;}
.y1f9{bottom:444.030000px;}
.ydb{bottom:445.830000px;}
.y5d{bottom:447.270000px;}
.y1a3{bottom:447.630000px;}
.y1dd{bottom:451.230000px;}
.y7f{bottom:451.590000px;}
.yae{bottom:451.950000px;}
.y2b{bottom:454.470000px;}
.y21e{bottom:454.830000px;}
.y1b7{bottom:456.630000px;}
.y100{bottom:459.510000px;}
.y126{bottom:462.750000px;}
.y172{bottom:463.830000px;}
.y5c{bottom:464.550000px;}
.y1f8{bottom:464.910000px;}
.yda{bottom:466.710000px;}
.y1a2{bottom:468.510000px;}
.y15e{bottom:471.030000px;}
.y1dc{bottom:471.750000px;}
.y7e{bottom:472.110000px;}
.yad{bottom:472.470000px;}
.y21d{bottom:475.350000px;}
.y1b6{bottom:477.510000px;}
.yff{bottom:480.030000px;}
.y5b{bottom:481.830000px;}
.y125{bottom:483.630000px;}
.y171{bottom:484.710000px;}
.y1f7{bottom:485.430000px;}
.yd9{bottom:487.230000px;}
.y1a1{bottom:489.030000px;}
.y1db{bottom:492.630000px;}
.y7d{bottom:492.990000px;}
.yac{bottom:493.350000px;}
.y15d{bottom:495.150000px;}
.y21c{bottom:495.870000px;}
.y1b5{bottom:498.030000px;}
.y5a{bottom:499.110000px;}
.yfe{bottom:500.910000px;}
.y124{bottom:504.150000px;}
.y170{bottom:505.230000px;}
.y1f6{bottom:506.310000px;}
.y25{bottom:507.390000px;}
.y158{bottom:508.110000px;}
.y1a0{bottom:509.910000px;}
.y1da{bottom:513.150000px;}
.y7c{bottom:513.510000px;}
.yab{bottom:513.870000px;}
.y59{bottom:516.390000px;}
.yd8{bottom:516.750000px;}
.y1b4{bottom:518.910000px;}
.yfd{bottom:521.430000px;}
.y123{bottom:525.030000px;}
.y16f{bottom:526.110000px;}
.y1f5{bottom:526.830000px;}
.y157{bottom:528.630000px;}
.y19f{bottom:530.430000px;}
.y58{bottom:533.670000px;}
.y1d9{bottom:534.030000px;}
.y7b{bottom:534.390000px;}
.y21b{bottom:537.270000px;}
.y15c{bottom:539.430000px;}
.yfc{bottom:542.310000px;}
.yaa{bottom:543.390000px;}
.y122{bottom:545.550000px;}
.yd7{bottom:546.630000px;}
.y1f4{bottom:547.710000px;}
.y156{bottom:549.510000px;}
.y57{bottom:550.950000px;}
.y19e{bottom:551.310000px;}
.y1d8{bottom:554.550000px;}
.y7a{bottom:554.910000px;}
.y21a{bottom:558.150000px;}
.y15b{bottom:560.310000px;}
.yfb{bottom:562.830000px;}
.y121{bottom:566.460000px;}
.yd6{bottom:567.540000px;}
.y56{bottom:568.260000px;}
.y155{bottom:570.060000px;}
.y19d{bottom:571.860000px;}
.ya9{bottom:574.020000px;}
.y1d7{bottom:575.460000px;}
.y79{bottom:575.820000px;}
.y219{bottom:578.700000px;}
.y15a{bottom:580.860000px;}
.y14c{bottom:583.740000px;}
.y55{bottom:585.540000px;}
.y120{bottom:586.980000px;}
.yd5{bottom:588.060000px;}
.y1f3{bottom:588.780000px;}
.y154{bottom:590.940000px;}
.y23{bottom:591.660000px;}
.yfa{bottom:592.380000px;}
.y19c{bottom:592.740000px;}
.y1d6{bottom:595.980000px;}
.y78{bottom:596.340000px;}
.y218{bottom:599.580000px;}
.y159{bottom:601.740000px;}
.y54{bottom:602.460000px;}
.y14b{bottom:604.260000px;}
.y11f{bottom:607.860000px;}
.yd4{bottom:608.940000px;}
.y1f2{bottom:609.660000px;}
.y153{bottom:611.460000px;}
.y1d{bottom:612.540000px;}
.y19b{bottom:613.260000px;}
.y1d5{bottom:616.860000px;}
.y77{bottom:617.220000px;}
.ya8{bottom:618.660000px;}
.y53{bottom:619.740000px;}
.y217{bottom:620.100000px;}
.yf9{bottom:622.260000px;}
.y14a{bottom:625.140000px;}
.y11e{bottom:628.380000px;}
.yd3{bottom:629.460000px;}
.y1f1{bottom:630.180000px;}
.y152{bottom:632.340000px;}
.y19a{bottom:634.140000px;}
.y52{bottom:637.020000px;}
.y1d4{bottom:637.380000px;}
.y76{bottom:637.740000px;}
.ya7{bottom:639.180000px;}
.y216{bottom:640.980000px;}
.yf8{bottom:643.140000px;}
.y149{bottom:645.660000px;}
.y11d{bottom:649.260000px;}
.yd2{bottom:650.340000px;}
.y1f0{bottom:651.060000px;}
.y151{bottom:652.860000px;}
.y51{bottom:654.300000px;}
.y199{bottom:654.660000px;}
.y1d3{bottom:658.260000px;}
.y75{bottom:658.620000px;}
.ya6{bottom:660.060000px;}
.y215{bottom:661.500000px;}
.yf7{bottom:663.660000px;}
.y148{bottom:666.540000px;}
.y11c{bottom:669.780000px;}
.yd1{bottom:670.860000px;}
.y50{bottom:671.580000px;}
.y150{bottom:673.740000px;}
.y198{bottom:675.540000px;}
.y1d2{bottom:678.780000px;}
.y74{bottom:679.140000px;}
.ya5{bottom:680.580000px;}
.y214{bottom:682.380000px;}
.yf6{bottom:684.540000px;}
.y147{bottom:687.060000px;}
.y4f{bottom:688.860000px;}
.y11b{bottom:690.660000px;}
.yd0{bottom:691.770000px;}
.y1ef{bottom:692.490000px;}
.y14f{bottom:694.290000px;}
.y197{bottom:696.090000px;}
.y17{bottom:699.690000px;}
.y73{bottom:700.050000px;}
.ya4{bottom:701.490000px;}
.y213{bottom:702.930000px;}
.yf5{bottom:705.090000px;}
.y146{bottom:707.970000px;}
.y11a{bottom:711.210000px;}
.ycf{bottom:712.290000px;}
.y4e{bottom:715.530000px;}
.y196{bottom:716.970000px;}
.y1d1{bottom:720.210000px;}
.y72{bottom:720.570000px;}
.ya3{bottom:722.010000px;}
.y1ee{bottom:722.730000px;}
.y14e{bottom:723.810000px;}
.yf4{bottom:725.970000px;}
.y145{bottom:728.490000px;}
.y119{bottom:732.090000px;}
.yce{bottom:733.170000px;}
.y195{bottom:737.490000px;}
.y1d0{bottom:741.090000px;}
.y71{bottom:741.450000px;}
.ya2{bottom:742.890000px;}
.y212{bottom:744.330000px;}
.y4d{bottom:744.690000px;}
.yf3{bottom:746.490000px;}
.y144{bottom:749.370000px;}
.y118{bottom:752.610000px;}
.ycd{bottom:753.690000px;}
.y194{bottom:758.370000px;}
.y1cf{bottom:761.610000px;}
.y4c{bottom:761.970000px;}
.ya1{bottom:763.410000px;}
.y211{bottom:765.210000px;}
.yf2{bottom:767.370000px;}
.y143{bottom:769.890000px;}
.y117{bottom:773.490000px;}
.ycc{bottom:774.570000px;}
.y16{bottom:775.290000px;}
.y193{bottom:778.890000px;}
.y4b{bottom:779.250000px;}
.y1ce{bottom:782.490000px;}
.y70{bottom:782.850000px;}
.ya0{bottom:784.290000px;}
.y210{bottom:785.730000px;}
.yf1{bottom:787.890000px;}
.y142{bottom:790.770000px;}
.y116{bottom:794.010000px;}
.y15{bottom:795.090000px;}
.y4a{bottom:796.530000px;}
.y192{bottom:799.770000px;}
.y1cd{bottom:803.010000px;}
.y6f{bottom:803.370000px;}
.y9f{bottom:804.810000px;}
.y20f{bottom:806.610000px;}
.yf0{bottom:808.770000px;}
.y141{bottom:811.290000px;}
.y49{bottom:813.810000px;}
.y115{bottom:814.890000px;}
.y14{bottom:815.970000px;}
.y191{bottom:820.335000px;}
.y1cc{bottom:823.935000px;}
.y6e{bottom:824.295000px;}
.y9e{bottom:825.375000px;}
.y20e{bottom:827.175000px;}
.yef{bottom:829.335000px;}
.y48{bottom:831.135000px;}
.y140{bottom:832.215000px;}
.y114{bottom:835.455000px;}
.y13{bottom:836.535000px;}
.y190{bottom:841.215000px;}
.y1cb{bottom:844.455000px;}
.y6d{bottom:844.815000px;}
.y9d{bottom:847.695000px;}
.y20d{bottom:848.055000px;}
.y47{bottom:848.415000px;}
.yee{bottom:850.215000px;}
.y13f{bottom:852.735000px;}
.y113{bottom:856.335000px;}
.ycb{bottom:857.415000px;}
.y12{bottom:857.775000px;}
.y18f{bottom:861.735000px;}
.y1ca{bottom:865.335000px;}
.y46{bottom:865.695000px;}
.y9c{bottom:868.215000px;}
.y20c{bottom:868.575000px;}
.yed{bottom:870.735000px;}
.y13e{bottom:873.615000px;}
.y112{bottom:876.855000px;}
.yca{bottom:877.935000px;}
.y11{bottom:881.535000px;}
.y18e{bottom:882.615000px;}
.y45{bottom:882.975000px;}
.y1c9{bottom:885.855000px;}
.y6c{bottom:886.215000px;}
.y20b{bottom:889.455000px;}
.y9b{bottom:890.175000px;}
.yec{bottom:891.615000px;}
.y13d{bottom:894.135000px;}
.yc9{bottom:898.815000px;}
.y44{bottom:900.255000px;}
.y10{bottom:902.055000px;}
.y18d{bottom:903.135000px;}
.y111{bottom:906.375000px;}
.y6b{bottom:907.095000px;}
.y9a{bottom:910.695000px;}
.yeb{bottom:912.135000px;}
.y13c{bottom:915.015000px;}
.y1c8{bottom:916.455000px;}
.y43{bottom:917.535000px;}
.y20a{bottom:918.975000px;}
.yc8{bottom:919.335000px;}
.yf{bottom:922.935000px;}
.y18c{bottom:924.015000px;}
.y6a{bottom:927.615000px;}
.y99{bottom:933.015000px;}
.y42{bottom:934.455000px;}
.y13b{bottom:935.535000px;}
.y110{bottom:936.975000px;}
.yc7{bottom:940.215000px;}
.ye{bottom:943.455000px;}
.y18b{bottom:944.535000px;}
.y69{bottom:948.525000px;}
.y41{bottom:951.765000px;}
.y98{bottom:953.565000px;}
.y13a{bottom:956.445000px;}
.yc6{bottom:960.765000px;}
.yd{bottom:964.725000px;}
.y18a{bottom:965.445000px;}
.y40{bottom:969.045000px;}
.y97{bottom:974.445000px;}
.y139{bottom:976.965000px;}
.yc5{bottom:981.645000px;}
.y189{bottom:985.965000px;}
.y3f{bottom:986.325000px;}
.yc{bottom:988.485000px;}
.y68{bottom:989.925000px;}
.y96{bottom:994.965000px;}
.yc4{bottom:1002.165000px;}
.y3e{bottom:1003.605000px;}
.y138{bottom:1006.485000px;}
.y188{bottom:1006.845000px;}
.yb{bottom:1010.085000px;}
.y67{bottom:1010.445000px;}
.y95{bottom:1015.845000px;}
.y3d{bottom:1020.885000px;}
.yc3{bottom:1023.045000px;}
.y187{bottom:1027.365000px;}
.y66{bottom:1031.325000px;}
.y94{bottom:1036.365000px;}
.ya{bottom:1037.805000px;}
.yc2{bottom:1043.565000px;}
.y3c{bottom:1047.525000px;}
.y186{bottom:1048.245000px;}
.y65{bottom:1051.845000px;}
.y93{bottom:1057.245000px;}
.yc1{bottom:1064.445000px;}
.y9{bottom:1065.165000px;}
.y185{bottom:1068.765000px;}
.y64{bottom:1072.770000px;}
.y92{bottom:1077.810000px;}
.y3b{bottom:1079.250000px;}
.yc0{bottom:1085.010000px;}
.y184{bottom:1089.690000px;}
.y8{bottom:1092.930000px;}
.y63{bottom:1093.290000px;}
.y91{bottom:1098.690000px;}
.ybf{bottom:1105.890000px;}
.y183{bottom:1110.210000px;}
.y3a{bottom:1113.090000px;}
.y90{bottom:1119.210000px;}
.y7{bottom:1120.650000px;}
.y62{bottom:1123.530000px;}
.ybe{bottom:1126.410000px;}
.y39{bottom:1137.210000px;}
.y182{bottom:1139.730000px;}
.y8f{bottom:1140.090000px;}
.y4{bottom:1147.290000px;}
.y3{bottom:1166.010000px;}
.y2{bottom:1181.490000px;}
.y1{bottom:1197.330000px;}
.hc{height:20.160000px;}
.h13{height:40.310156px;}
.h3{height:44.149219px;}
.h2{height:48.147188px;}
.hf{height:52.200000px;}
.ha{height:53.067656px;}
.he{height:53.215313px;}
.h9{height:53.717344px;}
.h11{height:55.666406px;}
.h4{height:63.175781px;}
.h7{height:63.351562px;}
.h12{height:63.949219px;}
.h8{height:70.560000px;}
.h6{height:74.181094px;}
.h10{height:80.676000px;}
.hd{height:83.556000px;}
.h5{height:85.691953px;}
.hb{height:86.436000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:222.225000px;}
.w4{width:456.300000px;}
.w5{width:681.405000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x10{left:7.920000px;}
.x15{left:26.676000px;}
.x13{left:73.110000px;}
.x12{left:86.799000px;}
.x1c{left:98.675987px;}
.x1{left:106.235987px;}
.x1b{left:107.675987px;}
.x4{left:113.435987px;}
.x1a{left:133.271987px;}
.x7{left:137.951987px;}
.x18{left:150.194987px;}
.x5{left:156.314987px;}
.xa{left:160.994987px;}
.x8{left:166.754987px;}
.x14{left:178.260000px;}
.x19{left:190.874987px;}
.xe{left:223.664987px;}
.x17{left:258.594000px;}
.x9{left:281.624987px;}
.x16{left:287.064000px;}
.xf{left:310.829987px;}
.xd{left:316.949987px;}
.xc{left:327.749987px;}
.x11{left:329.910000px;}
.xb{left:359.069987px;}
.x3{left:383.549987px;}
.x6{left:446.579987px;}
.x2{left:759.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.264000pt;}
.ls9{letter-spacing:-1.152000pt;}
.ls8{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls3{letter-spacing:-0.442667pt;}
.ls5{letter-spacing:-0.414933pt;}
.lse{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.017920pt;}
.ls18{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.442880pt;}
.lsa{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls11{letter-spacing:1.280000pt;}
.ls10{letter-spacing:1.408000pt;}
.ls14{letter-spacing:1.920000pt;}
.lsc{letter-spacing:3.200000pt;}
.ls16{letter-spacing:9.600000pt;}
.lsb{letter-spacing:48.778667pt;}
.ls17{letter-spacing:78.218667pt;}
.ls15{letter-spacing:149.258667pt;}
.ws8{word-spacing:-64.000000pt;}
.ws3{word-spacing:-21.440000pt;}
.wsb{word-spacing:-18.560000pt;}
.ws7{word-spacing:-16.448000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.552000pt;}
.wsd{word-spacing:-15.296000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.025067pt;}
.ws0{word-spacing:-12.160000pt;}
.ws1{word-spacing:-11.717333pt;}
.ws6{word-spacing:0.000000pt;}
._1f{margin-left:-17.280000pt;}
._2f{margin-left:-4.763733pt;}
._1a{margin-left:-3.708160pt;}
._6{margin-left:-2.202880pt;}
._0{margin-left:-1.313280pt;}
._3{width:0.972800pt;}
._7{width:2.303147pt;}
._18{width:3.202133pt;}
._17{width:4.338347pt;}
._19{width:5.800960pt;}
._c{width:6.725120pt;}
._d{width:7.741440pt;}
._b{width:8.803840pt;}
._23{width:9.733547pt;}
._f{width:10.636800pt;}
._e{width:12.280320pt;}
._22{width:13.187840pt;}
._20{width:14.214400pt;}
._31{width:15.104000pt;}
._8{width:17.525760pt;}
._9{width:18.868480pt;}
._a{width:20.391680pt;}
._1b{width:21.688320pt;}
._1c{width:23.001600pt;}
._26{width:24.360960pt;}
._29{width:25.344000pt;}
._15{width:26.839040pt;}
._14{width:27.908693pt;}
._13{width:28.933120pt;}
._21{width:30.049280pt;}
._11{width:31.718400pt;}
._12{width:32.709120pt;}
._10{width:34.129920pt;}
._2c{width:38.963200pt;}
._2a{width:40.704000pt;}
._2b{width:41.920000pt;}
._25{width:43.294720pt;}
._24{width:44.513280pt;}
._2e{width:46.016000pt;}
._2d{width:47.578880pt;}
._38{width:48.560640pt;}
._27{width:50.048000pt;}
._28{width:51.224747pt;}
._37{width:59.827200pt;}
._3a{width:60.876800pt;}
._35{width:76.833280pt;}
._36{width:78.910720pt;}
._33{width:80.960000pt;}
._34{width:82.185813pt;}
._2{width:87.040000pt;}
._30{width:124.298667pt;}
._39{width:137.216000pt;}
._3c{width:139.392000pt;}
._3d{width:141.280000pt;}
._32{width:149.258667pt;}
._3b{width:154.688000pt;}
._4{width:423.943680pt;}
._16{width:755.098453pt;}
._1d{width:756.255573pt;}
._1{width:864.350720pt;}
._1e{width:865.240320pt;}
._5{width:1197.973333pt;}
.fs0{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:2.880000pt;}
.y1c{bottom:3.520000pt;}
.y24{bottom:4.160000pt;}
.y2a{bottom:9.280000pt;}
.y2e{bottom:10.880000pt;}
.y38{bottom:16.640000pt;}
.y21{bottom:18.240000pt;}
.y2c{bottom:18.560000pt;}
.y1b{bottom:18.880000pt;}
.y29{bottom:24.640000pt;}
.y2d{bottom:25.920000pt;}
.y18{bottom:26.560000pt;}
.y26{bottom:32.320000pt;}
.y1e{bottom:33.600000pt;}
.y1a{bottom:34.240000pt;}
.y37{bottom:35.840000pt;}
.y28{bottom:40.000000pt;}
.y20{bottom:48.960000pt;}
.y19{bottom:49.600000pt;}
.y6{bottom:50.560000pt;}
.y36{bottom:55.040000pt;}
.y27{bottom:55.386667pt;}
.y1f{bottom:64.320000pt;}
.y5{bottom:69.152000pt;}
.y137{bottom:98.592000pt;}
.y209{bottom:100.192000pt;}
.yea{bottom:101.792000pt;}
.y1ed{bottom:106.592000pt;}
.y16e{bottom:107.552000pt;}
.y22c{bottom:109.792000pt;}
.y1c7{bottom:111.712000pt;}
.y14d{bottom:113.952000pt;}
.y136{bottom:116.832000pt;}
.y208{bottom:118.752000pt;}
.ye9{bottom:120.352000pt;}
.y1b1{bottom:121.952000pt;}
.y1ec{bottom:124.832000pt;}
.y8e{bottom:125.152000pt;}
.ybd{bottom:125.472000pt;}
.y16d{bottom:126.112000pt;}
.y22b{bottom:128.032000pt;}
.y1c6{bottom:129.952000pt;}
.y10f{bottom:132.512000pt;}
.y135{bottom:135.386667pt;}
.y181{bottom:136.346667pt;}
.y207{bottom:136.986667pt;}
.ye8{bottom:138.586667pt;}
.y1b0{bottom:140.506667pt;}
.y1eb{bottom:143.386667pt;}
.y8d{bottom:143.706667pt;}
.ybc{bottom:144.026667pt;}
.y16c{bottom:144.346667pt;}
.y22a{bottom:146.586667pt;}
.y1c5{bottom:148.506667pt;}
.y10e{bottom:150.746667pt;}
.y134{bottom:153.626667pt;}
.y180{bottom:154.586667pt;}
.y206{bottom:155.546667pt;}
.ye7{bottom:157.146667pt;}
.y1af{bottom:158.746667pt;}
.y1ea{bottom:161.626667pt;}
.y8c{bottom:161.946667pt;}
.ybb{bottom:162.266667pt;}
.y16b{bottom:162.906667pt;}
.y229{bottom:164.866667pt;}
.y1c4{bottom:166.786667pt;}
.y10d{bottom:169.346667pt;}
.y133{bottom:172.226667pt;}
.y17f{bottom:173.186667pt;}
.y205{bottom:173.826667pt;}
.ye6{bottom:175.426667pt;}
.y1ae{bottom:177.346667pt;}
.y1e9{bottom:180.226667pt;}
.y8b{bottom:180.546667pt;}
.yba{bottom:180.866667pt;}
.y16a{bottom:181.186667pt;}
.y228{bottom:183.426667pt;}
.y1c3{bottom:185.346667pt;}
.y10c{bottom:187.586667pt;}
.y132{bottom:190.466667pt;}
.y17e{bottom:191.426667pt;}
.y204{bottom:192.386667pt;}
.ye5{bottom:193.986667pt;}
.y1ad{bottom:195.586667pt;}
.y1e8{bottom:198.466667pt;}
.y8a{bottom:198.786667pt;}
.yb9{bottom:199.106667pt;}
.y169{bottom:199.426667pt;}
.y227{bottom:201.666667pt;}
.y1c2{bottom:203.586667pt;}
.y35{bottom:204.866667pt;}
.y10b{bottom:206.146667pt;}
.y131{bottom:209.026667pt;}
.y17d{bottom:209.986667pt;}
.y203{bottom:210.626667pt;}
.ye4{bottom:212.226667pt;}
.y1ac{bottom:214.146667pt;}
.y1e7{bottom:217.026667pt;}
.y89{bottom:217.346667pt;}
.yb8{bottom:217.666667pt;}
.y168{bottom:217.986667pt;}
.y226{bottom:220.226667pt;}
.y1c1{bottom:222.146667pt;}
.y10a{bottom:224.386667pt;}
.y130{bottom:227.266667pt;}
.y17c{bottom:228.226667pt;}
.y202{bottom:229.186667pt;}
.ye3{bottom:230.786667pt;}
.y1ab{bottom:232.386667pt;}
.y1e6{bottom:235.266667pt;}
.y88{bottom:235.586667pt;}
.yb7{bottom:235.906667pt;}
.y167{bottom:236.226667pt;}
.y225{bottom:238.466667pt;}
.y1c0{bottom:240.386667pt;}
.y109{bottom:242.626667pt;}
.y12f{bottom:245.826667pt;}
.y17b{bottom:246.786667pt;}
.y201{bottom:247.426667pt;}
.ye2{bottom:249.026667pt;}
.y1aa{bottom:250.626667pt;}
.y1e5{bottom:253.826667pt;}
.y87{bottom:254.146667pt;}
.yb6{bottom:254.466667pt;}
.y166{bottom:254.786667pt;}
.y224{bottom:257.026667pt;}
.y1bf{bottom:258.626667pt;}
.y108{bottom:261.186667pt;}
.y12e{bottom:264.066667pt;}
.y17a{bottom:265.026667pt;}
.y200{bottom:265.986667pt;}
.y34{bottom:267.586667pt;}
.y1a9{bottom:269.186667pt;}
.y1e4{bottom:272.066667pt;}
.y86{bottom:272.386667pt;}
.yb5{bottom:272.706667pt;}
.y165{bottom:273.026667pt;}
.y223{bottom:275.266667pt;}
.y1be{bottom:277.213333pt;}
.y107{bottom:279.453333pt;}
.y12d{bottom:282.653333pt;}
.y179{bottom:283.613333pt;}
.y1ff{bottom:284.253333pt;}
.ye1{bottom:285.853333pt;}
.y1a8{bottom:287.453333pt;}
.y1e3{bottom:290.653333pt;}
.y85{bottom:290.973333pt;}
.yb4{bottom:291.293333pt;}
.y164{bottom:291.613333pt;}
.y222{bottom:293.853333pt;}
.y1bd{bottom:295.453333pt;}
.y33{bottom:296.093333pt;}
.y106{bottom:298.013333pt;}
.y12c{bottom:300.893333pt;}
.y178{bottom:301.853333pt;}
.y1fe{bottom:302.813333pt;}
.ye0{bottom:304.413333pt;}
.y1a7{bottom:306.013333pt;}
.y1e2{bottom:308.893333pt;}
.y84{bottom:309.213333pt;}
.yb3{bottom:309.533333pt;}
.y163{bottom:309.853333pt;}
.y221{bottom:312.093333pt;}
.y1bc{bottom:314.013333pt;}
.y105{bottom:316.253333pt;}
.y12b{bottom:319.453333pt;}
.y177{bottom:320.413333pt;}
.y1fd{bottom:321.053333pt;}
.ydf{bottom:322.653333pt;}
.y61{bottom:324.253333pt;}
.y32{bottom:324.573333pt;}
.y1e1{bottom:327.453333pt;}
.y83{bottom:327.773333pt;}
.yb2{bottom:328.093333pt;}
.y162{bottom:328.413333pt;}
.y220{bottom:330.653333pt;}
.y1bb{bottom:332.253333pt;}
.y104{bottom:334.813333pt;}
.y12a{bottom:337.693333pt;}
.y176{bottom:338.653333pt;}
.y1fc{bottom:339.613333pt;}
.yde{bottom:341.213333pt;}
.y1a6{bottom:342.813333pt;}
.y1e0{bottom:345.693333pt;}
.y82{bottom:346.013333pt;}
.yb1{bottom:346.333333pt;}
.y161{bottom:346.653333pt;}
.y1b3{bottom:348.893333pt;}
.y1ba{bottom:350.813333pt;}
.y60{bottom:351.133333pt;}
.y103{bottom:353.053333pt;}
.y31{bottom:353.373333pt;}
.y129{bottom:356.253333pt;}
.y175{bottom:357.213333pt;}
.y1fb{bottom:357.853333pt;}
.ydd{bottom:359.453333pt;}
.y1a5{bottom:361.053333pt;}
.y1df{bottom:364.253333pt;}
.y81{bottom:364.573333pt;}
.yb0{bottom:364.893333pt;}
.y160{bottom:365.213333pt;}
.y5f{bottom:366.813333pt;}
.y1b2{bottom:367.453333pt;}
.y1b9{bottom:369.053333pt;}
.y30{bottom:371.293333pt;}
.y102{bottom:371.613333pt;}
.y128{bottom:374.493333pt;}
.y174{bottom:375.453333pt;}
.y1fa{bottom:376.413333pt;}
.ydc{bottom:378.013333pt;}
.y1a4{bottom:379.613333pt;}
.y5e{bottom:382.173333pt;}
.y1de{bottom:382.493333pt;}
.y80{bottom:382.813333pt;}
.yaf{bottom:383.133333pt;}
.y21f{bottom:385.693333pt;}
.y1b8{bottom:387.613333pt;}
.y2f{bottom:389.253333pt;}
.y101{bottom:389.893333pt;}
.y15f{bottom:391.173333pt;}
.y127{bottom:393.093333pt;}
.y173{bottom:394.053333pt;}
.y1f9{bottom:394.693333pt;}
.ydb{bottom:396.293333pt;}
.y5d{bottom:397.573333pt;}
.y1a3{bottom:397.893333pt;}
.y1dd{bottom:401.093333pt;}
.y7f{bottom:401.413333pt;}
.yae{bottom:401.733333pt;}
.y2b{bottom:403.973333pt;}
.y21e{bottom:404.293333pt;}
.y1b7{bottom:405.893333pt;}
.y100{bottom:408.453333pt;}
.y126{bottom:411.333333pt;}
.y172{bottom:412.293333pt;}
.y5c{bottom:412.933333pt;}
.y1f8{bottom:413.253333pt;}
.yda{bottom:414.853333pt;}
.y1a2{bottom:416.453333pt;}
.y15e{bottom:418.693333pt;}
.y1dc{bottom:419.333333pt;}
.y7e{bottom:419.653333pt;}
.yad{bottom:419.973333pt;}
.y21d{bottom:422.533333pt;}
.y1b6{bottom:424.453333pt;}
.yff{bottom:426.693333pt;}
.y5b{bottom:428.293333pt;}
.y125{bottom:429.893333pt;}
.y171{bottom:430.853333pt;}
.y1f7{bottom:431.493333pt;}
.yd9{bottom:433.093333pt;}
.y1a1{bottom:434.693333pt;}
.y1db{bottom:437.893333pt;}
.y7d{bottom:438.213333pt;}
.yac{bottom:438.533333pt;}
.y15d{bottom:440.133333pt;}
.y21c{bottom:440.773333pt;}
.y1b5{bottom:442.693333pt;}
.y5a{bottom:443.653333pt;}
.yfe{bottom:445.253333pt;}
.y124{bottom:448.133333pt;}
.y170{bottom:449.093333pt;}
.y1f6{bottom:450.053333pt;}
.y25{bottom:451.013333pt;}
.y158{bottom:451.653333pt;}
.y1a0{bottom:453.253333pt;}
.y1da{bottom:456.133333pt;}
.y7c{bottom:456.453333pt;}
.yab{bottom:456.773333pt;}
.y59{bottom:459.013333pt;}
.yd8{bottom:459.333333pt;}
.y1b4{bottom:461.253333pt;}
.yfd{bottom:463.493333pt;}
.y123{bottom:466.693333pt;}
.y16f{bottom:467.653333pt;}
.y1f5{bottom:468.293333pt;}
.y157{bottom:469.893333pt;}
.y19f{bottom:471.493333pt;}
.y58{bottom:474.373333pt;}
.y1d9{bottom:474.693333pt;}
.y7b{bottom:475.013333pt;}
.y21b{bottom:477.573333pt;}
.y15c{bottom:479.493333pt;}
.yfc{bottom:482.053333pt;}
.yaa{bottom:483.013333pt;}
.y122{bottom:484.933333pt;}
.yd7{bottom:485.893333pt;}
.y1f4{bottom:486.853333pt;}
.y156{bottom:488.453333pt;}
.y57{bottom:489.733333pt;}
.y19e{bottom:490.053333pt;}
.y1d8{bottom:492.933333pt;}
.y7a{bottom:493.253333pt;}
.y21a{bottom:496.133333pt;}
.y15b{bottom:498.053333pt;}
.yfb{bottom:500.293333pt;}
.y121{bottom:503.520000pt;}
.yd6{bottom:504.480000pt;}
.y56{bottom:505.120000pt;}
.y155{bottom:506.720000pt;}
.y19d{bottom:508.320000pt;}
.ya9{bottom:510.240000pt;}
.y1d7{bottom:511.520000pt;}
.y79{bottom:511.840000pt;}
.y219{bottom:514.400000pt;}
.y15a{bottom:516.320000pt;}
.y14c{bottom:518.880000pt;}
.y55{bottom:520.480000pt;}
.y120{bottom:521.760000pt;}
.yd5{bottom:522.720000pt;}
.y1f3{bottom:523.360000pt;}
.y154{bottom:525.280000pt;}
.y23{bottom:525.920000pt;}
.yfa{bottom:526.560000pt;}
.y19c{bottom:526.880000pt;}
.y1d6{bottom:529.760000pt;}
.y78{bottom:530.080000pt;}
.y218{bottom:532.960000pt;}
.y159{bottom:534.880000pt;}
.y54{bottom:535.520000pt;}
.y14b{bottom:537.120000pt;}
.y11f{bottom:540.320000pt;}
.yd4{bottom:541.280000pt;}
.y1f2{bottom:541.920000pt;}
.y153{bottom:543.520000pt;}
.y1d{bottom:544.480000pt;}
.y19b{bottom:545.120000pt;}
.y1d5{bottom:548.320000pt;}
.y77{bottom:548.640000pt;}
.ya8{bottom:549.920000pt;}
.y53{bottom:550.880000pt;}
.y217{bottom:551.200000pt;}
.yf9{bottom:553.120000pt;}
.y14a{bottom:555.680000pt;}
.y11e{bottom:558.560000pt;}
.yd3{bottom:559.520000pt;}
.y1f1{bottom:560.160000pt;}
.y152{bottom:562.080000pt;}
.y19a{bottom:563.680000pt;}
.y52{bottom:566.240000pt;}
.y1d4{bottom:566.560000pt;}
.y76{bottom:566.880000pt;}
.ya7{bottom:568.160000pt;}
.y216{bottom:569.760000pt;}
.yf8{bottom:571.680000pt;}
.y149{bottom:573.920000pt;}
.y11d{bottom:577.120000pt;}
.yd2{bottom:578.080000pt;}
.y1f0{bottom:578.720000pt;}
.y151{bottom:580.320000pt;}
.y51{bottom:581.600000pt;}
.y199{bottom:581.920000pt;}
.y1d3{bottom:585.120000pt;}
.y75{bottom:585.440000pt;}
.ya6{bottom:586.720000pt;}
.y215{bottom:588.000000pt;}
.yf7{bottom:589.920000pt;}
.y148{bottom:592.480000pt;}
.y11c{bottom:595.360000pt;}
.yd1{bottom:596.320000pt;}
.y50{bottom:596.960000pt;}
.y150{bottom:598.880000pt;}
.y198{bottom:600.480000pt;}
.y1d2{bottom:603.360000pt;}
.y74{bottom:603.680000pt;}
.ya5{bottom:604.960000pt;}
.y214{bottom:606.560000pt;}
.yf6{bottom:608.480000pt;}
.y147{bottom:610.720000pt;}
.y4f{bottom:612.320000pt;}
.y11b{bottom:613.920000pt;}
.yd0{bottom:614.906667pt;}
.y1ef{bottom:615.546667pt;}
.y14f{bottom:617.146667pt;}
.y197{bottom:618.746667pt;}
.y17{bottom:621.946667pt;}
.y73{bottom:622.266667pt;}
.ya4{bottom:623.546667pt;}
.y213{bottom:624.826667pt;}
.yf5{bottom:626.746667pt;}
.y146{bottom:629.306667pt;}
.y11a{bottom:632.186667pt;}
.ycf{bottom:633.146667pt;}
.y4e{bottom:636.026667pt;}
.y196{bottom:637.306667pt;}
.y1d1{bottom:640.186667pt;}
.y72{bottom:640.506667pt;}
.ya3{bottom:641.786667pt;}
.y1ee{bottom:642.426667pt;}
.y14e{bottom:643.386667pt;}
.yf4{bottom:645.306667pt;}
.y145{bottom:647.546667pt;}
.y119{bottom:650.746667pt;}
.yce{bottom:651.706667pt;}
.y195{bottom:655.546667pt;}
.y1d0{bottom:658.746667pt;}
.y71{bottom:659.066667pt;}
.ya2{bottom:660.346667pt;}
.y212{bottom:661.626667pt;}
.y4d{bottom:661.946667pt;}
.yf3{bottom:663.546667pt;}
.y144{bottom:666.106667pt;}
.y118{bottom:668.986667pt;}
.ycd{bottom:669.946667pt;}
.y194{bottom:674.106667pt;}
.y1cf{bottom:676.986667pt;}
.y4c{bottom:677.306667pt;}
.ya1{bottom:678.586667pt;}
.y211{bottom:680.186667pt;}
.yf2{bottom:682.106667pt;}
.y143{bottom:684.346667pt;}
.y117{bottom:687.546667pt;}
.ycc{bottom:688.506667pt;}
.y16{bottom:689.146667pt;}
.y193{bottom:692.346667pt;}
.y4b{bottom:692.666667pt;}
.y1ce{bottom:695.546667pt;}
.y70{bottom:695.866667pt;}
.ya0{bottom:697.146667pt;}
.y210{bottom:698.426667pt;}
.yf1{bottom:700.346667pt;}
.y142{bottom:702.906667pt;}
.y116{bottom:705.786667pt;}
.y15{bottom:706.746667pt;}
.y4a{bottom:708.026667pt;}
.y192{bottom:710.906667pt;}
.y1cd{bottom:713.786667pt;}
.y6f{bottom:714.106667pt;}
.y9f{bottom:715.386667pt;}
.y20f{bottom:716.986667pt;}
.yf0{bottom:718.906667pt;}
.y141{bottom:721.146667pt;}
.y49{bottom:723.386667pt;}
.y115{bottom:724.346667pt;}
.y14{bottom:725.306667pt;}
.y191{bottom:729.186667pt;}
.y1cc{bottom:732.386667pt;}
.y6e{bottom:732.706667pt;}
.y9e{bottom:733.666667pt;}
.y20e{bottom:735.266667pt;}
.yef{bottom:737.186667pt;}
.y48{bottom:738.786667pt;}
.y140{bottom:739.746667pt;}
.y114{bottom:742.626667pt;}
.y13{bottom:743.586667pt;}
.y190{bottom:747.746667pt;}
.y1cb{bottom:750.626667pt;}
.y6d{bottom:750.946667pt;}
.y9d{bottom:753.506667pt;}
.y20d{bottom:753.826667pt;}
.y47{bottom:754.146667pt;}
.yee{bottom:755.746667pt;}
.y13f{bottom:757.986667pt;}
.y113{bottom:761.186667pt;}
.ycb{bottom:762.146667pt;}
.y12{bottom:762.466667pt;}
.y18f{bottom:765.986667pt;}
.y1ca{bottom:769.186667pt;}
.y46{bottom:769.506667pt;}
.y9c{bottom:771.746667pt;}
.y20c{bottom:772.066667pt;}
.yed{bottom:773.986667pt;}
.y13e{bottom:776.546667pt;}
.y112{bottom:779.426667pt;}
.yca{bottom:780.386667pt;}
.y11{bottom:783.586667pt;}
.y18e{bottom:784.546667pt;}
.y45{bottom:784.866667pt;}
.y1c9{bottom:787.426667pt;}
.y6c{bottom:787.746667pt;}
.y20b{bottom:790.626667pt;}
.y9b{bottom:791.266667pt;}
.yec{bottom:792.546667pt;}
.y13d{bottom:794.786667pt;}
.yc9{bottom:798.946667pt;}
.y44{bottom:800.226667pt;}
.y10{bottom:801.826667pt;}
.y18d{bottom:802.786667pt;}
.y111{bottom:805.666667pt;}
.y6b{bottom:806.306667pt;}
.y9a{bottom:809.506667pt;}
.yeb{bottom:810.786667pt;}
.y13c{bottom:813.346667pt;}
.y1c8{bottom:814.626667pt;}
.y43{bottom:815.586667pt;}
.y20a{bottom:816.866667pt;}
.yc8{bottom:817.186667pt;}
.yf{bottom:820.386667pt;}
.y18c{bottom:821.346667pt;}
.y6a{bottom:824.546667pt;}
.y99{bottom:829.346667pt;}
.y42{bottom:830.626667pt;}
.y13b{bottom:831.586667pt;}
.y110{bottom:832.866667pt;}
.yc7{bottom:835.746667pt;}
.ye{bottom:838.626667pt;}
.y18b{bottom:839.586667pt;}
.y69{bottom:843.133333pt;}
.y41{bottom:846.013333pt;}
.y98{bottom:847.613333pt;}
.y13a{bottom:850.173333pt;}
.yc6{bottom:854.013333pt;}
.yd{bottom:857.533333pt;}
.y18a{bottom:858.173333pt;}
.y40{bottom:861.373333pt;}
.y97{bottom:866.173333pt;}
.y139{bottom:868.413333pt;}
.yc5{bottom:872.573333pt;}
.y189{bottom:876.413333pt;}
.y3f{bottom:876.733333pt;}
.yc{bottom:878.653333pt;}
.y68{bottom:879.933333pt;}
.y96{bottom:884.413333pt;}
.yc4{bottom:890.813333pt;}
.y3e{bottom:892.093333pt;}
.y138{bottom:894.653333pt;}
.y188{bottom:894.973333pt;}
.yb{bottom:897.853333pt;}
.y67{bottom:898.173333pt;}
.y95{bottom:902.973333pt;}
.y3d{bottom:907.453333pt;}
.yc3{bottom:909.373333pt;}
.y187{bottom:913.213333pt;}
.y66{bottom:916.733333pt;}
.y94{bottom:921.213333pt;}
.ya{bottom:922.493333pt;}
.yc2{bottom:927.613333pt;}
.y3c{bottom:931.133333pt;}
.y186{bottom:931.773333pt;}
.y65{bottom:934.973333pt;}
.y93{bottom:939.773333pt;}
.yc1{bottom:946.173333pt;}
.y9{bottom:946.813333pt;}
.y185{bottom:950.013333pt;}
.y64{bottom:953.573333pt;}
.y92{bottom:958.053333pt;}
.y3b{bottom:959.333333pt;}
.yc0{bottom:964.453333pt;}
.y184{bottom:968.613333pt;}
.y8{bottom:971.493333pt;}
.y63{bottom:971.813333pt;}
.y91{bottom:976.613333pt;}
.ybf{bottom:983.013333pt;}
.y183{bottom:986.853333pt;}
.y3a{bottom:989.413333pt;}
.y90{bottom:994.853333pt;}
.y7{bottom:996.133333pt;}
.y62{bottom:998.693333pt;}
.ybe{bottom:1001.253333pt;}
.y39{bottom:1010.853333pt;}
.y182{bottom:1013.093333pt;}
.y8f{bottom:1013.413333pt;}
.y4{bottom:1019.813333pt;}
.y3{bottom:1036.453333pt;}
.y2{bottom:1050.213333pt;}
.y1{bottom:1064.293333pt;}
.hc{height:17.920000pt;}
.h13{height:35.831250pt;}
.h3{height:39.243750pt;}
.h2{height:42.797500pt;}
.hf{height:46.400000pt;}
.ha{height:47.171250pt;}
.he{height:47.302500pt;}
.h9{height:47.748750pt;}
.h11{height:49.481250pt;}
.h4{height:56.156250pt;}
.h7{height:56.312500pt;}
.h12{height:56.843750pt;}
.h8{height:62.720000pt;}
.h6{height:65.938750pt;}
.h10{height:71.712000pt;}
.hd{height:74.272000pt;}
.h5{height:76.170625pt;}
.hb{height:76.832000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:197.533333pt;}
.w4{width:405.600000pt;}
.w5{width:605.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x10{left:7.040000pt;}
.x15{left:23.712000pt;}
.x13{left:64.986667pt;}
.x12{left:77.154667pt;}
.x1c{left:87.711988pt;}
.x1{left:94.431988pt;}
.x1b{left:95.711988pt;}
.x4{left:100.831988pt;}
.x1a{left:118.463988pt;}
.x7{left:122.623988pt;}
.x18{left:133.506655pt;}
.x5{left:138.946655pt;}
.xa{left:143.106655pt;}
.x8{left:148.226655pt;}
.x14{left:158.453333pt;}
.x19{left:169.666655pt;}
.xe{left:198.813322pt;}
.x17{left:229.861333pt;}
.x9{left:250.333322pt;}
.x16{left:255.168000pt;}
.xf{left:276.293322pt;}
.xd{left:281.733322pt;}
.xc{left:291.333322pt;}
.x11{left:293.253333pt;}
.xb{left:319.173322pt;}
.x3{left:340.933322pt;}
.x6{left:396.959988pt;}
.x2{left:675.493322pt;}
}




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